From ee3469ba6c6d5f51a1c5fb9c6ec96eff3f4075e3 Mon Sep 17 00:00:00 2001 From: Aaron Miller Date: Sun, 21 May 2023 05:18:42 -0700 Subject: [PATCH] New tokenizer implementation for MPT and GPT-J Improves output quality by making these tokenizers more closely match the behavior of the huggingface `tokenizers` based BPE tokenizers these models were trained with. Featuring: * Fixed unicode handling (via ICU) * Fixed BPE token merge handling * Complete added vocabulary handling --- .codespellrc | 2 +- gpt4all-backend/CMakeLists.txt | 8 +- gpt4all-backend/gptj.cpp | 10 +- gpt4all-backend/gptj.h | 3 + gpt4all-backend/mpt.cpp | 15 +- gpt4all-backend/mpt.h | 3 + .../scripts/gen_tokenizer_include.py | 136 + gpt4all-backend/tokenizer/bpe.cpp | 257 + gpt4all-backend/tokenizer/bpe.h | 123 + .../tokenizer/gptj_tokenizer_config.h | 23393 ++++++++++++++++ .../tokenizer/mpt_tokenizer_config.h | 23175 +++++++++++++++ gpt4all-backend/utils.cpp | 243 +- gpt4all-backend/utils.h | 27 +- 13 files changed, 47159 insertions(+), 236 deletions(-) create mode 100644 gpt4all-backend/scripts/gen_tokenizer_include.py create mode 100644 gpt4all-backend/tokenizer/bpe.cpp create mode 100644 gpt4all-backend/tokenizer/bpe.h create mode 100644 gpt4all-backend/tokenizer/gptj_tokenizer_config.h create mode 100644 gpt4all-backend/tokenizer/mpt_tokenizer_config.h diff --git a/.codespellrc b/.codespellrc index da3c0571..bb5e4059 100644 --- a/.codespellrc +++ b/.codespellrc @@ -1,4 +1,4 @@ [codespell] -skip = .git,*.pdf,*.svg +skip = .git,*.pdf,*.svg,*_tokenizer_config.h # # ignore-words-list = diff --git a/gpt4all-backend/CMakeLists.txt b/gpt4all-backend/CMakeLists.txt index 0c06b60e..18e51316 100644 --- a/gpt4all-backend/CMakeLists.txt +++ b/gpt4all-backend/CMakeLists.txt @@ -23,6 +23,7 @@ set(LLMODEL_VERSION "${LLMODEL_VERSION_MAJOR}.${LLMODEL_VERSION_MINOR}.${LLMODEL project(llmodel VERSION ${LLMODEL_VERSION} LANGUAGES CXX C) set(CMAKE_CXX_STANDARD_REQUIRED ON) +set(CMAKE_CXX_STANDARD 17) set(LLAMA_BUILD_EXAMPLES ON CACHE BOOL "llama: build examples" FORCE) set(BUILD_SHARED_LIBS ON FORCE) @@ -34,6 +35,7 @@ if (GPT4ALL_AVX_ONLY) set(LLAMA_FMA OFF CACHE BOOL "llama: enable FMA" FORCE) endif() +find_package(ICU REQUIRED COMPONENTS uc i18n) add_subdirectory(llama.cpp) add_library(llmodel @@ -41,12 +43,14 @@ add_library(llmodel llamamodel.h llamamodel.cpp llama.cpp/examples/common.cpp llmodel.h llmodel_c.h llmodel_c.cpp - mpt.h mpt.cpp + mpt.h mpt.cpp tokenizer/bpe.cpp tokenizer/bpe.h + tokenizer/mpt_tokenizer_config.h tokenizer/gptj_tokenizer_config.h utils.h utils.cpp ) target_link_libraries(llmodel - PRIVATE llama) + PRIVATE llama + PUBLIC ICU::uc ICU::i18n) set_target_properties(llmodel PROPERTIES VERSION ${PROJECT_VERSION} diff --git a/gpt4all-backend/gptj.cpp b/gpt4all-backend/gptj.cpp index 946fdeb6..5bb640e3 100644 --- a/gpt4all-backend/gptj.cpp +++ b/gpt4all-backend/gptj.cpp @@ -7,6 +7,7 @@ #include #include #include +#include #include #include #include @@ -860,6 +861,8 @@ bool GPTJ::loadModel(const std::string &modelPath) { d_ptr->n_threads = std::min(4, (int32_t) std::thread::hardware_concurrency()); d_ptr->modelLoaded = true; fflush(stdout); + + get_bpecpp_tokenizer(TokenizerType::GPTJ, m_bpe, m_tokav); return true; } @@ -915,7 +918,7 @@ void GPTJ::prompt(const std::string &prompt, int64_t t_prompt_us = 0; // tokenize the prompt - std::vector embd_inp = ::gpt_tokenize(d_ptr->vocab, prompt); + std::vector embd_inp = m_tokav->encode(prompt, *m_bpe); // save the context size promptCtx.n_ctx = d_ptr->model->hparams.n_ctx; @@ -1032,7 +1035,7 @@ void GPTJ::prompt(const std::string &prompt, if (id == 50256 /*end of text*/) goto stop_generating; - const std::string str = d_ptr->vocab.id_to_token[id]; + const std::string str = m_tokav->decode({(uint32_t) id}, *m_bpe, true, false); // Check if the provided str is part of our reverse prompts bool foundPartialReversePrompt = false; @@ -1062,7 +1065,8 @@ void GPTJ::prompt(const std::string &prompt, if (promptCtx.tokens.size() == promptCtx.n_ctx) promptCtx.tokens.erase(promptCtx.tokens.begin()); promptCtx.tokens.push_back(t); - if (!responseCallback(t, d_ptr->vocab.id_to_token[t])) + const std::string decoded = m_tokav->decode({(uint32_t) t}, *m_bpe, true, false); + if (!responseCallback(t, decoded)) goto stop_generating; } cachedTokens.clear(); diff --git a/gpt4all-backend/gptj.h b/gpt4all-backend/gptj.h index 48da82dd..655bad16 100644 --- a/gpt4all-backend/gptj.h +++ b/gpt4all-backend/gptj.h @@ -5,6 +5,7 @@ #include #include #include "llmodel.h" +#include "tokenizer/bpe.h" class GPTJPrivate; class GPTJ : public LLModel { @@ -31,6 +32,8 @@ protected: private: GPTJPrivate *d_ptr; + std::unique_ptr m_tokav; + std::unique_ptr m_bpe; }; #endif // GPTJ_H diff --git a/gpt4all-backend/mpt.cpp b/gpt4all-backend/mpt.cpp index 61e71cc4..c2ce8129 100644 --- a/gpt4all-backend/mpt.cpp +++ b/gpt4all-backend/mpt.cpp @@ -7,6 +7,7 @@ #include #include #include +#include #include #include #include @@ -785,6 +786,12 @@ bool MPT::loadModel(const std::string &modelPath) { d_ptr->modelLoaded = true; d_ptr->has_im_end = d_ptr->vocab.token_to_id.find("<|im_end|>") != d_ptr->vocab.token_to_id.end(); fflush(stdout); + + if (modelPath.find("-chat") != std::string::npos) { + get_bpecpp_tokenizer(TokenizerType::MPT_CHAT, m_bpe, m_tokav); + } else { + get_bpecpp_tokenizer(TokenizerType::MPT, m_bpe, m_tokav); + } return true; } @@ -840,7 +847,7 @@ void MPT::prompt(const std::string &prompt, int64_t t_prompt_us = 0; // tokenize the prompt - std::vector embd_inp = gpt_tokenize(d_ptr->vocab, prompt); + std::vector embd_inp = m_tokav->encode(prompt, *m_bpe); // save the context size promptCtx.n_ctx = d_ptr->model->hparams.n_ctx; @@ -906,6 +913,7 @@ void MPT::prompt(const std::string &prompt, int r_instructFound = 0; std::string cachedResponse; + std::string decodeBuffer; std::vector cachedTokens; std::unordered_set reversePrompts = { "### Instruction", "### Prompt", "### Response", "### Human", "### Assistant", "### Context" }; @@ -961,7 +969,7 @@ void MPT::prompt(const std::string &prompt, if (id == 0 /*end of text*/) goto stop_generating; - const std::string str = d_ptr->vocab.id_to_token[id]; + const std::string str = m_tokav->decode({(uint32_t) id}, *m_bpe, true, false); // Check if the provided str is part of our reverse prompts bool foundPartialReversePrompt = false; @@ -991,7 +999,8 @@ void MPT::prompt(const std::string &prompt, if (promptCtx.tokens.size() == promptCtx.n_ctx) promptCtx.tokens.erase(promptCtx.tokens.begin()); promptCtx.tokens.push_back(t); - if (!responseCallback(t, d_ptr->vocab.id_to_token[t])) + const std::string decoded = m_tokav->decode({(uint32_t) t}, *m_bpe, true, false); + if (!responseCallback(t, decoded)) goto stop_generating; } cachedTokens.clear(); diff --git a/gpt4all-backend/mpt.h b/gpt4all-backend/mpt.h index 15122d6e..74936a6c 100644 --- a/gpt4all-backend/mpt.h +++ b/gpt4all-backend/mpt.h @@ -5,6 +5,7 @@ #include #include #include "llmodel.h" +#include "tokenizer/bpe.h" class MPTPrivate; class MPT : public LLModel { @@ -31,6 +32,8 @@ protected: private: MPTPrivate *d_ptr; + std::unique_ptr m_tokav; + std::unique_ptr m_bpe; }; #endif // MPT_H diff --git a/gpt4all-backend/scripts/gen_tokenizer_include.py b/gpt4all-backend/scripts/gen_tokenizer_include.py new file mode 100644 index 00000000..0db7d81a --- /dev/null +++ b/gpt4all-backend/scripts/gen_tokenizer_include.py @@ -0,0 +1,136 @@ +import sys +import json +from dataclasses import dataclass + +def iter_with_last(lst): + llen = len(lst) + for i, entry in enumerate(lst): + last = i == (llen - 1) + yield last, entry + +@dataclass +class BufSlice: + offset: int + length: int + def __repr__(self): + return '{'f'0x{self.offset:x},{self.length}''}' + +def c_str_dump(bs): + s = bytearray() + s += b'"' + llen = 0 + lasthex = False + for byte in bs: + if byte in (b' 01234567890abcdefghijklmnopqrstuvwxyz_-=/;:<>' + b'ABCDEFGHIJKLMNOPQRSTUVWXYZ!@#$%^&*(),.[]{}`~|'): + # need to avoid hex characters not part of a hex escape + # appearing directly after a hex scape + if lasthex and byte in b'0123456789abcdefABCDEF': + s += b'""' + llen += 2 + s += bytes([byte]) + llen += 1 + lasthex = False + else: + s += f'\\x{byte:02x}'.encode('utf8') + llen += 4 + lasthex = True + if llen >= 80: + llen = 0 + s += b"\"\n\"" + s += b'"' + return s.decode('utf8') + +class Buf: + def __init__(self): + self.buf = b'' + self.cache = {} + + def get(self, s): + if s in self.cache: + return self.cache[s] + offset = len(self.buf) + bs = s.encode('utf8') + exoffs = self.buf.find(bs) + if exoffs != -1: + slc = BufSlice(offset=exoffs, length=len(bs)) + self.cache[s] = slc + return slc + return None + + def insert(self, s): + slc = self.get(s) + if slc is None: + bs = s.encode('utf8') + offset = len(self.buf) + self.buf += bs + slc = BufSlice(offset=offset, length=len(bs)) + return slc + +class BreakEvery: + def __init__(self, n): + self.counter = 0 + self.n = n + + def __repr__(self): + self.counter += 1 + self.counter %= self.n + if self.counter == 0: + return '\n' + return '' + +def do_convert(tkfilename, prefix): + with open(tkfilename, 'rb') as tkf: + tokconfig = json.load(tkf) + + # every string in the vocab also appears in the merges list so we can store + # much less data in the binary by deduplicating these references, sorting by + # length descending makes it more likely prefixes of longer strings get + # deduped, and secondarily sorting lexicographically them makes the buffer + # data more compressible (they are not compressed in the binary itself, but + # the binary will be more compressible) + split_merges = [s.split(' ') for s in tokconfig['model']['merges']] + len_then = lambda m: (len(m),m) + avwords = sorted((av['content'] for av in tokconfig['added_tokens']), key=len_then, reverse=True) + all_strs = avwords + sorted(list(tokconfig['model']['vocab'].keys()), key=len_then, reverse=True) + buf = Buf() + for s in all_strs: + buf.insert(s) + + print('// @generated GENERATED BY scripts/gen_tokenizer_include.py DO NOT MODIFY') + print(f'#ifndef {prefix.upper()}_TOKENIZER_CONFIG_H_') + print(f'#define {prefix.upper()}_TOKENIZER_CONFIG_H_') + print('#include "bpe.h"') + print(f"// buflen {len(buf.buf)}") + print(f"constexpr const char {prefix}_buffer[] =\n{c_str_dump(buf.buf)};") + avilen = len(tokconfig['added_tokens']) + print(f'constexpr std::array {prefix}_additional_vocab = ''{{') + for last, avi in iter_with_last(tokconfig['added_tokens']): + comma = ',' if not last else '' + print(' {'f'.id = {avi["id"]}, .content={buf.get(avi["content"])}, .special={json.dumps(avi["special"])}''}' + comma) + print('}};') + print() + mergeslen = len(tokconfig['model']['merges']) + print(f'constexpr std::array, {mergeslen}> {prefix}_merges = ''{{') + breaker = BreakEvery(4) + for last, (ma, mb) in iter_with_last(split_merges): + comma = ',' if not last else '' + print(' {'f'{buf.get(ma)},{buf.get(mb)}''}' + comma + repr(breaker), end='') + print('\n}};') + vocablen = len(tokconfig['model']['vocab']) + print(f'constexpr std::array {prefix}_vocab = ''{{') + breaker = BreakEvery(8) + for last, vi in iter_with_last(tokconfig['model']['vocab']): + comma = ',' if not last else '' + print(f' {buf.get(vi)}' + comma + repr(breaker), end='') + print('\n}};') + print(f'#endif // {prefix.upper()}_TOKENIZER_CONFIG_H_') + +def main(): + if len(sys.argv) < 3: + print(f'Usage: {sys.argv[0]} ') + sys.exit(1) + do_convert(sys.argv[1], sys.argv[2]) + +if __name__ == '__main__': + main() diff --git a/gpt4all-backend/tokenizer/bpe.cpp b/gpt4all-backend/tokenizer/bpe.cpp new file mode 100644 index 00000000..3a974bf7 --- /dev/null +++ b/gpt4all-backend/tokenizer/bpe.cpp @@ -0,0 +1,257 @@ +#include "bpe.h" +#include +#include +#include +#include + +#include +#include +#include + +namespace bpecpp { +const std::string_view BPE_PRETOK_REGEX = + R"('s|'t|'re|'ve|'m|'ll|'d| ?[[:alpha:]]+| ?[[:digit:]]+| ?[^\s[:alpha:][:digit:]]+|\s+(?!\S)|\s+)"; + +static void get_bigrams(const std::vector& input, + std::unordered_set& pairs) { + pairs.clear(); + auto i = input.begin(); + auto prev = *i++; + for (; i != input.end(); ++i) { + pairs.insert({prev, *i}); + prev = *i; + } +} + +BPE::BPE(const std::unordered_map& vocab, + const std::vector>& merges) { + for (auto pair : vocab) { + icu::UnicodeString encd = icu::UnicodeString::fromUTF8(pair.first); + m_vocab[encd] = pair.second; + m_reverse_vocab[pair.second] = encd; + } + size_t n = 0; + for (auto merge : merges) { + auto left = icu::UnicodeString::fromUTF8(merge.first); + auto right = icu::UnicodeString::fromUTF8(merge.second); + m_merges[{left, right}] = n++; + } +} + +std::vector BPE::encode(const std::string& input) { + auto normalized = normalize_nfc(input); + auto pretokenized = pretokenize(normalized); + std::vector tokens_merged; + for (auto &ptok : pretokenized) { + bpe(ptok, tokens_merged); + } + std::vector final_tokens; + for (auto &mtok : tokens_merged) { + final_tokens.push_back(m_vocab[mtok]); + } + return final_tokens; +} + +std::string BPE::decode(const std::vector& tokens, bool valid_utf8) { + std::string out; + for (uint32_t t : tokens) { + icu::UnicodeString benc = m_reverse_vocab[t]; + icu::StringCharacterIterator schriter(benc); + for (UChar32 c = schriter.first32(); schriter.hasNext(); + c = schriter.next32()) { + out.push_back(m_bs_table.codepoint_to_byte((uint32_t)c)); + } + } + // roundtrip through ICU to replace invalid utf8 with U+FFFD + if (valid_utf8) { + auto tmp = icu::UnicodeString::fromUTF8(out); + out.clear(); + tmp.toUTF8String(out); + } + return out; +} + +// https://github.com/karpathy/minGPT/blob/37baab71b9abea1b76ab957409a1cc2fbfba8a26/mingpt/bpe.py#L95 +void BPE::bpe(icu::UnicodeString token_pretoked, + std::vector& output) { + if (token_pretoked.length() < 2) { + output.push_back(token_pretoked); + return; + } + std::vector words; + std::vector words_update; + icu::StringCharacterIterator schriter(token_pretoked); + UChar32 c; + for (schriter.setToStart(); schriter.hasNext();) { + c = schriter.next32PostInc(); + icu::UnicodeString w; + w.append(c); + words.push_back(w); + } + std::unordered_set pairs; + get_bigrams(words, pairs); + while (true) { + size_t min_rank = SIZE_MAX; + UnicodeBigram to_merge; + for (auto &bigram : pairs) { + auto loc = m_merges.find(bigram); + if (loc != m_merges.end() && loc->second < min_rank) { + min_rank = loc->second; + to_merge = loc->first; + } + } + if (min_rank == SIZE_MAX) { + break; + } else { + auto i = words.begin(); + while (i < words.end()) { + if (*i == to_merge.first) { + auto inext = i; + inext++; + if (inext != words.end() && *inext == to_merge.second) { + words_update.push_back(*i + *inext); + i = inext; + } else { + words_update.push_back(*i); + } + } else { + words_update.push_back(*i); + } + ++i; + } + words.swap(words_update); + words_update.clear(); + get_bigrams(words, pairs); + } + } + output.insert(output.end(), words.begin(), words.end()); +} + +std::string BPE::normalize_nfc(const std::string& input) { + UErrorCode uerror = U_ZERO_ERROR; + auto nfcnorm = icu::Normalizer2::getNFCInstance(uerror); + if (!U_SUCCESS(uerror)) + throw std::runtime_error("could not get ICU NFC normalizer"); + auto icu_ti = icu::UnicodeString::fromUTF8(input); + std::string out; + nfcnorm->normalize(icu_ti, uerror).toUTF8String(out); + if (!U_SUCCESS(uerror)) + throw std::runtime_error("ICU string normalization failed"); + return out; +} + +std::vector BPE::pretokenize(const std::string& input) { + UParseError pe; + UErrorCode uerror = U_ZERO_ERROR; + auto bpe_re_icustr = icu::UnicodeString::fromUTF8(BPE_PRETOK_REGEX); + if (m_pretok_re == nullptr) { + m_pretok_re = std::unique_ptr( + icu::RegexPattern::compile(bpe_re_icustr, pe, uerror)); + if (!U_SUCCESS(uerror)) + throw std::runtime_error("Compiling BPE pretokenizer regex failed"); + } + auto uinput = icu::UnicodeString::fromUTF8(input); + std::unique_ptr pretok_matcher( + m_pretok_re->matcher(uinput, uerror)); + std::vector pretoks; + if (!U_SUCCESS(uerror)) + throw std::runtime_error("Creating BPE pretokenizer matcher failed"); + while (pretok_matcher->find()) { + auto match = pretok_matcher->group(uerror); + if (!U_SUCCESS(uerror)) + throw std::runtime_error( + "Getting BPE pretokenizer regex match failed"); + std::string s; + icu::UnicodeString out; + match.toUTF8String(s); + for (char c : s) { + uint32_t codepoint = m_bs_table.byte_to_codepoint((uint8_t)c); + out.append((UChar32)codepoint); + } + pretoks.push_back(out); + } + return pretoks; +} + +static std::string regex_escape(const std::string_view inp) { + std::string s(inp); + static const std::regex metacharacters(R"([\.\^\$\-\+\(\)\[\]\{\}\|\?\*])"); + return std::regex_replace(s, metacharacters, "\\$&"); +} + +AdditionalVocabAdapter::AdditionalVocabAdapter( + const std::vector& vocab) { + std::string addedtoken_regex; + for (const additional_vocab_item& item : vocab) { + if (!addedtoken_regex.empty()) { + addedtoken_regex += "|"; + } + addedtoken_regex += regex_escape(item.content); + m_token_to_id[item.content] = item.id; + m_id_to_token[item.id] = item.content; + if (item.special) { + m_special_ids.insert(item.id); + } + } + m_addedtoken_re = std::regex(addedtoken_regex); +} + +std::vector AdditionalVocabAdapter::encode( + const std::string& input, + BPE& bpemodel, + bool encode_special_tokens) { + if (m_token_to_id.empty()) { + return bpemodel.encode(input); + } + std::vector out; + std::string work = input; + std::smatch m; + while (std::regex_search(work, m, m_addedtoken_re)) { + auto tokloc = m_token_to_id.find(m.str()); + if (tokloc != m_token_to_id.end()) { + auto tokid = tokloc->second; + auto prefix_decoded = bpemodel.encode(m.prefix()); + out.insert(out.end(), prefix_decoded.begin(), prefix_decoded.end()); + bool special = m_special_ids.find(tokid) != m_special_ids.end(); + if (!special || encode_special_tokens) { + out.push_back(tokid); + } + work = m.suffix(); + } + } + if (!work.empty()) { + auto rest_decoded = bpemodel.encode(work); + out.insert(out.end(), rest_decoded.begin(), rest_decoded.end()); + } + return out; +} + +std::string AdditionalVocabAdapter::decode(const std::vector& tokens, + BPE& bpemodel, + bool decode_special_tokens, + bool valid_utf8) { + std::string out; + std::vector to_decode; + for (auto tokid : tokens) { + auto tokloc = m_id_to_token.find(tokid); + if (tokloc != m_id_to_token.end()) { // is an added token + if (!to_decode.empty()) { + out += bpemodel.decode(to_decode, valid_utf8); + to_decode.clear(); + } + bool special = m_special_ids.find(tokid) != m_special_ids.end(); + // only include non-special tokens unless decode_special_tokens + if (!special || decode_special_tokens) { + out += tokloc->second; + } + } else { + // non-added, regular token. + to_decode.push_back(tokid); + } + } + if (!to_decode.empty()) { + out += bpemodel.decode(to_decode, valid_utf8); + } + return out; +} +} // namespace bpecpp diff --git a/gpt4all-backend/tokenizer/bpe.h b/gpt4all-backend/tokenizer/bpe.h new file mode 100644 index 00000000..3e43dd22 --- /dev/null +++ b/gpt4all-backend/tokenizer/bpe.h @@ -0,0 +1,123 @@ +#pragma once +#include +#include + +#include +#include +#include +#include +#include +#include + +namespace bpecpp { +typedef std::pair UnicodeBigram; + +class bpe_char_byte_table { + public: + bpe_char_byte_table() { + int n = 0; + for (uint8_t byte = 0; m_codepoint_to_byte.size() < 256; byte++) { + bool keep = (byte >= '!' && byte <= '~') || + (byte >= 0xa1 && byte <= 0xac) || + (byte >= 0xae && byte <= 0xff); + uint32_t codepoint = byte; + if (!keep) { + codepoint = 256 + n; + n++; + } + m_byte_to_codepoint[byte] = codepoint; + m_codepoint_to_byte[codepoint] = byte; + }; + } + uint32_t byte_to_codepoint(uint8_t byte) { + return m_byte_to_codepoint[byte]; + } + + uint8_t codepoint_to_byte(uint32_t codepoint) { + return m_codepoint_to_byte.at(codepoint); + } + + private: + std::array m_byte_to_codepoint; + std::unordered_map m_codepoint_to_byte; +}; + +struct bigram_hash { + std::size_t operator()(const UnicodeBigram& pair) const { + return pair.first.hashCode() + pair.second.hashCode(); + } +}; + +struct icu_hash { + std::size_t operator()(const icu::UnicodeString& us) const { + return us.hashCode(); + } +}; + +class BPE { + public: + BPE(const std::unordered_map &vocab, + const std::vector> &merges); + + std::vector encode(const std::string& input); + + std::string decode(const std::vector& tokens, + bool valid_utf8 = true); + + private: + std::unordered_map m_vocab; + std::unordered_map m_reverse_vocab; + std::unordered_map m_merges; + bpe_char_byte_table m_bs_table; + + void bpe(icu::UnicodeString token_pretoked, + std::vector& output); + std::unique_ptr m_pretok_re; + std::string normalize_nfc(const std::string& input); + std::vector pretokenize(const std::string& input); +}; + +// for embedding tokenizer configs in the library - had initially constructed +// `string_view`s in the generated headers, *but* generating thousands actual +// references into the buffer generates thousands of *relocations* and makes +// compilation rather slow, delaying resolving the real address into a +// string_view until runtime fixes that +struct buf_ref { + // packing these into a single u32 reduces the size of the embedded + // configs significantly (5.0MB->1.6MB) + uint32_t offset : 20; + uint32_t length : 12; + + std::string_view into(const char* buf) { + return std::string_view(&buf[offset], length); + } +}; +struct additional_vocab_item_embedded { + uint32_t id; + buf_ref content; + bool special; +}; +struct additional_vocab_item { + uint32_t id; + std::string_view content; + bool special = false; +}; +class AdditionalVocabAdapter { + public: + AdditionalVocabAdapter(const std::vector &vocab); + std::vector encode(const std::string& input, + BPE& bpemodel, + bool encode_special_tokens = true); + std::string decode(const std::vector& tokens, + BPE& bpemodel, + bool decode_special_tokens = true, + bool valid_utf8 = true); + + private: + std::unordered_map m_token_to_id; + std::unordered_map m_id_to_token; + std::unordered_set m_special_ids; + std::regex m_addedtoken_re; +}; + +} // namespace bpecpp diff --git a/gpt4all-backend/tokenizer/gptj_tokenizer_config.h b/gpt4all-backend/tokenizer/gptj_tokenizer_config.h new file mode 100644 index 00000000..700ac421 --- /dev/null +++ b/gpt4all-backend/tokenizer/gptj_tokenizer_config.h @@ -0,0 +1,23393 @@ +// @generated GENERATED BY scripts/gen_tokenizer_include.py DO NOT MODIFY +#ifndef GPTJ_TOKENIZER_CONFIG_H_ +#define GPTJ_TOKENIZER_CONFIG_H_ +#include "bpe.h" +// buflen 203747 +constexpr const char gptj_buffer[] = +"<|extratoken_143|><|extratoken_142|><|extratoken_141|><|extratoken_140|><|extrat" +"oken_139|><|extratoken_138|><|extratoken_137|><|extratoken_136|><|extratoken_135" +"|><|extratoken_134|><|extratoken_133|><|extratoken_132|><|extratoken_131|><|extr" +"atoken_130|><|extratoken_129|><|extratoken_128|><|extratoken_127|><|extratoken_1" +"26|><|extratoken_125|><|extratoken_124|><|extratoken_123|><|extratoken_122|><|ex" +"tratoken_121|><|extratoken_120|><|extratoken_119|><|extratoken_118|><|extratoken" +"_117|><|extratoken_116|><|extratoken_115|><|extratoken_114|><|extratoken_113|><|" +"extratoken_112|><|extratoken_111|><|extratoken_110|><|extratoken_109|><|extratok" +"en_108|><|extratoken_107|><|extratoken_106|><|extratoken_105|><|extratoken_104|>" +"<|extratoken_103|><|extratoken_102|><|extratoken_101|><|extratoken_100|><|extrat" +"oken_99|><|extratoken_98|><|extratoken_97|><|extratoken_96|><|extratoken_95|><|e" +"xtratoken_94|><|extratoken_93|><|extratoken_92|><|extratoken_91|><|extratoken_90" +"|><|extratoken_89|><|extratoken_88|><|extratoken_87|><|extratoken_86|><|extratok" +"en_85|><|extratoken_84|><|extratoken_83|><|extratoken_82|><|extratoken_81|><|ext" +"ratoken_80|><|extratoken_79|><|extratoken_78|><|extratoken_77|><|extratoken_76|>" +"<|extratoken_75|><|extratoken_74|><|extratoken_73|><|extratoken_72|><|extratoken" +"_71|><|extratoken_70|><|extratoken_69|><|extratoken_68|><|extratoken_67|><|extra" +"token_66|><|extratoken_65|><|extratoken_64|><|extratoken_63|><|extratoken_62|><|" +"extratoken_61|><|extratoken_60|><|extratoken_59|><|extratoken_58|><|extratoken_5" +"7|><|extratoken_56|><|extratoken_55|><|extratoken_54|><|extratoken_53|><|extrato" +"ken_52|><|extratoken_51|><|extratoken_50|><|extratoken_49|><|extratoken_48|><|ex" +"tratoken_47|><|extratoken_46|><|extratoken_45|><|extratoken_44|><|extratoken_43|" +"><|extratoken_42|><|extratoken_41|><|extratoken_40|><|extratoken_39|><|extratoke" +"n_38|><|extratoken_37|><|extratoken_36|><|extratoken_35|><|extratoken_34|><|extr" +"atoken_33|><|extratoken_32|><|extratoken_31|><|extratoken_30|><|extratoken_29|><" +"|extratoken_28|><|extratoken_27|><|extratoken_26|><|extratoken_25|><|extratoken_" +"24|><|extratoken_23|><|extratoken_22|><|extratoken_21|><|extratoken_20|><|extrat" +"oken_19|><|extratoken_18|><|extratoken_17|><|extratoken_16|><|extratoken_15|><|e" +"xtratoken_14|><|extratoken_13|><|extratoken_12|><|extratoken_11|><|extratoken_10" +"|><|extratoken_9|><|extratoken_8|><|extratoken_7|><|extratoken_6|><|extratoken_5" +"|><|extratoken_4|><|extratoken_3|><|extratoken_2|><|extratoken_1|><|endoftext|>\xc3" +"\x83\xc4\xa5\xc3\x83\xc4\xa4\xc3\x83\xc4\xa5\xc3\x83\xc4\xa4\xc3\x83\xc4\xa5\xc3" +"\x83\xc4\xa4\xc3\x83\xc4\xa5\xc3\x83\xc4\xa4\xc3\x83\xc4\xa5\xc3\x83\xc4\xa4\xc3" +"\x83\xc4\xa5\xc3\x83\xc4\xa4\xc3\x83\xc4\xa5\xc3\x83\xc4\xa4\xc3\x83\xc4\xa5\xc3" +"\x83\xc4\xa4\xc3\x83\xc4\xa5\xc3\x83\xc4\xa4\xc3\x83\xc4\xa5\xc3\x83\xc4\xa4\xc3" +"\x83\xc4\xa5\xc3\x83\xc4\xa4\xc3\x83\xc4\xa5\xc3\x83\xc4\xa4\xc3\x83\xc4\xa5\xc3" +"\x83\xc4\xa4\xc3\x83\xc4\xa5\xc3\x83\xc4\xa4\xc3\x83\xc4\xa5\xc3\x83\xc4\xa4\xc3" +"\x83\xc4\xa5\xc3\x83\xc4\xa4\xc3\x83\xc4\xa5\xc3\x83\xc4\xa4\xc3\x83\xc4\xa5\xc3" +"\x83\xc4\xa4\xc3\x83\xc4\xa5\xc3\x83\xc4\xa4\xc3\x83\xc4\xa5\xc3\x83\xc4\xa4\xc3" +"\x83\xc4\xa5\xc3\x83\xc4\xa4\xc3\x83\xc4\xa5\xc3\x83\xc4\xa4\xc3\x83\xc4\xa5\xc3" +"\x83\xc4\xa4\xc3\x83\xc4\xa5\xc3\x83\xc4\xa4\xc3\x83\xc4\xa5\xc3\x83\xc4\xa4\xc3" +"\x83\xc4\xa5\xc3\x83\xc4\xa4\xc3\x83\xc4\xa5\xc3\x83\xc4\xa4\xc3\x83\xc4\xa5\xc3" +"\x83\xc4\xa4\xc3\x83\xc4\xa5\xc3\x83\xc4\xa4\xc3\x83\xc4\xa5\xc3\x83\xc4\xa4\xc3" +"\x83\xc4\xa5\xc3\x83\xc4\xa4\xc3\x83\xc4\xa5\xc3\x83\xc4\xa4\xc4\xa0============" +"=====================================================\xc4\xa0-------------------" +"---------------------------------------------___________________________________" +"_____________________________..................................................." +".............\xc3\xa2\xc4\xa2\xc4\xb6\xc3\xa2\xc4\xa2\xc4\xb6\xc3\xa2\xc4\xa2\xc4" +"\xb6\xc3\xa2\xc4\xa2\xc4\xb6\xc3\xa2\xc4\xa2\xc4\xb6\xc3\xa2\xc4\xa2\xc4\xb6\xc3" +"\xa2\xc4\xa2\xc4\xb6\xc3\xa2\xc4\xa2\xc4\xb6\xc3\xa2\xc4\xa2\xc4\xb6\xc3\xa2\xc4" +"\xa2\xc4\xb6\xc3\xa2\xc4\xa2\xc4\xb6\xc3\xa2\xc4\xa2\xc4\xb6\xc3\xa2\xc4\xa2\xc4" +"\xb6\xc3\xa2\xc4\xa2\xc4\xb6\xc3\xa2\xc4\xa2\xc4\xb6\xc3\xa2\xc4\xa2\xc4\xb6\xc4" +"\xa0********************************\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc3\x82\xc5" +"\x82\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc3\x82\xc5" +"\x82\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc3\x82\xc5" +"\x82\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc3\x82\xc2\xaf\xc3\x82\xc2" +"\xaf\xc3\x82\xc2\xaf\xc3\x82\xc2\xaf\xc3\x82\xc2\xaf\xc3\x82\xc2\xaf\xc3\x82\xc2" +"\xaf\xc3\x82\xc2\xaf\xc3\x82\xc2\xaf\xc3\x82\xc2\xaf\xc3\x82\xc2\xaf\xc3\x82\xc2" +"\xaf\xc3\x82\xc2\xaf\xc3\x82\xc2\xaf\xc3\x82\xc2\xaf\xc3\x82\xc2\xafrawdownloadc" +"loneembedreportprint////////////////////////////////############################" +"####\xc4\xa0\xc3\xaf\xc2\xbf\xc2\xbd\xc3\xaf\xc2\xbf\xc2\xbd\xc3\xaf\xc2\xbf\xc2" +"\xbd\xc3\xaf\xc2\xbf\xc2\xbd\xc3\xaf\xc2\xbf\xc2\xbd\xc3\xaf\xc2\xbf\xc2\xbd\xc3" +"\xaf\xc2\xbf\xc2\xbd\xc3\xaf\xc2\xbf\xc2\xbd\xc4\xa0\xc3\x82\xc5\x82\xc4\xa0\xc3" +"\x82\xc5\x82\xc4\xa0\xc3\x82\xc5\x82\xc4\xa0\xc3\x82\xc5\x82\xc4\xa0\xc3\x82\xc5" +"\x82\xc4\xa0\xc3\x82\xc5\x82\xc4\xa0\xc3\x82\xc5\x82\xc4\xa0\xc3\x82\xc5\x82\xc3" +"\xa2\xc4\xb8\xc4\xaa\xc3\xa2\xc4\xb8\xc4\xaa\xc3\xa2\xc4\xb8\xc4\xaa\xc3\xa2\xc4" +"\xb8\xc4\xaa\xc3\xa2\xc4\xb8\xc4\xaa\xc3\xa2\xc4\xb8\xc4\xaa\xc3\xa2\xc4\xb8\xc4" +"\xaa\xc3\xa2\xc4\xb8\xc4\xaa\xc3\xa2\xc4\xb6\xc4\xa2\xc3\xa2\xc4\xb6\xc4\xa2\xc3" +"\xa2\xc4\xb6\xc4\xa2\xc3\xa2\xc4\xb6\xc4\xa2\xc3\xa2\xc4\xb6\xc4\xa2\xc3\xa2\xc4" +"\xb6\xc4\xa2\xc3\xa2\xc4\xb6\xc4\xa2\xc3\xa2\xc4\xb6\xc4\xa2\xc3\xa2\xc4\xa2\xc2" +"\xa6\xc3\xa2\xc4\xa2\xc2\xa6\xc3\xa2\xc4\xa2\xc2\xa6\xc3\xa2\xc4\xa2\xc2\xa6\xc3" +"\xa2\xc4\xa2\xc2\xa6\xc3\xa2\xc4\xa2\xc2\xa6\xc3\xa2\xc4\xa2\xc2\xa6\xc3\xa2\xc4" +"\xa2\xc2\xa6""BuyableInstoreAndOnline\xc4\xa0RandomRedditorWithNo\xc4\xa0\xc3\xa3" +"\xc4\xa4\xc2\xb5\xc3\xa3\xc4\xa5\xc2\xbc\xc3\xa3\xc4\xa5\xc4\xa8\xc3\xa3\xc4\xa4" +"\xc2\xa3\xc3\xa3\xc4\xa5\xc2\xaf\xc3\xa3\xc4\xa5\xc2\xb3\xc4\xa0telecommunicatio" +"ns\xc4\xa0guiActiveUnfocused\xc4\xa0""disproportionately\xc4\xa0Telecommunicatio" +"nschannelAvailability\xc4\xa0indistinguishable\xc4\xa0""externalToEVAOnly\xc4\xa0" +"""environmentalists\xc4\xa0""counterproductive\xc4\xa0SolidGoldMagikarpquickShip" +"AvailableisSpecialOrderableexternalActionCodeItemThumbnailImage\xc4\xa0unconstit" +"utional\xc4\xa0responsibilities\xc4\xa0misunderstanding\xc4\xa0incomprehensible\xc4" +"\xa0gastrointestinal\xc4\xa0""entrepreneurship\xc4\xa0""enthusiastically\xc4\xa0" +"""cryptocurrencies\xc4\xa0""counterterrorism\xc4\xa0""constitutionally\xc4\xa0""c" +"haracterization\xc4\xa0................natureconservancyinventoryQuantity\xc4\xa0" +"vulnerabilities\xc4\xa0unintentionally\xc4\xa0transformations\xc4\xa0technologic" +"ally\xc4\xa0synchronization\xc4\xa0supplementation\xc4\xa0straightforward\xc4\xa0" +"revolutionaries\xc4\xa0representatives\xc4\xa0representations\xc4\xa0recommendat" +"ions\xc4\xa0psychologically\xc4\xa0professionalism\xc4\xa0notwithstanding\xc4\xa0" +"methamphetamine\xc4\xa0interpretations\xc4\xa0internationally\xc4\xa0interchange" +"able\xc4\xa0inconsistencies\xc4\xa0inappropriately\xc4\xa0implementations\xc4\xa0" +"""extraordinarily\xc4\xa0""experimentation\xc4\xa0""environmentally\xc4\xa0""ent" +"repreneurial\xc4\xa0""electromagnetic\xc4\xa0""dissatisfaction\xc4\xa0""differen" +"tiation\xc4\xa0""congratulations\xc4\xa0""confidentiality\xc4\xa0""competitivene" +"ss\xc4\xa0""characteristics\xc4\xa0""antidepressants\xc4\xa0""administrations\xc4" +"\xa0""acknowledgement\xc4\xa0""accomplishments\xc4\xa0Representatives\xc4\xa0Not" +"withstanding\xc4\xa0""Congratulations\xc4\xa0""Charlottesville~~~~~~~~~~~~~~~~oo" +"oooooooooooooo\x5c\x5c\x5c\x5c\x5c\x5c\x5c\x5c\x5c\x5c\x5c\x5c\x5c\x5c\x5c\x5c=-" +"=-=-=-=-=-=-=-0000000000000000\x2b\x2b\x2b\x2b\x2b\x2b\x2b\x2b\x2b\x2b\x2b\x2b\x2b" +"\x2b\x2b\x2b\xc4\xa0whistleblowers\xc4\xa0unsurprisingly\xc4\xa0unsuccessfully\xc4" +"\xa0unfocusedRange\xc4\xa0understatement\xc4\xa0understandably\xc4\xa0understand" +"able\xc4\xa0underestimated\xc4\xa0unconventional\xc4\xa0transportation\xc4\xa0tr" +"ansformative\xc4\xa0systematically\xc4\xa0sustainability\xc4\xa0susceptibility\xc4" +"\xa0superintendent\xc4\xa0strutConnector\xc4\xa0specifications\xc4\xa0specializa" +"tion\xc4\xa0sophistication\xc4\xa0simultaneously\xc4\xa0scientifically\xc4\xa0re" +"sponsiveness\xc4\xa0responsibility\xc4\xa0reinforcements\xc4\xa0rehabilitation\xc4" +"\xa0redistribution\xc4\xa0reconstruction\xc4\xa0reconnaissance\xc4\xa0reconcilia" +"tion\xc4\xa0qualifications\xc4\xa0professionally\xc4\xa0pharmaceutical\xc4\xa0ov" +"erwhelmingly\xc4\xa0organizational\xc4\xa0neighbourhoods\xc4\xa0municipalities\xc4" +"\xa0multiplication\xc4\xa0misinformation\xc4\xa0misconceptions\xc4\xa0methodolog" +"ical\xc4\xa0manifestations\xc4\xa0irregularities\xc4\xa0investigations\xc4\xa0in" +"terconnected\xc4\xa0intellectually\xc4\xa0initialization\xc4\xa0infrastructure\xc4" +"\xa0industrialized\xc4\xa0identification\xc4\xa0hallucinations\xc4\xa0groundbrea" +"king\xc4\xa0geographically\xc4\xa0""fundamentalist\xc4\xa0""establishments\xc4\xa0" +"""electronically\xc4\xa0""distinguishing\xc4\xa0""disinformation\xc4\xa0""discri" +"minatory\xc4\xa0""discrimination\xc4\xa0""discriminating\xc4\xa0""disappointment" +"\xc4\xa0""differentiated\xc4\xa0""demonstrations\xc4\xa0""democratically\xc4\xa0" +"""cryptocurrency\xc4\xa0""correspondence\xc4\xa0""contradictions\xc4\xa0""contra" +"ceptives\xc4\xa0""contemporaries\xc4\xa0""constituencies\xc4\xa0""considerations" +"\xc4\xa0""configurations\xc4\xa0""concentrations\xc4\xa0""communications\xc4\xa0" +"""collaborations\xc4\xa0""classification\xc4\xa0""cardiovascular\xc4\xa0""authen" +"tication\xc4\xa0""attractiveness\xc4\xa0""archaeologists\xc4\xa0""archaeological" +"\xc4\xa0""appropriations\xc4\xa0""aforementioned\xc4\xa0""advertisements\xc4\xa0" +"""administrators\xc4\xa0""administrative\xc4\xa0""acknowledgment\xc4\xa0""accoun" +"tability\xc4\xa0""accommodations\xc4\xa0Transportation\xc4\xa0Transformation\xc4" +"\xa0Superintendent\xc4\xa0Specifications\xc4\xa0Schwarzenegger\xc4\xa0Responsibi" +"lity\xc4\xa0Reconstruction\xc4\xa0Pharmaceutical\xc4\xa0Investigations\xc4\xa0In" +"frastructure\xc4\xa0Implementation\xc4\xa0Identification\xc4\xa0""Discrimination" +"\xc4\xa0""Constitutional\xc4\xa0""Constantinople\xc4\xa0""Communications\xc4\xa0" +"""Classification\xc4\xa0""Authentication\xc4\xa0""Appropriations\xc4\xa0""Admini" +"strative\xc4\xa0""Administration\xc4\xa0""AccountabilityrealDonaldTrumpFactoryRe" +"loaded\xc4\xa0vulnerability\xc4\xa0visualization\xc4\xa0unwillingness\xc4\xa0uns" +"ustainable\xc4\xa0unpredictable\xc4\xa0unprecedented\xc4\xa0unnecessarily\xc4\xa0" +"uninterrupted\xc4\xa0unfortunately\xc4\xa0unforgettable\xc4\xa0unequivocally\xc4" +"\xa0understanding\xc4\xa0undergraduate\xc4\xa0unconsciously\xc4\xa0unconditional" +"\xc4\xa0uncomfortable\xc4\xa0uncertainties\xc4\xa0unaccompanied\xc4\xa0transmiss" +"ions\xc4\xa0transitioning\xc4\xa0transcription\xc4\xa0traditionally\xc4\xa0theor" +"etically\xc4\xa0teleportation\xc4\xa0supplementary\xc4\xa0substantially\xc4\xa0s" +"ubscriptions\xc4\xa0strengthening\xc4\xa0strategically\xc4\xa0stereotypical\xc4\xa0" +"statistically\xc4\xa0stabilization\xc4\xa0spontaneously\xc4\xa0sophisticated\xc4" +"\xa0socioeconomic\xc4\xa0significantly\xc4\xa0sensibilities\xc4\xa0schizophrenia" +"\xc4\xa0righteousness\xc4\xa0revolutionary\xc4\xa0retrospective\xc4\xa0restructu" +"ring\xc4\xa0repercussions\xc4\xa0relationships\xc4\xa0reimbursement\xc4\xa0regis" +"trations\xc4\xa0redistributed\xc4\xa0redevelopment\xc4\xa0reconstructed\xc4\xa0r" +"ealistically\xc4\xa0ramifications\xc4\xa0questionnaire\xc4\xa0psychologists\xc4\xa0" +"psychiatrists\xc4\xa0pronunciation\xc4\xa0proliferation\xc4\xa0progressively\xc4" +"\xa0profitability\xc4\xa0professionals\xc4\xa0probabilities\xc4\xa0privatization" +"\xc4\xa0presentations\xc4\xa0prescriptions\xc4\xa0predominantly\xc4\xa0predeterm" +"ined\xc4\xa0precipitation\xc4\xa0practitioners\xc4\xa0possibilities\xc4\xa0physi" +"ological\xc4\xa0photographers\xc4\xa0philosophical\xc4\xa0personalities\xc4\xa0p" +"erpendicular\xc4\xa0participation\xc4\xa0participating\xc4\xa0parliamentary\xc4\xa0" +"organizations\xc4\xa0organisations\xc4\xa0optimizations\xc4\xa0opportunities\xc4" +"\xa0observational\xc4\xa0objectionable\xc4\xa0notifications\xc4\xa0neighborhoods" +"\xc4\xa0multinational\xc4\xa0multicultural\xc4\xa0modifications\xc4\xa0moderniza" +"tion\xc4\xa0mitochondrial\xc4\xa0misunderstood\xc4\xa0mathematician\xc4\xa0manuf" +"acturing\xc4\xa0manufacturers\xc4\xa0magnification\xc4\xa0largeDownload\xc4\xa0k" +"nowledgeable\xc4\xa0justification\xc4\xa0jurisdictions\xc4\xa0irresponsible\xc4\xa0" +"investigators\xc4\xa0investigative\xc4\xa0investigating\xc4\xa0intrinsically\xc4" +"\xa0interventions\xc4\xa0intersections\xc4\xa0interrogation\xc4\xa0interpersonal" +"\xc4\xa0interestingly\xc4\xa0interceptions\xc4\xa0intentionally\xc4\xa0intellect" +"uals\xc4\xa0instructional\xc4\xa0institutional\xc4\xa0instinctively\xc4\xa0insta" +"ntaneous\xc4\xa0installations\xc4\xa0inspirational\xc4\xa0insignificant\xc4\xa0i" +"nformational\xc4\xa0inexperienced\xc4\xa0individuality\xc4\xa0indispensable\xc4\xa0" +"independently\xc4\xa0incorporation\xc4\xa0incorporating\xc4\xa0inconvenience\xc4" +"\xa0inconsistency\xc4\xa0incarceration\xc4\xa0inadvertently\xc4\xa0impossibility" +"\xc4\xa0illustrations\xc4\xa0ideologically\xc4\xa0homosexuality\xc4\xa0heterogen" +"eity\xc4\xa0heartbreaking\xc4\xa0headquartered\xc4\xa0gubernatorial\xc4\xa0gravi" +"tational\xc4\xa0gratification\xc4\xa0granddaughter\xc4\xa0grandchildren\xc4\xa0g" +"lobalization\xc4\xa0""fundamentally\xc4\xa0""functionality\xc4\xa0""fragmentatio" +"n\xc4\xa0""extraordinary\xc4\xa0""extermination\xc4\xa0""exponentially\xc4\xa0""e" +"xperimenting\xc4\xa0""exceptionally\xc4\xa0""entertainment\xc4\xa0""enlightenmen" +"t\xc4\xa0""encouragement\xc4\xa0""embarrassment\xc4\xa0""effectiveness\xc4\xa0""d" +"ysfunctional\xc4\xa0""documentation\xc4\xa0""documentaries\xc4\xa0""distribution" +"s\xc4\xa0""distinguishes\xc4\xa0""distinguished\xc4\xa0""dissemination\xc4\xa0""d" +"isrespectful\xc4\xa0""discriminated\xc4\xa0""discretionary\xc4\xa0""discrepancie" +"s\xc4\xa0""disappointing\xc4\xa0""disappearance\xc4\xa0""disagreements\xc4\xa0""d" +"isadvantages\xc4\xa0""disadvantaged\xc4\xa0""developmental\xc4\xa0""determinatio" +"n\xc4\xa0""deterioration\xc4\xa0""deteriorating\xc4\xa0""denominations\xc4\xa0""d" +"emonstrators\xc4\xa0""demonstrating\xc4\xa0""deliberations\xc4\xa0""deforestatio" +"n\xc4\xa0""decentralized\xc4\xa0""cybersecurity\xc4\xa0""customization\xc4\xa0""c" +"ryptographic\xc4\xa0""corresponding\xc4\xa0""correspondent\xc4\xa0""conversation" +"s\xc4\xa0""controversies\xc4\xa0""controversial\xc4\xa0""contributions\xc4\xa0""c" +"ontradictory\xc4\xa0""contraception\xc4\xa0""contemplation\xc4\xa0""contemplatin" +"g\xc4\xa0""contamination\xc4\xa0""consultations\xc4\xa0""constellation\xc4\xa0""c" +"onsolidation\xc4\xa0""conservatives\xc4\xa0""consequential\xc4\xa0""consciousnes" +"s\xc4\xa0""conscientious\xc4\xa0""congressional\xc4\xa0""congratulated\xc4\xa0""c" +"onfrontation\xc4\xa0""concentrating\xc4\xa0""computational\xc4\xa0""comprehensiv" +"e\xc4\xa0""comprehension\xc4\xa0""complimentary\xc4\xa0""complications\xc4\xa0""c" +"omplementary\xc4\xa0""compatibility\xc4\xa0""compassionate\xc4\xa0""comparativel" +"y\xc4\xa0""communicating\xc4\xa0""commissioners\xc4\xa0""collaborators\xc4\xa0""c" +"ollaborative\xc4\xa0""collaborating\xc4\xa0""clarification\xc4\xa0""civilization" +"s\xc4\xa0""circumstances\xc4\xa0""circumference\xc4\xa0""chronological\xc4\xa0""c" +"haracterized\xc4\xa0""championships\xc4\xa0""certification\xc4\xa0""carbohydrate" +"s\xc4\xa0""breastfeeding\xc4\xa0""beneficiaries\xc4\xa0""automatically\xc4\xa0""a" +"utobiography\xc4\xa0""authorization\xc4\xa0""authoritative\xc4\xa0""authoritaria" +"n\xc4\xa0""authenticated\xc4\xa0""assassination\xc4\xa0""architectures\xc4\xa0""a" +"rchitectural\xc4\xa0""approximation\xc4\xa0""approximately\xc4\xa0""appropriatel" +"y\xc4\xa0""announcements\xc4\xa0""amplification\xc4\xa0""alternatively\xc4\xa0""a" +"ffordability\xc4\xa0""administering\xc4\xa0""acquaintances\xc4\xa0""acknowledgin" +"g\xc4\xa0""accommodating\xc4\xa0""accessibility\xc4\xa0""abnormalities\xc4\xa0Un" +"fortunately\xc4\xa0Understanding\xc4\xa0TheNitromeFan\xc4\xa0Supplementary\xc4\xa0" +"Revolutionary\xc4\xa0Psychological\xc4\xa0Participation\xc4\xa0Parliamentary\xc4" +"\xa0Organizations\xc4\xa0Miscellaneous\xc4\xa0Mediterranean\xc4\xa0Massachusetts" +"\xc4\xa0Manufacturing\xc4\xa0Investigators\xc4\xa0Investigative\xc4\xa0Internati" +"onal\xc4\xa0Interestingly\xc4\xa0""Establishment\xc4\xa0""Environmental\xc4\xa0""E" +"ntertainment\xc4\xa0""Enlightenment\xc4\xa0""Documentation\xc4\xa0""Contribution" +"s\xc4\xa0""Conservatives\xc4\xa0""Congressional\xc4\xa0""Configuration\xc4\xa0""C" +"onfederation\xc4\xa0""Comprehensive\xc4\xa0""Compatibility\xc4\xa0""Commissioner" +"s\xc4\xa0""Championships\xc4\xa0""Certification\xc4\xa0""Authorization\xc4\xa0""A" +"pproximately\xc4\xa0""Alternatively\xc4\xa0""Advertisement\xc4\xa0""Administrato" +"rsoDeliveryDateTPPStreamerBotSpaceEngineersForgeModLoaderDragonMagazineAdvertise" +"ments\xc4\xa0volunteering\xc4\xa0veterinarian\xc4\xa0verification\xc4\xa0vaccina" +"tions\xc4\xa0unsuspecting\xc4\xa0unrestricted\xc4\xa0unreasonable\xc4\xa0unparal" +"leled\xc4\xa0universities\xc4\xa0unimaginable\xc4\xa0unilaterally\xc4\xa0unident" +"ified\xc4\xa0unexpectedly\xc4\xa0unemployment\xc4\xa0undocumented\xc4\xa0uncontr" +"olled\xc4\xa0unbelievably\xc4\xa0unbelievable\xc4\xa0unauthorized\xc4\xa0unaccep" +"table\xc4\xa0tuberculosis\xc4\xa0tremendously\xc4\xa0transporting\xc4\xa0transpa" +"rency\xc4\xa0transmitting\xc4\xa0translations\xc4\xa0transitioned\xc4\xa0transit" +"ional\xc4\xa0transforming\xc4\xa0transferring\xc4\xa0transactions\xc4\xa0totalit" +"arian\xc4\xa0testosterone\xc4\xa0temperatures\xc4\xa0technologies\xc4\xa0synchro" +"nized\xc4\xa0surveillance\xc4\xa0surroundings\xc4\xa0surprisingly\xc4\xa0suprema" +"cists\xc4\xa0supplemented\xc4\xa0supplemental\xc4\xa0supernatural\xc4\xa0superma" +"rkets\xc4\xa0sufficiently\xc4\xa0successfully\xc4\xa0substitution\xc4\xa0subsidi" +"aries\xc4\xa0subsequently\xc4\xa0subparagraph\xc4\xa0subordinates\xc4\xa0subcons" +"cious\xc4\xa0subcommittee\xc4\xa0strengthened\xc4\xa0strawberries\xc4\xa0storyte" +"lling\xc4\xa0standardized\xc4\xa0stakeholders\xc4\xa0spokesperson\xc4\xa0spiritu" +"ality\xc4\xa0specifically\xc4\xa0specializing\xc4\xa0southwestern\xc4\xa0southea" +"stern\xc4\xa0solicitation\xc4\xa0similarities\xc4\xa0significance\xc4\xa0shortco" +"mings\xc4\xa0shareholders\xc4\xa0scholarships\xc4\xa0satisfactory\xc4\xa0satisfa" +"ction\xc4\xa0ridiculously\xc4\xa0resurrection\xc4\xa0restrictions\xc4\xa0respect" +"ively\xc4\xa0respectfully\xc4\xa0resettlement\xc4\xa0reservations\xc4\xa0require" +"ments\xc4\xa0reproductive\xc4\xa0reproduction\xc4\xa0representing\xc4\xa0reposit" +"ories\xc4\xa0replacements\xc4\xa0relentlessly\xc4\xa0regeneration\xc4\xa0refrige" +"rator\xc4\xa0recreational\xc4\xa0recommending\xc4\xa0recollection\xc4\xa0recogni" +"zable\xc4\xa0ratification\xc4\xa0questionable\xc4\xa0quarterbacks\xc4\xa0quantit" +"ative\xc4\xa0purposefully\xc4\xa0publications\xc4\xa0protagonists\xc4\xa0prostit" +"ution\xc4\xa0prosecutions\xc4\xa0propositions\xc4\xa0proportional\xc4\xa0prohibi" +"tions\xc4\xa0progressives\xc4\xa0productivity\xc4\xa0proclamation\xc4\xa0preside" +"ntial\xc4\xa0preservation\xc4\xa0prerequisite\xc4\xa0preparations\xc4\xa0prefere" +"ntial\xc4\xa0predecessors\xc4\xa0pornographic\xc4\xa0policymakers\xc4\xa0polariz" +"ation\xc4\xa0photographic\xc4\xa0photographed\xc4\xa0philosophies\xc4\xa0philoso" +"phers\xc4\xa0perspectives\xc4\xa0personalized\xc4\xa0perpetrators\xc4\xa0periodi" +"cally\xc4\xa0performances\xc4\xa0pathological\xc4\xa0passionately\xc4\xa0partner" +"ships\xc4\xa0particularly\xc4\xa0participates\xc4\xa0participated\xc4\xa0partici" +"pants\xc4\xa0paramilitary\xc4\xa0overshadowed\xc4\xa0orchestrated\xc4\xa0occupat" +"ional\xc4\xa0occasionally\xc4\xa0observations\xc4\xa0northwestern\xc4\xa0northea" +"stern\xc4\xa0nevertheless\xc4\xa0neuroscience\xc4\xa0neurological\xc4\xa0neighbo" +"uring\xc4\xa0negotiations\xc4\xa0nationalists\xc4\xa0narcissistic\xc4\xa0mysteri" +"ously\xc4\xa0municipality\xc4\xa0motivational\xc4\xa0mobilization\xc4\xa0mission" +"aries\xc4\xa0misrepresent\xc4\xa0misinterpret\xc4\xa0milliseconds\xc4\xa0million" +"aires\xc4\xa0metropolitan\xc4\xa0meticulously\xc4\xa0metaphysical\xc4\xa0mechani" +"cally\xc4\xa0measurements\xc4\xa0mathematical\xc4\xa0masturbation\xc4\xa0margina" +"lized\xc4\xa0manufactures\xc4\xa0manufactured\xc4\xa0manslaughter\xc4\xa0manipul" +"ative\xc4\xa0manipulation\xc4\xa0manipulating\xc4\xa0malnutrition\xc4\xa0longsta" +"nding\xc4\xa0longitudinal\xc4\xa0localization\xc4\xa0libertarians\xc4\xa0legitim" +"ately\xc4\xa0legislatures\xc4\xa0legalization\xc4\xa0laboratories\xc4\xa0kinderg" +"arten\xc4\xa0journalistic\xc4\xa0irreversible\xc4\xa0irrespective\xc4\xa0irresis" +"tible\xc4\xa0investigates\xc4\xa0investigated\xc4\xa0introductory\xc4\xa0introdu" +"ction\xc4\xa0intoxication\xc4\xa0intimidation\xc4\xa0intimidating\xc4\xa0intervi" +"ewing\xc4\xa0interstellar\xc4\xa0interruption\xc4\xa0interrogated\xc4\xa0interpr" +"eting\xc4\xa0intermittent\xc4\xa0intermediate\xc4\xa0intermediary\xc4\xa0interfe" +"rence\xc4\xa0interactions\xc4\xa0intelligence\xc4\xa0insurrection\xc4\xa0insuffi" +"cient\xc4\xa0instrumental\xc4\xa0instructions\xc4\xa0institutions\xc4\xa0install" +"ments\xc4\xa0infringement\xc4\xa0inflammatory\xc4\xa0inflammation\xc4\xa0infiltr" +"ation\xc4\xa0inexplicable\xc4\xa0inequalities\xc4\xa0individually\xc4\xa0indiffe" +"rence\xc4\xa0independents\xc4\xa0independence\xc4\xa0indefinitely\xc4\xa0increas" +"ingly\xc4\xa0incorporates\xc4\xa0incorporated\xc4\xa0inconvenient\xc4\xa0inconsi" +"stent\xc4\xa0incompetence\xc4\xa0incompatible\xc4\xa0incidentally\xc4\xa0incarce" +"rated\xc4\xa0inauguration\xc4\xa0inaccessible\xc4\xa0improvements\xc4\xa0impriso" +"nment\xc4\xa0impoverished\xc4\xa0implications\xc4\xa0implementing\xc4\xa0illustr" +"ating\xc4\xa0illumination\xc4\xa0illuminating\xc4\xa0illegitimate\xc4\xa0identif" +"iable\xc4\xa0hypothetical\xc4\xa0hypothesized\xc4\xa0hypocritical\xc4\xa0hyperte" +"nsion\xc4\xa0humanitarian\xc4\xa0hospitalized\xc4\xa0horizontally\xc4\xa0homeles" +"sness\xc4\xa0historically\xc4\xa0highlighting\xc4\xa0hierarchical\xc4\xa0heteros" +"exual\xc4\xa0headquarters\xc4\xa0guaranteeing\xc4\xa0grandparents\xc4\xa0governm" +"ental\xc4\xa0geopolitical\xc4\xa0generational\xc4\xa0""fundamentals\xc4\xa0""fun" +"ctionally\xc4\xa0""frustrations\xc4\xa0""foundational\xc4\xa0""formulations\xc4\xa0" +"""fluctuations\xc4\xa0""firefighters\xc4\xa0""fingerprints\xc4\xa0""fermentation" +"\xc4\xa0""facilitating\xc4\xa0""extinguished\xc4\xa0""exploitation\xc4\xa0""expl" +"anations\xc4\xa0""experimented\xc4\xa0""experimental\xc4\xa0""experiencing\xc4\xa0" +"""expenditures\xc4\xa0""expectations\xc4\xa0""excruciating\xc4\xa0""examinations" +"\xc4\xa0""exaggeration\xc4\xa0""evolutionary\xc4\xa0""evangelicals\xc4\xa0""esta" +"blishing\xc4\xa0""environments\xc4\xa0""entertaining\xc4\xa0""enhancements\xc4\xa0" +"""endorsements\xc4\xa0""encyclopedia\xc4\xa0""encountering\xc4\xa0""emphatically" +"\xc4\xa0""embarrassing\xc4\xa0""emancipation\xc4\xa0""effortlessly\xc4\xa0""econ" +"omically\xc4\xa0""dramatically\xc4\xa0""downloadable\xc4\xa0""domestically\xc4\xa0" +"""disturbances\xc4\xa0""distributors\xc4\xa0""distributing\xc4\xa0""distractions" +"\xc4\xa0""distinctions\xc4\xa0""dissertation\xc4\xa0""dissatisfied\xc4\xa0""disq" +"ualified\xc4\xa0""displacement\xc4\xa0""dispensaries\xc4\xa0""disobedience\xc4\xa0" +"""discouraging\xc4\xa0""discontinued\xc4\xa0""disconnected\xc4\xa0""disciplinary" +"\xc4\xa0""disappointed\xc4\xa0""disappearing\xc4\xa0""disabilities\xc4\xa0""diff" +"iculties\xc4\xa0""differential\xc4\xa0""dictatorship\xc4\xa0""developments\xc4\xa0" +"""deteriorated\xc4\xa0""destinations\xc4\xa0""descriptions\xc4\xa0""deregulation" +"\xc4\xa0""depreciation\xc4\xa0""dependencies\xc4\xa0""demonstrates\xc4\xa0""demo" +"nstrated\xc4\xa0""demographics\xc4\xa0""deliberately\xc4\xa0""definitively\xc4\xa0" +"""deficiencies\xc4\xa0""declarations\xc4\xa0""debilitating\xc4\xa0""customizable" +"\xc4\xa0""cryptography\xc4\xa0""crowdfunding\xc4\xa0""counterparts\xc4\xa0""corr" +"elations\xc4\xa0""correctional\xc4\xa0""corporations\xc4\xa0""coordination\xc4\xa0" +"""coordinating\xc4\xa0""conventional\xc4\xa0""conveniently\xc4\xa0""contributors" +"\xc4\xa0""contributing\xc4\xa0""contradicted\xc4\xa0""continuously\xc4\xa0""cont" +"inuation\xc4\xa0""contemporary\xc4\xa0""contemplated\xc4\xa0""contaminated\xc4\xa0" +"""contaminants\xc4\xa0""constructive\xc4\xa0""construction\xc4\xa0""constructing" +"\xc4\xa0""constituents\xc4\xa0""constituency\xc4\xa0""consolidated\xc4\xa0""cons" +"istently\xc4\xa0""considerably\xc4\xa0""considerable\xc4\xa0""conservatism\xc4\xa0" +"""conservation\xc4\xa0""consequently\xc4\xa0""consequences\xc4\xa0""connectivity" +"\xc4\xa0""congregation\xc4\xa0""conglomerate\xc4\xa0""confirmation\xc4\xa0""cond" +"itioning\xc4\xa0""condemnation\xc4\xa0""concurrently\xc4\xa0""concentrated\xc4\xa0" +"""compromising\xc4\xa0""compositions\xc4\xa0""complexities\xc4\xa0""competitions" +"\xc4\xa0""compensation\xc4\xa0""communicates\xc4\xa0""communicated\xc4\xa0""comm" +"issioned\xc4\xa0""commercially\xc4\xa0""commentators\xc4\xa0""commencement\xc4\xa0" +"""commandments\xc4\xa0""combinations\xc4\xa0""colonization\xc4\xa0""collectively" +"\xc4\xa0""collaborated\xc4\xa0""coefficients\xc4\xa0""civilisation\xc4\xa0""circ" +"umcision\xc4\xa0""chemotherapy\xc4\xa0""certificates\xc4\xa0""celebrations\xc4\xa0" +"""catastrophic\xc4\xa0""capabilities\xc4\xa0""cannabinoids\xc4\xa0""cancellation" +"\xc4\xa0""calculations\xc4\xa0""bureaucratic\xc4\xa0""broadcasting\xc4\xa0""broa" +"dcasters\xc4\xa0""breathtaking\xc4\xa0""breakthrough\xc4\xa0""biologically\xc4\xa0" +"""biodiversity\xc4\xa0""billionaires\xc4\xa0""battleground\xc4\xa0""availability" +"\xc4\xa0""authenticity\xc4\xa0""attributable\xc4\xa0""asynchronous\xc4\xa0""astr" +"onomical\xc4\xa0""associations\xc4\xa0""assassinated\xc4\xa0""artificially\xc4\xa0" +"""arrangements\xc4\xa0""appropriated\xc4\xa0""apprehension\xc4\xa0""appreciation" +"\xc4\xa0""appointments\xc4\xa0""applications\xc4\xa0""antioxidants\xc4\xa0""anti" +"cipation\xc4\xa0""anticipating\xc4\xa0""anthropology\xc4\xa0""annihilation\xc4\xa0" +"""alternatives\xc4\xa0""agricultural\xc4\xa0""aggressively\xc4\xa0""advantageous" +"\xc4\xa0""advancements\xc4\xa0""administered\xc4\xa0""additionally\xc4\xa0""acqu" +"isitions\xc4\xa0""acknowledges\xc4\xa0""acknowledged\xc4\xa0""achievements\xc4\xa0" +"""accumulation\xc4\xa0""accumulating\xc4\xa0""accomplished\xc4\xa0""accompanying" +"\xc4\xa0""accidentally\xc4\xa0""acceleration\xc4\xa0""accelerating\xc4\xa0Yianno" +"poulos\xc4\xa0Universities\xc4\xa0Unemployment\xc4\xa0UNCLASSIFIED\xc4\xa0Transp" +"arency\xc4\xa0Transmission\xc4\xa0Transformers\xc4\xa0Transactions\xc4\xa0Timber" +"wolves\xc4\xa0Thanksgiving\xc4\xa0Technologies\xc4\xa0Surveillance\xc4\xa0Surpri" +"singly\xc4\xa0Supplemental\xc4\xa0Subcommittee\xc4\xa0Specifically\xc4\xa0Shutte" +"rstock\xc4\xa0SetTextColor\xc4\xa0Scandinavian\xc4\xa0Saskatchewan\xc4\xa0Resurr" +"ection\xc4\xa0Requirements\xc4\xa0Relationship\xc4\xa0Reincarnated\xc4\xa0Regist" +"ration\xc4\xa0Publications\xc4\xa0Professional\xc4\xa0Presidential\xc4\xa0Preser" +"vation\xc4\xa0Presbyterian\xc4\xa0Photographer\xc4\xa0Philadelphia\xc4\xa0Pennsy" +"lvania\xc4\xa0Particularly\xc4\xa0Participants\xc4\xa0Palestinians\xc4\xa0Organi" +"sation\xc4\xa0Occasionally\xc4\xa0Notification\xc4\xa0Northwestern\xc4\xa0Newfou" +"ndland\xc4\xa0Nevertheless\xc4\xa0Neuroscience\xc4\xa0Neighborhood\xc4\xa0Metrop" +"olitan\xc4\xa0Manufacturer\xc4\xa0Laboratories\xc4\xa0Jacksonville\xc4\xa0Introd" +"uction\xc4\xa0Intervention\xc4\xa0Interstellar\xc4\xa0Intermediate\xc4\xa0Intell" +"igence\xc4\xa0Intellectual\xc4\xa0Instructions\xc4\xa0Installation\xc4\xa0Indian" +"apolis\xc4\xa0Independence\xc4\xa0Improvements\xc4\xa0Historically\xc4\xa0Headqu" +"arters\xc4\xa0Ghostbusters\xc4\xa0""Frankenstein\xc4\xa0""Experimental\xc4\xa0""E" +"ncyclopedia\xc4\xa0""Distribution\xc4\xa0""Correctional\xc4\xa0""Conversation\xc4" +"\xa0""Contemporary\xc4\xa0""Construction\xc4\xa0""Conservation\xc4\xa0""Conseque" +"ntly\xc4\xa0""Compensation\xc4\xa0""Commonwealth\xc4\xa0""Civilization\xc4\xa0""C" +"hristianity\xc4\xa0""Broadcasting\xc4\xa0""Availability\xc4\xa0""Architecture\xc4" +"\xa0""Applications\xc4\xa0""Anthropology\xc4\xa0""Agricultural\xc4\xa0""Addition" +"ally\xc4\xa0""AchievementsPsyNetMessageADVERTISEMENT\xc4\xa0wonderfully\xc4\xa0w" +"ithholding\xc4\xa0withdrawing\xc4\xa0withdrawals\xc4\xa0willingness\xc4\xa0where" +"abouts\xc4\xa0wavelengths\xc4\xa0volunteered\xc4\xa0voluntarily\xc4\xa0versatili" +"ty\xc4\xa0ventilation\xc4\xa0variability\xc4\xa0utilization\xc4\xa0utilitarian\xc4" +"\xa0unwittingly\xc4\xa0unthinkable\xc4\xa0unsupported\xc4\xa0unstoppable\xc4\xa0" +"unspecified\xc4\xa0unregulated\xc4\xa0unrealistic\xc4\xa0unpublished\xc4\xa0unpr" +"otected\xc4\xa0unnecessary\xc4\xa0universally\xc4\xa0unification\xc4\xa0unfavora" +"ble\xc4\xa0unexplained\xc4\xa0undoubtedly\xc4\xa0undisclosed\xc4\xa0undesirable\xc4" +"\xa0undertaking\xc4\xa0understands\xc4\xa0underscores\xc4\xa0undermining\xc4\xa0" +"underground\xc4\xa0uncertainty\xc4\xa0unavoidable\xc4\xa0unavailable\xc4\xa0unan" +"imously\xc4\xa0ultraviolet\xc4\xa0trustworthy\xc4\xa0troublesome\xc4\xa0treacher" +"ous\xc4\xa0transsexual\xc4\xa0transporter\xc4\xa0transported\xc4\xa0transparent\xc4" +"\xa0transmitter\xc4\xa0transmitted\xc4\xa0translucent\xc4\xa0translating\xc4\xa0" +"transitions\xc4\xa0transgender\xc4\xa0transformer\xc4\xa0transformed\xc4\xa0tran" +"sferred\xc4\xa0transcripts\xc4\xa0trafficking\xc4\xa0traffickers\xc4\xa0tourname" +"nts\xc4\xa0touchscreen\xc4\xa0threatening\xc4\xa0therapeutic\xc4\xa0theological\xc4" +"\xa0testimonies\xc4\xa0territories\xc4\xa0territorial\xc4\xa0terrestrial\xc4\xa0" +"terminology\xc4\xa0termination\xc4\xa0terminating\xc4\xa0temporarily\xc4\xa0temp" +"erament\xc4\xa0technicians\xc4\xa0technically\xc4\xa0tablespoons\xc4\xa0sympathe" +"tic\xc4\xa0sustainable\xc4\xa0suspensions\xc4\xa0susceptible\xc4\xa0surrendered\xc4" +"\xa0suppression\xc4\xa0suppressing\xc4\xa0supplements\xc4\xa0supervisors\xc4\xa0" +"supervision\xc4\xa0superiority\xc4\xa0superheroes\xc4\xa0superficial\xc4\xa0sugg" +"estions\xc4\xa0substitutes\xc4\xa0substituted\xc4\xa0substantive\xc4\xa0subsiste" +"nce\xc4\xa0subsections\xc4\xa0subscribing\xc4\xa0subscribers\xc4\xa0submissions\xc4" +"\xa0subdivision\xc4\xa0subcontract\xc4\xa0strengthens\xc4\xa0streamlined\xc4\xa0" +"stimulation\xc4\xa0stimulating\xc4\xa0stereotypes\xc4\xa0spreadsheet\xc4\xa0spon" +"sorship\xc4\xa0spokeswoman\xc4\xa0spiritually\xc4\xa0speculative\xc4\xa0speculat" +"ion\xc4\xa0spectacular\xc4\xa0specificity\xc4\xa0specializes\xc4\xa0specialized\xc4" +"\xa0specialists\xc4\xa0spearheaded\xc4\xa0sovereignty\xc4\xa0smartphones\xc4\xa0" +"slaughtered\xc4\xa0situational\xc4\xa0simulations\xc4\xa0shenanigans\xc4\xa0sett" +"lements\xc4\xa0seriousness\xc4\xa0separatists\xc4\xa0sentimental\xc4\xa0sensitiv" +"ity\xc4\xa0sensational\xc4\xa0selectively\xc4\xa0segregation\xc4\xa0secretaries\xc4" +"\xa0screenshots\xc4\xa0sacrificing\xc4\xa0rudimentary\xc4\xa0revolutions\xc4\xa0" +"revelations\xc4\xa0retribution\xc4\xa0retaliation\xc4\xa0resurrected\xc4\xa0rest" +"rictive\xc4\xa0restricting\xc4\xa0restraining\xc4\xa0restoration\xc4\xa0restitut" +"ion\xc4\xa0restaurants\xc4\xa0responsibly\xc4\xa0responsible\xc4\xa0respondents\xc4" +"\xa0respiratory\xc4\xa0respectable\xc4\xa0resolutions\xc4\xa0resignation\xc4\xa0" +"residential\xc4\xa0resemblance\xc4\xa0researching\xc4\xa0researchers\xc4\xa0repr" +"esented\xc4\xa0replication\xc4\xa0renovations\xc4\xa0renaissance\xc4\xa0reminisc" +"ent\xc4\xa0remembrance\xc4\xa0remembering\xc4\xa0reluctantly\xc4\xa0religiously\xc4" +"\xa0reliability\xc4\xa0reinforcing\xc4\xa0regulations\xc4\xa0registering\xc4\xa0" +"reflections\xc4\xa0referencing\xc4\xa0rectangular\xc4\xa0recruitment\xc4\xa0reco" +"mmended\xc4\xa0recognizing\xc4\xa0recognition\xc4\xa0realization\xc4\xa0reaction" +"ary\xc4\xa0rationality\xc4\xa0radioactive\xc4\xa0questioning\xc4\xa0qualitative\xc4" +"\xa0purportedly\xc4\xa0punishments\xc4\xa0psychiatric\xc4\xa0psychedelic\xc4\xa0" +"provocative\xc4\xa0provocation\xc4\xa0provisional\xc4\xa0protections\xc4\xa0pros" +"titutes\xc4\xa0prospective\xc4\xa0prosecutors\xc4\xa0prosecuting\xc4\xa0propriet" +"ary\xc4\xa0proportions\xc4\xa0propagation\xc4\xa0promotional\xc4\xa0prominently\xc4" +"\xa0proletariat\xc4\xa0proletarian\xc4\xa0projections\xc4\xa0projectiles\xc4\xa0" +"prohibiting\xc4\xa0progression\xc4\xa0progressing\xc4\xa0programming\xc4\xa0prog" +"rammers\xc4\xa0proficiency\xc4\xa0professions\xc4\xa0productions\xc4\xa0procurem" +"ent\xc4\xa0proclaiming\xc4\xa0proceedings\xc4\xa0problematic\xc4\xa0probability\xc4" +"\xa0principally\xc4\xa0presumptive\xc4\xa0presumption\xc4\xa0prestigious\xc4\xa0" +"prescribing\xc4\xa0prematurely\xc4\xa0preliminary\xc4\xa0prehistoric\xc4\xa0preg" +"nancies\xc4\xa0preferences\xc4\xa0predictions\xc4\xa0predictably\xc4\xa0predicta" +"ble\xc4\xa0predicament\xc4\xa0precautions\xc4\xa0practically\xc4\xa0practicable\xc4" +"\xa0potentially\xc4\xa0possibility\xc4\xa0possessions\xc4\xa0positioning\xc4\xa0" +"pornography\xc4\xa0populations\xc4\xa0politicians\xc4\xa0politically\xc4\xa0play" +"through\xc4\xa0plantations\xc4\xa0placeholder\xc4\xa0photography\xc4\xa0photogra" +"phs\xc4\xa0philanthrop\xc4\xa0pessimistic\xc4\xa0personality\xc4\xa0persistence\xc4" +"\xa0persecution\xc4\xa0perpetually\xc4\xa0perpetrated\xc4\xa0permissions\xc4\xa0" +"permissible\xc4\xa0permanently\xc4\xa0perceptions\xc4\xa0percentages\xc4\xa0pene" +"tration\xc4\xa0penetrating\xc4\xa0pedestrians\xc4\xa0patriarchal\xc4\xa0particul" +"ars\xc4\xa0parentheses\xc4\xa0pandemonium\xc4\xa0painstaking\xc4\xa0overwhelmed\xc4" +"\xa0overpowered\xc4\xa0overlooking\xc4\xa0overlapping\xc4\xa0overflowing\xc4\xa0" +"overarching\xc4\xa0outstanding\xc4\xa0outsourcing\xc4\xa0outnumbered\xc4\xa0orig" +"inating\xc4\xa0orientation\xc4\xa0opportunity\xc4\xa0operational\xc4\xa0offensiv" +"ely\xc4\xa0occurrences\xc4\xa0occupations\xc4\xa0obstruction\xc4\xa0obligations\xc4" +"\xa0objectively\xc4\xa0nutritional\xc4\xa0notoriously\xc4\xa0nonsensical\xc4\xa0" +"nonpartisan\xc4\xa0nonexistent\xc4\xa0nonetheless\xc4\xa0nominations\xc4\xa0news" +"letters\xc4\xa0neighboring\xc4\xa0negotiators\xc4\xa0negotiating\xc4\xa0necessit" +"ies\xc4\xa0necessarily\xc4\xa0nationality\xc4\xa0nationalism\xc4\xa0multiplying\xc4" +"\xa0multiplayer\xc4\xa0mountainous\xc4\xa0motorcycles\xc4\xa0motivations\xc4\xa0" +"motherboard\xc4\xa0momentarily\xc4\xa0misdemeanor\xc4\xa0miscarriage\xc4\xa0mini" +"sterial\xc4\xa0mindfulness\xc4\xa0millennials\xc4\xa0microscopic\xc4\xa0micropho" +"nes\xc4\xa0methodology\xc4\xa0metabolites\xc4\xa0merchandise\xc4\xa0mercenaries\xc4" +"\xa0medications\xc4\xa0meaningless\xc4\xa0mathematics\xc4\xa0masterpiece\xc4\xa0" +"masculinity\xc4\xa0marketplace\xc4\xa0manuscripts\xc4\xa0manipulated\xc4\xa0malf" +"unction\xc4\xa0maintenance\xc4\xa0maintaining\xc4\xa0magnificent\xc4\xa0lineback" +"ers\xc4\xa0limitations\xc4\xa0lightweight\xc4\xa0liabilities\xc4\xa0legislators\xc4" +"\xa0legislative\xc4\xa0legislation\xc4\xa0journalists\xc4\xa0involvement\xc4\xa0" +"involuntary\xc4\xa0invitations\xc4\xa0investments\xc4\xa0introducing\xc4\xa0into" +"xicated\xc4\xa0intolerance\xc4\xa0intolerable\xc4\xa0intimidated\xc4\xa0intervie" +"wer\xc4\xa0interviewed\xc4\xa0intervening\xc4\xa0intertwined\xc4\xa0interrupted\xc4" +"\xa0interpreter\xc4\xa0interpreted\xc4\xa0interfering\xc4\xa0intercourse\xc4\xa0" +"intercepted\xc4\xa0interactive\xc4\xa0interacting\xc4\xa0intensified\xc4\xa0inte" +"lligent\xc4\xa0integration\xc4\xa0integrating\xc4\xa0instruments\xc4\xa0instruct" +"ors\xc4\xa0instability\xc4\xa0inspections\xc4\xa0insensitive\xc4\xa0inscription\xc4" +"\xa0innumerable\xc4\xa0innovations\xc4\xa0initiatives\xc4\xa0initialized\xc4\xa0" +"inheritance\xc4\xa0inhabitants\xc4\xa0ingredients\xc4\xa0informative\xc4\xa0info" +"graphic\xc4\xa0influential\xc4\xa0influencing\xc4\xa0infiltrated\xc4\xa0infertil" +"ity\xc4\xa0inexpensive\xc4\xa0inefficient\xc4\xa0ineffective\xc4\xa0individuals\xc4" +"\xa0indignation\xc4\xa0indifferent\xc4\xa0indications\xc4\xa0incremental\xc4\xa0" +"incorrectly\xc4\xa0incompetent\xc4\xa0inclination\xc4\xa0incarnation\xc4\xa0impr" +"essions\xc4\xa0impractical\xc4\xa0importantly\xc4\xa0implemented\xc4\xa0imperial" +"ist\xc4\xa0imperialism\xc4\xa0impeachment\xc4\xa0immortality\xc4\xa0immigration\xc4" +"\xa0immediately\xc4\xa0imaginative\xc4\xa0imagination\xc4\xa0illustrious\xc4\xa0" +"illustrates\xc4\xa0illustrated\xc4\xa0illuminated\xc4\xa0identifying\xc4\xa0iden" +"tifiers\xc4\xa0humiliation\xc4\xa0humiliating\xc4\xa0hostilities\xc4\xa0hospital" +"ity\xc4\xa0homosexuals\xc4\xa0hippocampus\xc4\xa0highlighted\xc4\xa0helicopters\xc4" +"\xa0heavyweight\xc4\xa0handwritten\xc4\xa0handwriting\xc4\xa0groundwater\xc4\xa0" +"grandmother\xc4\xa0grandfather\xc4\xa0governments\xc4\xa0girlfriends\xc4\xa0gene" +"tically\xc4\xa0generations\xc4\xa0generalized\xc4\xa0""furthermore\xc4\xa0""fund" +"raising\xc4\xa0""functioning\xc4\xa0""fulfillment\xc4\xa0""frustrating\xc4\xa0""f" +"rontrunner\xc4\xa0""frightening\xc4\xa0""friendships\xc4\xa0""frequencies\xc4\xa0" +"""frantically\xc4\xa0""foundations\xc4\xa0""fortunately\xc4\xa0""forthcoming\xc4" +"\xa0""forgiveness\xc4\xa0""foreseeable\xc4\xa0""foreclosure\xc4\xa0""forecasting" +"\xc4\xa0""fluorescent\xc4\xa0""flourishing\xc4\xa0""flexibility\xc4\xa0""financi" +"ally\xc4\xa0""festivities\xc4\xa0""feasibility\xc4\xa0""fashionable\xc4\xa0""fas" +"cination\xc4\xa0""fascinating\xc4\xa0""familiarity\xc4\xa0""facilitates\xc4\xa0""f" +"acilitated\xc4\xa0""fabrication\xc4\xa0""extravagant\xc4\xa0""extradition\xc4\xa0" +"""extensively\xc4\xa0""expressions\xc4\xa0""exploration\xc4\xa0""explanatory\xc4" +"\xa0""experiments\xc4\xa0""experiences\xc4\xa0""experienced\xc4\xa0""existential" +"\xc4\xa0""exhibitions\xc4\xa0""exclusively\xc4\xa0""excessively\xc4\xa0""exceedi" +"ngly\xc4\xa0""exaggerated\xc4\xa0""exacerbated\xc4\xa0""everlasting\xc4\xa0""eva" +"luations\xc4\xa0""establishes\xc4\xa0""established\xc4\xa0""essentially\xc4\xa0""e" +"quivalents\xc4\xa0""equilibrium\xc4\xa0""entitlement\xc4\xa0""enthusiasts\xc4\xa0" +"""entertained\xc4\xa0""enterprises\xc4\xa0""enlightened\xc4\xa0""engineering\xc4" +"\xa0""engagements\xc4\xa0""enforcement\xc4\xa0""encouraging\xc4\xa0""encountered" +"\xc4\xa0""encompasses\xc4\xa0""enchantment\xc4\xa0""empowerment\xc4\xa0""emphasi" +"zing\xc4\xa0""emotionally\xc4\xa0""emergencies\xc4\xa0""embodiments\xc4\xa0""emb" +"arrassed\xc4\xa0""elimination\xc4\xa0""eliminating\xc4\xa0""eligibility\xc4\xa0""e" +"lectronics\xc4\xa0""electricity\xc4\xa0""egalitarian\xc4\xa0""efficiently\xc4\xa0" +"""effectively\xc4\xa0""educational\xc4\xa0""earthquakes\xc4\xa0""dynamically\xc4" +"\xa0""duplication\xc4\xa0""drastically\xc4\xa0""downloading\xc4\xa0""documenting" +"\xc4\xa0""documentary\xc4\xa0""distributed\xc4\xa0""distracting\xc4\xa0""distort" +"ions\xc4\xa0""distinctive\xc4\xa0""dissolution\xc4\xa0""disruptions\xc4\xa0""dis" +"position\xc4\xa0""displeasure\xc4\xa0""disparities\xc4\xa0""dismantling\xc4\xa0""d" +"isillusion\xc4\xa0""disgruntled\xc4\xa0""disenfranch\xc4\xa0""discussions\xc4\xa0" +"""discrepancy\xc4\xa0""discredited\xc4\xa0""discovering\xc4\xa0""discoveries\xc4" +"\xa0""discouraged\xc4\xa0""disclosures\xc4\xa0""disciplines\xc4\xa0""disciplined" +"\xc4\xa0""disapproval\xc4\xa0""disappeared\xc4\xa0""directories\xc4\xa0""directi" +"onal\xc4\xa0""diminishing\xc4\xa0""dimensional\xc4\xa0""differently\xc4\xa0""dif" +"ferences\xc4\xa0""devastation\xc4\xa0""devastating\xc4\xa0""detrimental\xc4\xa0""d" +"etermining\xc4\xa0""destructive\xc4\xa0""destruction\xc4\xa0""desperation\xc4\xa0" +"""desperately\xc4\xa0""designation\xc4\xa0""descriptive\xc4\xa0""descendants\xc4" +"\xa0""derivatives\xc4\xa0""deprivation\xc4\xa0""deportation\xc4\xa0""deployments" +"\xc4\xa0""departments\xc4\xa0""democracies\xc4\xa0""dehydration\xc4\xa0""degrada" +"tion\xc4\xa0""definitions\xc4\xa0""defensively\xc4\xa0""decorations\xc4\xa0""dan" +"gerously\xc4\xa0""cultivation\xc4\xa0""cultivating\xc4\xa0""culmination\xc4\xa0""c" +"ulminating\xc4\xa0""criticizing\xc4\xa0""criminality\xc4\xa0""credibility\xc4\xa0" +"""credentials\xc4\xa0""countryside\xc4\xa0""counterfeit\xc4\xa0""counselling\xc4" +"\xa0""councillors\xc4\xa0""corresponds\xc4\xa0""correctness\xc4\xa0""corrections" +"\xc4\xa0""cornerstone\xc4\xa0""copyrighted\xc4\xa0""coordinator\xc4\xa0""coordin" +"ates\xc4\xa0""coordinated\xc4\xa0""cooperative\xc4\xa0""cooperation\xc4\xa0""coo" +"perating\xc4\xa0""convictions\xc4\xa0""convertible\xc4\xa0""conversions\xc4\xa0""c" +"onvergence\xc4\xa0""conventions\xc4\xa0""convenience\xc4\xa0""controversy\xc4\xa0" +"""controlling\xc4\xa0""controllers\xc4\xa0""contributes\xc4\xa0""contributed\xc4" +"\xa0""contrasting\xc4\xa0""contradicts\xc4\xa0""contractual\xc4\xa0""contractors" +"\xc4\xa0""contraction\xc4\xa0""contracting\xc4\xa0""continually\xc4\xa0""conting" +"ency\xc4\xa0""continental\xc4\xa0""contestants\xc4\xa0""contentious\xc4\xa0""con" +"tainment\xc4\xa0""consumption\xc4\xa0""consultants\xc4\xa0""consultancy\xc4\xa0""c" +"onstructor\xc4\xa0""constructed\xc4\xa0""constraints\xc4\xa0""constrained\xc4\xa0" +"""constitutes\xc4\xa0""constituted\xc4\xa0""conspicuous\xc4\xa0""consolation\xc4" +"\xa0""consistency\xc4\xa0""considering\xc4\xa0""consecutive\xc4\xa0""consciously" +"\xc4\xa0""connections\xc4\xa0""conjunction\xc4\xa0""congressman\xc4\xa0""confron" +"ting\xc4\xa0""confounding\xc4\xa0""conflicting\xc4\xa0""confiscated\xc4\xa0""con" +"finement\xc4\xa0""confidently\xc4\xa0""confessions\xc4\xa0""conferences\xc4\xa0""c" +"ondolences\xc4\xa0""conditioned\xc4\xa0""conditional\xc4\xa0""conclusions\xc4\xa0" +"""concessions\xc4\xa0""conceptions\xc4\xa0""conceivable\xc4\xa0""compromises\xc4" +"\xa0""compromised\xc4\xa0""compression\xc4\xa0""compliments\xc4\xa0""complicated" +"\xc4\xa0""complaining\xc4\xa0""complainant\xc4\xa0""compilation\xc4\xa0""competi" +"tors\xc4\xa0""compensated\xc4\xa0""compartment\xc4\xa0""comparisons\xc4\xa0""com" +"munities\xc4\xa0""commonplace\xc4\xa0""commodities\xc4\xa0""commitments\xc4\xa0""c" +"ommissions\xc4\xa0""commercials\xc4\xa0""commemorate\xc4\xa0""comfortably\xc4\xa0" +"""comfortable\xc4\xa0""colonialism\xc4\xa0""collections\xc4\xa0""coincidence\xc4" +"\xa0""clandestine\xc4\xa0""citizenship\xc4\xa0""circumcised\xc4\xa0""circulation" +"\xc4\xa0""circulating\xc4\xa0""chronically\xc4\xa0""chromosomes\xc4\xa0""cholest" +"erol\xc4\xa0""chimpanzees\xc4\xa0""checkpoints\xc4\xa0""charismatic\xc4\xa0""cha" +"llenging\xc4\xa0""challengers\xc4\xa0""centralized\xc4\xa0""centimeters\xc4\xa0""c" +"enterpiece\xc4\xa0""celebrities\xc4\xa0""celebrating\xc4\xa0""categorized\xc4\xa0" +"""catastrophe\xc4\xa0""capitalists\xc4\xa0""campaigning\xc4\xa0""campaigners\xc4" +"\xa0""calibration\xc4\xa0""calculating\xc4\xa0""butterflies\xc4\xa0""businessmen" +"\xc4\xa0""businessman\xc4\xa0""bureaucrats\xc4\xa0""bureaucracy\xc4\xa0""brillia" +"ntly\xc4\xa0""bourgeoisie\xc4\xa0""bombardment\xc4\xa0""bloodstream\xc4\xa0""blo" +"ckbuster\xc4\xa0""biochemical\xc4\xa0""bestselling\xc4\xa0""beneficiary\xc4\xa0""b" +"ehavioural\xc4\xa0""beautifully\xc4\xa0""battlefield\xc4\xa0""backgrounds\xc4\xa0" +"""automobiles\xc4\xa0""authorizing\xc4\xa0""authorities\xc4\xa0""attribution\xc4" +"\xa0""attractions\xc4\xa0""attachments\xc4\xa0""atmospheric\xc4\xa0""athleticism" +"\xc4\xa0""astronomers\xc4\xa0""astonishing\xc4\xa0""assumptions\xc4\xa0""assignm" +"ents\xc4\xa0""assessments\xc4\xa0""aspirations\xc4\xa0""articulated\xc4\xa0""ari" +"stocracy\xc4\xa0""arbitration\xc4\xa0""arbitrarily\xc4\xa0""approaching\xc4\xa0""a" +"pprentices\xc4\xa0""apprehended\xc4\xa0""appreciated\xc4\xa0""appearances\xc4\xa0" +"""apologizing\xc4\xa0""apocalyptic\xc4\xa0""anticipated\xc4\xa0""antibiotics\xc4" +"\xa0""antagonists\xc4\xa0""anonymously\xc4\xa0""annotations\xc4\xa0""anniversary" +"\xc4\xa0""ambassadors\xc4\xa0""alternating\xc4\xa0""altercation\xc4\xa0""alterat" +"ions\xc4\xa0""allocations\xc4\xa0""allegations\xc4\xa0""agriculture\xc4\xa0""agg" +"regation\xc4\xa0""affirmative\xc4\xa0""affirmation\xc4\xa0""affiliation\xc4\xa0""a" +"dvertising\xc4\xa0""advertisers\xc4\xa0""adversaries\xc4\xa0""adventurous\xc4\xa0" +"""adventurers\xc4\xa0""adolescents\xc4\xa0""adolescence\xc4\xa0""adjustments\xc4" +"\xa0""adaptations\xc4\xa0""acupuncture\xc4\xa0""actionGroup\xc4\xa0""accusations" +"\xc4\xa0""accumulated\xc4\xa0""accountable\xc4\xa0""accordingly\xc4\xa0""accompa" +"nies\xc4\xa0""accompanied\xc4\xa0""accommodate\xc4\xa0""accessories\xc4\xa0""acc" +"elerator\xc4\xa0""accelerated\xc4\xa0""abstraction\xc4\xa0""abandonment\xc4\xa0Y" +"ellowstone\xc4\xa0Westminster\xc4\xa0Underground\xc4\xa0Translation\xc4\xa0Trans" +"gender\xc4\xa0Traditional\xc4\xa0Thunderbolt\xc4\xa0Territories\xc4\xa0Temperatu" +"re\xc4\xa0Switzerland\xc4\xa0Sustainable\xc4\xa0Statistical\xc4\xa0Springfield\xc4" +"\xa0Southampton\xc4\xa0Smithsonian\xc4\xa0Smartstocks\xc4\xa0Significant\xc4\xa0" +"Shakespeare\xc4\xa0SetFontSize\xc4\xa0Scientology\xc4\xa0Scholarship\xc4\xa0Scar" +"borough\xc4\xa0Rockefeller\xc4\xa0Revelations\xc4\xa0Restoration\xc4\xa0Resident" +"ial\xc4\xa0Researchers\xc4\xa0Republicans\xc4\xa0Replacement\xc4\xa0Renaissance\xc4" +"\xa0Regulations\xc4\xa0Recommended\xc4\xa0Psychiatric\xc4\xa0Protestants\xc4\xa0" +"Prosecutors\xc4\xa0Proposition\xc4\xa0Prohibition\xc4\xa0Progressive\xc4\xa0Prog" +"ramming\xc4\xa0Productions\xc4\xa0Proceedings\xc4\xa0Premiership\xc4\xa0Preferen" +"ces\xc4\xa0Playstation\xc4\xa0PlayStation\xc4\xa0Photography\xc4\xa0Philippines\xc4" +"\xa0Perspective\xc4\xa0Personality\xc4\xa0Performance\xc4\xa0Partnership\xc4\xa0" +"Opportunity\xc4\xa0Occupations\xc4\xa0Observatory\xc4\xa0Nonetheless\xc4\xa0Neth" +"erlands\xc4\xa0Multiplayer\xc4\xa0Mississippi\xc4\xa0Minneapolis\xc4\xa0Millenni" +"als\xc4\xa0Mathematics\xc4\xa0Marketplace\xc4\xa0Maintenance\xc4\xa0Maharashtra\xc4" +"\xa0Libertarian\xc4\xa0Legislature\xc4\xa0Legislative\xc4\xa0Legislation\xc4\xa0" +"Kickstarter\xc4\xa0Journalists\xc4\xa0Investments\xc4\xa0Interactive\xc4\xa0Inte" +"lligent\xc4\xa0Integration\xc4\xa0Instruments\xc4\xa0Institution\xc4\xa0Inquisit" +"ion\xc4\xa0Ingredients\xc4\xa0Information\xc4\xa0Individuals\xc4\xa0Independent\xc4" +"\xa0Incarnation\xc4\xa0Immigration\xc4\xa0Immediately\xc4\xa0Illustrated\xc4\xa0" +"INFORMATION\xc4\xa0Hearthstone\xc4\xa0Governments\xc4\xa0Generations\xc4\xa0""Fu" +"rthermore\xc4\xa0""Fundamental\xc4\xa0""Fortunately\xc4\xa0""Fitzpatrick\xc4\xa0" +"""Exploration\xc4\xa0""Examination\xc4\xa0""Essentially\xc4\xa0""Enterprises\xc4" +"\xa0""Enhancement\xc4\xa0""Engineering\xc4\xa0""Enforcement\xc4\xa0""Electronics" +"\xc4\xa0""Electricity\xc4\xa0""Educational\xc4\xa0""Dragonbound\xc4\xa0""Directo" +"rate\xc4\xa0""Differences\xc4\xa0""Development\xc4\xa0""Destruction\xc4\xa0""Des" +"tination\xc4\xa0""Description\xc4\xa0""Definitions\xc4\xa0""Declaration\xc4\xa0""C" +"orrections\xc4\xa0""Corporation\xc4\xa0""Corinthians\xc4\xa0""Coordinator\xc4\xa0" +"""Cooperative\xc4\xa0""Cooperation\xc4\xa0""Continental\xc4\xa0""Consumption\xc4" +"\xa0""Constantine\xc4\xa0""Considering\xc4\xa0""Connecticut\xc4\xa0""Congressman" +"\xc4\xa0""Confederate\xc4\xa0""Confederacy\xc4\xa0""Competitive\xc4\xa0""Competi" +"tion\xc4\xa0""Communities\xc4\xa0""Collections\xc4\xa0""Citizenship\xc4\xa0""Chr" +"istopher\xc4\xa0""Christensen\xc4\xa0""Chattanooga\xc4\xa0""Chamberlain\xc4\xa0""C" +"ertificate\xc4\xa0""Celebration\xc4\xa0""Catholicism\xc4\xa0""Brotherhood\xc4\xa0" +"""Bridgewater\xc4\xa0""Borderlands\xc4\xa0""Battlefield\xc4\xa0""Authorities\xc4" +"\xa0""Australians\xc4\xa0""Attribution\xc4\xa0""Atmospheric\xc4\xa0""Association" +"\xc4\xa0""Appalachian\xc4\xa0""Annotations\xc4\xa0""Anniversary\xc4\xa0""Albuque" +"rque\xc4\xa0""Agriculture\xc4\xa0""Afghanistan\xc4\xa0""Advertising\xc4\xa0""Acq" +"uisition\xc4\xa0""Accordingly\xc4\xa0""Accessories\xc3\xa3\xc4\xa5\xc4\xab\xc3\xa3" +"\xc4\xa5\xc2\xa9\xc3\xa3\xc4\xa4\xc2\xb4\xc3\xa3\xc4\xa5\xc2\xb3\xc3\xa2\xc4\xa2" +"\xc2\xa2\xc3\xa2\xc4\xa2\xc2\xa2\xc3\xa2\xc4\xa2\xc2\xa2\xc3\xa2\xc4\xa2\xc2\xa2" +"shapeshifterinterstitialInterstitialEStreamFrame\x3f\x3f\x3f\x3f\x3f-\x3f\x3f\x3f" +"\x3f\x3f-;;;;;;;;;;;;\xc4\xa0yourselves\xc4\xa0youngsters\xc4\xa0wrongdoing\xc4\xa0" +"worthwhile\xc4\xa0worshipped\xc4\xa0workplaces\xc4\xa0workaround\xc4\xa0witnessi" +"ng\xc4\xa0witchcraft\xc4\xa0windshield\xc4\xa0wilderness\xc4\xa0widespread\xc4\xa0" +"whispering\xc4\xa0wheelchair\xc4\xa0whatsoever\xc4\xa0wealthiest\xc4\xa0weakness" +"es\xc4\xa0waterproof\xc4\xa0waterfront\xc4\xa0wastewater\xc4\xa0warranties\xc4\xa0" +"warehouses\xc4\xa0vulnerable\xc4\xa0volunteers\xc4\xa0volleyball\xc4\xa0volatili" +"ty\xc4\xa0vocational\xc4\xa0vocabulary\xc4\xa0visitation\xc4\xa0visibility\xc4\xa0" +"violations\xc4\xa0vigorously\xc4\xa0viewpoints\xc4\xa0viewership\xc4\xa0victorio" +"us\xc4\xa0victimized\xc4\xa0vibrations\xc4\xa0veterinary\xc4\xa0vertically\xc4\xa0" +"vehemently\xc4\xa0vegetation\xc4\xa0vegetarian\xc4\xa0vegetables\xc4\xa0variatio" +"ns\xc4\xa0vanquished\xc4\xa0validation\xc4\xa0vaccinated\xc4\xa0usefulness\xc4\xa0" +"upbringing\xc4\xa0unsettling\xc4\xa0unresolved\xc4\xa0unreliable\xc4\xa0unquesti" +"on\xc4\xa0unprepared\xc4\xa0unpleasant\xc4\xa0unorthodox\xc4\xa0unofficial\xc4\xa0" +"unlawfully\xc4\xa0university\xc4\xa0uniqueness\xc4\xa0unintended\xc4\xa0unforese" +"en\xc4\xa0unfinished\xc4\xa0unfamiliar\xc4\xa0unemployed\xc4\xa0underworld\xc4\xa0" +"underwater\xc4\xa0undertaken\xc4\xa0understood\xc4\xa0underrated\xc4\xa0undernea" +"th\xc4\xa0undermines\xc4\xa0undermined\xc4\xa0underlying\xc4\xa0undergoing\xc4\xa0" +"undercover\xc4\xa0undeniably\xc4\xa0undeniable\xc4\xa0undefeated\xc4\xa0unbearab" +"le\xc4\xa0unanswered\xc4\xa0unaffected\xc4\xa0ultrasound\xc4\xa0ultimately\xc4\xa0" +"ubiquitous\xc4\xa0turnaround\xc4\xa0turbulence\xc4\xa0tumultuous\xc4\xa0triumpha" +"nt\xc4\xa0triggering\xc4\xa0triangular\xc4\xa0treatments\xc4\xa0travelling\xc4\xa0" +"travellers\xc4\xa0transports\xc4\xa0transplant\xc4\xa0transpired\xc4\xa0translat" +"or\xc4\xa0translates\xc4\xa0translated\xc4\xa0transistor\xc4\xa0transgress\xc4\xa0" +"transforms\xc4\xa0trajectory\xc4\xa0tragically\xc4\xa0traditions\xc4\xa0trademar" +"ks\xc4\xa0touchdowns\xc4\xa0tirelessly\xc4\xa0tightening\xc4\xa0throughput\xc4\xa0" +"throughout\xc4\xa0thresholds\xc4\xa0threatened\xc4\xa0thoughtful\xc4\xa0thorough" +"ly\xc4\xa0thereafter\xc4\xa0therapists\xc4\xa0themselves\xc4\xa0theatrical\xc4\xa0" +"thankfully\xc4\xa0testifying\xc4\xa0terrorists\xc4\xa0terrifying\xc4\xa0terminat" +"ed\xc4\xa0tendencies\xc4\xa0temptation\xc4\xa0television\xc4\xa0telescopes\xc4\xa0" +"technology\xc4\xa0techniques\xc4\xa0synonymous\xc4\xa0swallowing\xc4\xa0sustaini" +"ng\xc4\xa0suspicious\xc4\xa0suspicions\xc4\xa0suspending\xc4\xa0surrounded\xc4\xa0" +"suppressed\xc4\xa0supposedly\xc4\xa0supportive\xc4\xa0supporting\xc4\xa0supporte" +"rs\xc4\xa0supervised\xc4\xa0superpower\xc4\xa0superhuman\xc4\xa0sunglasses\xc4\xa0" +"summarizes\xc4\xa0summarized\xc4\xa0suggestive\xc4\xa0suggesting\xc4\xa0successo" +"rs\xc4\xa0successive\xc4\xa0succession\xc4\xa0succeeding\xc4\xa0subversive\xc4\xa0" +"substances\xc4\xa0subsidized\xc4\xa0subsidiary\xc4\xa0subscribed\xc4\xa0subreddi" +"ts\xc4\xa0submitting\xc4\xa0submarines\xc4\xa0subjective\xc4\xa0struggling\xc4\xa0" +"structures\xc4\xa0structured\xc4\xa0structural\xc4\xa0stronghold\xc4\xa0striking" +"ly\xc4\xa0strikeouts\xc4\xa0stretching\xc4\xa0strawberry\xc4\xa0strategist\xc4\xa0" +"strategies\xc4\xa0storylines\xc4\xa0storefront\xc4\xa0stimulates\xc4\xa0stimulat" +"ed\xc4\xa0statistics\xc4\xa0stationary\xc4\xa0statically\xc4\xa0statements\xc4\xa0" +"starvation\xc4\xa0standpoint\xc4\xa0standalone\xc4\xa0stagnation\xc4\xa0staggeri" +"ng\xc4\xa0stabilized\xc4\xa0sponsoring\xc4\xa0speculated\xc4\xa0spectators\xc4\xa0" +"specifying\xc4\xa0spacecraft\xc4\xa0soundtrack\xc4\xa0solidarity\xc4\xa0socialis" +"ts\xc4\xa0skepticism\xc4\xa0situations\xc4\xa0simplistic\xc4\xa0simplified\xc4\xa0" +"simplicity\xc4\xa0similarity\xc4\xa0silhouette\xc4\xa0signatures\xc4\xa0signalli" +"ng\xc4\xa0showcasing\xc4\xa0shockingly\xc4\xa0shattering\xc4\xa0sequential\xc4\xa0" +"sequencing\xc4\xa0separation\xc4\xa0separating\xc4\xa0separately\xc4\xa0sentimen" +"ts\xc4\xa0sentencing\xc4\xa0sensations\xc4\xa0semifinals\xc4\xa0selections\xc4\xa0" +"segregated\xc4\xa0securities\xc4\xa0seamlessly\xc4\xa0sculptures\xc4\xa0scriptur" +"es\xc4\xa0screenplay\xc4\xa0screenings\xc4\xa0scratching\xc4\xa0scrambling\xc4\xa0" +"scoreboard\xc4\xa0scientists\xc4\xa0scheduling\xc4\xa0scattering\xc4\xa0saturati" +"on\xc4\xa0satisfying\xc4\xa0satellites\xc4\xa0sanitation\xc4\xa0sandwiches\xc4\xa0" +"sanctioned\xc4\xa0safeguards\xc4\xa0sacrifices\xc4\xa0sacrificed\xc4\xa0rightful" +"ly\xc4\xa0rhetorical\xc4\xa0revocation\xc4\xa0reversible\xc4\xa0retrieving\xc4\xa0" +"retreating\xc4\xa0retirement\xc4\xa0resurgence\xc4\xa0restricted\xc4\xa0restrain" +"ts\xc4\xa0restrained\xc4\xa0responding\xc4\xa0responders\xc4\xa0respecting\xc4\xa0" +"resistance\xc4\xa0resilience\xc4\xa0residences\xc4\xa0reservoirs\xc4\xa0resentme" +"nt\xc4\xa0resembling\xc4\xa0researched\xc4\xa0requesting\xc4\xa0reputation\xc4\xa0" +"republican\xc4\xa0reproduced\xc4\xa0repressive\xc4\xa0repression\xc4\xa0represen" +"ts\xc4\xa0repository\xc4\xa0reportedly\xc4\xa0replicated\xc4\xa0repetitive\xc4\xa0" +"repetition\xc4\xa0repertoire\xc4\xa0repentance\xc4\xa0repeatedly\xc4\xa0renewabl" +"es\xc4\xa0remembered\xc4\xa0remarkably\xc4\xa0remarkable\xc4\xa0reluctance\xc4\xa0" +"relocation\xc4\xa0relegation\xc4\xa0relaxation\xc4\xa0relativity\xc4\xa0relative" +"ly\xc4\xa0relational\xc4\xa0reiterated\xc4\xa0reinstated\xc4\xa0reinforces\xc4\xa0" +"reinforced\xc4\xa0regulatory\xc4\xa0regulators\xc4\xa0regulating\xc4\xa0regressi" +"on\xc4\xa0registered\xc4\xa0regenerate\xc4\xa0regardless\xc4\xa0refreshing\xc4\xa0" +"reflective\xc4\xa0reflecting\xc4\xa0refinement\xc4\xa0referendum\xc4\xa0referenc" +"es\xc4\xa0referenced\xc4\xa0reelection\xc4\xa0redundancy\xc4\xa0reductions\xc4\xa0" +"redirected\xc4\xa0redesigned\xc4\xa0redemption\xc4\xa0recruiting\xc4\xa0recoveri" +"ng\xc4\xa0recordings\xc4\xa0reconsider\xc4\xa0recommends\xc4\xa0recognizes\xc4\xa0" +"recognized\xc4\xa0recognised\xc4\xa0reciprocal\xc4\xa0recipients\xc4\xa0receptio" +"ns\xc4\xa0rebuilding\xc4\xa0rebellious\xc4\xa0reassuring\xc4\xa0reasonably\xc4\xa0" +"reasonable\xc4\xa0ransomware\xc4\xa0randomized\xc4\xa0quotations\xc4\xa0question" +"ed\xc4\xa0quarantine\xc4\xa0quantities\xc4\xa0qualifying\xc4\xa0qualifiers\xc4\xa0" +"purchasing\xc4\xa0punishable\xc4\xa0publishing\xc4\xa0publishers\xc4\xa0publiciz" +"ed\xc4\xa0psychopath\xc4\xa0psychology\xc4\xa0psychiatry\xc4\xa0provisions\xc4\xa0" +"provincial\xc4\xa0proverbial\xc4\xa0protracted\xc4\xa0prototypes\xc4\xa0protesto" +"rs\xc4\xa0protesting\xc4\xa0protesters\xc4\xa0protective\xc4\xa0protecting\xc4\xa0" +"prosperous\xc4\xa0prosperity\xc4\xa0prosecuted\xc4\xa0propulsion\xc4\xa0proponen" +"ts\xc4\xa0properties\xc4\xa0propensity\xc4\xa0propaganda\xc4\xa0pronounced\xc4\xa0" +"promotions\xc4\xa0prominence\xc4\xa0projecting\xc4\xa0prohibited\xc4\xa0progress" +"es\xc4\xa0progressed\xc4\xa0programmes\xc4\xa0programmed\xc4\xa0profoundly\xc4\xa0" +"profitable\xc4\xa0proficient\xc4\xa0professors\xc4\xa0productive\xc4\xa0proclaim" +"ed\xc4\xa0processors\xc4\xa0procession\xc4\xa0processing\xc4\xa0procedures\xc4\xa0" +"procedural\xc4\xa0privileges\xc4\xa0privileged\xc4\xa0prioritize\xc4\xa0prioriti" +"es\xc4\xa0principles\xc4\xa0principled\xc4\xa0principals\xc4\xa0priesthood\xc4\xa0" +"previously\xc4\xa0preventive\xc4\xa0prevention\xc4\xa0preventing\xc4\xa0prevalen" +"ce\xc4\xa0prevailing\xc4\xa0pretending\xc4\xa0presumably\xc4\xa0pressuring\xc4\xa0" +"presidents\xc4\xa0presidency\xc4\xa0preserving\xc4\xa0presenting\xc4\xa0prescrib" +"ed\xc4\xa0prejudices\xc4\xa0prefrontal\xc4\xa0preferring\xc4\xa0preferably\xc4\xa0" +"preferable\xc4\xa0predictive\xc4\xa0predicting\xc4\xa0precedence\xc4\xa0precario" +"us\xc4\xa0practicing\xc4\xa0powerhouse\xc4\xa0powerfully\xc4\xa0postseason\xc4\xa0" +"possessing\xc4\xa0positively\xc4\xa0positioned\xc4\xa0positional\xc4\xa0portrayi" +"ng\xc4\xa0portfolios\xc4\xa0popularity\xc4\xa0pollutants\xc4\xa0pleasantly\xc4\xa0" +"playground\xc4\xa0plaintiffs\xc4\xa0pioneering\xc4\xa0pilgrimage\xc4\xa0physiolo" +"gy\xc4\xa0physicists\xc4\xa0physicians\xc4\xa0physically\xc4\xa0phosphorus\xc4\xa0" +"philosophy\xc4\xa0phenomenon\xc4\xa0phenomenal\xc4\xa0pharmacies\xc4\xa0petition" +"er\xc4\xa0pesticides\xc4\xa0pertaining\xc4\xa0persuasive\xc4\xa0persuasion\xc4\xa0" +"personally\xc4\xa0persistent\xc4\xa0persecuted\xc4\xa0perpetuate\xc4\xa0permitti" +"ng\xc4\xa0peripheral\xc4\xa0performing\xc4\xa0performers\xc4\xa0perfection\xc4\xa0" +"percussion\xc4\xa0perceptual\xc4\xa0percentile\xc4\xa0penetrated\xc4\xa0peaceful" +"ly\xc4\xa0patrolling\xc4\xa0patriotism\xc4\xa0patriarchy\xc4\xa0passengers\xc4\xa0" +"partnering\xc4\xa0partitions\xc4\xa0paranormal\xc4\xa0parameters\xc4\xa0paramedi" +"cs\xc4\xa0paragraphs\xc4\xa0overweight\xc4\xa0overturned\xc4\xa0overseeing\xc4\xa0" +"overriding\xc4\xa0overlooked\xc4\xa0overloaded\xc4\xa0overcoming\xc4\xa0outrageo" +"us\xc4\xa0outpatient\xc4\xa0outlandish\xc4\xa0outfielder\xc4\xa0ostensibly\xc4\xa0" +"originated\xc4\xa0originally\xc4\xa0organizing\xc4\xa0organizers\xc4\xa0organisi" +"ng\xc4\xa0organisers\xc4\xa0ordinarily\xc4\xa0ordinances\xc4\xa0optionally\xc4\xa0" +"optimizing\xc4\xa0optimistic\xc4\xa0oppressive\xc4\xa0oppression\xc4\xa0oppositi" +"on\xc4\xa0operatives\xc4\xa0operations\xc4\xa0officially\xc4\xa0observable\xc4\xa0" +"obligatory\xc4\xa0objectives\xc4\xa0objections\xc4\xa0nutritious\xc4\xa0noticeab" +"ly\xc4\xa0noticeable\xc4\xa0noteworthy\xc4\xa0normalized\xc4\xa0nonviolent\xc4\xa0" +"nonprofits\xc4\xa0nominating\xc4\xa0nineteenth\xc4\xa0nightmares\xc4\xa0newspape" +"rs\xc4\xa0neutrality\xc4\xa0neurotrans\xc4\xa0networking\xc4\xa0neoliberal\xc4\xa0" +"neighbours\xc4\xa0negotiated\xc4\xa0negligible\xc4\xa0negligence\xc4\xa0negativi" +"ty\xc4\xa0negatively\xc4\xa0navigation\xc4\xa0navigating\xc4\xa0nationwide\xc4\xa0" +"nationally\xc4\xa0narratives\xc4\xa0multiplier\xc4\xa0multiplied\xc4\xa0multimed" +"ia\xc4\xa0motivating\xc4\xa0mosquitoes\xc4\xa0morphology\xc4\xa0moratorium\xc4\xa0" +"monumental\xc4\xa0monitoring\xc4\xa0modulation\xc4\xa0moderators\xc4\xa0moderati" +"on\xc4\xa0moderately\xc4\xa0mitigation\xc4\xa0mitigating\xc4\xa0mistakenly\xc4\xa0" +"missionary\xc4\xa0misleading\xc4\xa0misfortune\xc4\xa0misconduct\xc4\xa0miraculo" +"us\xc4\xa0minorities\xc4\xa0ministries\xc4\xa0minimizing\xc4\xa0minimalist\xc4\xa0" +"millennium\xc4\xa0milestones\xc4\xa0midfielder\xc4\xa0microscope\xc4\xa0microbio" +"ta\xc4\xa0microbiome\xc4\xa0metabolism\xc4\xa0mentioning\xc4\xa0memorandum\xc4\xa0" +"membership\xc4\xa0melancholy\xc4\xa0meditation\xc4\xa0mechanisms\xc4\xa0measurab" +"le\xc4\xa0meaningful\xc4\xa0maximizing\xc4\xa0materially\xc4\xa0mastermind\xc4\xa0" +"marginally\xc4\xa0manifested\xc4\xa0managerial\xc4\xa0management\xc4\xa0manageab" +"le\xc4\xa0majorities\xc4\xa0maintained\xc4\xa0mainstream\xc4\xa0magistrate\xc4\xa0" +"loneliness\xc4\xa0logistical\xc4\xa0livestream\xc4\xa0livelihood\xc4\xa0litigati" +"on\xc4\xa0literature\xc4\xa0linguistic\xc4\xa0likelihood\xc4\xa0lightsaber\xc4\xa0" +"lighthouse\xc4\xa0lifestyles\xc4\xa0lieutenant\xc4\xa0liberation\xc4\xa0liberati" +"ng\xc4\xa0liberalism\xc4\xa0leveraging\xc4\xa0legitimacy\xc4\xa0legalizing\xc4\xa0" +"leadership\xc4\xa0laundering\xc4\xa0landscapes\xc4\xa0landowners\xc4\xa0lacklust" +"er\xc4\xa0laboratory\xc4\xa0kilometres\xc4\xa0kilometers\xc4\xa0kidnapping\xc4\xa0" +"justifying\xc4\xa0journalism\xc4\xa0javascript\xc4\xa0iterations\xc4\xa0irritati" +"on\xc4\xa0irritating\xc4\xa0irrigation\xc4\xa0irrelevant\xc4\xa0irrational\xc4\xa0" +"ironically\xc4\xa0invocation\xc4\xa0invincible\xc4\xa0inventions\xc4\xa0invariab" +"ly\xc4\xa0invaluable\xc4\xa0introduces\xc4\xa0introduced\xc4\xa0intriguing\xc4\xa0" +"intimately\xc4\xa0intestinal\xc4\xa0interviews\xc4\xa0intervened\xc4\xa0intersta" +"te\xc4\xa0interrupts\xc4\xa0internship\xc4\xa0internally\xc4\xa0interfered\xc4\xa0" +"interfaces\xc4\xa0interested\xc4\xa0interacted\xc4\xa0intentions\xc4\xa0integrat" +"es\xc4\xa0integrated\xc4\xa0intangible\xc4\xa0insurgents\xc4\xa0insurgency\xc4\xa0" +"insulation\xc4\xa0instructed\xc4\xa0instituted\xc4\xa0installing\xc4\xa0inspecto" +"rs\xc4\xa0inspecting\xc4\xa0insistence\xc4\xa0insightful\xc4\xa0insecurity\xc4\xa0" +"innovative\xc4\xa0injunction\xc4\xa0injections\xc4\xa0initiation\xc4\xa0initiati" +"ng\xc4\xa0inhibitors\xc4\xa0inhibition\xc4\xa0inherently\xc4\xa0infringing\xc4\xa0" +"informants\xc4\xa0influences\xc4\xa0influenced\xc4\xa0inflicting\xc4\xa0infinite" +"ly\xc4\xa0infectious\xc4\xa0infections\xc4\xa0inevitably\xc4\xa0inevitable\xc4\xa0" +"inequality\xc4\xa0ineligible\xc4\xa0industries\xc4\xa0indirectly\xc4\xa0indigeno" +"us\xc4\xa0indictment\xc4\xa0indicators\xc4\xa0indicative\xc4\xa0indicating\xc4\xa0" +"increments\xc4\xa0incredibly\xc4\xa0incredible\xc4\xa0incomplete\xc4\xa0incentiv" +"es\xc4\xa0incendiary\xc4\xa0inadequate\xc4\xa0inaccurate\xc4\xa0improvised\xc4\xa0" +"improperly\xc4\xa0improbable\xc4\xa0imprisoned\xc4\xa0impressive\xc4\xa0impossib" +"le\xc4\xa0imposition\xc4\xa0importance\xc4\xa0implicitly\xc4\xa0implicated\xc4\xa0" +"implements\xc4\xa0imperative\xc4\xa0impairment\xc4\xa0immigrants\xc4\xa0imaginab" +"le\xc4\xa0ideologies\xc4\xa0identities\xc4\xa0identifies\xc4\xa0identified\xc4\xa0" +"hysterical\xc4\xa0hypothesis\xc4\xa0hypotheses\xc4\xa0hurricanes\xc4\xa0humiliat" +"ed\xc4\xa0humanities\xc4\xa0households\xc4\xa0horsepower\xc4\xa0horrifying\xc4\xa0" +"horrendous\xc4\xa0homophobic\xc4\xa0homophobia\xc4\xa0homeowners\xc4\xa0historia" +"ns\xc4\xa0highlights\xc4\xa0hesitation\xc4\xa0hereditary\xc4\xa0hemisphere\xc4\xa0" +"heightened\xc4\xa0healthcare\xc4\xa0headphones\xc4\xa0headlights\xc4\xa0harvesti" +"ng\xc4\xa0harassment\xc4\xa0handcuffed\xc4\xa0guidelines\xc4\xa0guarantees\xc4\xa0" +"guaranteed\xc4\xa0groundwork\xc4\xa0grievances\xc4\xa0greenhouse\xc4\xa0grassroo" +"ts\xc4\xa0graduation\xc4\xa0graduating\xc4\xa0governance\xc4\xa0goaltender\xc4\xa0" +"goalkeeper\xc4\xa0glyphosate\xc4\xa0geological\xc4\xa0generously\xc4\xa0generosi" +"ty\xc4\xa0generators\xc4\xa0generating\xc4\xa0gatherings\xc4\xa0""futuristic\xc4" +"\xa0""fundraiser\xc4\xa0""fulfilling\xc4\xa0""frustrated\xc4\xa0""frightened\xc4" +"\xa0""freshwater\xc4\xa0""frequently\xc4\xa0""fraudulent\xc4\xa0""fraternity\xc4" +"\xa0""franchises\xc4\xa0""frameworks\xc4\xa0""fragmented\xc4\xa0""fracturing\xc4" +"\xa0""forwarding\xc4\xa0""formulated\xc4\xa0""formidable\xc4\xa0""formatting\xc4" +"\xa0""formations\xc4\xa0""forgetting\xc4\xa0""forfeiture\xc4\xa0""foreigners\xc4" +"\xa0""foreground\xc4\xa0""forcefully\xc4\xa0""footprints\xc4\xa0""footballer\xc4" +"\xa0""flourished\xc4\xa0""flickering\xc4\xa0""flattering\xc4\xa0""flashlight\xc4" +"\xa0""flashbacks\xc4\xa0""fingertips\xc4\xa0""filmmaking\xc4\xa0""filmmakers\xc4" +"\xa0""filibuster\xc4\xa0""filesystem\xc4\xa0""fictitious\xc4\xa0""fertilizer\xc4" +"\xa0""fellowship\xc4\xa0""federation\xc4\xa0""favourites\xc4\xa0""favourable\xc4" +"\xa0""fatalities\xc4\xa0""fascinated\xc4\xa0""faithfully\xc4\xa0""facilities\xc4" +"\xa0""fabricated\xc4\xa0""eyewitness\xc4\xa0""extremists\xc4\xa0""extraction\xc4" +"\xa0""extracting\xc4\xa0""extinction\xc4\xa0""externally\xc4\xa0""extensions\xc4" +"\xa0""expressive\xc4\xa0""expressing\xc4\xa0""exposition\xc4\xa0""explosives\xc4" +"\xa0""explosions\xc4\xa0""exploiting\xc4\xa0""explicitly\xc4\xa0""explaining\xc4" +"\xa0""expiration\xc4\xa0""expedition\xc4\xa0""expectancy\xc4\xa0""expansions\xc4" +"\xa0""exhibiting\xc4\xa0""exhaustive\xc4\xa0""exhaustion\xc4\xa0""exhausting\xc4" +"\xa0""exercising\xc4\xa0""exemptions\xc4\xa0""executives\xc4\xa0""executions\xc4" +"\xa0""executable\xc4\xa0""excitement\xc4\xa0""exchanging\xc4\xa0""exceptions\xc4" +"\xa0""excellence\xc4\xa0""excavation\xc4\xa0""everywhere\xc4\xa0""everything\xc4" +"\xa0""eventually\xc4\xa0""evaluating\xc4\xa0""evacuation\xc4\xa0""estimation\xc4" +"\xa0""estimating\xc4\xa0""essentials\xc4\xa0""especially\xc4\xa0""escalation\xc4" +"\xa0""escalating\xc4\xa0""envisioned\xc4\xa0""entrenched\xc4\xa0""enthusiasm\xc4" +"\xa0""enrollment\xc4\xa0""enrichment\xc4\xa0""enormously\xc4\xa0""engineered\xc4" +"\xa0""endogenous\xc4\xa0""endangered\xc4\xa0""encryption\xc4\xa0""encourages\xc4" +"\xa0""encouraged\xc4\xa0""encounters\xc4\xa0""empowering\xc4\xa0""employment\xc4" +"\xa0""emphasizes\xc4\xa0""emphasized\xc4\xa0""eliminates\xc4\xa0""eliminated\xc4" +"\xa0""elementary\xc4\xa0""electrodes\xc4\xa0""electrical\xc4\xa0""electorate\xc4" +"\xa0""elaborated\xc4\xa0""eighteenth\xc4\xa0""efficiency\xc4\xa0""ecosystems\xc4" +"\xa0""economists\xc4\xa0""ecological\xc4\xa0""durability\xc4\xa0""downstream\xc4" +"\xa0""downstairs\xc4\xa0""downloaded\xc4\xa0""domination\xc4\xa0""dominating\xc4" +"\xa0""documented\xc4\xa0""divergence\xc4\xa0""disturbing\xc4\xa0""distressed\xc4" +"\xa0""distraught\xc4\xa0""distracted\xc4\xa0""distinctly\xc4\xa0""dissidents\xc4" +"\xa0""dissenting\xc4\xa0""disruptive\xc4\xa0""disrupting\xc4\xa0""disposable\xc4" +"\xa0""displaying\xc4\xa0""dispensary\xc4\xa0""dispatcher\xc4\xa0""dispatched\xc4" +"\xa0""disorderly\xc4\xa0""dismissive\xc4\xa0""dismissing\xc4\xa0""dismantled\xc4" +"\xa0""disgusting\xc4\xa0""discussing\xc4\xa0""discovered\xc4\xa0""discounted\xc4" +"\xa0""discontent\xc4\xa0""discomfort\xc4\xa0""disclosing\xc4\xa0""disclaimer\xc4" +"\xa0""discharged\xc4\xa0""disastrous\xc4\xa0""disapprove\xc4\xa0""disappears\xc4" +"\xa0""disability\xc4\xa0""directives\xc4\xa0""directions\xc4\xa0""diplomatic\xc4" +"\xa0""diminished\xc4\xa0""dimensions\xc4\xa0""diligently\xc4\xa0""difficulty\xc4" +"\xa0""dictionary\xc4\xa0""diagnostic\xc4\xa0""deviations\xc4\xa0""developing\xc4" +"\xa0""developers\xc4\xa0""devastated\xc4\xa0""detractors\xc4\xa0""deterrence\xc4" +"\xa0""determines\xc4\xa0""determined\xc4\xa0""detectives\xc4\xa0""detectable\xc4" +"\xa0""detachment\xc4\xa0""destroying\xc4\xa0""despicable\xc4\xa0""designated\xc4" +"\xa0""descriptor\xc4\xa0""describing\xc4\xa0""descending\xc4\xa0""derogatory\xc4" +"\xa0""depressive\xc4\xa0""depression\xc4\xa0""depressing\xc4\xa0""deprecated\xc4" +"\xa0""deposition\xc4\xa0""depictions\xc4\xa0""dependency\xc4\xa0""dependence\xc4" +"\xa0""departures\xc4\xa0""denouncing\xc4\xa0""demolition\xc4\xa0""demolished\xc4" +"\xa0""delusional\xc4\xa0""delivering\xc4\xa0""deliveries\xc4\xa0""delinquent\xc4" +"\xa0""delightful\xc4\xa0""delegation\xc4\xa0""definitely\xc4\xa0""deficiency\xc4" +"\xa0""defenseman\xc4\xa0""defendants\xc4\xa0""defamation\xc4\xa0""deductions\xc4" +"\xa0""deductible\xc4\xa0""dedication\xc4\xa0""decriminal\xc4\xa0""decreasing\xc4" +"\xa0""decorative\xc4\xa0""decisively\xc4\xa0""dealership\xc4\xa0""customized\xc4" +"\xa0""curriculum\xc4\xa0""currencies\xc4\xa0""cumulative\xc4\xa0""cumbersome\xc4" +"\xa0""culturally\xc4\xa0""cultivated\xc4\xa0""culminated\xc4\xa0""criticized\xc4" +"\xa0""criticisms\xc4\xa0""criticised\xc4\xa0""critically\xc4\xa0""criminally\xc4" +"\xa0""creativity\xc4\xa0""creatively\xc4\xa0""courthouse\xc4\xa0""courageous\xc4" +"\xa0""countering\xc4\xa0""counteract\xc4\xa0""counselors\xc4\xa0""counseling\xc4" +"\xa0""corruption\xc4\xa0""correlates\xc4\xa0""correlated\xc4\xa0""corrective\xc4" +"\xa0""correcting\xc4\xa0""cornerback\xc4\xa0""convoluted\xc4\xa0""convincing\xc4" +"\xa0""converting\xc4\xa0""controlled\xc4\xa0""contrasted\xc4\xa0""contracted\xc4" +"\xa0""continuity\xc4\xa0""continuing\xc4\xa0""contingent\xc4\xa0""continents\xc4" +"\xa0""contiguous\xc4\xa0""contextual\xc4\xa0""contention\xc4\xa0""contenders\xc4" +"\xa0""containing\xc4\xa0""containers\xc4\xa0""contagious\xc4\xa0""contacting\xc4" +"\xa0""consulting\xc4\xa0""constructs\xc4\xa0""constantly\xc4\xa0""conspiring\xc4" +"\xa0""conspiracy\xc4\xa0""consortium\xc4\xa0""consisting\xc4\xa0""considered\xc4" +"\xa0""consensual\xc4\xa0""conscience\xc4\xa0""conquering\xc4\xa0""connectors\xc4" +"\xa0""connecting\xc4\xa0""conjecture\xc4\xa0""congestion\xc4\xa0""confronted\xc4" +"\xa0""conformity\xc4\xa0""conflicted\xc4\xa0""confirming\xc4\xa0""configured\xc4" +"\xa0""confidence\xc4\xa0""conducting\xc4\xa0""conditions\xc4\xa0""condemning\xc4" +"\xa0""concussion\xc4\xa0""conclusive\xc4\xa0""concluding\xc4\xa0""concerning\xc4" +"\xa0""conceptual\xc4\xa0""compulsory\xc4\xa0""compulsion\xc4\xa0""comprising\xc4" +"\xa0""compressor\xc4\xa0""compressed\xc4\xa0""comprehend\xc4\xa0""compounded\xc4" +"\xa0""components\xc4\xa0""complicity\xc4\xa0""compliance\xc4\xa0""complexity\xc4" +"\xa0""complexion\xc4\xa0""completion\xc4\xa0""completing\xc4\xa0""completely\xc4" +"\xa0""complaints\xc4\xa0""complained\xc4\xa0""competence\xc4\xa0""compelling\xc4" +"\xa0""compatible\xc4\xa0""comparable\xc4\xa0""companions\xc4\xa0""communists\xc4" +"\xa0""committing\xc4\xa0""committees\xc4\xa0""commenting\xc4\xa0""commenters\xc4" +"\xa0""commentary\xc4\xa0""commanding\xc4\xa0""commanders\xc4\xa0""comforting\xc4" +"\xa0""combustion\xc4\xa0""combatants\xc4\xa0""collisions\xc4\xa0""collegiate\xc4" +"\xa0""collectors\xc4\xa0""collecting\xc4\xa0""colleagues\xc4\xa0""collateral\xc4" +"\xa0""collapsing\xc4\xa0""clinicians\xc4\xa0""clinically\xc4\xa0""classrooms\xc4" +"\xa0""classmates\xc4\xa0""classified\xc4\xa0""circumvent\xc4\xa0""circulated\xc4" +"\xa0""cigarettes\xc4\xa0""childbirth\xc4\xa0""chemically\xc4\xa0""charitable\xc4" +"\xa0""characters\xc4\xa0""chancellor\xc4\xa0""championed\xc4\xa0""challenges\xc4" +"\xa0""challenged\xc4\xa0""ceremonies\xc4\xa0""ceremonial\xc4\xa0""censorship\xc4" +"\xa0""celebrates\xc4\xa0""celebrated\xc4\xa0""cautiously\xc4\xa0""categories\xc4" +"\xa0""casualties\xc4\xa0""cartridges\xc4\xa0""caricature\xc4\xa0""caregivers\xc4" +"\xa0""capitalize\xc4\xa0""capitalism\xc4\xa0""capacities\xc4\xa0""capability\xc4" +"\xa0""candidates\xc4\xa0""campaigned\xc4\xa0""camouflage\xc4\xa0""calibrated\xc4" +"\xa0""calculator\xc4\xa0""calculates\xc4\xa0""calculated\xc4\xa0""bystanders\xc4" +"\xa0""businesses\xc4\xa0""burgeoning\xc4\xa0""broadcasts\xc4\xa0""brilliance\xc4" +"\xa0""brightness\xc4\xa0""brainstorm\xc4\xa0""boundaries\xc4\xa0""bottleneck\xc4" +"\xa0""borderline\xc4\xa0""blockchain\xc4\xa0""bitterness\xc4\xa0""birthplace\xc4" +"\xa0""bipartisan\xc4\xa0""biomedical\xc4\xa0""biologists\xc4\xa0""billboards\xc4" +"\xa0""benevolent\xc4\xa0""benefiting\xc4\xa0""beneficial\xc4\xa0""benchmarks\xc4" +"\xa0""belongings\xc4\xa0""believable\xc4\xa0""behaviours\xc4\xa0""behavioral\xc4" +"\xa0""beginnings\xc4\xa0""beforehand\xc4\xa0""basketball\xc4\xa0""bargaining\xc4" +"\xa0""bankruptcy\xc4\xa0""autonomous\xc4\xa0""automotive\xc4\xa0""automation\xc4" +"\xa0""automakers\xc4\xa0""autoimmune\xc4\xa0""authorized\xc4\xa0""authorised\xc4" +"\xa0""attributes\xc4\xa0""attributed\xc4\xa0""attracting\xc4\xa0""attendants\xc4" +"\xa0""attendance\xc4\xa0""attempting\xc4\xa0""attainment\xc4\xa0""atrocities\xc4" +"\xa0""atmosphere\xc4\xa0""astronauts\xc4\xa0""astounding\xc4\xa0""astonished\xc4" +"\xa0""assurances\xc4\xa0""assortment\xc4\xa0""associates\xc4\xa0""associated\xc4" +"\xa0""assistants\xc4\xa0""assistance\xc4\xa0""assertions\xc4\xa0""assembling\xc4" +"\xa0""assemblies\xc4\xa0""assaulting\xc4\xa0""assailants\xc4\xa0""arithmetic\xc4" +"\xa0""architects\xc4\xa0""approaches\xc4\xa0""approached\xc4\xa0""appointing\xc4" +"\xa0""applicants\xc4\xa0""applicable\xc4\xa0""appliances\xc4\xa0""apparently\xc4" +"\xa0""apologized\xc4\xa0""apologised\xc4\xa0""apocalypse\xc4\xa0""apartments\xc4" +"\xa0""antibodies\xc4\xa0""announcing\xc4\xa0""annexation\xc4\xa0""animations\xc4" +"\xa0""anesthesia\xc4\xa0""anatomical\xc4\xa0""anarchists\xc4\xa0""analytical\xc4" +"\xa0""ammunition\xc4\xa0""amendments\xc4\xa0""altogether\xc4\xa0""allowances\xc4" +"\xa0""allegiance\xc4\xa0""alienation\xc4\xa0""algorithms\xc4\xa0""alcoholism\xc4" +"\xa0""airstrikes\xc4\xa0""agreements\xc4\xa0""aggression\xc4\xa0""aggravated\xc4" +"\xa0""afterwards\xc4\xa0""affordable\xc4\xa0""affiliates\xc4\xa0""affiliated\xc4" +"\xa0""aesthetics\xc4\xa0""advocating\xc4\xa0""advertised\xc4\xa0""adventures\xc4" +"\xa0""advantages\xc4\xa0""adrenaline\xc4\xa0""admittedly\xc4\xa0""admissions\xc4" +"\xa0""admiration\xc4\xa0""adjustable\xc4\xa0""adequately\xc4\xa0""addressing\xc4" +"\xa0""activities\xc4\xa0""activation\xc4\xa0""activating\xc4\xa0""acquainted\xc4" +"\xa0""achievable\xc4\xa0""accustomed\xc4\xa0""accurately\xc4\xa0""accredited\xc4" +"\xa0""accounting\xc4\xa0""accountant\xc4\xa0""accordance\xc4\xa0""accessible\xc4" +"\xa0""acceptance\xc4\xa0""acceptable\xc4\xa0""abundantly\xc4\xa0""abstinence\xc4" +"\xa0""absorption\xc4\xa0""absolutely\xc4\xa0""aboriginal\xc4\xa0""abandoning\xc4" +"\xa0Zuckerberg\xc4\xa0Yugoslavia\xc4\xa0Yanukovych\xc4\xa0Wonderland\xc4\xa0Winc" +"hester\xc4\xa0Wilmington\xc4\xa0Williamson\xc4\xa0Wilderness\xc4\xa0Wellington\xc4" +"\xa0Washington\xc4\xa0Volunteers\xc4\xa0Volkswagen\xc4\xa0Vietnamese\xc4\xa0Vete" +"rinary\xc4\xa0Venezuelan\xc4\xa0Vanderbilt\xc4\xa0University\xc4\xa0Underworld\xc4" +"\xa0Ultimately\xc4\xa0Ukrainians\xc4\xa0Transition\xc4\xa0Transcript\xc4\xa0Tour" +"nament\xc4\xa0Thumbnails\xc4\xa0Throughout\xc4\xa0Thankfully\xc4\xa0Terminator\xc4" +"\xa0Television\xc4\xa0Technology\xc4\xa0Techniques\xc4\xa0Technician\xc4\xa0Suth" +"erland\xc4\xa0Supporting\xc4\xa0Supporters\xc4\xa0Supervisor\xc4\xa0Sunderland\xc4" +"\xa0Submission\xc4\xa0Stronghold\xc4\xa0Strawberry\xc4\xa0Strategies\xc4\xa0Step" +"henson\xc4\xa0Statistics\xc4\xa0Statements\xc4\xa0Specialist\xc4\xa0Snapdragon\xc4" +"\xa0Simulation\xc4\xa0Settlement\xc4\xa0Securities\xc4\xa0Scriptures\xc4\xa0Scie" +"ntists\xc4\xa0Scientific\xc4\xa0Sacramento\xc4\xa0Rutherford\xc4\xa0Rothschild\xc4" +"\xa0Rosenstein\xc4\xa0Richardson\xc4\xa0Retirement\xc4\xa0Restaurant\xc4\xa0Reso" +"lution\xc4\xa0Resistance\xc4\xa0Remastered\xc4\xa0Regulatory\xc4\xa0Registered\xc4" +"\xa0Regardless\xc4\xa0References\xc4\xa0Redemption\xc4\xa0Recreation\xc4\xa0Quee" +"nsland\xc4\xa0Publishing\xc4\xa0Publishers\xc4\xa0Psychology\xc4\xa0Psychiatry\xc4" +"\xa0Provincial\xc4\xa0Providence\xc4\xa0Protesters\xc4\xa0Protective\xc4\xa0Prot" +"ection\xc4\xa0Properties\xc4\xa0Prometheus\xc4\xa0Processing\xc4\xa0Procedures\xc4" +"\xa0Principles\xc4\xa0Primordial\xc4\xa0Previously\xc4\xa0Prevention\xc4\xa0Pres" +"umably\xc4\xa0Presidents\xc4\xa0Presidency\xc4\xa0Prediction\xc4\xa0PowerShell\xc4" +"\xa0PowerPoint\xc4\xa0Portuguese\xc4\xa0Portsmouth\xc4\xa0Population\xc4\xa0Pitt" +"sburgh\xc4\xa0Physicians\xc4\xa0Philosophy\xc4\xa0Petersburg\xc4\xa0Personally\xc4" +"\xa0Perception\xc4\xa0Percentage\xc4\xa0Pediatrics\xc4\xa0Pathfinder\xc4\xa0Pare" +"nthood\xc4\xa0Parameters\xc4\xa0Originally\xc4\xa0Opposition\xc4\xa0Operations\xc4" +"\xa0Nottingham\xc4\xa0Nightmares\xc4\xa0Newsletter\xc4\xa0Navigation\xc4\xa0Nati" +"onwide\xc4\xa0Mysterious\xc4\xa0Motorsport\xc4\xa0Montgomery\xc4\xa0Monitoring\xc4" +"\xa0Millennium\xc4\xa0Membership\xc4\xa0Meditation\xc4\xa0Mechdragon\xc4\xa0Mech" +"anical\xc4\xa0Mayweather\xc4\xa0Masquerade\xc4\xa0Marketable\xc4\xa0Manchester\xc4" +"\xa0Management\xc4\xa0Madagascar\xc4\xa0Luxembourg\xc4\xa0Louisville\xc4\xa0Livi" +"ngston\xc4\xa0Literature\xc4\xa0Lieutenant\xc4\xa0Liberation\xc4\xa0Leadership\xc4" +"\xa0Lauderdale\xc4\xa0Laboratory\xc4\xa0Kinnikuman\xc4\xa0Kazakhstan\xc4\xa0Kard" +"ashian\xc4\xa0Kaepernick\xc4\xa0Journalism\xc4\xa0Javascript\xc4\xa0JavaScript\xc4" +"\xa0Ironically\xc4\xa0Introduced\xc4\xa0Interstate\xc4\xa0Integrated\xc4\xa0Inst" +"ructor\xc4\xa0Institutes\xc4\xa0Inspection\xc4\xa0Inquisitor\xc4\xa0Innovation\xc4" +"\xa0Initiative\xc4\xa0Industries\xc4\xa0Industrial\xc4\xa0Indonesian\xc4\xa0Indi" +"genous\xc4\xa0Incredible\xc4\xa0Increasing\xc4\xa0Impossible\xc4\xa0Illuminati\xc4" +"\xa0Identified\xc4\xa0Hutchinson\xc4\xa0Hurricanes\xc4\xa0Huntington\xc4\xa0Huff" +"ington\xc4\xa0Highlights\xc4\xa0Highlander\xc4\xa0Hemisphere\xc4\xa0Healthcare\xc4" +"\xa0Harrington\xc4\xa0Guidelines\xc4\xa0Guantanamo\xc4\xa0Greenpeace\xc4\xa0Geor" +"getown\xc4\xa0Geological\xc4\xa0Geographic\xc4\xa0""Functional\xc4\xa0""Friendsh" +"ip\xc4\xa0""Foundation\xc4\xa0""Fitzgerald\xc4\xa0""Fellowship\xc4\xa0""Federati" +"on\xc4\xa0""Fahrenheit\xc4\xa0""Facilities\xc4\xa0""Extensions\xc4\xa0""Expressi" +"on\xc4\xa0""Experience\xc4\xa0""Expedition\xc4\xa0""Exhibition\xc4\xa0""Excellen" +"ce\xc4\xa0""Everywhere\xc4\xa0""Everything\xc4\xa0""Eventually\xc4\xa0""Evaluati" +"on\xc4\xa0""Especially\xc4\xa0""Entreprene\xc4\xa0""EntityItem\xc4\xa0""Employme" +"nt\xc4\xa0""Elementary\xc4\xa0""Electrical\xc4\xa0""Eisenhower\xc4\xa0""Efficien" +"cy\xc4\xa0""Earthquake\xc4\xa0""Dumbledore\xc4\xa0""Disneyland\xc4\xa0""Discussi" +"on\xc4\xa0""Disclosure\xc4\xa0""Discipline\xc4\xa0""Disability\xc4\xa0""Directio" +"ns\xc4\xa0""Dimensions\xc4\xa0""Difficulty\xc4\xa0""Dictionary\xc4\xa0""Develope" +"rs\xc4\xa0""Depression\xc4\xa0""Department\xc4\xa0""Democratic\xc4\xa0""Definiti" +"ve\xc4\xa0""Definitely\xc4\xa0""Defendants\xc4\xa0""Cunningham\xc4\xa0""Craigsli" +"st\xc4\xa0""Cosponsors\xc4\xa0""Corruption\xc4\xa0""Correspond\xc4\xa0""Copenhag" +"en\xc4\xa0""Conversion\xc4\xa0""Conversely\xc4\xa0""Convention\xc4\xa0""Controll" +"er\xc4\xa0""Controlled\xc4\xa0""Continuous\xc4\xa0""Continuing\xc4\xa0""Consulti" +"ng\xc4\xa0""Conspiracy\xc4\xa0""Consortium\xc4\xa0""Connection\xc4\xa0""Conferen" +"ce\xc4\xa0""Conditions\xc4\xa0""Conclusion\xc4\xa0""Components\xc4\xa0""Complian" +"ce\xc4\xa0""Comparison\xc4\xa0""Communists\xc4\xa0""Committees\xc4\xa0""Commerci" +"al\xc4\xa0""Commentary\xc4\xa0""Collective\xc4\xa0""Cinderella\xc4\xa0""Cincinna" +"ti\xc4\xa0""Chronicles\xc4\xa0""Chromebook\xc4\xa0""Christians\xc4\xa0""Charlest" +"on\xc4\xa0""Characters\xc4\xa0""Chancellor\xc4\xa0""Challenges\xc4\xa0""Challeng" +"er\xc4\xa0""Categories\xc4\xa0""Capitalism\xc4\xa0""Canterbury\xc4\xa0""Californ" +"ia\xc4\xa0""Calculator\xc4\xa0""Burlington\xc4\xa0""Bundesliga\xc4\xa0""Buckingh" +"am\xc4\xa0""Buccaneers\xc4\xa0""Blumenthal\xc4\xa0""Blockchain\xc4\xa0""Blackhaw" +"ks\xc4\xa0""BlackBerry\xc4\xa0""Birmingham\xc4\xa0""Biological\xc4\xa0""Bernardi" +"no\xc4\xa0""Behavioral\xc4\xa0""Basketball\xc4\xa0""Bangladesh\xc4\xa0""Backgrou" +"nd\xc4\xa0""Azerbaijan\xc4\xa0""Attributes\xc4\xa0""Associates\xc4\xa0""Associat" +"ed\xc4\xa0""Assistance\xc4\xa0""Assignment\xc4\xa0""Assessment\xc4\xa0""Artifici" +"al\xc4\xa0""Armageddon\xc4\xa0""Architects\xc4\xa0""Archbishop\xc4\xa0""Apprenti" +"ce\xc4\xa0""Appearance\xc4\xa0""Apparently\xc4\xa0""Apocalypse\xc4\xa0""Antarcti" +"ca\xc4\xa0""Ammunition\xc4\xa0""Amendments\xc4\xa0""Ambassador\xc4\xa0""Alexandr" +"ia\xc4\xa0""Afterwards\xc4\xa0""Affordable\xc4\xa0""Adventures\xc4\xa0""Activiti" +"es\xc4\xa0""Activision\xc4\xa0""Accounting\xc4\xa0""Absolutely\xc4\xa0""Aborigin" +"alusercontentotechnologylesiasticalibliographyhematicallydisplayTextassetsadobeI" +"temTrackerInitializedEngineDebugConstructedAppearances\xc4\xa0\xc3\xa8\xc2\xa3\xc4" +"\xb1\xc3\xa8\xc2\xa6\xc4\xbc\xc3\xa9\xc4\xa8\xc4\xb4\xc4\xa0\xc3\xa2\xc4\xb6\xc4" +"\xbe\xc3\xa2\xc4\xb6\xc4\xa2\xc3\xa2\xc4\xb6\xc4\xa2\xc4\xa0yesterday\xc4\xa0wre" +"stling\xc4\xa0wrestlers\xc4\xa0worthless\xc4\xa0worsening\xc4\xa0worrisome\xc4\xa0" +"worldwide\xc4\xa0worldview\xc4\xa0workspace\xc4\xa0workshops\xc4\xa0workforce\xc4" +"\xa0wondering\xc4\xa0witnesses\xc4\xa0witnessed\xc4\xa0withstand\xc4\xa0withdraw" +"n\xc4\xa0willpower\xc4\xa0willingly\xc4\xa0willfully\xc4\xa0wildfires\xc4\xa0who" +"lesale\xc4\xa0whispered\xc4\xa0whirlwind\xc4\xa0whichever\xc4\xa0wellbeing\xc4\xa0" +"welcoming\xc4\xa0wealthier\xc4\xa0weakening\xc4\xa0waterways\xc4\xa0watershed\xc4" +"\xa0waterfall\xc4\xa0wasteland\xc4\xa0warranted\xc4\xa0wandering\xc4\xa0wallpape" +"r\xc4\xa0voluntary\xc4\xa0visualize\xc4\xa0visionary\xc4\xa0virtually\xc4\xa0vir" +"ginity\xc4\xa0violently\xc4\xa0violating\xc4\xa0villagers\xc4\xa0vigilante\xc4\xa0" +"vigilance\xc4\xa0victories\xc4\xa0viability\xc4\xa0versatile\xc4\xa0verifying\xc4" +"\xa0vengeance\xc4\xa0venerable\xc4\xa0varieties\xc4\xa0variables\xc4\xa0vanishin" +"g\xc4\xa0vandalism\xc4\xa0valuation\xc4\xa0validated\xc4\xa0vacations\xc4\xa0vac" +"ancies\xc4\xa0utilizing\xc4\xa0utilities\xc4\xa0usability\xc4\xa0upsetting\xc4\xa0" +"uploading\xc4\xa0upholding\xc4\xa0upgrading\xc4\xa0unwelcome\xc4\xa0unveiling\xc4" +"\xa0unusually\xc4\xa0untreated\xc4\xa0untouched\xc4\xa0unrelated\xc4\xa0unpopula" +"r\xc4\xa0unnoticed\xc4\xa0unnatural\xc4\xa0unmatched\xc4\xa0unmarried\xc4\xa0unl" +"ocking\xc4\xa0unlimited\xc4\xa0unleashed\xc4\xa0universes\xc4\xa0uninsured\xc4\xa0" +"uninstall\xc4\xa0uniformly\xc4\xa0unhealthy\xc4\xa0unfounded\xc4\xa0unfolding\xc4" +"\xa0unethical\xc4\xa0unearthed\xc4\xa0undrafted\xc4\xa0underwent\xc4\xa0underwea" +"r\xc4\xa0undertook\xc4\xa0underside\xc4\xa0undergone\xc4\xa0undefined\xc4\xa0und" +"ecided\xc4\xa0uncovered\xc4\xa0unchecked\xc4\xa0unchanged\xc4\xa0unaccount\xc4\xa0" +"typically\xc4\xa0twentieth\xc4\xa0tutorials\xc4\xa0turnovers\xc4\xa0turbulent\xc4" +"\xa0troubling\xc4\xa0trillions\xc4\xa0triglycer\xc4\xa0triggered\xc4\xa0triangle" +"s\xc4\xa0trembling\xc4\xa0treasures\xc4\xa0treasurer\xc4\xa0treadmill\xc4\xa0tra" +"velled\xc4\xa0traveling\xc4\xa0travelers\xc4\xa0traumatic\xc4\xa0transient\xc4\xa0" +"transfers\xc4\xa0transcend\xc4\xa0tragedies\xc4\xa0toughness\xc4\xa0tolerated\xc4" +"\xa0tolerance\xc4\xa0timetable\xc4\xa0timestamp\xc4\xa0timelines\xc4\xa0timefram" +"e\xc4\xa0tightened\xc4\xa0thumbnail\xc4\xa0thrilling\xc4\xa0threatens\xc4\xa0tho" +"usands\xc4\xa0thickness\xc4\xa0therefore\xc4\xa0therapies\xc4\xa0theorists\xc4\xa0" +"textbooks\xc4\xa0testimony\xc4\xa0testified\xc4\xa0testament\xc4\xa0terrorism\xc4" +"\xa0territory\xc4\xa0terrified\xc4\xa0terminals\xc4\xa0tentative\xc4\xa0tentacle" +"s\xc4\xa0temporary\xc4\xa0templates\xc4\xa0televised\xc4\xa0telephone\xc4\xa0tee" +"nagers\xc4\xa0teaspoons\xc4\xa0teammates\xc4\xa0teachings\xc4\xa0taxpayers\xc4\xa0" +"targeting\xc4\xa0tampering\xc4\xa0synthetic\xc4\xa0synthesis\xc4\xa0synagogue\xc4" +"\xa0symbolism\xc4\xa0switching\xc4\xa0sweetness\xc4\xa0swallowed\xc4\xa0sustaine" +"d\xc4\xa0suspended\xc4\xa0suspected\xc4\xa0survivors\xc4\xa0surviving\xc4\xa0sur" +"rounds\xc4\xa0surrogate\xc4\xa0surprises\xc4\xa0surprised\xc4\xa0surpassed\xc4\xa0" +"surgeries\xc4\xa0supremacy\xc4\xa0supported\xc4\xa0supplying\xc4\xa0suppliers\xc4" +"\xa0superstar\xc4\xa0superiors\xc4\xa0sunscreen\xc4\xa0summoning\xc4\xa0suggeste" +"d\xc4\xa0suffering\xc4\xa0succumbed\xc4\xa0successes\xc4\xa0succeeded\xc4\xa0sub" +"titles\xc4\xa0subsystem\xc4\xa0substrate\xc4\xa0subsidies\xc4\xa0submitted\xc4\xa0" +"submerged\xc4\xa0subjected\xc4\xa0stupidity\xc4\xa0stumbling\xc4\xa0struggles\xc4" +"\xa0struggled\xc4\xa0strongest\xc4\xa0stripping\xc4\xa0stringent\xc4\xa0stretche" +"s\xc4\xa0stretched\xc4\xa0stressing\xc4\xa0stressful\xc4\xa0strengths\xc4\xa0str" +"eetcar\xc4\xa0streaming\xc4\xa0strangers\xc4\xa0strangely\xc4\xa0stockpile\xc4\xa0" +"stitching\xc4\xa0stiffness\xc4\xa0steadfast\xc4\xa0statutory\xc4\xa0stationed\xc4" +"\xa0statewide\xc4\xa0startling\xc4\xa0standings\xc4\xa0standards\xc4\xa0staircas" +"e\xc4\xa0stainless\xc4\xa0staggered\xc4\xa0stability\xc4\xa0srfAttach\xc4\xa0squ" +"eezing\xc4\xa0sprinkled\xc4\xa0spreading\xc4\xa0sprawling\xc4\xa0spotlight\xc4\xa0" +"sponsored\xc4\xa0spokesman\xc4\xa0splitting\xc4\xa0spherical\xc4\xa0spectacle\xc4" +"\xa0specimens\xc4\xa0specifies\xc4\xa0specified\xc4\xa0specifics\xc4\xa0specialt" +"y\xc4\xa0specially\xc4\xa0sparkling\xc4\xa0spaghetti\xc4\xa0spaceship\xc4\xa0sop" +"homore\xc4\xa0somewhere\xc4\xa0sometimes\xc4\xa0something\xc4\xa0solutions\xc4\xa0" +"solicitor\xc4\xa0sociology\xc4\xa0societies\xc4\xa0socialism\xc4\xa0snapshots\xc4" +"\xa0smuggling\xc4\xa0smugglers\xc4\xa0slightest\xc4\xa0slideshow\xc4\xa0skyrocke" +"t\xc4\xa0skeptical\xc4\xa0skeletons\xc4\xa0sincerity\xc4\xa0sincerely\xc4\xa0sim" +"ulator\xc4\xa0simulated\xc4\xa0similarly\xc4\xa0signifies\xc4\xa0signaling\xc4\xa0" +"sightings\xc4\xa0sidewalks\xc4\xa0sidelines\xc4\xa0sidelined\xc4\xa0shrinking\xc4" +"\xa0showcases\xc4\xa0showcased\xc4\xa0shoulders\xc4\xa0shortstop\xc4\xa0shorthan" +"d\xc4\xa0shortfall\xc4\xa0shortened\xc4\xa0shortcuts\xc4\xa0shortages\xc4\xa0sho" +"otings\xc4\xa0shipments\xc4\xa0shielding\xc4\xa0sheltered\xc4\xa0shattered\xc4\xa0" +"shameless\xc4\xa0sexuality\xc4\xa0seventeen\xc4\xa0servicing\xc4\xa0serotonin\xc4" +"\xa0seriously\xc4\xa0sequences\xc4\xa0separates\xc4\xa0separated\xc4\xa0sentence" +"s\xc4\xa0sentenced\xc4\xa0sensitive\xc4\xa0senseless\xc4\xa0semblance\xc4\xa0sem" +"antics\xc4\xa0selecting\xc4\xa0seemingly\xc4\xa0sectarian\xc4\xa0secretive\xc4\xa0" +"secretion\xc4\xa0secretary\xc4\xa0secondary\xc4\xa0secession\xc4\xa0seasoning\xc4" +"\xa0searching\xc4\xa0scrolling\xc4\xa0scripting\xc4\xa0scrimmage\xc4\xa0screamin" +"g\xc4\xa0scratches\xc4\xa0scratched\xc4\xa0scrambled\xc4\xa0sclerosis\xc4\xa0sch" +"ooling\xc4\xa0scholarly\xc4\xa0schematic\xc4\xa0schedules\xc4\xa0scheduled\xc4\xa0" +"scenarios\xc4\xa0scattered\xc4\xa0saturated\xc4\xa0satisfies\xc4\xa0satisfied\xc4" +"\xa0satirical\xc4\xa0sarcastic\xc4\xa0sanctuary\xc4\xa0sanctions\xc4\xa0salvatio" +"n\xc4\xa0sacrament\xc4\xa0royalties\xc4\xa0routinely\xc4\xa0robberies\xc4\xa0rid" +"iculed\xc4\xa0rewritten\xc4\xa0rewriting\xc4\xa0rewarding\xc4\xa0revolving\xc4\xa0" +"revisions\xc4\xa0reviewing\xc4\xa0reviewers\xc4\xa0reversing\xc4\xa0reverence\xc4" +"\xa0revealing\xc4\xa0returning\xc4\xa0retrieved\xc4\xa0retrieval\xc4\xa0retreate" +"d\xc4\xa0retracted\xc4\xa0retention\xc4\xa0retaliate\xc4\xa0retaining\xc4\xa0ret" +"ailers\xc4\xa0resulting\xc4\xa0resultant\xc4\xa0restrooms\xc4\xa0restricts\xc4\xa0" +"restoring\xc4\xa0responses\xc4\xa0responded\xc4\xa0respected\xc4\xa0resources\xc4" +"\xa0resonance\xc4\xa0resolving\xc4\xa0resisting\xc4\xa0resistant\xc4\xa0resilien" +"t\xc4\xa0residents\xc4\xa0residency\xc4\xa0resembles\xc4\xa0resembled\xc4\xa0req" +"uisite\xc4\xa0requiring\xc4\xa0requested\xc4\xa0reputable\xc4\xa0reprinted\xc4\xa0" +"reporting\xc4\xa0reporters\xc4\xa0replacing\xc4\xa0repeating\xc4\xa0repealing\xc4" +"\xa0repayment\xc4\xa0repairing\xc4\xa0renovated\xc4\xa0rendition\xc4\xa0renderin" +"g\xc4\xa0removable\xc4\xa0remission\xc4\xa0reminding\xc4\xa0reminders\xc4\xa0rem" +"embers\xc4\xa0remaining\xc4\xa0remainder\xc4\xa0relocated\xc4\xa0religions\xc4\xa0" +"relevance\xc4\xa0relegated\xc4\xa0releasing\xc4\xa0relatives\xc4\xa0rejection\xc4" +"\xa0rejecting\xc4\xa0reintrodu\xc4\xa0rehearsal\xc4\xa0regulates\xc4\xa0regulate" +"d\xc4\xa0regularly\xc4\xa0regretted\xc4\xa0registers\xc4\xa0regarding\xc4\xa0ref" +"reshed\xc4\xa0reforming\xc4\xa0reflected\xc4\xa0referring\xc4\xa0referrals\xc4\xa0" +"redundant\xc4\xa0recycling\xc4\xa0recursive\xc4\xa0recurring\xc4\xa0recurrent\xc4" +"\xa0rectangle\xc4\xa0recruited\xc4\xa0recovered\xc4\xa0recounted\xc4\xa0reconnec" +"t\xc4\xa0reconcile\xc4\xa0reclaimed\xc4\xa0reckoning\xc4\xa0recession\xc4\xa0rec" +"eptors\xc4\xa0receptive\xc4\xa0receiving\xc4\xa0receivers\xc4\xa0recalling\xc4\xa0" +"rebellion\xc4\xa0reassured\xc4\xa0reasoning\xc4\xa0realizing\xc4\xa0realities\xc4" +"\xa0readiness\xc4\xa0reactions\xc4\xa0rationale\xc4\xa0raspberry\xc4\xa0radicall" +"y\xc4\xa0radiation\xc4\xa0questions\xc4\xa0quarterly\xc4\xa0qualities\xc4\xa0qua" +"lifies\xc4\xa0qualified\xc4\xa0purposely\xc4\xa0purchases\xc4\xa0purchaser\xc4\xa0" +"purchased\xc4\xa0punishing\xc4\xa0pulmonary\xc4\xa0publishes\xc4\xa0published\xc4" +"\xa0publicity\xc4\xa0psychotic\xc4\xa0psychosis\xc4\xa0pseudonym\xc4\xa0proximit" +"y\xc4\xa0provoking\xc4\xa0provinces\xc4\xa0providing\xc4\xa0providers\xc4\xa0pro" +"tocols\xc4\xa0protested\xc4\xa0protector\xc4\xa0protected\xc4\xa0prospects\xc4\xa0" +"proposing\xc4\xa0proposals\xc4\xa0prophetic\xc4\xa0propelled\xc4\xa0propagate\xc4" +"\xa0prompting\xc4\xa0promoting\xc4\xa0promoters\xc4\xa0promising\xc4\xa0prolonge" +"d\xc4\xa0projector\xc4\xa0projected\xc4\xa0prohibits\xc4\xa0profiling\xc4\xa0pro" +"ducing\xc4\xa0producers\xc4\xa0processes\xc4\xa0processed\xc4\xa0proceeded\xc4\xa0" +"probation\xc4\xa0proactive\xc4\xa0privately\xc4\xa0prisoners\xc4\xa0primitive\xc4" +"\xa0primarily\xc4\xa0primaries\xc4\xa0priceless\xc4\xa0prevented\xc4\xa0prevalen" +"t\xc4\xa0prevailed\xc4\xa0pretended\xc4\xa0pressures\xc4\xa0pressured\xc4\xa0pre" +"siding\xc4\xa0preserves\xc4\xa0preserved\xc4\xa0presently\xc4\xa0presenter\xc4\xa0" +"presented\xc4\xa0preseason\xc4\xa0preschool\xc4\xa0preparing\xc4\xa0premiered\xc4" +"\xa0pregnancy\xc4\xa0preferred\xc4\xa0predictor\xc4\xa0predicted\xc4\xa0predicat" +"e\xc4\xa0predatory\xc4\xa0predators\xc4\xa0precursor\xc4\xa0precision\xc4\xa0pre" +"cisely\xc4\xa0precincts\xc4\xa0preceding\xc4\xa0precedent\xc4\xa0preaching\xc4\xa0" +"pragmatic\xc4\xa0practices\xc4\xa0practiced\xc4\xa0powerless\xc4\xa0potassium\xc4" +"\xa0postponed\xc4\xa0posterior\xc4\xa0possesses\xc4\xa0possessed\xc4\xa0positive" +"s\xc4\xa0positions\xc4\xa0portrayed\xc4\xa0portrayal\xc4\xa0portraits\xc4\xa0pop" +"ulated\xc4\xa0polymorph\xc4\xa0pollution\xc4\xa0policemen\xc4\xa0policeman\xc4\xa0" +"polarized\xc4\xa0poisonous\xc4\xa0poisoning\xc4\xa0pointless\xc4\xa0pneumonia\xc4" +"\xa0plutonium\xc4\xa0plurality\xc4\xa0plummeted\xc4\xa0plentiful\xc4\xa0pleasure" +"s\xc4\xa0plausible\xc4\xa0platforms\xc4\xa0planetary\xc4\xa0placement\xc4\xa0pip" +"elines\xc4\xa0pioneered\xc4\xa0pineapple\xc4\xa0phosphate\xc4\xa0phenotype\xc4\xa0" +"petroleum\xc4\xa0petitions\xc4\xa0petertodd\xc4\xa0pervasive\xc4\xa0pertinent\xc4" +"\xa0persuaded\xc4\xa0personnel\xc4\xa0persisted\xc4\xa0permitted\xc4\xa0peripher" +"y\xc4\xa0perimeter\xc4\xa0performed\xc4\xa0perfectly\xc4\xa0perfected\xc4\xa0per" +"ennial\xc4\xa0perceived\xc4\xa0peninsula\xc4\xa0penalties\xc4\xa0pediatric\xc4\xa0" +"patronage\xc4\xa0patriotic\xc4\xa0patiently\xc4\xa0pathology\xc4\xa0pathogens\xc4" +"\xa0paternity\xc4\xa0passwords\xc4\xa0passports\xc4\xa0passively\xc4\xa0partnere" +"d\xc4\xa0partisans\xc4\xa0particles\xc4\xa0partially\xc4\xa0parenting\xc4\xa0par" +"chment\xc4\xa0parasitic\xc4\xa0parasites\xc4\xa0paramount\xc4\xa0paralyzed\xc4\xa0" +"paralysis\xc4\xa0parallels\xc4\xa0parachute\xc4\xa0paperwork\xc4\xa0paperback\xc4" +"\xa0paintings\xc4\xa0painfully\xc4\xa0packaging\xc4\xa0oxidative\xc4\xa0oxidatio" +"n\xc4\xa0ownership\xc4\xa0overwrite\xc4\xa0overthrow\xc4\xa0oversized\xc4\xa0ove" +"rsight\xc4\xa0overnight\xc4\xa0overheard\xc4\xa0overdoses\xc4\xa0overcrowd\xc4\xa0" +"overboard\xc4\xa0outspoken\xc4\xa0outskirts\xc4\xa0outsiders\xc4\xa0outlining\xc4" +"\xa0outbreaks\xc4\xa0ourselves\xc4\xa0otherwise\xc4\xa0orthodoxy\xc4\xa0original" +"s\xc4\xa0organized\xc4\xa0organisms\xc4\xa0organised\xc4\xa0optimized\xc4\xa0opp" +"ressed\xc4\xa0opponents\xc4\xa0operators\xc4\xa0operating\xc4\xa0onslaught\xc4\xa0" +"offspring\xc4\xa0offseason\xc4\xa0officials\xc4\xa0offerings\xc4\xa0offending\xc4" +"\xa0offenders\xc4\xa0occurring\xc4\xa0occupying\xc4\xa0occupants\xc4\xa0occupanc" +"y\xc4\xa0occasions\xc4\xa0obviously\xc4\xa0obtaining\xc4\xa0obstacles\xc4\xa0obs" +"essive\xc4\xa0obsession\xc4\xa0observing\xc4\xa0observers\xc4\xa0obscurity\xc4\xa0" +"obnoxious\xc4\xa0oblivious\xc4\xa0obligated\xc4\xa0obedience\xc4\xa0nutrients\xc4" +"\xa0nurturing\xc4\xa0numerical\xc4\xa0numbering\xc4\xa0notoriety\xc4\xa0notebook" +"s\xc4\xa0nostalgic\xc4\xa0nostalgia\xc4\xa0normative\xc4\xa0nominated\xc4\xa0nig" +"httime\xc4\xa0nightclub\xc4\xa0nicknamed\xc4\xa0newcomers\xc4\xa0nervously\xc4\xa0" +"neighbors\xc4\xa0negligent\xc4\xa0neglected\xc4\xa0negatives\xc4\xa0nefarious\xc4" +"\xa0necessity\xc4\xa0necessary\xc4\xa0naturally\xc4\xa0nationals\xc4\xa0narrowin" +"g\xc4\xa0narration\xc4\xa0narcotics\xc4\xa0namespace\xc4\xa0mythology\xc4\xa0mys" +"teries\xc4\xa0mutations\xc4\xa0musicians\xc4\xa0mushrooms\xc4\xa0murderous\xc4\xa0" +"murdering\xc4\xa0murderers\xc4\xa0munitions\xc4\xa0multitude\xc4\xa0movements\xc4" +"\xa0mountains\xc4\xa0motorists\xc4\xa0motivated\xc4\xa0mortgages\xc4\xa0mortalit" +"y\xc4\xa0monuments\xc4\xa0monstrous\xc4\xa0monitored\xc4\xa0monastery\xc4\xa0mol" +"ecules\xc4\xa0molecular\xc4\xa0modifying\xc4\xa0modifiers\xc4\xa0moderates\xc4\xa0" +"modelling\xc4\xa0mobilized\xc4\xa0misplaced\xc4\xa0misguided\xc4\xa0miserable\xc4" +"\xa0ministers\xc4\xa0minimized\xc4\xa0miniature\xc4\xa0militants\xc4\xa0migratio" +"n\xc4\xa0migrating\xc4\xa0microwave\xc4\xa0microbial\xc4\xa0metaphors\xc4\xa0met" +"abolic\xc4\xa0messenger\xc4\xa0messaging\xc4\xa0merciless\xc4\xa0merchants\xc4\xa0" +"mercenary\xc4\xa0mentioned\xc4\xa0mentality\xc4\xa0menstrual\xc4\xa0memorable\xc4" +"\xa0membranes\xc4\xa0medicines\xc4\xa0medicinal\xc4\xa0medically\xc4\xa0mediatio" +"n\xc4\xa0mechanics\xc4\xa0measuring\xc4\xa0meanwhile\xc4\xa0maternity\xc4\xa0mat" +"erials\xc4\xa0mastering\xc4\xa0massively\xc4\xa0massacres\xc4\xa0masculine\xc4\xa0" +"marvelous\xc4\xa0marriages\xc4\xa0marketing\xc4\xa0marketers\xc4\xa0marijuana\xc4" +"\xa0manifests\xc4\xa0manifesto\xc4\xa0maneuvers\xc4\xa0mandatory\xc4\xa0mammalia" +"n\xc4\xa0malicious\xc4\xa0makeshift\xc4\xa0maintains\xc4\xa0magnitude\xc4\xa0mag" +"nesium\xc4\xa0magically\xc4\xa0magazines\xc4\xa0machinery\xc4\xa0luxurious\xc4\xa0" +"ludicrous\xc4\xa0lucrative\xc4\xa0loopholes\xc4\xa0longevity\xc4\xa0logistics\xc4" +"\xa0logically\xc4\xa0locations\xc4\xa0localized\xc4\xa0lobbyists\xc4\xa0livestoc" +"k\xc4\xa0literally\xc4\xa0listening\xc4\xa0listeners\xc4\xa0liquidity\xc4\xa0lin" +"gering\xc4\xa0limitless\xc4\xa0limestone\xc4\xa0lightning\xc4\xa0licensing\xc4\xa0" +"libraries\xc4\xa0liberties\xc4\xa0liberated\xc4\xa0liability\xc4\xa0legendary\xc4" +"\xa0legalized\xc4\xa0lawmakers\xc4\xa0launching\xc4\xa0launchers\xc4\xa0laughabl" +"e\xc4\xa0languages\xc4\xa0landslide\xc4\xa0landmarks\xc4\xa0landlords\xc4\xa0lab" +"yrinth\xc4\xa0knowingly\xc4\xa0kilograms\xc4\xa0kidnapped\xc4\xa0keyboards\xc4\xa0" +"juveniles\xc4\xa0justifies\xc4\xa0justified\xc4\xa0judiciary\xc4\xa0judgments\xc4" +"\xa0judgement\xc4\xa0jihadists\xc4\xa0isolation\xc4\xa0isEnabled\xc4\xa0irritate" +"d\xc4\xa0involving\xc4\xa0invisible\xc4\xa0investors\xc4\xa0investing\xc4\xa0inv" +"entory\xc4\xa0inventive\xc4\xa0intuitive\xc4\xa0intuition\xc4\xa0intrusive\xc4\xa0" +"intrusion\xc4\xa0intrigued\xc4\xa0intricate\xc4\xa0intestine\xc4\xa0intervals\xc4" +"\xa0interoper\xc4\xa0interests\xc4\xa0interacts\xc4\xa0intensive\xc4\xa0intensit" +"y\xc4\xa0intensify\xc4\xa0intensely\xc4\xa0intending\xc4\xa0integrity\xc4\xa0ins" +"urance\xc4\xa0insulting\xc4\xa0insulated\xc4\xa0instincts\xc4\xa0instantly\xc4\xa0" +"instances\xc4\xa0installer\xc4\xa0installed\xc4\xa0inspiring\xc4\xa0inspected\xc4" +"\xa0insisting\xc4\xa0insidious\xc4\xa0insertion\xc4\xa0inserting\xc4\xa0inscribe" +"d\xc4\xa0inquiries\xc4\xa0innocuous\xc4\xa0innocence\xc4\xa0injustice\xc4\xa0inj" +"ecting\xc4\xa0initiated\xc4\xa0initially\xc4\xa0inhibited\xc4\xa0inherited\xc4\xa0" +"inhabited\xc4\xa0ingrained\xc4\xa0ingestion\xc4\xa0ingenuity\xc4\xa0ingenious\xc4" +"\xa0informing\xc4\xa0influenza\xc4\xa0inflicted\xc4\xa0inflation\xc4\xa0inferenc" +"e\xc4\xa0induction\xc4\xa0indiscrim\xc4\xa0indicates\xc4\xa0indicated\xc4\xa0inc" +"umbent\xc4\xa0increases\xc4\xa0increased\xc4\xa0inclusive\xc4\xa0inclusion\xc4\xa0" +"including\xc4\xa0incidents\xc4\xa0incidence\xc4\xa0inception\xc4\xa0incapable\xc4" +"\xa0inaugural\xc4\xa0inability\xc4\xa0improving\xc4\xa0impressed\xc4\xa0importin" +"g\xc4\xa0implanted\xc4\xa0imperfect\xc4\xa0impending\xc4\xa0impedance\xc4\xa0imp" +"atient\xc4\xa0impartial\xc4\xa0impacting\xc4\xa0immutable\xc4\xa0immersive\xc4\xa0" +"immersion\xc4\xa0immensely\xc4\xa0imitation\xc4\xa0imbalance\xc4\xa0imagining\xc4" +"\xa0imaginary\xc4\xa0illusions\xc4\xa0illnesses\xc4\xa0illegally\xc4\xa0ignoranc" +"e\xc4\xa0idiosyncr\xc4\xa0identical\xc4\xa0hypocrisy\xc4\xa0hydraulic\xc4\xa0hum" +"ankind\xc4\xa0hostility\xc4\xa0hospitals\xc4\xa0horrified\xc4\xa0hopefully\xc4\xa0" +"honorable\xc4\xa0homicides\xc4\xa0homegrown\xc4\xa0histories\xc4\xa0hindsight\xc4" +"\xa0hilarious\xc4\xa0hierarchy\xc4\xa0hesitated\xc4\xa0hereafter\xc4\xa0hepatiti" +"s\xc4\xa0heartfelt\xc4\xa0heartbeat\xc4\xa0healthier\xc4\xa0headlines\xc4\xa0hea" +"dlined\xc4\xa0headaches\xc4\xa0hazardous\xc4\xa0harvested\xc4\xa0harrowing\xc4\xa0" +"hardships\xc4\xa0harassing\xc4\xa0happiness\xc4\xa0happening\xc4\xa0handshake\xc4" +"\xa0handcuffs\xc4\xa0hamstring\xc4\xa0habitable\xc4\xa0guitarist\xc4\xa0guerrill" +"a\xc4\xa0guardians\xc4\xa0grounding\xc4\xa0grotesque\xc4\xa0groceries\xc4\xa0gre" +"atness\xc4\xa0graveyard\xc4\xa0gratitude\xc4\xa0grappling\xc4\xa0graphical\xc4\xa0" +"graduates\xc4\xa0graduated\xc4\xa0gradually\xc4\xa0governors\xc4\xa0governing\xc4" +"\xa0glutamate\xc4\xa0glamorous\xc4\xa0giveaways\xc4\xa0gestation\xc4\xa0geometri" +"c\xc4\xa0geography\xc4\xa0genuinely\xc4\xa0gentlemen\xc4\xa0gentleman\xc4\xa0gen" +"erates\xc4\xa0generated\xc4\xa0generally\xc4\xa0gardening\xc4\xa0galleries\xc4\xa0" +"""furniture\xc4\xa0""furnished\xc4\xa0""furiously\xc4\xa0""functions\xc4\xa0""fu" +"lfilled\xc4\xa0""frontline\xc4\xa0""frivolous\xc4\xa0""frequency\xc4\xa0""freela" +"nce\xc4\xa0""fragrance\xc4\xa0""fragments\xc4\xa0""fractures\xc4\xa0""fractured\xc4" +"\xa0""fractions\xc4\xa0""fostering\xc4\xa0""forwarded\xc4\xa0""fortnight\xc4\xa0" +"""fortified\xc4\xa0""formatted\xc4\xa0""forgotten\xc4\xa0""forgiving\xc4\xa0""fo" +"regoing\xc4\xa0""forefront\xc4\xa0""forecasts\xc4\xa0""forbidden\xc4\xa0""footst" +"eps\xc4\xa0""following\xc4\xa0""followers\xc4\xa0""flowering\xc4\xa0""fledgling\xc4" +"\xa0""flavorful\xc4\xa0""flattened\xc4\xa0""fishermen\xc4\xa0""fisherman\xc4\xa0" +"""fisheries\xc4\xa0""firsthand\xc4\xa0""fireworks\xc4\xa0""firepower\xc4\xa0""fi" +"replace\xc4\xa0""finishing\xc4\xa0""financing\xc4\xa0""finalized\xc4\xa0""finali" +"sts\xc4\xa0""filtering\xc4\xa0""fictional\xc4\xa0""festivals\xc4\xa0""fertility\xc4" +"\xa0""ferocious\xc4\xa0""fermented\xc4\xa0""feminists\xc4\xa0""federally\xc4\xa0" +"""featuring\xc4\xa0""favorites\xc4\xa0""favorably\xc4\xa0""favorable\xc4\xa0""fa" +"shioned\xc4\xa0""fantastic\xc4\xa0""fantasies\xc4\xa0""falsehood\xc4\xa0""facult" +"ies\xc4\xa0""factories\xc4\xa0""extremism\xc4\xa0""extremely\xc4\xa0""extracted\xc4" +"\xa0""extortion\xc4\xa0""extending\xc4\xa0""exquisite\xc4\xa0""expulsion\xc4\xa0" +"""expressly\xc4\xa0""expresses\xc4\xa0""expressed\xc4\xa0""exposures\xc4\xa0""ex" +"porting\xc4\xa0""exploring\xc4\xa0""explorers\xc4\xa0""exploited\xc4\xa0""explod" +"ing\xc4\xa0""explained\xc4\xa0""expertise\xc4\xa0""expensive\xc4\xa0""expecting\xc4" +"\xa0""expansive\xc4\xa0""expanding\xc4\xa0""existence\xc4\xa0""exhibited\xc4\xa0" +"""exhausted\xc4\xa0""exercises\xc4\xa0""exercised\xc4\xa0""exemplary\xc4\xa0""ex" +"ecuting\xc4\xa0""exclusion\xc4\xa0""excluding\xc4\xa0""exclaimed\xc4\xa0""exchan" +"ges\xc4\xa0""exchanged\xc4\xa0""excellent\xc4\xa0""examining\xc4\xa0""evidently\xc4" +"\xa0""evidenced\xc4\xa0""everybody\xc4\xa0""evaluates\xc4\xa0""evaluated\xc4\xa0" +"""evacuated\xc4\xa0""etiquette\xc4\xa0""ethnicity\xc4\xa0""estranged\xc4\xa0""es" +"timates\xc4\xa0""estimated\xc4\xa0""espionage\xc4\xa0""escalated\xc4\xa0""errone" +"ous\xc4\xa0""eradicate\xc4\xa0""equitable\xc4\xa0""equipment\xc4\xa0""equations\xc4" +"\xa0""entrusted\xc4\xa0""entrances\xc4\xa0""entangled\xc4\xa0""enjoyment\xc4\xa0" +"""enjoyable\xc4\xa0""enigmatic\xc4\xa0""enhancing\xc4\xa0""engineers\xc4\xa0""en" +"forcing\xc4\xa0""energetic\xc4\xa0""endurance\xc4\xa0""endorsing\xc4\xa0""endles" +"sly\xc4\xa0""endeavour\xc4\xa0""endeavors\xc4\xa0""encrypted\xc4\xa0""enclosure\xc4" +"\xa0""enchanted\xc4\xa0""enactment\xc4\xa0""emulation\xc4\xa0""emptiness\xc4\xa0" +"""empowered\xc4\xa0""employing\xc4\xa0""employers\xc4\xa0""employees\xc4\xa0""em" +"pirical\xc4\xa0""emissions\xc4\xa0""emergency\xc4\xa0""emergence\xc4\xa0""embryo" +"nic\xc4\xa0""embroiled\xc4\xa0""embracing\xc4\xa0""embattled\xc4\xa0""embassies\xc4" +"\xa0""emanating\xc4\xa0""elsewhere\xc4\xa0""elevation\xc4\xa0""elephants\xc4\xa0" +"""elemental\xc4\xa0""electrons\xc4\xa0""electroly\xc4\xa0""electoral\xc4\xa0""el" +"ections\xc4\xa0""egregious\xc4\xa0""educators\xc4\xa0""educating\xc4\xa0""editor" +"ial\xc4\xa0""economies\xc4\xa0""economics\xc4\xa0""eccentric\xc4\xa0""dystopian\xc4" +"\xa0""dwindling\xc4\xa0""dwellings\xc4\xa0""duplicate\xc4\xa0""drawbacks\xc4\xa0" +"""draconian\xc4\xa0""downwards\xc4\xa0""downright\xc4\xa0""downloads\xc4\xa0""do" +"wngrade\xc4\xa0""doubtless\xc4\xa0""donations\xc4\xa0""dominates\xc4\xa0""domina" +"ted\xc4\xa0""dominance\xc4\xa0""documents\xc4\xa0""doctrines\xc4\xa0""divisions\xc4" +"\xa0""dividends\xc4\xa0""diversity\xc4\xa0""diversion\xc4\xa0""disturbed\xc4\xa0" +"""districts\xc4\xa0""distorted\xc4\xa0""distilled\xc4\xa0""distances\xc4\xa0""di" +"ssolved\xc4\xa0""disrupted\xc4\xa0""disregard\xc4\xa0""displayed\xc4\xa0""displa" +"ced\xc4\xa0""dispersed\xc4\xa0""disparity\xc4\xa0""disparate\xc4\xa0""disorders\xc4" +"\xa0""dismissed\xc4\xa0""dismissal\xc4\xa0""disinfect\xc4\xa0""dishonest\xc4\xa0" +"""disgusted\xc4\xa0""disguised\xc4\xa0""disembark\xc4\xa0""discusses\xc4\xa0""di" +"scussed\xc4\xa0""discovery\xc4\xa0""discovers\xc4\xa0""discourse\xc4\xa0""discou" +"nts\xc4\xa0""disclosed\xc4\xa0""disciples\xc4\xa0""discarded\xc4\xa0""disbelief\xc4" +"\xa0""disbanded\xc4\xa0""disasters\xc4\xa0""disagrees\xc4\xa0""disagreed\xc4\xa0" +"""disabling\xc4\xa0""directory\xc4\xa0""directors\xc4\xa0""directing\xc4\xa0""di" +"plomats\xc4\xa0""diplomacy\xc4\xa0""dinosaurs\xc4\xa0""diligence\xc4\xa0""digita" +"lly\xc4\xa0""digestive\xc4\xa0""digestion\xc4\xa0""diffusion\xc4\xa0""differing\xc4" +"\xa0""diagnosis\xc4\xa0""diagnoses\xc4\xa0""diagnosed\xc4\xa0""dexterity\xc4\xa0" +"""developed\xc4\xa0""detonated\xc4\xa0""deterrent\xc4\xa0""detention\xc4\xa0""de" +"tectors\xc4\xa0""detection\xc4\xa0""detecting\xc4\xa0""detainees\xc4\xa0""detail" +"ing\xc4\xa0""destroyer\xc4\xa0""destroyed\xc4\xa0""desirable\xc4\xa0""designing\xc4" +"\xa0""designers\xc4\xa0""deserving\xc4\xa0""describes\xc4\xa0""described\xc4\xa0" +"""descended\xc4\xa0""depressed\xc4\xa0""deposited\xc4\xa0""deploying\xc4\xa0""de" +"pletion\xc4\xa0""depicting\xc4\xa0""depending\xc4\xa0""dependent\xc4\xa0""depart" +"ing\xc4\xa0""denounced\xc4\xa0""democracy\xc4\xa0""demanding\xc4\xa0""delusions\xc4" +"\xa0""delivered\xc4\xa0""delighted\xc4\xa0""delicious\xc4\xa0""delegates\xc4\xa0" +"""delegated\xc4\xa0""degrading\xc4\xa0""deflation\xc4\xa0""deficient\xc4\xa0""de" +"fending\xc4\xa0""defenders\xc4\xa0""defective\xc4\xa0""defeating\xc4\xa0""deepen" +"ing\xc4\xa0""dedicated\xc4\xa0""decreases\xc4\xa0""decreased\xc4\xa0""decorated\xc4" +"\xa0""declining\xc4\xa0""declaring\xc4\xa0""decisions\xc4\xa0""decidedly\xc4\xa0" +"""deceptive\xc4\xa0""deception\xc4\xa0""debugging\xc4\xa0""deadlines\xc4\xa0""de" +"adliest\xc4\xa0""daughters\xc4\xa0""databases\xc4\xa0""dashboard\xc4\xa0""cylind" +"ers\xc4\xa0""customers\xc4\xa0""customary\xc4\xa0""currently\xc4\xa0""curiously\xc4" +"\xa0""curiosity\xc4\xa0""crumbling\xc4\xa0""crossover\xc4\xa0""crossings\xc4\xa0" +"""critiques\xc4\xa0""criterion\xc4\xa0""crippling\xc4\xa0""criminals\xc4\xa0""cr" +"editors\xc4\xa0""creatures\xc4\xa0""creations\xc4\xa0""crackdown\xc4\xa0""cowork" +"ers\xc4\xa0""courtyard\xc4\xa0""courtroom\xc4\xa0""countries\xc4\xa0""countless\xc4" +"\xa0""countered\xc4\xa0""countdown\xc4\xa0""cosmetics\xc4\xa0""corrupted\xc4\xa0" +"""corrosion\xc4\xa0""corridors\xc4\xa0""correctly\xc4\xa0""corrected\xc4\xa0""co" +"rporate\xc4\xa0""cooperate\xc4\xa0""convinced\xc4\xa0""convicted\xc4\xa0""conver" +"ter\xc4\xa0""converted\xc4\xa0""contrasts\xc4\xa0""contracts\xc4\xa0""continuum\xc4" +"\xa0""continues\xc4\xa0""continued\xc4\xa0""contested\xc4\xa0""contended\xc4\xa0" +"""contained\xc4\xa0""contacted\xc4\xa0""consuming\xc4\xa0""consumers\xc4\xa0""co" +"nsulted\xc4\xa0""consulate\xc4\xa0""construed\xc4\xa0""constants\xc4\xa0""consis" +"ted\xc4\xa0""considers\xc4\xa0""consensus\xc4\xa0""conquered\xc4\xa0""connected\xc4" +"\xa0""confusion\xc4\xa0""confusing\xc4\xa0""confronts\xc4\xa0""conflicts\xc4\xa0" +"""confirmed\xc4\xa0""confessed\xc4\xa0""conferred\xc4\xa0""conductor\xc4\xa0""co" +"nducted\xc4\xa0""conducive\xc4\xa0""condensed\xc4\xa0""condemned\xc4\xa0""conclu" +"des\xc4\xa0""concluded\xc4\xa0""concerted\xc4\xa0""concerned\xc4\xa0""conceived\xc4" +"\xa0""concealed\xc4\xa0""computing\xc4\xa0""computers\xc4\xa0""comprises\xc4\xa0" +"""comprised\xc4\xa0""compounds\xc4\xa0""composure\xc4\xa0""composite\xc4\xa0""co" +"mposing\xc4\xa0""complying\xc4\xa0""compliant\xc4\xa0""complexes\xc4\xa0""comple" +"tes\xc4\xa0""completed\xc4\xa0""complains\xc4\xa0""compiling\xc4\xa0""competing\xc4" +"\xa0""competent\xc4\xa0""compelled\xc4\xa0""comparing\xc4\xa0""companies\xc4\xa0" +"""commuting\xc4\xa0""commuters\xc4\xa0""community\xc4\xa0""communism\xc4\xa0""co" +"mmunion\xc4\xa0""commodity\xc4\xa0""committed\xc4\xa0""commented\xc4\xa0""commen" +"ced\xc4\xa0""commanded\xc4\xa0""comedians\xc4\xa0""combining\xc4\xa0""combating\xc4" +"\xa0""columnist\xc4\xa0""colourful\xc4\xa0""colonists\xc4\xa0""collusion\xc4\xa0" +"""collected\xc4\xa0""collapses\xc4\xa0""collapsed\xc4\xa0""coincides\xc4\xa0""co" +"incided\xc4\xa0""cognitive\xc4\xa0""cognition\xc4\xa0""cocktails\xc4\xa0""coastl" +"ine\xc4\xa0""coalition\xc4\xa0""clutching\xc4\xa0""clustered\xc4\xa0""clubhouse\xc4" +"\xa0""clipboard\xc4\xa0""clearance\xc4\xa0""cleansing\xc4\xa0""classical\xc4\xa0" +"""clarified\xc4\xa0""claimants\xc4\xa0""civilized\xc4\xa0""civilians\xc4\xa0""ci" +"tations\xc4\xa0""circuitry\xc4\xa0""circadian\xc4\xa0""cinematic\xc4\xa0""chocol" +"ate\xc4\xa0""childhood\xc4\xa0""childcare\xc4\xa0""cherished\xc4\xa0""chemistry\xc4" +"\xa0""chemicals\xc4\xa0""checklist\xc4\xa0""charities\xc4\xa0""champagne\xc4\xa0" +"""cessation\xc4\xa0""certified\xc4\xa0""certainty\xc4\xa0""certainly\xc4\xa0""ce" +"nturies\xc4\xa0""centrally\xc4\xa0""cellphone\xc4\xa0""celestial\xc4\xa0""celebr" +"ity\xc4\xa0""ceasefire\xc4\xa0""cautioned\xc4\xa0""causation\xc4\xa0""cathedral\xc4" +"\xa0""catalogue\xc4\xa0""carefully\xc4\xa0""cardboard\xc4\xa0""capturing\xc4\xa0" +"""captivity\xc4\xa0""capacitor\xc4\xa0""canonical\xc4\xa0""candidacy\xc4\xa0""ca" +"ncelled\xc4\xa0""campaigns\xc4\xa0""caliphate\xc4\xa0""calendars\xc4\xa0""cafete" +"ria\xc4\xa0""butterfly\xc4\xa0""buildings\xc4\xa0""budgetary\xc4\xa0""brutality\xc4" +"\xa0""brokerage\xc4\xa0""broadband\xc4\xa0""brightest\xc4\xa0""briefings\xc4\xa0" +"""breweries\xc4\xa0""breathing\xc4\xa0""breakfast\xc4\xa0""breakdown\xc4\xa0""br" +"eaching\xc4\xa0""branching\xc4\xa0""boyfriend\xc4\xa0""bothering\xc4\xa0""borrow" +"ing\xc4\xa0""borrowers\xc4\xa0""bordering\xc4\xa0""bookstore\xc4\xa0""bombshell\xc4" +"\xa0""bolstered\xc4\xa0""blueprint\xc4\xa0""bloodshed\xc4\xa0""blindness\xc4\xa0" +"""blessings\xc4\xa0""blatantly\xc4\xa0""blasphemy\xc4\xa0""blackmail\xc4\xa0""bl" +"acklist\xc4\xa0""biography\xc4\xa0""bilingual\xc4\xa0""bilateral\xc4\xa0""bevera" +"ges\xc4\xa0""benefited\xc4\xa0""believing\xc4\xa0""believers\xc4\xa0""behaviors\xc4" +"\xa0""beginners\xc4\xa0""batteries\xc4\xa0""battalion\xc4\xa0""bathrooms\xc4\xa0" +"""basically\xc4\xa0""bartender\xc4\xa0""bandwidth\xc4\xa0""bandwagon\xc4\xa0""ba" +"llistic\xc4\xa0""balancing\xc4\xa0""bacterial\xc4\xa0""backwards\xc4\xa0""backst" +"ory\xc4\xa0""backstage\xc4\xa0""backfield\xc4\xa0""awkwardly\xc4\xa0""awareness\xc4" +"\xa0""awakening\xc4\xa0""avoidance\xc4\xa0""averaging\xc4\xa0""avalanche\xc4\xa0" +"""available\xc4\xa0""auxiliary\xc4\xa0""automated\xc4\xa0""authority\xc4\xa0""au" +"sterity\xc4\xa0""augmented\xc4\xa0""audiences\xc4\xa0""attrition\xc4\xa0""attrac" +"ted\xc4\xa0""attorneys\xc4\xa0""attitudes\xc4\xa0""attentive\xc4\xa0""attention\xc4" +"\xa0""attending\xc4\xa0""attendees\xc4\xa0""attempted\xc4\xa0""attacking\xc4\xa0" +"""attackers\xc4\xa0""attaching\xc4\xa0""athletics\xc4\xa0""astronomy\xc4\xa0""as" +"teroids\xc4\xa0""assisting\xc4\xa0""assigning\xc4\xa0""assessing\xc4\xa0""assert" +"ing\xc4\xa0""assembled\xc4\xa0""assaulted\xc4\xa0""assassins\xc4\xa0""ascertain\xc4" +"\xa0""ascending\xc4\xa0""artillery\xc4\xa0""artifacts\xc4\xa0""arthritis\xc4\xa0" +"""arrogance\xc4\xa0""arresting\xc4\xa0""arranging\xc4\xa0""arguments\xc4\xa0""ar" +"chetype\xc4\xa0""arbitrary\xc4\xa0""approving\xc4\xa0""approvals\xc4\xa0""apprai" +"sal\xc4\xa0""appointed\xc4\xa0""applauded\xc4\xa0""appellate\xc4\xa0""appellant\xc4" +"\xa0""appearing\xc4\xa0""appealing\xc4\xa0""apparatus\xc4\xa0""appalling\xc4\xa0" +"""apologies\xc4\xa0""apartheid\xc4\xa0""antitrust\xc4\xa0""antiquity\xc4\xa0""an" +"thology\xc4\xa0""answering\xc4\xa0""anonymity\xc4\xa0""anomalies\xc4\xa0""annoya" +"nce\xc4\xa0""announces\xc4\xa0""announcer\xc4\xa0""announced\xc4\xa0""animosity\xc4" +"\xa0""anecdotes\xc4\xa0""anecdotal\xc4\xa0""ancestral\xc4\xa0""ancestors\xc4\xa0" +"""anarchism\xc4\xa0""analyzing\xc4\xa0""analytics\xc4\xa0""analogous\xc4\xa0""am" +"usement\xc4\xa0""amplitude\xc4\xa0""amplifier\xc4\xa0""amplified\xc4\xa0""amenit" +"ies\xc4\xa0""ambulance\xc4\xa0""ambitious\xc4\xa0""ambitions\xc4\xa0""ambiguous\xc4" +"\xa0""ambiguity\xc4\xa0""amazingly\xc4\xa0""aluminium\xc4\xa0""alternate\xc4\xa0" +"""alongside\xc4\xa0""allowable\xc4\xa0""allocated\xc4\xa0""alliances\xc4\xa0""al" +"leviate\xc4\xa0""allergies\xc4\xa0""allegedly\xc4\xa0""alignment\xc4\xa0""aliena" +"ted\xc4\xa0""alcoholic\xc4\xa0""airplanes\xc4\xa0""agreeable\xc4\xa0""agitation\xc4" +"\xa0""aggregate\xc4\xa0""afternoon\xc4\xa0""aftermath\xc4\xa0""afterlife\xc4\xa0" +"""afflicted\xc4\xa0""affidavit\xc4\xa0""affection\xc4\xa0""affecting\xc4\xa0""ae" +"rospace\xc4\xa0""advocates\xc4\xa0""advocated\xc4\xa0""advisable\xc4\xa0""advers" +"ity\xc4\xa0""adversely\xc4\xa0""adversary\xc4\xa0""advancing\xc4\xa0""adulthood\xc4" +"\xa0""admitting\xc4\xa0""admirable\xc4\xa0""adjusting\xc4\xa0""adjoining\xc4\xa0" +"""adjective\xc4\xa0""adherents\xc4\xa0""adherence\xc4\xa0""addresses\xc4\xa0""ad" +"dressed\xc4\xa0""additives\xc4\xa0""additions\xc4\xa0""addictive\xc4\xa0""addict" +"ion\xc4\xa0""actresses\xc4\xa0""activists\xc4\xa0""activates\xc4\xa0""activated\xc4" +"\xa0""acquitted\xc4\xa0""acquiring\xc4\xa0""achieving\xc4\xa0""accounted\xc4\xa0" +"""acclaimed\xc4\xa0""accidents\xc4\xa0""accessory\xc4\xa0""accessing\xc4\xa0""ac" +"cepting\xc4\xa0""academics\xc4\xa0""abundance\xc4\xa0""absurdity\xc4\xa0""absorb" +"ing\xc4\xa0""abortions\xc4\xa0""abolition\xc4\xa0""abolished\xc4\xa0""abilities\xc4" +"\xa0""abduction\xc4\xa0""abdominal\xc4\xa0""abandoned\xc4\xa0Zimmerman\xc4\xa0Yo" +"rkshire\xc4\xa0Yesterday\xc4\xa0Wrestling\xc4\xa0Worldwide\xc4\xa0WordPress\xc4\xa0" +"Worcester\xc4\xa0Wonderful\xc4\xa0Wolverine\xc4\xa0Witnesses\xc4\xa0Wisconsin\xc4" +"\xa0Wilkinson\xc4\xa0Wikipedia\xc4\xa0Wikimedia\xc4\xa0Wikileaks\xc4\xa0WikiLeak" +"s\xc4\xa0Westbrook\xc4\xa0Weinstein\xc4\xa0Wednesday\xc4\xa0Watergate\xc4\xa0Was" +"teland\xc4\xa0Wasserman\xc4\xa0Warhammer\xc4\xa0Warehouse\xc4\xa0Voldemort\xc4\xa0" +"Victorian\xc4\xa0Vengeance\xc4\xa0Vancouver\xc4\xa0Valentine\xc4\xa0Utilities\xc4" +"\xa0Unlimited\xc4\xa0Unleashed\xc4\xa0Universal\xc4\xa0Uncharted\xc4\xa0Typicall" +"y\xc4\xa0Tsukuyomi\xc4\xa0Treatment\xc4\xa0Treasurer\xc4\xa0Tottenham\xc4\xa0Til" +"lerson\xc4\xa0Thousands\xc4\xa0Therefore\xc4\xa0Testament\xc4\xa0Terrorism\xc4\xa0" +"Territory\xc4\xa0Tennessee\xc4\xa0Temporary\xc4\xa0Telescope\xc4\xa0Telephone\xc4" +"\xa0Telegraph\xc4\xa0Technical\xc4\xa0Taiwanese\xc4\xa0Syndicate\xc4\xa0Swordsma" +"n\xc4\xa0Survivors\xc4\xa0Supported\xc4\xa0Substance\xc4\xa0Subscribe\xc4\xa0Str" +"ucture\xc4\xa0Streaming\xc4\xa0Strategic\xc4\xa0Stockholm\xc4\xa0Stevenson\xc4\xa0" +"Stephanie\xc4\xa0Starfleet\xc4\xa0Starcraft\xc4\xa0Starbucks\xc4\xa0StarCraft\xc4" +"\xa0Standards\xc4\xa0Stainless\xc4\xa0Stability\xc4\xa0Spotlight\xc4\xa0Spiritua" +"l\xc4\xa0Spielberg\xc4\xa0Sovereign\xc4\xa0Southwest\xc4\xa0Southeast\xc4\xa0Sor" +"ceress\xc4\xa0Somewhere\xc4\xa0Sometimes\xc4\xa0Something\xc4\xa0Solutions\xc4\xa0" +"Solitaire\xc4\xa0Socialist\xc4\xa0Socialism\xc4\xa0Slaughter\xc4\xa0Skywalker\xc4" +"\xa0Skydragon\xc4\xa0Situation\xc4\xa0Singapore\xc4\xa0Simulator\xc4\xa0Similarl" +"y\xc4\xa0Signature\xc4\xa0Sheffield\xc4\xa0Shattered\xc4\xa0Seriously\xc4\xa0Sep" +"tember\xc4\xa0Selection\xc4\xa0Secretary\xc4\xa0Secondary\xc4\xa0Sebastian\xc4\xa0" +"Schneider\xc4\xa0Saturdays\xc4\xa0Satellite\xc4\xa0Sanctuary\xc4\xa0Salvation\xc4" +"\xa0Sacrifice\xc4\xa0Rosenthal\xc4\xa0Rosenberg\xc4\xa0Roosevelt\xc4\xa0Rodrigue" +"z\xc4\xa0Rochester\xc4\xa0Robertson\xc4\xa0Riverside\xc4\xa0Returning\xc4\xa0Ret" +"rieved\xc4\xa0Resources\xc4\xa0Residents\xc4\xa0Reporting\xc4\xa0Religious\xc4\xa0" +"Registrar\xc4\xa0Regarding\xc4\xa0Reduction\xc4\xa0Recording\xc4\xa0Recession\xc4" +"\xa0Rebellion\xc4\xa0Raspberry\xc4\xa0Rasmussen\xc4\xa0Radiation\xc4\xa0Question" +"s\xc4\xa0Quarterly\xc4\xa0Pyongyang\xc4\xa0Published\xc4\xa0Provision\xc4\xa0Pro" +"totype\xc4\xa0Protector\xc4\xa0Promotion\xc4\xa0Programme\xc4\xa0Professor\xc4\xa0" +"Processor\xc4\xa0Principal\xc4\xa0Princeton\xc4\xa0Preferred\xc4\xa0Predators\xc4" +"\xa0Precision\xc4\xa0Practices\xc4\xa0Potential\xc4\xa0Political\xc4\xa0Planetar" +"y\xc4\xa0Plaintiff\xc4\xa0Pinterest\xc4\xa0Photoshop\xc4\xa0Petroleum\xc4\xa0Per" +"sonnel\xc4\xa0Permanent\xc4\xa0Peninsula\xc4\xa0Patterson\xc4\xa0Patriarch\xc4\xa0" +"Passenger\xc4\xa0Parkinson\xc4\xa0Paramount\xc4\xa0Panasonic\xc4\xa0Palestine\xc4" +"\xa0Pakistani\xc4\xa0PRESIDENT\xc4\xa0Overwatch\xc4\xa0Oversight\xc4\xa0Otherwis" +"e\xc4\xa0Orchestra\xc4\xa0Operating\xc4\xa0Officials\xc4\xa0Offensive\xc4\xa0Obv" +"iously\xc4\xa0Objective\xc4\xa0Obamacare\xc4\xa0ObamaCare\xc4\xa0Nutrition\xc4\xa0" +"Norwegian\xc4\xa0Northeast\xc4\xa0Nietzsche\xc4\xa0Nicholson\xc4\xa0Nicaragua\xc4" +"\xa0Newspaper\xc4\xa0Newcastle\xc4\xa0Netanyahu\xc4\xa0Naturally\xc4\xa0National" +"s\xc4\xa0Nathaniel\xc4\xa0Nashville\xc4\xa0Mysteries\xc4\xa0Municipal\xc4\xa0Mou" +"ntains\xc4\xa0Mormonism\xc4\xa0Moonlight\xc4\xa0Monstrous\xc4\xa0Molecular\xc4\xa0" +"Minnesota\xc4\xa0Ministers\xc4\xa0Minecraft\xc4\xa0Milwaukee\xc4\xa0Migration\xc4" +"\xa0Microsoft\xc4\xa0Methodist\xc4\xa0Messenger\xc4\xa0Merchants\xc4\xa0Mercenar" +"y\xc4\xa0Melbourne\xc4\xa0Mechanics\xc4\xa0Meanwhile\xc4\xa0McDonnell\xc4\xa0McC" +"onnell\xc4\xa0McCartney\xc4\xa0McAuliffe\xc4\xa0Mavericks\xc4\xa0Materials\xc4\xa0" +"Marketing\xc4\xa0Marijuana\xc4\xa0Manhattan\xc4\xa0Mandatory\xc4\xa0Malaysian\xc4" +"\xa0Macintosh\xc4\xa0Macedonia\xc4\xa0MacDonald\xc4\xa0MacArthur\xc4\xa0Lovecraf" +"t\xc4\xa0Louisiana\xc4\xa0Locations\xc4\xa0Liverpool\xc4\xa0Lithuania\xc4\xa0Lit" +"erally\xc4\xa0Lightning\xc4\xa0Lieberman\xc4\xa0Libraries\xc4\xa0Liberties\xc4\xa0" +"Lexington\xc4\xa0Leviathan\xc4\xa0Leicester\xc4\xa0Legendary\xc4\xa0Languages\xc4" +"\xa0Lancaster\xc4\xa0Lafayette\xc4\xa0Labyrinth\xc4\xa0Kurdistan\xc4\xa0Knowledg" +"e\xc4\xa0Kissinger\xc4\xa0Kavanaugh\xc4\xa0Katherine\xc4\xa0Judiciary\xc4\xa0Jor" +"danian\xc4\xa0Jerusalem\xc4\xa0Jefferson\xc4\xa0ItemLevel\xc4\xa0Islanders\xc4\xa0" +"Islamists\xc4\xa0Islamabad\xc4\xa0Invisible\xc4\xa0Investors\xc4\xa0Inventory\xc4" +"\xa0Invention\xc4\xa0Interview\xc4\xa0Interpret\xc4\xa0Interface\xc4\xa0Intercep" +"t\xc4\xa0Integrity\xc4\xa0Insurance\xc4\xa0Instagram\xc4\xa0Inspector\xc4\xa0Ini" +"tially\xc4\xa0Influence\xc4\xa0Increases\xc4\xa0Increased\xc4\xa0Including\xc4\xa0" +"Important\xc4\xa0Icelandic\xc4\xa0Hungarian\xc4\xa0Household\xc4\xa0Hopefully\xc4" +"\xa0Holocaust\xc4\xa0Hollywood\xc4\xa0Hitchcock\xc4\xa0Hispanics\xc4\xa0Hiroshim" +"a\xc4\xa0Highlands\xc4\xa0Hezbollah\xc4\xa0Hernandez\xc4\xa0Hendricks\xc4\xa0Hen" +"derson\xc4\xa0Happiness\xc4\xa0Hampshire\xc4\xa0Halloween\xc4\xa0Gutierrez\xc4\xa0" +"Gutenberg\xc4\xa0Guatemala\xc4\xa0Guardiola\xc4\xa0Guardians\xc4\xa0Grizzlies\xc4" +"\xa0Greenwood\xc4\xa0Greenwich\xc4\xa0Greenwald\xc4\xa0Greenland\xc4\xa0Greenber" +"g\xc4\xa0Graveyard\xc4\xa0Governors\xc4\xa0Goldstein\xc4\xa0Gladiator\xc4\xa0Gil" +"lespie\xc4\xa0Gibraltar\xc4\xa0Gentleman\xc4\xa0Generator\xc4\xa0Generally\xc4\xa0" +"Gathering\xc4\xa0Gamergate\xc4\xa0GamerGate\xc4\xa0Gallagher\xc4\xa0""Functions\xc4" +"\xa0""Fukushima\xc4\xa0""Friedrich\xc4\xa0""Frequency\xc4\xa0""Frenchman\xc4\xa0" +"""Frederick\xc4\xa0""Fran\xc3\x83\xc2\xa7ois\xc4\xa0""Frankfurt\xc4\xa0""Francis" +"co\xc4\xa0""Franchise\xc4\xa0""Framework\xc4\xa0""Formation\xc4\xa0""Forgotten\xc4" +"\xa0""Forbidden\xc4\xa0""Following\xc4\xa0""Flavoring\xc4\xa0""Fisheries\xc4\xa0" +"""Financial\xc4\xa0""Fernandez\xc4\xa0""Ferdinand\xc4\xa0""Feinstein\xc4\xa0""Fe" +"aturing\xc4\xa0""Fantastic\xc4\xa0""Explosive\xc4\xa0""Explosion\xc4\xa0""Expans" +"ion\xc4\xa0""Executive\xc4\xa0""Execution\xc4\xa0""Exclusive\xc4\xa0""Exception\xc4" +"\xa0""Excellent\xc4\xa0""Evolution\xc4\xa0""Everybody\xc4\xa0""Europeans\xc4\xa0" +"""Ethiopian\xc4\xa0""Estimates\xc4\xa0""Estimated\xc4\xa0""Equipment\xc4\xa0""Ep" +"iscopal\xc4\xa0""Engineers\xc4\xa0""Endurance\xc4\xa0""Encounter\xc4\xa0""Employ" +"ees\xc4\xa0""Emergency\xc4\xa0""Elizabeth\xc4\xa0""Elemental\xc4\xa0""Electoral\xc4" +"\xa0""Elections\xc4\xa0""Egyptians\xc4\xa0""Effective\xc4\xa0""Editorial\xc4\xa0" +"""Edinburgh\xc4\xa0""Economist\xc4\xa0""Economics\xc4\xa0""Downloads\xc4\xa0""Do" +"minican\xc4\xa0""Documents\xc4\xa0""Diversity\xc4\xa0""Disorders\xc4\xa0""Discov" +"ery\xc4\xa0""Directory\xc4\xa0""Directors\xc4\xa0""Directive\xc4\xa0""Different\xc4" +"\xa0""Dickinson\xc4\xa0""Dexterity\xc4\xa0""DevOnline\xc4\xa0""Detention\xc4\xa0" +"""Detective\xc4\xa0""Detection\xc4\xa0""Destroyer\xc4\xa0""Depending\xc4\xa0""De" +"mocrats\xc4\xa0""Democracy\xc4\xa0""Delicious\xc4\xa0""Defensive\xc4\xa0""Defend" +"ers\xc4\xa0""Dartmouth\xc4\xa0""Daredevil\xc4\xa0""Dangerous\xc4\xa0""Customers\xc4" +"\xa0""Currently\xc4\xa0""Curiosity\xc4\xa0""Creatures\xc4\xa0""Countries\xc4\xa0" +"""Countdown\xc4\xa0""Corporate\xc4\xa0""Copyright\xc4\xa0""Converted\xc4\xa0""Co" +"ntracts\xc4\xa0""Continued\xc4\xa0""Container\xc4\xa0""Consumers\xc4\xa0""Consta" +"ble\xc4\xa0""Conscious\xc4\xa0""Computing\xc4\xa0""Composite\xc4\xa0""Completed\xc4" +"\xa0""Companion\xc4\xa0""Companies\xc4\xa0""Community\xc4\xa0""Communism\xc4\xa0" +"""Commodore\xc4\xa0""Commander\xc4\xa0""Colombian\xc4\xa0""Collector\xc4\xa0""Co" +"gnitive\xc4\xa0""Coalition\xc4\xa0""Clockwork\xc4\xa0""Cleveland\xc4\xa0""Classi" +"cal\xc4\xa0""Churchill\xc4\xa0""Christmas\xc4\xa0""Christine\xc4\xa0""Christina\xc4" +"\xa0""Chocolate\xc4\xa0""Chinatown\xc4\xa0""Childhood\xc4\xa0""Chevrolet\xc4\xa0" +"""Chemistry\xc4\xa0""Certified\xc4\xa0""Certainly\xc4\xa0""Celestial\xc4\xa0""Ce" +"lebrity\xc4\xa0""Cavaliers\xc4\xa0""Caucasian\xc4\xa0""Catholics\xc4\xa0""Cather" +"ine\xc4\xa0""Cathedral\xc4\xa0""Catalonia\xc4\xa0""Cassandra\xc4\xa0""Carpenter\xc4" +"\xa0""Caribbean\xc4\xa0""Cardinals\xc4\xa0""Carbuncle\xc4\xa0""Candidate\xc4\xa0" +"""Canaveral\xc4\xa0""Canadiens\xc4\xa0""Canadians\xc4\xa0""Cambridge\xc4\xa0""By" +"zantine\xc4\xa0""Butterfly\xc4\xa0""Bulgarian\xc4\xa0""Buildings\xc4\xa0""Brunsw" +"ick\xc4\xa0""Brookings\xc4\xa0""Brilliant\xc4\xa0""Breitbart\xc4\xa0""Breakfast\xc4" +"\xa0""Brazilian\xc4\xa0""Boulevard\xc4\xa0""Bolshevik\xc4\xa0""Bluetooth\xc4\xa0" +"""Blueprint\xc4\xa0""Bloomberg\xc4\xa0""Blackwell\xc4\xa0""Blackburn\xc4\xa0""Bi" +"llboard\xc4\xa0""Bethlehem\xc4\xa0""Berserker\xc4\xa0""Bernstein\xc4\xa0""Berksh" +"ire\xc4\xa0""Belichick\xc4\xa0""Beginning\xc4\xa0""Beautiful\xc4\xa0""Battalion\xc4" +"\xa0""Basically\xc4\xa0""Barcelona\xc4\xa0""Barbarian\xc4\xa0""Bangalore\xc4\xa0" +"""Baltimore\xc4\xa0""Ballistic\xc4\xa0""Awareness\xc4\xa0""Awakening\xc4\xa0""Av" +"alanche\xc4\xa0""Available\xc4\xa0""Automatic\xc4\xa0""Authority\xc4\xa0""Auschw" +"itz\xc4\xa0""Augustine\xc4\xa0""Attention\xc4\xa0""Athletics\xc4\xa0""Assistant\xc4" +"\xa0""Assassins\xc4\xa0""Asheville\xc4\xa0""Ascension\xc4\xa0""Armstrong\xc4\xa0" +"""Arlington\xc4\xa0""Aristotle\xc4\xa0""Argentine\xc4\xa0""Argentina\xc4\xa0""Ar" +"chdemon\xc4\xa0""Archangel\xc4\xa0""Applicant\xc4\xa0""Anonymous\xc4\xa0""Animat" +"ion\xc4\xa0""Andromeda\xc4\xa0""Anchorage\xc4\xa0""Analytics\xc4\xa0""Amsterdam\xc4" +"\xa0""Americans\xc4\xa0""Alzheimer\xc4\xa0""Alternate\xc4\xa0""Alexandra\xc4\xa0" +"""Alexander\xc4\xa0""Alchemist\xc4\xa0""Agreement\xc4\xa0""Aerospace\xc4\xa0""Ad" +"vantage\xc4\xa0""Admission\xc4\xa0""Addiction\xc4\xa0""Abilitiesworthinessthumbn" +"ailsrequisitesreditationochemistryactionDateWASHINGTONSourceFileScreenshotIntere" +"stedFrameworksDownloadhaDisclaimer\xc4\xa0youthful\xc4\xa0yourself\xc4\xa0younge" +"st\xc4\xa0yielding\xc4\xa0wrongful\xc4\xa0writings\xc4\xa0wrinkles\xc4\xa0wretch" +"ed\xc4\xa0wreckage\xc4\xa0wrapping\xc4\xa0wounding\xc4\xa0worsened\xc4\xa0worryi" +"ng\xc4\xa0workouts\xc4\xa0workload\xc4\xa0workings\xc4\xa0workflow\xc4\xa0woodla" +"nd\xc4\xa0wondered\xc4\xa0withheld\xc4\xa0withdrew\xc4\xa0wireless\xc4\xa0wildli" +"fe\xc4\xa0wielding\xc4\xa0widening\xc4\xa0whopping\xc4\xa0whispers\xc4\xa0whippi" +"ng\xc4\xa0wherever\xc4\xa0whenever\xc4\xa0whatever\xc4\xa0wetlands\xc4\xa0wellne" +"ss\xc4\xa0welcomes\xc4\xa0welcomed\xc4\xa0weighted\xc4\xa0weighing\xc4\xa0weeken" +"ds\xc4\xa0weddings\xc4\xa0websites\xc4\xa0wearable\xc4\xa0weaponry\xc4\xa0weaken" +"ed\xc4\xa0watering\xc4\xa0watching\xc4\xa0watchdog\xc4\xa0wasteful\xc4\xa0warshi" +"ps\xc4\xa0warriors\xc4\xa0warranty\xc4\xa0warrants\xc4\xa0warnings\xc4\xa0warhea" +"ds\xc4\xa0wardrobe\xc4\xa0wandered\xc4\xa0waitress\xc4\xa0vouchers\xc4\xa0vomiti" +"ng\xc4\xa0volcanic\xc4\xa0volatile\xc4\xa0vitamins\xc4\xa0vitality\xc4\xa0visual" +"ly\xc4\xa0visitors\xc4\xa0visiting\xc4\xa0visceral\xc4\xa0virtuous\xc4\xa0violen" +"ce\xc4\xa0violates\xc4\xa0violated\xc4\xa0villains\xc4\xa0villages\xc4\xa0vicini" +"ty\xc4\xa0veterans\xc4\xa0versions\xc4\xa0verified\xc4\xa0verbally\xc4\xa0ventur" +"es\xc4\xa0ventured\xc4\xa0velocity\xc4\xa0vehicles\xc4\xa0vascular\xc4\xa0varian" +"ts\xc4\xa0variance\xc4\xa0vanished\xc4\xa0vampires\xc4\xa0valuable\xc4\xa0validi" +"ty\xc4\xa0vaccines\xc4\xa0utilizes\xc4\xa0utilized\xc4\xa0username\xc4\xa0urgent" +"ly\xc4\xa0upstream\xc4\xa0upstairs\xc4\xa0uprising\xc4\xa0uploaded\xc4\xa0upheav" +"al\xc4\xa0upgrades\xc4\xa0upgraded\xc4\xa0updating\xc4\xa0upcoming\xc4\xa0unwort" +"hy\xc4\xa0unwanted\xc4\xa0unveiled\xc4\xa0unstable\xc4\xa0unsolved\xc4\xa0unsign" +"ed\xc4\xa0unsatisf\xc4\xa0unrecogn\xc4\xa0unmarked\xc4\xa0unmanned\xc4\xa0unlock" +"ed\xc4\xa0unloaded\xc4\xa0unlikely\xc4\xa0uniquely\xc4\xa0uniforms\xc4\xa0unfold" +"ed\xc4\xa0unfairly\xc4\xa0underway\xc4\xa0underpin\xc4\xa0underdog\xc4\xa0underc" +"ut\xc4\xa0underage\xc4\xa0uncommon\xc4\xa0unbiased\xc4\xa0unbeaten\xc4\xa0umbrel" +"la\xc4\xa0twisting\xc4\xa0twilight\xc4\xa0twenties\xc4\xa0tweeting\xc4\xa0tweaki" +"ng\xc4\xa0turbines\xc4\xa0truthful\xc4\xa0trusting\xc4\xa0trustees\xc4\xa0trouse" +"rs\xc4\xa0troubled\xc4\xa0tropical\xc4\xa0trophies\xc4\xa0troopers\xc4\xa0trolli" +"ng\xc4\xa0triggers\xc4\xa0tribunal\xc4\xa0trespass\xc4\xa0trending\xc4\xa0trench" +"es\xc4\xa0treating\xc4\xa0treaties\xc4\xa0treasury\xc4\xa0traverse\xc4\xa0travel" +"ed\xc4\xa0trapping\xc4\xa0tranquil\xc4\xa0training\xc4\xa0trainers\xc4\xa0traili" +"ng\xc4\xa0trailers\xc4\xa0traction\xc4\xa0tracking\xc4\xa0toxicity\xc4\xa0townsh" +"ip\xc4\xa0towering\xc4\xa0tourists\xc4\xa0toughest\xc4\xa0touching\xc4\xa0totali" +"ty\xc4\xa0totaling\xc4\xa0tortured\xc4\xa0tomorrow\xc4\xa0tomatoes\xc4\xa0tolera" +"nt\xc4\xa0together\xc4\xa0toddlers\xc4\xa0titanium\xc4\xa0timeless\xc4\xa0thwart" +"ed\xc4\xa0throwing\xc4\xa0throttle\xc4\xa0thriving\xc4\xa0thriller\xc4\xa0thrill" +"ed\xc4\xa0threaded\xc4\xa0thoughts\xc4\xa0thirteen\xc4\xa0thinking\xc4\xa0thinke" +"rs\xc4\xa0theories\xc4\xa0theology\xc4\xa0theaters\xc4\xa0thanking\xc4\xa0textur" +"es\xc4\xa0terrific\xc4\xa0terribly\xc4\xa0terrible\xc4\xa0tensions\xc4\xa0tenden" +"cy\xc4\xa0tempting\xc4\xa0temporal\xc4\xa0tempered\xc4\xa0teamwork\xc4\xa0teache" +"rs\xc4\xa0taxation\xc4\xa0targeted\xc4\xa0tangible\xc4\xa0talented\xc4\xa0takeov" +"er\xc4\xa0takedown\xc4\xa0takeaway\xc4\xa0tailored\xc4\xa0tactical\xc4\xa0tackli" +"ng\xc4\xa0tabletop\xc4\xa0systemic\xc4\xa0synopsis\xc4\xa0syndrome\xc4\xa0synapt" +"ic\xc4\xa0symptoms\xc4\xa0sympathy\xc4\xa0symmetry\xc4\xa0symbolic\xc4\xa0switch" +"es\xc4\xa0switched\xc4\xa0swirling\xc4\xa0swinging\xc4\xa0swimming\xc4\xa0swelli" +"ng\xc4\xa0sweeping\xc4\xa0sweating\xc4\xa0swearing\xc4\xa0swapping\xc4\xa0suspen" +"se\xc4\xa0suspects\xc4\xa0survives\xc4\xa0survived\xc4\xa0survival\xc4\xa0survey" +"ed\xc4\xa0surgical\xc4\xa0surgeons\xc4\xa0surfaces\xc4\xa0surfaced\xc4\xa0suppor" +"ts\xc4\xa0supplies\xc4\xa0supplied\xc4\xa0superflu\xc4\xa0sunshine\xc4\xa0sunlig" +"ht\xc4\xa0summoned\xc4\xa0suitcase\xc4\xa0suitable\xc4\xa0suicides\xc4\xa0suicid" +"al\xc4\xa0suggests\xc4\xa0suffered\xc4\xa0suddenly\xc4\xa0succinct\xc4\xa0succee" +"ds\xc4\xa0suburban\xc4\xa0subtract\xc4\xa0subpoena\xc4\xa0subjects\xc4\xa0subcla" +"ss\xc4\xa0stunning\xc4\xa0stumbled\xc4\xa0stuffing\xc4\xa0studying\xc4\xa0studen" +"ts\xc4\xa0stubborn\xc4\xa0strongly\xc4\xa0stronger\xc4\xa0striving\xc4\xa0stripp" +"ed\xc4\xa0strikers\xc4\xa0strictly\xc4\xa0stricter\xc4\xa0stricken\xc4\xa0stress" +"es\xc4\xa0stressed\xc4\xa0streamed\xc4\xa0strategy\xc4\xa0strapped\xc4\xa0strand" +"ed\xc4\xa0strained\xc4\xa0stopping\xc4\xa0stocking\xc4\xa0stitches\xc4\xa0stirri" +"ng\xc4\xa0stimulus\xc4\xa0sticking\xc4\xa0stickers\xc4\xa0stewards\xc4\xa0steroi" +"ds\xc4\xa0sterling\xc4\xa0stepping\xc4\xa0stemming\xc4\xa0steering\xc4\xa0steali" +"ng\xc4\xa0steadily\xc4\xa0statutes\xc4\xa0stations\xc4\xa0starving\xc4\xa0startu" +"ps\xc4\xa0startled\xc4\xa0starting\xc4\xa0starters\xc4\xa0starship\xc4\xa0starri" +"ng\xc4\xa0standout\xc4\xa0standoff\xc4\xa0stalking\xc4\xa0stagnant\xc4\xa0staffi" +"ng\xc4\xa0staffers\xc4\xa0stadiums\xc4\xa0stacking\xc4\xa0stabbing\xc4\xa0squirr" +"el\xc4\xa0squeezed\xc4\xa0squarely\xc4\xa0squadron\xc4\xa0spurious\xc4\xa0sprayi" +"ng\xc4\xa0spotting\xc4\xa0sporting\xc4\xa0sporadic\xc4\xa0spoilers\xc4\xa0splend" +"id\xc4\xa0spitting\xc4\xa0spirited\xc4\xa0spinning\xc4\xa0spilling\xc4\xa0spendi" +"ng\xc4\xa0spelling\xc4\xa0speeding\xc4\xa0speeches\xc4\xa0spectrum\xc4\xa0spectr" +"al\xc4\xa0specials\xc4\xa0speaking\xc4\xa0speakers\xc4\xa0spawning\xc4\xa0sparki" +"ng\xc4\xa0spanning\xc4\xa0spacious\xc4\xa0southern\xc4\xa0sourcing\xc4\xa0soundi" +"ng\xc4\xa0sorcerer\xc4\xa0soothing\xc4\xa0somewhat\xc4\xa0somebody\xc4\xa0solitu" +"de\xc4\xa0solitary\xc4\xa0soldiers\xc4\xa0software\xc4\xa0softened\xc4\xa0societ" +"al\xc4\xa0socially\xc4\xa0snowball\xc4\xa0snippets\xc4\xa0sneaking\xc4\xa0sneake" +"rs\xc4\xa0snatched\xc4\xa0snapping\xc4\xa0smuggled\xc4\xa0smoothly\xc4\xa0smooth" +"er\xc4\xa0smelling\xc4\xa0smashing\xc4\xa0smartest\xc4\xa0smallest\xc4\xa0sluggi" +"sh\xc4\xa0slowdown\xc4\xa0slipping\xc4\xa0slippery\xc4\xa0slightly\xc4\xa0sleepi" +"ng\xc4\xa0slashing\xc4\xa0slapping\xc4\xa0slamming\xc4\xa0skipping\xc4\xa0sketch" +"es\xc4\xa0skeptics\xc4\xa0skeletal\xc4\xa0sizeable\xc4\xa0situated\xc4\xa0sinist" +"er\xc4\xa0singular\xc4\xa0simplify\xc4\xa0simplest\xc4\xa0silicone\xc4\xa0silent" +"ly\xc4\xa0silenced\xc4\xa0signings\xc4\xa0signaled\xc4\xa0sideways\xc4\xa0sickne" +"ss\xc4\xa0siblings\xc4\xa0shutting\xc4\xa0shutdown\xc4\xa0shrugged\xc4\xa0shroud" +"ed\xc4\xa0shredded\xc4\xa0showdown\xc4\xa0shouting\xc4\xa0shotguns\xc4\xa0shorte" +"st\xc4\xa0shopping\xc4\xa0shoppers\xc4\xa0shootout\xc4\xa0shooters\xc4\xa0shippi" +"ng\xc4\xa0shifting\xc4\xa0shielded\xc4\xa0shepherd\xc4\xa0shelters\xc4\xa0shelli" +"ng\xc4\xa0shedding\xc4\xa0shameful\xc4\xa0sexually\xc4\xa0severity\xc4\xa0severe" +"ly\xc4\xa0settling\xc4\xa0settlers\xc4\xa0settings\xc4\xa0setbacks\xc4\xa0sessio" +"ns\xc4\xa0servings\xc4\xa0services\xc4\xa0servants\xc4\xa0sergeant\xc4\xa0sentie" +"nt\xc4\xa0sensible\xc4\xa0senators\xc4\xa0seminars\xc4\xa0semester\xc4\xa0select" +"or\xc4\xa0selected\xc4\xa0seizures\xc4\xa0segments\xc4\xa0sediment\xc4\xa0securi" +"ty\xc4\xa0securing\xc4\xa0securely\xc4\xa0sections\xc4\xa0secretly\xc4\xa0second" +"ly\xc4\xa0seasoned\xc4\xa0seasonal\xc4\xa0searches\xc4\xa0searched\xc4\xa0scruti" +"ny\xc4\xa0scripted\xc4\xa0screened\xc4\xa0screamed\xc4\xa0scrapped\xc4\xa0scrapi" +"ng\xc4\xa0scouting\xc4\xa0scissors\xc4\xa0sciences\xc4\xa0scathing\xc4\xa0scarci" +"ty\xc4\xa0scarcely\xc4\xa0scanning\xc4\xa0scanners\xc4\xa0scandals\xc4\xa0scalab" +"le\xc4\xa0sampling\xc4\xa0salesman\xc4\xa0salaries\xc4\xa0saddened\xc4\xa0sabota" +"ge\xc4\xa0ruthless\xc4\xa0routines\xc4\xa0rounding\xc4\xa0rotation\xc4\xa0rotati" +"ng\xc4\xa0roommate\xc4\xa0romantic\xc4\xa0robotics\xc4\xa0roadside\xc4\xa0rigoro" +"us\xc4\xa0richness\xc4\xa0rewarded\xc4\xa0revolves\xc4\xa0revolver\xc4\xa0review" +"ed\xc4\xa0reverted\xc4\xa0reversed\xc4\xa0reversal\xc4\xa0reverber\xc4\xa0revenu" +"es\xc4\xa0revealed\xc4\xa0revamped\xc4\xa0reusable\xc4\xa0reunited\xc4\xa0return" +"ed\xc4\xa0retiring\xc4\xa0retirees\xc4\xa0retarded\xc4\xa0retained\xc4\xa0result" +"ed\xc4\xa0restores\xc4\xa0restored\xc4\xa0restless\xc4\xa0responds\xc4\xa0respec" +"ts\xc4\xa0resorted\xc4\xa0resonate\xc4\xa0resolves\xc4\xa0resolved\xc4\xa0resist" +"or\xc4\xa0resisted\xc4\xa0resigned\xc4\xa0residues\xc4\xa0residual\xc4\xa0residi" +"ng\xc4\xa0reserves\xc4\xa0reserved\xc4\xa0rescuing\xc4\xa0requires\xc4\xa0requir" +"ed\xc4\xa0requests\xc4\xa0reptiles\xc4\xa0replaces\xc4\xa0replaced\xc4\xa0repeal" +"ed\xc4\xa0repaired\xc4\xa0reopened\xc4\xa0renowned\xc4\xa0renegoti\xc4\xa0render" +"ed\xc4\xa0removing\xc4\xa0remotely\xc4\xa0remnants\xc4\xa0reminded\xc4\xa0remedi" +"es\xc4\xa0remarked\xc4\xa0remained\xc4\xa0reliever\xc4\xa0relieved\xc4\xa0relian" +"ce\xc4\xa0reliably\xc4\xa0reliable\xc4\xa0relevant\xc4\xa0releases\xc4\xa0releas" +"ed\xc4\xa0relaxing\xc4\xa0relating\xc4\xa0rejected\xc4\xa0reinvest\xc4\xa0reinve" +"nt\xc4\xa0reincarn\xc4\xa0reigning\xc4\xa0regulars\xc4\xa0registry\xc4\xa0region" +"al\xc4\xa0regiment\xc4\xa0regarded\xc4\xa0regained\xc4\xa0refusing\xc4\xa0refuge" +"es\xc4\xa0reformed\xc4\xa0reflects\xc4\xa0refining\xc4\xa0refinery\xc4\xa0referr" +"ed\xc4\xa0referees\xc4\xa0reducing\xc4\xa0redeemed\xc4\xa0redacted\xc4\xa0recycl" +"ed\xc4\xa0recruits\xc4\xa0recreate\xc4\xa0recovery\xc4\xa0recovers\xc4\xa0recour" +"se\xc4\xa0recounts\xc4\xa0recorder\xc4\xa0recorded\xc4\xa0reckoned\xc4\xa0reckle" +"ss\xc4\xa0recharge\xc4\xa0recently\xc4\xa0receives\xc4\xa0received\xc4\xa0receip" +"ts\xc4\xa0recalled\xc4\xa0rebounds\xc4\xa0reasoned\xc4\xa0realizes\xc4\xa0realiz" +"ed\xc4\xa0realised\xc4\xa0readings\xc4\xa0readable\xc4\xa0reactors\xc4\xa0reacti" +"ve\xc4\xa0reacting\xc4\xa0reaching\xc4\xa0ratified\xc4\xa0rankings\xc4\xa0random" +"ly\xc4\xa0rallying\xc4\xa0rainfall\xc4\xa0railways\xc4\xa0railroad\xc4\xa0radica" +"ls\xc4\xa0radiator\xc4\xa0racially\xc4\xa0quitting\xc4\xa0quickest\xc4\xa0quarte" +"rs\xc4\xa0quantity\xc4\xa0quantify\xc4\xa0puzzling\xc4\xa0pursuits\xc4\xa0pursui" +"ng\xc4\xa0pursuant\xc4\xa0purposes\xc4\xa0purified\xc4\xa0punitive\xc4\xa0punish" +"ed\xc4\xa0punching\xc4\xa0publicly\xc4\xa0provoked\xc4\xa0provides\xc4\xa0provid" +"ed\xc4\xa0protests\xc4\xa0proteins\xc4\xa0protects\xc4\xa0prostate\xc4\xa0propos" +"es\xc4\xa0proposed\xc4\xa0prophets\xc4\xa0prophecy\xc4\xa0property\xc4\xa0proper" +"ly\xc4\xa0pronouns\xc4\xa0promptly\xc4\xa0prompted\xc4\xa0promotes\xc4\xa0promot" +"ed\xc4\xa0promises\xc4\xa0promised\xc4\xa0prolific\xc4\xa0projects\xc4\xa0progra" +"ms\xc4\xa0profiles\xc4\xa0products\xc4\xa0produces\xc4\xa0produced\xc4\xa0procee" +"ds\xc4\xa0problems\xc4\xa0probably\xc4\xa0probable\xc4\xa0pristine\xc4\xa0priori" +"ty\xc4\xa0printing\xc4\xa0printers\xc4\xa0princess\xc4\xa0primates\xc4\xa0previe" +"ws\xc4\xa0prevents\xc4\xa0presumed\xc4\xa0prestige\xc4\xa0pressing\xc4\xa0presid" +"ed\xc4\xa0presents\xc4\xa0presence\xc4\xa0prepares\xc4\xa0prepared\xc4\xa0prenat" +"al\xc4\xa0premiums\xc4\xa0premises\xc4\xa0pregnant\xc4\xa0predicts\xc4\xa0preclu" +"de\xc4\xa0precious\xc4\xa0preceded\xc4\xa0preacher\xc4\xa0preached\xc4\xa0praisi" +"ng\xc4\xa0practise\xc4\xa0powering\xc4\xa0powdered\xc4\xa0pounding\xc4\xa0potato" +"es\xc4\xa0postings\xc4\xa0possibly\xc4\xa0possible\xc4\xa0portrays\xc4\xa0portio" +"ns\xc4\xa0portable\xc4\xa0populous\xc4\xa0populist\xc4\xa0populism\xc4\xa0popula" +"ce\xc4\xa0polygamy\xc4\xa0polluted\xc4\xa0politics\xc4\xa0politely\xc4\xa0polish" +"ed\xc4\xa0policing\xc4\xa0policies\xc4\xa0poisoned\xc4\xa0pointing\xc4\xa0pointe" +"rs\xc4\xa0poignant\xc4\xa0podcasts\xc4\xa0poaching\xc4\xa0plumbing\xc4\xa0plotti" +"ng\xc4\xa0plethora\xc4\xa0pledging\xc4\xa0pleasing\xc4\xa0pleading\xc4\xa0playof" +"fs\xc4\xa0playlist\xc4\xa0playbook\xc4\xa0playback\xc4\xa0playable\xc4\xa0platin" +"um\xc4\xa0plastics\xc4\xa0planting\xc4\xa0planning\xc4\xa0planners\xc4\xa0pitfal" +"ls\xc4\xa0pitching\xc4\xa0pitchers\xc4\xa0pioneers\xc4\xa0pinpoint\xc4\xa0pinnac" +"le\xc4\xa0pilgrims\xc4\xa0piercing\xc4\xa0pictures\xc4\xa0pictured\xc4\xa0physiq" +"ue\xc4\xa0phylogen\xc4\xa0pharmacy\xc4\xa0perverse\xc4\xa0persists\xc4\xa0persev" +"er\xc4\xa0perished\xc4\xa0perilous\xc4\xa0performs\xc4\xa0pensions\xc4\xa0pencha" +"nt\xc4\xa0pedigree\xc4\xa0peculiar\xc4\xa0peasants\xc4\xa0payments\xc4\xa0payche" +"ck\xc4\xa0pavement\xc4\xa0patterns\xc4\xa0patients\xc4\xa0patience\xc4\xa0pathwa" +"ys\xc4\xa0pathetic\xc4\xa0paternal\xc4\xa0patented\xc4\xa0pastoral\xc4\xa0passio" +"ns\xc4\xa0passages\xc4\xa0partying\xc4\xa0partName\xc4\xa0parental\xc4\xa0parano" +"id\xc4\xa0paranoia\xc4\xa0paradise\xc4\xa0paradigm\xc4\xa0panicked\xc4\xa0pancre" +"at\xc4\xa0pancakes\xc4\xa0pamphlet\xc4\xa0palpable\xc4\xa0packages\xc4\xa0packag" +"ed\xc4\xa0overview\xc4\xa0overtime\xc4\xa0overtake\xc4\xa0oversees\xc4\xa0overse" +"en\xc4\xa0overseas\xc4\xa0override\xc4\xa0overhead\xc4\xa0overhaul\xc4\xa0overco" +"me\xc4\xa0overcame\xc4\xa0outweigh\xc4\xa0outright\xc4\xa0outreach\xc4\xa0outrag" +"ed\xc4\xa0outlines\xc4\xa0outlined\xc4\xa0outlawed\xc4\xa0outgoing\xc4\xa0outdoo" +"rs\xc4\xa0outdated\xc4\xa0outcomes\xc4\xa0outburst\xc4\xa0ornament\xc4\xa0orient" +"ed\xc4\xa0ordinary\xc4\xa0ordering\xc4\xa0ordained\xc4\xa0orbiting\xc4\xa0optimi" +"sm\xc4\xa0opposite\xc4\xa0opposing\xc4\xa0opinions\xc4\xa0operates\xc4\xa0operat" +"ed\xc4\xa0openness\xc4\xa0openings\xc4\xa0omission\xc4\xa0offshore\xc4\xa0office" +"rs\xc4\xa0offenses\xc4\xa0offended\xc4\xa0offences\xc4\xa0occurred\xc4\xa0occupi" +"es\xc4\xa0occupied\xc4\xa0obtained\xc4\xa0obsolete\xc4\xa0obsessed\xc4\xa0observ" +"es\xc4\xa0observed\xc4\xa0obscured\xc4\xa0objected\xc4\xa0obedient\xc4\xa0nutshe" +"ll\xc4\xa0numerous\xc4\xa0numbered\xc4\xa0nuisance\xc4\xa0nowadays\xc4\xa0noveli" +"st\xc4\xa0notified\xc4\xa0noticing\xc4\xa0notation\xc4\xa0northern\xc4\xa0normal" +"ly\xc4\xa0nonsense\xc4\xa0nominees\xc4\xa0nobility\xc4\xa0nitrogen\xc4\xa0nicoti" +"ne\xc4\xa0newfound\xc4\xa0neuronal\xc4\xa0networks\xc4\xa0needless\xc4\xa0neckla" +"ce\xc4\xa0navigate\xc4\xa0narrowly\xc4\xa0narrower\xc4\xa0narrowed\xc4\xa0narrat" +"or\xc4\xa0narrated\xc4\xa0namesake\xc4\xa0mythical\xc4\xa0mystical\xc4\xa0mutual" +"ly\xc4\xa0muttered\xc4\xa0mustache\xc4\xa0muscular\xc4\xa0murdered\xc4\xa0multip" +"le\xc4\xa0mourning\xc4\xa0mounting\xc4\xa0morphine\xc4\xa0mornings\xc4\xa0moreov" +"er\xc4\xa0morality\xc4\xa0monsters\xc4\xa0monopoly\xc4\xa0monitors\xc4\xa0moneta" +"ry\xc4\xa0monarchy\xc4\xa0momentum\xc4\xa0moisture\xc4\xa0modified\xc4\xa0modeli" +"ng\xc4\xa0mobility\xc4\xa0mitigate\xc4\xa0mistrust\xc4\xa0mistress\xc4\xa0mistak" +"es\xc4\xa0missions\xc4\xa0missiles\xc4\xa0misogyny\xc4\xa0mismatch\xc4\xa0mischi" +"ef\xc4\xa0mirrored\xc4\xa0miracles\xc4\xa0minority\xc4\xa0ministry\xc4\xa0minera" +"ls\xc4\xa0mindless\xc4\xa0millions\xc4\xa0militias\xc4\xa0military\xc4\xa0migrat" +"ed\xc4\xa0migrants\xc4\xa0migraine\xc4\xa0midrange\xc4\xa0midnight\xc4\xa0microb" +"es\xc4\xa0metallic\xc4\xa0metadata\xc4\xa0messages\xc4\xa0mentions\xc4\xa0mental" +"ly\xc4\xa0menacing\xc4\xa0memories\xc4\xa0memorial\xc4\xa0meltdown\xc4\xa0melodi" +"es\xc4\xa0meetings\xc4\xa0mediocre\xc4\xa0medieval\xc4\xa0mediated\xc4\xa0meddli" +"ng\xc4\xa0measures\xc4\xa0measured\xc4\xa0meantime\xc4\xa0meanings\xc4\xa0maximi" +"ze\xc4\xa0maturity\xc4\xa0mattress\xc4\xa0mattered\xc4\xa0maternal\xc4\xa0matchu" +"ps\xc4\xa0matching\xc4\xa0mastered\xc4\xa0marrying\xc4\xa0markings\xc4\xa0market" +"ed\xc4\xa0markedly\xc4\xa0maritime\xc4\xa0marching\xc4\xa0marathon\xc4\xa0manual" +"ly\xc4\xa0manpower\xc4\xa0manifold\xc4\xa0mandates\xc4\xa0mandated\xc4\xa0managi" +"ng\xc4\xa0managers\xc4\xa0majority\xc4\xa0majestic\xc4\xa0mainline\xc4\xa0mainla" +"nd\xc4\xa0magnetic\xc4\xa0magician\xc4\xa0machines\xc4\xa0lowering\xc4\xa0longti" +"me\xc4\xa0lockdown\xc4\xa0locating\xc4\xa0locality\xc4\xa0lobbying\xc4\xa0litter" +"ed\xc4\xa0literary\xc4\xa0literacy\xc4\xa0listings\xc4\xa0listened\xc4\xa0lipsti" +"ck\xc4\xa0limiting\xc4\xa0likewise\xc4\xa0likeness\xc4\xa0lighting\xc4\xa0lifeti" +"me\xc4\xa0lifespan\xc4\xa0lifelong\xc4\xa0lifeless\xc4\xa0licenses\xc4\xa0licens" +"ee\xc4\xa0licensed\xc4\xa0licences\xc4\xa0liberals\xc4\xa0leverage\xc4\xa0leveli" +"ng\xc4\xa0leukemia\xc4\xa0lesbians\xc4\xa0legality\xc4\xa0leftover\xc4\xa0leftis" +"ts\xc4\xa0lectures\xc4\xa0lecturer\xc4\xa0learning\xc4\xa0learners\xc4\xa0leafle" +"ts\xc4\xa0lawsuits\xc4\xa0lawfully\xc4\xa0laureate\xc4\xa0launches\xc4\xa0launch" +"ed\xc4\xa0laughter\xc4\xa0laughing\xc4\xa0latitude\xc4\xa0landfill\xc4\xa0landfa" +"ll\xc4\xa0lamented\xc4\xa0laborers\xc4\xa0labelled\xc4\xa0labeling\xc4\xa0knocko" +"ut\xc4\xa0knocking\xc4\xa0knitting\xc4\xa0kneeling\xc4\xa0kitchens\xc4\xa0kingdo" +"ms\xc4\xa0kindness\xc4\xa0killings\xc4\xa0keywords\xc4\xa0justices\xc4\xa0juncti" +"on\xc4\xa0juggling\xc4\xa0judicial\xc4\xa0joystick\xc4\xa0journeys\xc4\xa0journa" +"ls\xc4\xa0jeopardy\xc4\xa0jealousy\xc4\xa0iterator\xc4\xa0issuance\xc4\xa0isolat" +"ed\xc4\xa0involves\xc4\xa0involved\xc4\xa0invoking\xc4\xa0inviting\xc4\xa0invest" +"ed\xc4\xa0inverted\xc4\xa0invented\xc4\xa0invasive\xc4\xa0invasion\xc4\xa0invadi" +"ng\xc4\xa0invaders\xc4\xa0intruder\xc4\xa0intraven\xc4\xa0intimacy\xc4\xa0interp" +"ol\xc4\xa0internet\xc4\xa0interior\xc4\xa0intended\xc4\xa0integral\xc4\xa0intege" +"rs\xc4\xa0insurers\xc4\xa0insulted\xc4\xa0installs\xc4\xa0inspires\xc4\xa0inspir" +"ed\xc4\xa0insomnia\xc4\xa0insisted\xc4\xa0insights\xc4\xa0insiders\xc4\xa0insert" +"ed\xc4\xa0insecure\xc4\xa0insanity\xc4\xa0insanely\xc4\xa0inquired\xc4\xa0innova" +"te\xc4\xa0innocent\xc4\xa0injuring\xc4\xa0injuries\xc4\xa0injected\xc4\xa0initia" +"ls\xc4\xa0inhibits\xc4\xa0ingested\xc4\xa0infusion\xc4\xa0infrared\xc4\xa0inform" +"ed\xc4\xa0informal\xc4\xa0inflated\xc4\xa0infinity\xc4\xa0inferred\xc4\xa0inferi" +"or\xc4\xa0infected\xc4\xa0infantry\xc4\xa0infamous\xc4\xa0industry\xc4\xa0induci" +"ng\xc4\xa0indicted\xc4\xa0indecent\xc4\xa0indebted\xc4\xa0incurred\xc4\xa0incomi" +"ng\xc4\xa0includes\xc4\xa0included\xc4\xa0inclined\xc4\xa0inciting\xc4\xa0inacti" +"ve\xc4\xa0inaction\xc4\xa0impunity\xc4\xa0impulses\xc4\xa0improves\xc4\xa0improv" +"ed\xc4\xa0imposing\xc4\xa0imported\xc4\xa0implying\xc4\xa0implants\xc4\xa0impers" +"on\xc4\xa0impaired\xc4\xa0impacted\xc4\xa0immunity\xc4\xa0imminent\xc4\xa0immers" +"ed\xc4\xa0immature\xc4\xa0imagined\xc4\xa0ignoring\xc4\xa0ignorant\xc4\xa0igniti" +"on\xc4\xa0ideology\xc4\xa0identity\xc4\xa0hysteria\xc4\xa0hypothal\xc4\xa0hydrog" +"en\xc4\xa0husbands\xc4\xa0hundreds\xc4\xa0humorous\xc4\xa0humility\xc4\xa0humidi" +"ty\xc4\xa0humanoid\xc4\xa0humanity\xc4\xa0hovering\xc4\xa0hostages\xc4\xa0horrif" +"ic\xc4\xa0horribly\xc4\xa0horrible\xc4\xa0hormones\xc4\xa0hormonal\xc4\xa0hopele" +"ss\xc4\xa0honoured\xc4\xa0honoring\xc4\xa0honorary\xc4\xa0honestly\xc4\xa0homewo" +"rk\xc4\xa0hometown\xc4\xa0homepage\xc4\xa0homemade\xc4\xa0homeland\xc4\xa0homebr" +"ew\xc4\xa0holistic\xc4\xa0holidays\xc4\xa0holdings\xc4\xa0hitherto\xc4\xa0hinder" +"ed\xc4\xa0hijacked\xc4\xa0highways\xc4\xa0hesitant\xc4\xa0heritage\xc4\xa0helple" +"ss\xc4\xa0hegemony\xc4\xa0hectares\xc4\xa0heaviest\xc4\xa0heavenly\xc4\xa0hearin" +"gs\xc4\xa0headsets\xc4\xa0haunting\xc4\xa0harmonic\xc4\xa0harmless\xc4\xa0hardwa" +"re\xc4\xa0hardness\xc4\xa0hardened\xc4\xa0hardcore\xc4\xa0harassed\xc4\xa0happie" +"st\xc4\xa0happened\xc4\xa0handsome\xc4\xa0handmade\xc4\xa0handling\xc4\xa0handle" +"rs\xc4\xa0handheld\xc4\xa0handguns\xc4\xa0hampered\xc4\xa0hammered\xc4\xa0hallma" +"rk\xc4\xa0halftime\xc4\xa0habitual\xc4\xa0habitats\xc4\xa0gunshots\xc4\xa0guidan" +"ce\xc4\xa0guessing\xc4\xa0guarding\xc4\xa0gruesome\xc4\xa0grouping\xc4\xa0ground" +"ed\xc4\xa0grooming\xc4\xa0gripping\xc4\xa0grinning\xc4\xa0grinding\xc4\xa0grievi" +"ng\xc4\xa0grenades\xc4\xa0greeting\xc4\xa0greatest\xc4\xa0grateful\xc4\xa0graspi" +"ng\xc4\xa0graphics\xc4\xa0graphene\xc4\xa0granting\xc4\xa0grandson\xc4\xa0graffi" +"ti\xc4\xa0gradient\xc4\xa0gracious\xc4\xa0graceful\xc4\xa0grabbing\xc4\xa0govern" +"ed\xc4\xa0gorgeous\xc4\xa0goodwill\xc4\xa0goodness\xc4\xa0gmaxwell\xc4\xa0glorio" +"us\xc4\xa0globally\xc4\xa0glitches\xc4\xa0glaciers\xc4\xa0gigantic\xc4\xa0gestur" +"es\xc4\xa0geometry\xc4\xa0genocide\xc4\xa0genitals\xc4\xa0genetics\xc4\xa0genera" +"ls\xc4\xa0gathered\xc4\xa0gasoline\xc4\xa0garrison\xc4\xa0garnered\xc4\xa0garmen" +"ts\xc4\xa0gameplay\xc4\xa0gambling\xc4\xa0galaxies\xc4\xa0galactic\xc4\xa0""full" +"back\xc4\xa0""fugitive\xc4\xa0""fruition\xc4\xa0""fruitful\xc4\xa0""fructose\xc4" +"\xa0""frontman\xc4\xa0""frontier\xc4\xa0""friendly\xc4\xa0""friction\xc4\xa0""fr" +"eshmen\xc4\xa0""freshman\xc4\xa0""freezing\xc4\xa0""freedoms\xc4\xa0""freaking\xc4" +"\xa0""fracking\xc4\xa0""fourteen\xc4\xa0""fountain\xc4\xa0""founding\xc4\xa0""fo" +"unders\xc4\xa0""forwards\xc4\xa0""fortunes\xc4\xa0""fortress\xc4\xa0""formulas\xc4" +"\xa0""formerly\xc4\xa0""formally\xc4\xa0""forestry\xc4\xa0""foreskin\xc4\xa0""fo" +"rensic\xc4\xa0""foremost\xc4\xa0""forehead\xc4\xa0""forcibly\xc4\xa0""footwear\xc4" +"\xa0""footnote\xc4\xa0""foothold\xc4\xa0""followed\xc4\xa0""folklore\xc4\xa0""fo" +"cusing\xc4\xa0""fluoride\xc4\xa0""flooding\xc4\xa0""floating\xc4\xa0""flipping\xc4" +"\xa0""flexible\xc4\xa0""fleeting\xc4\xa0""flawless\xc4\xa0""flavours\xc4\xa0""fl" +"avored\xc4\xa0""flashing\xc4\xa0""flagship\xc4\xa0""fixtures\xc4\xa0""fixation\xc4" +"\xa0""firmware\xc4\xa0""firewall\xc4\xa0""fireball\xc4\xa0""firearms\xc4\xa0""fi" +"nishes\xc4\xa0""finished\xc4\xa0""findings\xc4\xa0""finances\xc4\xa0""financed\xc4" +"\xa0""filtered\xc4\xa0""filename\xc4\xa0""filament\xc4\xa0""figuring\xc4\xa0""fi" +"ghting\xc4\xa0""fighters\xc4\xa0""fiercely\xc4\xa0""fielding\xc4\xa0""fidelity\xc4" +"\xa0""fentanyl\xc4\xa0""feminism\xc4\xa0""feminine\xc4\xa0""feelings\xc4\xa0""fe" +"edback\xc4\xa0""features\xc4\xa0""featured\xc4\xa0""feathers\xc4\xa0""feasible\xc4" +"\xa0""fearsome\xc4\xa0""fearless\xc4\xa0""favoured\xc4\xa0""favoring\xc4\xa0""fa" +"stball\xc4\xa0""fascists\xc4\xa0""farmland\xc4\xa0""farewell\xc4\xa0""famously\xc4" +"\xa0""families\xc4\xa0""familial\xc4\xa0""fairness\xc4\xa0""failures\xc4\xa0""fa" +"ilings\xc4\xa0""factions\xc4\xa0""facility\xc4\xa0""facebook\xc4\xa0""fabulous\xc4" +"\xa0""eyebrows\xc4\xa0""extremes\xc4\xa0""extrater\xc4\xa0""extracts\xc4\xa0""ex" +"terior\xc4\xa0""extended\xc4\xa0""exposing\xc4\xa0""exported\xc4\xa0""explores\xc4" +"\xa0""explored\xc4\xa0""exploits\xc4\xa0""explodes\xc4\xa0""exploded\xc4\xa0""ex" +"plains\xc4\xa0""expenses\xc4\xa0""expended\xc4\xa0""expelled\xc4\xa0""expected\xc4" +"\xa0""expanded\xc4\xa0""existing\xc4\xa0""exhibits\xc4\xa0""exempted\xc4\xa0""ex" +"ecutes\xc4\xa0""executed\xc4\xa0""excludes\xc4\xa0""excluded\xc4\xa0""exciting\xc4" +"\xa0""excerpts\xc4\xa0""exceeded\xc4\xa0""examples\xc4\xa0""examines\xc4\xa0""ex" +"aminer\xc4\xa0""examined\xc4\xa0""evolving\xc4\xa0""eviction\xc4\xa0""everyone\xc4" +"\xa0""everyday\xc4\xa0""evenings\xc4\xa0""eurozone\xc4\xa0""eternity\xc4\xa0""es" +"trogen\xc4\xa0""esteemed\xc4\xa0""espresso\xc4\xa0""esoteric\xc4\xa0""escorted\xc4" +"\xa0""escaping\xc4\xa0""eruption\xc4\xa0""erection\xc4\xa0""equipped\xc4\xa0""eq" +"uality\xc4\xa0""episodes\xc4\xa0""epilepsy\xc4\xa0""epidemic\xc4\xa0""envelope\xc4" +"\xa0""entrants\xc4\xa0""entitled\xc4\xa0""entities\xc4\xa0""entirety\xc4\xa0""en" +"tirely\xc4\xa0""enticing\xc4\xa0""entering\xc4\xa0""ensuring\xc4\xa0""enslaved\xc4" +"\xa0""ensemble\xc4\xa0""enrolled\xc4\xa0""enriched\xc4\xa0""enlisted\xc4\xa0""en" +"larged\xc4\xa0""enjoying\xc4\xa0""enhances\xc4\xa0""enhanced\xc4\xa0""engulfed\xc4" +"\xa0""engraved\xc4\xa0""engaging\xc4\xa0""enforced\xc4\xa0""energies\xc4\xa0""en" +"during\xc4\xa0""endpoint\xc4\xa0""endorsed\xc4\xa0""encoding\xc4\xa0""enclosed\xc4" +"\xa0""enabling\xc4\xa0""emulator\xc4\xa0""employed\xc4\xa0""emphasis\xc4\xa0""em" +"otions\xc4\xa0""emitting\xc4\xa0""emerging\xc4\xa0""embraces\xc4\xa0""embraced\xc4" +"\xa0""embodies\xc4\xa0""embodied\xc4\xa0""embedded\xc4\xa0""embarked\xc4\xa0""el" +"igible\xc4\xa0""elevator\xc4\xa0""elevated\xc4\xa0""elements\xc4\xa0""elegance\xc4" +"\xa0""electors\xc4\xa0""electing\xc4\xa0""efficacy\xc4\xa0""effected\xc4\xa0""ed" +"ucated\xc4\xa0""editions\xc4\xa0""ecstatic\xc4\xa0""eclectic\xc4\xa0""earnings\xc4" +"\xa0""earliest\xc4\xa0""dynamics\xc4\xa0""duration\xc4\xa0""dungeons\xc4\xa0""dr" +"owning\xc4\xa0""dropping\xc4\xa0""driveway\xc4\xa0""dripping\xc4\xa0""drinking\xc4" +"\xa0""drinkers\xc4\xa0""drilling\xc4\xa0""drifting\xc4\xa0""dressing\xc4\xa0""dr" +"eaming\xc4\xa0""dreadful\xc4\xa0""drawings\xc4\xa0""draining\xc4\xa0""drainage\xc4" +"\xa0""dragging\xc4\xa0""drafting\xc4\xa0""downturn\xc4\xa0""downtown\xc4\xa0""do" +"wntime\xc4\xa0""downside\xc4\xa0""downhill\xc4\xa0""downfall\xc4\xa0""doubtful\xc4" +"\xa0""doubling\xc4\xa0""dopamine\xc4\xa0""doorstep\xc4\xa0""donating\xc4\xa0""do" +"minion\xc4\xa0""dominant\xc4\xa0""dolphins\xc4\xa0""doctoral\xc4\xa0""divorced\xc4" +"\xa0""divisive\xc4\xa0""dividing\xc4\xa0""diverted\xc4\xa0""distrust\xc4\xa0""di" +"sputes\xc4\xa0""disputed\xc4\xa0""disposed\xc4\xa0""disposal\xc4\xa0""displays\xc4" +"\xa0""disliked\xc4\xa0""disinteg\xc4\xa0""disingen\xc4\xa0""disgrace\xc4\xa0""di" +"seases\xc4\xa0""discrete\xc4\xa0""discreet\xc4\xa0""disabled\xc4\xa0""directly\xc4" +"\xa0""directed\xc4\xa0""differed\xc4\xa0""dictates\xc4\xa0""dictated\xc4\xa0""di" +"arrhea\xc4\xa0""diamonds\xc4\xa0""diameter\xc4\xa0""dialogue\xc4\xa0""diagrams\xc4" +"\xa0""diagonal\xc4\xa0""diabetic\xc4\xa0""diabetes\xc4\xa0""devotion\xc4\xa0""de" +"velops\xc4\xa0""detected\xc4\xa0""detained\xc4\xa0""detailed\xc4\xa0""detached\xc4" +"\xa0""destroys\xc4\xa0""destined\xc4\xa0""destabil\xc4\xa0""desserts\xc4\xa0""de" +"spised\xc4\xa0""desolate\xc4\xa0""designed\xc4\xa0""deserves\xc4\xa0""deserved\xc4" +"\xa0""deserted\xc4\xa0""derailed\xc4\xa0""deputies\xc4\xa0""deprived\xc4\xa0""de" +"posits\xc4\xa0""deported\xc4\xa0""deployed\xc4\xa0""depleted\xc4\xa0""depicted\xc4" +"\xa0""depended\xc4\xa0""departed\xc4\xa0""dementia\xc4\xa0""demeanor\xc4\xa0""de" +"manded\xc4\xa0""delivery\xc4\xa0""delivers\xc4\xa0""delicate\xc4\xa0""deletion\xc4" +"\xa0""deleting\xc4\xa0""delaying\xc4\xa0""degraded\xc4\xa0""defining\xc4\xa0""de" +"ficits\xc4\xa0""defiance\xc4\xa0""deferred\xc4\xa0""defenses\xc4\xa0""defended\xc4" +"\xa0""defences\xc4\xa0""defeated\xc4\xa0""defaults\xc4\xa0""deducted\xc4\xa0""de" +"coding\xc4\xa0""declines\xc4\xa0""declined\xc4\xa0""declares\xc4\xa0""declared\xc4" +"\xa0""decipher\xc4\xa0""deciding\xc4\xa0""deceived\xc4\xa0""deceased\xc4\xa0""de" +"caying\xc4\xa0""debunked\xc4\xa0""debugger\xc4\xa0""debating\xc4\xa0""dealings\xc4" +"\xa0""dazzling\xc4\xa0""daylight\xc4\xa0""daunting\xc4\xa0""datasets\xc4\xa0""da" +"rkness\xc4\xa0""darkened\xc4\xa0""dangling\xc4\xa0""damaging\xc4\xa0""cynicism\xc4" +"\xa0""cyclists\xc4\xa0""curtains\xc4\xa0""currents\xc4\xa0""currency\xc4\xa0""cu" +"ltures\xc4\xa0""cultured\xc4\xa0""culinary\xc4\xa0""crystals\xc4\xa0""crystall\xc4" +"\xa0""crushing\xc4\xa0""cruising\xc4\xa0""crucifix\xc4\xa0""criteria\xc4\xa0""cr" +"ippled\xc4\xa0""creeping\xc4\xa0""credited\xc4\xa0""credible\xc4\xa0""creators\xc4" +"\xa0""creating\xc4\xa0""creatine\xc4\xa0""crawling\xc4\xa0""crashing\xc4\xa0""cr" +"afting\xc4\xa0""cracking\xc4\xa0""cowardly\xc4\xa0""covering\xc4\xa0""coverage\xc4" +"\xa0""covenant\xc4\xa0""courtesy\xc4\xa0""coupling\xc4\xa0""counting\xc4\xa0""co" +"unties\xc4\xa0""counters\xc4\xa0""councils\xc4\xa0""coughing\xc4\xa0""costumes\xc4" +"\xa0""cortisol\xc4\xa0""cortical\xc4\xa0""corrobor\xc4\xa0""coronary\xc4\xa0""co" +"oldown\xc4\xa0""conveyed\xc4\xa0""converts\xc4\xa0""convened\xc4\xa0""controls\xc4" +"\xa0""contrary\xc4\xa0""contexts\xc4\xa0""contests\xc4\xa0""contents\xc4\xa0""co" +"ntends\xc4\xa0""contempt\xc4\xa0""contains\xc4\xa0""contacts\xc4\xa0""consumes\xc4" +"\xa0""consumed\xc4\xa0""consoles\xc4\xa0""consists\xc4\xa0""conserve\xc4\xa0""co" +"nquest\xc4\xa0""connects\xc4\xa0""confused\xc4\xa0""confirms\xc4\xa0""confines\xc4" +"\xa0""confined\xc4\xa0""conducts\xc4\xa0""condemns\xc4\xa0""concrete\xc4\xa0""co" +"ncerts\xc4\xa0""concerns\xc4\xa0""concepts\xc4\xa0""concedes\xc4\xa0""conceded\xc4" +"\xa0""comrades\xc4\xa0""computed\xc4\xa0""composer\xc4\xa0""composed\xc4\xa0""co" +"mplied\xc4\xa0""compiler\xc4\xa0""compiled\xc4\xa0""competed\xc4\xa0""compares\xc4" +"\xa0""compared\xc4\xa0""communal\xc4\xa0""commonly\xc4\xa0""commerce\xc4\xa0""co" +"mments\xc4\xa0""commands\xc4\xa0""comeback\xc4\xa0""combines\xc4\xa0""combined\xc4" +"\xa0""coloured\xc4\xa0""colossal\xc4\xa0""coloring\xc4\xa0""colorful\xc4\xa0""co" +"lonies\xc4\xa0""collided\xc4\xa0""colleges\xc4\xa0""collects\xc4\xa0""collagen\xc4" +"\xa0""cohesive\xc4\xa0""cohesion\xc4\xa0""coherent\xc4\xa0""coercive\xc4\xa0""co" +"ercion\xc4\xa0""coaching\xc4\xa0""clusters\xc4\xa0""clueless\xc4\xa0""clothing\xc4" +"\xa0""closures\xc4\xa0""clipping\xc4\xa0""clinging\xc4\xa0""climbing\xc4\xa0""cl" +"imbers\xc4\xa0""climates\xc4\xa0""clicking\xc4\xa0""clenched\xc4\xa0""clearing\xc4" +"\xa0""cleaning\xc4\xa0""cleaners\xc4\xa0""classify\xc4\xa0""classics\xc4\xa0""cl" +"aiming\xc4\xa0""circular\xc4\xa0""circuits\xc4\xa0""circling\xc4\xa0""cinnamon\xc4" +"\xa0""churches\xc4\xa0""chuckled\xc4\xa0""chopping\xc4\xa0""choosing\xc4\xa0""ch" +"lorine\xc4\xa0""chloride\xc4\xa0""chilling\xc4\xa0""children\xc4\xa0""childish\xc4" +"\xa0""chickens\xc4\xa0""cheering\xc4\xa0""cheerful\xc4\xa0""checkout\xc4\xa0""ch" +"ecking\xc4\xa0""cheating\xc4\xa0""cheapest\xc4\xa0""chatting\xc4\xa0""charming\xc4" +"\xa0""charging\xc4\xa0""charcoal\xc4\xa0""chapters\xc4\xa0""chanting\xc4\xa0""ch" +"annels\xc4\xa0""changing\xc4\xa0""chambers\xc4\xa0""chairman\xc4\xa0""cervical\xc4" +"\xa0""ceremony\xc4\xa0""cerebral\xc4\xa0""centrist\xc4\xa0""centered\xc4\xa0""ce" +"nsored\xc4\xa0""cemetery\xc4\xa0""cellular\xc4\xa0""ceilings\xc4\xa0""caucuses\xc4" +"\xa0""catering\xc4\xa0""category\xc4\xa0""catching\xc4\xa0""catapult\xc4\xa0""ca" +"talyst\xc4\xa0""casualty\xc4\xa0""casually\xc4\xa0""cassette\xc4\xa0""cartoons\xc4" +"\xa0""carrying\xc4\xa0""carriers\xc4\xa0""carriage\xc4\xa0""careless\xc4\xa0""ca" +"rdinal\xc4\xa0""captures\xc4\xa0""captured\xc4\xa0""captives\xc4\xa0""captains\xc4" +"\xa0""capsules\xc4\xa0""capitals\xc4\xa0""capacity\xc4\xa0""cannibal\xc4\xa0""ca" +"nnabis\xc4\xa0""canceled\xc4\xa0""campuses\xc4\xa0""calories\xc4\xa0""callback\xc4" +"\xa0""calculus\xc4\xa0""caffeine\xc4\xa0""cabinets\xc4\xa0""buttocks\xc4\xa0""bu" +"stling\xc4\xa0""bursting\xc4\xa0""burglary\xc4\xa0""bullying\xc4\xa0""bullshit\xc4" +"\xa0""bulletin\xc4\xa0""builders\xc4\xa0""brutally\xc4\xa0""brushing\xc4\xa0""br" +"uising\xc4\xa0""browsing\xc4\xa0""browsers\xc4\xa0""brothers\xc4\xa0""broccoli\xc4" +"\xa0""bringing\xc4\xa0""brightly\xc4\xa0""brighter\xc4\xa0""brethren\xc4\xa0""br" +"eeding\xc4\xa0""breathed\xc4\xa0""breakout\xc4\xa0""breaking\xc4\xa0""breaches\xc4" +"\xa0""breached\xc4\xa0""branding\xc4\xa0""branches\xc4\xa0""bragging\xc4\xa0""br" +"ackets\xc4\xa0""bracelet\xc4\xa0""boutique\xc4\xa0""boundary\xc4\xa0""bouncing\xc4" +"\xa0""bothered\xc4\xa0""borrowed\xc4\xa0""boosting\xc4\xa0""boosters\xc4\xa0""bo" +"okmark\xc4\xa0""bombings\xc4\xa0""boasting\xc4\xa0""boarding\xc4\xa0""blogging\xc4" +"\xa0""bloggers\xc4\xa0""blocking\xc4\xa0""blockers\xc4\xa0""blockade\xc4\xa0""bl" +"inking\xc4\xa0""blinding\xc4\xa0""blending\xc4\xa0""bleeding\xc4\xa0""blasting\xc4" +"\xa0""blankets\xc4\xa0""blackout\xc4\xa0""bitterly\xc4\xa0""bitcoins\xc4\xa0""bi" +"sexual\xc4\xa0""biscuits\xc4\xa0""birthday\xc4\xa0""bindings\xc4\xa0""binaries\xc4" +"\xa0""billions\xc4\xa0""bicycles\xc4\xa0""biblical\xc4\xa0""betrayed\xc4\xa0""be" +"trayal\xc4\xa0""bestowed\xc4\xa0""besieged\xc4\xa0""benefits\xc4\xa0""belonged\xc4" +"\xa0""believes\xc4\xa0""believed\xc4\xa0""behaving\xc4\xa0""befriend\xc4\xa0""be" +"drooms\xc4\xa0""becoming\xc4\xa0""bearings\xc4\xa0""battling\xc4\xa0""battered\xc4" +"\xa0""basement\xc4\xa0""baseline\xc4\xa0""baseless\xc4\xa0""baseball\xc4\xa0""ba" +"rriers\xc4\xa0""barracks\xc4\xa0""barbecue\xc4\xa0""barbaric\xc4\xa0""baptized\xc4" +"\xa0""banished\xc4\xa0""ballpark\xc4\xa0""balloons\xc4\xa0""balances\xc4\xa0""ba" +"lanced\xc4\xa0""backyard\xc4\xa0""backpack\xc4\xa0""backlash\xc4\xa0""backdrop\xc4" +"\xa0""backdoor\xc4\xa0""backbone\xc4\xa0""bachelor\xc4\xa0""awarding\xc4\xa0""aw" +"akened\xc4\xa0""awaiting\xc4\xa0""avoiding\xc4\xa0""aviation\xc4\xa0""aversion\xc4" +"\xa0""averages\xc4\xa0""averaged\xc4\xa0""autonomy\xc4\xa0""autistic\xc4\xa0""au" +"thored\xc4\xa0""auditory\xc4\xa0""audition\xc4\xa0""auctions\xc4\xa0""attracts\xc4" +"\xa0""attended\xc4\xa0""attempts\xc4\xa0""attained\xc4\xa0""attacked\xc4\xa0""at" +"taches\xc4\xa0""attached\xc4\xa0""athletes\xc4\xa0""atheists\xc4\xa0""assuming\xc4" +"\xa0""assorted\xc4\xa0""assisted\xc4\xa0""assigned\xc4\xa0""assessed\xc4\xa0""as" +"serted\xc4\xa0""assembly\xc4\xa0""assaults\xc4\xa0""aspiring\xc4\xa0""ascended\xc4" +"\xa0""asbestos\xc4\xa0""artistic\xc4\xa0""articles\xc4\xa0""arteries\xc4\xa0""ar" +"rogant\xc4\xa0""arriving\xc4\xa0""arrivals\xc4\xa0""arrested\xc4\xa0""arranged\xc4" +"\xa0""aromatic\xc4\xa0""armoured\xc4\xa0""arguably\xc4\xa0""archives\xc4\xa0""ar" +"chived\xc4\xa0""aquarium\xc4\xa0""approves\xc4\xa0""approved\xc4\xa0""applying\xc4" +"\xa0""applause\xc4\xa0""appetite\xc4\xa0""appendix\xc4\xa0""appeared\xc4\xa0""ap" +"pealed\xc4\xa0""appalled\xc4\xa0""apostles\xc4\xa0""aperture\xc4\xa0""anywhere\xc4" +"\xa0""anything\xc4\xa0""antidote\xc4\xa0""antibody\xc4\xa0""anterior\xc4\xa0""an" +"tennas\xc4\xa0""answered\xc4\xa0""annually\xc4\xa0""annoying\xc4\xa0""animated\xc4" +"\xa0""anchored\xc4\xa0""ancestry\xc4\xa0""analyzed\xc4\xa0""analysts\xc4\xa0""an" +"alysis\xc4\xa0""analyses\xc4\xa0""analysed\xc4\xa0""analogue\xc4\xa0""amygdala\xc4" +"\xa0""amounted\xc4\xa0""aluminum\xc4\xa0""altitude\xc4\xa0""although\xc4\xa0""al" +"tering\xc4\xa0""alphabet\xc4\xa0""allowing\xc4\xa0""allotted\xc4\xa0""allergic\xc4" +"\xa0""alleging\xc4\xa0""alarming\xc4\xa0""airspace\xc4\xa0""airports\xc4\xa0""ai" +"rlines\xc4\xa0""airliner\xc4\xa0""aircraft\xc4\xa0""airborne\xc4\xa0""ailments\xc4" +"\xa0""agreeing\xc4\xa0""agitated\xc4\xa0""agencies\xc4\xa0""afforded\xc4\xa0""af" +"fluent\xc4\xa0""affirmed\xc4\xa0""affinity\xc4\xa0""affected\xc4\xa0""advocacy\xc4" +"\xa0""advisory\xc4\xa0""advisors\xc4\xa0""advising\xc4\xa0""advisers\xc4\xa0""ad" +"vances\xc4\xa0""advanced\xc4\xa0""adultery\xc4\xa0""adorable\xc4\xa0""adoptive\xc4" +"\xa0""adoption\xc4\xa0""adopting\xc4\xa0""adjusted\xc4\xa0""adjacent\xc4\xa0""ad" +"hesive\xc4\xa0""addicted\xc4\xa0""adaptive\xc4\xa0""adapting\xc4\xa0""adapters\xc4" +"\xa0""actually\xc4\xa0""activity\xc4\xa0""activism\xc4\xa0""actively\xc4\xa0""ac" +"quired\xc4\xa0""acoustic\xc4\xa0""achieves\xc4\xa0""achieved\xc4\xa0""accusing\xc4" +"\xa0""accuracy\xc4\xa0""accounts\xc4\xa0""accessed\xc4\xa0""accepted\xc4\xa0""ac" +"ademia\xc4\xa0""absorbed\xc4\xa0""absentee\xc4\xa0""abruptly\xc4\xa0""abducted\xc4" +"\xa0Zimbabwe\xc4\xa0Yourself\xc4\xa0Yosemite\xc4\xa0Workshop\xc4\xa0Woodward\xc4" +"\xa0Wolfgang\xc4\xa0Wireless\xc4\xa0Winnipeg\xc4\xa0Wildlife\xc4\xa0Wildcats\xc4" +"\xa0Whenever\xc4\xa0WhatsApp\xc4\xa0Whatever\xc4\xa0Werewolf\xc4\xa0Waterloo\xc4" +"\xa0Watching\xc4\xa0Warriors\xc4\xa0Warranty\xc4\xa0Warcraft\xc4\xa0Vladimir\xc4" +"\xa0Visitors\xc4\xa0Virginia\xc4\xa0Violence\xc4\xa0Veterans\xc4\xa0Vertical\xc4" +"\xa0Veronica\xc4\xa0Ventures\xc4\xa0Velocity\xc4\xa0Vehicles\xc4\xa0Variable\xc4" +"\xa0Vanguard\xc4\xa0Valkyrie\xc4\xa0Valhalla\xc4\xa0Valencia\xc4\xa0Username\xc4" +"\xa0Unloaded\xc4\xa0Universe\xc4\xa0Uncommon\xc4\xa0Twilight\xc4\xa0Tutorial\xc4" +"\xa0Turnbull\xc4\xa0Tsarnaev\xc4\xa0Tropical\xc4\xa0Trinidad\xc4\xa0Tribunal\xc4" +"\xa0Triangle\xc4\xa0Treasury\xc4\xa0Transfer\xc4\xa0Training\xc4\xa0Trafford\xc4" +"\xa0Tradable\xc4\xa0Tracking\xc4\xa0Township\xc4\xa0Townsend\xc4\xa0Tomorrow\xc4" +"\xa0Together\xc4\xa0Titanium\xc4\xa0Timeline\xc4\xa0Thursday\xc4\xa0Thoughts\xc4" +"\xa0Thornton\xc4\xa0Thompson\xc4\xa0Thinking\xc4\xa0Theodore\xc4\xa0Thatcher\xc4" +"\xa0Thailand\xc4\xa0Terminal\xc4\xa0Template\xc4\xa0Telegram\xc4\xa0Teaching\xc4" +"\xa0Teachers\xc4\xa0Tasmania\xc4\xa0Tanzania\xc4\xa0Tactical\xc4\xa0Syracuse\xc4" +"\xa0Syndrome\xc4\xa0Symptoms\xc4\xa0Symphony\xc4\xa0Survival\xc4\xa0Surprise\xc4" +"\xa0Supports\xc4\xa0Superman\xc4\xa0Superior\xc4\xa0Sunshine\xc4\xa0Summoner\xc4" +"\xa0Sullivan\xc4\xa0Suddenly\xc4\xa0Subjects\xc4\xa0Sturgeon\xc4\xa0Students\xc4" +"\xa0Struggle\xc4\xa0Strength\xc4\xa0Strategy\xc4\xa0Stranger\xc4\xa0Straight\xc4" +"\xa0Sterling\xc4\xa0Steelers\xc4\xa0Starting\xc4\xa0Starship\xc4\xa0Stanford\xc4" +"\xa0Standing\xc4\xa0Stamford\xc4\xa0Stafford\xc4\xa0Squirrel\xc4\xa0Squadron\xc4" +"\xa0Springer\xc4\xa0Sporting\xc4\xa0Spending\xc4\xa0Speedway\xc4\xa0Spectrum\xc4" +"\xa0Speaking\xc4\xa0Spartans\xc4\xa0Southern\xc4\xa0Sounders\xc4\xa0Sorcerer\xc4" +"\xa0Somerset\xc4\xa0Somebody\xc4\xa0Soldiers\xc4\xa0Software\xc4\xa0Socrates\xc4" +"\xa0Snapchat\xc4\xa0Slovenia\xc4\xa0Slovakia\xc4\xa0Slightly\xc4\xa0Sleeping\xc4" +"\xa0Sinclair\xc4\xa0Simpsons\xc4\xa0Siberian\xc4\xa0Shutdown\xc4\xa0Showtime\xc4" +"\xa0Showdown\xc4\xa0Shopping\xc4\xa0Shooting\xc4\xa0Shipping\xc4\xa0Sherlock\xc4" +"\xa0Sheridan\xc4\xa0Shepherd\xc4\xa0Shanghai\xc4\xa0Shanahan\xc4\xa0Settings\xc4" +"\xa0Sessions\xc4\xa0Services\xc4\xa0Sergeant\xc4\xa0Sequence\xc4\xa0Sentinel\xc4" +"\xa0Senators\xc4\xa0Selected\xc4\xa0Security\xc4\xa0Sections\xc4\xa0Secondly\xc4" +"\xa0Seahawks\xc4\xa0Scouting\xc4\xa0Scottish\xc4\xa0Scotland\xc4\xa0Scorpion\xc4" +"\xa0Sciences\xc4\xa0Schwartz\xc4\xa0Schedule\xc4\xa0Scarlett\xc4\xa0Savannah\xc4" +"\xa0Saunders\xc4\xa0Sapphire\xc4\xa0Santorum\xc4\xa0Santiago\xc4\xa0Sanskrit\xc4" +"\xa0Sandwich\xc4\xa0Samantha\xc4\xa0Salvador\xc4\xa0SOFTWARE\xc4\xa0SERVICES\xc4" +"\xa0Russians\xc4\xa0Romantic\xc4\xa0Romanian\xc4\xa0Rohingya\xc4\xa0Robotics\xc4" +"\xa0Robinson\xc4\xa0Richmond\xc4\xa0Reynolds\xc4\xa0Revision\xc4\xa0Reverend\xc4" +"\xa0Restrict\xc4\xa0Response\xc4\xa0Reserved\xc4\xa0Requires\xc4\xa0Required\xc4" +"\xa0Reporter\xc4\xa0Reported\xc4\xa0Remember\xc4\xa0Reloaded\xc4\xa0Religion\xc4" +"\xa0Releases\xc4\xa0Released\xc4\xa0Relative\xc4\xa0Registry\xc4\xa0Regional\xc4" +"\xa0Regiment\xc4\xa0Refugees\xc4\xa0Referred\xc4\xa0Redskins\xc4\xa0Recovery\xc4" +"\xa0Recorded\xc4\xa0Recently\xc4\xa0Receiver\xc4\xa0Received\xc4\xa0Reaction\xc4" +"\xa0Rational\xc4\xa0Rankings\xc4\xa0Randolph\xc4\xa0Railroad\xc4\xa0Ragnarok\xc4" +"\xa0Quantity\xc4\xa0Qualcomm\xc4\xa0Purchase\xc4\xa0Pulitzer\xc4\xa0Province\xc4" +"\xa0Provides\xc4\xa0Provider\xc4\xa0Provided\xc4\xa0Protocol\xc4\xa0Prospect\xc4" +"\xa0Property\xc4\xa0Projects\xc4\xa0Programs\xc4\xa0Products\xc4\xa0Producer\xc4" +"\xa0Problems\xc4\xa0Probably\xc4\xa0Priority\xc4\xa0Printing\xc4\xa0Princess\xc4" +"\xa0Pressure\xc4\xa0Presents\xc4\xa0Presence\xc4\xa0Prescott\xc4\xa0Premiere\xc4" +"\xa0Powerful\xc4\xa0Possibly\xc4\xa0Possible\xc4\xa0Positive\xc4\xa0Position\xc4" +"\xa0Portugal\xc4\xa0Portland\xc4\xa0Portable\xc4\xa0Politics\xc4\xa0Politico\xc4" +"\xa0Policies\xc4\xa0Pok\xc3\x83\xc2\xa9mon\xc4\xa0Plymouth\xc4\xa0Pleasant\xc4\xa0" +"Playoffs\xc4\xa0Platinum\xc4\xa0Platform\xc4\xa0Planning\xc4\xa0Pipeline\xc4\xa0" +"Piercing\xc4\xa0Pictures\xc4\xa0Physical\xc4\xa0Phillips\xc4\xa0Phillies\xc4\xa0" +"Philippe\xc4\xa0Petraeus\xc4\xa0Petition\xc4\xa0Peterson\xc4\xa0Petersen\xc4\xa0" +"Pentagon\xc4\xa0Penguins\xc4\xa0Pelicans\xc4\xa0Payments\xc4\xa0Pavilion\xc4\xa0" +"Patterns\xc4\xa0Patriots\xc4\xa0Patricia\xc4\xa0Patients\xc4\xa0Pastebin\xc4\xa0" +"Password\xc4\xa0Pasadena\xc4\xa0Parallel\xc4\xa0Paradise\xc4\xa0Parables\xc4\xa0" +"Panthers\xc4\xa0Painting\xc4\xa0POLITICO\xc4\xa0Overview\xc4\xa0Outbreak\xc4\xa0" +"Orthodox\xc4\xa0Oriental\xc4\xa0Optional\xc4\xa0Operator\xc4\xa0Olympics\xc4\xa0" +"Oklahoma\xc4\xa0Officers\xc4\xa0Observer\xc4\xa0Oblivion\xc4\xa0Numerous\xc4\xa0" +"November\xc4\xa0Northern\xc4\xa0Normandy\xc4\xa0Normally\xc4\xa0Nintendo\xc4\xa0" +"Nigerian\xc4\xa0Nicotine\xc4\xa0Nicholas\xc4\xa0Newsweek\xc4\xa0Neurolog\xc4\xa0" +"Networks\xc4\xa0Negative\xc4\xa0Needless\xc4\xa0Nebraska\xc4\xa0Narendra\xc4\xa0" +"Napoleon\xc4\xa0Mushroom\xc4\xa0Multiple\xc4\xa0Muhammad\xc4\xa0Movement\xc4\xa0" +"Mourinho\xc4\xa0Motorola\xc4\xa0Mortgage\xc4\xa0Morrison\xc4\xa0Moroccan\xc4\xa0" +"Moreover\xc4\xa0Monument\xc4\xa0Montreal\xc4\xa0Monteneg\xc4\xa0Monsters\xc4\xa0" +"Monsanto\xc4\xa0Mongolia\xc4\xa0Monetary\xc4\xa0Mohammed\xc4\xa0Mohammad\xc4\xa0" +"Modified\xc4\xa0Moderate\xc4\xa0Mobility\xc4\xa0Mitchell\xc4\xa0Mistress\xc4\xa0" +"Missouri\xc4\xa0Missions\xc4\xa0Minotaur\xc4\xa0Minority\xc4\xa0Ministry\xc4\xa0" +"Millions\xc4\xa0Military\xc4\xa0Miliband\xc4\xa0Midnight\xc4\xa0Midlands\xc4\xa0" +"Michigan\xc4\xa0Michelle\xc4\xa0Michaels\xc4\xa0Mexicans\xc4\xa0Metatron\xc4\xa0" +"Metallic\xc4\xa0Messages\xc4\xa0Meridian\xc4\xa0Meredith\xc4\xa0Mercedes\xc4\xa0" +"Memories\xc4\xa0Memorial\xc4\xa0Medieval\xc4\xa0Medicine\xc4\xa0Medicare\xc4\xa0" +"Medicaid\xc4\xa0Measures\xc4\xa0McMaster\xc4\xa0McKenzie\xc4\xa0McGregor\xc4\xa0" +"McDonald\xc4\xa0McCarthy\xc4\xa0Matthews\xc4\xa0Massacre\xc4\xa0Maryland\xc4\xa0" +"Martinez\xc4\xa0Marshall\xc4\xa0Marriott\xc4\xa0Marriage\xc4\xa0Maritime\xc4\xa0" +"Mariners\xc4\xa0Margaret\xc4\xa0Marathon\xc4\xa0Manitoba\xc4\xa0Manifest\xc4\xa0" +"Mandarin\xc4\xa0Managing\xc4\xa0Manafort\xc4\xa0Majority\xc4\xa0Magnetic\xc4\xa0" +"Magazine\xc4\xa0Machines\xc4\xa0Lutheran\xc4\xa0Lockheed\xc4\xa0Literary\xc4\xa0" +"LinkedIn\xc4\xa0Limbaugh\xc4\xa0Likewise\xc4\xa0Lighting\xc4\xa0Lifetime\xc4\xa0" +"Licensed\xc4\xa0Liberals\xc4\xa0Leonardo\xc4\xa0Lebanese\xc4\xa0Learning\xc4\xa0" +"Lawrence\xc4\xa0Launcher\xc4\xa0Labrador\xc4\xa0Kingston\xc4\xa0Kingdoms\xc4\xa0" +"Kimberly\xc4\xa0Keystone\xc4\xa0Keyboard\xc4\xa0Kentucky\xc4\xa0Kendrick\xc4\xa0" +"Kejriwal\xc4\xa0Kathleen\xc4\xa0Juventus\xc4\xa0Jurassic\xc4\xa0Junction\xc4\xa0" +"Judicial\xc4\xa0Judgment\xc4\xa0Journals\xc4\xa0Jonathan\xc4\xa0Johnston\xc4\xa0" +"Johannes\xc4\xa0Jeremiah\xc4\xa0Jennings\xc4\xa0Jennifer\xc4\xa0Japanese\xc4\xa0" +"JPMorgan\xc4\xa0Italians\xc4\xa0Istanbul\xc4\xa0Israelis\xc4\xa0Iranians\xc4\xa0" +"Invasion\xc4\xa0Invaders\xc4\xa0Internet\xc4\xa0Internal\xc4\xa0Interior\xc4\xa0" +"Inspired\xc4\xa0Innocent\xc4\xa0Infinity\xc4\xa0Infinite\xc4\xa0Infantry\xc4\xa0" +"Industry\xc4\xa0Includes\xc4\xa0Included\xc4\xa0Incident\xc4\xa0Improved\xc4\xa0" +"Imperium\xc4\xa0Imperial\xc4\xa0Immunity\xc4\xa0Immortal\xc4\xa0Illusion\xc4\xa0" +"Illinois\xc4\xa0Identity\xc4\xa0Hundreds\xc4\xa0Humanity\xc4\xa0HuffPost\xc4\xa0" +"Huckabee\xc4\xa0Hospital\xc4\xa0Horowitz\xc4\xa0Horizons\xc4\xa0Honolulu\xc4\xa0" +"Honestly\xc4\xa0Honduras\xc4\xa0Homeless\xc4\xa0Homeland\xc4\xa0Hollande\xc4\xa0" +"Holdings\xc4\xa0Hogwarts\xc4\xa0Hermione\xc4\xa0Heritage\xc4\xa0Hercules\xc4\xa0" +"Helsinki\xc4\xa0Heavenly\xc4\xa0Hawaiian\xc4\xa0Hastings\xc4\xa0Hartford\xc4\xa0" +"Harrison\xc4\xa0Hardware\xc4\xa0Hardcore\xc4\xa0Harbaugh\xc4\xa0Hannibal\xc4\xa0" +"Handling\xc4\xa0Handbook\xc4\xa0Hamilton\xc4\xa0Guinness\xc4\xa0Guerrero\xc4\xa0" +"Grimoire\xc4\xa0Griffith\xc4\xa0Greatest\xc4\xa0Grateful\xc4\xa0Grassley\xc4\xa0" +"Graphics\xc4\xa0Graduate\xc4\xa0Gonzalez\xc4\xa0Goldberg\xc4\xa0Godzilla\xc4\xa0" +"Gleaming\xc4\xa0Giuliani\xc4\xa0Giovanni\xc4\xa0Gingrich\xc4\xa0Georgian\xc4\xa0" +"Geoffrey\xc4\xa0Genocide\xc4\xa0Genetics\xc4\xa0Gauntlet\xc4\xa0Garrison\xc4\xa0" +"Garfield\xc4\xa0Galactic\xc4\xa0""Frontier\xc4\xa0""Friendly\xc4\xa0""Friedman\xc4" +"\xa0""Franklin\xc4\xa0""Francois\xc4\xa0""Fountain\xc4\xa0""Founding\xc4\xa0""Fo" +"unders\xc4\xa0""Fortress\xc4\xa0""Forsaken\xc4\xa0""Forestry\xc4\xa0""Forensic\xc4" +"\xa0""Football\xc4\xa0""Florence\xc4\xa0""Floating\xc4\xa0""Fletcher\xc4\xa0""Fi" +"rearms\xc4\xa0""Finished\xc4\xa0""Filipino\xc4\xa0""Fighting\xc4\xa0""Fighters\xc4" +"\xa0""Festival\xc4\xa0""Fernando\xc4\xa0""Ferguson\xc4\xa0""Feminist\xc4\xa0""Fe" +"edback\xc4\xa0""February\xc4\xa0""Features\xc4\xa0""Featured\xc4\xa0""Favorite\xc4" +"\xa0""Families\xc4\xa0""Facility\xc4\xa0""Facebook\xc4\xa0""External\xc4\xa0""Ex" +"tended\xc4\xa0""Exposure\xc4\xa0""Explorer\xc4\xa0""Explicit\xc4\xa0""Exercise\xc4" +"\xa0""Exchange\xc4\xa0""Examples\xc4\xa0""Examiner\xc4\xa0""Evidence\xc4\xa0""Ev" +"eryone\xc4\xa0""Everyday\xc4\xa0""Ethernet\xc4\xa0""Ethereum\xc4\xa0""Eternity\xc4" +"\xa0""Equality\xc4\xa0""Enhanced\xc4\xa0""Emmanuel\xc4\xa0""Emirates\xc4\xa0""Em" +"erging\xc4\xa0""Elephant\xc4\xa0""Elements\xc4\xa0""Einstein\xc4\xa0""Edmonton\xc4" +"\xa0""Dynamics\xc4\xa0""Duration\xc4\xa0""Dungeons\xc4\xa0""Drinking\xc4\xa0""Do" +"wntown\xc4\xa0""Dortmund\xc4\xa0""Doomsday\xc4\xa0""Donation\xc4\xa0""Dominion\xc4" +"\xa0""Domestic\xc4\xa0""Dolphins\xc4\xa0""Doctrine\xc4\xa0""Division\xc4\xa0""Di" +"vinity\xc4\xa0""District\xc4\xa0""Distance\xc4\xa0""Dispatch\xc4\xa0""Diseases\xc4" +"\xa0""Discount\xc4\xa0""Disciple\xc4\xa0""Disaster\xc4\xa0""Disabled\xc4\xa0""Di" +"nosaur\xc4\xa0""Dialogue\xc4\xa0""Diabetes\xc4\xa0""Deutsche\xc4\xa0""Detected\xc4" +"\xa0""Designer\xc4\xa0""Designed\xc4\xa0""Delivery\xc4\xa0""Delaware\xc4\xa0""De" +"cision\xc4\xa0""December\xc4\xa0""Deadpool\xc4\xa0""Deadline\xc4\xa0""Daylight\xc4" +"\xa0""Davidson\xc4\xa0""Daughter\xc4\xa0""Database\xc4\xa0""Darkness\xc4\xa0""Da" +"nielle\xc4\xa0""Damascus\xc4\xa0""DISTRICT\xc4\xa0""Currency\xc4\xa0""Cummings\xc4" +"\xa0""Cultural\xc4\xa0""Crusader\xc4\xa0""Crossref\xc4\xa0""Crossing\xc4\xa0""Cr" +"ossRef\xc4\xa0""Croatian\xc4\xa0""Critical\xc4\xa0""Criminal\xc4\xa0""Crescent\xc4" +"\xa0""Creative\xc4\xa0""Creation\xc4\xa0""Creating\xc4\xa0""Crawford\xc4\xa0""Cr" +"afting\xc4\xa0""Coverage\xc4\xa0""Covenant\xc4\xa0""Courtney\xc4\xa0""Courtesy\xc4" +"\xa0""Cosmetic\xc4\xa0""Corvette\xc4\xa0""Corridor\xc4\xa0""Cornwall\xc4\xa0""Co" +"oldown\xc4\xa0""Controls\xc4\xa0""Contrast\xc4\xa0""Contrary\xc4\xa0""Contents\xc4" +"\xa0""Contains\xc4\xa0""Consolid\xc4\xa0""Conquest\xc4\xa0""Conflict\xc4\xa0""Co" +"ncepts\xc4\xa0""Computer\xc4\xa0""Compared\xc4\xa0""Commerce\xc4\xa0""Comments\xc4" +"\xa0""Commands\xc4\xa0""Commando\xc4\xa0""Combined\xc4\xa0""Columbus\xc4\xa0""Co" +"lumbia\xc4\xa0""Colossus\xc4\xa0""Colorado\xc4\xa0""Colonial\xc4\xa0""Collider\xc4" +"\xa0""Colleges\xc4\xa0""Collabor\xc4\xa0""Coliseum\xc4\xa0""Coinbase\xc4\xa0""Cl" +"othing\xc4\xa0""Clippers\xc4\xa0""Clintons\xc4\xa0""Clinical\xc4\xa0""Clifford\xc4" +"\xa0""Classics\xc4\xa0""Clarkson\xc4\xa0""Clarence\xc4\xa0""Citation\xc4\xa0""Ci" +"nnamon\xc4\xa0""Churches\xc4\xa0""Chrysler\xc4\xa0""Christie\xc4\xa0""Children\xc4" +"\xa0""Cherokee\xc4\xa0""Chemical\xc4\xa0""Checking\xc4\xa0""Charisma\xc4\xa0""Ch" +"argers\xc4\xa0""Chapters\xc4\xa0""Changing\xc4\xa0""Chandler\xc4\xa0""Chambers\xc4" +"\xa0""Chairman\xc4\xa0""Cerberus\xc4\xa0""Centauri\xc4\xa0""Cemetery\xc4\xa0""Ce" +"llular\xc4\xa0""Caucasus\xc4\xa0""Category\xc4\xa0""Catalyst\xc4\xa0""Caroline\xc4" +"\xa0""Carolina\xc4\xa0""Carnival\xc4\xa0""Carnegie\xc4\xa0""Capitals\xc4\xa0""Ca" +"pacity\xc4\xa0""Cannabis\xc4\xa0""Canberra\xc4\xa0""Campbell\xc4\xa0""Campaign\xc4" +"\xa0""Cameroon\xc4\xa0""Cambodia\xc4\xa0""Calories\xc4\xa0""Calendar\xc4\xa0""Ca" +"ldwell\xc4\xa0""Cadillac\xc4\xa0""BuzzFeed\xc4\xa0""Business\xc4\xa0""Bulletin\xc4" +"\xa0""Bulldogs\xc4\xa0""Buddhist\xc4\xa0""Buddhism\xc4\xa0""Budapest\xc4\xa0""Bu" +"chanan\xc4\xa0""Brussels\xc4\xa0""Brothers\xc4\xa0""Brooklyn\xc4\xa0""Broadway\xc4" +"\xa0""Brittany\xc4\xa0""Brisbane\xc4\xa0""Bringing\xc4\xa0""Brighton\xc4\xa0""Br" +"eaking\xc4\xa0""Bradford\xc4\xa0""Blooming\xc4\xa0""Blizzard\xc4\xa0""Blessing\xc4" +"\xa0""Bitcoins\xc4\xa0""Birthday\xc4\xa0""Biblical\xc4\xa0""Bethesda\xc4\xa0""Be" +"rkeley\xc4\xa0""Benjamin\xc4\xa0""Benghazi\xc4\xa0""Benefits\xc4\xa0""Benedict\xc4" +"\xa0""Baseball\xc4\xa0""BaseType\xc4\xa0""Barclays\xc4\xa0""Balanced\xc4\xa0""Ba" +"chelor\xc4\xa0""Aviation\xc4\xa0""Avengers\xc4\xa0""Austrian\xc4\xa0""Augustus\xc4" +"\xa0""Auckland\xc4\xa0""Attorney\xc4\xa0""Atlantis\xc4\xa0""Atlantic\xc4\xa0""At" +"kinson\xc4\xa0""Assuming\xc4\xa0""Assembly\xc4\xa0""Artifact\xc4\xa0""Articles\xc4" +"\xa0""Armenian\xc4\xa0""Arkansas\xc4\xa0""Argument\xc4\xa0""Archives\xc4\xa0""Ap" +"proach\xc4\xa0""Appendix\xc4\xa0""Apostles\xc4\xa0""Anything\xc4\xa0""Announce\xc4" +"\xa0""Animated\xc4\xa0""Anderson\xc4\xa0""Andersen\xc4\xa0""Ancients\xc4\xa0""An" +"alysis\xc4\xa0""Americas\xc4\xa0""Aluminum\xc4\xa0""Although\xc4\xa0""Alphabet\xc4" +"\xa0""Almighty\xc4\xa0""Alliance\xc4\xa0""Airlines\xc4\xa0""Aircraft\xc4\xa0""Af" +"ricans\xc4\xa0""Advocate\xc4\xa0""Advisory\xc4\xa0""Advanced\xc4\xa0""Adjusted\xc4" +"\xa0""Adelaide\xc4\xa0""Actually\xc4\xa0""Activity\xc4\xa0""Activate\xc4\xa0""Ac" +"hilles\xc4\xa0""Accuracy\xc4\xa0""Accounts\xc4\xa0""Accessed\xc4\xa0""Academic\xc4" +"\xa0""Abstract\xc4\xa0""Abortion\xc4\xa0""Aberdeen\xc4\xa0""Abdullah\xc4\xa0""00" +"000000\xc3\xa9\xc2\xbe\xc4\xaf\xc3\xa5\xc4\xb8\xc4\xbc\xc3\xa5\xc2\xa3\xc2\xab\xc3" +"\xa9\xc2\xbe\xc4\xaf\xc3\xa5\xc2\xa5\xc4\xb3\xc3\xa5\xc2\xa3\xc2\xab\xc3\xa3\xc4" +"\xa4\xc2\xbc\xc3\xa3\xc4\xa4\xc2\xa6\xc3\xa3\xc4\xa4\xc2\xb9wordpresswikipediast" +"eamappssectionalorescenceophysicalographiesodynamicsmopolitanminecraftmicrosoftl" +"ocalhostitativelyimilationheticallyheartedlyatographySPONSOREDItemImageElsewhere" +"AcknowledAccessory\xc4\xa0zombies\xc4\xa0youtube\xc4\xa0younger\xc4\xa0yielded\xc4" +"\xa0yelling\xc4\xa0wrought\xc4\xa0wrongly\xc4\xa0written\xc4\xa0writers\xc4\xa0w" +"recked\xc4\xa0wrapper\xc4\xa0wrapped\xc4\xa0wounded\xc4\xa0worries\xc4\xa0worrie" +"d\xc4\xa0worldly\xc4\xa0workers\xc4\xa0wording\xc4\xa0wonders\xc4\xa0wizards\xc4" +"\xa0without\xc4\xa0witches\xc4\xa0wishing\xc4\xa0winters\xc4\xa0winning\xc4\xa0w" +"inners\xc4\xa0windows\xc4\xa0winding\xc4\xa0wielded\xc4\xa0widgets\xc4\xa0widene" +"d\xc4\xa0whoever\xc4\xa0whiskey\xc4\xa0whipped\xc4\xa0whining\xc4\xa0whether\xc4" +"\xa0wherein\xc4\xa0whereby\xc4\xa0whereas\xc4\xa0western\xc4\xa0welfare\xc4\xa0w" +"elding\xc4\xa0weights\xc4\xa0weighed\xc4\xa0weeping\xc4\xa0weekday\xc4\xa0webpag" +"e\xc4\xa0weaving\xc4\xa0weather\xc4\xa0wearing\xc4\xa0weapons\xc4\xa0wealthy\xc4" +"\xa0weakest\xc4\xa0watered\xc4\xa0watches\xc4\xa0watched\xc4\xa0wasting\xc4\xa0w" +"ashing\xc4\xa0wartime\xc4\xa0warming\xc4\xa0warfare\xc4\xa0wanting\xc4\xa0wallet" +"s\xc4\xa0walking\xc4\xa0waivers\xc4\xa0waiting\xc4\xa0volumes\xc4\xa0voltage\xc4" +"\xa0volcano\xc4\xa0voicing\xc4\xa0vividly\xc4\xa0visuals\xc4\xa0visited\xc4\xa0v" +"isions\xc4\xa0visibly\xc4\xa0visible\xc4\xa0viruses\xc4\xa0virtues\xc4\xa0vintag" +"e\xc4\xa0vinegar\xc4\xa0viewing\xc4\xa0victory\xc4\xa0victims\xc4\xa0vicious\xc4" +"\xa0vibrant\xc4\xa0vetting\xc4\xa0vessels\xc4\xa0verdict\xc4\xa0vendors\xc4\xa0v" +"ending\xc4\xa0veggies\xc4\xa0vectors\xc4\xa0varying\xc4\xa0various\xc4\xa0variet" +"y\xc4\xa0vantage\xc4\xa0vanilla\xc4\xa0valleys\xc4\xa0valiant\xc4\xa0vaguely\xc4" +"\xa0vaginal\xc4\xa0vacated\xc4\xa0vacancy\xc4\xa0utterly\xc4\xa0uttered\xc4\xa0u" +"topian\xc4\xa0utility\xc4\xa0usually\xc4\xa0ushered\xc4\xa0useless\xc4\xa0urinar" +"y\xc4\xa0urgency\xc4\xa0uranium\xc4\xa0upwards\xc4\xa0upscale\xc4\xa0upright\xc4" +"\xa0upfront\xc4\xa0updates\xc4\xa0updated\xc4\xa0unravel\xc4\xa0unnamed\xc4\xa0u" +"nlucky\xc4\xa0unlocks\xc4\xa0unknown\xc4\xa0unified\xc4\xa0unicorn\xc4\xa0unhear" +"d\xc4\xa0unhappy\xc4\xa0unfolds\xc4\xa0unequal\xc4\xa0unclear\xc4\xa0uncanny\xc4" +"\xa0unaware\xc4\xa0unarmed\xc4\xa0tyranny\xc4\xa0twitter\xc4\xa0twisted\xc4\xa0t" +"weeted\xc4\xa0tweaked\xc4\xa0turtles\xc4\xa0turrets\xc4\xa0turnout\xc4\xa0turnin" +"g\xc4\xa0turmoil\xc4\xa0tunnels\xc4\xa0tuition\xc4\xa0tsunami\xc4\xa0trusted\xc4" +"\xa0trumpet\xc4\xa0trivial\xc4\xa0tripled\xc4\xa0trimmed\xc4\xa0trilogy\xc4\xa0t" +"rickle\xc4\xa0tricked\xc4\xa0tribute\xc4\xa0treated\xc4\xa0treason\xc4\xa0travel" +"s\xc4\xa0trapped\xc4\xa0traitor\xc4\xa0trained\xc4\xa0trailed\xc4\xa0tragedy\xc4" +"\xa0trading\xc4\xa0traders\xc4\xa0tractor\xc4\xa0tracker\xc4\xa0tracked\xc4\xa0t" +"racing\xc4\xa0towards\xc4\xa0touting\xc4\xa0tourism\xc4\xa0touring\xc4\xa0toughe" +"r\xc4\xa0touches\xc4\xa0touched\xc4\xa0totally\xc4\xa0totaled\xc4\xa0tossing\xc4" +"\xa0torrent\xc4\xa0torpedo\xc4\xa0tornado\xc4\xa0torment\xc4\xa0torches\xc4\xa0t" +"oppled\xc4\xa0topping\xc4\xa0topical\xc4\xa0tooltip\xc4\xa0toolbar\xc4\xa0tonigh" +"t\xc4\xa0tongues\xc4\xa0toilets\xc4\xa0tobacco\xc4\xa0tissues\xc4\xa0tipping\xc4" +"\xa0timeout\xc4\xa0tightly\xc4\xa0tighter\xc4\xa0ticking\xc4\xa0tickets\xc4\xa0t" +"hyroid\xc4\xa0thunder\xc4\xa0throats\xc4\xa0threats\xc4\xa0threads\xc4\xa0thirst" +"y\xc4\xa0thinner\xc4\xa0thieves\xc4\xa0thicker\xc4\xa0thermal\xc4\xa0thereto\xc4" +"\xa0thereof\xc4\xa0therein\xc4\xa0thereby\xc4\xa0therapy\xc4\xa0theorem\xc4\xa0t" +"heatre\xc4\xa0thanked\xc4\xa0textual\xc4\xa0texting\xc4\xa0textile\xc4\xa0testin" +"g\xc4\xa0testers\xc4\xa0terrain\xc4\xa0tending\xc4\xa0tenants\xc4\xa0tenancy\xc4" +"\xa0tempted\xc4\xa0temples\xc4\xa0telling\xc4\xa0tedious\xc4\xa0teasing\xc4\xa0t" +"earing\xc4\xa0teaches\xc4\xa0taxable\xc4\xa0tattoos\xc4\xa0tasting\xc4\xa0tariff" +"s\xc4\xa0targets\xc4\xa0tapping\xc4\xa0tangled\xc4\xa0tallied\xc4\xa0tallest\xc4" +"\xa0talking\xc4\xa0talents\xc4\xa0takeoff\xc4\xa0tainted\xc4\xa0tagging\xc4\xa0t" +"actile\xc4\xa0tactics\xc4\xa0tackles\xc4\xa0tackled\xc4\xa0tabloid\xc4\xa0tablet" +"s\xc4\xa0systems\xc4\xa0systemd\xc4\xa0synergy\xc4\xa0symbols\xc4\xa0swollen\xc4" +"\xa0swiftly\xc4\xa0sweater\xc4\xa0swapped\xc4\xa0surveys\xc4\xa0surreal\xc4\xa0s" +"urplus\xc4\xa0surname\xc4\xa0surging\xc4\xa0surgery\xc4\xa0surfing\xc4\xa0suprem" +"e\xc4\xa0sunrise\xc4\xa0summons\xc4\xa0summers\xc4\xa0summary\xc4\xa0suffice\xc4" +"\xa0suffers\xc4\xa0sucking\xc4\xa0suburbs\xc4\xa0subsidy\xc4\xa0sublime\xc4\xa0s" +"ubdued\xc4\xa0stylish\xc4\xa0styling\xc4\xa0stunned\xc4\xa0stuffed\xc4\xa0studio" +"s\xc4\xa0studies\xc4\xa0studied\xc4\xa0strokes\xc4\xa0strives\xc4\xa0stripes\xc4" +"\xa0striped\xc4\xa0strings\xc4\xa0strikes\xc4\xa0strides\xc4\xa0streets\xc4\xa0s" +"treams\xc4\xa0streaks\xc4\xa0strands\xc4\xa0strains\xc4\xa0stormed\xc4\xa0storin" +"g\xc4\xa0stories\xc4\xa0storage\xc4\xa0stopped\xc4\xa0stomach\xc4\xa0stocked\xc4" +"\xa0stirred\xc4\xa0stimuli\xc4\xa0stigmat\xc4\xa0sterile\xc4\xa0stepped\xc4\xa0s" +"temmed\xc4\xa0stellar\xc4\xa0steered\xc4\xa0stealth\xc4\xa0staying\xc4\xa0staunc" +"h\xc4\xa0stature\xc4\xa0statues\xc4\xa0stating\xc4\xa0starved\xc4\xa0started\xc4" +"\xa0starred\xc4\xa0staring\xc4\xa0staples\xc4\xa0standby\xc4\xa0stances\xc4\xa0s" +"tamped\xc4\xa0stamina\xc4\xa0stalled\xc4\xa0stained\xc4\xa0staging\xc4\xa0staffe" +"d\xc4\xa0stacked\xc4\xa0stabbed\xc4\xa0squares\xc4\xa0squared\xc4\xa0spurred\xc4" +"\xa0sprites\xc4\xa0springs\xc4\xa0sprayed\xc4\xa0spouses\xc4\xa0spotted\xc4\xa0s" +"poiled\xc4\xa0spirits\xc4\xa0spinach\xc4\xa0spilled\xc4\xa0spiders\xc4\xa0sphere" +"s\xc4\xa0spelled\xc4\xa0species\xc4\xa0spawned\xc4\xa0spatial\xc4\xa0sparked\xc4" +"\xa0sparing\xc4\xa0spacing\xc4\xa0sources\xc4\xa0sourced\xc4\xa0sounded\xc4\xa0s" +"orting\xc4\xa0sorcery\xc4\xa0someone\xc4\xa0somehow\xc4\xa0someday\xc4\xa0solvin" +"g\xc4\xa0solvent\xc4\xa0soluble\xc4\xa0solidly\xc4\xa0sockets\xc4\xa0society\xc4" +"\xa0soaring\xc4\xa0soaking\xc4\xa0snipers\xc4\xa0snapped\xc4\xa0smoking\xc4\xa0s" +"mokers\xc4\xa0smiling\xc4\xa0smelled\xc4\xa0smashed\xc4\xa0smarter\xc4\xa0smalle" +"r\xc4\xa0slumped\xc4\xa0slowing\xc4\xa0slogans\xc4\xa0slipped\xc4\xa0sliding\xc4" +"\xa0slicing\xc4\xa0slender\xc4\xa0sleeves\xc4\xa0sleeper\xc4\xa0slaying\xc4\xa0s" +"lavery\xc4\xa0slashed\xc4\xa0slapped\xc4\xa0slander\xc4\xa0slammed\xc4\xa0skylin" +"e\xc4\xa0skipped\xc4\xa0skillet\xc4\xa0skilled\xc4\xa0skating\xc4\xa0sizable\xc4" +"\xa0sixteen\xc4\xa0sitting\xc4\xa0sisters\xc4\xa0sinners\xc4\xa0sinking\xc4\xa0s" +"ingles\xc4\xa0singled\xc4\xa0singing\xc4\xa0singers\xc4\xa0simulac\xc4\xa0simple" +"r\xc4\xa0signify\xc4\xa0signals\xc4\xa0signage\xc4\xa0sidebar\xc4\xa0shuttle\xc4" +"\xa0shutter\xc4\xa0shuffle\xc4\xa0shudder\xc4\xa0showing\xc4\xa0showers\xc4\xa0s" +"houted\xc4\xa0shouldn\xc4\xa0shortly\xc4\xa0shorter\xc4\xa0shocked\xc4\xa0shippe" +"d\xc4\xa0shining\xc4\xa0shimmer\xc4\xa0shifted\xc4\xa0shields\xc4\xa0sheriff\xc4" +"\xa0shelves\xc4\xa0shaving\xc4\xa0sharply\xc4\xa0sharper\xc4\xa0sharing\xc4\xa0s" +"haping\xc4\xa0shampoo\xc4\xa0shaming\xc4\xa0shallow\xc4\xa0shaking\xc4\xa0shadow" +"y\xc4\xa0shadows\xc4\xa0shading\xc4\xa0severed\xc4\xa0several\xc4\xa0seventy\xc4" +"\xa0seventh\xc4\xa0settles\xc4\xa0settled\xc4\xa0servers\xc4\xa0serpent\xc4\xa0s" +"equest\xc4\xa0sequels\xc4\xa0sensory\xc4\xa0sensors\xc4\xa0sensing\xc4\xa0senior" +"s\xc4\xa0sending\xc4\xa0seminal\xc4\xa0selling\xc4\xa0sellers\xc4\xa0selfish\xc4" +"\xa0selfies\xc4\xa0selects\xc4\xa0seizing\xc4\xa0seismic\xc4\xa0seeking\xc4\xa0s" +"eekers\xc4\xa0secured\xc4\xa0secular\xc4\xa0sectors\xc4\xa0secrets\xc4\xa0secrec" +"y\xc4\xa0seconds\xc4\xa0seating\xc4\xa0seasons\xc4\xa0sealing\xc4\xa0seafood\xc4" +"\xa0scrolls\xc4\xa0scripts\xc4\xa0screwed\xc4\xa0screams\xc4\xa0scourge\xc4\xa0s" +"coring\xc4\xa0schools\xc4\xa0schemes\xc4\xa0scenery\xc4\xa0scapego\xc4\xa0scanne" +"d\xc4\xa0scaling\xc4\xa0savings\xc4\xa0sausage\xc4\xa0sandbox\xc4\xa0samurai\xc4" +"\xa0samples\xc4\xa0sampled\xc4\xa0salvage\xc4\xa0salient\xc4\xa0sailors\xc4\xa0s" +"ailing\xc4\xa0sadness\xc4\xa0rushing\xc4\xa0rupture\xc4\xa0runtime\xc4\xa0runnin" +"g\xc4\xa0runners\xc4\xa0rundown\xc4\xa0runaway\xc4\xa0rumours\xc4\xa0rumored\xc4" +"\xa0rulings\xc4\xa0ruining\xc4\xa0rubbish\xc4\xa0rubbing\xc4\xa0royalty\xc4\xa0r" +"outing\xc4\xa0routers\xc4\xa0roundup\xc4\xa0rounded\xc4\xa0roughly\xc4\xa0rottin" +"g\xc4\xa0rotated\xc4\xa0rosters\xc4\xa0rooting\xc4\xa0rookies\xc4\xa0rooftop\xc4" +"\xa0romance\xc4\xa0rollout\xc4\xa0rolling\xc4\xa0rodents\xc4\xa0rocking\xc4\xa0r" +"ockets\xc4\xa0robbing\xc4\xa0robbery\xc4\xa0robbers\xc4\xa0roasted\xc4\xa0roarin" +"g\xc4\xa0roaming\xc4\xa0roadway\xc4\xa0roadmap\xc4\xa0rivalry\xc4\xa0rituals\xc4" +"\xa0risking\xc4\xa0ripping\xc4\xa0ringing\xc4\xa0rightly\xc4\xa0rigging\xc4\xa0r" +"iddled\xc4\xa0richest\xc4\xa0rhythms\xc4\xa0rewrite\xc4\xa0rewards\xc4\xa0revoke" +"d\xc4\xa0revived\xc4\xa0revival\xc4\xa0revital\xc4\xa0revisit\xc4\xa0revised\xc4" +"\xa0reviews\xc4\xa0revered\xc4\xa0revenge\xc4\xa0reveals\xc4\xa0reunion\xc4\xa0r" +"etweet\xc4\xa0returns\xc4\xa0retired\xc4\xa0rethink\xc4\xa0retains\xc4\xa0resume" +"s\xc4\xa0resumed\xc4\xa0results\xc4\xa0resting\xc4\xa0restart\xc4\xa0respawn\xc4" +"\xa0resorts\xc4\xa0resists\xc4\xa0resides\xc4\xa0resided\xc4\xa0rescued\xc4\xa0r" +"escind\xc4\xa0reports\xc4\xa0replies\xc4\xa0replied\xc4\xa0repeats\xc4\xa0repatr" +"i\xc4\xa0repairs\xc4\xa0reorgan\xc4\xa0renting\xc4\xa0renters\xc4\xa0rentals\xc4" +"\xa0renewed\xc4\xa0renewal\xc4\xa0renders\xc4\xa0renamed\xc4\xa0removes\xc4\xa0r" +"emoved\xc4\xa0removal\xc4\xa0remorse\xc4\xa0reminds\xc4\xa0rematch\xc4\xa0remark" +"s\xc4\xa0remains\xc4\xa0relying\xc4\xa0relinqu\xc4\xa0reliant\xc4\xa0relayed\xc4" +"\xa0relaxed\xc4\xa0relates\xc4\xa0related\xc4\xa0relapse\xc4\xa0rejuven\xc4\xa0r" +"ejoice\xc4\xa0rejects\xc4\xa0regrets\xc4\xa0regions\xc4\xa0regimes\xc4\xa0regard" +"s\xc4\xa0refuted\xc4\xa0refuses\xc4\xa0refused\xc4\xa0refusal\xc4\xa0refunds\xc4" +"\xa0refrain\xc4\xa0reforms\xc4\xa0refined\xc4\xa0reeling\xc4\xa0reduces\xc4\xa0r" +"educed\xc4\xa0redress\xc4\xa0records\xc4\xa0recipes\xc4\xa0recalls\xc4\xa0rebuil" +"t\xc4\xa0rebirth\xc4\xa0reasons\xc4\xa0reality\xc4\xa0realism\xc4\xa0readily\xc4" +"\xa0readers\xc4\xa0reacted\xc4\xa0reaches\xc4\xa0reached\xc4\xa0ravaged\xc4\xa0r" +"attled\xc4\xa0ratings\xc4\xa0rapport\xc4\xa0rappers\xc4\xa0rapists\xc4\xa0rapidl" +"y\xc4\xa0ranging\xc4\xa0rampant\xc4\xa0rampage\xc4\xa0rallies\xc4\xa0rallied\xc4" +"\xa0raising\xc4\xa0raining\xc4\xa0rainbow\xc4\xa0railing\xc4\xa0raiding\xc4\xa0r" +"adiant\xc4\xa0racists\xc4\xa0rabbits\xc4\xa0quoting\xc4\xa0quietly\xc4\xa0quiete" +"r\xc4\xa0quickly\xc4\xa0quicker\xc4\xa0queries\xc4\xa0quarrel\xc4\xa0quantum\xc4" +"\xa0quality\xc4\xa0pyramid\xc4\xa0puzzles\xc4\xa0puzzled\xc4\xa0putting\xc4\xa0p" +"ushing\xc4\xa0pursued\xc4\xa0puppies\xc4\xa0pundits\xc4\xa0punches\xc4\xa0punche" +"d\xc4\xa0pumpkin\xc4\xa0pumping\xc4\xa0pulling\xc4\xa0pudding\xc4\xa0puberty\xc4" +"\xa0psychic\xc4\xa0prudent\xc4\xa0proxies\xc4\xa0prowess\xc4\xa0proving\xc4\xa0p" +"roudly\xc4\xa0prophes\xc4\xa0promulg\xc4\xa0prompts\xc4\xa0profits\xc4\xa0probin" +"g\xc4\xa0privacy\xc4\xa0prisons\xc4\xa0println\xc4\xa0printed\xc4\xa0primary\xc4" +"\xa0priests\xc4\xa0pricing\xc4\xa0pretext\xc4\xa0presupp\xc4\xa0presses\xc4\xa0p" +"ressed\xc4\xa0presets\xc4\xa0prepaid\xc4\xa0prefers\xc4\xa0preempt\xc4\xa0precep" +"t\xc4\xa0praying\xc4\xa0prayers\xc4\xa0praises\xc4\xa0praised\xc4\xa0powered\xc4" +"\xa0poverty\xc4\xa0pouring\xc4\xa0pounded\xc4\xa0poultry\xc4\xa0potions\xc4\xa0p" +"otency\xc4\xa0postwar\xc4\xa0posture\xc4\xa0posters\xc4\xa0postage\xc4\xa0portal" +"s\xc4\xa0popping\xc4\xa0popcorn\xc4\xa0poorest\xc4\xa0polymer\xc4\xa0polling\xc4" +"\xa0pokemon\xc4\xa0poisons\xc4\xa0pointed\xc4\xa0pockets\xc4\xa0plunged\xc4\xa0p" +"lunder\xc4\xa0plugins\xc4\xa0plugged\xc4\xa0plotted\xc4\xa0pledges\xc4\xa0pledge" +"d\xc4\xa0pleased\xc4\xa0pleaded\xc4\xa0playing\xc4\xa0playful\xc4\xa0players\xc4" +"\xa0platoon\xc4\xa0plateau\xc4\xa0plaster\xc4\xa0planted\xc4\xa0planned\xc4\xa0p" +"lanets\xc4\xa0plainly\xc4\xa0plagued\xc4\xa0plagiar\xc4\xa0placing\xc4\xa0placeb" +"o\xc4\xa0pivotal\xc4\xa0pitches\xc4\xa0pitched\xc4\xa0pistols\xc4\xa0pirates\xc4" +"\xa0pillars\xc4\xa0pigment\xc4\xa0pierced\xc4\xa0pickups\xc4\xa0picking\xc4\xa0p" +"hysics\xc4\xa0phrases\xc4\xa0photons\xc4\xa0phantom\xc4\xa0persons\xc4\xa0perple" +"x\xc4\xa0permits\xc4\xa0perjury\xc4\xa0periods\xc4\xa0perhaps\xc4\xa0perfume\xc4" +"\xa0perched\xc4\xa0peppers\xc4\xa0peoples\xc4\xa0pending\xc4\xa0penalty\xc4\xa0p" +"ellets\xc4\xa0peanuts\xc4\xa0payroll\xc4\xa0payload\xc4\xa0payable\xc4\xa0patron" +"s\xc4\xa0patrols\xc4\xa0patents\xc4\xa0patches\xc4\xa0patched\xc4\xa0pasture\xc4" +"\xa0pastors\xc4\xa0passing\xc4\xa0passers\xc4\xa0parting\xc4\xa0parties\xc4\xa0p" +"artake\xc4\xa0parsing\xc4\xa0parking\xc4\xa0parents\xc4\xa0parcels\xc4\xa0parado" +"x\xc4\xa0panties\xc4\xa0palette\xc4\xa0pairing\xc4\xa0painter\xc4\xa0painted\xc4" +"\xa0pageant\xc4\xa0padding\xc4\xa0packing\xc4\xa0packets\xc4\xa0overtly\xc4\xa0o" +"versaw\xc4\xa0overrun\xc4\xa0overlay\xc4\xa0overest\xc4\xa0overdue\xc4\xa0overal" +"l\xc4\xa0ovarian\xc4\xa0outward\xc4\xa0outputs\xc4\xa0outpost\xc4\xa0outlook\xc4" +"\xa0outlets\xc4\xa0outings\xc4\xa0outfits\xc4\xa0orphans\xc4\xa0origins\xc4\xa0o" +"rganic\xc4\xa0orderly\xc4\xa0ordered\xc4\xa0orbital\xc4\xa0oranges\xc4\xa0option" +"s\xc4\xa0optimum\xc4\xa0optimal\xc4\xa0optical\xc4\xa0opposes\xc4\xa0opposed\xc4" +"\xa0opioids\xc4\xa0opacity\xc4\xa0onwards\xc4\xa0onstage\xc4\xa0ongoing\xc4\xa0o" +"neself\xc4\xa0onboard\xc4\xa0omitted\xc4\xa0ominous\xc4\xa0offsets\xc4\xa0offlin" +"e\xc4\xa0offices\xc4\xa0offered\xc4\xa0obscene\xc4\xa0obliter\xc4\xa0obliged\xc4" +"\xa0objects\xc4\xa0obesity\xc4\xa0nurture\xc4\xa0nursing\xc4\xa0nursery\xc4\xa0n" +"umbers\xc4\xa0nucleus\xc4\xa0nuclear\xc4\xa0nuances\xc4\xa0nuanced\xc4\xa0nowher" +"e\xc4\xa0novelty\xc4\xa0notions\xc4\xa0notices\xc4\xa0noticed\xc4\xa0nothing\xc4" +"\xa0notably\xc4\xa0notable\xc4\xa0noodles\xc4\xa0nominal\xc4\xa0nodding\xc4\xa0n" +"ipples\xc4\xa0nightly\xc4\xa0newborn\xc4\xa0neutron\xc4\xa0neurons\xc4\xa0nestin" +"g\xc4\xa0neocons\xc4\xa0neither\xc4\xa0needing\xc4\xa0nearing\xc4\xa0nearest\xc4" +"\xa0naughty\xc4\xa0natives\xc4\xa0nations\xc4\xa0nascent\xc4\xa0mystery\xc4\xa0m" +"utated\xc4\xa0mutants\xc4\xa0mustard\xc4\xa0musical\xc4\xa0museums\xc4\xa0muscle" +"s\xc4\xa0murders\xc4\xa0mundane\xc4\xa0mounted\xc4\xa0motives\xc4\xa0motions\xc4" +"\xa0mothers\xc4\xa0mosques\xc4\xa0mortals\xc4\xa0morphed\xc4\xa0morally\xc4\xa0m" +"onthly\xc4\xa0monkeys\xc4\xa0moniker\xc4\xa0moments\xc4\xa0modules\xc4\xa0modula" +"r\xc4\xa0modesty\xc4\xa0modeled\xc4\xa0mocking\xc4\xa0mockery\xc4\xa0moaning\xc4" +"\xa0mixture\xc4\xa0missing\xc4\xa0mishand\xc4\xa0mirrors\xc4\xa0minutes\xc4\xa0m" +"inions\xc4\xa0minimum\xc4\xa0mindset\xc4\xa0mileage\xc4\xa0midterm\xc4\xa0metric" +"s\xc4\xa0methods\xc4\xa0methane\xc4\xa0messing\xc4\xa0merging\xc4\xa0mercury\xc4" +"\xa0mentors\xc4\xa0melting\xc4\xa0measles\xc4\xa0mayoral\xc4\xa0maximum\xc4\xa0m" +"aximal\xc4\xa0matured\xc4\xa0matters\xc4\xa0matches\xc4\xa0matched\xc4\xa0master" +"y\xc4\xa0masters\xc4\xa0massage\xc4\xa0mascara\xc4\xa0martial\xc4\xa0married\xc4" +"\xa0marquee\xc4\xa0markets\xc4\xa0markers\xc4\xa0marital\xc4\xa0marines\xc4\xa0m" +"argins\xc4\xa0marches\xc4\xa0marched\xc4\xa0mapping\xc4\xa0manuals\xc4\xa0mansio" +"n\xc4\xa0manoeuv\xc4\xa0manners\xc4\xa0mankind\xc4\xa0manages\xc4\xa0managed\xc4" +"\xa0mammoth\xc4\xa0mammals\xc4\xa0malware\xc4\xa0malaria\xc4\xa0majesty\xc4\xa0m" +"ailing\xc4\xa0mailbox\xc4\xa0magnets\xc4\xa0madness\xc4\xa0lurking\xc4\xa0luggag" +"e\xc4\xa0luckily\xc4\xa0loyalty\xc4\xa0lowered\xc4\xa0loudspe\xc4\xa0lottery\xc4" +"\xa0looting\xc4\xa0loosely\xc4\xa0looming\xc4\xa0lookout\xc4\xa0looking\xc4\xa0l" +"onging\xc4\xa0longest\xc4\xa0logging\xc4\xa0lodging\xc4\xa0lockout\xc4\xa0lockin" +"g\xc4\xa0located\xc4\xa0locally\xc4\xa0lobster\xc4\xa0lobbied\xc4\xa0loading\xc4" +"\xa0lithium\xc4\xa0listens\xc4\xa0liquids\xc4\xa0linking\xc4\xa0linkage\xc4\xa0l" +"inemen\xc4\xa0lineman\xc4\xa0lineage\xc4\xa0limited\xc4\xa0likened\xc4\xa0lightl" +"y\xc4\xa0lighter\xc4\xa0lifting\xc4\xa0licking\xc4\xa0library\xc4\xa0liberty\xc4" +"\xa0liaison\xc4\xa0leveled\xc4\xa0lettuce\xc4\xa0letting\xc4\xa0letters\xc4\xa0l" +"essons\xc4\xa0lesions\xc4\xa0lengthy\xc4\xa0lengths\xc4\xa0lending\xc4\xa0lender" +"s\xc4\xa0leisure\xc4\xa0legions\xc4\xa0legends\xc4\xa0legally\xc4\xa0leaving\xc4" +"\xa0leather\xc4\xa0leasing\xc4\xa0learned\xc4\xa0leaping\xc4\xa0leaning\xc4\xa0l" +"eaking\xc4\xa0leakage\xc4\xa0leagues\xc4\xa0leading\xc4\xa0layouts\xc4\xa0layoff" +"s\xc4\xa0layered\xc4\xa0lawyers\xc4\xa0laundry\xc4\xa0laughed\xc4\xa0lateral\xc4" +"\xa0latency\xc4\xa0lasting\xc4\xa0largest\xc4\xa0largely\xc4\xa0laptops\xc4\xa0l" +"antern\xc4\xa0landing\xc4\xa0lacking\xc4\xa0labeled\xc4\xa0knocked\xc4\xa0knight" +"s\xc4\xa0kittens\xc4\xa0kissing\xc4\xa0kinetic\xc4\xa0kindred\xc4\xa0killers\xc4" +"\xa0kidneys\xc4\xa0kidding\xc4\xa0kickoff\xc4\xa0kicking\xc4\xa0keynote\xc4\xa0k" +"ernels\xc4\xa0keeping\xc4\xa0jumping\xc4\xa0judging\xc4\xa0jointly\xc4\xa0joinin" +"g\xc4\xa0jewelry\xc4\xa0jerseys\xc4\xa0jarring\xc4\xa0jackets\xc4\xa0itching\xc4" +"\xa0issuing\xc4\xa0islands\xc4\xa0invoked\xc4\xa0invoice\xc4\xa0invites\xc4\xa0i" +"nvited\xc4\xa0invests\xc4\xa0inverse\xc4\xa0invalid\xc4\xa0invaded\xc4\xa0interi" +"m\xc4\xa0intends\xc4\xa0intakes\xc4\xa0insured\xc4\xa0insults\xc4\xa0insulin\xc4" +"\xa0instead\xc4\xa0insofar\xc4\xa0insists\xc4\xa0inserts\xc4\xa0insepar\xc4\xa0i" +"nsects\xc4\xa0inquiry\xc4\xa0inquest\xc4\xa0innings\xc4\xa0inmates\xc4\xa0injure" +"d\xc4\xa0inhuman\xc4\xa0infused\xc4\xa0informs\xc4\xa0infield\xc4\xa0infants\xc4" +"\xa0infancy\xc4\xa0inertia\xc4\xa0indulge\xc4\xa0induces\xc4\xa0induced\xc4\xa0i" +"ndoors\xc4\xa0indoctr\xc4\xa0indices\xc4\xa0indexes\xc4\xa0indexed\xc4\xa0income" +"s\xc4\xa0inciner\xc4\xa0incapac\xc4\xa0imprint\xc4\xa0imposes\xc4\xa0imposed\xc4" +"\xa0imports\xc4\xa0implies\xc4\xa0implied\xc4\xa0impetus\xc4\xa0impacts\xc4\xa0i" +"mmoral\xc4\xa0immobil\xc4\xa0imitate\xc4\xa0imaging\xc4\xa0imagery\xc4\xa0illite" +"r\xc4\xa0illicit\xc4\xa0ignores\xc4\xa0ignored\xc4\xa0ignited\xc4\xa0ideally\xc4" +"\xa0iceberg\xc4\xa0iPhones\xc4\xa0hygiene\xc4\xa0hybrids\xc4\xa0hurting\xc4\xa0h" +"urried\xc4\xa0hurdles\xc4\xa0hunting\xc4\xa0hunters\xc4\xa0humming\xc4\xa0huggin" +"g\xc4\xa0however\xc4\xa0housing\xc4\xa0hottest\xc4\xa0hotline\xc4\xa0hosting\xc4" +"\xa0hostile\xc4\xa0horrors\xc4\xa0hopping\xc4\xa0honored\xc4\xa0honesty\xc4\xa0h" +"olster\xc4\xa0holiest\xc4\xa0holders\xc4\xa0hobbies\xc4\xa0hitting\xc4\xa0hitter" +"s\xc4\xa0history\xc4\xa0himself\xc4\xa0highest\xc4\xa0hideous\xc4\xa0herself\xc4" +"\xa0heroism\xc4\xa0heroine\xc4\xa0hemorrh\xc4\xa0helping\xc4\xa0helpful\xc4\xa0h" +"elpers\xc4\xa0helmets\xc4\xa0heinous\xc4\xa0heights\xc4\xa0heavily\xc4\xa0heavie" +"r\xc4\xa0heavens\xc4\xa0heating\xc4\xa0healthy\xc4\xa0healing\xc4\xa0heading\xc4" +"\xa0headers\xc4\xa0hazards\xc4\xa0haunted\xc4\xa0hateful\xc4\xa0hatched\xc4\xa0h" +"astily\xc4\xa0hashtag\xc4\xa0hashing\xc4\xa0harshly\xc4\xa0harsher\xc4\xa0harnes" +"s\xc4\xa0harmony\xc4\xa0harming\xc4\xa0harmful\xc4\xa0hardest\xc4\xa0harbour\xc4" +"\xa0happily\xc4\xa0happier\xc4\xa0happens\xc4\xa0hanging\xc4\xa0handset\xc4\xa0h" +"andles\xc4\xa0handled\xc4\xa0handing\xc4\xa0handful\xc4\xa0halting\xc4\xa0hallwa" +"y\xc4\xa0halfway\xc4\xa0haircut\xc4\xa0hacking\xc4\xa0hackers\xc4\xa0gunfire\xc4" +"\xa0guitars\xc4\xa0guiding\xc4\xa0guiName\xc4\xa0guiIcon\xc4\xa0guesses\xc4\xa0g" +"uessed\xc4\xa0guarded\xc4\xa0growing\xc4\xa0growers\xc4\xa0grouped\xc4\xa0ground" +"s\xc4\xa0grossly\xc4\xa0grocery\xc4\xa0gripped\xc4\xa0grinned\xc4\xa0grilled\xc4" +"\xa0greeted\xc4\xa0greatly\xc4\xa0greater\xc4\xa0grazing\xc4\xa0gravity\xc4\xa0g" +"rasped\xc4\xa0grapple\xc4\xa0granted\xc4\xa0granite\xc4\xa0grandma\xc4\xa0gramma" +"r\xc4\xa0grading\xc4\xa0grabbed\xc4\xa0governs\xc4\xa0gorilla\xc4\xa0goodies\xc4" +"\xa0goodbye\xc4\xa0goggles\xc4\xa0goddess\xc4\xa0goddamn\xc4\xa0goblins\xc4\xa0g" +"lucose\xc4\xa0glowing\xc4\xa0glitter\xc4\xa0glimpse\xc4\xa0glasses\xc4\xa0glarin" +"g\xc4\xa0glances\xc4\xa0glanced\xc4\xa0gimmick\xc4\xa0getting\xc4\xa0genomic\xc4" +"\xa0genomes\xc4\xa0genesis\xc4\xa0generic\xc4\xa0genders\xc4\xa0gelatin\xc4\xa0g" +"earing\xc4\xa0gathers\xc4\xa0gateway\xc4\xa0gardens\xc4\xa0garbage\xc4\xa0gallon" +"s\xc4\xa0gallery\xc4\xa0gaining\xc4\xa0gadgets\xc4\xa0""futures\xc4\xa0""furnace" +"\xc4\xa0""funeral\xc4\xa0""funding\xc4\xa0""fullest\xc4\xa0""fuelled\xc4\xa0""fu" +"eling\xc4\xa0""fucking\xc4\xa0""frowned\xc4\xa0""frontal\xc4\xa0""freshly\xc4\xa0" +"""freight\xc4\xa0""freezes\xc4\xa0""freezer\xc4\xa0""freeway\xc4\xa0""freeing\xc4" +"\xa0""fraught\xc4\xa0""frankly\xc4\xa0""framing\xc4\xa0""fragile\xc4\xa0""founde" +"d\xc4\xa0""fossils\xc4\xa0""forming\xc4\xa0""formats\xc4\xa0""forging\xc4\xa0""f" +"orever\xc4\xa0""forests\xc4\xa0""forearm\xc4\xa0""forcing\xc4\xa0""forbids\xc4\xa0" +"""footing\xc4\xa0""footage\xc4\xa0""foolish\xc4\xa0""follows\xc4\xa0""foliage\xc4" +"\xa0""folding\xc4\xa0""folders\xc4\xa0""focuses\xc4\xa0""focused\xc4\xa0""flushe" +"d\xc4\xa0""flowing\xc4\xa0""flowers\xc4\xa0""flooded\xc4\xa0""floated\xc4\xa0""f" +"lipped\xc4\xa0""flights\xc4\xa0""fleeing\xc4\xa0""flavors\xc4\xa0""flashes\xc4\xa0" +"""flashed\xc4\xa0""flanked\xc4\xa0""flaming\xc4\xa0""flagged\xc4\xa0""fitting\xc4" +"\xa0""fitness\xc4\xa0""fishing\xc4\xa0""fingers\xc4\xa0""finally\xc4\xa0""filter" +"s\xc4\xa0""filming\xc4\xa0""filling\xc4\xa0""filings\xc4\xa0""figures\xc4\xa0""f" +"igured\xc4\xa0""fifteen\xc4\xa0""fielder\xc4\xa0""fielded\xc4\xa0""festive\xc4\xa0" +"""fertile\xc4\xa0""fencing\xc4\xa0""females\xc4\xa0""feeding\xc4\xa0""fearing\xc4" +"\xa0""fearful\xc4\xa0""favored\xc4\xa0""fatigue\xc4\xa0""fathers\xc4\xa0""fatefu" +"l\xc4\xa0""fatally\xc4\xa0""fasting\xc4\xa0""fastest\xc4\xa0""fascism\xc4\xa0""f" +"arther\xc4\xa0""farming\xc4\xa0""farmers\xc4\xa0""fantasy\xc4\xa0""fanbase\xc4\xa0" +"""fanatic\xc4\xa0""falsely\xc4\xa0""fallout\xc4\xa0""falling\xc4\xa0""fallacy\xc4" +"\xa0""faintly\xc4\xa0""faculty\xc4\xa0""factual\xc4\xa0""factory\xc4\xa0""factor" +"s\xc4\xa0""fabrics\xc4\xa0""extends\xc4\xa0""exposes\xc4\xa0""exposed\xc4\xa0""e" +"xports\xc4\xa0""expires\xc4\xa0""expired\xc4\xa0""experts\xc4\xa0""expects\xc4\xa0" +"""expands\xc4\xa0""exiting\xc4\xa0""existed\xc4\xa0""exhilar\xc4\xa0""exerted\xc4" +"\xa0""excuses\xc4\xa0""excited\xc4\xa0""exceeds\xc4\xa0""exasper\xc4\xa0""exalte" +"d\xc4\xa0""exactly\xc4\xa0""evolves\xc4\xa0""evolved\xc4\xa0""evasion\xc4\xa0""e" +"thical\xc4\xa0""ethanol\xc4\xa0""eternal\xc4\xa0""estates\xc4\xa0""essence\xc4\xa0" +"""esports\xc4\xa0""escapes\xc4\xa0""escaped\xc4\xa0""erupted\xc4\xa0""erratic\xc4" +"\xa0""erosion\xc4\xa0""erected\xc4\xa0""equally\xc4\xa0""enzymes\xc4\xa0""entrop" +"y\xc4\xa0""entries\xc4\xa0""entered\xc4\xa0""entails\xc4\xa0""ensures\xc4\xa0""e" +"nsured\xc4\xa0""ensuing\xc4\xa0""enraged\xc4\xa0""enjoyed\xc4\xa0""english\xc4\xa0" +"""engines\xc4\xa0""engages\xc4\xa0""engaged\xc4\xa0""enemies\xc4\xa0""endured\xc4" +"\xa0""endowed\xc4\xa0""endings\xc4\xa0""endemic\xc4\xa0""encoded\xc4\xa0""enclav" +"e\xc4\xa0""enacted\xc4\xa0""enables\xc4\xa0""enabled\xc4\xa0""emulate\xc4\xa0""e" +"mptied\xc4\xa0""employs\xc4\xa0""empires\xc4\xa0""emperor\xc4\xa0""empathy\xc4\xa0" +"""emitted\xc4\xa0""eminent\xc4\xa0""emerges\xc4\xa0""emerged\xc4\xa0""embryos\xc4" +"\xa0""embassy\xc4\xa0""embargo\xc4\xa0""emailed\xc4\xa0""elusive\xc4\xa0""elegan" +"t\xc4\xa0""elected\xc4\xa0""elderly\xc4\xa0""elastic\xc4\xa0""elapsed\xc4\xa0""e" +"jected\xc4\xa0""efforts\xc4\xa0""effects\xc4\xa0""editors\xc4\xa0""editing\xc4\xa0" +"""ecstasy\xc4\xa0""economy\xc4\xa0""ecology\xc4\xa0""eclipse\xc4\xa0""echoing\xc4" +"\xa0""eastern\xc4\xa0""easiest\xc4\xa0""earthly\xc4\xa0""earnest\xc4\xa0""earner" +"s\xc4\xa0""earlier\xc4\xa0""eagerly\xc4\xa0""eSports\xc4\xa0""dynasty\xc4\xa0""d" +"warves\xc4\xa0""durable\xc4\xa0""dumping\xc4\xa0""dubious\xc4\xa0""drunken\xc4\xa0" +"""drummer\xc4\xa0""drowned\xc4\xa0""drought\xc4\xa0""dropped\xc4\xa0""driving\xc4" +"\xa0""drivers\xc4\xa0""drilled\xc4\xa0""drifted\xc4\xa0""dresses\xc4\xa0""dresse" +"d\xc4\xa0""dreamed\xc4\xa0""dreaded\xc4\xa0""drained\xc4\xa0""dragons\xc4\xa0""d" +"ragged\xc4\xa0""drafted\xc4\xa0""doubted\xc4\xa0""doubles\xc4\xa0""doubled\xc4\xa0" +"""dossier\xc4\xa0""dormant\xc4\xa0""doorway\xc4\xa0""donated\xc4\xa0""domains\xc4" +"\xa0""dollars\xc4\xa0""dodging\xc4\xa0""doctors\xc4\xa0""docking\xc4\xa0""divide" +"s\xc4\xa0""divided\xc4\xa0""diverse\xc4\xa0""distant\xc4\xa0""dissect\xc4\xa0""d" +"isdain\xc4\xa0""discord\xc4\xa0""discern\xc4\xa0""directs\xc4\xa0""dipping\xc4\xa0" +"""dioxide\xc4\xa0""dinners\xc4\xa0""diluted\xc4\xa0""dilemma\xc4\xa0""dignity\xc4" +"\xa0""digging\xc4\xa0""diffuse\xc4\xa0""differs\xc4\xa0""dietary\xc4\xa0""diaper" +"s\xc4\xa0""dialect\xc4\xa0""devoted\xc4\xa0""devised\xc4\xa0""devices\xc4\xa0""d" +"etects\xc4\xa0""details\xc4\xa0""destiny\xc4\xa0""despite\xc4\xa0""despair\xc4\xa0" +"""desktop\xc4\xa0""desires\xc4\xa0""desired\xc4\xa0""designs\xc4\xa0""deserts\xc4" +"\xa0""descent\xc4\xa0""derives\xc4\xa0""derived\xc4\xa0""depicts\xc4\xa0""depend" +"s\xc4\xa0""denying\xc4\xa0""dentist\xc4\xa0""density\xc4\xa0""densely\xc4\xa0""d" +"enotes\xc4\xa0""demoral\xc4\xa0""demonic\xc4\xa0""demands\xc4\xa0""deleted\xc4\xa0" +"""delayed\xc4\xa0""deities\xc4\xa0""dehuman\xc4\xa0""degrees\xc4\xa0""degener\xc4" +"\xa0""defunct\xc4\xa0""deflect\xc4\xa0""defines\xc4\xa0""defined\xc4\xa0""defian" +"t\xc4\xa0""defends\xc4\xa0""defects\xc4\xa0""defeats\xc4\xa0""deepest\xc4\xa0""d" +"ecrypt\xc4\xa0""declass\xc4\xa0""decimal\xc4\xa0""decides\xc4\xa0""decency\xc4\xa0" +"""decades\xc4\xa0""debuted\xc4\xa0""debates\xc4\xa0""debated\xc4\xa0""debacle\xc4" +"\xa0""daytime\xc4\xa0""davidjl\xc4\xa0""darling\xc4\xa0""darkest\xc4\xa0""danger" +"s\xc4\xa0""dancing\xc4\xa0""dancers\xc4\xa0""damning\xc4\xa0""damages\xc4\xa0""d" +"amaged\xc4\xa0""cynical\xc4\xa0""cycling\xc4\xa0""cutting\xc4\xa0""customs\xc4\xa0" +"""custody\xc4\xa0""cushion\xc4\xa0""curtail\xc4\xa0""cursing\xc4\xa0""curator\xc4" +"\xa0""curated\xc4\xa0""cunning\xc4\xa0""culprit\xc4\xa0""cuisine\xc4\xa0""crypti" +"c\xc4\xa0""crushed\xc4\xa0""crusade\xc4\xa0""crumble\xc4\xa0""cruiser\xc4\xa0""c" +"ruelty\xc4\xa0""crucial\xc4\xa0""crowned\xc4\xa0""crowded\xc4\xa0""crosses\xc4\xa0" +"""crossed\xc4\xa0""cropped\xc4\xa0""crooked\xc4\xa0""crochet\xc4\xa0""critics\xc4" +"\xa0""crimson\xc4\xa0""cricket\xc4\xa0""credits\xc4\xa0""creates\xc4\xa0""create" +"d\xc4\xa0""crawled\xc4\xa0""craving\xc4\xa0""crashes\xc4\xa0""crashed\xc4\xa0""c" +"ramped\xc4\xa0""crammed\xc4\xa0""crafted\xc4\xa0""cracked\xc4\xa0""coveted\xc4\xa0" +"""covered\xc4\xa0""cousins\xc4\xa0""courses\xc4\xa0""courier\xc4\xa0""coupons\xc4" +"\xa0""couples\xc4\xa0""coupled\xc4\xa0""counted\xc4\xa0""cottage\xc4\xa0""costin" +"g\xc4\xa0""corpses\xc4\xa0""coroner\xc4\xa0""copying\xc4\xa0""cooling\xc4\xa0""c" +"oolest\xc4\xa0""cooking\xc4\xa0""cookies\xc4\xa0""consent\xc4\xa0""conduit\xc4\xa0" +"""condone\xc4\xa0""condoms\xc4\xa0""condesc\xc4\xa0""concoct\xc4\xa0""concise\xc4" +"\xa0""compost\xc4\xa0""company\xc4\xa0""compact\xc4\xa0""commons\xc4\xa0""commit" +"s\xc4\xa0""commend\xc4\xa0""comedic\xc4\xa0""columns\xc4\xa0""colours\xc4\xa0""c" +"olored\xc4\xa0""colonel\xc4\xa0""cohorts\xc4\xa0""coffers\xc4\xa0""coerced\xc4\xa0" +"""coconut\xc4\xa0""cockpit\xc4\xa0""cocaine\xc4\xa0""coating\xc4\xa0""coaster\xc4" +"\xa0""coastal\xc4\xa0""coaches\xc4\xa0""coached\xc4\xa0""clutter\xc4\xa0""clothe" +"s\xc4\xa0""clothed\xc4\xa0""closing\xc4\xa0""closest\xc4\xa0""closely\xc4\xa0""c" +"loning\xc4\xa0""cloaked\xc4\xa0""clipped\xc4\xa0""clinics\xc4\xa0""climbed\xc4\xa0" +"""clients\xc4\xa0""clicked\xc4\xa0""clich\xc3\x83\xc2\xa9\xc4\xa0""clerics\xc4\xa0" +"""clearly\xc4\xa0""clearer\xc4\xa0""cleared\xc4\xa0""cleanup\xc4\xa0""cleaned\xc4" +"\xa0""clauses\xc4\xa0""classes\xc4\xa0""clashes\xc4\xa0""clashed\xc4\xa0""clarit" +"y\xc4\xa0""clarify\xc4\xa0""claimed\xc4\xa0""circles\xc4\xa0""circled\xc4\xa0""c" +"hopped\xc4\xa0""chooses\xc4\xa0""choking\xc4\xa0""choices\xc4\xa0""chipset\xc4\xa0" +"""chilled\xc4\xa0""chiefly\xc4\xa0""chewing\xc4\xa0""cheered\xc4\xa0""checked\xc4" +"\xa0""cheated\xc4\xa0""cheaply\xc4\xa0""cheaper\xc4\xa0""chatter\xc4\xa0""chassi" +"s\xc4\xa0""chasing\xc4\xa0""charter\xc4\xa0""charred\xc4\xa0""charity\xc4\xa0""c" +"harges\xc4\xa0""charger\xc4\xa0""charged\xc4\xa0""chaotic\xc4\xa0""chanted\xc4\xa0" +"""changes\xc4\xa0""changed\xc4\xa0""chances\xc4\xa0""chaired\xc4\xa0""chained\xc4" +"\xa0""certify\xc4\xa0""ceramic\xc4\xa0""century\xc4\xa0""centrif\xc4\xa0""centre" +"s\xc4\xa0""centers\xc4\xa0""caveats\xc4\xa0""cavalry\xc4\xa0""causing\xc4\xa0""c" +"atches\xc4\xa0""catcher\xc4\xa0""castles\xc4\xa0""casting\xc4\xa0""casinos\xc4\xa0" +"""cascade\xc4\xa0""carving\xc4\xa0""cartels\xc4\xa0""carrots\xc4\xa0""carries\xc4" +"\xa0""carried\xc4\xa0""carnage\xc4\xa0""careers\xc4\xa0""cardiac\xc4\xa0""carava" +"n\xc4\xa0""caramel\xc4\xa0""caption\xc4\xa0""captcha\xc4\xa0""capable\xc4\xa0""c" +"annons\xc4\xa0""candles\xc4\xa0""cancers\xc4\xa0""camping\xc4\xa0""cameras\xc4\xa0" +"""caloric\xc4\xa0""calming\xc4\xa0""calling\xc4\xa0""caliber\xc4\xa0""calcium\xc4" +"\xa0""caching\xc4\xa0""cabbage\xc4\xa0""buzzing\xc4\xa0""buttons\xc4\xa0""butche" +"r\xc4\xa0""busiest\xc4\xa0""burying\xc4\xa0""burning\xc4\xa0""burgers\xc4\xa0""b" +"urdens\xc4\xa0""bundles\xc4\xa0""bundled\xc4\xa0""bullpen\xc4\xa0""bullish\xc4\xa0" +"""bullies\xc4\xa0""bullied\xc4\xa0""bullets\xc4\xa0""buildup\xc4\xa0""buffers\xc4" +"\xa0""buffalo\xc4\xa0""budgets\xc4\xa0""budding\xc4\xa0""buddies\xc4\xa0""bucket" +"s\xc4\xa0""bubbles\xc4\xa0""brushes\xc4\xa0""brushed\xc4\xa0""bruises\xc4\xa0""b" +"ruised\xc4\xa0""brought\xc4\xa0""brokers\xc4\xa0""broadly\xc4\xa0""broader\xc4\xa0" +"""broaden\xc4\xa0""brittle\xc4\xa0""brigade\xc4\xa0""briefly\xc4\xa0""briefed\xc4" +"\xa0""bridges\xc4\xa0""bribery\xc4\xa0""brewing\xc4\xa0""brewery\xc4\xa0""brewer" +"s\xc4\xa0""breaths\xc4\xa0""breasts\xc4\xa0""breakup\xc4\xa0""breaker\xc4\xa0""b" +"readth\xc4\xa0""bravery\xc4\xa0""branded\xc4\xa0""braking\xc4\xa0""boycott\xc4\xa0" +"""bowling\xc4\xa0""bourbon\xc4\xa0""bounded\xc4\xa0""bounces\xc4\xa0""bounced\xc4" +"\xa0""boulder\xc4\xa0""bottles\xc4\xa0""bottled\xc4\xa0""bothers\xc4\xa0""botche" +"d\xc4\xa0""borough\xc4\xa0""boredom\xc4\xa0""borders\xc4\xa0""boosted\xc4\xa0""b" +"ooming\xc4\xa0""boolean\xc4\xa0""booklet\xc4\xa0""booking\xc4\xa0""bonuses\xc4\xa0" +"""bonding\xc4\xa0""bondage\xc4\xa0""bombers\xc4\xa0""boiling\xc4\xa0""boasted\xc4" +"\xa0""boarded\xc4\xa0""blurred\xc4\xa0""bluntly\xc4\xa0""blowing\xc4\xa0""blocke" +"d\xc4\xa0""bloated\xc4\xa0""blister\xc4\xa0""blinked\xc4\xa0""blindly\xc4\xa0""b" +"linded\xc4\xa0""blessed\xc4\xa0""blender\xc4\xa0""blended\xc4\xa0""blazing\xc4\xa0" +"""blaster\xc4\xa0""blasted\xc4\xa0""blaming\xc4\xa0""bladder\xc4\xa0""bizarre\xc4" +"\xa0""bitters\xc4\xa0""bishops\xc4\xa0""bipolar\xc4\xa0""biotech\xc4\xa0""biomas" +"s\xc4\xa0""biomark\xc4\xa0""biology\xc4\xa0""billing\xc4\xa0""bigotry\xc4\xa0""b" +"iggest\xc4\xa0""bidding\xc4\xa0""between\xc4\xa0""betting\xc4\xa0""besides\xc4\xa0" +"""berries\xc4\xa0""beneath\xc4\xa0""bending\xc4\xa0""benches\xc4\xa0""beloved\xc4" +"\xa0""belongs\xc4\xa0""beliefs\xc4\xa0""behaves\xc4\xa0""behaved\xc4\xa0""beggin" +"g\xc4\xa0""beetles\xc4\xa0""bedrock\xc4\xa0""becomes\xc4\xa0""because\xc4\xa0""b" +"eating\xc4\xa0""bearded\xc4\xa0""beaches\xc4\xa0""battles\xc4\xa0""battled\xc4\xa0" +"""batting\xc4\xa0""battery\xc4\xa0""batters\xc4\xa0""bathing\xc4\xa0""batches\xc4" +"\xa0""bastard\xc4\xa0""baskets\xc4\xa0""bashing\xc4\xa0""baseman\xc4\xa0""barrin" +"g\xc4\xa0""barrels\xc4\xa0""barrage\xc4\xa0""barking\xc4\xa0""baptism\xc4\xa0""b" +"anquet\xc4\xa0""banning\xc4\xa0""banners\xc4\xa0""banking\xc4\xa0""bankers\xc4\xa0" +"""banging\xc4\xa0""bandits\xc4\xa0""bananas\xc4\xa0""ballots\xc4\xa0""balcony\xc4" +"\xa0""bailout\xc4\xa0""baggage\xc4\xa0""baffled\xc4\xa0""backups\xc4\xa0""backlo" +"g\xc4\xa0""backing\xc4\xa0""backers\xc4\xa0""backend\xc4\xa0""awfully\xc4\xa0""a" +"wesome\xc4\xa0""awarded\xc4\xa0""awaited\xc4\xa0""avoided\xc4\xa0""avocado\xc4\xa0" +"""avenues\xc4\xa0""autopsy\xc4\xa0""authors\xc4\xa0""audible\xc4\xa0""attends\xc4" +"\xa0""attacks\xc4\xa0""atheism\xc4\xa0""astroph\xc4\xa0""assures\xc4\xa0""assure" +"d\xc4\xa0""assumes\xc4\xa0""assumed\xc4\xa0""assists\xc4\xa0""assimil\xc4\xa0""a" +"ssigns\xc4\xa0""asshole\xc4\xa0""asserts\xc4\xa0""asphalt\xc4\xa0""aspects\xc4\xa0" +"""ashamed\xc4\xa0""artwork\xc4\xa0""artists\xc4\xa0""artisan\xc4\xa0""arsenic\xc4" +"\xa0""arsenal\xc4\xa0""arrives\xc4\xa0""arrived\xc4\xa0""arrests\xc4\xa0""arouse" +"d\xc4\xa0""arousal\xc4\xa0""armored\xc4\xa0""arising\xc4\xa0""arguing\xc4\xa0""a" +"rchaic\xc4\xa0""aquatic\xc4\xa0""applies\xc4\xa0""applied\xc4\xa0""appease\xc4\xa0" +"""appears\xc4\xa0""appeals\xc4\xa0""apparel\xc4\xa0""apology\xc4\xa0""anyways\xc4" +"\xa0""anytime\xc4\xa0""anymore\xc4\xa0""anybody\xc4\xa0""anxious\xc4\xa0""anxiet" +"y\xc4\xa0""antique\xc4\xa0""antigen\xc4\xa0""answers\xc4\xa0""another\xc4\xa0""a" +"nomaly\xc4\xa0""annoyed\xc4\xa0""annexed\xc4\xa0""animals\xc4\xa0""angular\xc4\xa0" +"""anguish\xc4\xa0""angrily\xc4\xa0""angered\xc4\xa0""android\xc4\xa0""ancient\xc4" +"\xa0""anchors\xc4\xa0""anatomy\xc4\xa0""anarchy\xc4\xa0""analogy\xc4\xa0""analge" +"s\xc4\xa0""amusing\xc4\xa0""amplify\xc4\xa0""amounts\xc4\xa0""amongst\xc4\xa0""a" +"mnesty\xc4\xa0""ammonia\xc4\xa0""amended\xc4\xa0""ambient\xc4\xa0""amateur\xc4\xa0" +"""amassed\xc4\xa0""altered\xc4\xa0""alright\xc4\xa0""already\xc4\xa0""almonds\xc4" +"\xa0""alluded\xc4\xa0""allowed\xc4\xa0""allergy\xc4\xa0""alleges\xc4\xa0""aligne" +"d\xc4\xa0""aliases\xc4\xa0""algebra\xc4\xa0""alerted\xc4\xa0""alarmed\xc4\xa0""a" +"irflow\xc4\xa0""agility\xc4\xa0""agendas\xc4\xa0""against\xc4\xa0""affects\xc4\xa0" +"""affairs\xc4\xa0""aerobic\xc4\xa0""advises\xc4\xa0""advised\xc4\xa0""adorned\xc4" +"\xa0""adopted\xc4\xa0""admired\xc4\xa0""adjusts\xc4\xa0""adjunct\xc4\xa0""adjour" +"n\xc4\xa0""addicts\xc4\xa0""adapted\xc4\xa0""adamant\xc4\xa0""acutely\xc4\xa0""a" +"ctions\xc4\xa0""acrylic\xc4\xa0""acronym\xc4\xa0""acquies\xc4\xa0""accuses\xc4\xa0" +"""accuser\xc4\xa0""accused\xc4\xa0""accrued\xc4\xa0""accepts\xc4\xa0""accents\xc4" +"\xa0""academy\xc4\xa0""abusive\xc4\xa0""abusing\xc4\xa0""abusers\xc4\xa0""absorb" +"s\xc4\xa0""absence\xc4\xa0""aborted\xc4\xa0""ability\xc4\xa0""abiding\xc4\xa0""a" +"bdomen\xc4\xa0""abbrevi\xc4\xa0Zombies\xc4\xa0Zionist\xc4\xa0Zionism\xc4\xa0Zeal" +"and\xc4\xa0Youtube\xc4\xa0Younger\xc4\xa0YouTube\xc4\xa0Yorkers\xc4\xa0Yankees\xc4" +"\xa0Wyoming\xc4\xa0Written\xc4\xa0Writing\xc4\xa0Writers\xc4\xa0Wrestle\xc4\xa0W" +"orking\xc4\xa0Workers\xc4\xa0Wonders\xc4\xa0Wizards\xc4\xa0Without\xc4\xa0Witche" +"s\xc4\xa0Witcher\xc4\xa0Winston\xc4\xa0Winning\xc4\xa0Winners\xc4\xa0Windsor\xc4" +"\xa0Windows\xc4\xa0Wilhelm\xc4\xa0Wiggins\xc4\xa0Wichita\xc4\xa0Whoever\xc4\xa0W" +"hitney\xc4\xa0Whitman\xc4\xa0Whether\xc4\xa0Whereas\xc4\xa0Wheeler\xc4\xa0Wester" +"n\xc4\xa0Wembley\xc4\xa0Welfare\xc4\xa0Welcome\xc4\xa0Weekend\xc4\xa0Wedding\xc4" +"\xa0Webster\xc4\xa0Website\xc4\xa0Weather\xc4\xa0Weasley\xc4\xa0Weapons\xc4\xa0W" +"atkins\xc4\xa0Warwick\xc4\xa0Warning\xc4\xa0Warlock\xc4\xa0Warfare\xc4\xa0Walter" +"s\xc4\xa0Walmart\xc4\xa0Wallace\xc4\xa0Walking\xc4\xa0Waiting\xc4\xa0WITHOUT\xc4" +"\xa0WATCHED\xc4\xa0WARRANT\xc4\xa0WARNING\xc4\xa0Voyager\xc4\xa0Voltage\xc4\xa0V" +"olcano\xc4\xa0Vitamin\xc4\xa0Virtual\xc4\xa0Violent\xc4\xa0Vintage\xc4\xa0Vincen" +"t\xc4\xa0Village\xc4\xa0Vikings\xc4\xa0Victory\xc4\xa0Victims\xc4\xa0Version\xc4" +"\xa0Vermont\xc4\xa0Verizon\xc4\xa0Ventura\xc4\xa0Vaughan\xc4\xa0Vatican\xc4\xa0V" +"arious\xc4\xa0Variety\xc4\xa0Variant\xc4\xa0Vanilla\xc4\xa0Vanessa\xc4\xa0Vampir" +"e\xc4\xa0Valiant\xc4\xa0Valerie\xc4\xa0Utility\xc4\xa0Usually\xc4\xa0Uruguay\xc4" +"\xa0Upgrade\xc4\xa0Updates\xc4\xa0Updated\xc4\xa0Unknown\xc4\xa0Uniform\xc4\xa0U" +"nified\xc4\xa0Unicorn\xc4\xa0Unicode\xc4\xa0Ukraine\xc4\xa0Ubisoft\xc4\xa0UNIVER" +"S\xc4\xa0Typhoon\xc4\xa0Twitter\xc4\xa0Twisted\xc4\xa0Turtles\xc4\xa0Turning\xc4" +"\xa0Turkish\xc4\xa0Tunisia\xc4\xa0Tuesday\xc4\xa0Trudeau\xc4\xa0Trouble\xc4\xa0T" +"rotsky\xc4\xa0Trooper\xc4\xa0Triumph\xc4\xa0Tripoli\xc4\xa0Trinity\xc4\xa0Trilog" +"y\xc4\xa0Trigger\xc4\xa0Trident\xc4\xa0Tribune\xc4\xa0Trayvon\xc4\xa0Travels\xc4" +"\xa0Trainer\xc4\xa0Trailer\xc4\xa0Traffic\xc4\xa0Trading\xc4\xa0Tracker\xc4\xa0T" +"owards\xc4\xa0Tourism\xc4\xa0Totally\xc4\xa0Torrent\xc4\xa0Toronto\xc4\xa0Tornad" +"o\xc4\xa0Torment\xc4\xa0Tonight\xc4\xa0Tolkien\xc4\xa0Tobacco\xc4\xa0Titanic\xc4" +"\xa0Timothy\xc4\xa0Timbers\xc4\xa0Tiffany\xc4\xa0Tickets\xc4\xa0Tibetan\xc4\xa0T" +"hrones\xc4\xa0Thomson\xc4\xa0Thieves\xc4\xa0Thermal\xc4\xa0Theresa\xc4\xa0Therap" +"y\xc4\xa0Theatre\xc4\xa0Theater\xc4\xa0Texture\xc4\xa0Testing\xc4\xa0Templar\xc4" +"\xa0Tempest\xc4\xa0Talking\xc4\xa0Taliban\xc4\xa0Tactics\xc4\xa0TAMADRA\xc4\xa0S" +"ystems\xc4\xa0Syrians\xc4\xa0Sweeney\xc4\xa0Swedish\xc4\xa0Swanson\xc4\xa0Swanse" +"a\xc4\xa0Suzanne\xc4\xa0Survive\xc4\xa0Surgery\xc4\xa0Surface\xc4\xa0Supreme\xc4" +"\xa0Suppose\xc4\xa0Sunrise\xc4\xa0Sundays\xc4\xa0Summers\xc4\xa0Summary\xc4\xa0S" +"uicide\xc4\xa0Suggest\xc4\xa0Suffolk\xc4\xa0Success\xc4\xa0Studios\xc4\xa0Studie" +"s\xc4\xa0Strikes\xc4\xa0Stretch\xc4\xa0Streets\xc4\xa0Strauss\xc4\xa0Stories\xc4" +"\xa0Storage\xc4\xa0Stewart\xc4\xa0Stellar\xc4\xa0Stealth\xc4\xa0Station\xc4\xa0S" +"tartup\xc4\xa0Starter\xc4\xa0Started\xc4\xa0Staples\xc4\xa0Stanton\xc4\xa0Stanle" +"y\xc4\xa0Stamina\xc4\xa0Stadium\xc4\xa0Springs\xc4\xa0Spotify\xc4\xa0Sponsor\xc4" +"\xa0Spokane\xc4\xa0Spoiler\xc4\xa0Spirits\xc4\xa0Spiegel\xc4\xa0Spencer\xc4\xa0S" +"pectre\xc4\xa0Species\xc4\xa0Speaker\xc4\xa0Sparrow\xc4\xa0Sparkle\xc4\xa0Spanis" +"h\xc4\xa0Soviets\xc4\xa0Sources\xc4\xa0Someone\xc4\xa0Somehow\xc4\xa0Somalia\xc4" +"\xa0Solomon\xc4\xa0Society\xc4\xa0Snowden\xc4\xa0Smoking\xc4\xa0Skinner\xc4\xa0S" +"itting\xc4\xa0Sisters\xc4\xa0Simmons\xc4\xa0Silicon\xc4\xa0Silence\xc4\xa0Shuttl" +"e\xc4\xa0Shotgun\xc4\xa0Shortly\xc4\xa0Shooter\xc4\xa0Shirley\xc4\xa0Shining\xc4" +"\xa0Shields\xc4\xa0Sherman\xc4\xa0Sheriff\xc4\xa0Shepard\xc4\xa0Shelter\xc4\xa0S" +"helley\xc4\xa0Sheldon\xc4\xa0Sharing\xc4\xa0Shapiro\xc4\xa0Shannon\xc4\xa0Shadow" +"s\xc4\xa0Seymour\xc4\xa0Severus\xc4\xa0Several\xc4\xa0Seventh\xc4\xa0Serving\xc4" +"\xa0Serpent\xc4\xa0Serbian\xc4\xa0Senegal\xc4\xa0Sending\xc4\xa0Selling\xc4\xa0S" +"eeking\xc4\xa0Secrets\xc4\xa0Seconds\xc4\xa0Seattle\xc4\xa0Seasons\xc4\xa0Scroll" +"s\xc4\xa0Scourge\xc4\xa0Schumer\xc4\xa0Schultz\xc4\xa0Schools\xc4\xa0Schmidt\xc4" +"\xa0Savings\xc4\xa0Satoshi\xc4\xa0Satanic\xc4\xa0Santana\xc4\xa0Sanford\xc4\xa0S" +"anders\xc4\xa0Sanchez\xc4\xa0Samurai\xc4\xa0Samsung\xc4\xa0Sabbath\xc4\xa0SUPPOR" +"T\xc4\xa0SPECIAL\xc4\xa0SECTION\xc4\xa0Rutgers\xc4\xa0Russell\xc4\xa0Runtime\xc4" +"\xa0Running\xc4\xa0Rudolph\xc4\xa0Rowling\xc4\xa0Roundup\xc4\xa0Rouhani\xc4\xa0R" +"onaldo\xc4\xa0Romance\xc4\xa0Rollins\xc4\xa0Rolling\xc4\xa0Rodrigo\xc4\xa0Rodger" +"s\xc4\xa0Rockies\xc4\xa0Rockets\xc4\xa0Roberto\xc4\xa0Robbins\xc4\xa0Ricardo\xc4" +"\xa0Rewards\xc4\xa0Revival\xc4\xa0Revised\xc4\xa0Reviews\xc4\xa0Reverse\xc4\xa0R" +"evenue\xc4\xa0Revenge\xc4\xa0Reuters\xc4\xa0Returns\xc4\xa0Results\xc4\xa0Restor" +"e\xc4\xa0Respond\xc4\xa0Respect\xc4\xa0Request\xc4\xa0Reprodu\xc4\xa0Reports\xc4" +"\xa0Renault\xc4\xa0Removed\xc4\xa0Removal\xc4\xa0Related\xc4\xa0Regular\xc4\xa0R" +"egions\xc4\xa0Regener\xc4\xa0Refresh\xc4\xa0Reflect\xc4\xa0Reduced\xc4\xa0Redmon" +"d\xc4\xa0Records\xc4\xa0Recipes\xc4\xa0Rebirth\xc4\xa0Rebecca\xc4\xa0Reasons\xc4" +"\xa0Reality\xc4\xa0Reading\xc4\xa0Readers\xc4\xa0Reached\xc4\xa0Raymond\xc4\xa0R" +"atings\xc4\xa0Raptors\xc4\xa0Raphael\xc4\xa0Rangers\xc4\xa0Randall\xc4\xa0Rampag" +"e\xc4\xa0Ramirez\xc4\xa0Ramadan\xc4\xa0Raleigh\xc4\xa0Rainbow\xc4\xa0Railway\xc4" +"\xa0Raiders\xc4\xa0Radical\xc4\xa0Radiant\xc4\xa0REUTERS\xc4\xa0RELEASE\xc4\xa0Q" +"uentin\xc4\xa0Quantum\xc4\xa0Quality\xc4\xa0Pyramid\xc4\xa0Puzzles\xc4\xa0Puttin" +"g\xc4\xa0Purpose\xc4\xa0Pumpkin\xc4\xa0Psychic\xc4\xa0Protoss\xc4\xa0Protein\xc4" +"\xa0Prosper\xc4\xa0Prophet\xc4\xa0Promise\xc4\xa0Profile\xc4\xa0Private\xc4\xa0P" +"rivacy\xc4\xa0Printed\xc4\xa0Primary\xc4\xa0Priebus\xc4\xa0Pricing\xc4\xa0Previe" +"w\xc4\xa0Preston\xc4\xa0Prepare\xc4\xa0Premium\xc4\xa0Prelude\xc4\xa0Prairie\xc4" +"\xa0Pradesh\xc4\xa0Powered\xc4\xa0Poverty\xc4\xa0Porsche\xc4\xa0Popular\xc4\xa0P" +"olaris\xc4\xa0Pokemon\xc4\xa0Podesta\xc4\xa0Podcast\xc4\xa0Playing\xc4\xa0Player" +"s\xc4\xa0Playboy\xc4\xa0Plastic\xc4\xa0Planned\xc4\xa0Pistons\xc4\xa0Pirates\xc4" +"\xa0Pioneer\xc4\xa0Pinball\xc4\xa0Pilgrim\xc4\xa0Pikachu\xc4\xa0Physics\xc4\xa0P" +"hoenix\xc4\xa0Philips\xc4\xa0Pharaoh\xc4\xa0Phantom\xc4\xa0Persons\xc4\xa0Persia" +"n\xc4\xa0Perkins\xc4\xa0Perhaps\xc4\xa0Perfect\xc4\xa0Peoples\xc4\xa0Pension\xc4" +"\xa0Penalty\xc4\xa0Pegasus\xc4\xa0Pearson\xc4\xa0Patrick\xc4\xa0Patreon\xc4\xa0P" +"assive\xc4\xa0Passion\xc4\xa0Passing\xc4\xa0Passage\xc4\xa0Parties\xc4\xa0Partia" +"l\xc4\xa0Parsons\xc4\xa0Parkway\xc4\xa0Parking\xc4\xa0Parents\xc4\xa0Paradox\xc4" +"\xa0Pandora\xc4\xa0Paladin\xc4\xa0Painter\xc4\xa0Paddock\xc4\xa0Packers\xc4\xa0P" +"ackage\xc4\xa0Pacific\xc4\xa0PROGRAM\xc4\xa0PRODUCT\xc4\xa0Overall\xc4\xa0Outsid" +"e\xc4\xa0Outlook\xc4\xa0Outdoor\xc4\xa0Ottoman\xc4\xa0Osborne\xc4\xa0Orleans\xc4" +"\xa0Orlando\xc4\xa0Orioles\xc4\xa0Origins\xc4\xa0Organic\xc4\xa0Orbital\xc4\xa0O" +"ptions\xc4\xa0Optimus\xc4\xa0Optical\xc4\xa0Opinion\xc4\xa0Opening\xc4\xa0Ontari" +"o\xc4\xa0OnePlus\xc4\xa0Olympus\xc4\xa0Olympia\xc4\xa0Olivier\xc4\xa0Okinawa\xc4" +"\xa0Okawaru\xc4\xa0Offline\xc4\xa0Offense\xc4\xa0Odyssey\xc4\xa0October\xc4\xa0O" +"bjects\xc4\xa0Obesity\xc4\xa0Oakland\xc4\xa0Nursing\xc4\xa0Numbers\xc4\xa0Nugget" +"s\xc4\xa0Nuclear\xc4\xa0Noticed\xc4\xa0Nothing\xc4\xa0Notably\xc4\xa0Norwich\xc4" +"\xa0Norfolk\xc4\xa0Nirvana\xc4\xa0Nielsen\xc4\xa0Nicolas\xc4\xa0Niagara\xc4\xa0N" +"ewtown\xc4\xa0Newport\xc4\xa0Neville\xc4\xa0Neutral\xc4\xa0Netflix\xc4\xa0Neptun" +"e\xc4\xa0Nemesis\xc4\xa0Neither\xc4\xa0Neander\xc4\xa0Nations\xc4\xa0Natasha\xc4" +"\xa0Natalie\xc4\xa0NETWORK\xc4\xa0Mystery\xc4\xa0Myanmar\xc4\xa0Mustang\xc4\xa0M" +"uslims\xc4\xa0Musical\xc4\xa0Murdoch\xc4\xa0Mulcair\xc4\xa0Mueller\xc4\xa0Mubara" +"k\xc4\xa0Mozilla\xc4\xa0Mothers\xc4\xa0Morocco\xc4\xa0Morning\xc4\xa0Mormons\xc4" +"\xa0Morales\xc4\xa0Monthly\xc4\xa0Montana\xc4\xa0Mondays\xc4\xa0Monarch\xc4\xa0M" +"oments\xc4\xa0Mohamed\xc4\xa0Missing\xc4\xa0Missile\xc4\xa0Miranda\xc4\xa0Miracl" +"e\xc4\xa0Minutes\xc4\xa0Minimum\xc4\xa0Minerva\xc4\xa0Mineral\xc4\xa0Militia\xc4" +"\xa0Mikhail\xc4\xa0Midwest\xc4\xa0Middles\xc4\xa0Michele\xc4\xa0Metroid\xc4\xa0M" +"ethods\xc4\xa0Messiah\xc4\xa0Merrill\xc4\xa0Mermaid\xc4\xa0Mercury\xc4\xa0Memphi" +"s\xc4\xa0Melissa\xc4\xa0Melanie\xc4\xa0Melania\xc4\xa0Meeting\xc4\xa0Medline\xc4" +"\xa0Medical\xc4\xa0Meaning\xc4\xa0Meadows\xc4\xa0McMahon\xc4\xa0McLaren\xc4\xa0M" +"cKenna\xc4\xa0Maxwell\xc4\xa0Maximum\xc4\xa0Maurice\xc4\xa0Matters\xc4\xa0Master" +"y\xc4\xa0Masters\xc4\xa0Massive\xc4\xa0Masonic\xc4\xa0Marxist\xc4\xa0Marxism\xc4" +"\xa0Martian\xc4\xa0Martial\xc4\xa0Married\xc4\xa0Marlins\xc4\xa0Markets\xc4\xa0M" +"arines\xc4\xa0Marilyn\xc4\xa0Manziel\xc4\xa0Mansion\xc4\xa0Manning\xc4\xa0Mankin" +"d\xc4\xa0Mandela\xc4\xa0Manager\xc4\xa0Malcolm\xc4\xa0Majesty\xc4\xa0Mahmoud\xc4" +"\xa0Mahjong\xc4\xa0Magicka\xc4\xa0Magical\xc4\xa0Madonna\xc4\xa0Madness\xc4\xa0M" +"adison\xc4\xa0Machina\xc4\xa0MacBook\xc4\xa0Luckily\xc4\xa0Lucifer\xc4\xa0Lorenz" +"o\xc4\xa0Looking\xc4\xa0Located\xc4\xa0Loading\xc4\xa0Lindsey\xc4\xa0Lindsay\xc4" +"\xa0Lincoln\xc4\xa0Limited\xc4\xa0Library\xc4\xa0Liberty\xc4\xa0Liberia\xc4\xa0L" +"etters\xc4\xa0Lessons\xc4\xa0Lesbian\xc4\xa0Leopard\xc4\xa0Legions\xc4\xa0Legend" +"s\xc4\xa0Lebanon\xc4\xa0Leaving\xc4\xa0Leather\xc4\xa0Learned\xc4\xa0Leading\xc4" +"\xa0Lazarus\xc4\xa0Lawyers\xc4\xa0Laurent\xc4\xa0Latinos\xc4\xa0Lantern\xc4\xa0L" +"ansing\xc4\xa0Landing\xc4\xa0Lambert\xc4\xa0LIMITED\xc4\xa0Kushner\xc4\xa0Kurdis" +"h\xc4\xa0Kubrick\xc4\xa0Krugman\xc4\xa0Kristen\xc4\xa0Krishna\xc4\xa0Kremlin\xc4" +"\xa0Koreans\xc4\xa0Knowing\xc4\xa0Knights\xc4\xa0Klingon\xc4\xa0Kitchen\xc4\xa0K" +"islyak\xc4\xa0Killing\xc4\xa0Kessler\xc4\xa0Kenneth\xc4\xa0Kennedy\xc4\xa0Kendal" +"l\xc4\xa0Keeping\xc4\xa0Kaufman\xc4\xa0Katrina\xc4\xa0Kathryn\xc4\xa0Kashmir\xc4" +"\xa0Karachi\xc4\xa0Justice\xc4\xa0Jupiter\xc4\xa0Judging\xc4\xa0Judaism\xc4\xa0J" +"ourney\xc4\xa0Johnson\xc4\xa0Jinping\xc4\xa0Jessica\xc4\xa0Jericho\xc4\xa0Jenkin" +"s\xc4\xa0Jehovah\xc4\xa0Jeffrey\xc4\xa0Jazeera\xc4\xa0Jarrett\xc4\xa0January\xc4" +"\xa0Janeiro\xc4\xa0Jamaica\xc4\xa0Jakarta\xc4\xa0Jaguars\xc4\xa0Jacques\xc4\xa0J" +"ackets\xc4\xa0JUSTICE\xc4\xa0Islands\xc4\xa0Islamic\xc4\xa0Ireland\xc4\xa0Invali" +"d\xc4\xa0Integer\xc4\xa0Instead\xc4\xa0Instant\xc4\xa0Insight\xc4\xa0Insider\xc4" +"\xa0Inquiry\xc4\xa0Inferno\xc4\xa0Indians\xc4\xa0Imaging\xc4\xa0Imagine\xc4\xa0I" +"llegal\xc4\xa0Ideally\xc4\xa0Ibrahim\xc4\xa0Hyundai\xc4\xa0Hussein\xc4\xa0Hussai" +"n\xc4\xa0Hunters\xc4\xa0Hungary\xc4\xa0Hubbard\xc4\xa0However\xc4\xa0Houston\xc4" +"\xa0Housing\xc4\xa0Hornets\xc4\xa0Hopkins\xc4\xa0Holiday\xc4\xa0Hoffman\xc4\xa0H" +"istory\xc4\xa0Himself\xc4\xa0Hillary\xc4\xa0Hilbert\xc4\xa0Highway\xc4\xa0Highes" +"t\xc4\xa0Higgins\xc4\xa0Herrera\xc4\xa0Herbert\xc4\xa0Helpful\xc4\xa0Heisman\xc4" +"\xa0Heights\xc4\xa0Heather\xc4\xa0Hearing\xc4\xa0Healthy\xc4\xa0Healing\xc4\xa0H" +"ayward\xc4\xa0Hawkins\xc4\xa0Hawking\xc4\xa0Haunted\xc4\xa0Haskell\xc4\xa0Harves" +"t\xc4\xa0Harvard\xc4\xa0Harriet\xc4\xa0Harmony\xc4\xa0Harding\xc4\xa0Harbour\xc4" +"\xa0Hannity\xc4\xa0Handler\xc4\xa0Hancock\xc4\xa0Hampton\xc4\xa0Hammond\xc4\xa0H" +"amburg\xc4\xa0Halifax\xc4\xa0Haitian\xc4\xa0Gujarat\xc4\xa0Guarant\xc4\xa0Growin" +"g\xc4\xa0Grounds\xc4\xa0Griffin\xc4\xa0Grenade\xc4\xa0Gregory\xc4\xa0Greater\xc4" +"\xa0Grayson\xc4\xa0Gravity\xc4\xa0Granted\xc4\xa0Granger\xc4\xa0Gorsuch\xc4\xa0G" +"oodwin\xc4\xa0Goodman\xc4\xa0Goodell\xc4\xa0Goodbye\xc4\xa0Goldman\xc4\xa0Goddes" +"s\xc4\xa0Goddard\xc4\xa0Glasgow\xc4\xa0Glacier\xc4\xa0Gilmore\xc4\xa0Gilbert\xc4" +"\xa0Getting\xc4\xa0Gerrard\xc4\xa0Germany\xc4\xa0Germans\xc4\xa0Genesis\xc4\xa0G" +"eneric\xc4\xa0GeForce\xc4\xa0Gazette\xc4\xa0Gateway\xc4\xa0Garrett\xc4\xa0Garlan" +"d\xc4\xa0Gardner\xc4\xa0Gardens\xc4\xa0Gallery\xc4\xa0Galileo\xc4\xa0Gaddafi\xc4" +"\xa0Gabriel\xc4\xa0GOODMAN\xc4\xa0GENERAL\xc4\xa0""Furious\xc4\xa0""Funding\xc4\xa0" +"""Fridays\xc4\xa0""Freeman\xc4\xa0""Freedom\xc4\xa0""FreeBSD\xc4\xa0""Freddie\xc4" +"\xa0""Frazier\xc4\xa0""Frankie\xc4\xa0""Frances\xc4\xa0""Forward\xc4\xa0""Fortun" +"e\xc4\xa0""Forrest\xc4\xa0""Formula\xc4\xa0""Forever\xc4\xa0""Foreign\xc4\xa0""F" +"lowers\xc4\xa0""Florida\xc4\xa0""Fleming\xc4\xa0""Fitness\xc4\xa0""Fishing\xc4\xa0" +"""Fischer\xc4\xa0""Firstly\xc4\xa0""Firefox\xc4\xa0""Firefly\xc4\xa0""Fiorina\xc4" +"\xa0""Finnish\xc4\xa0""Finland\xc4\xa0""Finding\xc4\xa0""Finance\xc4\xa0""Finall" +"y\xc4\xa0""Figures\xc4\xa0""Fiction\xc4\xa0""Ferrari\xc4\xa0""Females\xc4\xa0""F" +"eldman\xc4\xa0""Feeling\xc4\xa0""Federal\xc4\xa0""Feather\xc4\xa0""Fathers\xc4\xa0" +"""Fashion\xc4\xa0""Farrell\xc4\xa0""Farming\xc4\xa0""Farmers\xc4\xa0""Fantasy\xc4" +"\xa0""Fallout\xc4\xa0""Falling\xc4\xa0""Falcons\xc4\xa0""Fairfax\xc4\xa0""Failur" +"e\xc4\xa0""Faculty\xc4\xa0""Factory\xc4\xa0""Factors\xc4\xa0""Faction\xc4\xa0""F" +"ANTASY\xc4\xa0""Ezekiel\xc4\xa0""Extreme\xc4\xa0""Extract\xc4\xa0""Explain\xc4\xa0" +"""Experts\xc4\xa0""Exactly\xc4\xa0""Everton\xc4\xa0""Everett\xc4\xa0""Everest\xc4" +"\xa0""Evening\xc4\xa0""Evangel\xc4\xa0""Eternal\xc4\xa0""Estonia\xc4\xa0""Essenc" +"e\xc4\xa0""Esports\xc4\xa0""Erdogan\xc4\xa0""Epstein\xc4\xa0""Episode\xc4\xa0""E" +"ntered\xc4\xa0""Enrique\xc4\xa0""English\xc4\xa0""England\xc4\xa0""Enemies\xc4\xa0" +"""Endless\xc4\xa0""Enchant\xc4\xa0""Enabled\xc4\xa0""Empress\xc4\xa0""Empires\xc4" +"\xa0""Emperor\xc4\xa0""Emerson\xc4\xa0""Emerald\xc4\xa0""Embassy\xc4\xa0""Emanue" +"l\xc4\xa0""Ellison\xc4\xa0""Elliott\xc4\xa0""Eleanor\xc4\xa0""Elastic\xc4\xa0""E" +"ffects\xc4\xa0""Edwards\xc4\xa0""Editors\xc4\xa0""Edition\xc4\xa0""Editing\xc4\xa0" +"""Ecuador\xc4\xa0""Economy\xc4\xa0""Ecology\xc4\xa0""Eclipse\xc4\xa0""Eastern\xc4" +"\xa0""Earlier\xc4\xa0""EDITION\xc4\xa0""Dynasty\xc4\xa0""Duterte\xc4\xa0""Duches" +"s\xc4\xa0""Dropbox\xc4\xa0""Driving\xc4\xa0""Drivers\xc4\xa0""Dresden\xc4\xa0""D" +"rawing\xc4\xa0""Dragons\xc4\xa0""Dracula\xc4\xa0""Downing\xc4\xa0""Douglas\xc4\xa0" +"""Dorothy\xc4\xa0""Donovan\xc4\xa0""Donetsk\xc4\xa0""Dollars\xc4\xa0""Dodgers\xc4" +"\xa0""Doctors\xc4\xa0""Display\xc4\xa0""Discord\xc4\xa0""DirectX\xc4\xa0""Digita" +"l\xc4\xa0""Dietary\xc4\xa0""Dickens\xc4\xa0""Diamond\xc4\xa0""Devices\xc4\xa0""D" +"etroit\xc4\xa0""Details\xc4\xa0""Destiny\xc4\xa0""Despite\xc4\xa0""Despair\xc4\xa0" +"""Desmond\xc4\xa0""Desktop\xc4\xa0""Designs\xc4\xa0""Derrick\xc4\xa0""Deposit\xc4" +"\xa0""Denmark\xc4\xa0""Dempsey\xc4\xa0""Demonic\xc4\xa0""Defense\xc4\xa0""Defenc" +"e\xc4\xa0""Default\xc4\xa0""Decoder\xc4\xa0""Deborah\xc4\xa0""Daytona\xc4\xa0""D" +"awkins\xc4\xa0""Darrell\xc4\xa0""Darling\xc4\xa0""Daniels\xc4\xa0""Dancing\xc4\xa0" +"""DEFENSE\xc4\xa0""Cynthia\xc4\xa0""Cycling\xc4\xa0""Cutting\xc4\xa0""Customs\xc4" +"\xa0""Curious\xc4\xa0""Culture\xc4\xa0""Cthulhu\xc4\xa0""Crystal\xc4\xa0""Crushe" +"r\xc4\xa0""Cruiser\xc4\xa0""Crowley\xc4\xa0""Critics\xc4\xa0""Crimson\xc4\xa0""C" +"rimean\xc4\xa0""Cricket\xc4\xa0""Credits\xc4\xa0""Creator\xc4\xa0""Created\xc4\xa0" +"""Coyotes\xc4\xa0""Cowboys\xc4\xa0""Cousins\xc4\xa0""Courier\xc4\xa0""Courage\xc4" +"\xa0""Country\xc4\xa0""Counter\xc4\xa0""Counsel\xc4\xa0""Council\xc4\xa0""Coulte" +"r\xc4\xa0""Costume\xc4\xa0""Cortana\xc4\xa0""Corsair\xc4\xa0""Cornell\xc4\xa0""C" +"ooking\xc4\xa0""Cookies\xc4\xa0""Context\xc4\xa0""Contest\xc4\xa0""Contact\xc4\xa0" +"""Console\xc4\xa0""Consent\xc4\xa0""Conquer\xc4\xa0""Conduct\xc4\xa0""Concord\xc4" +"\xa0""Concert\xc4\xa0""Concern\xc4\xa0""Concent\xc4\xa0""Compton\xc4\xa0""Comple" +"x\xc4\xa0""Compass\xc4\xa0""Company\xc4\xa0""Compact\xc4\xa0""Commons\xc4\xa0""C" +"omfort\xc4\xa0""Comcast\xc4\xa0""Colonel\xc4\xa0""Cologne\xc4\xa0""Collins\xc4\xa0" +"""Coleman\xc4\xa0""Colbert\xc4\xa0""Coconut\xc4\xa0""Coastal\xc4\xa0""Cluster\xc4" +"\xa0""Closing\xc4\xa0""Clojure\xc4\xa0""Climate\xc4\xa0""Clicker\xc4\xa0""Clemso" +"n\xc4\xa0""Clement\xc4\xa0""Clearly\xc4\xa0""Clayton\xc4\xa0""Claudia\xc4\xa0""C" +"lasses\xc4\xa0""Clapper\xc4\xa0""Citadel\xc4\xa0""Circuit\xc4\xa0""Christy\xc4\xa0" +"""Chomsky\xc4\xa0""Chocobo\xc4\xa0""Chinese\xc4\xa0""Chimera\xc4\xa0""Chilean\xc4" +"\xa0""Chicken\xc4\xa0""Chicago\xc4\xa0""Chevron\xc4\xa0""Chester\xc4\xa0""Chenna" +"i\xc4\xa0""Chelsea\xc4\xa0""Charter\xc4\xa0""Charlie\xc4\xa0""Charity\xc4\xa0""C" +"harges\xc4\xa0""Chapman\xc4\xa0""Channel\xc4\xa0""Changes\xc4\xa0""Changed\xc4\xa0" +"""Chandra\xc4\xa0""Century\xc4\xa0""Central\xc4\xa0""Centers\xc4\xa0""Celtics\xc4" +"\xa0""Celsius\xc4\xa0""Catalog\xc4\xa0""Catalan\xc4\xa0""Casting\xc4\xa0""Cassid" +"y\xc4\xa0""Cascade\xc4\xa0""Cartoon\xc4\xa0""Carroll\xc4\xa0""Carrier\xc4\xa0""C" +"arolyn\xc4\xa0""Carnage\xc4\xa0""Carlton\xc4\xa0""Carlson\xc4\xa0""Cardiff\xc4\xa0" +"""Capture\xc4\xa0""Caption\xc4\xa0""Captain\xc4\xa0""Capitol\xc4\xa0""Canucks\xc4" +"\xa0""Cameron\xc4\xa0""Calling\xc4\xa0""Calgary\xc4\xa0""Cabrera\xc4\xa0""Cabine" +"t\xc4\xa0""CONTROL\xc4\xa0""Butcher\xc4\xa0""Burning\xc4\xa0""Burnett\xc4\xa0""B" +"urgess\xc4\xa0""Bullets\xc4\xa0""Builder\xc4\xa0""Buffett\xc4\xa0""Buffalo\xc4\xa0" +"""Buckley\xc4\xa0""Browser\xc4\xa0""Broncos\xc4\xa0""Britons\xc4\xa0""British\xc4" +"\xa0""Britann\xc4\xa0""Britain\xc4\xa0""Bristol\xc4\xa0""Brigham\xc4\xa0""Brigad" +"e\xc4\xa0""Bridges\xc4\xa0""Brewing\xc4\xa0""Brewery\xc4\xa0""Brewers\xc4\xa0""B" +"rennan\xc4\xa0""Brendan\xc4\xa0""Breaker\xc4\xa0""Brandon\xc4\xa0""Bradley\xc4\xa0" +"""Bowling\xc4\xa0""Bourbon\xc4\xa0""Boulder\xc4\xa0""Borough\xc4\xa0""Borders\xc4" +"\xa0""Booster\xc4\xa0""Boolean\xc4\xa0""Bolivia\xc4\xa0""Boehner\xc4\xa0""Blosso" +"m\xc4\xa0""Blessed\xc4\xa0""Blazing\xc4\xa0""Blazers\xc4\xa0""Blaster\xc4\xa0""B" +"iology\xc4\xa0""Binding\xc4\xa0""Billion\xc4\xa0""Bigfoot\xc4\xa0""Bicycle\xc4\xa0" +"""Beverly\xc4\xa0""Between\xc4\xa0""Besides\xc4\xa0""Bermuda\xc4\xa0""Bentley\xc4" +"\xa0""Bennett\xc4\xa0""Bengals\xc4\xa0""Believe\xc4\xa0""Belgium\xc4\xa0""Belgia" +"n\xc4\xa0""Belfast\xc4\xa0""Belarus\xc4\xa0""Beijing\xc4\xa0""Bedford\xc4\xa0""B" +"eckham\xc4\xa0""Because\xc4\xa0""Beatles\xc4\xa0""Bearing\xc4\xa0""Battles\xc4\xa0" +"""Battery\xc4\xa0""Bastard\xc4\xa0""Barrier\xc4\xa0""Barrett\xc4\xa0""Barnett\xc4" +"\xa0""Barkley\xc4\xa0""Barbara\xc4\xa0""Baptist\xc4\xa0""Banking\xc4\xa0""Bangko" +"k\xc4\xa0""Balloon\xc4\xa0""Ballard\xc4\xa0""Balkans\xc4\xa0""Baldwin\xc4\xa0""B" +"ahrain\xc4\xa0""Bahamas\xc4\xa0""Baghdad\xc4\xa0""Babylon\xc4\xa0""Awesome\xc4\xa0" +"""Awakens\xc4\xa0""Average\xc4\xa0""Authors\xc4\xa0""Augusta\xc4\xa0""Auditor\xc4" +"\xa0""Auction\xc4\xa0""Attempt\xc4\xa0""Attacks\xc4\xa0""Atlanta\xc4\xa0""Assaul" +"t\xc4\xa0""Assange\xc4\xa0""Artists\xc4\xa0""Artemis\xc4\xa0""Arsenal\xc4\xa0""A" +"rmored\xc4\xa0""Arizona\xc4\xa0""Arduino\xc4\xa0""Arabian\xc4\xa0""Applied\xc4\xa0" +"""Appears\xc4\xa0""Appeals\xc4\xa0""Anxiety\xc4\xa0""Antonio\xc4\xa0""Antioch\xc4" +"\xa0""Anthony\xc4\xa0""Answers\xc4\xa0""Another\xc4\xa0""Animals\xc4\xa0""Angula" +"r\xc4\xa0""Angeles\xc4\xa0""Anfield\xc4\xa0""Android\xc4\xa0""Andrews\xc4\xa0""A" +"ndreas\xc4\xa0""Anarchy\xc4\xa0""Analyst\xc4\xa0""Anaheim\xc4\xa0""Amnesty\xc4\xa0" +"""Ambrose\xc4\xa0""Amazing\xc4\xa0""Amateur\xc4\xa0""Alvarez\xc4\xa0""Alright\xc4" +"\xa0""Already\xc4\xa0""Allison\xc4\xa0""Alibaba\xc4\xa0""Algeria\xc4\xa0""Alcoho" +"l\xc4\xa0""Alchemy\xc4\xa0""Alberto\xc4\xa0""Alberta\xc4\xa0""Albania\xc4\xa0""A" +"labama\xc4\xa0""Airways\xc4\xa0""Airport\xc4\xa0""Agility\xc4\xa0""Against\xc4\xa0" +"""Afghans\xc4\xa0""Affairs\xc4\xa0""Adviser\xc4\xa0""Admiral\xc4\xa0""Adinida\xc4" +"\xa0""Address\xc4\xa0""Adapter\xc4\xa0""Adamant\xc4\xa0""Actress\xc4\xa0""Action" +"s\xc4\xa0""Acceler\xc4\xa0""Academy\xc4\xa0""Abyssal\xc4\xa0""Abraham\xc4\xa0""A" +"bility\xc4\xa0""Abandon\xc4\xa0""Aadhaar\xc4\xa0""ARTICLE\xc4\xa0""AMERICA\xc4\xa0" +"""ACTIONSxxxxxxxxwcsstoreutteringtymologysmanshiprupulousromancerreetingsptrolle" +"rothermalomorphicolicitedogenesisogeneousministicmbudsmanivariateitheringistrate" +"sillationibrarianhandedlygovtrackcatentrybreakersblogspotbleacherauntletsatlanti" +"cangeringandowskialdehydeaciouslyVersionsUntitledTexturesSynopsisSemitismReviewe" +"rReviewedREDACTEDOverrideOOOOOOOOMpServerMarginalListenerIteratorInstanceHAHAHAH" +"AGameplayGGGGGGGGFootnoteFilenameDetailedCallbackCRIPTIONBILITIESAttemptsAAAAAAA" +"A@@@@@@@@\x3f\x3f\x3f\x3f\x3f\x3f\x3f\x3f>>>>>>>>::::::::6666666600200000-\x2b-\x2b" +"-\x2b-\x2b,,,,,,,,\x22:\x22\x22},{\x22!!!!!!!!\xc4\xa0zoning\xc4\xa0zipper\xc4\xa0" +"youths\xc4\xa0yogurt\xc4\xa0yields\xc4\xa0yellow\xc4\xa0yelled\xc4\xa0yearly\xc4" +"\xa0writes\xc4\xa0wrists\xc4\xa0wrench\xc4\xa0wounds\xc4\xa0wouldn\xc4\xa0worthy" +"\xc4\xa0worlds\xc4\xa0worked\xc4\xa0wooden\xc4\xa0wolves\xc4\xa0within\xc4\xa0wi" +"shes\xc4\xa0wished\xc4\xa0wisely\xc4\xa0wisdom\xc4\xa0wiring\xc4\xa0wiping\xc4\xa0" +"winger\xc4\xa0wildly\xc4\xa0widest\xc4\xa0widely\xc4\xa0wicked\xc4\xa0wholly\xc4" +"\xa0whites\xc4\xa0whisky\xc4\xa0whilst\xc4\xa0whence\xc4\xa0wheels\xc4\xa0whales" +"\xc4\xa0weighs\xc4\xa0weekly\xc4\xa0webcam\xc4\xa0wearer\xc4\xa0weaker\xc4\xa0wa" +"ving\xc4\xa0wastes\xc4\xa0wasted\xc4\xa0washed\xc4\xa0warped\xc4\xa0warned\xc4\xa0" +"warmth\xc4\xa0warmer\xc4\xa0warmed\xc4\xa0wanted\xc4\xa0waning\xc4\xa0walked\xc4" +"\xa0waking\xc4\xa0waived\xc4\xa0waiter\xc4\xa0waited\xc4\xa0waging\xc4\xa0vulgar" +"\xc4\xa0voyage\xc4\xa0voting\xc4\xa0voters\xc4\xa0vortex\xc4\xa0voices\xc4\xa0vo" +"iced\xc4\xa0vocals\xc4\xa0visits\xc4\xa0violin\xc4\xa0violet\xc4\xa0viewed\xc4\xa0" +"videot\xc4\xa0videos\xc4\xa0videog\xc4\xa0viable\xc4\xa0vetted\xc4\xa0vetoed\xc4" +"\xa0vested\xc4\xa0vertex\xc4\xa0versus\xc4\xa0verses\xc4\xa0venues\xc4\xa0velvet" +"\xc4\xa0veiled\xc4\xa0vastly\xc4\xa0varies\xc4\xa0varied\xc4\xa0vaping\xc4\xa0va" +"nity\xc4\xa0valves\xc4\xa0values\xc4\xa0valued\xc4\xa0vacuum\xc4\xa0vacant\xc4\xa0" +"utmost\xc4\xa0uterus\xc4\xa0usable\xc4\xa0urging\xc4\xa0uptick\xc4\xa0uptake\xc4" +"\xa0upside\xc4\xa0uproar\xc4\xa0upkeep\xc4\xa0uphill\xc4\xa0upheld\xc4\xa0upbeat" +"\xc4\xa0unused\xc4\xa0untrue\xc4\xa0untold\xc4\xa0unsure\xc4\xa0unseen\xc4\xa0un" +"safe\xc4\xa0unpaid\xc4\xa0unmist\xc4\xa0unless\xc4\xa0unjust\xc4\xa0united\xc4\xa0" +"unison\xc4\xa0unions\xc4\xa0uneven\xc4\xa0uneasy\xc4\xa0undone\xc4\xa0undead\xc4" +"\xa0uncomp\xc4\xa0unborn\xc4\xa0unable\xc4\xa0tyrant\xc4\xa0typing\xc4\xa0twitch" +"\xc4\xa0twists\xc4\xa0twenty\xc4\xa0twelve\xc4\xa0tweets\xc4\xa0tweaks\xc4\xa0tu" +"rned\xc4\xa0turkey\xc4\xa0tuning\xc4\xa0tumors\xc4\xa0tumble\xc4\xa0tucked\xc4\xa0" +"tubing\xc4\xa0trying\xc4\xa0truths\xc4\xa0trusts\xc4\xa0trucks\xc4\xa0trough\xc4" +"\xa0trophy\xc4\xa0tropes\xc4\xa0troops\xc4\xa0trolls\xc4\xa0tripod\xc4\xa0tricky" +"\xc4\xa0tricks\xc4\xa0tribes\xc4\xa0tribal\xc4\xa0trials\xc4\xa0trendy\xc4\xa0tr" +"ends\xc4\xa0treaty\xc4\xa0treats\xc4\xa0trance\xc4\xa0traits\xc4\xa0trains\xc4\xa0" +"trails\xc4\xa0trades\xc4\xa0traded\xc4\xa0tracts\xc4\xa0tracks\xc4\xa0traces\xc4" +"\xa0traced\xc4\xa0toxins\xc4\xa0towers\xc4\xa0towels\xc4\xa0touted\xc4\xa0toured" +"\xc4\xa0totals\xc4\xa0tossed\xc4\xa0torque\xc4\xa0topped\xc4\xa0topics\xc4\xa0to" +"nnes\xc4\xa0tokens\xc4\xa0toggle\xc4\xa0titles\xc4\xa0titled\xc4\xa0tipped\xc4\xa0" +"timing\xc4\xa0timers\xc4\xa0timely\xc4\xa0timber\xc4\xa0tilted\xc4\xa0tigers\xc4" +"\xa0thumbs\xc4\xa0thrust\xc4\xa0throws\xc4\xa0thrown\xc4\xa0throne\xc4\xa0thrive" +"\xc4\xa0thirty\xc4\xa0thirds\xc4\xa0thinly\xc4\xa0thinks\xc4\xa0things\xc4\xa0th" +"ighs\xc4\xa0thesis\xc4\xa0theory\xc4\xa0thence\xc4\xa0themes\xc4\xa0themed\xc4\xa0" +"theirs\xc4\xa0thefts\xc4\xa0thanks\xc4\xa0texted\xc4\xa0tether\xc4\xa0tested\xc4" +"\xa0termed\xc4\xa0tenure\xc4\xa0tennis\xc4\xa0tenets\xc4\xa0tendon\xc4\xa0tender" +"\xc4\xa0tended\xc4\xa0teaser\xc4\xa0teased\xc4\xa0teamed\xc4\xa0taxing\xc4\xa0ta" +"vern\xc4\xa0taught\xc4\xa0tastes\xc4\xa0tasted\xc4\xa0tasked\xc4\xa0tapped\xc4\xa0" +"tantal\xc4\xa0tanker\xc4\xa0tandem\xc4\xa0taller\xc4\xa0talked\xc4\xa0taking\xc4" +"\xa0tagged\xc4\xa0syntax\xc4\xa0swords\xc4\xa0swings\xc4\xa0sweets\xc4\xa0sweeps" +"\xc4\xa0sweaty\xc4\xa0sweats\xc4\xa0swayed\xc4\xa0surges\xc4\xa0surged\xc4\xa0su" +"rely\xc4\xa0supper\xc4\xa0superb\xc4\xa0sunset\xc4\xa0summit\xc4\xa0summed\xc4\xa0" +"sulfur\xc4\xa0suites\xc4\xa0suited\xc4\xa0sugars\xc4\xa0suffix\xc4\xa0sucker\xc4" +"\xa0sucked\xc4\xa0subway\xc4\xa0subtly\xc4\xa0subtle\xc4\xa0subter\xc4\xa0subset" +"\xc4\xa0subjug\xc4\xa0styles\xc4\xa0styled\xc4\xa0sturdy\xc4\xa0stunts\xc4\xa0st" +"ruck\xc4\xa0stroll\xc4\xa0strips\xc4\xa0strife\xc4\xa0straps\xc4\xa0storms\xc4\xa0" +"stores\xc4\xa0stored\xc4\xa0stones\xc4\xa0stolen\xc4\xa0stoked\xc4\xa0stocks\xc4" +"\xa0sticky\xc4\xa0sticks\xc4\xa0steals\xc4\xa0steady\xc4\xa0stayed\xc4\xa0status" +"\xc4\xa0states\xc4\xa0stated\xc4\xa0starts\xc4\xa0stares\xc4\xa0stared\xc4\xa0st" +"arch\xc4\xa0stands\xc4\xa0stamps\xc4\xa0stalls\xc4\xa0stakes\xc4\xa0stairs\xc4\xa0" +"stains\xc4\xa0stages\xc4\xa0staged\xc4\xa0stacks\xc4\xa0stable\xc4\xa0squats\xc4" +"\xa0squash\xc4\xa0squads\xc4\xa0spying\xc4\xa0sprung\xc4\xa0sprint\xc4\xa0sprang" +"\xc4\xa0sports\xc4\xa0spores\xc4\xa0sponge\xc4\xa0spoken\xc4\xa0splits\xc4\xa0sp" +"lash\xc4\xa0spiral\xc4\xa0spinal\xc4\xa0spills\xc4\xa0spikes\xc4\xa0spiked\xc4\xa0" +"spices\xc4\xa0spends\xc4\xa0spells\xc4\xa0speedy\xc4\xa0speeds\xc4\xa0spears\xc4" +"\xa0speaks\xc4\xa0spawns\xc4\xa0sparse\xc4\xa0sparks\xc4\xa0spared\xc4\xa0spaced" +"\xc4\xa0souven\xc4\xa0sounds\xc4\xa0sought\xc4\xa0sorted\xc4\xa0sorrow\xc4\xa0so" +"rely\xc4\xa0sooner\xc4\xa0solves\xc4\xa0solved\xc4\xa0solemn\xc4\xa0solely\xc4\xa0" +"solder\xc4\xa0softly\xc4\xa0softer\xc4\xa0sodium\xc4\xa0sociop\xc4\xa0soccer\xc4" +"\xa0soared\xc4\xa0soaked\xc4\xa0sneaky\xc4\xa0snakes\xc4\xa0snacks\xc4\xa0smokes" +"\xc4\xa0smoked\xc4\xa0smiles\xc4\xa0smiled\xc4\xa0smells\xc4\xa0slowly\xc4\xa0sl" +"ower\xc4\xa0slowed\xc4\xa0sloppy\xc4\xa0slopes\xc4\xa0slider\xc4\xa0slices\xc4\xa0" +"sliced\xc4\xa0sleepy\xc4\xa0sleeps\xc4\xa0slaves\xc4\xa0slated\xc4\xa0skulls\xc4" +"\xa0skirts\xc4\xa0skinny\xc4\xa0skills\xc4\xa0skiing\xc4\xa0skewed\xc4\xa0sizing" +"\xc4\xa0sizeof\xc4\xa0sitcom\xc4\xa0sinful\xc4\xa0simply\xc4\xa0simmer\xc4\xa0si" +"lver\xc4\xa0signed\xc4\xa0sights\xc4\xa0sighed\xc4\xa0shrunk\xc4\xa0shrine\xc4\xa0" +"shrimp\xc4\xa0showed\xc4\xa0shovel\xc4\xa0shoved\xc4\xa0shouts\xc4\xa0shores\xc4" +"\xa0shoots\xc4\xa0shocks\xc4\xa0shitty\xc4\xa0shirts\xc4\xa0shines\xc4\xa0shifts" +"\xc4\xa0shells\xc4\xa0sheets\xc4\xa0shaved\xc4\xa0sharks\xc4\xa0shares\xc4\xa0sh" +"ared\xc4\xa0shards\xc4\xa0shapes\xc4\xa0shaped\xc4\xa0shaman\xc4\xa0shakes\xc4\xa0" +"shaken\xc4\xa0shades\xc4\xa0shader\xc4\xa0sexist\xc4\xa0sexism\xc4\xa0sewing\xc4" +"\xa0sewage\xc4\xa0setups\xc4\xa0serves\xc4\xa0served\xc4\xa0sermon\xc4\xa0series" +"\xc4\xa0serial\xc4\xa0senses\xc4\xa0sensed\xc4\xa0sender\xc4\xa0senate\xc4\xa0se" +"lves\xc4\xa0seldom\xc4\xa0seized\xc4\xa0seemed\xc4\xa0seeing\xc4\xa0seeded\xc4\xa0" +"seated\xc4\xa0sealed\xc4\xa0screws\xc4\xa0scraps\xc4\xa0scrape\xc4\xa0scouts\xc4" +"\xa0scores\xc4\xa0scorer\xc4\xa0scored\xc4\xa0scenic\xc4\xa0scenes\xc4\xa0scaven" +"\xc4\xa0scares\xc4\xa0scared\xc4\xa0scales\xc4\xa0scaled\xc4\xa0saying\xc4\xa0sa" +"vior\xc4\xa0savage\xc4\xa0sauces\xc4\xa0satire\xc4\xa0sanity\xc4\xa0salute\xc4\xa0" +"salmon\xc4\xa0saliva\xc4\xa0saline\xc4\xa0salary\xc4\xa0salads\xc4\xa0saints\xc4" +"\xa0sailed\xc4\xa0safety\xc4\xa0safest\xc4\xa0safely\xc4\xa0saddle\xc4\xa0sacred" +"\xc4\xa0sacked\xc4\xa0rushes\xc4\xa0rusher\xc4\xa0rushed\xc4\xa0runway\xc4\xa0ru" +"noff\xc4\xa0rumors\xc4\xa0rulers\xc4\xa0ruined\xc4\xa0rugged\xc4\xa0rubble\xc4\xa0" +"rubber\xc4\xa0rubbed\xc4\xa0routes\xc4\xa0routed\xc4\xa0rounds\xc4\xa0rotten\xc4" +"\xa0rooted\xc4\xa0roller\xc4\xa0rolled\xc4\xa0rocked\xc4\xa0robust\xc4\xa0robots" +"\xc4\xa0robbed\xc4\xa0roared\xc4\xa0rivers\xc4\xa0rivals\xc4\xa0risked\xc4\xa0ri" +"sing\xc4\xa0ripple\xc4\xa0ripped\xc4\xa0rights\xc4\xa0rigged\xc4\xa0rifles\xc4\xa0" +"riding\xc4\xa0riders\xc4\xa0ridden\xc4\xa0richer\xc4\xa0ribbon\xc4\xa0revolt\xc4" +"\xa0reused\xc4\xa0retina\xc4\xa0retake\xc4\xa0resusc\xc4\xa0rested\xc4\xa0resize" +"\xc4\xa0reprim\xc4\xa0replen\xc4\xa0replay\xc4\xa0repaid\xc4\xa0rented\xc4\xa0re" +"medy\xc4\xa0remake\xc4\xa0reload\xc4\xa0relies\xc4\xa0relief\xc4\xa0relied\xc4\xa0" +"relics\xc4\xa0refurb\xc4\xa0refuel\xc4\xa0reflex\xc4\xa0refill\xc4\xa0refers\xc4" +"\xa0reddit\xc4\xa0recomp\xc4\xa0recomb\xc4\xa0recoil\xc4\xa0recite\xc4\xa0recapt" +"\xc4\xa0rebutt\xc4\xa0rebuke\xc4\xa0reborn\xc4\xa0reboot\xc4\xa0rebels\xc4\xa0re" +"bate\xc4\xa0realms\xc4\xa0really\xc4\xa0reacts\xc4\xa0ratios\xc4\xa0rather\xc4\xa0" +"rarity\xc4\xa0rarely\xc4\xa0raping\xc4\xa0ranked\xc4\xa0ranges\xc4\xa0ranger\xc4" +"\xa0ranged\xc4\xa0raises\xc4\xa0raised\xc4\xa0raided\xc4\xa0raging\xc4\xa0radius" +"\xc4\xa0radios\xc4\xa0radial\xc4\xa0racket\xc4\xa0racked\xc4\xa0racism\xc4\xa0ra" +"cing\xc4\xa0quotes\xc4\xa0quoted\xc4\xa0quotas\xc4\xa0quirky\xc4\xa0quirks\xc4\xa0" +"queues\xc4\xa0quests\xc4\xa0queens\xc4\xa0quartz\xc4\xa0quarry\xc4\xa0quaint\xc4" +"\xa0quadru\xc4\xa0python\xc4\xa0pushes\xc4\xa0pushed\xc4\xa0purple\xc4\xa0purity" +"\xc4\xa0purely\xc4\xa0puppet\xc4\xa0pupils\xc4\xa0pumped\xc4\xa0pulses\xc4\xa0pu" +"lled\xc4\xa0proves\xc4\xa0proven\xc4\xa0proved\xc4\xa0proofs\xc4\xa0probes\xc4\xa0" +"prizes\xc4\xa0prized\xc4\xa0prints\xc4\xa0printf\xc4\xa0primer\xc4\xa0primed\xc4" +"\xa0primal\xc4\xa0pricey\xc4\xa0prices\xc4\xa0priced\xc4\xa0pretty\xc4\xa0prefix" +"\xc4\xa0predis\xc4\xa0precon\xc4\xa0prayed\xc4\xa0powers\xc4\xa0poured\xc4\xa0po" +"unds\xc4\xa0posted\xc4\xa0postal\xc4\xa0posing\xc4\xa0ported\xc4\xa0porous\xc4\xa0" +"popped\xc4\xa0poorly\xc4\xa0poorer\xc4\xa0pooled\xc4\xa0ponies\xc4\xa0ponder\xc4" +"\xa0pollen\xc4\xa0polled\xc4\xa0poking\xc4\xa0poised\xc4\xa0points\xc4\xa0poetry" +"\xc4\xa0poetic\xc4\xa0podium\xc4\xa0plight\xc4\xa0plenty\xc4\xa0played\xc4\xa0pl" +"ates\xc4\xa0plasma\xc4\xa0plaque\xc4\xa0plants\xc4\xa0planes\xc4\xa0plains\xc4\xa0" +"places\xc4\xa0placed\xc4\xa0pixels\xc4\xa0pitted\xc4\xa0piston\xc4\xa0pissed\xc4" +"\xa0piracy\xc4\xa0piping\xc4\xa0pinned\xc4\xa0pilots\xc4\xa0pillow\xc4\xa0piling" +"\xc4\xa0pigeon\xc4\xa0pieces\xc4\xa0picnic\xc4\xa0picked\xc4\xa0photos\xc4\xa0ph" +"otoc\xc4\xa0phones\xc4\xa0phases\xc4\xa0phased\xc4\xa0penned\xc4\xa0pencil\xc4\xa0" +"pelvic\xc4\xa0pegged\xc4\xa0peeled\xc4\xa0pedoph\xc4\xa0pedals\xc4\xa0peaked\xc4" +"\xa0payout\xc4\xa0payoff\xc4\xa0paying\xc4\xa0payday\xc4\xa0paving\xc4\xa0pauses" +"\xc4\xa0paused\xc4\xa0pastry\xc4\xa0passes\xc4\xa0passed\xc4\xa0partly\xc4\xa0pa" +"rted\xc4\xa0parser\xc4\xa0parsed\xc4\xa0parole\xc4\xa0parody\xc4\xa0parked\xc4\xa0" +"parity\xc4\xa0parish\xc4\xa0pardon\xc4\xa0paraph\xc4\xa0params\xc4\xa0parade\xc4" +"\xa0papers\xc4\xa0panels\xc4\xa0palate\xc4\xa0palace\xc4\xa0paired\xc4\xa0paints" +"\xc4\xa0paddle\xc4\xa0padded\xc4\xa0packed\xc4\xa0pacing\xc4\xa0oxygen\xc4\xa0ow" +"ning\xc4\xa0overly\xc4\xa0overcl\xc4\xa0outset\xc4\xa0outper\xc4\xa0outcry\xc4\xa0" +"outage\xc4\xa0ousted\xc4\xa0ounces\xc4\xa0others\xc4\xa0oscill\xc4\xa0orgasm\xc4" +"\xa0organs\xc4\xa0orders\xc4\xa0ordeal\xc4\xa0orbits\xc4\xa0orally\xc4\xa0opting" +"\xc4\xa0optics\xc4\xa0openly\xc4\xa0opener\xc4\xa0opened\xc4\xa0opaque\xc4\xa0on" +"look\xc4\xa0online\xc4\xa0onions\xc4\xa0oldest\xc4\xa0offers\xc4\xa0oceans\xc4\xa0" +"occurs\xc4\xa0occult\xc4\xa0obfusc\xc4\xa0nurses\xc4\xa0nudity\xc4\xa0nozzle\xc4" +"\xa0novice\xc4\xa0novels\xc4\xa0noting\xc4\xa0notify\xc4\xa0noises\xc4\xa0nodded" +"\xc4\xa0nobody\xc4\xa0nobles\xc4\xa0ninety\xc4\xa0nights\xc4\xa0nickel\xc4\xa0ni" +"cely\xc4\xa0newest\xc4\xa0neural\xc4\xa0netted\xc4\xa0nested\xc4\xa0nerves\xc4\xa0" +"nephew\xc4\xa0negate\xc4\xa0needed\xc4\xa0neatly\xc4\xa0nearly\xc4\xa0nearer\xc4" +"\xa0nearby\xc4\xa0na\xc3\x83\xc2\xafve\xc4\xa0nausea\xc4\xa0nature\xc4\xa0naming" +"\xc4\xa0namely\xc4\xa0nailed\xc4\xa0myself\xc4\xa0myriad\xc4\xa0muzzle\xc4\xa0mu" +"ster\xc4\xa0multif\xc4\xa0moving\xc4\xa0movies\xc4\xa0mouths\xc4\xa0mounts\xc4\xa0" +"motors\xc4\xa0mostly\xc4\xa0mosaic\xc4\xa0mortar\xc4\xa0morbid\xc4\xa0morals\xc4" +"\xa0morale\xc4\xa0months\xc4\xa0molten\xc4\xa0molded\xc4\xa0models\xc4\xa0mocked" +"\xc4\xa0mobile\xc4\xa0mixing\xc4\xa0misuse\xc4\xa0misses\xc4\xa0missed\xc4\xa0mi" +"sled\xc4\xa0misery\xc4\xa0minors\xc4\xa0mining\xc4\xa0miners\xc4\xa0minded\xc4\xa0" +"minced\xc4\xa0mildly\xc4\xa0mighty\xc4\xa0midway\xc4\xa0middle\xc4\xa0midday\xc4" +"\xa0metres\xc4\xa0methyl\xc4\xa0meters\xc4\xa0meteor\xc4\xa0metast\xc4\xa0metals" +"\xc4\xa0messed\xc4\xa0mesmer\xc4\xa0meshes\xc4\xa0merits\xc4\xa0merger\xc4\xa0me" +"rged\xc4\xa0merely\xc4\xa0menace\xc4\xa0memory\xc4\xa0memoir\xc4\xa0melted\xc4\xa0" +"melody\xc4\xa0medium\xc4\xa0median\xc4\xa0medial\xc4\xa0medals\xc4\xa0meager\xc4" +"\xa0mayors\xc4\xa0mayhem\xc4\xa0matrix\xc4\xa0mating\xc4\xa0masses\xc4\xa0masked" +"\xc4\xa0mashed\xc4\xa0mascot\xc4\xa0martyr\xc4\xa0marrow\xc4\xa0markup\xc4\xa0ma" +"rble\xc4\xa0mapped\xc4\xa0manure\xc4\xa0mantra\xc4\xa0mantle\xc4\xa0manned\xc4\xa0" +"maniac\xc4\xa0malice\xc4\xa0making\xc4\xa0makeup\xc4\xa0makers\xc4\xa0majors\xc4" +"\xa0mainly\xc4\xa0mailed\xc4\xa0maiden\xc4\xa0macros\xc4\xa0lyrics\xc4\xa0luxury" +"\xc4\xa0lumber\xc4\xa0lubric\xc4\xa0lowest\xc4\xa0lowers\xc4\xa0loving\xc4\xa0lo" +"vers\xc4\xa0lovely\xc4\xa0lounge\xc4\xa0loudly\xc4\xa0louder\xc4\xa0losses\xc4\xa0" +"losing\xc4\xa0losers\xc4\xa0looted\xc4\xa0loosen\xc4\xa0lookup\xc4\xa0looked\xc4" +"\xa0longer\xc4\xa0lonely\xc4\xa0logger\xc4\xa0logged\xc4\xa0lodged\xc4\xa0locker" +"\xc4\xa0locked\xc4\xa0locals\xc4\xa0locale\xc4\xa0loader\xc4\xa0loaded\xc4\xa0li" +"zard\xc4\xa0living\xc4\xa0lively\xc4\xa0little\xc4\xa0litres\xc4\xa0listed\xc4\xa0" +"liquor\xc4\xa0linked\xc4\xa0lining\xc4\xa0lineup\xc4\xa0linear\xc4\xa0limits\xc4" +"\xa0liking\xc4\xa0likely\xc4\xa0lifted\xc4\xa0liable\xc4\xa0levied\xc4\xa0levers" +"\xc4\xa0levels\xc4\xa0lethal\xc4\xa0lesser\xc4\xa0lessen\xc4\xa0leptin\xc4\xa0le" +"nses\xc4\xa0legacy\xc4\xa0ledger\xc4\xa0leaves\xc4\xa0leases\xc4\xa0leased\xc4\xa0" +"learnt\xc4\xa0learns\xc4\xa0leaned\xc4\xa0leaked\xc4\xa0laying\xc4\xa0layers\xc4" +"\xa0lavish\xc4\xa0laughs\xc4\xa0lauded\xc4\xa0latter\xc4\xa0latest\xc4\xa0latent" +"\xc4\xa0lately\xc4\xa0lasted\xc4\xa0lashes\xc4\xa0lashed\xc4\xa0lasers\xc4\xa0la" +"rvae\xc4\xa0larger\xc4\xa0landed\xc4\xa0lambda\xc4\xa0ladies\xc4\xa0ladder\xc4\xa0" +"lacked\xc4\xa0labour\xc4\xa0labels\xc4\xa0kosher\xc4\xa0knocks\xc4\xa0knives\xc4" +"\xa0kisses\xc4\xa0kissed\xc4\xa0kindly\xc4\xa0killed\xc4\xa0kicker\xc4\xa0kicked" +"\xc4\xa0kettle\xc4\xa0keeper\xc4\xa0juxtap\xc4\xa0jurors\xc4\xa0junior\xc4\xa0ju" +"ngle\xc4\xa0jumper\xc4\xa0jumped\xc4\xa0juices\xc4\xa0judges\xc4\xa0judged\xc4\xa0" +"joyful\xc4\xa0joking\xc4\xa0joints\xc4\xa0joined\xc4\xa0jewels\xc4\xa0jargon\xc4" +"\xa0jammed\xc4\xa0jailed\xc4\xa0jQuery\xc4\xa0itself\xc4\xa0itiner\xc4\xa0issues" +"\xc4\xa0issuer\xc4\xa0issued\xc4\xa0iodine\xc4\xa0inward\xc4\xa0intact\xc4\xa0in" +"puts\xc4\xa0innate\xc4\xa0inline\xc4\xa0inland\xc4\xa0injury\xc4\xa0infuri\xc4\xa0" +"influx\xc4\xa0infall\xc4\xa0indent\xc4\xa0indemn\xc4\xa0indeed\xc4\xa0incrim\xc4" +"\xa0incite\xc4\xa0inches\xc4\xa0incest\xc4\xa0incess\xc4\xa0impede\xc4\xa0impecc" +"\xc4\xa0immune\xc4\xa0images\xc4\xa0idiots\xc4\xa0ideals\xc4\xa0iconic\xc4\xa0iT" +"unes\xc4\xa0iCloud\xc4\xa0hypnot\xc4\xa0hypers\xc4\xa0hurled\xc4\xa0hunted\xc4\xa0" +"hungry\xc4\xa0hunger\xc4\xa0humour\xc4\xa0humble\xc4\xa0humans\xc4\xa0humane\xc4" +"\xa0hugged\xc4\xa0hugely\xc4\xa0houses\xc4\xa0housed\xc4\xa0hourly\xc4\xa0hotter" +"\xc4\xa0hotels\xc4\xa0hosted\xc4\xa0horses\xc4\xa0hordes\xc4\xa0hopped\xc4\xa0ho" +"ping\xc4\xa0hooked\xc4\xa0honors\xc4\xa0homers\xc4\xa0homage\xc4\xa0hollow\xc4\xa0" +"hockey\xc4\xa0hiring\xc4\xa0hinted\xc4\xa0hinges\xc4\xa0hiking\xc4\xa0hikers\xc4" +"\xa0highly\xc4\xa0higher\xc4\xa0hiding\xc4\xa0hidden\xc4\xa0hiatus\xc4\xa0herpes" +"\xc4\xa0heroic\xc4\xa0heroes\xc4\xa0heresy\xc4\xa0herein\xc4\xa0hereby\xc4\xa0he" +"rbal\xc4\xa0herald\xc4\xa0helped\xc4\xa0helium\xc4\xa0heater\xc4\xa0heated\xc4\xa0" +"hearty\xc4\xa0hearts\xc4\xa0healer\xc4\xa0healed\xc4\xa0headed\xc4\xa0having\xc4" +"\xa0havens\xc4\xa0hauled\xc4\xa0hatred\xc4\xa0hating\xc4\xa0hassle\xc4\xa0hashes" +"\xc4\xa0harmed\xc4\xa0hardly\xc4\xa0harder\xc4\xa0harbor\xc4\xa0hanged\xc4\xa0ha" +"ngar\xc4\xa0handic\xc4\xa0handed\xc4\xa0halves\xc4\xa0halted\xc4\xa0hairst\xc4\xa0" +"hailed\xc4\xa0hacked\xc4\xa0habits\xc4\xa0gunned\xc4\xa0gunmen\xc4\xa0gunman\xc4" +"\xa0guilty\xc4\xa0guides\xc4\xa0guided\xc4\xa0guests\xc4\xa0guards\xc4\xa0growth" +"\xc4\xa0groups\xc4\xa0groove\xc4\xa0gritty\xc4\xa0greets\xc4\xa0greens\xc4\xa0gr" +"eedy\xc4\xa0grease\xc4\xa0graves\xc4\xa0gravel\xc4\xa0graphs\xc4\xa0grapes\xc4\xa0" +"grants\xc4\xa0grains\xc4\xa0grades\xc4\xa0graded\xc4\xa0gotten\xc4\xa0gossip\xc4" +"\xa0gospel\xc4\xa0google\xc4\xa0golden\xc4\xa0goalie\xc4\xa0gluten\xc4\xa0gloves" +"\xc4\xa0glossy\xc4\xa0gloomy\xc4\xa0glared\xc4\xa0glands\xc4\xa0gladly\xc4\xa0gi" +"ving\xc4\xa0github\xc4\xa0ginger\xc4\xa0gifted\xc4\xa0giants\xc4\xa0ghosts\xc4\xa0" +"ghetto\xc4\xa0gently\xc4\xa0genres\xc4\xa0genius\xc4\xa0geared\xc4\xa0gazing\xc4" +"\xa0gasped\xc4\xa0garlic\xc4\xa0garage\xc4\xa0gaping\xc4\xa0gaming\xc4\xa0gamers" +"\xc4\xa0gamble\xc4\xa0galvan\xc4\xa0galaxy\xc4\xa0gained\xc4\xa0""futile\xc4\xa0" +"""fusion\xc4\xa0""funnel\xc4\xa0""fungus\xc4\xa0""funded\xc4\xa0""fumble\xc4\xa0" +"""fuller\xc4\xa0""fueled\xc4\xa0""fucked\xc4\xa0""frying\xc4\xa0""fruits\xc4\xa0" +"""frozen\xc4\xa0""fronts\xc4\xa0""fringe\xc4\xa0""fridge\xc4\xa0""frenzy\xc4\xa0" +"""french\xc4\xa0""freely\xc4\xa0""frames\xc4\xa0""framed\xc4\xa0""fourth\xc4\xa0" +"""fought\xc4\xa0""forums\xc4\xa0""formed\xc4\xa0""forged\xc4\xa0""forces\xc4\xa0" +"""forced\xc4\xa0""fooled\xc4\xa0""folded\xc4\xa0""fodder\xc4\xa0""flying\xc4\xa0" +"""flyers\xc4\xa0""flurry\xc4\xa0""fluids\xc4\xa0""fluffy\xc4\xa0""fluent\xc4\xa0" +"""flowed\xc4\xa0""floral\xc4\xa0""floppy\xc4\xa0""floors\xc4\xa0""floods\xc4\xa0" +"""floats\xc4\xa0""fleets\xc4\xa0""flawed\xc4\xa0""flashy\xc4\xa0""flares\xc4\xa0" +"""flared\xc4\xa0""flames\xc4\xa0""flakes\xc4\xa0""fixing\xc4\xa0""fitted\xc4\xa0" +"""fishes\xc4\xa0""fiscal\xc4\xa0""firmly\xc4\xa0""firing\xc4\xa0""finite\xc4\xa0" +"""finest\xc4\xa0""finely\xc4\xa0""finals\xc4\xa0""finale\xc4\xa0""filthy\xc4\xa0" +"""filmed\xc4\xa0""filler\xc4\xa0""filled\xc4\xa0""fights\xc4\xa0""fields\xc4\xa0" +"""fibers\xc4\xa0""fiasco\xc4\xa0""fiance\xc4\xa0""feudal\xc4\xa0""fetish\xc4\xa0" +"""fences\xc4\xa0""felony\xc4\xa0""feeble\xc4\xa0""feared\xc4\xa0""favors\xc4\xa0" +"""faulty\xc4\xa0""faults\xc4\xa0""faster\xc4\xa0""fandom\xc4\xa0""famine\xc4\xa0" +"""family\xc4\xa0""fallen\xc4\xa0""faiths\xc4\xa0""fairly\xc4\xa0""failed\xc4\xa0" +"""fading\xc4\xa0""facing\xc4\xa0""facial\xc4\xa0""facets\xc4\xa0""facade\xc4\xa0" +"""eyeing\xc4\xa0""extras\xc4\xa0""extrap\xc4\xa0""extent\xc4\xa0""extant\xc4\xa0" +"""exotic\xc4\xa0""exoner\xc4\xa0""exodus\xc4\xa0""exited\xc4\xa0""exists\xc4\xa0" +"""exiled\xc4\xa0""excise\xc4\xa0""events\xc4\xa0""evenly\xc4\xa0""evapor\xc4\xa0" +"""euphem\xc4\xa0""ethics\xc4\xa0""etched\xc4\xa0""essays\xc4\xa0""errors\xc4\xa0" +"""erotic\xc4\xa0""eroded\xc4\xa0""erased\xc4\xa0""equity\xc4\xa0""equate\xc4\xa0" +"""equals\xc4\xa0""epigen\xc4\xa0""enumer\xc4\xa0""entity\xc4\xa0""enters\xc4\xa0" +"""ensued\xc4\xa0""enough\xc4\xa0""enjoys\xc4\xa0""energy\xc4\xa0""encaps\xc4\xa0" +"""encamp\xc4\xa0""embold\xc4\xa0""embody\xc4\xa0""emblem\xc4\xa0""embell\xc4\xa0" +"""emails\xc4\xa0""ellipt\xc4\xa0""elites\xc4\xa0""elicit\xc4\xa0""eleven\xc4\xa0" +"""eldest\xc4\xa0""elders\xc4\xa0""elbows\xc4\xa0""either\xc4\xa0""eighty\xc4\xa0" +"""eighth\xc4\xa0""edited\xc4\xa0""edible\xc4\xa0""echoes\xc4\xa0""echoed\xc4\xa0" +"""eating\xc4\xa0""easing\xc4\xa0""easily\xc4\xa0""easier\xc4\xa0""earned\xc4\xa0" +"""duties\xc4\xa0""during\xc4\xa0""dumped\xc4\xa0""dubbed\xc4\xa0""drying\xc4\xa0" +"""drones\xc4\xa0""drives\xc4\xa0""driven\xc4\xa0""drinks\xc4\xa0""drills\xc4\xa0" +"""dreams\xc4\xa0""drawer\xc4\xa0""draped\xc4\xa0""dramas\xc4\xa0""drains\xc4\xa0" +"""drafts\xc4\xa0""dozens\xc4\xa0""downed\xc4\xa0""doubts\xc4\xa0""dotted\xc4\xa0" +"""dosage\xc4\xa0""dorsal\xc4\xa0""doping\xc4\xa0""doomed\xc4\xa0""donors\xc4\xa0" +"""donkey\xc4\xa0""dogged\xc4\xa0""doesnt\xc4\xa0""dodged\xc4\xa0""docker\xc4\xa0" +"""diving\xc4\xa0""divine\xc4\xa0""divest\xc4\xa0""disson\xc4\xa0""dissip\xc4\xa0" +"""dispel\xc4\xa0""dismay\xc4\xa0""dismal\xc4\xa0""dishes\xc4\xa0""diseng\xc4\xa0" +"""disarm\xc4\xa0""dipped\xc4\xa0""dining\xc4\xa0""digits\xc4\xa0""diesel\xc4\xa0" +"""devout\xc4\xa0""devoid\xc4\xa0""devils\xc4\xa0""dermat\xc4\xa0""deputy\xc4\xa0" +"""depths\xc4\xa0""dental\xc4\xa0""denies\xc4\xa0""denied\xc4\xa0""denial\xc4\xa0" +"""demise\xc4\xa0""deline\xc4\xa0""delays\xc4\xa0""defund\xc4\xa0""deform\xc4\xa0" +"""defied\xc4\xa0""deeply\xc4\xa0""deeper\xc4\xa0""deemed\xc4\xa0""decree\xc4\xa0" +"""decomp\xc4\xa0""decode\xc4\xa0""deceit\xc4\xa0""debtor\xc4\xa0""debris\xc4\xa0" +"""debian\xc4\xa0""deaths\xc4\xa0""dearly\xc4\xa0""deadly\xc4\xa0""dating\xc4\xa0" +"""dashed\xc4\xa0""darker\xc4\xa0""daring\xc4\xa0""dances\xc4\xa0""danced\xc4\xa0" +"""damned\xc4\xa0""dagger\xc4\xa0""daemon\xc4\xa0""cycles\xc4\xa0""cutter\xc4\xa0" +"""cutoff\xc4\xa0""curves\xc4\xa0""curved\xc4\xa0""cursor\xc4\xa0""curses\xc4\xa0" +"""cursed\xc4\xa0""curled\xc4\xa0""curing\xc4\xa0""curfew\xc4\xa0""crying\xc4\xa0" +"""crunch\xc4\xa0""crowds\xc4\xa0""crotch\xc4\xa0""crocod\xc4\xa0""crispy\xc4\xa0" +"""crisis\xc4\xa0""crises\xc4\xa0""cringe\xc4\xa0""crimes\xc4\xa0""creepy\xc4\xa0" +"""creeps\xc4\xa0""creamy\xc4\xa0""crates\xc4\xa0""crater\xc4\xa0""crappy\xc4\xa0" +"""crafts\xc4\xa0""cradle\xc4\xa0""cracks\xc4\xa0""cowboy\xc4\xa0""covert\xc4\xa0" +"""covers\xc4\xa0""covari\xc4\xa0""courts\xc4\xa0""county\xc4\xa0""counts\xc4\xa0" +"""couldn\xc4\xa0""cotton\xc4\xa0""costly\xc4\xa0""cosmos\xc4\xa0""cosmic\xc4\xa0" +"""cortex\xc4\xa0""corpus\xc4\xa0""copper\xc4\xa0""coping\xc4\xa0""copies\xc4\xa0" +"""copied\xc4\xa0""cooler\xc4\xa0""cooled\xc4\xa0""cooker\xc4\xa0""cooked\xc4\xa0" +"""convoy\xc4\xa0""conson\xc4\xa0""congen\xc4\xa0""condos\xc4\xa0""coming\xc4\xa0" +"""comics\xc4\xa0""comedy\xc4\xa0""combos\xc4\xa0""colors\xc4\xa0""colony\xc4\xa0" +"""collar\xc4\xa0""colder\xc4\xa0""coined\xc4\xa0""coffin\xc4\xa0""coffee\xc4\xa0" +"""coding\xc4\xa0""coated\xc4\xa0""coasts\xc4\xa0""coarse\xc4\xa0""coales\xc4\xa0" +"""clumsy\xc4\xa0""cloves\xc4\xa0""cloudy\xc4\xa0""clouds\xc4\xa0""closet\xc4\xa0" +"""closer\xc4\xa0""closed\xc4\xa0""clones\xc4\xa0""clocks\xc4\xa0""clitor\xc4\xa0" +"""clinch\xc4\xa0""climbs\xc4\xa0""climax\xc4\xa0""cliffs\xc4\xa0""clicks\xc4\xa0" +"""clever\xc4\xa0""clerks\xc4\xa0""clergy\xc4\xa0""clears\xc4\xa0""classy\xc4\xa0" +"""claims\xc4\xa0""citrus\xc4\xa0""citing\xc4\xa0""cities\xc4\xa0""circus\xc4\xa0" +"""cipher\xc4\xa0""cigars\xc4\xa0""chunks\xc4\xa0""chrome\xc4\xa0""christ\xc4\xa0" +"""chosen\xc4\xa0""chorus\xc4\xa0""chores\xc4\xa0""chords\xc4\xa0""choked\xc4\xa0" +"""chirop\xc4\xa0""chilly\xc4\xa0""chiefs\xc4\xa0""chicks\xc4\xa0""chests\xc4\xa0" +"""cherry\xc4\xa0""cheesy\xc4\xa0""cheese\xc4\xa0""cheers\xc4\xa0""cheeks\xc4\xa0" +"""checks\xc4\xa0""chased\xc4\xa0""charts\xc4\xa0""charms\xc4\xa0""chapel\xc4\xa0" +"""chants\xc4\xa0""chairs\xc4\xa0""chains\xc4\xa0""cereal\xc4\xa0""census\xc4\xa0" +"""cement\xc4\xa0""cellar\xc4\xa0""ceases\xc4\xa0""ceased\xc4\xa0""cavity\xc4\xa0" +"""cavern\xc4\xa0""causes\xc4\xa0""caused\xc4\xa0""causal\xc4\xa0""caught\xc4\xa0" +"""cattle\xc4\xa0""catchy\xc4\xa0""caster\xc4\xa0""casing\xc4\xa0""carved\xc4\xa0" +"""carpet\xc4\xa0""carniv\xc4\xa0""caring\xc4\xa0""carcin\xc4\xa0""carbon\xc4\xa0" +"""capped\xc4\xa0""canyon\xc4\xa0""canvas\xc4\xa0""canopy\xc4\xa0""cannot\xc4\xa0" +"""canned\xc4\xa0""canine\xc4\xa0""calves\xc4\xa0""calmly\xc4\xa0""calmed\xc4\xa0" +"""caller\xc4\xa0""called\xc4\xa0""caches\xc4\xa0""cached\xc4\xa0""cables\xc4\xa0" +"""bypass\xc4\xa0""buying\xc4\xa0""buyers\xc4\xa0""busted\xc4\xa0""bushes\xc4\xa0" +"""bursts\xc4\xa0""burner\xc4\xa0""burned\xc4\xa0""buried\xc4\xa0""burial\xc4\xa0" +"""bunker\xc4\xa0""bumper\xc4\xa0""bumped\xc4\xa0""bulldo\xc4\xa0""builds\xc4\xa0" +"""buffet\xc4\xa0""buckle\xc4\xa0""brunch\xc4\xa0""bronze\xc4\xa0""broken\xc4\xa0" +"""brings\xc4\xa0""briefs\xc4\xa0""bricks\xc4\xa0""bribes\xc4\xa0""brewed\xc4\xa0" +"""breeze\xc4\xa0""breeds\xc4\xa0""breaks\xc4\xa0""brazen\xc4\xa0""brands\xc4\xa0" +"""brakes\xc4\xa0""braces\xc4\xa0""boxing\xc4\xa0""bounty\xc4\xa0""bounds\xc4\xa0" +"""bought\xc4\xa0""bottom\xc4\xa0""bosses\xc4\xa0""boring\xc4\xa0""booths\xc4\xa0" +"""booted\xc4\xa0""boosts\xc4\xa0""booked\xc4\xa0""bonded\xc4\xa0""bombed\xc4\xa0" +"""bolted\xc4\xa0""boldly\xc4\xa0""boiler\xc4\xa0""boiled\xc4\xa0""bodily\xc4\xa0" +"""bodies\xc4\xa0""boasts\xc4\xa0""boards\xc4\xa0""blurry\xc4\xa0""bloody\xc4\xa0" +"""blonde\xc4\xa0""blocks\xc4\xa0""blight\xc4\xa0""blends\xc4\xa0""bleach\xc4\xa0" +"""blasts\xc4\xa0""blames\xc4\xa0""blamed\xc4\xa0""blades\xc4\xa0""blacks\xc4\xa0" +"""bitten\xc4\xa0""biting\xc4\xa0""births\xc4\xa0""binary\xc4\xa0""billed\xc4\xa0" +"""bikini\xc4\xa0""biking\xc4\xa0""bigger\xc4\xa0""bidder\xc4\xa0""biases\xc4\xa0" +"""biased\xc4\xa0""beyond\xc4\xa0""bewild\xc4\xa0""beware\xc4\xa0""better\xc4\xa0" +"""benign\xc4\xa0""bellig\xc4\xa0""beings\xc4\xa0""behold\xc4\xa0""behind\xc4\xa0" +"""behest\xc4\xa0""behalf\xc4\xa0""begins\xc4\xa0""begged\xc4\xa0""became\xc4\xa0" +"""beauty\xc4\xa0""beaten\xc4\xa0""beasts\xc4\xa0""bearer\xc4\xa0""beacon\xc4\xa0" +"""batted\xc4\xa0""basics\xc4\xa0""barric\xc4\xa0""barren\xc4\xa0""barred\xc4\xa0" +"""barley\xc4\xa0""barely\xc4\xa0""banter\xc4\xa0""banned\xc4\xa0""bamboo\xc4\xa0" +"""ballet\xc4\xa0""baking\xc4\xa0""bakery\xc4\xa0""bailed\xc4\xa0""badges\xc4\xa0" +"""badass\xc4\xa0""backed\xc4\xa0""babies\xc4\xa0""awoken\xc4\xa0""awhile\xc4\xa0" +"""awards\xc4\xa0""awaits\xc4\xa0""avoids\xc4\xa0""avatar\xc4\xa0""autumn\xc4\xa0" +"""autism\xc4\xa0""audits\xc4\xa0""attire\xc4\xa0""attest\xc4\xa0""attRot\xc4\xa0" +"""atomic\xc4\xa0""asylum\xc4\xa0""asthma\xc4\xa0""assets\xc4\xa0""aspire\xc4\xa0" +"""asleep\xc4\xa0""asking\xc4\xa0""ashore\xc4\xa0""ascent\xc4\xa0""artery\xc4\xa0" +"""arrows\xc4\xa0""arrays\xc4\xa0""around\xc4\xa0""arming\xc4\xa0""armies\xc4\xa0" +"""arises\xc4\xa0""arisen\xc4\xa0""argues\xc4\xa0""argued\xc4\xa0""arenas\xc4\xa0" +"""ardent\xc4\xa0""arcane\xc4\xa0""arcade\xc4\xa0""apples\xc4\xa0""apiece\xc4\xa0" +"""anyone\xc4\xa0""antics\xc4\xa0""anthem\xc4\xa0""ankles\xc4\xa0""angles\xc4\xa0" +"""angled\xc4\xa0""angels\xc4\xa0""amused\xc4\xa0""amulet\xc4\xa0""amphib\xc4\xa0" +"""amidst\xc4\xa0""americ\xc4\xa0""ambush\xc4\xa0""amazed\xc4\xa0""always\xc4\xa0" +"""alumni\xc4\xa0""alters\xc4\xa0""almost\xc4\xa0""allows\xc4\xa0""allies\xc4\xa0" +"""allied\xc4\xa0""allele\xc4\xa0""aliens\xc4\xa0""alerts\xc4\xa0""albums\xc4\xa0" +"""albeit\xc4\xa0""alarms\xc4\xa0""airing\xc4\xa0""aiming\xc4\xa0""aiding\xc4\xa0" +"""agrees\xc4\xa0""agreed\xc4\xa0""agents\xc4\xa0""agency\xc4\xa0""ageing\xc4\xa0" +"""afraid\xc4\xa0""afloat\xc4\xa0""aerial\xc4\xa0""advice\xc4\xa0""adults\xc4\xa0" +"""admits\xc4\xa0""admins\xc4\xa0""adding\xc4\xa0""actors\xc4\xa0""acting\xc4\xa0" +"""across\xc4\xa0""acidic\xc4\xa0""abuses\xc4\xa0""abused\xc4\xa0""abroad\xc4\xa0" +"""abound\xc4\xa0""aboard\xc4\xa0______\xc4\xa0Zurich\xc4\xa0Yemeni\xc4\xa0Yamato" +"\xc4\xa0Yamaha\xc4\xa0Xperia\xc4\xa0Xiaomi\xc4\xa0Xavier\xc4\xa0Xander\xc4\xa0Wr" +"ight\xc4\xa0Wraith\xc4\xa0Wouldn\xc4\xa0Worlds\xc4\xa0Wooden\xc4\xa0Wolves\xc4\xa0" +"Within\xc4\xa0Wisdom\xc4\xa0Winter\xc4\xa0Winged\xc4\xa0Wilson\xc4\xa0Willow\xc4" +"\xa0Willis\xc4\xa0Willie\xc4\xa0Wicked\xc4\xa0Whites\xc4\xa0Whilst\xc4\xa0Wheels" +"\xc4\xa0Whedon\xc4\xa0Weston\xc4\xa0Wesley\xc4\xa0Werner\xc4\xa0Wenger\xc4\xa0We" +"iner\xc4\xa0Weight\xc4\xa0Weekly\xc4\xa0Weaver\xc4\xa0Wealth\xc4\xa0Watson\xc4\xa0" +"Waters\xc4\xa0Warsaw\xc4\xa0Warren\xc4\xa0Warner\xc4\xa0Warden\xc4\xa0Wanted\xc4" +"\xa0Wander\xc4\xa0Walton\xc4\xa0Wallet\xc4\xa0Walker\xc4\xa0Wagner\xc4\xa0Vulkan" +"\xc4\xa0Vulcan\xc4\xa0Voting\xc4\xa0Voters\xc4\xa0Vortex\xc4\xa0Volume\xc4\xa0Vo" +"ices\xc4\xa0Visual\xc4\xa0Vision\xc4\xa0Virtue\xc4\xa0Violet\xc4\xa0Viktor\xc4\xa0" +"Vienna\xc4\xa0Videos\xc4\xa0Vessel\xc4\xa0Versus\xc4\xa0Vernon\xc4\xa0Verify\xc4" +"\xa0Venice\xc4\xa0Vendor\xc4\xa0Velvet\xc4\xa0Vegeta\xc4\xa0Vector\xc4\xa0Vaults" +"\xc4\xa0Vaughn\xc4\xa0Vanity\xc4\xa0Values\xc4\xa0Valley\xc4\xa0VMware\xc4\xa0VI" +"DEOS\xc4\xa0Useful\xc4\xa0Upload\xc4\xa0Unsure\xc4\xa0Unreal\xc4\xa0Unlock\xc4\xa0" +"Unlike\xc4\xa0Unless\xc4\xa0United\xc4\xa0Unique\xc4\xa0Undead\xc4\xa0Unable\xc4" +"\xa0Ultron\xc4\xa0Ulster\xc4\xa0Uganda\xc4\xa0Ubuntu\xc4\xa0UPDATE\xc4\xa0UNITED" +"\xc4\xa0UNESCO\xc4\xa0Tyrann\xc4\xa0Tycoon\xc4\xa0Twitch\xc4\xa0Twenty\xc4\xa0Tw" +"elve\xc4\xa0Turner\xc4\xa0Turkey\xc4\xa0Turing\xc4\xa0Tunnel\xc4\xa0Tumblr\xc4\xa0" +"Tucson\xc4\xa0Tucker\xc4\xa0Trying\xc4\xa0Truman\xc4\xa0Trophy\xc4\xa0Trojan\xc4" +"\xa0Triple\xc4\xa0Tribal\xc4\xa0Trials\xc4\xa0Trevor\xc4\xa0Trends\xc4\xa0Treaty" +"\xc4\xa0Travis\xc4\xa0Trance\xc4\xa0Trails\xc4\xa0Trader\xc4\xa0Tracks\xc4\xa0To" +"yota\xc4\xa0Towers\xc4\xa0Torres\xc4\xa0Tories\xc4\xa0Topics\xc4\xa0Tomato\xc4\xa0" +"Toledo\xc4\xa0Tokens\xc4\xa0Toggle\xc4\xa0Tobias\xc4\xa0Titans\xc4\xa0Tinker\xc4" +"\xa0Tinder\xc4\xa0Tigers\xc4\xa0Thrust\xc4\xa0Threat\xc4\xa0Thread\xc4\xa0Thomas" +"\xc4\xa0Thirty\xc4\xa0Things\xc4\xa0Theory\xc4\xa0Thames\xc4\xa0Texans\xc4\xa0Te" +"rran\xc4\xa0Teresa\xc4\xa0Tennis\xc4\xa0Temple\xc4\xa0Tehran\xc4\xa0Tayyip\xc4\xa0" +"Taylor\xc4\xa0Tavern\xc4\xa0Target\xc4\xa0Tarant\xc4\xa0Tanner\xc4\xa0Tanaka\xc4" +"\xa0Talent\xc4\xa0Taking\xc4\xa0Takeru\xc4\xa0Tacoma\xc4\xa0Tackle\xc4\xa0Tablet" +"\xc4\xa0Tables\xc4\xa0Symbol\xc4\xa0Sylvia\xc4\xa0Sydney\xc4\xa0Switch\xc4\xa0Sw" +"eden\xc4\xa0Suzuki\xc4\xa0Sutton\xc4\xa0Sussex\xc4\xa0Survey\xc4\xa0Surrey\xc4\xa0" +"Surely\xc4\xa0Supply\xc4\xa0Sunset\xc4\xa0Summit\xc4\xa0Sultan\xc4\xa0Subway\xc4" +"\xa0Subtle\xc4\xa0Submit\xc4\xa0Subaru\xc4\xa0Suarez\xc4\xa0Styles\xc4\xa0Stupid" +"\xc4\xa0Stuart\xc4\xa0String\xc4\xa0Stress\xc4\xa0Strait\xc4\xa0Stores\xc4\xa0St" +"ones\xc4\xa0Stefan\xc4\xa0Status\xc4\xa0Statue\xc4\xa0Static\xc4\xa0States\xc4\xa0" +"Staten\xc4\xa0Starts\xc4\xa0Stalin\xc4\xa0Square\xc4\xa0Sprite\xc4\xa0Sprint\xc4" +"\xa0Spread\xc4\xa0Sports\xc4\xa0Sponge\xc4\xa0Splash\xc4\xa0Spiral\xc4\xa0Spider" +"\xc4\xa0Spicer\xc4\xa0Sphere\xc4\xa0Spells\xc4\xa0Speech\xc4\xa0Spears\xc4\xa0Sp" +"arks\xc4\xa0Spaces\xc4\xa0SpaceX\xc4\xa0Sounds\xc4\xa0Sophie\xc4\xa0Sophia\xc4\xa0" +"Sodium\xc4\xa0Socket\xc4\xa0Soccer\xc4\xa0Snyder\xc4\xa0Sniper\xc4\xa0Smooth\xc4" +"\xa0Slowly\xc4\xa0Slayer\xc4\xa0Slater\xc4\xa0Skyrim\xc4\xa0Skills\xc4\xa0Sketch" +"\xc4\xa0Sixers\xc4\xa0Sirius\xc4\xa0Single\xc4\xa0Singer\xc4\xa0Simply\xc4\xa0Si" +"mple\xc4\xa0Simone\xc4\xa0Silver\xc4\xa0Silent\xc4\xa0Signed\xc4\xa0Signal\xc4\xa0" +"Sierra\xc4\xa0Sidney\xc4\xa0Sicily\xc4\xa0Shroud\xc4\xa0Shrine\xc4\xa0Should\xc4" +"\xa0Shogun\xc4\xa0Shoals\xc4\xa0Shinzo\xc4\xa0Shinra\xc4\xa0Shinji\xc4\xa0Shiite" +"\xc4\xa0Shelby\xc4\xa0Sheila\xc4\xa0Sheikh\xc4\xa0Sharon\xc4\xa0Sharma\xc4\xa0Sh" +"arks\xc4\xa0Sharif\xc4\xa0Sharia\xc4\xa0Shares\xc4\xa0Shared\xc4\xa0Shards\xc4\xa0" +"Shaman\xc4\xa0Shades\xc4\xa0Sexual\xc4\xa0Server\xc4\xa0Series\xc4\xa0Serial\xc4" +"\xa0Sergio\xc4\xa0Sergey\xc4\xa0Sergei\xc4\xa0Seraph\xc4\xa0Sensor\xc4\xa0Senior" +"\xc4\xa0Senate\xc4\xa0Seller\xc4\xa0Seeing\xc4\xa0Secure\xc4\xa0Sector\xc4\xa0Se" +"arch\xc4\xa0Scythe\xc4\xa0Scully\xc4\xa0Screen\xc4\xa0Scream\xc4\xa0Scouts\xc4\xa0" +"Scotia\xc4\xa0Scotch\xc4\xa0Scores\xc4\xa0Schiff\xc4\xa0Scheme\xc4\xa0Scenes\xc4" +"\xa0Scalia\xc4\xa0Saying\xc4\xa0Sawyer\xc4\xa0Savior\xc4\xa0Savage\xc4\xa0Saudis" +"\xc4\xa0Saturn\xc4\xa0Satisf\xc4\xa0Sasuke\xc4\xa0Santos\xc4\xa0Sandra\xc4\xa0Sa" +"muel\xc4\xa0Samson\xc4\xa0Sample\xc4\xa0Salmon\xc4\xa0Salman\xc4\xa0Salary\xc4\xa0" +"Sakuya\xc4\xa0Sakura\xc4\xa0Saiyan\xc4\xa0Saints\xc4\xa0Sailor\xc4\xa0Sahara\xc4" +"\xa0Safety\xc4\xa0Safari\xc4\xa0Saddam\xc4\xa0Sacred\xc4\xa0Sabres\xc4\xa0SYSTEM" +"\xc4\xa0STATES\xc4\xa0SPORTS\xc4\xa0SHOULD\xc4\xa0SHARES\xc4\xa0SELECT\xc4\xa0SC" +"HOOL\xc4\xa0Rwanda\xc4\xa0Rupert\xc4\xa0Runner\xc4\xa0Rumble\xc4\xa0Rubber\xc4\xa0" +"Royals\xc4\xa0Royale\xc4\xa0Router\xc4\xa0Rousse\xc4\xa0Rounds\xc4\xa0Rooney\xc4" +"\xa0Rookie\xc4\xa0Ronnie\xc4\xa0Romney\xc4\xa0Romero\xc4\xa0Romans\xc4\xa0Roller" +"\xc4\xa0Roland\xc4\xa0Rogers\xc4\xa0Rodney\xc4\xa0Rodham\xc4\xa0Robots\xc4\xa0Ro" +"bbie\xc4\xa0Riyadh\xc4\xa0Rivera\xc4\xa0Rivals\xc4\xa0Ritual\xc4\xa0Rising\xc4\xa0" +"Ripple\xc4\xa0Rights\xc4\xa0Ridley\xc4\xa0Riding\xc4\xa0Riders\xc4\xa0Richie\xc4" +"\xa0Ribbon\xc4\xa0Rhythm\xc4\xa0Rhodes\xc4\xa0Retail\xc4\xa0Resort\xc4\xa0Rescue" +"\xc4\xa0Replay\xc4\xa0Repeat\xc4\xa0Repair\xc4\xa0Render\xc4\xa0Remote\xc4\xa0Re" +"main\xc4\xa0Relief\xc4\xa0Reilly\xc4\xa0Regina\xc4\xa0Reggie\xc4\xa0Reform\xc4\xa0" +"Reflex\xc4\xa0Reeves\xc4\xa0Reddit\xc4\xa0Recogn\xc4\xa0Recall\xc4\xa0Reborn\xc4" +"\xa0Reboot\xc4\xa0Rebels\xc4\xa0Reaper\xc4\xa0Realms\xc4\xa0Really\xc4\xa0Reagan" +"\xc4\xa0Ravens\xc4\xa0Rather\xc4\xa0Rarity\xc4\xa0Rapids\xc4\xa0Ranked\xc4\xa0Ra" +"msey\xc4\xa0Ramsay\xc4\xa0Rahman\xc4\xa0Rafael\xc4\xa0Radius\xc4\xa0Radeon\xc4\xa0" +"Racing\xc4\xa0Racial\xc4\xa0Rachel\xc4\xa0Rabbit\xc4\xa0REPORT\xc4\xa0REALLY\xc4" +"\xa0Quincy\xc4\xa0Quebec\xc4\xa0Quartz\xc4\xa0Quadro\xc4\xa0Python\xc4\xa0Pyrrha" +"\xc4\xa0Purple\xc4\xa0Purdue\xc4\xa0Puppet\xc4\xa0Punjab\xc4\xa0Puerto\xc4\xa0Pu" +"bMed\xc4\xa0PsyNet\xc4\xa0Pruitt\xc4\xa0Prompt\xc4\xa0Profit\xc4\xa0Prison\xc4\xa0" +"Primal\xc4\xa0Priest\xc4\xa0Prices\xc4\xa0Pretty\xc4\xa0Prayer\xc4\xa0Prague\xc4" +"\xa0Powers\xc4\xa0Powell\xc4\xa0Powder\xc4\xa0Potter\xc4\xa0Potion\xc4\xa0Potato" +"\xc4\xa0Poster\xc4\xa0Posted\xc4\xa0Postal\xc4\xa0Porter\xc4\xa0Portal\xc4\xa0Po" +"lish\xc4\xa0Policy\xc4\xa0Police\xc4\xa0Poland\xc4\xa0Poison\xc4\xa0Points\xc4\xa0" +"Pocket\xc4\xa0Plugin\xc4\xa0Plenty\xc4\xa0Pledge\xc4\xa0Please\xc4\xa0Played\xc4" +"\xa0Plasma\xc4\xa0Plants\xc4\xa0Planes\xc4\xa0Plains\xc4\xa0Plague\xc4\xa0Places" +"\xc4\xa0Pistol\xc4\xa0Pillar\xc4\xa0Pierre\xc4\xa0Pierce\xc4\xa0Pieces\xc4\xa0Pi" +"card\xc4\xa0Philly\xc4\xa0Phelps\xc4\xa0Peyton\xc4\xa0Period\xc4\xa0Pepper\xc4\xa0" +"Pelosi\xc4\xa0Pebble\xc4\xa0Pearce\xc4\xa0Payton\xc4\xa0PayPal\xc4\xa0Patton\xc4" +"\xa0Patron\xc4\xa0Patrol\xc4\xa0Patent\xc4\xa0Pastor\xc4\xa0Passed\xc4\xa0Pascal" +"\xc4\xa0Parker\xc4\xa0Parish\xc4\xa0Paraly\xc4\xa0Paragu\xc4\xa0Parade\xc4\xa0Pa" +"pers\xc4\xa0Panzer\xc4\xa0Panama\xc4\xa0Pamela\xc4\xa0Palmer\xc4\xa0Palace\xc4\xa0" +"Padres\xc4\xa0Pacers\xc4\xa0PUBLIC\xc4\xa0PLEASE\xc4\xa0PERSON\xc4\xa0PEOPLE\xc4" +"\xa0Oxford\xc4\xa0Owners\xc4\xa0Overse\xc4\xa0Output\xc4\xa0Ottawa\xc4\xa0Others" +"\xc4\xa0Oswald\xc4\xa0Osiris\xc4\xa0Oscars\xc4\xa0Orwell\xc4\xa0Oregon\xc4\xa0Or" +"ders\xc4\xa0Orange\xc4\xa0Oracle\xc4\xa0OpenGL\xc4\xa0Online\xc4\xa0Olivia\xc4\xa0" +"Oliver\xc4\xa0Oilers\xc4\xa0Oculus\xc4\xa0Occupy\xc4\xa0Nvidia\xc4\xa0Norway\xc4" +"\xa0Norton\xc4\xa0Norris\xc4\xa0Nordic\xc4\xa0Nobody\xc4\xa0Nissan\xc4\xa0Nikola" +"\xc4\xa0Nights\xc4\xa0Nicole\xc4\xa0Nickel\xc4\xa0Nguyen\xc4\xa0Newton\xc4\xa0Ne" +"wman\xc4\xa0Newark\xc4\xa0Nevada\xc4\xa0Neural\xc4\xa0Nelson\xc4\xa0Nebula\xc4\xa0" +"Nearly\xc4\xa0Navajo\xc4\xa0Nature\xc4\xa0Native\xc4\xa0Naruto\xc4\xa0Naples\xc4" +"\xa0NVIDIA\xc4\xa0NOTICE\xc4\xa0NASCAR\xc4\xa0Mystic\xc4\xa0Mutual\xc4\xa0Mutant" +"\xc4\xa0Museum\xc4\xa0Muscle\xc4\xa0Murray\xc4\xa0Murphy\xc4\xa0Murder\xc4\xa0Mu" +"nich\xc4\xa0Mumbai\xc4\xa0Muller\xc4\xa0Moving\xc4\xa0Movies\xc4\xa0Motion\xc4\xa0" +"Mostly\xc4\xa0Mosque\xc4\xa0Moscow\xc4\xa0Morton\xc4\xa0Mortal\xc4\xa0Morrow\xc4" +"\xa0Morgan\xc4\xa0Moreno\xc4\xa0Months\xc4\xa0Monroe\xc4\xa0Monkey\xc4\xa0Monica" +"\xc4\xa0Monaco\xc4\xa0Moines\xc4\xa0Module\xc4\xa0Modest\xc4\xa0Modern\xc4\xa0Mo" +"dels\xc4\xa0Mobile\xc4\xa0Mister\xc4\xa0Mirror\xc4\xa0Mirage\xc4\xa0Minion\xc4\xa0" +"Mining\xc4\xa0Milton\xc4\xa0Miller\xc4\xa0Miguel\xc4\xa0Mighty\xc4\xa0Mickey\xc4" +"\xa0Mexico\xc4\xa0Meteor\xc4\xa0Merlin\xc4\xa0Merkel\xc4\xa0Mercer\xc4\xa0Mental" +"\xc4\xa0Memory\xc4\xa0Melvin\xc4\xa0Melody\xc4\xa0Mellon\xc4\xa0Mehran\xc4\xa0Me" +"dium\xc4\xa0Medina\xc4\xa0Median\xc4\xa0Medals\xc4\xa0McGill\xc4\xa0McCull\xc4\xa0" +"McCorm\xc4\xa0McCann\xc4\xa0McCain\xc4\xa0McCabe\xc4\xa0Mayhem\xc4\xa0Maurit\xc4" +"\xa0Mattis\xc4\xa0Matrix\xc4\xa0Marvin\xc4\xa0Marvel\xc4\xa0Martha\xc4\xa0Markus" +"\xc4\xa0Marion\xc4\xa0Marino\xc4\xa0Marina\xc4\xa0Marian\xc4\xa0Marcus\xc4\xa0Ma" +"rcos\xc4\xa0Marcel\xc4\xa0Marble\xc4\xa0Manuel\xc4\xa0Manual\xc4\xa0Manson\xc4\xa0" +"Manila\xc4\xa0Mandal\xc4\xa0Malone\xc4\xa0Malfoy\xc4\xa0Makoto\xc4\xa0Making\xc4" +"\xa0Maiden\xc4\xa0Magnus\xc4\xa0Magnum\xc4\xa0Maggie\xc4\xa0Maduro\xc4\xa0Madrid" +"\xc4\xa0Madden\xc4\xa0Madame\xc4\xa0Macron\xc4\xa0MODULE\xc4\xa0Lyndon\xc4\xa0Lu" +"thor\xc4\xa0Lumpur\xc4\xa0Ludwig\xc4\xa0Lucius\xc4\xa0Lowell\xc4\xa0Loving\xc4\xa0" +"Lovely\xc4\xa0Lounge\xc4\xa0Louise\xc4\xa0Lonely\xc4\xa0London\xc4\xa0Logged\xc4" +"\xa0Locked\xc4\xa0Loaded\xc4\xa0Lizard\xc4\xa0Little\xc4\xa0Listen\xc4\xa0Lisbon" +"\xc4\xa0Liquid\xc4\xa0Lionel\xc4\xa0Linear\xc4\xa0Limits\xc4\xa0Lilith\xc4\xa0Li" +"kely\xc4\xa0Lights\xc4\xa0Libyan\xc4\xa0Levine\xc4\xa0Levels\xc4\xa0Levant\xc4\xa0" +"Lethal\xc4\xa0Lester\xc4\xa0Leslie\xc4\xa0Lerner\xc4\xa0Lenovo\xc4\xa0Lennon\xc4" +"\xa0Length\xc4\xa0Leilan\xc4\xa0Legacy\xc4\xa0Leaves\xc4\xa0Learns\xc4\xa0League" +"\xc4\xa0LeBron\xc4\xa0Layout\xc4\xa0Lawson\xc4\xa0Lavrov\xc4\xa0Laurie\xc4\xa0La" +"urel\xc4\xa0Latvia\xc4\xa0Latter\xc4\xa0Latest\xc4\xa0Lastly\xc4\xa0Larson\xc4\xa0" +"Lancet\xc4\xa0Lakers\xc4\xa0Ladies\xc4\xa0Labour\xc4\xa0Kuwait\xc4\xa0Kramer\xc4" +"\xa0Kraken\xc4\xa0Kosovo\xc4\xa0Konami\xc4\xa0Knicks\xc4\xa0Kinect\xc4\xa0Kindle" +"\xc4\xa0Kinder\xc4\xa0Kimmel\xc4\xa0Killer\xc4\xa0Killed\xc4\xa0Khalid\xc4\xa0Ke" +"ynes\xc4\xa0Kernel\xc4\xa0Kerala\xc4\xa0Kepler\xc4\xa0Kenyan\xc4\xa0Kenobi\xc4\xa0" +"Kelvin\xc4\xa0Kelley\xc4\xa0Keller\xc4\xa0Keeper\xc4\xa0Kasich\xc4\xa0Kaplan\xc4" +"\xa0Kansas\xc4\xa0Kaiser\xc4\xa0Justin\xc4\xa0Junior\xc4\xa0Jungle\xc4\xa0Julius" +"\xc4\xa0Juliet\xc4\xa0Julian\xc4\xa0Judith\xc4\xa0Judges\xc4\xa0Joshua\xc4\xa0Jo" +"seph\xc4\xa0Joined\xc4\xa0Johnny\xc4\xa0Jindal\xc4\xa0Jewish\xc4\xa0Jesuit\xc4\xa0" +"Jessie\xc4\xa0Jersey\xc4\xa0Jerome\xc4\xa0Jeremy\xc4\xa0Jensen\xc4\xa0Jenner\xc4" +"\xa0Jeanne\xc4\xa0Javier\xc4\xa0Jasper\xc4\xa0Jarvis\xc4\xa0Jacobs\xc4\xa0Jackie" +"\xc4\xa0Ivanka\xc4\xa0Issues\xc4\xa0Isaiah\xc4\xa0Isabel\xc4\xa0Irving\xc4\xa0Ir" +"vine\xc4\xa0Iraqis\xc4\xa0Intent\xc4\xa0Intake\xc4\xa0Insert\xc4\xa0Insect\xc4\xa0" +"Injury\xc4\xa0Ingram\xc4\xa0Infect\xc4\xa0Indigo\xc4\xa0Indies\xc4\xa0Indeed\xc4" +"\xa0Income\xc4\xa0Impact\xc4\xa0Images\xc4\xa0Ignore\xc4\xa0Ichigo\xc4\xa0INCLUD" +"\xc4\xa0IMAGES\xc4\xa0Hybrid\xc4\xa0Hungry\xc4\xa0Hunger\xc4\xa0Humans\xc4\xa0Hu" +"mane\xc4\xa0Hughes\xc4\xa0Hudson\xc4\xa0Hubble\xc4\xa0Huawei\xc4\xa0Howell\xc4\xa0" +"Howard\xc4\xa0Houses\xc4\xa0Horton\xc4\xa0Horses\xc4\xa0Horror\xc4\xa0Hoover\xc4" +"\xa0Honour\xc4\xa0Holmes\xc4\xa0Hollow\xc4\xa0Holder\xc4\xa0Holden\xc4\xa0Hockey" +"\xc4\xa0Hobbit\xc4\xa0Hitman\xc4\xa0Hitler\xc4\xa0Hindus\xc4\xa0Hilton\xc4\xa0Hi" +"ghly\xc4\xa0Higher\xc4\xa0Hidden\xc4\xa0Heroic\xc4\xa0Heroes\xc4\xa0Hermes\xc4\xa0" +"Herman\xc4\xa0Herald\xc4\xa0Helmet\xc4\xa0Heller\xc4\xa0Helena\xc4\xa0Hector\xc4" +"\xa0Hebrew\xc4\xa0Hearts\xc4\xa0Healer\xc4\xa0Header\xc4\xa0Hazard\xc4\xa0Hayden" +"\xc4\xa0Having\xc4\xa0Havana\xc4\xa0Hassan\xc4\xa0Harvey\xc4\xa0Harper\xc4\xa0Ha" +"rold\xc4\xa0Harley\xc4\xa0Harlem\xc4\xa0Harden\xc4\xa0Harbor\xc4\xa0Hanson\xc4\xa0" +"Hansen\xc4\xa0Hannah\xc4\xa0Hammer\xc4\xa0Hacker\xc4\xa0Gustav\xc4\xa0Gundam\xc4" +"\xa0Guitar\xc4\xa0Guinea\xc4\xa0Guilty\xc4\xa0Guides\xc4\xa0Guests\xc4\xa0Guards" +"\xc4\xa0Growth\xc4\xa0Groups\xc4\xa0Grimes\xc4\xa0Greens\xc4\xa0Greene\xc4\xa0Gr" +"eeks\xc4\xa0Greece\xc4\xa0Graves\xc4\xa0Grants\xc4\xa0Grande\xc4\xa0Grammy\xc4\xa0" +"Graham\xc4\xa0Gothic\xc4\xa0Gotham\xc4\xa0Gospel\xc4\xa0Gordon\xc4\xa0Google\xc4" +"\xa0Golden\xc4\xa0Goblin\xc4\xa0Gloves\xc4\xa0Glover\xc4\xa0Gloria\xc4\xa0Global" +"\xc4\xa0Giving\xc4\xa0Github\xc4\xa0GitHub\xc4\xa0Ginger\xc4\xa0Gideon\xc4\xa0Gi" +"bson\xc4\xa0Giants\xc4\xa0Ghosts\xc4\xa0Gerard\xc4\xa0Gerald\xc4\xa0Genius\xc4\xa0" +"Geneva\xc4\xa0Gender\xc4\xa0Gemini\xc4\xa0Gawker\xc4\xa0Gators\xc4\xa0Garner\xc4" +"\xa0Garmin\xc4\xa0Gareth\xc4\xa0Garcia\xc4\xa0Garage\xc4\xa0Gandhi\xc4\xa0Gaming" +"\xc4\xa0Gamble\xc4\xa0Gallup\xc4\xa0Galaxy\xc4\xa0Gained\xc4\xa0Gadget\xc4\xa0""F" +"uture\xc4\xa0""Fusion\xc4\xa0""Fulton\xc4\xa0""Fuller\xc4\xa0""Frozen\xc4\xa0""F" +"rieza\xc4\xa0""Fresno\xc4\xa0""Frenzy\xc4\xa0""Freeze\xc4\xa0""Freddy\xc4\xa0""F" +"raser\xc4\xa0""Franks\xc4\xa0""Frames\xc4\xa0""Fowler\xc4\xa0""Fourth\xc4\xa0""F" +"oster\xc4\xa0""Forums\xc4\xa0""Former\xc4\xa0""Forget\xc4\xa0""Forces\xc4\xa0""F" +"orced\xc4\xa0""Forbes\xc4\xa0""Folder\xc4\xa0""Fnatic\xc4\xa0""Flying\xc4\xa0""F" +"lyers\xc4\xa0""Flores\xc4\xa0""Flight\xc4\xa0""Flickr\xc4\xa0""Flames\xc4\xa0""F" +"iscal\xc4\xa0""Finger\xc4\xa0""Finder\xc4\xa0""Finals\xc4\xa0""Filter\xc4\xa0""F" +"iesta\xc4\xa0""Fields\xc4\xa0""Fenrir\xc4\xa0""Fedora\xc4\xa0""Faster\xc4\xa0""F" +"arage\xc4\xa0""Famous\xc4\xa0""Family\xc4\xa0""Fallon\xc4\xa0""Fallen\xc4\xa0""F" +"ailed\xc4\xa0""Fabric\xc4\xa0""Extras\xc4\xa0""Export\xc4\xa0""Explan\xc4\xa0""E" +"xpend\xc4\xa0""Expect\xc4\xa0""Expand\xc4\xa0""Exodus\xc4\xa0""Events\xc4\xa0""E" +"uropa\xc4\xa0""Eugene\xc4\xa0""Ethnic\xc4\xa0""Ethics\xc4\xa0""Esther\xc4\xa0""E" +"state\xc4\xa0""Escape\xc4\xa0""Errors\xc4\xa0""Ernest\xc4\xa0""Equity\xc4\xa0""E" +"pidem\xc4\xa0""Ensure\xc4\xa0""Enough\xc4\xa0""Engels\xc4\xa0""Energy\xc4\xa0""E" +"nding\xc4\xa0""Eminem\xc4\xa0""Emblem\xc4\xa0""Emails\xc4\xa0""Elixir\xc4\xa0""E" +"lijah\xc4\xa0""Eleven\xc4\xa0""Elaine\xc4\xa0""Either\xc4\xa0""Eighth\xc4\xa0""E" +"dmund\xc4\xa0""Edited\xc4\xa0""Edison\xc4\xa0""Echoes\xc4\xa0""Eating\xc4\xa0""E" +"agles\xc4\xa0""EVENTS\xc4\xa0""Dynamo\xc4\xa0""Dwight\xc4\xa0""Dustin\xc4\xa0""D" +"uring\xc4\xa0""Durham\xc4\xa0""Durant\xc4\xa0""Dunham\xc4\xa0""Duncan\xc4\xa0""D" +"udley\xc4\xa0""Dublin\xc4\xa0""Drupal\xc4\xa0""Dreams\xc4\xa0""Draper\xc4\xa0""D" +"ozens\xc4\xa0""Double\xc4\xa0""Doodle\xc4\xa0""Donkey\xc4\xa0""Donald\xc4\xa0""D" +"omain\xc4\xa0""Docker\xc4\xa0""Dmitry\xc4\xa0""Django\xc4\xa0""Divine\xc4\xa0""D" +"ivide\xc4\xa0""Disapp\xc4\xa0""Diplom\xc4\xa0""Dinner\xc4\xa0""Dillon\xc4\xa0""D" +"igest\xc4\xa0""Diesel\xc4\xa0""Dianne\xc4\xa0""Diablo\xc4\xa0""Dharma\xc4\xa0""D" +"evils\xc4\xa0""Desire\xc4\xa0""Desert\xc4\xa0""Deputy\xc4\xa0""Depths\xc4\xa0""D" +"eploy\xc4\xa0""Denver\xc4\xa0""Dennis\xc4\xa0""Denise\xc4\xa0""Demons\xc4\xa0""D" +"emand\xc4\xa0""Deluxe\xc4\xa0""Delete\xc4\xa0""Degree\xc4\xa0""Defeat\xc4\xa0""D" +"ecker\xc4\xa0""Debian\xc4\xa0""Debbie\xc4\xa0""Debate\xc4\xa0""Deaths\xc4\xa0""D" +"ealer\xc4\xa0""Deadly\xc4\xa0""Dawson\xc4\xa0""Davies\xc4\xa0""Dating\xc4\xa0""D" +"arwin\xc4\xa0""Darren\xc4\xa0""Darius\xc4\xa0""Danish\xc4\xa0""Damien\xc4\xa0""D" +"amian\xc4\xa0""Damage\xc4\xa0""Dalton\xc4\xa0""Dallas\xc4\xa0""Dakota\xc4\xa0""D" +"agger\xc4\xa0""DRAGON\xc4\xa0""DIRECT\xc4\xa0""Cyprus\xc4\xa0""Cyborg\xc4\xa0""C" +"utter\xc4\xa0""Cutler\xc4\xa0""Curtis\xc4\xa0""Cursed\xc4\xa0""Cumber\xc4\xa0""C" +"ullen\xc4\xa0""Crypto\xc4\xa0""Crunch\xc4\xa0""Crosby\xc4\xa0""Crisis\xc4\xa0""C" +"rimes\xc4\xa0""Courts\xc4\xa0""Course\xc4\xa0""County\xc4\xa0""Cotton\xc4\xa0""C" +"ostco\xc4\xa0""Cosmos\xc4\xa0""Cosmic\xc4\xa0""Cortex\xc4\xa0""Corpus\xc4\xa0""C" +"orpse\xc4\xa0""Corona\xc4\xa0""Corner\xc4\xa0""Corker\xc4\xa0""Corbyn\xc4\xa0""C" +"opper\xc4\xa0""Conway\xc4\xa0""Conrad\xc4\xa0""Connor\xc4\xa0""Connie\xc4\xa0""C" +"oming\xc4\xa0""Comics\xc4\xa0""Comedy\xc4\xa0""Combat\xc4\xa0""Column\xc4\xa0""C" +"olour\xc4\xa0""Colors\xc4\xa0""Colony\xc4\xa0""Coffin\xc4\xa0""Coffee\xc4\xa0""C" +"lover\xc4\xa0""Clouds\xc4\xa0""Closed\xc4\xa0""Client\xc4\xa0""Clever\xc4\xa0""C" +"lause\xc4\xa0""Claude\xc4\xa0""Clarke\xc4\xa0""Clancy\xc4\xa0""Claire\xc4\xa0""C" +"laims\xc4\xa0""Cities\xc4\xa0""Circus\xc4\xa0""Circle\xc4\xa0""Cipher\xc4\xa0""C" +"inema\xc4\xa0""Chosen\xc4\xa0""Choose\xc4\xa0""Choice\xc4\xa0""Chiefs\xc4\xa0""C" +"heryl\xc4\xa0""Cherry\xc4\xa0""Cheong\xc4\xa0""Cheney\xc4\xa0""Cheese\xc4\xa0""C" +"hecks\xc4\xa0""Chavez\xc4\xa0""Chaser\xc4\xa0""Chapel\xc4\xa0""Chains\xc4\xa0""C" +"entre\xc4\xa0""CentOS\xc4\xa0""Census\xc4\xa0""Cavern\xc4\xa0""Causes\xc4\xa0""C" +"aucus\xc4\xa0""Casual\xc4\xa0""Castro\xc4\xa0""Castle\xc4\xa0""Casino\xc4\xa0""C" +"arter\xc4\xa0""Carson\xc4\xa0""Carney\xc4\xa0""Carmen\xc4\xa0""Carlos\xc4\xa0""C" +"areer\xc4\xa0""Carbon\xc4\xa0""Capcom\xc4\xa0""Canyon\xc4\xa0""Cantor\xc4\xa0""C" +"annot\xc4\xa0""Cannon\xc4\xa0""Cannes\xc4\xa0""Candle\xc4\xa0""Cancer\xc4\xa0""C" +"ancel\xc4\xa0""Canary\xc4\xa0""Canada\xc4\xa0""Canaan\xc4\xa0""Campus\xc4\xa0""C" +"amera\xc4\xa0""Camden\xc4\xa0""Calvin\xc4\xa0""Caller\xc4\xa0""Called\xc4\xa0""C" +"alder\xc4\xa0""Calais\xc4\xa0""Caesar\xc4\xa0""COUNTY\xc4\xa0""CONTIN\xc4\xa0""C" +"ONFIG\xc4\xa0""COMPLE\xc4\xa0""COMMUN\xc4\xa0""CLIENT\xc4\xa0""CHRIST\xc4\xa0""B" +"utton\xc4\xa0""Butler\xc4\xa0""Buster\xc4\xa0""Burton\xc4\xa0""Burger\xc4\xa0""B" +"ureau\xc4\xa0""Bunker\xc4\xa0""Bungie\xc4\xa0""Bundle\xc4\xa0""Buffer\xc4\xa0""B" +"uenos\xc4\xa0""Budget\xc4\xa0""Buddha\xc4\xa0""Bucket\xc4\xa0""Bubble\xc4\xa0""B" +"ryant\xc4\xa0""Bruins\xc4\xa0""Browns\xc4\xa0""Browne\xc4\xa0""Brooks\xc4\xa0""B" +"rooke\xc4\xa0""Bronze\xc4\xa0""Broken\xc4\xa0""Briggs\xc4\xa0""Brexit\xc4\xa0""B" +"reath\xc4\xa0""Breast\xc4\xa0""Breach\xc4\xa0""Braves\xc4\xa0""Brands\xc4\xa0""B" +"ranch\xc4\xa0""Boxing\xc4\xa0""Bowser\xc4\xa0""Bowman\xc4\xa0""Bounty\xc4\xa0""B" +"ounce\xc4\xa0""Bought\xc4\xa0""Bottom\xc4\xa0""Bottle\xc4\xa0""Boston\xc4\xa0""B" +"osnia\xc4\xa0""Booker\xc4\xa0""Bonnie\xc4\xa0""Bomber\xc4\xa0""Bombay\xc4\xa0""B" +"olton\xc4\xa0""Boeing\xc4\xa0""Boards\xc4\xa0""Bloody\xc4\xa0""Blocks\xc4\xa0""B" +"leach\xc4\xa0""Blasio\xc4\xa0""Blades\xc4\xa0""Blacks\xc4\xa0""Bishop\xc4\xa0""B" +"inary\xc4\xa0""Bieber\xc4\xa0""Beyond\xc4\xa0""Beware\xc4\xa0""Better\xc4\xa0""B" +"ernie\xc4\xa0""Berman\xc4\xa0""Berlin\xc4\xa0""Berger\xc4\xa0""Benson\xc4\xa0""B" +"ender\xc4\xa0""Bellev\xc4\xa0""Belief\xc4\xa0""Beirut\xc4\xa0""Behind\xc4\xa0""B" +"egins\xc4\xa0""Before\xc4\xa0""Beetle\xc4\xa0""Become\xc4\xa0""Becker\xc4\xa0""B" +"ecame\xc4\xa0""Beaver\xc4\xa0""Beauty\xc4\xa0""Beasts\xc4\xa0""Beacon\xc4\xa0""B" +"aylor\xc4\xa0""Bayern\xc4\xa0""Baxter\xc4\xa0""Batman\xc4\xa0""Basics\xc4\xa0""B" +"ashar\xc4\xa0""Barton\xc4\xa0""Barron\xc4\xa0""Barrel\xc4\xa0""Barney\xc4\xa0""B" +"arnes\xc4\xa0""Barker\xc4\xa0""Barbie\xc4\xa0""Barber\xc4\xa0""Barack\xc4\xa0""B" +"annon\xc4\xa0""Banner\xc4\xa0""Banana\xc4\xa0""Baltic\xc4\xa0""Bailey\xc4\xa0""B" +"ackup\xc4\xa0""BEFORE\xc4\xa0""Awoken\xc4\xa0""Awards\xc4\xa0""Avenue\xc4\xa0""A" +"vatar\xc4\xa0""Avalon\xc4\xa0""Autumn\xc4\xa0""Autism\xc4\xa0""Austin\xc4\xa0""A" +"urora\xc4\xa0""Audrey\xc4\xa0""Auburn\xc4\xa0""Attend\xc4\xa0""Atomic\xc4\xa0""A" +"thens\xc4\xa0""Athena\xc4\xa0""Asylum\xc4\xa0""Astros\xc4\xa0""Astron\xc4\xa0""A" +"stral\xc4\xa0""Assets\xc4\xa0""Asians\xc4\xa0""Ashton\xc4\xa0""Ashley\xc4\xa0""A" +"sgard\xc4\xa0""Ascend\xc4\xa0""Arthur\xc4\xa0""Arrows\xc4\xa0""Arrest\xc4\xa0""A" +"rpaio\xc4\xa0""Around\xc4\xa0""Arnold\xc4\xa0""Armour\xc4\xa0""Armory\xc4\xa0""A" +"rkham\xc4\xa0""Arctic\xc4\xa0""Archie\xc4\xa0""Archer\xc4\xa0""Archae\xc4\xa0""A" +"rcane\xc4\xa0""Arcade\xc4\xa0""Arabic\xc4\xa0""Apollo\xc4\xa0""Apache\xc4\xa0""A" +"nyway\xc4\xa0""Anyone\xc4\xa0""Antiqu\xc4\xa0""Anthem\xc4\xa0""Annual\xc4\xa0""A" +"nkara\xc4\xa0""Angola\xc4\xa0""Anglic\xc4\xa0""Angels\xc4\xa0""Angelo\xc4\xa0""A" +"ngela\xc4\xa0""Ancest\xc4\xa0""Analog\xc4\xa0""Amtrak\xc4\xa0""Amount\xc4\xa0""A" +"melia\xc4\xa0""Amazon\xc4\xa0""Amanda\xc4\xa0""Always\xc4\xa0""Alpine\xc4\xa0""A" +"lonso\xc4\xa0""Almost\xc4\xa0""Allows\xc4\xa0""Allies\xc4\xa0""Allied\xc4\xa0""A" +"llaah\xc4\xa0""Alison\xc4\xa0""Aliens\xc4\xa0""Alicia\xc4\xa0""Alfred\xc4\xa0""A" +"lexis\xc4\xa0""Aleppo\xc4\xa0""Albion\xc4\xa0""Albany\xc4\xa0""Alaska\xc4\xa0""A" +"irbus\xc4\xa0""Airbnb\xc4\xa0""Agents\xc4\xa0""Agenda\xc4\xa0""Agency\xc4\xa0""A" +"ffect\xc4\xa0""Aether\xc4\xa0""Aerial\xc4\xa0""Advice\xc4\xa0""Adults\xc4\xa0""A" +"drian\xc4\xa0""Adidas\xc4\xa0""Adding\xc4\xa0""Active\xc4\xa0""Acting\xc4\xa0""A" +"cross\xc4\xa0""Accept\xc4\xa0""Absent\xc4\xa0""Abrams\xc4\xa0""Abedin\xc4\xa0""A" +"bbott\xc4\xa0""AUTHOR\xc4\xa0""APPLIC\xc4\xa0""ALWAYSyrightsvenantsursionsupload" +"stherealtaboolaskinnedsightedrounderropolisricularravingsotropicoshenkoosaurusop" +"ausalopathiconementominiumolithicokinglyoglobinningtonnetflixlictionlatablekeepe" +"rsittanceineriesinatorsinatelyimesterilantroigguratifloweriddlingiatureshillaryg" +"rouponfledgedfetchedfectureetricalervilleentimesdayNameclintoncffffccbringerbrai" +"nerbloodedaveringauticalauldronaughlinaterasuappingsachableabblingWINDOWSVERSION" +"TimeoutTEXTURESemiticSaharanRoamingRESULTSRELATEDNotableEnlargeClosureCONCLUSCHA" +"PTERAppDataATIONAL\xc4\xa0zones\xc4\xa0yells\xc4\xa0yeast\xc4\xa0years\xc4\xa0ya" +"rds\xc4\xa0yacht\xc4\xa0wrote\xc4\xa0wrath\xc4\xa0wraps\xc4\xa0woven\xc4\xa0wors" +"t\xc4\xa0worms\xc4\xa0words\xc4\xa0woods\xc4\xa0women\xc4\xa0woman\xc4\xa0wives\xc4" +"\xa0witty\xc4\xa0wiser\xc4\xa0wiret\xc4\xa0wires\xc4\xa0wired\xc4\xa0wipes\xc4\xa0" +"wiped\xc4\xa0wings\xc4\xa0wines\xc4\xa0wills\xc4\xa0width\xc4\xa0widow\xc4\xa0wi" +"der\xc4\xa0whose\xc4\xa0whore\xc4\xa0whine\xc4\xa0whims\xc4\xa0while\xc4\xa0whif" +"f\xc4\xa0wheat\xc4\xa0weren\xc4\xa0wells\xc4\xa0weird\xc4\xa0weeks\xc4\xa0weeds\xc4" +"\xa0wedge\xc4\xa0weave\xc4\xa0weary\xc4\xa0wears\xc4\xa0waves\xc4\xa0waved\xc4\xa0" +"watts\xc4\xa0warns\xc4\xa0wards\xc4\xa0wants\xc4\xa0wanna\xc4\xa0walls\xc4\xa0wa" +"lks\xc4\xa0wakes\xc4\xa0waits\xc4\xa0waist\xc4\xa0wagon\xc4\xa0wages\xc4\xa0wage" +"d\xc4\xa0vying\xc4\xa0vowel\xc4\xa0vowed\xc4\xa0votes\xc4\xa0voted\xc4\xa0volts\xc4" +"\xa0vodka\xc4\xa0vitro\xc4\xa0vitri\xc4\xa0visas\xc4\xa0viral\xc4\xa0vinyl\xc4\xa0" +"vines\xc4\xa0views\xc4\xa0verge\xc4\xa0verbs\xc4\xa0vents\xc4\xa0venom\xc4\xa0ve" +"ins\xc4\xa0vegan\xc4\xa0vault\xc4\xa0vapor\xc4\xa0using\xc4\xa0users\xc4\xa0usag" +"e\xc4\xa0urine\xc4\xa0urges\xc4\xa0urged\xc4\xa0urban\xc4\xa0upper\xc4\xa0until\xc4" +"\xa0unsub\xc4\xa0unrem\xc4\xa0unity\xc4\xa0units\xc4\xa0unfit\xc4\xa0undue\xc4\xa0" +"undet\xc4\xa0unatt\xc4\xa0unamb\xc4\xa0tyres\xc4\xa0typew\xc4\xa0types\xc4\xa0ty" +"ped\xc4\xa0tying\xc4\xa0twins\xc4\xa0twice\xc4\xa0turns\xc4\xa0turbo\xc4\xa0tupl" +"e\xc4\xa0tunes\xc4\xa0tuned\xc4\xa0tubes\xc4\xa0trunk\xc4\xa0trunc\xc4\xa0truly\xc4" +"\xa0truce\xc4\xa0trove\xc4\xa0trout\xc4\xa0trips\xc4\xa0tries\xc4\xa0tried\xc4\xa0" +"trees\xc4\xa0trash\xc4\xa0traps\xc4\xa0towed\xc4\xa0tours\xc4\xa0totem\xc4\xa0to" +"rso\xc4\xa0tooth\xc4\xa0tools\xc4\xa0tones\xc4\xa0today\xc4\xa0toast\xc4\xa0tire" +"s\xc4\xa0tired\xc4\xa0timid\xc4\xa0timed\xc4\xa0tiles\xc4\xa0tiers\xc4\xa0tides\xc4" +"\xa0tidal\xc4\xa0ticks\xc4\xa0thugs\xc4\xa0throb\xc4\xa0threw\xc4\xa0three\xc4\xa0" +"those\xc4\xa0thorn\xc4\xa0thief\xc4\xa0these\xc4\xa0thats\xc4\xa0texts\xc4\xa0te" +"sts\xc4\xa0terms\xc4\xa0tents\xc4\xa0tenth\xc4\xa0tense\xc4\xa0tends\xc4\xa0tell" +"s\xc4\xa0teeth\xc4\xa0teens\xc4\xa0tears\xc4\xa0teams\xc4\xa0taxis\xc4\xa0taxes\xc4" +"\xa0taxed\xc4\xa0taunt\xc4\xa0tasty\xc4\xa0tasks\xc4\xa0tapes\xc4\xa0taped\xc4\xa0" +"tanks\xc4\xa0tally\xc4\xa0talks\xc4\xa0tales\xc4\xa0takes\xc4\xa0taken\xc4\xa0ta" +"ils\xc4\xa0tacos\xc4\xa0tacit\xc4\xa0taboo\xc4\xa0syrup\xc4\xa0swung\xc4\xa0swor" +"n\xc4\xa0swore\xc4\xa0swoop\xc4\xa0swipe\xc4\xa0swept\xc4\xa0swath\xc4\xa0swast\xc4" +"\xa0swarm\xc4\xa0swaps\xc4\xa0swamp\xc4\xa0sushi\xc4\xa0supra\xc4\xa0sunny\xc4\xa0" +"sulph\xc4\xa0suits\xc4\xa0suing\xc4\xa0sucks\xc4\xa0stump\xc4\xa0stuck\xc4\xa0st" +"ray\xc4\xa0stove\xc4\xa0stout\xc4\xa0stops\xc4\xa0stool\xc4\xa0stood\xc4\xa0stom" +"p\xc4\xa0stint\xc4\xa0stink\xc4\xa0sting\xc4\xa0still\xc4\xa0stern\xc4\xa0steps\xc4" +"\xa0stems\xc4\xa0steep\xc4\xa0steel\xc4\xa0steam\xc4\xa0steak\xc4\xa0stays\xc4\xa0" +"stats\xc4\xa0stash\xc4\xa0stark\xc4\xa0stale\xc4\xa0squid\xc4\xa0spree\xc4\xa0sp" +"ots\xc4\xa0spoon\xc4\xa0spoof\xc4\xa0spite\xc4\xa0spins\xc4\xa0spine\xc4\xa0spie" +"s\xc4\xa0spicy\xc4\xa0sperm\xc4\xa0spent\xc4\xa0specs\xc4\xa0spate\xc4\xa0spans\xc4" +"\xa0souls\xc4\xa0sorts\xc4\xa0sorry\xc4\xa0sonic\xc4\xa0songs\xc4\xa0solar\xc4\xa0" +"soils\xc4\xa0socks\xc4\xa0sober\xc4\xa0snowy\xc4\xa0sniff\xc4\xa0snail\xc4\xa0sm" +"ear\xc4\xa0smack\xc4\xa0slurs\xc4\xa0slows\xc4\xa0slots\xc4\xa0slips\xc4\xa0slin" +"g\xc4\xa0slime\xc4\xa0slick\xc4\xa0slept\xc4\xa0sleek\xc4\xa0slang\xc4\xa0slams\xc4" +"\xa0slain\xc4\xa0slack\xc4\xa0skysc\xc4\xa0skirm\xc4\xa0skins\xc4\xa0skies\xc4\xa0" +"skate\xc4\xa0sizes\xc4\xa0sized\xc4\xa0sixty\xc4\xa0sixth\xc4\xa0sites\xc4\xa0si" +"nks\xc4\xa0sings\xc4\xa0silly\xc4\xa0signs\xc4\xa0siege\xc4\xa0sides\xc4\xa0side" +"d\xc4\xa0shuts\xc4\xa0shrew\xc4\xa0shows\xc4\xa0shown\xc4\xa0shots\xc4\xa0shops\xc4" +"\xa0shook\xc4\xa0shone\xc4\xa0shoes\xc4\xa0ships\xc4\xa0shiny\xc4\xa0shelf\xc4\xa0" +"sheer\xc4\xa0sheep\xc4\xa0sheds\xc4\xa0shalt\xc4\xa0shale\xc4\xa0shaky\xc4\xa0sh" +"aft\xc4\xa0shady\xc4\xa0shack\xc4\xa0sexes\xc4\xa0sewer\xc4\xa0serum\xc4\xa0send" +"s\xc4\xa0semic\xc4\xa0semen\xc4\xa0sells\xc4\xa0seems\xc4\xa0seeks\xc4\xa0seeds\xc4" +"\xa0sedan\xc4\xa0sects\xc4\xa0seats\xc4\xa0seams\xc4\xa0seals\xc4\xa0scrub\xc4\xa0" +"scrib\xc4\xa0scorp\xc4\xa0scorn\xc4\xa0scope\xc4\xa0scoop\xc4\xa0scoff\xc4\xa0sc" +"ept\xc4\xa0scent\xc4\xa0scary\xc4\xa0scars\xc4\xa0scarf\xc4\xa0scant\xc4\xa0scan" +"s\xc4\xa0scams\xc4\xa0scalp\xc4\xa0scaff\xc4\xa0savvy\xc4\xa0saves\xc4\xa0saved\xc4" +"\xa0sandy\xc4\xa0sands\xc4\xa0salty\xc4\xa0salts\xc4\xa0salsa\xc4\xa0salon\xc4\xa0" +"sails\xc4\xa0safer\xc4\xa0sadly\xc4\xa0sacks\xc4\xa0rusty\xc4\xa0rural\xc4\xa0ru" +"nes\xc4\xa0rules\xc4\xa0ruled\xc4\xa0ruins\xc4\xa0rugby\xc4\xa0rover\xc4\xa0roto" +"r\xc4\xa0roses\xc4\xa0ropes\xc4\xa0roots\xc4\xa0rooms\xc4\xa0roofs\xc4\xa0rolls\xc4" +"\xa0roles\xc4\xa0rogue\xc4\xa0rocky\xc4\xa0rocks\xc4\xa0robes\xc4\xa0rites\xc4\xa0" +"risky\xc4\xa0risks\xc4\xa0rises\xc4\xa0risen\xc4\xa0riots\xc4\xa0rinse\xc4\xa0ri" +"ngs\xc4\xa0rigid\xc4\xa0ridge\xc4\xa0rides\xc4\xa0rests\xc4\xa0resin\xc4\xa0repu" +"d\xc4\xa0reply\xc4\xa0rents\xc4\xa0renal\xc4\xa0remod\xc4\xa0remix\xc4\xa0regex\xc4" +"\xa0reefs\xc4\xa0redef\xc4\xa0rearr\xc4\xa0reapp\xc4\xa0reaff\xc4\xa0ready\xc4\xa0" +"reads\xc4\xa0razor\xc4\xa0raven\xc4\xa0rates\xc4\xa0rated\xc4\xa0rapes\xc4\xa0ra" +"ped\xc4\xa0ranks\xc4\xa0ranch\xc4\xa0ramps\xc4\xa0rainy\xc4\xa0rains\xc4\xa0rail" +"s\xc4\xa0raids\xc4\xa0raged\xc4\xa0radar\xc4\xa0racks\xc4\xa0races\xc4\xa0racer\xc4" +"\xa0raced\xc4\xa0rabid\xc4\xa0quizz\xc4\xa0quite\xc4\xa0quint\xc4\xa0query\xc4\xa0" +"queer\xc4\xa0quasi\xc4\xa0quake\xc4\xa0pussy\xc4\xa0purse\xc4\xa0purge\xc4\xa0pu" +"ppy\xc4\xa0punct\xc4\xa0pumps\xc4\xa0pulls\xc4\xa0proxy\xc4\xa0props\xc4\xa0pron" +"e\xc4\xa0prism\xc4\xa0pride\xc4\xa0prick\xc4\xa0prank\xc4\xa0pouch\xc4\xa0poses\xc4" +"\xa0posed\xc4\xa0ports\xc4\xa0pores\xc4\xa0porch\xc4\xa0popup\xc4\xa0poppy\xc4\xa0" +"pools\xc4\xa0ponds\xc4\xa0polls\xc4\xa0polio\xc4\xa0poles\xc4\xa0poker\xc4\xa0po" +"ked\xc4\xa0poets\xc4\xa0poems\xc4\xa0plush\xc4\xa0plugs\xc4\xa0plots\xc4\xa0plaz" +"a\xc4\xa0plays\xc4\xa0plans\xc4\xa0plank\xc4\xa0pizza\xc4\xa0pipes\xc4\xa0pious\xc4" +"\xa0pinch\xc4\xa0pills\xc4\xa0piles\xc4\xa0piled\xc4\xa0piety\xc4\xa0picks\xc4\xa0" +"piano\xc4\xa0phony\xc4\xa0petty\xc4\xa0pests\xc4\xa0pesky\xc4\xa0perme\xc4\xa0pe" +"rks\xc4\xa0penny\xc4\xa0penis\xc4\xa0pengu\xc4\xa0peers\xc4\xa0pearl\xc4\xa0peak" +"s\xc4\xa0peach\xc4\xa0paved\xc4\xa0patio\xc4\xa0paths\xc4\xa0paste\xc4\xa0pasta\xc4" +"\xa0parts\xc4\xa0parks\xc4\xa0pants\xc4\xa0palms\xc4\xa0pairs\xc4\xa0pages\xc4\xa0" +"pagan\xc4\xa0packs\xc4\xa0pacif\xc4\xa0paced\xc4\xa0ozone\xc4\xa0oxide\xc4\xa0ow" +"ned\xc4\xa0owing\xc4\xa0outer\xc4\xa0ought\xc4\xa0opted\xc4\xa0opium\xc4\xa0open" +"s\xc4\xa0onset\xc4\xa0omnip\xc4\xa0omega\xc4\xa0olive\xc4\xa0older\xc4\xa0often\xc4" +"\xa0oddly\xc4\xa0obese\xc4\xa0nylon\xc4\xa0notes\xc4\xa0noted\xc4\xa0notch\xc4\xa0" +"noses\xc4\xa0norms\xc4\xa0noisy\xc4\xa0nodes\xc4\xa0ninth\xc4\xa0ninja\xc4\xa0ni" +"hil\xc4\xa0nifty\xc4\xa0niece\xc4\xa0niche\xc4\xa0nicer\xc4\xa0nexus\xc4\xa0newl" +"y\xc4\xa0newer\xc4\xa0nests\xc4\xa0nerds\xc4\xa0negro\xc4\xa0needy\xc4\xa0needs\xc4" +"\xa0necks\xc4\xa0naval\xc4\xa0nasty\xc4\xa0nasal\xc4\xa0nanop\xc4\xa0named\xc4\xa0" +"naked\xc4\xa0naive\xc4\xa0nails\xc4\xa0myths\xc4\xa0mysql\xc4\xa0muted\xc4\xa0mu" +"rky\xc4\xa0mural\xc4\xa0mummy\xc4\xa0muddy\xc4\xa0moves\xc4\xa0moved\xc4\xa0mous" +"e\xc4\xa0mound\xc4\xa0mould\xc4\xa0motto\xc4\xa0motif\xc4\xa0motel\xc4\xa0moons\xc4" +"\xa0monog\xc4\xa0monks\xc4\xa0money\xc4\xa0mogul\xc4\xa0modem\xc4\xa0mixes\xc4\xa0" +"mixer\xc4\xa0mixed\xc4\xa0minus\xc4\xa0mines\xc4\xa0mined\xc4\xa0mimic\xc4\xa0mi" +"lls\xc4\xa0midst\xc4\xa0messy\xc4\xa0merry\xc4\xa0mercy\xc4\xa0menus\xc4\xa0memo" +"s\xc4\xa0memes\xc4\xa0melts\xc4\xa0melee\xc4\xa0meets\xc4\xa0meats\xc4\xa0means\xc4" +"\xa0meals\xc4\xa0maybe\xc4\xa0maths\xc4\xa0mates\xc4\xa0masks\xc4\xa0marsh\xc4\xa0" +"marks\xc4\xa0maple\xc4\xa0manic\xc4\xa0mango\xc4\xa0manga\xc4\xa0malls\xc4\xa0ma" +"les\xc4\xa0maize\xc4\xa0mages\xc4\xa0mafia\xc4\xa0macOS\xc4\xa0lymph\xc4\xa0lyin" +"g\xc4\xa0lured\xc4\xa0lungs\xc4\xa0lunch\xc4\xa0lunar\xc4\xa0lumin\xc4\xa0lucky\xc4" +"\xa0lucid\xc4\xa0lowly\xc4\xa0loves\xc4\xa0loved\xc4\xa0lousy\xc4\xa0loses\xc4\xa0" +"lords\xc4\xa0loops\xc4\xa0looms\xc4\xa0looks\xc4\xa0logos\xc4\xa0login\xc4\xa0lo" +"fty\xc4\xa0locom\xc4\xa0locks\xc4\xa0loans\xc4\xa0loads\xc4\xa0liver\xc4\xa0live" +"d\xc4\xa0lists\xc4\xa0lipid\xc4\xa0lions\xc4\xa0linux\xc4\xa0links\xc4\xa0lines\xc4" +"\xa0liner\xc4\xa0linen\xc4\xa0lined\xc4\xa0limbs\xc4\xa0limbo\xc4\xa0likes\xc4\xa0" +"liked\xc4\xa0lifts\xc4\xa0libel\xc4\xa0lends\xc4\xa0lemon\xc4\xa0least\xc4\xa0le" +"ash\xc4\xa0leapt\xc4\xa0leaps\xc4\xa0leans\xc4\xa0leaks\xc4\xa0leads\xc4\xa0late" +"x\xc4\xa0latch\xc4\xa0lasts\xc4\xa0lapse\xc4\xa0lanes\xc4\xa0lamps\xc4\xa0lakes\xc4" +"\xa0lacks\xc4\xa0laced\xc4\xa0knows\xc4\xa0known\xc4\xa0knots\xc4\xa0knife\xc4\xa0" +"knees\xc4\xa0knack\xc4\xa0kings\xc4\xa0kinds\xc4\xa0kinda\xc4\xa0kills\xc4\xa0ki" +"cks\xc4\xa0keeps\xc4\xa0karma\xc4\xa0jumps\xc4\xa0juicy\xc4\xa0jokes\xc4\xa0joke" +"d\xc4\xa0joins\xc4\xa0jelly\xc4\xa0jeans\xc4\xa0jails\xc4\xa0ivory\xc4\xa0items\xc4" +"\xa0irrad\xc4\xa0irony\xc4\xa0inund\xc4\xa0insol\xc4\xa0insin\xc4\xa0inner\xc4\xa0" +"inhal\xc4\xa0inept\xc4\xa0indie\xc4\xa0incub\xc4\xa0inbox\xc4\xa0idols\xc4\xa0id" +"eas\xc4\xa0icons\xc4\xa0icing\xc4\xa0iPads\xc4\xa0hurts\xc4\xa0hurry\xc4\xa0hunt" +"s\xc4\xa0https\xc4\xa0hours\xc4\xa0hotly\xc4\xa0hosts\xc4\xa0horny\xc4\xa0horns\xc4" +"\xa0hopes\xc4\xa0hoped\xc4\xa0hoops\xc4\xa0hooks\xc4\xa0honey\xc4\xa0homes\xc4\xa0" +"holog\xc4\xa0holes\xc4\xa0holds\xc4\xa0hobby\xc4\xa0hoard\xc4\xa0hitch\xc4\xa0hi" +"res\xc4\xa0hired\xc4\xa0hints\xc4\xa0hills\xc4\xa0hikes\xc4\xa0hijab\xc4\xa0high" +"s\xc4\xa0hides\xc4\xa0hiber\xc4\xa0herds\xc4\xa0herbs\xc4\xa0hence\xc4\xa0helps\xc4" +"\xa0hello\xc4\xa0heirs\xc4\xa0hefty\xc4\xa0heels\xc4\xa0hedge\xc4\xa0heats\xc4\xa0" +"hears\xc4\xa0heard\xc4\xa0heals\xc4\xa0havoc\xc4\xa0hates\xc4\xa0hated\xc4\xa0ha" +"ste\xc4\xa0harms\xc4\xa0happy\xc4\xa0hangs\xc4\xa0handy\xc4\xa0halls\xc4\xa0hair" +"y\xc4\xa0hacks\xc4\xa0guise\xc4\xa0guild\xc4\xa0grunt\xc4\xa0grows\xc4\xa0grown\xc4" +"\xa0groin\xc4\xa0grizz\xc4\xa0grips\xc4\xa0grief\xc4\xa0grids\xc4\xa0gravy\xc4\xa0" +"grams\xc4\xa0graft\xc4\xa0grabs\xc4\xa0gotta\xc4\xa0goose\xc4\xa0goofy\xc4\xa0go" +"ods\xc4\xa0gonna\xc4\xa0going\xc4\xa0goats\xc4\xa0goals\xc4\xa0glued\xc4\xa0glor" +"y\xc4\xa0globe\xc4\xa0glide\xc4\xa0glean\xc4\xa0gives\xc4\xa0given\xc4\xa0girls\xc4" +"\xa0gifts\xc4\xa0genus\xc4\xa0gears\xc4\xa0gazed\xc4\xa0gauge\xc4\xa0gates\xc4\xa0" +"gases\xc4\xa0gangs\xc4\xa0gamma\xc4\xa0games\xc4\xa0gains\xc4\xa0""fuzzy\xc4\xa0" +"""fused\xc4\xa0""furry\xc4\xa0""funny\xc4\xa0""funky\xc4\xa0""fungi\xc4\xa0""fun" +"ds\xc4\xa0""fumes\xc4\xa0""fully\xc4\xa0""fuels\xc4\xa0""frost\xc4\xa0""frogs\xc4" +"\xa0""fries\xc4\xa0""fried\xc4\xa0""frail\xc4\xa0""forty\xc4\xa0""forms\xc4\xa0""f" +"orks\xc4\xa0""foray\xc4\xa0""fools\xc4\xa0""foods\xc4\xa0""fonts\xc4\xa0""folly\xc4" +"\xa0""folks\xc4\xa0""folds\xc4\xa0""focal\xc4\xa0""flung\xc4\xa0""flows\xc4\xa0""f" +"lown\xc4\xa0""flock\xc4\xa0""flirt\xc4\xa0""flips\xc4\xa0""flies\xc4\xa0""flesh\xc4" +"\xa0""flaws\xc4\xa0""flats\xc4\xa0""flask\xc4\xa0""flair\xc4\xa0""fixme\xc4\xa0""f" +"ixes\xc4\xa0""fixed\xc4\xa0""fists\xc4\xa0""firms\xc4\xa0""fires\xc4\xa0""fired\xc4" +"\xa0""finer\xc4\xa0""fined\xc4\xa0""finds\xc4\xa0""films\xc4\xa0""fills\xc4\xa0""f" +"iled\xc4\xa0""fifty\xc4\xa0""fifth\xc4\xa0""fiery\xc4\xa0""fibre\xc4\xa0""fewer\xc4" +"\xa0""fever\xc4\xa0""fetus\xc4\xa0""fetch\xc4\xa0""fetal\xc4\xa0""ferry\xc4\xa0""f" +"eral\xc4\xa0""feels\xc4\xa0""feeds\xc4\xa0""feces\xc4\xa0""feats\xc4\xa0""feast\xc4" +"\xa0""fatty\xc4\xa0""farms\xc4\xa0""fares\xc4\xa0""fared\xc4\xa0""fancy\xc4\xa0""f" +"amed\xc4\xa0""falls\xc4\xa0""faked\xc4\xa0""fairy\xc4\xa0""faire\xc4\xa0""fails\xc4" +"\xa0""fades\xc4\xa0""faded\xc4\xa0""facts\xc4\xa0""faces\xc4\xa0""faced\xc4\xa0""e" +"xorc\xc4\xa0""exits\xc4\xa0""exams\xc4\xa0""evoke\xc4\xa0""evils\xc4\xa0""evade\xc4" +"\xa0""euros\xc4\xa0""ethos\xc4\xa0""ether\xc4\xa0""esche\xc4\xa0""epoch\xc4\xa0""e" +"pist\xc4\xa0""envoy\xc4\xa0""entry\xc4\xa0""enshr\xc4\xa0""enemy\xc4\xa0""endot\xc4" +"\xa0""endif\xc4\xa0""ended\xc4\xa0""encro\xc4\xa0""empty\xc4\xa0""emoji\xc4\xa0""e" +"mits\xc4\xa0""elves\xc4\xa0""eloqu\xc4\xa0""elong\xc4\xa0""eerie\xc4\xa0""edits\xc4" +"\xa0""edges\xc4\xa0""edged\xc4\xa0""ebook\xc4\xa0""eaves\xc4\xa0""eater\xc4\xa0""e" +"aten\xc4\xa0""eased\xc4\xa0""earns\xc4\xa0""early\xc4\xa0""eagle\xc4\xa0""eBook\xc4" +"\xa0""dysph\xc4\xa0""dying\xc4\xa0""dwarf\xc4\xa0""dusty\xc4\xa0""dunno\xc4\xa0""d" +"umps\xc4\xa0""dummy\xc4\xa0""dudes\xc4\xa0""ducks\xc4\xa0""drums\xc4\xa0""drugs\xc4" +"\xa0""drove\xc4\xa0""drops\xc4\xa0""droid\xc4\xa0""dried\xc4\xa0""draws\xc4\xa0""d" +"rawn\xc4\xa0""drank\xc4\xa0""dough\xc4\xa0""doses\xc4\xa0""dolls\xc4\xa0""doing\xc4" +"\xa0""dogma\xc4\xa0""docks\xc4\xa0""divul\xc4\xa0""ditch\xc4\xa0""dissu\xc4\xa0""d" +"isks\xc4\xa0""discs\xc4\xa0""disav\xc4\xa0""dirty\xc4\xa0""diner\xc4\xa0""diets\xc4" +"\xa0""didnt\xc4\xa0""diced\xc4\xa0""diary\xc4\xa0""deval\xc4\xa0""detox\xc4\xa0""d" +"esks\xc4\xa0""derby\xc4\xa0""depot\xc4\xa0""denim\xc4\xa0""demos\xc4\xa0""delve\xc4" +"\xa0""delta\xc4\xa0""delim\xc4\xa0""deity\xc4\xa0""deems\xc4\xa0""deeds\xc4\xa0""d" +"econ\xc4\xa0""decks\xc4\xa0""decap\xc4\xa0""debts\xc4\xa0""debit\xc4\xa0""dealt\xc4" +"\xa0""deals\xc4\xa0""dates\xc4\xa0""dated\xc4\xa0""darts\xc4\xa0""dared\xc4\xa0""d" +"airy\xc4\xa0""daily\xc4\xa0""daddy\xc4\xa0""cytok\xc4\xa0""curry\xc4\xa0""curly\xc4" +"\xa0""curls\xc4\xa0""cures\xc4\xa0""cured\xc4\xa0""cubic\xc4\xa0""cubes\xc4\xa0""c" +"rust\xc4\xa0""crude\xc4\xa0""crore\xc4\xa0""crops\xc4\xa0""cries\xc4\xa0""cried\xc4" +"\xa0""crews\xc4\xa0""crest\xc4\xa0""crept\xc4\xa0""creek\xc4\xa0""creed\xc4\xa0""c" +"razy\xc4\xa0""crave\xc4\xa0""crank\xc4\xa0""crane\xc4\xa0""crabs\xc4\xa0""couch\xc4" +"\xa0""costs\xc4\xa0""cores\xc4\xa0""cords\xc4\xa0""coral\xc4\xa0""cooks\xc4\xa0""c" +"ones\xc4\xa0""comet\xc4\xa0""comes\xc4\xa0""coins\xc4\xa0""coils\xc4\xa0""codes\xc4" +"\xa0""coded\xc4\xa0""codec\xc4\xa0""cocoa\xc4\xa0""coats\xc4\xa0""clues\xc4\xa0""c" +"lubs\xc4\xa0""clown\xc4\xa0""clout\xc4\xa0""clips\xc4\xa0""claws\xc4\xa0""clasp\xc4" +"\xa0""clans\xc4\xa0""clamp\xc4\xa0""civic\xc4\xa0""cites\xc4\xa0""cited\xc4\xa0""c" +"ider\xc4\xa0""churn\xc4\xa0""chops\xc4\xa0""choir\xc4\xa0""chili\xc4\xa0""chess\xc4" +"\xa0""chefs\xc4\xa0""chats\xc4\xa0""chast\xc4\xa0""chars\xc4\xa0""chaos\xc4\xa0""c" +"halk\xc4\xa0""certs\xc4\xa0""cents\xc4\xa0""cells\xc4\xa0""caves\xc4\xa0""casts\xc4" +"\xa0""cases\xc4\xa0""carts\xc4\xa0""cargo\xc4\xa0""cares\xc4\xa0""cared\xc4\xa0""c" +"ards\xc4\xa0""carbs\xc4\xa0""canoe\xc4\xa0""candy\xc4\xa0""canal\xc4\xa0""camps\xc4" +"\xa0""cameo\xc4\xa0""camel\xc4\xa0""calls\xc4\xa0""calam\xc4\xa0""cakes\xc4\xa0""c" +"ages\xc4\xa0""caf\xc3\x83\xc2\xa9\xc4\xa0""cafes\xc4\xa0""cabal\xc4\xa0""bytes\xc4" +"\xa0""buses\xc4\xa0""burnt\xc4\xa0""burns\xc4\xa0""bunny\xc4\xa0""bunch\xc4\xa0""b" +"umps\xc4\xa0""bulky\xc4\xa0""bulbs\xc4\xa0""built\xc4\xa0""buggy\xc4\xa0""buffs\xc4" +"\xa0""buddy\xc4\xa0""bucks\xc4\xa0""brute\xc4\xa0""brunt\xc4\xa0""brown\xc4\xa0""b" +"room\xc4\xa0""brood\xc4\xa0""broch\xc4\xa0""brist\xc4\xa0""brisk\xc4\xa0""brink\xc4" +"\xa0""bride\xc4\xa0""brawl\xc4\xa0""brass\xc4\xa0""boxes\xc4\xa0""boxer\xc4\xa0""b" +"oxed\xc4\xa0""bowls\xc4\xa0""bowel\xc4\xa0""bowed\xc4\xa0""bouts\xc4\xa0""borne\xc4" +"\xa0""booze\xc4\xa0""boots\xc4\xa0""boobs\xc4\xa0""bones\xc4\xa0""bonds\xc4\xa0""b" +"olts\xc4\xa0""boils\xc4\xa0""bogus\xc4\xa0""boats\xc4\xa0""blush\xc4\xa0""bluff\xc4" +"\xa0""blues\xc4\xa0""blows\xc4\xa0""blown\xc4\xa0""bloss\xc4\xa0""bloom\xc4\xa0""b" +"logs\xc4\xa0""blitz\xc4\xa0""bliss\xc4\xa0""bleak\xc4\xa0""blaze\xc4\xa0""bland\xc4" +"\xa0""bites\xc4\xa0""bitch\xc4\xa0""birds\xc4\xa0""binge\xc4\xa0""binds\xc4\xa0""b" +"ills\xc4\xa0""bikes\xc4\xa0""bible\xc4\xa0""berth\xc4\xa0""bends\xc4\xa0""belts\xc4" +"\xa0""below\xc4\xa0""belly\xc4\xa0""bells\xc4\xa0""begun\xc4\xa0""began\xc4\xa0""b" +"eers\xc4\xa0""beats\xc4\xa0""bears\xc4\xa0""beans\xc4\xa0""beams\xc4\xa0""beads\xc4" +"\xa0""baths\xc4\xa0""basis\xc4\xa0""basin\xc4\xa0""basil\xc4\xa0""bases\xc4\xa0""b" +"ased\xc4\xa0""basal\xc4\xa0""banks\xc4\xa0""bands\xc4\xa0""balls\xc4\xa0""baked\xc4" +"\xa0""badly\xc4\xa0""bacon\xc4\xa0""babys\xc4\xa0""avert\xc4\xa0""autos\xc4\xa0""a" +"udio\xc4\xa0""attic\xc4\xa0""atoms\xc4\xa0""asymm\xc4\xa0""assay\xc4\xa0""asked\xc4" +"\xa0""aside\xc4\xa0""ashes\xc4\xa0""arson\xc4\xa0""arose\xc4\xa0""armed\xc4\xa0""a" +"reas\xc4\xa0""aptly\xc4\xa0""apopt\xc4\xa0""antiv\xc4\xa0""antis\xc4\xa0""antip\xc4" +"\xa0""antim\xc4\xa0""anime\xc4\xa0""angst\xc4\xa0""angry\xc4\xa0""amput\xc4\xa0""a" +"mple\xc4\xa0""amino\xc4\xa0""amber\xc4\xa0""amalg\xc4\xa0""altru\xc4\xa0""altar\xc4" +"\xa0""aloud\xc4\xa0""alone\xc4\xa0""alloy\xc4\xa0""alley\xc4\xa0""alive\xc4\xa0""a" +"like\xc4\xa0""algae\xc4\xa0""aisle\xc4\xa0""aired\xc4\xa0""aimed\xc4\xa0""aides\xc4" +"\xa0""aided\xc4\xa0""ahead\xc4\xa0""agony\xc4\xa0""aging\xc4\xa0""agile\xc4\xa0""a" +"ggro\xc4\xa0""adore\xc4\xa0""admon\xc4\xa0""adjud\xc4\xa0""adept\xc4\xa0""addon\xc4" +"\xa0""added\xc4\xa0""acted\xc4\xa0""acres\xc4\xa0""acids\xc4\xa0""accol\xc4\xa0""a" +"byss\xc4\xa0""abras\xc4\xa0""above\xc4\xa0""about\xc4\xa0""abide\xc4\xa0""abhor\xc4" +"\xa0""aback\xc4\xa0[\xc3\xa2\xc4\xa2\xc2\xa6]\xc4\xa0[...]\xc4\xa0Zheng\xc4\xa0Z" +"hang\xc4\xa0Zelda\xc4\xa0Youth\xc4\xa0Yoshi\xc4\xa0Years\xc4\xa0Yates\xc4\xa0Yar" +"ds\xc4\xa0Yahoo\xc4\xa0Xiang\xc4\xa0Wynne\xc4\xa0Wyatt\xc4\xa0Wrong\xc4\xa0Wrath" +"\xc4\xa0Worth\xc4\xa0Worst\xc4\xa0Worse\xc4\xa0Words\xc4\xa0Woody\xc4\xa0Woods\xc4" +"\xa0Women\xc4\xa0Woman\xc4\xa0Wolfe\xc4\xa0Wired\xc4\xa0Wings\xc4\xa0Wiley\xc4\xa0" +"Width\xc4\xa0Widow\xc4\xa0Whole\xc4\xa0While\xc4\xa0Which\xc4\xa0Wheat\xc4\xa0Wh" +"ale\xc4\xa0Wendy\xc4\xa0Welsh\xc4\xa0Wells\xc4\xa0Welch\xc4\xa0Weiss\xc4\xa0Weir" +"d\xc4\xa0Weeks\xc4\xa0Weber\xc4\xa0Wayne\xc4\xa0Waves\xc4\xa0Watts\xc4\xa0Walsh\xc4" +"\xa0Wally\xc4\xa0Walls\xc4\xa0Wales\xc4\xa0WRITE\xc4\xa0WORLD\xc4\xa0WHITE\xc4\xa0" +"WHERE\xc4\xa0Votes\xc4\xa0Volvo\xc4\xa0Vital\xc4\xa0Vista\xc4\xa0Virus\xc4\xa0Vi" +"per\xc4\xa0Vinyl\xc4\xa0Vigil\xc4\xa0Views\xc4\xa0Verse\xc4\xa0Verge\xc4\xa0Venu" +"s\xc4\xa0Venom\xc4\xa0Vegas\xc4\xa0Vegan\xc4\xa0Vapor\xc4\xa0Vance\xc4\xa0Valve\xc4" +"\xa0Valid\xc4\xa0Vader\xc4\xa0Uzbek\xc4\xa0Uttar\xc4\xa0Using\xc4\xa0Users\xc4\xa0" +"Usage\xc4\xa0Uriel\xc4\xa0Urban\xc4\xa0Upton\xc4\xa0Upper\xc4\xa0Until\xc4\xa0Un" +"ity\xc4\xa0Units\xc4\xa0Union\xc4\xa0Uncle\xc4\xa0Ultra\xc4\xa0UNHCR\xc4\xa0UNDE" +"R\xc4\xa0UCHIJ\xc4\xa0Tyson\xc4\xa0Types\xc4\xa0Tyler\xc4\xa0Twins\xc4\xa0Twice\xc4" +"\xa0Tweet\xc4\xa0Twain\xc4\xa0Turns\xc4\xa0Turks\xc4\xa0Turbo\xc4\xa0Tulsa\xc4\xa0" +"Truth\xc4\xa0Trust\xc4\xa0Trump\xc4\xa0Truly\xc4\xa0Truck\xc4\xa0Trout\xc4\xa0Tr" +"oll\xc4\xa0Trick\xc4\xa0Tribe\xc4\xa0Trent\xc4\xa0Trees\xc4\xa0Trash\xc4\xa0Trap" +"s\xc4\xa0Tracy\xc4\xa0Trace\xc4\xa0Toxic\xc4\xa0Tours\xc4\xa0Tough\xc4\xa0Touch\xc4" +"\xa0Totem\xc4\xa0Torch\xc4\xa0Torah\xc4\xa0Tooth\xc4\xa0Tools\xc4\xa0Tommy\xc4\xa0" +"Tomas\xc4\xa0Tokyo\xc4\xa0Today\xc4\xa0Toast\xc4\xa0Titus\xc4\xa0Title\xc4\xa0Ti" +"mes\xc4\xa0Tight\xc4\xa0Throw\xc4\xa0Three\xc4\xa0Those\xc4\xa0Third\xc4\xa0Thie" +"l\xc4\xa0Thief\xc4\xa0Thick\xc4\xa0These\xc4\xa0Theme\xc4\xa0Their\xc4\xa0Theft\xc4" +"\xa0Texas\xc4\xa0Tests\xc4\xa0Tesla\xc4\xa0Terry\xc4\xa0Terms\xc4\xa0Tenth\xc4\xa0" +"Teddy\xc4\xa0Tears\xc4\xa0Teams\xc4\xa0Taxes\xc4\xa0Taste\xc4\xa0Tanks\xc4\xa0Ta" +"mpa\xc4\xa0Tammy\xc4\xa0Tamil\xc4\xa0Talks\xc4\xa0Tales\xc4\xa0Takes\xc4\xa0Take" +"n\xc4\xa0TRUMP\xc4\xa0TRANS\xc4\xa0TOTAL\xc4\xa0TODAY\xc4\xa0THREE\xc4\xa0THESE\xc4" +"\xa0THERE\xc4\xa0THEIR\xc4\xa0THANK\xc4\xa0TABLE\xc4\xa0Swiss\xc4\xa0Swing\xc4\xa0" +"Swift\xc4\xa0Sweet\xc4\xa0Sweep\xc4\xa0Swarm\xc4\xa0Swamp\xc4\xa0Susan\xc4\xa0Su" +"nny\xc4\xa0Sunni\xc4\xa0Suite\xc4\xa0Sugar\xc4\xa0Sudan\xc4\xa0Stuff\xc4\xa0Stud" +"y\xc4\xa0Strip\xc4\xa0Stras\xc4\xa0Stout\xc4\xa0Story\xc4\xa0Storm\xc4\xa0Stoke\xc4" +"\xa0Sting\xc4\xa0Still\xc4\xa0Stick\xc4\xa0Stern\xc4\xa0Steps\xc4\xa0Stein\xc4\xa0" +"Steam\xc4\xa0Stead\xc4\xa0Stats\xc4\xa0Starr\xc4\xa0Stark\xc4\xa0Starg\xc4\xa0St" +"ard\xc4\xa0Stamp\xc4\xa0Stall\xc4\xa0Stage\xc4\xa0Stacy\xc4\xa0Stack\xc4\xa0Squi" +"d\xc4\xa0Spurs\xc4\xa0Spray\xc4\xa0Spoon\xc4\xa0Spock\xc4\xa0Split\xc4\xa0Spike\xc4" +"\xa0Spawn\xc4\xa0Spain\xc4\xa0Souls\xc4\xa0Sorry\xc4\xa0Soros\xc4\xa0Sonny\xc4\xa0" +"Sonic\xc4\xa0Sonia\xc4\xa0Songs\xc4\xa0Solar\xc4\xa0Sochi\xc4\xa0Sneak\xc4\xa0Sn" +"ape\xc4\xa0Snake\xc4\xa0Smoke\xc4\xa0Smile\xc4\xa0Smash\xc4\xa0Small\xc4\xa0Sloa" +"n\xc4\xa0Slime\xc4\xa0Slide\xc4\xa0Slave\xc4\xa0Slash\xc4\xa0Slack\xc4\xa0Skype\xc4" +"\xa0Skull\xc4\xa0Skies\xc4\xa0Sixth\xc4\xa0Sites\xc4\xa0Siren\xc4\xa0Sioux\xc4\xa0" +"Singh\xc4\xa0Since\xc4\xa0Sinai\xc4\xa0Silva\xc4\xa0Signs\xc4\xa0Sigma\xc4\xa0Si" +"ght\xc4\xa0Siege\xc4\xa0Shows\xc4\xa0Shots\xc4\xa0Shore\xc4\xa0Shoes\xc4\xa0Shoc" +"k\xc4\xa0Shiva\xc4\xa0Shirt\xc4\xa0Ships\xc4\xa0Shiny\xc4\xa0Shine\xc4\xa0Shift\xc4" +"\xa0Sheet\xc4\xa0Sheep\xc4\xa0Sheen\xc4\xa0Shawn\xc4\xa0Shaun\xc4\xa0Sharp\xc4\xa0" +"Shape\xc4\xa0Shant\xc4\xa0Shank\xc4\xa0Shane\xc4\xa0Shame\xc4\xa0Shall\xc4\xa0Sh" +"ack\xc4\xa0Setup\xc4\xa0Seoul\xc4\xa0Sense\xc4\xa0Semin\xc4\xa0Seems\xc4\xa0Seed" +"s\xc4\xa0Sears\xc4\xa0Scrib\xc4\xa0Screw\xc4\xa0Scots\xc4\xa0Scope\xc4\xa0Scion\xc4" +"\xa0Schwe\xc4\xa0Schro\xc4\xa0Scher\xc4\xa0Scare\xc4\xa0Scale\xc4\xa0Scala\xc4\xa0" +"Sauce\xc4\xa0Sasha\xc4\xa0Saras\xc4\xa0Sarah\xc4\xa0Sandy\xc4\xa0Sands\xc4\xa0Sa" +"moa\xc4\xa0Sammy\xc4\xa0Samar\xc4\xa0Salon\xc4\xa0Sally\xc4\xa0Sales\xc4\xa0Sale" +"m\xc4\xa0Salam\xc4\xa0Salad\xc4\xa0Sagan\xc4\xa0Sadly\xc4\xa0Sachs\xc4\xa0Sabha\xc4" +"\xa0Saber\xc4\xa0Saban\xc4\xa0SUPER\xc4\xa0STORY\xc4\xa0STATS\xc4\xa0START\xc4\xa0" +"STAND\xc4\xa0SPACE\xc4\xa0SHALL\xc4\xa0Ryzen\xc4\xa0Ryder\xc4\xa0Rusty\xc4\xa0Ru" +"sso\xc4\xa0Rural\xc4\xa0Runes\xc4\xa0Rules\xc4\xa0Ruler\xc4\xa0Ruins\xc4\xa0Rugb" +"y\xc4\xa0Rubio\xc4\xa0Rubin\xc4\xa0Rover\xc4\xa0Rouse\xc4\xa0Rough\xc4\xa0Rouge\xc4" +"\xa0Rossi\xc4\xa0Roses\xc4\xa0Roots\xc4\xa0Rooms\xc4\xa0Romeo\xc4\xa0Rolls\xc4\xa0" +"Rogue\xc4\xa0Rocky\xc4\xa0Rocks\xc4\xa0Roads\xc4\xa0Rings\xc4\xa0Riley\xc4\xa0Ri" +"fle\xc4\xa0Ridge\xc4\xa0Ricky\xc4\xa0Rican\xc4\xa0Rhino\xc4\xa0Reyes\xc4\xa0Retr" +"o\xc4\xa0Reson\xc4\xa0Reset\xc4\xa0Reply\xc4\xa0Renew\xc4\xa0Reneg\xc4\xa0Remix\xc4" +"\xa0Relic\xc4\xa0Relax\xc4\xa0Reign\xc4\xa0Reich\xc4\xa0Rehab\xc4\xa0Reese\xc4\xa0" +"Redux\xc4\xa0Recep\xc4\xa0Recap\xc4\xa0Ready\xc4\xa0Razor\xc4\xa0Razer\xc4\xa0Ra" +"tes\xc4\xa0Rated\xc4\xa0Raqqa\xc4\xa0Randy\xc4\xa0Ranch\xc4\xa0Ramos\xc4\xa0Ralp" +"h\xc4\xa0Rally\xc4\xa0Raise\xc4\xa0Rails\xc4\xa0Rahul\xc4\xa0Radio\xc4\xa0Radar\xc4" +"\xa0Races\xc4\xa0Racer\xc4\xa0RIGHT\xc4\xa0Quran\xc4\xa0Quote\xc4\xa0Quite\xc4\xa0" +"Quint\xc4\xa0Quinn\xc4\xa0Quiet\xc4\xa0Quick\xc4\xa0Query\xc4\xa0Quake\xc4\xa0Qa" +"tar\xc4\xa0Qaeda\xc4\xa0QUEST\xc4\xa0Putin\xc4\xa0Punch\xc4\xa0Pulse\xc4\xa0Pryo" +"r\xc4\xa0Proxy\xc4\xa0Proud\xc4\xa0Proof\xc4\xa0Probe\xc4\xa0Prize\xc4\xa0Prism\xc4" +"\xa0Prime\xc4\xa0Pride\xc4\xa0Pratt\xc4\xa0Pound\xc4\xa0Posts\xc4\xa0Pompe\xc4\xa0" +"Polly\xc4\xa0Poles\xc4\xa0Poker\xc4\xa0Pluto\xc4\xa0Plaza\xc4\xa0Plato\xc4\xa0Pl" +"ate\xc4\xa0Plans\xc4\xa0Pizza\xc4\xa0Pixie\xc4\xa0Pixel\xc4\xa0Pixar\xc4\xa0Pitc" +"h\xc4\xa0Piper\xc4\xa0Pilot\xc4\xa0Picks\xc4\xa0Piano\xc4\xa0Phone\xc4\xa0Phase\xc4" +"\xa0Petty\xc4\xa0Perth\xc4\xa0Perse\xc4\xa0Perry\xc4\xa0Perez\xc4\xa0Percy\xc4\xa0" +"Pepsi\xc4\xa0Penny\xc4\xa0Penet\xc4\xa0Pence\xc4\xa0Peggy\xc4\xa0Pedro\xc4\xa0Pe" +"arl\xc4\xa0Peaks\xc4\xa0Peach\xc4\xa0Peace\xc4\xa0Payne\xc4\xa0Pavel\xc4\xa0Paul" +"o\xc4\xa0Paula\xc4\xa0Patty\xc4\xa0Patel\xc4\xa0Patch\xc4\xa0Party\xc4\xa0Parts\xc4" +"\xa0Parks\xc4\xa0Paras\xc4\xa0Paran\xc4\xa0Papua\xc4\xa0Pants\xc4\xa0Panic\xc4\xa0" +"Panel\xc4\xa0Panda\xc4\xa0Palin\xc4\xa0Paleo\xc4\xa0Paige\xc4\xa0Pages\xc4\xa0Pa" +"gan\xc4\xa0Packs\xc4\xa0Pablo\xc4\xa0PRESS\xc4\xa0POWER\xc4\xa0PHOTO\xc4\xa0Owen" +"s\xc4\xa0Overt\xc4\xa0Outer\xc4\xa0Osama\xc4\xa0Osaka\xc4\xa0Ortiz\xc4\xa0Orion\xc4" +"\xa0Oprah\xc4\xa0Onion\xc4\xa0Omega\xc4\xa0Omaha\xc4\xa0Olson\xc4\xa0Olsen\xc4\xa0" +"Older\xc4\xa0Often\xc4\xa0Offer\xc4\xa0Ocean\xc4\xa0OTHER\xc4\xa0ORDER\xc4\xa0OF" +"FIC\xc4\xa0Nurse\xc4\xa0Nunes\xc4\xa0Novel\xc4\xa0Notre\xc4\xa0Notes\xc4\xa0Nors" +"e\xc4\xa0Nolan\xc4\xa0Nokia\xc4\xa0Noise\xc4\xa0Noble\xc4\xa0Nobel\xc4\xa0Ni\xc3" +"\x83\xc2\xb1o\xc4\xa0Nixon\xc4\xa0Ninth\xc4\xa0Ninja\xc4\xa0Nikon\xc4\xa0Nikki\xc4" +"\xa0Nigel\xc4\xa0Nieto\xc4\xa0Nexus\xc4\xa0Newly\xc4\xa0Nepal\xc4\xa0Negro\xc4\xa0" +"Needs\xc4\xa0Nazis\xc4\xa0Naval\xc4\xa0Naomi\xc4\xa0Nanto\xc4\xa0Nancy\xc4\xa0Na" +"mes\xc4\xa0Named\xc4\xa0Naked\xc4\xa0NIGHT\xc4\xa0NEVER\xc4\xa0NAFTA\xc4\xa0NAAC" +"P\xc4\xa0Myers\xc4\xa0MySQL\xc4\xa0Moves\xc4\xa0Mouth\xc4\xa0Mouse\xc4\xa0Mosul\xc4" +"\xa0Moses\xc4\xa0Morty\xc4\xa0Morsi\xc4\xa0Morse\xc4\xa0Morph\xc4\xa0Moran\xc4\xa0" +"Moose\xc4\xa0Moore\xc4\xa0Moons\xc4\xa0Moody\xc4\xa0Money\xc4\xa0Molly\xc4\xa0Mi" +"xed\xc4\xa0Misty\xc4\xa0Mines\xc4\xa0Mills\xc4\xa0Milky\xc4\xa0Miles\xc4\xa0Mila" +"n\xc4\xa0Miami\xc4\xa0Meyer\xc4\xa0Meter\xc4\xa0Merry\xc4\xa0Merge\xc4\xa0Mercy\xc4" +"\xa0Melee\xc4\xa0Meier\xc4\xa0Megan\xc4\xa0Mecca\xc4\xa0Means\xc4\xa0McKin\xc4\xa0" +"McKay\xc4\xa0McInt\xc4\xa0McGee\xc4\xa0McCoy\xc4\xa0Mazda\xc4\xa0Mayor\xc4\xa0Ma" +"yer\xc4\xa0Maybe\xc4\xa0Match\xc4\xa0Marty\xc4\xa0Marse\xc4\xa0Marqu\xc4\xa0Mark" +"s\xc4\xa0Marie\xc4\xa0March\xc4\xa0Maple\xc4\xa0Manor\xc4\xa0Manny\xc4\xa0Manip\xc4" +"\xa0Mania\xc4\xa0Manga\xc4\xa0Malta\xc4\xa0Malik\xc4\xa0Males\xc4\xa0Makes\xc4\xa0" +"Maker\xc4\xa0Maine\xc4\xa0Maher\xc4\xa0Mages\xc4\xa0Mafia\xc4\xa0MSNBC\xc4\xa0Ly" +"ons\xc4\xa0Lynch\xc4\xa0Lydia\xc4\xa0Lunch\xc4\xa0Lunar\xc4\xa0Lumin\xc4\xa0Lumi" +"a\xc4\xa0Luigi\xc4\xa0Luffy\xc4\xa0Lucky\xc4\xa0Lucia\xc4\xa0Lucas\xc4\xa0Loyal\xc4" +"\xa0Lowry\xc4\xa0Lower\xc4\xa0Lover\xc4\xa0Louie\xc4\xa0Lotus\xc4\xa0Lords\xc4\xa0" +"Lopez\xc4\xa0Looks\xc4\xa0Longh\xc4\xa0Login\xc4\xa0Logic\xc4\xa0Logan\xc4\xa0Lo" +"dge\xc4\xa0Local\xc4\xa0Lobby\xc4\xa0Loans\xc4\xa0Lloyd\xc4\xa0Lives\xc4\xa0List" +"s\xc4\xa0Lions\xc4\xa0Linux\xc4\xa0Links\xc4\xa0Lines\xc4\xa0Linda\xc4\xa0Lilly\xc4" +"\xa0Likes\xc4\xa0Libre\xc4\xa0Liang\xc4\xa0Lewis\xc4\xa0Lever\xc4\xa0Leone\xc4\xa0" +"Lenin\xc4\xa0Lemon\xc4\xa0Leigh\xc4\xa0Leica\xc4\xa0Legal\xc4\xa0Leeds\xc4\xa0Le" +"afs\xc4\xa0Layer\xc4\xa0Laura\xc4\xa0Laugh\xc4\xa0Later\xc4\xa0Laser\xc4\xa0Larr" +"y\xc4\xa0Large\xc4\xa0Lanka\xc4\xa0Lange\xc4\xa0Lands\xc4\xa0Lamar\xc4\xa0Laksh\xc4" +"\xa0Lakes\xc4\xa0Laden\xc4\xa0Label\xc4\xa0LGBTQ\xc4\xa0LEVEL\xc4\xa0Kyoto\xc4\xa0" +"Kurds\xc4\xa0Kumar\xc4\xa0Kuala\xc4\xa0Krypt\xc4\xa0Kraft\xc4\xa0Korra\xc4\xa0Ko" +"ran\xc4\xa0Known\xc4\xa0Knock\xc4\xa0Knife\xc4\xa0Klopp\xc4\xa0Klein\xc4\xa0Klau" +"s\xc4\xa0Kitty\xc4\xa0Kirst\xc4\xa0Kirin\xc4\xa0Kirby\xc4\xa0Kills\xc4\xa0Kevin\xc4" +"\xa0Kerry\xc4\xa0Kenny\xc4\xa0Kelly\xc4\xa0Keith\xc4\xa0Keane\xc4\xa0Katie\xc4\xa0" +"Kathy\xc4\xa0Karma\xc4\xa0Karin\xc4\xa0Karen\xc4\xa0Kappa\xc4\xa0Kanye\xc4\xa0Ka" +"ine\xc4\xa0Kafka\xc4\xa0Kabul\xc4\xa0Julio\xc4\xa0Juice\xc4\xa0Judah\xc4\xa0Joyc" +"e\xc4\xa0Jos\xc3\x83\xc2\xa9\xc4\xa0Jorge\xc4\xa0Jones\xc4\xa0Jonas\xc4\xa0Jonah" +"\xc4\xa0Jolly\xc4\xa0Joker\xc4\xa0Joint\xc4\xa0Jimmy\xc4\xa0Jihad\xc4\xa0Jiang\xc4" +"\xa0Jewel\xc4\xa0Jesus\xc4\xa0Jesse\xc4\xa0Jerry\xc4\xa0Jenny\xc4\xa0Jenna\xc4\xa0" +"Jelly\xc4\xa0Jaune\xc4\xa0Jason\xc4\xa0Jared\xc4\xa0Janet\xc4\xa0Jamie\xc4\xa0Ja" +"mes\xc4\xa0Jamal\xc4\xa0Jaime\xc4\xa0Ivory\xc4\xa0Items\xc4\xa0Italy\xc4\xa0Isle" +"s\xc4\xa0Isaac\xc4\xa0Irwin\xc4\xa0Irish\xc4\xa0Input\xc4\xa0Inner\xc4\xa0Inher\xc4" +"\xa0Indra\xc4\xa0Index\xc4\xa0Imran\xc4\xa0Idlib\xc4\xa0Ideas\xc4\xa0Idaho\xc4\xa0" +"INTER\xc4\xa0Hyper\xc4\xa0Hydro\xc4\xa0Hydra\xc4\xa0Hyder\xc4\xa0Hunts\xc4\xa0Hu" +"mph\xc4\xa0Huang\xc4\xa0Hover\xc4\xa0Houth\xc4\xa0Hours\xc4\xa0Hound\xc4\xa0Hote" +"l\xc4\xa0Horus\xc4\xa0Horde\xc4\xa0Honor\xc4\xa0Honey\xc4\xa0Honda\xc4\xa0Homes\xc4" +"\xa0Homer\xc4\xa0Hogan\xc4\xa0Hobby\xc4\xa0Hindi\xc4\xa0Himal\xc4\xa0Hills\xc4\xa0" +"Hicks\xc4\xa0Herod\xc4\xa0Henry\xc4\xa0Henri\xc4\xa0Hence\xc4\xa0Hello\xc4\xa0He" +"lic\xc4\xa0Heist\xc4\xa0Heidi\xc4\xa0Hegel\xc4\xa0Hedge\xc4\xa0Hebdo\xc4\xa0Heav" +"y\xc4\xa0Heard\xc4\xa0Heads\xc4\xa0Hazel\xc4\xa0Hayes\xc4\xa0Hawth\xc4\xa0Hawks\xc4" +"\xa0Haven\xc4\xa0Hatch\xc4\xa0Haste\xc4\xa0Hasan\xc4\xa0Harry\xc4\xa0Hardy\xc4\xa0" +"Haram\xc4\xa0Happy\xc4\xa0Hands\xc4\xa0Hamas\xc4\xa0Halls\xc4\xa0Haley\xc4\xa0Ha" +"gue\xc4\xa0Hades\xc4\xa0Habit\xc4\xa0HTTPS\xc4\xa0HOUSE\xc4\xa0Gupta\xc4\xa0Guil" +"d\xc4\xa0Guess\xc4\xa0Guang\xc4\xa0Grove\xc4\xa0Gross\xc4\xa0Grind\xc4\xa0Grimm\xc4" +"\xa0Grill\xc4\xa0Gregg\xc4\xa0Grape\xc4\xa0Grain\xc4\xa0Grail\xc4\xa0Grade\xc4\xa0" +"Grace\xc4\xa0Gould\xc4\xa0Gorge\xc4\xa0Goose\xc4\xa0Goods\xc4\xa0Gomez\xc4\xa0Go" +"lem\xc4\xa0Going\xc4\xa0Gohan\xc4\xa0Goals\xc4\xa0GoPro\xc4\xa0Gmail\xc4\xa0Glos" +"s\xc4\xa0Glory\xc4\xa0Glock\xc4\xa0Globe\xc4\xa0Glenn\xc4\xa0Glass\xc4\xa0Given\xc4" +"\xa0Girls\xc4\xa0Ginny\xc4\xa0Giles\xc4\xa0Gifts\xc4\xa0Gibbs\xc4\xa0Ghana\xc4\xa0" +"Getty\xc4\xa0Gerry\xc4\xa0Genie\xc4\xa0Gears\xc4\xa0Gavin\xc4\xa0Gates\xc4\xa0Ga" +"rry\xc4\xa0Gamma\xc4\xa0Games\xc4\xa0GROUP\xc4\xa0GREEN\xc4\xa0GREAT\xc4\xa0GNOM" +"E\xc4\xa0""Funny\xc4\xa0""Funds\xc4\xa0""Fully\xc4\xa0""Fruit\xc4\xa0""Frost\xc4" +"\xa0""Fritz\xc4\xa0""Freud\xc4\xa0""Fresh\xc4\xa0""Freak\xc4\xa0""Fraud\xc4\xa0""F" +"ranz\xc4\xa0""Fract\xc4\xa0""Forty\xc4\xa0""Forth\xc4\xa0""Forms\xc4\xa0""Foods\xc4" +"\xa0""Foley\xc4\xa0""Focus\xc4\xa0""Flynn\xc4\xa0""Floyd\xc4\xa0""Floor\xc4\xa0""F" +"lood\xc4\xa0""Flint\xc4\xa0""Flesh\xc4\xa0""Fleet\xc4\xa0""Flask\xc4\xa0""Flash\xc4" +"\xa0""Flare\xc4\xa0""Flake\xc4\xa0""Flags\xc4\xa0""Fixes\xc4\xa0""Fixed\xc4\xa0""F" +"ires\xc4\xa0""Fired\xc4\xa0""Fiona\xc4\xa0""Finch\xc4\xa0""Films\xc4\xa0""Files\xc4" +"\xa0""Fifty\xc4\xa0""Fifth\xc4\xa0""Fidel\xc4\xa0""Fiber\xc4\xa0""Fever\xc4\xa0""F" +"erry\xc4\xa0""Felix\xc4\xa0""FedEx\xc4\xa0""Feast\xc4\xa0""Faust\xc4\xa0""Fault\xc4" +"\xa0""Fatal\xc4\xa0""Farms\xc4\xa0""Fargo\xc4\xa0""Fancy\xc4\xa0""False\xc4\xa0""F" +"alls\xc4\xa0""Faith\xc4\xa0""Fairy\xc4\xa0""Facts\xc4\xa0""Faces\xc4\xa0""FIRST\xc4" +"\xa0""FINAL\xc4\xa0""FIGHT\xc4\xa0""FALSE\xc4\xa0""Exxon\xc4\xa0""Exile\xc4\xa0""E" +"vans\xc4\xa0""Euros\xc4\xa0""Euras\xc4\xa0""Ethan\xc4\xa0""Essex\xc4\xa0""Esper\xc4" +"\xa0""Ernst\xc4\xa0""Erica\xc4\xa0""Entry\xc4\xa0""Enjoy\xc4\xa0""Enemy\xc4\xa0""E" +"nder\xc4\xa0""Ended\xc4\xa0""Empty\xc4\xa0""Emily\xc4\xa0""Ember\xc4\xa0""Emacs\xc4" +"\xa0""Elvis\xc4\xa0""Elves\xc4\xa0""Elven\xc4\xa0""Ellie\xc4\xa0""Ellen\xc4\xa0""E" +"lite\xc4\xa0""Elise\xc4\xa0""Eliot\xc4\xa0""Elias\xc4\xa0""Elena\xc4\xa0""Elder\xc4" +"\xa0""Edwin\xc4\xa0""Edgar\xc4\xa0""Eddie\xc4\xa0""Ebola\xc4\xa0""Eaton\xc4\xa0""E" +"ater\xc4\xa0""Early\xc4\xa0""EVERY\xc4\xa0""ERROR\xc4\xa0""ENTER\xc4\xa0""ELECT\xc4" +"\xa0""Dylan\xc4\xa0""Dying\xc4\xa0""Dwell\xc4\xa0""Dwarf\xc4\xa0""Dutch\xc4\xa0""D" +"uffy\xc4\xa0""Ducks\xc4\xa0""Dubai\xc4\xa0""Drunk\xc4\xa0""Druid\xc4\xa0""Drugs\xc4" +"\xa0""Drops\xc4\xa0""Drone\xc4\xa0""Droid\xc4\xa0""Drill\xc4\xa0""Drift\xc4\xa0""D" +"ress\xc4\xa0""Dread\xc4\xa0""Drawn\xc4\xa0""Drama\xc4\xa0""Drake\xc4\xa0""Drain\xc4" +"\xa0""Draft\xc4\xa0""Draco\xc4\xa0""Doyle\xc4\xa0""Downs\xc4\xa0""Dover\xc4\xa0""D" +"ough\xc4\xa0""Doors\xc4\xa0""Donna\xc4\xa0""Doing\xc4\xa0""Doesn\xc4\xa0""Dixon\xc4" +"\xa0""Dirty\xc4\xa0""Diego\xc4\xa0""Diary\xc4\xa0""Diane\xc4\xa0""Diana\xc4\xa0""D" +"iagn\xc4\xa0""Dhabi\xc4\xa0""Devon\xc4\xa0""Devin\xc4\xa0""Deter\xc4\xa0""Derek\xc4" +"\xa0""Derby\xc4\xa0""Depot\xc4\xa0""Delta\xc4\xa0""Delhi\xc4\xa0""Delay\xc4\xa0""D" +"eity\xc4\xa0""Decre\xc4\xa0""Decay\xc4\xa0""Debug\xc4\xa0""Deals\xc4\xa0""DeVos\xc4" +"\xa0""Davis\xc4\xa0""Dates\xc4\xa0""Daryl\xc4\xa0""Darth\xc4\xa0""Dante\xc4\xa0""D" +"anny\xc4\xa0""Dance\xc4\xa0""Damon\xc4\xa0""Dalai\xc4\xa0""Daisy\xc4\xa0""Dairy\xc4" +"\xa0""Daily\xc4\xa0""Daesh\xc4\xa0""Daddy\xc4\xa0""DEBUG\xc4\xa0""Czech\xc4\xa0""C" +"yrus\xc4\xa0""Cycle\xc4\xa0""Cyber\xc4\xa0""Curve\xc4\xa0""Curry\xc4\xa0""Cuomo\xc4" +"\xa0""Cuban\xc4\xa0""Cruel\xc4\xa0""Crown\xc4\xa0""Crowd\xc4\xa0""Crist\xc4\xa0""C" +"rest\xc4\xa0""Creep\xc4\xa0""Creek\xc4\xa0""Creed\xc4\xa0""Cream\xc4\xa0""Crazy\xc4" +"\xa0""Crate\xc4\xa0""Crash\xc4\xa0""Crane\xc4\xa0""Crack\xc4\xa0""Could\xc4\xa0""C" +"ouch\xc4\xa0""Costs\xc4\xa0""Costa\xc4\xa0""Cosby\xc4\xa0""Corey\xc4\xa0""Coral\xc4" +"\xa0""Cooke\xc4\xa0""Conor\xc4\xa0""Congo\xc4\xa0""Conan\xc4\xa0""Comey\xc4\xa0""C" +"omet\xc4\xa0""Comes\xc4\xa0""Combo\xc4\xa0""Colts\xc4\xa0""Colin\xc4\xa0""Coins\xc4" +"\xa0""Cohen\xc4\xa0""Codex\xc4\xa0""Codes\xc4\xa0""Codec\xc4\xa0""Cobra\xc4\xa0""C" +"oach\xc4\xa0""Clyde\xc4\xa0""Clubs\xc4\xa0""Clown\xc4\xa0""Clone\xc4\xa0""Cloak\xc4" +"\xa0""Clive\xc4\xa0""Clerk\xc4\xa0""Clean\xc4\xa0""Clash\xc4\xa0""Clara\xc4\xa0""C" +"ivic\xc4\xa0""Cisco\xc4\xa0""Cindy\xc4\xa0""Chung\xc4\xa0""Chuck\xc4\xa0""Chong\xc4" +"\xa0""Chloe\xc4\xa0""Chips\xc4\xa0""Chill\xc4\xa0""Chili\xc4\xa0""Chevy\xc4\xa0""C" +"hess\xc4\xa0""Chern\xc4\xa0""Cheng\xc4\xa0""Cheap\xc4\xa0""Charm\xc4\xa0""Chaos\xc4" +"\xa0""Chaff\xc4\xa0""Ceres\xc4\xa0""Cells\xc4\xa0""Cedar\xc4\xa0""Cecil\xc4\xa0""C" +"athy\xc4\xa0""Cater\xc4\xa0""Catch\xc4\xa0""Casey\xc4\xa0""Cases\xc4\xa0""Carth\xc4" +"\xa0""Carry\xc4\xa0""Carly\xc4\xa0""Cargo\xc4\xa0""Carey\xc4\xa0""Cards\xc4\xa0""C" +"anon\xc4\xa0""Candy\xc4\xa0""Canal\xc4\xa0""Camel\xc4\xa0""Calls\xc4\xa0""Caleb\xc4" +"\xa0""Cairo\xc4\xa0""Caf\xc3\x83\xc2\xa9\xc4\xa0""Cache\xc4\xa0""Cable\xc4\xa0""C" +"OVER\xc4\xa0""COURT\xc4\xa0""CLSID\xc4\xa0""CLICK\xc4\xa0""CLASS\xc4\xa0""Byron\xc4" +"\xa0""Byrne\xc4\xa0""Burst\xc4\xa0""Burns\xc4\xa0""Burma\xc4\xa0""Burke\xc4\xa0""B" +"unny\xc4\xa0""Bundy\xc4\xa0""Bulls\xc4\xa0""Built\xc4\xa0""Buffy\xc4\xa0""Buddy\xc4" +"\xa0""Bucks\xc4\xa0""Bryce\xc4\xa0""Brush\xc4\xa0""Bruno\xc4\xa0""Brune\xc4\xa0""B" +"ruce\xc4\xa0""Bronx\xc4\xa0""Brock\xc4\xa0""Brief\xc4\xa0""Bride\xc4\xa0""Brick\xc4" +"\xa0""Brian\xc4\xa0""Brett\xc4\xa0""Brent\xc4\xa0""Brees\xc4\xa0""Breed\xc4\xa0""B" +"read\xc4\xa0""Brawl\xc4\xa0""Bravo\xc4\xa0""Braun\xc4\xa0""Brass\xc4\xa0""Brain\xc4" +"\xa0""Brady\xc4\xa0""Brach\xc4\xa0""Boyle\xc4\xa0""Bowie\xc4\xa0""Bowen\xc4\xa0""B" +"ound\xc4\xa0""Boris\xc4\xa0""Boots\xc4\xa0""Booth\xc4\xa0""Boone\xc4\xa0""Books\xc4" +"\xa0""Bonus\xc4\xa0""Bones\xc4\xa0""Bonds\xc4\xa0""Bombs\xc4\xa0""Boise\xc4\xa0""B" +"ohem\xc4\xa0""Bobby\xc4\xa0""Blues\xc4\xa0""Blitz\xc4\xa0""Bliss\xc4\xa0""Blink\xc4" +"\xa0""Blind\xc4\xa0""Blend\xc4\xa0""Blank\xc4\xa0""Bland\xc4\xa0""Blanc\xc4\xa0""B" +"lake\xc4\xa0""Blair\xc4\xa0""Birds\xc4\xa0""Birch\xc4\xa0""Billy\xc4\xa0""Bills\xc4" +"\xa0""Bihar\xc4\xa0""Biden\xc4\xa0""Bible\xc4\xa0""Bezos\xc4\xa0""Betty\xc4\xa0""B" +"etsy\xc4\xa0""Berry\xc4\xa0""Benny\xc4\xa0""Bench\xc4\xa0""Below\xc4\xa0""Bella\xc4" +"\xa0""Being\xc4\xa0""Becky\xc4\xa0""Beats\xc4\xa0""Bears\xc4\xa0""Beard\xc4\xa0""B" +"eans\xc4\xa0""Beach\xc4\xa0""Bauer\xc4\xa0""Baton\xc4\xa0""Bates\xc4\xa0""Basin\xc4" +"\xa0""Basil\xc4\xa0""Based\xc4\xa0""Barth\xc4\xa0""Barry\xc4\xa0""Baron\xc4\xa0""B" +"anks\xc4\xa0""Balls\xc4\xa0""Baker\xc4\xa0""Baird\xc4\xa0""Bah\xc3\x83\xc2\xa1\xc4" +"\xa0""Badge\xc4\xa0""Bacon\xc4\xa0""Babel\xc4\xa0""BLACK\xc4\xa0""BELOW\xc4\xa0""A" +"zure\xc4\xa0""Avoid\xc4\xa0""Avery\xc4\xa0""Autob\xc4\xa0""Audio\xc4\xa0""Atlas\xc4" +"\xa0""Atari\xc4\xa0""Asuka\xc4\xa0""Aston\xc4\xa0""Aster\xc4\xa0""Assad\xc4\xa0""A" +"sked\xc4\xa0""Aside\xc4\xa0""Ashes\xc4\xa0""Array\xc4\xa0""Armed\xc4\xa0""Ariel\xc4" +"\xa0""Argon\xc4\xa0""Arena\xc4\xa0""Areas\xc4\xa0""Arbor\xc4\xa0""Arbit\xc4\xa0""A" +"rabs\xc4\xa0""April\xc4\xa0""Apply\xc4\xa0""Apple\xc4\xa0""Apart\xc4\xa0""Annie\xc4" +"\xa0""Annex\xc4\xa0""Anita\xc4\xa0""Anime\xc4\xa0""Angus\xc4\xa0""Angry\xc4\xa0""A" +"nglo\xc4\xa0""Angle\xc4\xa0""Anger\xc4\xa0""Among\xc4\xa0""Amber\xc4\xa0""Alvin\xc4" +"\xa0""Along\xc4\xa0""Alone\xc4\xa0""Alloy\xc4\xa0""Alley\xc4\xa0""Allen\xc4\xa0""A" +"lleg\xc4\xa0""Allan\xc4\xa0""Allah\xc4\xa0""Alive\xc4\xa0""Alice\xc4\xa0""Aless\xc4" +"\xa0""Alert\xc4\xa0""Album\xc4\xa0""Akron\xc4\xa0""Akira\xc4\xa0""Aires\xc4\xa0""A" +"hmed\xc4\xa0""Ahmad\xc4\xa0""Ahead\xc4\xa0""Aging\xc4\xa0""Adren\xc4\xa0""Adolf\xc4" +"\xa0""Adobe\xc4\xa0""Added\xc4\xa0""Adams\xc4\xa0""Actor\xc4\xa0""Abuse\xc4\xa0""A" +"bove\xc4\xa0""About\xc4\xa0""Abdel\xc4\xa0""Abbey\xc4\xa0""Abbas\xc4\xa0""Aaron\xc4" +"\xa0""ASCII\xc4\xa0""ANGEL\xc4\xa0""AFTER\xc4\xa0""ABOUT\xc4\xa0""10000\xc4\xa0#" +"####\xc3\xa3\xc4\xa7\xc4\xad\xc3\xa3\xc4\xa7\xc4\xad\xc3\xa3\xc4\xa5\xc4\xba\xc3" +"\xa3\xc4\xa5\xc2\xa9\xc3\xa3\xc4\xa5\xc4\xb7\xc3\xa3\xc4\xa4\xc2\xa9\xc3\xa3\xc4" +"\xa5\xc4\xb7\xc3\xa3\xc4\xa4\xc2\xa1\xc3\xa3\xc4\xa5\xc4\xa9\xc3\xa3\xc4\xa4\xc2" +"\xa3\xc3\xa3\xc4\xa5\xc4\xa5\xc3\xa3\xc4\xa5\xc4\xab\xc3\xa3\xc4\xa5\xc4\xa5\xc3" +"\xa3\xc4\xa5\xc4\xaa\xc3\xa3\xc4\xa5\xc4\xa5\xc3\xa3\xc4\xa4\xc2\xaf\xc3\xa3\xc4" +"\xa5\xc2\xbc\xc3\xa3\xc4\xa5\xc2\xb3\xc3\xa3\xc4\xa5\xc2\xbc\xc3\xa3\xc4\xa5\xc2" +"\xab\xc3\xa3\xc4\xa5\xc2\xbc\xc3\xa3\xc4\xa4\xc2\xaf\xc3\xa3\xc4\xa5\xc2\xb4\xc3" +"\xa3\xc4\xa4\xc2\xa1\xc3\xa3\xc4\xa5\xc2\xb3\xc3\xa3\xc4\xa4\xc2\xb8\xc3\xa3\xc4" +"\xa5\xc2\xa9\xc3\xa3\xc4\xa5\xc2\xb3\xc3\xa3\xc4\xa4\xc2\xb9\xc3\xa3\xc4\xa5\xc4" +"\xaa\xc3\xa3\xc4\xa4\xc2\xb7\xc3\xa3\xc4\xa5\xc2\xa3\xc3\xa3\xc4\xa4\xc2\xa8\xc3" +"\xa3\xc4\xa5\xc2\xab\xc3\xa3\xc4\xa4\xc2\xa4\xc3\xa3\xc4\xa5\xc4\xaa\xc3\xa3\xc4" +"\xa4\xc2\xa2\xc3\xa3\xc4\xa5\xc2\xab\xc3\xa3\xc4\xa3\xc2\xae\xc3\xa9\xc5\x83\xc4" +"\xb6\xc3\xa2\xc4\xba\xc4\xa7\xc3\xa2\xc4\xba\xc4\xa7\xc3\xa2\xc4\xb8\xc4\xb3\xc3" +"\xa2\xc4\xb8\xc4\xb3\xc3\xa2\xc4\xb8\xc2\xac\xc3\xa2\xc4\xb8\xc2\xac\xc3\xa2\xc4" +"\xb7\xc4\xb2\xc3\xa2\xc4\xb7\xc4\xb2\xc3\xa2\xc4\xa2\xc4\xb5\xc3\xa2\xc4\xa2\xc4" +"\xb5\xc3\xa2\xc4\xa2\xc4\xad\xc3\xa2\xc4\xa2\xc4\xadzynskizinskiwrightwebkitwash" +"erversonurizedundrumummiesumblesulsiveudenceuddleducklesubuntutumblrtenesssoType" +"selagerompturologyrolleyrogensrawlerrapnelramidsppelinposiumpmwikiplingsphthalph" +"rinephilisperorsowmentourmetosticsospelsophileopathyomeverologueoliathogenicocyt" +"esocularocrinemortemmallowmalinklinersleticolenessleggedkowskijandroixtiesixtape" +"ivablyitizedithingitchieistorsisburyirtingiphanyionicsinfeldinelliillardilatedig" +"roupigraphiframeiflingiewicziddlericksonicablyhelialheddarhandergreSQLforcerfoot" +"edezvouseworldethystetchupesteadernautermottendiumendishendaleencersenburgemouth" +"emakerelleryectomydonaldcliffechenkocephalbledonbergerbenderawattsatsukiatoninat" +"mealathlonateursassianaspersasonryarsityarlanearellaapixelapeakeapacheanssonangl" +"erangeloanasiaampunkamorphamazonallionalionsakingsakableafflesaddonsaddersaclysm" +"aceousabytesabiliaabellaWidgetURRENTTriviaSTRUCTSTDOUTSOURCEQuotesParserPHOTOSPD" +"ATEDOffsetMalleyMETHODLaughsITNESSISTORYISSIONHelperGROUNDFINESTESSIONENTIONBILI" +"TYATURESATIONS\x22:\x22\x22,\x22\xc4\xa0\xc3\xb0\xc5\x81\xc4\xbb\xc4\xa4\xc4\xa0" +"\xc3\xa8\xc2\xa3\xc4\xb1\xc3\xa7\xc4\xa0\xc3\xa2\xc4\xa2\xc2\xa6\x22\xc4\xa0\xc3" +"\x98\xc2\xa7\xc3\x99\xc4\xa6\xc4\xa0\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc4\xa0\xc3" +"\x82\xc2\xa7\xc3\x82\xc2\xa7\xc4\xa0zoom\xc4\xa0zinc\xc4\xa0zero\xc4\xa0zeal\xc4" +"\xa0yuan\xc4\xa0yoga\xc4\xa0yeah\xc4\xa0yawn\xc4\xa0yarn\xc4\xa0worn\xc4\xa0wore" +"\xc4\xa0wool\xc4\xa0wont\xc4\xa0womb\xc4\xa0wolf\xc4\xa0woke\xc4\xa0woes\xc4\xa0" +"wins\xc4\xa0wink\xc4\xa0wiki\xc4\xa0wifi\xc4\xa0wife\xc4\xa0whom\xc4\xa0went\xc4" +"\xa0ways\xc4\xa0wasn\xc4\xa0wary\xc4\xa0vows\xc4\xa0void\xc4\xa0vivo\xc4\xa0vind" +"\xc4\xa0vile\xc4\xa0vice\xc4\xa0vibe\xc4\xa0vets\xc4\xa0very\xc4\xa0vape\xc4\xa0" +"vans\xc4\xa0vain\xc4\xa0usur\xc4\xa0uses\xc4\xa0used\xc4\xa0upon\xc4\xa0unsc\xc4" +"\xa0unob\xc4\xa0unfl\xc4\xa0uint\xc4\xa0ugly\xc4\xa0uber\xc4\xa0typo\xc4\xa0typh" +"\xc4\xa0turf\xc4\xa0tuna\xc4\xa0true\xc4\xa0trio\xc4\xa0trek\xc4\xa0tray\xc4\xa0" +"tram\xc4\xa0toys\xc4\xa0tore\xc4\xa0tops\xc4\xa0took\xc4\xa0tons\xc4\xa0tomb\xc4" +"\xa0toll\xc4\xa0told\xc4\xa0tofu\xc4\xa0toes\xc4\xa0tits\xc4\xa0tips\xc4\xa0tion" +"\xc4\xa0tiny\xc4\xa0tint\xc4\xa0tink\xc4\xa0till\xc4\xa0ties\xc4\xa0tied\xc4\xa0" +"tidy\xc4\xa0thus\xc4\xa0this\xc4\xa0they\xc4\xa0thee\xc4\xa0tert\xc4\xa0tbsp\xc4" +"\xa0tart\xc4\xa0tarn\xc4\xa0taps\xc4\xa0tame\xc4\xa0tags\xc4\xa0tabs\xc4\xa0syll" +"\xc4\xa0sunk\xc4\xa0sund\xc4\xa0sums\xc4\xa0sued\xc4\xa0sudo\xc4\xa0such\xc4\xa0" +"stip\xc4\xa0sten\xc4\xa0sshd\xc4\xa0srfN\xc4\xa0sqor\xc4\xa0spun\xc4\xa0spew\xc4" +"\xa0sped\xc4\xa0spam\xc4\xa0soup\xc4\xa0sons\xc4\xa0solo\xc4\xa0sofa\xc4\xa0soda" +"\xc4\xa0soap\xc4\xa0snug\xc4\xa0snag\xc4\xa0smir\xc4\xa0slut\xc4\xa0slit\xc4\xa0" +"slew\xc4\xa0sled\xc4\xa0slab\xc4\xa0skim\xc4\xa0sits\xc4\xa0siph\xc4\xa0sins\xc4" +"\xa0silk\xc4\xa0sidx\xc4\xa0shun\xc4\xa0sexy\xc4\xa0sets\xc4\xa0sees\xc4\xa0seen" +"\xc4\xa0seaw\xc4\xa0says\xc4\xa0sans\xc4\xa0sank\xc4\xa0sang\xc4\xa0sane\xc4\xa0" +"same\xc4\xa0sake\xc4\xa0said\xc4\xa0sage\xc4\xa0saga\xc4\xa0runs\xc4\xa0rude\xc4" +"\xa0ruby\xc4\xa0rows\xc4\xa0rods\xc4\xa0ripe\xc4\xa0rink\xc4\xa0rigs\xc4\xa0rift" +"\xc4\xa0riff\xc4\xa0rife\xc4\xa0rice\xc4\xa0ribs\xc4\xa0resh\xc4\xa0reps\xc4\xa0" +"rays\xc4\xa0rats\xc4\xa0rash\xc4\xa0rapt\xc4\xa0rant\xc4\xa0rake\xc4\xa0raft\xc4" +"\xa0puts\xc4\xa0punt\xc4\xa0punk\xc4\xa0pulp\xc4\xa0puff\xc4\xa0puck\xc4\xa0pubs" +"\xc4\xa0prey\xc4\xa0pots\xc4\xa0pork\xc4\xa0pops\xc4\xa0pope\xc4\xa0poop\xc4\xa0" +"pony\xc4\xa0pont\xc4\xa0pomp\xc4\xa0pods\xc4\xa0ploy\xc4\xa0pity\xc4\xa0pits\xc4" +"\xa0pint\xc4\xa0pins\xc4\xa0pink\xc4\xa0ping\xc4\xa0pigs\xc4\xa0pies\xc4\xa0pics" +"\xc4\xa0pets\xc4\xa0perl\xc4\xa0pept\xc4\xa0pent\xc4\xa0peek\xc4\xa0pedd\xc4\xa0" +"pays\xc4\xa0paws\xc4\xa0pawn\xc4\xa0pans\xc4\xa0pals\xc4\xa0pall\xc4\xa0paid\xc4" +"\xa0paed\xc4\xa0pads\xc4\xa0pact\xc4\xa0owns\xc4\xa0owes\xc4\xa0owed\xc4\xa0oven" +"\xc4\xa0oval\xc4\xa0ostr\xc4\xa0orcs\xc4\xa0orbs\xc4\xa0onto\xc4\xa0only\xc4\xa0" +"once\xc4\xa0olig\xc4\xa0olds\xc4\xa0okay\xc4\xa0oily\xc4\xa0oils\xc4\xa0ogre\xc4" +"\xa0odor\xc4\xa0odds\xc4\xa0obey\xc4\xa0oats\xc4\xa0oath\xc4\xa0nuns\xc4\xa0null" +"\xc4\xa0nude\xc4\xa0nour\xc4\xa0noun\xc4\xa0noon\xc4\xa0nont\xc4\xa0nond\xc4\xa0" +"nods\xc4\xa0next\xc4\xa0nets\xc4\xa0neon\xc4\xa0navy\xc4\xa0murm\xc4\xa0mull\xc4" +"\xa0muff\xc4\xa0much\xc4\xa0msec\xc4\xa0moss\xc4\xa0moot\xc4\xa0mood\xc4\xa0moms" +"\xc4\xa0mods\xc4\xa0mobs\xc4\xa0mmol\xc4\xa0mint\xc4\xa0mins\xc4\xa0ming\xc4\xa0" +"milk\xc4\xa0mice\xc4\xa0mend\xc4\xa0mell\xc4\xa0mega\xc4\xa0maze\xc4\xa0mats\xc4" +"\xa0maps\xc4\xa0many\xc4\xa0malt\xc4\xa0made\xc4\xa0mRNA\xc4\xa0lust\xc4\xa0lush" +"\xc4\xa0lump\xc4\xa0lull\xc4\xa0lows\xc4\xa0lots\xc4\xa0lost\xc4\xa0lore\xc4\xa0" +"logs\xc4\xa0lobe\xc4\xa0loaf\xc4\xa0limp\xc4\xa0lies\xc4\xa0lied\xc4\xa0lich\xc4" +"\xa0liar\xc4\xa0lewd\xc4\xa0levy\xc4\xa0lets\xc4\xa0lest\xc4\xa0lent\xc4\xa0legs" +"\xc4\xa0lazy\xc4\xa0lays\xc4\xa0lawn\xc4\xa0lava\xc4\xa0lakh\xc4\xa0lair\xc4\xa0" +"laid\xc4\xa0lady\xc4\xa0lact\xc4\xa0labs\xc4\xa0knob\xc4\xa0knew\xc4\xa0kits\xc4" +"\xa0kios\xc4\xa0kins\xc4\xa0kids\xc4\xa0keys\xc4\xa0kept\xc4\xa0keen\xc4\xa0kcal" +"\xc4\xa0kale\xc4\xa0jury\xc4\xa0junk\xc4\xa0json\xc4\xa0john\xc4\xa0jobs\xc4\xa0" +"jets\xc4\xa0jerk\xc4\xa0jazz\xc4\xa0jaws\xc4\xa0jars\xc4\xa0jams\xc4\xa0ital\xc4" +"\xa0istg\xc4\xa0isot\xc4\xa0ions\xc4\xa0inoc\xc4\xa0idle\xc4\xa0iPod\xc4\xa0hust" +"\xc4\xa0hump\xc4\xa0hull\xc4\xa0hugs\xc4\xa0hubs\xc4\xa0html\xc4\xa0href\xc4\xa0" +"hots\xc4\xa0hose\xc4\xa0hops\xc4\xa0hood\xc4\xa0holy\xc4\xa0hoax\xc4\xa0hive\xc4" +"\xa0hits\xc4\xa0hips\xc4\xa0hemp\xc4\xa0held\xc4\xa0heed\xc4\xa0heck\xc4\xa0heap" +"\xc4\xa0haze\xc4\xa0hawk\xc4\xa0hats\xc4\xa0hath\xc4\xa0hasn\xc4\xa0hapl\xc4\xa0" +"hamb\xc4\xa0haha\xc4\xa0hadn\xc4\xa0gymn\xc4\xa0guys\xc4\xa0guts\xc4\xa0gust\xc4" +"\xa0guru\xc4\xa0gull\xc4\xa0gulf\xc4\xa0grop\xc4\xa0grim\xc4\xa0grey\xc4\xa0grew" +"\xc4\xa0grep\xc4\xa0gray\xc4\xa0gown\xc4\xa0goto\xc4\xa0gore\xc4\xa0gone\xc4\xa0" +"golf\xc4\xa0goes\xc4\xa0gods\xc4\xa0glyc\xc4\xa0gist\xc4\xa0gigs\xc4\xa0gigg\xc4" +"\xa0gets\xc4\xa0germ\xc4\xa0gems\xc4\xa0geek\xc4\xa0gays\xc4\xa0gave\xc4\xa0garg" +"\xc4\xa0gaps\xc4\xa0""fuss\xc4\xa0""fury\xc4\xa0""from\xc4\xa0""fret\xc4\xa0""fr" +"ay\xc4\xa0""foul\xc4\xa0""fors\xc4\xa0""fond\xc4\xa0""foil\xc4\xa0""foes\xc4\xa0" +"""foam\xc4\xa0""flux\xc4\xa0""flew\xc4\xa0""flap\xc4\xa0""five\xc4\xa0""fits\xc4" +"\xa0""fins\xc4\xa0""fiat\xc4\xa0""ferv\xc4\xa0""fend\xc4\xa0""felt\xc4\xa0""feet" +"\xc4\xa0""fees\xc4\xa0""feds\xc4\xa0""faux\xc4\xa0""fats\xc4\xa0""fans\xc4\xa0""e" +"yes\xc4\xa0""eyel\xc4\xa0""eyed\xc4\xa0""euth\xc4\xa0""epit\xc4\xa0""epic\xc4\xa0" +"""envy\xc4\xa0""enqu\xc4\xa0""ends\xc4\xa0""eluc\xc4\xa0""ejac\xc4\xa0""eggs\xc4" +"\xa0""eats\xc4\xa0""easy\xc4\xa0""ears\xc4\xa0""each\xc4\xa0""eBay\xc4\xa0""dyed" +"\xc4\xa0""duty\xc4\xa0""dusk\xc4\xa0""dunk\xc4\xa0""dumb\xc4\xa0""duly\xc4\xa0""d" +"ull\xc4\xa0""dues\xc4\xa0""duel\xc4\xa0""duct\xc4\xa0""dual\xc4\xa0""dstg\xc4\xa0" +"""drib\xc4\xa0""drew\xc4\xa0""dred\xc4\xa0""dove\xc4\xa0""dots\xc4\xa0""dope\xc4" +"\xa0""dont\xc4\xa0""done\xc4\xa0""dogs\xc4\xa0""docs\xc4\xa0""dizz\xc4\xa0""dips" +"\xc4\xa0""ding\xc4\xa0""digs\xc4\xa0""died\xc4\xa0""dick\xc4\xa0""dich\xc4\xa0""d" +"evs\xc4\xa0""defy\xc4\xa0""deft\xc4\xa0""deer\xc4\xa0""dean\xc4\xa0""deaf\xc4\xa0" +"""days\xc4\xa0""dawn\xc4\xa0""darn\xc4\xa0""dams\xc4\xa0""damp\xc4\xa0""dads\xc4" +"\xa0""cyan\xc4\xa0""cuts\xc4\xa0""cute\xc4\xa0""curb\xc4\xa0""cups\xc4\xa0""cunt" +"\xc4\xa0""cull\xc4\xa0""cuff\xc4\xa0""cues\xc4\xa0""crou\xc4\xa0""crib\xc4\xa0""c" +"rem\xc4\xa0""cozy\xc4\xa0""cows\xc4\xa0""cout\xc4\xa0""cops\xc4\xa0""cope\xc4\xa0" +"""coma\xc4\xa0""coli\xc4\xa0""coax\xc4\xa0""clay\xc4\xa0""clad\xc4\xa0""city\xc4" +"\xa0""chin\xc4\xa0""chau\xc4\xa0""caul\xc4\xa0""cats\xc4\xa0""cash\xc4\xa0""cars" +"\xc4\xa0""cape\xc4\xa0""cant\xc4\xa0""cans\xc4\xa0""cane\xc4\xa0""calf\xc4\xa0""b" +"uys\xc4\xa0""busy\xc4\xa0""buoy\xc4\xa0""bung\xc4\xa0""bugs\xc4\xa0""buds\xc4\xa0" +"""brim\xc4\xa0""bred\xc4\xa0""boys\xc4\xa0""bows\xc4\xa0""bots\xc4\xa0""boon\xc4" +"\xa0""bona\xc4\xa0""body\xc4\xa0""blot\xc4\xa0""blob\xc4\xa0""blew\xc4\xa0""blah" +"\xc4\xa0""bits\xc4\xa0""bios\xc4\xa0""bins\xc4\xa0""bids\xc4\xa0""bets\xc4\xa0""b" +"eta\xc4\xa0""bere\xc4\xa0""benz\xc4\xa0""bent\xc4\xa0""begs\xc4\xa0""bees\xc4\xa0" +"""been\xc4\xa0""beef\xc4\xa0""beds\xc4\xa0""beck\xc4\xa0""bats\xc4\xa0""bass\xc4" +"\xa0""bars\xc4\xa0""barn\xc4\xa0""bans\xc4\xa0""balk\xc4\xa0""bald\xc4\xa0""bait" +"\xc4\xa0""bags\xc4\xa0""babe\xc4\xa0""axle\xc4\xa0""axis\xc4\xa0""axes\xc4\xa0""a" +"way\xc4\xa0""avid\xc4\xa0""ausp\xc4\xa0""aura\xc4\xa0""aunt\xc4\xa0""attm\xc4\xa0" +"""atop\xc4\xa0""asks\xc4\xa0""arts\xc4\xa0""army\xc4\xa0""arms\xc4\xa0""args\xc4" +"\xa0""ardu\xc4\xa0""arcs\xc4\xa0""apps\xc4\xa0""apex\xc4\xa0""apes\xc4\xa0""anus" +"\xc4\xa0""ants\xc4\xa0""anew\xc4\xa0""amps\xc4\xa0""also\xc4\xa0""alot\xc4\xa0""a" +"lly\xc4\xa0""alas\xc4\xa0""akin\xc4\xa0""aims\xc4\xa0""aids\xc4\xa0""ages\xc4\xa0" +"""aged\xc4\xa0""afar\xc4\xa0""adip\xc4\xa0""adds\xc4\xa0""acts\xc4\xa0""acne\xc4" +"\xa0""acet\xc4\xa0""able\xc4\xa0""aber\xc4\xa0Zoro\xc4\xa0Zoom\xc4\xa0Zone\xc4\xa0" +"Zika\xc4\xa0Zhou\xc4\xa0Zhao\xc4\xa0Zeus\xc4\xa0Zero\xc4\xa0Zerg\xc4\xa0Zeit\xc4" +"\xa0Zamb\xc4\xa0Zack\xc4\xa0Zach\xc4\xa0Yuri\xc4\xa0Yuan\xc4\xa0Yong\xc4\xa0Yoga" +"\xc4\xa0Ying\xc4\xa0Yelp\xc4\xa0Yeah\xc4\xa0Yang\xc4\xa0Yale\xc4\xa0YOUR\xc4\xa0" +"YORK\xc4\xa0YEAR\xc4\xa0Xuan\xc4\xa0Xeon\xc4\xa0Xbox\xc4\xa0XIII\xc4\xa0XCOM\xc4" +"\xa0Wrap\xc4\xa0Worm\xc4\xa0Wool\xc4\xa0Wong\xc4\xa0Witt\xc4\xa0Wish\xc4\xa0Wise" +"\xc4\xa0Wink\xc4\xa0Wine\xc4\xa0Wife\xc4\xa0Wide\xc4\xa0WiFi\xc4\xa0Whis\xc4\xa0" +"Whip\xc4\xa0Went\xc4\xa0Weld\xc4\xa0Weed\xc4\xa0Webb\xc4\xa0Wear\xc4\xa0Weak\xc4" +"\xa0Ways\xc4\xa0Warp\xc4\xa0Warm\xc4\xa0Wang\xc4\xa0Wald\xc4\xa0Wake\xc4\xa0Wage" +"\xc4\xa0Wade\xc4\xa0WWII\xc4\xa0WORK\xc4\xa0WILL\xc4\xa0WHEN\xc4\xa0WHAT\xc4\xa0" +"WEEK\xc4\xa0WANT\xc4\xa0Void\xc4\xa0Vive\xc4\xa0Vish\xc4\xa0Visa\xc4\xa0Vine\xc4" +"\xa0Vick\xc4\xa0Vice\xc4\xa0Vest\xc4\xa0Very\xc4\xa0Verd\xc4\xa0Verb\xc4\xa0Vera" +"\xc4\xa0Veil\xc4\xa0Varg\xc4\xa0Vald\xc4\xa0Vacc\xc4\xa0VIII\xc4\xa0VIEW\xc4\xa0" +"VICE\xc4\xa0VERY\xc4\xa0VERS\xc4\xa0Utah\xc4\xa0Uses\xc4\xa0Used\xc4\xa0Uran\xc4" +"\xa0Upon\xc4\xa0Unix\xc4\xa0Ukip\xc4\xa0Uber\xc4\xa0USSR\xc4\xa0USPS\xc4\xa0USDA" +"\xc4\xa0USAF\xc4\xa0URLs\xc4\xa0UKIP\xc4\xa0UFOs\xc4\xa0UEFA\xc4\xa0UCLA\xc4\xa0" +"Tune\xc4\xa0Tube\xc4\xa0True\xc4\xa0Troy\xc4\xa0Trog\xc4\xa0Trey\xc4\xa0Trem\xc4" +"\xa0Trek\xc4\xa0Toys\xc4\xa0Tosh\xc4\xa0Tory\xc4\xa0Tort\xc4\xa0Tony\xc4\xa0Tong" +"\xc4\xa0Tone\xc4\xa0Tome\xc4\xa0Tomb\xc4\xa0Toll\xc4\xa0Todd\xc4\xa0Toby\xc4\xa0" +"Toad\xc4\xa0Tire\xc4\xa0Tips\xc4\xa0Tiny\xc4\xa0Tina\xc4\xa0Tile\xc4\xa0Tier\xc4" +"\xa0Tide\xc4\xa0Tian\xc4\xa0Thus\xc4\xa0This\xc4\xa0Thib\xc4\xa0They\xc4\xa0Then" +"\xc4\xa0Tess\xc4\xa0Tens\xc4\xa0Tend\xc4\xa0Tell\xc4\xa0Teen\xc4\xa0Taxi\xc4\xa0" +"Tatt\xc4\xa0Tate\xc4\xa0Tata\xc4\xa0Task\xc4\xa0Tart\xc4\xa0Tape\xc4\xa0Tant\xc4" +"\xa0Tang\xc4\xa0Tall\xc4\xa0Tail\xc4\xa0Tags\xc4\xa0TYPE\xc4\xa0TRUE\xc4\xa0TOUR" +"\xc4\xa0TIME\xc4\xa0THIS\xc4\xa0THEY\xc4\xa0THEN\xc4\xa0THEM\xc4\xa0THAT\xc4\xa0" +"TEXT\xc4\xa0TEST\xc4\xa0TECH\xc4\xa0TEAM\xc4\xa0Synt\xc4\xa0Sync\xc4\xa0Swim\xc4" +"\xa0Swap\xc4\xa0Sven\xc4\xa0Susp\xc4\xa0Sung\xc4\xa0Such\xc4\xa0Stun\xc4\xa0Stub" +"\xc4\xa0Stop\xc4\xa0Stir\xc4\xa0Stim\xc4\xa0Stay\xc4\xa0Spit\xc4\xa0Spin\xc4\xa0" +"Soup\xc4\xa0Sort\xc4\xa0Sora\xc4\xa0Soon\xc4\xa0Sony\xc4\xa0Sons\xc4\xa0Sole\xc4" +"\xa0Soda\xc4\xa0Slug\xc4\xa0Slot\xc4\xa0Slip\xc4\xa0Slam\xc4\xa0Skip\xc4\xa0Size" +"\xc4\xa0Sith\xc4\xa0Sins\xc4\xa0Sinn\xc4\xa0Sind\xc4\xa0Sims\xc4\xa0Silk\xc4\xa0" +"Sikh\xc4\xa0Siem\xc4\xa0Side\xc4\xa0Sidd\xc4\xa0Sick\xc4\xa0Shit\xc4\xa0Shim\xc4" +"\xa0Shib\xc4\xa0Shia\xc4\xa0Shen\xc4\xa0Shed\xc4\xa0Shea\xc4\xa0Shay\xc4\xa0Shah" +"\xc4\xa0Sexy\xc4\xa0Sets\xc4\xa0Seth\xc4\xa0Sere\xc4\xa0Self\xc4\xa0Sega\xc4\xa0" +"Seen\xc4\xa0Sean\xc4\xa0Seal\xc4\xa0Seaf\xc4\xa0Schl\xc4\xa0Scha\xc4\xa0Says\xc4" +"\xa0Save\xc4\xa0Saur\xc4\xa0Saul\xc4\xa0Sass\xc4\xa0Sark\xc4\xa0Sard\xc4\xa0Sang" +"\xc4\xa0Sana\xc4\xa0Same\xc4\xa0Salt\xc4\xa0Said\xc4\xa0Sage\xc4\xa0Sack\xc4\xa0" +"SWAT\xc4\xa0STUD\xc4\xa0STOP\xc4\xa0STEP\xc4\xa0STEM\xc4\xa0SOME\xc4\xa0SOLD\xc4" +"\xa0SNAP\xc4\xa0SIGN\xc4\xa0SHOW\xc4\xa0SEAL\xc4\xa0SATA\xc4\xa0Ryan\xc4\xa0Rush" +"\xc4\xa0Runs\xc4\xa0Ruff\xc4\xa0Rudy\xc4\xa0Rudd\xc4\xa0Ruby\xc4\xa0Rowe\xc4\xa0" +"Rost\xc4\xa0Rosa\xc4\xa0Rory\xc4\xa0Roof\xc4\xa0Romo\xc4\xa0Role\xc4\xa0Roku\xc4" +"\xa0Rite\xc4\xa0Rita\xc4\xa0Risk\xc4\xa0Rise\xc4\xa0Riot\xc4\xa0Rift\xc4\xa0Rico" +"\xc4\xa0Rice\xc4\xa0Rept\xc4\xa0Reps\xc4\xa0Rent\xc4\xa0Reno\xc4\xa0Remy\xc4\xa0" +"Reid\xc4\xa0Reef\xc4\xa0Reed\xc4\xa0Rect\xc4\xa0Reck\xc4\xa0Rear\xc4\xa0Rays\xc4" +"\xa0Ratt\xc4\xa0Rats\xc4\xa0Rash\xc4\xa0Rare\xc4\xa0Rapp\xc4\xa0Rape\xc4\xa0Rage" +"\xc4\xa0Rack\xc4\xa0RPGs\xc4\xa0ROCK\xc4\xa0REST\xc4\xa0RESP\xc4\xa0REPL\xc4\xa0" +"READ\xc4\xa0RCMP\xc4\xa0RAND\xc4\xa0RAID\xc4\xa0Qu\xc3\x83\xc2\xa9\xc4\xa0Qing\xc4" +"\xa0Qiao\xc4\xa0Qian\xc4\xa0Pyro\xc4\xa0Push\xc4\xa0Purs\xc4\xa0Purg\xc4\xa0Pure" +"\xc4\xa0Punk\xc4\xa0Pull\xc4\xa0Psal\xc4\xa0Prol\xc4\xa0Prix\xc4\xa0Pour\xc4\xa0" +"Pose\xc4\xa0Porn\xc4\xa0Pork\xc4\xa0Pope\xc4\xa0Poor\xc4\xa0Pool\xc4\xa0Pony\xc4" +"\xa0Pont\xc4\xa0Pond\xc4\xa0Poly\xc4\xa0Polo\xc4\xa0Polk\xc4\xa0Plus\xc4\xa0Plum" +"\xc4\xa0Plot\xc4\xa0Plex\xc4\xa0Ples\xc4\xa0Pink\xc4\xa0Ping\xc4\xa0Pine\xc4\xa0" +"Pike\xc4\xa0Pigs\xc4\xa0Piet\xc4\xa0Phen\xc4\xa0Pets\xc4\xa0Pesh\xc4\xa0Peru\xc4" +"\xa0Perl\xc4\xa0Pepe\xc4\xa0Pend\xc4\xa0Pell\xc4\xa0Peer\xc4\xa0Peel\xc4\xa0Peck" +"\xc4\xa0Pats\xc4\xa0Paso\xc4\xa0Parm\xc4\xa0Papa\xc4\xa0Panc\xc4\xa0Palo\xc4\xa0" +"Pall\xc4\xa0Pair\xc4\xa0Paid\xc4\xa0Pact\xc4\xa0PTSD\xc4\xa0PROV\xc4\xa0PROT\xc4" +"\xa0PROC\xc4\xa0POST\xc4\xa0PLoS\xc4\xa0PLUS\xc4\xa0PLAY\xc4\xa0PLAN\xc4\xa0PCIe" +"\xc4\xa0PATH\xc4\xa0PASS\xc4\xa0PART\xc4\xa0PARK\xc4\xa0PAGE\xc4\xa0PACs\xc4\xa0" +"PACK\xc4\xa0Oval\xc4\xa0Oslo\xc4\xa0Oral\xc4\xa0Oops\xc4\xa0Only\xc4\xa0Ones\xc4" +"\xa0Once\xc4\xa0Omni\xc4\xa0Omar\xc4\xa0Oman\xc4\xa0Okay\xc4\xa0Ohio\xc4\xa0Ogre" +"\xc4\xa0Odin\xc4\xa0Obst\xc4\xa0Ober\xc4\xa0Oath\xc4\xa0Oaks\xc4\xa0OVER\xc4\xa0" +"ORIG\xc4\xa0OPER\xc4\xa0OPEN\xc4\xa0OPEC\xc4\xa0ONLY\xc4\xa0OLED\xc4\xa0OECD\xc4" +"\xa0Null\xc4\xa0Nova\xc4\xa0Nost\xc4\xa0Nose\xc4\xa0Norn\xc4\xa0Nora\xc4\xa0Nope" +"\xc4\xa0Noon\xc4\xa0Noir\xc4\xa0Noel\xc4\xa0Node\xc4\xa0Noct\xc4\xa0Noah\xc4\xa0" +"Nish\xc4\xa0Ning\xc4\xa0Nine\xc4\xa0Nina\xc4\xa0Nile\xc4\xa0Nike\xc4\xa0Nice\xc4" +"\xa0Next\xc4\xa0Nets\xc4\xa0Nest\xc4\xa0Ness\xc4\xa0Nero\xc4\xa0Nerd\xc4\xa0Neph" +"\xc4\xa0Neon\xc4\xa0Neil\xc4\xa0Neck\xc4\xa0Neal\xc4\xa0Navy\xc4\xa0Nato\xc4\xa0" +"Nate\xc4\xa0Nass\xc4\xa0Nasa\xc4\xa0Narr\xc4\xa0Narc\xc4\xa0Nano\xc4\xa0Nadu\xc4" +"\xa0NYPD\xc4\xa0NULL\xc4\xa0NPCs\xc4\xa0NOTE\xc4\xa0NOAA\xc4\xa0NGOs\xc4\xa0NEXT" +"\xc4\xa0NEWS\xc4\xa0NEED\xc4\xa0NCAA\xc4\xa0NATO\xc4\xa0NASL\xc4\xa0NASA\xc4\xa0" +"NAME\xc4\xa0Myth\xc4\xa0Muss\xc4\xa0Musk\xc4\xa0Mund\xc4\xa0Much\xc4\xa0Moss\xc4" +"\xa0Mori\xc4\xa0Mord\xc4\xa0Mono\xc4\xa0Mold\xc4\xa0Moff\xc4\xa0Mods\xc4\xa0Mock" +"\xc4\xa0Mitt\xc4\xa0Mits\xc4\xa0Mith\xc4\xa0Mish\xc4\xa0Mint\xc4\xa0Ming\xc4\xa0" +"Mind\xc4\xa0Milo\xc4\xa0Mild\xc4\xa0Miko\xc4\xa0Mike\xc4\xa0Mets\xc4\xa0Mesh\xc4" +"\xa0Mesa\xc4\xa0Meow\xc4\xa0Menu\xc4\xa0Mens\xc4\xa0Meng\xc4\xa0Mend\xc4\xa0Melt" +"\xc4\xa0Meat\xc4\xa0Meal\xc4\xa0McGu\xc4\xa0McCl\xc4\xa0Mbps\xc4\xa0Maze\xc4\xa0" +"Maya\xc4\xa0Maul\xc4\xa0Mats\xc4\xa0Mata\xc4\xa0Mask\xc4\xa0Mash\xc4\xa0Mare\xc4" +"\xa0Maps\xc4\xa0Many\xc4\xa0Mant\xc4\xa0Mane\xc4\xa0Mamm\xc4\xa0Mama\xc4\xa0Mall" +"\xc4\xa0Malk\xc4\xa0Mald\xc4\xa0Mail\xc4\xa0Made\xc4\xa0Macy\xc4\xa0Mack\xc4\xa0" +"MUST\xc4\xa0MUCH\xc4\xa0MPEG\xc4\xa0MORE\xc4\xa0MISS\xc4\xa0MILL\xc4\xa0MIDI\xc4" +"\xa0MDMA\xc4\xa0MARK\xc4\xa0MAKE\xc4\xa0Lynn\xc4\xa0Lyme\xc4\xa0Lyft\xc4\xa0Lust" +"\xc4\xa0Lung\xc4\xa0Lund\xc4\xa0Luke\xc4\xa0Luis\xc4\xa0Lucy\xc4\xa0Loud\xc4\xa0" +"Lots\xc4\xa0Lost\xc4\xa0Loss\xc4\xa0Lose\xc4\xa0Lori\xc4\xa0Loot\xc4\xa0Loop\xc4" +"\xa0Lomb\xc4\xa0Loll\xc4\xa0Loki\xc4\xa0Lois\xc4\xa0Logo\xc4\xa0Loft\xc4\xa0Loch" +"\xc4\xa0Lisp\xc4\xa0Lisa\xc4\xa0Ling\xc4\xa0Lime\xc4\xa0Lima\xc4\xa0Lily\xc4\xa0" +"Liga\xc4\xa0Lift\xc4\xa0Lies\xc4\xa0Lich\xc4\xa0Liam\xc4\xa0Levy\xc4\xa0Lets\xc4" +"\xa0Lent\xc4\xa0Lens\xc4\xa0Lena\xc4\xa0Leia\xc4\xa0Legs\xc4\xa0Lego\xc4\xa0Left" +"\xc4\xa0Lect\xc4\xa0Leap\xc4\xa0Lean\xc4\xa0Leah\xc4\xa0Lawn\xc4\xa0Lash\xc4\xa0" +"Lara\xc4\xa0Laos\xc4\xa0Lann\xc4\xa0Lane\xc4\xa0Lana\xc4\xa0Lamp\xc4\xa0Lair\xc4" +"\xa0Lady\xc4\xa0Lack\xc4\xa0Labs\xc4\xa0LOVE\xc4\xa0LORD\xc4\xa0LOOK\xc4\xa0LONG" +"\xc4\xa0LIVE\xc4\xa0LIST\xc4\xa0LINK\xc4\xa0LINE\xc4\xa0LIKE\xc4\xa0LIFE\xc4\xa0" +"LEGO\xc4\xa0LEDs\xc4\xa0LAST\xc4\xa0LAPD\xc4\xa0Kyle\xc4\xa0Kurt\xc4\xa0Kuro\xc4" +"\xa0Kung\xc4\xa0Kund\xc4\xa0Kron\xc4\xa0Kong\xc4\xa0Koen\xc4\xa0Kodi\xc4\xa0Koch" +"\xc4\xa0Kobe\xc4\xa0Knox\xc4\xa0Knot\xc4\xa0Klux\xc4\xa0Klan\xc4\xa0Kits\xc4\xa0" +"Kirk\xc4\xa0Kira\xc4\xa0Kiev\xc4\xa0Kier\xc4\xa0Kids\xc4\xa0Kidd\xc4\xa0Khan\xc4" +"\xa0Kham\xc4\xa0Kers\xc4\xa0Kens\xc4\xa0Kemp\xc4\xa0Keen\xc4\xa0Kear\xc4\xa0Katz" +"\xc4\xa0Katy\xc4\xa0Kats\xc4\xa0Kate\xc4\xa0Kass\xc4\xa0Kart\xc4\xa0Karn\xc4\xa0" +"Karl\xc4\xa0Kant\xc4\xa0Kang\xc4\xa0Kane\xc4\xa0Kand\xc4\xa0Kamp\xc4\xa0Kali\xc4" +"\xa0Kahn\xc4\xa0KNOW\xc4\xa0KING\xc4\xa0KILL\xc4\xa0Jury\xc4\xa0Juno\xc4\xa0Junk" +"\xc4\xa0June\xc4\xa0Jump\xc4\xa0July\xc4\xa0Jugg\xc4\xa0Judy\xc4\xa0Jude\xc4\xa0" +"Judd\xc4\xa0Juan\xc4\xa0Jong\xc4\xa0Joey\xc4\xa0Joel\xc4\xa0Jobs\xc4\xa0Joan\xc4" +"\xa0Jinn\xc4\xa0Jing\xc4\xa0Jill\xc4\xa0Jews\xc4\xa0Jets\xc4\xa0Jeep\xc4\xa0Jedi" +"\xc4\xa0Jazz\xc4\xa0Jays\xc4\xa0Jake\xc4\xa0Jail\xc4\xa0Jade\xc4\xa0Jace\xc4\xa0" +"JSON\xc4\xa0JPEG\xc4\xa0JOHN\xc4\xa0JACK\xc4\xa0Izzy\xc4\xa0Izan\xc4\xa0Iter\xc4" +"\xa0Issa\xc4\xa0Isis\xc4\xa0Irma\xc4\xa0Iowa\xc4\xa0Into\xc4\xa0Indy\xc4\xa0Imam" +"\xc4\xa0Igor\xc4\xa0Idol\xc4\xa0Idle\xc4\xa0Icon\xc4\xa0Icar\xc4\xa0Ibid\xc4\xa0" +"ISPs\xc4\xa0ISIS\xc4\xa0ISIL\xc4\xa0ISBN\xc4\xa0IPCC\xc4\xa0INTO\xc4\xa0INST\xc4" +"\xa0ILCS\xc4\xa0IEEE\xc4\xa0Hust\xc4\xa0Hurt\xc4\xa0Hume\xc4\xa0Hulu\xc4\xa0Hull" +"\xc4\xa0Hulk\xc4\xa0Hugo\xc4\xa0Huge\xc4\xa0Hots\xc4\xa0Host\xc4\xa0Hook\xc4\xa0" +"Hood\xc4\xa0Hong\xc4\xa0Homs\xc4\xa0Homo\xc4\xa0Holy\xc4\xa0Holt\xc4\xa0Hole\xc4" +"\xa0Hodg\xc4\xa0Hive\xc4\xa0Hits\xc4\xa0Hipp\xc4\xa0Hier\xc4\xa0Hide\xc4\xa0Hess" +"\xc4\xa0Herz\xc4\xa0Hert\xc4\xa0Hers\xc4\xa0Here\xc4\xa0Hemp\xc4\xa0Held\xc4\xa0" +"Hein\xc4\xa0Heck\xc4\xa0Hatt\xc4\xa0Hats\xc4\xa0Hath\xc4\xa0Hate\xc4\xa0Hash\xc4" +"\xa0Hare\xc4\xa0Hank\xc4\xa0Hang\xc4\xa0Halo\xc4\xa0Half\xc4\xa0Haku\xc4\xa0Hair" +"\xc4\xa0Hail\xc4\xa0Haas\xc4\xa0HUGE\xc4\xa0HTML\xc4\xa0HSBC\xc4\xa0HOME\xc4\xa0" +"HIGH\xc4\xa0HERO\xc4\xa0HERE\xc4\xa0HELP\xc4\xa0HELL\xc4\xa0HEAD\xc4\xa0HDMI\xc4" +"\xa0HAVE\xc4\xa0Guys\xc4\xa0Guth\xc4\xa0Guru\xc4\xa0Guns\xc4\xa0Gunn\xc4\xa0Gulf" +"\xc4\xa0Guam\xc4\xa0Gron\xc4\xa0Grip\xc4\xa0Grid\xc4\xa0Grey\xc4\xa0Gret\xc4\xa0" +"Grab\xc4\xa0Gott\xc4\xa0Gork\xc4\xa0Gore\xc4\xa0Gong\xc4\xa0Gone\xc4\xa0Golf\xc4" +"\xa0Goku\xc4\xa0Goff\xc4\xa0Goes\xc4\xa0Gods\xc4\xa0Goat\xc4\xa0Glow\xc4\xa0Glou" +"\xc4\xa0Gins\xc4\xa0Gina\xc4\xa0Gets\xc4\xa0Gest\xc4\xa0Gems\xc4\xa0Geek\xc4\xa0" +"Gaza\xc4\xa0Gaul\xc4\xa0Gast\xc4\xa0Gary\xc4\xa0Garg\xc4\xa0Gang\xc4\xa0Gale\xc4" +"\xa0Gaia\xc4\xa0Gaga\xc4\xa0Gael\xc4\xa0Gabe\xc4\xa0Gaal\xc4\xa0GPUs\xc4\xa0GPIO" +"\xc4\xa0GOLD\xc4\xa0GMOs\xc4\xa0GEAR\xc4\xa0GDDR\xc4\xa0GAME\xc4\xa0GABA\xc4\xa0" +"""Fury\xc4\xa0""Furn\xc4\xa0""Funk\xc4\xa0""Fuji\xc4\xa0""Fuel\xc4\xa0""Fuck\xc4" +"\xa0""From\xc4\xa0""Frog\xc4\xa0""Frey\xc4\xa0""Frem\xc4\xa0""Frag\xc4\xa0""Foss" +"\xc4\xa0""Fork\xc4\xa0""Ford\xc4\xa0""Fool\xc4\xa0""Font\xc4\xa0""Folk\xc4\xa0""F" +"lip\xc4\xa0""Flex\xc4\xa0""Flat\xc4\xa0""Flan\xc4\xa0""Five\xc4\xa0""Fist\xc4\xa0" +"""Firm\xc4\xa0""Fine\xc4\xa0""Fill\xc4\xa0""Fiji\xc4\xa0""Fifa\xc4\xa0""Fiat\xc4" +"\xa0""Feng\xc4\xa0""Feet\xc4\xa0""Fees\xc4\xa0""Fear\xc4\xa0""Fate\xc4\xa0""Fasc" +"\xc4\xa0""Farn\xc4\xa0""Fare\xc4\xa0""Fans\xc4\xa0""Fang\xc4\xa0""Fame\xc4\xa0""F" +"alk\xc4\xa0""Fake\xc4\xa0""FULL\xc4\xa0""FUCK\xc4\xa0""FROM\xc4\xa0""FREE\xc4\xa0" +"""FORM\xc4\xa0""FOIA\xc4\xa0""FISA\xc4\xa0""FIRE\xc4\xa0""FILE\xc4\xa0""FIFA\xc4" +"\xa0""FEMA\xc4\xa0""FACE\xc4\xa0""Ezra\xc4\xa0""Eyes\xc4\xa0""Exit\xc4\xa0""Evil" +"\xc4\xa0""Euph\xc4\xa0""Eucl\xc4\xa0""Etsy\xc4\xa0""Erit\xc4\xa0""Erin\xc4\xa0""E" +"rik\xc4\xa0""Erie\xc4\xa0""Epic\xc4\xa0""Enix\xc4\xa0""Ends\xc4\xa0""Emmy\xc4\xa0" +"""Elys\xc4\xa0""Else\xc4\xa0""Elsa\xc4\xa0""Elon\xc4\xa0""Elim\xc4\xa0""Eggs\xc4" +"\xa0""Edge\xc4\xa0""Eden\xc4\xa0""Easy\xc4\xa0""Earn\xc4\xa0""Each\xc4\xa0""ESPN" +"\xc4\xa0""Duty\xc4\xa0""Dusk\xc4\xa0""Dupl\xc4\xa0""Dunn\xc4\xa0""Dunk\xc4\xa0""D" +"und\xc4\xa0""Dull\xc4\xa0""Duke\xc4\xa0""Duel\xc4\xa0""Dude\xc4\xa0""Dual\xc4\xa0" +"""Drum\xc4\xa0""Drew\xc4\xa0""Dota\xc4\xa0""Dong\xc4\xa0""Dogs\xc4\xa0""Dodd\xc4" +"\xa0""Diss\xc4\xa0""Dism\xc4\xa0""Disk\xc4\xa0""Dish\xc4\xa0""Dirk\xc4\xa0""Dion" +"\xc4\xa0""Ding\xc4\xa0""Dign\xc4\xa0""Died\xc4\xa0""Didn\xc4\xa0""Dice\xc4\xa0""D" +"iaz\xc4\xa0""Deus\xc4\xa0""Dent\xc4\xa0""Deng\xc4\xa0""Dems\xc4\xa0""Dell\xc4\xa0" +"""Deer\xc4\xa0""Deep\xc4\xa0""Debt\xc4\xa0""Dear\xc4\xa0""Dean\xc4\xa0""Days\xc4" +"\xa0""Dawn\xc4\xa0""Dave\xc4\xa0""Dash\xc4\xa0""Dane\xc4\xa0""Dana\xc4\xa0""Damn" +"\xc4\xa0""Dame\xc4\xa0""Daly\xc4\xa0""Dale\xc4\xa0""Dahl\xc4\xa0""DVDs\xc4\xa0""D" +"PRK\xc4\xa0""DOWN\xc4\xa0""DOES\xc4\xa0""DMCA\xc4\xa0""DHCP\xc4\xa0""DEAD\xc4\xa0" +"""DATA\xc4\xa0""DARK\xc4\xa0""DACA\xc4\xa0""Cyan\xc4\xa0""Cure\xc4\xa0""Cups\xc4" +"\xa0""Cubs\xc4\xa0""Cube\xc4\xa0""Ctrl\xc4\xa0""Cruz\xc4\xa0""Cron\xc4\xa0""Crom" +"\xc4\xa0""Crew\xc4\xa0""Crab\xc4\xa0""Cout\xc4\xa0""Coup\xc4\xa0""Cory\xc4\xa0""C" +"orm\xc4\xa0""Cord\xc4\xa0""Conj\xc4\xa0""Cold\xc4\xa0""Coke\xc4\xa0""Coil\xc4\xa0" +"""Cohn\xc4\xa0""Cody\xc4\xa0""Cock\xc4\xa0""Coch\xc4\xa0""Coca\xc4\xa0""Cobb\xc4" +"\xa0""Coat\xc4\xa0""Claw\xc4\xa0""City\xc4\xa0""Chow\xc4\xa0""Chou\xc4\xa0""Chop" +"\xc4\xa0""Chef\xc4\xa0""Chau\xc4\xa0""Chak\xc4\xa0""Chad\xc4\xa0""Cena\xc4\xa0""C" +"avs\xc4\xa0""Cats\xc4\xa0""Cato\xc4\xa0""Cash\xc4\xa0""Cary\xc4\xa0""Caps\xc4\xa0" +"""Cape\xc4\xa0""Calm\xc4\xa0""Cake\xc4\xa0""Cait\xc4\xa0""Cain\xc4\xa0""Cage\xc4" +"\xa0""Cafe\xc4\xa0""CTRL\xc4\xa0""CPUs\xc4\xa0""CONS\xc4\xa0""CONC\xc4\xa0""CODE" +"\xc4\xa0""CNBC\xc4\xa0""CITY\xc4\xa0""CHAR\xc4\xa0""CEOs\xc4\xa0""CENT\xc4\xa0""C" +"CTV\xc4\xa0""CASE\xc4\xa0""CARE\xc4\xa0""CARD\xc4\xa0""CALL\xc4\xa0""Byte\xc4\xa0" +"""Byrd\xc4\xa0""Bush\xc4\xa0""Burr\xc4\xa0""Bulk\xc4\xa0""Bugs\xc4\xa0""Bucs\xc4" +"\xa0""Brut\xc4\xa0""Bros\xc4\xa0""Brom\xc4\xa0""Bray\xc4\xa0""Bram\xc4\xa0""Brah" +"\xc4\xa0""Boys\xc4\xa0""Boyd\xc4\xa0""Bout\xc4\xa0""Bots\xc4\xa0""Both\xc4\xa0""B" +"oss\xc4\xa0""Bosh\xc4\xa0""Born\xc4\xa0""Borg\xc4\xa0""Bore\xc4\xa0""Boom\xc4\xa0" +"""Boll\xc4\xa0""Bold\xc4\xa0""Boko\xc4\xa0""Body\xc4\xa0""Boat\xc4\xa0""Blvd\xc4" +"\xa0""Blow\xc4\xa0""Blog\xc4\xa0""Bits\xc4\xa0""Bite\xc4\xa0""Bing\xc4\xa0""Bild" +"\xc4\xa0""Bike\xc4\xa0""Bian\xc4\xa0""Bhar\xc4\xa0""Beta\xc4\xa0""Best\xc4\xa0""B" +"ert\xc4\xa0""Bere\xc4\xa0""Benz\xc4\xa0""Belt\xc4\xa0""Bees\xc4\xa0""Beer\xc4\xa0" +"""Been\xc4\xa0""Beef\xc4\xa0""Beam\xc4\xa0""Bath\xc4\xa0""Bass\xc4\xa0""Bars\xc4" +"\xa0""Barg\xc4\xa0""Bare\xc4\xa0""Bard\xc4\xa0""Bans\xc4\xa0""Bane\xc4\xa0""Band" +"\xc4\xa0""Bale\xc4\xa0""Bakr\xc4\xa0""Bain\xc4\xa0""Bagg\xc4\xa0""Baal\xc4\xa0""B" +"OOK\xc4\xa0""BIOS\xc4\xa0""BEST\xc4\xa0""BASE\xc4\xa0""BART\xc4\xa0""BALL\xc4\xa0" +"""BACK\xc4\xa0""Axis\xc4\xa0""Axel\xc4\xa0""Away\xc4\xa0""Aviv\xc4\xa0""Aure\xc4" +"\xa0""Aura\xc4\xa0""Aunt\xc4\xa0""Asus\xc4\xa0""Assy\xc4\xa0""Arts\xc4\xa0""Arri" +"\xc4\xa0""Army\xc4\xa0""Ares\xc4\xa0""Aram\xc4\xa0""Aqua\xc4\xa0""Apps\xc4\xa0""A" +"pex\xc4\xa0""Anna\xc4\xa0""Andy\xc4\xa0""Anat\xc4\xa0""Ampl\xc4\xa0""Amph\xc4\xa0" +"""Amos\xc4\xa0""Ammo\xc4\xa0""Amit\xc4\xa0""Amir\xc4\xa0""Amin\xc4\xa0""Amid\xc4" +"\xa0""Ames\xc4\xa0""Amar\xc4\xa0""Alto\xc4\xa0""Also\xc4\xa0""Alps\xc4\xa0""Alma" +"\xc4\xa0""Ally\xc4\xa0""Alec\xc4\xa0""Alan\xc4\xa0""Alam\xc4\xa0""Akin\xc4\xa0""A" +"jax\xc4\xa0""Ages\xc4\xa0""Aden\xc4\xa0""Adds\xc4\xa0""Acts\xc4\xa0""Acid\xc4\xa0" +"""Acer\xc4\xa0""Able\xc4\xa0""Abel\xc4\xa0""Abby\xc4\xa0""ASUS\xc4\xa0""ASIC\xc4" +"\xa0""ASAP\xc4\xa0""APIs\xc4\xa0""ALSO\xc4\xa0""ALEC\xc4\xa0""AIDS\xc4\xa0""ADHD" +"\xc4\xa0""ACPI\xc4\xa0""ACLU\xc4\xa0\xc4\xa0\x2b/-\xc4\xa0\x2b\x2b\x2b\xc4\xa0));\xc4\xa0" +")))\xc4\xa0(\xc3\x82\xc2\xa3\xc4\xa0(\x3f,\xc4\xa0();\xc4\xa0().\xc4\xa0(),\xc4\xa0" +"(%)\xc4\xa0($)\xc4\xa0\x22\x22\x22\xc3\xa3\xc4\xa3\xc2\xae\xc3\xa7\xc3\xa3\xc4\xa3" +"\xc2\xae\xc3\xa6\xc3\xa2\xc4\xa6\xc2\xa2:\xc3\xa2\xc4\xa2\xc4\xb6-\xc3\xa2\xc4\xa2" +"\xc4\xb6\x22\xc3\xa2\xc4\xa2\xc2\xa6)\xc3\x83\xc4\xbd\xc3\x83\xc4\xbd\xc3\x83\xc4" +"\xaf\xc3\x83\xc4\xaf\xc3\x83\xc2\xa8re\xc3\x82\xc2\xb7\xc3\x82\xc2\xb7||||zmanzh" +"ouzhenxtonwangwanaviksutsuuskyushaurgyurgauniaumpyumboukesukedujahuersuebludosud" +"ebubisubenubbyshawruffromyrilsriksrikariegreysquezpeesozygorasopusopotookyongaon" +"ewoglyogluoferodonoddyodanocryococobylobosobarneaumyrampegmmmmmilolyssluajleesle" +"ckkayakampizzyiyahivasit\xc3\x83\xc2\xa9itsuitasissyismoishyippyipopinoainkyinas" +"imsyimovimeiilusiltsilonildoildaikanigunigonieriieftidonidisiddyidaeicusicumicht" +"iburibiaiardiHUDhtarhoffhlerhibahhhhhenyginxgadoetsuereyepadeeeedigyctrlchukchio" +"chidbonsbolebaumazesayanawanaunaaugaatumatraaspxasmsasararynaryaarovarooantzanos" +"ankyaneyalosaldiakraakovaidoahahagusagosadraadosadiqadalachyachoaceyaccaacasabby" +"aaaa````^^^^\x5c/\x5c/YINGXXXXWOODWARDUSERUNCHULARTERNTAINSTONSIZESHIPREAMRAFTPO" +"SEOUGHOTUSOSEDORPGORGEONEYONESNYSENECTMODELeodLagoLOCKLOADLLOWLESSLANDJECTIVESIT" +"CHITALISONIREDINGSIFICIDESIDERICANICALIBLEHttpHHHHHAELFLAGFFFFFFERENCYEGINEEEEDE" +"RRColaCHATCEPTCASTByIdBILLArgsAfeeATORATERASONASEDARDSARCHANCEAMESALTH\x3f\xc3\xa3" +"\xc4\xa2\xc4\xaf=~=~999976013333220011111027101610071001010000020001/\xc3\xa2\xc4" +"\xa2\xc4\xad.\xc3\xaf\xc2\xbf\xc2\xbd.\xc3\xa3\xc4\xa2\xc4\xaf.\xc3\xa2\xc4\xa2\xc4" +"\xb5...\x3f...).\x27\x27..\x22,\x22,\xc3\xa2\xc4\xa2\xc4\xb6,...)\xc3\xa2\xc4\xa2" +"\xc4\xb6)...))))\x27\x27\x27\x27%%%%$$$$#$#$\x22\xc3\xa2\xc4\xa2\xc4\xb6\x22},\x22" +"\x22]=>\x22],\x22\x22>=\xc4\xa0><\xc4\xa0=>\xc4\xa0" +"<[\xc4\xa0<@\xc4\xa0<=\xc4\xa0<<\xc4\xa0\xc4\xa0._\xc4\xa0./\xc4\xa0.)" +"\xc4\xa0.\x22\xc4\xa0->\xc4\xa0-=\xc4\xa0,\x22\xc4\xa0\x2b=\xc4\xa0\x2b#\xc4\xa0" +"*/\xc4\xa0*.\xc4\xa0*)\xc4\xa0)]\xc4\xa0);\xc4\xa0):\xc4\xa0).\xc4\xa0),\xc4\xa0" +"(~\xc4\xa0({\xc4\xa0(_\xc4\xa0([\xc4\xa0(@\xc4\xa0(>\xc4\xa0(=\xc4\xa0(<\xc4\xa0" +"(/\xc4\xa0(.\xc4\xa0(-\xc4\xa0(\x2b\xc4\xa0(*\xc4\xa0((\xc4\xa0(\x27\xc4\xa0(&\xc4" +"\xa0(#\xc4\xa0(\x22\xc4\xa0(!\xc4\xa0\x27[\xc4\xa0\x27/\xc4\xa0\x27.\xc4\xa0\x27" +",\xc4\xa0\x27(\xc4\xa0\x27\x27\xc4\xa0&&\xc4\xa0%%\xc4\xa0${\xc4\xa0$_\xc4\xa0$\x5c" +"\xc4\xa0$(\xc4\xa0$$\xc4\xa0\x22{\xc4\xa0\x22_\xc4\xa0\x22\x5c\xc4\xa0\x22[\xc4\xa0" +"\x22@\xc4\xa0\x22<\xc4\xa0\x22/\xc4\xa0\x22-\xc4\xa0\x22,\xc4\xa0\x22\x2b\xc4\xa0" +"\x22(\xc4\xa0\x22\x27\xc4\xa0\x22%\xc4\xa0\x22#\xc4\xa0!=\xc4\xa0!!\xc4\x8a\xc3\x82" +"\xc5\x82\xc3\xaf\xc2\xb8\xc4\xb1\xc3\xa9\xc4\xb9\xc4\xba\xc3\xa9\xc2\xbb\xc4\xb4" +"\xc3\xa8\xc4\xa2\xc4\xa7\xc3\xa8\xc2\xa3\xc4\xa7\xc3\xa7\xc4\xbc\xc4\xa6\xc3\xa7" +"\xc4\xb6\xc5\x81\xc3\xa7\xc4\xb6\xc2\xb0\xc3\xa7\xc4\xb0\xc4\xad\xc3\xa7\xc4\xab" +"\xc4\xaa\xc3\xa6\xc5\x83\xc2\xa6\xc3\xa6\xc4\xba\xc2\xaf\xc3\xa6\xc4\xb8\xc2\xb9" +"\xc3\xa6\xc4\xaa\xc2\xa6\xc3\xa6\xc2\xa9\xc5\x81\xc3\xa5\xc5\x83\xc4\xb2\xc3\xa5" +"\xc4\xa7\xc4\xab\xc3\xa5\xc2\xb0\xc4\xa8\xc3\xa5\xc2\xa7\xc2\xab\xc3\xa5\xc2\xa5" +"\xc2\xb3\xc3\xa5\xc2\xa4\xc2\xa9\xc3\xa5\xc2\xa4\xc2\xa7\xc3\xa4\xc2\xbd\xc4\xbe" +"\xc3\xa4\xc2\xbd\xc2\xbf\xc3\xa4\xc2\xbb\xc2\xa3\xc3\xa4\xc2\xba\xc4\xb6\xc3\xa4" +"\xc2\xba\xc2\xba\xc3\xa4\xc2\xb9\xc4\xad\xc3\xa4\xc2\xb8\xc5\x83\xc3\xa4\xc2\xb8" +"\xc4\xaf\xc3\xa4\xc2\xb8\xc4\xac\xc3\xa4\xc2\xb8\xc4\xab\xc3\xa4\xc2\xb8\xc4\xa2" +"\xc3\xa3\xc4\xa5\xc5\x83\xc3\xa3\xc4\xa5\xc5\x82\xc3\xa3\xc4\xa5\xc5\x81\xc3\xa3" +"\xc4\xa5\xc5\x80\xc3\xa3\xc4\xa5\xc4\xbb\xc3\xa3\xc4\xa5\xc4\xb9\xc3\xa3\xc4\xa5" +"\xc4\xb8\xc3\xa3\xc4\xa5\xc4\xb5\xc3\xa3\xc4\xa5\xc4\xb3\xc3\xa3\xc4\xa5\xc4\xb2" +"\xc3\xa3\xc4\xa5\xc4\xb1\xc3\xa3\xc4\xa5\xc4\xb0\xc3\xa3\xc4\xa5\xc4\xaf\xc3\xa3" +"\xc4\xa5\xc4\xad\xc3\xa3\xc4\xa5\xc4\xac\xc3\xa3\xc4\xa5\xc4\xa6\xc3\xa3\xc4\xa5" +"\xc4\xa3\xc3\xa3\xc4\xa5\xc4\xa2\xc3\xa3\xc4\xa5\xc2\xbb\xc3\xa3\xc4\xa5\xc2\xac" +"\xc3\xa3\xc4\xa5\xc2\xaa\xc3\xa3\xc4\xa5\xc2\xa5\xc3\xa3\xc4\xa5\xc2\xa4\xc3\xa3" +"\xc4\xa5\xc2\xa2\xc3\xa3\xc4\xa5\xc2\xa1\xc3\xa3\xc4\xa4\xc5\x83\xc3\xa3\xc4\xa4" +"\xc4\xb5\xc3\xa3\xc4\xa4\xc4\xb4\xc3\xa3\xc4\xa4\xc4\xae\xc3\xa3\xc4\xa4\xc4\xad" +"\xc3\xa3\xc4\xa4\xc4\xac\xc3\xa3\xc4\xa4\xc4\xab\xc3\xa3\xc4\xa4\xc4\xa4\xc3\xa3" +"\xc4\xa4\xc2\xbf\xc3\xa3\xc4\xa4\xc2\xbd\xc3\xa3\xc4\xa4\xc2\xbb\xc3\xa3\xc4\xa4" +"\xc2\xba\xc3\xa3\xc4\xa4\xc2\xb6\xc3\xa3\xc4\xa4\xc2\xb3\xc3\xa3\xc4\xa4\xc2\xb1" +"\xc3\xa3\xc4\xa4\xc2\xb0\xc3\xa3\xc4\xa4\xc2\xae\xc3\xa3\xc4\xa4\xc2\xac\xc3\xa3" +"\xc4\xa4\xc2\xab\xc3\xa3\xc4\xa4\xc2\xaa\xc3\xa3\xc4\xa4\xc2\xa7\xc3\xa3\xc4\xa3" +"\xc5\x82\xc3\xa3\xc4\xa3\xc5\x81\xc3\xa3\xc4\xa3\xc4\xbb\xc3\xa3\xc4\xa3\xc4\xb9" +"\xc3\xa3\xc4\xa3\xc4\xb7\xc3\xa3\xc4\xa3\xc4\xb5\xc3\xa3\xc4\xa3\xc4\xb1\xc3\xa3" +"\xc4\xa3\xc4\xaf\xc3\xa3\xc4\xa3\xc4\xae\xc3\xa3\xc4\xa3\xc4\xad\xc3\xa3\xc4\xa3" +"\xc4\xa8\xc3\xa3\xc4\xa3\xc4\xa6\xc3\xa3\xc4\xa3\xc4\xa4\xc3\xa3\xc4\xa3\xc2\xbe" +"\xc3\xa3\xc4\xa3\xc2\xaf\xc3\xa3\xc4\xa3\xc2\xab\xc3\xa3\xc4\xa3\xc2\xaa\xc3\xa3" +"\xc4\xa3\xc2\xa8\xc3\xa3\xc4\xa3\xc2\xa7\xc3\xa3\xc4\xa3\xc2\xa6\xc3\xa3\xc4\xa3" +"\xc2\xa3\xc3\xa3\xc4\xa2\xc4\xb3\xc3\xa3\xc4\xa2\xc4\xb2\xc3\xa3\xc4\xa2\xc4\xb1" +"\xc3\xa3\xc4\xa2\xc4\xb0\xc3\xa3\xc4\xa2\xc4\xa4\xc3\xa3\xc4\xa2\xc4\xa3\xc3\xa2" +"\xc4\xbb\xc2\xa6\xc3\xa2\xc4\xbb\xc2\xa5\xc3\xa2\xc4\xba\xc4\xa8\xc3\xa2\xc4\xb9" +"\xc2\xbc\xc3\xa2\xc4\xb8\xc4\xb5\xc3\xa2\xc4\xb8\xc4\xb4\xc3\xa2\xc4\xb8\xc4\xa6" +"\xc3\xa2\xc4\xb8\xc4\xa2\xc3\xa2\xc4\xb6\xc4\xa3\xc3\xa2\xc4\xa2\xc5\x82\xc3\xa2" +"\xc4\xa2\xc4\xb3\xc3\xa2\xc4\xa2\xc4\xb2\xc3\xa2\xc4\xa2\xc2\xb3\xc3\xa2\xc4\xa2" +"\xc2\xb2\xc3\xa0\xc2\xa4\xc2\xbe\xc3\x98\xc2\xa7\xc3\x98\xc3\x97\xc4\xbb\xc3\x97" +"\xc3\x90\xc2\xbe\xc3\x90\xc3\x83\xc5\x83s\xc3\x83\xc5\x83n\xc3\x83\xc5\x83""a\xc3" +"\x83\xc2\xbcr\xc3\x83\xc2\xb6r\xc3\x83\xc2\xb6n\xc3\x83\xc2\xb3n\xc3\x83\xc2\xb1" +"""a\xc3\x83\xc2\xa9t\xc3\x83\xc2\xa9s\xc3\x83\xc2\xa9r\xc3\x83\xc2\xa9n\xc3\x83\xc2" +"\xa9""e\xc3\x83\xc2\xa7""a\xc3\x83\xc2\xa3o\xc3\x83\xc2\xa1s\xc3\x83\xc2\xa1n\xc3" +"\x82\xc2\xae,}}}zzozykzikzigzebzaizagzacyrsxiaxffwynvreutzulztxttncteksbmryurssr" +"axquspoxpngpkgpakohmohloghnirmAhl\xc3\x83\xc2\xa9kunkaskaijpgjitjenjeejayjasjadi" +"kyijnijkihuicciaegpufmlelnekadrmdlldfxdaqc\xc3\x83\xc2\xa9""ctxcsvcoxcmscmpcgicf" +"gcdnbtnajiajaahsagyaezaeaabc_-_][/].\x22],[]);]).]),\x5c\x22>\x5c\x22:\x5c\x22,U" +"rlUSHURNURAUMEUGCUFFUALTeXTRYRONREFRAYPtrPUTOVAOTTOTSOSSOSHORSORNOPAONYOILODYMsg" +"MALLEYLERLABKERKENIUMITTISMISHISCIRTIROIRDIPPIORINOILYILSILDILAIFTIFFIERIDAICSIC" +"HIASIANGANFaxETSERGENNENAELYELSEGAEEPECADoSDIVDEVDEPDCSDAQCmdCHQCCCBIPARYARSARPA" +"RIARBARAAPSAPHAPEANEANAAMYAMSAMPAMIALKALDADEACYACHAAF@#&\x3f).\x3f),\x3f\x27\x22" +"\x3f\x22.\x3f\x22,\x3f!\x22>>\x5c=\x5c\x22=\x22/=\x22#=\x22\x22://88788588488388" +"28778758668648558338258158108098078068058048038017997987977967957947937927907897" +"86785784783782781776775774773772771763762759756755754753752751748745740736733730" +"72972872571871471371270970870670570470369969769669569469369269169068968868768568" +"46836826816766746726716656636626616596586576546536526516496476466456446436426416" +"35629628623618615614613612609607606605604603602599598595594593592591590589587585" +"58458257357256556355455355255154954854453853352852452352251951851451351150950850" +"75064984974944934924914894864844834824814744734724634624544424414384374344313973" +"94393391381362089088083060059055052045044041040035034033032031029028026023.>>.\x22.[\x22);\x22),!\x3f" +"\x22!).!),!\x27\x22!\x22.!\x22,!!\x22\xc5\x83\xc2\xb7\xc4\xbb\xc2\xbd\xc4\xac\xc2" +"\xb1\xc4\xaa\xc3\xa8\xc4\xa4\xc4\xb0\xc4\xa3\xc4\xb8\xc4\xa0\xc3\xac\xc4\xa0\xc3" +"\xab\xc4\xa0\xc3\xa9\xc4\xa0\xc3\xa1\xc4\xa0\xc3\x97\xc4\xa0\xc3\x90\xc4\xa0\xc3" +"\x85\xc4\xa0\xc3\x84\xc4\xa0^\xc4\x8a\xc4\x8a\xc3\xb0\xc4\xbf\xc3\xae\xc4\xa2\xc3" +"\xad\xc4\xb7\xc3\xac\xc4\xbf\xc3\xab\xc4\xad\xc3\xa9\xc4\xbd\xc3\xa9\xc4\xbc\xc3" +"\xa9\xc4\xb8\xc3\xa9\xc4\xa9\xc3\xa9\xc4\xa5\xc3\xa9\xc4\xa3\xc3\xa9\xc4\xa2\xc3" +"\xa9\xc2\xa3\xc3\xa8\xc4\xaa\xc3\xa8\xc4\xa5\xc3\xa8\xc2\xbf\xc3\xa8\xc2\xbb\xc3" +"\xa8\xc2\xaf\xc3\xa8\xc2\xaa\xc3\xa8\xc2\xa1\xc3\xa7\xc4\xbe\xc3\xa7\xc4\xbd\xc3" +"\xa7\xc4\xb7\xc3\xa7\xc4\xb2\xc3\xa7\xc4\xad\xc3\xa7\xc4\xa6\xc3\xa7\xc2\xb7\xc3" +"\xa7\xc2\xab\xc3\xa6\xc5\x82\xc3\xa6\xc4\xbf\xc3\xa6\xc4\xb9\xc3\xa6\xc4\xb7\xc3" +"\xa6\xc4\xab\xc3\xa6\xc4\xa6\xc3\xa6\xc4\xa5\xc3\xa6\xc4\xa2\xc3\xa6\xc2\xb5\xc3" +"\xa6\xc2\xb3\xc3\xa6\xc2\xb0\xc3\xa5\xc4\xbe\xc3\xa5\xc4\xbd\xc3\xa5\xc4\xb3\xc3" +"\xa5\xc4\xb2\xc3\xa5\xc4\xb1\xc3\xa5\xc4\xb0\xc3\xa5\xc4\xaf\xc3\xa5\xc4\xae\xc3" +"\xa5\xc4\xad\xc3\xa5\xc4\xac\xc3\xa5\xc4\xab\xc3\xa5\xc4\xaa\xc3\xa5\xc4\xa9\xc3" +"\xa5\xc4\xa8\xc3\xa5\xc4\xa4\xc3\xa5\xc2\xbf\xc3\xa5\xc2\xbe\xc3\xa5\xc2\xbd\xc3" +"\xa5\xc2\xbc\xc3\xa5\xc2\xba\xc3\xa5\xc2\xb9\xc3\xa5\xc2\xb8\xc3\xa5\xc2\xb7\xc3" +"\xa5\xc2\xaf\xc3\xa5\xc2\xa6\xc3\xa4\xc2\xbf\xc3\xa4\xc2\xbc\xc3\xa2\xc4\xa3\xc3" +"\xa1\xc2\xbd\xc3\xa1\xc2\xb9\xc3\xa1\xc2\xb8\xc3\xa1\xc2\xb5\xc3\xa0\xc2\xbc\xc3" +"\xa0\xc2\xb9\xc3\xa0\xc2\xb8\xc3\xa0\xc2\xa9\xc3\xa0\xc2\xa6\xc3\xa0\xc2\xa5\xc3" +"\x99\xc4\xb4\xc3\x99\xc4\xb2\xc3\x99\xc4\xb0\xc3\x99\xc4\xac\xc3\x99\xc4\xa9\xc3" +"\x99\xc4\xa8\xc3\x98\xc2\xb9\xc3\x98\xc2\xb3\xc3\x98\xc2\xb1\xc3\x98\xc2\xaf\xc3" +"\x98\xc2\xaa\xc3\x98\xc2\xa9\xc3\x98\xc2\xa8\xc3\x97\xc5\x80\xc3\x97\xc4\xbe\xc3" +"\x97\xc4\xb7\xc3\x97\xc4\xb6\xc3\x97\xc4\xb3\xc3\x97\xc4\xb2\xc3\x97\xc2\xaa\xc3" +"\x97\xc2\xa9\xc3\x97\xc2\xa8\xc3\x96\xc2\xbc\xc3\x91\xc4\xb1\xc3\x91\xc4\xae\xc3" +"\x91\xc4\xad\xc3\x91\xc4\xa5\xc3\x91\xc4\xa4\xc3\x91\xc4\xa3\xc3\x91\xc4\xa2\xc3" +"\x90\xc2\xbd\xc3\x90\xc2\xbc\xc3\x90\xc2\xbb\xc3\x90\xc2\xba\xc3\x90\xc2\xb8\xc3" +"\x90\xc2\xb5\xc3\x90\xc2\xb4\xc3\x90\xc2\xb2\xc3\x90\xc2\xb0\xc3\x8f\xc4\xab\xc3" +"\x8f\xc4\xa5\xc3\x8f\xc4\xa4\xc3\x8f\xc4\xa3\xc3\x8f\xc4\xa2\xc3\x8e\xc2\xbf\xc3" +"\x8e\xc2\xbd\xc3\x8e\xc2\xbb\xc3\x8e\xc2\xba\xc3\x8e\xc2\xb9\xc3\x8e\xc2\xb5\xc3" +"\x8e\xc2\xb3\xc3\x8c\xc2\xb6\xc3\x8b\xc4\xbe\xc3\x8b\xc4\xaa\xc3\x85\xc5\x81\xc3" +"\x85\xc4\xaf\xc3\x85\xc4\xa4\xc3\x85\xc2\xab\xc3\x85\xc2\xa1\xc3\x84\xc4\xb5\xc3" +"\x84\xc4\xaf\xc3\x84\xc4\xa9\xc3\x84\xc4\xa3\xc3\x84\xc2\xb1\xc3\x84\xc2\xab\xc3" +"\x83\xc5\x81\xc3\x83\xc2\xbb\xc3\x83\xc2\xba\xc3\x83\xc2\xb8\xc3\x83\xc2\xb4\xc3" +"\x83\xc2\xb0\xc3\x83\xc2\xae\xc3\x83\xc2\xab\xc3\x83\xc2\xaa\xc3\x83\xc2\xa6\xc3" +"\x83\xc2\xa5\xc3\x83\xc2\xa4\xc3\x83\xc2\xa2\xc3\x82\xc2\xba\xc3\x82\xc2\xb4\xc3" +"\x82\xc2\xb2\xc3\x82\xc2\xa8\xc3\x82\xc2\xa2\xc2\xb6\xc4\xa7\xc2\xb2\xc2\xbe\xc2" +"\xac\xc2\xbc\xc2\xab\xc4\xba}{}\x5c}:}.}\x22zxznyxxsxbwxvpqvqtqsmxkjjjjchzfdfbcv" +"bg`.`,_{_>_(^{]}]]]:]-]\x2b](]\x27]\x22\x5c<\x5c.\x5c-\x5c)[_ZZZXZAYYYDWsVLVBUUT" +"xPgOYNsMQJVJBGbGVFsFHDbBs\x3f]\x3f:>]>[>,>)>(={=]=[=/=\x27=$=#<\x3f;}:,:#/_/\x3f" +"/,/\x2b/$.;.:.*.(.$.#-|-[-,-(-\x27-$\x2b.\x2b(*:*,)})|)\x5c)\x3f)/)\x2b)()!\x27t" +"\x27s\x27m\x27""d\x27\x3f\x27>\x27:%]%;%:%.%-%,%\x22$,\x22;!]!:!/!.!,\xc4\xa1\xc4" +"\x9f\xc4\x9e\xc4\x9d\xc4\x9c\xc4\x9b\xc4\x9a\xc4\x99\xc4\x98\xc4\x97\xc4\x96\xc4" +"\x95\xc4\x94\xc4\x93\xc4\x92\xc4\x91\xc4\x90\xc4\x8f\xc4\x8e\xc4\x8d\xc4\x8c\xc4" +"\x8b\xc4\x89\xc4\x88\xc4\x87\xc4\x86\xc4\x85\xc4\x84\xc4\x83\xc4\x82\xc4\x81\xc4" +"\x80\xc3\xbf\xc3\xbe\xc3\xbd\xc3\xbc\xc3\xbb\xc3\xba\xc3\xb9\xc3\xb8\xc3\xb7\xc3" +"\xb6\xc3\xb5\xc3\xb4\xc3\xb3\xc3\xb2\xc3\xb1\xc3\xaa\xc3\x9f\xc3\x9e\xc3\x9d\xc3" +"\x9c\xc3\x9b\xc3\x9a\xc3\x95\xc3\x94\xc3\x93\xc3\x92\xc3\x8d\xc3\x8a\xc3\x89\xc3" +"\x88\xc3\x87\xc3\x86\xc3\x81\xc3\x80"; +constexpr std::array gptj_additional_vocab = {{ + {.id = 50256, .content={0x9a2,13}, .special=true}, + {.id = 50257, .content={0x992,16}, .special=false}, + {.id = 50258, .content={0x982,16}, .special=false}, + {.id = 50259, .content={0x972,16}, .special=false}, + {.id = 50260, .content={0x962,16}, .special=false}, + {.id = 50261, .content={0x952,16}, .special=false}, + {.id = 50262, .content={0x942,16}, .special=false}, + {.id = 50263, .content={0x932,16}, .special=false}, + {.id = 50264, .content={0x922,16}, .special=false}, + {.id = 50265, .content={0x912,16}, .special=false}, + {.id = 50266, .content={0x901,17}, .special=false}, + {.id = 50267, .content={0x8f0,17}, .special=false}, + {.id = 50268, .content={0x8df,17}, .special=false}, + {.id = 50269, .content={0x8ce,17}, .special=false}, + {.id = 50270, .content={0x8bd,17}, .special=false}, + {.id = 50271, .content={0x8ac,17}, .special=false}, + {.id = 50272, .content={0x89b,17}, .special=false}, + {.id = 50273, .content={0x88a,17}, .special=false}, + {.id = 50274, .content={0x879,17}, .special=false}, + {.id = 50275, .content={0x868,17}, .special=false}, + {.id = 50276, .content={0x857,17}, .special=false}, + {.id = 50277, .content={0x846,17}, .special=false}, + {.id = 50278, .content={0x835,17}, .special=false}, + {.id = 50279, .content={0x824,17}, .special=false}, + {.id = 50280, .content={0x813,17}, .special=false}, + {.id = 50281, .content={0x802,17}, .special=false}, + {.id = 50282, .content={0x7f1,17}, .special=false}, + {.id = 50283, .content={0x7e0,17}, .special=false}, + {.id = 50284, .content={0x7cf,17}, .special=false}, + {.id = 50285, .content={0x7be,17}, .special=false}, + {.id = 50286, .content={0x7ad,17}, .special=false}, + {.id = 50287, .content={0x79c,17}, .special=false}, + {.id = 50288, .content={0x78b,17}, .special=false}, + {.id = 50289, .content={0x77a,17}, .special=false}, + {.id = 50290, .content={0x769,17}, .special=false}, + {.id = 50291, .content={0x758,17}, .special=false}, + {.id = 50292, .content={0x747,17}, .special=false}, + {.id = 50293, .content={0x736,17}, .special=false}, + {.id = 50294, .content={0x725,17}, .special=false}, + {.id = 50295, .content={0x714,17}, .special=false}, + {.id = 50296, .content={0x703,17}, .special=false}, + {.id = 50297, .content={0x6f2,17}, .special=false}, + {.id = 50298, .content={0x6e1,17}, .special=false}, + {.id = 50299, .content={0x6d0,17}, .special=false}, + {.id = 50300, .content={0x6bf,17}, .special=false}, + {.id = 50301, .content={0x6ae,17}, .special=false}, + {.id = 50302, .content={0x69d,17}, .special=false}, + {.id = 50303, .content={0x68c,17}, .special=false}, + {.id = 50304, .content={0x67b,17}, .special=false}, + {.id = 50305, .content={0x66a,17}, .special=false}, + {.id = 50306, .content={0x659,17}, .special=false}, + {.id = 50307, .content={0x648,17}, .special=false}, + {.id = 50308, .content={0x637,17}, .special=false}, + {.id = 50309, .content={0x626,17}, .special=false}, + {.id = 50310, .content={0x615,17}, .special=false}, + {.id = 50311, .content={0x604,17}, .special=false}, + {.id = 50312, .content={0x5f3,17}, .special=false}, + {.id = 50313, .content={0x5e2,17}, .special=false}, + {.id = 50314, .content={0x5d1,17}, .special=false}, + {.id = 50315, .content={0x5c0,17}, .special=false}, + {.id = 50316, .content={0x5af,17}, .special=false}, + {.id = 50317, .content={0x59e,17}, .special=false}, + {.id = 50318, .content={0x58d,17}, .special=false}, + {.id = 50319, .content={0x57c,17}, .special=false}, + {.id = 50320, .content={0x56b,17}, .special=false}, + {.id = 50321, .content={0x55a,17}, .special=false}, + {.id = 50322, .content={0x549,17}, .special=false}, + {.id = 50323, .content={0x538,17}, .special=false}, + {.id = 50324, .content={0x527,17}, .special=false}, + {.id = 50325, .content={0x516,17}, .special=false}, + {.id = 50326, .content={0x505,17}, .special=false}, + {.id = 50327, .content={0x4f4,17}, .special=false}, + {.id = 50328, .content={0x4e3,17}, .special=false}, + {.id = 50329, .content={0x4d2,17}, .special=false}, + {.id = 50330, .content={0x4c1,17}, .special=false}, + {.id = 50331, .content={0x4b0,17}, .special=false}, + {.id = 50332, .content={0x49f,17}, .special=false}, + {.id = 50333, .content={0x48e,17}, .special=false}, + {.id = 50334, .content={0x47d,17}, .special=false}, + {.id = 50335, .content={0x46c,17}, .special=false}, + {.id = 50336, .content={0x45b,17}, .special=false}, + {.id = 50337, .content={0x44a,17}, .special=false}, + {.id = 50338, .content={0x439,17}, .special=false}, + {.id = 50339, .content={0x428,17}, .special=false}, + {.id = 50340, .content={0x417,17}, .special=false}, + {.id = 50341, .content={0x406,17}, .special=false}, + {.id = 50342, .content={0x3f5,17}, .special=false}, + {.id = 50343, .content={0x3e4,17}, .special=false}, + {.id = 50344, .content={0x3d3,17}, .special=false}, + {.id = 50345, .content={0x3c2,17}, .special=false}, + {.id = 50346, .content={0x3b1,17}, .special=false}, + {.id = 50347, .content={0x3a0,17}, .special=false}, + {.id = 50348, .content={0x38f,17}, .special=false}, + {.id = 50349, .content={0x37e,17}, .special=false}, + {.id = 50350, .content={0x36d,17}, .special=false}, + {.id = 50351, .content={0x35c,17}, .special=false}, + {.id = 50352, .content={0x34b,17}, .special=false}, + {.id = 50353, .content={0x33a,17}, .special=false}, + {.id = 50354, .content={0x329,17}, .special=false}, + {.id = 50355, .content={0x318,17}, .special=false}, + {.id = 50356, .content={0x306,18}, .special=false}, + {.id = 50357, .content={0x2f4,18}, .special=false}, + {.id = 50358, .content={0x2e2,18}, .special=false}, + {.id = 50359, .content={0x2d0,18}, .special=false}, + {.id = 50360, .content={0x2be,18}, .special=false}, + {.id = 50361, .content={0x2ac,18}, .special=false}, + {.id = 50362, .content={0x29a,18}, .special=false}, + {.id = 50363, .content={0x288,18}, .special=false}, + {.id = 50364, .content={0x276,18}, .special=false}, + {.id = 50365, .content={0x264,18}, .special=false}, + {.id = 50366, .content={0x252,18}, .special=false}, + {.id = 50367, .content={0x240,18}, .special=false}, + {.id = 50368, .content={0x22e,18}, .special=false}, + {.id = 50369, .content={0x21c,18}, .special=false}, + {.id = 50370, .content={0x20a,18}, .special=false}, + {.id = 50371, .content={0x1f8,18}, .special=false}, + {.id = 50372, .content={0x1e6,18}, .special=false}, + {.id = 50373, .content={0x1d4,18}, .special=false}, + {.id = 50374, .content={0x1c2,18}, .special=false}, + {.id = 50375, .content={0x1b0,18}, .special=false}, + {.id = 50376, .content={0x19e,18}, .special=false}, + {.id = 50377, .content={0x18c,18}, .special=false}, + {.id = 50378, .content={0x17a,18}, .special=false}, + {.id = 50379, .content={0x168,18}, .special=false}, + {.id = 50380, .content={0x156,18}, .special=false}, + {.id = 50381, .content={0x144,18}, .special=false}, + {.id = 50382, .content={0x132,18}, .special=false}, + {.id = 50383, .content={0x120,18}, .special=false}, + {.id = 50384, .content={0x10e,18}, .special=false}, + {.id = 50385, .content={0xfc,18}, .special=false}, + {.id = 50386, .content={0xea,18}, .special=false}, + {.id = 50387, .content={0xd8,18}, .special=false}, + {.id = 50388, .content={0xc6,18}, .special=false}, + {.id = 50389, .content={0xb4,18}, .special=false}, + {.id = 50390, .content={0xa2,18}, .special=false}, + {.id = 50391, .content={0x90,18}, .special=false}, + {.id = 50392, .content={0x7e,18}, .special=false}, + {.id = 50393, .content={0x6c,18}, .special=false}, + {.id = 50394, .content={0x5a,18}, .special=false}, + {.id = 50395, .content={0x48,18}, .special=false}, + {.id = 50396, .content={0x36,18}, .special=false}, + {.id = 50397, .content={0x24,18}, .special=false}, + {.id = 50398, .content={0x12,18}, .special=false}, + {.id = 50399, .content={0x0,18}, .special=false} +}}; + +constexpr std::array, 50000> gptj_merges = {{ + {{0xaaf,2},{0x4,1}}, {{0xaaf,2},{0x6,1}}, {{0xe32,1},{0x2,1}}, {{0xcd3,1},{0xb,1}}, + {{0x5,1},{0x2,1}}, {{0x8,1},{0xb,1}}, {{0xe5b,3},{0xfa5,2}}, {{0x2,1},{0x5,1}}, + {{0xaaf,2},{0xe11,1}}, {{0x6,1},{0x4,1}}, {{0xaaf,2},{0xcb8,1}}, {{0xaaf,2},{0x8,1}}, + {{0x2,1},{0xb,1}}, {{0xaaf,2},{0xcc1,1}}, {{0xcd3,1},{0x4,1}}, {{0xcd3,1},{0xe11,1}}, + {{0x6,1},{0xb,1}}, {{0x8,1},{0x5,1}}, {{0x2,1},{0xe11,1}}, {{0xaaf,2},{0xcc8,1}}, + {{0x2,1},{0x9a6,1}}, {{0xaaf,2},{0x9a8,1}}, {{0xcd3,2},{0xe71,1}}, {{0xaaf,2},{0xccd,1}}, + {{0x8,1},{0xe09,1}}, {{0x127f,3},{0xb,1}}, {{0x6,1},{0xcbd,1}}, {{0x6,1},{0x5,1}}, + {{0xe5b,3},{0x8,1}}, {{0xaaf,2},{0xcc7,1}}, {{0x1567,3},{0x9a8,1}}, {{0xaaf,2},{0xcd3,2}}, + {{0xaaf,2},{0x9a6,1}}, {{0xaaf,2},{0xe32,1}}, {{0x127f,4},{0x9a6,1}}, {{0xcd3,1},{0xcc1,1}}, + {{0x6,1},{0xe11,1}}, {{0xcbd,1},{0x2,1}}, {{0xe5b,3},{0xe32,1}}, {{0xcd3,1},{0xcc3,2}}, + {{0x8,1},{0xcc7,1}}, {{0xcbd,1},{0xcbd,1}}, {{0xa,2},{0x4,1}}, {{0xaaf,2},{0xb,1}}, + {{0xaaf,2},{0xcbd,1}}, {{0xe11,1},{0x4,1}}, {{0xaaf,2},{0xccb,2}}, {{0xe78,1},{0x2,1}}, + {{0xaaf,2},{0x2,1}}, {{0x5,1},{0x8,1}}, {{0xcbd,1},{0xe0a,1}}, {{0x27e0,3},{0x2,1}}, + {{0xaaf,2},{0xe71,1}}, {{0xaaf,2},{0xe99,1}}, {{0xcc1,1},{0x4,1}}, {{0xaaf,2},{0xf0c,1}}, + {{0xcd3,1},{0x9a6,1}}, {{0x8,1},{0x4,1}}, {{0xaaf,2},{0xe0f,1}}, {{0xe09,1},{0x4,1}}, + {{0x2,1},{0x4,1}}, {{0xaaf,2},{0xe16,1}}, {{0xaaf,2},{0xe86,2}}, {{0xaaf,2},{0xcc3,2}}, + {{0xcd3,1},{0xcc7,1}}, {{0x6,1},{0xcc7,1}}, {{0x8,1},{0xcb8,1}}, {{0x6,1},{0xe0a,1}}, + {{0x6,1},{0x9a6,1}}, {{0xe11,1},{0x2,1}}, {{0x1bbf,4},{0x6,2}}, {{0xaaf,2},{0xf4f,1}}, + {{0xcd3,1},{0xe71,1}}, {{0x16a7,3},{0xcce,2}}, {{0x6,1},{0xcc1,1}}, {{0xaaf,2},{0xe0a,1}}, + {{0xe78,1},{0xed6,2}}, {{0xe09,1},{0x5,1}}, {{0xaaf,2},{0xe09,1}}, {{0xcbd,1},{0x9a6,1}}, + {{0x10a3,3},{0x4,1}}, {{0xaaf,2},{0xf15,1}}, {{0x307bb,1},{0xe11,1}}, {{0xaaf,2},{0xfa5,2}}, + {{0xaaf,2},{0xe2b,2}}, {{0x6,2},{0xe6b,3}}, {{0xe2b,2},{0xe32,1}}, {{0xcd3,1},{0x5,1}}, + {{0xcc1,1},{0x2,1}}, {{0x7911,3},{0xefa,2}}, {{0xcd3,1},{0xcbd,1}}, {{0xaaf,2},{0xe08,1}}, + {{0x1367,3},{0xe32,1}}, {{0x8,1},{0xcbd,1}}, {{0xaaf,2},{0x1969,1}}, {{0x1367,3},{0xe30,3}}, + {{0xaaf,2},{0xd,1}}, {{0x4,1},{0xed6,2}}, {{0xcc1,1},{0xe32,1}}, {{0x127f,3},{0xe11,1}}, + {{0x1367,3},{0x2,1}}, {{0xaaf,2},{0x2e273,1}}, {{0xb,1},{0x9a6,1}}, {{0xcd3,1},{0xfe0,2}}, + {{0xaaf,2},{0x19b9,1}}, {{0xcd3,1},{0x9a8,1}}, {{0xaaf,2},{0x21,1}}, {{0x6,1},{0xe71,1}}, + {{0xed6,2},{0xe11,1}}, {{0x9,1},{0x2,1}}, {{0xaaf,2},{0x205a1,1}}, {{0xaaf,2},{0x4767,1}}, + {{0x2,1},{0xcc7,1}}, {{0xef7,3},{0xcc3,2}}, {{0xaaf,2},{0xe2f,1}}, {{0xaaf,2},{0xe21,1}}, + {{0xfa5,2},{0x5,1}}, {{0x1367,3},{0xfb0,2}}, {{0xaaf,2},{0x5,1}}, {{0x8,1},{0x9a6,1}}, + {{0xaaf,2},{0x1a66,1}}, {{0xe09,1},{0xcbd,1}}, {{0x6,2},{0x2,1}}, {{0x127f,3},{0x4,1}}, + {{0x5,1},{0xcd3,1}}, {{0xccd,1},{0xccd,1}}, {{0x8,1},{0xccb,2}}, {{0xe97,3},{0xfa5,2}}, + {{0x10a3,3},{0x2,1}}, {{0xe09,1},{0xe11,1}}, {{0x111a,3},{0xe89,2}}, {{0x1677,3},{0x6,1}}, + {{0xe09,1},{0xcc7,1}}, {{0x127f,3},{0xccb,2}}, {{0xe83,3},{0x2,1}}, {{0x6,1},{0xcd3,2}}, + {{0xe22,2},{0x9a6,1}}, {{0x1567,3},{0x5,1}}, {{0x10cb,2},{0xe32,1}}, {{0xf7a,2},{0x4,1}}, + {{0xe86,2},{0x4,1}}, {{0x6,1},{0xcc8,1}}, {{0x5,1},{0xe25,2}}, {{0xaaf,2},{0xe33,1}}, + {{0x4,1},{0xe32,1}}, {{0xef7,3},{0xe25,2}}, {{0xaaf,2},{0xf11,1}}, {{0xe09,1},{0xb,1}}, + {{0x8,1},{0xccd,1}}, {{0x45,1},{0x45,1}}, {{0xaaf,2},{0x2ba5,1}}, {{0x113c,3},{0x113f,2}}, + {{0xf7a,2},{0xe11,1}}, {{0xed1,3},{0x3,1}}, {{0xaaf,2},{0xe78,1}}, {{0xccb,2},{0xe11,1}}, + {{0xaaf,2},{0xedd,1}}, {{0x2,1},{0xcb8,1}}, {{0xe2b,2},{0xe0a,1}}, {{0xe22,2},{0x4,1}}, + {{0x27e0,3},{0xe0a,1}}, {{0x2,1},{0xcbd,1}}, {{0x8,1},{0xe11,1}}, {{0xcce,2},{0x4,1}}, + {{0x8,1},{0xcc1,1}}, {{0xf1d,1},{0xe09,1}}, {{0x16a7,3},{0x120f,3}}, {{0x1677,4},{0xe78,2}}, + {{0x10a3,3},{0xe09,1}}, {{0xcd3,1},{0xe78,2}}, {{0xefa,2},{0xf13,2}}, {{0x10a3,3},{0xe32,1}}, + {{0x1bbf,4},{0xe86,2}}, {{0xb,1},{0x4,1}}, {{0x5,1},{0x6,1}}, {{0xccd,1},{0x2,1}}, + {{0x10cb,3},{0x4,1}}, {{0xf1a,2},{0x4,1}}, {{0xcc7,1},{0xeee,3}}, {{0x127f,3},{0xcbd,1}}, + {{0xe09,1},{0xe11,2}}, {{0xa,2},{0x9a6,1}}, {{0xaf4,1},{0xaf4,1}}, {{0xed9,2},{0xcbd,1}}, + {{0xaaf,2},{0xe19,1}}, {{0x101f,2},{0x9,1}}, {{0xef7,3},{0xe32,1}}, {{0xaaf,2},{0xe0d,2}}, + {{0xcd3,1},{0xf7a,2}}, {{0xccb,2},{0x9a6,1}}, {{0xf1a,2},{0x9a6,1}}, {{0xbb4,2},{0xbb6,2}}, + {{0xefa,2},{0x4,1}}, {{0xaaf,2},{0x46bf,1}}, {{0x127f,3},{0xcc8,1}}, {{0x2,1},{0xf1a,2}}, + {{0xcd3,1},{0xe78,1}}, {{0xed9,2},{0xe95,2}}, {{0xefa,2},{0x5,1}}, {{0x8,1},{0xe11,2}}, + {{0xe71,1},{0xe32,1}}, {{0xccd,1},{0x4,1}}, {{0x111a,3},{0xcbd,1}}, {{0xfb0,2},{0x4,1}}, + {{0xef7,3},{0xe22,2}}, {{0x6,1},{0x9,1}}, {{0xe25,2},{0x2,1}}, {{0xe09,1},{0x9a6,1}}, + {{0xe99,1},{0xfa5,2}}, {{0x1677,3},{0xe86,2}}, {{0xe83,3},{0x8,1}}, {{0xe6f,3},{0x8,1}}, + {{0x1677,3},{0xfb0,2}}, {{0xe71,1},{0x2,1}}, {{0x307bb,1},{0x4,1}}, {{0xaaf,2},{0xe7a,1}}, + {{0x5,1},{0xefa,2}}, {{0x10a3,3},{0x6,1}}, {{0xaaf,2},{0x1f38,1}}, {{0x27e0,3},{0xf70,2}}, + {{0x1367,3},{0xcce,2}}, {{0x127f,3},{0xfe0,2}}, {{0x2,1},{0xe75,2}}, {{0xaaf,2},{0x9,1}}, + {{0x1153,2},{0x2,1}}, {{0x1367,3},{0x1303,3}}, {{0x8,1},{0x9,1}}, {{0x1367,3},{0xfa5,2}}, + {{0x1bbf,5},{0xe0a,1}}, {{0xf0f,2},{0x2,1}}, {{0x45,1},{0xd,1}}, {{0x9a8,1},{0x9a8,1}}, + {{0xe67,2},{0xe32,1}}, {{0xccd,1},{0xcbd,1}}, {{0x4,1},{0x1e8b,3}}, {{0xe5b,3},{0x5,1}}, + {{0xb74,1},{0xb74,1}}, {{0xebe,4},{0x4,1}}, {{0xcd3,1},{0x2,1}}, {{0xe09,1},{0xccb,2}}, + {{0xf16,2},{0x2,1}}, {{0x113c,3},{0x2,1}}, {{0xcd3,1},{0xed9,2}}, {{0x6,1},{0xccd,1}}, + {{0xcd3,2},{0x2,1}}, {{0xe67,2},{0x2,1}}, {{0xf89,3},{0x2,1}}, {{0x1567,3},{0xf70,2}}, + {{0xe22,2},{0xe11,1}}, {{0xcc3,2},{0x2,1}}, {{0xcc3,2},{0xe71,1}}, {{0xe6b,3},{0xe11,1}}, + {{0x1367,4},{0x8,1}}, {{0xaaf,2},{0x7416,1}}, {{0xf65,3},{0xccd,1}}, {{0x1bbf,5},{0xee9,2}}, + {{0x127f,3},{0x9a6,1}}, {{0xaaf,2},{0xf,1}}, {{0xf65,3},{0xe11,1}}, {{0x6,2},{0xcc9,2}}, + {{0xefa,2},{0xe11,1}}, {{0xf89,3},{0xe13,3}}, {{0xe09,1},{0x2,1}}, {{0x8,1},{0xe71,1}}, + {{0xf0a,3},{0x4,1}}, {{0xcd3,2},{0x9a6,1}}, {{0xcd3,1},{0x9,2}}, {{0x10a3,3},{0x8,1}}, + {{0x11b5,2},{0x2,1}}, {{0xccd,1},{0xed6,2}}, {{0xb74,1},{0x205a1,1}}, {{0xcc8,1},{0xed6,2}}, + {{0xcd3,1},{0x1025,1}}, {{0x6,1},{0xe75,2}}, {{0xde8e,4},{0x2,1}}, {{0x2f9b,4},{0xf0f,2}}, + {{0xaaf,2},{0xaf4,1}}, {{0x6,1},{0xccb,2}}, {{0x7911,5},{0x5,1}}, {{0xcc1,1},{0xcc1,1}}, + {{0xe97,3},{0xe32,1}}, {{0xef7,3},{0xcbd,1}}, {{0x2,1},{0xccd,1}}, {{0x6,1},{0x9,2}}, + {{0xe0b,2},{0xe0d,2}}, {{0xcd3,1},{0xccd,1}}, {{0x1007,5},{0x4,1}}, {{0x1367,4},{0x8428,3}}, + {{0xcd3,1},{0x6,1}}, {{0xaaf,2},{0x11b5,2}}, {{0x2939,4},{0x2f2e,3}}, {{0x79c5,4},{0xccb,2}}, + {{0x156a,3},{0xe0a,1}}, {{0xe09,1},{0xcc8,1}}, {{0x1677,3},{0xcbf,2}}, {{0xaaf,2},{0xa,2}}, + {{0x125d,5},{0xccd,1}}, {{0x20599,1},{0x205a1,1}}, {{0x1977,3},{0xb,1}}, {{0xf65,3},{0xb,1}}, + {{0x127f,3},{0xe71,1}}, {{0xcd3,1},{0xccb,2}}, {{0x101f,2},{0x2,1}}, {{0x6,1},{0xe09,1}}, + {{0xf1a,2},{0xe0a,1}}, {{0x1367,3},{0xce96,4}}, {{0xfb0,2},{0xe11,1}}, {{0x5,1},{0xe0a,1}}, + {{0xaaf,2},{0xbb4,4}}, {{0xcc1,1},{0xcbd,1}}, {{0x8,1},{0x8,2}}, {{0x2,1},{0xccb,2}}, + {{0xe11,1},{0x8,1}}, {{0xaaf,2},{0xede,1}}, {{0x10cb,2},{0xb,1}}, {{0xcd3,1},{0xcc8,1}}, + {{0x5722,4},{0x9a8,1}}, {{0xe5b,3},{0x2,1}}, {{0xe78,1},{0xa,2}}, {{0xaaf,2},{0x442d,1}}, + {{0xcd3,1},{0xe0d,2}}, {{0x8,1},{0xe80,2}}, {{0xe2b,2},{0x2,1}}, {{0xcce,2},{0xcc7,1}}, + {{0x2de7b,3},{0x302,2}}, {{0xf77,4},{0xe11,1}}, {{0xf89,3},{0xe22,2}}, {{0x111a,3},{0xed6,2}}, + {{0x1567,3},{0x413e,4}}, {{0xcce,2},{0x9a6,1}}, {{0x1062,2},{0x4,1}}, {{0x27ef,4},{0xa,2}}, + {{0x1ff7,3},{0x810e,3}}, {{0xfb0,2},{0x2,1}}, {{0xe22,2},{0x138e,2}}, {{0x9,1},{0xe11,1}}, + {{0x5538,2},{0xe11,1}}, {{0xcba,2},{0xb,1}}, {{0xa,2},{0x138e,2}}, {{0xe83,3},{0xe86,2}}, + {{0xe75,2},{0xe6b,3}}, {{0x127f,4},{0xe0a,1}}, {{0x127f,3},{0x10b8,2}}, {{0x10a3,3},{0xccd,1}}, + {{0xcd3,2},{0x4,1}}, {{0xf79,3},{0xe11,1}}, {{0xe69,5},{0xe11,1}}, {{0x6,1},{0xeb5,2}}, + {{0xaaf,2},{0xe,1}}, {{0xe67,2},{0xed9,2}}, {{0x1bbf,5},{0xcc7,1}}, {{0x2240,4},{0x5,1}}, + {{0xefa,2},{0xcd4,2}}, {{0x12e5,3},{0xe32,1}}, {{0x127f,3},{0x5,1}}, {{0xaaf,2},{0x122d,2}}, + {{0x1bbf,5},{0xccb,2}}, {{0x111a,3},{0x2,1}}, {{0x7911,3},{0x2252,3}}, {{0x6,1},{0xe78,1}}, + {{0xf89,3},{0xe0a,1}}, {{0x10a3,3},{0x296f,3}}, {{0x491e,5},{0xb,1}}, {{0xefa,2},{0x10cc,2}}, + {{0x101f,2},{0xe32,1}}, {{0x1bbf,4},{0xe22,2}}, {{0x5,1},{0xe09,1}}, {{0xcc3,2},{0x9a6,1}}, + {{0xe67,2},{0x9,1}}, {{0x1567,3},{0x156a,3}}, {{0xe78,2},{0xcbd,1}}, {{0xaaf,2},{0xf1d,2}}, + {{0x30ec7,2},{0x30ec7,2}}, {{0x10a3,3},{0xcc1,1}}, {{0xccb,2},{0x6,2}}, {{0xccb,2},{0x2,1}}, + {{0x1977,3},{0x4,1}}, {{0xefa,2},{0x9a5,2}}, {{0xccd,1},{0xcce,3}}, {{0x28d0,4},{0x1489,2}}, + {{0x111a,3},{0x1ebf,3}}, {{0x9a8,1},{0xed5,3}}, {{0x2006,3},{0xb,1}}, {{0x27ef,4},{0xcc1,1}}, + {{0xe5b,3},{0x11dc,3}}, {{0xa,2},{0xe11,1}}, {{0xaaf,2},{0x9f,1}}, {{0xe8a,2},{0xe0d,2}}, + {{0x1367,4},{0x6,2}}, {{0x113c,3},{0x8,1}}, {{0x9a6,1},{0xe09,1}}, {{0xcc7,1},{0xed6,2}}, + {{0xe22,2},{0xe71,1}}, {{0x113c,3},{0x3642,2}}, {{0xaf4,2},{0xaf4,2}}, {{0xe6f,3},{0x1150,2}}, + {{0xcce,2},{0xe0a,1}}, {{0xe2b,2},{0xe6b,3}}, {{0xec6,3},{0xe11,1}}, {{0x2015,3},{0x142a,3}}, + {{0x115e,5},{0x8,1}}, {{0xaaf,2},{0x45,1}}, {{0xeee,3},{0xe11,1}}, {{0x8,1},{0xe78,2}}, + {{0x4,1},{0x2,1}}, {{0x1e9e,4},{0x19e3,4}}, {{0x111a,3},{0xccb,2}}, {{0x959d,4},{0xe11,1}}, + {{0xf77,4},{0xcc1,1}}, {{0xe5b,3},{0xcb8,1}}, {{0xcd3,1},{0xe22,2}}, {{0xee9,2},{0xe11,2}}, + {{0xf1a,2},{0x9,1}}, {{0xcce,2},{0xe11,1}}, {{0x7935,5},{0x9,1}}, {{0xcbf,2},{0x2,1}}, + {{0x8,1},{0xcc8,1}}, {{0x10a3,3},{0xfa5,2}}, {{0x1567,3},{0xfcb,2}}, {{0xcb8,1},{0xb,1}}, + {{0xcd3,2},{0x9,1}}, {{0xcbd,1},{0xe67,2}}, {{0x2afb6,3},{0x57,1}}, {{0x4765,3},{0x2,1}}, + {{0xe86,2},{0xe32,1}}, {{0x9a5,2},{0xed6,2}}, {{0x1839,2},{0xe80,2}}, {{0x1677,3},{0x11b5,2}}, + {{0xcc3,2},{0xe11,1}}, {{0xaaf,2},{0x28b33,1}}, {{0xaaf,2},{0xe89,2}}, {{0x9a8,1},{0x1089,3}}, + {{0xcd3,1},{0xf13,2}}, {{0x6,2},{0xf7a,2}}, {{0x156a,3},{0xe11,1}}, {{0xde8e,4},{0xe95,2}}, + {{0x8,1},{0xfe0,2}}, {{0x10a3,3},{0xf32,2}}, {{0xcc1,1},{0x9,1}}, {{0x2,1},{0xfe0,2}}, + {{0x1153,2},{0xccd,1}}, {{0x127f,3},{0x12b5,2}}, {{0x27e0,3},{0xcbd,1}}, {{0xcd3,1},{0x14a2,3}}, + {{0xfcb,2},{0xb,1}}, {{0x9a8,1},{0x4,1}}, {{0x8,1},{0xf02,2}}, {{0x1677,3},{0xcba,2}}, + {{0xfa5,2},{0x9a6,1}}, {{0xaaf,2},{0x307bb,1}}, {{0x127f,3},{0x78d1,4}}, {{0x6,1},{0xcb8,1}}, + {{0x1847,4},{0x4,1}}, {{0x8,1},{0xe78,1}}, {{0xb,1},{0x2,1}}, {{0x5534,4},{0x5538,2}}, + {{0xed6,2},{0xe78,1}}, {{0xe67,2},{0x4,1}}, {{0xef7,3},{0xce96,4}}, {{0xe2b,2},{0x4,1}}, + {{0x127f,3},{0xcc7,1}}, {{0x16a7,3},{0xb19c,4}}, {{0xaaf,2},{0x8d,1}}, {{0x127f,3},{0xe75,2}}, + {{0xaaf,2},{0x2e292,1}}, {{0x2,1},{0xcc1,1}}, {{0xe32,1},{0xec6,3}}, {{0xe09,1},{0xed9,2}}, + {{0xe09,1},{0xfe0,2}}, {{0x125d,5},{0xcc7,1}}, {{0x8,1},{0xe0a,1}}, {{0x8,1},{0xf13,2}}, + {{0xcc1,1},{0xf7a,2}}, {{0x6,2},{0xed6,2}}, {{0x16a7,3},{0x2,1}}, {{0x27ef,4},{0x4,1}}, + {{0xcb8,1},{0x2,1}}, {{0x122d,2},{0x9a8,1}}, {{0xc6f7,4},{0x8,1}}, {{0xe7d,2},{0x9,1}}, + {{0x27e0,3},{0x12a3,3}}, {{0x2e27d,1},{0xb74,1}}, {{0xf0f,2},{0xeee,3}}, {{0xf65,3},{0xf8f,4}}, + {{0x168a,3},{0x10cc,2}}, {{0xe80,2},{0xcbd,1}}, {{0x3,1},{0x4,1}}, {{0xf89,3},{0x5538,2}}, + {{0x168a,3},{0x9a5,2}}, {{0x111a,3},{0x8,1}}, {{0xccd,1},{0xe32,1}}, {{0xe86,2},{0xe11,1}}, + {{0xe83,3},{0xf7a,2}}, {{0xf89,3},{0x2d8d,3}}, {{0xe83,3},{0xf0f,2}}, {{0x1290,4},{0x9a6,1}}, + {{0x1f38,1},{0x120c,3}}, {{0xebe,4},{0xcc1,1}}, {{0x9a8,1},{0xe13,3}}, {{0x111a,3},{0xf0d,2}}, + {{0xcc3,2},{0x4,1}}, {{0x433d,4},{0x142d,3}}, {{0xcc1,2},{0x3537,2}}, {{0xed5,3},{0xb,1}}, + {{0x2006,4},{0xcba,2}}, {{0x1587,4},{0xcc9,2}}, {{0x1007,5},{0xe11,1}}, {{0xef7,3},{0x8,1}}, + {{0xaaf,2},{0xb74,1}}, {{0x1367,3},{0x1059,3}}, {{0x1c91,4},{0x2,1}}, {{0xaaf,2},{0x7b,1}}, + {{0xb,1},{0xec6,3}}, {{0xcd3,1},{0x3642,2}}, {{0x2966,4},{0xe86,2}}, {{0xcc1,1},{0xcc9,2}}, + {{0xed1,3},{0x1050,3}}, {{0xebe,4},{0x9a6,1}}, {{0x4,1},{0xe0a,1}}, {{0x70ad,3},{0x2,1}}, + {{0x6,2},{0xe32,1}}, {{0x1bbf,5},{0xe80,2}}, {{0x111a,3},{0x5,1}}, {{0xf65,3},{0xe80,2}}, + {{0x1694e,5},{0x16c4c,4}}, {{0x16a7,3},{0xcbd,1}}, {{0xb,1},{0xe71,1}}, {{0x113c,3},{0xcba,2}}, + {{0x2b500,6},{0x2b0e8,2}}, {{0xcc1,1},{0xe25,2}}, {{0xe86,2},{0x2,1}}, {{0xf89,3},{0x2ee9,3}}, + {{0x1bbf,5},{0xb,1}}, {{0xcba,2},{0xed6,2}}, {{0xed1,3},{0x2b79,4}}, {{0x2948,3},{0xb,1}}, + {{0x1c91,4},{0xcc1,1}}, {{0x1cd3,2},{0xe11,1}}, {{0xe09,1},{0xeab,2}}, {{0xed1,3},{0xcc7,1}}, + {{0xaaf,2},{0xab1,1}}, {{0xe1f,3},{0x2,1}}, {{0xcd3,1},{0xcc9,2}}, {{0x5,1},{0xe2b,2}}, + {{0xebe,4},{0xe78,1}}, {{0xe0d,2},{0xe75,2}}, {{0x10b4,4},{0x10b8,2}}, {{0x6,2},{0xec6,3}}, + {{0x1ff7,3},{0x569a,3}}, {{0xcc7,1},{0xe22,2}}, {{0xf32,2},{0xe75,2}}, {{0xaaf,2},{0x69,1}}, + {{0xe89,2},{0xcb8,1}}, {{0x27e0,3},{0xe09,1}}, {{0x491e,5},{0xccb,2}}, {{0x122d,2},{0xe67,2}}, + {{0x205e9,6},{0xe11,1}}, {{0xcd3,1},{0xe95,2}}, {{0xe83,3},{0x122d,3}}, {{0x2f71,4},{0xce96,4}}, + {{0xf77,4},{0xcc7,1}}, {{0xe99,1},{0xe32,1}}, {{0xe0f,1},{0xb,1}}, {{0xed1,3},{0xe78,1}}, + {{0x9a6,1},{0x5538,2}}, {{0x307bb,1},{0xccb,2}}, {{0xcd2,2},{0xcc8,1}}, {{0xf77,4},{0xcbd,1}}, + {{0xe11,1},{0xe11,1}}, {{0x1747,4},{0x9a8,1}}, {{0xf77,3},{0x10cb,4}}, {{0x10a3,3},{0xe0a,1}}, + {{0x2e27d,1},{0x20599,1}}, {{0xcbd,1},{0xf7a,2}}, {{0x314,2},{0x45,1}}, {{0xfa5,2},{0xb,1}}, + {{0x1bbf,4},{0x41e8,5}}, {{0xe97,3},{0x5,1}}, {{0xc,1},{0xc,1}}, {{0x1367,3},{0x5538,2}}, + {{0xe83,3},{0xcc3,2}}, {{0xaaf,2},{0x20599,1}}, {{0x2afb6,3},{0x45,1}}, {{0xfb0,2},{0xcc9,2}}, + {{0x2858,4},{0xe11,1}}, {{0x1bef,2},{0x15af,3}}, {{0xf77,4},{0xe71,1}}, {{0x1a07,3},{0x9a5,2}}, + {{0xcd3,1},{0x3,1}}, {{0xaaf,2},{0x2b79,4}}, {{0xebe,4},{0xa9a6,4}}, {{0x113f,2},{0x1e8b,3}}, + {{0x11b3,4},{0xccd,1}}, {{0x113f,2},{0xe32,1}}, {{0x10b4,4},{0xcc8,1}}, {{0x2b500,6},{0xbb8,2}}, + {{0x27ef,4},{0xec6,3}}, {{0xf1a,2},{0xe71,1}}, {{0x70ad,3},{0xe32,1}}, {{0xab1,1},{0xab1,1}}, + {{0xf80,2},{0xe0d,2}}, {{0x2399,4},{0xf7a,2}}, {{0xe22,2},{0xf63,2}}, {{0x5,1},{0x1153,2}}, + {{0xaaf,2},{0x57,1}}, {{0xed6,2},{0x4,1}}, {{0xccd,1},{0xe11,1}}, {{0xe2b,2},{0xcc9,2}}, + {{0xe69,5},{0xed9,2}}, {{0x27e0,3},{0x5,1}}, {{0xe83,3},{0xcba,3}}, {{0x15e7,5},{0xe0a,1}}, + {{0x1692,2},{0xec6,3}}, {{0xef7,3},{0xfdf,3}}, {{0xfcb,2},{0xec6,3}}, {{0xe2b,2},{0xf86,3}}, + {{0x111a,3},{0xe32,1}}, {{0xe67,2},{0xe11,1}}, {{0xed9,2},{0xe11,1}}, {{0x1747,4},{0xcc1,1}}, + {{0x6,2},{0xe77,3}}, {{0xa,2},{0xed6,2}}, {{0x27ef,4},{0x188a,4}}, {{0xeb5,2},{0xebb,3}}, + {{0x79c5,4},{0xfe0,2}}, {{0xf89,3},{0x4bfa,3}}, {{0xf91,3},{0xcc3,2}}, {{0x1bbf,4},{0x2236,3}}, + {{0x10b4,4},{0xeab,2}}, {{0xaaf,2},{0x9,2}}, {{0xaaf,2},{0x9a4,3}}, {{0x4853,3},{0xf70,2}}, + {{0xfb0,2},{0xcc3,2}}, {{0x4,1},{0xec6,3}}, {{0x1ff7,3},{0x123e,3}}, {{0x2,1},{0x9a8,1}}, + {{0x1bbf,4},{0x49a6,3}}, {{0xe0a,1},{0xe11,1}}, {{0x27ef,4},{0xcbd,1}}, {{0x10a3,3},{0xcc7,1}}, + {{0xe2b,2},{0xe11,1}}, {{0x6,1},{0x3,1}}, {{0x1567,3},{0xcbb,2}}, {{0x112b,5},{0xe78,1}}, + {{0x10a3,3},{0x1150,2}}, {{0x122d,2},{0x2,1}}, {{0xeed,4},{0xe11,1}}, {{0xcc8,1},{0xe0d,2}}, + {{0xcb8,1},{0x10d3,3}}, {{0x2f71,4},{0xcba,2}}, {{0x111a,3},{0xf79,3}}, {{0xcc7,1},{0xe11,1}}, + {{0xe25,2},{0x1150,2}}, {{0x1567,3},{0xcc8,1}}, {{0x10a3,3},{0x5538,2}}, {{0xf0a,3},{0xe32,1}}, + {{0x4,1},{0xe11,1}}, {{0x9a8,1},{0x1062,2}}, {{0xed1,3},{0x122e,2}}, {{0xe6f,3},{0xe09,1}}, + {{0xebe,4},{0xe11,2}}, {{0xe09,1},{0x9a5,2}}, {{0xccb,2},{0xb,1}}, {{0xcc1,1},{0x1131,3}}, + {{0xaaf,2},{0xeee,3}}, {{0x442b,3},{0xefa,2}}, {{0x39b9,4},{0xf02,2}}, {{0x10c5,4},{0x1ebf,3}}, + {{0xcd3,2},{0x138e,2}}, {{0xf89,3},{0x1a71,3}}, {{0x4,1},{0x4,1}}, {{0xe11,2},{0xcc6,2}}, + {{0xf0d,2},{0x109b,2}}, {{0xe09,1},{0xccd,1}}, {{0xaaf,2},{0x1,1}}, {{0xf59,2},{0xccd,1}}, + {{0x2240,4},{0xcbd,1}}, {{0x156a,3},{0xb,1}}, {{0x1062,2},{0xf1a,2}}, {{0xe09,1},{0xfdf,4}}, + {{0x127f,3},{0xcc1,1}}, {{0xf89,3},{0xcc3,2}}, {{0x1ff7,3},{0xfb0,3}}, {{0x2de7b,3},{0x314,2}}, + {{0xd,1},{0x45,1}}, {{0x10c5,4},{0x3537,2}}, {{0xe09,1},{0xf79,3}}, {{0x1a07,3},{0x5,1}}, + {{0x4f79,3},{0x9a8,1}}, {{0xf1a,2},{0xe11,1}}, {{0x2b89,3},{0xe67,2}}, {{0xe09,1},{0xf7a,2}}, + {{0xcc1,1},{0xe0a,1}}, {{0xf89,3},{0xcd3,2}}, {{0x180a,3},{0xcba,2}}, {{0xef7,3},{0xf0d,2}}, + {{0xcd3,1},{0x8,1}}, {{0xf89,3},{0xf02,2}}, {{0xef7,3},{0xefa,4}}, {{0x12e5,3},{0xe25,2}}, + {{0xfa5,2},{0xe11,1}}, {{0x16a7,3},{0xcd3,2}}, {{0x6,1},{0xee9,2}}, {{0xcd3,1},{0xed6,2}}, + {{0xbb4,4},{0xbb8,2}}, {{0xccb,2},{0xcbf,2}}, {{0xe22,2},{0x9,1}}, {{0x6,2},{0xeab,2}}, + {{0x2,1},{0x156a,3}}, {{0x10c5,4},{0x5,1}}, {{0x1e62,4},{0xcd3,3}}, {{0xcce,2},{0x9,1}}, + {{0x12d4,3},{0x3642,2}}, {{0x10a3,3},{0xfcb,2}}, {{0x8,1},{0xf0d,2}}, {{0xed9,2},{0x9,1}}, + {{0xcc6,2},{0xeee,3}}, {{0x7b45,4},{0xcc9,2}}, {{0x5,2},{0xe75,2}}, {{0x1373,2},{0xa,2}}, + {{0x10a3,3},{0x16ad,3}}, {{0xefa,2},{0xb,1}}, {{0x1a07,3},{0xcbd,1}}, {{0xcc1,1},{0xcd3,1}}, + {{0x122a,6},{0x1230,3}}, {{0x1367,4},{0x5342,3}}, {{0xaf4,4},{0xaf4,4}}, {{0xe6f,3},{0x16ad,3}}, + {{0x138e,2},{0xfe8,2}}, {{0x10a3,3},{0x11b5,2}}, {{0xb74,2},{0xb74,1}}, {{0xebe,4},{0xed5,3}}, + {{0x2,1},{0x9,1}}, {{0xf77,4},{0xccd,4}}, {{0x112b,5},{0xf03,2}}, {{0x10c5,4},{0x1303,3}}, + {{0xcbd,1},{0xcc9,2}}, {{0x6,1},{0xe32,1}}, {{0x2240,4},{0xccb,2}}, {{0x7935,5},{0xf13,2}}, + {{0x1bbf,4},{0x41e9,4}}, {{0x113c,3},{0xf59,2}}, {{0xf1a,2},{0xeab,2}}, {{0x11b5,2},{0xf7a,2}}, + {{0xed9,2},{0x2,1}}, {{0xf0a,3},{0x2,1}}, {{0x1977,3},{0x9a8,1}}, {{0xcd6,1},{0xcd6,1}}, + {{0x46af,3},{0x2,1}}, {{0xf77,4},{0x4,1}}, {{0xf77,4},{0x9a8,1}}, {{0x1081,4},{0x1085,3}}, + {{0xb,1},{0xed6,2}}, {{0xf70,2},{0xe6b,3}}, {{0xed5,3},{0xe11,1}}, {{0xe5b,3},{0x2ee9,3}}, + {{0x12e5,3},{0xcbd,1}}, {{0x1007,5},{0x9a8,1}}, {{0xcb8,1},{0x5538,2}}, {{0x6,1},{0xe78,2}}, + {{0x39b9,4},{0xec6,3}}, {{0x10a3,3},{0xcbd,1}}, {{0xe09,1},{0xe71,1}}, {{0x1a07,3},{0xdfb0,5}}, + {{0x1467,5},{0xcc1,1}}, {{0x1677,3},{0xe22,3}}, {{0x168e0,5},{0x116ea,4}}, {{0xec3,3},{0xe11,1}}, + {{0x19b7,3},{0x2,1}}, {{0x8,1},{0x113f,2}}, {{0xe0f,1},{0x4,1}}, {{0xed1,3},{0xf1a,2}}, + {{0x1d7e8,7},{0xe11,2}}, {{0x1677,3},{0x10cb,3}}, {{0xe71,1},{0xe22,2}}, {{0x6,1},{0x1025,1}}, + {{0x6,2},{0x1e8b,3}}, {{0xed1,4},{0xccd,1}}, {{0x1567,3},{0xccd,1}}, {{0xebe,4},{0xe11,1}}, + {{0xe6f,3},{0x5,1}}, {{0x5e3e,5},{0xccd,1}}, {{0xf77,4},{0xf1d,2}}, {{0x1150,2},{0xe11,1}}, + {{0xcd3,2},{0xe11,1}}, {{0x1967,3},{0xe89,2}}, {{0xe86,2},{0xcc7,1}}, {{0x16a7,3},{0x168b,4}}, + {{0xcbd,1},{0xe22,3}}, {{0x6,2},{0x6,1}}, {{0xe7f,2},{0xe11,1}}, {{0x1153,2},{0xf7a,2}}, + {{0x111a,3},{0x1ea1,5}}, {{0xe6f,3},{0x309c,4}}, {{0xccd,1},{0x5,1}}, {{0x10a3,3},{0x1c85,3}}, + {{0x1a07,3},{0xb,1}}, {{0x307bb,1},{0xe78,2}}, {{0x10a3,3},{0x955a,4}}, {{0x10a3,3},{0xed6,2}}, + {{0xe32,1},{0xf24,2}}, {{0xf77,3},{0xe65,2}}, {{0xaaf,2},{0x20579,1}}, {{0xe5b,3},{0xed6,2}}, + {{0x1d7e,3},{0xe75,2}}, {{0x16a7,3},{0xee6c,5}}, {{0xe83,3},{0x1150,2}}, {{0xe67,2},{0xf7a,2}}, + {{0x16a7,3},{0xec0,3}}, {{0xd,1},{0x21,1}}, {{0xf89,3},{0xcc6,2}}, {{0xef7,3},{0x5,1}}, + {{0x2,1},{0x14f9,3}}, {{0x2,1},{0x3,1}}, {{0xed1,4},{0x4,1}}, {{0xf70,2},{0xe32,1}}, + {{0xa,2},{0xe80,2}}, {{0xcc1,1},{0x8,1}}, {{0xe5b,4},{0x1153,2}}, {{0xe78,1},{0xec6,3}}, + {{0xefa,2},{0xe80,2}}, {{0xfb0,2},{0xe32,1}}, {{0x6,2},{0x4,1}}, {{0xe78,1},{0xcc9,2}}, + {{0x10a3,4},{0x141b,4}}, {{0x1a07,3},{0xe11,1}}, {{0x9a6,1},{0xed6,2}}, {{0xe77,2},{0xf7a,2}}, + {{0xcc7,1},{0xcd3,2}}, {{0x3559,4},{0xcbf,2}}, {{0x4853,3},{0xcbd,1}}, {{0xcc1,1},{0xeee,3}}, + {{0x127f,3},{0x168a,5}}, {{0x39b9,4},{0x39bd,4}}, {{0xef7,3},{0xfcb,2}}, {{0x1d3c,3},{0xe8a,2}}, + {{0xe22,2},{0xe0a,1}}, {{0xef7,3},{0x158f,3}}, {{0xed9,2},{0xe31,2}}, {{0xf16,2},{0xf7a,2}}, + {{0x1024,2},{0x2,1}}, {{0xef7,3},{0xf1a,2}}, {{0xf02,2},{0x2,1}}, {{0x1ff7,3},{0xcb7,2}}, + {{0xf77,4},{0xcbf,2}}, {{0x307bb,1},{0xcc7,1}}, {{0xcc1,1},{0xcc3,2}}, {{0xf77,4},{0xed9,2}}, + {{0x10b4,6},{0xcce,3}}, {{0x2afb6,3},{0x21,1}}, {{0xb74,2},{0xb74,2}}, {{0xf77,4},{0xfdf,4}}, + {{0xb,1},{0x1131,3}}, {{0x16a7,3},{0x101f,3}}, {{0xe83,3},{0x5538,2}}, {{0x27e0,3},{0x38ec,3}}, + {{0xe0a,1},{0xec6,3}}, {{0x10a3,3},{0x1047,3}}, {{0x478f,3},{0xcce,2}}, {{0x1bbf,4},{0x2454,3}}, + {{0x1367,3},{0xe25,2}}, {{0xf89,3},{0xcc9,2}}, {{0xf02,2},{0xe0a,1}}, {{0x2966,5},{0xe0a,1}}, + {{0x9f,1},{0x45,1}}, {{0xed1,4},{0x11d9,3}}, {{0x4,1},{0xcc3,2}}, {{0xed1,3},{0x29f3,3}}, + {{0x1692,2},{0xf7a,2}}, {{0xef7,3},{0xfa5,2}}, {{0xef7,3},{0xccb,2}}, {{0xcd3,2},{0xf7a,2}}, + {{0xf77,4},{0xccd,1}}, {{0xd,1},{0x57,1}}, {{0xe71,1},{0xe71,1}}, {{0x1303,3},{0xe6b,3}}, + {{0xe6f,3},{0x168a,3}}, {{0xf70,2},{0x2,1}}, {{0xcd3,1},{0x9,1}}, {{0xe2f,1},{0x2,1}}, + {{0xe71,1},{0x1150,2}}, {{0xedd,1},{0xe21,1}}, {{0xf89,3},{0x1150,2}}, {{0x10a3,3},{0x72d3,3}}, + {{0x8,1},{0x3,1}}, {{0xe83,3},{0x1ce6,5}}, {{0xed6,2},{0xb,1}}, {{0x1024,2},{0xcc9,2}}, + {{0x6,1},{0x14f9,3}}, {{0x16a7,3},{0x1153,2}}, {{0xe67,2},{0xfdf,4}}, {{0x1677,4},{0x10b8,2}}, + {{0x1977,3},{0xe11,1}}, {{0x1019,4},{0xf1a,2}}, {{0xcc7,1},{0xcc9,2}}, {{0xe78,1},{0xeee,3}}, + {{0xe6f,3},{0x3080,4}}, {{0xcd3,1},{0xeee,3}}, {{0xccd,1},{0xe0d,2}}, {{0xcd3,1},{0x1150,2}}, + {{0xccb,2},{0xcd4,2}}, {{0xd,1},{0xd,1}}, {{0xe78,1},{0xf7a,2}}, {{0xfe8,2},{0xe6b,3}}, + {{0x2de7b,3},{0x45,1}}, {{0x1088,4},{0xe69,5}}, {{0xef7,3},{0xcce,2}}, {{0x5722,5},{0xe67,2}}, + {{0xf86,2},{0xf13,2}}, {{0x2d79,4},{0x8,1}}, {{0xe86,2},{0xe6b,3}}, {{0xebe,4},{0x9a8,1}}, + {{0xaaf,2},{0xb37b,1}}, {{0x4,1},{0xfa5,2}}, {{0x8,1},{0xcbf,2}}, {{0x111a,3},{0x3118,5}}, + {{0x112b,5},{0xe71,1}}, {{0x5,1},{0xe67,2}}, {{0xc16,1},{0xc16,1}}, {{0x1367,3},{0xf1a,2}}, + {{0x111a,3},{0x1372,4}}, {{0xe78,1},{0x3641,3}}, {{0x16a7,3},{0x3642,2}}, {{0x1ff7,3},{0xe7d,2}}, + {{0x122a,9},{0xcd4,2}}, {{0x10c5,4},{0xe92,3}}, {{0x2240,4},{0xcbf,2}}, {{0x307bb,1},{0xfe0,2}}, + {{0x111a,3},{0x1e65,3}}, {{0x10c5,4},{0x6,2}}, {{0xccb,2},{0x4,1}}, {{0x1059,3},{0xe11,1}}, + {{0x105f,3},{0xed9,2}}, {{0xe63f,4},{0xe11,1}}, {{0xef7,3},{0xe0d,2}}, {{0xcd3,1},{0x2560,4}}, + {{0xe22,2},{0xcc1,1}}, {{0xed1,4},{0x10b9,2}}, {{0x127f,4},{0x413d,5}}, {{0xaaf,2},{0x1057,1}}, + {{0x127f,3},{0xe78,1}}, {{0xe31,2},{0xec6,3}}, {{0xb,1},{0x138e,2}}, {{0xe2f,1},{0xe32,1}}, + {{0x1019,4},{0x22b2,3}}, {{0x10a3,3},{0x990b,4}}, {{0xcd3,1},{0x14f9,3}}, {{0xcbd,1},{0x1131,3}}, + {{0x1ff7,3},{0x15ec,3}}, {{0x1747,4},{0x1d3c,5}}, {{0x2d1f,3},{0xe0d,2}}, {{0x1747,4},{0xccd,1}}, + {{0x111a,3},{0x181b,3}}, {{0xe37,2},{0x9b1,2}}, {{0xe5b,3},{0x35a3,3}}, {{0xcce,2},{0xb,1}}, + {{0xf57,2},{0xe86,2}}, {{0xcc8,1},{0xf91,3}}, {{0xe89,2},{0x1132,2}}, {{0x1a07,3},{0x9a6,1}}, + {{0x16a7,3},{0x5,1}}, {{0xf77,5},{0xccd,1}}, {{0x4f91,5},{0x1780,3}}, {{0x8,1},{0xe32,1}}, + {{0xaaf,2},{0xcd6,1}}, {{0xe83,5},{0xcc1,1}}, {{0xaaf,2},{0x30a4e,1}}, {{0xcd53,7},{0x16e3,4}}, + {{0x125d,6},{0xe0d,2}}, {{0xaaf,2},{0xcc9,2}}, {{0x16a7,3},{0xeb5,2}}, {{0x9219,5},{0xe31,2}}, + {{0x6,1},{0x1f38,1}}, {{0xe09,1},{0xcc1,1}}, {{0x39b9,8},{0xeed,4}}, {{0x48ea,6},{0x2f2e,3}}, + {{0x3559,4},{0xe71,1}}, {{0xe83,3},{0xec3,3}}, {{0x111a,3},{0xf70,2}}, {{0x1537,4},{0xfb8,3}}, + {{0xe22,2},{0xb,1}}, {{0x112b,5},{0x4,1}}, {{0x21,1},{0x45,1}}, {{0x1587,4},{0x156a,3}}, + {{0xcd3,1},{0x1783,4}}, {{0x3559,4},{0x1d3c,3}}, {{0x1857,4},{0x4,1}}, {{0x1bbf,4},{0x2dd7,4}}, + {{0xf89,3},{0x10cb,4}}, {{0x237b,5},{0x120c,3}}, {{0x1787,6},{0xe89,2}}, {{0xef7,3},{0xeee,3}}, + {{0x2afb6,3},{0x69,1}}, {{0x6f1a,5},{0xcba,2}}, {{0xae69,5},{0xf86,2}}, {{0xeab,2},{0xd086,3}}, + {{0x113f,2},{0x4,1}}, {{0xf9b,5},{0xccb,2}}, {{0x3a53,4},{0xe5e,2}}, {{0xf77,5},{0x149c,3}}, + {{0x1ff7,3},{0x113f,2}}, {{0x16a7,3},{0xe65,2}}, {{0x113f,2},{0x2,1}}, {{0xe5b,3},{0xe0a,1}}, + {{0x1230,3},{0xe11,2}}, {{0x1787,6},{0xcd3,2}}, {{0x7b45,4},{0xec6,3}}, {{0x27e0,3},{0x10cb,2}}, + {{0x21,1},{0x302,2}}, {{0x2858,4},{0x9,1}}, {{0x27e0,3},{0xfb8,3}}, {{0xaaf,2},{0x2e27d,1}}, + {{0xe0f,1},{0xe33,1}}, {{0x1567,3},{0x10b8,2}}, {{0xf,1},{0x45,1}}, {{0xdfac,5},{0x2271,3}}, + {{0xcd3,2},{0x1131,3}}, {{0xf0c,1},{0x4,1}}, {{0xe0d,2},{0xcc3d,3}}, {{0xef7,3},{0x6,1}}, + {{0xf89,3},{0x142a,3}}, {{0xe83,3},{0x6480,5}}, {{0xe6f,3},{0xcbd,1}}, {{0xaaf,2},{0x0,1}}, + {{0x1f07,4},{0xa,2}}, {{0x111a,3},{0x2d8d,3}}, {{0x125d,5},{0x2,1}}, {{0x1c91,4},{0xcc6,2}}, + {{0x11cb,3},{0xec6,3}}, {{0x79c5,4},{0x1230c,2}}, {{0xe92,3},{0xe95,2}}, {{0xe2b,2},{0xed9,2}}, + {{0xed1,3},{0xcbd,1}}, {{0xcd2,2},{0x9a4,3}}, {{0x16a7,3},{0xf1a,2}}, {{0xe5b,3},{0x5,2}}, + {{0xcd3,2},{0xed9,2}}, {{0x111a,3},{0xcd2,2}}, {{0x2948,3},{0xf0c,1}}, {{0x5534,4},{0x155e,3}}, + {{0x3a1b,5},{0xcc7,1}}, {{0x2d79,4},{0xf13,2}}, {{0x205a1,1},{0x20579,1}}, {{0x142d,3},{0xe11,1}}, + {{0x6,2},{0x1040,3}}, {{0x18f7,4},{0x1a63,3}}, {{0x10c5,4},{0xe22,3}}, {{0xaaf,2},{0xcf6,1}}, + {{0xf0f,2},{0xed6,2}}, {{0x478f,3},{0x5,1}}, {{0x1587,4},{0x3,2}}, {{0x10a3,3},{0xe7d,2}}, + {{0x111a,3},{0xfcb,2}}, {{0x3559,4},{0x4,1}}, {{0x1ff7,3},{0x1d003,5}}, {{0x1677,3},{0xf59,2}}, + {{0xaaf,2},{0xcd3,1}}, {{0x5,1},{0xcc3,2}}, {{0xd,1},{0x9f,1}}, {{0x2afb6,3},{0x9f,1}}, + {{0x17f7,6},{0xe65,2}}, {{0xf89,3},{0x2e29,3}}, {{0x2966,5},{0xccb,2}}, {{0x1367,3},{0x5,1}}, + {{0x2966,4},{0x6,2}}, {{0xebe,4},{0x1088,9}}, {{0xcb8,1},{0x72d3,3}}, {{0x27e0,3},{0xe7f,2}}, + {{0x6,1},{0x10b8,2}}, {{0x1607,5},{0xfb8,3}}, {{0xcc7,1},{0x2,1}}, {{0x1677,3},{0x10d3,3}}, + {{0x142d,3},{0xcc9,2}}, {{0x2,1},{0xcbf,2}}, {{0x11b3,4},{0xccd,4}}, {{0x1877,5},{0xe89,2}}, + {{0xe5b,3},{0xfb8,3}}, {{0xe5b,3},{0xcd2,2}}, {{0xf77,4},{0xe11,2}}, {{0x1cd3,2},{0xcc9,2}}, + {{0x16a7,3},{0x1393,3}}, {{0xef7,3},{0x2d11,3}}, {{0xf0a,3},{0xccd,1}}, {{0xef7,3},{0xcc3d,3}}, + {{0xe19,1},{0xe33,1}}, {{0x10a3,3},{0x9,1}}, {{0x1ff7,3},{0x1131,3}}, {{0xaaf,2},{0x1357,1}}, + {{0x1ebc,6},{0xe67,2}}, {{0x1967,3},{0xcbd,1}}, {{0xe0b,2},{0xe95,2}}, {{0xe09,1},{0xf20,2}}, + {{0xe86,2},{0x23e1,3}}, {{0xeab,2},{0xb,1}}, {{0xcc8,1},{0x2,1}}, {{0x1ff7,3},{0xec3,3}}, + {{0x6,2},{0xcce,2}}, {{0x2d79,4},{0xccd,1}}, {{0x1290,4},{0xe78,1}}, {{0x4853,3},{0x2,1}}, + {{0x145b,2},{0xe75,2}}, {{0xe83,3},{0xcc6,2}}, {{0x5,1},{0xe69,5}}, {{0xcbd,1},{0xec6,3}}, + {{0xe71,1},{0xe0a,1}}, {{0xccb,2},{0xa,2}}, {{0xe71,1},{0xed6,2}}, {{0x1677,3},{0x296f,3}}, + {{0x3559,4},{0x9a8,2}}, {{0x168e0,5},{0xed5,3}}, {{0xe83,3},{0x4164,3}}, {{0x2afb6,3},{0xd,1}}, + {{0x1847,5},{0x12a3,3}}, {{0x112b,5},{0xe0c,3}}, {{0xcbd,1},{0xe1c,3}}, {{0x10d3,3},{0xe11,1}}, + {{0x27ef,4},{0xe32,1}}, {{0x5,1},{0xed9,2}}, {{0x4765,3},{0xcba,2}}, {{0xf0a,3},{0xfa5,2}}, + {{0xf1a,2},{0xf63,2}}, {{0xaaf,2},{0xaf4,2}}, {{0x20579,1},{0xcd6,2}}, {{0x27e0,3},{0xe89,2}}, + {{0x1967,3},{0xe32,1}}, {{0x6,2},{0xe11,1}}, {{0x41a7,4},{0x22b2,3}}, {{0xcb8,1},{0xcb8,1}}, + {{0xf0f,2},{0xcc9,2}}, {{0x6,1},{0x11b5,2}}, {{0xfb0,2},{0xf7a,2}}, {{0xa,2},{0x104c,2}}, + {{0xf89,3},{0x142d,3}}, {{0xcd3,2},{0xcc9,2}}, {{0xe936,8},{0xec6,3}}, {{0xaaf,2},{0x205a7,1}}, + {{0xe6f,3},{0x113f,2}}, {{0x115e,5},{0x13dc,5}}, {{0xe5e7,4},{0xccc,2}}, {{0xaaf,2},{0x1f875,1}}, + {{0xed1,3},{0xfb0,2}}, {{0x142d,3},{0xec6,3}}, {{0x1817,4},{0x181b,3}}, {{0xbb4,4},{0xddc,2}}, + {{0x12d4,3},{0x8,1}}, {{0x105f,3},{0xf1a,2}}, {{0x4ee8,4},{0xfdf,3}}, {{0x1153,3},{0xe0d,2}}, + {{0xe16,1},{0xe99,1}}, {{0xaaf,2},{0x1252,3}}, {{0xf0a,3},{0x8,1}}, {{0xf77,4},{0x138e,2}}, + {{0x3203,5},{0xe2b,2}}, {{0xf89,3},{0x1569,2}}, {{0x5534,4},{0xe22,2}}, {{0x1e9e,5},{0x17ec,4}}, + {{0xe77,2},{0xec6,3}}, {{0xef7,3},{0x1153,3}}, {{0x111a,3},{0x5538,2}}, {{0xd,1},{0xe,1}}, + {{0xe11,1},{0xcc1,1}}, {{0xe86,2},{0xcc9,2}}, {{0xf65,3},{0xcd4,2}}, {{0xcc3,3},{0xe0a,1}}, + {{0x10b9,2},{0x2c85,2}}, {{0xab1,2},{0xab1,2}}, {{0x283aa,5},{0xb,1}}, {{0x1977,3},{0x9a5,2}}, + {{0xe5e,2},{0xe11,1}}, {{0xffc,3},{0x142d,3}}, {{0x111a,3},{0x1cd3,2}}, {{0xb34,2},{0xb34,2}}, + {{0xcd3,1},{0x156a,3}}, {{0x112b,5},{0x138e,4}}, {{0x1dbd,6},{0x1d65,3}}, {{0x122d,2},{0x1b80,3}}, + {{0xe1f,3},{0xccc,2}}, {{0xd,1},{0x8d,1}}, {{0xe09,1},{0xe89,2}}, {{0x1099,4},{0xe0a,1}}, + {{0x6,2},{0xed5,3}}, {{0xcd3,2},{0x6,1}}, {{0x113c,3},{0x16ad,3}}, {{0x1a07,3},{0xfe0,2}}, + {{0x16a7,3},{0x158f,3}}, {{0x1ccd,5},{0x35a3,3}}, {{0xe78,1},{0x1b41,4}}, {{0xcc8,1},{0xe11,1}}, + {{0x16642,6},{0xcc9,2}}, {{0xf89,3},{0x1569,3}}, {{0xf0a,3},{0xcc1,1}}, {{0xee9,2},{0x9a6,1}}, + {{0x1687,6},{0xccd,1}}, {{0x27e0,3},{0xccb,2}}, {{0xf89,3},{0xa,2}}, {{0xef7,3},{0x11a6,2}}, + {{0x4,1},{0xa,2}}, {{0x2,1},{0x2,1}}, {{0xe83,3},{0xcd2,2}}, {{0xe0d,2},{0xe71,1}}, + {{0xfa5,2},{0xccb,2}}, {{0x183a,3},{0xcce,2}}, {{0x111a,3},{0x6,2}}, {{0xa659,5},{0x1231,4}}, + {{0xf0f,2},{0xf7a,2}}, {{0x111a,3},{0xe8a,2}}, {{0x4,1},{0x8,1}}, {{0xeee,3},{0xe6b,3}}, + {{0x28d0,4},{0xc3d0,4}}, {{0xf89,3},{0xeb5,2}}, {{0x269da,5},{0xa,2}}, {{0x2afb6,3},{0x8d,1}}, + {{0x1567,3},{0xf13,2}}, {{0xe77,2},{0xa,2}}, {{0x5,2},{0x1155,2}}, {{0x29c0,3},{0x5,1}}, + {{0x5,1},{0xcce,2}}, {{0xeee,3},{0xe95,2}}, {{0x113c,3},{0x2252,3}}, {{0x2a47,3},{0x3,1}}, + {{0xccb,2},{0x1153,2}}, {{0xe11,1},{0xe32,1}}, {{0x2afb6,3},{0xe,1}}, {{0x16a7,3},{0x2454,3}}, + {{0x121c,3},{0xe6b,3}}, {{0xe11,2},{0xe22,3}}, {{0x12e5,3},{0xcc3,2}}, {{0xed9,2},{0xebb,3}}, + {{0xe7f,2},{0xcc9,2}}, {{0xd,1},{0xf,1}}, {{0x3d39,5},{0x1c85,3}}, {{0x1019,4},{0x1189,4}}, + {{0x1019,4},{0x1189,3}}, {{0x27e0,3},{0x8,1}}, {{0x105f,3},{0xe86,2}}, {{0xcc6,2},{0x2271,3}}, + {{0x27e0,3},{0x569a,3}}, {{0x4e43,4},{0xe0a,1}}, {{0x2006,3},{0x1303,3}}, {{0x21,1},{0x9f,1}}, + {{0x10b8,2},{0xcc9,2}}, {{0x127f,3},{0xc3d0,3}}, {{0x2939,4},{0xe0d,2}}, {{0xef7,7},{0xfe6,2}}, + {{0x1007,5},{0xe11,2}}, {{0xf1a,2},{0xb,1}}, {{0x1577,4},{0xf3a,3}}, {{0xe16,1},{0xe21,1}}, + {{0xcd3,1},{0xcce,2}}, {{0xcd3,1},{0xf59,2}}, {{0xcce,2},{0xe31,2}}, {{0xd,1},{0x69,1}}, + {{0xeb4,3},{0xe0b,4}}, {{0x10a3,3},{0xcb8,1}}, {{0xf89,3},{0x3444,6}}, {{0x2afb6,3},{0xf,1}}, + {{0x6,2},{0xe67,2}}, {{0x4,1},{0xcc9,2}}, {{0x4781,3},{0x8,1}}, {{0x1567,3},{0x11d9,3}}, + {{0xa,2},{0xe71,1}}, {{0x1bbf,4},{0xec6,3}}, {{0x7de9,2},{0xcce,2}}, {{0xf69,3},{0xe25,2}}, + {{0x19e7,5},{0xcc7,1}}, {{0x1367,4},{0xe0a,1}}, {{0xe09,1},{0x14f9,3}}, {{0xfcb,2},{0xed9,2}}, + {{0x10a3,3},{0xd084,5}}, {{0xcc8,1},{0xe0a,1}}, {{0x29cf,3},{0xf1a,2}}, {{0x127f,3},{0x122e,2}}, + {{0xe83,3},{0x72d3,3}}, {{0x127f,4},{0xb,1}}, {{0xe7f,2},{0xe32,1}}, {{0xe22,2},{0x2,1}}, + {{0xe0f,1},{0x9a8,1}}, {{0x2,1},{0xe71,1}}, {{0x112b,5},{0x9a8,1}}, {{0x2240,4},{0x4833,4}}, + {{0xefa,2},{0xe31,2}}, {{0xe08,1},{0xf70,2}}, {{0xe6b,3},{0xed9,2}}, {{0xb74,1},{0x20599,1}}, + {{0x10a3,3},{0xf0d,2}}, {{0x28d0,4},{0x1d76e,5}}, {{0x2de75,3},{0x45,1}}, {{0x1019,6},{0x101f,3}}, + {{0x4767,1},{0x2,1}}, {{0x16a7,3},{0x5ead,5}}, {{0xedd,1},{0xf0c,1}}, {{0xcd3,1},{0x1085,3}}, + {{0xe67,2},{0xe0d,2}}, {{0x307bb,1},{0x9a6,1}}, {{0x29c0,3},{0xb,1}}, {{0x3559,4},{0xfb0,3}}, + {{0x111a,3},{0x120f,3}}, {{0xe83,3},{0x5,1}}, {{0x1677,3},{0xec3,3}}, {{0xe2b,2},{0x1e8b,3}}, + {{0xaaf,2},{0xfb8,3}}, {{0xcd3,1},{0xf1d,2}}, {{0xd,1},{0x7b,1}}, {{0xe11,1},{0xcc3,2}}, + {{0xe5b,4},{0xfe0,2}}, {{0xe5b,3},{0x9bd1,3}}, {{0x27d7,2},{0xb,1}}, {{0x8,1},{0xcd3,3}}, + {{0xe0d,2},{0xf4a,5}}, {{0xe16,1},{0xe33,1}}, {{0x49a0,5},{0xeb5,2}}, {{0x1839,2},{0x10cc,2}}, + {{0x1ff7,3},{0x2c59,4}}, {{0xaaf,2},{0xe78,2}}, {{0x105f,3},{0x3641,3}}, {{0x9a4,3},{0xec6,3}}, + {{0xe77,2},{0xcc9,2}}, {{0x7935,5},{0x9a6,1}}, {{0xcb8,1},{0x2d11,3}}, {{0xef7,3},{0x2d8d,3}}, + {{0xee4,4},{0x41e9,4}}, {{0xe6f,3},{0xe77,3}}, {{0x2948,4},{0x6411,4}}, {{0xe5b,4},{0x1096,3}}, + {{0x2d11,3},{0xcd4,2}}, {{0xe19,1},{0xe21,1}}, {{0x111a,3},{0xf1a,2}}, {{0x19b7,3},{0x5,1}}, + {{0x2dec3,5},{0x8d,1}}, {{0x5,1},{0xec3,3}}, {{0xed6,2},{0xec6,3}}, {{0xaaf,2},{0xc36,2}}, + {{0x1ff7,3},{0x1ffa,4}}, {{0xe11,1},{0x1252,3}}, {{0x101f,2},{0xe0a,1}}, {{0x12b5,2},{0x1131,3}}, + {{0x1367,3},{0xcd3,2}}, {{0x5d13,8},{0x1059,3}}, {{0x2df3b,4},{0x57,1}}, {{0x22f03,6},{0xb,1}}, + {{0x2afb6,3},{0x7b,1}}, {{0x6c83,5},{0x6c88,5}}, {{0xff6d,5},{0xf1a,2}}, {{0xf77,4},{0xe80,2}}, + {{0x205a1,1},{0x20599,1}}, {{0xfcb,2},{0xe0a,1}}, {{0xed1,3},{0xf1d,2}}, {{0xfb0,2},{0xed5,3}}, + {{0xed9,2},{0x9a8,1}}, {{0x12090,8},{0xe22,2}}, {{0xb,1},{0x120c,3}}, {{0xed1,4},{0x1cd5,4}}, + {{0x2c3b,5},{0xebb,3}}, {{0x1567,3},{0x12b5,2}}, {{0x478f,3},{0xcbd,1}}, {{0x2006,3},{0xec0,3}}, + {{0x114d,4},{0xe22,2}}, {{0x111a,3},{0xfb0,3}}, {{0x1747,4},{0xe78,1}}, {{0x27e0,3},{0xfb0,2}}, + {{0xe0d,2},{0x4,1}}, {{0x5,2},{0x9a8,2}}, {{0x1577,4},{0x157b,3}}, {{0x1747,4},{0xcbd,1}}, + {{0x1e9e,5},{0x1088,4}}, {{0x10c5,4},{0x1054,3}}, {{0x1c91,4},{0x2c21,4}}, {{0x12e5,3},{0xf0d,2}}, + {{0x1817,4},{0x53c2,3}}, {{0xef7,3},{0x16ad,3}}, {{0x48ea,6},{0xcd3,2}}, {{0x1ff7,3},{0xe1c,3}}, + {{0x112b,5},{0x1f38,4}}, {{0x1a07,3},{0x4,1}}, {{0x256a,8},{0xcbd,1}}, {{0x9a4,3},{0xcc9,2}}, + {{0xf0a,3},{0xe0a,1}}, {{0x127f,3},{0xee9,2}}, {{0x1024,2},{0xe69,5}}, {{0xaaf,2},{0xc16,1}}, + {{0xe0d,2},{0xe0a,1}}, {{0xf89,3},{0x246d7,4}}, {{0xf0f,2},{0x9a6,1}}, {{0x442d,1},{0xefa,2}}, + {{0x9a8,1},{0xcce,2}}, {{0x602c,5},{0x11d2,3}}, {{0xf89,3},{0x1692,5}}, {{0x27e0,3},{0xe2b,2}}, + {{0x3203,5},{0x59b4,3}}, {{0xebbf,6},{0xa,2}}, {{0xaaf,2},{0x2560,4}}, {{0xcc3,2},{0xe0a,1}}, + {{0xe09,1},{0x122e,2}}, {{0x70ad,3},{0xfa5,3}}, {{0x10a3,3},{0xe2b,2}}, {{0x1252,3},{0x8,1}}, + {{0xcbd,1},{0x9a8,1}}, {{0xe86,2},{0xcc3,2}}, {{0x10b4,4},{0xccb,2}}, {{0xe71,1},{0xcd3,2}}, + {{0x1877,5},{0x2252,3}}, {{0x1ff7,3},{0x10cb,4}}, {{0xaaf,2},{0xf7a,2}}, {{0x8,1},{0x9a8,1}}, + {{0x1367,3},{0x2c59,4}}, {{0xe5b,3},{0xc80d,4}}, {{0xb,1},{0x113f,2}}, {{0xe6f,3},{0x3e0e,3}}, + {{0x125d,6},{0x43fb,3}}, {{0xe97,3},{0x2,1}}, {{0xcba,2},{0xe11,1}}, {{0xf89,3},{0xf1a,2}}, + {{0x158f,3},{0x138e,2}}, {{0xcd3,1},{0xf0d,2}}, {{0xf1a,2},{0xcc7,1}}, {{0xcc8,1},{0x5,1}}, + {{0xed1,4},{0x15692,5}}, {{0x1007,5},{0xcc1,1}}, {{0x16a7,3},{0xe13,3}}, {{0xe97,3},{0x8,1}}, + {{0xccd,1},{0xe89,2}}, {{0xedd,1},{0xe33,1}}, {{0xcd2,2},{0xf7a,2}}, {{0x2de7b,3},{0x9f,1}}, + {{0x12e5,3},{0xe22,2}}, {{0xcc4,2},{0xe0a,1}}, {{0x6ff7,5},{0x1632,5}}, {{0xed1,3},{0x156a,3}}, + {{0xfcb,2},{0xebb,3}}, {{0x1692,2},{0xa,2}}, {{0x11a6,2},{0xe11,1}}, {{0xe5b,3},{0x8666,2}}, + {{0xf89,3},{0x9408,4}}, {{0x1153,2},{0x6,1}}, {{0x5722,4},{0x1076,3}}, {{0xed6,2},{0xed9,2}}, + {{0x391f,5},{0xe22,2}}, {{0x2015,3},{0x1dee,2}}, {{0xe86,2},{0xed5,3}}, {{0x4225,4},{0xf28,7}}, + {{0xe7d,2},{0x5,1}}, {{0xa,2},{0xb,1}}, {{0x6,1},{0xf0f,2}}, {{0xe77,2},{0xf0f,2}}, + {{0x1109,5},{0x11cb,3}}, {{0x78f9,1},{0x205a1,1}}, {{0x10a3,3},{0xec6,3}}, {{0x1a07,3},{0xcc7,1}}, + {{0xf0f,2},{0x1783,4}}, {{0x57cb,5},{0xe11,1}}, {{0xe11,2},{0xed6,2}}, {{0xed1,3},{0x1c7b,5}}, + {{0xee69,8},{0xec6,3}}, {{0x4853,3},{0x5,1}}, {{0xe86,2},{0xec6,3}}, {{0x1677,3},{0x158f,3}}, + {{0xcc7,1},{0x2d8d,3}}, {{0xf59,2},{0xeee,3}}, {{0x1c91,4},{0x3,1}}, {{0x3d39,5},{0xcc1,1}}, + {{0x1694e,5},{0x296f,3}}, {{0x2a47,3},{0x9a6,1}}, {{0x2d79,4},{0x8,2}}, {{0x1677,4},{0x44b3,4}}, + {{0x3185,7},{0xe75,2}}, {{0x6,1},{0x149c,3}}, {{0xe16,1},{0xe11,1}}, {{0xf1a,2},{0xec6,3}}, + {{0x114d,4},{0x1085,3}}, {{0x1677,3},{0xe8a,2}}, {{0xe65,2},{0x2,1}}, {{0x1019,4},{0x8,1}}, + {{0xef7,3},{0x1b6a,6}}, {{0x113c,3},{0xcc3,2}}, {{0x1747,4},{0xed9,2}}, {{0x21,1},{0xe,1}}, + {{0xe0d,2},{0xeed,4}}, {{0xe7d,2},{0xcd3,1}}, {{0xa,2},{0x2,1}}, {{0x10a3,3},{0x1252,3}}, + {{0x1967,3},{0x5,1}}, {{0x29cf,3},{0x5538,2}}, {{0xf77,4},{0x2c21,4}}, {{0xe09,1},{0xcc9,2}}, + {{0xcc1,1},{0x23e1,3}}, {{0x1062,2},{0xe69,5}}, {{0xed1,3},{0x120b,4}}, {{0x9051,7},{0xf35,3}}, + {{0x1e62,6},{0xfa9,4}}, {{0x1677,3},{0xf12,3}}, {{0xe22,3},{0xe11,1}}, {{0x113f,2},{0xe11,1}}, + {{0xef7,3},{0xebb,3}}, {{0xcce,2},{0xf86,3}}, {{0x1c91,4},{0x156a,3}}, {{0xac05,7},{0xfc7,3}}, + {{0xde8e,4},{0x138e,2}}, {{0x6ff7,5},{0xe77,2}}, {{0xcbd,1},{0xed6,2}}, {{0x113c,3},{0x10cb,4}}, + {{0xe2b,2},{0xe6b,4}}, {{0x46bd,3},{0x18023,3}}, {{0x6,1},{0xf32,2}}, {{0x10b9,2},{0x5538,2}}, + {{0xe83,3},{0xcc3,3}}, {{0x1ff7,3},{0x11b5,2}}, {{0x794d,6},{0xec6,3}}, {{0x1967,3},{0xf79,3}}, + {{0xcce,2},{0xf13,2}}, {{0x2,1},{0xcc8,1}}, {{0x12e5,3},{0x8,1}}, {{0x27e0,3},{0xf194,3}}, + {{0xeb4,3},{0xe11,1}}, {{0xf70,2},{0xf7a,2}}, {{0x29cf,3},{0x5,1}}, {{0x491e,5},{0x413e,4}}, + {{0x127f,3},{0x281f,5}}, {{0xe89,2},{0xccd,1}}, {{0x112b,5},{0x11d9,3}}, {{0x1c91,4},{0xa,2}}, + {{0x2e27d,1},{0x7905,1}}, {{0x16a7,3},{0x101f,2}}, {{0xf0a,3},{0xe09,1}}, {{0x1007,5},{0x9a6,1}}, + {{0xe2b,2},{0xec6,3}}, {{0xa701,6},{0xe80,2}}, {{0xaaf,2},{0x205a5,1}}, {{0xaf4,8},{0xaf4,8}}, + {{0x6,1},{0x1c85,3}}, {{0x3b09,4},{0xeee,3}}, {{0xee4,4},{0xe71,1}}, {{0x111a,3},{0x113f,2}}, + {{0xebe,4},{0xed5,4}}, {{0xcd3,1},{0x1153,2}}, {{0x2f71,4},{0xcce,3}}, {{0xcc6,2},{0xfe8,2}}, + {{0xe37,2},{0x9b5,2}}, {{0x4781,3},{0xf02,2}}, {{0xeb5,2},{0xf1a,2}}, {{0x69,1},{0x45,1}}, + {{0x1577,4},{0x10cb,2}}, {{0xe0f,1},{0xf0c,1}}, {{0x158f,3},{0xb,1}}, {{0xe0b,2},{0xeb9,5}}, + {{0xe2b,2},{0xe77,3}}, {{0xe83,3},{0x1153,2}}, {{0x2afb6,3},{0x314,2}}, {{0x111a,3},{0x1288,4}}, + {{0x2399,4},{0xec6,3}}, {{0x3123,6},{0x120c,3}}, {{0x5,1},{0xec6,3}}, {{0x7e69,8},{0x4,1}}, + {{0x1d72,7},{0xe6b,3}}, {{0xccb,2},{0xcb8,1}}, {{0x70ad,3},{0xf1a,2}}, {{0x13208,7},{0xed9,2}}, + {{0x712f,4},{0xe92,3}}, {{0xe6f,3},{0x1267,4}}, {{0x16a7,3},{0xf8e,3}}, {{0xe97,3},{0xcb8,1}}, + {{0x1367,3},{0xeee,3}}, {{0xe22,2},{0x138e,3}}, {{0xcb8,1},{0x7950,3}}, {{0xccd,1},{0xcce,2}}, + {{0xcc7,1},{0xe0a,1}}, {{0xe,1},{0x45,1}}, {{0x1857,4},{0xe71,1}}, {{0x1ebf,3},{0xeed,4}}, + {{0x142a,3},{0xe25,2}}, {{0x3203,5},{0xe67,2}}, {{0x114d,4},{0x1150,2}}, {{0xef7,3},{0x309c,4}}, + {{0x21,1},{0x21,1}}, {{0x712f,4},{0x27dc,4}}, {{0xe6f,3},{0xb410,4}}, {{0x5,2},{0xcb8,1}}, + {{0xf70,2},{0x1040,3}}, {{0x13a7,7},{0xf93,5}}, {{0xfcb,2},{0xe11,1}}, {{0x29c0,3},{0xcc8,1}}, + {{0xcbd,1},{0xeca,3}}, {{0xe11,1},{0xe0a,1}}, {{0xf89,3},{0x62f3,4}}, {{0x1367,3},{0xcc3,2}}, + {{0xf16,2},{0xcc3,2}}, {{0x1677,3},{0x12fe,2}}, {{0x1ff7,3},{0x1569,3}}, {{0xeee,3},{0xf35,3}}, + {{0x26d2,8},{0x9a9,2}}, {{0xccd,1},{0xf1a,2}}, {{0x1977,3},{0xcc7,1}}, {{0xe16,1},{0x2ba5,1}}, + {{0x12b2,5},{0xefa,4}}, {{0xc36,2},{0xc38,2}}, {{0xe13,3},{0x9a6,1}}, {{0x156a,3},{0x4,1}}, + {{0xaaf,2},{0x1252,5}}, {{0x2dec3,5},{0x9f,1}}, {{0xde15,7},{0xe11,1}}, {{0x29cf,3},{0xcd3,2}}, + {{0xcd3,1},{0x2271,3}}, {{0x156a,3},{0xf62,3}}, {{0x2968,3},{0xccb,2}}, {{0x1b4f,5},{0xed9,2}}, + {{0x9a6,1},{0x9a6,1}}, {{0x112b,5},{0xcc8,1}}, {{0x7911,5},{0xec7,2}}, {{0x28d0,4},{0x123e,3}}, + {{0x12b2,5},{0x7030,6}}, {{0x7911,3},{0x1150,2}}, {{0x9351,5},{0x2514,4}}, {{0x1702e,4},{0x6,2}}, + {{0x8,1},{0xf0f,2}}, {{0x29cf,3},{0xe22,2}}, {{0xe16,1},{0x9a5,2}}, {{0x28c1,4},{0x123e,3}}, + {{0x6,1},{0xcd3,1}}, {{0x236c,4},{0x2c83,4}}, {{0xe1f,3},{0xf7a,2}}, {{0xaaf,2},{0x11,1}}, + {{0x1607,5},{0xf0d,2}}, {{0x1ff7,3},{0xcba,2}}, {{0x6,1},{0x9a8,1}}, {{0x12e5,3},{0xf1a,2}}, + {{0x1677,3},{0x10cb,2}}, {{0x29c0,3},{0xcc4,2}}, {{0xf0a,3},{0xe60,2}}, {{0xcd3,2},{0xe69,5}}, + {{0x9489,6},{0xe95,2}}, {{0x127f,4},{0x4,1}}, {{0xf16,2},{0xcc9,2}}, {{0xe1f,3},{0x1cf3,3}}, + {{0x27e0,3},{0xa,2}}, {{0xf77,4},{0xe0d,2}}, {{0x1a66,1},{0xcce,2}}, {{0xcc8,1},{0x12a3,3}}, + {{0x12d4,3},{0x113f,2}}, {{0x1e08,6},{0x1252,5}}, {{0xcc8,1},{0xfdf,3}}, {{0x12b2,5},{0x1131,3}}, + {{0x2182,4},{0x153a,3}}, {{0x19b7,3},{0xcc6,2}}, {{0x2a47,3},{0x3381,3}}, {{0x8d,1},{0x45,1}}, + {{0x2006,4},{0xcba,3}}, {{0xee9,2},{0xcbd,1}}, {{0x4781,3},{0x5,1}}, {{0x62ea,5},{0xe95,2}}, + {{0xe09,1},{0xe80,2}}, {{0x52d8,3},{0xe0a,1}}, {{0xbb4,4},{0x2b0e8,2}}, {{0x16a7,3},{0x10cb,4}}, + {{0x10a3,3},{0xeee,3}}, {{0x2d79,4},{0xc29d,3}}, {{0x595e,6},{0x1150,2}}, {{0x205a1,1},{0xb74,1}}, + {{0x27e0,3},{0xce8e,4}}, {{0x10c5,5},{0x123e,3}}, {{0xfcb,2},{0x413e,4}}, {{0x1747,4},{0xcc8,1}}, + {{0xcc7,1},{0x2271,3}}, {{0x53d5,8},{0xcc7,1}}, {{0x1747,4},{0x1fbe,3}}, {{0x1c73,5},{0xf35,3}}, + {{0x11b5,2},{0xe92,3}}, {{0xe16,1},{0xf0c,1}}, {{0xcce,3},{0xe65,2}}, {{0x6c42,6},{0x6c48,4}}, + {{0xed6,2},{0xe0a,1}}, {{0xf4f,1},{0xe32,1}}, {{0xed1,3},{0xe0a,1}}, {{0xcd3,1},{0xfdf,4}}, + {{0xf89,3},{0xe7f,2}}, {{0xcb8,1},{0xe32,1}}, {{0xccd,1},{0x1cd3,2}}, {{0xaaf,2},{0xed6,2}}, + {{0x2f9b,4},{0x9a8,1}}, {{0x1b023,7},{0xe11,1}}, {{0xee9,2},{0xcc3,2}}, {{0x105f,3},{0x1e77,3}}, + {{0x16a7,3},{0xe77,3}}, {{0x10c5,4},{0xccb,2}}, {{0x5534,6},{0xf91,3}}, {{0xcd3,2},{0xcc1,1}}, + {{0xed9,2},{0x9a6,1}}, {{0xe0a,1},{0x2252,3}}, {{0x6,1},{0xe65,2}}, {{0x10b4,4},{0x138d,5}}, + {{0x1e08,6},{0xeee,3}}, {{0x1230,3},{0x1524,3}}, {{0x2dec3,5},{0xe,1}}, {{0x10b4,4},{0x1943,2}}, + {{0x1ebc,8},{0x15fe,4}}, {{0x1081,4},{0xe0a,1}}, {{0x4d6f,6},{0xfb8,3}}, {{0x12f6,4},{0x1278,4}}, + {{0xcc3,2},{0xf7a,2}}, {{0x1df9,5},{0xe78,1}}, {{0x21,1},{0xf,1}}, {{0xef7,3},{0x1601,3}}, + {{0x1ff7,3},{0xe22,3}}, {{0x353d,5},{0xed9,2}}, {{0x122d,2},{0xe0a,1}}, {{0x21,1},{0x57,1}}, + {{0x127f,3},{0xf70,2}}, {{0xedd,1},{0x19b9,1}}, {{0x4781,3},{0xe09,1}}, {{0xf89,3},{0x149c,3}}, + {{0x551a,7},{0xfdd,4}}, {{0x239eb,5},{0xcc9,2}}, {{0x3a1b,5},{0x2b89,3}}, {{0xe2b,2},{0xed5,3}}, + {{0xcd2,2},{0xfe8,2}}, {{0x1817,4},{0x2236,3}}, {{0x111a,3},{0x101e,4}}, {{0x442b,3},{0x7950,3}}, + {{0x1bcd4,5},{0xec5,4}}, {{0x12a1,4},{0xfa5e,4}}, {{0x125d,5},{0xcc8,1}}, {{0xae75,7},{0xe78,2}}, + {{0xaaf,2},{0x1025,1}}, {{0x2d79,4},{0x1b03,3}}, {{0x12858,7},{0x1e8b,3}}, {{0x12e5,3},{0xeee,3}}, + {{0xee9,2},{0xcc1,1}}, {{0xebe,5},{0x2182,7}}, {{0x29cf,3},{0xcc1,1}}, {{0x21,1},{0x7b,1}}, + {{0xe86,2},{0x9,1}}, {{0x2a47,3},{0xec7,2}}, {{0x16a7,3},{0x155e,3}}, {{0x2de7b,3},{0xe,1}}, + {{0x7b2d,5},{0x17c0,2}}, {{0x23a53,5},{0x6,1}}, {{0x2,1},{0xe78,1}}, {{0x1367,3},{0x1601,3}}, + {{0x45a5,6},{0x1252,5}}, {{0x105f,3},{0x113f,2}}, {{0xe5e7,4},{0xe0a,1}}, {{0xf89,3},{0xe25,2}}, + {{0xccd,1},{0xf70,2}}, {{0x16c96,5},{0x9ff4,5}}, {{0x11d5,7},{0x2177,5}}, {{0x1849,3},{0xe0d,2}}, + {{0xf89,3},{0xec0,3}}, {{0x6,1},{0x122e,2}}, {{0xe25,2},{0xcc7,1}}, {{0x16a7,3},{0x1bd67,5}}, + {{0xe71,1},{0xcc9,2}}, {{0xef7,3},{0xf70,2}}, {{0x2d79,4},{0x4,1}}, {{0xe2b,2},{0xeab,2}}, + {{0x105f,3},{0x2224,4}}, {{0x1607,8},{0x10cb,2}}, {{0x113c,3},{0x1150,2}}, {{0x29cf,3},{0xe0a,1}}, + {{0x5,1},{0x1790,3}}, {{0xcd3,1},{0xa,2}}, {{0xb74,1},{0x2e27d,1}}, {{0x11b3,5},{0xe89,2}}, + {{0xe31,2},{0x41e9,4}}, {{0x10d2,4},{0xe11,1}}, {{0x1007,5},{0x1461,4}}, {{0x29cf,3},{0xcc9,2}}, + {{0x4f79,3},{0x10f5,3}}, {{0xfa6,3},{0xe77,3}}, {{0xcc7,1},{0xcc8,1}}, {{0x8,1},{0x2271,3}}, + {{0x6,2},{0x18b4,3}}, {{0xe16,1},{0xb,1}}, {{0x2de5d,3},{0x45,1}}, {{0xf77,4},{0xf03,2}}, + {{0xf79,3},{0xeee,3}}, {{0x2939,4},{0x1569,3}}, {{0x16a7,3},{0xccb,2}}, {{0x11963,6},{0xf32,2}}, + {{0xe11,1},{0xcb8,1}}, {{0x28c1,4},{0xefa,4}}, {{0x1a07,3},{0x10b8,2}}, {{0xed1,3},{0x14e5d,5}}, + {{0x3433,5},{0xe2b,2}}, {{0x127f,4},{0xed9,2}}, {{0x16a7,3},{0xeb4,3}}, {{0x2a47,3},{0xb,1}}, + {{0xed9,2},{0xf7a,2}}, {{0x1467,6},{0xf35,3}}, {{0x6cde,4},{0x12a3,3}}, {{0xe0f,1},{0xe99,1}}, + {{0xcc1,1},{0x1e8b,3}}, {{0x1b2e1,6},{0xec6,3}}, {{0x16a7,3},{0x1d7e,3}}, {{0xe0a,1},{0xb,1}}, + {{0x28d0,4},{0x152d4,4}}, {{0x8,1},{0xcc3,2}}, {{0x12bfa,6},{0xe0a,1}}, {{0xf89,3},{0x121c,3}}, + {{0xcc1,1},{0x23d2,3}}, {{0xe89,2},{0xcbb,2}}, {{0xe5b,3},{0xccb,2}}, {{0x17f7,8},{0xebb,3}}, + {{0x591d,5},{0xf35,2}}, {{0x16a7,3},{0x1593,3}}, {{0x125d,5},{0xf7a,2}}, {{0x2948,4},{0x4201,8}}, + {{0x130be,6},{0xe0d,2}}, {{0x17030,2},{0x6,2}}, {{0xe09,1},{0xe95,2}}, {{0x1677,3},{0x5988,3}}, + {{0xf16,2},{0x17c0,2}}, {{0xe32,1},{0xf02,2}}, {{0x12c3,5},{0x3118,5}}, {{0xcc14,7},{0xcc9,2}}, + {{0x1537,4},{0xf1f,3}}, {{0x113f,2},{0x8,1}}, {{0xcc8,1},{0x569a,3}}, {{0x149aa,5},{0x17c0,2}}, + {{0xe2b,2},{0xcce,2}}, {{0x1208,4},{0xe80,2}}, {{0x1007,6},{0x17cd,4}}, {{0x21,1},{0x8d,1}}, + {{0xe89,2},{0xf03,2}}, {{0xe5b,3},{0x7c3d,4}}, {{0x21,1},{0x69,1}}, {{0x57,1},{0x57,1}}, + {{0x70ad,3},{0xe30,3}}, {{0x1081,4},{0x17c0,2}}, {{0x1367,3},{0x6,1}}, {{0x1081,4},{0xcbf,2}}, + {{0x433d,4},{0x8,1}}, {{0xf89,3},{0x1131,3}}, {{0xf86,2},{0x9a8,1}}, {{0x4383,5},{0xcc9,2}}, + {{0x8,1},{0x9,2}}, {{0x27e0,3},{0xcbf,2}}, {{0x16a7,3},{0x2280,2}}, {{0xf,1},{0xf,1}}, + {{0x1497,5},{0x2f5a,4}}, {{0xfb0,2},{0x9,1}}, {{0x19b7,3},{0xcc3,2}}, {{0x1019,9},{0xed6,2}}, + {{0xcce,3},{0xe11,1}}, {{0x4765,3},{0x7a14,4}}, {{0x85b9,8},{0xcc9,2}}, {{0xc6ec,4},{0xf32,2}}, + {{0xe78,1},{0xed9,2}}, {{0xcd3,1},{0xf02,2}}, {{0x1f114,5},{0x3372,4}}, {{0xe5b,3},{0x1ffa,3}}, + {{0xfbf,5},{0x1d7e,3}}, {{0x10b8,2},{0xec6,3}}, {{0x3957,6},{0x1054,3}}, {{0x1ff7,3},{0xe77,3}}, + {{0x122e,2},{0xe67,2}}, {{0xb74,4},{0xb74,4}}, {{0xcc9,2},{0x2c5b,4}}, {{0x1081,4},{0x43fd,4}}, + {{0x16f7,6},{0x1cf3,3}}, {{0x4765,3},{0xf1a,2}}, {{0x101f,2},{0xf7a,2}}, {{0xcbd,1},{0x23df,5}}, + {{0x1c91,4},{0x5989,2}}, {{0x1cd3,2},{0xccd,1}}, {{0xccb,2},{0xe11,2}}, {{0xd131,4},{0xe25,2}}, + {{0xe5e,2},{0x4,1}}, {{0x16a7,3},{0xfdf,3}}, {{0xf0d,2},{0xf70,5}}, {{0xed1,3},{0x4,1}}, + {{0xaaf,2},{0x3,1}}, {{0xe63f,4},{0xb,1}}, {{0x1667,5},{0x6,1}}, {{0xcc8,1},{0x8,1}}, + {{0x10a3,3},{0x168b,4}}, {{0x19b7,3},{0xccc,2}}, {{0xcd48,6},{0xcc3,3}}, {{0xf34,2},{0xfdf,4}}, + {{0x1393,3},{0xe0a,1}}, {{0x16a7,3},{0xe7d,2}}, {{0x1f25,4},{0x1f38,4}}, {{0x122d,2},{0x4,1}}, + {{0x11a6,2},{0xed6,2}}, {{0x5534,6},{0xed6,2}}, {{0xf77,3},{0x5e94,5}}, {{0xcf37,6},{0x59b4,3}}, + {{0xfb0,2},{0x16e3,4}}, {{0x19b7,3},{0x8,1}}, {{0x1967,3},{0x1ebf,3}}, {{0x145b,2},{0xe71,1}}, + {{0xcc7,1},{0xcc3,2}}, {{0xccd,1},{0xe95,2}}, {{0xf89,3},{0xcce,2}}, {{0x113c,5},{0x16e3,4}}, + {{0x5269,6},{0x1252,3}}, {{0xe0f,1},{0xf4f,1}}, {{0xe65,2},{0xe71,1}}, {{0x1ebc,6},{0xe0a,1}}, + {{0xed1,4},{0xec3,3}}, {{0xf89,3},{0xf16,2}}, {{0x7b,1},{0x45,1}}, {{0xf77,3},{0x1062,2}}, + {{0x1677,3},{0x7a14,4}}, {{0x6d1f,5},{0xec0,3}}, {{0x1b8c9,5},{0x3372,4}}, {{0x70ad,3},{0x7c25,4}}, + {{0x10a3,3},{0xf59,2}}, {{0x1877,5},{0x15af,3}}, {{0xaaf,2},{0x7905,1}}, {{0x16a7,5},{0xf4a,5}}, + {{0xe71,1},{0x5,1}}, {{0x1967,3},{0xf0d,2}}, {{0x22e5,4},{0x178a,3}}, {{0x21,1},{0x314,2}}, + {{0x4f36,5},{0xf86,3}}, {{0xe5b,3},{0xcc6,2}}, {{0xc6ec,4},{0xccd,1}}, {{0x1303,3},{0xe11,1}}, + {{0x1567,3},{0xfe8,2}}, {{0xdaa5,7},{0xe11,1}}, {{0xae69,5},{0xcba,2}}, {{0x2d1f,3},{0xcc9,2}}, + {{0x1467,6},{0x146d,4}}, {{0x2dec3,5},{0x7b,1}}, {{0xf59,2},{0xcc8,1}}, {{0xf77,3},{0x6,1}}, + {{0x1e08,5},{0x8b5e,5}}, {{0x1e08,5},{0x4,1}}, {{0xccb,2},{0xeed,2}}, {{0xef7,3},{0x2522,5}}, + {{0xa701,6},{0x4,1}}, {{0x29cf,3},{0x2,1}}, {{0xf77,4},{0x10b9,2}}, {{0xc371,5},{0xe0d,2}}, + {{0xe71,1},{0x8,1}}, {{0xcc1,1},{0xed6,2}}, {{0xe5b,3},{0x309c,4}}, {{0x1a07,3},{0xe75,2}}, + {{0x1dea,6},{0x13c3,4}}, {{0x3559,4},{0x4574,3}}, {{0x9a4,3},{0xed6,2}}, {{0x1a07,3},{0x1132,2}}, + {{0x4952,6},{0xe6b,3}}, {{0xb,1},{0xcba,2}}, {{0x4137,5},{0xf20,2}}, {{0x12e5,3},{0xed9,2}}, + {{0xe21,1},{0xedd,1}}, {{0x115a,3},{0xec3,3}}, {{0xe19,1},{0xb,1}}, {{0x158f,3},{0x138e,3}}, + {{0x27ef,5},{0x237d,2}}, {{0xe83,3},{0xe7d,2}}, {{0x2489,5},{0xed6,2}}, {{0xee4,4},{0xcc1,1}}, + {{0x10b4,4},{0x11d9,3}}, {{0x4383,5},{0x1288,4}}, {{0x105f,3},{0x1790,3}}, {{0x2dec3,5},{0xf,1}}, + {{0x114d,4},{0xfb0,2}}, {{0x4,1},{0x5,1}}, {{0x16a7,3},{0x6d42,4}}, {{0xe2f,1},{0xfa5,3}}, + {{0x1c82,6},{0x146d,4}}, {{0xe09,1},{0xf63,2}}, {{0x3a53,4},{0x6,2}}, {{0x17f7,6},{0xcc3,2}}, + {{0xcbd,1},{0xcbe,3}}, {{0x27ef,4},{0x2917,3}}, {{0x27e0,4},{0xec6,3}}, {{0x127f,3},{0xf4a,5}}, + {{0xed6,2},{0x15e9,3}}, {{0x3d47,6},{0x14ff,3}}, {{0xebe,5},{0x142a,3}}, {{0x191e7,6},{0xcc9,2}}, + {{0xcd2,2},{0xcc9,2}}, {{0xcc7,1},{0xec6,3}}, {{0x1847,5},{0x7efc,4}}, {{0xe,1},{0x9f,1}}, + {{0x9a8,1},{0xed6,2}}, {{0xe83,3},{0x17c0,2}}, {{0x1288,4},{0xe6b,3}}, {{0xcf6,1},{0xcf6,1}}, + {{0x2f71,4},{0xfdf,3}}, {{0x10a3,3},{0x15399,2}}, {{0x8,1},{0x8,1}}, {{0x10c5,4},{0xccc,2}}, + {{0x111a,3},{0x1bef,2}}, {{0x1b962,5},{0x121a6,4}}, {{0x2de7b,3},{0xf,1}}, {{0xef7,3},{0xe8a,2}}, + {{0xe83,3},{0xfb8,3}}, {{0x10c5,4},{0xe8a,2}}, {{0xe16,1},{0xf4f,1}}, {{0xf80,2},{0xeb9,5}}, + {{0x1ff7,3},{0xe0b,2}}, {{0xe67,2},{0x149c,3}}, {{0x225ab,6},{0xe11,1}}, {{0x6644,5},{0xe92,3}}, + {{0x16a7,3},{0x5edd,6}}, {{0x12090,8},{0x6,1}}, {{0x12e5,3},{0xebb,3}}, {{0xe83,3},{0xefa,2}}, + {{0xfa5,2},{0xcbf,2}}, {{0xf0c,1},{0xe99,1}}, {{0x12d4,3},{0x3356,4}}, {{0xcc1,1},{0xec6,3}}, + {{0x113c,3},{0x1177,7}}, {{0xe09,1},{0xe0d,2}}, {{0x1977,4},{0xe11,2}}, {{0xe5b,3},{0x1692,5}}, + {{0xb69d,3},{0xe09,1}}, {{0xee9,2},{0x4,1}}, {{0xf77,4},{0x9a6,1}}, {{0x2ffd,6},{0x1859,4}}, + {{0xe78,1},{0xee9,4}}, {{0x4781,3},{0x2,1}}, {{0x27e0,5},{0x1692,2}}, {{0xe22,2},{0x6,1}}, + {{0x1467,4},{0x155e,3}}, {{0x2c59,4},{0xf35,3}}, {{0x1109,5},{0xeee,3}}, {{0x1a07,3},{0xcc8,1}}, + {{0x39d5,7},{0xed9,2}}, {{0x1677,3},{0xe2b,2}}, {{0x1e9e,5},{0x3286,3}}, {{0x9fe1,7},{0x9ff4,5}}, + {{0xe77,3},{0xe95,2}}, {{0x1557,4},{0x141a,2}}, {{0x213e9,5},{0xec6,3}}, {{0xe22,2},{0x30f7,2}}, + {{0xef7,3},{0xefa,2}}, {{0xef7,3},{0x149c,3}}, {{0x101f,2},{0xcc9,2}}, {{0x2,1},{0xed9,2}}, + {{0xe09,1},{0xe69,5}}, {{0xef7,3},{0xefa,3}}, {{0xcbd,1},{0xe09,1}}, {{0xe936,8},{0x2,1}}, + {{0x1e62,5},{0x1b4f,5}}, {{0x1a07,3},{0x78d1,4}}, {{0xbfc1,5},{0xcbf,2}}, {{0x2a47,3},{0xcc7,1}}, + {{0x11b3,4},{0xcc7,1}}, {{0xe1f,3},{0xcc9,2}}, {{0x111a,3},{0xf1f,3}}, {{0x125d,5},{0x10b9,2}}, + {{0xf89,3},{0x82d5,5}}, {{0xccb,2},{0xe71,1}}, {{0x2,1},{0x3,2}}, {{0x1189,3},{0xe09,1}}, + {{0xe86,2},{0xcc1,1}}, {{0x8,1},{0xe0d,2}}, {{0x6,1},{0xf70,2}}, {{0x125d,6},{0x1150,2}}, + {{0x2,1},{0xcc9,2}}, {{0x9a8,1},{0x120c,3}}, {{0x2de7b,3},{0xd,1}}, {{0xf0a,3},{0xa,2}}, + {{0x2966,5},{0xe80,2}}, {{0xfb0,2},{0xec6,3}}, {{0x417d,5},{0x113e,3}}, {{0xebe,4},{0xe2b,2}}, + {{0x1cfa,5},{0xe69,6}}, {{0x101f,2},{0x23e1,3}}, {{0x27e0,3},{0xf1a,2}}, {{0x2de63,3},{0x45,1}}, + {{0xe97,3},{0x4767,1}}, {{0x2dec3,5},{0x21,1}}, {{0x105f,3},{0xf0d,2}}, {{0xe6f,3},{0x168a,5}}, + {{0x4f91,5},{0x251a,5}}, {{0x7b51,4},{0x9a6,1}}, {{0xeb5,2},{0x4,1}}, {{0xf,1},{0x9f,1}}, + {{0x17e7,6},{0xed6,3}}, {{0x46bd,3},{0x142a,3}}, {{0x1367,4},{0x286d,3}}, {{0xcfc6,6},{0xe11,1}}, + {{0x4765,3},{0xed6,2}}, {{0xf32,2},{0x40a5,6}}, {{0xcd3,1},{0x12bf,4}}, {{0x28b2,5},{0xefa,3}}, + {{0x16a7,3},{0x10cb,2}}, {{0x10cb,4},{0xe11,1}}, {{0x10c5,4},{0xcd2,2}}, {{0xcbd,1},{0x810e,3}}, + {{0xf0f,2},{0xe11,1}}, {{0x10a3,3},{0xe7f,2}}, {{0x1367,3},{0x453b,4}}, {{0xaaf,2},{0xbb4,2}}, + {{0x1367,3},{0xec0,3}}, {{0x12e5,3},{0x178a,3}}, {{0x959d,4},{0x121a6,4}}, {{0xf89,3},{0x181b,3}}, + {{0xe16,1},{0xcbd,1}}, {{0xe0a,1},{0xe0d,2}}, {{0x7bd9,3},{0x2,1}}, {{0x12d4,3},{0x1177,7}}, + {{0x2939,4},{0xe11,1}}, {{0x111a,3},{0x12a3,3}}, {{0x56c7,5},{0x17cc,4}}, {{0x127f,4},{0x11b5,2}}, + {{0x111a,3},{0x142d,3}}, {{0x1150,2},{0xed6,2}}, {{0x15e7,5},{0xf16,2}}, {{0xf03,2},{0xe75,2}}, + {{0x109b,2},{0xb,1}}, {{0xaaf,2},{0x28b3a,1}}, {{0x4519,4},{0xfe8,2}}, {{0xe80,2},{0xcc1,1}}, + {{0x8,1},{0x122e,2}}, {{0x46bd,3},{0xe22,2}}, {{0x16a7,3},{0x9b99,3}}, {{0xcbf,2},{0xf7a,2}}, + {{0x1bbf,4},{0x20bed,3}}, {{0xf89,3},{0x113f,2}}, {{0x3b09,4},{0x6b2b,6}}, {{0xcd3,3},{0xcc3,2}}, + {{0x1bbf,4},{0x309c,4}}, {{0x6,1},{0xfe8,2}}, {{0x10b9,2},{0xf7a,2}}, {{0xcc1,1},{0xe0d,2}}, + {{0x1ff7,3},{0x8,1}}, {{0x1747,4},{0xcc1,2}}, {{0x959d,4},{0xcc6,2}}, {{0x3694,3},{0xcd3,1}}, + {{0x10e7,5},{0x10ec,6}}, {{0xe25,2},{0xcc8,1}}, {{0x1153,2},{0xed6,2}}, {{0x1c82,10},{0x1059,3}}, + {{0x109b,2},{0x169d,4}}, {{0xe11,1},{0xe09,1}}, {{0xef7,3},{0xed9,2}}, {{0xcd3,1},{0xf79,3}}, + {{0x314,2},{0x314,2}}, {{0xe0f,1},{0x19b9,1}}, {{0xe16,1},{0xf15,1}}, {{0x1497,5},{0x583a,3}}, + {{0x3521,6},{0xed6,2}}, {{0x16a7,3},{0x5342,3}}, {{0xe19,1},{0xe99,1}}, {{0xcc1,1},{0xfa5,2}}, + {{0xf0c,1},{0x8,1}}, {{0xe92,3},{0xe71,1}}, {{0xcce,2},{0xe71,1}}, {{0x4765,3},{0xe86,2}}, + {{0xee4,4},{0xed6,2}}, {{0xe83,3},{0xe25,2}}, {{0x7b51,4},{0xcc3,2}}, {{0xeb5,2},{0xcd3,1}}, + {{0x205a1,2},{0x205a1,1}}, {{0x7e99,6},{0x7917,6}}, {{0x125d,5},{0xec6,3}}, {{0x1537,4},{0x286d,3}}, + {{0x122a,6},{0x1f76,5}}, {{0x4853,3},{0xf1a,2}}, {{0xeb5,2},{0xf84,5}}, {{0xccb,2},{0xcbd,1}}, + {{0x9a4,3},{0xe11,1}}, {{0xcc1,1},{0xf35,3}}, {{0x8d,1},{0xe,1}}, {{0x269da,5},{0xe22,2}}, + {{0x5,2},{0xccd,1}}, {{0xe0a,1},{0x5,1}}, {{0x1587,4},{0x138e,4}}, {{0xf24,2},{0xe11,1}}, + {{0xe5b,4},{0x3,2}}, {{0x3019,6},{0x1d7e,3}}, {{0xe235,7},{0x1be9,3}}, {{0xf77,4},{0x3640,4}}, + {{0xf77,6},{0xe6c,3}}, {{0x7b,1},{0x9f,1}}, {{0x1bec,5},{0x1f38,4}}, {{0x20f6,6},{0x2261,3}}, + {{0x149aa,5},{0x1d75,3}}, {{0xe6f,3},{0xa,2}}, {{0x205a1,1},{0x205a0,2}}, {{0x58a8,5},{0x4d85,4}}, + {{0x79c5,4},{0x11a6,2}}, {{0x5,1},{0x5538,2}}, {{0x1153,2},{0xcc9,2}}, {{0x4,1},{0x11dc,3}}, + {{0xcc8,1},{0xcbd,1}}, {{0x4767,1},{0xcba,2}}, {{0xef7,3},{0xf50,3}}, {{0xf0a,3},{0xcc7,1}}, + {{0x3965,5},{0x1e8b,3}}, {{0x712f,4},{0x2,1}}, {{0x5,1},{0xe86,2}}, {{0x111a,3},{0xf62,3}}, + {{0x12bfa,6},{0x12bf,4}}, {{0x1977,4},{0xed5,4}}, {{0x114d,5},{0x15dc,3}}, {{0x1a07,3},{0x22a3,2}}, + {{0x1967,3},{0xed6,2}}, {{0x1a07,3},{0xe71,1}}, {{0x3203,7},{0xe0a,1}}, {{0xf0a,3},{0xcb8,1}}, + {{0xed1,4},{0xe60,2}}, {{0x12a1,4},{0x143c,4}}, {{0xf59,2},{0x2,1}}, {{0x14ff,3},{0xf70,2}}, + {{0x1905b,6},{0xe11,1}}, {{0x3a45,5},{0xed9,2}}, {{0x164bc,7},{0xf7a,2}}, {{0xbdb1,5},{0x175c,3}}, + {{0x5f35,8},{0xe11,1}}, {{0xf77,5},{0x1cd5,4}}, {{0xed1,3},{0xccd,1}}, {{0x125d,6},{0xe22,2}}, + {{0xe77,2},{0xeb5,2}}, {{0x15ed6,5},{0xf62,3}}, {{0xc16,2},{0xc16,2}}, {{0x109b,2},{0xe0d,2}}, + {{0xee8,5},{0xeed,4}}, {{0x1587,4},{0xe71,1}}, {{0xeee,3},{0xed9,2}}, {{0x127f,3},{0xccd,1}}, + {{0x2d79,5},{0xed9,2}}, {{0xe77,2},{0xed9,2}}, {{0x205a9,1},{0x205a1,1}}, {{0xcbd,1},{0x11b5,2}}, + {{0x142d4,6},{0xe11,1}}, {{0x433d,4},{0xccb,2}}, {{0x247a,9},{0xeed,4}}, {{0x127f,3},{0xf63,2}}, + {{0xf24,2},{0xe0d,2}}, {{0x21,1},{0xd,1}}, {{0xd22e,8},{0xe11,1}}, {{0x1a07,3},{0x9a8,1}}, + {{0xf0c,1},{0xe32,1}}, {{0xe6f,3},{0xe65,2}}, {{0x7351,4},{0x319a,3}}, {{0xe89,2},{0xfe0,2}}, + {{0xaaf,2},{0x20561,1}}, {{0x1caf,7},{0xe11,1}}, {{0x4853,3},{0x1601,3}}, {{0x1a1a7,5},{0x1b9d,4}}, + {{0x79f5,5},{0xb,1}}, {{0x111a,3},{0xcce,3}}, {{0xf77,3},{0xe92,3}}, {{0x8ba1,6},{0xebc,2}}, + {{0xc95f,6},{0x1150,2}}, {{0x2f9b,4},{0xcb8,1}}, {{0xef7,3},{0x277a,3}}, {{0x7935,5},{0x30f7,2}}, + {{0xe67,2},{0xe89,2}}, {{0xed9,2},{0x4,1}}, {{0x8,1},{0x156a,3}}, {{0x2e895,2},{0xcb8,1}}, + {{0xf57,2},{0x6,2}}, {{0xcbd,1},{0x3976,3}}, {{0x9fe1,7},{0xcc3,3}}, {{0x3537,2},{0x2,1}}, + {{0x111a,3},{0xf86,2}}, {{0xee59,3},{0xe0d,2}}, {{0x5,2},{0xe5e,2}}, {{0xf77,3},{0xcbf,2}}, + {{0x6cde,4},{0x4516,3}}, {{0x1367,3},{0x9bd1,3}}, {{0xe99,1},{0x8,1}}, {{0xe37,2},{0x2b0aa,2}}, + {{0xb,1},{0xf7a,2}}, {{0x1a07,3},{0x142a,3}}, {{0x6,1},{0x1062,2}}, {{0xe89,2},{0x9a9,2}}, + {{0xf0a,3},{0x2f2e,4}}, {{0x1131,3},{0xe6b,3}}, {{0xe8a,2},{0xe32,1}}, {{0x82b9,6},{0xe11,1}}, + {{0x10a3,3},{0x286d,3}}, {{0x2015,3},{0x8,1}}, {{0xf77,3},{0x190e6,3}}, {{0xcc1,2},{0xe7f,2}}, + {{0xcbd,1},{0x4,1}}, {{0xebe,4},{0x1f38,1}}, {{0xf0f,2},{0xec6,3}}, {{0xf0a,3},{0xf32,2}}, + {{0x1019,4},{0xfdf,3}}, {{0xee9,2},{0xcc7,1}}, {{0x2de7b,3},{0x21,1}}, {{0x2d1f,3},{0xec6,3}}, + {{0xe11,2},{0x5,1}}, {{0x1677,3},{0xe0a,1}}, {{0x2ba5,1},{0xedd,1}}, {{0x9,2},{0xe0a,1}}, + {{0x27ef,4},{0x157b,3}}, {{0x6,2},{0xfcb,2}}, {{0xb3e8,6},{0x66c2,3}}, {{0xcbd,1},{0x1153,2}}, + {{0x19b7,3},{0x2280,2}}, {{0xcc8,1},{0xe2b,2}}, {{0x10a3,3},{0x1663,3}}, {{0x1967,3},{0xf1a,2}}, + {{0xf,1},{0x69,1}}, {{0x35a2,4},{0xed9,2}}, {{0x9a8,1},{0x155e,3}}, {{0x2501,5},{0x4132,5}}, + {{0x1ff7,3},{0x1ffa,3}}, {{0x2015,3},{0x3537,2}}, {{0xccb,2},{0xe75,2}}, {{0x3eb3,8},{0x17c0,2}}, + {{0x29c0,3},{0xe75,2}}, {{0x1569,3},{0x14f9,3}}, {{0x1977,3},{0xcd4,2}}, {{0xab1,4},{0xab1,4}}, + {{0x111a,3},{0x39b3,5}}, {{0x70ad,3},{0x1303,3}}, {{0x1c3f7,5},{0xe0a,1}}, {{0xe83,3},{0x80c5,3}}, + {{0x1189,3},{0xed6,2}}, {{0x10a3,3},{0x775c,4}}, {{0xe83,3},{0xcd3,1}}, {{0xf0f,2},{0x5538,2}}, + {{0xf29f,6},{0x431f,2}}, {{0xec3,3},{0xe67,2}}, {{0x2858,5},{0x1c76,3}}, {{0xf1a,2},{0xed5,3}}, + {{0x1dee,2},{0xed9,2}}, {{0x2,1},{0x30f7,2}}, {{0x2a47,3},{0xcbd,1}}, {{0xfcb,2},{0xeab,2}}, + {{0xe6f,3},{0x5ea9,3}}, {{0x8,1},{0x2,1}}, {{0xe2b,2},{0xe0d,2}}, {{0x2de7b,3},{0x69,1}}, + {{0x12e5,3},{0xfa5,2}}, {{0x3019,6},{0xfb8,3}}, {{0x1487,4},{0xcc3,2}}, {{0x1677,3},{0x2d8d,3}}, + {{0x9,1},{0xe0a,1}}, {{0x10c5,4},{0x27dc,4}}, {{0xe25,2},{0xf7a,2}}, {{0xf89,3},{0x93b4,7}}, + {{0xe0d,2},{0x3,1}}, {{0x5881,5},{0xeee,3}}, {{0x127f,4},{0x4e60,2}}, {{0xcc3,2},{0xe80,2}}, + {{0x16b7,4},{0xa045,8}}, {{0x113c,3},{0x1089,3}}, {{0xcf37,6},{0x6e53,4}}, {{0xccd,1},{0x286d,3}}, + {{0x5,1},{0xe22,2}}, {{0xd131,4},{0xe0d,2}}, {{0xe,1},{0xe,1}}, {{0x2e27d,1},{0x20579,1}}, + {{0xef7,3},{0x14f9,3}}, {{0xf4f,1},{0xcbd,1}}, {{0xb34,4},{0xb34,4}}, {{0xf89,3},{0x6,2}}, + {{0x1ff7,3},{0x109b,2}}, {{0x19f7,4},{0x1898e,5}}, {{0xe19,1},{0xe7a,1}}, {{0x5722,5},{0x59b4,3}}, + {{0x2de7b,3},{0x8d,1}}, {{0x1019,4},{0x1ffa,3}}, {{0x1081,4},{0x12a3,3}}, {{0xcc7,1},{0x6,1}}, + {{0x2240,4},{0x1ebf,3}}, {{0x27e0,3},{0xfdf,3}}, {{0x1e9e,8},{0xed9,2}}, {{0x10172,7},{0xec6,3}}, + {{0xb,1},{0x6,1}}, {{0xe11,1},{0x1150,2}}, {{0xcc8,1},{0xf194,3}}, {{0xc015,4},{0x12a3,3}}, + {{0x37c1,7},{0xcc3d,3}}, {{0x2d1f,3},{0xa,2}}, {{0x142d4,6},{0xcc9,2}}, {{0xf,1},{0x8d,1}}, + {{0xf,1},{0x21,1}}, {{0xab1,1},{0x205a1,1}}, {{0x1ff7,3},{0x2d8d,3}}, {{0x1694e,5},{0x16ad,3}}, + {{0x1687,6},{0x111c,2}}, {{0x29cf,3},{0xe7f,2}}, {{0x1367,3},{0x4a00,4}}, {{0x1967,3},{0x2,1}}, + {{0x112b,5},{0xccd,1}}, {{0x1f38,1},{0x2c85,2}}, {{0x9af,2},{0x78a3,2}}, {{0x1702e,4},{0x286d,3}}, + {{0x1747,4},{0xcbf,2}}, {{0xb74,1},{0x307bb,1}}, {{0x27ce9,5},{0xccd,1}}, {{0x79c5,4},{0x1bf0,2}}, + {{0xe19,1},{0xf0c,1}}, {{0x20f6,5},{0x1252,3}}, {{0x7929,4},{0x123e,3}}, {{0x1c37,6},{0x10bb,5}}, + {{0xaaf,2},{0xb74,3}}, {{0xe0a,1},{0xcbd,1}}, {{0x9da1,5},{0xcc7,1}}, {{0xe0eb,5},{0xe67,2}}, + {{0x2f71,4},{0x2d11,3}}, {{0x146d,4},{0xe69,5}}, {{0xf77,4},{0x136ee,5}}, {{0x3a1b,5},{0x10d2,4}}, + {{0x10c5,4},{0x5538,2}}, {{0x125d,6},{0xf70,2}}, {{0xe2b,2},{0x9a9,2}}, {{0xe11,1},{0xed6,2}}, + {{0x56ee,6},{0xfbb,4}}, {{0xef7,3},{0x10d3,3}}, {{0xef7,3},{0xe22,3}}, {{0xe83,3},{0xe77,2}}, + {{0x6,2},{0x1f7b,4}}, {{0x9e01,5},{0xcce,2}}, {{0xe19,1},{0xf15,1}}, {{0xef7,3},{0xce83,4}}, + {{0xe7f,2},{0xf7a,2}}, {{0x1c91,4},{0xf4a,5}}, {{0x3559,4},{0x492e,3}}, {{0xe71,1},{0xec6,3}}, + {{0x1569,2},{0xcc9,2}}, {{0x70ad,3},{0xb3e8,9}}, {{0xf,1},{0x57,1}}, {{0x4781,3},{0xcbd,1}}, + {{0x3019,6},{0x7d99,4}}, {{0x101f,3},{0xe6b,3}}, {{0x11a6,2},{0xe22,2}}, {{0x8,1},{0xcce,2}}, + {{0xe2b,2},{0xed6,2}}, {{0x7414,3},{0xec6,3}}, {{0xef7,7},{0x10e3,4}}, {{0x4781,3},{0x55ed,5}}, + {{0xfe0,2},{0xec6,3}}, {{0x2de7b,3},{0x7b,1}}, {{0xf,1},{0xe,1}}, {{0x1d72,7},{0xe6b,4}}, + {{0x112b,4},{0x11b5,2}}, {{0xef7,3},{0x162c,3}}, {{0x2f71,4},{0x9b99,3}}, {{0x16c96,5},{0xcc3,3}}, + {{0x70ad,3},{0xfb8,3}}, {{0x28df,5},{0x120c,3}}, {{0xccc,2},{0x9a4,3}}, {{0xde8e,4},{0xe1b,4}}, + {{0x1154c,4},{0x1807e,4}}, {{0x10e98,6},{0x5136,5}}, {{0x2939,4},{0xeb9,5}}, {{0x1787,6},{0xeee,3}}, + {{0xe86,2},{0xf7a,2}}, {{0xf77,4},{0xe78,2}}, {{0x1ff7,3},{0x951c,3}}, {{0xebe,5},{0xe67,2}}, + {{0x3a1b,5},{0x138e,2}}, {{0xcc1,1},{0xfb0,3}}, {{0x1487,4},{0xf13,2}}, {{0x2280,2},{0xec6,3}}, + {{0x9a8,1},{0xcbd,1}}, {{0x1487,4},{0x9a8,2}}, {{0xaac1,8},{0xf86,3}}, {{0x138e,2},{0xcc9,2}}, + {{0x4287,5},{0xbf50,4}}, {{0x127f,3},{0x3537,2}}, {{0xf77,4},{0xe78,1}}, {{0x62dd,4},{0xf04,2}}, + {{0x5534,6},{0xec6,3}}, {{0x45,1},{0x9f,1}}, {{0x2240,4},{0xf13,2}}, {{0xe75,2},{0xcce,2}}, + {{0x306d,6},{0xce8e,4}}, {{0x16a7,3},{0xef74,6}}, {{0xf,1},{0x7b,1}}, {{0x1290,4},{0x1294,6}}, + {{0x115e,7},{0x3640,4}}, {{0x20f6,6},{0xfdf,3}}, {{0x8829,6},{0xdc01,4}}, {{0x10a3,3},{0xd28b,5}}, + {{0xe09,1},{0x9,1}}, {{0x1969,1},{0xe32,1}}, {{0x4f36,5},{0x1b41,4}}, {{0x6644,5},{0x13e3,4}}, + {{0xef7,3},{0x16c4c,4}}, {{0x11b3,4},{0x3694,4}}, {{0x24f2,5},{0xcd3,2}}, {{0xe09,1},{0xe5e,2}}, + {{0xbd99,5},{0x6593,7}}, {{0xe75,2},{0xe6b,4}}, {{0x12e5,3},{0x158f,3}}, {{0x12d4,3},{0xcba,2}}, + {{0x1025,1},{0x2,1}}, {{0xe2b,2},{0xf7a,2}}, {{0xe2b,2},{0xf70,5}}, {{0x1ff7,3},{0xe92,3}}, + {{0x1467,5},{0x1692,2}}, {{0xb,1},{0xf91,3}}, {{0x3559,5},{0xed9,2}}, {{0xf1a,2},{0xcd3,1}}, + {{0x12e5,3},{0xcce,2}}, {{0x79c5,4},{0x23468,3}}, {{0x1f7f,5},{0xe5e,2}}, {{0x111a,3},{0x14f9,3}}, + {{0xed1,4},{0x101f,3}}, {{0xe08,1},{0xf4f,1}}, {{0x4853,3},{0xe0a,1}}, {{0x74f3,2},{0xf11,1}}, + {{0x1cd3,2},{0xec6,3}}, {{0xe5b,3},{0x62f3,4}}, {{0x1d18,5},{0x10d3,3}}, {{0x1f16,5},{0x1af2,5}}, + {{0x112b,4},{0x59b4,3}}, {{0x2df3b,4},{0x69,1}}, {{0x1a07,3},{0xcd1,2}}, {{0x9a8,1},{0x1393,4}}, + {{0x1577,4},{0x9a6,1}}, {{0x53d5,8},{0x277e,2}}, {{0x145b,2},{0xf4a,5}}, {{0xe32,1},{0x1153,2}}, + {{0x12e5,3},{0xefa,4}}, {{0xe0d,2},{0xf63,2}}, {{0x950d,6},{0xf91,3}}, {{0xedd,1},{0xe99,1}}, + {{0xe0d,2},{0xe78,1}}, {{0x1747,4},{0xccc,2}}, {{0x1099,4},{0xfdd,4}}, {{0xf7a,2},{0x2,1}}, + {{0xe32,1},{0xab9f,3}}, {{0xf0a,3},{0x296f,3}}, {{0x111a,3},{0xf91,3}}, {{0x1787,6},{0x101e,4}}, + {{0x1cfa,11},{0xf23,3}}, {{0xe11,1},{0xccd,1}}, {{0xefa,2},{0x9a6,1}}, {{0x27e0,3},{0xcc3d,3}}, + {{0xe,1},{0x69,1}}, {{0xcc7,1},{0xe2b,2}}, {{0xe16,1},{0x9a6,1}}, {{0x104a,3},{0xf35,3}}, + {{0x1007,6},{0xf59,2}}, {{0x54cc,5},{0x1254,6}}, {{0x1ff7,3},{0x51ac,4}}, {{0xccb,2},{0xcc7,1}}, + {{0x1150,2},{0xe32,1}}, {{0x1cfa,5},{0x10cb,2}}, {{0x1288,4},{0xcc9,2}}, {{0x8d,1},{0x8d,1}}, + {{0x1ff7,3},{0x49a6,3}}, {{0x1ff7,3},{0x1372,4}}, {{0x5538,2},{0xed6,2}}, {{0x46bd,3},{0x1b0d,3}}, + {{0x16a7,3},{0xcc6,2}}, {{0xe65,2},{0x4,1}}, {{0xed6,2},{0xcc1,1}}, {{0xfcb,2},{0x9a6,1}}, + {{0x1787,6},{0x101f,3}}, {{0xaaf,2},{0x1303,3}}, {{0xf89,3},{0x413d,5}}, {{0x16b7,5},{0xe0b,2}}, + {{0xe32,1},{0x12fe,2}}, {{0x29cf,3},{0x1859,4}}, {{0x4853,3},{0xe89,2}}, {{0x12f6,4},{0xfbb,3}}, + {{0x2de7b,3},{0x57,1}}, {{0x10a3,3},{0xf1d,2}}, {{0x5269,6},{0xc6bc,4}}, {{0x127f,3},{0x102d6,6}}, + {{0xfb0,2},{0xe6c,3}}, {{0x2dec3,5},{0xd,1}}, {{0xed1,4},{0x1153,2}}, {{0xcbd,1},{0xcd3,2}}, + {{0x9f,1},{0x9f,1}}, {{0xb,1},{0xcc9,2}}, {{0x1e9e,5},{0x237f,4}}, {{0xe5b,3},{0xefa,2}}, + {{0xed9,2},{0xe80,2}}, {{0xe09,1},{0x3,1}}, {{0x41a7,4},{0xe0a,1}}, {{0x2f71,4},{0x113f,2}}, + {{0x1807,5},{0x120b,4}}, {{0x1557,4},{0x113f,2}}, {{0x5534,6},{0xcc9,2}}, {{0x2dbf,5},{0xcd1,2}}, + {{0x9051,10},{0xe11,1}}, {{0x1497,5},{0x10b9,3}}, {{0x2280,2},{0xe0a,1}}, {{0x1657,8},{0xfe6,2}}, + {{0x5e58,6},{0xe11,1}}, {{0xe71,1},{0x168a,5}}, {{0x111a,3},{0x1393,3}}, {{0xf77,3},{0x168b,4}}, + {{0x7b45,4},{0xed6,2}}, {{0xf77,3},{0x1189,4}}, {{0xe09,1},{0x1be9,3}}, {{0x1df9,6},{0xe92,3}}, + {{0xe8a,2},{0xe11,1}}, {{0x2,1},{0xf7a,2}}, {{0x1367,3},{0x72d3,3}}, {{0x29cf,3},{0x8428,3}}, + {{0x2bd5,4},{0xe32,1}}, {{0xed1,4},{0x143c,4}}, {{0x4c37,5},{0x277e,2}}, {{0x11b5,2},{0xf59,2}}, + {{0x10b8,2},{0xed6,2}}, {{0xe0f,1},{0x74fc,2}}, {{0xe13,3},{0xe11,1}}, {{0x75db,4},{0x2bad,4}}, + {{0xefa,2},{0xcbd,1}}, {{0xe83,3},{0xa,2}}, {{0x328f,9},{0x1523,4}}, {{0x27e0,3},{0x1303,3}}, + {{0xcc1,1},{0xeb5,2}}, {{0xe,1},{0x7b,1}}, {{0xee4,4},{0xee8,9}}, {{0xed1,4},{0xcc1,1}}, + {{0xcbf,2},{0x9a6,1}}, {{0x7935,5},{0xe31,2}}, {{0x111a,3},{0x1790,3}}, {{0x1019,4},{0x1523,4}}, + {{0x2dec3,5},{0x69,1}}, {{0xcc8,1},{0xcce,2}}, {{0x1467,5},{0xcc9,2}}, {{0x1790,3},{0xe6b,3}}, + {{0x28d0,4},{0x355b,3}}, {{0x46bd,3},{0x18055,4}}, {{0x6,2},{0x1054,3}}, {{0xccb,2},{0x1150,2}}, + {{0xf89,3},{0x453b,4}}, {{0x1977,3},{0xe0f,1}}, {{0x10c5,4},{0x145b,2}}, {{0x11cb,3},{0xed6,2}}, + {{0x10c5,4},{0x2,1}}, {{0x1ff7,3},{0x44b2,5}}, {{0x10c5,4},{0x1510,4}}, {{0xcd3,2},{0x8,1}}, + {{0x1c91,4},{0x1ebe,3}}, {{0x1e8b,3},{0xb,1}}, {{0xf77,6},{0x1044,4}}, {{0xee4,4},{0xf261,3}}, + {{0x105f,3},{0xf35,2}}, {{0xe16,1},{0x19b9,1}}, {{0xf59,2},{0x12bf,4}}, {{0x155e,3},{0xbf5d,4}}, + {{0x9351,5},{0x2271,3}}, {{0xf80,2},{0x5,1}}, {{0x1024,2},{0xec6,3}}, {{0x2d79,4},{0xf0d,2}}, + {{0x29cf,3},{0xcc3,2}}, {{0x1702e,4},{0x5342,3}}, {{0xe32,1},{0x1593,3}}, {{0x1a07,3},{0xec7,2}}, + {{0x19b7,3},{0x237d,2}}, {{0x5722,5},{0xed6,2}}, {{0xe99,1},{0x5,1}}, {{0x6,1},{0xfcb,2}}, + {{0x7d0d,6},{0xcc9,2}}, {{0x46bd,3},{0x26ca8,3}}, {{0x9a6,1},{0xcba,3}}, {{0xe22,2},{0x1ac7,3}}, + {{0x1109,5},{0x21a5,5}}, {{0x2a47,3},{0xf1a,2}}, {{0xef7,3},{0x2,1}}, {{0x712f,4},{0xf1a,2}}, + {{0x12e5,3},{0x123e,3}}, {{0x41e8,5},{0x4,1}}, {{0x6cde,4},{0x1593,3}}, {{0xeacd,5},{0x2,1}}, + {{0x125d,5},{0xeed,4}}, {{0x142d,3},{0x4,1}}, {{0x1857,4},{0xcd2,2}}, {{0xeb5,2},{0xf7a,2}}, + {{0x1ebc,8},{0xf24,2}}, {{0x41e9,4},{0x4,1}}, {{0xcd2,2},{0x15d1,5}}, {{0x45,1},{0x69,1}}, + {{0xe,1},{0x57,1}}, {{0xe6f,3},{0x492e,3}}, {{0x1c91,4},{0x120b,4}}, {{0x14932,6},{0xcc9,2}}, + {{0x10a5,2},{0xeab,2}}, {{0x39b9,4},{0xf7a,2}}, {{0xcd3,1},{0x1f38,1}}, {{0xef7,3},{0x180a,3}}, + {{0x11b3,5},{0x101f,3}}, {{0x6,2},{0x10f4,4}}, {{0xf0a,3},{0xed6,2}}, {{0x45,1},{0x57,1}}, + {{0x11fa9,5},{0x142a,3}}, {{0x27e0,3},{0x2c85,2}}, {{0x9a6,1},{0x2,1}}, {{0x19b7,3},{0xf7a,2}}, + {{0x16a7,3},{0xcf04,3}}, {{0xe7a,1},{0xf0c,1}}, {{0x3ad1,8},{0xcc9,2}}, {{0x11b3,4},{0xf62,3}}, + {{0x29cf,3},{0x2e29,3}}, {{0x12b5,2},{0x7030,6}}, {{0x8,1},{0x59b4,3}}, {{0xedd,1},{0xf4f,1}}, + {{0x29cf,3},{0xf16,2}}, {{0xa,2},{0xcc9,2}}, {{0xe32,1},{0xf12,3}}, {{0x1967,3},{0x2d8d,3}}, + {{0x1e08,5},{0x1050,4}}, {{0xe33,1},{0x8,1}}, {{0x5a21,7},{0x7b72,3}}, {{0x9e55,4},{0xf7a,2}}, + {{0x13974,7},{0xe95,2}}, {{0xe16,1},{0x4,1}}, {{0xe65,2},{0x9,1}}, {{0x6d1f,5},{0x2280,2}}, + {{0xaaf,2},{0xfcb,2}}, {{0x1ff7,3},{0xcc9,2}}, {{0xcc1,1},{0x296f,3}}, {{0x2,1},{0xe0a,1}}, + {{0xad19,6},{0xf0f,2}}, {{0x62ea,5},{0x91cd,4}}, {{0x1531e,5},{0xe7f,2}}, {{0x1150,2},{0xe0a,1}}, + {{0x1969,1},{0xe89,2}}, {{0x12a9,3},{0xf63,2}}, {{0x15399,2},{0xcc9,2}}, {{0x1303,3},{0xcc9,2}}, + {{0x550d,5},{0x15fe,4}}, {{0xe16,1},{0x1969,1}}, {{0x4f29,5},{0x4,1}}, {{0xcbd,1},{0x10cb,4}}, + {{0x496c,5},{0x1b41,4}}, {{0xcd3,2},{0x30f7,2}}, {{0x147f2,7},{0xe11,1}}, {{0xd131,4},{0xcbf,2}}, + {{0x162c,3},{0x10cb,2}}, {{0xe0b,2},{0x3075,3}}, {{0xfa5,2},{0xcbd,1}}, {{0x2ea8,4},{0x2,1}}, + {{0x4781,3},{0x3080,4}}, {{0xe0a,1},{0xf32,2}}, {{0x2240,4},{0x10d3,3}}, {{0xe67,2},{0x3075,3}}, + {{0xf89,3},{0xe86,2}}, {{0x7b45,4},{0xf91,3}}, {{0xf0a,3},{0xe22,2}}, {{0x385b,7},{0xe78,2}}, + {{0x16a7,3},{0x5e94,5}}, {{0x1c91,4},{0x1859,4}}, {{0x2968,3},{0xe0a,1}}, {{0xe78,1},{0xeb5,2}}, + {{0x112b,6},{0x1131,3}}, {{0x2006,4},{0x3642,2}}, {{0x1ff7,3},{0x1e65,3}}, {{0x3b09,4},{0x12bf,4}}, + {{0x8d,1},{0x9f,1}}, {{0x27e0,3},{0x3444,6}}, {{0x45,1},{0x7b,1}}, {{0x45,1},{0x21,1}}, + {{0x465b,5},{0xe11,1}}, {{0x1a07,3},{0xf15,1}}, {{0xef7,4},{0x156a,3}}, {{0xcb8,1},{0x4921,4}}, + {{0xfa6,3},{0xe6b,3}}, {{0x27e0,3},{0x12fd,3}}, {{0x23a53,5},{0xfb0,2}}, {{0xa,2},{0x138e,3}}, + {{0xe8a,2},{0x2,1}}, {{0x17146,4},{0x4b55,5}}, {{0x6,1},{0xe5e,2}}, {{0x1bcd4,5},{0xe11,1}}, + {{0x750b,4},{0x22877,4}}, {{0x10a3,3},{0xb,1}}, {{0xcd3,1},{0x1059,3}}, {{0x105f,3},{0x4a01,3}}, + {{0x1af54,6},{0xe95,2}}, {{0xe936,8},{0xcc9,2}}, {{0x1109,5},{0x30c6,3}}, {{0x1025,1},{0x1025,1}}, + {{0xcc7,1},{0xcc7,1}}, {{0xed9,2},{0xcc9,2}}, {{0xebca,8},{0xcc9,2}}, {{0x45,1},{0xe,1}}, + {{0x1677,3},{0x113f,2}}, {{0xc371,5},{0xe80,2}}, {{0xef7,3},{0x276b,4}}, {{0x10b4,4},{0x122e,2}}, + {{0x8,1},{0xf7a,2}}, {{0xe2b,2},{0x1024,2}}, {{0x10cb4,4},{0xcd2,2}}, {{0xf77,6},{0x1780,3}}, + {{0x1677,3},{0xcc3,2}}, {{0xef7c,6},{0x2872,4}}, {{0x3bbf,8},{0xe67,2}}, {{0x2ae43,5},{0xeb5,2}}, + {{0x5,1},{0x11b5,2}}, {{0x1092,7},{0x431c,5}}, {{0x1567,3},{0x15d1,5}}, {{0xf16,2},{0xec6,3}}, + {{0x3107,5},{0xeab,2}}, {{0xe21,1},{0x2,1}}, {{0x1ff7,3},{0x6,2}}, {{0xeab,2},{0xf86,2}}, + {{0xe86,2},{0xcbd,1}}, {{0x1109,5},{0xe62,3}}, {{0xe09,1},{0x9a8,1}}, {{0x1081,4},{0x3b49,6}}, + {{0x237b,8},{0xe11,1}}, {{0x16a7,3},{0xfb0,3}}, {{0x2dec3,5},{0x45,1}}, {{0x3329,5},{0xfcb,2}}, + {{0x1231c,6},{0x286d,3}}, {{0x236c,4},{0xeb4,3}}, {{0x10a3,3},{0xfa6,3}}, {{0x2,1},{0xeab,2}}, + {{0x1567,3},{0xeb5,2}}, {{0x1647,5},{0x10dc,2}}, {{0xfa2f,9},{0xe95,2}}, {{0xf0a,3},{0xeab,2}}, + {{0x1a27,4},{0x9a6,1}}, {{0x39b9,4},{0xed9,2}}, {{0x14a7,4},{0x14ab,4}}, {{0x1007,5},{0xe78,1}}, + {{0xd,1},{0x314,2}}, {{0xcc6,2},{0xe0a,1}}, {{0x2501,5},{0xc6bc,4}}, {{0x1081,5},{0x1d3c,3}}, + {{0xf89,3},{0x1077,6}}, {{0x2ba5,1},{0x2ba5,1}}, {{0x45,1},{0xf,1}}, {{0xed1,3},{0x30ba,7}}, + {{0x1557,4},{0xcc3,3}}, {{0x1b2e1,6},{0xe11,1}}, {{0x4f02,5},{0x3a30,6}}, {{0xef7,3},{0xe0a,1}}, + {{0x1677,3},{0xcce,2}}, {{0xcc8,1},{0xcc9,2}}, {{0x1882c,6},{0x4,1}}, {{0x6,1},{0x11d2,3}}, + {{0x2280,2},{0xf7a,2}}, {{0x1537,4},{0x1258,5}}, {{0x19e7,5},{0xccd,1}}, {{0xcb8,1},{0x189f,3}}, + {{0xe5b,3},{0xe0b,4}}, {{0x10c5,4},{0x28e1,3}}, {{0x70ad,3},{0xec0,3}}, {{0x1150,2},{0x4,1}}, + {{0x7d31,5},{0xcc9,2}}, {{0x1252,3},{0x14f9,3}}, {{0x4383,5},{0x1b4f,5}}, {{0x27e0,3},{0x288b,2}}, + {{0x1ff7,3},{0x12a3,3}}, {{0xf1a,2},{0x11d2,3}}, {{0x1367,3},{0x1252,3}}, {{0xf89,3},{0xf0f,2}}, + {{0x6cc4,4},{0x10d3,3}}, {{0x141a,2},{0xe86,2}}, {{0x127f,5},{0xcd3,1}}, {{0xe32,1},{0x6,1}}, + {{0xe83,3},{0x10cb,2}}, {{0xa,2},{0xec6,3}}, {{0xe83,3},{0xe89,2}}, {{0xf4f,1},{0xcc3,2}}, + {{0x8d,1},{0x69,1}}, {{0x4ef5,4},{0xcba,2}}, {{0xcc8,1},{0xce8e,4}}, {{0xe80,2},{0xf1d,2}}, + {{0x111a,3},{0x1fbe,3}}, {{0xedd,1},{0x3,1}}, {{0x1692,2},{0xed6,2}}, {{0x794d,6},{0xcc9,2}}, + {{0x111a,3},{0xa,2}}, {{0x61cc,5},{0xe1c,3}}, {{0x1b2e1,6},{0xcc9,2}}, {{0x1917,4},{0x11d9,3}}, + {{0xf0a,3},{0x1047,3}}, {{0x7aa9,6},{0x11b5,2}}, {{0xe7a,1},{0xb,1}}, {{0x89e5,8},{0xebc,2}}, + {{0x115e,5},{0xf01,4}}, {{0x9f81,6},{0xf70,2}}, {{0x1967,3},{0xf15,1}}, {{0x2ba5,1},{0x2,1}}, + {{0x1807,5},{0xcce,2}}, {{0x29cf,3},{0xe13,3}}, {{0x2de57,3},{0x45,1}}, {{0x9129,5},{0x794f,4}}, + {{0xe83,3},{0xe92,3}}, {{0xcc1,1},{0x1062,2}}, {{0xf0f,2},{0xf63,2}}, {{0xed1,5},{0x5,2}}, + {{0xf,1},{0xd,1}}, {{0x10a3,3},{0xe0d,2}}, {{0x8d,1},{0x7b,1}}, {{0x1367,3},{0x1780,3}}, + {{0x85b9,8},{0xe11,1}}, {{0x1f38,1},{0x142a,3}}, {{0x77e3,6},{0x1f7c,3}}, {{0x416f,5},{0x3933,4}}, + {{0xee4,4},{0xe11,1}}, {{0x17f7,6},{0xe22,3}}, {{0xb15d,7},{0xcc9,2}}, {{0x1e08,5},{0xccd,1}}, + {{0x1827,4},{0xfe8,2}}, {{0xe32,1},{0xf80,2}}, {{0xdfac,5},{0x2514,4}}, {{0xeab,2},{0xe22,2}}, + {{0x16a7,3},{0x1d7d,3}}, {{0xcc7,1},{0xccd,1}}, {{0xe25,2},{0xe11,1}}, {{0xf77,4},{0x29f3,3}}, + {{0xe2f,1},{0xe30,3}}, {{0x4,1},{0x142d,3}}, {{0x41b5,5},{0xcbf,2}}, {{0xef7,5},{0x10b9,3}}, + {{0xe60,2},{0x16c4c,4}}, {{0xe95,2},{0xec6,3}}, {{0x478f,3},{0x136f,2}}, {{0x14a7,4},{0x4bff,4}}, + {{0x1ff7,3},{0x10f4,4}}, {{0x1df9,5},{0xcce,2}}, {{0x12e5,6},{0x1288,4}}, {{0xe16,1},{0x5,1}}, + {{0x1877,7},{0x29f3,3}}, {{0xed1,3},{0x2b89,3}}, {{0xf1a,2},{0xf86,3}}, {{0x19b7,3},{0xe86,2}}, + {{0xe11,1},{0x1047,3}}, {{0x12d4,3},{0x2,1}}, {{0x41a7,4},{0x3756,3}}, {{0xcc1,1},{0xf86,3}}, + {{0xf77,4},{0xf32,2}}, {{0x1a1e6,5},{0xf7a,2}}, {{0x1088,3},{0x138e,2}}, {{0x1967,3},{0xed9,2}}, + {{0x3a45,5},{0x5fe3,6}}, {{0x1007,6},{0xa8c3,6}}, {{0x12f6,4},{0xf1a,2}}, {{0xb,1},{0x138e,3}}, + {{0x1977,3},{0xf0c,1}}, {{0x27e0,3},{0x18ff2,6}}, {{0x27e0,3},{0xcd3,1}}, {{0xcd3,1},{0xf91,3}}, + {{0xf0a,3},{0x11b5,2}}, {{0xe19,1},{0x1969,1}}, {{0x3185,9},{0xe11,1}}, {{0x1a84,5},{0xe2b,2}}, + {{0x2399,5},{0x239e,5}}, {{0x1007,5},{0xf03,4}}, {{0xaa6d,10},{0xe95,2}}, {{0xcd3,2},{0xec6,3}}, + {{0xbfcd,5},{0x122d,2}}, {{0xf80,2},{0xe95,2}}, {{0x7929,4},{0x3687,5}}, {{0xe97,3},{0xede,1}}, + {{0xcc6,2},{0x12bf,4}}, {{0xe83,3},{0xcb6,3}}, {{0xe19,1},{0xcc4,2}}, {{0x3115,5},{0x43ed,6}}, + {{0x4f91,5},{0x1166,3}}, {{0x5,1},{0x142d,3}}, {{0xfa5,2},{0x4,1}}, {{0x478f,3},{0x1555b,7}}, + {{0x1780,3},{0x5538,2}}, {{0x2948,3},{0xccd,1}}, {{0xcf21,5},{0x153a,3}}, {{0x1bbf,4},{0x14a2,3}}, + {{0x1967,3},{0x6,2}}, {{0xaaf,2},{0x1131,3}}, {{0x2ed7,7},{0x10d3,3}}, {{0x1857,4},{0xcc7,1}}, + {{0xe71,1},{0xf7a,2}}, {{0x120c,3},{0xe6b,3}}, {{0x16a7,3},{0x162c,3}}, {{0x5f90,6},{0x1c85,3}}, + {{0xe22,2},{0xcd3,1}}, {{0x478f,4},{0x14e4b,4}}, {{0x1d18,5},{0x15fe,4}}, {{0xcd3,2},{0x1be9,3}}, + {{0x37c1,7},{0xce8e,4}}, {{0x7b45,4},{0x1632,5}}, {{0x1747,5},{0xcc3,2}}, {{0xe83,3},{0x2e29,3}}, + {{0x4383,5},{0x1b4f,7}}, {{0xe89,2},{0xcbd,1}}, {{0x29c0,3},{0x9a8,1}}, {{0x3185,7},{0xf4a,5}}, + {{0x205a9,1},{0x205a9,1}}, {{0xf8e,3},{0x14f9,3}}, {{0x116f,8},{0x1177,7}}, {{0xf0f,2},{0x12bf,4}}, + {{0x478f,3},{0x2454,3}}, {{0x168a,3},{0xccd,1}}, {{0xf77,3},{0x155e,3}}, {{0xf89,3},{0x29f3,3}}, + {{0x1677,3},{0x1378f,3}}, {{0xe16,1},{0xfe0,2}}, {{0xe0d,2},{0xf1a,2}}, {{0x1569,3},{0x449f,4}}, + {{0x2d79,4},{0xcbb,2}}, {{0x1847,5},{0x1077,6}}, {{0x29c0,3},{0x122e,2}}, {{0xe0a,1},{0x1780,3}}, + {{0x2966,5},{0xb,1}}, {{0x9a8,1},{0x6d42,4}}, {{0x4c37,5},{0x1001,3}}, {{0x5,2},{0x1025,1}}, + {{0x4853,3},{0x8,1}}, {{0x14572,6},{0xec6,3}}, {{0x1967,3},{0x2e29,3}}, {{0x1857,4},{0x13dd,4}}, + {{0x16a7,3},{0x2252,3}}, {{0x127f,3},{0xcb8,1}}, {{0xb3f1,3},{0xed9,2}}, {{0xcce,2},{0xec6,3}}, + {{0x307bb,1},{0x20599,1}}, {{0xed1,5},{0x188c,4}}, {{0xf1a,2},{0x5,1}}, {{0x794d,6},{0xf91,3}}, + {{0xe16,1},{0x78d1,4}}, {{0x2de75,3},{0xd,1}}, {{0xb,1},{0x1150,2}}, {{0x1153,2},{0xeee,3}}, + {{0x647d,8},{0xe95,2}}, {{0x550d,5},{0x1244,7}}, {{0x1bef,2},{0x2,1}}, {{0x1e96a,5},{0x10f4b,4}}, + {{0x1977,3},{0xe33,1}}, {{0x1effd,5},{0xd10c,4}}, {{0x9f,1},{0x57,1}}, {{0x18732,5},{0xf0f,2}}, + {{0xef7,3},{0xfa5e,4}}, {{0x138e,2},{0x449f,4}}, {{0x478f,3},{0xb19c,4}}, {{0xe282,6},{0xf62,3}}, + {{0xee9,2},{0xe2b,2}}, {{0x113c,3},{0xe69,5}}, {{0x111a,3},{0x180a,3}}, {{0xe86,2},{0xe6b,4}}, + {{0x10658,6},{0xed6,2}}, {{0xb,1},{0xe0a,1}}, {{0xe86,2},{0xf50,3}}, {{0x1827,5},{0xfe6,2}}, + {{0x1766e,6},{0xf35,2}}, {{0x2240,4},{0xf1a,2}}, {{0x1c0f,3},{0xe31,2}}, {{0xe89,2},{0xe0a,1}}, + {{0x113c,3},{0x2e1b,6}}, {{0xcd3,2},{0xfdf,4}}, {{0x2399,4},{0xe71,1}}, {{0xcc7,1},{0x4b62,5}}, + {{0x1081,4},{0x1a71,3}}, {{0x1bec,5},{0xe11,2}}, {{0x15a7,6},{0x8b30,4}}, {{0x7858,4},{0x2c15,3}}, + {{0x16a7,3},{0x1085,3}}, {{0x10a3,3},{0xcce,3}}, {{0x22b8,4},{0x22bc,4}}, {{0xe67,2},{0xe69,5}}, + {{0x70ad,3},{0xcc9,2}}, {{0xf1a,2},{0x6,1}}, {{0x127f,3},{0x43be,4}}, {{0xe58f,7},{0xf62,3}}, + {{0xe78,2},{0xe0a,1}}, {{0xe5b,3},{0xed9,2}}, {{0x57ff,8},{0x1be9,3}}, {{0x2489,5},{0xb495,4}}, + {{0x10a3,3},{0xa,2}}, {{0xf0a,3},{0xf8e,3}}, {{0x12c3,4},{0xe71,1}}, {{0xe1f,3},{0xe60,2}}, + {{0x45,1},{0x8d,1}}, {{0x10a3,3},{0xeb5,2}}, {{0x1288,4},{0xe77,3}}, {{0x591d,5},{0xfdd,4}}, + {{0xe65,2},{0xeab,2}}, {{0x31f8,3},{0xf35,2}}, {{0xf65,3},{0x9a5,2}}, {{0x9a8,1},{0xcce,3}}, + {{0xe7d,2},{0x30f7,2}}, {{0x29cf,3},{0x1eb14,5}}, {{0x1d75,3},{0xc29d,3}}, {{0xcc1,1},{0x7979,4}}, + {{0x7b,1},{0x7b,1}}, {{0xfcb,2},{0x4,1}}, {{0xaaf,2},{0x156a,3}}, {{0x4765,3},{0x1303,3}}, + {{0x8829,6},{0xe77,3}}, {{0x9201,5},{0x1b9d,4}}, {{0xf7a,2},{0xed5,4}}, {{0x27e0,3},{0x44ad,3}}, + {{0x10a3,3},{0x6,2}}, {{0xee9,2},{0xe31,2}}, {{0x4765,3},{0x10cb,3}}, {{0x247a,5},{0x59b4,3}}, + {{0x28fda,4},{0xedd,1}}, {{0x18a70,6},{0xed6,2}}, {{0x8439,5},{0x2,1}}, {{0x111a,3},{0xe0d,2}}, + {{0x11ddb,7},{0x6,1}}, {{0x1417,8},{0xe11,1}}, {{0x2858,5},{0xec3,3}}, {{0x2dbf,5},{0xe78,1}}, + {{0x27e0,3},{0x421a,5}}, {{0xf0a,3},{0xe7d,2}}, {{0x189b,4},{0xe86,2}}, {{0xf0c,1},{0xfa5,2}}, + {{0x111a,3},{0x910c,4}}, {{0x1bb75,6},{0xe31,2}}, {{0xef7,3},{0xfb0,3}}, {{0xf0c,1},{0xcc1,1}}, + {{0x5534,4},{0x1085,3}}, {{0xfe0,2},{0xcc9,2}}, {{0x1ebc,6},{0xe11,1}}, {{0x1367,3},{0xfdf,3}}, + {{0xe138,6},{0xeed,4}}, {{0x1e53,7},{0x59b4,3}}, {{0x11b5,2},{0xe92,5}}, {{0xe83,5},{0x5536,4}}, + {{0xcd53,7},{0xc80d,4}}, {{0xe25,2},{0xccd,1}}, {{0x1967,3},{0xb02a,3}}, {{0x442b,3},{0xf7a,2}}, + {{0x9,1},{0xec6,3}}, {{0x9f,1},{0x69,1}}, {{0x8,1},{0xe95,2}}, {{0x10a3,3},{0xcc3,2}}, + {{0x4225,4},{0x4187,3}}, {{0x8,2},{0xf7a,2}}, {{0x46bd,3},{0x3642,2}}, {{0x2d79,4},{0xb1d0,5}}, + {{0xfb0,2},{0xcc1,1}}, {{0xaaf,2},{0xcd6,2}}, {{0x7414,3},{0xe13,3}}, {{0x19856,6},{0xec6,3}}, + {{0x1777,5},{0x2fcc,4}}, {{0x1467,4},{0xeee,3}}, {{0xe67,2},{0x30f7,2}}, {{0xcd3,1},{0xe0b,4}}, + {{0x2,1},{0x6479,4}}, {{0x4c37,5},{0xcc7,1}}, {{0x191e7,6},{0xe11,1}}, {{0xe25,2},{0xec6,3}}, + {{0xaaf,2},{0xf70,2}}, {{0xf4d0,5},{0xcc8,1}}, {{0x3a1b,5},{0x138e,3}}, {{0x111a,3},{0x136ee,5}}, + {{0x8d,1},{0x57,1}}, {{0x12d4,3},{0x17b4b,7}}, {{0x6,2},{0x1088,4}}, {{0x1780,3},{0xcc3,2}}, + {{0xde8e,4},{0xf7a,2}}, {{0x5d6e,8},{0xe92,5}}, {{0x1766e,6},{0x1fc7,3}}, {{0x29cf,3},{0x1150,2}}, + {{0x1747,4},{0xe71,1}}, {{0x5652,8},{0xe11,1}}, {{0xf4f,1},{0x4767,1}}, {{0x12090,8},{0x1085,3}}, + {{0xed9,2},{0xe0a,1}}, {{0x29cf,3},{0xf02,2}}, {{0x2f71,4},{0xcba,3}}, {{0x3ff5,6},{0x3155,6}}, + {{0x10c5,4},{0x2e32,3}}, {{0xf77,4},{0xcc8,1}}, {{0x442b,3},{0x158f,3}}, {{0xe936,8},{0xf7a,2}}, + {{0xb,1},{0xcba,3}}, {{0xf0a,3},{0x1153,2}}, {{0x11d5,7},{0x14ab,3}}, {{0xcc7,1},{0x1b8b,6}}, + {{0x2a47,3},{0x1050,3}}, {{0x22a2,4},{0x4,1}}, {{0x28b2,8},{0x1ac7,3}}, {{0x71ff,10},{0xe22,2}}, + {{0x2489,7},{0x115a,3}}, {{0xa4b5,9},{0xcc9,2}}, {{0x11b94,7},{0xe0a,1}}, {{0x2e273,1},{0x2e27d,1}}, + {{0x2399,4},{0xcce,2}}, {{0x164bc,7},{0xcc9,2}}, {{0x1587,4},{0x10cb,3}}, {{0x4765,3},{0x1230,3}}, + {{0xff6d,5},{0xe22,2}}, {{0x111a,3},{0xe22,2}}, {{0x7602,4},{0x1870e,6}}, {{0x11963,8},{0xe22,2}}, + {{0xee9,2},{0xec6,3}}, {{0x11a6,2},{0xed5,3}}, {{0x1817,4},{0x1bef,2}}, {{0xe97,3},{0x1dcfb,6}}, + {{0x111a,3},{0x17dd9,3}}, {{0x12d4,3},{0x1150,2}}, {{0x104a0,8},{0xe11,1}}, {{0x1019,9},{0xf91,3}}, + {{0x28d0,4},{0xcc3,3}}, {{0x647d,8},{0xcce,2}}, {{0x9a6,1},{0xe25,2}}, {{0x2de75,3},{0x9f,1}}, + {{0x1ff7,3},{0xcbe,3}}, {{0xf77,3},{0x2f2e,3}}, {{0xbfcd,7},{0xbfd4,5}}, {{0x3a45,5},{0xfdf,4}}, + {{0xf77,3},{0x101f,2}}, {{0x1787,6},{0x5,1}}, {{0x1c178,7},{0xe95,2}}, {{0xf79,3},{0xe32,1}}, + {{0xccd,1},{0xcd2,2}}, {{0x1154c,4},{0x3199,3}}, {{0x113c,3},{0x103e,5}}, {{0xacdd,6},{0xed6,2}}, + {{0x148a6,5},{0xfb8,3}}, {{0x1007,5},{0x2560,4}}, {{0xf0a,3},{0xcbd,1}}, {{0xccd,1},{0x2236,3}}, + {{0xf34,2},{0xeee,3}}, {{0x1977,4},{0xcc1,1}}, {{0xe77,2},{0xebb,3}}, {{0x69,1},{0x69,1}}, + {{0x1a07,3},{0x12fe,2}}, {{0x29cf,3},{0xcce,2}}, {{0x126a,3},{0xc29d,3}}, {{0x79c5,4},{0x10cb,4}}, + {{0x9,1},{0xa,2}}, {{0x113c,5},{0x2,1}}, {{0xc93e,6},{0xe11,1}}, {{0xaaf,2},{0x1327,1}}, + {{0x1d7d,3},{0xe11,1}}, {{0x4781,3},{0x4bff,4}}, {{0x1677,3},{0x14d4f,6}}, {{0xcc3,2},{0xeee,3}}, + {{0x1c0a,6},{0xec7,2}}, {{0x1007,6},{0xec3,3}}, {{0xe67,2},{0x13e3,4}}, {{0x1d18,5},{0x1062,2}}, + {{0x1ff7,3},{0xe67,2}}, {{0xfb0,3},{0xe67,2}}, {{0xe5b,3},{0xa,2}}, {{0xfcb,3},{0xc29d,3}}, + {{0x36ca,5},{0x1783,4}}, {{0x14a2,3},{0xe95,2}}, {{0x2948,3},{0x7416,1}}, {{0xe08,1},{0xe0f,1}}, + {{0x16048,6},{0xe11,1}}, {{0xebe,5},{0x21a0,5}}, {{0x1a07,3},{0x1969,1}}, {{0x90bd,6},{0xed9,2}}, + {{0x1677,3},{0xe25,2}}, {{0x1f25,4},{0x8b5e,5}}, {{0x10a3,3},{0x1373,2}}, {{0x10c5,4},{0xf1a,2}}, + {{0xd5d5,6},{0xe0a,1}}, {{0x101f,2},{0x1e8b,3}}, {{0x11b3,5},{0x10ba,6}}, {{0xe71,1},{0xfb8,3}}, + {{0x10a3,3},{0x123e,3}}, {{0x4781,3},{0x1150,2}}, {{0x46af,3},{0xe0b,2}}, {{0x20ba,10},{0xec6,3}}, + {{0xe7f,2},{0xec6,3}}, {{0xe6f,3},{0x44b2,5}}, {{0xb51d,6},{0x5538,2}}, {{0xf1b8,4},{0xcc1,1}}, + {{0xf89,3},{0x1a336,5}}, {{0x5117,5},{0x5136,5}}, {{0x5,1},{0x10cb,4}}, {{0x1cd3,2},{0x1b4f,5}}, + {{0xf70,2},{0xe6b,4}}, {{0xf89,3},{0x8666,2}}, {{0xe,1},{0x8d,1}}, {{0x7911,6},{0x121a6,4}}, + {{0x1747,5},{0xe22,3}}, {{0x7d55,7},{0xeed,4}}, {{0xe83,3},{0x65ec,5}}, {{0x12e5,3},{0xe6c,3}}, + {{0xe6f,4},{0xe0a,1}}, {{0x18bc4,6},{0xeca,3}}, {{0x1e71,6},{0xfdd,4}}, {{0x1cfa,5},{0x13e3,4}}, + {{0x5117,5},{0x142d,3}}, {{0x231eb,7},{0xb,1}}, {{0x3089,5},{0xed6,2}}, {{0xef7,3},{0x6b41,4}}, + {{0xcc8,1},{0x288b,2}}, {{0x48da,2},{0xe99,1}}, {{0x158e,2},{0x10d3,3}}, {{0xebe,4},{0xb,1}}, + {{0xe0f,1},{0xf11,1}}, {{0xed6,2},{0x8,1}}, {{0x712f,4},{0xcb9f,4}}, {{0x1cd3,3},{0x3933,4}}, + {{0xfc7,3},{0xeab,2}}, {{0x4b12,4},{0xe11,1}}, {{0x10c5,4},{0x5,2}}, {{0xe19,1},{0x2ba5,1}}, + {{0xf16,2},{0xed6,2}}, {{0x1a07,3},{0xe33,1}}, {{0x1c3f7,5},{0x11d2,3}}, {{0xe0f,1},{0xe16,1}}, + {{0xa,2},{0xf63,2}}, {{0xcd3,2},{0xe0a,1}}, {{0x1817,4},{0x1cd3,2}}, {{0x4516,3},{0xcc9,2}}, + {{0x7b45,4},{0xf7a,2}}, {{0x12e5,3},{0xefa,3}}, {{0xe0f,1},{0xcc7,1}}, {{0xe09,1},{0x22b2,3}}, + {{0x78f9,1},{0x78f9,1}}, {{0xcc7,1},{0xe13,3}}, {{0x127f,4},{0xe71,1}}, {{0x7929,4},{0x286d,3}}, + {{0xf0d,2},{0x1d32,3}}, {{0x9f,1},{0x7b,1}}, {{0x950d,6},{0xed6,2}}, {{0xd5d5,6},{0xec6,3}}, + {{0x0,1},{0xcd6,1}}, {{0x1837,5},{0xe25,2}}, {{0xfb8,3},{0xe11,1}}, {{0xe,1},{0xf,1}}, + {{0x3559,5},{0x356c,3}}, {{0x4781,3},{0xf12,3}}, {{0x6533,8},{0xcc9,2}}, {{0xf0a,3},{0xe99,1}}, + {{0x73ed,4},{0xe71,1}}, {{0x6,1},{0xf79,3}}, {{0x27ef,4},{0x1839,3}}, {{0xe97,3},{0x2,2}}, + {{0x6e71,8},{0xe11,1}}, {{0x1457,6},{0x1943,2}}, {{0xe1f,3},{0xe25,2}}, {{0xaaf,2},{0x314,2}}, + {{0x6b8c,5},{0x59b4,3}}, {{0x32c7,12},{0xe95,2}}, {{0x478f,3},{0x120f,3}}, {{0xe8a,2},{0xed6,2}}, + {{0x46af,3},{0x1ca7b,5}}, {{0xead,3},{0xcc9,2}}, {{0xb15d,7},{0xe11,1}}, {{0x1dee,2},{0x5342,3}}, + {{0x122a,9},{0x1524,3}}, {{0xbb4,4},{0x78b5,2}}, {{0xb3f1,3},{0x3641,3}}, {{0x10b3e,5},{0x10b43,6}}, + {{0x28d0,4},{0x7e6b,6}}, {{0x1cfa,5},{0x10f2,5}}, {{0x42db,8},{0xe69,5}}, {{0xe92,3},{0x156a,3}}, + {{0x23a53,5},{0xb,1}}, {{0x33d1,4},{0x121a6,4}}, {{0x11b3,4},{0xf16,2}}, {{0xe83,5},{0x2,1}}, + {{0x1c73,5},{0xdfc9,4}}, {{0x5f42,5},{0xf1d,2}}, {{0x759a,5},{0x12ba,4}}, {{0x1e62,4},{0xcce,2}}, + {{0x19b7,3},{0x5538,2}}, {{0x121c8,6},{0xec6,3}}, {{0x1c91,4},{0x1050,3}}, {{0xcc14,7},{0xec6,3}}, + {{0x27e0,3},{0x3537,2}}, {{0x112b,4},{0xcd3,3}}, {{0x18f7,4},{0x1085,3}}, {{0x1fcf,2},{0x101f,3}}, + {{0x712f,4},{0x3537,2}}, {{0xb,1},{0x3642,2}}, {{0xfe3,4},{0x11b5,2}}, {{0xe6f,3},{0x10f4,4}}, + {{0xef7,4},{0xf0d,2}}, {{0x6,1},{0x2,1}}, {{0xcd3,1},{0x1523,4}}, {{0x7518,7},{0xed9,2}}, + {{0x128da,7},{0xec6,3}}, {{0x2f9b,4},{0xe78,2}}, {{0x59c6,5},{0x6411,4}}, {{0x29a2,6},{0xe0a,1}}, + {{0x592a,6},{0xec6,3}}, {{0xccd,1},{0xa,2}}, {{0xcba,2},{0xf91,3}}, {{0x46bd,3},{0x12a3,3}}, + {{0xedd,1},{0xf15,1}}, {{0x113c,3},{0x59b4,3}}, {{0x145b,2},{0xfe8,2}}, {{0xe6f,3},{0xfb0,2}}, + {{0xed1,3},{0x10cb,4}}, {{0x3a53,4},{0x1150,2}}, {{0x237b,5},{0xcce,3}}, {{0xaaf,2},{0x1c85,3}}, + {{0xe67,2},{0xe2b,2}}, {{0xe08,1},{0xcbd,1}}, {{0xe61,2},{0xcd3,2}}, {{0x1f07,4},{0xcd3,2}}, + {{0x27e0,4},{0x142d,3}}, {{0x17030,2},{0x5342,3}}, {{0xfa5,2},{0xe11,2}}, {{0x2966,4},{0x17212,6}}, + {{0x20611,7},{0xb,1}}, {{0x22a2,4},{0xed5,3}}, {{0x4be9,5},{0xeab,2}}, {{0xe0d,2},{0x12be,5}}, + {{0x12bfa,6},{0xf86,3}}, {{0x6bda,6},{0xed6,2}}, {{0xcc1,1},{0x178a,3}}, {{0xcce,2},{0xf63,2}}, + {{0x2687,8},{0xed6,2}}, {{0x1607,10},{0xe69,5}}, {{0x1969,1},{0xcbd,1}}, {{0xcce,2},{0x30f7,2}}, + {{0x2deff,5},{0x69,1}}, {{0x37c1,7},{0x37c8,5}}, {{0x10c5,4},{0xe13,3}}, {{0x125d,5},{0x12be,5}}, + {{0x27e0,3},{0xed9,2}}, {{0xcc7,1},{0xa,2}}, {{0x2399,4},{0xfe0,2}}, {{0x1ff7,3},{0x24e8,4}}, + {{0x1367,3},{0x15ec,3}}, {{0xe563,5},{0xe11,1}}, {{0x103e,4},{0xc29d,3}}, {{0xe2b,2},{0x126a,4}}, + {{0x1f7f,5},{0xed6,3}}, {{0xf0a,3},{0x9,1}}, {{0x1290,10},{0x129a,6}}, {{0x1f16,10},{0xebb,3}}, + {{0x10a3,3},{0xed9,2}}, {{0x8c79,7},{0x1392,3}}, {{0xf15,1},{0xe0a,1}}, {{0xff99,7},{0xe11,1}}, + {{0xbd09,5},{0xe31,2}}, {{0x11cb,3},{0xe11,1}}, {{0xe5b,3},{0x6190,4}}, {{0x16b7,4},{0xcc1,1}}, + {{0xb,1},{0x16ad,3}}, {{0xe33,1},{0x113f,2}}, {{0xe25,2},{0xa,2}}, {{0x27ef,4},{0x23837,4}}, + {{0xef7,3},{0x2b88,4}}, {{0x1c91,4},{0xfe0,2}}, {{0xe2b,2},{0x1d32,3}}, {{0x2252,3},{0xeab,2}}, + {{0x1877,5},{0xcbd,1}}, {{0x11b5,2},{0xeee,3}}, {{0xe,1},{0x21,1}}, {{0x486f,4},{0x4,1}}, + {{0xf65,4},{0x9a8,1}}, {{0x7a79,6},{0x1783,4}}, {{0xfcb,2},{0xe71,1}}, {{0x2a47,3},{0xfb0,3}}, + {{0x125d,6},{0x6479,4}}, {{0x1f07,5},{0xe6b,4}}, {{0x7e39,9},{0x2f2e,3}}, {{0x105f,3},{0xe11,1}}, + {{0x10cb,2},{0x5,1}}, {{0xb74,1},{0x28b33,1}}, {{0x101f,2},{0x23d2,3}}, {{0x7b,1},{0x69,1}}, + {{0x9da1,5},{0xf7a,2}}, {{0x1a66,1},{0x2ba5,1}}, {{0xedd,1},{0x2ba5,1}}, {{0xf1a,2},{0x1fc7,3}}, + {{0x46bd,3},{0xb410,4}}, {{0x1a07,3},{0xee9,2}}, {{0xe22,2},{0xeab,2}}, {{0x2489,5},{0xeb4,3}}, + {{0x13e42,5},{0x138e,2}}, {{0x1969,1},{0xf0c,1}}, {{0x113c,3},{0x8eee,4}}, {{0x62dd,6},{0xe69,5}}, + {{0x159e0,5},{0xe78,2}}, {{0x27c5d,6},{0xe11,1}}, {{0x12bfa,6},{0xeee,3}}, {{0xe67,2},{0xcc9,2}}, + {{0x20579,1},{0x20579,1}}, {{0xe67,2},{0x8,1}}, {{0x1bbf,4},{0x3e0e,3}}, {{0x14a7,4},{0xfc8,3}}, + {{0x26d2,8},{0x3,1}}, {{0x2deff,5},{0x57,1}}, {{0x1e08,5},{0xcc1,1}}, {{0x4853,3},{0xccb,2}}, + {{0x7b,1},{0x57,1}}, {{0x1007,5},{0x143c,4}}, {{0x1c37,6},{0xe7f,2}}, {{0x1153,2},{0xec6,3}}, + {{0xe83,3},{0x1b80,3}}, {{0x2006,6},{0x12a9,5}}, {{0xae99,7},{0x1b9d,4}}, {{0xe19,1},{0x19b9,1}}, + {{0x145b,2},{0x1be9,3}}, {{0x1005f,9},{0xe95,2}}, {{0xe6f,4},{0x141a,2}}, {{0x4ef5,4},{0x10cb,4}}, + {{0xcd3,2},{0xb,1}}, {{0x168b,4},{0xe11,1}}, {{0x16a7,3},{0xe1c,3}}, {{0x16a7,3},{0x6,2}}, + {{0xe67,2},{0xe69,6}}, {{0x1e9e,5},{0x1ab69,4}}, {{0x1a07,3},{0xcd4,2}}, {{0xf9b,5},{0x296f,3}}, + {{0x27ce9,5},{0x111c,2}}, {{0x9405,7},{0xebb,3}}, {{0xccd,4},{0xe11,1}}, {{0xe11,2},{0xcc3,2}}, + {{0xec43,7},{0xed6,2}}, {{0x3a53,4},{0xcc9,2}}, {{0xeee,3},{0x1bf6,5}}, {{0x8439,5},{0xdfca,3}}, + {{0xf65,4},{0x7bd9,4}}, {{0xe22,3},{0xe25,2}}, {{0xe6f,3},{0xcc3,3}}, {{0x82b9,6},{0xcc9,2}}, + {{0x3957,6},{0xcce,2}}, {{0xef7,6},{0xed5,3}}, {{0xcd3,1},{0xe7f,2}}, {{0xf0f,2},{0x6,1}}, + {{0x950d,6},{0xec6,3}}, {{0xcd3,1},{0xf32,2}}, {{0x10a3,3},{0x9a4,3}}, {{0x18610,5},{0x1a5e,3}}, + {{0xed6,2},{0xe78,2}}, {{0x24f2,5},{0x775c,4}}, {{0x6452,4},{0x2,1}}, {{0x7911,3},{0xf7a,2}}, + {{0x478f,3},{0x1d7e,3}}, {{0x17be8,5},{0x26ba,3}}, {{0x5,2},{0xf1d,1}}, {{0x3eb3,8},{0x3caa,3}}, + {{0x1cd3,2},{0xe32,1}}, {{0x5269,6},{0x7998,4}}, {{0x112b,4},{0x386f,4}}, {{0x1967,3},{0xccb,2}}, + {{0xebbf,6},{0xe0a,1}}, {{0x3bbf,8},{0xe0a,1}}, {{0x1081,4},{0x142a,3}}, {{0xf16,2},{0xe11,1}}, + {{0x4781,3},{0x16ad,3}}, {{0x12330,6},{0xe6c,3}}, {{0xf59,2},{0xe22,2}}, {{0x12e5,3},{0xe0d,2}}, + {{0xe2b,2},{0xe69,5}}, {{0xb12d,6},{0xdcfe,4}}, {{0xe97,3},{0xc80d,4}}, {{0x14a7,4},{0x2177,5}}, + {{0xaf4,1},{0x11,1}}, {{0x15422,5},{0x1040,3}}, {{0xe83,5},{0x11a6,3}}, {{0xeee,3},{0xe0a,1}}, + {{0x12f74,6},{0x7a0f,4}}, {{0xf65,3},{0x149d,2}}, {{0x9051,7},{0xf91,3}}, {{0xe33,1},{0x3642,2}}, + {{0xe0f,1},{0xe11,1}}, {{0x5117,5},{0x566f,4}}, {{0x473b,5},{0xf35,2}}, {{0x111a,3},{0x111d,4}}, + {{0xcd2,2},{0x237d,2}}, {{0xef7,3},{0x6,2}}, {{0xf7a,2},{0xcc1,1}}, {{0x1f25,4},{0x1046,4}}, + {{0x10c5,4},{0xf62,3}}, {{0x19b7,3},{0x2e29,3}}, {{0xfbf,5},{0xed6,2}}, {{0xeab,2},{0x1189,4}}, + {{0x32ab,6},{0xcc9,2}}, {{0x3d39,5},{0x1c669,4}}, {{0x29c0,3},{0xf70,2}}, {{0xe138,5},{0xf86,2}}, + {{0x5,1},{0xe11,1}}, {{0x105f,3},{0x1a578,4}}, {{0xcc7,1},{0xe1c,3}}, {{0x72cf,4},{0x5538,2}}, + {{0x2d79,4},{0x10d2,4}}, {{0xe97,3},{0xed6,2}}, {{0x1d18,5},{0xe6b,3}}, {{0x7b2d,5},{0x1d75,3}}, + {{0xcce,2},{0x2091,4}}, {{0xf89,3},{0xefa,4}}, {{0x9051,7},{0xed6,2}}, {{0x29c0,3},{0x413e,4}}, + {{0xcc8,1},{0xe22,2}}, {{0x1677,3},{0x14a2,3}}, {{0xcb8,1},{0x1593,3}}, {{0xe89,2},{0xe25,2}}, + {{0xe0f,1},{0xede,1}}, {{0xf0a,3},{0xe65,2}}, {{0xe80,2},{0x2,1}}, {{0x29c0,3},{0x156a,3}}, + {{0xe89,2},{0xe71,1}}, {{0x57,1},{0x45,1}}, {{0x1ff7,3},{0x5538,2}}, {{0xe97,3},{0xfcb,2}}, + {{0x6,1},{0xcbb,2}}, {{0x8bb9,7},{0x1040,3}}, {{0xf0a,3},{0x1bef,2}}, {{0x10238,6},{0xe11,1}}, + {{0xcc9,2},{0xe25,2}}, {{0xf0a,3},{0xe22,3}}, {{0xe16,1},{0xe16,1}}, {{0xf16,2},{0x8,1}}, + {{0xf77,4},{0x1a0af,5}}, {{0x9a8,1},{0x11cb,3}}, {{0xb289,7},{0xebb,3}}, {{0xe7a,1},{0xe99,1}}, + {{0xe33,1},{0xcba,2}}, {{0x1756a,5},{0xe92,3}}, {{0x138e,2},{0xfe0,2}}, {{0xb,1},{0x10cb,4}}, + {{0x16642,6},{0xe11,1}}, {{0xcd3,2},{0xed5,3}}, {{0x1b3f8,5},{0xed5,3}}, {{0xe1f,3},{0x1dee,2}}, + {{0x46bd,3},{0x2,1}}, {{0x6b8c,5},{0x2236,3}}, {{0x46af,3},{0xcb7,2}}, {{0xf11,1},{0x1150,2}}, + {{0xe08,1},{0x2,1}}, {{0xd131,4},{0xcc8,1}}, {{0xc6ec,5},{0xf7a,2}}, {{0x5534,4},{0xdb01,6}}, + {{0x1537,4},{0x2266,5}}, {{0xe21,1},{0xe16,1}}, {{0xe97,3},{0x11dc,3}}, {{0x1b131,5},{0xcc8,2}}, + {{0x12e5,3},{0x5,1}}, {{0x57,1},{0x9f,1}}, {{0xccd,1},{0xccb,2}}, {{0xe138,5},{0xec6,3}}, + {{0x1ff7,3},{0x122d,2}}, {{0x39b9,4},{0xf13,2}}, {{0x10a3,3},{0xe25,2}}, {{0x329d,5},{0x4116,5}}, + {{0x1081,4},{0x183a,3}}, {{0x7414,3},{0x2,1}}, {{0xfcb,2},{0x1523,4}}, {{0x1059,3},{0xe95,2}}, + {{0xcc7,1},{0xf1a,2}}, {{0x1019,6},{0xf63,2}}, {{0x4781,3},{0x309c,4}}, {{0x27c2,4},{0xe0d,2}}, + {{0xaf4,16},{0xaf4,16}}, {{0xd131,4},{0xf20,2}}, {{0xe89,2},{0xf0f,2}}, {{0xe22,2},{0x104c,2}}, + {{0x6644,6},{0xe2b,2}}, {{0x6,1},{0x3537,2}}, {{0xe08,1},{0xe0a,1}}, {{0x2a47,3},{0x2b79,4}}, + {{0xe138,5},{0xcc9,2}}, {{0xec6,3},{0xed6,2}}, {{0x14ff,3},{0xf70,5}}, {{0x113c,3},{0xb410,4}}, + {{0x10c5,6},{0x10cb,4}}, {{0x4773,4},{0x4833,4}}, {{0x70ad,3},{0x162c,3}}, {{0x3a53,4},{0x103e,5}}, + {{0xf77,3},{0x7d1f,3}}, {{0x14a7,4},{0xfa5,2}}, {{0xcd3,2},{0x13e3,4}}, {{0x17d3c,6},{0x17d56,3}}, + {{0x2271,3},{0xe71,1}}, {{0xe,1},{0xd,1}}, {{0xeb5,2},{0xcc9,2}}, {{0xcc8,1},{0xe22,3}}, + {{0x1817,4},{0xf1f,3}}, {{0x201d0,5},{0xe5e,2}}, {{0xcc3,2},{0x12bf,4}}, {{0xc36,2},{0x2b0b0,2}}, + {{0x1977,3},{0x2542e,3}}, {{0xf0a,3},{0x10edd,7}}, {{0x127f,3},{0x7a0f,4}}, {{0xccd,1},{0x1ebf,3}}, + {{0x329d,5},{0xed5,4}}, {{0xe19,1},{0xe2f,1}}, {{0x46af,3},{0x1150,2}}, {{0x1687,4},{0xcbf,2}}, + {{0x1c85,3},{0xcc9,2}}, {{0x426b,8},{0x13e3,4}}, {{0x10c5,4},{0x94b5,3}}, {{0xb,1},{0x8,1}}, + {{0xcd3,1},{0xe69,5}}, {{0x6,1},{0xe30,3}}, {{0xeb5,2},{0xf86,3}}, {{0x10c5,4},{0x305a,5}}, + {{0xfcb,2},{0xe69,5}}, {{0x217d,12},{0xe11,1}}, {{0x2b500,6},{0xddc,2}}, {{0xcc7,1},{0x121c,3}}, + {{0x780a,5},{0x1c76,3}}, {{0xeca,3},{0xec6,3}}, {{0xe0b,2},{0xe0a,1}}, {{0x7ff5,5},{0x2b89,3}}, + {{0x4853,3},{0xa,2}}, {{0x2de75,3},{0x21,1}}, {{0x1857,4},{0xeab,2}}, {{0xf70,2},{0xe0a,1}}, + {{0x1de7b,5},{0xfb0,2}}, {{0xe32,1},{0xf0d,2}}, {{0x151b6,6},{0xe0a,1}}, {{0xf89,3},{0x1303,3}}, + {{0xee69,8},{0xcc9,2}}, {{0x4853,3},{0x1303,3}}, {{0x473b,5},{0x1fc7,3}}, {{0xb5ad,5},{0x1166,3}}, + {{0x4853,3},{0xe5e,2}}, {{0x18494,5},{0x18499,5}}, {{0x2bc8f,5},{0xe11,1}}, {{0xcfc6,6},{0xcc9,2}}, + {{0x750b,4},{0x39bd,4}}, {{0xcd3,1},{0x7949,4}}, {{0x1d54,6},{0xebb,3}}, {{0x1ff7,3},{0x6452,4}}, + {{0x111a,3},{0x2e29,3}}, {{0x3487,6},{0x1040,3}}, {{0x29c0,3},{0xfcb,2}}, {{0xe0f,1},{0xf15,1}}, + {{0x41b5,5},{0x413e,4}}, {{0x1bb75,6},{0xec6,3}}, {{0x27e0,3},{0xe22,2}}, {{0x16b7,5},{0x11b5,2}}, + {{0xef7,3},{0xfe6,2}}, {{0xf0a,3},{0xd084,5}}, {{0x114d,4},{0xeab,4}}, {{0x29c0,3},{0x1a66,1}}, + {{0x1da0d,6},{0x70a6,3}}, {{0xf77,3},{0x27dc,4}}, {{0x29c0,3},{0xe32,1}}, {{0x1e62,5},{0x1265,5}}, + {{0x65f6,6},{0x1040,3}}, {{0xec3,3},{0x127c,3}}, {{0xe67,2},{0x6,1}}, {{0x1677,3},{0xf1a,2}}, + {{0xe0a,1},{0x6,1}}, {{0x286d,3},{0xe95,2}}, {{0xcd3,1},{0x10b8,2}}, {{0xf89,3},{0x11a6,2}}, + {{0xa,2},{0xff1,4}}, {{0xb3c1,6},{0x1ee0,3}}, {{0xe0f,1},{0xe0f,1}}, {{0x1692,2},{0xf91,3}}, + {{0x9f,1},{0x8d,1}}, {{0x29cf,3},{0x1ebf,3}}, {{0xe1f,3},{0xcc6,2}}, {{0x28d0,4},{0xed5,4}}, + {{0xe2b,2},{0xb9d1,3}}, {{0xef7,4},{0x29f3,3}}, {{0x3e0e,3},{0x9a6,1}}, {{0x19b9,1},{0xcc3,2}}, + {{0x2006,3},{0x4188,3}}, {{0x2015,3},{0x35a2,6}}, {{0x1777,5},{0xccd,3}}, {{0x16a7,3},{0xefcc,4}}, + {{0x79c5,4},{0xcc8,1}}, {{0x13050,5},{0xccc,2}}, {{0x1787,6},{0x142d,3}}, {{0x10c5,4},{0x8,1}}, + {{0x27e0,3},{0xcc9,2}}, {{0x2b78,4},{0xe80,2}}, {{0xe1f,3},{0x8428,3}}, {{0x12f6,4},{0x1fc3d,5}}, + {{0x111a,3},{0xe65,2}}, {{0x114d,4},{0x1059,3}}, {{0x9,1},{0x1364e,4}}, {{0x113c,5},{0x59b4,3}}, + {{0xef87,7},{0x286d,3}}, {{0x6,1},{0x1050,3}}, {{0x3ff5,6},{0x1b4f,5}}, {{0x3107,5},{0x310c,4}}, + {{0x2e27d,1},{0x2e27d,1}}, {{0x1577,7},{0x1024,7}}, {{0x6bc0,7},{0x1c0f,3}}, {{0x15e7,5},{0x1fcf,5}}, + {{0x1427,5},{0xccd,1}}, {{0x1a07,3},{0xcc1,1}}, {{0x662a,6},{0xe67,2}}, {{0xe65,2},{0xf7a,2}}, + {{0xf04,2},{0xff70,4}}, {{0xf89,3},{0xed6,2}}, {{0x1050,4},{0xe6b,3}}, {{0x2de4b,3},{0x45,1}}, + {{0xf89,3},{0xec3,3}}, {{0x2948,3},{0xe11,1}}, {{0xe97,3},{0xcce,2}}, {{0xe009,3},{0xccd,1}}, + {{0xf0d,2},{0x9a8,1}}, {{0x1ff7,6},{0xed6,2}}, {{0x1897,5},{0x1059,3}}, {{0x2ffd,6},{0xf1a,2}}, + {{0x6ff7,5},{0xe6b,4}}, {{0xcc7,1},{0xcbd,1}}, {{0xe5e7,4},{0xfe8,2}}, {{0x127f,3},{0x11b5,2}}, + {{0x20599,1},{0x307bb,1}}, {{0xcc1,1},{0xf0d,2}}, {{0x27ef,7},{0x809a,3}}, {{0x122d,2},{0x43fd,4}}, + {{0x6ff7,5},{0x153a,3}}, {{0x2a29,8},{0x1177,7}}, {{0x7ae5,5},{0xbf50,4}}, {{0x1019,4},{0xf69b,3}}, + {{0x237b,5},{0x7d81,4}}, {{0x73ed,4},{0xab88,4}}, {{0x29cf,3},{0x2d8d,3}}, {{0x492b,4},{0xe2b,2}}, + {{0x1290,4},{0x149c,3}}, {{0x1567,6},{0xfdf,3}}, {{0x1467,5},{0x1095,3}}, {{0x3965,6},{0xe95,2}}, + {{0xef66,5},{0x4618,3}}, {{0xf205,4},{0x1001,3}}, {{0x237b,8},{0xe77,3}}, {{0x9f,1},{0xe,1}}, + {{0x235d,5},{0x158f,3}}, {{0xcb8,1},{0x162c,3}}, {{0x15530,6},{0xcc9,2}}, {{0x1007,6},{0x1047,3}}, + {{0x536d,9},{0xe11,1}}, {{0xe5b,3},{0x168a,3}}, {{0x127f,3},{0x2260,4}}, {{0x9f,1},{0x314,2}}, + {{0x189b,6},{0x10bb,5}}, {{0xe0f,1},{0x1969,1}}, {{0x478f,3},{0x168b,4}}, {{0xccd,1},{0xee9,2}}, + {{0xaaf,2},{0x30357,1}}, {{0xfe3,4},{0x11dc,3}}, {{0xe22,3},{0xed6,2}}, {{0x353d,5},{0xe69,5}}, + {{0x1977,3},{0x1084,3}}, {{0x6d1f,7},{0x249f,3}}, {{0x2bb4,2},{0xec6,3}}, {{0xf77,3},{0x2d11,3}}, + {{0x236c,4},{0xcc8,1}}, {{0x1827,4},{0xe7f,4}}, {{0x2f71,4},{0xf24,2}}, {{0x6ff7,5},{0xe77,3}}, + {{0x1787,6},{0x14ff,5}}, {{0xe6f,3},{0x4bff,4}}, {{0x12a1,4},{0xf1d,2}}, {{0x3089,5},{0x120b,4}}, + {{0x1050,3},{0x17c0,2}}, {{0x16a7,3},{0x3fed,3}}, {{0x27e0,3},{0xac0d,4}}, {{0x28b3a,1},{0xb74,1}}, + {{0xff6d,7},{0xe95,2}}, {{0x236c,4},{0x113f,2}}, {{0x433d,4},{0x1773,4}}, {{0xcd2,2},{0xf62,3}}, + {{0x9351,5},{0x1054,3}}, {{0x57,1},{0x69,1}}, {{0xf0c,1},{0xe16,1}}, {{0x4519,4},{0x2,1}}, + {{0x101f,2},{0xec6,3}}, {{0xf4f,1},{0xf4f,1}}, {{0x1d26c,5},{0x4d74,4}}, {{0xf77,3},{0x11a6,2}}, + {{0xaeb1,5},{0xe67,2}}, {{0x27e0,3},{0xe22,3}}, {{0x2,1},{0x6,2}}, {{0x1427,5},{0x1cd5,4}}, + {{0x29cf,3},{0x101f,2}}, {{0x2de45,3},{0x45,1}}, {{0xcc7,1},{0x2e29,3}}, {{0xec3,3},{0xe22,2}}, + {{0x1467,4},{0x4e43,4}}, {{0x1153,2},{0xe11,1}}, {{0x9,1},{0xcd3,1}}, {{0xfb0,2},{0xe0a,1}}, + {{0x5,2},{0xe78,1}}, {{0xe1f,3},{0x10f4b,4}}, {{0x1747,7},{0xfb1,3}}, {{0x5,1},{0x13e3,4}}, + {{0x7086,5},{0xa797,5}}, {{0x5534,4},{0x7955,4}}, {{0x11b3,4},{0x10b9,2}}, {{0x6185,3},{0x1be9,3}}, + {{0xef7,3},{0x8441,4}}, {{0x3d39,6},{0xa48b,3}}, {{0x105f,3},{0xac0d,3}}, {{0xe78,2},{0xccb,2}}, + {{0x1877,5},{0x6478,5}}, {{0xe0a,1},{0xe22,2}}, {{0xccd,1},{0xfb4,4}}, {{0x27ef,4},{0xe71,1}}, + {{0x2d95,5},{0x11d9,3}}, {{0xe11,1},{0xf32,2}}, {{0x1059,3},{0xcc9,2}}, {{0x2252,3},{0xe11,1}}, + {{0x19b7,3},{0x6480,5}}, {{0x1ff7,3},{0x1c0f,5}}, {{0x6cde,4},{0x109b,2}}, {{0x1153,2},{0xcc8,1}}, + {{0x115e,5},{0x15fc,2}}, {{0xf77,5},{0xd28b,6}}, {{0x101f,2},{0xcc1,1}}, {{0x122d,2},{0x1062,2}}, + {{0x1467,4},{0x113f,2}}, {{0x3a1b,5},{0x1ac7,3}}, {{0xc857,7},{0x4a86,4}}, {{0x7392,5},{0x28f5,5}}, + {{0x1537,4},{0xed9,2}}, {{0x478f,3},{0xa076,5}}, {{0x6,2},{0xfdd,6}}, {{0x39d5,7},{0xfdf,4}}, + {{0x3bcd,4},{0x49a6,3}}, {{0x1bbf,4},{0xe7f,2}}, {{0xe0f,1},{0x2ba5,1}}, {{0xf02,2},{0xf7a,2}}, + {{0x1877,7},{0xcd1,3}}, {{0x12c3,4},{0xcbf,2}}, {{0x1367,4},{0xe25,2}}, {{0x9e55,4},{0x2,1}}, + {{0x1807,5},{0x8b00,4}}, {{0x2de63,3},{0x9f,1}}, {{0x1d7e,3},{0xf4a,5}}, {{0x157ce,5},{0x1040,3}}, + {{0x1877,5},{0x39b3,5}}, {{0xf0f,2},{0xf91,3}}, {{0x514b,7},{0x1b41,4}}, {{0x58a8,5},{0xcce,2}}, + {{0xf0d,2},{0xe67,2}}, {{0xe5b,3},{0xe89,2}}, {{0x1702e,4},{0xe0a,1}}, {{0x14ff,3},{0x1d32,3}}, + {{0xcc7,1},{0x1150,2}}, {{0xd83d,6},{0x1be9,3}}, {{0x247a,9},{0xcc9,2}}, {{0x1e9e,4},{0x155e,3}}, + {{0x824d,4},{0xcd3,2}}, {{0xe11,2},{0x2,1}}, {{0x2280,2},{0x6,1}}, {{0x6cde,4},{0x17c0,2}}, + {{0x602c,5},{0x15517,5}}, {{0xaaf,2},{0xee9,2}}, {{0x1877,5},{0xe95,2}}, {{0xebe,4},{0x1088,4}}, + {{0x7156,4},{0xe30,3}}, {{0xf4f,1},{0xe99,1}}, {{0xcd3,1},{0xcd3,1}}, {{0x59c6,5},{0xe2b,2}}, + {{0xf77,5},{0xec3,3}}, {{0xb74,8},{0xb74,8}}, {{0xf59,2},{0xb,1}}, {{0x124c,6},{0x15af,3}}, + {{0xc6f7,4},{0x2,1}}, {{0x3537,2},{0x9a6,1}}, {{0xe97,3},{0xe25,2}}, {{0x1ff7,3},{0x29e3,4}}, + {{0xf1d,2},{0x2,1}}, {{0xcc8,1},{0xcc3,2}}, {{0x1677,4},{0xee9,2}}, {{0x9ff9,7},{0x1632,5}}, + {{0x111a,3},{0xe7f,2}}, {{0x14e96,6},{0xcc9,2}}, {{0x433d,4},{0xe71,1}}, {{0xcce,2},{0xbd26,3}}, + {{0x1a17,5},{0xe0d,2}}, {{0x16a7,3},{0xe2b,2}}, {{0xf0a,3},{0xfcb,2}}, {{0x1e08,5},{0xcc7,1}}, + {{0x10a3,3},{0x4618,4}}, {{0xcffd,8},{0xe11,1}}, {{0x1c0a,8},{0xe31,2}}, {{0x1547c,6},{0xec6,3}}, + {{0xd1a,2},{0xd1c,2}}, {{0xe5b,3},{0x158f,3}}, {{0x2006,6},{0xe11,1}}, {{0x8,1},{0xe25,2}}, + {{0xed1,4},{0x1185,3}}, {{0xcd48,5},{0x3642,2}}, {{0xd18,2},{0xd1a,4}}, {{0x11,1},{0x11,1}}, + {{0x1467,4},{0x2ef7,4}}, {{0x1667,5},{0xfb0,2}}, {{0x1d18,5},{0xec3,3}}, {{0x1489,2},{0x9a8,2}}, + {{0x19b7,3},{0xe5e,2}}, {{0x1967,3},{0xf4f,1}}, {{0x112b,5},{0x1e64,3}}, {{0x9519,6},{0xeab,2}}, + {{0xadcd,6},{0xe25,2}}, {{0xe99,1},{0x4767,1}}, {{0x1967,3},{0x136ee,5}}, {{0xe78,1},{0xfb8,3}}, + {{0xe2b,2},{0x1025,1}}, {{0x1977,4},{0xed5,3}}, {{0x14a7,4},{0x1ba9,4}}, {{0xf77,3},{0x6,2}}, + {{0xf1a,2},{0x1b9d,4}}, {{0xaaf,2},{0xeb5,2}}, {{0x46bd,3},{0xed6,2}}, {{0x1a07,3},{0xccb,2}}, + {{0x1367,4},{0x122c6,6}}, {{0x8,2},{0xa,2}}, {{0xf34,2},{0x1783,4}}, {{0x1f7f,5},{0x2,1}}, + {{0x433d,4},{0x2454,3}}, {{0x10a3,3},{0xd28b,6}}, {{0x1637,6},{0xf35,3}}, {{0x1cdc,6},{0x2c15,4}}, + {{0x48dd,6},{0xed6,2}}, {{0xe7f,2},{0xe6b,3}}, {{0xcf6,2},{0xcf6,2}}, {{0xf0a,3},{0xeb5,2}}, + {{0x1302,3},{0xe0d,2}}, {{0x27e0,3},{0x35a3,3}}, {{0x4,1},{0xcb8,1}}, {{0xfb0,2},{0xe6b,3}}, + {{0xd48,4},{0xe4d,2}}, {{0x113c,3},{0xcce,2}}, {{0xe09,1},{0xec6,3}}, {{0xf77,4},{0xb068,5}}, + {{0x10a3,3},{0xe65,2}}, {{0xef7,3},{0x1c1e,4}}, {{0x10cb,2},{0x129a,6}}, {{0xef7,3},{0x569a,3}}, + {{0x52f8,6},{0x113f,2}}, {{0xf89,3},{0x4618,3}}, {{0x1817,4},{0x13e1,5}}, {{0x16a7,3},{0x15399,2}}, + {{0x6f27,7},{0xcc9,2}}, {{0xe7a,1},{0xe21,1}}, {{0xfdf,3},{0xcc9,2}}, {{0x11b3,4},{0x2467,4}}, + {{0xf4f,1},{0x178a,3}}, {{0x113f,2},{0x6,1}}, {{0xd081,8},{0xe11,1}}, {{0xcd3,1},{0x1cd3,2}}, + {{0xe83,3},{0xe89,3}}, {{0x10c5,4},{0x2b86,4}}, {{0x29cf,3},{0x8,1}}, {{0x8b59,10},{0xe95,2}}, + {{0xed9,2},{0xec6,3}}, {{0x111a,3},{0x1150,2}}, {{0xf4d0,5},{0xe0c,3}}, {{0x2e271,3},{0x20561,1}}, + {{0xead,3},{0xe5e,2}}, {{0x24f2,5},{0xb02a,4}}, {{0x4,1},{0xf86,3}}, {{0xf77,3},{0x44ad,3}}, + {{0x19b7,3},{0xe60,2}}, {{0x11b94,6},{0x152e,3}}, {{0x12330,6},{0xcc3,2}}, {{0x10c5,4},{0x4516,3}}, + {{0xb12d,6},{0xe0a,1}}, {{0x712f,4},{0x5,1}}, {{0x13e4c,6},{0x1040,3}}, {{0x110c9,5},{0x59b4,3}}, + {{0x9a8,1},{0x278f,6}}, {{0x6bda,6},{0xbfca,3}}, {{0x6b3e,7},{0xfa6,3}}, {{0xde8e,4},{0x7,2}}, + {{0x11d5,5},{0xe22,3}}, {{0x2240,4},{0xe89,2}}, {{0xf0a,3},{0xf0d,2}}, {{0x1367,3},{0x22b2,3}}, + {{0x1257e,5},{0xe92,3}}, {{0x251f,8},{0xf91,3}}, {{0x5,1},{0x178a,3}}, {{0x9a6,1},{0x237d,2}}, + {{0x1ff7,3},{0xf18,2}}, {{0x6637,6},{0xfbb,4}}, {{0x4845,8},{0x1fc7,3}}, {{0xf0c,1},{0x1969,1}}, + {{0x7b,1},{0x8d,1}}, {{0x3559,4},{0x16935,5}}, {{0xde15,7},{0xde1c,4}}, {{0x19b7,3},{0xec3,3}}, + {{0xaeb1,5},{0xe86,2}}, {{0x9f,1},{0x21,1}}, {{0x9f,1},{0xf,1}}, {{0xe67,2},{0xf24,2}}, + {{0x4853,3},{0xed6,2}}, {{0x1109,8},{0x9a4,3}}, {{0x3a29,4},{0x3e54,3}}, {{0xef7,3},{0x3e0e,4}}, + {{0xf0d,2},{0xf7a,2}}, {{0x2de51,3},{0x45,1}}, {{0x6bda,6},{0x1f7c,3}}, {{0x2a47,3},{0xe78,1}}, + {{0xe83,3},{0x2b86,4}}, {{0x3bdb,6},{0xcbd,4}}, {{0x124c,6},{0xee9,2}}, {{0x2966,4},{0xe25,2}}, + {{0x797d,6},{0xcba,2}}, {{0xebbf,6},{0xfa6,3}}, {{0xf65,4},{0xe2b,2}}, {{0xe5b,3},{0x9a4,3}}, + {{0x10a3,3},{0x10b9,2}}, {{0x1694e,5},{0x3bec,4}}, {{0x1542c,7},{0xec6,3}}, {{0x1e26,6},{0x1790,3}}, + {{0x1967,3},{0x1288,4}}, {{0x1967,3},{0x1372,4}}, {{0x2240,4},{0x5e4f,3}}, {{0x1692,2},{0xcc9,2}}, + {{0x16a7,3},{0xe22,2}}, {{0xcce,2},{0xed5,3}}, {{0xe92,3},{0x431f,2}}, {{0xe08,1},{0xe16,1}}, + {{0x1024,2},{0xf7a,2}}, {{0x1467,4},{0x9a4,3}}, {{0x4767,1},{0x1230,3}}, {{0x2deff,5},{0x7b,1}}, + {{0x1290,4},{0xe8a,2}}, {{0x4765,3},{0x1153,2}}, {{0x9d41,6},{0x7a39,4}}, {{0x1967,3},{0xcce,3}}, + {{0xf02,2},{0x5538,2}}, {{0x9f,1},{0xd,1}}, {{0x1153,3},{0xe6b,4}}, {{0x1081,7},{0x122f,3}}, + {{0xe32,1},{0x4,1}}, {{0x2de75,3},{0x69,1}}, {{0xed5,3},{0xcc7,1}}, {{0x101f,2},{0xebb,3}}, + {{0x27e0,3},{0xfcb,2}}, {{0x28b3a,1},{0x20599,1}}, {{0xed5,4},{0xed9,2}}, {{0x5,1},{0x10cb,2}}, + {{0xcc8,1},{0xf70,2}}, {{0x7e81,7},{0x188a,4}}, {{0x4853,3},{0x1d31a,6}}, {{0xf79,3},{0xccd,1}}, + {{0xccb,2},{0xe0a,1}}, {{0xf89,3},{0x1b8b,6}}, {{0xf0c,1},{0x296f,3}}, {{0x113c,5},{0xcc9,2}}, + {{0x2858,5},{0xf59,2}}, {{0x63e1,6},{0xcc3d,3}}, {{0x62dd,4},{0xe2b,2}}, {{0x1dbd,6},{0x1288,4}}, + {{0x5,1},{0x9a6,1}}, {{0x4853,3},{0xeaf5,4}}, {{0xe7d,2},{0xed9,2}}, {{0x4383,5},{0xec6,3}}, + {{0x1d63,4},{0x6a0f,4}}, {{0x488b,4},{0xe0a,1}}, {{0xe5b,3},{0xf1f,3}}, {{0xcfc6,5},{0xec6,3}}, + {{0x45eb,4},{0x19e3,4}}, {{0xb1a5,6},{0x10bb,5}}, {{0x4f36,5},{0x156a,3}}, {{0x1367,3},{0x6,2}}, + {{0x3de1,5},{0xe92,3}}, {{0x10b4,6},{0x4a5f,4}}, {{0xeb5,2},{0xec6,3}}, {{0x1ff7,6},{0xfb8,3}}, + {{0x2e3d,9},{0x1392,3}}, {{0x1967,3},{0xcd2,2}}, {{0xbdb1,8},{0x141f,4}}, {{0x2015,3},{0x1a63,3}}, + {{0x1decc,6},{0x6,1}}, {{0xdd65,5},{0xf91,3}}, {{0x5722,5},{0xf91,3}}, {{0xcedf,7},{0xec6,3}}, + {{0x237b,5},{0xe67,2}}, {{0xe80,2},{0xe0a,1}}, {{0x1677,4},{0x1050,3}}, {{0x156a,3},{0xe80,2}}, + {{0x9a9,2},{0x14f9,3}}, {{0x46af,3},{0x10cb,4}}, {{0x11b5,2},{0xed9,2}}, {{0x4853,3},{0x10cb,2}}, + {{0x24f2,5},{0x9a4,3}}, {{0x27ef,4},{0x6,2}}, {{0x87c9,8},{0xe11,1}}, {{0x30357,1},{0x2e27d,1}}, + {{0x14a7,4},{0xa,2}}, {{0xa10d,8},{0x6ba3,3}}, {{0x247a,5},{0x6e53,4}}, {{0xfa5,2},{0xcc7,1}}, + {{0x125d,5},{0x2b89,3}}, {{0x29cf,3},{0x2,2}}, {{0x27ef,7},{0xe2b,2}}, {{0x4597,5},{0x9a8,1}}, + {{0x2213,4},{0x355b,3}}, {{0x2dbf,5},{0x96c4,4}}, {{0x2b46,4},{0x1489,2}}, {{0x1677,3},{0x155b,3}}, + {{0xec6,3},{0xe95,2}}, {{0xcb8,1},{0x1252,3}}, {{0x1a07,3},{0x404f,3}}, {{0x2f71,4},{0xf70,2}}, + {{0x12e5,3},{0xfcb,2}}, {{0x1ff7,3},{0x2236,3}}, {{0xccd,1},{0xcc7,1}}, {{0x6bc0,7},{0x6bd4,4}}, + {{0xe80,2},{0xcc7,2}}, {{0x10c5,4},{0xe69,5}}, {{0x115e,5},{0x36ca,9}}, {{0x12b2,5},{0xfcb,2}}, + {{0x1189d,4},{0xcce,2}}, {{0x3019,6},{0x344b,4}}, {{0x29cf,3},{0xed9,2}}, {{0xcc8,1},{0xf59,2}}, + {{0x1677,3},{0x3930,7}}, {{0x1467,4},{0x2f05,4}}, {{0x5722,5},{0x2269,4}}, {{0x3185,7},{0x138e,2}}, + {{0x19e7,6},{0xe65,2}}, {{0xa6e9,7},{0xec6,3}}, {{0xfe3,4},{0xe86,2}}, {{0xe11,1},{0x1cd5,4}}, + {{0x3b5d,5},{0xcc9,2}}, {{0xe83,3},{0x28471,4}}, {{0x20799,5},{0xf91,3}}, {{0x4665,4},{0xe11,1}}, + {{0xcd3,1},{0xfb0,2}}, {{0xcd3,1},{0xe32,1}}, {{0xcc3,2},{0x6,1}}, {{0x4ee8,4},{0x1ebf,3}}, + {{0x111c6,5},{0x59b4,3}}, {{0x46af,3},{0x11cb,3}}, {{0xcd2,2},{0xed9,2}}, {{0x2a29,8},{0x1150,2}}, + {{0x2777,6},{0xf59,2}}, {{0xeff5,9},{0xe95,2}}, {{0x307bb,1},{0xb74,1}}, {{0x1413a,6},{0xe6b,3}}, + {{0x29cf,3},{0xeb5,2}}, {{0xe6f,3},{0x142d,3}}, {{0xe08,1},{0xf0c,1}}, {{0x478f,3},{0xcd3,2}}, + {{0xe0a,1},{0xccd,1}}, {{0x7b45,5},{0x1392,3}}, {{0x1017d,5},{0x1b03,3}}, {{0x125d,5},{0x1af1,4}}, + {{0xe86,2},{0x9a8,1}}, {{0x6d46,6},{0x1689,6}}, {{0xe5e,2},{0xe1c,3}}, {{0x15760,4},{0x15764,5}}, + {{0xee4,4},{0x10298,3}}, {{0x7d31,5},{0xed9,2}}, {{0x16b7,7},{0x12ba,4}}, {{0x9a6,1},{0xe92,3}}, + {{0x12e5,3},{0x11a6,2}}, {{0x3eb3,8},{0x1d75,3}}, {{0x82b9,6},{0xec6,3}}, {{0x2948,4},{0xe6b,3}}, + {{0xcb8,1},{0xe30,3}}, {{0x8c91,6},{0xcc9,2}}, {{0x10cb4,4},{0x141b,4}}, {{0xed1,3},{0x6,2}}, + {{0xcd2,2},{0xe22,2}}, {{0xf77,3},{0x189f,3}}, {{0x1f378,8},{0xe0a,1}}, {{0xeb5,2},{0xe11,1}}, + {{0x1c82,6},{0xcc9,2}}, {{0x105f,3},{0x1303,3}}, {{0x1687,4},{0xe22,3}}, {{0xcc7,1},{0xcce,2}}, + {{0x759a,5},{0x4665,4}}, {{0x532c,9},{0xe11,1}}, {{0xf59,2},{0x2271,3}}, {{0x124c,6},{0x278f,6}}, + {{0x1025,1},{0x6,1}}, {{0xf77,9},{0xfa9,4}}, {{0x486f,4},{0xe0b,2}}, {{0x14842,7},{0xcc9,2}}, + {{0xbb4,6},{0xbb4,6}}, {{0xcd3,1},{0x56a8,5}}, {{0x7518,4},{0x1b01,4}}, {{0xe19,1},{0xf4f,1}}, + {{0xd1cb,8},{0xcc9,2}}, {{0x77e3,9},{0xf35,2}}, {{0x27e0,3},{0x101b7,4}}, {{0x1057,1},{0xe09,1}}, + {{0x27e0,4},{0xe22,3}}, {{0x1303,3},{0xec6,3}}, {{0xe0b,2},{0x12a9,3}}, {{0x3965,5},{0x3320,4}}, + {{0x1081,4},{0x142d,3}}, {{0x19e7,6},{0x1b8b,6}}, {{0x1369,2},{0x5342,3}}, {{0x113c,3},{0xe25,2}}, + {{0x143c,4},{0xe6b,3}}, {{0xf89,3},{0xf70,2}}, {{0xc015,4},{0x17c0,2}}, {{0xf9b,5},{0x1252,5}}, + {{0xe78,1},{0x1059,3}}, {{0x69,1},{0x8d,1}}, {{0x1977,3},{0x19b9,1}}, {{0x113c,3},{0x1ae88,6}}, + {{0x7b,1},{0xe,1}}, {{0x46af,3},{0x810e,3}}, {{0xe1f,3},{0xedd,1}}, {{0x29cf,3},{0x58d2,4}}, + {{0xcbd,1},{0xcd3,1}}, {{0xcc7,1},{0xeb4,3}}, {{0x1648a,7},{0xf7a,2}}, {{0x69,1},{0x57,1}}, + {{0x1290,4},{0x2017,4}}, {{0xcbf,2},{0x8,1}}, {{0x62ea,5},{0xe31,2}}, {{0xe33,1},{0xe16,1}}, + {{0x112b,4},{0x6e53,4}}, {{0x1969,1},{0xe16,1}}, {{0xe83,3},{0x7979,4}}, {{0x1a1a7,5},{0xe11,1}}, + {{0xad19,8},{0xe92,3}}, {{0xfa6,3},{0xf7a,2}}, {{0x93e1,7},{0x10bb,5}}, {{0x1967,4},{0xeb5,2}}, + {{0x29cf,3},{0x121c,3}}, {{0xe5b,4},{0x29f3,3}}, {{0xe71,1},{0x1d65,3}}, {{0x13b7,12},{0xec6,3}}, + {{0x6,1},{0xe2b,2}}, {{0xe67,2},{0x2bad,3}}, {{0xe16,1},{0xe29,2}}, {{0x2a47,3},{0xccd,1}}, + {{0x2094,3},{0xf70,2}}, {{0x4f43,7},{0xe92,3}}, {{0x20f6,6},{0x1523,4}}, {{0xed1,3},{0xe31,2}}, + {{0xf65,4},{0x3075,4}}, {{0xc16,4},{0xc16,4}}, {{0x478f,3},{0xe13,3}}, {{0xcd3,2},{0xe92,3}}, + {{0x5715,6},{0xe69,6}}, {{0xf0c,1},{0xccd,1}}, {{0x16a7,3},{0x9e34,4}}, {{0xe71,1},{0xf1a,2}}, + {{0x12f6,4},{0x88d4,4}}, {{0xeea,3},{0xe67,2}}, {{0x124c,6},{0x10cb,2}}, {{0x1cd3,2},{0x1040,3}}, + {{0xb289,7},{0xf84,5}}, {{0x1bb0,6},{0x1b4f,7}}, {{0x2de75,3},{0x8d,1}}, {{0xe83,3},{0x648d,8}}, + {{0xe43a,6},{0xe1c,3}}, {{0x2dbf,5},{0x168a,5}}, {{0x111a,3},{0xe0f9,3}}, {{0xe65,2},{0xf4a,5}}, + {{0x2a47,3},{0xe7a,1}}, {{0x1c3f7,5},{0x3976,3}}, {{0x10587,5},{0x239e,5}}, {{0xf11,1},{0xe08,1}}, + {{0xf89,3},{0x58d2,4}}, {{0x1467,4},{0x30ad,6}}, {{0x1024,2},{0xe69,6}}, {{0x1bbf,5},{0x1054,3}}, + {{0xcbf,2},{0xcba,2}}, {{0x16642,6},{0xec6,3}}, {{0x46af,3},{0xfb0,3}}, {{0xe83,3},{0xed6,2}}, + {{0x5c29,7},{0x1783,4}}, {{0x17f7,6},{0xe2b,2}}, {{0x1557,4},{0x1e84,3}}, {{0xf65,4},{0xcc1,1}}, + {{0xec3,3},{0xfe6,2}}, {{0xe71,1},{0xb,1}}, {{0xfb0,3},{0x2,1}}, {{0x12a3,3},{0xe11,1}}, + {{0xe83,5},{0xccd,1}}, {{0xcbf,2},{0xe0a,1}}, {{0x9a6,1},{0x8,1}}, {{0x4781,3},{0x1593,3}}, + {{0xaaf,2},{0x2eb37,1}}, {{0x1367,3},{0xeca,3}}, {{0x4fd2,6},{0xfd38,4}}, {{0xc36,4},{0xc36,4}}, + {{0xcbd,1},{0x10cb,2}}, {{0xee4,4},{0x14dd,5}}, {{0x19e7,6},{0x2ea8,5}}, {{0x4137,5},{0xcc7,1}}, + {{0x3433,5},{0xf7a,2}}, {{0x20ba,10},{0xcc9,2}}, {{0x2f47,5},{0xf70,5}}, {{0xe67,2},{0xe0a,1}}, + {{0xcd3,2},{0xe75,2}}, {{0xaf2,3},{0x11,1}}, {{0x19b7,3},{0x1150,2}}, {{0x5117,5},{0x14c76,4}}, + {{0x125d,6},{0xf1a,2}}, {{0x2,1},{0x73d6,2}}, {{0x5534,4},{0x1059,3}}, {{0xf0a,3},{0x990b,4}}, + {{0x43bb,7},{0xe78,2}}, {{0x4359,8},{0xf62,3}}, {{0xcdc1,8},{0xe95,2}}, {{0xcc8,1},{0xec6,3}}, + {{0x5534,4},{0xe1fa,4}}, {{0xe09,1},{0xf8f,4}}, {{0x2dec5,3},{0x9f,1}}, {{0x29cf,3},{0xcbf,2}}, + {{0xe5b,3},{0x11b5,2}}, {{0x1cd3,2},{0xf7a,2}}, {{0xef7,3},{0x145b,2}}, {{0xe1f,3},{0x4516,3}}, + {{0x21e33,6},{0xe95,2}}, {{0x33a7,5},{0x10f2,5}}, {{0x4f29,5},{0xec5,4}}, {{0x3185,7},{0x1ac7,3}}, + {{0xf89,3},{0xfcb,2}}, {{0x3fbd,9},{0xe6b,3}}, {{0x29cf,3},{0xed6,2}}, {{0x159e0,5},{0x156a,3}}, + {{0x9f81,8},{0xe77,3}}, {{0x2858,5},{0xb02a,4}}, {{0x27e0,3},{0x31f8,3}}, {{0xb3f1,3},{0xed6,2}}, + {{0x4,1},{0x4a44,5}}, {{0x80cd,8},{0x1040,3}}, {{0x8775,6},{0x138e,2}}, {{0x2501,5},{0xc088,4}}, + {{0xe83,3},{0xcc9,2}}, {{0xe09,1},{0x9,2}}, {{0x29cf,3},{0x43fb,3}}, {{0xee59,3},{0xa,2}}, + {{0x3559,4},{0xab88,4}}, {{0xf0c,1},{0x2,1}}, {{0x359f,4},{0xcd3,2}}, {{0xe83,5},{0xe61,2}}, + {{0xe83,3},{0xf86,2}}, {{0xcc1,1},{0x30f7,2}}, {{0x101f,3},{0xe6b,4}}, {{0x2858,5},{0x1131,3}}, + {{0xf16,2},{0xb,1}}, {{0x39b9,4},{0x1de7,3}}, {{0x158f,3},{0xe11,1}}, {{0xe0f,1},{0xe21,1}}, + {{0x1c91,5},{0x249f,3}}, {{0x1303,3},{0xed6,2}}, {{0xcc7,1},{0xf02,2}}, {{0xf24,2},{0xeed,4}}, + {{0xe7d,2},{0xf0d,2}}, {{0xe09,1},{0xe0a,1}}, {{0xb69d,3},{0x17c0,2}}, {{0x1ebc,6},{0xf86,3}}, + {{0xee9,2},{0x2917,3}}, {{0x3559,4},{0x12397,6}}, {{0xe2b,2},{0xe0b,4}}, {{0x1c0a,6},{0x1150,2}}, + {{0x1ce97,7},{0x6,1}}, {{0xe16,1},{0x10b8,2}}, {{0x824d,4},{0x20fbd,4}}, {{0xcc8,1},{0xccb,2}}, + {{0xcc1,1},{0x1b41,4}}, {{0x4153,6},{0x168f,2}}, {{0x478f,4},{0x104a,3}}, {{0x60d5,7},{0xec6,3}}, + {{0x4911,6},{0xec6,3}}, {{0xcbd,1},{0xcce,2}}, {{0xaaf,2},{0xf0f,2}}, {{0x1927,4},{0x155e,3}}, + {{0x662a,6},{0xfdd,4}}, {{0x46af,3},{0x6,1}}, {{0x1af2,5},{0xe92,5}}, {{0x4f36,5},{0xe78,2}}, + {{0xef7,3},{0xf12,3}}, {{0x1467,6},{0xf86,3}}, {{0xe99,1},{0xf0c,1}}, {{0xb0fd,6},{0x1de7,3}}, + {{0x4853,3},{0x5538,2}}, {{0x21ca9,5},{0xed6,2}}, {{0x2948,3},{0xf8f,4}}, {{0xfb8,3},{0xe67,2}}, + {{0xe97,3},{0xccb,2}}, {{0xe5b,4},{0x4b11,5}}, {{0x1e08,5},{0x122f,3}}, {{0xe78,1},{0xe86,2}}, + {{0x1bbf,4},{0x4e43,4}}, {{0x29cf,3},{0x1849,3}}, {{0x93e1,7},{0xed6,2}}, {{0xe3d,4},{0x308a3,2}}, + {{0x112b,9},{0xf72,5}}, {{0xb3f1,3},{0xf0d,2}}, {{0x113c,5},{0xf7a,2}}, {{0x2968,3},{0xe80,2}}, + {{0x1062,2},{0x6,1}}, {{0x16a7,3},{0x7e55,4}}, {{0xeee,3},{0xcc9,2}}, {{0xe09,1},{0x1172a,2}}, + {{0xcc9,2},{0xe0a,1}}, {{0x60f3,4},{0xe6b,3}}, {{0xe1f,3},{0xe5e,2}}, {{0xf4d0,6},{0x4,1}}, + {{0xedd,1},{0xe19,1}}, {{0x14158,6},{0xcc9,2}}, {{0x4853,3},{0xe2b,2}}, {{0x1a29,2},{0x189b,11}}, + {{0xe6f,4},{0x1131,3}}, {{0x2948,3},{0xe33,1}}, {{0x1c91,4},{0xf1d,2}}, {{0x3a7d,6},{0x142d,3}}, + {{0x12fd,3},{0xa,2}}, {{0x1847,5},{0x101e,4}}, {{0x1692,2},{0xe11,1}}, {{0x10c5,5},{0xec6,3}}, + {{0x1787,6},{0x2,3}}, {{0x1e65,3},{0xfa9,4}}, {{0x71ff,10},{0x1085,3}}, {{0x2f47,5},{0xf0f,2}}, + {{0xef7,3},{0xf84,5}}, {{0x239eb,5},{0xec6,3}}, {{0xf77,3},{0xe22,5}}, {{0xe09,1},{0x111c,2}}, + {{0xfcb,2},{0xf86,3}}, {{0xf1a,2},{0x1059,3}}, {{0xe29,2},{0xa,2}}, {{0xe71,1},{0xcbd,1}}, + {{0x18412,6},{0x2608,3}}, {{0x3d63,5},{0x9a4,3}}, {{0x1937,4},{0x12fd,3}}, {{0x2de75,3},{0xf,1}}, + {{0xebe,3},{0xe99,1}}, {{0xe67,2},{0xcc3,2}}, {{0x9345,9},{0xcc9,2}}, {{0x2de7b,3},{0x1347,3}}, + {{0xff99,7},{0xcc9,2}}, {{0x3db7,7},{0x37bc,5}}, {{0x1062,2},{0x9a8,1}}, {{0xef7,3},{0xe13,3}}, + {{0x14158,6},{0xec6,3}}, {{0x12e5,5},{0xe11,2}}, {{0x1369,2},{0x8428,3}}, {{0xe97,3},{0x5,2}}, + {{0xe16,1},{0xf11,1}}, {{0x7b,1},{0x21,1}}, {{0xae75,7},{0x7b72,3}}, {{0xcbf,2},{0x6,1}}, + {{0x2de63,3},{0x69,1}}, {{0xb5ad,5},{0x251a,5}}, {{0x1a56,2},{0x10cb,4}}, {{0x1967,3},{0x1150,2}}, + {{0x46af,3},{0xefa,2}}, {{0x14e50,6},{0xec6,3}}, {{0xab1,8},{0xab1,8}}, {{0xaaf,2},{0x59b4,3}}, + {{0x27e0,3},{0x3e0e,3}}, {{0x281c,8},{0xf84,5}}, {{0xe32,1},{0x2d8d,3}}, {{0xcb8,1},{0x11cb,3}}, + {{0x14a7,4},{0xe13,3}}, {{0x19b7,3},{0xe77,2}}, {{0x1008b,6},{0xe11,1}}, {{0x1081,7},{0xcbd,1}}, + {{0x1587,7},{0x180e,3}}, {{0x5117,5},{0x1569,3}}, {{0xe09,1},{0xe75,2}}, {{0x16d7,6},{0x2c15,4}}, + {{0x1a07,3},{0x702e,8}}, {{0x7935,5},{0xe80,2}}, {{0xa9ad,9},{0xe11,1}}, {{0x31a1,11},{0xf35,3}}, + {{0x3203,7},{0xf86,3}}, {{0x4765,3},{0xfdf,3}}, {{0x7b,1},{0xf,1}}, {{0x1677,3},{0xe7f,2}}, + {{0xe16,1},{0x442d,1}}, {{0x2deff,5},{0x8d,1}}, {{0x46bd,3},{0x3537,2}}, {{0x219b,10},{0xeee,3}}, + {{0x1ef7f,6},{0x59b4,3}}, {{0xeb9,3},{0xf1a,2}}, {{0xcd1,2},{0xcd3,3}}, {{0x10cb,3},{0xed5,3}}, + {{0x5290,9},{0xe6b,3}}, {{0x1025,1},{0xa,2}}, {{0x10b4,4},{0xee5a,4}}, {{0xe32,1},{0x7a14,4}}, + {{0x46bd,3},{0xf7a,2}}, {{0x1969,1},{0xe21,1}}, {{0x1977,4},{0x9a8,1}}, {{0x27e0,3},{0x1062,2}}, + {{0xaaf,2},{0xc,1}}, {{0x1754c,6},{0x59b4,3}}, {{0x1967,3},{0xe21,1}}, {{0x10c5,5},{0x12c8b,5}}, + {{0x122e,2},{0x120c,3}}, {{0x5ea6,6},{0xe11,1}}, {{0x3409,6},{0xec6,3}}, {{0x2c85,2},{0xed9,2}}, + {{0xe97,4},{0x1153,2}}, {{0x1062,2},{0x13e3,4}}, {{0xe83,3},{0x6,2}}, {{0x551a,7},{0x127c,3}}, + {{0xe0b,2},{0xcce,2}}, {{0xe16,1},{0x702e,8}}, {{0x1467,5},{0xfe0,2}}, {{0xe6f,3},{0x169d,4}}, + {{0xcce,3},{0x12f16,4}}, {{0xe99,1},{0xf4f,1}}, {{0xe16,1},{0xcc8,1}}, {{0x3583,5},{0xcce,2}}, + {{0xe86,2},{0x1e8b,3}}, {{0x2006,3},{0xf1f,3}}, {{0x2252b,4},{0x15284,4}}, {{0x12d12,6},{0xe11,1}}, + {{0x1e64,3},{0xf7a,2}}, {{0x13014,7},{0xed6,2}}, {{0xedd,1},{0xb,1}}, {{0x2271,3},{0x4,1}}, + {{0xd131,4},{0xfe0,2}}, {{0x50c9,8},{0x50de,5}}, {{0x1817,4},{0x4a5f,4}}, {{0x1081,7},{0xccd,4}}, + {{0xe563,5},{0xe0a,1}}, {{0xb34,8},{0xb34,8}}, {{0x12f6,4},{0x1fc61,5}}, {{0x2858,4},{0x1cd5,4}}, + {{0x113c,3},{0xcc3,3}}, {{0x34b1,5},{0x58a3,5}}, {{0x57,1},{0x8d,1}}, {{0xed1,3},{0x4d27,7}}, + {{0x478f,3},{0xccb,2}}, {{0xf0a,3},{0xed9,2}}, {{0xe83,3},{0x1d65,3}}, {{0x1a66,1},{0xf4f,1}}, + {{0x4,1},{0xe8a,2}}, {{0x2,1},{0xf1d,2}}, {{0x2240,4},{0x3ce0,5}}, {{0x7fa1,9},{0xcc9,2}}, + {{0x2d87,6},{0xec6,3}}, {{0xe61,2},{0x1120,3}}, {{0xe35e,6},{0xe77,3}}, {{0x10c5,4},{0xf1f,3}}, + {{0xe6f,4},{0x10d3,3}}, {{0xe86,2},{0xe61,2}}, {{0x1155,2},{0xcc3,3}}, {{0x1a66,1},{0x120f,3}}, + {{0x1f116,3},{0x3372,4}}, {{0x27e0,3},{0x77bf,5}}, {{0x66c6,5},{0xe0a,1}}, {{0x169b,6},{0xe0a,1}}, + {{0xcbd,1},{0xec3,3}}, {{0x7b,1},{0xd,1}}, {{0xdd65,5},{0xed6,2}}, {{0xcc1,2},{0x181b,3}}, + {{0x145b,2},{0xe2b,2}}, {{0x5,1},{0xe92,3}}, {{0x29c0,3},{0x1524,3}}, {{0xf722,5},{0x3933,4}}, + {{0xe5b,3},{0x4538,3}}, {{0x48d3,2},{0xf0c,1}}, {{0xf9b,5},{0x14f9,3}}, {{0x4,1},{0xf7a,2}}, + {{0x1357,1},{0x1357,1}}, {{0x478f,4},{0x1523,4}}, {{0x27e0,3},{0x309c,4}}, {{0xcba,2},{0xcbd,1}}, + {{0x149aa,5},{0x3caa,3}}, {{0x70ad,3},{0x2f33,6}}, {{0x2489,5},{0x120c,3}}, {{0x1ebc,6},{0x1e5e,4}}, + {{0x2f71,4},{0x6479,4}}, {{0x12e5,3},{0xfdf,3}}, {{0x417d,5},{0x1b69,3}}, {{0x101f,2},{0xfa5,2}}, + {{0x14ff,3},{0x2,1}}, {{0x3a7d,6},{0x4a44,5}}, {{0x2240,4},{0x6,2}}, {{0x205a7,1},{0x205a1,1}}, + {{0x1607,8},{0xeed,4}}, {{0x4853,3},{0x569a,3}}, {{0x1367,3},{0x1593,3}}, {{0x1965e,6},{0xe11,1}}, + {{0x2b46,4},{0x7e6b,6}}, {{0xae75,7},{0x9a8,1}}, {{0x23143,6},{0xe86,2}}, {{0xe6f,3},{0x2,1}}, + {{0x29cf,3},{0x1969,1}}, {{0x5715,6},{0xe69,5}}, {{0xebc,2},{0xf32,2}}, {{0x1307,1},{0x1307,1}}, + {{0xe71,1},{0x6,1}}, {{0x1787,6},{0x566f,4}}, {{0x1059,3},{0x6,1}}, {{0x11d5,5},{0x1288,4}}, + {{0x4781,3},{0x7000,4}}, {{0x46bd,3},{0x35a2,6}}, {{0x9,1},{0x6,1}}, {{0x28c1,4},{0xcc8,1}}, + {{0x2c54d,4},{0xe16,1}}, {{0x153e6,6},{0xec6,3}}, {{0x16a7,6},{0xec6,3}}, {{0xe32,1},{0xcba,2}}, + {{0x16b7,7},{0x43ed,6}}, {{0x1252,3},{0x1cd3,2}}, {{0x65b5,5},{0x2454,3}}, {{0x65e9,8},{0x14a2,3}}, + {{0x1189,3},{0xec6,3}}, {{0x5f42,5},{0x1e2a,4}}, {{0x10b8,2},{0xcce,3}}, {{0x2f2e,3},{0x12f16,4}}, + {{0x1019,4},{0x88d4,4}}, {{0xef7,3},{0x453b,4}}, {{0x17146,4},{0x8,1}}, {{0x1e08,6},{0x1783,4}}, + {{0xbb89,4},{0x10d3,3}}, {{0xe7a,1},{0xccd,1}}, {{0x281c,8},{0xebb,3}}, {{0x4597,5},{0x1f38,4}}, + {{0x6c76,5},{0x66c2,3}}, {{0x1007,5},{0x2623,4}}, {{0x7b2d,5},{0xf0f,2}}, {{0x79c5,4},{0x1692,2}}, + {{0xcc14,7},{0xe11,1}}, {{0x3089,5},{0x278f,6}}, {{0x29cf,3},{0xcc6,2}}, {{0x205a1,1},{0x2e27d,1}}, + {{0xe7a,1},{0xe33,1}}, {{0xcce,2},{0xf62,3}}, {{0x29c0,3},{0x1eb2,3}}, {{0x1807,5},{0x30ba,7}}, + {{0xe0a,1},{0xcc7,1}}, {{0xe71,1},{0x1773,4}}, {{0x6d2c,7},{0x6d33,4}}, {{0xe89,2},{0xe11,1}}, + {{0x197d8,6},{0xe11,1}}, {{0x492b,4},{0x534e,5}}, {{0xb,1},{0xe5e,2}}, {{0x5269,6},{0x8f2c,5}}, + {{0xbdb1,8},{0x6ca7,3}}, {{0xe83,3},{0x22a2,7}}, {{0xf89,3},{0x2f41,5}}, {{0x3107,5},{0x139c9,5}}, + {{0x18052,7},{0x10ed,3}}, {{0x6171,5},{0xed9,2}}, {{0x7d0d,6},{0xe11,1}}, {{0x2399,5},{0x5b6d,6}}, + {{0x1234e,7},{0xec6,3}}, {{0xe21,1},{0xf7a,2}}, {{0xf77,3},{0xe22,2}}, {{0x2dec5,3},{0xe,1}}, + {{0xf77,4},{0x1f38,4}}, {{0x1eee6,6},{0x6,1}}, {{0x7ab5,8},{0xe11,1}}, {{0x73ef,2},{0x1d3c,3}}, + {{0x1230,3},{0x2782,4}}, {{0x1367,3},{0x7968,6}}, {{0x2de75,3},{0xe,1}}, {{0xf77,4},{0x1088,4}}, + {{0xe61,3},{0xec6,3}}, {{0x3329,5},{0x10b7,2}}, {{0xef7,3},{0x22a2,5}}, {{0x1081,5},{0x2e33,4}}, + {{0xcbf,2},{0xec6,3}}, {{0x1f7f,5},{0xdd0a,3}}, {{0xf1a,2},{0xe6b,2}}, {{0xcf37,6},{0xcc9,2}}, + {{0x27e0,3},{0x82d5,5}}, {{0xe09,1},{0xe92,3}}, {{0x10eae,8},{0x1be9,3}}, {{0xb1a5,6},{0xcc9,2}}, + {{0x1081,4},{0x26ca8,3}}, {{0x10a6,2},{0x1153,2}}, {{0xe1f,3},{0x1150,2}}, {{0xf65,4},{0x809a,3}}, + {{0x1947,5},{0x50ce,5}}, {{0xe32,1},{0xe22,3}}, {{0x2bb4,2},{0xe1c,3}}, {{0x29cf,3},{0x810e,3}}, + {{0x496c,5},{0xdfc9,4}}, {{0x113f,2},{0xed9,2}}, {{0x28c1,4},{0x1077a,5}}, {{0x3fe7,8},{0x3694,3}}, + {{0x157a6,8},{0xe95,2}}, {{0x88d1,7},{0xcc3d,3}}, {{0xed1,3},{0x10ba,6}}, {{0xef7,3},{0x6008,3}}, + {{0x2489,7},{0x115a,4}}, {{0x19b9,1},{0x2,1}}, {{0xef7,3},{0x2f94,3}}, {{0x70ad,3},{0xfdf,3}}, + {{0xbb4,2},{0xd7a,2}}, {{0x7a91,6},{0xe11,1}}, {{0x28309,6},{0xe11,1}}, {{0x3d63,5},{0x6593,7}}, + {{0x712f,4},{0xccc,2}}, {{0xe09,1},{0xe2b,2}}, {{0x2de75,3},{0x57,1}}, {{0xfb0,2},{0x1040,3}}, + {{0x19f7,4},{0x181b,3}}, {{0xef7,3},{0xa317,6}}, {{0x4853,3},{0x44ad,3}}, {{0x114d,4},{0xccb,2}}, + {{0xe09,1},{0x3a91,3}}, {{0x15a7,6},{0xcd3,1}}, {{0xf89,3},{0x15399,2}}, {{0xf65,4},{0x948b,4}}, + {{0x7f09,3},{0x4132,5}}, {{0x2ec9,5},{0x7949,4}}, {{0x10a3,3},{0xcc6,2}}, {{0x4781,3},{0xed9,2}}, + {{0x1062,2},{0xf7a,2}}, {{0x79c5,4},{0xcbd,1}}, {{0x18020,6},{0x1ea3,3}}, {{0xcbd,1},{0x6,1}}, + {{0x824d,4},{0x1303,3}}, {{0x1694e,5},{0x2f79,5}}, {{0xcd2,2},{0x2,1}}, {{0x1877,10},{0xe92,3}}, + {{0x9a8,1},{0x2,1}}, {{0x162c,3},{0xcba,2}}, {{0x4597,5},{0x4,1}}, {{0x1062,2},{0xe92,3}}, + {{0xe7d,2},{0xe69,5}}, {{0x12308,6},{0x9a4,3}}, {{0xf02,2},{0xf86,3}}, {{0x4f02,5},{0xf7a,2}}, + {{0xb0fd,6},{0xed9,2}}, {{0xe97,3},{0x11b5,2}}, {{0x14a7,4},{0x4618,3}}, {{0x1648a,7},{0xcc9,2}}, + {{0x20f6,6},{0x1510,4}}, {{0x1303,3},{0x6,1}}, {{0x15d7,8},{0xe11,1}}, {{0xef7,3},{0xffc,3}}, + {{0xe613,5},{0xf63,2}}, {{0x4765,3},{0xe5e,2}}, {{0x1c54d,6},{0x2f94,3}}, {{0x2ed7,7},{0xec6,3}}, + {{0xf0a,3},{0xf1d,2}}, {{0x3de1,5},{0x4,1}}, {{0xcbd,1},{0x1ee0,3}}, {{0x159e0,5},{0x44b3,4}}, + {{0xf0a,3},{0xf59,2}}, {{0x75ce,4},{0x1b4f,5}}, {{0x28d0,4},{0x2362d,3}}, {{0xe22,3},{0xcc3,2}}, + {{0xe0f,1},{0x1a66,1}}, {{0x2948,3},{0x9,1}}, {{0x8d,1},{0xf,1}}, {{0xcbf,2},{0xed6,2}}, + {{0x409d,8},{0xf34,4}}, {{0xf7a,2},{0xe32,1}}, {{0x750b,8},{0xeed,4}}, {{0x16f7,6},{0xa317,6}}, + {{0x56c7,5},{0x268c,3}}, {{0x1f165,6},{0x1be9,3}}, {{0x11d99,5},{0xf0d,2}}, {{0x2deff,5},{0x9f,1}}, + {{0x2939,4},{0xe7f,3}}, {{0x104a,3},{0xec6,3}}, {{0x7f41,4},{0x7974,4}}, {{0x28b2,5},{0x153a,3}}, + {{0xe99,1},{0xcb8,1}}, {{0x10c5,4},{0x13e3,4}}, {{0xf16,2},{0x10bb,5}}, {{0xcd3,2},{0x1064,3}}, + {{0x1747,5},{0x175c,3}}, {{0xf77,5},{0x8bcb,6}}, {{0xb15d,7},{0xec6,3}}, {{0xefdf,6},{0x18b4,3}}, + {{0xf02,2},{0x9a6,1}}, {{0x16a7,3},{0xb37c,3}}, {{0xcc6,2},{0xf86,3}}, {{0x572f,7},{0x14f9,3}}, + {{0x113f,2},{0xcd3,1}}, {{0x113c,3},{0x3356,4}}, {{0x1967,3},{0x3118,5}}, {{0x97a1,5},{0xbfca,3}}, + {{0x20f6,5},{0xafbe,6}}, {{0xf4f,1},{0x2ba5,1}}, {{0x180a,3},{0xe0a,1}}, {{0xe37,2},{0xbb6,2}}, + {{0x1ceb,6},{0x13e3,4}}, {{0x1857,4},{0x277e,2}}, {{0x1189,3},{0xcc9,2}}, {{0x1007,7},{0x1510,7}}, + {{0x16a7,3},{0xe0d,2}}, {{0x1969,1},{0xe7a,1}}, {{0xe67,2},{0x3555,4}}, {{0x3a1b,5},{0x277e,2}}, + {{0x11373,4},{0xf4f,1}}, {{0x1059,3},{0xe67,2}}, {{0xf89,3},{0xeee,5}}, {{0xccd,1},{0x1d7e,3}}, + {{0x6171,5},{0xceee,6}}, {{0x16a7,3},{0x1059,3}}, {{0x63ee,9},{0xe6b,3}}, {{0x8709,8},{0xec6,3}}, + {{0x9,1},{0xcd3,2}}, {{0xf1a,2},{0xccd,1}}, {{0x1019,4},{0x1d7d,3}}, {{0x109b,2},{0x17c0,2}}, + {{0x112b,5},{0x53cd,4}}, {{0x1977,3},{0x9a6,1}}, {{0xe19,1},{0xfcb,2}}, {{0xe101,5},{0xf3a,3}}, + {{0xf15,1},{0xe22,2}}, {{0x2de63,3},{0x57,1}}, {{0xfb0,2},{0xccd,1}}, {{0x10b4,6},{0xe95,2}}, + {{0xebe,4},{0x268c,3}}, {{0x79c5,4},{0x4833,4}}, {{0x1edf,4},{0xeee,3}}, {{0x112b,5},{0x1ac7,3}}, + {{0xcce,2},{0xf35,3}}, {{0x712f,4},{0x6,2}}, {{0x12d4,3},{0x2f1ca,2}}, {{0xfa5,3},{0xe11,1}}, + {{0x471f,6},{0x4d83,5}}, {{0x1a7aa,5},{0xec5,4}}, {{0x35a2,4},{0x16ad,5}}, {{0x1150,2},{0xe67,2}}, + {{0x353d,5},{0x13e3,4}}, {{0x2006,3},{0xf0f,2}}, {{0xed6,2},{0xf35,2}}, {{0x5,1},{0xe65,2}}, + {{0x112b,4},{0xf9d,3}}, {{0xaaf,2},{0x205a9,1}}, {{0x2bae,2},{0xec6,3}}, {{0x4853,3},{0x1150,2}}, + {{0x1817,4},{0x113f,2}}, {{0x197d8,6},{0xec6,3}}, {{0x314d,6},{0x4a5f,4}}, {{0xcd3,1},{0x113f,2}}, + {{0xcce,2},{0xfe6,2}}, {{0x16a7,6},{0xe11,1}}, {{0xe71,1},{0xeed,4}}, {{0x46af,3},{0x15ec,3}}, + {{0x27e0,3},{0xe5be,3}}, {{0x4853,3},{0x12a3,3}}, {{0x1467,4},{0x8,3}}, {{0xf60,2},{0xf62,3}}, + {{0x62ea,5},{0xb,1}}, {{0x1a07,3},{0xe99,1}}, {{0xe71,1},{0xe09,1}}, {{0xed1,4},{0x1187,6}}, + {{0x46af,3},{0xcd3,2}}, {{0x1569,2},{0xec6,3}}, {{0x111a,3},{0x1d7d,3}}, {{0xf15,1},{0xe13,3}}, + {{0x2bb4,2},{0xcc3,2}}, {{0x10571,8},{0xcc9,2}}, {{0x14932,6},{0xec6,3}}, {{0xcc1,1},{0xe22,2}}, + {{0x12e5,3},{0x10d3,3}}, {{0xe0a,1},{0x9a6,1}}, {{0x1667,7},{0x2c6a,5}}, {{0xf89,3},{0x6d5a,5}}, + {{0x7eb1,6},{0x30f7,2}}, {{0x6ec3,3},{0xcc7,1}}, {{0x478f,3},{0x1089,3}}, {{0x14d4c,9},{0xe11,1}}, + {{0x12f6,4},{0x1003,3}}, {{0x12e5,3},{0x6,2}}, {{0x2ced,5},{0x9a5,2}}, {{0xe32,1},{0x6,2}}, + {{0x1a07,3},{0xe78,1}}, {{0xe25,2},{0xe22,2}}, {{0x1208,7},{0x2c15,3}}, {{0x70ad,3},{0xeb5,2}}, + {{0xf0c,1},{0xedd,1}}, {{0xe19,1},{0x9a8,1}}, {{0x1cdc,6},{0x504d,3}}, {{0x113f,2},{0xcc9,2}}, + {{0x1081,4},{0x10cb,2}}, {{0x113c,3},{0xe1c,3}}, {{0x27e0,3},{0x40d8,3}}, {{0x17030,2},{0xe0a,1}}, + {{0xc36,2},{0xc78,2}}, {{0xef7,4},{0x102d6,6}}, {{0x1877,5},{0x1a58,3}}, {{0x10f48,7},{0x4,1}}, + {{0xf0a,3},{0x10b7,2}}, {{0x3a45,5},{0x23df,5}}, {{0x3a29,4},{0xcba,2}}, {{0x24e3,5},{0x2b78,4}}, + {{0x4199,5},{0x1832,3}}, {{0x1e80,6},{0x1cd3,2}}, {{0x1557,4},{0xeb5,2}}, {{0x13e42,5},{0x138e,3}}, + {{0x1877,5},{0xccb,2}}, {{0x9,1},{0xf7a,2}}, {{0xf77,3},{0x41e9,4}}, {{0x19b9,1},{0x8,1}}, + {{0x1ebc,6},{0x1064,3}}, {{0xa9ad,9},{0xcc9,2}}, {{0x2de75,3},{0x7b,1}}, {{0x4781,3},{0xa,2}}, + {{0xf4f,1},{0xf0d,2}}, {{0xe75,2},{0x18b4,3}}, {{0xaaf,3},{0x11,1}}, {{0xe11,2},{0xe92,3}}, + {{0x4d6f,9},{0xcc9,2}}, {{0x753f,5},{0x138e,2}}, {{0xf4f,1},{0xedd,1}}, {{0x9add,5},{0x121a6,4}}, + {{0x72cf,4},{0xe22,2}}, {{0xcb8,1},{0x9cad,4}}, {{0x8,1},{0x38ec,3}}, {{0xfc7,3},{0x104c,2}}, + {{0x1777,5},{0x1064,3}}, {{0x14d42,5},{0x7096,4}}, {{0x116f,8},{0x1150,2}}, {{0x1a07,3},{0xf70,2}}, + {{0xcc6,2},{0xe11,1}}, {{0x1cd3,2},{0xa,2}}, {{0x77f0,4},{0xcbd,1}}, {{0xe71,1},{0xa,2}}, + {{0x10361,5},{0x1523,4}}, {{0x8d,1},{0x21,1}}, {{0x8229,7},{0xe11,1}}, {{0x9a9,2},{0x3,2}}, + {{0x1857,4},{0x5,1}}, {{0x1569,2},{0xf7a,2}}, {{0x3433,6},{0xe6b,4}}, {{0x520e,5},{0xe6b,2}}, + {{0x2f9b,5},{0x1221,3}}, {{0x19b7,3},{0x1153,2}}, {{0xf15,1},{0x5,1}}, {{0xf11,1},{0x8,1}}, + {{0xf0c,1},{0xf32,2}}, {{0x40d5,6},{0x6,2}}, {{0x5,1},{0x1059,3}}, {{0x4781,3},{0x2454,3}}, + {{0x16a7,3},{0xb428,3}}, {{0x16d7,6},{0x1523,4}}, {{0x2d87,6},{0xe11,1}}, {{0x2501,5},{0xccb,2}}, + {{0x2a47,3},{0x5,1}}, {{0x15e7,5},{0x2476,4}}, {{0x19b9,1},{0xf0c,1}}, {{0xe5b,3},{0xe2b,2}}, + {{0x3487,6},{0x2872,4}}, {{0x46af,3},{0x24e8,4}}, {{0x1847,5},{0x9a4,3}}, {{0xfb0,2},{0x23e1,3}}, + {{0x46bd,3},{0x2236,3}}, {{0x12d4,3},{0x10cb,4}}, {{0x9a6,1},{0xe2b,2}}, {{0x12d4,3},{0x1569,2}}, + {{0x2a47,3},{0x9a5,2}}, {{0x2f2e,3},{0xe11,1}}, {{0x39d5,7},{0xe69,5}}, {{0x1897,5},{0xe7d,2}}, + {{0xe0a,1},{0xe31,2}}, {{0x255b,9},{0xe69,5}}, {{0xf0a,3},{0xcdda,2}}, {{0x101f,3},{0xe77,3}}, + {{0x138e,2},{0xcbd,1}}, {{0xcd2,2},{0xed6,2}}, {{0x478f,4},{0x44ad,3}}, {{0xe6f,3},{0x4b96,5}}, + {{0x1007,5},{0x17ec,4}}, {{0x1827,5},{0xc5e0,4}}, {{0xe22,3},{0x6,1}}, {{0xb3f1,3},{0xc445,5}}, + {{0x16bc4,6},{0x7b72,3}}, {{0xe67,2},{0x1252,3}}, {{0xcbf,2},{0xcc9,2}}, {{0x15530,6},{0x1040,3}}, + {{0x58a8,5},{0x1ad8e,4}}, {{0xe0d,2},{0xef5,2}}, {{0x7935,5},{0xe11,2}}, {{0x1b5cc,6},{0xec6,3}}, + {{0x115e,5},{0x51c8,5}}, {{0x38cb,7},{0xed9,2}}, {{0x1bec,5},{0xeaa,2}}, {{0x2489,10},{0xcc9,2}}, + {{0x7d31,5},{0xccd,1}}, {{0x442d,1},{0xf7a,2}}, {{0x1d63,4},{0x189f,3}}, {{0xaaf,2},{0x1307,1}}, + {{0x1547c,6},{0xe11,1}}, {{0xdd44,6},{0xf62,3}}, {{0x46bd,3},{0x8,1}}, {{0xe32,1},{0xcd3,1}}, + {{0x2dec5,3},{0x8d,1}}, {{0xccb,2},{0xed9,2}}, {{0x16a7,3},{0x5,2}}, {{0x10a3,4},{0xcc7,2}}, + {{0xf15,1},{0x2,1}}, {{0xb37c,3},{0xe0a,1}}, {{0xccd,1},{0x1166,3}}, {{0x7414,3},{0xe32,1}}, + {{0x75ce,4},{0xe2b,2}}, {{0x70ad,4},{0xcc8,1}}, {{0xcc6,2},{0xe67,2}}, {{0x772d,5},{0xcce,2}}, + {{0x2015,6},{0x59b4,3}}, {{0xe0f,1},{0xcd4,2}}, {{0x154f4,5},{0xcc7,1}}, {{0xf20,2},{0x12a6,3}}, + {{0x205a1,1},{0x11,1}}, {{0xe5e,2},{0x1131,3}}, {{0x8775,6},{0x1ac7,3}}, {{0x2de5d,3},{0x314,2}}, + {{0x3,1},{0x3,1}}, {{0xe1f,3},{0xcbf,2}}, {{0x70ad,3},{0x1593,3}}, {{0x1817,4},{0xcd3,2}}, + {{0x38e7,4},{0xccd,1}}, {{0xeb5,2},{0xed6,2}}, {{0xfcb,2},{0x6,1}}, {{0x9,1},{0x2075,3}}, + {{0x69,1},{0x9f,1}}, {{0x8d,1},{0xd,1}}, {{0x2966,5},{0xee9,2}}, {{0x29cf,3},{0x1be9,3}}, + {{0x10a3,3},{0xe22,2}}, {{0x113c,4},{0x1d3c,3}}, {{0x1702e,4},{0x8,1}}, {{0x416f,5},{0x1660b,5}}, + {{0x11b3,5},{0x997a,7}}, {{0x5534,4},{0x72d3,3}}, {{0x58a8,5},{0x28f5,5}}, {{0xc0a1,2},{0xe3b2,4}}, + {{0xe67,2},{0xe92,3}}, {{0xf0a,3},{0x1150,2}}, {{0x16a7,3},{0x1d65,3}}, {{0xaaf,2},{0xec6,3}}, + {{0x17f7,8},{0xf84,5}}, {{0x478f,3},{0x20549,2}}, {{0xe2b,2},{0x6,1}}, {{0x27e0,3},{0xcc3,2}}, + {{0x10c5,5},{0x1c1e,4}}, {{0x20ba,10},{0xe11,1}}, {{0xcbd,1},{0x4516,3}}, {{0xe71,1},{0xf91,3}}, + {{0xcc7,1},{0xfb0,2}}, {{0x2afa1,4},{0x19b9,1}}, {{0x6950,9},{0x4,1}}, {{0x3019,9},{0x12be,5}}, + {{0x10a3,3},{0x101f,2}}, {{0x5715,6},{0x1722,5}}, {{0xcd3,2},{0xcd3,1}}, {{0x1cfc,3},{0x13e3,4}}, + {{0x17f7,6},{0x4b62,5}}, {{0x8679,10},{0xe95,2}}, {{0x10a3,3},{0x2f2e,4}}, {{0xc76,4},{0xc76,4}}, + {{0x28df,5},{0x11cb,3}}, {{0x1667,7},{0xebb,3}}, {{0x2501,5},{0x8937,6}}, {{0x12b2,5},{0xe7f,4}}, + {{0x10b9,2},{0x155e,3}}, {{0x7aa9,6},{0x1054,3}}, {{0x8,1},{0xeab,2}}, {{0xcd3,1},{0x6,2}}, + {{0xe33,1},{0x16ad,3}}, {{0xf4f,1},{0xe25,2}}, {{0x4,1},{0xe6b,3}}, {{0xcc9,2},{0xe11,1}}, + {{0xcfc6,5},{0x9,1}}, {{0xe5b,3},{0x10cb,4}}, {{0x1997,4},{0x2467,4}}, {{0x1637,6},{0xcd3,1}}, + {{0x391f,5},{0x1085,3}}, {{0x602c,5},{0x6031,5}}, {{0x10432,5},{0x2177,5}}, {{0x116f,8},{0xed9,2}}, + {{0x1050,4},{0x1040,3}}, {{0x10a3,3},{0x7998,4}}, {{0xe97,3},{0xe19,1}}, {{0xe83,3},{0x11b5,2}}, + {{0x1007,5},{0xa9a6,4}}, {{0x1877,5},{0xfb4,4}}, {{0x61e6,9},{0xeed,4}}, {{0x46bd,3},{0x11b5,2}}, + {{0x780a,8},{0xe69,5}}, {{0x2777,8},{0xe11,2}}, {{0x11ddb,7},{0x1fc7,3}}, {{0x359f,4},{0x1e40,4}}, + {{0x122a,9},{0x2782,4}}, {{0x46af,3},{0x1cd3,2}}, {{0x3123,6},{0xfb8,3}}, {{0xc6f7,4},{0x59b4,3}}, + {{0xcb8,1},{0xcd3,2}}, {{0x22b8,4},{0x181b,3}}, {{0x2f94,3},{0xe32,1}}, {{0x486f,4},{0x33d3,2}}, + {{0x11d5,5},{0x2651,7}}, {{0x2501,5},{0x1252,3}}, {{0x5541,6},{0x1b9d,4}}, {{0xe22,2},{0xf35,2}}, + {{0x5e58,6},{0xe0d,2}}, {{0x1131b,7},{0x11322,4}}, {{0x12d4,3},{0xcce,2}}, {{0x93a5,5},{0x1ad8e,4}}, + {{0x12c3,4},{0xe78,1}}, {{0x1c91,4},{0x6,1}}, {{0x3b09,4},{0xed9,2}}, {{0x5e3e,5},{0x111c,2}}, + {{0xccb,2},{0x9a8,1}}, {{0x27e0,3},{0x168b,4}}, {{0xf89,3},{0x2f2e,4}}, {{0x2ed7,7},{0x8441,4}}, + {{0x1817,4},{0x11b5,2}}, {{0x12e5,3},{0x1153,3}}, {{0x478f,3},{0x288b,2}}, {{0xcc1,2},{0xf7a,2}}, + {{0x1857,4},{0x33d3,2}}, {{0xe97,4},{0x1096,3}}, {{0x12a3,3},{0xec6,3}}, {{0x3,1},{0xe0a,1}}, + {{0xf0c,1},{0xf0c,1}}, {{0x2de63,3},{0x21,1}}, {{0x41a7,4},{0xe71,1}}, {{0xb45d,4},{0x5026,4}}, + {{0x29cf,3},{0x8666,2}}, {{0x46bd,3},{0x4ef1,4}}, {{0x450b,4},{0xcba,2}}, {{0xcbd,1},{0x8,1}}, + {{0x5541,6},{0x1150,2}}, {{0x2de51,3},{0x9f,1}}, {{0x797d,5},{0x1b9d,4}}, {{0x16a7,3},{0x2f41,5}}, + {{0x1467,5},{0xe75,2}}, {{0x41b5,5},{0x9,3}}, {{0xe99,1},{0xe21,1}}, {{0x24f2,5},{0x1e40,4}}, + {{0x9b01,8},{0xe0a,1}}, {{0x125d,8},{0x1b4f,5}}, {{0xe009,3},{0x111c,2}}, {{0x1154c,4},{0x4665,4}}, + {{0x478f,3},{0x2,1}}, {{0x28b2,8},{0x138e,2}}, {{0x12e5,3},{0x10b7,2}}, {{0x471f,6},{0x2261,3}}, + {{0x1817,4},{0x14ab,4}}, {{0x1e62,6},{0x505d,4}}, {{0xe80,2},{0xf4a,5}}, {{0x4516,3},{0x1150,2}}, + {{0xcbd,1},{0x569a,3}}, {{0x3a45,5},{0xeca,3}}, {{0x6644,5},{0xcb8,1}}, {{0xf77,5},{0x1047,3}}, + {{0x62dd,4},{0xe2b,4}}, {{0x1677,3},{0xe92,3}}, {{0x10a3,3},{0x4618,3}}, {{0x256a,8},{0x2560,4}}, + {{0x111a,3},{0x2467,4}}, {{0xcb8,1},{0xec6,3}}, {{0xdfac,5},{0xed6,2}}, {{0x1f16,5},{0x3153,7}}, + {{0x2deff,5},{0xe,1}}, {{0x3089,5},{0x1378f,3}}, {{0x3a29,4},{0x10cb,4}}, {{0x1877,4},{0x1ebf,3}}, + {{0x46af,3},{0x6,2}}, {{0xe16,1},{0xdfb0,5}}, {{0x18e08,7},{0x6,1}}, {{0x42db,8},{0xe69,6}}, + {{0x4615,5},{0xfb8,3}}, {{0x4853,3},{0xfcb,2}}, {{0xe6f,3},{0xf1a,2}}, {{0x10e09,5},{0xf35,3}}, + {{0x7b51,4},{0x1240,2}}, {{0x2f71,4},{0x4c16,3}}, {{0x1467,5},{0x1692,5}}, {{0x1085,3},{0xe6b,3}}, + {{0x6,1},{0x8,1}}, {{0xf0a,3},{0xb,1}}, {{0x7935,5},{0xfe6,2}}, {{0x18bc4,6},{0x142d,3}}, + {{0x1969,1},{0x136ee,5}}, {{0x168a,3},{0x9a6,1}}, {{0x1677,3},{0xe65,2}}, {{0x35f3,9},{0x1ac7,3}}, + {{0xe83,3},{0x52d8,3}}, {{0xe0f,1},{0x9a5,2}}, {{0xb5ad,5},{0x1780,3}}, {{0x16a7,5},{0x1791,6}}, + {{0xf70,2},{0xe11,1}}, {{0x2a47,3},{0x29f3,3}}, {{0x1152b,4},{0x122e,2}}, {{0x10c5,4},{0x1288,4}}, + {{0x18d7,9},{0xe11,1}}, {{0xe6f,4},{0x39a1,5}}, {{0x488b,4},{0xb,1}}, {{0xcc9,2},{0xf35,2}}, + {{0xead8,5},{0xfb8,3}}, {{0xe5b,3},{0x2454,3}}, {{0x18e08,7},{0xe22,2}}, {{0x4853,3},{0xe0f9,3}}, + {{0x205a5,1},{0x20599,1}}, {{0x10a3,3},{0xeab,2}}, {{0x1e910,4},{0xe95,2}}, {{0x16a7,3},{0x122d,2}}, + {{0x10cb,2},{0xe22,2}}, {{0x9f69,7},{0x189f,3}}, {{0x479d,4},{0xccd,1}}, {{0x14a7,8},{0xef3,4}}, + {{0x3567,8},{0xe69,5}}, {{0x70ad,3},{0x7950,3}}, {{0xf0a,3},{0xcd1,2}}, {{0x9af,2},{0x9b5,2}}, + {{0x4765,3},{0x3922,4}}, {{0xaaf,2},{0xc26f,2}}, {{0x2dbf,5},{0xec53,3}}, {{0xf77,3},{0x8428,3}}, + {{0xcd2,2},{0xccd,1}}, {{0x5992,6},{0x142c,4}}, {{0x3a29,4},{0x8,1}}, {{0x950d,9},{0xf23,3}}, + {{0xe11,2},{0x2b86,4}}, {{0x11557,7},{0xe67,2}}, {{0xaaf,2},{0x302,2}}, {{0x772d,5},{0x8b00,4}}, + {{0x1fe8,5},{0xe67,2}}, {{0x4597,4},{0x11dc,3}}, {{0x15422,5},{0x2872,4}}, {{0x2dec5,3},{0x7b,1}}, + {{0xec0,3},{0xed6,2}}, {{0x3,1},{0x153a,3}}, {{0x7602,4},{0xcbf,2}}, {{0xb355,10},{0xe95,2}}, + {{0x1524c,6},{0xe31,2}}, {{0x1e08,9},{0xcc9,2}}, {{0xf79,4},{0x1780,3}}, {{0x14ff,3},{0xe0d,2}}, + {{0x28d0,4},{0xb191,5}}, {{0x6,2},{0x8,1}}, {{0x19b7,3},{0xedd,1}}, {{0xccd,3},{0x1be9,3}}, + {{0x1687,4},{0xe0b,2}}, {{0x496c,5},{0xcd3,1}}, {{0x1537,4},{0x1059,3}}, {{0x1967,4},{0x1e84,3}}, + {{0x5534,4},{0xe7f,2}}, {{0x5,1},{0xf1f,3}}, {{0xf1a,2},{0x30f7,2}}, {{0x28d0,8},{0x10f2,5}}, + {{0x111a,3},{0xeb5,2}}, {{0x1877,7},{0x3,1}}, {{0xe31,2},{0x6,2}}, {{0x1f34,8},{0xe11,1}}, + {{0xe1f,3},{0x8,1}}, {{0x12064,5},{0x104dd,4}}, {{0x1c82,13},{0xe95,2}}, {{0xe1f,3},{0xcbe,3}}, + {{0x9,1},{0x5538,2}}, {{0xe21,1},{0x2261,3}}, {{0x2280,2},{0xcce,2}}, {{0x127f,3},{0x12a4,5}}, + {{0x4765,3},{0x19b9,1}}, {{0xf0a,3},{0xec6,3}}, {{0xe19,1},{0x5,1}}, {{0x29cf,3},{0x178a,3}}, + {{0xf65,4},{0xe11,1}}, {{0xe88,3},{0x9a8,1}}, {{0x33a7,5},{0x1f46,3}}, {{0x486f,4},{0xeab,2}}, + {{0xf18,2},{0xcd3,1}}, {{0xe5b,4},{0x7f09,8}}, {{0x2538b,5},{0xeca,3}}, {{0x17f7,6},{0x2ea8,5}}, + {{0x33ed,5},{0xcce,2}}, {{0x6e71,8},{0x1523,4}}, {{0x10a3,3},{0x2d1f,6}}, {{0x80fd,6},{0x9,2}}, + {{0x19b7,3},{0xcba,3}}, {{0xe61,3},{0xccd,1}}, {{0x4765,3},{0xec3,3}}, {{0x16a7,3},{0xf12,3}}, + {{0x101f,2},{0x10bb,5}}, {{0xb985,5},{0xe86,2}}, {{0xae69,5},{0x123e,3}}, {{0x2b500,6},{0x78b5,2}}, + {{0xf89,3},{0xcce,3}}, {{0x31cb,6},{0x6479,4}}, {{0x2de57,3},{0xe,1}}, {{0x29cf,3},{0x2f41,5}}, + {{0xebe,5},{0x27e9,3}}, {{0x19b7,3},{0xa,2}}, {{0xf77,4},{0xcd4,2}}, {{0xe99,1},{0xe16,1}}, + {{0x158f,3},{0xbd26,3}}, {{0xf1a,2},{0xcc1,1}}, {{0xf0c,1},{0xe09,1}}, {{0x57,1},{0x7b,1}}, + {{0x1897,5},{0x59b4,3}}, {{0x164bc,7},{0xec6,3}}, {{0xe4c9,6},{0xcc9,2}}, {{0x9519,6},{0x5261,4}}, + {{0xe86,2},{0xe69,5}}, {{0x1967,3},{0x1e3b,4}}, {{0xe86,2},{0x23d2,3}}, {{0x1ff7,3},{0xdc01,4}}, + {{0x29cf,3},{0xe5e,2}}, {{0x1917,5},{0x188c,4}}, {{0x478f,3},{0xef74,6}}, {{0x3032f,3},{0x7905,1}}, + {{0x1510,4},{0x1040,3}}, {{0x4f29,5},{0xe11,1}}, {{0x1e8f,6},{0x1cd3,2}}, {{0xe09,1},{0x14a2,3}}, + {{0xd48,4},{0xc38,2}}, {{0x42db,6},{0x1b80,3}}, {{0x12d4,3},{0x24d5e,2}}, {{0x9a65,6},{0xec6,3}}, + {{0x29cf,3},{0xefa,4}}, {{0x1567,3},{0xe29,2}}, {{0x10b4,4},{0xe11,2}}, {{0x19b9,1},{0xe16,1}}, + {{0x2e33,4},{0x14ab,4}}, {{0xaaf,2},{0x78f9,1}}, {{0xf0d,2},{0x7b72,3}}, {{0x111a,3},{0x1372,5}}, + {{0x1bbf,4},{0x5,1}}, {{0x5117,5},{0x3b49,6}}, {{0x70ad,3},{0x2c59,4}}, {{0x2ba5,1},{0xf4f,1}}, + {{0x1827,4},{0x7a15,4}}, {{0x2b0a8,4},{0x2b0ac,2}}, {{0x15e7,5},{0x1064,3}}, {{0xcbf,2},{0xe11,1}}, + {{0x4d6f,9},{0xe11,1}}, {{0x3b5d,5},{0xe11,1}}, {{0xf93,5},{0xec6,3}}, {{0x9a8,1},{0x10cb,2}}, + {{0x19b7,3},{0xe65,2}}, {{0xf0f,2},{0xe31,2}}, {{0xe6f,3},{0x5538,2}}, {{0x4c37,5},{0x115a,3}}, + {{0x201d9,7},{0xf7a,2}}, {{0xf15,1},{0xf0c,1}}, {{0x14a7,8},{0x146d,4}}, {{0xef7,4},{0xed9,2}}, + {{0x11a6,2},{0xf91,3}}, {{0xcc8,1},{0xf1a,2}}, {{0x1722c,6},{0xfb0,2}}, {{0x10a3,4},{0xcc7,1}}, + {{0xe1f,3},{0xe65,2}}, {{0xe31,2},{0xe86,2}}, {{0x1969,1},{0xf4f,1}}, {{0x5d66,3},{0x128c,4}}, + {{0x58a8,5},{0x1d32,3}}, {{0x47b9,6},{0x2c15,4}}, {{0x29d4,4},{0xeee,3}}, {{0x3559,4},{0x1d2e6,4}}, + {{0x26d2,8},{0x13e4,3}}, {{0x1153,2},{0xcd3,2}}, {{0x1531e,5},{0xe7f,4}}, {{0x9219,5},{0xe2b,4}}, + {{0x7ae5,5},{0xbf50,5}}, {{0xf15,1},{0xe16,1}}, {{0x29cf,3},{0x181b,3}}, {{0xbba1,4},{0xe22,3}}, + {{0x10868,8},{0xcc9,2}}, {{0xf6e,7},{0xed9,2}}, {{0x1007,7},{0x1510,4}}, {{0xee69,8},{0xe11,1}}, + {{0xe5b,3},{0xcc3,2}}, {{0xccb,2},{0xfa6,3}}, {{0x1677,3},{0x3bec,4}}, {{0x2a47,3},{0x3,2}}, + {{0x73ed,4},{0x1d3c,3}}, {{0x5,1},{0xfb0,3}}, {{0x1977,3},{0x5,1}}, {{0x1208,4},{0x11b5,2}}, + {{0x1ff7,7},{0xe95,2}}, {{0x46bd,3},{0x1c79,2}}, {{0x20799,5},{0xf7a,2}}, {{0xfdf,3},{0xe11,1}}, + {{0x6c83,10},{0xf7a,2}}, {{0xbbe9,7},{0xe69,5}}, {{0x18a70,6},{0x1f7c,3}}, {{0x7911,3},{0x8441,4}}, + {{0x93b1,10},{0xe11,1}}, {{0x1062,2},{0x1064,3}}, {{0xe6f,4},{0x1252,3}}, {{0x16322,6},{0xed6,2}}, + {{0xf59,2},{0xe11,1}}, {{0x1467,4},{0x7d81,4}}, {{0xcc9,2},{0xed6,2}}, {{0x46bf,1},{0x142a,3}}, + {{0xc954,5},{0xf7a,2}}, {{0x69,1},{0xe,1}}, {{0x29c0,3},{0xf13,2}}, {{0x2501,5},{0x1a71,3}}, + {{0xf0d,2},{0x6,1}}, {{0x105f,3},{0xee9,2}}, {{0x159cc,5},{0x7949,4}}, {{0x24e3,5},{0x5538,2}}, + {{0xe2b,2},{0x120c,3}}, {{0x4f91,5},{0x1040,3}}, {{0x119a,3},{0xcd3,2}}, {{0xe0d,2},{0x1d3c,3}}, + {{0x2ced,5},{0x13e3,4}}, {{0x9da1,5},{0xcc9,2}}, {{0x142d,3},{0x2,1}}, {{0x105f,3},{0xe22,2}}, + {{0xf89,3},{0xee9,2}}, {{0x1807,5},{0xfeac,3}}, {{0x1790,3},{0xcc9,2}}, {{0x2,1},{0x11d9,3}}, + {{0xd131,4},{0x4,1}}, {{0x1007,6},{0x149c,3}}, {{0xfbf,5},{0xfe6,2}}, {{0x34b1,5},{0xe3b0,6}}, + {{0x19b7,3},{0xefa,2}}, {{0xb09d,10},{0xe95,2}}, {{0x8,2},{0xec6,3}}, {{0x60f3,4},{0xe77,3}}, + {{0x37c1,7},{0xce83,4}}, {{0xe22,2},{0x8,1}}, {{0x1467,10},{0xfdf,4}}, {{0xe5b,4},{0xe0d,2}}, + {{0xfa6,3},{0xe6b,4}}, {{0x514b,7},{0xe6b,3}}, {{0xe0b,2},{0xf82,7}}, {{0x22e5,4},{0x16ad,3}}, + {{0x12d4,3},{0x4a01,3}}, {{0x73ed,4},{0x2,1}}, {{0x14e96,6},{0xec6,3}}, {{0x62dd,4},{0xf63,2}}, + {{0x2d8d,3},{0xcc3,2}}, {{0x1577,7},{0x1ef0,8}}, {{0x9af,2},{0x9b1,2}}, {{0x4853,3},{0x38ec,3}}, + {{0xf23,3},{0xe11,1}}, {{0x1d26c,5},{0x1944,3}}, {{0x6cc4,4},{0x2d8d,3}}, {{0x712f,4},{0xe22,3}}, + {{0xd131,4},{0xcb8,1}}, {{0x1062,2},{0xe11,1}}, {{0xe0b,2},{0xcc3d,3}}, {{0xf77,3},{0xf0f,2}}, + {{0x2ba5,1},{0x1150,2}}, {{0x2d11,3},{0xb,1}}, {{0x5,2},{0xe78,2}}, {{0x10c5,4},{0x1166,3}}, + {{0x1969,1},{0x19b9,1}}, {{0x105f,3},{0x4132,5}}, {{0x79c5,4},{0x3ce0,5}}, {{0x42b1,7},{0xf34,2}}, + {{0x127f,3},{0x10d2,4}}, {{0x2948,3},{0xe80,2}}, {{0xefdf,6},{0xcce,2}}, {{0xcb8,1},{0xf1a,2}}, + {{0x1062,2},{0xe69,6}}, {{0x2e27d,1},{0x2e273,1}}, {{0xe6f,3},{0xf02,2}}, {{0x4c37,5},{0x1601,3}}, + {{0x1ebc,5},{0x1153,2}}, {{0xfb0,3},{0xe11,1}}, {{0x69,1},{0x7b,1}}, {{0xee4,4},{0x1c293,5}}, + {{0x4781,3},{0xb410,4}}, {{0x1a66,1},{0x1a66,1}}, {{0x12b2,5},{0x1252,5}}, {{0xe2f,1},{0x162c,3}}, + {{0x17e36,6},{0xcd3,2}}, {{0xe99,1},{0x48d3,2}}, {{0x1847,4},{0xe32,1}}, {{0x4773,4},{0xfe0,2}}, + {{0x3a1b,5},{0xe71,1}}, {{0x2bd5,4},{0xed5,3}}, {{0x29de,5},{0xe67,2}}, {{0x9a8,1},{0x2454,3}}, + {{0x10c5,4},{0x2f94,3}}, {{0x11d5,5},{0x269f,6}}, {{0x12a1,4},{0xcbf,2}}, {{0x5,2},{0xcbb,2}}, + {{0x70ad,3},{0xfa5,2}}, {{0x1ff7,3},{0x4516,3}}, {{0x3a1b,6},{0x6,2}}, {{0x12f6a,6},{0x5ddf,4}}, + {{0xe11,1},{0xcc7,1}}, {{0x433d,4},{0xeee,3}}, {{0xf77,9},{0x1440,7}}, {{0xcce,2},{0x6,1}}, + {{0xf0a,3},{0x3385,6}}, {{0x1a6a5,5},{0xf0f,2}}, {{0xe5b,3},{0x41e9,4}}, {{0x1efbe,5},{0xe7f,2}}, + {{0xae75,7},{0x10f5,3}}, {{0xf15,1},{0x2ba5,1}}, {{0x79c5,4},{0xf1a,2}}, {{0xe0d,2},{0x9a9,2}}, + {{0x9af,4},{0x9b3,4}}, {{0x19b7,3},{0xcd2,2}}, {{0x17f7,6},{0x1b8b,6}}, {{0x4853,3},{0x1dee,2}}, + {{0xe19,1},{0xe32,1}}, {{0x11a6,2},{0xcc9,2}}, {{0x7a01,5},{0xcc7,1}}, {{0x9af,8},{0x9af,8}}, + {{0x2deff,5},{0xf,1}}, {{0xcce,3},{0xe6b,3}}, {{0x1ba43,5},{0xb,1}}, {{0x142a,3},{0xed6,2}}, + {{0xf65,4},{0x2c3b,5}}, {{0x1977,3},{0xfe0,2}}, {{0x2006,3},{0xec6,3}}, {{0x1099,4},{0xf86,3}}, + {{0x57,1},{0xe,1}}, {{0xe97,3},{0xcc6,2}}, {{0x29cf,3},{0x1cd3,2}}, {{0x329d,5},{0x14ab,4}}, + {{0x17d5a,5},{0x5e43,3}}, {{0x138e,2},{0xe22,2}}, {{0x7602,4},{0x1fbe,3}}, {{0x1763c,6},{0xf91,3}}, + {{0xe0a,1},{0xefa,2}}, {{0x12e5,3},{0xfb0,3}}, {{0x2add,6},{0x43fb,3}}, {{0xfe8,2},{0xe0a,1}}, + {{0xebca,8},{0xec6,3}}, {{0x1a66,1},{0x1969,1}}, {{0x4853,3},{0x421a,5}}, {{0x27e0,3},{0x7e6d,5}}, + {{0xe16,1},{0xcc7,1}}, {{0xf15,1},{0xf02,2}}, {{0xe7a,1},{0xe11,1}}, {{0xf70,2},{0xf91,3}}, + {{0x12e5,3},{0xccb,2}}, {{0x2966,4},{0x2236,3}}, {{0x2de63,3},{0xe,1}}, {{0xe86,2},{0xed6,2}}, + {{0x10a3,3},{0x4434,3}}, {{0xe97,3},{0xe8a,2}}, {{0xbb7d,5},{0xfe6,2}}, {{0x1a07,3},{0xcb8,1}}, + {{0x1c91,4},{0x6,2}}, {{0x122e,2},{0xcc5,2}}, {{0x10d6,5},{0x10db,7}}, {{0x2e271,3},{0x205a1,1}}, + {{0x19b7,3},{0x1ce6,5}}, {{0x1150,2},{0x9a9,2}}, {{0xf77,3},{0xec6,3}}, {{0x5722,5},{0x269f,6}}, + {{0xd1cb,8},{0xe11,1}}, {{0x105f,3},{0x207f4,5}}, {{0xe83,5},{0xcc1,2}}, {{0x602c,5},{0x14a2,3}}, + {{0xa,2},{0x1ac7,3}}, {{0xf0a,3},{0x1c85,3}}, {{0xe1f,3},{0x2b78,4}}, {{0x2de75,3},{0x314,2}}, + {{0x1969,1},{0xf15,1}}, {{0x4853,3},{0xe7f,2}}, {{0x12e5,3},{0x4767,1}}, {{0xad19,8},{0x27dc,4}}, + {{0x10d3,3},{0xa,2}}, {{0x5604,9},{0xf62,3}}, {{0x1a84,5},{0x153a,3}}, {{0x7eb1,6},{0x9,1}}, + {{0x4aff,6},{0xe0c,3}}, {{0x1064,3},{0x431f,2}}, {{0x2deff,5},{0xd,1}}, {{0x112b,5},{0xe78,2}}, + {{0x6008,3},{0xe6b,3}}, {{0xee4,4},{0xe32,1}}, {{0x46af,3},{0x123e,3}}, {{0xe7a,1},{0xf15,1}}, + {{0x3fbd,9},{0xcc9,2}}, {{0x1e62,6},{0x1440,7}}, {{0xe19,1},{0x156a,3}}, {{0x11d5,7},{0x4,1}}, + {{0x1ff7,3},{0x1b3d7,6}}, {{0x1ebf,3},{0xe11,1}}, {{0x75e8,8},{0xcce,2}}, {{0x9de9,6},{0xcba,2}}, + {{0x57,1},{0x21,1}}, {{0xee9,2},{0xebc,2}}, {{0xe83,3},{0xfe6,2}}, {{0x1c82,6},{0xe11,1}}, + {{0x46af,3},{0x1569,3}}, {{0x1537,4},{0x52d8,3}}, {{0x9a8,1},{0x9b99,3}}, {{0x111a,3},{0x1040,3}}, + {{0x4765,3},{0xe65,2}}, {{0x16a7,3},{0xed7d,5}}, {{0x1155,2},{0xfb0,2}}, {{0x2a47,3},{0x120b,4}}, + {{0x9a4,3},{0xeed,4}}, {{0x479d,4},{0x10b9,2}}, {{0xf65,4},{0xe0b,4}}, {{0xb,1},{0xe11,1}}, + {{0xcc7,1},{0x8,1}}, {{0x105f,3},{0xfb0,3}}, {{0x1dee,2},{0x2,1}}, {{0x1667,7},{0x5dd0,3}}, + {{0x11a6,3},{0xec6,3}}, {{0x18aac,7},{0xfbb,3}}, {{0xe71,1},{0x1288,4}}, {{0x112b,5},{0x9a9,2}}, + {{0x16a7,3},{0xeca,3}}, {{0x2777,10},{0x2781,5}}, {{0x11e62,3},{0xe0a,1}}, {{0x1967,4},{0x113f,2}}, + {{0x27e0,3},{0xb0e0,5}}, {{0x29cf,3},{0xfcb,2}}, {{0x247a,9},{0xec6,3}}, {{0x1a07,3},{0xe21,1}}, + {{0x3ab5,10},{0x1ac7,3}}, {{0x1bec,7},{0x1059,3}}, {{0x77bc,4},{0x10d3,3}}, {{0xf7a,2},{0x296f,3}}, + {{0x3be9,5},{0x3bee,5}}, {{0x40d5,6},{0x1e40,4}}, {{0x1967,3},{0xf70,2}}, {{0x4137,6},{0xfdd,4}}, + {{0x12f6,4},{0x22b2,3}}, {{0x1e62,4},{0xf0d,2}}, {{0x12e5,3},{0xe0a,1}}, {{0xed1,3},{0x1943,2}}, + {{0xcc1,1},{0xe6c,3}}, {{0xe11,2},{0xf91,3}}, {{0x1677,3},{0x5edd,3}}, {{0x595e,6},{0x2e2c,3}}, + {{0x260f,9},{0x10f2,5}}, {{0x10b4,6},{0x7fbf,6}}, {{0x433d,4},{0xfef,6}}, {{0xf0f,2},{0xe5e,2}}, + {{0xe19,1},{0xcc8,1}}, {{0xfcb,2},{0xcc8,1}}, {{0x2de63,3},{0xf,1}}, {{0x7636,5},{0x775c,4}}, + {{0xe0a,1},{0x2,1}}, {{0x1a07,3},{0xccd,1}}, {{0xf03,2},{0xe0d,2}}, {{0x2d95,8},{0x103e,5}}, + {{0xa965,9},{0xcc9,2}}, {{0x12f6,4},{0xf69b,3}}, {{0x1a7fb,6},{0xcc9,2}}, {{0x16a7,3},{0xf0d,2}}, + {{0x2ba5,1},{0xfb0,3}}, {{0x178a,3},{0x8,1}}, {{0x1cd3,2},{0xe86,2}}, {{0xede,1},{0x48d3,2}}, + {{0x19b9,1},{0xf7a,2}}, {{0x1967,3},{0xe22,2}}, {{0x1a66,1},{0xb19c,4}}, {{0x1897,5},{0x1523,4}}, + {{0xe516,5},{0x775c,4}}, {{0x5,1},{0x18b4,3}}, {{0x46bd,3},{0xcc3,2}}, {{0x5d7b,6},{0xe1c,3}}, + {{0x2240,4},{0xfe0,2}}, {{0x16a7,3},{0x2792d,4}}, {{0xf9b,5},{0xcce,2}}, {{0x1cd3,2},{0x286d,3}}, + {{0x46af,3},{0x109b,2}}, {{0xf1f,3},{0xa,2}}, {{0x28b3a,1},{0x20579,1}}, {{0x2ddb,7},{0x189f,3}}, + {{0xe32,1},{0xe0b,2}}, {{0xef7,3},{0x7979,4}}, {{0xf0d,2},{0x4,1}}, {{0x46bd,3},{0x1062,2}}, + {{0xe83,3},{0xf35,3}}, {{0x306d,6},{0x2463,4}}, {{0xfbf,5},{0x2269,4}}, {{0x950d,6},{0xe11,1}}, + {{0x1a07,3},{0x19b9,1}}, {{0x11ca7,5},{0xe22,2}}, {{0x13e4c,6},{0x2872,4}}, {{0x1131,3},{0xcce,2}}, + {{0x28d0,4},{0x4,1}}, {{0x13eec,5},{0xec6,3}}, {{0x1969,1},{0xed6,2}}, {{0x73b9,6},{0x1150,2}}, + {{0x1257e,5},{0x27dc,4}}, {{0x1153,2},{0x11d2,3}}, {{0xe97,3},{0x3914,3}}, {{0x4765,3},{0x296f,3}}, + {{0x2de5d,3},{0x9f,1}}, {{0x50c0,4},{0xe95,2}}, {{0x120f,3},{0x2,1}}, {{0x69,1},{0xf,1}}, + {{0xec43,7},{0xfb8,3}}, {{0x2240,4},{0x10cb,4}}, {{0x2240,4},{0x2280,2}}, {{0x142d,3},{0xef5,2}}, + {{0xe4c9,6},{0xa,2}}, {{0xfb0,2},{0xed6,2}}, {{0xf0a,3},{0x4767,1}}, {{0x416f,5},{0xe0b,4}}, + {{0x101f,2},{0xe0d,2}}, {{0x1e9e,6},{0x1cd5,4}}, {{0xcd3,2},{0x1722,5}}, {{0x5722,5},{0x28f8,5}}, + {{0xfe6,2},{0xfe8,2}}, {{0x7602,4},{0x1d3c,5}}, {{0xe0b,2},{0xcd3,2}}, {{0x5,1},{0xcc1,1}}, + {{0x27e0,4},{0x10cb,4}}, {{0xed9,2},{0xebc,2}}, {{0xf1a,2},{0x3e0e,3}}, {{0x10b4,6},{0xcbd,1}}, + {{0xec0,3},{0xec6,3}}, {{0x12a3,3},{0xcc9,2}}, {{0x431f,2},{0xfe8,2}}, {{0x488b,4},{0x413d,5}}, + {{0xccd,1},{0xe71,1}}, {{0x1709c,8},{0xf35,2}}, {{0x46af,3},{0xe09,1}}, {{0x5534,4},{0x125f1,5}}, + {{0x111a,3},{0xe2b,2}}, {{0xc9ac,5},{0x1150,2}}, {{0xe99,1},{0x3914,3}}, {{0x19b7,3},{0xcd3,1}}, + {{0xc6ec,5},{0xfdd,6}}, {{0x11850,7},{0x15ca,4}}, {{0x112b,5},{0x1cd4,5}}, {{0x19b7,3},{0xe22,2}}, + {{0xe5b,4},{0xa,2}}, {{0xccb,2},{0xf7a,2}}, {{0x14a7,4},{0x23e1,3}}, {{0x1677,3},{0xf0d,2}}, + {{0x14a7,4},{0x5,1}}, {{0x1b2bd,5},{0xe11,1}}, {{0xcbd,1},{0x15ec,3}}, {{0x57cb,6},{0xccd,1}}, + {{0x3a1b,5},{0x1b03,3}}, {{0x12d4,3},{0xcc3,3}}, {{0x29cf,3},{0x1a336,5}}, {{0xe1f,3},{0x1067f,3}}, + {{0xcc9,2},{0x9a6,1}}, {{0x1c91,4},{0x4edf,4}}, {{0x10b4,4},{0xe2b,2}}, {{0xfe0,2},{0xed6,2}}, + {{0x57,1},{0xf,1}}, {{0x1777,5},{0x177c,7}}, {{0x3a7d,6},{0x1cd3,2}}, {{0xe09,1},{0xe69,6}}, + {{0x3a29,4},{0xf16,2}}, {{0xe71,1},{0x16ad,3}}, {{0x5,1},{0xf0f,2}}, {{0x112b,4},{0xcd3,2}}, + {{0x19b7,3},{0x4164,3}}, {{0x1747,4},{0x2c83,4}}, {{0x2a56,4},{0xed5,3}}, {{0xf8d,2},{0xe2b,2}}, + {{0x10cc,2},{0xe22,2}}, {{0x29cf,3},{0xa,2}}, {{0x7e69,8},{0xef5,2}}, {{0x1fbb,5},{0x2091,4}}, + {{0x1290,4},{0x6fe1,3}}, {{0x1a07,3},{0xcd2,2}}, {{0x16a7,3},{0x1303,3}}, {{0x3a1b,5},{0xe31,2}}, + {{0x10a3,3},{0x1153,2}}, {{0x2de63,3},{0xd,1}}, {{0x13eec,5},{0xeed,4}}, {{0x4765,3},{0xcce,2}}, + {{0x1467,4},{0x1ce7,4}}, {{0xf03,2},{0xcc1,1}}, {{0x1ff7,3},{0xa348,5}}, {{0x16700,7},{0xec6,3}}, + {{0x1a66,1},{0xe19,1}}, {{0xed9,2},{0x6,1}}, {{0x16d7,6},{0x14ff,8}}, {{0xfa5,2},{0x14f9,3}}, + {{0xcc8,1},{0x158f,3}}, {{0x1807a,8},{0xcd3,1}}, {{0xe25,2},{0x6,1}}, {{0x40d5,6},{0x167f,7}}, + {{0x5534,4},{0x19fa2,4}}, {{0xede,1},{0xedd,1}}, {{0xf4f,1},{0xe22,2}}, {{0x4765,3},{0xcb7,2}}, + {{0x1e9e,5},{0x15e9,3}}, {{0x1927,5},{0xf34,4}}, {{0x2d79,4},{0xcb8,1}}, {{0xcfc6,5},{0x1693,4}}, + {{0x3aed,6},{0x8b31,4}}, {{0x1817,7},{0xf7a,2}}, {{0xcc1,1},{0x5,1}}, {{0x27ef,4},{0xed6,2}}, + {{0xe138,5},{0xf7a,2}}, {{0x1977,3},{0x1969,1}}, {{0x7414,3},{0xb,1}}, {{0x565f,5},{0xe5e,2}}, + {{0xedd,1},{0x1050,3}}, {{0x89e5,8},{0xe95,2}}, {{0xf77,3},{0xe86,2}}, {{0x5534,4},{0x22a3,2}}, + {{0xa01d,7},{0x13e3,4}}, {{0xedd,1},{0x2b79,4}}, {{0x24f2,5},{0x269f,6}}, {{0xf16,2},{0x169d,4}}, + {{0x1e08,5},{0x1213,2}}, {{0x20f6,6},{0xe2b,2}}, {{0xb3f1,3},{0x1790,3}}, {{0x2bc7,5},{0x239e,3}}, + {{0x1e62,5},{0x3155,6}}, {{0x1ff7,3},{0x20bfd,4}}, {{0x4597,5},{0x5372,4}}, {{0x70ad,4},{0x1230c,2}}, + {{0xf16,2},{0x1d75,3}}, {{0x1081,7},{0x1088,4}}, {{0x9,1},{0xed6,2}}, {{0x12e5,3},{0x23e98,2}}, + {{0xef7,3},{0xfb0,2}}, {{0x1f16,5},{0x2317,5}}, {{0xc6f7,5},{0x1150,2}}, {{0x12e5,3},{0xf50,3}}, + {{0x2f71,4},{0xe8a,2}}, {{0x16a7,3},{0xe95,2}}, {{0x129a2,5},{0x30f7,2}}, {{0x27e0,3},{0xf16,2}}, + {{0x1969,2},{0xcc3,3}}, {{0x127f,3},{0xf0f,2}}, {{0x5534,4},{0x128c,4}}, {{0x2de57,3},{0x9f,1}}, + {{0x1847,5},{0x10458,5}}, {{0xf1a,2},{0x2091,4}}, {{0xf1d,2},{0xfb8,3}}, {{0x17ec2,5},{0xe67,2}}, + {{0xae99,5},{0x2075,3}}, {{0x33d1,4},{0x1c2a,4}}, {{0xee4,13},{0xed9,2}}, {{0x10c5,4},{0x12075,5}}, + {{0xe33,1},{0xe33,1}}, {{0xf89,3},{0x1ffa,3}}, {{0x10a3,3},{0x9,2}}, {{0x114d,5},{0xed9,2}}, + {{0x162c,3},{0xe0a,1}}, {{0x8fd9,5},{0x2269,4}}, {{0x5117,5},{0x4a44,5}}, {{0x1ff7,3},{0x14c76,4}}, + {{0x52f8,6},{0xfe8,2}}, {{0x1257e,5},{0x13e3,4}}, {{0x11d5,7},{0xef5,2}}, {{0x191f9,6},{0xec6,3}}, + {{0x127f,4},{0x14aa,5}}, {{0x328f,9},{0xcc9,2}}, {{0x74f9,2},{0xedd,1}}, {{0x1587,4},{0x14e5d,5}}, + {{0xcd3,1},{0x1773,4}}, {{0x1fca,10},{0x1040,3}}, {{0x1967,3},{0x1692,2}}, {{0x4f77,8},{0xcc9,2}}, + {{0xf89,3},{0xe1c,3}}, {{0x4ae5,5},{0x289c,7}}, {{0x3a7d,6},{0xe22,2}}, {{0x3583,5},{0xe5e,2}}, + {{0x1754c,6},{0x6e53,4}}, {{0x14ff,5},{0xcc9,2}}, {{0x18f9,2},{0x1a63,3}}, {{0x10a3,4},{0xb,1}}, + {{0x2948,3},{0x149d,2}}, {{0xf0c,1},{0xf4f,1}}, {{0x114d,4},{0x6,2}}, {{0xe6f,3},{0x6cbe,4}}, + {{0x70ad,3},{0x2f94,3}}, {{0x29c0,3},{0xe33,1}}, {{0x1290,4},{0xcc7,1}}, {{0x115e,7},{0x1165,4}}, + {{0x9ff9,6},{0xec6,3}}, {{0x3b09,4},{0xeb5,2}}, {{0x4853,3},{0x26246,5}}, {{0x70ad,3},{0x22b2,3}}, + {{0xaaf,2},{0x9af,2}}, {{0x18c1e,5},{0x6b26,4}}, {{0xc159,4},{0x26617,4}}, {{0x19b9,1},{0x5,1}}, + {{0x1977,4},{0x1088,9}}, {{0xdf12,9},{0xe95,2}}, {{0x1897,5},{0x153ff,5}}, {{0x1969,2},{0x1e84,3}}, + {{0xf0d,2},{0xf1a,2}}, {{0x79c5,4},{0x5e94,5}}, {{0xc996,6},{0xf0d,2}}, {{0x1487,4},{0xe0d,2}}, + {{0x54cc,5},{0x2319,8}}, {{0x2d8d,3},{0xed6,2}}, {{0x56ee,6},{0x8fa3,6}}, {{0xcc7,1},{0xe65,2}}, + {{0xf,1},{0x314,2}}, {{0x2bb4,2},{0x2,1}}, {{0x1131,3},{0xe6b,4}}, {{0x1747,4},{0xf20,2}}, + {{0x10c5,4},{0x1593,3}}, {{0x7911,5},{0xe31,2}}, {{0x4853,3},{0xed6,3}}, {{0xe21,1},{0xccc,2}}, + {{0xe97,3},{0xfb8,3}}, {{0xaeb1,5},{0xfdd,6}}, {{0x113f,2},{0xe67,2}}, {{0x5a21,7},{0xe78,2}}, + {{0xf0d,2},{0xe2b,2}}, {{0xe95,2},{0xb,1}}, {{0xf0c,1},{0xcc5,2}}, {{0xb199,5},{0x7978,5}}, + {{0x124c,6},{0x3fed,3}}, {{0xedd,1},{0xe2f,1}}, {{0xe282,6},{0x2467,4}}, {{0xb60d,6},{0x10d3,3}}, + {{0x2006,3},{0xe2b,2}}, {{0x112b,5},{0x316e,3}}, {{0x105f,3},{0x1062,5}}, {{0xe86,2},{0x2091,4}}, + {{0x60d5,7},{0x1783,4}}, {{0x7d0d,6},{0xec6,3}}, {{0xf0a,3},{0x1969,1}}, {{0x3d39,5},{0x1d7e,3}}, + {{0x3a29,4},{0x6,2}}, {{0xf89,3},{0xeee,3}}, {{0xe80,2},{0x2c21,4}}, {{0x1189,3},{0xf7a,2}}, + {{0x1f52,10},{0x1592,4}}, {{0x46af,3},{0x2ee9,3}}, {{0x74f9,2},{0x74fb,3}}, {{0xdaa5,7},{0xcc9,2}}, + {{0xcc8,1},{0xfcb,2}}, {{0x5bb4,5},{0x1569,2}}, {{0xf04,2},{0x30f7,2}}, {{0xe7a,1},{0x2ba5,1}}, + {{0x112b,9},{0xcce,2}}, {{0x11d5,5},{0x7f8f,6}}, {{0xe16,1},{0xe08,1}}, {{0xe67,2},{0x1b41,4}}, + {{0x2deff,5},{0x21,1}}, {{0x7602,4},{0xe78,1}}, {{0x10a3,3},{0x1131,6}}, {{0x27e0,3},{0x2d11,3}}, + {{0xe11,1},{0xa,2}}, {{0xe83,5},{0xe11,1}}, {{0x12e5,3},{0x1fbe,3}}, {{0x1967,3},{0x181b,3}}, + {{0x1967,3},{0xfb4,4}}, {{0x2399,4},{0x1463,4}}, {{0xcce,2},{0x3e0e,3}}, {{0xeb4,3},{0xcc9,2}}, + {{0xe1f,3},{0x1bef,2}}, {{0x19b7,3},{0xf4f,1}}, {{0x12f6,6},{0xcbd,1}}, {{0xccd,1},{0x1ea1,5}}, + {{0x121c8,6},{0xed6,2}}, {{0x10cb,3},{0x2091,4}}, {{0x1040,3},{0x1839,2}}, {{0x1f25,4},{0x2352,3}}, + {{0x87c9,8},{0xcc9,2}}, {{0x41b5,5},{0x9,2}}, {{0x8fd9,5},{0xf91,3}}, {{0xeb5,2},{0xebc,2}}, + {{0x33ed,5},{0xe6b,3}}, {{0xcd3,2},{0xebb,3}}, {{0xcbd,1},{0xcb7,2}}, {{0xcbf,2},{0x5669,3}}, + {{0x5d54,5},{0x5d66,8}}, {{0x1787,7},{0xfb0,3}}, {{0x27e0,3},{0x1849,3}}, {{0xed1,4},{0xf164,7}}, + {{0x1092,7},{0xfdd,4}}, {{0x1153,2},{0xcd3,1}}, {{0xe5b,3},{0xe65,2}}, {{0x1817,4},{0x1314f,3}}, + {{0x442b,3},{0x2252,3}}, {{0xf63,2},{0xcc3,2}}, {{0x6644,5},{0xe69,5}}, {{0x10c5,5},{0x1189,4}}, + {{0x127f,3},{0x183a,3}}, {{0x3a1b,5},{0x4,1}}, {{0xcc8,1},{0x31f8,3}}, {{0xed1,5},{0xeee,3}}, + {{0xe97,3},{0x26d1e,4}}, {{0x19f7,4},{0x1bef,2}}, {{0xf77,3},{0x142d,3}}, {{0x10a3,3},{0x15692,5}}, + {{0xb319,8},{0xcc9,2}}, {{0xe5b,3},{0x101f,3}}, {{0x16a7,3},{0x7d99,4}}, {{0xf0a,3},{0xcc3,2}}, + {{0x2ed7,7},{0xe11,1}}, {{0x27e0,3},{0x9b99,3}}, {{0x2de63,3},{0x7b,1}}, {{0x1c37,6},{0x14e1,6}}, + {{0x4952,6},{0xe6b,4}}, {{0x1c91,4},{0x1a99,5}}, {{0x168b,4},{0xcc9,2}}, {{0x2df3b,5},{0x45,1}}, + {{0x26a7b,6},{0xb,1}}, {{0x70ad,3},{0x453b,4}}, {{0x11d5,7},{0x11dc,5}}, {{0x1969,1},{0x2d8d,3}}, + {{0x1ccd,5},{0xeb4,3}}, {{0x1062,2},{0xcc9,2}}, {{0xe0f,2},{0xe11,2}}, {{0xe65,2},{0x9a9,2}}, + {{0xe3d,4},{0xe41,2}}, {{0x3d63,5},{0x1ebf,3}}, {{0x27e0,3},{0x1780,3}}, {{0xcd3,1},{0x2b79,4}}, + {{0xe25,2},{0x10b9,2}}, {{0xf77,4},{0x1224,6}}, {{0x1decc,6},{0xe22,2}}, {{0x1967,3},{0x101f,2}}, + {{0x11a6,3},{0xcc9,2}}, {{0x157c,3},{0xe5e,2}}, {{0x19b9,1},{0x1969,1}}, {{0xf77,5},{0x10db,7}}, + {{0xf77,4},{0x101f,3}}, {{0x1877,7},{0x7b72,3}}, {{0xcc3,2},{0xe25,2}}, {{0xcc7,1},{0x1780,3}}, + {{0x29c0,3},{0x2e33,4}}, {{0xaf4,2},{0xaf4,1}}, {{0x305f,6},{0x155e,3}}, {{0xe5b,3},{0x12a3,3}}, + {{0x1467,4},{0xcce,3}}, {{0x1019,4},{0x142d,3}}, {{0x624e,6},{0x6813,5}}, {{0x5,1},{0xcbf,2}}, + {{0x4615,8},{0xcd3,2}}, {{0x2de63,3},{0x8d,1}}, {{0x27fe,7},{0x141f,8}}, {{0xd13c,6},{0x2,1}}, + {{0x111a,3},{0xed9,2}}, {{0x27e0,3},{0x44ad,4}}, {{0x29a2,5},{0xe86,2}}, {{0x29de,5},{0xf35,2}}, + {{0xe89,2},{0xcbf,2}}, {{0xe67,2},{0xec6,3}}, {{0xcd3,1},{0x3,2}}, {{0xec3,3},{0xcc9,2}}, + {{0xe6f,3},{0xd15f,3}}, {{0xef7,4},{0x11cb,3}}, {{0x70ad,3},{0x4921,4}}, {{0xe25,2},{0xcd3,2}}, + {{0x1bec,5},{0xe11,1}}, {{0xd18,6},{0xd18,6}}, {{0xd48,4},{0x29979,2}}, {{0x3e43,8},{0xe92,3}}, + {{0x1c91,4},{0x30ba,7}}, {{0xb,1},{0x4cc2,3}}, {{0x12c3,5},{0xcce,3}}, {{0xcc1,1},{0xe11,1}}, + {{0xa9a6,4},{0xec6,3}}, {{0x11cb,3},{0xf91,3}}, {{0x104a,3},{0xfa5,2}}, {{0x11541,4},{0xe11,1}}, + {{0x13028,6},{0xe95,2}}, {{0x2a47,3},{0x11a0b,4}}, {{0x1a07,3},{0x12b5,2}}, {{0x1807,5},{0xe0d,2}}, + {{0x7bd9,3},{0xf7a,2}}, {{0xedd,1},{0x1f875,1}}, {{0xaf65,9},{0xe11,1}}, {{0xfcb,2},{0xcbd,1}}, + {{0x12e5,3},{0xfa5e,4}}, {{0x153e6,6},{0x2dd7,4}}, {{0xf0a,3},{0xf4f,1}}, {{0x29c0,3},{0xe21,1}}, + {{0xebe,5},{0x2,2}}, {{0xfa6,3},{0xebb,3}}, {{0x70ad,3},{0x5538,2}}, {{0x46af,3},{0xe22,3}}, + {{0x2f71,4},{0x4516,3}}, {{0x9a6,1},{0xe86,2}}, {{0xe83,3},{0x62fa,4}}, {{0xef7,3},{0x1ebf,3}}, + {{0xcc7,1},{0x1cd3,3}}, {{0xf0c,1},{0x990b,4}}, {{0xcd3,1},{0xfb8,3}}, {{0x4853,3},{0x2c85,2}}, + {{0x10c5,4},{0x1089,3}}, {{0x2a92,6},{0xcd3,2}}, {{0x2dec5,3},{0xf,1}}, {{0xfa5,2},{0xcb8,1}}, + {{0xeb5,2},{0xe2b,2}}, {{0x6164,5},{0x1254,6}}, {{0x7bd9,3},{0xf0f,2}}, {{0xe19,1},{0x413e,4}}, + {{0xe77,3},{0x14f9,3}}, {{0x8859,8},{0xe0b,4}}, {{0xe16,1},{0xe75,2}}, {{0x1bec,5},{0x2623,4}}, + {{0x1967,3},{0x12a3,3}}, {{0x478f,3},{0xcce,3}}, {{0x17c7,10},{0xec6,3}}, {{0xf65,4},{0x4201,8}}, + {{0xcbd,1},{0x109b,2}}, {{0x34b1,5},{0xc5e0,4}}, {{0x2213,5},{0x142a,3}}, {{0x18f7,4},{0x17c0,2}}, + {{0xe4d,2},{0xc273,2}}, {{0xdfac,7},{0x14a2,3}}, {{0x164c,4},{0x1650,7}}, {{0x4f36,9},{0xe95,2}}, + {{0x5199,7},{0x14f9,3}}, {{0xe09,1},{0x6,1}}, {{0x3f5b,9},{0xeee,3}}, {{0xcc3,2},{0xe91,2}}, + {{0x12c3,4},{0xed9,2}}, {{0x145b,2},{0x15d1,5}}, {{0xf34,2},{0x8b31,4}}, {{0xefdf,6},{0xe11,1}}, + {{0x57,1},{0xd,1}}, {{0x113f,2},{0xf7a,2}}, {{0xed6,2},{0xe71,1}}, {{0x2968,3},{0xb,1}}, + {{0x12b2,5},{0x12b7,4}}, {{0xe33,1},{0x4a01,3}}, {{0xf77,4},{0x134d2,5}}, {{0x32ab,6},{0xec6,3}}, + {{0xf89,3},{0xed9,2}}, {{0x2,1},{0xa,2}}, {{0x442b,3},{0x1150,2}}, {{0xe6f,3},{0x5e94,5}}, + {{0xed5,3},{0xc29d,3}}, {{0x3642,2},{0x7950,3}}, {{0x1a07,3},{0x281f,5}}, {{0x1969,1},{0x2,1}}, + {{0x1f07,5},{0x11b5,2}}, {{0xf77,3},{0x1bef,2}}, {{0xc26d,4},{0xc271,4}}, {{0xf65,4},{0x19419,5}}, + {{0xe11,2},{0xcc3,3}}, {{0xf65,4},{0xe6b,3}}, {{0xf0d,2},{0xe78,2}}, {{0x1f16,10},{0xf84,5}}, + {{0x166d8,6},{0x1046,3}}, {{0x70ad,3},{0xed9,2}}, {{0x12e5,3},{0x2d8d,3}}, {{0x85b9,8},{0xec6,3}}, + {{0xe11,2},{0xe11,1}}, {{0xccd,1},{0x1150,2}}, {{0x10a3,3},{0xe22,3}}, {{0x12b8c,8},{0xe95,2}}, + {{0x2ddb,7},{0x1380,5}}, {{0xb3f1,3},{0xe21,1}}, {{0xcd48,7},{0x3b8c,3}}, {{0x4853,3},{0xfb0,2}}, + {{0x149c,3},{0x1040,3}}, {{0x1024,2},{0x1025,1}}, {{0x12e5,3},{0x19b9,1}}, {{0x6bc0,10},{0xf7a,2}}, + {{0x4f29,6},{0x2dd7,4}}, {{0x3ab5,10},{0x138e,3}}, {{0x478f,3},{0x1393,3}}, {{0x417d,5},{0xb,1}}, + {{0x8829,6},{0x44b2,5}}, {{0x78ed,2},{0xe99,1}}, {{0x2015,3},{0xfb4,4}}, {{0x65f6,6},{0x1f7b,4}}, + {{0x127f,3},{0xe11,2}}, {{0x69,1},{0x21,1}}, {{0xfb0,2},{0xed5,4}}, {{0x138e,2},{0xdc01,4}}, + {{0x12e5,3},{0x145b,2}}, {{0x27e0,3},{0x1393,3}}, {{0xccd,1},{0x7d99,4}}, {{0x1153,2},{0xcc7,1}}, + {{0x3a61,5},{0xec6,3}}, {{0xccd,1},{0x1372,4}}, {{0x27e0,3},{0x1e65,3}}, {{0x4765,3},{0xf0d,2}}, + {{0x20f6,6},{0x5,1}}, {{0x37c1,12},{0xe95,2}}, {{0x2f71,4},{0x78d0,3}}, {{0x1c0a,6},{0x2e2c,3}}, + {{0xb3c1,9},{0xe11,1}}, {{0xe0b,2},{0xcc8,1}}, {{0x1ff7,3},{0xf86,2}}, {{0x1ff7,3},{0x22a2,4}}, + {{0x12e5,3},{0x6,1}}, {{0x1969,1},{0x2ba5,1}}, {{0x108d6,7},{0xe11,1}}, {{0x251f,8},{0xed6,2}}, + {{0x1f25,4},{0x61ac,6}}, {{0x7fa1,9},{0xec6,3}}, {{0x10cd,2},{0x4e12,2}}, {{0x9a8,1},{0x1d7e,3}}, + {{0xf7dd,8},{0xcc9,2}}, {{0x1ab01,6},{0xcc9,2}}, {{0xe1f,3},{0x10cb,4}}, {{0xf13,2},{0xed6,2}}, + {{0xedd,1},{0xedd,1}}, {{0xe11,2},{0x1593,3}}, {{0x7414,3},{0x11b5,2}}, {{0x1367,3},{0x1d7e,3}}, + {{0x10a3,3},{0x10cb,4}}, {{0x247a,9},{0xf91,3}}, {{0x1e9e,6},{0xe6c,3}}, {{0x10a3,3},{0xcbf,2}}, + {{0xef7,3},{0x10b7,2}}, {{0x7a01,5},{0x1b9d,4}}, {{0x10201,5},{0xe11,1}}, {{0xcbd,1},{0x123e,3}}, + {{0x27e0,3},{0x20bed,3}}, {{0x9a8,1},{0x8,1}}, {{0x1367,3},{0xed9,2}}, {{0x1f25,8},{0xcc9,2}}, + {{0x18fc2,3},{0xcc3,3}}, {{0x1267,4},{0x1131,3}}, {{0x1019,4},{0xead,5}}, {{0xcc1,1},{0x1ba9,4}}, + {{0x3089,5},{0xe7f,4}}, {{0x4899,4},{0x142d,3}}, {{0x10b4,4},{0xcc1,1}}, {{0x2ef3,8},{0x15e9,3}}, + {{0x12c3,4},{0x9a8,1}}, {{0x5,1},{0x286d,3}}, {{0xefa,2},{0x66c1,4}}, {{0xe3d,4},{0xe59,2}}, + {{0xf0a,3},{0x1e8b,3}}, {{0x6ff7,5},{0xe11,1}}, {{0x12d4,3},{0x16ad,3}}, {{0x80c1,8},{0xe0d,2}}, + {{0xf1a,2},{0xfe6,2}}, {{0x955a,4},{0xc80d,4}}, {{0x16f7,6},{0x11db,3}}, {{0x4767,1},{0xe99,1}}, + {{0x6c1b,7},{0x1054,3}}, {{0x1d54,6},{0x1663,3}}, {{0xa10d,8},{0xcc5,2}}, {{0x7858,4},{0x785c,4}}, + {{0xa,2},{0x1944,3}}, {{0x14fb8,5},{0xe11,1}}, {{0xb559,5},{0xe78,2}}, {{0x29cf,3},{0x113f,2}}, + {{0x29c0,3},{0xcbd,1}}, {{0x8,2},{0xcc9,2}}, {{0x1bbf,4},{0xf1f,3}}, {{0x15526,6},{0xe95,2}}, + {{0x1303,3},{0xe0a,1}}, {{0x2dbf,5},{0xe78,2}}, {{0x29cf,3},{0x6,2}}, {{0x1373,2},{0x10cb,4}}, + {{0xbb4,2},{0xbb8,2}}, {{0x4aff,5},{0xc300,3}}, {{0x433d,4},{0x12bf,4}}, {{0x10314,8},{0xe0a,1}}, + {{0x33ed,5},{0xe77,2}}, {{0x9af,2},{0x2ad7d,2}}, {{0xf0c,1},{0xe60,2}}, {{0x9a6,1},{0xa,2}}, + {{0x8,1},{0x2b79,4}}, {{0x2ba5,1},{0xf0c,1}}, {{0x3a29,4},{0xe09,1}}, {{0x124c,6},{0x1252,5}}, + {{0x29c0,3},{0x11d9,3}}, {{0x236c,4},{0x28242,3}}, {{0x111a,3},{0xfa5,3}}, {{0x1c91,4},{0x1463,4}}, + {{0x2330,5},{0x6411,4}}, {{0x5117,5},{0x4a01,3}}, {{0x11a6,2},{0xe32,1}}, {{0x8,1},{0xa,2}}, + {{0xa485,9},{0xcc9,2}}, {{0x9201,5},{0xed9,2}}, {{0x4765,3},{0x1969,1}}, {{0xe1f,3},{0xcc3,2}}, + {{0xe83,3},{0x1288,4}}, {{0x4853,3},{0x6,2}}, {{0x1ff7,3},{0xe2b,2}}, {{0x29cf,3},{0xf0c,1}}, + {{0x127f,3},{0x9a8,1}}, {{0x4767,1},{0x2ba5,1}}, {{0x5,1},{0xf59,2}}, {{0xe86,2},{0x277e,2}}, + {{0xce92,8},{0xb,1}}, {{0x4cc6,5},{0xfe8,2}}, {{0x1ddbe,5},{0x185c5,4}}, {{0x1156,3},{0xe67,2}}, + {{0x1827,5},{0x16a3a,3}}, {{0x2132,9},{0xcc9,2}}, {{0x7a79,6},{0xeee,3}}, {{0x2f47,5},{0xf1a,2}}, + {{0x1f38,1},{0x6,1}}, {{0x1e53,7},{0x6e53,4}}, {{0xf77,3},{0x1252,3}}, {{0x1967,3},{0x45ee,3}}, + {{0x385b,7},{0x7b72,3}}, {{0x10432,5},{0xe6b,2}}, {{0x6d1f,7},{0xcd3,1}}, {{0x1967,3},{0xf0c,1}}, + {{0xed1,3},{0x1722,5}}, {{0x19b9,1},{0x4164,3}}, {{0x12c3,4},{0x3640,4}}, {{0xccd,1},{0x181b,3}}, + {{0xcc1,2},{0x53c2,3}}, {{0xe09,1},{0x13e3,4}}, {{0x1189,3},{0xf91,3}}, {{0xcc1,1},{0xfa5,3}}, + {{0x89e5,8},{0xf85,4}}, {{0x16c96,5},{0x4920,5}}, {{0xe16,2},{0x413d,5}}, {{0x6cde,4},{0xcba,2}}, + {{0x46bd,6},{0x1ea3,3}}, {{0x111a,3},{0x1314e,4}}, {{0x5541,6},{0x2,1}}, {{0xcbd,1},{0x6452,4}}, + {{0xcc6c,5},{0x2d11,3}}, {{0x112b,5},{0x9a7,2}}, {{0x1085,3},{0xfb0,2}}, {{0x19856,6},{0xcc9,2}}, + {{0xcc7,1},{0x320c,5}}, {{0x10a3,3},{0x28f5,5}}, {{0x14e50,6},{0xe11,1}}, {{0xf77,5},{0x1252,5}}, + {{0xaaf,3},{0xab1,1}}, {{0x8505,8},{0x1523,4}}, {{0xccb9,5},{0xe2b,2}}, {{0x112b,5},{0x3144,5}}, + {{0x124c,6},{0x6b2b,6}}, {{0xf79,3},{0x12bf,4}}, {{0x1c865,5},{0xe11,1}}, {{0x2330,8},{0xe6b,3}}, + {{0x18fc2,3},{0x2245,3}}, {{0x1f368,3},{0xebc,2}}, {{0x66c6,5},{0x66cb,6}}, {{0x2d79,5},{0xfdf,4}}, + {{0x1089,3},{0xed9,2}}, {{0x146d,4},{0xe69,6}}, {{0x77e3,9},{0x1fc7,3}}, {{0x10a3,3},{0xf1f,3}}, + {{0x2afb6,3},{0x666,2}}, {{0x9a65,7},{0x2eec,4}}, {{0x3a53,4},{0xf7a,2}}, {{0x159e0,5},{0x2560,4}}, + {{0x109b,2},{0xa,2}}, {{0x12d4,3},{0x442d,1}}, {{0x57ff,8},{0x11d0,5}}, {{0x5172,7},{0xe69,6}}, + {{0x2252,3},{0xec6,3}}, {{0xe11,1},{0xcbd,1}}, {{0x3257,10},{0xe77,3}}, {{0xcc1,1},{0x2d11,3}}, + {{0xe67,2},{0xf35,3}}, {{0x4767,1},{0xe86,2}}, {{0xa04d,5},{0x4c16,3}}, {{0x2ddb,7},{0x6a0f,4}}, + {{0xb3f1,3},{0xe22,2}}, {{0xfcb,2},{0x1231,4}}, {{0x105f,3},{0x101f,2}}, {{0x69,1},{0xd,1}}, + {{0x2966,4},{0xe7f,2}}, {{0x236c,4},{0x6238,4}}, {{0x12f6,4},{0x27b7,7}}, {{0x1977,3},{0x138e,2}}, + {{0x113c,3},{0x2371,3}}, {{0x225e,6},{0xe11,1}}, {{0x1827,4},{0xfc87,5}}, {{0xcc8,1},{0xe5e,2}}, + {{0x9a8,1},{0x1af2,10}}, {{0x29cf,3},{0x6,1}}, {{0xc95f,6},{0x2e2c,3}}, {{0xf34,2},{0x10b9,2}}, + {{0xb1c9,7},{0x10838,4}}, {{0x4383,5},{0xe11,1}}, {{0xb931,5},{0xcc8,2}}, {{0x478f,3},{0x158f,3}}, + {{0x1131,3},{0xcc9,2}}, {{0x10b9,3},{0x9a9,2}}, {{0x7b45,4},{0x153a,3}}, {{0xeab,2},{0x8,1}}, + {{0xec6,3},{0xe09,1}}, {{0x48ea,6},{0x9a6,1}}, {{0x2a47,3},{0x198cf,5}}, {{0x2a47,3},{0x1c7b,5}}, + {{0xe19,1},{0xe19,1}}, {{0x4287,5},{0xbf50,5}}, {{0x97a1,5},{0x34d7,4}}, {{0x15e7,5},{0xf62,3}}, + {{0x3a7d,6},{0x566f,4}}, {{0xe83,4},{0x1212,3}}, {{0xe21,1},{0xe60,2}}, {{0x6,2},{0x2872,4}}, + {{0x1b371,6},{0xcc9,2}}, {{0x63ee,9},{0xcc9,2}}, {{0x3a7d,6},{0x8,1}}, {{0x3329,5},{0x333c,5}}, + {{0x1fbe,3},{0xe22,2}}, {{0x1f16,5},{0xf85b,5}}, {{0x3a61,5},{0xf7a,2}}, {{0x24b6,5},{0x1b80,3}}, + {{0x7414,3},{0x90fb,5}}, {{0x113c,3},{0xf70,2}}, {{0x2885,8},{0x289c,7}}, {{0x1727,8},{0xfb4,4}}, + {{0x6ec3,4},{0x14a2,3}}, {{0x4853,3},{0xfb8,3}}, {{0x46af,3},{0x8,1}}, {{0x4765,3},{0xe0a,1}}, + {{0x1a07,3},{0x122e,2}}, {{0x20799,5},{0xec6,3}}, {{0xe22,2},{0x793c,5}}, {{0x2f568,4},{0xe0f,1}}, + {{0x2105,8},{0x23c0,6}}, {{0xf16,2},{0x1d65,3}}, {{0x19b7,3},{0x28471,4}}, {{0x3bcd,4},{0xf16,2}}, + {{0x1af54,6},{0x45c7,2}}, {{0xe6f,4},{0x227b7,4}}, {{0x1007,5},{0x156a,3}}, {{0x1969,1},{0xccb,2}}, + {{0xe11,1},{0xf23,3}}, {{0xf77,4},{0x10d2,4}}, {{0x1e8f,8},{0x148a,3}}, {{0xf0a,3},{0xf0c,1}}, + {{0xe09,1},{0x10cc,2}}, {{0x1877,5},{0xe11,1}}, {{0x9a8,1},{0x5ead,5}}, {{0xf65,3},{0x13041,4}}, + {{0x1290,4},{0x189b,4}}, {{0x10a3,3},{0x12a6,3}}, {{0x22e5,4},{0x142a,3}}, {{0xde0a,5},{0x7917,6}}, + {{0x1a66,1},{0x5,1}}, {{0x19b7,3},{0xf86,2}}, {{0x1153,3},{0xe6b,3}}, {{0xe83,5},{0x1b8a,4}}, + {{0xef7,3},{0x1230,3}}, {{0x1c82,6},{0xed9,2}}, {{0x9a8,1},{0x120f,3}}, {{0xaaf,2},{0x3034d,2}}, + {{0x2de5d,3},{0x21,1}}, {{0xfe3,4},{0xc80d,4}}, {{0xe2b,2},{0x18b4,3}}, {{0xfb8,3},{0x6176,4}}, + {{0xe7f,3},{0xf59,2}}, {{0xef7,6},{0x152e,3}}, {{0xf0a,3},{0x9c85,3}}, {{0xf15,1},{0x5538,2}}, + {{0x4781,3},{0xe65,2}}, {{0xe67,2},{0x1fc7,3}}, {{0x1150,2},{0x1e8b,3}}, {{0x10b4,4},{0x2e33,8}}, + {{0x4765,3},{0xa,2}}, {{0x1489,2},{0xe0d,2}}, {{0x3957,8},{0xfdd,4}}, {{0x478f,3},{0xf1a,2}}, + {{0xe97,3},{0x35a3,3}}, {{0x111a,3},{0xcd3,2}}, {{0x2e3d,5},{0x53cd,4}}, {{0xcc7,1},{0x6,2}}, + {{0xe95,2},{0xfa1,2}}, {{0x1bb0,6},{0x1b4f,5}}, {{0x29c0,3},{0x9,1}}, {{0xef7,3},{0xe89,2}}, + {{0x3d47,6},{0x1ba9,7}}, {{0xed9,2},{0xe0d,2}}, {{0x824d,4},{0xe0a,1}}, {{0xe99,1},{0x2,1}}, + {{0x7995,6},{0xe95,2}}, {{0x1367,3},{0x492e,3}}, {{0x3db7,7},{0x1b4f,5}}, {{0x2538b,5},{0xe11,1}}, + {{0x2510,4},{0x5863,3}}, {{0x3089,5},{0x1230,3}}, {{0x27e0,4},{0x2dd7,4}}, {{0xe7f,2},{0xed9,2}}, + {{0x28d0,4},{0xe77,3}}, {{0x5f42,7},{0x21a5,5}}, {{0x115e,5},{0x1077,6}}, {{0x2a92,6},{0x1db1,3}}, + {{0xcbd,1},{0xe78,1}}, {{0xe0a,1},{0x141b,4}}, {{0x1df9,6},{0x6cb4,3}}, {{0xe71,1},{0xeee,3}}, + {{0xfc7,3},{0x138e,2}}, {{0xb69d,4},{0xfb8,3}}, {{0x4845,8},{0x34a5,3}}, {{0xf77,3},{0xeb4,3}}, + {{0xef7,4},{0x5717,4}}, {{0x2d87,6},{0xcc9,2}}, {{0x12e5,3},{0x6fe1,3}}, {{0xfb0,2},{0x30f7,2}}, + {{0x6af0,9},{0xe0b,4}}, {{0x24e3,5},{0xf8d4,6}}, {{0xeaa,2},{0x4c16,3}}, {{0x3d63,5},{0xe31,2}}, + {{0x4781,3},{0x24bdf,2}}, {{0x121c8,6},{0xf7a,2}}, {{0x2858,5},{0x2e2c,3}}, {{0x2f9b,4},{0xe78,1}}, + {{0x11b5,2},{0x12bf,4}}, {{0x1081,7},{0x1b4f,5}}, {{0x4287,5},{0xec3,3}}, {{0x46af,3},{0x569a,3}}, + {{0x1ff7,3},{0x1dee,2}}, {{0x125d,6},{0x89df,6}}, {{0xf1a,2},{0xebb,3}}, {{0x191f9,6},{0xcc9,2}}, + {{0xd131,4},{0x113f,2}}, {{0x1ebc,10},{0x128c,4}}, {{0x113c,5},{0x8459,4}}, {{0xf77,5},{0xcc1,1}}, + {{0x113c,3},{0x2280,2}}, {{0x1a27,4},{0x1294,6}}, {{0x9a6,1},{0x6,1}}, {{0xf70,2},{0x1f7c,3}}, + {{0x10b9,2},{0xe92,3}}, {{0x5d13,8},{0x1523,4}}, {{0x2858,5},{0xffc,3}}, {{0x1b41,4},{0xe95,2}}, + {{0xcc1,1},{0x1ba9,7}}, {{0x97a1,5},{0x1007b,5}}, {{0x11d0a,5},{0xf20,2}}, {{0x1d18,8},{0x2269,4}}, + {{0x115e,5},{0xeee,3}}, {{0x3409,6},{0xcc9,2}}, {{0x169b,6},{0xe67,2}}, {{0x4f50,6},{0x1783,4}}, + {{0xefa,3},{0xed5,3}}, {{0xafe9,8},{0x1523,4}}, {{0x10d9,2},{0xcd3,2}}, {{0xf9f8,5},{0xf9fd,5}}, + {{0x10172,7},{0x2dd7,4}}, {{0x1817,7},{0xe67,2}}, {{0x1bbf,4},{0x20bfd,4}}, {{0x2cc57,4},{0xe6b,2}}, + {{0x1969,1},{0x5,1}}, {{0x22a3,2},{0xe71,1}}, {{0x3a53,4},{0x2,1}}, {{0xccd,1},{0xe22,2}}, + {{0x237b,8},{0x1dc7,5}}, {{0x3a61,5},{0xeb9,5}}, {{0x27ef,4},{0xf1a,2}}, {{0x1019,4},{0x164a2,5}}, + {{0x22efb,5},{0xe11,1}}, {{0x772d,5},{0xf59,3}}, {{0x1ff7,3},{0x82d5,5}}, {{0xe2b,2},{0xf35,3}}, + {{0x1290,4},{0x4b61,6}}, {{0xe99,1},{0xede,1}}, {{0x7518,4},{0x1579,3}}, {{0x8c91,6},{0xe11,1}}, + {{0x1327,1},{0x1327,1}}, {{0x1b4e2,6},{0xed6,2}}, {{0x6171,5},{0x6176,4}}, {{0xf89,3},{0xe22,3}}, + {{0x256a,8},{0x2ca3,4}}, {{0x70ad,3},{0x9bd1,3}}, {{0x12064,5},{0xd15f,3}}, {{0x9345,5},{0xe09,1}}, + {{0x1153,2},{0xeee,5}}, {{0x5290,9},{0xcc9,2}}, {{0xe78,1},{0x6,1}}, {{0x1290,10},{0x5,1}}, + {{0xcce,2},{0xed9,2}}, {{0xf77,4},{0xcd3,2}}, {{0xf0a,3},{0xf1a,2}}, {{0x16d54,8},{0xe11,1}}, + {{0x113c,3},{0x10f2,5}}, {{0x29cf,3},{0x4cc2,3}}, {{0x10e7,5},{0x85a6,7}}, {{0x2939,4},{0x7097,5}}, + {{0x16598,7},{0xec6,3}}, {{0xe5b,3},{0x44ad,3}}, {{0xcc7,1},{0x1be9,3}}, {{0x3dd3,6},{0x6479,4}}, + {{0xe99,1},{0x2270,3}}, {{0x1677,3},{0x6,2}}, {{0x5242,5},{0xeca,3}}, {{0xe5e,2},{0x120b,4}}, + {{0xcc7,1},{0xf7a,2}}, {{0xf65,4},{0xc609,6}}, {{0xe1f,3},{0xf02,2}}, {{0x1155,2},{0xe0a,1}}, + {{0x1647,5},{0x164c,11}}, {{0x2de5d,3},{0xd,1}}, {{0x1f16,5},{0x4a5f,4}}, {{0xcba,2},{0xcd4,2}}, + {{0xcc1,1},{0x6,1}}, {{0x29cf,3},{0x2ee9,3}}, {{0xeba9,6},{0x7a0f,4}}, {{0xef7,4},{0x232d7,4}}, + {{0xe21,1},{0xe5e,2}}, {{0xcc8,1},{0xed9,2}}, {{0xcb8,1},{0x7c25,4}}, {{0xf0a,3},{0x1889,2}}, + {{0x4519,4},{0x6,1}}, {{0xcd3,2},{0x1de7,3}}, {{0xdd65,5},{0xcc9,2}}, {{0x1677,3},{0xfdf,3}}, + {{0xf91,3},{0xe6b,3}}, {{0xa4b5,9},{0x2,1}}, {{0x1967,3},{0x113f,2}}, {{0x8ccd,6},{0xe6b,3}}, + {{0x1847,4},{0x6da5,4}}, {{0x39b9,8},{0x12be,5}}, {{0x3d63,5},{0x30ad,6}}, {{0x5722,5},{0x775c,4}}, + {{0x1081,4},{0xf1f,3}}, {{0xcb7,2},{0x6,1}}, {{0x46af,3},{0xe1c,3}}, {{0xb3f1,3},{0xe86,2}}, + {{0x4765,3},{0x10d3,3}}, {{0x29c0,4},{0x10cb,2}}, {{0x19f7,4},{0xf1f,3}}, {{0x3d39,5},{0x9,1}}, + {{0x10bac,5},{0x7a36,3}}, {{0xf0a,3},{0x1569,2}}, {{0xe138,5},{0xf86,3}}, {{0x5117,5},{0x2e29,3}}, + {{0xf89,3},{0xeb4,3}}, {{0x1007,6},{0x1b40,5}}, {{0x1a1e6,5},{0xec6,3}}, {{0xe1f,3},{0x9498,5}}, + {{0x591d,5},{0xe67,2}}, {{0xfa5,2},{0xcd4,2}}, {{0x70ad,3},{0x5884,4}}, {{0x11,1},{0x0,1}}, + {{0x305f,6},{0xe1fa,4}}, {{0x1967,3},{0x188c,3}}, {{0x2966,4},{0x44ad,4}}, {{0xf77,4},{0x57cd,3}}, + {{0x4853,3},{0xfdf,3}}, {{0x122d,2},{0x1089,3}}, {{0x2f71,4},{0x4fa8,3}}, {{0xf4f,1},{0xe62,3}}, + {{0x1857,4},{0x3694,3}}, {{0x1007,7},{0x1059,3}}, {{0xe5b,3},{0x2f41,4}}, {{0x1d54,6},{0x1663,4}}, + {{0x41a7,4},{0x122e,2}}, {{0xf89,3},{0x8,1}}, {{0x62c3,7},{0x14ab,4}}, {{0xf15,1},{0x2d8d,3}}, + {{0xcce,2},{0xe69,5}}, {{0x122d,2},{0xf86,3}}, {{0x17f7,8},{0xe67,7}}, {{0x3a29,4},{0x1593,3}}, + {{0x261e,9},{0x3fb8,5}}, {{0x16c96,5},{0xc3d0,3}}, {{0x10cb,2},{0xe71,1}}, {{0x4781,3},{0xf15,1}}, + {{0x2966,4},{0x44ad,3}}, {{0xaaf,2},{0xee9,4}}, {{0x3b09,4},{0x10db,7}}, {{0x12e5,3},{0xe8a,2}}, + {{0x1140,2},{0x4b55,5}}, {{0x2de45,3},{0x9f,1}}, {{0x1cfa,14},{0xe11,1}}, {{0xcbf,2},{0xe5e,2}}, + {{0x16fd4,5},{0xec7,2}}, {{0x314d,8},{0xed9,2}}, {{0x5538,2},{0xf91,3}}, {{0x883a,4},{0xec6,3}}, + {{0x4765,3},{0x113f,2}}, {{0x74f6,2},{0xedd,1}}, {{0xcc1,1},{0x1cd3,2}}, {{0x1807,6},{0x180d,4}}, + {{0x1969,1},{0xf11,1}}, {{0x8666,2},{0xe0a,1}}, {{0x2006,6},{0xec6,3}}, {{0x7fa1,9},{0xe11,1}}, + {{0xcba,2},{0xcc9,2}}, {{0x677c,9},{0xe11,1}}, {{0x21f73,6},{0xe95,2}}, {{0xf59,2},{0xed6,2}}, + {{0x6dae,5},{0x4aef,3}}, {{0x16a7,3},{0x6008,6}}, {{0xccd,1},{0x1fbe,3}}, {{0xe6f,3},{0x78d0,3}}, + {{0xf205,4},{0x6,1}}, {{0x1db45,2},{0x19b9,1}}, {{0x3591,6},{0xe11,1}}, {{0x1eee6,6},{0xe22,2}}, + {{0x3559,5},{0xe2b,2}}, {{0x1062,2},{0x14a2,3}}, {{0x6164,5},{0x2319,8}}, {{0x1bbf,5},{0x169d,3}}, + {{0xb,1},{0xe67,2}}, {{0x2e2f,6},{0x2269,4}}, {{0x1677,3},{0xfcb,2}}, {{0x52f8,6},{0x189f,3}}, + {{0xed1,4},{0x138e,4}}, {{0x1567,6},{0xcb8,1}}, {{0x112b,4},{0x11dc,3}}, {{0x4765,3},{0x1f120,6}}, + {{0xed6,2},{0xfe6,2}}, {{0x29cf,3},{0xe11,1}}, {{0xe21,1},{0xf0c,1}}, {{0x2dec5,3},{0x21,1}}, + {{0x10c5,4},{0x24f7,4}}, {{0x29c0,3},{0x17b0f,4}}, {{0x2015,3},{0x1497b,6}}, {{0x2b48,2},{0x7e6b,6}}, + {{0xf0c,1},{0x1bef,2}}, {{0x2a47,3},{0xf03,3}}, {{0x12f6,4},{0x164a2,5}}, {{0x8559,9},{0xe11,1}}, + {{0x684c,8},{0xf91,3}}, {{0xe5b,3},{0x13345,3}}, {{0xe63f,4},{0xf0d,2}}, {{0x478f,3},{0x1d7d,3}}, + {{0xcc8,1},{0x6,1}}, {{0x442b,3},{0x1db33,2}}, {{0xfe3,4},{0x6008,3}}, {{0x138e,2},{0x4415,3}}, + {{0x6241,6},{0xf72,5}}, {{0x150d0,6},{0xe11,1}}, {{0x1208,7},{0xcc9,2}}, {{0x1f7f,5},{0xed6,2}}, + {{0x17efe,5},{0xb97c,2}}, {{0x6cde,4},{0x716c,4}}, {{0xe63f,4},{0x4665,4}}, {{0x10e09,5},{0xdfc9,4}}, + {{0x1208,7},{0xe6b,4}}, {{0x41b5,7},{0x41bc,4}}, {{0x4137,5},{0x11a6,2}}, {{0x113c,3},{0xe69,6}}, + {{0x1c91,4},{0x1a0af,5}}, {{0xe,1},{0x314,2}}, {{0x79f5,5},{0x9a9,2}}, {{0xf0a,3},{0x6,2}}, + {{0x1544a,7},{0xe11,1}}, {{0xcc6,2},{0x2c83,4}}, {{0x112b,6},{0x5342,3}}, {{0x1837,6},{0x18b4,3}}, + {{0x1e2f0,2},{0x2ba5,1}}, {{0x4781,3},{0x5,2}}, {{0xcb8,1},{0xfb8,3}}, {{0xe97,3},{0xe0a,1}}, + {{0x23063,7},{0xe11,1}}, {{0x105f,3},{0x12b4,3}}, {{0x3a1b,5},{0x3694,3}}, {{0xe83,3},{0xe09,1}}, + {{0xde8e,4},{0x7c90,5}}, {{0x1ea93,8},{0xe11,1}}, {{0xe5e,2},{0x9a8,1}}, {{0x10cb,2},{0x1040,3}}, + {{0x2858,5},{0x239e,3}}, {{0xb45d,8},{0x2,1}}, {{0xcb8,1},{0x2c59,4}}, {{0xef7,4},{0xfb0,3}}, + {{0x20799,5},{0xcc9,2}}, {{0xe71,1},{0xcce,2}}, {{0x1a07,3},{0xf0c,1}}, {{0x17d3c,6},{0x4f24,4}}, + {{0x2bb4,2},{0x6,1}}, {{0x486f,4},{0xcc7,1}}, {{0xcd3,1},{0xe89,2}}, {{0x16a7,3},{0x404f,3}}, + {{0xfb0,2},{0x2091,4}}, {{0x307bb,1},{0x307bb,1}}, {{0xc39d,5},{0xc572,4}}, {{0xf1a,2},{0xcbd,1}}, + {{0x353d,5},{0xe69,6}}, {{0x10cb,2},{0xe69,5}}, {{0x478f,3},{0xeb5,2}}, {{0x41a7,4},{0x43fd,4}}, + {{0x1857,6},{0x286d,5}}, {{0xeba9,6},{0xed6,2}}, {{0x12e5,3},{0x1bef,2}}, {{0x115e,7},{0x96c4,4}}, + {{0x5047,9},{0x1059,3}}, {{0x3c91,7},{0x156a,3}}, {{0xed1,4},{0x53cd,4}}, {{0x9e01,5},{0x158f,3}}, + {{0x1944,3},{0xe0a,1}}, {{0xe83,3},{0x22fb8,3}}, {{0x111a,3},{0x7974,4}}, {{0xcbf,2},{0xcce,2}}, + {{0x29cf,3},{0x29f3,3}}, {{0xcc8,1},{0x2c85,2}}, {{0x506e,9},{0xcc9,2}}, {{0xed1,5},{0x51c8,5}}, + {{0x1e8b,3},{0xe11,1}}, {{0xf15,1},{0x43fb,3}}, {{0x5,2},{0xf0f,2}}, {{0x122d,2},{0xed6,2}}, + {{0x1977,4},{0xe11,1}}, {{0xf0c,1},{0xed6,2}}, {{0x591d,5},{0x5669,3}}, {{0xe11,1},{0xfa5,2}}, + {{0xf0a,3},{0x7d80,5}}, {{0x1fe8,5},{0x2bb4,5}}, {{0xf70,2},{0xe69,5}}, {{0x59c6,5},{0x809a,3}}, + {{0x4781,3},{0xfdf,3}}, {{0xed1,4},{0xed5,6}}, {{0x11e62,3},{0xeb5,2}}, {{0x791d,7},{0xed6,2}}, + {{0x4,1},{0xe0d,2}}, {{0x5117,5},{0xec0,3}}, {{0x12e5,3},{0x74fc,2}}, {{0x5d6e,8},{0xe92,3}}, + {{0x1677,3},{0xee59,5}}, {{0x2bc7,5},{0xefb,4}}, {{0x1497,5},{0x10b9,2}}, {{0xf02,2},{0x41bc,4}}, + {{0x1557,4},{0xcc3d,3}}, {{0x9a6,1},{0x5,1}}, {{0x5534,4},{0x113f,2}}, {{0x11d5,5},{0x5fa5,5}}, + {{0xe21,1},{0xe0f,1}}, {{0x109b,2},{0x169d,3}}, {{0xe78,1},{0xcd3,2}}, {{0xe22,2},{0xeca,3}}, + {{0x1a47,4},{0xcbf,2}}, {{0x759a,5},{0xe1c,3}}, {{0x11d5,5},{0x9f32,6}}, {{0x1967,3},{0x5538,2}}, + {{0x442d,1},{0x158f,3}}, {{0x1a7b3,5},{0x23e1,3}}, {{0x2a47,3},{0xfe0,2}}, {{0x4773,4},{0xcbf,2}}, + {{0x595e,8},{0xec6,3}}, {{0x1a07,3},{0xf4f,1}}, {{0x9,1},{0x1150,2}}, {{0x1677,3},{0x809a,3}}, + {{0xe6f,3},{0xe89,2}}, {{0x1a07,3},{0xf63,2}}, {{0x1937,4},{0x113f,2}}, {{0x28b3a,1},{0x28b33,1}}, + {{0x10c5,4},{0x11b5,2}}, {{0xebe,3},{0x1b872,5}}, {{0xd7c,2},{0xc27f,2}}, {{0x113c,3},{0xe0a1,5}}, + {{0x1f366,5},{0xebc,2}}, {{0x1715a,5},{0xe5e9,3}}, {{0x8e41,9},{0xe95,2}}, {{0xee4,4},{0xe0b,4}}, + {{0xf70,2},{0xeab,2}}, {{0x1e44,6},{0x189f,3}}, {{0x1d18,5},{0x11dc,3}}, {{0x2f71,4},{0x122d,2}}, + {{0x125d,6},{0xfa6,3}}, {{0xe71,1},{0xe65,2}}, {{0x9a6,1},{0xe77,2}}, {{0x1019,4},{0xb604,4}}, + {{0x7414,3},{0xa,2}}, {{0xe16,2},{0xe0a,1}}, {{0x2ced,5},{0xf7a,2}}, {{0x1109,8},{0x51c8,5}}, + {{0xe1f,3},{0xa,2}}, {{0xe09,1},{0xe0b,4}}, {{0x4765,3},{0xe99,1}}, {{0x1a66,1},{0xee6c,5}}, + {{0xedd,1},{0xf11,1}}, {{0x4765,3},{0xe22,3}}, {{0x7414,3},{0x45ee,3}}, {{0x10587,5},{0x5b6d,6}}, + {{0xed1,4},{0xef3,4}}, {{0x27e0,3},{0x810e,3}}, {{0x19c7,6},{0x1047,3}}, {{0x27e0,5},{0x1692,5}}, + {{0x4781,3},{0xf1a,2}}, {{0xef7,3},{0x28504,4}}, {{0xc437,6},{0x153a,3}}, {{0x5538,2},{0x4524,3}}, + {{0x15399,2},{0xe5e,2}}, {{0x2df3b,4},{0x468,2}}, {{0x1e9e,5},{0x1b8a,7}}, {{0x10e8d,5},{0xf86,3}}, + {{0x684c,8},{0xed6,2}}, {{0x1cb8f,7},{0xe95,2}}, {{0xcc1,1},{0xe7b0,5}}, {{0x2de5d,3},{0xe,1}}, + {{0xeacd,5},{0xf7a,2}}, {{0x1857,4},{0x8cd3,3}}, {{0x70ad,3},{0xcd3,2}}, {{0x46af,5},{0x158f,3}}, + {{0x1467,4},{0xe6c,3}}, {{0x1977,3},{0xccb,2}}, {{0x111a,3},{0xcba,2}}, {{0xd5d5,6},{0xf91,3}}, + {{0xa10d,8},{0xeed,4}}, {{0xa6e9,7},{0x1040,3}}, {{0xd22e,8},{0xec6,3}}, {{0xb2d1,7},{0xe92,3}}, + {{0x5881,5},{0x12bf,4}}, {{0x10587,5},{0x3caa,3}}, {{0x111a,3},{0xcc9,2}}, {{0x19b9,1},{0x1ce6,5}}, + {{0x2de5d,3},{0xf,1}}, {{0xe97,3},{0xed9,2}}, {{0x10a3,3},{0x7e6d,5}}, {{0x2e2f,6},{0x28f8,5}}, + {{0xaaf,2},{0x130e1,4}}, {{0xe0d,2},{0x2,1}}, {{0x2e271,3},{0x2e292,1}}, {{0xed9,2},{0x1fc7,3}}, + {{0xc36,2},{0x308c1,2}}, {{0x111a,3},{0x5,2}}, {{0x1d143,5},{0xe7f,2}}, {{0x2e273,1},{0x205a1,1}}, + {{0x9,1},{0x8,1}}, {{0x6ff7,5},{0xec6,3}}, {{0x19b9,1},{0xedd,1}}, {{0x9a8,1},{0xfdf,3}}, + {{0x26ff,8},{0x386f,4}}, {{0x4ee8,4},{0x11e87,4}}, {{0x12d4,3},{0x445b,2}}, {{0xe09,1},{0x10b8,2}}, + {{0x2536b,6},{0x1155,2}}, {{0xccc,2},{0xec6,3}}, {{0xe97,3},{0x2ee9,3}}, {{0x29cf,3},{0xf0f,2}}, + {{0x10a3,3},{0x30ad,6}}, {{0x9a8,1},{0xfb0,3}}, {{0x478f,3},{0xfdf,3}}, {{0xa641,6},{0xec6,3}}, + {{0xe7f,2},{0xed6,2}}, {{0x29c0,4},{0x157b,3}}, {{0xf4f,1},{0x8,1}}, {{0x1847,5},{0xb068,5}}, + {{0x1c91,4},{0xf7a,2}}, {{0x30357,1},{0xb74,1}}, {{0xc6ec,5},{0xfdd,4}}, {{0x17661,2},{0xe99,1}}, + {{0x153e6,6},{0xe11,1}}, {{0x780a,4},{0xf35,2}}, {{0xf59,2},{0xcd3,2}}, {{0x12e5,3},{0xe13,3}}, + {{0x2a47,3},{0xcd4,2}}, {{0xcd3,2},{0xeee,3}}, {{0xe09,1},{0x138e,2}}, {{0xc015,4},{0x1593,3}}, + {{0x12d4,3},{0x3372,4}}, {{0x236c,4},{0xb495,4}}, {{0x3965,6},{0x2352,5}}, {{0x124c,6},{0x266f,4}}, + {{0x6,2},{0xe7f,2}}, {{0xf70,2},{0xcc9,2}}, {{0xf65,4},{0xe7f,2}}, {{0x19643,5},{0xe67,2}}, + {{0x1a27,4},{0x1153,2}}, {{0x27e0,3},{0xe0d,2}}, {{0x6,2},{0xcd3,1}}, {{0x13a7,7},{0x1fb6,5}}, + {{0xf0c,1},{0x1150,2}}, {{0xe11,2},{0x1510,4}}, {{0xe99,1},{0x1969,1}}, {{0xf89,3},{0x1dee,2}}, + {{0x6,1},{0x6,1}}, {{0x712f,4},{0x1ebf,3}}, {{0x1cd5,4},{0xcc9,2}}, {{0xe80,2},{0xfe0,2}}, + {{0xa5ed,5},{0x1c6d,6}}, {{0x12e5,3},{0xe16,1}}, {{0xe09,1},{0xe22,2}}, {{0x27032,6},{0xe11,1}}, + {{0x1e1b,3},{0x1ba9,7}}, {{0xe5b,4},{0xeab,2}}, {{0xf77,3},{0x4c16,3}}, {{0x2858,4},{0x1252,3}}, + {{0x1687,4},{0x1059,3}}, {{0x2de5d,3},{0x8d,1}}, {{0xe11,1},{0x1bef,2}}, {{0x10587,5},{0x17c0,2}}, + {{0x1787,6},{0x3b49,6}}, {{0x83d9,6},{0x9c87,4}}, {{0x354b,7},{0xed9,2}}, {{0x3115,8},{0xe95,2}}, + {{0x5e4b,6},{0x11d2,3}}, {{0x2948,3},{0x4,1}}, {{0xcd3,2},{0xed6,2}}, {{0xf0a,3},{0x1f39,6}}, + {{0x12e5,3},{0x2d11,3}}, {{0x1373,2},{0x1150,2}}, {{0xcbd,1},{0xe11,1}}, {{0x19b9,1},{0xe86,2}}, + {{0xda8,4},{0xbb6,2}}, {{0x478f,3},{0xee6c,5}}, {{0xe08,1},{0x12a3,3}}, {{0x1977,3},{0xe99,1}}, + {{0x27e0,3},{0xf7a,2}}, {{0x1f38,1},{0xcd3,1}}, {{0x4765,3},{0xe2b,2}}, {{0xfb8,3},{0xcc9,2}}, + {{0x9fe1,7},{0xf193,4}}, {{0x7115,4},{0xcc9,2}}, {{0xef66,5},{0xcd3,2}}, {{0x3a61,5},{0xf82,7}}, + {{0x1007,5},{0x1050,3}}, {{0xf4f,1},{0xfa0,3}}, {{0x29c0,3},{0xf0c,1}}, {{0xcc1,1},{0xe13,3}}, + {{0x127f,4},{0x3,1}}, {{0xa215,5},{0x4132,5}}, {{0x12e5,3},{0x1153,2}}, {{0x712f,4},{0xe22,2}}, + {{0xcc7,1},{0x27dc,4}}, {{0x3a7d,6},{0xe13,3}}, {{0x10b9,2},{0xe25,2}}, {{0x2f71,4},{0x9101,4}}, + {{0x10b9,2},{0xcbe,3}}, {{0xe22,2},{0xf7a,2}}, {{0x1667,5},{0xed9,2}}, {{0x1150,2},{0xf91,3}}, + {{0x4853,3},{0xcc3d,3}}, {{0x5534,4},{0xfda,5}}, {{0x16d7,6},{0x211a,4}}, {{0x736b,5},{0x794f,4}}, + {{0x4519,4},{0x421a,5}}, {{0x1bb0,6},{0xec6,3}}, {{0xfa6,3},{0xe7f,2}}, {{0xcd3,3},{0x9a4,3}}, + {{0xed1,4},{0x316e,3}}, {{0x1637,6},{0x1bf6,5}}, {{0x478f,3},{0x1593,3}}, {{0xc857,7},{0xe22,3}}, + {{0x18b56,5},{0x6c88,5}}, {{0x101f,3},{0xed6,2}}, {{0x1ebc,5},{0x2e7d,6}}, {{0x1a237,7},{0xe95,2}}, + {{0x1367,3},{0x2e895,2}}, {{0xa6e9,7},{0xe77,3}}, {{0x12e5,5},{0x9a8,1}}, {{0x684c,8},{0x15d1,5}}, + {{0x9da1,5},{0x277e,2}}, {{0xf16,2},{0xe22,2}}, {{0x1f25,4},{0x142c,4}}, {{0xe5b,3},{0xfdf,3}}, + {{0xe5b,3},{0xcce,2}}, {{0x12a1,8},{0x12a9,3}}, {{0xe6f,3},{0xeaf5,4}}, {{0xed9,2},{0x8,1}}, + {{0x7416,1},{0xedd,1}}, {{0x2de63,3},{0x314,2}}, {{0x9a4,3},{0xf91,3}}, {{0x4,1},{0x3b49,6}}, + {{0xe7a,1},{0xf11,1}}, {{0x10b4,4},{0x8db7,5}}, {{0x79dd,5},{0x5261,4}}, {{0x46af,3},{0xec3,3}}, + {{0xed9,2},{0xcd3,1}}, {{0xccb,2},{0xfa5,4}}, {{0x2dcd,10},{0xec6,3}}, {{0x111a,3},{0xf24,2}}, + {{0x16a7,3},{0x583b,5}}, {{0x46bd,3},{0x4227,3}}, {{0x11cb,3},{0xe22,2}}, {{0xcf37,6},{0xec6,3}}, + {{0xcd3,2},{0xe69,6}}, {{0xccd,1},{0x2d8d,3}}, {{0x2f71,4},{0x8,1}}, {{0xe16,1},{0xe78,1}}, + {{0x2015,3},{0xeb4,3}}, {{0x1025,1},{0xe0a,1}}, {{0x2df3b,5},{0x57,1}}, {{0x2de3f,3},{0xcd6,1}}, + {{0x9471,7},{0xfdf,4}}, {{0xf0a,3},{0xee9,2}}, {{0x11d5,5},{0x4a5f,4}}, {{0x1ff7,3},{0xf86,3}}, + {{0xe11,2},{0xf1a,2}}, {{0x27e0,3},{0x6,2}}, {{0x62ea,5},{0x1894,3}}, {{0x19b7,3},{0x10cb,2}}, + {{0x1467,6},{0x2c6a,5}}, {{0x4519,4},{0x2c21,4}}, {{0x65b5,5},{0xf6bb,4}}, {{0x1a5b,3},{0x1a5e,3}}, + {{0x6bda,6},{0xccb,2}}, {{0x2f71,4},{0x3ce0,5}}, {{0x797d,5},{0xed5,3}}, {{0x12e5,3},{0xe19,1}}, + {{0xf4f,1},{0xfa5,2}}, {{0xaaf,2},{0x2e866,2}}, {{0xf15,1},{0x1969,1}}, {{0xf65,4},{0xcb8,1}}, + {{0x280ee,5},{0xed6,2}}, {{0x29cf,3},{0xee9,2}}, {{0xcd48,7},{0x4921,4}}, {{0x7414,3},{0x7a37,2}}, + {{0x104a0,8},{0xcc9,2}}, {{0x7414,3},{0xee9,2}}, {{0x3be9,5},{0x142d,3}}, {{0x80f1,8},{0xed6,2}}, + {{0x2de45,3},{0x57,1}}, {{0x5611,5},{0xcd0d,4}}, {{0xe0f,1},{0x9a6,1}}, {{0x1939,2},{0x1ba9,4}}, + {{0x3dd3,6},{0x1e40,4}}, {{0x1587,4},{0xf20,2}}, {{0x22e5,5},{0x3537,2}}, {{0xa659,5},{0x1772,5}}, + {{0xf77,3},{0x1380,5}}, {{0xe21,1},{0xf4f,1}}, {{0xdd8,6},{0xdd8,6}}, {{0x4767,1},{0x1025,1}}, + {{0xe5b,3},{0xe0b,2}}, {{0x129a2,5},{0xeee,3}}, {{0xb,1},{0x1153,2}}, {{0x12d4,3},{0x2d65d,2}}, + {{0xc463,6},{0xf62,3}}, {{0x3559,5},{0xe11,1}}, {{0x12d4,3},{0x2,3}}, {{0xedd,1},{0x9a6,1}}, + {{0x12a1,4},{0xf0f,2}}, {{0x38e7,4},{0x9a6,1}}, {{0x69,1},{0x314,2}}, {{0x5a21,7},{0x44b3,4}}, + {{0x1997,4},{0xf62,3}}, {{0xc05d,4},{0x188a,4}}, {{0x1a66,1},{0xcbd,1}}, {{0xc295,5},{0xc29a,6}}, + {{0xf0c,1},{0xd28b,5}}, {{0x7ec9,8},{0xec3,3}}, {{0x10b4,4},{0xccd,1}}, {{0x10a3,4},{0xcd4,2}}, + {{0x24593,6},{0xcd3,1}}, {{0x1367,3},{0xfb8,3}}, {{0xf77,3},{0xe09,1}}, {{0xcc8,1},{0x6cc8,3}}, + {{0x1a84,5},{0xfa9,4}}, {{0x1457,6},{0xf20,2}}, {{0x5,1},{0x386f,4}}, {{0x103ae,4},{0x4b07,5}}, + {{0xe83,3},{0xc341,4}}, {{0x10658,6},{0xf91,3}}, {{0x4781,3},{0x5ea9,3}}, {{0xe1f,3},{0x1153,2}}, + {{0x4c03,8},{0xe11,1}}, {{0x24f2,5},{0x309d,3}}, {{0x1cd3,2},{0xe2b,2}}, {{0x105f,3},{0xeee,3}}, + {{0x103e,4},{0xfdf,4}}, {{0x12092,6},{0xe22,2}}, {{0x9a4,3},{0x6,1}}, {{0x4765,3},{0x9372,3}}, + {{0xf77,3},{0xf59,2}}, {{0x30357,1},{0x20599,1}}, {{0xcc1,1},{0xcc3d,3}}, {{0x4765,6},{0x1054,3}}, + {{0x16fd4,5},{0x1d970,4}}, {{0x4f02,5},{0x3a30,7}}, {{0x19b7,3},{0x24d65,2}}, {{0xf0c,1},{0x9a9,2}}, + {{0x2f9b,4},{0x7b72,3}}, {{0xf53,2},{0xcc6,2}}, {{0x1109,5},{0xf24,2}}, {{0x1099,4},{0xec3,3}}, + {{0x3a61,5},{0xcc9,2}}, {{0x1208,4},{0x10cb,2}}, {{0xe19,1},{0x1524,3}}, {{0x46af,3},{0xcd3,1}}, + {{0xe09,1},{0xe32,1}}, {{0x9279,6},{0x2ee9,3}}, {{0x11a6b,5},{0x4132,5}}, {{0x4853,3},{0x162c,3}}, + {{0x12a1a,7},{0xabc6,3}}, {{0xc36,2},{0x2b0ac,2}}, {{0x3be9,5},{0xcd3,2}}, {{0x1c085,6},{0xec6,3}}, + {{0x3b5d,5},{0xec6,3}}, {{0xfb0,2},{0x23d2,3}}, {{0x1fbb,5},{0x331f,4}}, {{0x1e910,4},{0xe1b,4}}, + {{0x3a8b,8},{0xe69,5}}, {{0x19b9,1},{0x237d,2}}, {{0x14f9,3},{0xe2b,2}}, {{0x16c96,5},{0x5ee3,4}}, + {{0xe97,3},{0x2d7c,4}}, {{0x478f,3},{0x74f6,2}}, {{0xe7f,2},{0x23e1,3}}, {{0x1b3f8,5},{0x2091,4}}, + {{0x1a306,5},{0x30f7,2}}, {{0x29c0,3},{0x7416,1}}, {{0x85b9,10},{0xe95,2}}, {{0x20579,1},{0x1327,1}}, + {{0x5534,4},{0xe92,3}}, {{0x80b5,9},{0xe11,1}}, {{0xaf65,9},{0xcc9,2}}, {{0x122d,2},{0x3976,3}}, + {{0x1fc7,3},{0x6,1}}, {{0x1260a,8},{0xe95,2}}, {{0x2966,4},{0x41e9,4}}, {{0xf59,2},{0x6,1}}, + {{0x1977,4},{0x160b,4}}, {{0x4597,4},{0xcd3,2}}, {{0xe67,2},{0xe22,2}}, {{0x19b7,3},{0xf1a,2}}, + {{0x18930,7},{0x3315,3}}, {{0x1839,2},{0xe71,1}}, {{0x2bd5,4},{0x1b03,3}}, {{0x6,1},{0x1cd3,2}}, + {{0xcd2,2},{0x6,1}}, {{0x4f1c,5},{0xcbd,1}}, {{0x595e,6},{0xcc9,2}}, {{0x2e271,3},{0x2e27d,1}}, + {{0x1467,4},{0x5,1}}, {{0xccd,1},{0x8,1}}, {{0x46af,3},{0x49a6,3}}, {{0x24f2,5},{0x2,1}}, + {{0x46bd,3},{0x5,1}}, {{0x7e99,6},{0x2,1}}, {{0x32ab,6},{0xe6b,3}}, {{0x1967,3},{0xa,2}}, + {{0x1647,5},{0x8,1}}, {{0x1024,2},{0xed6,2}}, {{0x2f71,4},{0xe2b,2}}, {{0x12e5,3},{0x276b,4}}, + {{0x11a6,2},{0xe80,2}}, {{0xcc1,1},{0xccb,2}}, {{0x1e62,4},{0xe95,2}}, {{0x125d,6},{0x2317,5}}, + {{0x12f6,6},{0x3075,3}}, {{0x1f057,5},{0x4665,4}}, {{0x4597,5},{0xe78,1}}, {{0x2399,4},{0x5b7b,5}}, + {{0x1687,4},{0xc3fb,5}}, {{0x566c,6},{0x4,1}}, {{0xead8,5},{0xcce,2}}, {{0x4ee8,4},{0x8,3}}, + {{0x13eec,5},{0x12be,5}}, {{0xd83d,6},{0x11d0,5}}, {{0x17f80,6},{0xe24,3}}, {{0x5,1},{0x8428,3}}, + {{0xe92,3},{0xfe0,2}}, {{0x1747,4},{0x1de7,3}}, {{0x83d9,7},{0xd0b4,4}}, {{0x16a7,6},{0x16ad,7}}, + {{0x5290,7},{0xcd3,2}}, {{0x9105,7},{0x910c,4}}, {{0x1817,4},{0x4116,5}}, {{0x5539,3},{0xcc3,2}}, + {{0x19b7,3},{0xe92,3}}, {{0xe32,1},{0xe7f,2}}, {{0x15486,6},{0x30f4,4}}, {{0x8115,7},{0xeab,2}}, + {{0xef7,3},{0x4516,3}}, {{0x1b8db,5},{0xe5e,2}}, {{0xb69d,5},{0xa,2}}, {{0x10b4,4},{0x3599,3}}, + {{0x2015,3},{0xe09,1}}, {{0x3433,5},{0x9,1}}, {{0x1877,7},{0x6140,3}}, {{0x46af,3},{0xe77,3}}, + {{0x6171,9},{0xeee,3}}, {{0x237d,2},{0x1393,4}}, {{0x20f6,5},{0xffc,3}}, {{0x1025,1},{0xe90,3}}, + {{0xed1,5},{0x26ae,6}}, {{0x9a6,1},{0xcd2,2}}, {{0x46bf,1},{0x18023,3}}, {{0x12b2,5},{0xfa0,3}}, + {{0xf0c,1},{0xcc7,1}}, {{0x478f,3},{0xf8e,3}}, {{0x1007,7},{0x1c8c,5}}, {{0x2eb35,3},{0x2eb37,1}}, + {{0x39d5,7},{0x13e3,4}}, {{0x1a07,3},{0xf4a,5}}, {{0x1967,3},{0x111d,4}}, {{0xe97,3},{0xcd2,2}}, + {{0x30c1,8},{0x1663,3}}, {{0x105f,3},{0x1be9,3}}, {{0x1155,2},{0x6,1}}, {{0xe1f,3},{0x6,1}}, + {{0x9a6,1},{0x9a8,1}}, {{0x1150,2},{0xeab,2}}, {{0x10da6,5},{0x52d8,3}}, {{0x17148,2},{0x8,1}}, + {{0x13f0a,9},{0xe11,1}}, {{0x112b,6},{0x1131,6}}, {{0xe22,2},{0xec6,3}}, {{0xe99,1},{0x11dc,3}}, + {{0x46af,3},{0x11b5,2}}, {{0x1807,5},{0x18b4,3}}, {{0x1a07,3},{0x1025,1}}, {{0xe97,3},{0xe21,1}}, + {{0x1647,5},{0x120c,3}}, {{0x8d81,6},{0x5884,4}}, {{0x4f1c,5},{0xfe0,2}}, {{0x2b48,2},{0x1489,2}}, + {{0x1a7aa,5},{0xe11,1}}, {{0x24e3,5},{0x2b78,5}}, {{0x41b5,5},{0xcbb,2}}, {{0x8abd,9},{0xec6,3}}, + {{0x59d3,7},{0xe11,1}}, {{0x1131,3},{0xf62,3}}, {{0x4853,5},{0x8,2}}, {{0x1a07,3},{0x3537,2}}, + {{0xcbd,1},{0xe69,5}}, {{0x1657,8},{0x1204,4}}, {{0x2ba5,1},{0x810e,3}}, {{0x4853,3},{0x11e62,5}}, + {{0x168a,3},{0xe11,1}}, {{0x78ed,2},{0xf0c,1}}, {{0x46af,3},{0xf04,2}}, {{0xcd48,6},{0x82bc,3}}, + {{0x2de4b,3},{0x9f,1}}, {{0x112b,5},{0xccd,4}}, {{0x551a,7},{0x4ca6,6}}, {{0x5cab,7},{0xe92,3}}, + {{0x1677,3},{0x4aee,3}}, {{0x1092,7},{0x7f30,5}}, {{0x125d,8},{0x1265,5}}, {{0x1557,4},{0x5,1}}, + {{0x105f,3},{0x8,1}}, {{0xec3,3},{0xeee,3}}, {{0x19b7,3},{0x2b86,4}}, {{0x6c42,6},{0xe7f,2}}, + {{0x1d545,8},{0xe11,1}}, {{0x14e96,6},{0x1392,3}}, {{0x2f71,4},{0x6d42,4}}, {{0xcce,2},{0xe80,2}}, + {{0x7d3d,6},{0x1944,3}}, {{0xcc7,1},{0xed9,2}}, {{0x2de5d,3},{0x69,1}}, {{0xe5b,3},{0xcce,3}}, + {{0x1e9e,8},{0xfdf,4}}, {{0xe5b,3},{0xf16,2}}, {{0x1b5cc,6},{0xe11,1}}, {{0xb3f1,3},{0x2224,4}}, + {{0x27ef,5},{0xeab,2}}, {{0xe6f,3},{0x11a6,2}}, {{0x6,1},{0x1d7e,3}}, {{0xed1,3},{0xfb0,3}}, + {{0x1109,5},{0xf64c,5}}, {{0x11d9,3},{0xf35,3}}, {{0x112b,6},{0xe2b,2}}, {{0x29cf,3},{0xe67,2}}, + {{0x2de5d,3},{0x7b,1}}, {{0x1807,5},{0xcc3,2}}, {{0x80f1,8},{0xe95,2}}, {{0xe11,2},{0x94b5,3}}, + {{0x6f27,7},{0xe69,6}}, {{0xe32,1},{0xe22,2}}, {{0x10e7,5},{0x7fbf,6}}, {{0x1f38,1},{0x8,1}}, + {{0x5,1},{0xe1c,3}}, {{0x1ffa,3},{0x1150,2}}, {{0xe22,3},{0xed9,2}}, {{0x18ebc,3},{0xf,1}}, + {{0x3a29,4},{0x6008,3}}, {{0x4,2},{0x1085,3}}, {{0x10c5,5},{0x1790,3}}, {{0x1ac45,6},{0xec6,3}}, + {{0x11179,5},{0x7860,5}}, {{0x1ff7,3},{0xcd3,1}}, {{0x79c5,4},{0x20bed,3}}, {{0x2a47,3},{0x2c15,3}}, + {{0x1d18,5},{0xe6b,4}}, {{0x46bd,3},{0xe65,2}}, {{0x115e,5},{0x162c,6}}, {{0x70ad,3},{0x4767,1}}, + {{0xf02,2},{0xec6,3}}, {{0x14ff,3},{0x4d85,4}}, {{0x10b7,2},{0xf0f,2}}, {{0xe97,3},{0xe2b,2}}, + {{0x16a7,3},{0x3a48,5}}, {{0xcce,2},{0xf35,2}}, {{0xed1,3},{0x7f09,3}}, {{0x478f,3},{0x6d42,4}}, + {{0x1007,5},{0x69ca,7}}, {{0x7905,1},{0x7905,1}}, {{0x1547c,6},{0x2dd7,4}}, {{0xed1,5},{0x269f,6}}, + {{0xf89,3},{0x2792d,4}}, {{0x1587,4},{0x3381,3}}, {{0xe78,1},{0xe0a,1}}, {{0x9b25,5},{0x181b,3}}, + {{0x12e5,3},{0x277a,3}}, {{0xefa,2},{0xeab,2}}, {{0x4c37,8},{0x1054,3}}, {{0x2e3d,9},{0x1392,5}}, + {{0xf15,1},{0xf1a,2}}, {{0x5c02,5},{0x14f9,3}}, {{0x1567,7},{0x156e,3}}, {{0x1ff7,3},{0x5849,4}}, + {{0xede,1},{0x3641,3}}, {{0x6f1a,5},{0xf86,3}}, {{0x1303,3},{0x1523,4}}, {{0x2966,4},{0x2454,3}}, + {{0x27e0,3},{0xc6cd,4}}, {{0x90bd,6},{0xfdf,4}}, {{0x9129,5},{0x9cac,5}}, {{0x4fab,5},{0x5,1}}, + {{0x12e5,3},{0x1e2ef,2}}, {{0xcc8,1},{0x3075,3}}, {{0x1019,4},{0x2236,3}}, {{0x1f16,5},{0x89df,6}}, + {{0x8709,8},{0x3075,4}}, {{0x22e5,4},{0x63ea,4}}, {{0x1e08,5},{0x9a8,1}}, {{0x1967,3},{0x8,1}}, + {{0x27e0,4},{0x77b3,4}}, {{0xead,3},{0x6,1}}, {{0x1e11e,5},{0x156a,3}}, {{0x1367,3},{0xf62,3}}, + {{0xccd,1},{0xf62,3}}, {{0xcd2,2},{0xcce,2}}, {{0x520e,5},{0xfdd,4}}, {{0x46af,3},{0x1d003,5}}, + {{0x15e7,5},{0xf24,2}}, {{0x4f91,8},{0x1be9,3}}, {{0xe6f,3},{0x1189,3}}, {{0x19b9,1},{0xe21,1}}, + {{0x1a66,1},{0xe16,1}}, {{0x2501,5},{0xeee,3}}, {{0x1927,4},{0x2f05,4}}, {{0xf65,4},{0x5863,3}}, + {{0x7602,9},{0xeed,4}}, {{0x1607,8},{0x18b4,3}}, {{0xc40b,6},{0xe11,1}}, {{0x3115,5},{0x12ba,4}}, + {{0x39d5,7},{0xe92,3}}, {{0x121c,3},{0xe6b,4}}, {{0xcc1,1},{0xf1a,2}}, {{0x52f8,6},{0x4a01,3}}, + {{0x1c865,5},{0xec5,4}}, {{0x4137,5},{0xe11,2}}, {{0x159f4,7},{0xec6,3}}, {{0x40f1,9},{0xcc9,2}}, + {{0x2de51,3},{0x21,1}}, {{0xeacd,5},{0xec6,3}}, {{0x236c,4},{0x168f,2}}, {{0x6c21,3},{0xe30,3}}, + {{0x7a01,5},{0x1894,3}}, {{0x20f6,10},{0xe6b,4}}, {{0xe19,1},{0xf11,1}}, {{0x19b7,3},{0xf0f,2}}, + {{0x4899,4},{0x1773,4}}, {{0xe6f,3},{0x2252,3}}, {{0x662a,8},{0x1004,3}}, {{0x478f,3},{0x5edd,6}}, + {{0x4979,4},{0xeb5,2}}, {{0xead,3},{0xe0a,1}}, {{0xe21,1},{0xcc9,2}}, {{0xef7,6},{0x4f79,3}}, + {{0x780a,4},{0x1fc7,3}}, {{0x8775,6},{0xf4a,5}}, {{0xccd,1},{0xd086,3}}, {{0xc949,7},{0xec6,3}}, + {{0xf953,6},{0xe95,2}}, {{0xcd3,1},{0xe0a,1}}, {{0xa01d,7},{0x27dc,4}}, {{0x6b8c,5},{0x6e53,4}}, + {{0x55ea,8},{0xeee,3}}, {{0xcd3,2},{0xcc6,2}}, {{0x9,2},{0xcbd,1}}, {{0x16a7,3},{0x1830,3}}, + {{0xccd,1},{0xe80,2}}, {{0x9a8,1},{0x5342,3}}, {{0x46af,3},{0xcba,2}}, {{0x1967,3},{0x1ea1,5}}, + {{0xe5b,3},{0x4bec,9}}, {{0xe11,2},{0xed9,2}}, {{0xf89,3},{0xe5e,2}}, {{0xe7a,1},{0x18772,2}}, + {{0xe1f,3},{0x5538,2}}, {{0x2bb4,2},{0xcd3,1}}, {{0xede,1},{0xed9,2}}, {{0x1787,6},{0x4a44,5}}, + {{0x4765,3},{0x1166d,4}}, {{0x1367,3},{0x2ee9,3}}, {{0x4fd2,6},{0xed9,2}}, {{0x8abd,9},{0xf7a,2}}, + {{0x2d38f,4},{0x48d6,2}}, {{0x18ebc,3},{0x57,1}}, {{0x6cde,4},{0xec0,3}}, {{0x1c28,5},{0xe5e,2}}, + {{0x4853,3},{0xcbf,2}}, {{0xacdd,6},{0x1392,5}}, {{0x11a6,3},{0xe0a,1}}, {{0xe89,2},{0xe2b,2}}, + {{0xe6f,3},{0xcbac,5}}, {{0x9a65,6},{0xf7a,2}}, {{0x12e5,3},{0x180a,3}}, {{0x1081,4},{0xb37c,3}}, + {{0xed6,2},{0xcc7,1}}, {{0x14a7,4},{0xccaa,4}}, {{0x3329,5},{0xfb0,2}}, {{0x1166,3},{0x35a3,3}}, + {{0xcc8,1},{0x168b,4}}, {{0xe78,1},{0xf1a,2}}, {{0x2f71,4},{0xf1a,3}}, {{0x1887,4},{0x1a71c,4}}, + {{0x2a47,3},{0x1f875,1}}, {{0x1153,2},{0x2271,3}}, {{0xcc1,1},{0x146d,4}}, {{0x83d9,6},{0xeed,2}}, + {{0xe33,1},{0xf4f,1}}, {{0x110c9,5},{0xe2b,2}}, {{0x3dd3,6},{0xe1c,3}}, {{0x2df3b,5},{0x69,1}}, + {{0x1a7b3,5},{0x16e3,4}}, {{0x1e62,6},{0x1131,6}}, {{0x1df9,6},{0x5342,3}}, {{0x1297a,9},{0xe11,1}}, + {{0x7911,3},{0x6d42,4}}, {{0x4767,1},{0xe16,1}}, {{0x18732,5},{0xe86,2}}, {{0xe2b,2},{0x12a9,3}}, + {{0xcf6,4},{0xcf6,4}}, {{0xf77,3},{0x10cb,2}}, {{0x19b7,3},{0x11287,5}}, {{0x101f,2},{0xcc3,2}}, + {{0x1677,3},{0x1252,3}}, {{0xf70,2},{0xa,2}}, {{0x40f1,7},{0xab88,5}}, {{0x53ef,6},{0x8b2f,6}}, + {{0x1ff7,3},{0x1314f,3}}, {{0x10a3,3},{0xcd3,2}}, {{0xbdb1,5},{0xcc3,2}}, {{0x10c5,4},{0xcc3,3}}, + {{0x18ebc,3},{0x21,1}}, {{0xe5b,3},{0x22a2,5}}, {{0x4c37,5},{0x12939,5}}, {{0x10c5,4},{0xb37c,3}}, + {{0x110c9,5},{0x3208,3}}, {{0x9a9,2},{0xa,2}}, {{0x11b3,11},{0xe69,5}}, {{0x4853,3},{0x29bfe,2}}, + {{0x2675b,4},{0xe0f,1}}, {{0x491e,5},{0xe5e,2}}, {{0xfdf,3},{0xfb0,2}}, {{0x1019,4},{0x27b7,7}}, + {{0xf0d,2},{0x2f94,3}}, {{0x5536,4},{0xed6,2}}, {{0x8601,10},{0xe95,2}}, {{0x712f,4},{0x1303,3}}, + {{0x9489,5},{0xf7a,2}}, {{0xfb0,3},{0xe0a,1}}, {{0xf7a,2},{0xed5,3}}, {{0x7795,6},{0x2f4a,4}}, + {{0xe21,1},{0x2ba5,1}}, {{0x27e0,3},{0x1fbe,3}}, {{0x113c,4},{0x189f,3}}, {{0x4,1},{0x6190,4}}, + {{0x113c,3},{0x14273,7}}, {{0x1969,1},{0x1ebf,3}}, {{0x1fe8,5},{0xb,1}}, {{0x16a7,3},{0xe0b,2}}, + {{0x780a,4},{0xe32,1}}, {{0xe83,5},{0x10b9,2}}, {{0x196c1,6},{0x1150,2}}, {{0xf89,3},{0xe104,3}}, + {{0x10797,7},{0x17cc,4}}, {{0x17be8,5},{0xe67,2}}, {{0xf77,3},{0x2b78,4}}, {{0xb559,5},{0xe5e,2}}, + {{0x12e5,3},{0x2ba5,1}}, {{0x72cf,4},{0x5849,4}}, {{0x29cf,3},{0x149c,3}}, {{0xcba,2},{0xec6,3}}, + {{0xccb,2},{0xccd,1}}, {{0xe11,1},{0x1663,3}}, {{0xe5b,3},{0xfcb,2}}, {{0xbbad,7},{0xf35,2}}, + {{0x15ca,3},{0xed9,2}}, {{0x5,2},{0xf4a,5}}, {{0xef7,3},{0xe0b,4}}, {{0x2de5d,3},{0x57,1}}, + {{0x1367,3},{0x2075,3}}, {{0x7b51,4},{0x2f78,6}}, {{0x2dbf,6},{0xe77,3}}, {{0x20f6,5},{0x7d98,5}}, + {{0x75ce,6},{0xe69,5}}, {{0x1c37,6},{0x1279,6}}, {{0x478f,3},{0x9b99,3}}, {{0x1ee0,3},{0xcd3,1}}, + {{0x7911,3},{0x70a3,5}}, {{0x1967,3},{0xf62,3}}, {{0xb74,1},{0xaf4,1}}, {{0x4765,3},{0xfb0,2}}, + {{0x1252e,4},{0x3bff,3}}, {{0x127f,3},{0x3,1}}, {{0xf7a,2},{0x4f79,3}}, {{0x1327,1},{0x205a1,1}}, + {{0x30eb,9},{0x30f4,4}}, {{0x1d18,5},{0x28f5,5}}, {{0x46af,5},{0xcce,2}}, {{0x2939,4},{0xf82,7}}, + {{0x478f,3},{0x22bfe,5}}, {{0x496c,5},{0x38e2,5}}, {{0x4597,4},{0x59b4,3}}, {{0x1787,6},{0xcc6,2}}, + {{0x1bbf,4},{0xcd3,2}}, {{0x2a47,3},{0xf1d,2}}, {{0x9a6,1},{0x4164,3}}, {{0xe6f,3},{0xee22,5}}, + {{0x1007,7},{0xe2b,2}}, {{0x2858,4},{0x30f7,2}}, {{0xe5b,3},{0xeb4,3}}, {{0x2330,5},{0x534e,5}}, + {{0x2a47,3},{0x237e,5}}, {{0x1927,4},{0xc4df,5}}, {{0x235d,8},{0xf62,3}}, {{0x2075,3},{0xcc3,2}}, + {{0x1a07,3},{0xe32,1}}, {{0x6abc,8},{0xeed,4}}, {{0xf4f,1},{0xf0c,1}}, {{0xf77,3},{0xfdf,4}}, + {{0x2fc1d,3},{0x20579,1}}, {{0x1bec,6},{0xf0f,2}}, {{0x1467,4},{0xcd3,2}}, {{0x100f9,6},{0x34d7,4}}, + {{0x2dec5,3},{0x69,1}}, {{0x5bb4,5},{0xe7d,2}}, {{0x107d9,9},{0xe95,2}}, {{0x12e5,3},{0x296f,3}}, + {{0x4287,5},{0xef3,4}}, {{0x12d4,3},{0x56e7,5}}, {{0x1208,7},{0x16ce,5}}, {{0x1d18,5},{0xf72,5}}, + {{0x11a6,2},{0xf7a,2}}, {{0x1367,3},{0x5,2}}, {{0x33d1,4},{0xe31,2}}, {{0xcd1,2},{0x189f,3}}, + {{0x29cf,3},{0x1054a,5}}, {{0x12e5,3},{0x309c,4}}, {{0x1199a,4},{0x15764,5}}, {{0xcc8,1},{0x162c,3}}, + {{0x647d,8},{0xcc9,2}}, {{0xed1,5},{0x101e,4}}, {{0x10a3,3},{0x12211,4}}, {{0x105f,3},{0x59b4,3}}, + {{0xf16,2},{0x1944,3}}, {{0x1917,4},{0x1f19,5}}, {{0x2de57,3},{0x8d,1}}, {{0x1977,3},{0xeea,3}}, + {{0x48dd,8},{0x1392,3}}, {{0xe6f,3},{0x5,2}}, {{0xe33,1},{0x1150,2}}, {{0xe6b,3},{0x2,1}}, + {{0xedd,1},{0xec7,2}}, {{0x2f71,4},{0x1d06,3}}, {{0xf18,2},{0xf7a,2}}, {{0x7414,3},{0x8494,4}}, + {{0xe2b,2},{0xf1a,2}}, {{0xb289,7},{0xef3,4}}, {{0x4,2},{0x17c0,2}}, {{0x1200c,5},{0x20160,4}}, + {{0xeee,3},{0xe32,1}}, {{0x760f,5},{0x1c669,4}}, {{0xf0a,3},{0xedd,1}}, {{0x1677,4},{0x3170,3}}, + {{0xed6,3},{0xe5e,2}}, {{0xebe,4},{0xf1d,2}}, {{0x2939,4},{0xe8c,6}}, {{0x105f,3},{0x4187,3}}, + {{0x3a7d,6},{0x2f4c,4}}, {{0x61cc,5},{0x2476,4}}, {{0x1d69b,5},{0xfe6,2}}, {{0xf77,3},{0x1722,5}}, + {{0x22e5,4},{0xf16,2}}, {{0xcc8,1},{0xe89,2}}, {{0xf1f,3},{0xec6,3}}, {{0x9a6,1},{0x10d9,2}}, + {{0x7935,5},{0xc5e0,4}}, {{0x1f25,4},{0x1046,3}}, {{0x1877,4},{0x6593,7}}, {{0x4781,3},{0xe99,1}}, + {{0x16b7,5},{0xe92,3}}, {{0x19c7,7},{0xf6e,7}}, {{0xcc6,2},{0xcc3,2}}, {{0xf0a,3},{0x12a6,3}}, + {{0xef7,7},{0xe0a,1}}, {{0xe83,5},{0xf16,2}}, {{0xb559,6},{0xfa5,3}}, {{0x5d54,5},{0x99da,7}}, + {{0xcb8,1},{0xec0,3}}, {{0x12d4,3},{0xe69,6}}, {{0xee69,5},{0x30f7,2}}, {{0xe19,1},{0xf70,2}}, + {{0xe6f,3},{0xfdf,3}}, {{0xc95f,8},{0xcc9,2}}, {{0x10c5,4},{0x2261,3}}, {{0x4853,3},{0xcc3,2}}, + {{0x46af,3},{0xf80,2}}, {{0x215f,8},{0xcc9,2}}, {{0x2e235,4},{0x45,1}}, {{0xeab,2},{0x142d,3}}, + {{0x9b4d,4},{0x6452,4}}, {{0xcce,2},{0x41e9,4}}, {{0x159e0,5},{0x1050,3}}, {{0xd46a,9},{0xe95,2}}, + {{0xaeb1,5},{0x2e2b,3}}, {{0x53ef,7},{0x8b30,4}}, {{0xe7d,2},{0x239e,5}}, {{0x10c5,4},{0xe65,2}}, + {{0xf80,2},{0xf82,7}}, {{0x17678,5},{0xe22,2}}, {{0xc1d1,4},{0x2f2e,3}}, {{0x28d0,4},{0xffc,3}}, + {{0x1757,8},{0x6cb4,3}}, {{0x10e7,11},{0xcc9,2}}, {{0x4767,1},{0xf0c,1}}, {{0xcc1,1},{0xf91,3}}, + {{0xccd,1},{0x39b3,5}}, {{0x4871,2},{0x4,1}}, {{0xccd,1},{0x12a3,3}}, {{0xe83,4},{0xa3b1,4}}, + {{0xccb,2},{0xef5,2}}, {{0x12d4,3},{0xe19,1}}, {{0x100f9,6},{0x1040,3}}, {{0x1a27,4},{0xe78,1}}, + {{0x2b511,2},{0x78b5,2}}, {{0x28b2,10},{0xeed,4}}, {{0x46af,3},{0x2252,3}}, {{0x1677,3},{0x569a,3}}, + {{0x3107,5},{0xe11,1}}, {{0xf0a,3},{0x4bfa,3}}, {{0x12e5,3},{0x2b88,4}}, {{0x1378a,8},{0xf7a,2}}, + {{0xb3f1,3},{0x2,1}}, {{0x1969,1},{0xf0d,2}}, {{0x30c1,8},{0x1663,4}}, {{0xcbd,1},{0xf80,2}}, + {{0x2bd91,5},{0xb,1}}, {{0xe16,1},{0x1132,2}}, {{0x8d2d,5},{0x113f,2}}, {{0xe7f,2},{0x16e3,4}}, + {{0xd1cb,8},{0xec6,3}}, {{0x1081,5},{0xeb5,2}}, {{0x712f,4},{0xcc3,3}}, {{0xd13c,6},{0xe1c,3}}, + {{0xa701,6},{0xef5,2}}, {{0x3d39,5},{0x11d9,3}}, {{0x5f35,8},{0xe95,2}}, {{0x11541,4},{0x6e91,3}}, + {{0x5534,4},{0xcc9,2}}, {{0x41d1,7},{0xe32,1}}, {{0x12bfa,6},{0xe6b,2}}, {{0xe33,1},{0xf0c,1}}, + {{0x11b3,5},{0x1dc3,7}}, {{0x7858,8},{0x7860,5}}, {{0x16a7,3},{0xec6,3}}, {{0xe83,3},{0x15a6f,4}}, + {{0x49a6,3},{0xec6,3}}, {{0xe1f,3},{0x109b,2}}, {{0xcd3,1},{0x1be9,3}}, {{0x1809,3},{0xcce,2}}, + {{0xe80,2},{0x3,1}}, {{0xf1a,2},{0xcc3,2}}, {{0x16a7,3},{0xb02a,4}}, {{0x12d4,3},{0xf1f,3}}, + {{0x19b9,1},{0xcba,3}}, {{0xe1f,3},{0x2236,3}}, {{0xf0a,3},{0x12f13,7}}, {{0x1f875,1},{0x1f875,1}}, + {{0xe86,2},{0xa15d,4}}, {{0x2ba5,1},{0xec3,3}}, {{0x8d,1},{0x314,2}}, {{0x56c7,5},{0xc572,4}}, + {{0xed6,2},{0x5,1}}, {{0xf3bd,6},{0x4920,5}}, {{0x1ccd,5},{0x1d7e,3}}, {{0x111a,3},{0x6d4e,5}}, + {{0x11788,4},{0x22bc,4}}, {{0x45ed,2},{0x19e3,4}}, {{0x17f7,8},{0xe67,8}}, {{0x3521,4},{0xe22,2}}, + {{0x30cf,5},{0xe6b,2}}, {{0xbccd,4},{0x7d98,4}}, {{0xe6f,3},{0x151c,4}}, {{0x1607,5},{0xeee,3}}, + {{0x19b9,1},{0x1a66,1}}, {{0x2df3b,4},{0x512,2}}, {{0x19e7,6},{0xcc3,2}}, {{0xccd,1},{0x6,2}}, + {{0x52f8,6},{0x6a0f,4}}, {{0xe83,3},{0x1030e,5}}, {{0x4765,3},{0xe25,2}}, {{0xa6e9,7},{0xf7a,2}}, + {{0x5715,6},{0xe92,3}}, {{0x156a,3},{0xebc,2}}, {{0x46bd,3},{0xb306,5}}, {{0x1150,2},{0x11dc,3}}, + {{0x1427,6},{0x142d,3}}, {{0xe21,1},{0x15fc,2}}, {{0x98e5,8},{0xfa9,4}}, {{0x11b5,2},{0x6,1}}, + {{0x7a01,5},{0x39a2,4}}, {{0xf89,3},{0xcc7,1}}, {{0xe16,1},{0x12fe,2}}, {{0xe563,5},{0x12b52,4}}, + {{0xd194,8},{0xe11,1}}, {{0xe2b,2},{0x1040,3}}, {{0xf0a,3},{0xd28b,5}}, {{0xcbd,1},{0x9498,5}}, + {{0x478f,3},{0x11cb,3}}, {{0x2de57,3},{0xf,1}}, {{0xe71,1},{0x7000,4}}, {{0xe11,2},{0xe13,3}}, + {{0xef7c,6},{0x34d7,4}}, {{0x5f90,6},{0x156a,3}}, {{0x1e62,4},{0x1a93a,5}}, {{0x1967,3},{0xe8a,2}}, + {{0x12e5,3},{0x2f99b,2}}, {{0x2bb4,2},{0x1025,1}}, {{0xe0b,2},{0xe86,2}}, {{0x29f3,3},{0xec6,3}}, + {{0x1ff7,3},{0x17dd9,3}}, {{0x1917,4},{0x10b8,2}}, {{0x9da1,5},{0xed5,3}}, {{0xa,2},{0x6,1}}, + {{0x19e7,8},{0xebb,3}}, {{0xa6e9,7},{0x2872,4}}, {{0xe09,1},{0xf4a,5}}, {{0xe1f,3},{0xd134,4}}, + {{0x426b,8},{0xe69,5}}, {{0x12e5,5},{0x1461,4}}, {{0x4853,4},{0xcbf,2}}, {{0xd78,4},{0xd7c,2}}, + {{0xcbd,1},{0xf91,3}}, {{0x183b,3},{0xccb,2}}, {{0x4781,3},{0xcd3,1}}, {{0x7b2d,5},{0x9628,5}}, + {{0x20382,2},{0x7416,1}}, {{0xe97,3},{0x240ee,5}}, {{0x1ff7,3},{0xe4e2,5}}, {{0x77f0,5},{0x10458,5}}, + {{0x11d99,5},{0xcbd,1}}, {{0x478f,3},{0xfbb,4}}, {{0xf16,2},{0x6,1}}, {{0xb3b5,5},{0x1ea3,3}}, + {{0xe08,1},{0x1d31a,6}}, {{0x4597,6},{0x31ef,5}}, {{0x1692,2},{0x6,1}}, {{0x98e5,8},{0x505d,4}}, + {{0x5,1},{0x1523,4}}, {{0x205a9,1},{0x2e27d,1}}, {{0xe21,1},{0x237d,2}}, {{0xe11,1},{0x9,1}}, + {{0x2f47,5},{0x23c0,6}}, {{0x6da1,8},{0x4921,4}}, {{0x6cde,4},{0x16ad,3}}, {{0xf59,2},{0xf7a,2}}, + {{0x12d4,3},{0x1dee,2}}, {{0xf4f,1},{0xe16,1}}, {{0xf59,2},{0x111c,2}}, {{0x5,1},{0xfdd,4}}, + {{0x1e5b0,5},{0xcd3,2}}, {{0x19b7,3},{0xfb8,3}}, {{0xcce,2},{0xe67,2}}, {{0x1967,3},{0xe16,1}}, + {{0x2fe1,9},{0x1dc7,5}}, {{0xcb8,1},{0xe22,2}}, {{0x1bfa4,5},{0xe31,2}}, {{0xbb4,2},{0x30375,4}}, + {{0x12e5,3},{0xfe6,2}}, {{0x39b9,8},{0xcce,2}}, {{0xf79,3},{0x1252,5}}, {{0x88d1,7},{0xce8e,4}}, + {{0x1677,3},{0x12a3,3}}, {{0x115e,5},{0x775c,4}}, {{0x1dee,2},{0xe11,1}}, {{0x56ee,6},{0xcd3,2}}, + {{0x24f2,5},{0xe1c,3}}, {{0xacdd,6},{0x1392,3}}, {{0xc16,2},{0xc16,1}}, {{0xce92,8},{0xed6,2}}, + {{0x19f9,2},{0xf1f,3}}, {{0xe5b,3},{0x1b80,3}}, {{0x3d39,6},{0x1510,7}}, {{0xefa,2},{0x14f9,3}}, + {{0x113c,4},{0xf193,4}}, {{0x1677,3},{0x8,1}}, {{0x479d,4},{0x11d9,3}}, {{0xe5b,3},{0xf24,2}}, + {{0x205a1,1},{0x7905,1}}, {{0x1092,7},{0x7bd9,4}}, {{0x2015,3},{0xfcb,2}}, {{0x1967,3},{0x8,2}}, + {{0xcc8,1},{0xcba,2}}, {{0x3559,5},{0x9a4,3}}, {{0x12b2,5},{0x11cb,3}}, {{0x6c83,5},{0xe0a,1}}, + {{0x2a29,5},{0xe5e,2}}, {{0x1677,3},{0x1189,3}}, {{0x1692,2},{0xcd3,1}}, {{0xb74,1},{0x28b3a,1}}, + {{0xbb4,12},{0xbb4,12}}, {{0x2dbf,5},{0x19933,4}}, {{0x10e7,5},{0xf01,4}}, {{0xf65,4},{0xc62a,5}}, + {{0xd0b8,6},{0xf7a,2}}, {{0xcc1,1},{0xf50,3}}, {{0x2de57,3},{0x21,1}}, {{0xcbd,1},{0x88fb,5}}, + {{0x4765,3},{0x492e,3}}, {{0x1155,2},{0xf35,2}}, {{0xfe3,5},{0xfe8,2}}, {{0x1109,5},{0xcc3,2}}, + {{0x14a7,4},{0x2b86,4}}, {{0x16eb2,6},{0x13e4,3}}, {{0x14a7,4},{0x24f7,4}}, {{0xe33,1},{0x2,1}}, + {{0x11541,4},{0x77ea,5}}, {{0xcd3,2},{0xa9a6,7}}, {{0xe08,1},{0xe19,1}}, {{0x5cab,7},{0x13e3,4}}, + {{0xfbf,5},{0x1b6a,6}}, {{0xf11,1},{0xe09,1}}, {{0xe99,1},{0x2,3}}, {{0xcd3,1},{0xe5e,2}}, + {{0xc6f7,4},{0x19fa2,4}}, {{0x61cc,5},{0xf62,3}}, {{0x5724,3},{0xe11,1}}, {{0x1e84a,5},{0x146d,4}}, + {{0x4ee8,4},{0x5342,3}}, {{0x1e9e,8},{0xeaf,3}}, {{0x2d79,4},{0x4415,3}}, {{0x2399,4},{0x18b4,3}}, + {{0xe5b,3},{0xcc3,3}}, {{0xe43a,6},{0x6452,4}}, {{0xfbf,5},{0x28f8,5}}, {{0x1076,3},{0x1523,4}}, + {{0xf4f,1},{0xe19,1}}, {{0x1152b,5},{0x1b607,3}}, {{0x5f90,6},{0xe11,2}}, {{0x393b,5},{0xe80,2}}, + {{0x26b4,7},{0x1b6d,4}}, {{0x713c,5},{0xec6,3}}, {{0xe0a,1},{0x8,1}}, {{0x72cf,4},{0xe7f,2}}, + {{0xcc9,2},{0xec6,3}}, {{0xb619,5},{0x35a3,3}}, {{0xf1d,2},{0x3997,6}}, {{0xf35,3},{0xe11,1}}, + {{0xcc1,1},{0xcba,2}}, {{0x109ff,6},{0x6cff,4}}, {{0x16a7,3},{0x51b8,4}}, {{0x2df3b,5},{0x8d,1}}, + {{0x109b,2},{0x736e,5}}, {{0x1367,3},{0xe1c,3}}, {{0x3107,5},{0xf8d,2}}, {{0xb559,5},{0x1050,3}}, + {{0xe516,5},{0xfa6,3}}, {{0x17030,2},{0x8,1}}, {{0x16318,6},{0x23d2,3}}, {{0xccb,2},{0xf4a,5}}, + {{0xcc6c,5},{0xcbf,2}}, {{0x10c5,4},{0xe0b,4}}, {{0xf77,3},{0xcb7,2}}, {{0x1025,1},{0xfa6,3}}, + {{0x2b84,2},{0xf1a,2}}, {{0xf70,2},{0xf86,3}}, {{0x104a,3},{0xed6,2}}, {{0xe5e7,4},{0x141a,2}}, + {{0x29cf,3},{0xe09,1}}, {{0x26b4,7},{0x1c6d,6}}, {{0x10cb,2},{0xed6,2}}, {{0xe97,4},{0x3,2}}, + {{0x7086,5},{0xcce,2}}, {{0x2de57,3},{0x69,1}}, {{0x16a7,5},{0x43fc,2}}, {{0x1cfa,5},{0xf69b,3}}, + {{0x46af,3},{0x3642,2}}, {{0x12e5,3},{0x569a,3}}, {{0x1019,4},{0x1ebf,3}}, {{0xf48e,6},{0xec6,3}}, + {{0xf11,1},{0xedd,1}}, {{0x1f7f,5},{0x7d1f,3}}, {{0x4853,3},{0x1393,3}}, {{0xe0f,1},{0x24900,2}}, + {{0x10a3,3},{0x28d2,3}}, {{0x1347,4},{0x1347,4}}, {{0xeb5,2},{0xe0d,2}}, {{0xf77,5},{0xd28b,5}}, + {{0xcb7,2},{0x5538,2}}, {{0x45e3,4},{0x45e7,4}}, {{0x4853,3},{0x145b,2}}, {{0x2de57,3},{0x7b,1}}, + {{0xcd48,6},{0xf193,4}}, {{0x1ebc,10},{0xe92,3}}, {{0xd131,4},{0xe80,2}}, {{0x1373,2},{0x14f9,3}}, + {{0xe0eb,5},{0x5863,3}}, {{0x1007,6},{0xeee,3}}, {{0x3eb3,8},{0x964d,4}}, {{0x1170f,7},{0x1fc7,3}}, + {{0x29c0,4},{0xf3a,3}}, {{0x15fb,3},{0xcc3,2}}, {{0xf77,4},{0xf1a,2}}, {{0x5269,6},{0x4132,5}}, + {{0x9489,5},{0xcc9,2}}, {{0xcd2,2},{0xeee,3}}, {{0x27e0,3},{0x5,2}}, {{0x18f9,2},{0x1085,3}}, + {{0x14572,6},{0x2dd7,4}}, {{0x2d79,4},{0x3,1}}, {{0x1007,5},{0x1050,4}}, {{0x1837,5},{0x8,1}}, + {{0x1109,5},{0x7030,6}}, {{0xf0a,4},{0x9a8,2}}, {{0x314,2},{0xd,1}}, {{0xe1f,3},{0x180a,3}}, + {{0x536d,9},{0x1571,4}}, {{0x111a,3},{0xe67,2}}, {{0x5269,6},{0xcc9,2}}, {{0x10c5,4},{0xe0b,2}}, + {{0x1a07,3},{0xe11,2}}, {{0x1827,4},{0x15d1,5}}, {{0x1062,2},{0x1722,5}}, {{0x77f0,5},{0x12a3,3}}, + {{0x57cb,5},{0xe95,2}}, {{0x2df3b,5},{0x7b,1}}, {{0x9a8,1},{0x5,1}}, {{0xe83,5},{0x3cc0,4}}, + {{0xbba1,6},{0x9,1}}, {{0x62dd,4},{0x1b4f,5}}, {{0x2a83,4},{0xf7a,2}}, {{0x4853,3},{0x288b,2}}, + {{0x122d,2},{0xe0d,2}}, {{0x12a3,3},{0x1150,2}}, {{0x32ab,6},{0xf7a,2}}, {{0xe6f,4},{0xfb8,3}}, + {{0x12a1,4},{0x4413,5}}, {{0xe2b,2},{0x1de7,3}}, {{0xe7a,1},{0x19b9,1}}, {{0x1837,5},{0x183c,4}}, + {{0xe1f,3},{0xfb8,3}}, {{0x1569,2},{0xed9,2}}, {{0x4,1},{0x6,1}}, {{0xe09,1},{0xe1c,3}}, + {{0x16bf6,5},{0xcce,2}}, {{0xe97,3},{0xcba,3}}, {{0x125d,6},{0x6,2}}, {{0xf9b,5},{0x23d2,3}}, + {{0x7611,3},{0x1c669,4}}, {{0x2858,5},{0x1c85,3}}, {{0xfa5,2},{0x1231,4}}, {{0x31cb,6},{0x2d11,3}}, + {{0x29cf,3},{0x15fc,2}}, {{0xe7d,2},{0xe5e9,3}}, {{0x3d63,5},{0x5eaf,4}}, {{0x127d6,7},{0xe11,1}}, + {{0xcb8,1},{0x453b,4}}, {{0x1ff7,3},{0xef3,4}}, {{0x12d4,3},{0x14273,7}}, {{0x28d0,4},{0xed5,3}}, + {{0xccb,2},{0xcc1,1}}, {{0x2a47,3},{0x2f41,6}}, {{0x3ff5,6},{0xcc6,2}}, {{0x9fe1,7},{0x4920,5}}, + {{0x78f9,1},{0x307bb,1}}, {{0x28df,5},{0xeb9,3}}, {{0x16a7,3},{0x7e6d,5}}, {{0x205a1,2},{0x205a7,2}}, + {{0xf89,3},{0x101f,2}}, {{0xe2b,2},{0x2844,5}}, {{0x14a7,4},{0x3b73,3}}, {{0x1a07,3},{0x2ba5,1}}, + {{0xcb7,2},{0xe11,1}}, {{0xf1a,2},{0x277e,2}}, {{0x1537,4},{0x2,1}}, {{0xf25d,7},{0xcc9,2}}, + {{0x126a,3},{0x2d7c,3}}, {{0x434b,5},{0x1dc3,7}}, {{0x712f,4},{0x1054,3}}, {{0x1977,3},{0xede,1}}, + {{0x1109,5},{0xdb21,3}}, {{0x21709,6},{0xe95,2}}, {{0x29de,5},{0xfdd,4}}, {{0x6140,3},{0x17c0,2}}, + {{0x1189,3},{0xe5e,2}}, {{0x5538,2},{0xec6,3}}, {{0x955a,4},{0x16e3,4}}, {{0x1bec,5},{0x2094,7}}, + {{0x10a3,3},{0x12f13,7}}, {{0x5f42,7},{0x1773,4}}, {{0xccb,2},{0x9a9,2}}, {{0x2ca1,4},{0xcc9,2}}, + {{0x149c,3},{0xe11,1}}, {{0x12d4,3},{0xe67,2}}, {{0x6d1f,5},{0x5988,3}}, {{0x82dd,6},{0x1783,4}}, + {{0xe0b,2},{0x1150,2}}, {{0x256a,12},{0xf35,3}}, {{0x125d,6},{0x120f,3}}, {{0x794d,6},{0xed6,2}}, + {{0x5992,6},{0xe95,2}}, {{0x28d0,4},{0xb185,6}}, {{0x29cf,3},{0x9408,4}}, {{0xcce,2},{0x138e,2}}, + {{0xe71,1},{0x4b96,5}}, {{0x1577,7},{0x1663,4}}, {{0x16a7,3},{0x2ee9,3}}, {{0xa9a1,9},{0xcc9,2}}, + {{0x2a47,3},{0x19b9,1}}, {{0x479d,4},{0xe60,2}}, {{0x5,1},{0xf62,3}}, {{0x1019,4},{0x2781,5}}, + {{0x2271,3},{0xfe6,2}}, {{0x18f7,4},{0xcbf,2}}, {{0x17d7,8},{0x17df,7}}, {{0x48f7,7},{0xcb6,3}}, + {{0x16a7,3},{0xe89,2}}, {{0x3537,2},{0xf7a,2}}, {{0x4853,5},{0x413e,4}}, {{0x4853,3},{0x2845,4}}, + {{0x7d31,5},{0xf7a,2}}, {{0x133de,5},{0x8b31,4}}, {{0x27e0,3},{0xf0f,2}}, {{0x1177d,6},{0xa,2}}, + {{0x1e80,6},{0x169b,6}}, {{0x122d,2},{0xfb8,3}}, {{0x19b7,3},{0xe19,1}}, {{0x29a2,5},{0x1edf,7}}, + {{0xc16,8},{0xc16,8}}, {{0xe21,1},{0xcc6,2}}, {{0x1787,6},{0xfb8,3}}, {{0x1c82,6},{0xec6,3}}, + {{0xccd,1},{0x3,1}}, {{0xb379,3},{0x1a58,3}}, {{0xda8,6},{0xda8,6}}, {{0xedd,1},{0xf1a,2}}, + {{0xed1,4},{0xe2b,2}}, {{0xc040,2},{0x188a,4}}, {{0x47c7,5},{0xccd,3}}, {{0xb,1},{0x1393,3}}, + {{0x174b,3},{0xe31,2}}, {{0x13960,5},{0xf35,3}}, {{0x12fd,3},{0xcc9,2}}, {{0xb3f1,3},{0x15fc,2}}, + {{0x12c3,4},{0xfd4d,5}}, {{0x7f41,4},{0x11cb,3}}, {{0x111c,2},{0xcc3,2}}, {{0x17678,5},{0xbd26,3}}, + {{0x6,1},{0xcc9,2}}, {{0xe5b,3},{0x14ff,3}}, {{0xebe,4},{0x1064,3}}, {{0x3123,6},{0xd70f,4}}, + {{0x4853,3},{0xcd3,1}}, {{0x29cf,3},{0x29ad6,4}}, {{0x3372,4},{0xed9,2}}, {{0xccd,1},{0x1288,4}}, + {{0x2f71,4},{0xcb53,6}}, {{0xc159,4},{0xb149,7}}, {{0x1f114,5},{0x10d3,3}}, {{0xf69,3},{0x1461,4}}, + {{0x19b7,3},{0x15ca,3}}, {{0x46bd,3},{0x101f,2}}, {{0x1ee0,3},{0x1780,3}}, {{0x10c3b,7},{0x188a,4}}, + {{0xe11,1},{0xf7a,2}}, {{0xb745,6},{0x138e,4}}, {{0x2c54d,4},{0xe08,1}}, {{0x488b,4},{0xe31,2}}, + {{0x2dbf,7},{0x2dc6,7}}, {{0x1877,4},{0x1099,4}}, {{0x2de57,3},{0xd,1}}, {{0xcba,2},{0x6,1}}, + {{0x16a7,3},{0x5f04,3}}, {{0x1f38,1},{0xe11,1}}, {{0x1ff7,3},{0xb37c,3}}, {{0x142a,3},{0xcc9,2}}, + {{0xd48,4},{0x11840,2}}, {{0xb,1},{0xcd3,1}}, {{0x127f,5},{0x159c,4}}, {{0xcc6,2},{0xe22,2}}, + {{0x797d,5},{0x1064,3}}, {{0x8295,5},{0x156a,3}}, {{0xfe0,2},{0x6,1}}, {{0xe67,2},{0xebb,3}}, + {{0xc581,6},{0x153a,3}}, {{0xfe3,4},{0x12a3,3}}, {{0xe5b,3},{0xf86,3}}, {{0x2,1},{0x1025,1}}, + {{0x1e53,7},{0xfdd,4}}, {{0x5269,6},{0x990b,4}}, {{0x72cf,4},{0x155e,3}}, {{0x8b11,7},{0xebb,3}}, + {{0x1766a,2},{0xedd,1}}, {{0xa4b5,9},{0xf7a,2}}, {{0x27e0,4},{0x63ea,4}}, {{0x1a66,1},{0x1089,3}}, + {{0x4538,3},{0x6,1}}, {{0x1b8a,4},{0xe6b,4}}, {{0xcc8,1},{0xcd3,1}}, {{0x111a,3},{0x31f8,3}}, + {{0x1715a,5},{0x9,1}}, {{0xfbf,5},{0xfd6,3}}, {{0x16a7,3},{0x3a3e,7}}, {{0x18ebc,3},{0x69,1}}, + {{0x11ad9,5},{0x1f8a8,4}}, {{0x3a0d,7},{0xe69,5}}, {{0x2280,2},{0xf0f,2}}, {{0xe16,1},{0xccb,2}}, + {{0xe613,5},{0x18d2,5}}, {{0xcc1,2},{0xec6,3}}, {{0x2f47,5},{0xe78,2}}, {{0x760f,5},{0x1c85,3}}, + {{0xe2f,1},{0x4921,4}}, {{0x23d2,3},{0xe86,2}}, {{0xe97,3},{0xe89,2}}, {{0x6,1},{0x78d1,4}}, + {{0x1587,4},{0x9115,5}}, {{0x4615,10},{0x1fc7,3}}, {{0x1166a,7},{0x11671,4}}, {{0x1897,5},{0xe86,2}}, + {{0x12d4,3},{0xcc3,2}}, {{0xe0a,1},{0xf7a,2}}, {{0xf0d,2},{0xe86,2}}, {{0x10e7,5},{0x268d,7}}, + {{0x4ee8,4},{0x162c,3}}, {{0x27e0,3},{0x4e43,4}}, {{0x4853,3},{0x1062,2}}, {{0xc05d,4},{0x29f3,3}}, + {{0xff99,7},{0xec6,3}}, {{0x39d5,5},{0x1215,4}}, {{0x1092,7},{0x2daa,7}}, {{0xc560,6},{0x1a71,3}}, + {{0x3e0e,3},{0xe11,1}}, {{0x247a,9},{0xed6,2}}, {{0x46bd,3},{0x110fb,3}}, {{0x19b7,5},{0xbd26,3}}, + {{0x1047,3},{0xcc9,2}}, {{0xf24,2},{0xed9,2}}, {{0xf65,4},{0x2,2}}, {{0x238fb,6},{0xe95,2}}, + {{0x4,1},{0xfa5,3}}, {{0x1967,3},{0x1bef,2}}, {{0x2213,5},{0x126a,4}}, {{0x1150,2},{0x1be9,3}}, + {{0x4853,3},{0xed9,2}}, {{0x111a,3},{0x453b,4}}, {{0x6c76,5},{0x4,1}}, {{0x10c5,4},{0xcb1b,4}}, + {{0x19b7,3},{0x109b,2}}, {{0x19b7,3},{0x25d3e,5}}, {{0x9a8,1},{0x266f,4}}, {{0xf86,2},{0x138e,2}}, + {{0x3123,6},{0x6d08,4}}, {{0x1019,4},{0x6,2}}, {{0x12bc4,3},{0x15399,2}}, {{0x1367,3},{0xec6,3}}, + {{0x1ebc,5},{0x1edf,7}}, {{0x2de51,3},{0x7b,1}}, {{0x2236,3},{0x2239,4}}, {{0xf77,4},{0xf8f,4}}, + {{0xfe8,2},{0xe6b,4}}, {{0x12e5,4},{0xfb0,3}}, {{0x1cd3,2},{0x6,1}}, {{0x4781,3},{0x15fb,3}}, + {{0xe32,1},{0xe8a,2}}, {{0x29fc,5},{0x2365,7}}, {{0xadf1,5},{0x6b26,4}}, {{0x1109,5},{0x1569,4}}, + {{0x21aa,7},{0xccd,3}}, {{0xcce,2},{0xcc4,2}}, {{0x1711e,4},{0xec6,3}}, {{0x1e08,5},{0x1ac7,3}}, + {{0x4c03,8},{0x2eb7,4}}, {{0x2f01,8},{0x153a,3}}, {{0x2a47,3},{0x1050,4}}, {{0x478f,3},{0x14f9,3}}, + {{0x1897,8},{0x1380,5}}, {{0x385b,9},{0x12be,5}}, {{0x12e5,3},{0x2522,5}}, {{0xf205,4},{0x1b0a6,4}}, + {{0x1c91,6},{0x1265,5}}, {{0x12d4,3},{0x5e4f,3}}, {{0x6644,5},{0x1153,2}}, {{0x2ba5,1},{0x569a,3}}, + {{0xed1,4},{0x60f3,7}}, {{0x125d,6},{0xfa3,6}}, {{0x1747,4},{0x355b,3}}, {{0x1007,5},{0x138e,2}}, + {{0x5117,5},{0xcc6,2}}, {{0x80cd,8},{0x2872,4}}, {{0x10c5,4},{0xccaa,4}}, {{0xe33,1},{0x19b9,1}}, + {{0x2afb6,3},{0x1347,3}}, {{0xe7a,1},{0x1969,1}}, {{0x4853,3},{0x12b8f,3}}, {{0xe16,1},{0x1a66,1}}, + {{0xcb8,1},{0x4e62,4}}, {{0x18e8a,6},{0x10298,3}}, {{0x2b4ee,2},{0x2b4f0,2}}, {{0xe80,2},{0x6,1}}, + {{0x2d95,5},{0x3ed7,6}}, {{0xc1d3,2},{0x2f2e,3}}, {{0xf7a,2},{0x2091,4}}, {{0x196c1,6},{0x2e2c,3}}, + {{0x1e62,6},{0x1131,3}}, {{0xcd3,2},{0xeab,2}}, {{0x8,1},{0x1025,1}}, {{0x1ff7,3},{0x6,1}}, + {{0x67ca,10},{0xe11,1}}, {{0xf65,4},{0xccd,1}}, {{0xef7,3},{0x10cb,2}}, {{0x7414,3},{0x6,2}}, + {{0x149c,3},{0x1f7b,4}}, {{0xfb0,2},{0xcc7,1}}, {{0x584d,7},{0x142d,3}}, {{0x1fd7d,6},{0x142d,3}}, + {{0x2b84,2},{0xccc,2}}, {{0xcc7,1},{0x1692,5}}, {{0x1927,4},{0x142d,3}}, {{0x6171,5},{0xfdf,4}}, + {{0x1ff7,3},{0x4a86,4}}, {{0x6,2},{0xf91,3}}, {{0xd428,8},{0xcc9,2}}, {{0xed6,2},{0x6,1}}, + {{0x11b5,2},{0xcc7,1}}, {{0xcd2,2},{0x3,1}}, {{0xf4f,1},{0x19b9,1}}, {{0x1081,7},{0x1224,6}}, + {{0xe71,1},{0x3080,4}}, {{0x3075,4},{0xe95,2}}, {{0x2e875,3},{0x1,1}}, {{0xef7,3},{0x1cd3,2}}, + {{0x116b7,5},{0xfe6,2}}, {{0x5269,6},{0x8937,6}}, {{0xe6f,3},{0x4a44,5}}, {{0x647d,8},{0x1054,3}}, + {{0x1d63,4},{0x1380,5}}, {{0xf0a,3},{0xccc,2}}, {{0xf0d,2},{0xa,2}}, {{0x1780,3},{0xed6,2}}, + {{0x1007,5},{0x141d4,4}}, {{0xcd3,2},{0xe11,2}}, {{0x27e0,3},{0xe25,2}}, {{0xf65,5},{0x1b6a,6}}, + {{0xd,1},{0x666,2}}, {{0x4516,3},{0xec6,3}}, {{0x3487,6},{0x34d7,4}}, {{0x5534,4},{0x142d,3}}, + {{0x1c91,4},{0x6ca7,3}}, {{0xe83,3},{0x1790,3}}, {{0xf0c,1},{0x2ba5,1}}, {{0x1889,2},{0x2,1}}, + {{0x16b7,5},{0x13e1,5}}, {{0x1024,2},{0xcc3,2}}, {{0x6,2},{0x9adf,5}}, {{0x2588,11},{0xcc9,2}}, + {{0x15760,4},{0x15764,6}}, {{0xe62,3},{0xf02,2}}, {{0xf11,1},{0x5,1}}, {{0x1db45,2},{0xe99,1}}, + {{0x2de57,3},{0x57,1}}, {{0xf11,1},{0x3080,4}}, {{0x2de7b,3},{0x666,2}}, {{0x8b5e,5},{0xe95,2}}, + {{0x1dc0,3},{0xa,2}}, {{0x7ec9,8},{0x1004,3}}, {{0xe138,6},{0x12be,5}}, {{0xeee,3},{0xe0d,2}}, + {{0xefa,3},{0x138e,2}}, {{0xf0a,3},{0x4434,3}}, {{0x1e08,5},{0xe78,1}}, {{0xe97,3},{0xe0b,4}}, + {{0x101f,3},{0xe11,1}}, {{0xcd2,2},{0x18b4,3}}, {{0x4,1},{0xe0b,2}}, {{0x2e2f,6},{0xed6,2}}, + {{0x113c,3},{0x1047,3}}, {{0x5992,6},{0x4e0d,6}}, {{0x70ad,3},{0x16fff,3}}, {{0x9c99,8},{0x189f,3}}, + {{0xcc8,1},{0x6,2}}, {{0x1747,5},{0x4a86,4}}, {{0x433d,4},{0x1111,4}}, {{0x2399,4},{0x193f,3}}, + {{0xaba5,6},{0xfdd,4}}, {{0x1024,2},{0x10d3,3}}, {{0x29c0,3},{0xccd,1}}, {{0x4,1},{0x9a6,1}}, + {{0x1a84,5},{0x6411,4}}, {{0x7303,5},{0x1ab69,4}}, {{0x6ff7,5},{0xcce,2}}, {{0x1747,4},{0x15af,3}}, + {{0x1787,6},{0x1d2f,6}}, {{0xebe,4},{0x1f38,4}}, {{0x2a47,3},{0xe11,1}}, {{0x101f,2},{0xe61,2}}, + {{0xe4c9,6},{0x1c14,5}}, {{0x1007,5},{0x1dc2,5}}, {{0x21a0,5},{0xeee,3}}, {{0x5430,6},{0x5669,3}}, + {{0x2de51,3},{0x8d,1}}, {{0xba39,4},{0xeca,3}}, {{0x2858,5},{0x87a0,5}}, {{0x1967,4},{0x141a,2}}, + {{0xc2d7,7},{0x7997,4}}, {{0x91b9,6},{0x10f2,5}}, {{0x113f,2},{0x3914,3}}, {{0xcc7,1},{0x178a,3}}, + {{0xcc8,1},{0xcc3d,3}}, {{0x4853,3},{0x12a7,3}}, {{0x1a27,10},{0x129a,6}}, {{0x1cfa,5},{0xe69,5}}, + {{0x2a47,3},{0xede,1}}, {{0xf4f,1},{0x1969,1}}, {{0xef7,4},{0x2560,4}}, {{0x2de51,3},{0x69,1}}, + {{0x27c2,6},{0x146d,4}}, {{0x1687,4},{0x181b,3}}, {{0x18ebc,3},{0xe,1}}, {{0x2146,3},{0x6cb4,3}}, + {{0xee9,2},{0x6,1}}, {{0x61cc,8},{0x28f8,5}}, {{0x29cf,3},{0x2f94,3}}, {{0xf65,4},{0x2c81,6}}, + {{0x183f4,6},{0x1c85,3}}, {{0xe11,2},{0x101e,4}}, {{0x105f,3},{0xa,2}}, {{0x10c5,4},{0x1a58,3}}, + {{0x305f,6},{0x1b80,3}}, {{0x4ae5,5},{0x13e1,5}}, {{0x1286c,5},{0x3075,3}}, {{0x9a6,1},{0x13e3,4}}, + {{0x2015,3},{0x2c85,2}}, {{0x6,1},{0xe7f,2}}, {{0x38e7,4},{0x11d9,3}}, {{0x1692,2},{0xe09,1}}, + {{0x9051,7},{0x1bf6,5}}, {{0x4597,5},{0xf03,4}}, {{0x3cf3,11},{0xe0a,1}}, {{0x11d9,3},{0xcce,2}}, + {{0xd22e,8},{0xcc9,2}}, {{0x14ff,3},{0xcc9,2}}, {{0xcbd,1},{0x49a6,3}}, {{0x1369,2},{0x8,1}}, + {{0x1307,2},{0x1307,2}}, {{0x1927,5},{0xcc9,2}}, {{0xb3f1,3},{0x52d8,3}}, {{0xe2f,1},{0xec0,3}}, + {{0x11f25,5},{0x12a3,3}}, {{0x2fd3,10},{0xe6b,4}}, {{0x450b,4},{0x2d11,3}}, {{0x2df3b,5},{0x9f,1}}, + {{0x1b4f,5},{0xfdf,4}}, {{0x6d2c,7},{0xe0a,1}}, {{0xe8a,2},{0x4,1}}, {{0xf89,3},{0xab9f,3}}, + {{0x12e5,3},{0xe21,1}}, {{0x12d4,3},{0xe69,5}}, {{0x18796,5},{0x1025,1}}, {{0xe2f,1},{0x1303,3}}, + {{0x62a9,10},{0xebb,3}}, {{0x1577,4},{0xe71,1}}, {{0x27e0,3},{0xe104,3}}, {{0x7a79,6},{0xe69,5}}, + {{0x7b45,4},{0xf62,3}}, {{0x1e9e,5},{0x1f9f,3}}, {{0x12f6,4},{0xeea,3}}, {{0x478f,3},{0x1059,3}}, + {{0x113c,3},{0xe08b,8}}, {{0x18ebc,3},{0x7b,1}}, {{0x1bbf,4},{0xeaf5,4}}, {{0x11f5c,4},{0x8,4}}, + {{0x28d0,4},{0x14ab,3}}, {{0x116ac,5},{0x8,1}}, {{0x7414,3},{0xeee,3}}, {{0xe1f,3},{0xf1f,3}}, + {{0xcd2,2},{0x9,2}}, {{0x111a,3},{0x155e,3}}, {{0x205a5,2},{0x205a7,2}}, {{0xf11,1},{0x2ba5,1}}, + {{0x1e62,4},{0x386f,4}}, {{0xe97,3},{0x1372,4}}, {{0x3a1b,6},{0xed9,2}}, {{0xed9,2},{0xdcfe,4}}, + {{0x39d5,5},{0xecf8,4}}, {{0x2006,3},{0xeb5,2}}, {{0x6,1},{0x156a,3}}, {{0x8ae1,8},{0x1040,3}}, + {{0x4597,5},{0xccd,1}}, {{0x144e,6},{0x8,1}}, {{0x29cf,3},{0x142d,3}}, {{0xfb0,2},{0x1059,3}}, + {{0x1081,4},{0x4a44,5}}, {{0xf11,1},{0x16ad,3}}, {{0x46af,3},{0xcbe,3}}, {{0x29cf,3},{0xe16,1}}, + {{0xfa50,5},{0xf34,4}}, {{0x3559,4},{0xef5,2}}, {{0x478f,3},{0xe21,1}}, {{0x1019,4},{0x27b7,6}}, + {{0xd,1},{0x302,2}}, {{0x12e5,5},{0x278e,7}}, {{0x121c8,6},{0xf91,3}}, {{0x3fbd,9},{0xe6b,4}}, + {{0x1567,3},{0x2ba52,3}}, {{0xee9,2},{0x277e,2}}, {{0xe1f,3},{0xe22,3}}, {{0x235d,5},{0xefa,6}}, + {{0x4853,3},{0x2e32,3}}, {{0x43bb,7},{0x7b72,3}}, {{0x4137,5},{0x30f6,3}}, {{0x15ca,3},{0xe6c,3}}, + {{0xafe9,8},{0x1059,3}}, {{0x122b8,6},{0x3372,4}}, {{0x1a07,3},{0x138d,5}}, {{0x2948,3},{0x5,1}}, + {{0xcc8,1},{0xcd3,2}}, {{0x1817,4},{0x4516,3}}, {{0xe86,2},{0xccd,1}}, {{0xe8a,2},{0x1e8b,3}}, + {{0x27e0,3},{0x1021a,5}}, {{0xf89,3},{0xcbf,2}}, {{0x1e9e,8},{0x1258,5}}, {{0xcc3,2},{0xe95,2}}, + {{0x48d6,2},{0xe99,1}}, {{0xe0b,2},{0x319a,3}}, {{0xe6f,3},{0x566f,4}}, {{0x6aa2,8},{0xe95,2}}, + {{0x4c37,5},{0x5,1}}, {{0x38e7,5},{0x113f,2}}, {{0xf77,4},{0xe95,2}}, {{0xe5b,3},{0x121c,3}}, + {{0x10ae9,6},{0xcd3,2}}, {{0x2fb7,5},{0xe67,2}}, {{0x9a8,1},{0x22d9,7}}, {{0x29c0,3},{0x24c36,5}}, + {{0xf65,4},{0xe61,3}}, {{0x5,1},{0x1722,5}}, {{0xe5e,2},{0xe22,3}}, {{0x12d4,3},{0xf4f,1}}, + {{0xf89,3},{0x4cc2,3}}, {{0xead,3},{0xcc3,2}}, {{0x105f,8},{0xe0b,4}}, {{0xf70,2},{0xe77,3}}, + {{0xc36,8},{0xc36,8}}, {{0x10ff8,5},{0xe6b,2}}, {{0x1367,3},{0x2f33,6}}, {{0xe80,2},{0xe75,2}}, + {{0xe97,3},{0x6ec3,3}}, {{0x3329,5},{0xfcb,3}}, {{0x29c0,3},{0xe11,1}}, {{0x4765,3},{0xcc3,2}}, + {{0x9af,2},{0x2b0b0,2}}, {{0x105f,3},{0x192cb,5}}, {{0x175ba,6},{0x4665,4}}, {{0x16f7,9},{0x167f,7}}, + {{0x2e67,9},{0xeee,3}}, {{0xe11,2},{0x1ce7,4}}, {{0xefb3,6},{0x4251,3}}, {{0x450b,4},{0x3315,4}}, + {{0x2d87,6},{0x11b5,2}}, {{0xe2f,1},{0xedd,1}}, {{0xe2b,2},{0xcd3,1}}, {{0x5,1},{0xfb0,2}}, + {{0x6cc4,4},{0x6,2}}, {{0x34b1,5},{0x30f7,2}}, {{0x8fd9,5},{0x22fe,5}}, {{0xf77,4},{0xb,1}}, + {{0x10e7,11},{0x10f2,5}}, {{0x8da5,5},{0x1b4f,5}}, {{0x2de51,3},{0xf,1}}, {{0x1290,4},{0x6fad,7}}, + {{0xea6a,5},{0xe13,3}}, {{0x45dd,6},{0x45e3,8}}, {{0xf0a,3},{0x2280,2}}, {{0xede,1},{0x1969,1}}, + {{0xefdf,6},{0x1054,3}}, {{0xe5b,3},{0x26e21,4}}, {{0x3d63,5},{0x2651,7}}, {{0x1025,1},{0xcc9,2}}, + {{0xb74,16},{0xb74,16}}, {{0x712f,4},{0x1089,3}}, {{0xef7,3},{0x30c6,3}}, {{0x628f,6},{0xfa9,4}}, + {{0x8775,6},{0x3abf,4}}, {{0xe78,1},{0xf35,2}}, {{0x18ebc,3},{0x9f,1}}, {{0x80fd,6},{0x1693,4}}, + {{0x1c54d,6},{0xf1a,2}}, {{0xe32,1},{0x8,1}}, {{0xe19,1},{0xede,1}}, {{0x20f6,7},{0x239e,5}}, + {{0x1e8f,11},{0xe0a,1}}, {{0xb8d1,4},{0xe13,3}}, {{0x1a07,3},{0x134d2,5}}, {{0x1a1e6,5},{0xcc9,2}}, + {{0x478f,4},{0x178a,3}}, {{0x74f3,2},{0xedd,1}}, {{0x29cf,3},{0x73d6,2}}, {{0xd0b8,6},{0x8c67,4}}, + {{0x24d63,5},{0xe16,1}}, {{0xee4,4},{0x1089,3}}, {{0x3de1,5},{0xf70,2}}, {{0xe5b,4},{0x6,1}}, + {{0xe99,1},{0x26d1e,4}}, {{0x7086,5},{0x1783,4}}, {{0xf0c,1},{0x11b5,2}}, {{0x1677,3},{0x1153,2}}, + {{0xe0d,2},{0xccc,2}}, {{0xe5b,3},{0x4cbc,5}}, {{0x4773,4},{0x1ebf,3}}, {{0xf15,1},{0xe0f,1}}, + {{0x7416,1},{0x2,1}}, {{0xccb,2},{0xf1d,2}}, {{0xede,1},{0x19b9,1}}, {{0xcc7,1},{0x11a6,2}}, + {{0x164d0,7},{0x15e9,3}}, {{0x111a,3},{0x1a63,3}}, {{0x1a6c0,7},{0xe95,2}}, {{0xe78,1},{0xcd3,1}}, + {{0x1bec,10},{0xf35,3}}, {{0xedd,1},{0x1969,1}}, {{0x9a6,1},{0xf7a,2}}, {{0xeab,2},{0x1059,3}}, + {{0xeb9,3},{0x10b8,2}}, {{0xf0a,3},{0x2129,4}}, {{0xcd2,2},{0xf91,3}}, {{0xb958,5},{0x1c2a,4}}, + {{0x2ba5,1},{0xcbe,3}}, {{0x12e5,3},{0xcc3d,3}}, {{0x2f9b,4},{0x44b3,4}}, {{0x2de51,3},{0xe,1}}, + {{0x1a07,3},{0x2f756,2}}, {{0xed6,2},{0x1b9d,4}}, {{0xefa,3},{0x1ac7,3}}, {{0x7392,5},{0x112e9,6}}, + {{0x70ad,3},{0xfb0,2}}, {{0x1109,5},{0x145b,2}}, {{0x6def,8},{0xeed,4}}, {{0x4853,3},{0xeea,3}}, + {{0xe7a,1},{0xedd,1}}, {{0x62f7,7},{0xe67,2}}, {{0x16a7,3},{0x35a3,3}}, {{0x1062,2},{0x1702,4}}, + {{0x314d,6},{0xf16,2}}, {{0xe32,1},{0x10cb,3}}, {{0x12b2,5},{0x18ec,5}}, {{0x10c5,4},{0x12a3,3}}, + {{0xf0a,3},{0xe7f,2}}, {{0xcb8,1},{0x1601,3}}, {{0xf77,4},{0x1050,3}}, {{0x1830e,5},{0x9a6,1}}, + {{0x1d950,6},{0xe22,3}}, {{0xe0b,2},{0xe11,1}}, {{0x27e0,4},{0xf70,2}}, {{0x1e9e,5},{0x1262,3}}, + {{0xe32,1},{0x113f,2}}, {{0xeba9,6},{0xe95,2}}, {{0x4853,3},{0x35a3,3}}, {{0xe37,4},{0x18efa,2}}, + {{0x10c5,4},{0xe0a,1}}, {{0x1081,7},{0x2d72,7}}, {{0xe6f,3},{0xe92,3}}, {{0x14a7,4},{0x4fa2,5}}, + {{0x1bec,5},{0x4b61,6}}, {{0x2afb6,3},{0x302,2}}, {{0xe58f,7},{0x2467,4}}, {{0x22a3,3},{0x4,1}}, + {{0xcc6,2},{0xa,2}}, {{0x1c085,6},{0xe11,1}}, {{0xef7,3},{0xe7d,2}}, {{0x9b5,2},{0x2b0d0,2}}, + {{0x80fd,6},{0x2ef8,3}}, {{0xccd,1},{0x6,1}}, {{0x24e3,5},{0x24e8,4}}, {{0x1977,3},{0xf15,1}}, + {{0x1cfa,5},{0x8666,2}}, {{0xead,3},{0xdd0a,3}}, {{0x1756a,5},{0x1702,4}}, {{0xed1,5},{0x188c,3}}, + {{0x2e870,3},{0x20599,1}}, {{0x7602,4},{0xcc8,1}}, {{0x27ef,4},{0xfe0,2}}, {{0xe83,5},{0x77bf,5}}, + {{0xcc1,1},{0xf70,2}}, {{0xebe,3},{0x23e99,2}}, {{0x1ff7,3},{0x125fb,5}}, {{0x236c,4},{0x1b8b,7}}, + {{0x2f71,7},{0xe95,2}}, {{0x205a1,1},{0x28b3a,1}}, {{0x11515,5},{0xf63,2}}, {{0xf0a,3},{0xcd56,8}}, + {{0xf77,3},{0x6176,4}}, {{0xe83,3},{0x142a,3}}, {{0x138fc,7},{0xec6,3}}, {{0x1a66,1},{0x5342,3}}, + {{0xc76,8},{0xc76,8}}, {{0x19e1,3},{0xe86,2}}, {{0x46bd,3},{0x2c21,4}}, {{0x10a3,3},{0x840c,5}}, + {{0x2d11,3},{0x4,1}}, {{0x10c5,4},{0xe69,6}}, {{0x433d,4},{0x2c15,3}}, {{0x44b7,7},{0x431c,5}}, + {{0xe61,3},{0xf7a,2}}, {{0x2948,4},{0x1af1,11}}, {{0x11cff,7},{0xfc7,3}}, {{0x42db,6},{0xf86,3}}, + {{0xfb0,3},{0xcc9,2}}, {{0x127f,4},{0x1944,3}}, {{0xeb4,3},{0xeb7,7}}, {{0x18764,5},{0xf62,3}}, + {{0x125d,6},{0x2d11,3}}, {{0x10d64,7},{0x10d3,3}}, {{0x23b63,5},{0xcc9,2}}, {{0x4853,3},{0x6,1}}, + {{0x51ac,4},{0xf62,3}}, {{0x1d18,5},{0x1244,7}}, {{0x2015,3},{0xbfca,3}}, {{0xb199,5},{0xccd,4}}, + {{0x1c91,4},{0x1791,6}}, {{0x4597,4},{0x990b,4}}, {{0xcc6,2},{0xcc9,2}}, {{0x591d,7},{0xe1c,3}}, + {{0x1677,3},{0x2d1f,6}}, {{0x1467,4},{0x2e29,3}}, {{0xf0d,2},{0x10f5,3}}, {{0x1290,4},{0xe11,1}}, + {{0x2b84,2},{0xe92,3}}, {{0x27ff9,6},{0xe11,1}}, {{0x305f,6},{0x3065,7}}, {{0x1019,4},{0x12c63,5}}, + {{0x146ee,5},{0xfb8,3}}, {{0x58b5,6},{0xe11,1}}, {{0x5a21,7},{0x10f5,3}}, {{0xe09,1},{0xcd3,1}}, + {{0x4295,5},{0x1189,3}}, {{0x8ae1,8},{0x2872,4}}, {{0x1702e,4},{0x8428,3}}, {{0x2c3b,5},{0x1be9,3}}, + {{0x27e0,3},{0x20fbd,4}}, {{0x385b,9},{0xeed,4}}, {{0xebe,4},{0x10d9,2}}, {{0x3ad1,8},{0xe69,6}}, + {{0x1627,11},{0x153a,3}}, {{0x1467,4},{0x7955,4}}, {{0x3479,8},{0x1004,3}}, {{0x21,1},{0x666,2}}, + {{0x168f,3},{0x1692,2}}, {{0xb379,3},{0x2,1}}, {{0xe97,3},{0x45ee,3}}, {{0x4853,3},{0x28d2,3}}, + {{0xaebd,5},{0x1cfc,3}}, {{0x1c37,6},{0xe67,2}}, {{0x15e9,3},{0xb,1}}, {{0x110cb,3},{0x59b4,3}}, + {{0xe5b,3},{0x1d06,3}}, {{0x5e58,6},{0x1a9a,4}}, {{0xcc1,1},{0xe7f,2}}, {{0xf02,2},{0xcc9,2}}, + {{0xeb5,2},{0x66c2,3}}, {{0xee9,2},{0xe0a,1}}, {{0x359f,9},{0xef3,4}}, {{0x158f,3},{0xe80,2}}, + {{0x125d,5},{0xe67,2}}, {{0x57be,5},{0xe1c,3}}, {{0x17acb,2},{0x442d,1}}, {{0x4952,6},{0xe7f,2}}, + {{0x3521,4},{0xe8a,2}}, {{0x2dbf,5},{0x9a8,1}}, {{0x473b,5},{0x142a,3}}, {{0xbb35,5},{0xed5,3}}, + {{0x1d2d8,8},{0xe11,1}}, {{0xe86,2},{0xe22,2}}, {{0x4f29,5},{0x10b7,2}}, {{0x27e0,5},{0xcb8,1}}, + {{0x11b5,2},{0xf62,3}}, {{0x2687,8},{0xf91,3}}, {{0x9a8,1},{0xf0d,2}}, {{0x205a5,1},{0x205a0,2}}, + {{0x29de,5},{0xed9,2}}, {{0xc954,5},{0xccd,1}}, {{0xa299,9},{0xcc9,2}}, {{0xe6f,3},{0x227f,3}}, + {{0x16a7,3},{0x22b16,5}}, {{0xf15,1},{0xcc3,2}}, {{0x24ddb,5},{0xfacb,3}}, {{0x7414,3},{0x123e,3}}, + {{0x18a70,6},{0xccb,2}}, {{0x1ce97,7},{0xfb0,2}}, {{0x2f225,4},{0xe11,1}}, {{0x4765,3},{0x5538,2}}, + {{0x127f,3},{0x156a,3}}, {{0x7414,3},{0x27c44,4}}, {{0xccd,1},{0xe0a,1}}, {{0x3019,9},{0xeed,4}}, + {{0xfbf,5},{0x15797,5}}, {{0x40d8,3},{0xf86,2}}, {{0x2f71,4},{0x3315,4}}, {{0xf16,2},{0xe67,2}}, + {{0x1a07,3},{0x9,1}}, {{0x1208,4},{0x286d,3}}, {{0xa215,5},{0xc6bc,4}}, {{0x225e,6},{0xec6,3}}, + {{0x66c6,5},{0xf86,3}}, {{0x22103,6},{0xf7a,2}}, {{0x105f,3},{0xe2b,2}}, {{0x9,1},{0xcc9,2}}, + {{0x4853,3},{0xfe6,2}}, {{0x127f,4},{0xe11,1}}, {{0xb559,5},{0x1153,2}}, {{0x10e7,5},{0x4b2e,5}}, + {{0xfa5,2},{0x11b5,2}}, {{0x11541,4},{0xcc6,2}}, {{0x1447,7},{0x249f,3}}, {{0x9a6,1},{0xcc3,2}}, + {{0x1230,3},{0xcd4,2}}, {{0x9af,2},{0x2e2b1,2}}, {{0x4c10,8},{0xe0a,1}}, {{0x1e9e,4},{0x1692,2}}, + {{0x17ca6,5},{0xe5e,2}}, {{0x1ff7,3},{0x43fd,4}}, {{0xe6f,3},{0x1153,2}}, {{0x1025,1},{0xed6,2}}, + {{0x5,1},{0x3687,5}}, {{0xf77,9},{0xf7a,2}}, {{0x17c7,10},{0xe69,5}}, {{0x4853,3},{0xfa9,4}}, + {{0x1ff7,3},{0xd134,4}}, {{0x20f6,6},{0x1059,3}}, {{0x111a,3},{0xcc7,1}}, {{0x183f4,6},{0xe11,2}}, + {{0x9af,2},{0xe41,2}}, {{0xed1,5},{0x9a4,3}}, {{0x255b,6},{0x2c16,5}}, {{0x3a0d,7},{0xed6,2}}, + {{0x255b,6},{0xcd3,2}}, {{0x29c0,3},{0x1692,2}}, {{0x331f,3},{0xf20,2}}, {{0x1ca0,5},{0x2f92,5}}, + {{0xccd,1},{0xcc9,2}}, {{0x1567,6},{0xe80,2}}, {{0xe99,1},{0xe8a,2}}, {{0xcc1,1},{0xefa,4}}, + {{0x486f,4},{0x9,1}}, {{0xc36,2},{0x2b07c,2}}, {{0x18ebc,3},{0x8d,1}}, {{0x46af,3},{0xe16,1}}, + {{0xcc7,1},{0x9a6,1}}, {{0x1ee71,5},{0xcd3,2}}, {{0x11b5,2},{0xeee,5}}, {{0x12e5,3},{0x24bc5,2}}, + {{0x1bec,7},{0x1523,4}}, {{0x92c1,7},{0xebb,3}}, {{0x1fca,10},{0x1ce6,5}}, {{0xedd,1},{0x5,1}}, + {{0xd70f,4},{0xe92,3}}, {{0x1847,5},{0x51c8,5}}, {{0x29fc,5},{0x93e6,4}}, {{0x5,1},{0xe69,6}}, + {{0x42bf,9},{0xe92,3}}, {{0xe25,2},{0xe0a,1}}, {{0x29dd1,2},{0xe99,1}}, {{0xf0f,2},{0x1773,4}}, + {{0xe08,1},{0x2ba5,1}}, {{0x399d,9},{0xcc5,2}}, {{0x1e64,3},{0x1b4f,5}}, {{0x1567,3},{0x21cbc,4}}, + {{0xa9a6,4},{0x2,1}}, {{0x225e,6},{0xcc9,2}}, {{0xe5b,3},{0x4c16,3}}, {{0x3521,4},{0x2236,3}}, + {{0x9441,5},{0xe67,2}}, {{0x112b,5},{0x1050,3}}, {{0x1467,4},{0xee9,2}}, {{0x1290,4},{0x1f9f,3}}, + {{0xe86,2},{0x6,1}}, {{0x1607,10},{0xe92,3}}, {{0x2df3b,5},{0xe,1}}, {{0x10a5,2},{0x44a5,2}}, + {{0x46af,3},{0x2d8d,3}}, {{0xcc1,1},{0xfb8,3}}, {{0x2de51,3},{0xd,1}}, {{0x8559,9},{0xcc9,2}}, + {{0x797d,6},{0x70a6,3}}, {{0x17966,5},{0x1796b,4}}, {{0x1d9d7,6},{0x2f2e,3}}, {{0xf15,1},{0x1150,2}}, + {{0x6d1f,8},{0x158f,3}}, {{0xd5d5,6},{0xed6,2}}, {{0x1677,3},{0x7921,3}}, {{0x17f9e,4},{0xccc,2}}, + {{0xd131,4},{0x3075,3}}, {{0x11b3,11},{0xcc9,2}}, {{0x6cde,4},{0x44ad,3}}, {{0xcf37,6},{0xf7a,2}}, + {{0x46bd,3},{0x5538,2}}, {{0xef7,3},{0x6411,4}}, {{0x478f,3},{0x5ead,5}}, {{0x112d,4},{0xe2b,2}}, + {{0x11a6,2},{0xcc3,2}}, {{0x10e7,5},{0x1d7d,3}}, {{0xe2b,2},{0xcc6,2}}, {{0x2371,3},{0x181b,3}}, + {{0x662a,6},{0x127c,3}}, {{0xcbf,2},{0xcd3,1}}, {{0x478f,3},{0x5e94,5}}, {{0x2f71,4},{0x2f2e,3}}, + {{0x16a7,3},{0xd086,3}}, {{0x2de4b,3},{0x69,1}}, {{0x3185,7},{0x3abf,4}}, {{0x1ff7,3},{0xf80,2}}, + {{0x13424,7},{0xe11,1}}, {{0x2777,6},{0xe0d,2}}, {{0x1e08,5},{0x1ebe,3}}, {{0x1bec,5},{0x1f9f,3}}, + {{0x113c,3},{0xe67,2}}, {{0x5d58,3},{0x3e0e,3}}, {{0xe3d,4},{0x18ed6,2}}, {{0xe7a,1},{0xf8f,4}}, + {{0x105f,3},{0x3933,4}}, {{0x2c59,4},{0xb,1}}, {{0x32ab,6},{0xdc6e,4}}, {{0x3115,8},{0xe69,5}}, + {{0x52f8,6},{0x530b,5}}, {{0x12ed4,7},{0xe11,1}}, {{0x27e0,3},{0x2f94,3}}, {{0x1747,4},{0x1cee,4}}, + {{0x29cf,3},{0x1303,3}}, {{0xccd,4},{0xcc9,2}}, {{0x1367,3},{0xf0f,2}}, {{0x6c76,5},{0xed5,3}}, + {{0x4ee8,4},{0x569b,5}}, {{0x5cab,7},{0x27dc,4}}, {{0x7416,1},{0x7a37,2}}, {{0xe89,3},{0xcd2,2}}, + {{0x478f,3},{0x5342,3}}, {{0xfdf,3},{0xec6,3}}, {{0xfb0,3},{0xec6,3}}, {{0xe1f,3},{0xe7f,2}}, + {{0x1290,4},{0x1f38,1}}, {{0x2de51,3},{0x57,1}}, {{0x2280,2},{0xed9,2}}, {{0x1e08,6},{0xf59,2}}, + {{0x1d0f,3},{0x10cc,2}}, {{0xcc3,2},{0xe67,2}}, {{0x16a7,3},{0xfcb,2}}, {{0x8cf1,6},{0xe11,1}}, + {{0xf18,2},{0x6,1}}, {{0xcffd,8},{0x1be9,3}}, {{0x9219,5},{0x1c2a,4}}, {{0x10cb,2},{0xe11,1}}, + {{0x11b73,5},{0x1231,4}}, {{0xedd,1},{0x1050,4}}, {{0xdd65,8},{0xf23,3}}, {{0x9a4,3},{0xf1a,2}}, + {{0x16bc4,6},{0xe78,2}}, {{0xe97,3},{0x8666,2}}, {{0x113c,3},{0x1393,3}}, {{0xb745,5},{0xe78,1}}, + {{0x1bbf,4},{0xe89,2}}, {{0x2006,3},{0x121c,3}}, {{0xcc1,1},{0x6,2}}, {{0x7b51,4},{0x29f7,3}}, + {{0x1189,3},{0xe0d,2}}, {{0xe2b,2},{0x331f,4}}, {{0x120c,3},{0xcce,2}}, {{0x1099,4},{0xef3,4}}, + {{0x117eb,5},{0x22968,3}}, {{0x1777,5},{0x365c,7}}, {{0x1677,3},{0xcd3,3}}, {{0xeee,3},{0xed6,2}}, + {{0x4765,3},{0x3930,7}}, {{0xec43,7},{0xe95,2}}, {{0xae99,5},{0xe65,2}}, {{0xf7a,2},{0xe0a,1}}, + {{0x1487,4},{0xeb5,2}}, {{0x488b,5},{0xcc3,2}}, {{0x5992,6},{0x5998,7}}, {{0xe3d,4},{0x78a3,2}}, + {{0x2399,4},{0x6b44,4}}, {{0x391f,7},{0xebb,3}}, {{0x2b46,4},{0x202ac,5}}, {{0xf77,3},{0xe25,2}}, + {{0xcb8,1},{0x3356,4}}, {{0x11a6,2},{0xec6,3}}, {{0x45f1,4},{0x45f5,4}}, {{0xcbd,1},{0x73d6,2}}, + {{0xe6f,3},{0x1515f,7}}, {{0xf11,1},{0xe16,1}}, {{0x104a0,8},{0xec6,3}}, {{0x9a8,1},{0x168b,4}}, + {{0x173d0,5},{0x2d11,3}}, {{0x1857,4},{0x3170,3}}, {{0x1790,3},{0xe6b,4}}, {{0x70ad,3},{0x10ae9,8}}, + {{0xe83,3},{0x1523,4}}, {{0xf0a,3},{0x1b6d,4}}, {{0x1859,4},{0xe0a,1}}, {{0x16976,6},{0x7a39,4}}, + {{0x2588,11},{0xe6b,4}}, {{0x9471,7},{0x103e,5}}, {{0xed1,4},{0xeac,2}}, {{0x11d9,3},{0xebc,2}}, + {{0x4,1},{0xfb8,3}}, {{0x27e0,3},{0xe0b,2}}, {{0x683f,9},{0xed6,2}}, {{0x4aef,3},{0xed5,3}}, + {{0x1c085,6},{0xa,2}}, {{0x1231c,6},{0x58ff,4}}, {{0xadcd,6},{0xe0d,2}}, {{0xf0a,3},{0x101f,2}}, + {{0x27e0,5},{0xfb0,3}}, {{0x1967,3},{0x2ba5,1}}, {{0x2bd5,7},{0xe22,2}}, {{0x3639,11},{0xe11,1}}, + {{0x1a07,3},{0xe0d,2}}, {{0x27e0,3},{0x125f1,5}}, {{0x1c0f,3},{0xf91,3}}, {{0x2984,5},{0x10db,7}}, + {{0xcd3,2},{0xe31,2}}, {{0x17e7,6},{0xa9b3,6}}, {{0x1dcb4,2},{0xedd,1}}, {{0x11d5,5},{0x1418f,5}}, + {{0x17e18,6},{0x453e,3}}, {{0x18912,8},{0xf35,2}}, {{0x9a6,1},{0xe11,1}}, {{0xec3,3},{0x1523,4}}, + {{0xfbf,5},{0xebb,3}}, {{0xb74,2},{0x2e269,2}}, {{0x1cfa,5},{0x38e2,5}}, {{0x1ebc,5},{0x2c30,4}}, + {{0x4845,8},{0x3555,4}}, {{0x1413a,6},{0xe6b,4}}, {{0xebe,4},{0xf03,2}}, {{0xcbd,1},{0xcba,2}}, + {{0x125d,8},{0x2,1}}, {{0x1bbf,4},{0x71b8,6}}, {{0xa10d,8},{0xcc9,2}}, {{0x16b7,11},{0xeed,4}}, + {{0x10cb,2},{0xa,2}}, {{0x12e5,3},{0xe89,2}}, {{0x1b4e2,6},{0xf91,3}}, {{0x712f,4},{0xe69,5}}, + {{0xe99,1},{0xedd,1}}, {{0x46af,3},{0xec0,3}}, {{0x1967,3},{0xfcb,2}}, {{0xe2b,2},{0x1be9,3}}, + {{0x62c3,7},{0x538f,5}}, {{0xbb4,4},{0x2b0dc,2}}, {{0x46af,3},{0xe0a,1}}, {{0xf89,3},{0x4538,3}}, + {{0xe83,5},{0x2f41,5}}, {{0x433d,4},{0xf7a,2}}, {{0x48d3,2},{0xedd,1}}, {{0xf7a,2},{0xe86,2}}, + {{0x4765,3},{0xf12,3}}, {{0xacb9,5},{0x153a,3}}, {{0xcc8,1},{0x12a9,3}}, {{0xee4,4},{0xe650,5}}, + {{0x2a56,4},{0xee8,9}}, {{0x2a29,5},{0x36ca,9}}, {{0xcd3,1},{0x11d9,3}}, {{0x29cf,3},{0x11a6,2}}, + {{0x4853,3},{0xedd,1}}, {{0x624e,6},{0x2477,3}}, {{0xe86,2},{0xe24,3}}, {{0xef7,3},{0x4183,4}}, + {{0x1d18,8},{0x129a,6}}, {{0x3a45,6},{0xf91,3}}, {{0xd131,4},{0x1c2a,4}}, {{0x9ca5,6},{0x9cab,5}}, + {{0x2a83,4},{0x1463,4}}, {{0x1150,2},{0xef5,2}}, {{0x13f7,11},{0xe69,5}}, {{0x103b9,7},{0x126a,4}}, + {{0x4767,1},{0xed6,2}}, {{0xaf65,9},{0xec6,3}}, {{0xe19,1},{0x122e,2}}, {{0x712f,4},{0xe13,3}}, + {{0x9af,16},{0x9af,16}}, {{0x7414,3},{0x12a6,3}}, {{0x24f2,5},{0x1783,4}}, {{0x14a7,4},{0xe22,2}}, + {{0xe97,3},{0xa,2}}, {{0x12f6,4},{0x1d7d,3}}, {{0x1967,3},{0x4767,1}}, {{0x18ce6,5},{0x2129,4}}, + {{0x1bda3,6},{0xec6,3}}, {{0x10658,5},{0x568e,5}}, {{0xcc8,1},{0xb,1}}, {{0x7414,3},{0xf1a,2}}, + {{0x6c1b,7},{0x305a,5}}, {{0xf77,3},{0x1177,7}}, {{0xef7,3},{0x142a,3}}, {{0xd147,5},{0x113f,2}}, + {{0x3e35,9},{0xe95,2}}, {{0xe6f,3},{0x122d,2}}, {{0xec6f,7},{0x127c,3}}, {{0xcc7,1},{0xe67,2}}, + {{0x1687,8},{0xe11,1}}, {{0x29c0,3},{0x10b8,2}}, {{0xcd3,1},{0xe92,3}}, {{0x16d7,6},{0x1d2f,7}}, + {{0x8415,5},{0x1791,6}}, {{0x6bc0,10},{0xec6,3}}, {{0xf70,2},{0x8,1}}, {{0x5c02,8},{0x4116,5}}, + {{0x1607,5},{0x6411,4}}, {{0x3a0d,7},{0xcc9,2}}, {{0x12c3,4},{0xf1d,2}}, {{0x9a6,1},{0xcc9,2}}, + {{0x27e0,3},{0x12a7,3}}, {{0x166ec,9},{0xe11,1}}, {{0x4765,3},{0x6,1}}, {{0xe0f,1},{0xe19,1}}, + {{0x1367,3},{0x2467,4}}, {{0x11b5,2},{0xe13,3}}, {{0xe7d,2},{0xf35,3}}, {{0x1c91,4},{0xcc9,2}}, + {{0x10f2,5},{0xe95,2}}, {{0xb27d,9},{0xf7a,2}}, {{0x1977,3},{0xb162,3}}, {{0xe0b,2},{0x1150,3}}, + {{0x1847,5},{0xe133,5}}, {{0xe86,2},{0x9a6,1}}, {{0xeab,2},{0x22b2,3}}, {{0xf89,3},{0x4aee,3}}, + {{0x3c91,7},{0x2b79,4}}, {{0xe0a,1},{0x10d3,3}}, {{0xe08,1},{0x5,1}}, {{0x2de4b,3},{0x21,1}}, + {{0x10b4,7},{0xf86,3}}, {{0x162c,3},{0xec6,3}}, {{0x16d7,6},{0xec6,4}}, {{0xf4f,1},{0xe21,1}}, + {{0xf77,4},{0x143c,4}}, {{0xaaf,2},{0x189b,4}}, {{0x7f41,4},{0x11b5,2}}, {{0xcc8,1},{0xe60,2}}, + {{0x9a6,1},{0x3e54,3}}, {{0x442b,3},{0x175a9,3}}, {{0xe6f,3},{0xed9,2}}, {{0x115e,7},{0x101f,3}}, + {{0x2a47,3},{0x18f95,2}}, {{0x12e5,3},{0xf0c,1}}, {{0x1153,3},{0xe11,1}}, {{0xa79d,8},{0x1ac7,3}}, + {{0x1f34,8},{0xe77,3}}, {{0xe83,5},{0xe32,1}}, {{0x45cf,6},{0x1cd3,2}}, {{0xcbd,1},{0xcbf,2}}, + {{0x15a6c,7},{0xcba,3}}, {{0x8,1},{0xeb5,2}}, {{0xcd3,2},{0xf4a,5}}, {{0x2d79,4},{0x1283e,6}}, + {{0x12e5,3},{0x204e0,2}}, {{0x2dbf,6},{0x6176,4}}, {{0xecb,2},{0x113f,2}}, {{0x4f29,6},{0x10ba,6}}, + {{0xf4f,1},{0xe6c,3}}, {{0x23c4b,3},{0x1a14a,3}}, {{0xcd3,3},{0x13dc,5}}, {{0xf0a,3},{0xf15,1}}, + {{0x1ffa,3},{0x8,1}}, {{0xa,2},{0x1131,3}}, {{0xf1c3,5},{0xe66,3}}, {{0xcc8,1},{0x2269,4}}, + {{0xf15,1},{0xcd3,2}}, {{0xe97,3},{0x8,2}}, {{0xf9b,5},{0xeee,3}}, {{0x19e7,6},{0xe22,3}}, + {{0x5992,6},{0x61ac,6}}, {{0x41df,7},{0xe11,1}}, {{0x168f,2},{0x77b3,4}}, {{0x6,2},{0xf1a,2}}, + {{0xf16,2},{0xe71,1}}, {{0x478f,3},{0x8fa3,6}}, {{0xe65,2},{0x159c,4}}, {{0x29c0,3},{0xcd4,2}}, + {{0xe0d,2},{0x9a8,2}}, {{0x30c1,8},{0x1b4f,5}}, {{0xc14,3},{0xcd6,1}}, {{0x1967,3},{0xf91,3}}, + {{0x79c5,4},{0x5989,2}}, {{0xb27d,9},{0xcc9,2}}, {{0x7414,3},{0x18d3b,5}}, {{0xc437,5},{0xe7f,2}}, + {{0x491e,7},{0xfb0,2}}, {{0x111a,3},{0x910c,5}}, {{0x1d65,3},{0xe11,1}}, {{0x7392,5},{0x10018,5}}, + {{0x8cfd,5},{0x348b,5}}, {{0x28fd,6},{0x7d99,4}}, {{0xe83,3},{0x17df,7}}, {{0x1f38,1},{0xc563,2}}, + {{0x4199,5},{0xcc7,1}}, {{0x12d4,3},{0x2f1c5,2}}, {{0x1cf0c,6},{0xec6,3}}, {{0x1be9f,6},{0xed6,2}}, + {{0xf1f,3},{0xcc9,2}}, {{0x1967,3},{0xe0a,1}}, {{0x74e4,5},{0x1815b,5}}, {{0x19f9,2},{0x181b,3}}, + {{0x1f330,6},{0x1131,3}}, {{0x328f,9},{0xec6,3}}, {{0x1912a,6},{0x2d11,3}}, {{0x1f38,1},{0xf1a,2}}, + {{0xe0f,2},{0xed5,3}}, {{0x1ff7,3},{0xcd3,2}}, {{0x3b4f,5},{0x1523,4}}, {{0x113c,5},{0xe6b,3}}, + {{0x9a8,1},{0x2d11,3}}, {{0xfe7,2},{0xf7a,2}}, {{0x2ae20,5},{0x6,1}}, {{0x417d,6},{0x16620,4}}, + {{0x1f87f,5},{0x2bae,2}}, {{0x9a8,1},{0xe11,1}}, {{0x29cf,3},{0xb958,9}}, {{0xe61,3},{0xcc7,1}}, + {{0xcd3,2},{0x286d,3}}, {{0x15fe4,7},{0xec6,3}}, {{0xf0a,3},{0x168b,4}}, {{0x2df3b,4},{0x5bc,2}}, + {{0x2de4b,3},{0xe,1}}, {{0x2,1},{0x120b,4}}, {{0x1025,1},{0xec6,3}}, {{0x6b3e,7},{0xa,2}}, + {{0x1557,4},{0x4ef1,4}}, {{0xf77,3},{0x17dd9,3}}, {{0xea6a,5},{0xccaa,4}}, {{0x7351,4},{0x1f38,4}}, + {{0xf65,3},{0xc54d,5}}, {{0xcc1,1},{0x10d3,3}}, {{0x1f7f,5},{0x2c6a,5}}, {{0x13442,6},{0xe11,1}}, + {{0xf35,2},{0xe32,1}}, {{0x5,1},{0x1189,4}}, {{0xfa5,2},{0xfb0,3}}, {{0x29f3,3},{0xe7f,2}}, + {{0x4d6f,9},{0xec6,3}}, {{0xbb4,4},{0x2afc8,2}}, {{0x1240,2},{0x1a71,3}}, {{0xedd,1},{0xcbd,1}}, + {{0x16318,6},{0x16e3,4}}, {{0xf77,3},{0xe32,1}}, {{0x4765,3},{0xe22,2}}, {{0xe65,2},{0xebb,3}}, + {{0xa,2},{0x3abf,4}}, {{0x77e3,6},{0xcd3,2}}, {{0x2094,3},{0xf70,5}}, {{0x4,1},{0x5,2}}, + {{0x9a6,1},{0xcc6,2}}, {{0xb69d,3},{0x153a,3}}, {{0x2240,4},{0x14a3c,4}}, {{0x10c5,4},{0x2467,4}}, + {{0x1367,3},{0xe28,3}}, {{0x10b9,2},{0xe7f,2}}, {{0x146d,4},{0xf35,3}}, {{0x1997,4},{0xcc7,1}}, + {{0x4765,3},{0x8,1}}, {{0x52d8,3},{0xf86,3}}, {{0x1ab1c,5},{0xcc3d,3}}, {{0x27e0,4},{0x1303,3}}, + {{0x101f,3},{0x1054,3}}, {{0x5269,6},{0xd704,5}}, {{0x8295,5},{0x1783,4}}, {{0x127f,3},{0xed6,2}}, + {{0x1a07,3},{0xe0f,1}}, {{0x1a27,4},{0x6fad,7}}, {{0xdafd,10},{0xe11,1}}, {{0x1747,10},{0x13e3,4}}, + {{0x115e,7},{0x9a8,1}}, {{0xec6,3},{0x66c2,3}}, {{0xf77,3},{0x7955,4}}, {{0x1687,4},{0x1a71,3}}, + {{0x149c,3},{0x149f,3}}, {{0x2966,4},{0x41e8,5}}, {{0x9a8,1},{0xefcc,4}}, {{0x27e0,3},{0xcba,2}}, + {{0x1a07,3},{0xe08,1}}, {{0x3a29,4},{0x4a34,4}}, {{0x3957,8},{0xe67,2}}, {{0xe71,1},{0x1569,2}}, + {{0x1807,5},{0x158f,3}}, {{0x7a91,6},{0xcc9,2}}, {{0xbccd,4},{0xeb4,3}}, {{0xe5e,2},{0xc572,4}}, + {{0x115e,7},{0x13ee,7}}, {{0xe83,3},{0x4201,8}}, {{0x3281,8},{0xe11,1}}, {{0xf77,4},{0x8f1c,5}}, + {{0xb3f1,3},{0x2b7a,3}}, {{0x1537,4},{0x4a01,3}}, {{0x73ed,4},{0x9a8,2}}, {{0xe31,2},{0x41e8,5}}, + {{0x14a7,4},{0xd15f,3}}, {{0x9525,6},{0xec6,3}}, {{0x111a,3},{0x1303,3}}, {{0x1367,3},{0x1150,2}}, + {{0x3123,6},{0x898b,6}}, {{0x1ceb,6},{0x6,2}}, {{0x2280,2},{0xcc9,2}}, {{0xed6,2},{0x9,1}}, + {{0xd11b,5},{0x1be9,3}}, {{0x45eb,6},{0x45f1,8}}, {{0x2b84,2},{0x1303,3}}, {{0x1b131,5},{0xcce,2}}, + {{0x14914,5},{0x14919,4}}, {{0xef7c,6},{0x1ce6,5}}, {{0x29cf,3},{0x1afba,5}}, {{0xe97,3},{0x4bec,9}}, + {{0x478f,3},{0xed9,2}}, {{0x4f36,5},{0x2560,4}}, {{0xe7a,1},{0xf4f,1}}, {{0x16c96,5},{0xf193,4}}, + {{0x11b5,2},{0xe71,1}}, {{0x18f7,4},{0x1a71,3}}, {{0x15399,3},{0x1040,3}}, {{0x183b,3},{0x3075,4}}, + {{0x3a45,5},{0x1523,4}}, {{0x1817,4},{0xa348,5}}, {{0xb841,5},{0xcd2,2}}, {{0xcd3,1},{0x101f,2}}, + {{0xe0b,2},{0xe5e,2}}, {{0x2fc18,3},{0x11,1}}, {{0xcce,2},{0x14a2,3}}, {{0x16a7,3},{0x16152,4}}, + {{0xeaa,2},{0x4bff,4}}, {{0xe65,2},{0x6,1}}, {{0x236c,5},{0x2371,6}}, {{0x1062,2},{0xe80,2}}, + {{0x1b3f8,5},{0xec5,4}}, {{0x1bbf,4},{0xd15f,3}}, {{0x5342,3},{0xe0a,1}}, {{0x1019,4},{0x164b6,6}}, + {{0xcbd,1},{0xe22,2}}, {{0x23e53,5},{0xfb0,2}}, {{0x1c91,4},{0xf1a,2}}, {{0xefb3,6},{0xfda,5}}, + {{0xf1a,2},{0xccb,2}}, {{0x1399f,3},{0xe0d,2}}, {{0x19b7,3},{0xed6,2}}, {{0xf57,2},{0x2236,3}}, + {{0x7f41,4},{0xec6,3}}, {{0x4f1c,5},{0x1150,2}}, {{0xec0,3},{0x2,2}}, {{0xe61,2},{0x156a,3}}, + {{0x109b,2},{0xe22,2}}, {{0x496c,6},{0x4cbc,5}}, {{0xe97,4},{0xeab,2}}, {{0x1467,4},{0x8,4}}, + {{0x101f,2},{0x156e,3}}, {{0x19b7,3},{0x6,1}}, {{0x112ad,7},{0x142d,3}}, {{0x1b34d,6},{0xcc9,2}}, + {{0x9d41,6},{0xf62,3}}, {{0x2560,4},{0xe6b,3}}, {{0xf65,4},{0xcbd,1}}, {{0x1967,4},{0x1e737,5}}, + {{0x1288a,7},{0xec6,3}}, {{0x16a7,3},{0xa894,5}}, {{0x127d6,7},{0xec6,3}}, {{0x1367,3},{0x10352,4}}, + {{0x80c1,8},{0x1a9a,4}}, {{0xe89,2},{0xabc6,3}}, {{0x113f,2},{0xe6b,3}}, {{0x1b023,7},{0xe95,2}}, + {{0x10e8d,5},{0x156a,3}}, {{0x2bf3b,5},{0xe11,1}}, {{0xe8a,2},{0xa,2}}, {{0xf15,1},{0xf4f,1}}, + {{0x2df3b,5},{0xf,1}}, {{0x1677,3},{0x7d99,4}}, {{0x19ae7,6},{0xcc9,2}}, {{0x18dea,5},{0xa,2}}, + {{0x10c5,4},{0xe89,2}}, {{0x2de45,3},{0x69,1}}, {{0xe11,2},{0xccc,2}}, {{0x1dce6,6},{0xeca,3}}, + {{0x6053,5},{0x2c15,3}}, {{0xec3,3},{0xec6,3}}, {{0x19b7,3},{0xe25,2}}, {{0xe83,3},{0x27dc,4}}, + {{0x112b,4},{0xcc3,2}}, {{0xaeb1,8},{0x7a39,4}}, {{0x1ff7,3},{0x17fb8,4}}, {{0x2016d,6},{0xf35,2}}, + {{0x6dd5,7},{0xcc9,2}}, {{0xfb8,3},{0xe0a,1}}, {{0x28df,5},{0xa1e1,4}}, {{0x22b8,4},{0xcbf,2}}, + {{0x473b,5},{0x27e9,3}}, {{0x478f,3},{0xe16,1}}, {{0x70ad,3},{0x11cb,3}}, {{0x359f,4},{0x3b4a,5}}, + {{0x122d,2},{0x59b4,3}}, {{0xccd,1},{0x4e43,4}}, {{0xee9,2},{0xef5,2}}, {{0x4519,4},{0x120b,4}}, + {{0x550d,5},{0x1244,8}}, {{0xcb7,2},{0x2d11,3}}, {{0x113c,3},{0x2236,3}}, {{0x26b4,7},{0x6895,5}}, + {{0xe11,2},{0x1ebf,3}}, {{0x14a7,4},{0x57e0,5}}, {{0xf57,2},{0x44ad,4}}, {{0x58a8,5},{0xec6,3}}, + {{0x7a61,7},{0x18b4,3}}, {{0xf0c,1},{0x4767,1}}, {{0x15ed6,5},{0x2476,4}}, {{0x1019,11},{0x1279,6}}, + {{0x1967,3},{0xeee,3}}, {{0x19b9,1},{0xf4f,1}}, {{0x2de4b,3},{0xf,1}}, {{0xf0a,3},{0x15399,2}}, + {{0x5,1},{0x27dc,4}}, {{0x3a29,4},{0x15390,3}}, {{0x4853,3},{0xd15f,3}}, {{0x9a6,1},{0x109b,2}}, + {{0xf15,1},{0x2e29,3}}, {{0xcd6,2},{0xcd6,2}}, {{0x9f81,6},{0xf70,5}}, {{0x2015,3},{0x8,3}}, + {{0x1155,2},{0x4ef1,4}}, {{0x4c2a,8},{0x6ec3,3}}, {{0x1f25,4},{0xe11,2}}, {{0x1057,1},{0x2ba5,1}}, + {{0x12e5,3},{0xf70,2}}, {{0x12bfa,6},{0x1b80,3}}, {{0x12d4,3},{0x17b73,7}}, {{0xf1f,3},{0x1150,2}}, + {{0x12d4,3},{0x29bfe,2}}, {{0x1ff7,3},{0xcbf,2}}, {{0x4853,3},{0x5,2}}, {{0x29cf,3},{0x27d7,2}}, + {{0x2006,3},{0x1b5c6,5}}, {{0x1567,10},{0x1571,4}}, {{0x433d,4},{0xcc9,2}}, {{0x42db,8},{0xe0b,4}}, + {{0x12e5,3},{0x1780,3}}, {{0x13460,6},{0xe11,1}}, {{0xc015,4},{0x4516,3}}, {{0xcc7,1},{0x1a71,3}}, + {{0xf02,2},{0xf63,2}}, {{0x17f7,6},{0x4a86,4}}, {{0x5722,5},{0x6e53,4}}, {{0x1d3c,3},{0xe22,3}}, + {{0xe5b,3},{0xf70,2}}, {{0x8829,6},{0x2b78,4}}, {{0x478f,3},{0xe89,2}}, {{0x2f71,5},{0x56a8,5}}, + {{0xebe,3},{0x1969,1}}, {{0x712f,4},{0xccb,2}}, {{0x1a07,3},{0x29bfe,2}}, {{0x233f,11},{0xeed,4}}, + {{0x4853,3},{0xcba,2}}, {{0xcce,3},{0xcc9,2}}, {{0xf15,1},{0xcc1,1}}, {{0xd5d5,6},{0xe11,1}}, + {{0x1240,2},{0xcbf,2}}, {{0x772d,5},{0x120b,4}}, {{0xc281,4},{0x2e276,4}}, {{0xbfb5,5},{0x3933,4}}, + {{0x2ad4,4},{0xe69,5}}, {{0xa10d,8},{0xed6,2}}, {{0x5a21,9},{0xeed,4}}, {{0x1d641,5},{0xdfc9,4}}, + {{0xed9,2},{0xf35,2}}, {{0xd131,4},{0x9a7,2}}, {{0xc159,4},{0x123e,3}}, {{0xbdb1,8},{0x6,2}}, + {{0x1c37,6},{0xe11,1}}, {{0xb3f1,3},{0x1303,3}}, {{0x1007,7},{0xf6e,9}}, {{0x5199,7},{0x1ce7,4}}, + {{0x2d1f,3},{0xe0a,1}}, {{0x129de,6},{0xe0d,2}}, {{0x2f2e,3},{0x2270,3}}, {{0x6d46,6},{0xcc9,2}}, + {{0x4765,3},{0x123e,3}}, {{0x4853,5},{0xcbf,2}}, {{0xed1,3},{0xe0d,2}}, {{0x29c0,3},{0x12fe,2}}, + {{0x2df3b,5},{0x21,1}}, {{0xe32,1},{0x158f,3}}, {{0x29f3,5},{0x29f8,4}}, {{0xf4f,1},{0xed9,2}}, + {{0x65cf,6},{0x13e3,4}}, {{0x2de4b,3},{0xd,1}}, {{0xf7a,2},{0xccd,1}}, {{0xcfc6,6},{0x1382,5}}, + {{0xcb8,1},{0xfb0,2}}, {{0x46bd,3},{0x45ee,3}}, {{0x7414,3},{0xe104,3}}, {{0xe6f,3},{0xfc8,3}}, + {{0x16f7,6},{0xefa,4}}, {{0xe21,1},{0x1150,2}}, {{0x1e2ed,2},{0xe99,1}}, {{0x2e273,1},{0x2e27e,2}}, + {{0xff57,6},{0xe11,1}}, {{0x10a3,3},{0xf0f,2}}, {{0x29cf,3},{0x2f94,4}}, {{0x11d0c,3},{0xf20,2}}, + {{0x111a,3},{0xccd,1}}, {{0x2a47,3},{0xf16,2}}, {{0x7998,4},{0x4e42,5}}, {{0x27ef,4},{0x2dd7,4}}, + {{0x1a66,1},{0xe99,1}}, {{0x35f3,9},{0xf4a,5}}, {{0x12f6,4},{0x1189,4}}, {{0x17661,2},{0x19b9,1}}, + {{0x2afb6,3},{0x260,2}}, {{0xcbf,2},{0x70a6,3}}, {{0x3976,3},{0x138e,2}}, {{0x114d,4},{0xed9,2}}, + {{0x6,1},{0x281f,5}}, {{0x4853,3},{0x1189,3}}, {{0x116a9,3},{0x1210,3}}, {{0xf77,3},{0x44ad,4}}, + {{0x2dec5,3},{0xd,1}}, {{0x78f9,2},{0x78f9,2}}, {{0xcc7,1},{0x8666,2}}, {{0x1807,6},{0xfee4,4}}, + {{0x1f07,4},{0xfa6,3}}, {{0xed1,3},{0x111f,3}}, {{0x10a3,3},{0x148a,3}}, {{0x13960,5},{0xec3,3}}, + {{0xa0a1,7},{0x14a2,3}}, {{0x1367,3},{0x1d2e6,4}}, {{0xe5b,3},{0x11a6,2}}, {{0x2696,12},{0xe77,3}}, + {{0xb74,1},{0xaf4,2}}, {{0xe1f,3},{0x2c85,2}}, {{0x154f4,6},{0xf91,3}}, {{0x1a6d,3},{0x13e3,4}}, + {{0x6,1},{0x7d99,4}}, {{0xeea,3},{0xf7a,2}}, {{0x12e5,3},{0x11db,3}}, {{0x315b,9},{0xe6b,3}}, + {{0x6533,8},{0xe11,1}}, {{0x33a7,8},{0xe69,6}}, {{0xc437,6},{0x1632,5}}, {{0x77c9,5},{0x15e9,3}}, + {{0x7a01,5},{0xb,1}}, {{0x3559,7},{0x13e1,5}}, {{0xcc7,1},{0xe92,3}}, {{0x1007,5},{0x13ee,7}}, + {{0x20599,1},{0x20599,1}}, {{0x1214,3},{0xe67,2}}, {{0xf0a,3},{0x19b9,1}}, {{0x3f5b,9},{0x21a5,5}}, + {{0x4065,9},{0xe69,5}}, {{0x5242,8},{0xeed,4}}, {{0x7911,3},{0x2,1}}, {{0xe5b,3},{0xf86,2}}, + {{0x4853,3},{0x41aa,5}}, {{0xee9,2},{0x5989,2}}, {{0x4853,3},{0xe09,1}}, {{0x1a07,3},{0xfc7,3}}, + {{0x1967,4},{0x72fa,5}}, {{0x2006,4},{0x15ec,3}}, {{0x9351,5},{0x305a,5}}, {{0xe1f,3},{0x1e65,3}}, + {{0x1d69b,5},{0xe0d,2}}, {{0x2de4b,3},{0x8d,1}}, {{0x2966,4},{0xf8e,5}}, {{0xf77,4},{0x9a5,2}}, + {{0xe97,3},{0x158f,3}}, {{0xef7,7},{0xe11,1}}, {{0xe11,1},{0x7921,3}}, {{0x1997,4},{0xccd,1}}, + {{0x62dd,6},{0x1177,7}}, {{0x292a,8},{0xfa9,4}}, {{0xf4f,1},{0x204e0,2}}, {{0xe83,3},{0xd15f,3}}, + {{0xe0a,1},{0xed6,2}}, {{0xf11,1},{0xcbd,1}}, {{0x1153,2},{0xe1c,3}}, {{0x74f6,2},{0xe99,1}}, + {{0xe19,1},{0xe08,1}}, {{0xe0f,1},{0xe08,1}}, {{0xcc7,1},{0x2f41,5}}, {{0x7d31,5},{0x1de7,3}}, + {{0x109b,2},{0xe0a,1}}, {{0xe32,1},{0xf1a,2}}, {{0x18f7,4},{0x142a,3}}, {{0x31d9,8},{0x14f9,3}}, + {{0x5ea9,4},{0x5ead,5}}, {{0x12d4,3},{0x10d9,2}}, {{0x27e0,3},{0xcd3,2}}, {{0xef7,3},{0xcba,2}}, + {{0x1969,1},{0xf62,3}}, {{0x1c82,6},{0x103e,5}}, {{0x4853,3},{0x2ba5,1}}, {{0x7b,1},{0x314,2}}, + {{0x1ccd,5},{0x7d99,4}}, {{0xad6d,4},{0xfb7,3}}, {{0x1587,7},{0xcc8,1}}, {{0x73ed,5},{0x9a4,3}}, + {{0x247a,5},{0xfb0,3}}, {{0xc9d8,9},{0xcc9,2}}, {{0xe86,2},{0xe6c,3}}, {{0x17966,9},{0x174b,3}}, + {{0xeaa,2},{0x4618,3}}, {{0x416f,5},{0x1067,9}}, {{0xf77,4},{0x1d3c,3}}, {{0x4137,5},{0x10ed,3}}, + {{0x9a6,1},{0xe0a,1}}, {{0x5d66,3},{0x1059,3}}, {{0x15530,6},{0xec6,3}}, {{0xcc8,1},{0x809a,3}}, + {{0x116ac,5},{0x4d5f,3}}, {{0x4781,3},{0x4784,4}}, {{0xf0a,3},{0x14aa,5}}, {{0x42cd,9},{0xcc9,2}}, + {{0xfcb,2},{0xcd3,1}}, {{0x20f6,6},{0xf6e,7}}, {{0xf0d1,8},{0xcc9,2}}, {{0xe71,1},{0x15fb,3}}, + {{0x9225,9},{0xec6,3}}, {{0x111a,3},{0x13d4b,6}}, {{0xff36,6},{0x1b4f,5}}, {{0x2de45,3},{0x8d,1}}, + {{0x46bf,1},{0x8,1}}, {{0x10c5,4},{0x69a4,4}}, {{0xf0a,3},{0xe0b,2}}, {{0x12cae,6},{0xe11,1}}, + {{0x14e3c,5},{0x14e4b,4}}, {{0x115e,5},{0x5,1}}, {{0xf4f,1},{0xf1a,2}}, {{0xc017,2},{0x12a3,3}}, + {{0x46af,3},{0x29dd1,3}}, {{0x7a01,5},{0x1571,4}}, {{0x12064,5},{0x1ea1,5}}, {{0x2de4b,3},{0x57,1}}, + {{0x3185,7},{0x1b69,3}}, {{0xf15,1},{0xcc9,2}}, {{0xb2d1,7},{0x6cb4,3}}, {{0x73b9,5},{0x1d3c,3}}, + {{0x1024,2},{0x119e2,5}}, {{0xb841,5},{0x7555,4}}, {{0xcc7,1},{0x6ec3,3}}, {{0x58a8,5},{0xcd3,1}}, + {{0x101f,2},{0x3075,3}}, {{0x1567,6},{0x4,1}}, {{0x183b,3},{0xe0a,1}}, {{0x935d,9},{0xf23,3}}, + {{0xb3f1,3},{0xa,2}}, {{0xed1,4},{0xeab,2}}, {{0x5117,5},{0x646c,4}}, {{0x19b7,3},{0x492e,3}}, + {{0xe99,1},{0x442d,1}}, {{0xcc7,1},{0xcbf,2}}, {{0x478f,3},{0xec0,3}}, {{0x1290,4},{0x1b0f,3}}, + {{0xed1,3},{0xcc1,1}}, {{0xe5b,4},{0x1150,3}}, {{0x6241,6},{0xe6b,3}}, {{0x1e9e,5},{0xcc7,1}}, + {{0x21079,6},{0xe95,2}}, {{0x9a6,1},{0xcc8,1}}, {{0x11c4,7},{0x11cb,3}}, {{0x260e9,2},{0x29622,2}}, + {{0xcc1,1},{0xed9,2}}, {{0xe6f,4},{0x9b4d,8}}, {{0xe83,3},{0x43fd,4}}, {{0x4ce0,6},{0x51c8,5}}, + {{0x72b5,6},{0x3976,3}}, {{0x488b,6},{0x6ec3,3}}, {{0xe5e,2},{0xe78,2}}, {{0xe83,3},{0xcbf,2}}, + {{0x2a47,3},{0xe31,2}}, {{0x18408,6},{0x7a39,4}}, {{0x7093,9},{0xcc9,2}}, {{0x2de3f,3},{0x0,1}}, + {{0xf89,3},{0x1859,4}}, {{0x393b,5},{0x1001,3}}, {{0xdd8,6},{0x205a1,1}}, {{0xac05,7},{0x1592,4}}, + {{0x6c42,10},{0xe11,1}}, {{0x1ff7,3},{0xc6cd,4}}, {{0x2b46,4},{0x354f,4}}, {{0xe0c,2},{0x4516,3}}, + {{0xd78,6},{0xd78,6}}, {{0x168b,4},{0xec6,3}}, {{0x27e0,3},{0xcc3,3}}, {{0xcce,2},{0x157b,3}}, + {{0xcbf,2},{0xf91,3}}, {{0x1189d,4},{0x6008,3}}, {{0x185e8,5},{0xe78,2}}, {{0x19670,5},{0x10cb,4}}, + {{0x1367,3},{0x2f94,3}}, {{0x478f,3},{0x2ba5,1}}, {{0x3a1b,6},{0xe69,5}}, {{0xf69,3},{0xe11,2}}, + {{0x465d,3},{0xe11,1}}, {{0x125d,5},{0xf32,2}}, {{0xcce,2},{0x1b41,4}}, {{0x712f,4},{0x28e1,3}}, + {{0x63ee,9},{0xe6b,4}}, {{0x724d,6},{0x1f39,6}}, {{0x46bd,3},{0x1153,2}}, {{0x662a,6},{0x45ca,4}}, + {{0x2132,9},{0xe69,5}}, {{0x12b2,9},{0xeca,3}}, {{0x1024,2},{0x1025,2}}, {{0x3115,5},{0x88fa,6}}, + {{0x135e6,6},{0x17c0,2}}, {{0xe97,3},{0xfe6,2}}, {{0xe7a,1},{0x24900,2}}, {{0xf0a,3},{0xe25,2}}, + {{0x4765,3},{0xe8a,2}}, {{0xe13,3},{0x4,1}}, {{0xe31,2},{0xe11,1}}, {{0x11cb,3},{0xcc3,2}}, + {{0x111a,3},{0xcddd,5}}, {{0x1977,4},{0xe78,1}}, {{0x1ffe,4},{0xcbd,4}}, {{0xbded,4},{0x11dc,3}}, + {{0x27e0,3},{0xfc8,3}}, {{0xbb89,4},{0x1252,3}}, {{0x780a,4},{0x16b6e,6}}, {{0x32ff,7},{0x6bef,5}}, + {{0xe0f,1},{0xedd,1}}, {{0xc17d,6},{0xab27,5}}, {{0x17e7,6},{0xffc,3}}, {{0x1937,4},{0xfa5,2}}, + {{0x2f71,4},{0x4d5f,3}}, {{0x1a84,5},{0x534e,5}}, {{0x1109,5},{0xfdf,3}}, {{0x27e0,3},{0x1bef,2}}, + {{0xf77,3},{0x1f7b,4}}, {{0x17e7,6},{0x5adf,4}}, {{0xe1f,3},{0x1cd3,2}}, {{0xe33,1},{0x2,3}}, + {{0xe21,1},{0x1cf3,3}}, {{0x3521,4},{0x1085,3}}, {{0x450b,4},{0x6d42,4}}, {{0x2ced,5},{0xcc7,1}}, + {{0x1fc0,3},{0x6,2}}, {{0x9,1},{0xe71,1}}, {{0xbb7d,5},{0x1003,3}}, {{0xe86,2},{0x1b4f,5}}, + {{0x29cf,3},{0x1569,3}}, {{0x478f,3},{0xf4f,1}}, {{0x16a7,3},{0xe92,3}}, {{0x12f6,4},{0x8,1}}, + {{0xe5b,3},{0x7d99,4}}, {{0x53ef,7},{0x159e,4}}, {{0xe32,1},{0xec3,3}}, {{0x14ab,3},{0x138e,3}}, + {{0x1fbe,3},{0xe0a,1}}, {{0x1c91,4},{0x1050,4}}, {{0xf89,3},{0x1593,3}}, {{0x1c19,9},{0xe67,2}}, + {{0x63e1,6},{0xce83,4}}, {{0x3a1b,5},{0xf59,2}}, {{0x2d95,5},{0xccd,3}}, {{0x225e,6},{0x3995,8}}, + {{0x1969,1},{0xf1a,2}}, {{0x10cb,2},{0x2,1}}, {{0x3739,2},{0x15399,2}}, {{0xe6f,4},{0x2842,4}}, + {{0x2de45,3},{0xe,1}}, {{0xe19,2},{0xe95,2}}, {{0x306d,6},{0xce83,4}}, {{0xe89,2},{0x1155,2}}, + {{0xab1,16},{0xab1,16}}, {{0x2de57,3},{0x314,2}}, {{0x769e,8},{0x17c0,2}}, {{0x10cb,2},{0xe92,3}}, + {{0x12e5,3},{0x1601,3}}, {{0x10a5,2},{0x141b,4}}, {{0xe83,5},{0xe650,5}}, {{0x2c6f,6},{0x2c75,6}}, + {{0xe30,3},{0x1bef,2}}, {{0x19454,7},{0xf1a,2}}, {{0x2a47,3},{0xe11,2}}, {{0x1787,7},{0xcbf,2}}, + {{0x1c19,9},{0xf86,3}}, {{0x1050,4},{0x2872,4}}, {{0x32ab,6},{0xf62,3}}, {{0x1debd,2},{0xedd,1}}, + {{0x385b,7},{0x44b3,4}}, {{0x4fd2,6},{0x1de7,3}}, {{0xa61d,7},{0xcc3d,3}}, {{0x1569,2},{0x6,1}}, + {{0x28b2,5},{0x2c85,2}}, {{0x450b,4},{0xcce,3}}, {{0x46af,3},{0x1b3d7,6}}, {{0x2510,4},{0x2271,3}}, + {{0xb,1},{0x162c,3}}, {{0x4765,3},{0xfcb,2}}, {{0x12e5,3},{0xe08,1}}, {{0x1e80,6},{0x169b,5}}, + {{0xe7a,1},{0xe0f,1}}, {{0x10a3,3},{0xcc9,2}}, {{0xf11,1},{0x2,1}}, {{0x2de4b,3},{0x7b,1}}, + {{0xe83,3},{0xc609,6}}, {{0x235d,8},{0x2476,4}}, {{0x1007,6},{0xa89f,6}}, {{0x28883,6},{0xe11,1}}, + {{0x5715,6},{0x1702,4}}, {{0x5e58,6},{0x1392,3}}, {{0x1817,7},{0x2c6a,5}}, {{0x78f9,1},{0x2e27d,1}}, + {{0x3bcd,6},{0x141f,4}}, {{0x1607,10},{0x18b2,5}}, {{0xe2b,2},{0x8,1}}, {{0x1367,3},{0x7998,9}}, + {{0xe1f,3},{0xabc5,3}}, {{0xaf4,32},{0xaf4,32}}, {{0x40f1,9},{0xe77,3}}, {{0x359f,9},{0xec3,3}}, + {{0x2b84,2},{0x1ce7,4}}, {{0x2d95,8},{0x2d9d,6}}, {{0xeb5,2},{0x6,1}}, {{0xe6f,4},{0xf0f,2}}, + {{0x20f6,5},{0x1cd5,4}}, {{0x3409,6},{0x5342,3}}, {{0xb931,5},{0xcce,2}}, {{0x15e7,5},{0x153a,3}}, + {{0x1497,5},{0x149c,6}}, {{0x30cf,5},{0x2dd7,4}}, {{0x10b4,4},{0xf20,2}}, {{0x2de45,3},{0x7b,1}}, + {{0x2c37,9},{0xed9,2}}, {{0x1557,4},{0x155b,3}}, {{0xe83,5},{0x1ae7,4}}, {{0x1fc7,3},{0x8,1}}, + {{0xe16,1},{0xede,1}}, {{0x16a7,3},{0x4,1}}, {{0x1c37,6},{0xec3,3}}, {{0xf12,3},{0xe11,1}}, + {{0x1db1b,6},{0xed6,2}}, {{0x1155,2},{0xccd,1}}, {{0x13a7,7},{0x4,1}}, {{0x46af,3},{0xfb0,2}}, + {{0xeca,3},{0xe8a,2}}, {{0xcd4,2},{0xeb5,2}}, {{0xf79,3},{0x2eec,4}}, {{0x1702e,5},{0x413e,4}}, + {{0xf15,1},{0xe11,1}}, {{0x24b6,5},{0xe0a,1}}, {{0x19f7,4},{0x1314f,3}}, {{0x5269,6},{0x17cd,4}}, + {{0x2dbf,6},{0xe77,2}}, {{0x1dc56,4},{0x3f56,4}}, {{0xe32,1},{0xfb0,2}}, {{0x9279,6},{0x62f3,4}}, + {{0xeab,2},{0x1ffa,4}}, {{0x10b9,2},{0xcc9,2}}, {{0x5,1},{0xebb,3}}, {{0x113c,3},{0xf50,3}}, + {{0x29ed,6},{0x29f3,9}}, {{0xd086,3},{0xe11,1}}, {{0x15af,3},{0xe69,5}}, {{0x16a7,3},{0xb495,4}}, + {{0xcc6,2},{0x4618,3}}, {{0xcce,2},{0xcd3,1}}, {{0x30f4,4},{0xe11,1}}, {{0x2f71,4},{0xac0d,3}}, + {{0x30e53,3},{0x307bb,1}}, {{0x12d4,3},{0x74f9,2}}, {{0x79dd,5},{0xf91,3}}, {{0xdd0a,3},{0xcc3,2}}, + {{0xed1,3},{0xcc3d,3}}, {{0x14a7,4},{0xf1a,2}}, {{0x1787,6},{0x12bf,4}}, {{0xcc7,1},{0xec0,3}}, + {{0x1787,6},{0x14ff,8}}, {{0x2f71,4},{0x5,1}}, {{0x5e58,6},{0xcc9,2}}, {{0x10c5,4},{0xeb7,7}}, + {{0x1081,5},{0xe78,2}}, {{0xedd,1},{0xcc7,1}}, {{0x92b5,5},{0x1001,3}}, {{0x109,2},{0xf,1}}, + {{0x79c5,4},{0x10cb,3}}, {{0x16a7,3},{0x1790,6}}, {{0xefa,2},{0x156a,3}}, {{0xec3,3},{0x1059,3}}, + {{0x5,1},{0x1b4f,5}}, {{0x478f,3},{0xcc9,2}}, {{0x1e71,6},{0xfdd,6}}, {{0x10c5,4},{0x2ee9,3}}, + {{0xc0ed,5},{0xbf50,4}}, {{0x486f,4},{0xcc1,1}}, {{0x29d1f,5},{0xe86,2}}, {{0x29cf,3},{0xec0,3}}, + {{0x1747,10},{0xe92,3}}, {{0x112b,6},{0x809a,3}}, {{0xe78,1},{0x4132,5}}, {{0xe25,2},{0xe67,2}}, + {{0xf0d,2},{0xf0f,2}}, {{0x4217,6},{0x3075,3}}, {{0x159e0,5},{0x10f5,3}}, {{0x1c3f7,5},{0xed5,4}}, + {{0xf0a,3},{0x6ec3,3}}, {{0x205a9,2},{0x205a9,1}}, {{0xf1a,2},{0xe69,5}}, {{0xe78,1},{0x10d3,3}}, + {{0x4781,3},{0x2ba5,1}}, {{0xccd,4},{0xe69,5}}, {{0x2de45,3},{0x21,1}}, {{0xe563,5},{0x320b,6}}, + {{0x5290,9},{0xec6,3}}, {{0x2a47,3},{0x29436,2}}, {{0x7911,3},{0x175a9,3}}, {{0x2f71,4},{0x16ad,3}}, + {{0xf0d,2},{0x1155,2}}, {{0x2,1},{0x1050,3}}, {{0x3,1},{0xe2b,2}}, {{0x1847,5},{0x29f3,3}}, + {{0x10e7,11},{0xec6,3}}, {{0x1f25,4},{0xe11,1}}, {{0x10bb7,4},{0x73d6,2}}, {{0x122d,3},{0xe11,1}}, + {{0x11817,5},{0x1e2a,4}}, {{0x9af,2},{0xe59,2}}, {{0xe16,1},{0x7416,1}}, {{0xf9b,5},{0x8bcb,6}}, + {{0xe2b,2},{0xf62,3}}, {{0x7a91,6},{0xf91,3}}, {{0xcc1,1},{0x9a6,1}}, {{0xf89,3},{0x7a14,4}}, + {{0x1817,4},{0xf1a,2}}, {{0x702b,8},{0x1523,4}}, {{0x27e0,3},{0x113f,2}}, {{0xcc1,1},{0xcce,2}}, + {{0x17312,5},{0x2b89,3}}, {{0xfa5,2},{0xf13,2}}, {{0xe80d,7},{0xeee,3}}, {{0x1637,7},{0x10f2,5}}, + {{0xf0d,2},{0xe11,1}}, {{0xb34,16},{0xb34,16}}, {{0x1467,4},{0x4fa8,3}}, {{0xccd,1},{0x155e,3}}, + {{0x3e6d,9},{0xf72,5}}, {{0x3e43,8},{0xe69,6}}, {{0x6ceb,7},{0xcc9,2}}, {{0x4767,1},{0x19b9,1}}, + {{0x6,2},{0x2268,5}}, {{0x3089,5},{0xf91,3}}, {{0x41a7,4},{0xf20,2}}, {{0x1f876,5},{0x3933,4}}, + {{0x109,2},{0x45,1}}, {{0x19643,5},{0x127c,3}}, {{0xe99,1},{0x1a66,1}}, {{0x2e346,2},{0x2b0aa,2}}, + {{0x168f,2},{0xf0f,2}}, {{0xccb,2},{0x10bb,5}}, {{0x13a7,7},{0x583b,5}}, {{0x29cf,3},{0x5136,5}}, + {{0x1607,10},{0x1722,5}}, {{0x5457,7},{0x104a,4}}, {{0x4bf6,7},{0xcb9,4}}, {{0x4853,3},{0xe22,3}}, + {{0x1fdb3,6},{0xed6,2}}, {{0x20f6,6},{0x2781,5}}, {{0x1969,1},{0x1969,1}}, {{0xcb8,1},{0x6,1}}, + {{0xf11,1},{0x1593,3}}, {{0x2df3b,5},{0xd,1}}, {{0x12e5,3},{0xf12,3}}, {{0x154b8,6},{0xe11,1}}, + {{0x5117,5},{0x7e11,4}}, {{0xe47,2},{0xc27f,2}}, {{0x6,2},{0xed9,2}}, {{0xf89,3},{0xe2b,2}}, + {{0x11d5,7},{0x60b5,6}}, {{0xcd3,1},{0xfe8,2}}, {{0x4522,3},{0xcce,2}}, {{0xec0,3},{0xe09,1}}, + {{0x1dc58,2},{0x3f56,4}}, {{0x2de45,3},{0xf,1}}, {{0xe16,1},{0xe71,1}}, {{0xaaf,2},{0x18ecc,2}}, + {{0x104a,3},{0x10ba7,5}}, {{0xe08,1},{0x38ec,3}}, {{0xe613,5},{0x2468,3}}, {{0x7353,2},{0x1f38,4}}, + {{0x10c5,4},{0x1230,3}}, {{0xf59,3},{0xb,1}}, {{0x1ebc,10},{0xe69,5}}, {{0x712f,4},{0x2f94,3}}, + {{0x46bd,3},{0x1230,3}}, {{0x12308,6},{0xe95,2}}, {{0x4853,3},{0xe22,2}}, {{0x255b,9},{0xe69,6}}, + {{0x1967,3},{0x2d1f,3}}, {{0xe09,1},{0x1025,1}}, {{0x473b,8},{0x6,1}}, {{0x7414,3},{0xf1f,3}}, + {{0x1647,5},{0x1f39,6}}, {{0x1b986,6},{0xf7a,2}}, {{0x4f29,6},{0x12a9,3}}, {{0x80fd,6},{0xccd,1}}, + {{0x1677,3},{0xed9,2}}, {{0xe83,3},{0x1a63,3}}, {{0xf0a,3},{0xf34,2}}, {{0x1ff7,3},{0xf7a,2}}, + {{0x3089,5},{0x546a,7}}, {{0x2948,3},{0x28c9d,2}}, {{0x4853,4},{0x77b3,4}}, {{0x191e7,6},{0xec6,3}}, + {{0x2b9d,3},{0x138e,2}}, {{0xed1,4},{0x60f3,4}}, {{0x29e0,2},{0xe336,7}}, {{0xcc7,1},{0xb,1}}, + {{0xe6f,3},{0x3072,5}}, {{0xcc7,1},{0x320c,4}}, {{0x10ee,3},{0xed9,2}}, {{0x4781,3},{0xe89,2}}, + {{0xefa,2},{0xcd2,2}}, {{0xe1f,3},{0x142d,3}}, {{0x18dea,5},{0xaa38,5}}, {{0x1ff7,3},{0x78d0,3}}, + {{0xe5e,2},{0x6,1}}, {{0xf0c,1},{0x19b9,1}}, {{0x11ca7,5},{0x11cac,6}}, {{0x13910,6},{0xcc9,2}}, + {{0x10c5,4},{0x12dde,5}}, {{0xf9d7,6},{0xe95,2}}, {{0x30f51,2},{0x2b05e,2}}, {{0xf77,3},{0x8f2c,5}}, + {{0xf1a,2},{0xf35,2}}, {{0x486f,4},{0x5d58,3}}, {{0x2399,10},{0xe69,5}}, {{0xbba1,6},{0x138e,2}}, + {{0x2454,3},{0x9,1}}, {{0x1ff7,3},{0xfa6,3}}, {{0xf0a,3},{0x6,1}}, {{0xe6f,3},{0xfa5e,4}}, + {{0x2a47,3},{0x2b89,3}}, {{0xf16,2},{0xf91,3}}, {{0x19b7,3},{0x1bef,2}}, {{0xe1f,3},{0xe32,1}}, + {{0x20377,4},{0x19b9,1}}, {{0x16bc4,6},{0x6140,3}}, {{0x3d39,5},{0xffc,3}}, {{0x10b4,6},{0x10ba,6}}, + {{0x1947,5},{0xccd,1}}, {{0x2006,4},{0xcc5,2}}, {{0x34b1,6},{0xcd3,2}}, {{0x9a8,1},{0x178a,3}}, + {{0x109b,2},{0xe71,1}}, {{0x2dec5,3},{0x45,1}}, {{0x1967,3},{0xee9,2}}, {{0x1967,3},{0x120f,3}}, + {{0xe77,2},{0x1de7,3}}, {{0x115e,5},{0x2ee9,3}}, {{0x122a,11},{0xe95,2}}, {{0x22a3,2},{0xe11,1}}, + {{0x27e0,3},{0x809a,3}}, {{0xa9a6,4},{0xcc9,2}}, {{0xd01e,8},{0xec6,3}}, {{0x19b7,3},{0xe09,1}}, + {{0xf59,2},{0xe0c,3}}, {{0x22d6,10},{0xed9,2}}, {{0x11f46,6},{0x11f4c,5}}, {{0x12e5,3},{0xce96,4}}, + {{0x3d39,5},{0x7d99,4}}, {{0x2777,6},{0x51b9,3}}, {{0x46af,3},{0x10a6,2}}, {{0x4781,3},{0xe19,1}}, + {{0x478f,3},{0xefcc,4}}, {{0xccb,2},{0xfa2,3}}, {{0x307bb,1},{0x20579,1}}, {{0x28d2,3},{0xf86,3}}, + {{0x58a8,5},{0x11b5,2}}, {{0x159cc,5},{0xe78,2}}, {{0x450b,4},{0xce96,4}}, {{0x1677,3},{0xf24,2}}, + {{0x112b,5},{0xe11,1}}, {{0x4979,4},{0xeb9,5}}, {{0x12d4,3},{0x103e,5}}, {{0x29cf,3},{0xf50,3}}, + {{0x1969,1},{0x31a4,8}}, {{0x8,1},{0x10b8,2}}, {{0x5,1},{0x6,2}}, {{0x1088,4},{0x1523,4}}, + {{0x17e7,9},{0x129a,6}}, {{0x16a7,3},{0x178a,3}}, {{0x4853,3},{0x3537,2}}, {{0x28c1,4},{0xf0f,2}}, + {{0xf77,4},{0x2560,4}}, {{0x29cf,3},{0x2ba5,1}}, {{0xe08,1},{0xf1a,2}}, {{0x115e,7},{0x1224,6}}, + {{0x2024,5},{0x2029,3}}, {{0x12e98,7},{0xe11,1}}, {{0x9a6,1},{0xccc,2}}, {{0x9a8,1},{0xeb5,2}}, + {{0x2768,7},{0x3555,4}}, {{0xf70,2},{0xed5,3}}, {{0x12e5,4},{0x5717,4}}, {{0x11eee,5},{0xcba,2}}, + {{0xfbf,5},{0x2448,5}}, {{0x1007,5},{0x189b,4}}, {{0x256a,12},{0xe0a,1}}, {{0xcba,2},{0x2269,4}}, + {{0x1787,7},{0x1be9,3}}, {{0x1857,4},{0xcc1,1}}, {{0x11916,6},{0x68fd,5}}, {{0x111c6,7},{0xed6,2}}, + {{0xdd44,6},{0x2467,4}}, {{0x1dbd,6},{0x1dc3,7}}, {{0xcb8,1},{0x10352,4}}, {{0x300b,8},{0xcc9,2}}, + {{0xe78,1},{0xf0d,2}}, {{0x17646,5},{0x7feb,4}}, {{0x13b4a,7},{0xcc9,2}}, {{0x6bda,6},{0xf91,3}}, + {{0x35f3,9},{0x138e,2}}, {{0x1ef2e,6},{0x19583,3}}, {{0x2779b,5},{0xe11,1}}, {{0x20d79,6},{0xe95,2}}, + {{0x219b,10},{0x1783,4}}, {{0x32ab,6},{0x6bd4,6}}, {{0xfc4,5},{0xcc4,2}}, {{0xc05d,4},{0xe32,1}}, + {{0x1ff7,3},{0x14c6c,4}}, {{0x2d83f,5},{0xe33,1}}, {{0x3a61,5},{0xeb9,4}}, {{0x1667,7},{0xfdd,4}}, + {{0x2399,4},{0xe75,2}}, {{0x32b9,10},{0xf23,3}}, {{0xf69,3},{0x9a8,1}}, {{0x4765,3},{0x1252,3}}, + {{0x124c,6},{0xe7f,4}}, {{0x12e5,3},{0xcba,2}}, {{0xf15,1},{0xa,2}}, {{0x1367,3},{0x13dd,4}}, + {{0x2542b,6},{0xcd3,1}}, {{0x1677,3},{0x6b90,4}}, {{0x17344,6},{0xf86,3}}, {{0x5457,7},{0x1059,3}}, + {{0xe32,1},{0x10d3,3}}, {{0x1c82,6},{0x1de7,3}}, {{0xe0f,1},{0x1f875,1}}, {{0x1a7fb,6},{0xec6,3}}, + {{0x9b9d,6},{0x1b34,4}}, {{0x1428e,8},{0x2,1}}, {{0x19b9,1},{0xe92,3}}, {{0x1e9e,5},{0x4b61,6}}, + {{0xc281,4},{0x2e828,4}}, {{0x17b16,4},{0x17b1a,6}}, {{0x2b84,2},{0x1ebf,3}}, {{0x281c,8},{0x1663,4}}, + {{0x28d0,4},{0x155b,3}}, {{0x12e5,3},{0x1cd3,2}}, {{0xe78,1},{0xe22,2}}, {{0x39d5,7},{0xe69,6}}, + {{0xcc1,1},{0x15fe,4}}, {{0x3bcd,4},{0x2bad,4}}, {{0x17466,6},{0x7a0f,4}}, {{0x75ce,4},{0x10d2,4}}, + {{0x256a,8},{0x6791,4}}, {{0xf0c,1},{0xa,2}}, {{0xf63,2},{0x14f9,3}}, {{0xb3f1,3},{0xf18,2}}, + {{0x1877,7},{0xb068,5}}, {{0xf57,2},{0x44ad,3}}, {{0x417d,5},{0x138e,2}}, {{0x3a1b,6},{0x1244,3}}, + {{0x7156,4},{0xfdf,3}}, {{0x79d1,6},{0x126a,4}}, {{0xf77,3},{0x1153,3}}, {{0xe2b,2},{0xfd01,4}}, + {{0x1f38,1},{0x3537,2}}, {{0x6cb7,7},{0x6cbe,4}}, {{0x12b2,5},{0xe7f,2}}, {{0xe11,1},{0xd28b,5}}, + {{0x2de4b,3},{0x314,2}}, {{0x2a47,3},{0x1302,3}}, {{0xf0c,1},{0xcb8,1}}, {{0x2231,5},{0x3378,5}}, + {{0x1373,2},{0x1230c,2}}, {{0xcd3,1},{0xfa6,3}}, {{0x5,1},{0x127c,3}}, {{0x2966,4},{0x20bed,3}}, + {{0xe99,1},{0xe19,1}}, {{0x1577,7},{0xe67,2}}, {{0x1e08,9},{0xe69,5}}, {{0xf16,2},{0xe32,1}}, + {{0x11a4a,6},{0xcbd,4}}, {{0xe78,1},{0xe69,5}}, {{0x2858,4},{0x16b6e,6}}, {{0xcce,2},{0xe0b,4}}, + {{0x2eec,4},{0xf91,3}}, {{0xc05d,6},{0xf86,2}}, {{0x1821e,5},{0xccd,1}}, {{0xe5b,3},{0x123e,3}}, + {{0x478f,3},{0x10cb,4}}, {{0x27ef,4},{0x29f3,3}}, {{0xe08,1},{0x569a,3}}, {{0x46af,3},{0xe67,2}}, + {{0xf77,3},{0xe0f9,3}}, {{0xe1f,3},{0x168b,4}}, {{0xefa,2},{0xccd,1}}, {{0x73b9,5},{0x3,1}}, + {{0x4199,8},{0x13e3,4}}, {{0x7602,4},{0x1302,3}}, {{0x2938b,5},{0x73d6,2}}, {{0x3337,10},{0xfdf,4}}, + {{0x16692,5},{0x4aef,3}}, {{0xeb2,2},{0xf28,7}}, {{0xe71,1},{0xe92,3}}, {{0x2de45,3},{0xd,1}}, + {{0x1677,3},{0x1cd3,3}}, {{0x52f8,6},{0x61bb,4}}, {{0x4765,3},{0x1dcb4,2}}, {{0x712f,4},{0x12dde,5}}, + {{0x712f,4},{0x4516,3}}, {{0x765d,8},{0xe69,5}}, {{0xe71,1},{0xf62,3}}, {{0xe33,1},{0xf11,1}}, + {{0x12e5,3},{0x640e,5}}, {{0x10a3,3},{0xcc4,2}}, {{0xf80,2},{0xcbd,1}}, {{0x12b2,5},{0xf59,2}}, + {{0xe11,1},{0x4bfa,3}}, {{0x7ec9,8},{0xef3,4}}, {{0x262d,11},{0x126a,4}}, {{0xb379,3},{0xe32,1}}, + {{0x3bcd,6},{0x6,1}}, {{0xd086,3},{0x6,1}}, {{0x2146,3},{0xe69,5}}, {{0x3583,5},{0x158f,3}}, + {{0x12d4,3},{0xcd3,2}}, {{0x4979,4},{0xed5,3}}, {{0x1757,8},{0x141f,4}}, {{0x2858,5},{0x181b,3}}, + {{0xeb5,2},{0xe69,5}}, {{0xe6f,3},{0xfb8,3}}, {{0x2939,4},{0x41b8,4}}, {{0x114d,5},{0xe0b,2}}, + {{0x10a3,3},{0x7d81,4}}, {{0x3a29,4},{0x2280,2}}, {{0xe7a,1},{0xe08,1}}, {{0xf89,3},{0xe71,1}}, + {{0x12d4,5},{0x16e3,4}}, {{0x29c0,3},{0x9a6,1}}, {{0xe0eb,5},{0xfdd,4}}, {{0x2058b,3},{0x57,1}}, + {{0x159cc,5},{0x111c,2}}, {{0xe7d,2},{0x13e3,4}}, {{0x2c59,4},{0xed9,2}}, {{0x1347,4},{0x314,2}}, + {{0xe6f,3},{0xccb,2}}, {{0x6171,5},{0x1258,5}}, {{0x1cf1e,6},{0xa,2}}, {{0x105f,3},{0x10cb,2}}, + {{0x73ed,4},{0x2ba7,4}}, {{0xaf4,8},{0xaf4,4}}, {{0xac65,6},{0xc8a0,4}}, {{0x16a7,3},{0x3a3e,6}}, + {{0x6ff7,5},{0x18b4,3}}, {{0xaaf,2},{0x2e2b3,2}}, {{0x1153,2},{0xe22,2}}, {{0x1a66,1},{0xcd3,1}}, + {{0x28d0,4},{0x1c85,3}}, {{0x268c,3},{0xed6,2}}, {{0xed1,3},{0x2eee,4}}, {{0x12d4,3},{0x20550,2}}, + {{0x10e7,11},{0xe69,5}}, {{0x1e910,5},{0x8c67,4}}, {{0x17acb,2},{0x4767,1}}, {{0x11530,4},{0xcc6,2}}, + {{0x9b31,8},{0xeed,4}}, {{0x7119,3},{0xed6,2}}, {{0x10a3,4},{0xfa1,2}}, {{0x236d3,5},{0xf7a,2}}, + {{0x19b7,3},{0xe21,1}}, {{0x15e7,5},{0x15ec,5}}, {{0x6,2},{0xccb,2}}, {{0xaaf,2},{0x30633,1}}, + {{0xe83,3},{0xf86,3}}, {{0xe0d,2},{0x66c2,3}}, {{0x3409,6},{0xe6b,4}}, {{0x1150,2},{0xfa5,2}}, + {{0xf77,5},{0x44a4,4}}, {{0xee69,8},{0xf91,3}}, {{0x2858,4},{0xcc1,1}}, {{0x2006,3},{0xcc7,1}}, + {{0xcbd,1},{0x11cb,3}}, {{0x1153,2},{0x3694,3}}, {{0x8295,5},{0xeee,3}}, {{0x780a,8},{0x13e3,4}}, + {{0xc7ff,5},{0xec6,3}}, {{0xd832,8},{0xf91,3}}, {{0x7414,3},{0x2dd7,4}}, {{0x478f,3},{0xe77,3}}, + {{0x127ea,5},{0xed6,2}}, {{0x1877,7},{0xb05c,5}}, {{0xd97c,9},{0xe95,2}}, {{0x27e0,3},{0x41aa,5}}, + {{0x29cf,3},{0x413d,5}}, {{0x1977,3},{0x1132,2}}, {{0xe5e7,5},{0x587c,5}}, {{0xe2b,2},{0x153a,3}}, + {{0x16a7,6},{0xcc9,2}}, {{0x19ae7,6},{0xec6,3}}, {{0x111a,7},{0x1099,8}}, {{0xf89,3},{0x5342,3}}, + {{0x73ed,4},{0xcc3,2}}, {{0x11f25,5},{0xcc8,1}}, {{0xcb8,1},{0x1303,3}}, {{0x1367,3},{0x17cd,4}}, + {{0x18ce6,5},{0x42f9,5}}, {{0xe5b,3},{0x1303,3}}, {{0xe1f,3},{0x296f,3}}, {{0xe89,2},{0x4,1}}, + {{0x12b2,8},{0xe22,2}}, {{0x3a29,4},{0x158f,3}}, {{0x101f,2},{0x8,1}}, {{0xe2f,1},{0x7c25,4}}, + {{0x479d,5},{0x1288,4}}, {{0x442b,3},{0xe09,1}}, {{0xf4f,1},{0xcce,2}}, {{0x8cfd,5},{0xce8e,4}}, + {{0x1ebe,4},{0xe0a,1}}, {{0xdaa5,7},{0xec6,3}}, {{0x1647,5},{0x1245,6}}, {{0xd131,4},{0xe0a,1}}, + {{0xaaf,2},{0x30352,2}}, {{0x142d,3},{0xed6,2}}, {{0x12312,6},{0xec6,3}}, {{0x1089,3},{0xcc3,2}}, + {{0x3019,6},{0xa894,5}}, {{0x1537,6},{0x2c6a,5}}, {{0x1c91,4},{0x18d2,5}}, {{0x48da,2},{0x19b9,1}}, + {{0x10a3,3},{0x4eb0,4}}, {{0x2,1},{0x1de7,3}}, {{0x1777,5},{0x1ae7,4}}, {{0x181b,3},{0x6eee,4}}, + {{0x4153,6},{0xcc8,1}}, {{0x15a26,7},{0xe11,1}}, {{0x29cf,3},{0x1131,3}}, {{0x6ba6,7},{0xec6,3}}, + {{0xb3f1,3},{0x6741,6}}, {{0x31cb,6},{0x3ce0,5}}, {{0x6ff7,5},{0x1dc7,5}}, {{0x19b7,3},{0x122d,3}}, + {{0x1ff7,3},{0xb97c,2}}, {{0x70ad,3},{0x1160,5}}, {{0x101f,3},{0x45ca,4}}, {{0x12d4,3},{0xedd,1}}, + {{0x3d63,5},{0x22fb8,3}}, {{0x1081,7},{0x4b95,6}}, {{0x7ff5,5},{0xfa2b,4}}, {{0xebe,4},{0x1e8b,3}}, + {{0xed6,2},{0xf86,3}}, {{0xeab,2},{0xf1a,2}}, {{0x442b,3},{0xe22,2}}, {{0x2006,4},{0x4516,3}}, + {{0x1967,3},{0x1fbe,3}}, {{0x1ff7,3},{0xf24,2}}, {{0x2ca1,4},{0xed6,2}}, {{0x11b3,5},{0x2651,7}}, + {{0x4153,8},{0xe92,3}}, {{0x4ef5,4},{0x1252,3}}, {{0xe6f,4},{0x6d08,4}}, {{0x1817,4},{0xf24,2}}, + {{0x1a66,1},{0xf0c,1}}, {{0x1a132,5},{0x2dd7,4}}, {{0x100f9,6},{0x142d,3}}, {{0x3559,5},{0x6cb4,3}}, + {{0x1f8fd,5},{0x156a,3}}, {{0x1367,3},{0x7f83,6}}, {{0x16bb,3},{0x26791,4}}, {{0x20382,2},{0xe99,1}}, + {{0x139a6,6},{0x17c0,2}}, {{0x1567,3},{0xde29,2}}, {{0xaaf,2},{0xf1d,1}}, {{0x833d,5},{0xcd3,1}}, + {{0x12d4,3},{0x27e9,3}}, {{0xc195,5},{0xa1e1,4}}, {{0x1f25,4},{0xeaa,2}}, {{0x6ba6,7},{0xcc9,2}}, + {{0xe83,3},{0x153a,3}}, {{0xf4f,1},{0xf50,3}}, {{0x29cf,3},{0x19b9,1}}, {{0xe0d,2},{0xcc7,1}}, + {{0x149c,3},{0xe0a,1}}, {{0xd48,4},{0x78a3,2}}, {{0x75b4,4},{0x119e0,7}}, {{0x6bda,6},{0x1007b,5}}, + {{0x10d3,3},{0xcc9,2}}, {{0xe11,1},{0x1186,2}}, {{0x3b09,4},{0x1252,5}}, {{0x45ee,3},{0xe86,2}}, + {{0x6,2},{0xcd3,2}}, {{0x2c7d,10},{0xeed,4}}, {{0x73b9,5},{0xe6b,2}}, {{0x115e,5},{0x11b5,2}}, + {{0x12f8,2},{0x1278,4}}, {{0x41ed,4},{0x1099,8}}, {{0x12f6a,6},{0x3976,3}}, {{0x48a7,5},{0xcc9,2}}, + {{0xf89,3},{0x1fbe,3}}, {{0x4781,3},{0xeb5,2}}, {{0x41ed,4},{0xfb0,2}}, {{0xe83,3},{0x1722,5}}, + {{0x29c0,3},{0x21cbc,4}}, {{0xf89,3},{0x59b4,3}}, {{0xf15,1},{0xe7f,2}}, {{0xe32,1},{0x1d7e,3}}, + {{0xe97,3},{0xf7a,2}}, {{0x10e8f,3},{0x156a,3}}, {{0x26ba,3},{0x6411,4}}, {{0xf0c,1},{0x1663,3}}, + {{0x114d,5},{0xf91,3}}, {{0x1a29a,6},{0x1150,2}}, {{0xf7a,2},{0x5f96,3}}, {{0x27c2,10},{0xe92,3}}, + {{0x18084,6},{0x1fc7,3}}, {{0x445b,2},{0xf0c,1}}, {{0x1687,4},{0xf0f,2}}, {{0x19b9,1},{0xe60,2}}, + {{0xd131,4},{0x1a99,5}}, {{0xe61,3},{0xe64,3}}, {{0x1dede,6},{0xa,2}}, {{0xcc8,1},{0xbfca,3}}, + {{0x19694,6},{0x17c0,2}}, {{0x13960,5},{0x1004,3}}, {{0x46af,3},{0x1b14,4}}, {{0x33d1,8},{0xe0a,1}}, + {{0x3aed,6},{0xe1c,3}}, {{0x10c5,4},{0xcc6,2}}, {{0x10a3,3},{0x809a,3}}, {{0xeacd,5},{0xcc9,2}}, + {{0x113f,2},{0xec6,3}}, {{0x15c06,6},{0xc992,4}}, {{0x1e9e,6},{0xe09,1}}, {{0xe2f,1},{0x453b,4}}, + {{0xcbd,1},{0x5538,2}}, {{0xf15,1},{0x1db45,2}}, {{0x1019,4},{0x16ce,5}}, {{0xb7bd,6},{0x4665,4}}, + {{0x2e28,4},{0x1150,2}}, {{0xf0a,3},{0x1e2ed,2}}, {{0xdd02,9},{0xcbd,1}}, {{0x14a7,4},{0x81c1,5}}, + {{0x1827,5},{0x10e3,4}}, {{0x8d81,10},{0xcc3,2}}, {{0xe32,1},{0x3922,4}}, {{0x12a3,3},{0xed6,2}}, + {{0x29c0,3},{0x3,1}}, {{0x84a5,8},{0xeed,4}}, {{0x142c,4},{0xeed,4}}, {{0x1569,2},{0xf86,2}}, + {{0x4781,3},{0x2252,3}}, {{0xe83,3},{0x15ce7,5}}, {{0x2399,4},{0xe80,2}}, {{0x14a7,4},{0x2ca1,4}}, + {{0xf15,1},{0xe08,1}}, {{0xcd3,2},{0x9a8,1}}, {{0x2f9b,4},{0x4b6f,3}}, {{0x9525,6},{0x952b,5}}, + {{0x14f9,3},{0xe2a,3}}, {{0x2b0a,11},{0xf23,3}}, {{0xb685,5},{0xe2a,3}}, {{0xed9,2},{0xf0f,2}}, + {{0xef7,4},{0xcd3,2}}, {{0x1567,6},{0xe11,1}}, {{0x8c91,6},{0xec6,3}}, {{0xe0b,2},{0x2f2e,3}}, + {{0x16a7,3},{0xe5e,2}}, {{0xe22,3},{0xe0a,1}}, {{0x27e0,3},{0xf12,3}}, {{0x1531e,7},{0xec6,3}}, + {{0x2,1},{0x237e,5}}, {{0xf11,1},{0xe21,1}}, {{0x1747,4},{0x13693,4}}, {{0x1109,11},{0xe69,6}}, + {{0x1c28,5},{0x7949,4}}, {{0x20799,5},{0xed6,2}}, {{0x7602,4},{0xccc,2}}, {{0x471f,6},{0x115e1,5}}, + {{0x1f8e,7},{0xe92,3}}, {{0x17e2c,6},{0x4665,4}}, {{0x2fd3,10},{0xcc9,2}}, {{0x29cf,3},{0xe08,1}}, + {{0x12f6,4},{0xfdf,3}}, {{0x2d79,4},{0xcc8,1}}, {{0xef7,3},{0xee9,2}}, {{0x29c0,3},{0x12b5,2}}, + {{0x2a47,3},{0x156a,3}}, {{0x1807,6},{0xab9f,3}}, {{0x74f3,2},{0x74f5,2}}, {{0xab1,1},{0xaf4,1}}, + {{0x1967,3},{0x1790,3}}, {{0x1a47,5},{0xefa,4}}, {{0xb,1},{0xcc1,1}}, {{0x1567,3},{0x22a3,4}}, + {{0xed1,4},{0xccd,4}}, {{0x3bcd,4},{0x15e6d,3}}, {{0x2e273,1},{0x307bb,1}}, {{0x1367,3},{0x189f,3}}, + {{0x29cf,3},{0xcce,3}}, {{0xcc4,2},{0x138e,4}}, {{0x127f,4},{0x106ca,4}}, {{0x74bd,5},{0xccb,2}}, + {{0x5f42,7},{0xeee,3}}, {{0xcc7,1},{0xee9,2}}, {{0x115e,11},{0xe69,5}}, {{0x3d71,8},{0xeee,3}}, + {{0xef7,4},{0x2075,3}}, {{0x4853,3},{0xf0d,2}}, {{0xede,1},{0x2224,4}}, {{0x1ef7f,6},{0xcd3,2}}, + {{0x9e19,5},{0xed9,2}}, {{0x1ca54,6},{0xec6,3}}, {{0x124c,6},{0x63cf,5}}, {{0xf24,2},{0x1e8b,3}}, + {{0x251f,6},{0xf194,3}}, {{0x112b8,5},{0x157b,3}}, {{0xe25,2},{0x29f3,3}}, {{0x750b,8},{0xcce,2}}, + {{0x5047,9},{0x128c,4}}, {{0xe5e,2},{0xec6,3}}, {{0x12a1,11},{0x2477,3}}, {{0x1bbf,5},{0x5,1}}, + {{0x39d5,5},{0xf7a,2}}, {{0xeab,2},{0xec6,3}}, {{0x4775,2},{0xe0a,1}}, {{0x129d4,6},{0x127c,3}}, + {{0x17d5a,5},{0x1c8a,4}}, {{0x105f,3},{0x9a4,3}}, {{0x2240,4},{0xe11,1}}, {{0xf1d,2},{0xed6,2}}, + {{0x113c,5},{0xec6,3}}, {{0x18b10,7},{0xcc3,2}}, {{0xc95f,8},{0xec6,3}}, {{0xe89,2},{0xf20,2}}, + {{0x6644,6},{0x809a,3}}, {{0x6241,6},{0xe6b,4}}, {{0x10e7,11},{0x10f2,6}}, {{0x57cd,3},{0xe11,1}}, + {{0x3567,8},{0x10f2,5}}, {{0x5117,5},{0xe989,5}}, {{0x126b4,7},{0xcc9,2}}, {{0x11d99,5},{0xed5,3}}, + {{0x478f,3},{0x2792d,4}}, {{0x3a1b,5},{0x3abf,4}}, {{0x12ed4,7},{0xed6,2}}, {{0xf89,3},{0x4618,4}}, + {{0xb409,6},{0x4bef,3}}, {{0xcbd,1},{0x1e40,4}}, {{0x69df,9},{0xe11,1}}, {{0x2bc7,4},{0x6e53,4}}, + {{0x8,1},{0xee9,2}}, {{0xe97,3},{0x14ff,3}}, {{0xe2f,1},{0xfa5,2}}, {{0x1152b,5},{0x11530,6}}, + {{0xf0a,3},{0x1059,3}}, {{0xef7,3},{0x1062,2}}, {{0x1ff7,3},{0x1d770,3}}, {{0x18232,5},{0xeb4,2}}, + {{0x1857,4},{0xef5,2}}, {{0x1977,4},{0xb,1}}, {{0x17ed6,6},{0xe1c,3}}, {{0xbccd,4},{0x1c311,5}}, + {{0x4ef5,4},{0x113f,2}}, {{0xe71,1},{0xe95,2}}, {{0x4597,5},{0x138e,4}}, {{0x2af9f,2},{0xe0f,1}}, + {{0x6dae,8},{0xf7a,2}}, {{0x7108,5},{0x10b9,3}}, {{0x12c3,5},{0x10ec,6}}, {{0x1e08,6},{0xcc1,1}}, + {{0xe5b,3},{0xe6c,3}}, {{0x2287b,6},{0xa,2}}, {{0x111a,3},{0xc6cd,4}}, {{0x4781,3},{0xe21,1}}, + {{0x2b78,4},{0x11440,4}}, {{0xee4,4},{0x101f,3}}, {{0xe4a8,5},{0x45c7,2}}, {{0xf89,3},{0x1cd3,2}}, + {{0x1ab01,6},{0xec6,3}}, {{0x94ad,5},{0xcd58,5}}, {{0xff0a,6},{0x1265,5}}, {{0xedd,1},{0x29f3,3}}, + {{0x1025,1},{0x8,1}}, {{0xe83,3},{0x1bef,2}}, {{0x1007,6},{0xef3,4}}, {{0xf0d,2},{0xb,1}}, + {{0x16a7,3},{0xef3d,7}}, {{0x1153,2},{0x14a2,3}}, {{0x115e,5},{0x36ca,5}}, {{0xcb8,1},{0xdc6f,4}}, + {{0x7156,4},{0x1ebf,3}}, {{0x1747,4},{0xe0d,2}}, {{0x1ff7,3},{0x6fe1,3}}, {{0x1fe8,5},{0xfdd,4}}, + {{0xf0a,3},{0xcd3,2}}, {{0xcc8,1},{0xe7f,2}}, {{0xfcb,2},{0xf84,5}}, {{0x10cb,3},{0xe31,2}}, + {{0x246a3,5},{0xe0a,1}}, {{0xf0a,3},{0x1040,3}}, {{0xf0d,2},{0x44b3,4}}, {{0x2015,3},{0xe65,2}}, + {{0xe19,1},{0x18772,2}}, {{0x11b3,5},{0x4a5f,4}}, {{0x425d,5},{0xeea,3}}, {{0x1777,5},{0x1cfc,3}}, + {{0x12d4,3},{0xf0c,1}}, {{0x7414,3},{0xe2b,2}}, {{0x478f,3},{0x1bd67,5}}, {{0xcc8,1},{0x35a3,3}}, + {{0x5d54,5},{0x1b0d,3}}, {{0xe7d,2},{0xe7f,2}}, {{0xa701,6},{0x54eb,3}}, {{0x712f,4},{0x1ce7,4}}, + {{0x3559,4},{0xe22,2}}, {{0xe6f,3},{0x4784,4}}, {{0x56c7,5},{0x122e5,5}}, {{0x11d5,5},{0x775c,4}}, + {{0x9fe1,7},{0xc29d,3}}, {{0xb319,8},{0xe0b,4}}, {{0xe16,1},{0xe32,1}}, {{0x6171,5},{0x7948,5}}, + {{0x1577,4},{0x1189,4}}, {{0x1a66,1},{0xe21,1}}, {{0x19b7,3},{0xbb20,4}}, {{0xf57,2},{0x41e9,4}}, + {{0xe1f,3},{0x44ad,3}}, {{0x1057,1},{0xe7a,1}}, {{0x10f48,7},{0xef5,2}}, {{0x1369,2},{0x6,2}}, + {{0xccb,2},{0x9a5,2}}, {{0x1727,8},{0x2252,3}}, {{0x1467,4},{0xc342,3}}, {{0x46af,3},{0x1153,2}}, + {{0x8,1},{0xe86,2}}, {{0x3d39,5},{0x2083,4}}, {{0x58a8,5},{0x92ea,4}}, {{0xe030,6},{0x14a2,3}}, + {{0x70ad,3},{0xce96,4}}, {{0xd131,4},{0x8,2}}, {{0xb3f1,3},{0x10ba4,8}}, {{0xf77,5},{0x1c85,3}}, + {{0xecb,2},{0x1d7e,3}}, {{0x70ad,3},{0x9cad,4}}, {{0x4853,3},{0x883a,4}}, {{0x28df,8},{0xe0b,4}}, + {{0x4781,3},{0x1be9,3}}, {{0x2ae20,6},{0x6,1}}, {{0x1677,3},{0x9fb7,6}}, {{0x11b3,6},{0xe67,8}}, + {{0xf0a,3},{0x123e,3}}, {{0x5992,6},{0x3b48,7}}, {{0xe6f,4},{0x8441,4}}, {{0xf4f,1},{0x74fc,2}}, + {{0x3d55,5},{0xdc01,4}}, {{0x9f81,8},{0xcc9,2}}, {{0x1bbf,5},{0x305a,5}}, {{0x1537,4},{0x13ab0,4}}, + {{0x12064,5},{0xccb,2}}, {{0x109b,2},{0x6,1}}, {{0x4f79,3},{0x1131,3}}, {{0xcd3,2},{0xe7c,2}}, + {{0x11eee,5},{0xe71,1}}, {{0xe5b,3},{0xa385,4}}, {{0x44c5,5},{0xe78,1}}, {{0xadfd,7},{0xc29d,3}}, + {{0x10cb,2},{0x1b41,4}}, {{0x11b5,2},{0x2b89,3}}, {{0x4e8d,7},{0x1a62,3}}, {{0x2867,11},{0x1040,3}}, + {{0x1109,5},{0x51b8,4}}, {{0x155b,3},{0x6,1}}, {{0xe99,1},{0xe0b,4}}, {{0x9219,5},{0x41cc,5}}, + {{0x4781,3},{0x1569,2}}, {{0x3d39,6},{0x167f,7}}, {{0x1847,9},{0xe77,3}}, {{0x16a7,3},{0x1e65,3}}, + {{0x17c42,6},{0x1569,4}}, {{0x1e08,6},{0x12bf,4}}, {{0x1db31,2},{0xedd,1}}, {{0x10e7,5},{0xe95,2}}, + {{0xfe8,2},{0xcc3,2}}, {{0xef7,3},{0xf59,2}}, {{0x24e3,5},{0x10cb,4}}, {{0x10868,8},{0xe11,1}}, + {{0xf4db,5},{0xe69,6}}, {{0xe97,3},{0x2c85,2}}, {{0x4765,3},{0x11b5,2}}, {{0xf15,1},{0x48da,3}}, + {{0x1567,6},{0xc572,4}}, {{0xe2b,2},{0x5261,4}}, {{0x118ea,6},{0x4251,3}}, {{0x4765,3},{0x6,2}}, + {{0xc05d,4},{0xfb0,3}}, {{0xcc8,1},{0x12fd,3}}, {{0x1607,10},{0xe69,6}}, {{0xe21,1},{0xe65,2}}, + {{0x14d4c,5},{0xec5,4}}, {{0x9a6,1},{0xcd3,1}}, {{0x9a8,1},{0xf8e,3}}, {{0x10a3,3},{0x539a,7}}, + {{0xfb8,3},{0x94b5,3}}, {{0x8ccd,6},{0x8cd3,3}}, {{0x4187,3},{0xe11,1}}, {{0x442d,1},{0x175a9,3}}, + {{0x17f7,8},{0x1c6d,5}}, {{0x125d,5},{0x19583,3}}, {{0x442b,3},{0x1189,3}}, {{0xae69,5},{0x4,1}}, + {{0x73b9,5},{0xe1c,3}}, {{0x5471,9},{0xcc9,2}}, {{0x72d1,2},{0x5538,2}}, {{0x5d13,11},{0xe95,2}}, + {{0x8625,8},{0xe0b,4}}, {{0x6275,6},{0x240b,5}}, {{0x19b9,1},{0x18735,4}}, {{0x27e0,3},{0xec0,3}}, + {{0xede,1},{0x1118a,2}}, {{0xb205,7},{0x27dc,4}}, {{0x4781,3},{0xb9f4,3}}, {{0x11b5,2},{0xccd,1}}, + {{0x19b9,1},{0xe08,1}}, {{0x12d4,3},{0x6,1}}, {{0xb595,5},{0x2f5a,4}}, {{0xe0f,1},{0x78ed,2}}, + {{0x1019,6},{0xebb,3}}, {{0xe78,1},{0xfb0,2}}, {{0xcc7,1},{0x1fbe,3}}, {{0xc281,4},{0xd7a,2}}, + {{0x8,2},{0xed6,2}}, {{0x9a5,2},{0xf59,2}}, {{0x416f,5},{0xe11,1}}, {{0x4765,3},{0xed9,2}}, + {{0x21,1},{0x1347,3}}, {{0x2,1},{0xe22,2}}, {{0x5fd1,5},{0x1150,2}}, {{0x1109,5},{0xccb,2}}, + {{0xe21,1},{0x10cb,4}}, {{0x13050,7},{0xec6,3}}, {{0xc0a1,2},{0xec6,3}}, {{0x9,1},{0xec0,3}}, + {{0x6533,8},{0x13e3,4}}, {{0x9af,2},{0x2b094,2}}, {{0xb0fd,6},{0xe69,5}}, {{0x9,2},{0x2,1}}, + {{0x2a29,5},{0xf01,4}}, {{0x30311,3},{0x11,1}}, {{0x15d8c,7},{0xcc9,2}}, {{0x2ced,6},{0x9a4,3}}, + {{0xa659,5},{0x1b41,4}}, {{0xe7a,1},{0xe80,2}}, {{0x3559,4},{0xe75,2}}, {{0x9a6,1},{0x1153,2}}, + {{0x5bc1,7},{0xe69,5}}, {{0x24a3b,7},{0xe11,1}}, {{0x1b34d,6},{0xec6,3}}, {{0xe83,6},{0x1d32,3}}, + {{0xe75,2},{0xe67,2}}, {{0x20bed,3},{0xe11,1}}, {{0x4853,3},{0x442d,1}}, {{0x113c,3},{0xfcb,3}}, + {{0x10bac,5},{0x17c0,2}}, {{0x74fb,3},{0xf0c,1}}, {{0x4765,3},{0xf59,2}}, {{0x2d95,5},{0x3ee5,5}}, + {{0xcc7,1},{0xf91,3}}, {{0x6e71,8},{0x2781,5}}, {{0x2a65,7},{0x2346,8}}, {{0x2d25,8},{0xe69,5}}, + {{0x2f9b,4},{0x9,2}}, {{0x27ef,6},{0x1fbe,3}}, {{0xebe,4},{0x316e,3}}, {{0xed1,3},{0x3381,3}}, + {{0x119e2,4},{0xf7a,2}}, {{0x12bfa,6},{0x43fd,4}}, {{0x29cf,3},{0xfb0,2}}, {{0x1e9e,5},{0xdbff,6}}, + {{0x3aed,6},{0x1e40,4}}, {{0xed1,3},{0x93e6,4}}, {{0xef7,4},{0xb05c,5}}, {{0x11b3,4},{0x11d9,3}}, + {{0xeab,2},{0xcd3,1}}, {{0x3185,7},{0x138e,3}}, {{0x205a1,1},{0x3034d,2}}, {{0xbc79,7},{0xcc3,3}}, + {{0xf89,3},{0x159a,6}}, {{0xe6f,3},{0x5ea9,9}}, {{0x1677,3},{0x1d7e,3}}, {{0xb3f1,3},{0x59b4,3}}, + {{0x10b4,4},{0x8a87,6}}, {{0xe8a,2},{0xe0a,1}}, {{0xebe,4},{0x1b0f,3}}, {{0x19b7,3},{0x1130c,3}}, + {{0x9a8,1},{0xeca,3}}, {{0x9a8,1},{0xb19c,4}}, {{0x29c0,3},{0x1bf0,2}}, {{0x115e,7},{0x249f,3}}, + {{0x11e28,5},{0x138e,2}}, {{0xe1f,3},{0xe0a,1}}, {{0xb12d,6},{0x141a,2}}, {{0x17c7,10},{0xe0b,4}}, + {{0x5f90,6},{0x41bc,4}}, {{0x16a7,3},{0xffc,3}}, {{0x18b4,3},{0xf23,3}}, {{0x19b7,3},{0x80c5,3}}, + {{0x1a07,3},{0x24900,2}}, {{0x20579,1},{0x205a1,1}}, {{0xe31,2},{0xfcb,2}}, {{0x29cf,3},{0xeb4,3}}, + {{0x10361,6},{0x113f,2}}, {{0x20f6,6},{0x1c8c,5}}, {{0x12f6,4},{0xead,5}}, {{0x111a,3},{0x7417,4}}, + {{0x2df77,5},{0x57,1}}, {{0xe5b,3},{0xeee,3}}, {{0xf0d,2},{0xcd3,1}}, {{0x2768,7},{0x1fc7,3}}, + {{0xcc8,1},{0x1a9a,4}}, {{0x162c,3},{0x8,1}}, {{0xcc8,1},{0xe09,1}}, {{0xebe,4},{0xeab,2}}, + {{0x9441,5},{0x8,1}}, {{0x66fa,8},{0xe69,5}}, {{0xc40b,5},{0x30f7,2}}, {{0x1607,8},{0x12be,5}}, + {{0x11b3,5},{0x386e,5}}, {{0x478f,3},{0xef3d,7}}, {{0x7414,3},{0xe0a,1}}, {{0x3559,5},{0xfdf,4}}, + {{0xe6f,3},{0xcd2,2}}, {{0xeab,2},{0x1ffa,3}}, {{0xf0c,1},{0xcbd,1}}, {{0x4c03,8},{0x1c14,5}}, + {{0xf03,2},{0xf4a,5}}, {{0x3739,2},{0xcba,2}}, {{0xa2d5,9},{0xcc9,2}}, {{0x6185,3},{0x10e2,5}}, + {{0xcc1,1},{0x11a6,2}}, {{0x2,1},{0xe0d,2}}, {{0x11373,4},{0xf11,1}}, {{0xbb7d,5},{0x11e71,4}}, + {{0x2aa1,9},{0x10f2,5}}, {{0x12e5,3},{0x1f444,2}}, {{0xccd,1},{0xec7,2}}, {{0xd131,4},{0x4fa8,3}}, + {{0x4765,3},{0x16935,5}}, {{0xf59,3},{0x12a9,3}}, {{0x478f,3},{0xe65,2}}, {{0x1327,1},{0xcd6,1}}, + {{0xf0a,3},{0x50ce,5}}, {{0x10b9,3},{0x3,1}}, {{0x63ee,9},{0xec6,3}}, {{0x3eb3,8},{0xe09,1}}, + {{0xe97,3},{0xeb4,2}}, {{0x70ad,3},{0xf18,2}}, {{0x1a66,1},{0x2454,3}}, {{0x9a8,1},{0xe2b,2}}, + {{0x3089,5},{0xe7f,3}}, {{0x93e1,7},{0xec6,3}}, {{0x10a3,4},{0x9a5,2}}, {{0xf24,2},{0x3695,4}}, + {{0xcb8,1},{0x9bd1,3}}, {{0x112b,12},{0x1de7,3}}, {{0x9b49,6},{0x1523,4}}, {{0x2c37,9},{0xf84,5}}, + {{0x2858,4},{0x50c0,4}}, {{0xefb,3},{0xe09,1}}, {{0x1a66,1},{0x8fa3,6}}, {{0x445b,2},{0xedd,1}}, + {{0x1a07,5},{0x8,1}}, {{0x4765,3},{0xcbf,2}}, {{0x28b2,5},{0x6ede,8}}, {{0x2ba5,1},{0x19b9,1}}, + {{0x19b7,3},{0xfcb,2}}, {{0xb451,5},{0x13e1,5}}, {{0x4326,2},{0xcbf,2}}, {{0xe88,3},{0xf03,4}}, + {{0x1081,7},{0xe2b,2}}, {{0x1cdc,6},{0xe13,3}}, {{0x3a7d,6},{0x3b49,6}}, {{0x2858,5},{0x1150,2}}, + {{0x2d5d,10},{0x14f9,3}}, {{0x41a7,5},{0xe11,2}}, {{0x11a6,2},{0x4745,4}}, {{0x17ec2,5},{0x2bb4,5}}, + {{0x12e5,3},{0x5,2}}, {{0x4853,3},{0xe21,1}}, {{0x1943,2},{0xcc9,2}}, {{0x4765,3},{0xedd,1}}, + {{0xf15,1},{0x8428,3}}, {{0xcc8,1},{0x1150,2}}, {{0x46af,3},{0x1d770,3}}, {{0x45f2,2},{0xf59,2}}, + {{0x1047,3},{0xf7a,2}}, {{0x114d,4},{0x2e2c,3}}, {{0x1369,2},{0x286d,3}}, {{0x2ba5,1},{0x109b,2}}, + {{0x1777,12},{0xec6,3}}, {{0x20f6,5},{0xdba8,5}}, {{0xf11,1},{0xf11,1}}, {{0x2dcd,10},{0xcc9,2}}, + {{0xe5b,3},{0xfa6,3}}, {{0x1ff7,3},{0x149f,3}}, {{0xef7,4},{0xf9d,3}}, {{0xe32,1},{0x296f,3}}, + {{0x60d5,7},{0xcc9,2}}, {{0x120c,3},{0xcc9,2}}, {{0x1f81c,5},{0xe0c,3}}, {{0x3199,3},{0xcc7,1}}, + {{0x824d,5},{0xfe8,2}}, {{0x2,2},{0xccd,1}}, {{0x1e9e,5},{0x15cf,7}}, {{0xf86,2},{0xe78,1}}, + {{0xc05d,4},{0xec6,3}}, {{0x8,1},{0x9a8,2}}, {{0x16eb2,6},{0x4,1}}, {{0xb74,1},{0x20579,1}}, + {{0x28b3a,1},{0x7905,1}}, {{0x1da0f,4},{0x70a6,3}}, {{0x8409,8},{0x286d,3}}, {{0x445b,2},{0x4767,1}}, + {{0x1647,5},{0x1059,3}}, {{0x9a6,1},{0x1e1b,10}}, {{0x29de,4},{0xe336,7}}, {{0xcc1,1},{0xcc7,1}}, + {{0xe7d,2},{0x6,1}}, {{0xe97,3},{0x309c,4}}, {{0x101f,3},{0xcce,2}}, {{0x1968b,5},{0x12b4,4}}, + {{0x12d4,3},{0x1089,3}}, {{0xcc6,2},{0x15d1,5}}, {{0x3a29,4},{0x78cd,3}}, {{0x2015,3},{0x2,1}}, + {{0x8,1},{0xe8a,2}}, {{0x4773,4},{0x14a3c,4}}, {{0x27ef,4},{0x1722,5}}, {{0xe22,2},{0x11b5,2}}, + {{0x9c21,8},{0xec6,3}}, {{0x65f6,6},{0xe77,2}}, {{0xf11,1},{0xe19,1}}, {{0xe0b,2},{0x2,1}}, + {{0x18016,5},{0x11284,5}}, {{0x24623,5},{0xdfca,3}}, {{0x2393b,5},{0xe95,2}}, {{0xe88,3},{0x4,1}}, + {{0x6b8c,5},{0xa348,5}}, {{0xa85d,9},{0xcc9,2}}, {{0x1537,4},{0xe2b,2}}, {{0x16d7,6},{0xfcb,2}}, + {{0x10c5,4},{0xee9,2}}, {{0x2d79,4},{0x9,3}}, {{0x19b9,1},{0x1150,2}}, {{0x1967,3},{0x6,1}}, + {{0x22d6,10},{0x1258,5}}, {{0x314,2},{0xf,1}}, {{0xe11,1},{0x296f,3}}, {{0x59c6,7},{0xe69,6}}, + {{0x114d,5},{0xe32,1}}, {{0xcc8,1},{0x883a,4}}, {{0xf69,3},{0x17dc,3}}, {{0xe33,1},{0xe99,1}}, + {{0xccb,2},{0xfe0,2}}, {{0xe0c,3},{0xcc7,1}}, {{0x29cf,3},{0xe25,2}}, {{0x2bd5,7},{0x1085,3}}, + {{0x4765,3},{0xe09,1}}, {{0x1274a,7},{0xe11,1}}, {{0x2d11,3},{0x5,1}}, {{0x4781,3},{0x1267,4}}, + {{0x7795,4},{0x15d1,5}}, {{0xcc7,1},{0x5538,2}}, {{0x445b,2},{0xe99,1}}, {{0x48dd,6},{0x28f8,5}}, + {{0x19f7,4},{0x2e29,3}}, {{0xb,1},{0x293e,5}}, {{0x4f43,7},{0x13e3,4}}, {{0x3d39,5},{0xccd,1}}, + {{0xe11,2},{0xe67,2}}, {{0xcc8,1},{0xd15f,3}}, {{0x1cfa,5},{0x1722,5}}, {{0x12d4,3},{0xf18,2}}, + {{0x478f,3},{0x155b,3}}, {{0xfd1,8},{0xcd3,1}}, {{0xe71,1},{0x1593,3}}, {{0x9a6,1},{0x136f,2}}, + {{0xb289,7},{0xec3,3}}, {{0xf89,3},{0x1ebf,3}}, {{0x9ecd,8},{0xe6b,3}}, {{0x11a34,8},{0xe67,2}}, + {{0x2ba5,1},{0x49a6,3}}, {{0x20f6,5},{0x10cb,4}}, {{0x3e6d,8},{0x14ab,4}}, {{0xef7,9},{0x1ebe,4}}, + {{0xf8d,2},{0x1f19,5}}, {{0xb3f1,3},{0xac0d,3}}, {{0xf16,2},{0xa,2}}, {{0x10c67,6},{0x10c6d,5}}, + {{0xb595,5},{0xcc3,2}}, {{0x1a07,3},{0x10d2,4}}, {{0x2ca1e,2},{0x7416,1}}, {{0x478f,3},{0xa953,5}}, + {{0x8f19,8},{0xfb0,2}}, {{0x112b,4},{0x1252,3}}, {{0x12e5,3},{0xfb0,2}}, {{0xb,1},{0x4a01,3}}, + {{0xcc7,1},{0xe71,1}}, {{0xf4f,1},{0x4017,6}}, {{0x3c67,7},{0x72d3,3}}, {{0x1789,4},{0xeee,3}}, + {{0x7d61,8},{0xec6,3}}, {{0x392d,6},{0xeabd,5}}, {{0x118b3,5},{0x5fe3,6}}, {{0x1967,3},{0xfb0,3}}, + {{0xa5d5,8},{0x1059,3}}, {{0x4e0b,8},{0xec6,3}}, {{0xcc7,1},{0xe0c,3}}, {{0xc05d,5},{0xe1b,3}}, + {{0xb396,2},{0xcd3,1}}, {{0x16d7,6},{0x14ff,5}}, {{0x127f,5},{0xf80,2}}, {{0x1019,4},{0xffea,7}}, + {{0x1fd1a,6},{0xe0d,2}}, {{0x115e,7},{0x1ae7,4}}, {{0xe1f,3},{0xcba,2}}, {{0x255b,9},{0xe6b,3}}, + {{0x28733,5},{0xe11,1}}, {{0xe1f,3},{0x5e94,5}}, {{0xe1b,2},{0xfb8,3}}, {{0x2ba5,1},{0x442d,1}}, + {{0x1152b,4},{0xe22,2}}, {{0xe61,3},{0x174b,3}}, {{0x1692,2},{0xe32,1}}, {{0x2afb6,3},{0xf8,2}}, + {{0x113f,2},{0x66c2,3}}, {{0x7602,4},{0xe22,2}}, {{0x28c1,4},{0xb149,7}}, {{0x1518e,6},{0x5536,4}}, + {{0x10b6a,5},{0xfc7,3}}, {{0xf02,2},{0x6,1}}, {{0x3965,6},{0x9497,6}}, {{0x15f7,4},{0xccb,2}}, + {{0x2cddd,5},{0xe19,1}}, {{0x10361,6},{0xe11,1}}, {{0xf8b9,8},{0xec6,3}}, {{0xe7a,1},{0x11187,2}}, + {{0x46af,3},{0x1130c,3}}, {{0x1a66,1},{0xa953,5}}, {{0xe11,2},{0xe8a,2}}, {{0xcc3,2},{0xf35,2}}, + {{0x1025,1},{0xcc3,3}}, {{0x1024,2},{0xf91,3}}, {{0x70ad,3},{0xe21,1}}, {{0x16a48,7},{0xcc9,2}}, + {{0x5172,7},{0x1702,5}}, {{0x4765,3},{0x1ebf,3}}, {{0xf0a,3},{0xe33,1}}, {{0x10b9,2},{0xec6,3}}, + {{0x10a3,3},{0x158f,3}}, {{0x1967,3},{0x219f4,4}}, {{0xe7f,2},{0xe77,3}}, {{0x16a7,3},{0x1150,2}}, + {{0xf0a,3},{0xeee,3}}, {{0x27fe,7},{0x141f,4}}, {{0x16a7,3},{0xed6,2}}, {{0x39bd,4},{0xeed,4}}, + {{0x252ab,4},{0xe22,2}}, {{0xe99,1},{0x74fc,2}}, {{0x9a8,1},{0x5e94,5}}, {{0x11c4,10},{0x22fe,5}}, + {{0xe31,2},{0xe89,3}}, {{0x1967,3},{0x217f4,5}}, {{0x4781,3},{0x24bc5,2}}, {{0xcf21,5},{0x1632,5}}, + {{0x1c676,6},{0x49bf,3}}, {{0xe2b,2},{0x318e,5}}, {{0x2019a,7},{0xe6b,2}}, {{0x1567,3},{0x56fe,5}}, + {{0xed1,3},{0x2f94,3}}, {{0x1dee,2},{0x45c7,2}}, {{0x14a2,3},{0xf7a,2}}, {{0x189b,6},{0x14e1,6}}, + {{0x1fd9,13},{0xf92,2}}, {{0xe67,2},{0x14ab,4}}, {{0x115a,3},{0x1d32,3}}, {{0x255b,6},{0x1790,6}}, + {{0xe6f,3},{0xed38,5}}, {{0xccd,1},{0x3118,5}}, {{0x2f9b,8},{0x1b80,3}}, {{0x9a8,1},{0xf12,3}}, + {{0xe19,1},{0x7416,1}}, {{0xebe,4},{0xecc,3}}, {{0x2966,4},{0x49a6,3}}, {{0x536d,9},{0xeed,2}}, + {{0x10c5,4},{0x19a88,5}}, {{0x3e51,7},{0xcd3,2}}, {{0x1677,3},{0x9372,3}}, {{0x1bbf,4},{0x7e55,7}}, + {{0xf77,3},{0x1156,3}}, {{0x4f36,5},{0xf35,3}}, {{0xa10d,8},{0xf91,3}}, {{0xbc79,7},{0x9ff4,5}}, + {{0x5,2},{0xe32,1}}, {{0x27e0,3},{0x413d,5}}, {{0x27e0,4},{0x4a86,4}}, {{0x10bae,3},{0x17c0,2}}, + {{0xe97,3},{0xcc9,2}}, {{0x110d4,6},{0x1150,2}}, {{0x111a,3},{0x49a6,3}}, {{0x7525,9},{0x5ee3,4}}, + {{0xe11,1},{0x6,1}}, {{0x1969,1},{0xedd,1}}, {{0xccb,2},{0xf20,2}}, {{0x2c54d,4},{0x19b9,1}}, + {{0x113f,2},{0x9a9,2}}, {{0x30e6b,3},{0x30a4e,1}}, {{0x9525,6},{0xcc9,2}}, {{0xe71,1},{0x2e2c,3}}, + {{0x3185,7},{0xd7ec,4}}, {{0x9b01,8},{0x9b09,4}}, {{0xa1f1,7},{0x1059,3}}, {{0x3d39,6},{0xe89,2}}, + {{0x28c1,4},{0x51c8,5}}, {{0xeab,2},{0xeea,3}}, {{0x16a7,3},{0x809a,3}}, {{0x10cb4,4},{0x9a6,1}}, + {{0x2b28,8},{0xebb,3}}, {{0x74f9,2},{0x1db3b,2}}, {{0x1542c,7},{0xe11,1}}, {{0x46af,3},{0x2d3bc,2}}, + {{0xaf2,4},{0xaf4,1}}, {{0x47c7,5},{0xccd,1}}, {{0x127e0,5},{0xe67,2}}, {{0x1469,3},{0x146c,5}}, + {{0x12e5,3},{0x31f8,3}}, {{0x11d0a,5},{0xcbd,1}}, {{0xe5b,6},{0x4eef,5}}, {{0x1967,3},{0x1059,3}}, + {{0x33d1,8},{0x1b41,4}}, {{0x951c,3},{0xeab,2}}, {{0xf02,2},{0x288b,2}}, {{0x3694,3},{0xf35,2}}, + {{0x7965,9},{0xf7a,2}}, {{0xf16,2},{0xe09,1}}, {{0x1d72,10},{0xcc9,2}}, {{0x11e49,5},{0x4051,3}}, + {{0xb649,5},{0x5136,5}}, {{0xfc8,3},{0x1025,1}}, {{0x3b5d,5},{0x3b62,4}}, {{0x11ad,3},{0x2c15,3}}, + {{0x19a7,4},{0xeee,3}}, {{0x2fb7,7},{0x2fbe,5}}, {{0xd,1},{0x260,2}}, {{0x112b,4},{0x5849,4}}, + {{0x14a7,8},{0xec3,3}}, {{0x2df3b,4},{0x666,2}}, {{0x1a07,3},{0xf1d,2}}, {{0x13a7,7},{0x1689,6}}, + {{0x2948,3},{0x2ed13,2}}, {{0xcc7,1},{0x2d11,3}}, {{0x46af,3},{0x2c59,4}}, {{0xcb8,1},{0x8428,3}}, + {{0x1bfb,7},{0x14ff,3}}, {{0x5dfd,6},{0xe11,1}}, {{0xf205,4},{0x5,1}}, {{0x1687,4},{0x128c,4}}, + {{0x1059,3},{0xe25,2}}, {{0x7ff5,5},{0x174b,3}}, {{0x2252,3},{0xe95,2}}, {{0x12e5,3},{0xff70,4}}, + {{0x4597,4},{0x11b5,2}}, {{0x4ce0,6},{0x26ae,6}}, {{0x399d,9},{0x27e9,3}}, {{0x11a6,3},{0xed6,2}}, + {{0xf77,3},{0x59b4,3}}, {{0x4519,4},{0xe22,2}}, {{0x450b,4},{0xcd3,2}}, {{0x5199,8},{0x874d,4}}, + {{0x3a29,4},{0xcc9,2}}, {{0x5,1},{0x142a,3}}, {{0x2de75,3},{0x5bc,2}}, {{0xed5,3},{0xe0a,1}}, + {{0x2f71,4},{0x125fb,5}}, {{0xe08,1},{0xe21,1}}, {{0x29c0,3},{0xeb5,2}}, {{0x18dea,5},{0x73d6,2}}, + {{0x1ebc,6},{0xe95,2}}, {{0xea6a,5},{0xcce,2}}, {{0x1081,7},{0x1b8a,7}}, {{0x2231,5},{0x2236,7}}, + {{0x2c3b,5},{0xed9,2}}, {{0xeacd,5},{0x310f,6}}, {{0xe37,4},{0x2b094,2}}, {{0x1b413,6},{0xcc3,2}}, + {{0x2ba5,1},{0x15fc,2}}, {{0xaaf,2},{0xb74,2}}, {{0x442d,1},{0x1150,2}}, {{0x4,1},{0xe0b,4}}, + {{0x11a6,3},{0x11a9,5}}, {{0xccb,2},{0x12fe,2}}, {{0x6cc4,4},{0x8441,4}}, {{0x21aa,7},{0x2fcc,4}}, + {{0x27e0,3},{0x1037a,7}}, {{0xf1a,2},{0xe09,1}}, {{0x1153,2},{0x101f,2}}, {{0xcda0,4},{0x11a6,2}}, + {{0x307ba,2},{0x205a1,1}}, {{0x1ebc,5},{0xcbf,2}}, {{0x4,1},{0xcc6,2}}, {{0xfa5,2},{0x1ebf,3}}, + {{0x4225,4},{0xeb4,10}}, {{0x1367,3},{0x20664,5}}, {{0x2e271,3},{0x1357,1}}, {{0x1df9,5},{0xfb8,3}}, + {{0xd48,6},{0xd48,6}}, {{0xe19,1},{0x1eb2,3}}, {{0x1467,4},{0xe22,2}}, {{0x32ff,7},{0x1e3b,4}}, + {{0x255b,6},{0x990b,4}}, {{0x2e271,3},{0x30357,2}}, {{0x5,1},{0x101f,2}}, {{0x16a7,3},{0x8,1}}, + {{0x8439,6},{0xe95,2}}, {{0x255b,8},{0x13e4,3}}, {{0x17b0c,7},{0xe67,2}}, {{0xf77,5},{0x2083,4}}, + {{0x2240,4},{0xce40,5}}, {{0x29cf,3},{0xe1c,3}}, {{0xf15,1},{0x8666,2}}, {{0xebe,4},{0x97ed,6}}, + {{0x11767,5},{0x1152,3}}, {{0x5b4c,7},{0x3324,5}}, {{0x19b9,1},{0xcc6,2}}, {{0xdb1e,5},{0x943a,5}}, + {{0x1877,5},{0x583b,5}}, {{0x236c,4},{0xcc8,3}}, {{0x12f6,7},{0xf86,2}}, {{0xef7,3},{0x492e,3}}, + {{0x2058b,3},{0x69,1}}, {{0x1007,6},{0xfc5b,5}}, {{0xf77,4},{0xb1d0,5}}, {{0x1969,1},{0xed9,2}}, + {{0x2a1b2,4},{0x2d4e9,2}}, {{0x8ce5,9},{0xebb,3}}, {{0x5699,4},{0xec6,3}}, {{0x7115,4},{0x11cb,3}}, + {{0x486f,4},{0xef5,2}}, {{0x307bb,1},{0x2e27d,1}}, {{0x1208,7},{0xeea,3}}, {{0x60f3,4},{0xe6b,4}}, + {{0x5b4c,7},{0x251b,4}}, {{0x60ef,8},{0x1dc7,5}}, {{0x1687,4},{0x155e,3}}, {{0x12830,6},{0x1040,3}}, + {{0x1cf0c,6},{0xcc9,2}}, {{0x1140,2},{0x8,1}}, {{0x2e193,4},{0x45,1}}, {{0x1969,1},{0xf01,4}}, + {{0xfbf,5},{0xfc4,7}}, {{0x169d,4},{0x127c,3}}, {{0xe6f,3},{0x2c86,2}}, {{0x2c15,3},{0x149f,3}}, + {{0xe97,3},{0x1153,2}}, {{0x1290,11},{0x10f2,5}}, {{0x1fd9,13},{0x5,1}}, {{0xaaf,2},{0x1d3c,3}}, + {{0x12d4,3},{0xcd3,1}}, {{0xe63f,6},{0x13e3,4}}, {{0x17dbe,7},{0xe1c,3}}, {{0x6d46,6},{0x10b7,2}}, + {{0x52f8,8},{0xec6,3}}, {{0x40c7,9},{0xed6,2}}, {{0x5fd1,5},{0x2,1}}, {{0x1766e,5},{0x667e,4}}, + {{0x5f83,6},{0xee22,5}}, {{0x7385,6},{0x33a1,4}}, {{0xf77,5},{0x6b2b,6}}, {{0xcc7,1},{0xe6c,3}}, + {{0x2ffd,6},{0xcc7,2}}, {{0x1367,3},{0xe22,3}}, {{0x592a,9},{0x1392,3}}, {{0x1969,1},{0xe99,1}}, + {{0x27e0,3},{0xf0d,2}}, {{0x2240,4},{0x15af,3}}, {{0x79c5,8},{0xe0a,1}}, {{0xf77,3},{0x2158c,4}}, + {{0xfb1,3},{0x123e,3}}, {{0x3e0e,3},{0xec6,3}}, {{0x10b9,2},{0xe22,2}}, {{0xfb0,2},{0xbfca,3}}, + {{0xdd8,6},{0xb74,1}}, {{0xf0d1,8},{0xec6,3}}, {{0x116d8,5},{0x1829b,5}}, {{0x8829,6},{0x10f4,4}}, + {{0xf0c,1},{0xe0f,1}}, {{0x309d,3},{0x2872,4}}, {{0x488b,4},{0x11b5,2}}, {{0x11187,2},{0xedd,1}}, + {{0x1969,1},{0xf70,2}}, {{0x101b4,7},{0xe95,2}}, {{0xcd2,2},{0xe78,2}}, {{0x4e18,6},{0x1062,2}}, + {{0x2eb35,4},{0x2e273,1}}, {{0xaaf,2},{0xb34,2}}, {{0x1019,4},{0xf24,2}}, {{0x1677,4},{0x1025,1}}, + {{0x1df9,5},{0x1664,2}}, {{0x2966,4},{0x2dd7,4}}, {{0x20382,2},{0xedd,1}}, {{0x1062,2},{0xcd3,2}}, + {{0x9a6,1},{0x1790,3}}, {{0x8,2},{0xe09,1}}, {{0x426b,8},{0xe92,3}}, {{0x4516,3},{0x2e2c,3}}, + {{0xe0a,1},{0x18fce,6}}, {{0x2b84,2},{0x1054,3}}, {{0x1c1e,4},{0x1054,3}}, {{0xf89,3},{0x22b2,3}}, + {{0xeb4,3},{0xec6,3}}, {{0x442b,3},{0x2,1}}, {{0xe19,1},{0x1cb1,3}}, {{0x7414,3},{0x6,1}}, + {{0xcce,2},{0x10cb,2}}, {{0x52eb,8},{0x13c0,4}}, {{0x127f,4},{0x6ec3,7}}, {{0x80c1,8},{0x12a9,3}}, + {{0x56c7,5},{0x2364,4}}, {{0x74f9,2},{0x4461,2}}, {{0xc05d,4},{0x1ffee,5}}, {{0x5,1},{0x1be9,3}}, + {{0x3559,4},{0x5e94,5}}, {{0xc2d7,7},{0xe11,1}}, {{0x41b5,7},{0xed6,2}}, {{0x109,2},{0x9f,1}}, + {{0xf0f,2},{0xed9,2}}, {{0x11ec2,5},{0xed5,3}}, {{0xe5b,3},{0x2252,3}}, {{0xedd,1},{0x3,2}}, + {{0x314d,8},{0x1de7,3}}, {{0x959d,4},{0xed6,2}}, {{0x173d0,5},{0xcbf,2}}, {{0x2bc7,5},{0xefb,3}}, + {{0xcc7,1},{0xcd3,1}}, {{0x19b9,1},{0xf0f,2}}, {{0x1967,3},{0xe09,1}}, {{0xccd,1},{0xcd3,2}}, + {{0x12ed4,7},{0xf91,3}}, {{0x27e0,3},{0xf5dd,6}}, {{0x15422,5},{0x34d7,4}}, {{0xab1,1},{0x307bb,1}}, + {{0x1497,11},{0x14a2,5}}, {{0x2966d,3},{0x6,1}}, {{0x1648a,7},{0xec6,3}}, {{0x1252e,4},{0x2477,3}}, + {{0x1007,5},{0x1f38,1}}, {{0x152,2},{0x8d,1}}, {{0x4781,3},{0x25756,5}}, {{0x2b89,3},{0x138e,2}}, + {{0x2399,10},{0x1be9,3}}, {{0xf22,2},{0x2d11,3}}, {{0xe2b,2},{0xf0d,2}}, {{0x74fc,2},{0xedd,1}}, + {{0x4781,3},{0xed38,5}}, {{0xe32,1},{0x1849,3}}, {{0x1722c,6},{0x17232,4}}, {{0x149f,3},{0x14a2,3}}, + {{0x11a6,2},{0xe13,3}}, {{0xe5b,3},{0x44ad,4}}, {{0x1b413,6},{0xe6c,3}}, {{0x4,2},{0x12a3,3}}, + {{0x56c7,5},{0xf93,8}}, {{0x2bc7,9},{0xf91,3}}, {{0x1467,4},{0x8cd3,3}}, {{0x93e1,7},{0xf91,3}}, + {{0xcbd,1},{0x1ffa,4}}, {{0x6c42,6},{0xe11,1}}, {{0x4287,5},{0x428c,7}}, {{0xe1f,3},{0xe09,1}}, + {{0x27e0,3},{0x15390,3}}, {{0xe31,2},{0xed9,2}}, {{0x26e1,8},{0xfa9,4}}, {{0xc015,4},{0x1a71,3}}, + {{0x16a7,3},{0xcc9,2}}, {{0x10587,5},{0x1d75,3}}, {{0x1a66,1},{0xe0f,1}}, {{0x1397,5},{0x1d7d,3}}, + {{0x1777,5},{0xb,1}}, {{0x5722,5},{0x29f7,3}}, {{0x647d,8},{0xe6b,4}}, {{0x1727,12},{0xcc9,2}}, + {{0x12e5,5},{0x13ee,7}}, {{0x7a91,6},{0xec6,3}}, {{0xf15,1},{0xedd,1}}, {{0xe7d,2},{0xebb,3}}, + {{0x127ea,6},{0xe11,1}}, {{0x1b4c7,5},{0xf91,3}}, {{0xd131,4},{0x2ca3,4}}, {{0x1b5d5,6},{0xcc9,2}}, + {{0x1847,5},{0x1d2f,6}}, {{0xf65,4},{0x1ad3,6}}, {{0xf9d,3},{0x1edcc,3}}, {{0x10b4,6},{0x2236,3}}, + {{0x736b,5},{0x1e8b,3}}, {{0xeab,2},{0x6,1}}, {{0x41a7,5},{0x1b80,3}}, {{0x19df6,5},{0xe31,2}}, + {{0xe08,1},{0xa,2}}, {{0x1288,4},{0xec6,3}}, {{0x1db33,2},{0xe21,1}}, {{0x1367,3},{0x168b,4}}, + {{0x2510,4},{0xcc1,2}}, {{0x3479,8},{0x9389,4}}, {{0x264b,10},{0xf72,5}}, {{0x2a47,3},{0x10ba,6}}, + {{0xb1a5,6},{0x14e1,6}}, {{0x2501,5},{0xcce,2}}, {{0x16322,6},{0xfb8,3}}, {{0x29cf,3},{0xe2b,2}}, + {{0xf11,2},{0x22877,4}}, {{0x205a5,1},{0x205a5,1}}, {{0xf89,3},{0x15399,6}}, {{0x3a29,5},{0xf0f,2}}, + {{0xf0c,1},{0x1c85,3}}, {{0x1937,5},{0x2f92,4}}, {{0x111a,3},{0xec3,3}}, {{0x4538,3},{0x1150,2}}, + {{0xe0b,2},{0x1a9a,4}}, {{0x13960,5},{0xec6,3}}, {{0xfa5,2},{0xe89,2}}, {{0xcd2,2},{0xe5e,2}}, + {{0x181b,3},{0xe0a,1}}, {{0x4137,5},{0x910c,4}}, {{0xcc8,1},{0xa,2}}, {{0x7ad9,6},{0xfdd,4}}, + {{0x111f6,4},{0x2d11,3}}, {{0x1e4cf,6},{0xec6,3}}, {{0xe71,1},{0x12be,5}}, {{0x5e3e,7},{0xe8a,2}}, + {{0x4fab,6},{0x59b2,5}}, {{0x5538,2},{0x6,1}}, {{0xccd,1},{0x2d11,4}}, {{0xede,1},{0xe16,1}}, + {{0x46af,3},{0xf7a,2}}, {{0x17344,6},{0xe6b,2}}, {{0x7a79,6},{0xe69,6}}, {{0x488b,4},{0xe91,2}}, + {{0x101f,2},{0xed6,2}}, {{0xc27b,2},{0x18ec8,2}}, {{0xe1f,3},{0x6,2}}, {{0xc05d,4},{0xf20,2}}, + {{0x19b7,3},{0xf1f,3}}, {{0x1a07,3},{0x18776,2}}, {{0x125d,6},{0x3153,7}}, {{0xc88e,6},{0x1040,3}}, + {{0x29c0,3},{0xcbb,2}}, {{0x4ee8,7},{0x4eef,5}}, {{0x12d4,3},{0xe16,1}}, {{0x3a1b,5},{0xcc8,1}}, + {{0x11b5,2},{0xccd,4}}, {{0x24f2,5},{0x30ad,6}}, {{0xeb5,2},{0xe11,2}}, {{0xccb,2},{0x5,1}}, + {{0x1567,3},{0xe32,1}}, {{0x18034,6},{0x33d3,2}}, {{0xaec9,6},{0xec6,3}}, {{0x143c,4},{0xe6b,4}}, + {{0x2fe1,9},{0xe77,3}}, {{0xcd6,1},{0xb74,1}}, {{0x3bcd,4},{0x20bfd,4}}, {{0x70ad,3},{0xcd3,1}}, + {{0x27e0,3},{0x4a86,4}}, {{0x46af,3},{0x1143c,8}}, {{0xe6f,3},{0x1ba9,3}}, {{0x4853,3},{0xe09,2}}, + {{0x14158,6},{0xe95,2}}, {{0xd194,8},{0xcc9,2}}, {{0x11d9,3},{0x4,1}}, {{0x2be3,5},{0x5dd0,3}}, + {{0x12e5,4},{0xe0d,2}}, {{0x70ad,3},{0x4618,4}}, {{0xf15,1},{0xe19,1}}, {{0xf65,4},{0xfa2,3}}, + {{0xcf00,6},{0xed5,3}}, {{0x1997,4},{0x5d31,6}}, {{0xe6f,4},{0xcd3,1}}, {{0x19b7,3},{0x1692,2}}, + {{0x4d6f,9},{0xe6b,4}}, {{0x9ef1,10},{0xe95,2}}, {{0x4ef5,4},{0x492e,3}}, {{0x6ceb,7},{0xadec,5}}, + {{0x125d,8},{0xec6,3}}, {{0x52f8,6},{0x1380,5}}, {{0xf0c,1},{0x74fc,2}}, {{0x1c73,5},{0x1b69,3}}, + {{0x1007,7},{0xf6e,7}}, {{0xe,1},{0x10a,2}}, {{0x16d7,6},{0x101e,4}}, {{0x2948,3},{0x1046,3}}, + {{0xf7a,2},{0x7998,4}}, {{0x4693,5},{0x15dc,3}}, {{0x2403b,5},{0x7913,2}}, {{0x43f3,10},{0x1b80,3}}, + {{0x19f9,2},{0x14ab,4}}, {{0xe11,1},{0xfcb,2}}, {{0xed9,2},{0x109b,2}}, {{0x1667,7},{0x146d,9}}, + {{0x1607,5},{0x333c,5}}, {{0xfb0,2},{0xf61,2}}, {{0x1657,8},{0x10e3,4}}, {{0x10b8,2},{0xf91,3}}, + {{0x1bec,5},{0x136d,3}}, {{0x2948,4},{0xe2b,2}}, {{0xb,1},{0x2e1b,6}}, {{0x2dbf,6},{0xdc01,4}}, + {{0x3a29,4},{0xcb7,2}}, {{0x2afd4,2},{0x2afc6,2}}, {{0x4765,3},{0x180a,3}}, {{0x24f2,5},{0x2f4c,4}}, + {{0xc702,5},{0x2277,5}}, {{0x12f6,4},{0x1523,4}}, {{0x10587,5},{0x964d,4}}, {{0x17a7,8},{0x3ed7,6}}, + {{0x5b4c,7},{0x129a,6}}, {{0x1088,3},{0x10d2,4}}, {{0xe5b,3},{0xf59,2}}, {{0xe2b,2},{0xe86,2}}, + {{0x1677,3},{0x8f2c,5}}, {{0x19b7,3},{0x1e2c,4}}, {{0xe97,3},{0xe22,2}}, {{0x4853,3},{0x883a,7}}, + {{0xb3f1,3},{0xcd3,2}}, {{0x2ef3,8},{0x1ea0,6}}, {{0x12d4,5},{0xf7a,2}}, {{0x624e,6},{0x2917,4}}, + {{0x31cb,8},{0xe69,5}}, {{0x112b,5},{0xe11,2}}, {{0xc9d8,9},{0xe11,1}}, {{0x1837,5},{0x1c7c,4}}, + {{0x19b9,1},{0x1e1b,10}}, {{0xa641,6},{0x4,1}}, {{0x1967,3},{0x2252,3}}, {{0xcbe8,7},{0xe0a,1}}, + {{0xa61d,7},{0xce8e,4}}, {{0x1487,4},{0x4edf,4}}, {{0x19f7,4},{0xcd3,2}}, {{0x9b9d,6},{0x1632,5}}, + {{0x18b4,3},{0xf7a,2}}, {{0x70ad,3},{0x17661,2}}, {{0xf0c,1},{0x1047,3}}, {{0xe37,4},{0x78b5,2}}, + {{0xe32,1},{0x5,1}}, {{0xe83,3},{0x20be5,4}}, {{0x4853,3},{0x4574,3}}, {{0x4853,3},{0xf4f,1}}, + {{0xe83,3},{0xeb5,2}}, {{0x4199,5},{0xe552,5}}, {{0x26b4,7},{0xaa38,5}}, {{0x1019,4},{0x7772,5}}, + {{0xcc8,1},{0xcc8,1}}, {{0x32ab,6},{0x6bd4,5}}, {{0xe92,3},{0x1392,3}}, {{0xe97,3},{0x6190,4}}, + {{0x24163,5},{0xbd26,3}}, {{0x4781,3},{0x113f,2}}, {{0x15eb8,6},{0x126a,4}}, {{0x24f2,5},{0x120c,3}}, + {{0xdd44,6},{0xcc9,2}}, {{0x181b,3},{0xe6b,3}}, {{0x1bc68,5},{0xe11,1}}, {{0x1677,3},{0x2f94,4}}, + {{0x1766a,2},{0x7416,1}}, {{0xe0d,2},{0x1085,3}}, {{0xb181,10},{0xcc7,1}}, {{0x21bd1,5},{0x2248,3}}, + {{0x1a84,5},{0x809a,3}}, {{0x6cde,4},{0x1a71,3}}, {{0x9555,5},{0x955a,4}}, {{0x17fb2,6},{0x17fb8,4}}, + {{0x14932,6},{0xed6,2}}, {{0x1969,1},{0x12a3,3}}, {{0x45ee,3},{0xe0a,1}}, {{0xa215,5},{0xe1c,3}}, + {{0x57be,5},{0x167f,7}}, {{0xcc8,2},{0xec6,3}}, {{0x61cc,5},{0x6452,4}}, {{0xef7,3},{0x6ca7,3}}, + {{0x1cf6f,6},{0xed6,2}}, {{0x1967,4},{0x1303,3}}, {{0x1081,5},{0x122e,2}}, {{0x20510,2},{0xedd,1}}, + {{0x19679,6},{0x17c0,2}}, {{0x520e,5},{0x1235,6}}, {{0x1230,3},{0x5,1}}, {{0xcc7,1},{0xcc6,2}}, + {{0x7559,6},{0x2f4c,4}}, {{0x18ec6,4},{0x18eca,2}}, {{0xef7,5},{0x8b31,4}}, {{0x1e71,6},{0x127c,3}}, + {{0x11373,4},{0x7416,1}}, {{0x551a,7},{0xfdd,6}}, {{0xcb7,2},{0x30f7,2}}, {{0xc015,4},{0xabc5,3}}, + {{0x7935,5},{0xfcd,4}}, {{0x2,1},{0x1944,3}}, {{0xf70,2},{0xed6,2}}, {{0x478f,3},{0xe19,1}}, + {{0x1fbb,5},{0x1fc0,5}}, {{0x4f50,6},{0x2178,5}}, {{0xe83,5},{0x9,1}}, {{0x29cf,3},{0x1ffa,3}}, + {{0x30311,3},{0xc16,1}}, {{0x1969,1},{0xe0f,1}}, {{0x8ff1,8},{0xed9,2}}, {{0x23953,5},{0xf86,3}}, + {{0x1c91,4},{0x12ba7,3}}, {{0x175ba,7},{0xeca,3}}, {{0x1bbf,4},{0xe0a,1}}, {{0x28b3a,1},{0x28b3a,1}}, + {{0x11675,5},{0x4415,3}}, {{0x1969,1},{0x4767,1}}, {{0xec7,2},{0xe31,2}}, {{0x1109,5},{0xa317,6}}, + {{0xec6,3},{0x2,1}}, {{0x8c79,5},{0xf3a,3}}, {{0x1ff7,3},{0x1d06,3}}, {{0x6533,8},{0xed6,2}}, + {{0xe83,5},{0xf5dd,6}}, {{0xa701,6},{0xf62,3}}, {{0x1019,4},{0x28632,3}}, {{0x205a1,1},{0x205a5,4}}, + {{0x1827,5},{0x165a7,4}}, {{0xcc8,1},{0x13c3,4}}, {{0x4767,1},{0x10cb,3}}, {{0xe1f,3},{0xe99,1}}, + {{0xf7a,2},{0xebb,3}}, {{0xcbd,1},{0xa,2}}, {{0xd13c,6},{0xf7a,2}}, {{0xe09,1},{0x1722,5}}, + {{0x1a66,1},{0xeb5,2}}, {{0xe33,1},{0x24d5e,2}}, {{0xcb8,1},{0xfdf,3}}, {{0xe11,1},{0xb7e8,5}}, + {{0x61cc,5},{0x3c9a,5}}, {{0xba21,6},{0xb5bb,6}}, {{0xe13,3},{0x5,1}}, {{0xe1b,2},{0x1592,4}}, + {{0xf65,4},{0xe6b,4}}, {{0x478f,3},{0x2ad4,9}}, {{0x10c46,5},{0xeb6,2}}, {{0x26d2,8},{0xe6a,4}}, + {{0xe97,3},{0x6,1}}, {{0x8af9,9},{0xf63,2}}, {{0x29c0,4},{0x1189,4}}, {{0x1587,4},{0xfcb,2}}, + {{0x2d10,5},{0x104c,2}}, {{0x27e0,3},{0x4ef1,4}}, {{0x1286c,5},{0x12a9,3}}, {{0x313f,10},{0x18b4,3}}, + {{0x29cf,3},{0xedd,1}}, {{0x61cc,8},{0xed6,2}}, {{0x2948,4},{0xc609,6}}, {{0x4765,3},{0x10cb,2}}, + {{0xb,1},{0xf86,2}}, {{0x8,1},{0x10d3,3}}, {{0x224f,7},{0xe11,1}}, {{0x4781,3},{0xccb,2}}, + {{0x1cf3,3},{0xe6b,3}}, {{0x58a8,5},{0x10018,5}}, {{0x5611,5},{0x1150,2}}, {{0x12d4,3},{0xf70,2}}, + {{0x29c0,3},{0xcb8,1}}, {{0x23c4b,3},{0x1969,1}}, {{0xcd3,2},{0x4798,5}}, {{0x16692,5},{0x9,1}}, + {{0xf0c,1},{0x141a,5}}, {{0xe67,2},{0x1004,3}}, {{0x73b9,8},{0xe0b,4}}, {{0x1e08,5},{0x6140,3}}, + {{0x8c91,6},{0xed6,2}}, {{0x1847,5},{0x30ad,6}}, {{0xfcb,2},{0xe0b,4}}, {{0xe516,8},{0xcc9,2}}, + {{0x4781,3},{0xe32,1}}, {{0x1150,2},{0xfe6,2}}, {{0x70e1,6},{0xe0b,4}}, {{0x6cde,4},{0xfb0,3}}, + {{0x3083b,2},{0x2b094,2}}, {{0x171fa,5},{0xe22,2}}, {{0x162c,3},{0xcc9,2}}, {{0x9a6,1},{0xf86,2}}, + {{0x4767,1},{0x492e,3}}, {{0x1189d,4},{0x16ad,3}}, {{0x112b,6},{0x168b,4}}, {{0x1ebc,10},{0x1722,5}}, + {{0x127f,4},{0x11dc,3}}, {{0x2a47,3},{0x1132,2}}, {{0x1467,6},{0x5dd0,3}}, {{0x8709,8},{0xcc9,2}}, + {{0x1927,5},{0xfe0,2}}, {{0x10a3,3},{0xe6c,3}}, {{0xcba,3},{0xcc9,2}}, {{0xf89,3},{0x1185,3}}, + {{0x11d5,7},{0x3aae,7}}, {{0x4665,4},{0x8,1}}, {{0xe32,1},{0xe11,1}}, {{0x185de,5},{0xad8a,4}}, + {{0xcd3,2},{0x1cd3,2}}, {{0x125d,6},{0xe95,2}}, {{0x1dec3,8},{0xe11,1}}, {{0xf1a,2},{0xe31,2}}, + {{0x1c91,4},{0x1663,4}}, {{0xcbd,1},{0x1b14,4}}, {{0x2a2a7,6},{0xe11,1}}, {{0x3537,2},{0x8,1}}, + {{0xcc3,2},{0xcc9,2}}, {{0x478f,3},{0xe0d,2}}, {{0x3f07,11},{0xcc9,2}}, {{0x5dfd,6},{0xcc9,2}}, + {{0x14a7,4},{0x6479,4}}, {{0x101f,3},{0xe67,2}}, {{0x1154c,4},{0x7373,5}}, {{0x29cf,3},{0x18f9a,3}}, + {{0x6cde,4},{0x1131,3}}, {{0x6ceb,7},{0xec6,3}}, {{0x1019,4},{0x1d06,3}}, {{0x3b09,4},{0x101f,2}}, + {{0x1969,1},{0xe11,1}}, {{0x3e43,8},{0xe69,5}}, {{0x1567,3},{0x3,1}}, {{0x59d3,7},{0xec6,3}}, + {{0x1587,8},{0x18b4,3}}, {{0x2948,3},{0xcc8,1}}, {{0xf1a,2},{0x8,1}}, {{0x27ef,4},{0x237d,2}}, + {{0x2948,3},{0x2271,3}}, {{0x1a66,1},{0x1555b,7}}, {{0xf1a,2},{0x3694,3}}, {{0xe2b,2},{0xe92,3}}, + {{0xe1f,3},{0x1722,5}}, {{0xb69d,4},{0xf1f,3}}, {{0x3329,7},{0x1b80,3}}, {{0x23b63,5},{0xe11,1}}, + {{0x48a7,5},{0x1bb6,9}}, {{0x2a29,5},{0x13dc,5}}, {{0x3bcd,6},{0x141f,8}}, {{0x2240,4},{0xed9,2}}, + {{0x566c,6},{0xec5,4}}, {{0x61cc,8},{0xf91,3}}, {{0xf15,1},{0xf15,1}}, {{0x29cf,3},{0x142a,3}}, + {{0x30f9,7},{0xebb,3}}, {{0x1969,1},{0xb02a,3}}, {{0x1599a,6},{0x2dd7,4}}, {{0x249eb,6},{0xe11,1}}, + {{0xe11,2},{0x5,2}}, {{0xe3d,6},{0xe3d,4}}, {{0x10c5,4},{0x1523,4}}, {{0x159cc,5},{0x56a8,5}}, + {{0xeaa,2},{0x1ba9,4}}, {{0xe83,3},{0x7f8f,6}}, {{0xf15,1},{0x2ee9,3}}, {{0x2015,6},{0x5dd0,3}}, + {{0x46af,3},{0xfb11,2}}, {{0xd777,8},{0xcc9,2}}, {{0x4f9e,5},{0xf70,2}}, {{0x12ea2,7},{0xe11,1}}, + {{0x11793,4},{0x128c,4}}, {{0xe25,2},{0xed6,2}}, {{0x75ce,4},{0xe2b,4}}, {{0xa4b5,9},{0xec6,3}}, + {{0x46af,3},{0xf86,2}}, {{0xeed,4},{0xcc9,2}}, {{0x1423e,5},{0x4921,4}}, {{0xe7d,2},{0x6e91,3}}, + {{0x20f6,6},{0x1510,7}}, {{0x1af1,4},{0xe0b,4}}, {{0xfbf,5},{0xf84,5}}, {{0xef7,3},{0xcc7,1}}, + {{0x12d4,3},{0x2e1b,6}}, {{0xe802,6},{0x1b6f2,3}}, {{0x8bb9,7},{0xcc9,2}}, {{0x1024,2},{0x178a,3}}, + {{0x1088,3},{0x1ac7,3}}, {{0x1d63,4},{0x61bb,4}}, {{0x736b,5},{0x1ea2c,4}}, {{0xf0a,3},{0x1252,3}}, + {{0x56c7,5},{0xed6,2}}, {{0x1d719,7},{0xe11,2}}, {{0x11b5,2},{0xe11,1}}, {{0x70a6,3},{0x1693,2}}, + {{0x16340,6},{0xcc8,1}}, {{0xcc4,2},{0x156a,3}}, {{0x40d5,6},{0xe1c,3}}, {{0x9a6,1},{0xec6,3}}, + {{0x125d,6},{0x5,1}}, {{0x1c82,10},{0x1523,4}}, {{0x5124,7},{0x56e9,5}}, {{0x4669,5},{0x3be3,3}}, + {{0xe97,3},{0xe5e,2}}, {{0x1937,4},{0xf1a,2}}, {{0x10b6a,5},{0xca78,5}}, {{0x46bd,3},{0x149f,3}}, + {{0xef7,5},{0xccd,1}}, {{0xcc8,1},{0xfb0,2}}, {{0x4c5e,8},{0xed9,2}}, {{0x20599,1},{0xaf4,1}}, + {{0xe19,1},{0x4767,1}}, {{0xe5b,3},{0x26ae,6}}, {{0x1367,3},{0x2dd7,4}}, {{0xb8c5,4},{0x1c2a,4}}, + {{0xd18,12},{0xd18,12}}, {{0x2948,4},{0x948b,4}}, {{0x6140,3},{0xf0f,2}}, {{0xee8,5},{0x12be,5}}, + {{0x2b46,4},{0xcd3,1}}, {{0x113c,3},{0x129b9,4}}, {{0xbf5d,4},{0xe11,1}}, {{0x29cf,3},{0xe65,2}}, + {{0x4781,3},{0x5f04,3}}, {{0xe83,3},{0x89f7,6}}, {{0x6497,5},{0xcd3,2}}, {{0x6519,8},{0xe92,3}}, + {{0x1e08,6},{0x8bd7,6}}, {{0x2df77,5},{0x8d,1}}, {{0xe32,1},{0xe0a,1}}, {{0x74f3,2},{0x19b9,1}}, + {{0xf65,4},{0x6cee,4}}, {{0x11b5,2},{0xfa6,3}}, {{0x5e58,6},{0x12a9,3}}, {{0x2a47,3},{0xcc8,1}}, + {{0x1727,8},{0x6478,5}}, {{0x39d5,5},{0xccb,2}}, {{0x2df77,5},{0x69,1}}, {{0x2489,10},{0xe69,5}}, + {{0x2b84,2},{0x2b86,4}}, {{0xf18,2},{0x8,1}}, {{0x11a6,2},{0x2091,4}}, {{0x12a1,8},{0x12a9,5}}, + {{0x46bf,1},{0xe22,2}}, {{0x6c35,9},{0x1004,3}}, {{0x1969,1},{0x6,2}}, {{0x2de93,4},{0x1ac,2}}, + {{0x566c,6},{0x1392,3}}, {{0xa659,5},{0xe78,2}}, {{0x6cd1,5},{0x1bf0,2}}, {{0xe11,2},{0x1089,3}}, + {{0x4693,5},{0xed9,2}}, {{0xa,2},{0x1b69,3}}, {{0x478f,3},{0x10cb,2}}, {{0x1a07,3},{0x24447,4}}, + {{0x104a,3},{0x23d2,3}}, {{0x20f6,5},{0x2146,8}}, {{0x9f45,6},{0x142a,3}}, {{0x4,1},{0x566f,4}}, + {{0x6008,3},{0xcd3,1}}, {{0x3d47,6},{0x1ba9,4}}, {{0xf77,3},{0x2f07,5}}, {{0x1fc81,6},{0x50cd,3}}, + {{0x52f8,8},{0xe6b,3}}, {{0x4765,3},{0x7921,3}}, {{0x70ad,3},{0x10d3,3}}, {{0xe77,2},{0x6,1}}, + {{0x2a47,3},{0xe99,1}}, {{0x2d79,4},{0x1132,2}}, {{0xfdf,3},{0xcba,2}}, {{0x11850,7},{0xe86,2}}, + {{0x19b9,1},{0xccc,2}}, {{0xebbf,6},{0x6c88,5}}, {{0x11788,4},{0x181b,3}}, {{0x168e0,5},{0x6,1}}, + {{0x1c0a,8},{0x183b,4}}, {{0xe33,1},{0xedd,1}}, {{0x8,1},{0x6,1}}, {{0x6c76,6},{0xe6c,3}}, + {{0x1eaa5,5},{0x8cd3,3}}, {{0x1b5a8,6},{0xcc9,2}}, {{0x1057,2},{0xfb8,3}}, {{0xe97,3},{0x9bd1,3}}, + {{0xf0a,3},{0x19f97,6}}, {{0xb379,3},{0x2245,3}}, {{0x3bcd,4},{0xcc3,3}}, {{0x1062,2},{0x9,1}}, + {{0xef7,3},{0x1153,2}}, {{0x29cf,3},{0x6d5a,5}}, {{0x8b65,9},{0xec6,3}}, {{0x1ccd,5},{0xe89,2}}, + {{0x1a07,3},{0x3,1}}, {{0xfa50,5},{0xe5e,2}}, {{0x5fc4,5},{0x6,2}}, {{0xb74,1},{0x30352,2}}, + {{0x9da1,5},{0xec6,3}}, {{0xbba1,4},{0x1059,3}}, {{0x4853,3},{0xcce,2}}, {{0xf77,3},{0xf80,2}}, + {{0x27b3,11},{0xf23,3}}, {{0x29cf,3},{0x1185,3}}, {{0x199ac,5},{0x3075,3}}, {{0xef7,3},{0x2ee9,3}}, + {{0x10172,7},{0xe11,1}}, {{0xf0a,3},{0x121a7,3}}, {{0xe6b,2},{0x3,1}}, {{0x15760,4},{0xe67,2}}, + {{0x2c85,2},{0x9a6,1}}, {{0xe08,1},{0xe5e,2}}, {{0x712f,4},{0x3642,2}}, {{0xb74,1},{0x2e273,1}}, + {{0x73d6,2},{0xe09,1}}, {{0xc05d,4},{0x23837,4}}, {{0x56c7,5},{0xe11,1}}, {{0x2f47,5},{0x8,1}}, + {{0xe97,3},{0x2454,3}}, {{0x1e08,6},{0x2083,4}}, {{0xe5b,3},{0x1bef,2}}, {{0x17661,2},{0xedd,1}}, + {{0xe89,2},{0xcc1,1}}, {{0x1997,4},{0xe88,3}}, {{0x70ad,3},{0x1cb1,5}}, {{0x41a7,4},{0x9a5,2}}, + {{0x1081,4},{0x2476,4}}, {{0x3337,7},{0xf72,5}}, {{0xcc8,1},{0x1fc7,3}}, {{0xb5af,3},{0x1780,3}}, + {{0x5,1},{0xe6c,3}}, {{0x115e,7},{0x2d72,7}}, {{0x1088,4},{0xcc9,2}}, {{0xe11,1},{0xec6,3}}, + {{0xdd65,5},{0xe11,1}}, {{0x1677,3},{0x22616,5}}, {{0x751a,5},{0xed9,2}}, {{0x9441,5},{0xfdd,4}}, + {{0x11d5,5},{0x9a4,3}}, {{0xa04d,5},{0xed9,2}}, {{0xbba1,4},{0x122d,3}}, {{0x12e5,3},{0xeaf5,4}}, + {{0x1947,5},{0x2083,4}}, {{0x2ec9,5},{0x56a8,5}}, {{0x2330,5},{0xe7f,3}}, {{0x2094,3},{0x1780,3}}, + {{0x5715,6},{0x13e3,4}}, {{0xf77,4},{0xb05c,5}}, {{0x113e1,5},{0x72d3,3}}, {{0x8cf1,6},{0xf70,5}}, + {{0x11e33,7},{0x18bb7,3}}, {{0x1747,4},{0x9905,4}}, {{0x1ba43,5},{0xe32,1}}, {{0xc017,2},{0x4516,3}}, + {{0x73d6,2},{0x6,1}}, {{0xbb4,4},{0xe59,2}}, {{0x2f71,4},{0x4b2e,5}}, {{0xccd,1},{0x594d,4}}, + {{0x11,1},{0x30801,2}}, {{0x1677,3},{0x1089,3}}, {{0x70ad,3},{0x6,2}}, {{0x11e49,5},{0x1692,2}}, + {{0x3169,8},{0x6411,4}}, {{0x115e,5},{0x89f7,6}}, {{0x2b46,4},{0xe22,2}}, {{0x354b,4},{0xeb7,7}}, + {{0x78f9,1},{0x205a9,1}}, {{0xe22,3},{0xcc9,2}}, {{0x1587,7},{0x158e,4}}, {{0x772d,5},{0x30ba,7}}, + {{0x16a7,3},{0x344b,4}}, {{0x10d6,12},{0x1be9,3}}, {{0x9a8,1},{0xe95,2}}, {{0x29c0,4},{0xff7b,5}}, + {{0x17030,2},{0x286d,3}}, {{0x70ad,3},{0x1601,3}}, {{0x19b7,3},{0xc342,3}}, {{0x4f29,6},{0xe0d,2}}, + {{0x9f81,6},{0x1d32,3}}, {{0xe08,1},{0xf15,1}}, {{0x2ef3,8},{0x4e61,5}}, {{0x94ad,5},{0x94b2,6}}, + {{0x1635e,7},{0xec6,3}}, {{0x7414,3},{0x1303,3}}, {{0x73e0,7},{0xed9,2}}, {{0x12d4,3},{0x2bb4,3}}, + {{0x1081,5},{0xd229,4}}, {{0x584d,7},{0x566f,4}}, {{0x15ed6,5},{0xb,1}}, {{0x1025,1},{0xf7a,2}}, + {{0xccd,1},{0xf7a,2}}, {{0x8bb9,7},{0xec6,3}}, {{0x27e0,3},{0xeb4,3}}, {{0x29c0,7},{0x1024,7}}, + {{0x111a,3},{0xee9,2}}, {{0x1bbf,4},{0x20be5,4}}, {{0x1208,7},{0x395e,5}}, {{0x2afb6,3},{0x206,2}}, + {{0x1967,3},{0x9372,3}}, {{0xe1f,3},{0x11a6,2}}, {{0x712f,4},{0x810d,4}}, {{0x12e5,3},{0xead,3}}, + {{0xf8b9,8},{0xcc9,2}}, {{0x6d46,6},{0xec6,3}}, {{0x24f4,3},{0xb02a,4}}, {{0x1469,3},{0xcc9,2}}, + {{0x73ed,5},{0x356c,3}}, {{0x5874,8},{0xe11,1}}, {{0x4853,3},{0xf194,3}}, {{0x496c,5},{0x1235,6}}, + {{0x1ac7,3},{0x1aca,5}}, {{0xccd,1},{0x568d,6}}, {{0xe0d,2},{0x6326,5}}, {{0xe33,1},{0x3372,4}}, + {{0xe6f,3},{0x7d64,4}}, {{0x488b,5},{0xcd3,1}}, {{0xe16,1},{0xe2f,1}}, {{0x3639,11},{0xcc9,2}}, + {{0x4781,3},{0xe0b,2}}, {{0x478f,3},{0x6,2}}, {{0x1a264,6},{0xf86,2}}, {{0xe09,1},{0xe09,1}}, + {{0x3d63,5},{0x1cd3,2}}, {{0x15399,2},{0xcc3,2}}, {{0x28c1,4},{0x10b9,2}}, {{0x1166,3},{0xe6b,3}}, + {{0x4773,4},{0x6,2}}, {{0x8e7d,7},{0x1392,3}}, {{0xf0c,1},{0xf15,1}}, {{0xf86,2},{0xe78,2}}, + {{0xe83,3},{0x2b78,4}}, {{0x10b8b,6},{0x2277,4}}, {{0xf89,3},{0xe67,2}}, {{0xccd,1},{0x3e11,2}}, + {{0x10c5,4},{0x1722,5}}, {{0x1ff7,3},{0x7921,3}}, {{0x662a,8},{0x1663,4}}, {{0x2bf1,6},{0xe1c,3}}, + {{0x1edab,6},{0xec6,3}}, {{0xfcb,2},{0xe80,2}}, {{0xe99,1},{0x2ee9,3}}, {{0x478f,4},{0xe22,2}}, + {{0xf0a,3},{0xf12,3}}, {{0x10f48,5},{0xcd3,2}}, {{0xa461,8},{0xcc9,2}}, {{0x1937,4},{0x1ba9,4}}, + {{0x6fd0,8},{0xcc9,2}}, {{0x1c91,5},{0x1702,4}}, {{0x1f16,5},{0xa348,5}}, {{0x1f689,2},{0x1001,3}}, + {{0xf4f,1},{0xefa,4}}, {{0x6950,9},{0xef5,2}}, {{0x1567,3},{0xcb8,1}}, {{0x486f,4},{0x5b48,4}}, + {{0x145fe,7},{0xec6,3}}, {{0xe32,1},{0xe32,1}}, {{0x10c04,5},{0x9,1}}, {{0xe11,2},{0x2266,5}}, + {{0x205a1,1},{0x30352,2}}, {{0x1a07,3},{0x1a66,1}}, {{0xf02,2},{0xed6,2}}, {{0x20389,2},{0x20389,2}}, + {{0x2b46,4},{0x4,1}}, {{0x101f,2},{0xccb,2}}, {{0x1967,3},{0xf1f,3}}, {{0xf0a,5},{0xf1a,2}}, + {{0x19b7,3},{0xed9,2}}, {{0xe19,1},{0xe75,2}}, {{0x4853,3},{0x1849,3}}, {{0x10a3,3},{0x1186,2}}, + {{0x61cc,5},{0x2365,7}}, {{0x9f81,8},{0x10f4,4}}, {{0x354b,7},{0xebc,2}}, {{0x1f38,1},{0x4227,3}}, + {{0x129a2,5},{0x1aca,5}}, {{0x36cd,4},{0x14a2,3}}, {{0x1007,5},{0x3144,5}}, {{0xb74,2},{0xb74,3}}, + {{0xe0f,2},{0xe7c,2}}, {{0x393b,5},{0x12939,5}}, {{0x2ddb,12},{0xe95,2}}, {{0x9a8,1},{0x27e9,3}}, + {{0xe67,2},{0x1722,5}}, {{0x46af,3},{0x4461,2}}, {{0xef66,5},{0x4618,4}}, {{0x2b84,2},{0xe69,5}}, + {{0x162c,3},{0xed6,2}}, {{0x1e985,5},{0x4665,4}}, {{0x3479,8},{0xfdd,4}}, {{0xcd3,1},{0x431c,5}}, + {{0xb3f1,3},{0xf1a,2}}, {{0xd147,5},{0x142a,3}}, {{0x1b04,3},{0x2dd7,4}}, {{0x12fd,3},{0x6,1}}, + {{0x1bbf,5},{0x1bc4,4}}, {{0x1ccd,5},{0x142d,3}}, {{0x9,1},{0x10d2,4}}, {{0xe83,3},{0x6,1}}, + {{0x6581,8},{0xcc9,2}}, {{0x9a6,1},{0xe5e,2}}, {{0x12064,5},{0xe0a,1}}, {{0x1bfb,7},{0x4dd1,4}}, + {{0x1373,2},{0xcc8,1}}, {{0x113c,3},{0x6,1}}, {{0x1131b,5},{0x156e,3}}, {{0x1ebc,6},{0x1bf6,5}}, + {{0x25e73,6},{0xe0a,1}}, {{0xef7,3},{0xeaf5,4}}, {{0x29cf,3},{0x7de9,2}}, {{0xc015,4},{0xe09,1}}, + {{0x5,1},{0x1702,4}}, {{0x19b9,1},{0x5538,2}}, {{0x74f3,2},{0xe99,1}}, {{0x2399,10},{0xcc9,2}}, + {{0x4781,3},{0x2d979,2}}, {{0xe71,1},{0xcd3,1}}, {{0x331f,3},{0xfe0,2}}, {{0x10188,6},{0xed9,2}}, + {{0x4853,3},{0xe0b,2}}, {{0xe11,2},{0x129a,6}}, {{0x1bbf,5},{0x9a8,2}}, {{0xe5b,3},{0x2270,3}}, + {{0x20561,1},{0x20561,1}}, {{0x1537,4},{0x2b7a,3}}, {{0x46af,3},{0x1edc9,6}}, {{0x88e9,9},{0xec6,3}}, + {{0x1367,3},{0xe13,3}}, {{0xcce,2},{0xfdd,4}}, {{0xf77,3},{0xe67,2}}, {{0x113c,5},{0xe0b,4}}, + {{0x2e67,9},{0x21a5,5}}, {{0xcc4,2},{0x3,1}}, {{0x1f25,7},{0xe78,2}}, {{0x4853,3},{0x1c79,2}}, + {{0xef7,3},{0xa15d,4}}, {{0xcc7,1},{0x142d,3}}, {{0xe2f,1},{0x4767,1}}, {{0xf0a,3},{0x2ba5,1}}, + {{0x50af,10},{0xf35,3}}, {{0x2280,2},{0xe22,2}}, {{0xf89,3},{0xfb0,2}}, {{0x2d11,3},{0xe11,2}}, + {{0x1a71,3},{0xcc3,2}}, {{0x1db33,2},{0xe99,1}}, {{0x1487,6},{0x1279,5}}, {{0x1059,3},{0x2,1}}, + {{0xef7,3},{0xfa6,3}}, {{0xaaf,2},{0xc16,2}}, {{0xe164,6},{0x1258,5}}, {{0x7911,6},{0xe11,1}}, + {{0x3337,7},{0xe6b,4}}, {{0x1109,5},{0xe7b0,5}}, {{0x185e8,5},{0x156a,3}}, {{0x105f,3},{0x1b14,4}}, + {{0x1032a,6},{0xabc4,4}}, {{0x2f71,4},{0xc300,3}}, {{0x1807,10},{0xe69,5}}, {{0x7351,4},{0x111f6,7}}, + {{0x12e5,3},{0x162c,3}}, {{0x12f8,2},{0xf1a,2}}, {{0x1919,2},{0x11d9,3}}, {{0xf4f,1},{0xccb,2}}, + {{0xe5b,3},{0x5eaf,4}}, {{0xe5b,3},{0x31f8,3}}, {{0x3bbf,8},{0x127c,3}}, {{0x6,1},{0x2b79,4}}, + {{0xe1f,3},{0x17dd9,3}}, {{0xf0a,3},{0xcc6,2}}, {{0xce92,8},{0xf91,3}}, {{0x3ad1,8},{0xec6,3}}, + {{0x3aed,6},{0x167f,7}}, {{0xa,2},{0x16ad,3}}, {{0x2948,3},{0xe0f,1}}, {{0xcd3,1},{0xeb7,7}}, + {{0xf0d,2},{0xfb0,2}}, {{0xc159,4},{0xcc8,1}}, {{0x19b7,3},{0x5,2}}, {{0x9309,5},{0x6d41,5}}, + {{0x1977,3},{0xf4f,1}}, {{0x1b4c7,5},{0x2f2e,3}}, {{0x5fc4,5},{0x1722,5}}, {{0x9a8,1},{0xcd3,1}}, + {{0xe2b,2},{0x10f2,5}}, {{0x2ced,9},{0x14a2,3}}, {{0xaaf,2},{0x311af,2}}, {{0x2939,4},{0xf8e,3}}, + {{0xe2f,1},{0x7950,3}}, {{0x1145a,7},{0x1b9d,4}}, {{0x2f55,9},{0xe95,2}}, {{0x260f,9},{0x10f2,6}}, + {{0x112b,4},{0x5538,2}}, {{0xe08,1},{0xedd,1}}, {{0x1024,2},{0x10573,4}}, {{0xe5b,3},{0x7efc,4}}, + {{0x6234,8},{0xe86,2}}, {{0x4693,5},{0xe89,2}}, {{0x16a7,3},{0x16e1,6}}, {{0x34b1,5},{0xfe6,2}}, + {{0xcc4,2},{0xe71,1}}, {{0x17344,6},{0xe0a,1}}, {{0x1109,5},{0x9,1}}, {{0xe83,5},{0x1e64,3}}, + {{0xcc3,2},{0xec6,3}}, {{0x1bf0,2},{0x286d,3}}, {{0x4ce0,6},{0xe67,2}}, {{0x5903,5},{0xeab,2}}, + {{0x4781,3},{0xf80,2}}, {{0x760f,5},{0x1ba8,8}}, {{0x19b7,3},{0x2d974,2}}, {{0xcb8,1},{0xfa5,2}}, + {{0x442b,3},{0x10bb,4}}, {{0xee4,4},{0x3b37,10}}, {{0x9b99,3},{0xec6,3}}, {{0x17ca6,5},{0xed6,3}}, + {{0x2,1},{0xe09,1}}, {{0x518c,9},{0xe11,1}}, {{0x1677,3},{0x246d7,4}}, {{0xb12d,7},{0xe11,2}}, + {{0xe6f,3},{0xf70,2}}, {{0x9a6,1},{0xe60,2}}, {{0xe16,1},{0xf4a,5}}, {{0x9a65,11},{0xe11,1}}, + {{0x10c5,4},{0xed6,2}}, {{0x2d95,5},{0x10b9,3}}, {{0xd4a1,8},{0xe11,1}}, {{0x9e01,8},{0x286d,3}}, + {{0xf9d7,6},{0xe1b,4}}, {{0x46af,3},{0xedd,1}}, {{0xf57,2},{0x2454,3}}, {{0x1d9d7,6},{0xcd3,2}}, + {{0xe16,1},{0x22a3,2}}, {{0x90f9,7},{0xe11,1}}, {{0xcf04,3},{0x6,1}}, {{0x1607,5},{0x7b30,4}}, + {{0x479d,4},{0x1187,6}}, {{0x11b26,5},{0xf23,2}}, {{0xcb8,1},{0xfa5,3}}, {{0xf9d,3},{0x296f,3}}, + {{0xaaf,2},{0x2b4ee,4}}, {{0x12268,6},{0x3075,4}}, {{0xeaa,2},{0x4dd1,4}}, {{0xec3,3},{0x6,1}}, + {{0x5dfd,6},{0x5342,3}}, {{0x6f1a,5},{0xe0a,1}}, {{0xe6f,3},{0x10cb,2}}, {{0x56c7,5},{0x1485c,4}}, + {{0x19b7,3},{0xcce,2}}, {{0x48d8,2},{0x48da,3}}, {{0x2858,4},{0xe32,1}}, {{0x2939,4},{0x3c25,6}}, + {{0x74f6,2},{0x19b9,1}}, {{0xb8d1,5},{0xcce,2}}, {{0x1897,5},{0x6f8a,4}}, {{0xec3,3},{0xe0d,2}}, + {{0x27e0,3},{0xce83,4}}, {{0xa701,7},{0x9dca,3}}, {{0xfa5b,7},{0xec6,3}}, {{0xff6d,5},{0x6479,4}}, + {{0x1378a,8},{0x2,1}}, {{0xa1a0,3},{0x141a,5}}, {{0x1288a,7},{0xe11,1}}, {{0x9a8,1},{0xe65,2}}, + {{0x158e,4},{0xcc4,2}}, {{0x9a6,1},{0x72d3,3}}, {{0x244d,7},{0x2454,3}}, {{0x12d4,3},{0x10f2,5}}, + {{0x518c,9},{0xcc9,2}}, {{0x478f,3},{0xfb0,3}}, {{0x442b,3},{0x70a3,5}}, {{0x10e4b,6},{0x10e51,5}}, + {{0xe1f,3},{0x14a3c,4}}, {{0xf37b,6},{0x155e,3}}, {{0x7414,3},{0xe09,1}}, {{0x12e5,3},{0xfa5,3}}, + {{0xbd09,5},{0xe95,2}}, {{0x42cd,9},{0xeed,4}}, {{0x7392,5},{0xcd3,1}}, {{0xe2b,2},{0x10bb,5}}, + {{0x5534,4},{0xd347,5}}, {{0x27e0,3},{0x3208,3}}, {{0xf0c,1},{0xe21,1}}, {{0x1367,4},{0xe86,2}}, + {{0xf0c,1},{0xe7a,1}}, {{0x1607,10},{0x13e3,4}}, {{0x1e80,12},{0xe11,1}}, {{0xe71,1},{0x228ce,5}}, + {{0xc05d,4},{0x6,2}}, {{0xe1f,3},{0xec6,3}}, {{0x10cb,2},{0x23e1,3}}, {{0xcd3,1},{0xf1a,2}}, + {{0x3b09,4},{0x7b70,5}}, {{0x2c5b,4},{0x9a6,1}}, {{0xe83,3},{0xe65,2}}, {{0x1677,3},{0x1bef,2}}, + {{0xe0f,1},{0x1e2f0,2}}, {{0x235d,8},{0x3c9a,5}}, {{0x4597,4},{0xcd3,3}}, {{0x19b7,3},{0x72d3,3}}, + {{0x112b,5},{0x3144,8}}, {{0x111a,3},{0x128c,4}}, {{0x2bb4,2},{0xe0a,1}}, {{0xcbd,1},{0xe77,3}}, + {{0x1be21,6},{0xeb5,2}}, {{0x46bd,3},{0xe09,1}}, {{0xd131,4},{0x30f6,3}}, {{0x3537,2},{0xf63,2}}, + {{0xe1f,3},{0x155e,3}}, {{0xe6f,3},{0xcb9f,4}}, {{0xcc8,1},{0xf86,2}}, {{0x16a7,3},{0x1a98,6}}, + {{0x46af,3},{0xa,2}}, {{0xe83,4},{0x15c32,6}}, {{0x3a37,6},{0x153ce,4}}, {{0xf59,2},{0xec6,3}}, + {{0xb424,4},{0xb428,3}}, {{0x4853,3},{0xe08,1}}, {{0xb319,8},{0xec6,3}}, {{0x74f9,2},{0x4767,1}}, + {{0xf77,5},{0xcce,3}}, {{0x1677,3},{0xefb,3}}, {{0xcd2,2},{0x9,1}}, {{0xb37c,3},{0xed6,2}}, + {{0x1153,2},{0x12bf,4}}, {{0x1427,6},{0x4a44,5}}, {{0xfa5b,7},{0xcc9,2}}, {{0x41df,7},{0xcbef,4}}, + {{0x1847,5},{0x679c,7}}, {{0x120b,4},{0xcc9,2}}, {{0x6,2},{0x5342,3}}, {{0x105f,3},{0x6185,3}}, + {{0x7414,3},{0xed9,2}}, {{0x2f94,3},{0xcc3,2}}, {{0xe8a,2},{0x3075,3}}, {{0x4be9,5},{0x5261,4}}, + {{0x15ed6,5},{0x2467,4}}, {{0x11b3,5},{0x7f8f,6}}, {{0x145b,2},{0xccd,1}}, {{0x127f,4},{0xeab,2}}, + {{0x1a27,4},{0xb3c8,3}}, {{0x4767,1},{0xe5e,2}}, {{0x10b8b,6},{0xcce,2}}, {{0x584d,7},{0xcc9,2}}, + {{0x12e5,3},{0xf4f,1}}, {{0xf8e5,7},{0x1b41,4}}, {{0xe87,2},{0xe22,2}}, {{0x162c,3},{0x6,1}}, + {{0x1208,4},{0x180d,4}}, {{0x1153,2},{0x8b31,4}}, {{0x24f2,5},{0xe67,2}}, {{0x1007,9},{0xe09,1}}, + {{0xe09,1},{0x27dc,4}}, {{0x29cf,3},{0x1b8b,6}}, {{0xe97,3},{0x1e8b,3}}, {{0xb8dd,5},{0x1c2a,4}}, + {{0xcc8,1},{0xf7a,2}}, {{0xe27,2},{0xfd4d,5}}, {{0x473b,5},{0x4ef1,4}}, {{0xe32,1},{0x1303,3}}, + {{0xe64,3},{0x1b4f,5}}, {{0x3fe7,9},{0xe69,5}}, {{0x19c7,6},{0x17cd,4}}, {{0x101f,2},{0xeee,3}}, + {{0x2015,3},{0x1150,2}}, {{0xbccd,4},{0x2c83,4}}, {{0x2f6a5,4},{0x1f875,1}}, {{0xb,1},{0xe22,2}}, + {{0x1927,4},{0x17cd,4}}, {{0x8abd,9},{0xcce,2}}, {{0x329d,5},{0xcd2,2}}, {{0x17a1c,6},{0x2bad,4}}, + {{0x10f48,5},{0xbb24,5}}, {{0x1d54,6},{0x1279,5}}, {{0x9af,2},{0x29979,2}}, {{0x6e71,8},{0xec6,3}}, + {{0x111a,3},{0xdb21,3}}, {{0xe25,2},{0xcc9,2}}, {{0x16a7,3},{0x145b,2}}, {{0x103ae,4},{0x1392,3}}, + {{0x613d,6},{0x3a30,6}}, {{0x36c5,10},{0xeee,3}}, {{0x12e5,3},{0x6b41,4}}, {{0x16a7,6},{0x5,2}}, + {{0xf02,2},{0x5669,3}}, {{0xc6f7,5},{0x2e2c,3}}, {{0x7935,5},{0xb,1}}, {{0xcd1,2},{0xec6,3}}, + {{0x956d,5},{0xb,1}}, {{0x8835,5},{0xdd0a,3}}, {{0x7414,3},{0x1153,2}}, {{0x736b,8},{0x7373,5}}, + {{0xf0a,3},{0xe2f,1}}, {{0x28fd,6},{0x4397,7}}, {{0x29cf,3},{0x4618,3}}, {{0xe3d,4},{0x3100f,2}}, + {{0x40d8,3},{0xf86,3}}, {{0x1bb0,6},{0xcc6,2}}, {{0x712f,6},{0xe7f,2}}, {{0xe08,1},{0xccb,2}}, + {{0x28fda,4},{0x48d6,2}}, {{0x1290,4},{0x8f1c,5}}, {{0x12d4,3},{0x2c509,2}}, {{0xe11,1},{0x1c85,3}}, + {{0x1577,7},{0x1eff,7}}, {{0xa,2},{0xcc1,1}}, {{0xbb7d,5},{0x11d9,3}}, {{0x11a6,2},{0xcce,2}}, + {{0xb901,5},{0x2514,4}}, {{0x45eb,4},{0x155e,3}}, {{0x18df4,5},{0xccd,4}}, {{0x111a5,7},{0xe11,1}}, + {{0x4f9e,5},{0x453b,4}}, {{0x1967,3},{0xeb5,2}}, {{0x1c91,6},{0xcce,2}}, {{0x16eb2,6},{0xe6a,4}}, + {{0x2a069,5},{0xe5e,2}}, {{0x75db,4},{0xf16,2}}, {{0x14df6,8},{0xe95,2}}, {{0x7911,3},{0x10d3,3}}, + {{0x753f,5},{0x138e,3}}, {{0x329d,5},{0xeee,3}}, {{0x27e0,3},{0x181b,3}}, {{0x1a747,7},{0xe95,2}}, + {{0x41d1,7},{0x16e3,4}}, {{0x111a,3},{0x2236,3}}, {{0xcd3,1},{0x18b4,3}}, {{0x46bd,3},{0x1131,3}}, + {{0xe11,2},{0x141f,4}}, {{0x17acb,2},{0xedd,1}}, {{0xe19,1},{0x2e33,4}}, {{0x2015,3},{0x3642,2}}, + {{0xcb8,1},{0x127d,2}}, {{0x2e223,4},{0x45,1}}, {{0x1e08,5},{0x3640,4}}, {{0x5e27,3},{0xcd3,1}}, + {{0x1397,5},{0x1af2,10}}, {{0x8,3},{0x174b,3}}, {{0x1677,3},{0x31f8,3}}, {{0xf77,4},{0x181b,3}}, + {{0x1e9e,4},{0xed6,2}}, {{0x4516,3},{0xed6,2}}, {{0x49a0,5},{0x8,1}}, {{0xbba1,4},{0x5538,2}}, + {{0xff78,7},{0xec6,3}}, {{0x1847,9},{0xcc9,2}}, {{0x2058b,3},{0x7b,1}}, {{0x1969,1},{0xfb4,4}}, + {{0x9,1},{0x1303,3}}, {{0x4899,4},{0x2454,7}}, {{0xfcb,2},{0x331f,4}}, {{0x393b,5},{0x5,1}}, + {{0x7385,6},{0x121c,3}}, {{0x7935,7},{0xe0a,1}}, {{0x3a29,4},{0x1372,5}}, {{0x4,1},{0xcba,3}}, + {{0x9a6,1},{0xfe0,2}}, {{0xf77,4},{0x2d72,7}}, {{0x1747,4},{0x138e,2}}, {{0x5cab,7},{0x1722,5}}, + {{0xf15,1},{0x19b9,1}}, {{0x1e08,5},{0x278e,7}}, {{0x29cf,3},{0x2ecb3,2}}, {{0x1131,3},{0xf72,5}}, + {{0xe97,3},{0xc962,5}}, {{0xe71,1},{0x1783,4}}, {{0x473b,5},{0x3555,4}}, {{0xf89,3},{0x15ca,3}}, + {{0xeda3,6},{0xe95,2}}, {{0xe0eb,5},{0x5863,4}}, {{0x59b9,6},{0x10b7,2}}, {{0xe9e6,8},{0xe11,1}}, + {{0x14a2,3},{0xec6,3}}, {{0xe25,2},{0xcd3,1}}, {{0x101f,2},{0x15fe,4}}, {{0x256a,8},{0x1a99,5}}, + {{0xf16,2},{0xe1c,3}}, {{0xcc1,1},{0x2b7a,3}}, {{0xfa5,2},{0xfe0,2}}, {{0x13910,6},{0xec6,3}}, + {{0x12d4,3},{0x8428,3}}, {{0x1a07,3},{0xe78,2}}, {{0x109,2},{0x69,1}}, {{0x3965,6},{0xc3d0,3}}, + {{0xf9b,5},{0xe6c,3}}, {{0x27e0,3},{0xd3b4,6}}, {{0x80c1,8},{0x3075,3}}, {{0xb7e1,6},{0xb7e7,6}}, + {{0x1687,4},{0x5538,2}}, {{0x5,1},{0xcd3,2}}, {{0x125d,5},{0x127c,3}}, {{0xf0a,3},{0xccd,4}}, + {{0x1cfa,5},{0x10f2,6}}, {{0x22e5,4},{0x10cb,4}}, {{0x112b,5},{0xcc8,2}}, {{0xb7bd,6},{0x22a3,2}}, + {{0x105f,3},{0xe7d,2}}, {{0xe5b,3},{0xe09,1}}, {{0x47c7,5},{0x111c,2}}, {{0x1e62,6},{0xf80,9}}, + {{0x1537,6},{0x5dd0,3}}, {{0x20391,3},{0xe11,5}}, {{0x1ff7,3},{0xe524,8}}, {{0xf89,3},{0x99da,7}}, + {{0xfbf,5},{0x10e3,4}}, {{0x68f5,10},{0xe77,3}}, {{0xe78,1},{0x1de7,3}}, {{0x18a5c,7},{0x15e9,3}}, + {{0x1677,3},{0x1303,3}}, {{0x1eea1,2},{0xedd,1}}, {{0x4781,3},{0x10d3,3}}, {{0x376d,7},{0x1258,5}}, + {{0x9a8,1},{0x288b,2}}, {{0xf0a,3},{0x492e,3}}, {{0xef7,3},{0xcce,3}}, {{0x53c0,5},{0xcc9,2}}, + {{0x1081,5},{0x809a,3}}, {{0x111a,3},{0x158f,3}}, {{0x3409,6},{0x5342,4}}, {{0x6164,5},{0x1783,4}}, + {{0x10a3,3},{0x5eaf,4}}, {{0x6f1a,5},{0xaa38,5}}, {{0x1367,3},{0x23d0,5}}, {{0x4845,8},{0x3251,5}}, + {{0xe08,1},{0x10cb,2}}, {{0xe33,1},{0x442d,1}}, {{0x46bd,5},{0x1dee,2}}, {{0xe11,1},{0xe22,2}}, + {{0xfcb,2},{0x14f9,3}}, {{0xf0a,3},{0xe19,1}}, {{0xfe0,2},{0xe0a,1}}, {{0xb205,7},{0xe92,3}}, + {{0x4853,3},{0x1780,3}}, {{0x2e280,3},{0xcd6,1}}, {{0x17120,2},{0xec6,3}}, {{0xf554,10},{0xe11,1}}, + {{0x4781,3},{0xe92,3}}, {{0x4853,3},{0xee9,2}}, {{0x5,1},{0x77b3,4}}, {{0x12d4,3},{0x2bb4,2}}, + {{0xe1f,3},{0xe11,1}}, {{0x158e,2},{0x8441,4}}, {{0x4781,3},{0x6,1}}, {{0x12c3,4},{0x6068,4}}, + {{0x5c29,7},{0x2178,5}}, {{0xd,1},{0x1347,3}}, {{0x11a6,2},{0xe0a,1}}, {{0x6bc0,10},{0xcc9,2}}, + {{0x27e0,3},{0x1ffa,3}}, {{0x3a61,5},{0xa3e5,4}}, {{0x478f,3},{0x122d,2}}, {{0x28fd,6},{0x1d7e,3}}, + {{0xe16,1},{0xcc1,1}}, {{0xebe,4},{0x2094,4}}, {{0x20f6,7},{0x5b6d,6}}, {{0x3559,4},{0x1889,2}}, + {{0xe31,2},{0x7bad,4}}, {{0xf15,1},{0x48ca,6}}, {{0xe5b,3},{0x4618,3}}, {{0x7e81,7},{0x45c7,2}}, + {{0x1081,5},{0xccd,1}}, {{0x80f1,8},{0xfb8,3}}, {{0x739f,5},{0x3308,5}}, {{0xe86,2},{0xfa9,4}}, + {{0x2df77,5},{0xe,1}}, {{0x57b6,4},{0x3075,4}}, {{0x5fd1,6},{0xfa9,4}}, {{0x14932,6},{0xe11,1}}, + {{0x3a45,5},{0x16e1,6}}, {{0xf0a,3},{0x1663,3}}, {{0x8775,6},{0x138e,3}}, {{0x15760,4},{0xf0f,2}}, + {{0x56fb,8},{0xe69,5}}, {{0x9a8,1},{0x1393,3}}, {{0x1081,4},{0x155e,3}}, {{0x1ff7,3},{0xd66b,4}}, + {{0x1f16,5},{0x2236,3}}, {{0x62dd,4},{0x534e,5}}, {{0x5881,8},{0xf59,2}}, {{0x30f51,2},{0x2e7da,2}}, + {{0xecb,2},{0xcba,2}}, {{0xede,1},{0xe0f,1}}, {{0x46af,3},{0xcbf,2}}, {{0x2df77,5},{0x9f,1}}, + {{0xe101,6},{0x2269,4}}, {{0x57,1},{0x314,2}}, {{0xf70,2},{0x1e8b,3}}, {{0x1dea,6},{0xeb7,7}}, + {{0x1967,3},{0x180a,3}}, {{0x1cfa,5},{0xf04,3}}, {{0x11d0a,5},{0xcc7,1}}, {{0xb8dd,6},{0x1a57,4}}, + {{0xb271,7},{0xe92,3}}, {{0x110c9,5},{0xe22,3}}, {{0x17506,6},{0x122d,3}}, {{0xf59,2},{0x1155,2}}, + {{0x1567,3},{0x9,1}}, {{0xaaf,2},{0x1347,3}}, {{0x2e280,3},{0x28b33,1}}, {{0x5715,6},{0x18b2,5}}, + {{0x478f,3},{0xed6,2}}, {{0x1f7f,5},{0xf7a,2}}, {{0x2a47,3},{0xe78,2}}, {{0x3cbb,9},{0xe1c,3}}, + {{0xe33,1},{0x1ea72,2}}, {{0x4767,1},{0xe22,3}}, {{0x1577,4},{0xed9,2}}, {{0x70ad,3},{0xedd,1}}, + {{0xcc6,2},{0xeb4,3}}, {{0x46bf,1},{0x1969,1}}, {{0x4615,10},{0x3555,4}}, {{0x2240,4},{0x1524,3}}, + {{0x46af,3},{0x1131,3}}, {{0x1567,6},{0xcbd,1}}, {{0x9a6,1},{0x10cb,2}}, {{0x361d,7},{0xf0f,2}}, + {{0x12e5,4},{0xed9,2}}, {{0xf77,3},{0x9fb7,6}}, {{0xe31,2},{0x6,1}}, {{0x16d7,6},{0x1059,3}}, + {{0x16a7,3},{0xf80,2}}, {{0x473b,5},{0x2,2}}, {{0x70ad,3},{0x48e0,5}}, {{0x1967,3},{0xe5e,2}}, + {{0x7764,4},{0xe22,2}}, {{0x4765,3},{0x22a3,2}}, {{0x9af,2},{0x2e7c0,2}}, {{0x5,2},{0xe2b,2}}, + {{0x121f0,5},{0x7949,4}}, {{0xe1f,3},{0x2ca18,2}}, {{0xac11,10},{0xe11,1}}, {{0x29cf,3},{0x246d7,4}}, + {{0x5f1b,5},{0x193f,3}}, {{0xebe,5},{0x6480,5}}, {{0x202cc,7},{0xe11,2}}, {{0xedd,1},{0x9a5,2}}, + {{0x1b56,7},{0x1b5d,8}}, {{0x117eb,6},{0x2b7a,3}}, {{0x249eb,6},{0xcc9,2}}, {{0x2b50b,2},{0x11840,2}}, + {{0x1780,3},{0xf04,3}}, {{0x261e,9},{0x1783,4}}, {{0xadf1,5},{0xed5,3}}, {{0x2df77,5},{0x7b,1}}, + {{0xccd,1},{0xe8a,2}}, {{0xef7,7},{0x3075,4}}, {{0x2b46,4},{0x4538,4}}, {{0x122e,2},{0x122e,2}}, + {{0x658e,8},{0x1040,3}}, {{0x3089,5},{0xf8e,3}}, {{0x1977,3},{0xe22,2}}, {{0xcd3,1},{0x13e3,4}}, + {{0xcfc6,5},{0x30f7,2}}, {{0x3479,8},{0x127c,3}}, {{0x2024,8},{0x1790,6}}, {{0x18bb7,3},{0xb,1}}, + {{0x28d0,4},{0x810e,3}}, {{0x4765,3},{0xefb,3}}, {{0x1fbe,3},{0xcc3,2}}, {{0xf77,5},{0x7b70,5}}, + {{0xef7,3},{0x4b11,4}}, {{0x16d7,6},{0x3c35,7}}, {{0x9a6,1},{0x6480,5}}, {{0x235d,5},{0xefa,4}}, + {{0xefa,2},{0xcc8,1}}, {{0xcc8,2},{0x6,2}}, {{0x11b94,7},{0xfe6,2}}, {{0xe80,2},{0x1859,4}}, + {{0x3eb3,8},{0x3ebb,4}}, {{0x1f7f,5},{0xfb8,3}}, {{0xe1f,3},{0xeb4,3}}, {{0xe31,2},{0x1593,3}}, + {{0xd,1},{0xf8,2}}, {{0xe08,1},{0x2a7ec,2}}, {{0x6637,6},{0x8344,5}}, {{0x5cab,7},{0xe69,5}}, + {{0x3b79,9},{0x2269,4}}, {{0xcbd,1},{0xfb0,3}}, {{0x70ad,3},{0xe0a,1}}, {{0x1667,5},{0x431c,5}}, + {{0x1967,3},{0x2b4c1,2}}, {{0x2094,3},{0x251a,5}}, {{0x28b3a,1},{0x2e27d,1}}, {{0x29f27,5},{0x33d3,2}}, + {{0x2a47,3},{0xe33,1}}, {{0x1677,3},{0xa894,5}}, {{0xe99,1},{0xcc6,2}}, {{0x111a,3},{0x10cb,2}}, + {{0x951c,3},{0x4,1}}, {{0x1f9c3,5},{0x2136,4}}, {{0x5611,5},{0xacbf,6}}, {{0x416f,5},{0xeb7,7}}, + {{0x111a,3},{0xe0a,1}}, {{0x3185,9},{0xe77,3}}, {{0x10361,5},{0x153ff,5}}, {{0x7518,4},{0x1f3a0,5}}, + {{0xcc1,2},{0xf1f,3}}, {{0x3457,4},{0xe22,2}}, {{0xf02,2},{0xe11,1}}, {{0xb1c9,7},{0xb1d0,5}}, + {{0x5534,6},{0xde9b,4}}, {{0x4781,3},{0x1303,3}}, {{0xe7a,1},{0x1046,3}}, {{0x6d46,6},{0xe11,1}}, + {{0xccd,1},{0x1bef,2}}, {{0x4,1},{0xf16,2}}, {{0x7086,5},{0xe104,3}}, {{0xccd,1},{0xa894,5}}, + {{0xef7,3},{0x534e,5}}, {{0x1081,4},{0x3444,6}}, {{0x5756,7},{0xe69,5}}, {{0x93a5,5},{0x11b5,2}}, + {{0x73d6,2},{0x1317,2}}, {{0xcc1,1},{0x9a8,1}}, {{0xf59,2},{0xcd3,1}}, {{0x2b46,4},{0x1559,3}}, + {{0x12d4,3},{0x24d16,5}}, {{0x139a6,7},{0x1059,3}}, {{0xcd3,2},{0x37bc,5}}, {{0x16a7,3},{0x101e,4}}, + {{0xeee,3},{0xfe6,2}}, {{0x2271,3},{0xe0a,1}}, {{0x2966,4},{0xcce,2}}, {{0x48a9,3},{0xcc9,2}}, + {{0x19b7,3},{0x46bf,1}}, {{0x4781,3},{0xfc8,3}}, {{0x103ae,4},{0x10387,5}}, {{0x2b84,2},{0x3537,2}}, + {{0xc40b,5},{0x4aef,3}}, {{0x11a6b,5},{0xe1c,3}}, {{0x10e2,3},{0x1cd3,2}}, {{0x306d,6},{0x37c8,5}}, + {{0x62dd,4},{0x6411,4}}, {{0x12b2,9},{0x23df,5}}, {{0xe08,1},{0xfb8,3}}, {{0x62dd,4},{0x2468,3}}, + {{0x5541,6},{0xf7a,2}}, {{0x15486,6},{0xec6,3}}, {{0x205a1,1},{0x307f4,3}}, {{0x643c,7},{0x5fa5,5}}, + {{0x1687,4},{0x142d,3}}, {{0x1d7d,3},{0xe0a,1}}, {{0x8,1},{0xe6c,3}}, {{0xed6,3},{0xe22,3}}, + {{0xede,1},{0xe21,1}}, {{0x8859,8},{0x13c3,4}}, {{0x3bcd,4},{0xf59,2}}, {{0x1ebc,6},{0xf35,3}}, + {{0xec6f,7},{0xe67,2}}, {{0x1ab1,7},{0x1ac7,8}}, {{0x1897,5},{0x6a0f,4}}, {{0xf15,1},{0x58d2,4}}, + {{0x780a,5},{0xcbf,2}}, {{0x172e,5},{0xe11,1}}, {{0xeaa,2},{0xf1a,2}}, {{0xb379,3},{0xcc3,3}}, + {{0x12fe,2},{0xf7a,2}}, {{0x2de51,3},{0x314,2}}, {{0xe78,1},{0x8,1}}, {{0x4765,3},{0x1153,3}}, + {{0x15396,5},{0xf7a,2}}, {{0x1827,4},{0xf70,5}}, {{0x10c5,5},{0x2dd7,4}}, {{0x565f,5},{0xdd0a,3}}, + {{0x3559,4},{0x1692,2}}, {{0x112b,4},{0x4fb3,5}}, {{0x3e0e,3},{0xe31,2}}, {{0x1f687,4},{0x1001,3}}, + {{0xf0a,3},{0x6895,5}}, {{0x9a8,1},{0x15399,2}}, {{0x1f25,8},{0xe69,6}}, {{0x1a07,3},{0x1bf0,2}}, + {{0x4d6f,9},{0xe6b,3}}, {{0xb45d,8},{0x1fc7,3}}, {{0xaebd,5},{0x165a7,4}}, {{0x566c,6},{0x13e4,3}}, + {{0xe08,1},{0x1150,2}}, {{0x11b5,2},{0xee9,2}}, {{0xf0a,3},{0x1cd5,4}}, {{0xccd,1},{0x113f,2}}, + {{0x66bc,4},{0x141a,2}}, {{0x125d,6},{0x168b,4}}, {{0x27ef,4},{0x2f94,3}}, {{0xe1f,3},{0xe0f9,3}}, + {{0xe445,5},{0xbfca,3}}, {{0xf0c,1},{0xf59,2}}, {{0x1577,4},{0x3170,3}}, {{0x73b9,5},{0xcc1,1}}, + {{0xed1,4},{0x7efc,4}}, {{0x18f7,5},{0xeb5,2}}, {{0x29cf,3},{0xe19,1}}, {{0x4765,3},{0x1085,3}}, + {{0x70ad,4},{0x12334,4}}, {{0xe7d,2},{0xe7f,4}}, {{0x38b4,4},{0xf59,2}}, {{0x1152b,5},{0xfe6,2}}, + {{0x27e0,3},{0x142a,3}}, {{0x1a07,3},{0xf11,1}}, {{0x70ad,3},{0x8102,3}}, {{0x3b5d,5},{0x3075,4}}, + {{0xb3f1,3},{0x45e2,3}}, {{0x4853,3},{0x73d6,2}}, {{0xe1f,3},{0x248ce,5}}, {{0x9,2},{0x141a,2}}, + {{0x44c5,5},{0xec53,3}}, {{0xb3f1,3},{0x1e77,3}}, {{0x24f4,3},{0xe1c,3}}, {{0xe0d,2},{0xe22,2}}, + {{0x17f7,6},{0xf02,2}}, {{0x134ce,7},{0x1d75,3}}, {{0x317b8,2},{0x18eca,2}}, {{0xed4b,6},{0x3acb,5}}, + {{0x1cdda,6},{0xec6,3}}, {{0xa3ad,8},{0x141f,4}}, {{0x72cf,6},{0xf91,3}}, {{0x7414,3},{0xed7d,5}}, + {{0x1f7f,5},{0x5dd0,3}}, {{0x5bc1,7},{0x10f2,5}}, {{0xc1d1,4},{0xe09,1}}, {{0xb,1},{0xcce,2}}, + {{0x1d14c,6},{0xe11,1}}, {{0x162fa,7},{0xec6,3}}, {{0xf15,1},{0xed6,2}}, {{0x1f7f,5},{0xd0a9,4}}, + {{0x11137,7},{0x4fa8,3}}, {{0x3b4f,5},{0x153ff,5}}, {{0x53c8,9},{0x2dd7,4}}, {{0xc93e,6},{0xabd0,5}}, + {{0x2e235,4},{0x69,1}}, {{0x10d3,3},{0x8,1}}, {{0x402d,9},{0x189f,3}}, {{0x29cf,3},{0x4bfa,3}}, + {{0x5fd1,5},{0xcb8,1}}, {{0x75ce,4},{0xf63,2}}, {{0x1acf,10},{0x1be9,3}}, {{0xf512,6},{0x80b0,4}}, + {{0xccb,2},{0xccd,4}}, {{0x29c0,4},{0x9533,5}}, {{0x4597,6},{0x5342,3}}, {{0x5534,6},{0x5724,3}}, + {{0x5eac,6},{0xe95,2}}, {{0x26b4,7},{0x142d,3}}, {{0x29cf,3},{0xf4f,1}}, {{0x29c0,3},{0xfe8,2}}, + {{0x4781,3},{0xe08,1}}, {{0x1d320,6},{0xa,2}}, {{0xe6f,3},{0x16fff,3}}, {{0x5534,4},{0x3065,7}}, + {{0xe08,1},{0xe2b,2}}, {{0x57cb,6},{0x57d1,6}}, {{0x2dec3,5},{0x57,1}}, {{0x1a86,3},{0xcce,2}}, + {{0xcb6,3},{0xcbd,1}}, {{0x1b86f,4},{0xcbf,2}}, {{0x6ff7,5},{0xcc9,2}}, {{0x2015,4},{0x59b4,3}}, + {{0x2501,5},{0x30f7,2}}, {{0x1969,1},{0xe33,1}}, {{0xf8d,2},{0x138d,5}}, {{0x4765,3},{0x5988,3}}, + {{0xa5a5,6},{0x13e4,3}}, {{0x4f91,5},{0x194b3,4}}, {{0x2858,4},{0x239c7,4}}, {{0xf15,1},{0x1ebf,3}}, + {{0xc1ad,5},{0xe77,2}}, {{0xbb89,4},{0xe0a,1}}, {{0xe97,3},{0xe11,1}}, {{0xe83,3},{0x141a,2}}, + {{0x6dd5,7},{0xec6,3}}, {{0x15e7,5},{0x6,1}}, {{0x1bec,5},{0xfcb,2}}, {{0x2e235,4},{0x9f,1}}, + {{0xf15,1},{0x3695,4}}, {{0x17661,2},{0x442d,1}}, {{0x5,1},{0x1252,3}}, {{0xcc1,1},{0xccd,1}}, + {{0x3cf3,11},{0xf86,3}}, {{0x40f1,9},{0xec6,3}}, {{0xaec9,6},{0x1ae7,4}}, {{0xb,1},{0xcc3,2}}, + {{0x125d,6},{0x4a5f,4}}, {{0x2bc7,5},{0x4,1}}, {{0xe235,7},{0x128c,4}}, {{0x2fc18,3},{0x20571,2}}, + {{0x29cf,3},{0x112bb,5}}, {{0x4,1},{0xcce,2}}, {{0x1ebc,8},{0x3075,3}}, {{0x4853,3},{0x1ebf,3}}, + {{0xfe6,2},{0x15d1,5}}, {{0x1290,4},{0x115a,3}}, {{0xcc6c,5},{0xcc5,2}}, {{0x23e95,3},{0x1e2ef,2}}, + {{0xa6e9,7},{0xcce,2}}, {{0x1ee0,3},{0x1e3b,4}}, {{0xe67,2},{0x15fe,4}}, {{0xe33,1},{0x29bfe,2}}, + {{0x150b2,6},{0xcc8,3}}, {{0x113c,3},{0xdb73,3}}, {{0xf77,3},{0x13e3,4}}, {{0x1342e,5},{0xe69,5}}, + {{0x1687,4},{0x6dfe,3}}, {{0x60fc,8},{0xe77,3}}, {{0x2a47,3},{0xf4f,1}}, {{0x1702e,4},{0xe2b,2}}, + {{0x9609,8},{0x1054,3}}, {{0xb02a,4},{0xe11,1}}, {{0x478f,3},{0xe08,1}}, {{0xed1,3},{0xa1a0,8}}, + {{0x4209,6},{0xe6b,4}}, {{0x495f,6},{0x1040,3}}, {{0xb,1},{0x8eee,4}}, {{0x24f2,5},{0x4b96,5}}, + {{0x2f2e,3},{0x2,1}}, {{0xe0f,4},{0x2261,3}}, {{0xee9,2},{0xe0b,4}}, {{0xe2f,1},{0xf1a,2}}, + {{0x6dd5,7},{0x15d1,5}}, {{0x27e0,3},{0x286d,3}}, {{0x62ea,7},{0xf1d,2}}, {{0x4,1},{0xeb4,3}}, + {{0xe87,2},{0x155e,3}}, {{0x228db,5},{0xef5,2}}, {{0x10203,3},{0xe11,1}}, {{0x9855,6},{0x8a87,6}}, + {{0x80cd,8},{0x1f7b,4}}, {{0x27ef,7},{0x428e,5}}, {{0x125d,7},{0x1a99,5}}, {{0xe32,1},{0x4aee,3}}, + {{0x1047,3},{0xe69,5}}, {{0xef7,4},{0x6,2}}, {{0x8,1},{0x1f38,1}}, {{0xf9d,3},{0x4574,3}}, + {{0x442b,3},{0xa385,4}}, {{0x2489,10},{0xec6,3}}, {{0x8469,6},{0x395d,4}}, {{0xadc1,7},{0x10e2,5}}, + {{0x1367,4},{0x58ff,4}}, {{0xe16,1},{0xcd4,2}}, {{0x4385,3},{0xe0a,1}}, {{0x2e27d,1},{0xaf4,1}}, + {{0x5,2},{0x1152,3}}, {{0x1e3b,4},{0x115a,3}}, {{0x9b25,5},{0x160b,4}}, {{0x12e5,5},{0xcc1,1}}, + {{0x1b52a,6},{0xe8a,2}}, {{0x29cf,3},{0x453b,4}}, {{0xf25d,7},{0xec6,3}}, {{0x12b5,2},{0x6,1}}, + {{0x180a,3},{0xf1a,2}}, {{0x7d31,5},{0x111c,2}}, {{0x4383,5},{0x1790,6}}, {{0xf0a,3},{0x1692,2}}, + {{0x8c79,5},{0x2269,4}}, {{0xef7,3},{0x14a2,3}}, {{0x1766e,6},{0x3555,4}}, {{0xf86,2},{0xccb,2}}, + {{0x1ccd,5},{0x10e3,3}}, {{0xf1d,2},{0x1258,5}}, {{0x122a,6},{0xed6,2}}, {{0x1491e,6},{0xe24,3}}, + {{0x46af,3},{0x504d,3}}, {{0xbfb5,5},{0x1fd9d,4}}, {{0x1007,5},{0x69ca,8}}, {{0x2b46,4},{0xed5,4}}, + {{0x12d4,3},{0x2280,2}}, {{0x1081,7},{0x39b2,6}}, {{0xe08,1},{0x48d3,2}}, {{0xf11,1},{0x7000,4}}, + {{0x19e7,5},{0x9904,5}}, {{0x1647,5},{0xed6,2}}, {{0x115e,5},{0x1cb1,3}}, {{0x20f6,5},{0x149f,3}}, + {{0xe21,1},{0xe19,1}}, {{0x148a,3},{0x1dee,2}}, {{0xe86,2},{0xa,2}}, {{0xf1d,2},{0xed9,2}}, + {{0x17d3e,4},{0x17d56,3}}, {{0xf89,3},{0x1afba,5}}, {{0x1967,3},{0x3b73,3}}, {{0xf77,5},{0x1150,2}}, + {{0x5,1},{0x10f2,5}}, {{0x9a8,1},{0xe77,3}}, {{0x434b,5},{0x15fb,3}}, {{0x2ea8,4},{0xf7a,2}}, + {{0x3056,4},{0x1054,3}}, {{0x1827,5},{0xcc8,1}}, {{0x1957,5},{0x11cb,3}}, {{0x2501,5},{0x7998,4}}, + {{0x478f,3},{0x15399,2}}, {{0x2330,8},{0xe6b,4}}, {{0x2afb,12},{0xed6,2}}, {{0xe65,2},{0xe11,1}}, + {{0x2a56,13},{0xed9,2}}, {{0xe54d,8},{0x1be9,3}}, {{0xec3,3},{0x1783,4}}, {{0x194d2,5},{0xeaf,3}}, + {{0x9,1},{0xcc7,1}}, {{0x20f6,5},{0x149c,3}}, {{0xe5b,3},{0x2ca1,4}}, {{0x2f71,4},{0x2ee9,3}}, + {{0x2489,5},{0x1077,6}}, {{0xf1d,2},{0xf7a,2}}, {{0x12f6,4},{0x296e,4}}, {{0x478f,3},{0x5342,4}}, + {{0x1bec,5},{0x4,1}}, {{0x52aa,10},{0xe11,1}}, {{0x112b,5},{0xcbd,1}}, {{0xccb,2},{0xf8f,4}}, + {{0xe88,3},{0x9a7,2}}, {{0x328f,9},{0x2781,5}}, {{0x2b84,2},{0x5,1}}, {{0x1677,3},{0x308b,3}}, + {{0xed6,3},{0x16ad,3}}, {{0x43bb,9},{0xeed,4}}, {{0x16a7,3},{0xf70,2}}, {{0x1a66,1},{0x1393,3}}, + {{0x73ed,4},{0x3bff,3}}, {{0x2bae,2},{0x22877,4}}, {{0xe3d,4},{0xd7c,2}}, {{0x1153,3},{0x6,1}}, + {{0xb933,3},{0xcc8,2}}, {{0x532c,9},{0xcc9,2}}, {{0x2a47,3},{0xcc7,2}}, {{0x1807,5},{0x355b,3}}, + {{0x127f,3},{0xb1d0,5}}, {{0xc281,4},{0xbb8,2}}, {{0xf11,1},{0xf12,3}}, {{0xc015,4},{0x2ee9,3}}, + {{0xe1f,3},{0x7de9,2}}, {{0x122d,2},{0xec5,4}}, {{0x111a,3},{0x30ad,6}}, {{0x20f6,6},{0x211a,4}}, + {{0x247a,9},{0x12be,5}}, {{0x12e7,3},{0x1461,4}}, {{0x29cf,3},{0xe22,3}}, {{0x70ad,3},{0x1db30,3}}, + {{0x72f6,9},{0x6452,4}}, {{0x112d,4},{0x5342,3}}, {{0x28d0,5},{0xb156,7}}, {{0x4853,3},{0xf8e,3}}, + {{0xe97,3},{0x19b9,1}}, {{0x1317,2},{0x1317,2}}, {{0x1153,3},{0xcc9,2}}, {{0xf24,2},{0xe32,1}}, + {{0x1c28,5},{0x1153,2}}, {{0x21ca9,5},{0xfb8,3}}, {{0x2489,5},{0x1f39,6}}, {{0x1062,2},{0xfe8,2}}, + {{0xaaf,2},{0x2b4fe,2}}, {{0x28c61,5},{0xcc4,2}}, {{0x2058b,3},{0x8d,1}}, {{0x9a8,1},{0x6,1}}, + {{0x2777,5},{0x5863,4}}, {{0x478f,3},{0xe09,1}}, {{0xf4db,5},{0x18b4,3}}, {{0x11a6,8},{0xe92,3}}, + {{0x25d43,5},{0x2d7c,3}}, {{0x1f38,1},{0x1159,4}}, {{0x33ed,7},{0x13e3,4}}, {{0x88d1,7},{0xce83,4}}, + {{0xb985,7},{0x4740,4}}, {{0xf0a,3},{0x10b9,2}}, {{0x22b8,4},{0x3c88,3}}, {{0x2afb6,4},{0x9f,1}}, + {{0x1025,1},{0xf24,2}}, {{0xcc1,1},{0xfdf,3}}, {{0x658e,8},{0x12be,5}}, {{0x1427,9},{0xe0b,4}}, + {{0x260,2},{0x9f,1}}, {{0x29c0,3},{0x1969,1}}, {{0x122d,2},{0x5ddf,4}}, {{0x8b65,9},{0xcc9,2}}, + {{0xf9b,5},{0xfa0,3}}, {{0x19e7,6},{0xab27,5}}, {{0x3be9,5},{0x240b,6}}, {{0xd48,4},{0x308a3,2}}, + {{0x1607,8},{0xcc9,2}}, {{0x4049,9},{0xebb,3}}, {{0xebe,4},{0xcc1,2}}, {{0x157ce,5},{0x1ce6,5}}, + {{0x1d54,6},{0xcc7,1}}, {{0x10a6,2},{0xcc1,1}}, {{0x473b,5},{0x21a0,8}}, {{0x5,1},{0x4a44,5}}, + {{0x46bd,3},{0xa,2}}, {{0x1189d,4},{0x10cb,4}}, {{0x1847,4},{0xfa5,2}}, {{0x1467,6},{0x1244,7}}, + {{0xe97,3},{0xedd,1}}, {{0xe7d,2},{0xe92,3}}, {{0x4,1},{0xe67,2}}, {{0x5534,4},{0x1b6d,4}}, + {{0x1e8b,3},{0xfe6,2}}, {{0x2d79,4},{0xe0a,1}}, {{0x2afb6,3},{0x1bd,2}}, {{0x5534,4},{0x27dc,4}}, + {{0xe11,2},{0x10612,4}}, {{0x1154c,4},{0x6,1}}, {{0x247a,5},{0x13ab0,4}}, {{0xf4f,1},{0xe8a,2}}, + {{0x2a47,3},{0xf0c,1}}, {{0x152,2},{0x9f,1}}, {{0xfcb,2},{0x1772,5}}, {{0xf15,1},{0x142d,3}}, + {{0x4ef5,4},{0x1d2e6,4}}, {{0x1e9e,4},{0x13041,4}}, {{0x1537,4},{0x7251,4}}, {{0x27c2,4},{0x8b9c,5}}, + {{0x478f,3},{0xeca,3}}, {{0x1081,7},{0x1088,9}}, {{0x22e5,5},{0xf4a,5}}, {{0x4359,8},{0x2467,4}}, + {{0x2d79,4},{0x5342,3}}, {{0x12bdc,6},{0x1b9d,4}}, {{0x1f7f,4},{0xec3,3}}, {{0x168f,3},{0x1692,5}}, + {{0xe11,1},{0xcd3,1}}, {{0x46af,3},{0x527c,7}}, {{0x29de,5},{0x5669,3}}, {{0xc88e,6},{0xe11,1}}, + {{0xf65,3},{0x1384,3}}, {{0x27e0,3},{0xe6b,2}}, {{0xb74,1},{0xbb4,6}}, {{0x4853,3},{0xce8e,4}}, + {{0x1081,4},{0x566f,4}}, {{0x70ad,3},{0xec6,3}}, {{0x488b,4},{0x14aa,5}}, {{0x1957,5},{0xdc6f,4}}, + {{0x4765,3},{0x3b73,3}}, {{0xf31,3},{0xf34,4}}, {{0xc088,4},{0xe32,1}}, {{0x1dee,2},{0xcd3,1}}, + {{0x28b33,1},{0xcd6,1}}, {{0x4c85,8},{0x11d0,5}}, {{0xede,1},{0xed6,2}}, {{0xe32,1},{0xe09,1}}, + {{0x1cd3,2},{0xed6,2}}, {{0x1567,6},{0x90fb,5}}, {{0xf89,3},{0x373b,3}}, {{0x10c04,5},{0x12777,5}}, + {{0xb3f1,3},{0xb424,7}}, {{0x29b0b,5},{0x6,1}}, {{0xe5b,3},{0xf1a,2}}, {{0x3ad1,8},{0xe11,1}}, + {{0xe0c,2},{0x12a3,3}}, {{0xcce,2},{0x1155,2}}, {{0x1327,2},{0x1327,2}}, {{0xb319,8},{0x1523,4}}, + {{0x520e,5},{0xf1a,2}}, {{0xe11,1},{0xe86,2}}, {{0x14950,5},{0x249f,3}}, {{0x9ca5,6},{0xf7a,2}}, + {{0x1f25,8},{0xe69,5}}, {{0x101f,2},{0xf86,3}}, {{0x1969,1},{0x1372,4}}, {{0x2b55,5},{0x153ff,5}}, + {{0xf15,1},{0xf16,2}}, {{0x1099,4},{0xfdd,6}}, {{0x29de,4},{0xeab,4}}, {{0x4f50,6},{0x3fb8,5}}, + {{0xb12d,7},{0xef4,3}}, {{0x22a2,4},{0x2091,4}}, {{0x14dd,5},{0xeed,4}}, {{0x105f,3},{0xab88,4}}, + {{0x1817,4},{0x16c4c,4}}, {{0x647d,8},{0x18b4,3}}, {{0x613d,6},{0x1b34,4}}, {{0x16660,7},{0x1150,2}}, + {{0xf15,1},{0x1849,3}}, {{0x19f7,7},{0xe67,2}}, {{0xe16,1},{0xec7,2}}, {{0x1817,4},{0xed6,2}}, + {{0x4853,3},{0xb37c,3}}, {{0x50c9,8},{0x4b12,4}}, {{0x2e217,4},{0x45,1}}, {{0x1a9ab,6},{0xe95,2}}, + {{0x3ab5,10},{0x3abf,4}}, {{0x1967,3},{0xcc9,2}}, {{0x29fc,5},{0x7764,6}}, {{0x5f42,5},{0xcc9,2}}, + {{0x7e99,6},{0xf7a,2}}, {{0xcbf,2},{0x2463,4}}, {{0x113c,3},{0xcd3,2}}, {{0x1e53,5},{0x189f,3}}, + {{0x260,2},{0xe,1}}, {{0x73e0,5},{0xe0a,2}}, {{0xcc8,1},{0xfb8,3}}, {{0x4af2,7},{0xcc9,2}}, + {{0x27c2,4},{0xcc3d,3}}, {{0xe83,3},{0x1c85,3}}, {{0x19b9,1},{0x6480,5}}, {{0x6cd1,6},{0xec6,3}}, + {{0xf89,3},{0x5d66,8}}, {{0x7197,5},{0x3fb8,5}}, {{0x1597,9},{0xed9,2}}, {{0x1a07,3},{0x102d6,6}}, + {{0x22b8,4},{0x1054,3}}, {{0x4fd2,6},{0xce40,5}}, {{0x23a53,5},{0xe91,2}}, {{0x1b65,11},{0xebc,2}}, + {{0x4217,8},{0x6d41,5}}, {{0xf35,2},{0x8,1}}, {{0xf11,1},{0xf02,2}}, {{0xef7,3},{0x6970,4}}, + {{0x5,2},{0xf32,2}}, {{0xe5e,2},{0xe0d,2}}, {{0x11a6,2},{0xe6c,3}}, {{0xe4c9,6},{0xec6,3}}, + {{0x492b,4},{0x6411,4}}, {{0x1467,4},{0x16d9f,5}}, {{0x9,2},{0x7a36,3}}, {{0x200f8,5},{0xe6b,2}}, + {{0x2,1},{0xcce,2}}, {{0x10d3,3},{0xec6,3}}, {{0xee59,3},{0xec6,3}}, {{0x10cb,2},{0xf61,2}}, + {{0x12d4,3},{0x15fc,2}}, {{0x1ff7,3},{0xcc3,3}}, {{0xaaf,2},{0xaf4,4}}, {{0x2,2},{0x2,1}}, + {{0x9a6,1},{0x15fc,2}}, {{0x1081,7},{0x9a8,1}}, {{0x79f5,5},{0xe32,1}}, {{0x4ef5,4},{0x19d97,5}}, + {{0x3a7d,6},{0x57e0,5}}, {{0x70ad,3},{0xe2f,1}}, {{0x6ca7,3},{0xcc3,2}}, {{0xee4,4},{0xcc1,2}}, + {{0xcbd,1},{0xf86,3}}, {{0x12e5,3},{0x25706,4}}, {{0x12240,6},{0xa,2}}, {{0x29fe,3},{0x93e6,4}}, + {{0x4853,4},{0xe22,3}}, {{0xf59,2},{0x33d3,2}}, {{0x486f,4},{0x11414,4}}, {{0x41a7,8},{0xfe5,2}}, + {{0x6cde,4},{0x9a4,3}}, {{0xf1a,2},{0x3555,4}}, {{0x1a66,1},{0x5edd,6}}, {{0x7f95,10},{0xe95,2}}, + {{0x797d,6},{0xe11,1}}, {{0x2df3b,4},{0x479,2}}, {{0x227c,6},{0xebb,3}}, {{0x16d18,8},{0xf7a,2}}, + {{0x18f7,5},{0x1d3c,3}}, {{0xb3f1,3},{0x1e3b,4}}, {{0xe83,3},{0xf59,3}}, {{0x28d0,8},{0xe92,3}}, + {{0xe71,1},{0xed9,2}}, {{0x684c,8},{0xcc9,2}}, {{0x237b,8},{0x1267,7}}, {{0x307ba,2},{0x307bb,1}}, + {{0x329d,6},{0xe11,1}}, {{0x1780,3},{0x6,1}}, {{0x2ba5,1},{0xe16,1}}, {{0xb535,5},{0x123e,3}}, + {{0xee4,4},{0x4cbc,5}}, {{0xa04d,5},{0x1c1e0,4}}, {{0x2e280,3},{0x205a1,1}}, {{0x2afb6,3},{0x109,2}}, + {{0x2df77,5},{0xf,1}}, {{0x4ee8,4},{0xd886,4}}, {{0x7eed,6},{0x1773,4}}, {{0x1a66,1},{0x1d7e,3}}, + {{0x111a,3},{0x2f94,3}}, {{0xe1f,3},{0xe7d,2}}, {{0x1ff7,3},{0x2ee9,3}}, {{0x16a7,3},{0x7968,6}}, + {{0x1a07,3},{0xe31,2}}, {{0x4765,3},{0x31f8,3}}, {{0x1677,3},{0x3976,3}}, {{0x11b3,5},{0x2236,3}}, + {{0xcc7,1},{0x413d,5}}, {{0x111a,3},{0x26ae,6}}, {{0xe67,2},{0xf70,2}}, {{0x180e,3},{0xcc4,2}}, + {{0xe67,2},{0x36a5,4}}, {{0xb74,1},{0xc,1}}, {{0xf0a,3},{0xe7a,1}}, {{0x3203,5},{0xf1a,2}}, + {{0xe86,2},{0xe0a,1}}, {{0x1c0f,3},{0xe09,1}}, {{0x163b,5},{0x1663,4}}, {{0x74f9,2},{0xe16,1}}, + {{0xcb8,1},{0x9e08,4}}, {{0x9f69,7},{0x61bb,4}}, {{0x19b7,3},{0x15bf5,6}}, {{0x113f,2},{0x4e3b,4}}, + {{0x14ee6,6},{0x1392,3}}, {{0xcc3,2},{0x1025,1}}, {{0x13b4a,7},{0xec6,3}}, {{0xe11,2},{0x1054,3}}, + {{0xf0a5,8},{0x189f,3}}, {{0x4781,3},{0xed6,2}}, {{0xc7d3,8},{0xe0a,1}}, {{0x478f,3},{0xe95,2}}, + {{0xe83,3},{0x2182,4}}, {{0x1153,3},{0x1d7e,3}}, {{0xe11,2},{0x4516,3}}, {{0xf15,1},{0xcc6,2}}, + {{0xf77,4},{0x1c85,3}}, {{0xf65,4},{0xe78,2}}, {{0x28c1,4},{0x9a4,3}}, {{0x7267,6},{0x1156,3}}, + {{0xe0e0,5},{0x153a,3}}, {{0x478f,3},{0x101f,2}}, {{0x305f,6},{0xd347,5}}, {{0x4767,1},{0xf1a,2}}, + {{0x1fc15,6},{0x51b9,3}}, {{0x7e39,6},{0x6,2}}, {{0x450b,4},{0x113f,2}}, {{0x10314,8},{0xf86,3}}, + {{0x2d79,4},{0xfe0,2}}, {{0xb27d,9},{0xec6,3}}, {{0x17dbe,7},{0x17dd9,3}}, {{0x111a,3},{0x10b7,3}}, + {{0x12d4,3},{0xf1a,2}}, {{0xf0d,2},{0x9,1}}, {{0x6171,5},{0xebb,3}}, {{0xf15,1},{0xe21,1}}, + {{0x4765,5},{0x1b7d,3}}, {{0x46af,3},{0x1ffa,4}}, {{0xcc7,1},{0xf0f,2}}, {{0x19b9,1},{0x10d9,2}}, + {{0x11d5,5},{0xcc9,2}}, {{0x1747,5},{0x8,1}}, {{0x17e40,7},{0xfdf,3}}, {{0x1b2e,3},{0xe7f,2}}, + {{0x16a7,3},{0x24e8,4}}, {{0xa215,5},{0x14de,4}}, {{0x11b89,5},{0xe92,3}}, {{0x4ef5,4},{0x1372,4}}, + {{0x1114d,6},{0xed6,2}}, {{0x17344,6},{0xeee,3}}, {{0x18f7,4},{0x3b49,6}}, {{0xb61b,3},{0x35a3,3}}, + {{0xe97,3},{0x145b,2}}, {{0xef7,3},{0x1bef,2}}, {{0x12c3,4},{0xb068,5}}, {{0x565f,5},{0xe67,2}}, + {{0x1537,4},{0x3997,6}}, {{0xf77,4},{0xe75,2}}, {{0x7d55,7},{0xec6,3}}, {{0xf77,3},{0x6ca7,3}}, + {{0x4845,11},{0xebb,3}}, {{0xf0d,2},{0xed6,2}}, {{0x4fab,5},{0x14f9,3}}, {{0x3dd3,6},{0x2d11,3}}, + {{0x1062,2},{0x10f2,5}}, {{0x1150,2},{0xec6,3}}, {{0xa575,9},{0xec6,3}}, {{0xfb8,3},{0xcc3,3}}, + {{0xe5b,3},{0xe5e,2}}, {{0x46af,3},{0x1461f,4}}, {{0x114d,5},{0x6,1}}, {{0x101f,2},{0x143c,4}}, + {{0x1ebf,3},{0x1025,1}}, {{0x24713,5},{0xed6,2}}, {{0x5909,4},{0xcc9,2}}, {{0x225e,6},{0xed6,2}}, + {{0x1081,5},{0x7949,4}}, {{0x18a70,6},{0xbfca,3}}, {{0x2006,4},{0x125fb,5}}, {{0x24be3,4},{0x28e3,4}}, + {{0xc9e3,8},{0x18b4,3}}, {{0xcc8,1},{0x113f,2}}, {{0x1747,7},{0x1298,8}}, {{0xe83,3},{0xac0d,3}}, + {{0x2858,5},{0xef3,4}}, {{0x204e0,2},{0xedd,1}}, {{0x19b7,3},{0x7979,4}}, {{0x1af2,5},{0xe92,3}}, + {{0x8cdf,3},{0xe6b,2}}, {{0xf32,2},{0x14f9,3}}, {{0x142a,3},{0xf91,3}}, {{0xe71,1},{0x4,1}}, + {{0x46af,3},{0x4516,3}}, {{0xe613,5},{0x428e,5}}, {{0x156a,3},{0x13e4,3}}, {{0x4f91,5},{0x34d7,4}}, + {{0x2f2e,3},{0xec6,3}}, {{0x26253,6},{0xe11,1}}, {{0x5dfd,6},{0xec6,3}}, {{0x94ad,5},{0x13e4,3}}, + {{0xcbd,1},{0x1c0f,5}}, {{0x2015,3},{0xed6,2}}, {{0x491e,5},{0xdd0a,3}}, {{0xe1f,3},{0x1189,4}}, + {{0xf59,4},{0xb495,4}}, {{0xa3f5,7},{0x2ce9,4}}, {{0x9a9,2},{0xeab,2}}, {{0x1dfbf,6},{0x1ebf,3}}, + {{0x1967,3},{0x101e,4}}, {{0x33b5,8},{0x7997,4}}, {{0x1747,4},{0xf1a,2}}, {{0x5756,7},{0xe69,6}}, + {{0x1bb75,6},{0xe11,1}}, {{0xe3d7,6},{0x1702,5}}, {{0x4ce0,6},{0x7f5f,6}}, {{0x205a9,1},{0x307bb,1}}, + {{0xe16,1},{0xcd1,2}}, {{0xf11,1},{0x309c,4}}, {{0xe164,6},{0x61dd,4}}, {{0x313f,10},{0xcce,2}}, + {{0xf436,8},{0xf35,3}}, {{0x7414,3},{0x5,1}}, {{0x8abd,9},{0xcc9,2}}, {{0x7921,3},{0xe0d,2}}, + {{0x5fd1,6},{0x1440,7}}, {{0xbd0b,3},{0x91cd,4}}, {{0x12e5,3},{0x1ebf,3}}, {{0xf0a,3},{0x22a3,2}}, + {{0x1531e,5},{0x7a15,4}}, {{0xcc14,7},{0x10b7,2}}, {{0x27e0,5},{0x29f3,3}}, {{0xe97,3},{0x1dee,2}}, + {{0x104c,2},{0x5863,3}}, {{0x2e79e,4},{0x2e7a2,2}}, {{0xe89,2},{0xe80,2}}, {{0x27e0,3},{0x1d21e,6}}, + {{0x2e79e,4},{0x18eca,2}}, {{0x7af1,7},{0x4cbc,5}}, {{0x2e292,1},{0x2e292,1}}, {{0x1ccd,5},{0x309c,4}}, + {{0x110fb,3},{0xcd3,1}}, {{0x450b,4},{0xe8a,2}}, {{0x4781,3},{0x168a,5}}, {{0x712f,4},{0xe8a,2}}, + {{0x18232,7},{0xcd3,1}}, {{0x1a07,3},{0xe0a,1}}, {{0x7305,3},{0x1ab69,4}}, {{0xc05d,4},{0x1839,3}}, + {{0x2e32,3},{0xed6,2}}, {{0x45ee,3},{0x6,1}}, {{0x3185,9},{0x318e,5}}, {{0x1a66,1},{0x2792d,4}}, + {{0x1789,4},{0x1db1,3}}, {{0x7086,5},{0xeee,3}}, {{0x18afc,6},{0x6c48,4}}, {{0xf11,1},{0x4bff,4}}, + {{0x1667,7},{0x5dd0,6}}, {{0x1d18,5},{0x1166,3}}, {{0x52f8,8},{0xcc9,2}}, {{0x4519,4},{0x1050,3}}, + {{0xf205,4},{0xe09,1}}, {{0xcc4,2},{0x1fbe,3}}, {{0x22a2,3},{0x23e1,3}}, {{0x1967,3},{0xcd3,2}}, + {{0x46af,3},{0x44b2,5}}, {{0xf4f,1},{0x2d8d,3}}, {{0xe25,2},{0x141f,4}}, {{0xeed,2},{0xfaf,2}}, + {{0x12d4,3},{0x10cb,2}}, {{0xe7d,2},{0xe0a,1}}, {{0xebe,4},{0x1a14a,3}}, {{0x236c,4},{0x7d98,4}}, + {{0x393b,5},{0x3940,5}}, {{0x27e0,4},{0xb958,6}}, {{0x114d,5},{0x169e,3}}, {{0xe74,3},{0xe77,3}}, + {{0xcc9,2},{0xcd3,1}}, {{0x18444,5},{0xcc7,1}}, {{0xf0a,3},{0xcd61,8}}, {{0x1f7f,5},{0xe11,1}}, + {{0xf9d,3},{0xf35,3}}, {{0xb865,6},{0xfbb,4}}, {{0xf11,1},{0xa,2}}, {{0x2f01,6},{0x809a,3}}, + {{0x62ea,5},{0x1b9d,4}}, {{0x4767,1},{0xec3,3}}, {{0xf77,3},{0xd704,5}}, {{0x4fab,6},{0x146d,4}}, + {{0xf15,1},{0xe99,1}}, {{0xb3f1,3},{0xe16,1}}, {{0xf0a,3},{0x28d2,3}}, {{0x3329,7},{0xe69,5}}, + {{0x29cf,3},{0xcd3,1}}, {{0xe83,5},{0xe71,1}}, {{0x15af,3},{0x4,1}}, {{0x113c,3},{0xe2b,2}}, + {{0x113c,3},{0xa15d,4}}, {{0x2,1},{0xcc6,2}}, {{0x1967,3},{0x3976,3}}, {{0x1ba31,5},{0x14f9,3}}, + {{0x111c,2},{0xe0a,1}}, {{0xe3d,4},{0x789d,2}}, {{0x1bbf,5},{0x2c59,4}}, {{0x1487,11},{0x13e3,4}}, + {{0x24f2,5},{0x51c8,5}}, {{0x6d05,5},{0x7998,4}}, {{0x7e75,10},{0xe95,2}}, {{0x17dbe,7},{0x2d11,3}}, + {{0x6cde,4},{0x8eee,4}}, {{0x39b3,5},{0xe95,2}}, {{0xfe3,5},{0xec6,3}}, {{0x1a66,1},{0x74f6,2}}, + {{0xcd1,3},{0xe78,1}}, {{0x130be,6},{0xec6,3}}, {{0x1977,3},{0xcbd,1}}, {{0xef7,3},{0x1d32,3}}, + {{0x8,1},{0xc6bc,4}}, {{0x3457,4},{0xfdd,4}}, {{0x465b,4},{0x3381,3}}, {{0x18ecc,2},{0x2b094,2}}, + {{0xf4db,5},{0xe69,5}}, {{0x25b1b,5},{0x3075,3}}, {{0x4781,3},{0xe77,3}}, {{0xe99,1},{0xe25,2}}, + {{0x1bec,10},{0x1bf6,5}}, {{0x17f30,5},{0x775c,4}}, {{0x46bd,3},{0x6,1}}, {{0xe6f,3},{0x18351,3}}, + {{0x488b,4},{0x92ea,4}}, {{0x2a47,3},{0xe21,1}}, {{0x2948,3},{0x9a5,2}}, {{0xe5e7,4},{0xa,2}}, + {{0xa9a1,9},{0x2,1}}, {{0x7385,9},{0x72fc,4}}, {{0x2b94,3},{0xe1c,3}}, {{0x17344,6},{0x8ce2,3}}, + {{0x1969,1},{0x1288,4}}, {{0x8,1},{0x2560,4}}, {{0xfe0,2},{0xf91,3}}, {{0x2de75,3},{0x666,2}}, + {{0xe1f,3},{0xcbb6,6}}, {{0xf77,3},{0xefa,2}}, {{0xffc,3},{0x8,1}}, {{0xedd,1},{0xccd,1}}, + {{0x121c,3},{0x6,1}}, {{0xe77,2},{0xe22,2}}, {{0x1c91,4},{0xed9,2}}, {{0x457b,5},{0xec3,3}}, + {{0xe85,3},{0x5536,4}}, {{0x79c5,4},{0x7c3d,4}}, {{0xe09,1},{0xf59,2}}, {{0x19e7,6},{0xe6c,3}}, + {{0xf0a,3},{0x5538,2}}, {{0x65f6,6},{0x2872,4}}, {{0x1ff7,3},{0x1b4f7,6}}, {{0x4ef5,4},{0xf24,2}}, + {{0x7d55,7},{0x12be,5}}, {{0x1024,2},{0xe0b,4}}, {{0xcc7,1},{0x1ebf,3}}, {{0xe1f,3},{0x59b4,3}}, + {{0x27ef,4},{0xfb0,3}}, {{0x1f25,4},{0x1ae53,5}}, {{0x46af,4},{0x1040,3}}, {{0x10cb,2},{0x6,1}}, + {{0x17030,2},{0x8428,3}}, {{0x2eec,4},{0xed6,2}}, {{0x1c382,7},{0xe95,2}}, {{0x111a,3},{0x72d3,3}}, + {{0x26b4,7},{0x4a44,5}}, {{0xef7,3},{0xe89,3}}, {{0x112b,5},{0xcc1,1}}, {{0x9ecd,8},{0xe77,3}}, + {{0x478f,3},{0xe22,2}}, {{0x486f,4},{0x1d57f,5}}, {{0xe16,1},{0x281f,5}}, {{0x237d,2},{0x1062,2}}, + {{0x114d,4},{0x1de7,3}}, {{0x2e271,3},{0xaf4,1}}, {{0xf0f,2},{0x72d3,3}}, {{0x5d7b,6},{0x167f,7}}, + {{0x28b2,5},{0x1632,5}}, {{0xf89,3},{0xe11,1}}, {{0xfb0,2},{0x2872,4}}, {{0x4767,1},{0x2261,3}}, + {{0xf18,2},{0xe32,1}}, {{0xcc7,1},{0x141f,4}}, {{0x10201,5},{0x5eac,6}}, {{0x19e7,5},{0xfd4c,5}}, + {{0x27e0,3},{0x1a63,3}}, {{0x2dbf,5},{0xf63,2}}, {{0xbded,5},{0x10cb,2}}, {{0x29e45,5},{0x9,1}}, + {{0x19b9,1},{0xe5e,2}}, {{0x3694,4},{0xe92,3}}, {{0xd0b8,6},{0xd0be,5}}, {{0x29cf,3},{0xf70,2}}, + {{0x712f,4},{0x2b86,4}}, {{0x125d,8},{0x6a69,5}}, {{0x2b50f,2},{0x2b511,2}}, {{0x10d64,6},{0x28e3,4}}, + {{0x1947,5},{0xd28b,6}}, {{0x2bb4,2},{0xcc9,2}}, {{0xcc8,1},{0xf62,3}}, {{0x1577,7},{0xe86,2}}, + {{0x12c3,4},{0x136ee,5}}, {{0x4f43,7},{0xe92,5}}, {{0x1677,4},{0xd7cb,4}}, {{0x3487,9},{0x12be,5}}, + {{0x19f7,4},{0x2236,3}}, {{0x12b2,8},{0x43fb,3}}, {{0xe6f,3},{0xe95,2}}, {{0xe5b,3},{0x1189,3}}, + {{0xe1f,3},{0xefa,2}}, {{0x1a9fc,6},{0xcd3,2}}, {{0x1007,5},{0xec53,3}}, {{0xbf91,7},{0x6bd4,4}}, + {{0x9b99,3},{0xe11,1}}, {{0x1f38,1},{0xe22,2}}, {{0xa659,5},{0xe11,1}}, {{0x455f,5},{0xe69,6}}, + {{0x9,2},{0x1cee,4}}, {{0x6e3d,10},{0xec6,3}}, {{0xccd,1},{0xec6,3}}, {{0xf31,3},{0x1692,5}}, + {{0x4295,8},{0x10bb,5}}, {{0xb3f1,3},{0xe0f,1}}, {{0x2d11,3},{0x12fe,4}}, {{0x10868,8},{0xec6,3}}, + {{0x55d0,6},{0x809a,3}}, {{0xcc8,1},{0x1d31a,6}}, {{0xf65,3},{0xcf9f,6}}, {{0x4765,3},{0xe7f,2}}, + {{0x205a9,2},{0x205a9,2}}, {{0xa485,8},{0x43fd,4}}, {{0xe7a,2},{0x1af1,11}}, {{0x6012,6},{0x1720,7}}, + {{0xf0c,1},{0xcc6,2}}, {{0x1208,7},{0xae95,4}}, {{0x1081,7},{0x2d10,7}}, {{0x12f6,4},{0x28632,3}}, + {{0x2bc7,9},{0xed6,2}}, {{0x1c37,9},{0xfdd,4}}, {{0xb289,7},{0x13e3,4}}, {{0xe89,2},{0x3,1}}, + {{0x70af,2},{0xcc8,1}}, {{0x4767,1},{0xedd,1}}, {{0x116d8,6},{0x10a89,5}}, {{0xe86,2},{0xe77,3}}, + {{0xf15,1},{0x11a6,2}}, {{0x1081,4},{0x6008,3}}, {{0x17f62,5},{0x2790,5}}, {{0xe11,2},{0xf1f,3}}, + {{0xf4f,1},{0x5,1}}, {{0xf77,3},{0x2dd7,4}}, {{0x2691e,2},{0xe99,1}}, {{0x5715,6},{0x1177,7}}, + {{0xe8a,2},{0xf7a,2}}, {{0x19b9,1},{0x4d5f,3}}, {{0xbc79,4},{0x1085,3}}, {{0x7965,9},{0xcc9,2}}, + {{0x1969,1},{0xcce,3}}, {{0xe56e,8},{0xec6,3}}, {{0xe60,2},{0x1c7c,4}}, {{0xcb8,1},{0x2252,3}}, + {{0x29a2,6},{0x159c,4}}, {{0xf59,2},{0xcc7,1}}, {{0x1832,3},{0xf7a,2}}, {{0xe1f,3},{0x1debd,2}}, + {{0xe97,3},{0xe65,2}}, {{0x2858,5},{0x34d7,4}}, {{0x27e0,3},{0x22fe,5}}, {{0x168e0,5},{0x8cd3,3}}, + {{0x3a7d,6},{0x180f,7}}, {{0x478f,3},{0xe5e,2}}, {{0x1290,4},{0x1b8a,7}}, {{0xe2b,2},{0x13e3,4}}, + {{0xf0c,1},{0xe0a,1}}, {{0x4225,4},{0x1d495,5}}, {{0xb595,5},{0x86c6,6}}, {{0x4153,8},{0x13e3,4}}, + {{0x75b4,7},{0x2c15,3}}, {{0x18ee0,2},{0x2e79a,2}}, {{0x1817,4},{0x4789,5}}, {{0x7119,5},{0x4665,4}}, + {{0xfa5,2},{0x4833,4}}, {{0x2ba5,1},{0xe1c,3}}, {{0x12d4,3},{0x6008,3}}, {{0x6,2},{0xcc3,2}}, + {{0x1467,4},{0x2d11,3}}, {{0x233f,7},{0x61b9,5}}, {{0x19b7,3},{0x48d6,2}}, {{0xa9a6,4},{0xf7a,2}}, + {{0x3a29,4},{0x9498,5}}, {{0x1d18,5},{0x8441,4}}, {{0x30869,4},{0x2e7c0,2}}, {{0xe32,1},{0x5988,3}}, + {{0x1081,4},{0x10d55,4}}, {{0xa85d,9},{0xe11,1}}, {{0xf65,5},{0xe6c,3}}, {{0x19f7,4},{0x13e1,5}}, + {{0x5d54,5},{0x775c,4}}, {{0xe33,1},{0x2c509,2}}, {{0xe7d,2},{0xcc1,1}}, {{0x120c,3},{0xe77,3}}, + {{0x236c,5},{0xf02,2}}, {{0x329d,5},{0x1db1,3}}, {{0x6d05,5},{0x1252,3}}, {{0x105f,3},{0x38e2,5}}, + {{0x6644,5},{0xccc,2}}, {{0x7d3d,6},{0xa0cc,5}}, {{0x156a,3},{0x1b9d,4}}, {{0x26ff,8},{0xe0b,4}}, + {{0xf1d,1},{0xcbd,1}}, {{0xe6f,3},{0x3b49,6}}, {{0x181b,3},{0xf7a,2}}, {{0x2e271,3},{0x2e27e,2}}, + {{0x4781,3},{0x18351,3}}, {{0x29cf,3},{0x2a4e2,2}}, {{0xe11,1},{0x1663,4}}, {{0x3131,6},{0x11d9,3}}, + {{0x205a1,1},{0x78f9,1}}, {{0x8cf1,6},{0xec6,3}}, {{0x2f71,4},{0xf1a,2}}, {{0xe1f,3},{0xf4f,1}}, + {{0x3a37,6},{0x155b,3}}, {{0xcce,2},{0x14ab,4}}, {{0x16a7,3},{0x1783,4}}, {{0x496c,6},{0xe69,6}}, + {{0xe71,1},{0x44b2,5}}, {{0x1967,3},{0xcd3,1}}, {{0x1cd3,3},{0xe5e,2}}, {{0x13d7a,6},{0xf63,2}}, + {{0xef7,3},{0x1040,3}}, {{0x1467,4},{0xe0a,1}}, {{0x7a79,6},{0x13e3,4}}, {{0xf77,3},{0x1bec7,5}}, + {{0x80f1,6},{0x9,2}}, {{0xc015,4},{0x109b,2}}, {{0x4f79,3},{0xe11,1}}, {{0x2a47,3},{0xcc1,1}}, + {{0x3170b,2},{0x307bb,1}}, {{0x111a,3},{0x4618,3}}, {{0x772d,6},{0x2075,3}}, {{0xed5,3},{0x1001,3}}, + {{0x11ddb,7},{0x3555,4}}, {{0xe5b,3},{0x1b0d,3}}, {{0x3583,7},{0x1702,5}}, {{0x113c,3},{0xe6c,3}}, + {{0x4,1},{0x2844,5}}, {{0xe83,5},{0xeb7,7}}, {{0x4781,3},{0x1153,2}}, {{0x130be,6},{0xed6,2}}, + {{0xed9,2},{0xe71,1}}, {{0x1756a,5},{0x249f,3}}, {{0x1bb0,6},{0xcc9,2}}, {{0x10b6a,5},{0x249e,4}}, + {{0x1647,5},{0x1ce7,4}}, {{0x478f,7},{0xe1b,3}}, {{0x10c5,5},{0x142d,3}}, {{0x1dede,6},{0xeca,3}}, + {{0xcf2c,8},{0xe32,1}}, {{0x4853,3},{0x45ee,3}}, {{0xe97,3},{0x162c,3}}, {{0x12a06,6},{0x296e,4}}, + {{0x48dd,6},{0x2269,4}}, {{0xf0f,2},{0xa,2}}, {{0x1357,2},{0x1357,2}}, {{0x10cb,2},{0x8,1}}, + {{0x3107,5},{0x10b9,3}}, {{0x359f,9},{0x1004,3}}, {{0x8835,5},{0xe5e,2}}, {{0x16a7,3},{0xe09,1}}, + {{0xe0c,2},{0x109b,2}}, {{0x1607,5},{0x286d,3}}, {{0xfc7,3},{0xff1,4}}, {{0x2a92,6},{0x101f,3}}, + {{0x1154e,2},{0x1807e,4}}, {{0x2a92,6},{0xeee,3}}, {{0x4137,5},{0xed6,2}}, {{0x16944,5},{0xabc4,4}}, + {{0x759a,8},{0x28f8,5}}, {{0xb69d,5},{0xfa6,3}}, {{0xe83,3},{0xc39f,4}}, {{0x72cf,6},{0x72e2,7}}, + {{0x19b7,3},{0x11b5,2}}, {{0x772d,5},{0xcc3,2}}, {{0xcbd,1},{0x5,1}}, {{0x5715,6},{0x27dc,4}}, + {{0x33ed,7},{0xe69,5}}, {{0x1f03f,2},{0xe16,1}}, {{0xfb0,3},{0x2269,4}}, {{0xf4f,1},{0xe13,3}}, + {{0x18f7,4},{0x183a,3}}, {{0xf0d,2},{0x8,1}}, {{0x23e99,2},{0xedd,1}}, {{0xb901,5},{0x1054,3}}, + {{0x1e26,6},{0xe60,2}}, {{0x127f,4},{0x1859,4}}, {{0x2df3b,4},{0x1ac,2}}, {{0x442b,3},{0x1153,2}}, + {{0x9af,2},{0x2b088,2}}, {{0xcc8,1},{0xf0f,2}}, {{0x1687,4},{0x15052,6}}, {{0x2330,5},{0x9faa,7}}, + {{0x2ced,5},{0x348b,5}}, {{0x3521,6},{0xfb8,3}}, {{0xe75,2},{0xe77,3}}, {{0x3d39,5},{0xd8bc,5}}, + {{0x300b,8},{0xf7a,2}}, {{0x66c6,5},{0xe11,1}}, {{0x1e89b,5},{0x490c,3}}, {{0x11a08,7},{0x1fc7,3}}, + {{0x44ad,3},{0xcc9,2}}, {{0x4287,5},{0x122d,2}}, {{0x38e7,7},{0x9a30,5}}, {{0x20579,1},{0xcd6,1}}, + {{0x88d1,7},{0x37c8,5}}, {{0x220db,6},{0xe95,2}}, {{0x4767,1},{0x1969,1}}, {{0xa215,5},{0x1252,3}}, + {{0x12c4a,8},{0xe95,2}}, {{0x1d72,10},{0xec6,3}}, {{0xc954,6},{0xc95a,5}}, {{0x46bd,3},{0x2c85,2}}, + {{0x1a27f,6},{0xe11,1}}, {{0x4773,4},{0x5e4f,3}}, {{0x111a,3},{0x7d81,4}}, {{0x1fe8,5},{0x1214,5}}, + {{0x1647,5},{0x373a,4}}, {{0x27e0,4},{0xe0f9,3}}, {{0x4,1},{0x127c,3}}, {{0xbb4,2},{0x2e276,4}}, + {{0xadcd,6},{0x3075,3}}, {{0x10b8,2},{0xe0a,1}}, {{0x111a,3},{0x4385,3}}, {{0xe37,4},{0xc78,2}}, + {{0xcc7,1},{0x3444,6}}, {{0x64cb,8},{0x1722,5}}, {{0x125d,6},{0xd886,4}}, {{0x591d,5},{0xe67,7}}, + {{0xc6f7,4},{0x7918,4}}, {{0x7303,5},{0xfe6,2}}, {{0xf31,2},{0x155e,3}}, {{0x11b5,2},{0xcc8,1}}, + {{0xe0a,1},{0x158f,3}}, {{0x3559,4},{0x129b9,4}}, {{0xe97,3},{0xf1a,2}}, {{0xf65,4},{0xebb,3}}, + {{0x983d,8},{0xcc9,2}}, {{0x7d61,8},{0xcc9,2}}, {{0x1118a,2},{0xedd,1}}, {{0x11373,4},{0x1a5b,6}}, + {{0x4,1},{0x3,2}}, {{0x4597,4},{0xf9d,3}}, {{0x115e,7},{0x1050,3}}, {{0x10ca9,5},{0x4540,3}}, + {{0x1967,3},{0xcba,2}}, {{0x27ef,4},{0x3ce0,5}}, {{0x2966,4},{0x4e43,4}}, {{0x18fc2,3},{0x4ef1,4}}, + {{0x1024,2},{0x8441,4}}, {{0xe65,2},{0x30f7,2}}, {{0x12f8,2},{0x164a2,5}}, {{0xfe0,2},{0xcce,2}}, + {{0xd48,4},{0x2b07c,2}}, {{0x1367,3},{0x6d4e,5}}, {{0x16f7,6},{0x2417,6}}, {{0x8049,9},{0xcc9,2}}, + {{0xf18,2},{0xec6,3}}, {{0x22523,6},{0xe67,2}}, {{0xf4f,1},{0xfdf,3}}, {{0x4f9e,8},{0xec6,3}}, + {{0x29cf,3},{0xe86,2}}, {{0x1790,3},{0xe11,1}}, {{0x58a8,5},{0xd485,6}}, {{0x4f43,7},{0xe69,5}}, + {{0x72d1,2},{0x5849,4}}, {{0x27e0,3},{0xf24,2}}, {{0xae69,5},{0x14c76,4}}, {{0xef7,7},{0xec6,3}}, + {{0x2a47,3},{0x584a,2}}, {{0xf1a,2},{0x168b,4}}, {{0xec6,3},{0xec6,3}}, {{0x4cb9,7},{0x4,1}}, + {{0x5722,5},{0x1783,4}}, {{0xcd3,2},{0x1523,4}}, {{0xe32,1},{0x492e,3}}, {{0x1987,5},{0x8,1}}, + {{0x17b70,5},{0x9593,2}}, {{0x5290,9},{0xe77,3}}, {{0x12e5,3},{0x181b,3}}, {{0xf15,1},{0x101f,2}}, + {{0x17808,6},{0xebb,3}}, {{0xe33,1},{0x3356,4}}, {{0xaaf,2},{0xe67,2}}, {{0x2a81f,5},{0x6,1}}, + {{0xbf49,7},{0xbf50,4}}, {{0x4597,5},{0x13a73,5}}, {{0x154e0,6},{0xfb8,3}}, {{0x113f,2},{0x1cd3,2}}, + {{0x4781,3},{0x1e3d,3}}, {{0x2690c,2},{0xe33,1}}, {{0x6cc4,4},{0xe25,2}}, {{0x10d64,6},{0x7a36,3}}, + {{0x18479,5},{0xcc3,2}}, {{0xff6d,5},{0x156a,3}}, {{0xfbf,5},{0xf91,3}}, {{0xcc7,1},{0xf50,3}}, + {{0xed5,3},{0x249f,3}}, {{0xf0a,3},{0xfa6,3}}, {{0x59b9,5},{0x2252,3}}, {{0x17661,2},{0x7416,1}}, + {{0x125d,6},{0x3ce0,5}}, {{0x21819,6},{0xe95,2}}, {{0x8439,5},{0xed6,2}}, {{0x110be,5},{0xed5,3}}, + {{0xef7,3},{0xc541,3}}, {{0xe21,1},{0xe99,1}}, {{0x22b8,4},{0xf04,2}}, {{0x1847,5},{0x1d2f,7}}, + {{0x6304,4},{0x10b9,2}}, {{0x1967,3},{0x11a6,2}}, {{0x1e44,6},{0x1b41,4}}, {{0x111a,3},{0x6,1}}, + {{0x1790,6},{0x1be9,3}}, {{0xe97,3},{0x10cb,2}}, {{0xb481,4},{0x8,1}}, {{0xf0d,2},{0x23c0,6}}, + {{0xe11,2},{0xe22,2}}, {{0xd147,5},{0x4fa8,3}}, {{0xe4a8,5},{0xcc8,1}}, {{0x1c37,6},{0x1d32,3}}, + {{0x8b65,9},{0xe6b,3}}, {{0xcb8,1},{0x2f33,6}}, {{0x1f4,2},{0x45,1}}, {{0xc1ad,5},{0xe77,3}}, + {{0x73b9,5},{0xf35,2}}, {{0xe32,1},{0xed9,2}}, {{0xe33,1},{0xcc3,3}}, {{0x162c,3},{0xf1a,2}}, + {{0x7414,3},{0xe08,1}}, {{0x29a2,6},{0x1e5e,4}}, {{0x10e4b,6},{0xe0d,2}}, {{0x11892,8},{0xec6,3}}, + {{0x1189,3},{0x8,1}}, {{0x101f,2},{0x1b41,4}}, {{0x1bbf,4},{0xefa,2}}, {{0x2006,3},{0xe71,1}}, + {{0x5c29,7},{0x1254,6}}, {{0xbbdd,8},{0xe11,1}}, {{0xf0c,1},{0xfcb,2}}, {{0x142d,3},{0x13e4,3}}, + {{0x3a1b,5},{0x277d,3}}, {{0x10c5,4},{0x2266,5}}, {{0x6b3e,10},{0xf23,3}}, {{0x2a47,3},{0x30ba,7}}, + {{0xcc3,2},{0xf63,2}}, {{0x113f,2},{0xe69,5}}, {{0x1cd3,2},{0x1155,2}}, {{0x7905,2},{0x7905,2}}, + {{0xf70,2},{0xfdd,4}}, {{0xccd,1},{0xfcb,2}}, {{0x1230,3},{0xb,1}}, {{0x7004,7},{0xe69,6}}, + {{0x3170,3},{0x1b41,4}}, {{0xe0b,2},{0x3170,3}}, {{0x29c0,4},{0x9a6,1}}, {{0x18184,4},{0xcc9,2}}, + {{0xee9,2},{0x9,1}}, {{0x1c91,6},{0x4f63,7}}, {{0xe67,2},{0xfa5,2}}, {{0xc159,4},{0xe0a,1}}, + {{0x478f,3},{0xe0b,2}}, {{0x7ff5,5},{0x1f9f,3}}, {{0x562b,5},{0xfb8,3}}, {{0x1a1f8,5},{0x2271,3}}, + {{0x433d,7},{0x1f78,7}}, {{0x417d,5},{0x29d4,3}}, {{0xe16,1},{0xedd,1}}, {{0xebe,4},{0x22a2,3}}, + {{0x1787,6},{0x1153,2}}, {{0x153aa,6},{0xe95,2}}, {{0xcd3,1},{0xcb8,1}}, {{0xe11,2},{0xf62,3}}, + {{0x7414,3},{0xe22,2}}, {{0xe5b,3},{0x3976,3}}, {{0x1607,5},{0x1077,6}}, {{0x2d25,8},{0x13e3,4}}, + {{0xe1f,3},{0xd0a9,4}}, {{0xe08,1},{0x288b,2}}, {{0x17148,2},{0x4b55,5}}, {{0x1118a,2},{0xf0c,1}}, + {{0x111a,3},{0x18c0e,4}}, {{0x3de1,5},{0x22a3,2}}, {{0x19b7,3},{0xe89,3}}, {{0xe78,1},{0xe11,1}}, + {{0x1677,3},{0x225ce,5}}, {{0xcc8,1},{0x10cb,2}}, {{0x27e0,3},{0x57e0,5}}, {{0x1677,3},{0x1593,3}}, + {{0x1137e,5},{0x142d,3}}, {{0x6,2},{0x5261,4}}, {{0x4853,5},{0xe11,1}}, {{0x824d,4},{0xf24,2}}, + {{0x6164,5},{0x5538,2}}, {{0xe11,2},{0x6,2}}, {{0x73ed,5},{0x5eaf,4}}, {{0x28c1,4},{0xb13d,8}}, + {{0x1839,2},{0xcc1,1}}, {{0xcedf,7},{0xed6,2}}, {{0xf65,4},{0xe32,1}}, {{0x10b4,7},{0x1b80,3}}, + {{0x39d5,7},{0xe67,2}}, {{0xf0a,3},{0x7416,1}}, {{0xf80,2},{0xe22,2}}, {{0x1a56,2},{0x127c,3}}, + {{0x2de81,4},{0x9f,1}}, {{0x16340,6},{0x4dc6,4}}, {{0x11873,4},{0xed6,2}}, {{0x3a29,4},{0xf24,2}}, + {{0x1b5d5,6},{0xec6,3}}, {{0x39ff,7},{0x129a,6}}, {{0x70fb,5},{0xfe6,2}}, {{0x1f52,14},{0xe11,1}}, + {{0x591d,5},{0x1fc7,3}}, {{0xcc8,2},{0xe22,2}}, {{0x27e0,4},{0x566f,4}}, {{0x11894,6},{0xec6,3}}, + {{0x2f71,4},{0x1c1e0,4}}, {{0xf48e,6},{0xe11,1}}, {{0x28d0,4},{0x2268,5}}, {{0x46bf,1},{0x12a3,3}}, + {{0x8811,7},{0xf7a,2}}, {{0x824d,4},{0xed7d,5}}, {{0x1373,2},{0x4833,4}}, {{0x29f3,3},{0xcd3,1}}, + {{0x2,1},{0x30ba,7}}, {{0x6d1f,8},{0x18b4,3}}, {{0xf3a,2},{0x1de7,3}}, {{0x2948,3},{0x4963,4}}, + {{0x1a66,1},{0x2,1}}, {{0x3dd3,6},{0x31d1,7}}, {{0x2e28,3},{0x30f7,2}}, {{0x11ec2,5},{0x116ea,4}}, + {{0x29d4,3},{0xe90,3}}, {{0xf77,5},{0xcc3,2}}, {{0x1cfa5,5},{0xe0c,3}}, {{0xc15b,2},{0x123e,3}}, + {{0x11b3,4},{0x5d31,6}}, {{0xf11,1},{0xf0c,1}}, {{0xef66,7},{0xec3,3}}, {{0x2058b,3},{0x9f,1}}, + {{0x7414,3},{0x94b5,3}}, {{0x18d7,9},{0xec6,3}}, {{0xe97,4},{0xe0d,2}}, {{0xe97,3},{0x1a56,2}}, + {{0x3fbd,9},{0xec6,3}}, {{0xf77,4},{0xecc,3}}, {{0x1967,3},{0x14f9,3}}, {{0xe11,1},{0x11b5,2}}, + {{0x145b8,7},{0x11dc,3}}, {{0x1e71,6},{0x1fc5,5}}, {{0xf15,1},{0xe2f,1}}, {{0x18afc,6},{0x8845,4}}, + {{0x4853,4},{0x7097,5}}, {{0x2588,11},{0xec6,3}}, {{0xe1f,3},{0x7d1f,3}}, {{0x70ad,4},{0x10cb,4}}, + {{0x12d4,3},{0x11a6,2}}, {{0x115e,7},{0x184d,6}}, {{0x105f,3},{0xf16,2}}, {{0x5e3e,5},{0x114f,3}}, + {{0x19e7,5},{0xcc8,1}}, {{0x9a8,1},{0x158f,3}}, {{0x2f71,4},{0x7948,5}}, {{0x26d2,8},{0xec5,4}}, + {{0x1967,3},{0x19b9,1}}, {{0x23f16,2},{0x23f18,3}}, {{0x4e3f,8},{0xec6,3}}, {{0x14a7,4},{0x1be9,3}}, + {{0x1047,3},{0xec6,3}}, {{0x4781,3},{0xfb0,2}}, {{0x22e5,4},{0x44ad,3}}, {{0xe11,1},{0xd084,5}}, + {{0x1344c,5},{0x42f9,5}}, {{0x1c46,6},{0xeb5,2}}, {{0xe21,1},{0x1dee,2}}, {{0xb2d1,7},{0xe92,5}}, + {{0x12a1,4},{0x1d32,3}}, {{0x4765,3},{0xead,3}}, {{0xc996,8},{0xe11,1}}, {{0x2768,7},{0x1024,7}}, + {{0x1a07,3},{0xe2f,1}}, {{0x59d3,7},{0x1b9d,4}}, {{0x1007,6},{0xd704,5}}, {{0x495f,5},{0x17c0,2}}, + {{0xaaf,2},{0x311a9,2}}, {{0x1567,3},{0x1050,3}}, {{0xf0a,3},{0x1a66,1}}, {{0xe32,1},{0xe86,2}}, + {{0x113c,3},{0xe09,1}}, {{0x17f58,6},{0xb,1}}, {{0x1e9e,4},{0x1ab8c,5}}, {{0x10c5,4},{0x9a6,1}}, + {{0x13050,5},{0x2,1}}, {{0x10a3,3},{0x15af,3}}, {{0x712f,6},{0x1279,6}}, {{0x1777,5},{0x1e5e,4}}, + {{0x4853,3},{0x320c,4}}, {{0x2fc1d,3},{0x2e27d,1}}, {{0xeed,4},{0xe69,5}}, {{0xf0d,2},{0x156a,3}}, + {{0xe584,7},{0xec6,3}}, {{0xe97,3},{0xdb73,3}}, {{0x1780,3},{0x2,1}}, {{0x4765,3},{0x20fbd,4}}, + {{0x113c,3},{0x4928,3}}, {{0x70ad,3},{0x4e62,4}}, {{0x10b9,2},{0x149f,3}}, {{0x1ff7,3},{0x2b78,4}}, + {{0x1977,4},{0x17cc,4}}, {{0xf0c,1},{0x12211,4}}, {{0xb1a5,6},{0xf7a,2}}, {{0x16a7,6},{0x16ad,5}}, + {{0x478f,3},{0x88fb,5}}, {{0x127f,3},{0x1511,6}}, {{0x128bc,8},{0xe11,1}}, {{0x1384,2},{0xfb0,2}}, + {{0xc075,5},{0xe67,2}}, {{0x12d4,3},{0x6,2}}, {{0x953d,6},{0xec6,3}}, {{0x4153,7},{0x129a,6}}, + {{0x1f38,1},{0xe09,1}}, {{0x10a3,3},{0x23427,4}}, {{0xedd,1},{0x3381,3}}, {{0xe5b,3},{0x1849,3}}, + {{0x10cb,4},{0xe0a,1}}, {{0x1789,4},{0x2ca1,6}}, {{0xe99,1},{0xfb8,3}}, {{0x10e4b,6},{0xe32,1}}, + {{0xf77,3},{0xf62,3}}, {{0x8469,4},{0x5539,3}}, {{0x8,1},{0x2e33,4}}, {{0x1967,4},{0x1ab32,5}}, + {{0x225e,6},{0x6451,5}}, {{0x506e,9},{0xec6,3}}, {{0x112b8,5},{0x1b9d,4}}, {{0x123ee,5},{0x1159,4}}, + {{0x2370b,6},{0xe11,1}}, {{0xf0a,3},{0x286d,3}}, {{0xed9,2},{0xcd3,2}}, {{0xccd,1},{0xcd3,1}}, + {{0xc437,5},{0xed9,2}}, {{0x2948,3},{0xf4f,1}}, {{0x19b9,1},{0x48d3,2}}, {{0x4519,4},{0x3,1}}, + {{0x10c5,4},{0x716c,4}}, {{0xcc1,1},{0x4017,6}}, {{0x1019,4},{0x163da,6}}, {{0xe1f,3},{0x2d11,3}}, + {{0x1eaa5,5},{0x1e73,3}}, {{0x24b6,5},{0xf35,3}}, {{0x4781,3},{0xcbac,5}}, {{0x4be9,5},{0xe71,1}}, + {{0x113c,3},{0xf1f,3}}, {{0xf89,3},{0x320c,5}}, {{0x1e343,5},{0x1a5e,3}}, {{0x39d5,7},{0x14a2,3}}, + {{0x19b7,3},{0xe7d,2}}, {{0x112b8,5},{0x1003,3}}, {{0x1081,11},{0xcc9,2}}, {{0x12d4,3},{0x293e,5}}, + {{0x2afb6,4},{0xe,1}}, {{0x7414,6},{0x741a,7}}, {{0x1dc56,4},{0xcc3,2}}, {{0xe19,2},{0xe1b,4}}, + {{0x1977,3},{0x1dcb7,2}}, {{0x1367,3},{0x169d,3}}, {{0x1ff7,3},{0xe989,5}}, {{0x16bc4,6},{0x10f5,3}}, + {{0x19b7,3},{0x17c0,2}}, {{0x2240,4},{0xed5,3}}, {{0x29cf,3},{0x1a71,3}}, {{0x1a49b,6},{0xed9,2}}, + {{0xae69,8},{0xe11,1}}, {{0x1847,5},{0x10458,6}}, {{0x3e0b,5},{0x111c,2}}, {{0x1fbb,5},{0x5261,4}}, + {{0x1062,2},{0xf59,2}}, {{0xf0d,2},{0xe1c,3}}, {{0x260,2},{0x57,1}}, {{0xe83,5},{0x1ebe,3}}, + {{0x235db,5},{0xf91,3}}, {{0x11df1,5},{0x11df6,6}}, {{0xf1c3,5},{0x127c,3}}, {{0x168a,3},{0x111c,2}}, + {{0x2015,6},{0x2c6a,5}}, {{0x34b1,6},{0xfbb,4}}, {{0x2fe1,9},{0xcc9,2}}, {{0x3643,3},{0x1b9d,4}}, + {{0x1aefa,6},{0xcc9,2}}, {{0x10e8d,5},{0xf63,2}}, {{0x11871,6},{0xed6,2}}, {{0xf4f,1},{0x7979,4}}, + {{0xcf6,8},{0xcf6,8}}, {{0x10b6a,5},{0x1064,3}}, {{0xe83,3},{0x6008,3}}, {{0x1150,2},{0x2,1}}, + {{0xfbf,5},{0xffc,3}}, {{0x2a47,3},{0x952b,5}}, {{0x2f2e,3},{0x2f3f,5}}, {{0x2006,4},{0x6ba3,3}}, + {{0x4853,3},{0x40d8,3}}, {{0xf77,3},{0x22a3,2}}, {{0x1969,1},{0x181b,3}}, {{0x1847,5},{0x10463,6}}, + {{0x2bae,2},{0x39bd,8}}, {{0xb745,5},{0xcce,2}}, {{0x1537,6},{0xf84,5}}, {{0x113c,5},{0x146d,9}}, + {{0x1967,4},{0xcc3,3}}, {{0xcbd,1},{0xf86,2}}, {{0x42f7,9},{0x13e3,4}}, {{0x19e7,5},{0x34ab,3}}, + {{0x11f25,5},{0xfe6,2}}, {{0x2df77,5},{0x21,1}}, {{0x17120,2},{0xf91,3}}, {{0xcc3,2},{0xed6,2}}, + {{0x2687,8},{0xec6,3}}, {{0x76d2,9},{0x76db,4}}, {{0x1b413,6},{0xed6,2}}, {{0x1e9e,4},{0xf91,3}}, + {{0x12e5,3},{0xe09,1}}, {{0x1092,7},{0xfdd,6}}, {{0x1bec,5},{0x1b8a,7}}, {{0x2948,4},{0x4a19,7}}, + {{0x15e7,5},{0x1632,5}}, {{0x158f,3},{0xf63,2}}, {{0x506e,9},{0x12bf,4}}, {{0x4853,3},{0x1db3a,2}}, + {{0x4765,3},{0x2d8d,3}}, {{0x16a7,3},{0x2d11,3}}, {{0x4853,3},{0x20bed,3}}, {{0x8829,6},{0x1baa,3}}, + {{0xed9,2},{0x1489,2}}, {{0x2015,3},{0x12a3,3}}, {{0x433d,7},{0x6f3b,6}}, {{0x824d,4},{0x1393,3}}, + {{0x30ebf,3},{0xab1,1}}, {{0x32ab,6},{0xe77,3}}, {{0x12e5,3},{0xe0f,1}}, {{0x1c73,5},{0xc4cb,6}}, + {{0xd3af,8},{0xcc9,2}}, {{0x115e,7},{0x278e,7}}, {{0xe08,1},{0xe09,2}}, {{0xc281,4},{0xc287,2}}, + {{0xe71,1},{0xcc3,2}}, {{0x1333e,7},{0x13345,3}}, {{0x70ad,3},{0x7974,4}}, {{0xa965,9},{0xec6,3}}, + {{0xaaf,2},{0xe3d,4}}, {{0x9fb1,6},{0xf150,5}}, {{0x17cc4,5},{0x17cc9,5}}, {{0x5bf5,7},{0xe2b,2}}, + {{0xc6f7,4},{0xec3,3}}, {{0xe08,1},{0x19b9,1}}, {{0x491e,7},{0x156a,3}}, {{0x14fec,5},{0xcc3,2}}, + {{0x2015,3},{0x2ef7,4}}, {{0x18c50,5},{0x18c55,5}}, {{0xe1f,3},{0xe22,5}}, {{0x164b,2},{0x16ad,3}}, + {{0x46af,3},{0xe6b,4}}, {{0x3965,11},{0xcc9,2}}, {{0x18d36,5},{0x18d3b,5}}, {{0xedd,1},{0xcd4,2}}, + {{0x111a,3},{0x5342,3}}, {{0x1e08,5},{0x26ba,3}}, {{0xe71,1},{0xe11,1}}, {{0x58b7,4},{0xcc9,2}}, + {{0x9de9,5},{0x6ec3,3}}, {{0x4781,3},{0xe16,1}}, {{0x46af,3},{0xb37c,3}}, {{0x1e53,7},{0xfdd,6}}, + {{0x4853,3},{0x1cd3,2}}, {{0x6ff7,5},{0x1288,4}}, {{0x19b9,1},{0x1153,2}}, {{0x4853,3},{0xefa,2}}, + {{0x1a84,5},{0x6,1}}, {{0x15904,7},{0x1a72,3}}, {{0x38e7,4},{0x11df6,4}}, {{0x62ea,5},{0xf9e8,5}}, + {{0x21061,6},{0xed6,2}}, {{0xe11,1},{0x8244,5}}, {{0x4765,3},{0xe16,1}}, {{0x1c28,5},{0xccc,2}}, + {{0xe83,5},{0x2461,6}}, {{0x3a7d,7},{0xe2b,2}}, {{0x2a47,3},{0x1943,2}}, {{0xb451,5},{0x5,2}}, + {{0x57ff,8},{0xebb,3}}, {{0x2ba5,1},{0x1b14,4}}, {{0xf86,2},{0xf63,2}}, {{0xe83,3},{0x13e3,4}}, + {{0xe35e,6},{0xf7a,2}}, {{0x1bfb,7},{0x1ba9,7}}, {{0x10b9,2},{0x1131,3}}, {{0x127f,4},{0x6ec3,4}}, + {{0x53fc,8},{0x13c3,4}}, {{0xc017,2},{0x17c0,2}}, {{0x2968,3},{0xee9,2}}, {{0xaeb4,5},{0x7a39,4}}, + {{0x45dd,6},{0xf24,2}}, {{0x125d,5},{0xcc9,2}}, {{0xcbd,4},{0xcc9,2}}, {{0x5,1},{0x149f,3}}, + {{0x3089,5},{0x30ba,7}}, {{0x12f8,2},{0xfbb,3}}, {{0xed1,5},{0x5eaf,4}}, {{0x3a1b,6},{0xec6,3}}, + {{0x13a7,5},{0xf91,3}}, {{0x2058b,3},{0xd,1}}, {{0x1687,4},{0x6,2}}, {{0x17e7,9},{0x129a,7}}, + {{0x20f6,5},{0x5957,4}}, {{0x4f91,5},{0x15fe,4}}, {{0x1367,4},{0x206bd,4}}, {{0x797d,5},{0x1e5e,4}}, + {{0x1a29,2},{0x189b,12}}, {{0x24e3,9},{0xe92,5}}, {{0x16fe8,6},{0xec6,3}}, {{0x10a3,3},{0x49a6,3}}, + {{0x1150,2},{0x127c,3}}, {{0x9a6,1},{0x4618,3}}, {{0xe3d7,6},{0xe92,3}}, {{0xe6f,3},{0x1d65,3}}, + {{0x2bf1,5},{0xe69,5}}, {{0x12394,6},{0x2dd7,4}}, {{0xcd2,2},{0x10b8,2}}, {{0x28fda,4},{0x74f9,2}}, + {{0x40ab,9},{0x1be9,3}}, {{0x115e,5},{0xe09,1}}, {{0x127f,3},{0xfb8,3}}, {{0x8859,8},{0xec6,3}}, + {{0x41df,7},{0xcb9,4}}, {{0xb379,3},{0x18fc5,5}}, {{0xaf2,4},{0x11,1}}, {{0x110c9,7},{0xfdd,4}}, + {{0xcc1,1},{0x12fd,3}}, {{0x4c03,5},{0x142a,3}}, {{0x1092,7},{0x1099,8}}, {{0x2501,5},{0x8f2c,5}}, + {{0x4bcf,7},{0x4bd6,6}}, {{0x2ba5,1},{0x123e,3}}, {{0xe2f,1},{0xc570,6}}, {{0xcd1,2},{0x1380,5}}, + {{0x19e7,8},{0xe67,8}}, {{0x3b5d,5},{0x18b4,3}}, {{0x7f41,4},{0x78d0,3}}, {{0x58f6,7},{0xf0d,2}}, + {{0xe61,2},{0x2075,3}}, {{0xf79,3},{0x6,1}}, {{0x2a1b2,4},{0x2b81,2}}, {{0xee4,4},{0x2ca1,4}}, + {{0x4765,3},{0x1943e,4}}, {{0xe7f,2},{0x5,1}}, {{0xcd3,3},{0xf62,3}}, {{0x28b31,3},{0x205a1,1}}, + {{0xe09,1},{0x13c3,4}}, {{0x29cf,3},{0x93b4,7}}, {{0x1ceb,6},{0xed9,2}}, {{0x451b,2},{0xfe8,2}}, + {{0x9,1},{0xe32,1}}, {{0x17ca6,5},{0xcd3,1}}, {{0x13a7,7},{0x7c60,5}}, {{0x1977,3},{0x2ba5,1}}, + {{0xecb,2},{0xe13,3}}, {{0xa3f5,7},{0x4a5f,4}}, {{0x155e,3},{0x1561,6}}, {{0x2f71,4},{0x1372,4}}, + {{0x1839,2},{0x3,1}}, {{0x7115,4},{0x7974,4}}, {{0x10d01,6},{0x1c10,4}}, {{0x2015,3},{0xe637,4}}, + {{0xb,1},{0x1177,7}}, {{0x1081,5},{0x3922,3}}, {{0x1cf3,3},{0xe0a,1}}, {{0xcc3,2},{0xcd3,1}}, + {{0x1007,6},{0xf0d,4}}, {{0x4199,5},{0x305a,5}}, {{0x478f,3},{0x2a3ad,4}}, {{0xf16,2},{0x2477,3}}, + {{0x1f4,2},{0x69,1}}, {{0x1967,3},{0x49a6,3}}, {{0x5f01,6},{0x1303,3}}, {{0x1019,4},{0x566f,4}}, + {{0x113c,5},{0x13c3,4}}, {{0x1a07,3},{0xede,1}}, {{0x2ba5,1},{0x15ec,3}}, {{0x12f6,4},{0xb37c,3}}, + {{0xcc7,1},{0xe7f,2}}, {{0x1dc4d,4},{0x3bff,3}}, {{0x4765,3},{0x9a4,3}}, {{0x3d63,5},{0x3056,4}}, + {{0xf0a,3},{0xcbf,2}}, {{0x28df,5},{0x1d7d,3}}, {{0x74f6,2},{0x7416,1}}, {{0xf86,2},{0x6140,3}}, + {{0x478f,3},{0x204cb,2}}, {{0xe5b,3},{0xe89,3}}, {{0x1118f,6},{0xfdf,3}}, {{0xc437,6},{0x17c0,2}}, + {{0x2f9b,8},{0x1224,6}}, {{0x1839,2},{0x9a5,2}}, {{0x1ff7,3},{0xe65,2}}, {{0x7115,4},{0x7119,9}}, + {{0xb87d,6},{0xe69,5}}, {{0xe88,3},{0x138e,4}}, {{0x2f71,4},{0x569a,3}}, {{0xef7,7},{0xf86,3}}, + {{0xe0d,2},{0xce8e,4}}, {{0x12f6,7},{0x12fd,4}}, {{0xd,1},{0x109,2}}, {{0x1081,7},{0x1ba8,5}}, + {{0xf77,4},{0xe29,2}}, {{0xccd,1},{0xe0f9,3}}, {{0x4773,4},{0xe0a,1}}, {{0x488b,4},{0xdcfc,6}}, + {{0x28b33,1},{0x205a1,1}}, {{0x28d0,8},{0x10f2,6}}, {{0x10d3,3},{0x3075,4}}, {{0x1208,5},{0x1155,2}}, + {{0x1e08,5},{0x8c06,3}}, {{0x73ed,4},{0x1889,2}}, {{0x4767,1},{0x16935,5}}, {{0x4765,3},{0x1bef,2}}, + {{0x6087,9},{0xe6b,4}}, {{0xb3f1,5},{0x239e,3}}, {{0x82c5,7},{0xec6,3}}, {{0xb685,5},{0xe11,1}}, + {{0xd5d5,6},{0x11d2,3}}, {{0x5541,6},{0x2e2c,3}}, {{0xcbf,2},{0x4164,3}}, {{0xab99,9},{0xcc9,2}}, + {{0xb96d,5},{0x2fb9,3}}, {{0x15f7,4},{0x1601,3}}, {{0xcd3,1},{0x13041,4}}, {{0x2a56,4},{0xcc1,1}}, + {{0x70ad,3},{0x1d7e,3}}, {{0x41a7,4},{0x1172a,2}}, {{0x4781,3},{0x1969,1}}, {{0x6008,3},{0x6,1}}, + {{0x4401,10},{0xfdf,4}}, {{0xfcb,2},{0xe09,1}}, {{0x39ff,7},{0x3324,5}}, {{0xf0a,3},{0xe16,1}}, + {{0x2255b,6},{0xfe6,2}}, {{0x4765,3},{0x2e32,3}}, {{0x3583,5},{0xdd0a,3}}, {{0x1059,3},{0x8,1}}, + {{0x2a47,3},{0x1969,1}}, {{0xaebd,5},{0x165a7,5}}, {{0x2e27d,1},{0x1,1}}, {{0xc05d,5},{0x18c4b,5}}, + {{0x46bd,3},{0x2e2c,3}}, {{0x111a,3},{0xa1e1,4}}, {{0x46af,3},{0xe22,2}}, {{0x46bf,1},{0xb410,4}}, + {{0x4853,3},{0x2252,3}}, {{0x391f,5},{0xcce,2}}, {{0x73e0,7},{0xebc,2}}, {{0x1fe8,6},{0xe133,5}}, + {{0x433d,4},{0xec6,3}}, {{0x29cf,3},{0x2c21,4}}, {{0x5f35,9},{0xf23,3}}, {{0xf59,3},{0x1a9a,4}}, + {{0x624e,6},{0xf63,2}}, {{0x9105,7},{0x910c,5}}, {{0x28c1,4},{0x1074e,7}}, {{0xb60d,6},{0x8441,4}}, + {{0x9c91,5},{0xed9,2}}, {{0x2df77,5},{0xd,1}}, {{0x1ca54,6},{0xf86,3}}, {{0x14a7,4},{0x837d,4}}, + {{0x3107,5},{0x12b52,4}}, {{0x2ba5,1},{0x527c,7}}, {{0x8385,8},{0xe11,1}}, {{0xccd,1},{0xcc1,1}}, + {{0x4295,8},{0x14e1,6}}, {{0xe83,3},{0x15bff,7}}, {{0x1ff7,3},{0xddb9,4}}, {{0x1153,2},{0xe69,5}}, + {{0x1ff7,3},{0x7bd9,3}}, {{0x46bd,3},{0x2ee9,3}}, {{0xabfe,4},{0x9a9,2}}, {{0x13b7,12},{0xe11,1}}, + {{0xb379,3},{0xa,2}}, {{0xe78,1},{0xcc7,1}}, {{0x1877,7},{0xe78,2}}, {{0x1367,3},{0xf24,2}}, + {{0x4ae5,5},{0x5,2}}, {{0x115e,5},{0x9a4,3}}, {{0x19b7,3},{0xe0f,1}}, {{0x1830,3},{0x15fe,4}}, + {{0x10c5,4},{0x72d3,3}}, {{0x7414,3},{0xcce,2}}, {{0x7414,3},{0xcbd,1}}, {{0x1607,8},{0xec6,3}}, + {{0x2ba5,1},{0x6,1}}, {{0xae75,7},{0x44b3,4}}, {{0xcc8,1},{0xcbf,2}}, {{0xcc7,1},{0x2f2e,4}}, + {{0xc954,6},{0x5849,4}}, {{0xe3d,4},{0x9b1,2}}, {{0xb69d,5},{0x16950,3}}, {{0x1ff7,3},{0x11a6,2}}, + {{0x7115,4},{0x121c,3}}, {{0x9a6,1},{0xe89,3}}, {{0x3bcd,4},{0x142d,3}}, {{0xee9,2},{0xcd3,1}}, + {{0x1150,2},{0xcc1,1}}, {{0x9a8,2},{0xa,2}}, {{0x12d4,3},{0x2,2}}, {{0x10c5,4},{0xcb6,3}}, + {{0xd04a,8},{0xec6,3}}, {{0xef7,7},{0xcc9,2}}, {{0x15ed6,5},{0x3c9a,5}}, {{0x6ee6,5},{0x6eeb,7}}, + {{0x17ec,4},{0xbfca,3}}, {{0x112b,5},{0x3,1}}, {{0x10571,8},{0xe11,1}}, {{0xe09,1},{0xe78,1}}, + {{0xeb5,2},{0x2c59,6}}, {{0x12f6,4},{0x1ffa,3}}, {{0x1e17,7},{0x808c,5}}, {{0x219b,10},{0x21a5,5}}, + {{0x16a7,3},{0x15443,5}}, {{0x4853,3},{0xe5be,3}}, {{0x27e0,3},{0x7d64,4}}, {{0x10b4,4},{0x809a,3}}, + {{0xab1,1},{0x11,1}}, {{0xaeb1,5},{0x943a,5}}, {{0xe1f,3},{0xe92,3}}, {{0xe63f,4},{0x7373,5}}, + {{0x2e271,3},{0x2e273,1}}, {{0xe71,1},{0x4bff,4}}, {{0x15399,2},{0xdd0a,3}}, {{0xe0bf,6},{0xe95,2}}, + {{0x1db99,6},{0xf62,3}}, {{0xe31,2},{0xe22,2}}, {{0x1153,2},{0xe0a,1}}, {{0xede,1},{0x6741,6}}, + {{0xe71,1},{0x102a2,4}}, {{0x1254,6},{0xe11,1}}, {{0xf0a,3},{0x3537,2}}, {{0x11352,5},{0x11357,6}}, + {{0x16bc4,6},{0x44b3,4}}, {{0x30f9,7},{0xf59,2}}, {{0x2,1},{0x122e,2}}, {{0xe89,3},{0x3457,6}}, + {{0xe99,1},{0xcd2,2}}, {{0x16a7,5},{0x2c5b,4}}, {{0x1977,3},{0xe21,1}}, {{0x9af,32},{0x9af,32}}, + {{0x12e5,3},{0x1dee,2}}, {{0xe2b,2},{0x13c3,4}}, {{0xe5b,3},{0x34a9,3}}, {{0x40d5,6},{0x8,1}}, + {{0xe27,2},{0x3640,4}}, {{0x6581,8},{0xeed,4}}, {{0xe09,1},{0xebb,3}}, {{0x4853,3},{0x12fd,3}}, + {{0x1607,5},{0xe670,6}}, {{0xd38e,8},{0xec6,3}}, {{0x7bbd,5},{0x125fb,5}}, {{0x127f,3},{0xf1d,2}}, + {{0x17088,6},{0x1708e,4}}, {{0x111a,3},{0xcbf,2}}, {{0x4853,4},{0x142d,3}}, {{0x73ed,5},{0x6cb4,3}}, + {{0xcca,2},{0x2bad,4}}, {{0x114de,6},{0xeca,3}}, {{0x8229,7},{0xcc9,2}}, {{0x2489,5},{0x4a44,5}}, + {{0x19b7,3},{0xf15,1}}, {{0xe71,1},{0x1be9,3}}, {{0xe83,3},{0xf9f0,8}}, {{0x3bf7,8},{0x4dc6,4}}, + {{0xb396,2},{0x6,1}}, {{0x29a2,5},{0xcbf,2}}, {{0xe5b,3},{0xfb0,3}}, {{0x1397,5},{0x1af2,8}}, + {{0xf65,3},{0xcbd,1}}, {{0xcc6,2},{0xcd3,2}}, {{0xaf4d,8},{0x1523,4}}, {{0x4,2},{0xcbd,1}}, + {{0x1ebc,5},{0x30f7,2}}, {{0xb901,5},{0x2277,5}}, {{0x2b46,4},{0x59b4,3}}, {{0x38ec,3},{0xe0a,1}}, + {{0xe71,2},{0x10d3,3}}, {{0x19b7,3},{0x189f,3}}, {{0x450b,4},{0xe22,2}}, {{0x753f,5},{0xf59,2}}, + {{0xe21,1},{0x8428,3}}, {{0x131b8,6},{0x13e4,3}}, {{0x17c0,2},{0x1025,1}}, {{0x1ff7,3},{0x3a3e,6}}, + {{0x17ec2,5},{0xb,1}}, {{0xef7,3},{0xf02,2}}, {{0xf0c,1},{0xeab,2}}, {{0x1152,3},{0x14e24,3}}, + {{0x1969,1},{0x1bef,2}}, {{0xf,1},{0x666,2}}, {{0x1967,3},{0x1a9c9,6}}, {{0x3123,6},{0x4e39,5}}, + {{0xf65,4},{0xccb,2}}, {{0xe08,1},{0xcc3d,3}}, {{0x17344,6},{0x12bf,4}}, {{0x12c3,5},{0xe95,2}}, + {{0x19e7,8},{0xec3,3}}, {{0xe6f,3},{0x1839,2}}, {{0x10bee,4},{0x4415,3}}, {{0xe0f,1},{0xb37b,1}}, + {{0x1ebc,10},{0x13e3,4}}, {{0x10b4,5},{0x188c,3}}, {{0x11ad9,5},{0xb495,4}}, {{0x192c8,8},{0xe11,1}}, + {{0xe89,2},{0x9a6,1}}, {{0xe5b,3},{0x4dd1,4}}, {{0x9,2},{0xccc,2}}, {{0x6dd5,7},{0x15d1,6}}, + {{0x111a,3},{0x168b,4}}, {{0xfe3,4},{0xb9d1,3}}, {{0x4861,4},{0xf28,7}}, {{0x12a6a,6},{0x1571,4}}, + {{0xebe,4},{0x69ca,7}}, {{0x1897,5},{0x2781,5}}, {{0xcc1,1},{0x1244,7}}, {{0x260f,9},{0xe69,5}}, + {{0x1567,6},{0x9a6,1}}, {{0x1fe16,6},{0x81c4,3}}, {{0xc0ef,3},{0xbf50,4}}, {{0xcc9,2},{0xf63,2}}, + {{0x103ae,4},{0x6,1}}, {{0xb96d,5},{0x386f,4}}, {{0xce50,5},{0x3642,2}}, {{0x4161,5},{0xfb0,3}}, + {{0x7414,3},{0x1278,4}}, {{0xf04,2},{0xe0d,2}}, {{0xbb4d,6},{0xc3d0,3}}, {{0x70fb,5},{0x1001,3}}, + {{0xb289,7},{0xe69,5}}, {{0xf65,8},{0x1b40,5}}, {{0x10eda,5},{0xe22,2}}, {{0x7122,5},{0xe22,2}}, + {{0x1303,3},{0x2b7a,3}}, {{0x4295,5},{0xc6dc,5}}, {{0xcd3,1},{0xe8a,2}}, {{0x1a1d4,5},{0x18b4,3}}, + {{0xfcb,2},{0x1ce7,4}}, {{0xe31,2},{0x49a6,3}}, {{0x17f9e,4},{0xe30,3}}, {{0x7414,3},{0xec0,3}}, + {{0x103cf,7},{0xec6,3}}, {{0x45c7,2},{0xb,1}}, {{0xb,1},{0xf70,2}}, {{0x1927,5},{0x320c,4}}, + {{0x5,1},{0xe7f,2}}, {{0xb,1},{0xb410,4}}, {{0xe6f,4},{0x3756,3}}, {{0x17b0c,7},{0x127c,3}}, + {{0x2f9b,4},{0xeb5,2}}, {{0x29cf,3},{0xf7a,2}}, {{0x7f09,3},{0x1059,3}}, {{0x18912,8},{0xe7f,2}}, + {{0x6,1},{0x9a8,2}}, {{0xf4f,1},{0xebb,3}}, {{0xf0c,1},{0x2f2e,4}}, {{0xbb7d,5},{0xec53,3}}, + {{0x1967,3},{0xe65,2}}, {{0xf0c,1},{0x19f97,6}}, {{0x9345,6},{0xfdf,4}}, {{0x11b3,5},{0x1288,4}}, + {{0xcc7,1},{0xefa,4}}, {{0x1dca7,4},{0x23f0f,4}}, {{0xbb4,24},{0xbb4,24}}, {{0x1917,7},{0x15e9,3}}, + {{0x2cf63,4},{0xe11,1}}, {{0x20d8,8},{0xe6b,4}}, {{0xe1f,3},{0xd347,5}}, {{0x9489,6},{0x945f,6}}, + {{0x2de7b,3},{0x44,2}}, {{0xe99,1},{0x2d7c,4}}, {{0x2d79,4},{0x141a,2}}, {{0x70ad,3},{0x23d4e,5}}, + {{0x1252e,4},{0xf63,2}}, {{0x2ba5,1},{0x2252,3}}, {{0x1967,3},{0x910c,4}}, {{0x572f,7},{0x1ce7,4}}, + {{0x4853,3},{0x1c0f,3}}, {{0x12e5,3},{0xffc,3}}, {{0x10c5,4},{0x4ef1,4}}, {{0xe99,1},{0x11b5,2}}, + {{0x17146,4},{0xcd3,2}}, {{0x1025,1},{0xcc8,1}}, {{0x19b7,3},{0x62fa,4}}, {{0x551a,7},{0x1fc5,5}}, + {{0x9,1},{0xfa6,3}}, {{0x2a65,7},{0x61b9,5}}, {{0x1db34,2},{0x1dcb6,3}}, {{0x2939,4},{0xf0d,2}}, + {{0x3089,5},{0x7e55,4}}, {{0x6e23,7},{0x3ed9,4}}, {{0xf32,2},{0xf4a,5}}, {{0x4aff,6},{0x4b05,4}}, + {{0x2e870,3},{0x2e27e,2}}, {{0x4,1},{0xe78,1}}, {{0x8d2d,5},{0x4fa8,3}}, {{0x16d7,6},{0x1d2f,6}}, + {{0x10432,5},{0xe2b,2}}, {{0x111a,3},{0x16c4c,4}}, {{0x56f0,4},{0xfbb,4}}, {{0xf77,3},{0xef40,5}}, + {{0xc36,2},{0xe4d,2}}, {{0x1a66,1},{0x10cb,2}}, {{0xe99,1},{0x2ba5,1}}, {{0xe0b,2},{0xeb5,2}}, + {{0xfe6,2},{0xec6,3}}, {{0x2ba5,1},{0xcd3,2}}, {{0xe6b,3},{0xcc9,2}}, {{0xcbd,1},{0xcc3,2}}, + {{0x16a7,3},{0x104a,4}}, {{0xfe3,4},{0xc600,5}}, {{0xe5b,3},{0x101e,4}}, {{0x4f1c,5},{0x9a6,1}}, + {{0x1007,6},{0x239e,3}}, {{0xe08,1},{0xce8e,4}}, {{0xcb9,4},{0xcbd,4}}, {{0xcd3,2},{0xe2b,2}}, + {{0x1921d,6},{0xf62,3}}, {{0x2a2b,3},{0xf01,4}}, {{0x4003,8},{0x1894,3}}, {{0x118b3,5},{0x1523,4}}, + {{0xf79,3},{0x1cd5,4}}, {{0xed1,4},{0xfd0a,6}}, {{0x16b7,11},{0xec6,3}}, {{0x1e8b,3},{0xe67,2}}, + {{0x9add,5},{0x14e91,5}}, {{0x4e8d,7},{0x4e94,6}}, {{0xf65,4},{0xe11,2}}, {{0x1e0e8,6},{0x1253,3}}, + {{0x46af,3},{0x149f,3}}, {{0xf0c,1},{0xe22,2}}, {{0x5290,9},{0xe6b,4}}, {{0xe11,2},{0x1510,7}}, + {{0xf9d,3},{0x5bb6,3}}, {{0xe43a,5},{0xe89,2}}, {{0xf4f,1},{0x2522,5}}, {{0x8ce2,3},{0xebb,3}}, + {{0x16b7,4},{0xccd,1}}, {{0x22d6,10},{0xec6,3}}, {{0xf89,3},{0xe0f9,3}}, {{0x111a,3},{0x1a79b,5}}, + {{0xf1c3,5},{0xfdd,4}}, {{0xf15,1},{0xed9,2}}, {{0x39b9,4},{0xecaa,7}}, {{0x478f,3},{0x18479,7}}, + {{0x1cdc,6},{0xccaa,4}}, {{0x10c5,4},{0x7f8f,6}}, {{0x11b94,6},{0xed5,3}}, {{0x7414,3},{0xfb0,2}}, + {{0xcc1,2},{0xf24,2}}, {{0x1db45,2},{0xf0c,1}}, {{0x1c91,4},{0x1024,2}}, {{0xe7a,1},{0x7416,1}}, + {{0x45c7,2},{0x1132,2}}, {{0xf12,3},{0xcba,3}}, {{0x11a6,2},{0xcd3,1}}, {{0x55ea,8},{0x21a5,5}}, + {{0xefa,3},{0x2091,4}}, {{0xe2f,1},{0xfb8,3}}, {{0xf57,2},{0x41e8,5}}, {{0x2ba5,1},{0x10cb,4}}, + {{0x6,2},{0x4d5f,3}}, {{0x1587,4},{0x6,2}}, {{0xef7,3},{0x11cb,3}}, {{0x1040,3},{0x5,1}}, + {{0x13212,8},{0xe95,2}}, {{0x1a07,3},{0x1050,3}}, {{0x115e,7},{0x1dc0,3}}, {{0x7d31,5},{0x10b9,3}}, + {{0xf11,1},{0x1267,4}}, {{0xe33,1},{0x56e7,5}}, {{0x1857,4},{0x189f,3}}, {{0x10a3,3},{0x1e8b,3}}, + {{0x10b9,2},{0x1059,3}}, {{0x3a29,4},{0x1372,4}}, {{0x12e5,3},{0xefa,2}}, {{0x1847,4},{0x2,1}}, + {{0x57cb,5},{0xed6,2}}, {{0xcc8,1},{0x1062,2}}, {{0x592a,6},{0x793c,5}}, {{0x46af,3},{0x1d7d,3}}, + {{0x6fd0,8},{0xeed,4}}, {{0xbe1d,5},{0x66cb,6}}, {{0xe83,3},{0x2c3b,5}}, {{0xcd3,1},{0x1099,8}}, + {{0x1518e,5},{0xf91,3}}, {{0x8,1},{0x6,2}}, {{0x3957,8},{0xfdd,6}}, {{0xb12d,6},{0x109b,2}}, + {{0x3521,6},{0x4f55,4}}, {{0x1e08,6},{0x1ba8,8}}, {{0x29cf,3},{0xec3,3}}, {{0x1f0de,4},{0x11d9,3}}, + {{0x29cf,3},{0x4a44,4}}, {{0x7602,4},{0xebb,3}}, {{0x15a7,7},{0x10b9,2}}, {{0x12c3,4},{0x4571,6}}, + {{0x4765,3},{0x27d9,2}}, {{0x1967,3},{0xe67,2}}, {{0xf0c,1},{0xeb5,2}}, {{0x5,1},{0x128c,4}}, + {{0x12e5,3},{0x1003,3}}, {{0xb74,1},{0x7905,1}}, {{0x2e273,1},{0x205a7,1}}, {{0x21a0,5},{0x1783,4}}, + {{0x1109,5},{0xe0a,1}}, {{0xe92,3},{0xfcb,2}}, {{0x1537,4},{0xcbf,2}}, {{0x22b8,4},{0x1dee,2}}, + {{0x1007,5},{0x1ac7,3}}, {{0x9a9,2},{0x1153,2}}, {{0x6c35,9},{0xec3,3}}, {{0x46af,3},{0x113f,2}}, + {{0xd131,5},{0xed9,2}}, {{0x1f984,4},{0x2271,3}}, {{0x1029b,7},{0xe11,1}}, {{0x114f,3},{0xe67,2}}, + {{0xcd2,2},{0xe78,1}}, {{0x19b7,3},{0x19462,4}}, {{0x1467,4},{0x8,1}}, {{0xe1f,3},{0xe19,1}}, + {{0xb0fd,6},{0x13e3,4}}, {{0xfe6,4},{0xcc9,2}}, {{0xbd99,5},{0x22fb8,3}}, {{0xd383,6},{0x2269,4}}, + {{0x1a66,1},{0xedd,1}}, {{0x1c0a,6},{0x1692,2}}, {{0x23313,7},{0xe11,1}}, {{0x1f81c,5},{0xe71,1}}, + {{0x1307,4},{0x1307,4}}, {{0x16f7,6},{0x158f,3}}, {{0xb415,4},{0xe32,1}}, {{0x111a,7},{0x431c,5}}, + {{0x46bd,3},{0x1497b,6}}, {{0xfe3,5},{0x2136,4}}, {{0x18390,5},{0xe11,2}}, {{0x7f59,8},{0xe6b,3}}, + {{0x1cfa,5},{0xe92,3}}, {{0xcce,2},{0xe7f,2}}, {{0x12e5,3},{0xfe6,4}}, {{0x12d4,3},{0x24d56,5}}, + {{0xe61,3},{0xcc9,2}}, {{0xf70,2},{0xec6,3}}, {{0xbf40,6},{0xe69,3}}, {{0x105f,8},{0xeb7,7}}, + {{0x2d8d,3},{0xe67,2}}, {{0xe63f,6},{0xe69,5}}, {{0x1607a,6},{0xec6,3}}, {{0x11c91,6},{0x1b4f,5}}, + {{0x2afb6,3},{0x1be,2}}, {{0x1a66,1},{0x158f,3}}, {{0x7602,4},{0xed9,2}}, {{0xc281,4},{0x789d,2}}, + {{0xe80,2},{0xbd19,4}}, {{0x1d65,3},{0xeee,3}}, {{0x11f25,5},{0x11f2a,6}}, {{0x2afb6,4},{0x21,1}}, + {{0xff20,5},{0x4a44,4}}, {{0x6e8f,5},{0xb0ca,3}}, {{0x1a66,1},{0x136f,2}}, {{0x2247,4},{0xe67,2}}, + {{0xe0e0,5},{0xe69,5}}, {{0xfe3,7},{0xe7d,2}}, {{0x7414,3},{0xe5e,2}}, {{0x4781,3},{0xe2b,2}}, + {{0x6,1},{0xe86,2}}, {{0x10a3,3},{0xd485,6}}, {{0x1db45,2},{0x7416,1}}, {{0xb289,7},{0xe92,3}}, + {{0xe99,1},{0xed6,2}}, {{0xe83,3},{0x4e43,4}}, {{0x45f2,2},{0xcc3,2}}, {{0x314d,6},{0xcd2,2}}, + {{0xe16,1},{0x142a,3}}, {{0x7636,5},{0xb02a,4}}, {{0x56c7,5},{0x140bd,4}}, {{0x4f1c,5},{0xed6,2}}, + {{0x138e,2},{0xe77,3}}, {{0xe6f,3},{0x21a5,5}}, {{0x311af,2},{0x18ec8,2}}, {{0x4599,3},{0x5372,4}}, + {{0xc281,4},{0xc27d,4}}, {{0x2bd5,4},{0x157b,3}}, {{0xbded,4},{0xe7f,2}}, {{0xf77,9},{0xf80,9}}, + {{0x4765,3},{0xe21,1}}, {{0x17ac9,2},{0x19b9,1}}, {{0x8b59,6},{0x12bf,4}}, {{0x10c5,4},{0x122d,3}}, + {{0x70ad,3},{0x1230,3}}, {{0x6dae,8},{0xe67,2}}, {{0x1937,4},{0xe13,3}}, {{0x3032f,3},{0x20579,1}}, + {{0xfea7,8},{0xe11,1}}, {{0x46af,3},{0xe7d,2}}, {{0x2280,2},{0xf28,7}}, {{0x478f,3},{0x1d65,3}}, + {{0xf0a,3},{0x539a,7}}, {{0xaac1,8},{0xe6b,3}}, {{0xdd44,6},{0xe11,1}}, {{0xd,2},{0x45,1}}, + {{0x114e9,4},{0x9498,5}}, {{0x16a7,3},{0x1ebf,3}}, {{0x4e0b,8},{0xe11,1}}, {{0x2f71,4},{0xe13,3}}, + {{0x1877,5},{0x1a3b6,4}}, {{0x7303,5},{0x3294,8}}, {{0xe32,1},{0xb02a,3}}, {{0x712f,4},{0x5,2}}, + {{0x12d4,3},{0xf16,2}}, {{0x260,2},{0xf,1}}, {{0x18f7,7},{0x13fe,9}}, {{0xe08,1},{0xe08,1}}, + {{0xedd,1},{0xe78,1}}, {{0x1025,1},{0xe22,2}}, {{0x1969,1},{0x3118,5}}, {{0xc6f7,4},{0xcd3,2}}, + {{0x89d3,3},{0xe6b,3}}, {{0xf15,1},{0x149c,3}}, {{0x1208,7},{0xe89,2}}, {{0x1c37,6},{0x17c0,2}}, + {{0xe69,5},{0xfdf,4}}, {{0x12d4,3},{0xcce,3}}, {{0x20f6,5},{0x5b92,7}}, {{0xcd6,1},{0xc16,1}}, + {{0x10cb,2},{0x17c0,2}}, {{0x125d,6},{0x26f6,6}}, {{0xe97,3},{0x4618,4}}, {{0xb559,5},{0xcd3,2}}, + {{0x1937,4},{0x4bff,4}}, {{0x4853,3},{0x22a3,2}}, {{0x46af,3},{0xe6b,3}}, {{0xe71,1},{0x5ea9,3}}, + {{0x48f7,10},{0xed9,2}}, {{0x1f34,8},{0x10f4,4}}, {{0x6cde,7},{0xe0a,1}}, {{0x543d,8},{0x22fe,5}}, + {{0x2015,3},{0x16786,5}}, {{0x6497,5},{0x4ce6,7}}, {{0x12e5,3},{0xd086,3}}, {{0x4631,5},{0x10b7,2}}, + {{0x1367,3},{0xd553,4}}, {{0xf4d0,6},{0x12a9,3}}, {{0x44ad,3},{0xec6,3}}, {{0x2df3b,4},{0x4bd,2}}, + {{0x1bca7,7},{0xf7a,2}}, {{0x70ad,3},{0x1189,3}}, {{0xe88,3},{0xe78,1}}, {{0x1969,1},{0x1fbe,3}}, + {{0x161e,7},{0xcc9,2}}, {{0x7378,6},{0xcd3,1}}, {{0x464d,5},{0xc3d0,3}}, {{0x2bad,4},{0xec3,3}}, + {{0x3a53,4},{0x6479,4}}, {{0x4bf6,7},{0xec6,3}}, {{0x10587,5},{0x16c05,5}}, {{0xc76,16},{0xc76,16}}, + {{0x2cdd7,4},{0x20559,2}}, {{0x331f,3},{0xcc7,1}}, {{0x1467,4},{0x6,2}}, {{0x70ad,3},{0x29890,2}}, + {{0x12e5,3},{0xe5e,2}}, {{0x10cb,2},{0x1944,3}}, {{0x104a0,8},{0xed6,2}}, {{0x7421,4},{0xcd3,2}}, + {{0x1dee,2},{0x1f38,4}}, {{0x1b04,3},{0x6,1}}, {{0x6275,6},{0x240b,6}}, {{0x9a6,1},{0x1150,2}}, + {{0x3d39,6},{0x1510,4}}, {{0x1ed7e,5},{0xfb0,2}}, {{0xe75,2},{0xd10c,4}}, {{0x1d0,2},{0x45,1}}, + {{0x4853,4},{0x1d770,3}}, {{0xc015,4},{0x1d75,3}}, {{0xe08,1},{0x5538,2}}, {{0x1839,2},{0x9bd3,3}}, + {{0xc7ff,5},{0x943a,5}}, {{0xa5a5,7},{0x27dc,4}}, {{0xcb8,1},{0x5e5f,6}}, {{0x2e32,3},{0x2e35,6}}, + {{0x2f71,4},{0x78cb,4}}, {{0xbe1f,3},{0x66cb,6}}, {{0xefa,2},{0xe0c,3}}, {{0x1046,4},{0x59b4,3}}, + {{0x111a,3},{0x1892,4}}, {{0xab5d,8},{0xf7a,2}}, {{0x2b88d,5},{0xe11,1}}, {{0x1467,4},{0x286d,3}}, + {{0x6def,8},{0xcc9,2}}, {{0xf,1},{0x5bc,2}}, {{0x3559,4},{0xcc3d,3}}, {{0x124c,11},{0xf35,3}}, + {{0xf20,2},{0xed6,2}}, {{0x29fc,5},{0x1b9d,4}}, {{0xb3f1,3},{0x1a578,4}}, {{0x1c91,4},{0xfd38,4}}, + {{0x4199,8},{0xe92,3}}, {{0xe33,1},{0xe19,1}}, {{0x780a,5},{0xafee,6}}, {{0xc928,6},{0x93e6,4}}, + {{0x1062,2},{0xeee,3}}, {{0x5e94,5},{0xe1c,3}}, {{0xf89,3},{0x4516,3}}, {{0xe83,3},{0x15bf5,6}}, + {{0x16a7,3},{0xfb8,3}}, {{0x7f41,4},{0x12a50,6}}, {{0xf77,5},{0x239e,3}}, {{0x4589,4},{0x85ee,4}}, + {{0x1ff7,3},{0x9a49,4}}, {{0xee9,2},{0xe69,5}}, {{0x10e61,9},{0xe95,2}}, {{0xd131,4},{0x9a6,1}}, + {{0xf0a,3},{0xe5e,2}}, {{0x4615,5},{0x155e,3}}, {{0x17f08,5},{0x6411,4}}, {{0x2,1},{0x14a2,3}}, + {{0x496c,5},{0x6cbe,4}}, {{0x1367,3},{0x10d3,3}}, {{0x3032f,3},{0x2e27d,1}}, {{0xf22,2},{0xcba,2}}, + {{0x1f402,2},{0x7416,1}}, {{0xe16,1},{0x404f,3}}, {{0x12d4,3},{0xccc,2}}, {{0x168f,2},{0xe86,2}}, + {{0x10afc,5},{0x10b01,6}}, {{0x2330,8},{0xf72,5}}, {{0x15e7,5},{0x2467,4}}, {{0x19b7,3},{0xcb6,3}}, + {{0x489b,2},{0x142d,3}}, {{0xef7,4},{0x13041,4}}, {{0xf70,2},{0x4,1}}, {{0xed1,4},{0x7d80,5}}, + {{0x8ccd,6},{0x8cdf,5}}, {{0xf3c8,6},{0x13e3,4}}, {{0xe21,1},{0x13e3,4}}, {{0x111a5,7},{0xde1c,4}}, + {{0xe97,3},{0x101f,3}}, {{0x10e77,5},{0xcbd,1}}, {{0xe97,3},{0x1f875,1}}, {{0x205a1,1},{0xbb4,6}}, + {{0xf77,5},{0xfcb,2}}, {{0x70ad,3},{0x6,1}}, {{0x1050,3},{0x1059,3}}, {{0x9219,5},{0x52d9,5}}, + {{0xf32,2},{0x19e3,4}}, {{0xedd,1},{0x102a2,4}}, {{0x1bfa4,5},{0xebc,2}}, {{0xf0a,3},{0xc9af,4}}, + {{0x113e1,8},{0xf35,2}}, {{0x124c,6},{0xfc87,5}}, {{0xe1f,3},{0xe6b,2}}, {{0x3537,2},{0x6,1}}, + {{0x94be,4},{0x1059,3}}, {{0x205a1,1},{0x2e27e,2}}, {{0x1e53,5},{0x6a0f,4}}, {{0x2bc7,5},{0x1604e,4}}, + {{0x4,1},{0x35a3,3}}, {{0xf89,3},{0x103e,5}}, {{0x578a,5},{0x1dce,6}}, {{0x32ab,9},{0xe92,3}}, + {{0x1e60a,6},{0xe92,3}}, {{0x2afb6,4},{0xf,1}}, {{0x3d47,6},{0x9a4,3}}, {{0x2b4fe,2},{0x2e798,4}}, + {{0x2e32,3},{0xe0a,1}}, {{0x2260,4},{0xcc9,2}}, {{0x17030,3},{0x413e,4}}, {{0xcd2,2},{0xa,2}}, + {{0x1664,2},{0xeab,2}}, {{0xcc8,2},{0xe2b,2}}, {{0x1019,4},{0x120f,3}}, {{0x11373,4},{0xf15,1}}, + {{0xe83,3},{0xef08,6}}, {{0xed1,3},{0x355b,3}}, {{0x12d4,5},{0x8459,4}}, {{0x1bd,2},{0x9f,1}}, + {{0xb205,7},{0x6cb4,3}}, {{0x48da,3},{0xf0c,1}}, {{0x6ee8,3},{0x1a9a,4}}, {{0x7392,5},{0xcce,2}}, + {{0x478f,3},{0x5bb6,3}}, {{0x8b11,7},{0xf84,5}}, {{0x7e81,7},{0x9a7,2}}, {{0x712f,4},{0xf62,3}}, + {{0x24713,5},{0xf91,3}}, {{0x1bec,7},{0x4d83,5}}, {{0x46bd,3},{0xf1a,2}}, {{0x11536,6},{0x1ea1,5}}, + {{0x59d3,7},{0xe95,2}}, {{0x260,2},{0x21,1}}, {{0x46af,3},{0x172a,3}}, {{0xe09,1},{0x809a,3}}, + {{0x141a,2},{0xfdd,4}}, {{0x131b8,6},{0xef5,2}}, {{0xe83,3},{0x1de37,5}}, {{0x794d,6},{0x3063,5}}, + {{0xf77,5},{0xf0f,2}}, {{0xfa6,3},{0xcc9,2}}, {{0x73d6,2},{0xb,1}}, {{0x31d9,6},{0x546a,7}}, + {{0x1046,3},{0x156a,3}}, {{0x3de1,5},{0x27dc,4}}, {{0x9a6,1},{0xe7d,2}}, {{0x1830e,5},{0xe11,1}}, + {{0x5e3e,9},{0xed5,3}}, {{0xead8,5},{0x158f,3}}, {{0x17c7,10},{0x13c3,4}}, {{0xcc9,2},{0xcc9,2}}, + {{0x478f,3},{0x1bfdd,5}}, {{0x488b,4},{0xcc4,2}}, {{0xf77,4},{0xe65,2}}, {{0x478f,3},{0x155e,3}}, + {{0x116e3,6},{0xcba,2}}, {{0x18b74,5},{0x1b03,3}}, {{0x4003,8},{0xb,1}}, {{0xe5b,3},{0x4b96,5}}, + {{0x4599,3},{0x9a8,1}}, {{0x175c,3},{0x141f,4}}, {{0x1715a,6},{0xed6,2}}, {{0x4899,4},{0x2c15,3}}, + {{0x2df3b,4},{0x4ac,2}}, {{0x127f,3},{0xfe8,2}}, {{0x9a6,1},{0x15ca,3}}, {{0x478f,3},{0x3a3e,6}}, + {{0x1a07,3},{0xfcb,2}}, {{0xed35,5},{0x1bd3c,4}}, {{0xcd3,2},{0x268c,3}}, {{0x7414,3},{0x12fa,3}}, + {{0x17b0c,4},{0x2b78,4}}, {{0x46af,3},{0xe592,7}}, {{0x9,1},{0xb,1}}, {{0xe33,1},{0xcc3,2}}, + {{0x19f7,4},{0xf1a,2}}, {{0x1bb0,6},{0x3155,6}}, {{0x1290,4},{0x189b,11}}, {{0xf0a,3},{0xcce,2}}, + {{0x1857,6},{0xe77,3}}, {{0xc463,6},{0x2467,4}}, {{0x7b,1},{0x666,2}}, {{0x11b3,11},{0xec6,3}}, + {{0xcb8,1},{0x1130b,5}}, {{0x1c613,6},{0x1be9,3}}, {{0xc9a1,8},{0xec6,3}}, {{0x12c5,3},{0x3118,5}}, + {{0x124ac,5},{0x124b1,5}}, {{0xef7,3},{0xe2b,2}}, {{0x1a07,3},{0xb1d0,5}}, {{0x3a45,5},{0xef08,6}}, + {{0x1b50f,6},{0xcc9,2}}, {{0x2e27d,1},{0x28b3a,1}}, {{0x5117,5},{0x3594,5}}, {{0x1969,1},{0x1ea1,5}}, + {{0x1e44,6},{0x4132,5}}, {{0x6533,8},{0xf91,3}}, {{0x478f,3},{0xc5e0,4}}, {{0x4853,3},{0x77bf,5}}, + {{0x1081,4},{0x7df5,4}}, {{0x1367,3},{0x6d42,4}}, {{0x1637,7},{0x10f2,6}}, {{0xe97,3},{0x44ad,3}}, + {{0xcb8,1},{0xed6,2}}, {{0x359f,4},{0x2075,3}}, {{0xe21,1},{0x8,1}}, {{0xcd3,2},{0x2b7a,3}}, + {{0x1857,4},{0x3e0e,3}}, {{0x39d5,7},{0x1722,5}}, {{0x3a0f,5},{0xed6,2}}, {{0xd01e,6},{0x331f,4}}, + {{0x887d,8},{0xe95,2}}, {{0xe16,1},{0x138d,5}}, {{0x27e0,3},{0x453b,4}}, {{0x111a,3},{0x4a5f,4}}, + {{0xcbd,1},{0x6,2}}, {{0x139a6,7},{0xec6,3}}, {{0xfb0,2},{0x6,1}}, {{0x2d87,6},{0x2c6a,5}}, + {{0x1088,4},{0xec6,3}}, {{0x450b,4},{0xf1a,2}}, {{0xcb8,1},{0x8102,3}}, {{0x2a47,3},{0x14e5d,5}}, + {{0xf0c,1},{0xcd56,8}}, {{0x1c91,5},{0x18b2,5}}, {{0x18020,6},{0x43fc,2}}, {{0x1de9f,5},{0x17d23,4}}, + {{0x4781,3},{0x2b83,2}}, {{0x205a1,3},{0xcd6,1}}, {{0x2b0a8,6},{0x18ecc,2}}, {{0xb12d,7},{0x1664,3}}, + {{0x246a3,5},{0xe6b,2}}, {{0x17c06,6},{0xeed,4}}, {{0xe8a,2},{0x10d3,3}}, {{0x18238,2},{0xcd3,1}}, + {{0x2b84,2},{0xe22,3}}, {{0x9a8,1},{0x10cb,4}}, {{0xea6a,5},{0x57e0,5}}, {{0xcd3,1},{0x1189,3}}, + {{0x4781,3},{0xe33,1}}, {{0x1489,2},{0x3372,4}}, {{0x24653,4},{0x74f9,2}}, {{0x3089,5},{0xfc87,5}}, + {{0xc9ac,5},{0x6,2}}, {{0x27e0,3},{0x5538,2}}, {{0x1969,1},{0x1e2e6,3}}, {{0xee9,2},{0x3694,3}}, + {{0x1692,2},{0xe0a,1}}, {{0xe83,5},{0xe88,3}}, {{0x148d8,7},{0xcc9,2}}, {{0x2afb6,4},{0x69,1}}, + {{0x4767,1},{0x70a3,4}}, {{0x8cfd,5},{0x7ba0,5}}, {{0xe0b,2},{0x6,1}}, {{0x7d31,5},{0x7d36,4}}, + {{0x2939,4},{0x587d,4}}, {{0xf9b,5},{0xe25,2}}, {{0x12e5,3},{0x3e0e,3}}, {{0xe0d,2},{0x12fe,2}}, + {{0xee69,5},{0x9,1}}, {{0x1019,4},{0xcc3d,3}}, {{0x2eb37,1},{0x2eb37,1}}, {{0x4853,4},{0xe7f,2}}, + {{0xe5b,4},{0xfa6,3}}, {{0xcc1,1},{0x17c0,2}}, {{0x4c37,5},{0x5026,4}}, {{0xe32,1},{0x27d9,2}}, + {{0xeb5,2},{0x10cb,4}}, {{0x74f6,2},{0x442d,1}}, {{0x1919,2},{0x1f19,5}}, {{0x3642,2},{0xe11,1}}, + {{0xfe0,2},{0xcd3,1}}, {{0x5026,4},{0xef5,2}}, {{0x12e5,3},{0xe22,3}}, {{0x2939,4},{0xe7f,4}}, + {{0x29f3,3},{0xeed,4}}, {{0xcbd,1},{0x1ffa,3}}, {{0xe08,1},{0xfb0,2}}, {{0x12e5,3},{0x1c832,5}}, + {{0x2df3b,4},{0x48a,2}}, {{0x10b4,6},{0x4b2e,5}}, {{0x101f,2},{0x138e,4}}, {{0x70fb,5},{0x115a,3}}, + {{0xe97,3},{0x6c45,4}}, {{0x2afa1,4},{0x442d,1}}, {{0x57cb,5},{0xfb8,3}}, {{0x187d2,6},{0xfbb,4}}, + {{0xcc9,2},{0xe09,1}}, {{0x2df3b,4},{0xf8,2}}, {{0x1290,5},{0x809a,3}}, {{0x3b5d,5},{0x2,1}}, + {{0x15530,6},{0x2872,4}}, {{0xfcb,2},{0xe92,3}}, {{0x1392,3},{0x126a,4}}, {{0x104c,2},{0xcc1,2}}, + {{0x44ef,5},{0x1f38,4}}, {{0x1647,5},{0x37ba,5}}, {{0xe31,2},{0x2454,3}}, {{0xe2f,1},{0xe16,1}}, + {{0xccd,1},{0xe2b,2}}, {{0x471f,6},{0xfdf,3}}, {{0xe21,1},{0xcbf,2}}, {{0xeb9,3},{0xe69,5}}, + {{0xf11,1},{0xf15,1}}, {{0x3eb3,8},{0xeee,3}}, {{0x18e7,10},{0xe92,3}}, {{0x19f7,4},{0x5538,2}}, + {{0x111a,3},{0x10b7,2}}, {{0x478f,3},{0x22d9,7}}, {{0xebeb,5},{0x2b89,3}}, {{0x2028d,8},{0x6,1}}, + {{0x10d6,5},{0x6a0f,4}}, {{0x92c1,7},{0xf84,5}}, {{0x3487,9},{0xeed,4}}, {{0x12e7,3},{0x1137a,4}}, + {{0xe83,5},{0xe0b,4}}, {{0x29cf,3},{0x15399,2}}, {{0xe0f,2},{0x2416,3}}, {{0x3a1b,5},{0x9,1}}, + {{0xe1f,3},{0xb604,4}}, {{0x11b3,6},{0xf86,3}}, {{0xf59,3},{0x13947,2}}, {{0x1db45,2},{0xf11,1}}, + {{0x5290,7},{0x2075,3}}, {{0x434b,5},{0x2651,7}}, {{0x3a61,9},{0xe92,3}}, {{0xf0c,1},{0xe33,1}}, + {{0x38cb,7},{0xfdf,4}}, {{0xe09,1},{0xed6,2}}, {{0x109ff,6},{0xcc6,2}}, {{0x111a,3},{0x1399f,3}}, + {{0x450b,4},{0x78d0,3}}, {{0xccd,1},{0x5538,2}}, {{0x180a,3},{0x8,1}}, {{0x10432,5},{0x60c2,6}}, + {{0xe08,1},{0x883a,4}}, {{0x113c,4},{0xe0c,3}}, {{0xc975,6},{0x8666,2}}, {{0xbb4,2},{0x2b0b6,4}}, + {{0x27ef,4},{0x1153,2}}, {{0x4853,3},{0xcc9,2}}, {{0x1a07,3},{0xf13,2}}, {{0x56ee,6},{0x2075,3}}, + {{0xe78,1},{0x2224,4}}, {{0x2df3b,4},{0x49b,2}}, {{0x780a,5},{0xb02a,4}}, {{0xed35,5},{0xf62,3}}, + {{0xe99,2},{0x1153,2}}, {{0x2be3,5},{0x178f,4}}, {{0xe83,3},{0x10d2,3}}, {{0x1db75,6},{0x153a,3}}, + {{0x2,1},{0x1050,4}}, {{0x17df4,2},{0xccc,2}}, {{0x4f50,6},{0x11dc,5}}, {{0x7989,6},{0x1db3,4}}, + {{0xecb,2},{0xac0d,3}}, {{0x27e0,3},{0x6cc8,3}}, {{0x1109,11},{0xe69,5}}, {{0xccb,3},{0x10ec,6}}, + {{0xed40,6},{0x2b7a,3}}, {{0xcba,3},{0xf91,3}}, {{0x1ca0,5},{0x2f92,4}}, {{0x3e6d,8},{0x2177,5}}, + {{0x7115,4},{0x78d0,3}}, {{0x255b,6},{0xf9d,3}}, {{0xf4f,1},{0x11a6,2}}, {{0x7a01,5},{0x15500,4}}, + {{0x17092,5},{0x153a,3}}, {{0x1007,7},{0x4d83,5}}, {{0x2939,4},{0xcce,3}}, {{0x70ad,4},{0x5e94,5}}, + {{0x1ed99,6},{0xec6,3}}, {{0x4765,3},{0xcc6,2}}, {{0x1b194,6},{0xf35,3}}, {{0xf9b,5},{0x2f79,5}}, + {{0x1150,2},{0x1b4f,5}}, {{0xc7e9,7},{0x1523,4}}, {{0x11b89,5},{0x13e3,4}}, {{0x3a29,4},{0x70a6,3}}, + {{0x2a47,3},{0x2eee,4}}, {{0x27016,6},{0xe11,1}}, {{0x16a7,3},{0x4434,3}}, {{0x1967,3},{0x142d,3}}, + {{0x12e5,3},{0x1db45,2}}, {{0x2de7b,3},{0x1ac,2}}, {{0xcc8,1},{0xcc1,1}}, {{0xfa5,2},{0x9a5,2}}, + {{0x39d5,5},{0x1fd05,3}}, {{0xe21,1},{0x1a58,3}}, {{0x70ad,3},{0x5,1}}, {{0x955a,4},{0xed6,2}}, + {{0xccd,1},{0xcbf,2}}, {{0x59c6,5},{0x534e,5}}, {{0xf0a,3},{0xcd3,1}}, {{0x46af,3},{0xe13,3}}, + {{0x1a27,4},{0xb221,8}}, {{0x496c,5},{0x1b80,3}}, {{0x19b9,1},{0x15ca,3}}, {{0x9a8,1},{0xcd3,2}}, + {{0x7310,8},{0xed9,2}}, {{0x12f8,2},{0x1003,3}}, {{0x1607,5},{0x1aca,5}}, {{0xe83,3},{0xe77,3}}, + {{0xe1f,3},{0x189f,3}}, {{0x1567,3},{0x1025,1}}, {{0x19e7,5},{0x127c,3}}, {{0x11d5,5},{0x2236,3}}, + {{0x12c3,4},{0xcc8,1}}, {{0x4aef,3},{0x2091,4}}, {{0xe11,1},{0x286d,3}}, {{0x11b5,2},{0x13e3,4}}, + {{0x1677,3},{0x104a5,6}}, {{0x62dd,6},{0x13e3,4}}, {{0x24cb3,5},{0xf194,3}}, {{0x3d63,5},{0xcd2,2}}, + {{0x9909,8},{0xe77,3}}, {{0xe37,4},{0x2b07c,2}}, {{0x330d,7},{0x10cb,4}}, {{0x12736,6},{0xf7a,2}}, + {{0x1ffc6,6},{0x5669,3}}, {{0xe516,8},{0xec6,3}}, {{0x158f,3},{0x4,1}}, {{0x729d,5},{0xe75,2}}, + {{0x73d6,2},{0xcbd,1}}, {{0x4781,3},{0xcc6,2}}, {{0x1477,9},{0xec3,3}}, {{0xef7,3},{0x5,2}}, + {{0xead,3},{0xf91,3}}, {{0x47c7,5},{0x25e38,3}}, {{0x2df3b,4},{0x4df,2}}, {{0x11187,2},{0x48d0,2}}, + {{0x7ff5,5},{0x2e28,3}}, {{0x1567,6},{0x5699,4}}, {{0x1a17,5},{0x15af,8}}, {{0xebe,4},{0x11a6,11}}, + {{0x3bdb,10},{0xcc9,2}}, {{0x1057,1},{0x17c0,2}}, {{0x4853,3},{0xa385,4}}, {{0x1bbf,4},{0xf59,3}}, + {{0x12f6,6},{0x101f,5}}, {{0x456d,10},{0x13e3,4}}, {{0xf0a,3},{0xf0f,2}}, {{0x1747,10},{0x27dc,4}}, + {{0xe11,1},{0xcdda,2}}, {{0x11e96,7},{0xb381,4}}, {{0x486f,4},{0x8cd3,3}}, {{0x1947,5},{0x15df6,4}}, + {{0x258e3,6},{0xe31,2}}, {{0x1f7b0,4},{0xe99,1}}, {{0x29c0,3},{0x589f,4}}, {{0xcc1,1},{0x9a4,3}}, + {{0x2afb6,4},{0x8d,1}}, {{0x12d4,3},{0x2cdaa,3}}, {{0x4765,3},{0x28cab,3}}, {{0xcc7,1},{0x453b,4}}, + {{0x4853,4},{0xe65,2}}, {{0x1bc83,6},{0x2236,3}}, {{0xf86,2},{0xe71,1}}, {{0x15fc,2},{0xe09,1}}, + {{0x27c2,6},{0x2c6a,5}}, {{0x1cfa,5},{0xf86,2}}, {{0x391f,7},{0x2842,7}}, {{0x112b,4},{0xc95a,5}}, + {{0x7416,1},{0xec6,3}}, {{0x113c,3},{0xe22,2}}, {{0xe32,1},{0xefa,2}}, {{0x260,2},{0x69,1}}, + {{0x1062,2},{0xe09,1}}, {{0x860d,7},{0xe0b,4}}, {{0x16d7,10},{0xeca,3}}, {{0xe83,3},{0x775c,4}}, + {{0xb3f1,3},{0xeee,3}}, {{0x1e84a,6},{0xf62,3}}, {{0x4853,3},{0x1e65,3}}, {{0xf436,6},{0x18b4,3}}, + {{0xf89,3},{0x5d66,3}}, {{0xe99,1},{0x5,2}}, {{0xb805,5},{0xf91,3}}, {{0x486f,4},{0x54b7,4}}, + {{0x2058b,3},{0xe,1}}, {{0x12e5,3},{0x4c16,3}}, {{0x353d,5},{0xfdf,4}}, {{0x1b50f,6},{0xec6,3}}, + {{0x5e58,6},{0xe0a,1}}, {{0xb74,1},{0x3034d,2}}, {{0x1969,1},{0xe22,2}}, {{0xe1f,3},{0x78ed,2}}, + {{0x473d,3},{0x2,2}}, {{0xe5b,3},{0x4ce6,7}}, {{0x1529c,8},{0xe95,2}}, {{0x1667,5},{0x1099,8}}, + {{0x1c91,6},{0x18b4,3}}, {{0xa641,6},{0xf91,3}}, {{0x24f2,5},{0x6452,4}}, {{0xf0c,1},{0x9,1}}, + {{0x53c8,9},{0xe11,1}}, {{0x112b,5},{0xde29,2}}, {{0x2bb4,2},{0x6452,4}}, {{0x4853,3},{0x6008,3}}, + {{0x1967,3},{0xcbf,2}}, {{0x12e5,3},{0x7979,4}}, {{0x1a58,3},{0x14a2,3}}, {{0x4f1c,5},{0x2e2c,3}}, + {{0x955a,4},{0xfe6,2}}, {{0x46bf,1},{0x1b0d,3}}, {{0xcc1,2},{0x4516,3}}, {{0xe99,1},{0xe99,1}}, + {{0x2966,5},{0x19768,4}}, {{0x4853,3},{0x1399f,3}}, {{0x1019,4},{0x164a2,6}}, {{0x3433,6},{0x45ee,3}}, + {{0xe83,3},{0x41e9,4}}, {{0x2ab0,10},{0xf72,5}}, {{0x5d7b,6},{0x1e40,4}}, {{0x2280,2},{0x249f,3}}, + {{0xaba5,6},{0xe67,2}}, {{0x2df3b,4},{0x6bb,2}}, {{0x14e50,6},{0xed6,2}}, {{0xe89,2},{0x113f,2}}, + {{0x6b90,4},{0xed5,3}}, {{0x1cdc,6},{0x1ebf,3}}, {{0xe08,1},{0xe33,1}}, {{0x116d8,5},{0xfb0,2}}, + {{0x46bd,3},{0x1dee,2}}, {{0x1577,4},{0xcc8,1}}, {{0xf77,3},{0x1153,2}}, {{0x643c,7},{0x2236,3}}, + {{0x2d25,8},{0xe92,3}}, {{0x5d54,5},{0x99da,6}}, {{0x10679,7},{0xec6,3}}, {{0x7d55,7},{0xe0a,1}}, + {{0xe22,2},{0x5669,3}}, {{0xe97,4},{0x6,1}}, {{0x73ed,5},{0xe6b,3}}, {{0x3e0b,7},{0xe11,1}}, + {{0x4853,3},{0xe60,2}}, {{0x1a07,3},{0xed6,2}}, {{0x27d7,2},{0x27d9,2}}, {{0xe08,1},{0xe89,2}}, + {{0x1ed9b,4},{0xec6,3}}, {{0x1ff7,3},{0x1bf0,2}}, {{0x434b,5},{0x1288,4}}, {{0x1c91,4},{0x1153,2}}, + {{0x115e,7},{0x143c,4}}, {{0x29cf,3},{0xe0f,1}}, {{0x2b89,3},{0xf34,4}}, {{0x101f,3},{0xe77,2}}, + {{0x12e5,3},{0xe2b,2}}, {{0x6497,5},{0x26ae,6}}, {{0x3f5b,9},{0x1773,4}}, {{0xf77,3},{0x15f48,6}}, + {{0x1f81c,5},{0x7fee,4}}, {{0x1081,4},{0x11b5,2}}, {{0xe0f,4},{0xfdf,3}}, {{0xf1f,3},{0xed6,2}}, + {{0x2f71,4},{0xe0a,1}}, {{0x260,2},{0x8d,1}}, {{0x9345,6},{0xe6b,4}}, {{0xf32,2},{0x2ca3,4}}, + {{0xe97,3},{0x1692,2}}, {{0xcc1,1},{0x2d8d,3}}, {{0x1817,7},{0xabc4,4}}, {{0x5f69,6},{0x1b0d,3}}, + {{0x1fa7,3},{0x1050,3}}, {{0xf65,4},{0xe0d,2}}, {{0x1702e,5},{0xe5e,2}}, {{0x1607,8},{0xcce,2}}, + {{0x29cf,3},{0x41cb,6}}, {{0x9,1},{0xe2b,2}}, {{0x426b,8},{0xe69,6}}, {{0xbc79,4},{0x10db,7}}, + {{0xe8a,2},{0xec6,3}}, {{0xe7f,2},{0x1ba8,5}}, {{0x5269,6},{0x8943,6}}, {{0x1db00,5},{0xed5,3}}, + {{0x2280,2},{0xcd3,1}}, {{0xf0c,1},{0xe19,1}}, {{0xf65,4},{0xc5f3,7}}, {{0x2b94,3},{0x12ba,4}}, + {{0x12e5,3},{0x8441,4}}, {{0x2a5cc,4},{0x2f92,3}}, {{0xcc4,2},{0x14f9,3}}, {{0x134ce,7},{0xf63,2}}, + {{0x56c7,5},{0x1cb1,5}}, {{0xf59,2},{0x11d9,3}}, {{0x16a7,3},{0x2d1f,6}}, {{0xf0a,5},{0xf0f,2}}, + {{0x3a1b,6},{0xfdf,4}}, {{0x53d5,9},{0x141f,4}}, {{0xeb88,5},{0x10d3,3}}, {{0x235d,5},{0xa0d6,7}}, + {{0x10c5,10},{0x10cf,7}}, {{0x1a07,3},{0x7416,1}}, {{0x111a,3},{0xe80,2}}, {{0x29c0,4},{0xcc8,1}}, + {{0x12f6,4},{0x7772,5}}, {{0x29cf,3},{0x1692,2}}, {{0x2a94,4},{0x12bf,4}}, {{0x1b2a2,7},{0xebc,2}}, + {{0x1ff7,3},{0x220a6,5}}, {{0x10cb4,4},{0xcc7,1}}, {{0xc39d,5},{0xfe88,5}}, {{0x1ca54,6},{0xcc9,2}}, + {{0x9219,5},{0xe8a,2}}, {{0x113c,3},{0x1d10,4}}, {{0xf89,5},{0x9296,7}}, {{0xed1,3},{0xed5,6}}, + {{0x131b8,6},{0xec5,4}}, {{0x2e26b,3},{0xab1,1}}, {{0xede,1},{0xe86,2}}, {{0x20f6,6},{0xf6e,9}}, + {{0x1303,3},{0x1be9,3}}, {{0x111a,3},{0x1059,3}}, {{0x48d2,3},{0xe99,1}}, {{0x1a07,3},{0x2d3ab,2}}, + {{0x2a56,4},{0xe32,1}}, {{0xf9b,5},{0xcc3,2}}, {{0x1e571,4},{0x1e575,5}}, {{0xf4db,5},{0x13e3,4}}, + {{0xdd8,12},{0xdd8,12}}, {{0xe0f,2},{0xed5,4}}, {{0x60e2,7},{0xe2b,2}}, {{0xe5b,3},{0x1d7e,3}}, + {{0xe1f,3},{0xe67,2}}, {{0x12f6,4},{0x27b7,6}}, {{0x7378,4},{0x17c00,6}}, {{0xe33,1},{0x12154,3}}, + {{0x10e09,5},{0x1b69,3}}, {{0x33fb,5},{0xeb9,5}}, {{0x192fe,6},{0xec6,3}}, {{0x29cf,3},{0x1e0ac,4}}, + {{0x1ff7,3},{0x11cb,3}}, {{0x8,1},{0x1692,2}}, {{0x1a66,1},{0x6d42,4}}, {{0x2bd5,4},{0x1463,4}}, + {{0xe7f,2},{0xe6b,4}}, {{0x14a7,4},{0x169d,3}}, {{0xee4,4},{0xf6cf,6}}, {{0xcc7,1},{0x2ee9,3}}, + {{0xe99,1},{0xcce,2}}, {{0xb74,1},{0xc16,1}}, {{0x1,1},{0x1,1}}, {{0x70ad,4},{0x12320,5}}, + {{0x12d4,3},{0x2cbe7,2}}, {{0x8241,8},{0xec3,3}}, {{0x11eb7,6},{0xe0a,1}}, {{0x48a7,5},{0x1b4f,7}}, + {{0xef7,3},{0x1c35a,4}}, {{0x154f4,5},{0x277e,2}}, {{0xf0a,4},{0xcc3,2}}, {{0xb745,5},{0x1664,2}}, + {{0x9309,5},{0x90fb,5}}, {{0x2de45,3},{0x314,2}}, {{0xe80,2},{0xa,2}}, {{0x1927,4},{0x113f,2}}, + {{0x4f1c,5},{0xccc,2}}, {{0x4e4c,7},{0xccaa,4}}, {{0x4765,3},{0xcd3,1}}, {{0x46bd,3},{0x1a63,3}}, + {{0x2df3b,4},{0x545,2}}, {{0x1131d,5},{0x11322,4}}, {{0x4899,4},{0xeee,3}}, {{0x1019,4},{0x3e23,4}}, + {{0x9a6,1},{0xee9,2}}, {{0x6fd0,5},{0x16edf,5}}, {{0x1081,4},{0x7417,4}}, {{0x15e7,5},{0xfaf,2}}, + {{0xed1,4},{0x3aff,5}}, {{0xcd6,1},{0x11,1}}, {{0x9d43,4},{0x7a39,4}}, {{0x478f,3},{0x2d3ab,2}}, + {{0xf11,1},{0xf4f,1}}, {{0xe97,3},{0x3976,3}}, {{0xe22,3},{0x5,2}}, {{0x1db33,2},{0x2690a,2}}, + {{0x30357,1},{0x30352,2}}, {{0x39ff,5},{0x809a,3}}, {{0xede,1},{0xf4f,1}}, {{0x1a07,3},{0xe16,1}}, + {{0xe21,1},{0x10f4b,4}}, {{0x9309,5},{0xe11,2}}, {{0xbb4,2},{0x2e7c0,2}}, {{0x44ad,3},{0x6,1}}, + {{0x3567,8},{0x103e,5}}, {{0x465b,4},{0xeb5,2}}, {{0x4be9,6},{0xef3,4}}, {{0x205a1,1},{0x205a1,1}}, + {{0x10b6a,5},{0x1b9d,4}}, {{0x4669,7},{0x3376,7}}, {{0x111c6,7},{0xf35,3}}, {{0x1702e,4},{0x122c6,6}}, + {{0xf89,3},{0xf12,3}}, {{0x15a62,7},{0xcc9,2}}, {{0x1bec,7},{0x2781,5}}, {{0x27e0,5},{0xcc9,2}}, + {{0xe5b,3},{0x15390,3}}, {{0xe97,3},{0x4538,3}}, {{0x2be3,5},{0xcc8,1}}, {{0x1fca,10},{0x34d7,4}}, + {{0xe61,3},{0x12be,5}}, {{0x110c9,5},{0xeca,3}}, {{0x4599,3},{0xe78,1}}, {{0x2489,10},{0xf7a,2}}, + {{0x7353,2},{0x319a,3}}, {{0x9,1},{0xf91,3}}, {{0x19361,7},{0xe95,2}}, {{0x1c91,4},{0xe75,2}}, + {{0xeaa,2},{0xfa5,2}}, {{0x4781,3},{0x27dc,4}}, {{0x12f6,4},{0x11a6,2}}, {{0x28d0,4},{0x16d62,6}}, + {{0x18fc2,3},{0x18fc5,5}}, {{0xe97,3},{0x4bf9,4}}, {{0x2948,3},{0x1969,1}}, {{0x2f9b,8},{0xe0a,1}}, + {{0x1e26,6},{0x1e2c,4}}, {{0x1830,3},{0x1ba9,4}}, {{0xa179,8},{0xe92,3}}, {{0x2df3b,4},{0x534,2}}, + {{0x3487,6},{0x1ce6,5}}, {{0xb3f1,3},{0x10e2,3}}, {{0x43fb,3},{0x11268,3}}, {{0x10a3,3},{0xee9,2}}, + {{0x1062,2},{0x27dc,4}}, {{0xf0f,2},{0x2468,3}}, {{0xf1f,3},{0x2e2c,3}}, {{0x1927,4},{0x1e06e,5}}, + {{0xe99,1},{0xf15,1}}, {{0x4a4e,3},{0x13e4,3}}, {{0x1e08,5},{0xe0a,1}}, {{0x2132,9},{0xec6,3}}, + {{0x12e5,3},{0xe0b,2}}, {{0xccb,2},{0xcc9,2}}, {{0xccb,2},{0x13e3,4}}, {{0x1919,2},{0x10b8,2}}, + {{0x7929,4},{0xec3,3}}, {{0x7414,3},{0x8129,4}}, {{0x260,2},{0x7b,1}}, {{0x7414,3},{0xe0d,2}}, + {{0xe1f,3},{0x16a41,5}}, {{0xef7,3},{0x231f6,5}}, {{0x1a07,3},{0x11187,2}}, {{0x2a47,3},{0xe0d,2}}, + {{0x2a94,4},{0x1db1,3}}, {{0x1b34d,6},{0xe11,1}}, {{0x19b7,3},{0xf02,2}}, {{0xe22,2},{0xfb0,2}}, + {{0xcc8,1},{0xcc3,3}}, {{0x1817,7},{0xfdd,4}}, {{0x457b,5},{0xf72,5}}, {{0x2a29,5},{0x15fc,2}}, + {{0xede,1},{0xf15,1}}, {{0x3d39,5},{0x344b,4}}, {{0x1837,5},{0x1004,3}}, {{0x49b1,7},{0xcc9,2}}, + {{0x29cf,3},{0x48ca,6}}, {{0x125d,6},{0x101f,3}}, {{0x5e5e,4},{0xed6,2}}, {{0x2afb6,4},{0x57,1}}, + {{0xbb29,5},{0x9a46,6}}, {{0xcc1,1},{0x4132,5}}, {{0x2510,4},{0x5863,4}}, {{0x3bcd,4},{0x1303,3}}, + {{0x40f1,7},{0xab88,4}}, {{0xf89,3},{0x320c,4}}, {{0xf11,1},{0x55ed,5}}, {{0x9279,6},{0x7c3d,4}}, + {{0xf0c,1},{0xe65,2}}, {{0x4781,3},{0x5538,2}}, {{0x79b9,6},{0x79bf,6}}, {{0x1a01b,6},{0xe11,1}}, + {{0x1a07,3},{0x5ea9,3}}, {{0xcbd,1},{0xe77,2}}, {{0x29c0,3},{0x15d1,5}}, {{0x2f47,5},{0x7b72,3}}, + {{0x1c91,4},{0x5b7b,5}}, {{0x393b,10},{0xed9,2}}, {{0x6171,5},{0xe69,5}}, {{0x10e2a,4},{0x1303,3}}, + {{0x4853,3},{0xe6b,2}}, {{0xe71,1},{0x10bb,5}}, {{0xb589,4},{0x11a6,2}}, {{0x73ed,5},{0xed9,2}}, + {{0x7e09,8},{0x2e29,3}}, {{0xe3f8,6},{0x10b7,2}}, {{0xb00d,8},{0x12a9,3}}, {{0x2f9b,4},{0x10f5,3}}, + {{0x116e3,8},{0x4c00,3}}, {{0x170ba,5},{0x185c4,4}}, {{0x2d767,4},{0x204e0,2}}, {{0x154f4,5},{0x1571,4}}, + {{0x1967,3},{0x13d4b,6}}, {{0x2cd5,6},{0xe0b,4}}, {{0xbb4d,5},{0x1e8b,3}}, {{0x2858,4},{0x13053,4}}, + {{0x1393,3},{0x17322,4}}, {{0x5199,8},{0xb,1}}, {{0x73ed,4},{0xe78,1}}, {{0x16692,5},{0x1485c,4}}, + {{0x8,2},{0x8,1}}, {{0x4767,1},{0xf4f,1}}, {{0x10c5,4},{0xa1e1,4}}, {{0x5992,6},{0xe149,5}}, + {{0x46af,3},{0x1372,4}}, {{0xb3f1,3},{0xcd3,1}}, {{0x34b1,5},{0xe1c,3}}, {{0x12a1,4},{0xf79,3}}, + {{0x3e51,9},{0x1702,4}}, {{0x46bd,3},{0x27d7,2}}, {{0x3e19,13},{0xe11,1}}, {{0x77a2,9},{0xe11,1}}, + {{0xebe,5},{0x1790,3}}, {{0xcc8,1},{0x5,2}}, {{0x1019,4},{0x15e6d,3}}, {{0xef7,3},{0x12bf,4}}, + {{0x4767,1},{0x296f,3}}, {{0xb8dd,5},{0xe31,2}}, {{0x702b,11},{0xe95,2}}, {{0x122d,2},{0x3075,3}}, + {{0x1f378,6},{0x1085,3}}, {{0x10cb4,4},{0xb,1}}, {{0x4767,1},{0x1bef,2}}, {{0x9e55,4},{0x136f,2}}, + {{0xda8,12},{0xda8,12}}, {{0xf77,3},{0xf150,5}}, {{0x1166a,6},{0xe22,3}}, {{0x10f48,5},{0x113f,2}}, + {{0x9a8,1},{0xcc1,1}}, {{0xf15,1},{0x810e,3}}, {{0x5534,4},{0x17293,4}}, {{0x7f41,4},{0x11a6,2}}, + {{0x6dae,5},{0x9905,4}}, {{0xe1f,3},{0xb3c8,3}}, {{0x3170b,2},{0x205a1,1}}, {{0x983d,8},{0xe6b,4}}, + {{0x1777,5},{0x2fb9,3}}, {{0x105f,3},{0xf80,2}}, {{0x329d,5},{0x331f,4}}, {{0x1bb0,11},{0xfdf,4}}, + {{0x4fd2,7},{0xe69,5}}, {{0xc9ac,5},{0xccc,2}}, {{0x22b8,4},{0x1523,4}}, {{0xebe,4},{0x2,2}}, + {{0x2058b,3},{0xf,1}}, {{0xe1f,3},{0xcb7,2}}, {{0x794f,4},{0xec6,3}}, {{0x1cd3,2},{0x2872,4}}, + {{0x19b7,3},{0x6,2}}, {{0x25083,5},{0xeab,2}}, {{0x3559,4},{0x102d6,6}}, {{0x12c3,4},{0xf0f,2}}, + {{0x3e27,8},{0xe69,5}}, {{0x1fc7,3},{0x138e,3}}, {{0x2280,2},{0x9596,7}}, {{0x10e7,5},{0x85b2,7}}, + {{0x1166,3},{0xebc,2}}, {{0x2df3b,4},{0x4f0,2}}, {{0x164,2},{0x45,1}}, {{0x1567,3},{0xe65,2}}, + {{0xccd,1},{0xf0d,2}}, {{0x12c3,4},{0xcc9,2}}, {{0x129d4,6},{0xfdd,4}}, {{0xe86,2},{0x286d,3}}, + {{0x1a19,3},{0xe0d,2}}, {{0xb69d,4},{0x5bb6,3}}, {{0x1a6a5,5},{0xcc9,2}}, {{0x1303,3},{0x8,1}}, + {{0x11965,4},{0xf32,2}}, {{0xb181,10},{0x277e,2}}, {{0x10f32,5},{0x1cb1,3}}, {{0xcd3,1},{0xe09,1}}, + {{0x2213,5},{0xf59,2}}, {{0x16a7,3},{0x16ad,3}}, {{0x35f3,9},{0x3abf,4}}, {{0x24e3,5},{0x72d3,3}}, + {{0x1e556,6},{0xf91,3}}, {{0x1367,4},{0x136b,5}}, {{0x14248,7},{0xe11,1}}, {{0x12c3,4},{0xfdf,4}}, + {{0x3d55,5},{0xe77,2}}, {{0x3115,8},{0xe69,6}}, {{0x465b,4},{0x14e5d,5}}, {{0x19e7,5},{0x5912,5}}, + {{0x127f,3},{0x66c1,4}}, {{0xcbd,1},{0xe592,7}}, {{0x12d6,3},{0xf7a,2}}, {{0xe1f,3},{0x38ec,3}}, + {{0x478f,3},{0x2252,3}}, {{0xf89,3},{0xe92,3}}, {{0x1ebc,5},{0x1a71,3}}, {{0xb69d,3},{0xe08,1}}, + {{0x15e7,5},{0xfca,2}}, {{0x12e5,3},{0xbf40,9}}, {{0xcc7,1},{0x2d1f,6}}, {{0x492b,4},{0xec3,3}}, + {{0xe1f,3},{0x3642,2}}, {{0x16f7,6},{0x178a,3}}, {{0x311af,2},{0x308c1,2}}, {{0x10c5,4},{0x3ce0,5}}, + {{0x28d0,4},{0xfd9,3}}, {{0x4f91,5},{0x8366,7}}, {{0x19682,7},{0x4,1}}, {{0x46bd,3},{0x14fa,3}}, + {{0xf65,4},{0x7bc1,3}}, {{0xe78,1},{0x6a0f,4}}, {{0xcd6,4},{0xcd6,4}}, {{0x28b3a,1},{0x2e273,1}}, + {{0x70ad,4},{0x121c,3}}, {{0x1e08,5},{0xe11,2}}, {{0x2add,6},{0xe22,2}}, {{0x9351,5},{0x8,1}}, + {{0xbba1,4},{0x155e,3}}, {{0x46bf,1},{0x26ca8,3}}, {{0x75b4,4},{0x286d,3}}, {{0x17ec,4},{0xed6,2}}, + {{0x712f,4},{0x5538,2}}, {{0xed40,5},{0x22968,3}}, {{0x2d79,4},{0x38ec,3}}, {{0xf0a,3},{0x13233,7}}, + {{0x80b5,9},{0xcc9,2}}, {{0xe37,4},{0xddc,2}}, {{0x59b9,6},{0x30f4,4}}, {{0xd223,8},{0xf91,3}}, + {{0x70ad,3},{0x1059,3}}, {{0xe83,3},{0xcbb6,6}}, {{0xe16,1},{0xee9,2}}, {{0x2bc7,8},{0x1be9,3}}, + {{0x3642,2},{0x5538,2}}, {{0x115e,11},{0xcc9,2}}, {{0x113f,2},{0xe1c,3}}, {{0x9af,2},{0x11840,2}}, + {{0x111a,3},{0xe5e,2}}, {{0x1754e,4},{0x59b4,3}}, {{0xbc91,7},{0x1632,5}}, {{0xacdd,6},{0xf91,3}}, + {{0x4c03,8},{0xa,2}}, {{0x9351,5},{0xcce,2}}, {{0x18bf6,6},{0x7a36,3}}, {{0x104a,3},{0xf86,3}}, + {{0xe11,1},{0xb,1}}, {{0x2948,4},{0x19419,5}}, {{0xe33,1},{0x1177,7}}, {{0x2f71,4},{0x19f7d,5}}, + {{0xeb4,3},{0xe22,3}}, {{0x19b7,3},{0x6008,3}}, {{0xbc7b,5},{0xcc3,3}}, {{0x11729,3},{0x10d3,3}}, + {{0xf15,1},{0x1859,4}}, {{0xab1,1},{0x2e273,1}}, {{0x1a7fb,6},{0xe11,1}}, {{0x10c5,5},{0x65ec,5}}, + {{0x6d46,6},{0xb1d0,5}}, {{0xc05d,6},{0x10d3,3}}, {{0x64a7,5},{0xf72,5}}, {{0x1019,4},{0xeea,3}}, + {{0x1bbf,9},{0xfdd,4}}, {{0x9,1},{0x49bf,3}}, {{0x1367,3},{0x2d11,3}}, {{0x1977,8},{0x10cb,2}}, + {{0x1977,4},{0xf84,3}}, {{0xb87d,6},{0xe69,6}}, {{0x8,1},{0x1050,3}}, {{0xe7d,2},{0x1252,3}}, + {{0xc16,1},{0xcd6,1}}, {{0x3a29,4},{0xb410,4}}, {{0x12e5,3},{0x6008,3}}, {{0xecb,2},{0xe2b,2}}, + {{0xef7,3},{0xe0b,2}}, {{0x488b,4},{0x6e91,3}}, {{0x4519,4},{0x73d6,2}}, {{0x3db7,7},{0xec6,3}}, + {{0x140fe,7},{0xec6,3}}, {{0x5d54,5},{0xe65,2}}, {{0x1e9e,6},{0x3801,6}}, {{0x20382,2},{0x4767,1}}, + {{0x17670,4},{0x1fc7,3}}, {{0xcc7,1},{0x1085,3}}, {{0x1677,3},{0xec0,3}}, {{0x1e80,6},{0x2815,7}}, + {{0xc36,2},{0x78a3,2}}, {{0x1677,3},{0x22a3,2}}, {{0x2afb6,4},{0x7b,1}}, {{0x4765,3},{0x1783,4}}, + {{0xcd3,1},{0x4fa8,3}}, {{0xb9d1,3},{0x1839,2}}, {{0x2e59,8},{0xf86,3}}, {{0xd13c,9},{0xe95,2}}, + {{0x7602,5},{0x59b4,3}}, {{0xe2b,2},{0xe67,2}}, {{0x63d4,6},{0x142a,3}}, {{0x4665,4},{0xed6,2}}, + {{0x2df3b,4},{0x44,2}}, {{0x6de2,8},{0xeed,4}}, {{0x4853,3},{0x1a43b,6}}, {{0xcb8,1},{0xf1f,3}}, + {{0x19b7,3},{0x142a,3}}, {{0xe7f,2},{0xcc1,1}}, {{0x150e,6},{0xcc9,2}}, {{0x1bd,2},{0xd,1}}, + {{0xf3a,2},{0x1d3c,5}}, {{0x16a7,3},{0x1780,3}}, {{0x115e,7},{0x2094,7}}, {{0x1c5ef,6},{0xebb,3}}, + {{0x271d,12},{0xed6,2}}, {{0xe2f,4},{0x2f2e,3}}, {{0xccb,2},{0x29f3,3}}, {{0xacc5,6},{0x4cc2,3}}, + {{0x14a7,4},{0x4618,4}}, {{0xe3d,4},{0x2b0b0,2}}, {{0x1a66,1},{0x260e9,2}}, {{0x2dbf,7},{0x141a,2}}, + {{0xbac9,9},{0xf35,2}}, {{0x4287,5},{0x794f,4}}, {{0xf65,4},{0xeab,2}}, {{0x2510,4},{0xd4de,5}}, + {{0xe65,2},{0xe75,2}}, {{0x1839,2},{0xed6,2}}, {{0xcce,2},{0xe92,3}}, {{0x7351,4},{0x8b5e,7}}, + {{0x1019,11},{0x1663,4}}, {{0x1130,2},{0xf13,2}}, {{0x28df,5},{0x3fed,3}}, {{0x5bb4,5},{0x2dd7,4}}, + {{0xaaf,2},{0xc27b,2}}, {{0x28d0,4},{0x11de2,4}}, {{0x1817,4},{0x38ec,3}}, {{0x1150,2},{0x11e87,4}}, + {{0x12e5,3},{0x1b6a,6}}, {{0xc36,2},{0x11840,2}}, {{0xf722,5},{0xfb8,3}}, {{0x9,1},{0x12a6,3}}, + {{0x23c4b,3},{0x2ba5,1}}, {{0x5471,9},{0xe6b,4}}, {{0xe83,3},{0xcd3,2}}, {{0xe2f,1},{0x17661,2}}, + {{0xb1c9,7},{0x1fbd,4}}, {{0x479f,2},{0x15692,5}}, {{0x1917,4},{0x138d,5}}, {{0x2966,4},{0x5,1}}, + {{0x260e9,2},{0xe33,1}}, {{0x58a8,5},{0xed6,2}}, {{0xe08,1},{0xe7f,2}}, {{0x1817,4},{0x6034,5}}, + {{0x120a0,4},{0xed6,2}}, {{0x29c0,3},{0x1db34,2}}, {{0xf0a,3},{0x9a4,3}}, {{0x1fc15,6},{0xe0d,2}}, + {{0x19b7,3},{0x52d8,3}}, {{0x1d9f,6},{0x8a0f,6}}, {{0xa6e9,7},{0x18b4,3}}, {{0x62ea,9},{0x2ee9,3}}, + {{0x82d5,5},{0xe0a,1}}, {{0xf63,2},{0xe6c,3}}, {{0x1567,3},{0x9a6,1}}, {{0x1b4c7,5},{0xec6,3}}, + {{0xcce,2},{0xccd,1}}, {{0xe7a,1},{0x149d,2}}, {{0xe88,3},{0x1f38,4}}, {{0x13a7,7},{0x115a,3}}, + {{0x82dd,6},{0xe5e,2}}, {{0xf0c,1},{0x1153,2}}, {{0x18750,6},{0x126a,4}}, {{0xf77,4},{0x15cf,7}}, + {{0xcc8,1},{0x1393,3}}, {{0x442d,1},{0xf0c,1}}, {{0xb3f1,3},{0xee9,2}}, {{0x82dd,6},{0x3fb8,5}}, + {{0x12e5,4},{0xcd3,2}}, {{0x56c7,5},{0x1dd1,3}}, {{0x70ad,3},{0x9e34,3}}, {{0xd,1},{0x1be,2}}, + {{0x24e3,5},{0x2c3b,5}}, {{0xb74,4},{0xb74,2}}, {{0x6cde,4},{0xcba,3}}, {{0x2a47,3},{0xeaa,2}}, + {{0x29cf,3},{0x1fbe,3}}, {{0x11d9,3},{0xcc7,1}}, {{0x2948,3},{0xcbd,1}}, {{0x22b8,4},{0x11b5,2}}, + {{0x3a61,5},{0xf35,3}}, {{0x9b85,7},{0x7a13,5}}, {{0x2d79,4},{0x4795,4}}, {{0xcd6,1},{0xaf4,1}}, + {{0x7824,5},{0x153a,3}}, {{0x2cc9f,4},{0xedd,1}}, {{0xc928,6},{0xf62,3}}, {{0xb7ed,6},{0xfdd,4}}, + {{0x46af,3},{0x1189,3}}, {{0x12e5,3},{0xcf04,3}}, {{0x10b4,4},{0xcc9,2}}, {{0x2182,4},{0x1632,5}}, + {{0x329d,5},{0x2177,5}}, {{0xeab,2},{0x1d7d,3}}, {{0x15fb,3},{0x15fe,4}}, {{0x127f,3},{0x22a3,2}}, + {{0xcd3,2},{0xe78,1}}, {{0x2,2},{0x143c,4}}, {{0x46af,3},{0xeb5,2}}, {{0x113c,3},{0xfb8,3}}, + {{0x9a8,1},{0x9a6,1}}, {{0xe11,1},{0xf59,2}}, {{0x12f6,4},{0xcc3d,3}}, {{0x17670,4},{0xf35,2}}, + {{0x1803e,6},{0x1db4,4}}, {{0x5722,5},{0x8c97,6}}, {{0x11191,4},{0xfdf,3}}, {{0x1a66,1},{0xe13,3}}, + {{0xf77,3},{0x6eac,3}}, {{0xe16,1},{0x3537,2}}, {{0x1088,4},{0xed6,2}}, {{0xa5d5,8},{0xf91,3}}, + {{0x12e5,3},{0xe99,1}}, {{0x6eac,3},{0xe67,2}}, {{0x14ff,3},{0xe95,2}}, {{0x27fe,7},{0x13e3,4}}, + {{0x5611,5},{0xe86,2}}, {{0x20f6,5},{0xec3,3}}, {{0xe83,4},{0x115e1,5}}, {{0xf0a,3},{0x29a30,2}}, + {{0x4781,3},{0x1859,3}}, {{0x1367,3},{0x7974,4}}, {{0xcc1,2},{0x14ab,4}}, {{0x3976,3},{0x5,2}}, + {{0x1153,2},{0x2514,4}}, {{0x1109,5},{0xefa,4}}, {{0x9a8,1},{0xf1a,2}}, {{0xede,1},{0x2b7a,3}}, + {{0x2d8d,5},{0xcc3,3}}, {{0x42bf,9},{0x13e3,4}}, {{0x7303,5},{0x237f,4}}, {{0xf0c,1},{0x1f39,6}}, + {{0xe83,3},{0xddb9,4}}, {{0x1b14,3},{0x142a,3}}, {{0x16048,6},{0xe95,2}}, {{0xe6f,3},{0xe5d8,4}}, + {{0x450b,4},{0xcd3,1}}, {{0xc2a0,7},{0x1a9a,4}}, {{0x2df3b,4},{0x501,2}}, {{0x4aff,5},{0x1e73,3}}, + {{0x113c,3},{0x2083,4}}, {{0x7414,3},{0x2bb4,2}}, {{0x479d,7},{0x2177,5}}, {{0x13d7a,6},{0x2477,3}}, + {{0x5534,6},{0x30f4,4}}, {{0xa6e9,7},{0x318e,5}}, {{0x45c7,2},{0x2,1}}, {{0x104a0,8},{0xf91,3}}, + {{0x14e50,6},{0xf91,3}}, {{0x12e5,4},{0x29f3,3}}, {{0x1967,4},{0x19b9,1}}, {{0x1081,8},{0xf91,3}}, + {{0x1807,5},{0xccaa,4}}, {{0x4765,3},{0x1659,4}}, {{0xe83,3},{0xeaf5,4}}, {{0xe4c9,6},{0x2eb7,4}}, + {{0x70ad,3},{0xe16,1}}, {{0xfd9,3},{0xcc7,1}}, {{0x1969,1},{0xe19,1}}, {{0x10600,8},{0xec6,3}}, + {{0x643c,7},{0x4a5f,4}}, {{0x12f6,4},{0x12c63,5}}, {{0xf16,2},{0x2917,4}}, {{0x8cfd,5},{0x1a71,4}}, + {{0x9189,5},{0x160f,7}}, {{0x10f5e,8},{0xe11,1}}, {{0x28b31,3},{0x28b33,1}}, {{0xe21,1},{0x74f6,2}}, + {{0xedd,1},{0xe16,1}}, {{0x1e80,11},{0x1e8b,3}}, {{0xe1f,3},{0x17cd,4}}, {{0x5e27,3},{0xf91,3}}, + {{0x4ef5,4},{0x59b4,3}}, {{0xed1,3},{0x2fcc,4}}, {{0x2240,4},{0x9a6,1}}, {{0x121c,3},{0x1523,4}}, + {{0x1dba2,5},{0x2dd7,4}}, {{0xfcb,2},{0x1b41,4}}, {{0x1877,5},{0x1150,2}}, {{0x4a4e,6},{0xe95,2}}, + {{0x12f8,2},{0x22b2,3}}, {{0x1837,9},{0xe67,2}}, {{0x8,1},{0x1cd3,2}}, {{0x29cf,3},{0x1692,5}}, + {{0x28b2,8},{0x3abf,4}}, {{0x27e0,3},{0xf02,2}}, {{0x114d,5},{0xed6,2}}, {{0x12d4,3},{0xe1c,3}}, + {{0xe1f,3},{0xc992,4}}, {{0x794d,6},{0x14dd,5}}, {{0x860d,7},{0xcc9,2}}, {{0x1ef8,9},{0xe69,6}}, + {{0x101f,2},{0xe11,1}}, {{0x1969,1},{0x1e57e,2}}, {{0xf22,2},{0xcce,3}}, {{0x125d,6},{0x6d4e,5}}, + {{0x17092,5},{0xe2b,2}}, {{0xee4,4},{0x1d3c,5}}, {{0x2252,3},{0xe31,2}}, {{0x7fa1,9},{0xe77,3}}, + {{0x1943,2},{0xe0d,2}}, {{0x18b9c,6},{0x18ba2,4}}, {{0xbb89,4},{0x22b2,3}}, {{0x11b8b,3},{0xe92,3}}, + {{0x11187,2},{0x2ba5,1}}, {{0x103da,6},{0x2476,4}}, {{0x2df3b,4},{0x523,2}}, {{0xcd2,2},{0x2467,4}}, + {{0x1b425,8},{0xe0a,1}}, {{0x5f83,6},{0x113f,2}}, {{0xe19,1},{0x2ba52,3}}, {{0x2a47,3},{0xf39,2}}, + {{0xa641,6},{0xed6,2}}, {{0x1109,5},{0x1131,6}}, {{0x19b9,1},{0x19b9,1}}, {{0x6519,8},{0xe92,5}}, + {{0x14d4c,5},{0x1944,3}}, {{0x10c5,4},{0x7417,4}}, {{0xf89,3},{0x1155,2}}, {{0x478f,3},{0x9e34,4}}, + {{0x20d8,11},{0xfdf,4}}, {{0x1747,5},{0xf0d,2}}, {{0x17c0,2},{0x6791,4}}, {{0xf0a,3},{0x4618,3}}, + {{0x1747,4},{0x23057,4}}, {{0xe11,1},{0x713f,5}}, {{0x3559,4},{0x11a6,2}}, {{0x20571,2},{0x20571,2}}, + {{0x683f,9},{0xf91,3}}, {{0xe80,2},{0x1a99,5}}, {{0x29e7,4},{0xe22,2}}, {{0x82d5,5},{0xec6,3}}, + {{0x40ab,9},{0xcc9,2}}, {{0x12e5,3},{0xf15,1}}, {{0xcc3,2},{0xf70,2}}, {{0x12240,6},{0xe11,1}}, + {{0xf7a,2},{0xa045,8}}, {{0x1577,7},{0x1663,3}}, {{0xe77,2},{0xe67,2}}, {{0x16ff2,6},{0xe11,1}}, + {{0x1189,3},{0x6,1}}, {{0xe11,1},{0xf1d,2}}, {{0xf89,3},{0x7de9,2}}, {{0x1153,2},{0xcc3,2}}, + {{0x2c223,4},{0xe86,2}}, {{0x2df3b,4},{0x4ce,2}}, {{0x1f8fd,5},{0x2e28,4}}, {{0x7a01,5},{0x249e,4}}, + {{0x1967,3},{0xe22,3}}, {{0x56c7,5},{0x4e13,5}}, {{0x4853,3},{0xe19,1}}, {{0x2075,3},{0x1244,3}}, + {{0x1025,1},{0x2dc6,4}}, {{0x136f,2},{0x569a,3}}, {{0xe83,3},{0x2d11,3}}, {{0xd01e,6},{0x5261,4}}, + {{0x9189,5},{0x35df,5}}, {{0xf0c,1},{0xb,1}}, {{0x5e5e,4},{0xec6,3}}, {{0xf65,4},{0x6411,4}}, + {{0x46bf,1},{0x18055,4}}, {{0x4773,4},{0x101c1,4}}, {{0x3a29,4},{0x16ad,3}}, {{0x1cfa,5},{0xf86,3}}, + {{0x16552,7},{0xec6,3}}, {{0x450b,4},{0x8,1}}, {{0x3869,10},{0xeed,4}}, {{0x111a,3},{0x19cc7,6}}, + {{0x16322,6},{0x1040,3}}, {{0x478f,3},{0x1153,2}}, {{0x4,1},{0x11b5,2}}, {{0x1a71,3},{0xf1d,2}}, + {{0xe74,3},{0x318e,5}}, {{0x51b3,7},{0x534e,5}}, {{0x70ad,3},{0x1db39,4}}, {{0x12017,8},{0xfbb,3}}, + {{0x9a6,1},{0xfb8,3}}, {{0x6e7e,8},{0x1663,3}}, {{0xcce,2},{0x8,1}}, {{0x953d,6},{0xe11,1}}, + {{0x194d2,5},{0xcc9,2}}, {{0x182be,7},{0xcd3,2}}, {{0x1647,5},{0x14bcb,5}}, {{0x4153,8},{0xebb,3}}, + {{0x1132,2},{0xcc3,2}}, {{0xaaf,2},{0xaf4,64}}, {{0x1154c,4},{0xe86,2}}, {{0x19b7,5},{0x5536,4}}, + {{0x6644,6},{0x1440,7}}, {{0x3bbf,8},{0xf86,3}}, {{0x225e,6},{0xe1b,4}}, {{0x1fa2f,5},{0x1fa34,4}}, + {{0xebe,5},{0x237d,2}}, {{0x1ff7,3},{0xe92,5}}, {{0x9909,8},{0x10f4,4}}, {{0x1501,3},{0x66c2,3}}, + {{0x29cf,3},{0x1dee,2}}, {{0xe16,1},{0xf70,2}}, {{0xf77,5},{0x87a0,5}}, {{0x29c0,3},{0xcc7,1}}, + {{0xcc1,1},{0x1153,3}}, {{0x112b,6},{0x5342,4}}, {{0x83d9,6},{0x3bed,3}}, {{0x15af1,4},{0x2075,3}}, + {{0x5538,2},{0xcc9,2}}, {{0x19f9,2},{0x1898e,5}}, {{0xa,2},{0xe32,1}}, {{0x442b,3},{0x28b7d,4}}, + {{0x2939,4},{0xe11,2}}, {{0x127f,4},{0x9,1}}, {{0xf8d,2},{0x809a,3}}, {{0x1367,3},{0x23df,5}}, + {{0x73b9,5},{0xe61,2}}, {{0x12b8f,3},{0xa,2}}, {{0x1467,4},{0x4921,4}}, {{0x4853,3},{0xc118,5}}, + {{0x21aa,10},{0x13e3,4}}, {{0x72cf,4},{0x1059,3}}, {{0x1bd,2},{0xe,1}}, {{0x1677,3},{0x13e3,4}}, + {{0xccd,1},{0xe67,2}}, {{0xf4db,5},{0xe92,3}}, {{0x1ff7,3},{0x1e40,4}}, {{0x27ef,4},{0x1085,3}}, + {{0x12d30,7},{0xec6,3}}, {{0x16048,6},{0x239e,3}}, {{0x19f0d,6},{0x122d,3}}, {{0x3a1b,5},{0xebc,2}}, + {{0x115e,5},{0x101f,3}}, {{0x6fdd,7},{0xcc9,2}}, {{0x7d61,7},{0x1a99,5}}, {{0xcc8,1},{0x1ebf,3}}, + {{0x21d49,6},{0xe95,2}}, {{0x159e0,5},{0xcc9,2}}, {{0x14a7,4},{0xed9,2}}, {{0x1cd3,2},{0xebb,3}}, + {{0x24d5d,3},{0xedd,1}}, {{0x4853,3},{0xe32,1}}, {{0x1fe3a,6},{0xa1a0,3}}, {{0x1977,3},{0x1213,2}}, + {{0x115e,5},{0x13e1,5}}, {{0x4137,6},{0x10018,5}}, {{0x1f07,5},{0x92ea,4}}, {{0x19b9,1},{0x136f,2}}, + {{0x7518,7},{0xe69,5}}, {{0x30a13,3},{0x20599,1}}, {{0x8428,3},{0xcd3,1}}, {{0x70ad,3},{0x18238,2}}, + {{0x2c39d,5},{0xe21,1}}, {{0x1050,4},{0xe6b,4}}, {{0xe2f,1},{0x9e08,4}}, {{0x550d,5},{0x1062,2}}, + {{0xe65,2},{0x1b9d,4}}, {{0x70ad,3},{0xcce,2}}, {{0xede,1},{0xf0d,2}}, {{0x1537,4},{0x4c00,3}}, + {{0x2260,4},{0xe11,1}}, {{0x7416,1},{0x7416,1}}, {{0xb12d,7},{0x1664,2}}, {{0xe8a,2},{0xe67,2}}, + {{0x2252,3},{0x50de,5}}, {{0xe83,3},{0x113f,2}}, {{0x355b,3},{0x169d,4}}, {{0xfb0,3},{0xfdd,6}}, + {{0xc560,6},{0xc088,4}}, {{0x1827,4},{0xf79,3}}, {{0xed1,5},{0x30ad,6}}, {{0xeda3,6},{0x1664,2}}, + {{0xebe,4},{0xeb7,7}}, {{0x1577,5},{0x1085,3}}, {{0x8ba1,6},{0x9a4,3}}, {{0x56c7,5},{0x4aef,3}}, + {{0x1bd,2},{0xf,1}}, {{0xf0d,2},{0xe22,2}}, {{0x29cf,3},{0xfdf,3}}, {{0x1062,2},{0xec6,3}}, + {{0x4,1},{0x9bd1,3}}, {{0x6087,9},{0xec6,3}}, {{0x2b46,4},{0xc3d0,4}}, {{0xc05d,4},{0x2917,3}}, + {{0x9a8,1},{0x5342,4}}, {{0xe516,5},{0x1418f,5}}, {{0x30357,1},{0x30357,1}}, {{0x29cf,3},{0x2d1f,3}}, + {{0x9da1,5},{0x2091,4}}, {{0x739f,5},{0x1130a,6}}, {{0xf11,1},{0xe33,1}}, {{0x1397,5},{0xf12,3}}, + {{0xf15,1},{0x8,1}}, {{0x5770,5},{0x351b,6}}, {{0x10b8,2},{0x8,1}}, {{0xe08,1},{0x8,1}}, + {{0x3a0d,7},{0xec6,3}}, {{0x13a7,7},{0x115a,4}}, {{0x1c3f7,5},{0x79cd,4}}, {{0x12e5,3},{0x2a7f1,4}}, + {{0x29cf,3},{0x12a3,3}}, {{0xcf21,8},{0xebb,3}}, {{0x12d4,3},{0x2997f,4}}, {{0xe2f,1},{0xcd3,2}}, + {{0x486f,4},{0xb,1}}, {{0x7414,3},{0xcd3,2}}, {{0xe37,4},{0xe4d,2}}, {{0xe67,2},{0xed6,2}}, + {{0x5f69,6},{0xe65,2}}, {{0x12af6,6},{0x7955,4}}, {{0xcd2b,3},{0x9a6,1}}, {{0x1827,5},{0x165a7,5}}, + {{0x1967,3},{0x20370,3}}, {{0xe97,3},{0xf80,2}}, {{0x115e,7},{0x6140,3}}, {{0x39ff,7},{0x21c2,6}}, + {{0x450b,4},{0xf24,2}}, {{0x486f,4},{0x3694,3}}, {{0x122e,2},{0x2,1}}, {{0x6cc4,4},{0x6ca7,3}}, + {{0xc1d1,4},{0x2034e,5}}, {{0xcd3,2},{0xe86,2}}, {{0x10b4,4},{0x6411,4}}, {{0xe31,2},{0x4e43,4}}, + {{0xcd3,1},{0x1569,2}}, {{0xe0b,2},{0x1062,2}}, {{0xb421,10},{0x6,1}}, {{0x2d79,4},{0xcc7,1}}, + {{0xf8d,2},{0x11d9,3}}, {{0x1cdda,6},{0xe0d,2}}, {{0x4833,4},{0x41e9,4}}, {{0x42ee,3},{0x1252,3}}, + {{0xe60,2},{0x23d2,3}}, {{0x3b09,11},{0x1be9,3}}, {{0x33a7,8},{0xe92,3}}, {{0x2669,10},{0xcc9,2}}, + {{0xb64b,3},{0x5136,5}}, {{0x2e211,4},{0x45,1}}, {{0xf0c,1},{0x4bfa,3}}, {{0x2de45,3},{0x1bd,2}}, + {{0xcc7,1},{0x149c,3}}, {{0x1a07,3},{0x20344,4}}, {{0xfcb,2},{0xfe6,2}}, {{0x9,2},{0xf7a,2}}, + {{0x1469,3},{0xcc1,1}}, {{0x11f30,6},{0x101d,3}}, {{0xae69,8},{0xec6,3}}, {{0xc463,6},{0x142d,3}}, + {{0xec3,3},{0x157c,3}}, {{0x18d7,9},{0xe0b,4}}, {{0x8ccd,6},{0xe6b,4}}, {{0x7602,4},{0xcc1,2}}, + {{0xe7a,1},{0x5,1}}, {{0x7414,3},{0xe92,3}}, {{0xe71,1},{0xccb,2}}, {{0x1fe8,5},{0xe434,6}}, + {{0x1e874,2},{0x7416,1}}, {{0x5172,7},{0xe92,3}}, {{0xe25,2},{0xcc3,2}}, {{0x2b46,4},{0x152d4,4}}, + {{0x1567,6},{0x3640,4}}, {{0x14a7,4},{0x1d65,3}}, {{0x1ff7,3},{0x9b99,3}}, {{0x478f,3},{0x7119,3}}, + {{0x1019,11},{0x1279,5}}, {{0xb589,4},{0x2ee9,3}}, {{0xe11,1},{0x5538,2}}, {{0xe1f,3},{0x5e43,3}}, + {{0x1081,5},{0xe2b,2}}, {{0x7421,4},{0x1e40,4}}, {{0x1839,2},{0xe7e,3}}, {{0x6fdd,7},{0xe69,5}}, + {{0x18df4,6},{0x6452,4}}, {{0x1857,6},{0x185d,2}}, {{0x1977,3},{0xf3a,2}}, {{0x27e0,3},{0xb1a1,4}}, + {{0x9471,7},{0x1be9,3}}, {{0x5c29,7},{0x3fb8,5}}, {{0x1711e,4},{0xcc9,2}}, {{0xf4f,1},{0x309c,4}}, + {{0x8cfd,5},{0x6,1}}, {{0x7636,5},{0x1783,4}}, {{0x780a,5},{0x181b,3}}, {{0x111a,3},{0x1780,3}}, + {{0x24668,2},{0xe99,1}}, {{0x2e27d,1},{0x205a1,1}}, {{0x613d,6},{0xec8b,5}}, {{0x1f25,4},{0x3b48,7}}, + {{0x1747,5},{0x169b,8}}, {{0x7a85,5},{0xeb5,2}}, {{0x4618,3},{0xe0a,1}}, {{0x1467,4},{0x7a14,4}}, + {{0x175a6,6},{0xc035,4}}, {{0xf79,4},{0xe6c,3}}, {{0x4853,3},{0xcf04,3}}, {{0xf59,2},{0x141f,4}}, + {{0xf77,3},{0x61bb,4}}, {{0x5f22,3},{0x1064,3}}, {{0x17d46,8},{0xe0d,2}}, {{0x54cc,5},{0xeee,3}}, + {{0x5,1},{0x155e,3}}, {{0x1967,3},{0x20382,2}}, {{0x1a66,1},{0xec0,3}}, {{0x6b90,7},{0xf0d,2}}, + {{0x48d6,2},{0xf0c,1}}, {{0x46cb,9},{0x1ac7,3}}, {{0x1288,4},{0xf7a,2}}, {{0x1c85,3},{0xeed,4}}, + {{0xe19,1},{0xe11,1}}, {{0xe97,3},{0xe09,1}}, {{0x7602,4},{0x3,1}}, {{0xe67,2},{0x7998,4}}, + {{0xcd1c,7},{0xcc9,2}}, {{0x1ee68,6},{0x6,1}}, {{0x26183,5},{0x1059,3}}, {{0x4ee8,4},{0x8b9c,5}}, + {{0x299ad,5},{0xe7f,2}}, {{0xa5d5,8},{0x128c,4}}, {{0x7795,5},{0xed9,2}}, {{0xe83,5},{0x23d2,3}}, + {{0xecb,2},{0x1c1e0,4}}, {{0x112b,5},{0x3523,4}}, {{0xcc7,1},{0x4,1}}, {{0x2e273,1},{0x2e292,1}}, + {{0x2e79e,4},{0x9b5,2}}, {{0x4199,8},{0xe69,6}}, {{0xf0a,3},{0x16ad,3}}, {{0x111a,3},{0xe77,2}}, + {{0x4767,1},{0x4767,1}}, {{0x418b,7},{0x2ca3,4}}, {{0x1687,4},{0xcd3,2}}, {{0x4c37,8},{0x305a,5}}, + {{0xec3,3},{0xfdd,6}}, {{0xf4f,1},{0x296f,3}}, {{0x1967,3},{0x39b3,5}}, {{0x4599,3},{0x1f38,4}}, + {{0x33a7,5},{0x2352,3}}, {{0x1e60a,6},{0x6cb4,3}}, {{0x28c1,4},{0x174b,2}}, {{0x1e57e,2},{0x18776,2}}, + {{0xa797,5},{0xe95,2}}, {{0x1199a,4},{0xe67,2}}, {{0xf89,5},{0xf8e,5}}, {{0xcb8,1},{0xed9,2}}, + {{0x2ae45,3},{0xeb5,2}}, {{0xcc7,1},{0x1cd3,2}}, {{0x329f,4},{0xe0a,1}}, {{0x12e5,3},{0x1e7ac,5}}, + {{0x23b43,7},{0xe11,1}}, {{0x2a47,3},{0x4251,3}}, {{0x1aad4,6},{0xf0d,2}}, {{0x0,1},{0x0,1}}, + {{0x2eb3a,3},{0x2e273,1}}, {{0x4,1},{0xc962,5}}, {{0x156e,3},{0xccd,1}}, {{0x115e,7},{0xfa2,3}}, + {{0xf69,4},{0x1b40,5}}, {{0x4765,3},{0x1b8d5,6}}, {{0x46bd,3},{0xfb4,4}}, {{0x109,2},{0x7b,1}}, + {{0x27ef,4},{0xf91,3}}, {{0xe11,1},{0x3385,6}}, {{0x18430,6},{0x1f4e6,3}}, {{0x237d,6},{0xe77,3}}, + {{0x12e5,3},{0x4183,4}}, {{0x29c0,3},{0x2ba52,3}}, {{0x1a17,5},{0x15af,3}}, {{0x821d,7},{0x7978,5}}, + {{0xf0a,3},{0xe21,1}}, {{0xe78,2},{0x4,1}}, {{0xb535,5},{0x1189,4}}, {{0xf0c,1},{0xe08,1}}, + {{0x1777,5},{0x111c,2}}, {{0x24e8,4},{0xed9,2}}, {{0x2,1},{0x2e33,8}}, {{0x8b89,8},{0x1783,4}}, + {{0x3bbf,8},{0xef3,4}}, {{0x1bd,2},{0x69,1}}, {{0xf57,2},{0x4e43,4}}, {{0x11cb,3},{0xe0b,4}}, + {{0x1e872,2},{0xedd,1}}, {{0x12e5,3},{0x1059,3}}, {{0x1337,2},{0x1337,2}}, {{0x122d,2},{0x38e2,5}}, + {{0x1a07,3},{0x168a,5}}, {{0x1e62,4},{0xe0d,2}}, {{0x4911,9},{0x126a,4}}, {{0x4459,2},{0xe16,1}}, + {{0x7414,3},{0xf0f,2}}, {{0x26d2,8},{0xeed,4}}, {{0x14a7,4},{0xcf0f,7}}, {{0xebe,4},{0xabd0,5}}, + {{0x1027a,5},{0x27ea,5}}, {{0x2,1},{0x2b79,4}}, {{0x1d72,5},{0x17c0,2}}, {{0x18f7,4},{0x142d,3}}, + {{0x1677,3},{0xc0a1,2}}, {{0x114d,4},{0xf3f,3}}, {{0x10b9,3},{0x13e4,3}}, {{0xf722,5},{0xe2b,2}}, + {{0xe6f,3},{0xcc6,2}}, {{0x7bb5,5},{0xf35,3}}, {{0x94ad,5},{0xec5,4}}, {{0x311af,2},{0xe3b,2}}, + {{0xe27,2},{0xf1d,2}}, {{0xe2b,2},{0x4d85,4}}, {{0xdd44,6},{0x3c9a,5}}, {{0x16fe8,6},{0xf91,3}}, + {{0xe32,1},{0x1084,3}}, {{0x17f4e,7},{0xcc3,2}}, {{0xf0d,2},{0x1e1b,3}}, {{0x5242,5},{0x23df,5}}, + {{0x46bd,3},{0x1058,3}}, {{0x2015,3},{0x1153,2}}, {{0x19b7,3},{0x239c,7}}, {{0xf89,3},{0x56a7,6}}, + {{0xe67,2},{0x27dc,4}}, {{0x9855,6},{0x985b,6}}, {{0x7b21,5},{0x2dc6,4}}, {{0xe97,3},{0xcc3,2}}, + {{0x79dd,5},{0x331f,4}}, {{0x3559,4},{0xab88,5}}, {{0x1637,7},{0x13e3,4}}, {{0x65b7,3},{0x2454,3}}, + {{0xccd,4},{0xe6b,3}}, {{0x1109,5},{0x13e02,4}}, {{0x4fb8,4},{0xcd3,2}}, {{0xf89,3},{0xcf04,3}}, + {{0xe0f,1},{0x1db45,2}}, {{0x2240,4},{0xcc7,1}}, {{0x479f,2},{0xccd,1}}, {{0x27e0,3},{0x1692,5}}, + {{0x772d,5},{0x40d8,3}}, {{0x6,2},{0xfa9,4}}, {{0x520e,5},{0x1fd05,3}}, {{0x10b9,2},{0x22a3,2}}, + {{0x1977,3},{0x1a66,1}}, {{0x1150,2},{0xfdd,6}}, {{0x16a7,3},{0x1790,3}}, {{0x4767,1},{0x48d3,2}}, + {{0xe97,3},{0x11a6,2}}, {{0x1722,4},{0xf59,2}}, {{0xebe,4},{0x9,1}}, {{0xef7,4},{0xe32,1}}, + {{0x70ad,3},{0x19070,5}}, {{0xcc8,1},{0x38ec,3}}, {{0x9a9,2},{0x3,1}}, {{0x1467,4},{0x5eaf,4}}, + {{0x11b73,9},{0xe95,2}}, {{0x1967,3},{0xe2b,2}}, {{0x337d,6},{0xe6c,3}}, {{0x10cb,2},{0xcd4,2}}, + {{0xf77,3},{0xfdf,3}}, {{0x6c83,5},{0xf7a,2}}, {{0xcc8,1},{0x883a,7}}, {{0x6fd0,8},{0x12be,5}}, + {{0xef7,3},{0xc5e0,4}}, {{0xfa9,3},{0xfdd,4}}, {{0x1849,3},{0xcc9,2}}, {{0xb379,3},{0xe6b,3}}, + {{0x29cf,3},{0x82d5,5}}, {{0x591d,5},{0x14f0,7}}, {{0x19b7,3},{0x20c7c,5}}, {{0xde0a,5},{0xe11,1}}, + {{0xe97,3},{0xe0b,2}}, {{0x13910,6},{0x2dd7,4}}, {{0xcce,3},{0xed9,2}}, {{0x1290,4},{0x2560,4}}, + {{0x2dbf,5},{0x4cff,6}}, {{0x4781,3},{0x1dee,2}}, {{0xf34,2},{0xf59,2}}, {{0xe25,2},{0xfb0,2}}, + {{0x11b5,2},{0x1e3b,4}}, {{0x15a7,7},{0x5847,6}}, {{0x1b986,6},{0xcd3,2}}, {{0x1f07,7},{0x1279,5}}, + {{0x5cab,7},{0x1702,4}}, {{0x4853,4},{0x10cb,2}}, {{0x1687,5},{0x19c81,4}}, {{0x42db,8},{0x1059,3}}, + {{0x71be,6},{0x1150,2}}, {{0xe78,1},{0xf0f,2}}, {{0x479f,2},{0x15cf,7}}, {{0xccd,1},{0xeee,3}}, + {{0x1577,7},{0x2f26,5}}, {{0x235d,5},{0xa0fa,7}}, {{0xe97,3},{0x1e872,2}}, {{0x1b5f9,5},{0xe5e,2}}, + {{0xf0c,1},{0x492e,3}}, {{0x4845,8},{0xf86,2}}, {{0x2240,4},{0x1722,5}}, {{0x1ff7,3},{0x28505,3}}, + {{0x12e5,3},{0x1969,1}}, {{0x1c9d6,6},{0xcd3,2}}, {{0x12e7,3},{0x17dc,3}}, {{0x1d18,5},{0x3080,4}}, + {{0x1587,4},{0x1af61,5}}, {{0x43bb,7},{0x44b3,4}}, {{0x48da,2},{0xf0c,1}}, {{0xe31,2},{0x3e0e,3}}, + {{0xb60d,6},{0x15bf7,4}}, {{0x1059,3},{0xe0d,2}}, {{0x2058b,3},{0x21,1}}, {{0x127f,4},{0x1076,3}}, + {{0xcc8,1},{0x20bed,3}}, {{0x55,2},{0xf,1}}, {{0x113c,3},{0x1859,3}}, {{0x5,1},{0x1b6d,4}}, + {{0xe65,2},{0x43fc,2}}, {{0x11680,8},{0xe67,2}}, {{0x35a2,4},{0x4bf0,6}}, {{0x314d,6},{0xfa5,2}}, + {{0x2966,4},{0x17258,6}}, {{0xe97,3},{0xcd3,1}}, {{0x97ad,8},{0xe6b,3}}, {{0x5be8,7},{0xe2b,2}}, + {{0x227f,3},{0xe86,2}}, {{0x591d,5},{0xcd3,1}}, {{0xc371,5},{0x3372,4}}, {{0x1f97b,4},{0x2a7eb,3}}, + {{0xf11,1},{0x1969,1}}, {{0x4765,3},{0x3537,2}}, {{0xf4f,1},{0x10d3,3}}, {{0xccd,1},{0x120f,3}}, + {{0x111a,3},{0xcce,2}}, {{0x1567,6},{0x2260,4}}, {{0x2ba5,1},{0xcb7,2}}, {{0x7a79,6},{0xe92,3}}, + {{0x2240,4},{0x13e3,4}}, {{0x3d47,10},{0xe6b,4}}, {{0x43bb,9},{0x12be,5}}, {{0xc05d,4},{0xed6,2}}, + {{0xb69d,4},{0x1059,3}}, {{0xe2f,1},{0xfb0,2}}, {{0xed1,3},{0x94a4,5}}, {{0x1977,3},{0xe78,1}}, + {{0x1477,9},{0x1663,4}}, {{0xe7a,1},{0x23f16,5}}, {{0x19b7,3},{0x283fa,4}}, {{0x1969,1},{0xe8a,2}}, + {{0x46bf,1},{0x1062,2}}, {{0x780a,4},{0x9,1}}, {{0x148a,3},{0xe0a,1}}, {{0x57cb,6},{0x57d1,7}}, + {{0xe97,3},{0xd086,3}}, {{0xe6f,3},{0x10d3,3}}, {{0x2abf,6},{0x2ad4,4}}, {{0x2d641,4},{0xe99,1}}, + {{0xc1d1,4},{0xadcf,4}}, {{0x5d54,5},{0x5710,5}}, {{0xb3f1,3},{0xf15,1}}, {{0x1154e,2},{0x3199,3}}, + {{0x11b3,6},{0x2f4c,4}}, {{0xcb8,1},{0x9a6,1}}, {{0x2df3b,4},{0x6cc,2}}, {{0x227f,3},{0xebb,3}}, + {{0x955a,4},{0x2c15,3}}, {{0x2dbf,6},{0x44b2,5}}, {{0xfcb,2},{0xeb4,2}}, {{0x4597,4},{0x386f,4}}, + {{0xf77,3},{0x142a,3}}, {{0x10e2a,4},{0x811a,4}}, {{0x27ef,4},{0xf7a,2}}, {{0x2966,5},{0x1054,3}}, + {{0x5903,5},{0xe2b,2}}, {{0xe99,1},{0x2,2}}, {{0xeab,2},{0x6,2}}, {{0xf89,3},{0x11b5,2}}, + {{0x13f50,6},{0x2,1}}, {{0x7414,3},{0x1fa2,3}}, {{0xea6a,7},{0x1523,4}}, {{0x450b,4},{0x9b99,3}}, + {{0xaeb1,5},{0x10bb,5}}, {{0xe7a,2},{0x6411,4}}, {{0x1a27,4},{0x1a86,3}}, {{0xfa5,2},{0x10cb,4}}, + {{0x16a7,3},{0x2d8d,5}}, {{0x2489,5},{0x142d,3}}, {{0xcd3,2},{0x1088,9}}, {{0x1587,4},{0x1f7b,4}}, + {{0x307bb,1},{0x7905,1}}, {{0x5269,6},{0xf7a,2}}, {{0xfdf,3},{0x2b7a,3}}, {{0x1607,5},{0x14f0,7}}, + {{0xf59,2},{0x2514,4}}, {{0xef7,3},{0x421a,5}}, {{0x168cc,6},{0x5863,3}}, {{0x1025,1},{0xcd3,1}}, + {{0x25e2,9},{0x1059,3}}, {{0x1877,4},{0x431c,5}}, {{0xe97,3},{0x308f,4}}, {{0x2e235,4},{0xf,1}}, + {{0x325,2},{0x57,1}}, {{0xebe,5},{0x3780,9}}, {{0x5,1},{0x4,1}}, {{0x10cb,2},{0xe6b,3}}, + {{0x11e5f,8},{0x1fc7,3}}, {{0x16d7,6},{0x34a9,3}}, {{0xfbf,12},{0xfcb,3}}, {{0x5f90,6},{0xef4,3}}, + {{0x1b69,3},{0xfe8,2}}, {{0x10b9,2},{0x27dc,4}}, {{0xccd,1},{0x1e8b,3}}, {{0xff64,4},{0xe80,2}}, + {{0xc6f7,4},{0x4b55,5}}, {{0x12a1,4},{0x4188,3}}, {{0x169b,6},{0xfdd,4}}, {{0xe32,1},{0xf59,2}}, + {{0x4853,3},{0x1a5e,3}}, {{0x122d,2},{0x1393,4}}, {{0x125d,6},{0xd229,4}}, {{0x19b7,3},{0xe16,1}}, + {{0xf4db,5},{0xcce,2}}, {{0xfb0,2},{0xcd3,1}}, {{0x12736,6},{0xed9,2}}, {{0xcbd,1},{0x6008,3}}, + {{0x12e5,5},{0x17dc,3}}, {{0x42db,8},{0x128c,4}}, {{0xd11b,5},{0x10e2,5}}, {{0x55,2},{0x9f,1}}, + {{0x1e5b2,3},{0xcd3,2}}, {{0x478f,3},{0xe7d,4}}, {{0xee9,2},{0xe11,1}}, {{0x15c7,6},{0x92af,6}}, + {{0x4765,3},{0x2bb4,2}}, {{0x22e03,5},{0xa,2}}, {{0xf15,1},{0x6d5a,5}}, {{0x17bea,3},{0x26ba,3}}, + {{0x73b9,5},{0xe7e,3}}, {{0xe78,1},{0x1e77,3}}, {{0xef87,7},{0xe0b,4}}, {{0x10c5,4},{0x1bef,2}}, + {{0xcbf,2},{0xcd3,2}}, {{0x4765,3},{0x1dee,2}}, {{0x9e31,7},{0x1392,3}}, {{0x16c7,10},{0x127c,3}}, + {{0x2bf1,5},{0xfbb8,3}}, {{0xcb8,1},{0x9e34,3}}, {{0x30f4,4},{0xcc9,2}}, {{0x1c7a,6},{0xe67,2}}, + {{0x9a6,1},{0xec3,3}}, {{0x7eed,5},{0x1040,3}}, {{0xcdf8,7},{0xccb,2}}, {{0xe97,3},{0xb156,7}}, + {{0x70ad,3},{0x492e,3}}, {{0x1dbd,6},{0x2651,7}}, {{0x24b6,5},{0x43fd,4}}, {{0x16d7,6},{0x1288,4}}, + {{0x168f,2},{0x4538,4}}, {{0xe31,2},{0x20bed,3}}, {{0x1b086,5},{0xec6,3}}, {{0x40e3,7},{0xf35,3}}, + {{0x1df9,6},{0xe92,5}}, {{0xf65,4},{0x13dd,4}}, {{0x9c91,5},{0xebb,3}}, {{0x5430,6},{0x61bb,4}}, + {{0x1059,3},{0xcd3,1}}, {{0x3fd0,4},{0xe69,5}}, {{0xe516,5},{0x1783,4}}, {{0x4765,3},{0xec0,3}}, + {{0x17646,5},{0xb428,3}}, {{0xa79d,9},{0xec6,3}}, {{0x1a07,3},{0x138e,2}}, {{0xe1f,3},{0x142a,3}}, + {{0x736b,5},{0x11265,6}}, {{0x5e58,6},{0x3075,3}}, {{0x1967,3},{0x453b,4}}, {{0x56fd,6},{0xcc9,2}}, + {{0x73d6,2},{0x8,1}}, {{0x4781,3},{0x182fd,3}}, {{0x1bb1b,6},{0xf91,3}}, {{0x53c0,5},{0xed6,2}}, + {{0x251f,8},{0xe11,1}}, {{0xbba1,4},{0xe22,2}}, {{0x9a8,1},{0x3a3e,7}}, {{0x1ff7,3},{0xf04,2}}, + {{0x15e7,5},{0x5970,7}}, {{0x2d11,4},{0x8b54,5}}, {{0x247a,5},{0xeb5,2}}, {{0x7a01,5},{0xca78,5}}, + {{0x5722,5},{0xa833,6}}, {{0xb3c3,4},{0x1ee0,3}}, {{0x14e3c,5},{0x14e4b,5}}, {{0x90f9,7},{0x9100,4}}, + {{0x3559,4},{0x156a,3}}, {{0x122d,3},{0x1230,5}}, {{0x2b84,2},{0x6,2}}, {{0x60e2,7},{0x1b4f,5}}, + {{0x268c,3},{0xcc9,2}}, {{0x1967,3},{0x1040,3}}, {{0x28d0,4},{0x1559,3}}, {{0xfd1,8},{0xa085,4}}, + {{0x12c3,11},{0x10f2,6}}, {{0xedd,1},{0x17661,2}}, {{0xe97,3},{0xfe7,2}}, {{0x491e,5},{0x6,2}}, + {{0x2b46,4},{0x9a8,1}}, {{0x1777,5},{0x2fcc,7}}, {{0x3b09,4},{0x3b1b,5}}, {{0x74f9,2},{0xe99,1}}, + {{0xf15,1},{0x121c,3}}, {{0x10a3,3},{0x7001,3}}, {{0x11b3,6},{0x1b80,3}}, {{0x1ebe,3},{0x1153,2}}, + {{0xcf21,5},{0xe0a,1}}, {{0x46af,3},{0xb97c,2}}, {{0x10e7,5},{0x3118,5}}, {{0xccd,1},{0x453b,4}}, + {{0xe0b,2},{0x12ba,4}}, {{0x1b866,4},{0xe6c,3}}, {{0x1c010,8},{0xe11,1}}, {{0x4781,3},{0x1ea72,2}}, + {{0x11d99,5},{0xf80,2}}, {{0x5172,7},{0x13e3,4}}, {{0x12e5,4},{0xfa5,3}}, {{0x2ac2d,5},{0x45c7,2}}, + {{0x113c,3},{0xed6,2}}, {{0x27e0,3},{0xeee,3}}, {{0x1050,4},{0x1054,3}}, {{0x2b46,4},{0x123e,3}}, + {{0x2a47,3},{0x18772,2}}, {{0x1db12,6},{0x155e,3}}, {{0xe101,6},{0xf91,3}}, {{0x5,1},{0x189f,3}}, + {{0x9,2},{0xfe0,2}}, {{0x4829,8},{0x4831,6}}, {{0x113c,3},{0x1c444,4}}, {{0x1150,2},{0x6,1}}, + {{0x29cf,3},{0x17acb,2}}, {{0x1290,10},{0x2269,4}}, {{0xecf3,9},{0xe95,2}}, {{0x75d0,2},{0xe2b,4}}, + {{0xb,1},{0xf1f,3}}, {{0xea96,5},{0xe89,2}}, {{0xc16,16},{0xc16,16}}, {{0x4853,3},{0xe0d,2}}, + {{0x3a45,5},{0xf7a,2}}, {{0xe6f,3},{0x1b01,4}}, {{0x9f4a,3},{0xfa9,4}}, {{0x5,1},{0xe32,1}}, + {{0x1877,5},{0xe0d,2}}, {{0xeed,4},{0x1892,5}}, {{0xd131,4},{0xf32,2}}, {{0x113f,2},{0xfe7,2}}, + {{0x4767,1},{0xe21,1}}, {{0x1727,12},{0xec6,3}}, {{0xef7,3},{0xf62,3}}, {{0xb,1},{0xf18,2}}, + {{0xf4d0,6},{0xef5,2}}, {{0x478f,3},{0x28fde,3}}, {{0xcd1,5},{0xe11,1}}, {{0x29cf,3},{0x1f03f,3}}, + {{0x192da,6},{0x18b4,3}}, {{0x1977,4},{0xf1d,2}}, {{0x354b,7},{0x1de7,3}}, {{0x67ca,10},{0xcce,2}}, + {{0x7b51,4},{0x17cc,4}}, {{0x22b0,5},{0xfc7,3}}, {{0x19523,7},{0xe0a,1}}, {{0x5172,7},{0x18b2,5}}, + {{0xa35e,5},{0xcc9,2}}, {{0xcbd,1},{0x29e3,4}}, {{0xaaf,2},{0xc16,3}}, {{0x8835,5},{0x162c,3}}, + {{0xcbd,1},{0x1189,3}}, {{0x353d,5},{0x1de7,3}}, {{0x1e71,6},{0x4ca6,6}}, {{0x2240,4},{0xe0a,1}}, + {{0xf1a,2},{0xe80,2}}, {{0x4,1},{0xcc7,1}}, {{0x73ed,4},{0x3,1}}, {{0xae8d,10},{0xed9,2}}, + {{0x138b,7},{0x1392,3}}, {{0x1a66,1},{0x1f875,1}}, {{0x27e0,4},{0xf1f,3}}, {{0x1569,2},{0xe67,2}}, + {{0x1007,5},{0x1088,4}}, {{0xd194,8},{0xec6,3}}, {{0x20f6,5},{0x9498,5}}, {{0x41ed,4},{0x431c,5}}, + {{0xb649,5},{0x1569,3}}, {{0xbc31,5},{0x5,2}}, {{0x17f7,6},{0x2d1f,6}}, {{0x1659,4},{0x1ac7,3}}, + {{0x4ee3,4},{0xe0a,1}}, {{0x10cb,2},{0xcc7,1}}, {{0x1847,4},{0x1c7e,4}}, {{0x19e9,4},{0xcc3,2}}, + {{0x2a47,3},{0xf15,1}}, {{0x1967,3},{0x1230,3}}, {{0x11541,4},{0x7e9d,3}}, {{0x2,1},{0xe32,1}}, + {{0x1e08,6},{0xd8c7,5}}, {{0x4765,3},{0x1593,3}}, {{0xd832,8},{0xed6,2}}, {{0xaec9,10},{0x104c,2}}, + {{0xe6f,3},{0xfc7,3}}, {{0xe7f,2},{0x23d2,3}}, {{0x3a7d,7},{0x14f0,7}}, {{0x1c82,6},{0x2d9d,6}}, + {{0x3a45,5},{0xe22,2}}, {{0x28b3a,1},{0x205a0,2}}, {{0x29cf,3},{0xe21,1}}, {{0x114d,4},{0xe71,1}}, + {{0x188c,3},{0xe1b,3}}, {{0xe0eb,7},{0x3555,4}}, {{0x4f77,8},{0xec6,3}}, {{0x3aed,6},{0x3b4a,5}}, + {{0x74f3,2},{0x7416,1}}, {{0xcbd,1},{0x13e3,4}}, {{0x4767,1},{0xcd3,1}}, {{0x4287,5},{0xe67,2}}, + {{0x111a,3},{0x2e2c,3}}, {{0x11b3,5},{0x1d7d,3}}, {{0x29cf,3},{0x1db45,2}}, {{0x4cb9,7},{0xef5,2}}, + {{0xcd3,2},{0xfcff,5}}, {{0xe21,1},{0x1189,4}}, {{0x1827,4},{0xf70,2}}, {{0x9441,5},{0xe11,1}}, + {{0x584d,7},{0xec6,3}}, {{0xf65,4},{0x103bb,5}}, {{0x62f7,7},{0x127c,3}}, {{0x4615,8},{0xe1c,3}}, + {{0xb69d,4},{0x2266,5}}, {{0x17812,5},{0x10b9,3}}, {{0xf89,3},{0x6,1}}, {{0x1997,4},{0xccd,4}}, + {{0x40f1,9},{0xe6b,4}}, {{0xf34,2},{0xe69,5}}, {{0x2e3d,9},{0xcce,2}}, {{0x1817,4},{0xcc3,3}}, + {{0x23b63,5},{0xec6,3}}, {{0x1e62,6},{0x7f90,5}}, {{0x12ce0,7},{0xec6,3}}, {{0x2f71,4},{0x1692,5}}, + {{0x353d,5},{0xe92,3}}, {{0x4765,3},{0x22616,5}}, {{0xe99,1},{0x35a3,3}}, {{0x1e2,2},{0x45,1}}, + {{0x1bfa4,5},{0x90f3,4}}, {{0xbb7d,5},{0x386e,5}}, {{0x3eb3,9},{0x14a2,5}}, {{0xe97,3},{0xf4f,1}}, + {{0x10bac,5},{0xeee,3}}, {{0x1947,5},{0x169b9,3}}, {{0xad6d,4},{0x26f5,4}}, {{0x1153,2},{0xefa,4}}, + {{0xf89,3},{0xfb0,3}}, {{0x5290,9},{0xe11,1}}, {{0x4287,5},{0x1279,5}}, {{0xcd53,7},{0x11dc,3}}, + {{0x2f71,4},{0x1c79,2}}, {{0x13168,7},{0xcc9,2}}, {{0x146d,4},{0x1059,3}}, {{0x1150,2},{0x1265,5}}, + {{0x457b,5},{0x28f5,5}}, {{0x46bd,3},{0xcd3,2}}, {{0x17e7,9},{0x3324,5}}, {{0x1a9a,4},{0x66c2,3}}, + {{0xcc3,2},{0xf86,3}}, {{0x39d5,7},{0x1702,4}}, {{0x1a56,2},{0x11b5,2}}, {{0x486f,4},{0xeed,3}}, + {{0xff6d,7},{0xec6,3}}, {{0xf0f,2},{0x8,1}}, {{0xe97,3},{0xe2f,1}}, {{0xed9,2},{0x1155,2}}, + {{0x22323,5},{0xf86,3}}, {{0x4767,1},{0x10d3,3}}, {{0x15c06,6},{0x109b,2}}, {{0x22473,7},{0xe11,1}}, + {{0x2e2b3,2},{0xc287,2}}, {{0x1e62,5},{0xf7a,2}}, {{0x4ef5,4},{0x4fa8,3}}, {{0x72b5,6},{0x5669,3}}, + {{0x3559,4},{0xde07,3}}, {{0x236fb,6},{0xf7a,2}}, {{0x2e241,4},{0xf,1}}, {{0xcc1,1},{0x5b06,5}}, + {{0xe16,1},{0x12b5,2}}, {{0x465b,5},{0x66c2,3}}, {{0x77e3,6},{0x11ac,3}}, {{0x29cf,3},{0xf62,3}}, + {{0xe5b,4},{0xb05c,5}}, {{0xe0b,2},{0xcbf,2}}, {{0x79c5,4},{0x2f94,3}}, {{0xef7,3},{0x45f2,2}}, + {{0xa659,5},{0xe80,2}}, {{0xf0a,3},{0x4618,4}}, {{0x70ad,3},{0x2dd7,4}}, {{0x111a,3},{0x10a5,2}}, + {{0xe6f,3},{0xab9f,3}}, {{0x11633,5},{0x4665,4}}, {{0x1967,3},{0x20bc,8}}, {{0x9525,6},{0xe5b6,4}}, + {{0x3db7,7},{0x3155,6}}, {{0x7414,3},{0xed6,2}}, {{0x2e2f,12},{0xe95,2}}, {{0x1967,3},{0x1783,4}}, + {{0x486f,6},{0x286d,5}}, {{0x2dbf,5},{0x26f5,4}}, {{0x2e241,4},{0xe,1}}, {{0x1447,7},{0x4b13,4}}, + {{0x18674,6},{0xcc3d,3}}, {{0x1df9,5},{0x6d08,4}}, {{0x12e5,3},{0x6f3b,6}}, {{0x3db7,7},{0x1265,5}}, + {{0x4f91,8},{0xe95,2}}, {{0x19b7,3},{0x1523,4}}, {{0x20f8,4},{0xfdf,3}}, {{0xeab,2},{0xf69b,3}}, + {{0x1efbe,6},{0xe67,3}}, {{0xe2f,1},{0xce96,4}}, {{0x1dc58,2},{0x3f56,5}}, {{0x14702,6},{0xed6,2}}, + {{0x7414,3},{0x5538,2}}, {{0x9351,5},{0x2277,5}}, {{0xc26f,2},{0xddc,2}}, {{0x9a8,1},{0x6,2}}, + {{0xe83,5},{0xe71,2}}, {{0xee95,6},{0x18b4,3}}, {{0x18c78,6},{0x7a39,4}}, {{0x1947,5},{0x850a,7}}, + {{0x2006,3},{0x7417,4}}, {{0xee4,4},{0xe78,1}}, {{0xc928,6},{0xc469,5}}, {{0x19b9,1},{0x2e29,3}}, + {{0x12e5,3},{0x17661,2}}, {{0x1677,3},{0x28d2,3}}, {{0x46af,3},{0xf11,1}}, {{0x1f3f6,5},{0x1f3fb,4}}, + {{0x3a53,4},{0x156a,3}}, {{0x10a3,3},{0x103e,4}}, {{0xf89,3},{0xfdf,3}}, {{0x6f68,8},{0xe92,3}}, + {{0xf0a,3},{0x13053,4}}, {{0x1927,5},{0x146c,5}}, {{0xb3f1,3},{0xe5e,2}}, {{0x2015,3},{0xf1a,2}}, + {{0xb5dd,5},{0x14f9,3}}, {{0x75ce,4},{0xb1d0,5}}, {{0x1a07,3},{0x4459,2}}, {{0x1ccd,5},{0x4a44,5}}, + {{0x4781,3},{0x6cbe,4}}, {{0x59c6,5},{0x14f0,7}}, {{0xcd3,2},{0x138e,3}}, {{0x3089,5},{0x11530,4}}, + {{0xe97,3},{0x4618,3}}, {{0x11e07,5},{0x4415,3}}, {{0x12b2,5},{0x8bcb,6}}, {{0x12e5,3},{0x445c,2}}, + {{0x5d13,8},{0xcc9,2}}, {{0xbe1d,5},{0xe0a,1}}, {{0x2e866,2},{0x29979,2}}, {{0x48d3,2},{0xe99,1}}, + {{0x1025,1},{0xe5e,2}}, {{0xa215,5},{0x8937,6}}, {{0xe32,1},{0x4fa8,3}}, {{0x2b46,4},{0xcc8,1}}, + {{0x19b7,3},{0xf0c,1}}, {{0x2ba5,4},{0xed6,2}}, {{0xe2f,1},{0xb3e8,9}}, {{0x6,2},{0x1221,3}}, + {{0x11b89,7},{0xe77,3}}, {{0x1327,1},{0xb74,1}}, {{0x1a07,5},{0xe25,2}}, {{0x14f9,3},{0x1790,3}}, + {{0x8829,8},{0xcce,2}}, {{0x1fd62,6},{0x1cd3,2}}, {{0x4695,3},{0x15dc,3}}, {{0x8,2},{0x6,1}}, + {{0x3513,5},{0x7f5f,6}}, {{0x1c28,5},{0x56a8,5}}, {{0x20599,1},{0x28b33,1}}, {{0x19b7,3},{0xcbf,2}}, + {{0x1847,5},{0x36bd,7}}, {{0x11a13,8},{0xe11,1}}, {{0x1e6fd,5},{0xe92,3}}, {{0x12e5,3},{0xed6,2}}, + {{0xbab1,8},{0xfe6,2}}, {{0xe1f,3},{0x3537,2}}, {{0x1019,6},{0xed5,3}}, {{0xe83,3},{0x3b4a,5}}, + {{0x20f6,5},{0xef3,4}}, {{0x17d7,8},{0x1040,3}}, {{0x2e271,3},{0xcf6,1}}, {{0xb595,5},{0x10b9,3}}, + {{0x1937,4},{0x2ca1,4}}, {{0x1db34,2},{0xf4f,1}}, {{0x1e2,2},{0x9f,1}}, {{0x7414,3},{0xcc3,2}}, + {{0x595e,8},{0x3063,5}}, {{0xaaf,2},{0xe37,4}}, {{0x3089,5},{0xf79,3}}, {{0xe6f,3},{0x27dc,4}}, + {{0xed6,2},{0x14f9,3}}, {{0x1967,3},{0xf02,2}}, {{0x6d1f,5},{0x492e,3}}, {{0x4791,2},{0x44ad,3}}, + {{0xb,1},{0xf50,3}}, {{0x3b5d,8},{0xcc9,2}}, {{0xfa5,2},{0x12fe,2}}, {{0xfb0,2},{0xe77,3}}, + {{0x181ce,5},{0xc3f0,5}}, {{0xf77,3},{0x7998,4}}, {{0x73ed,4},{0x492e,3}}, {{0xed6,2},{0x126a,4}}, + {{0x15332,7},{0xec6,3}}, {{0xe16,1},{0x2f756,2}}, {{0x1a306,5},{0xa,2}}, {{0x3eb3,8},{0x1632,5}}, + {{0xf65,4},{0x4adc,4}}, {{0x2a92,6},{0x101e,4}}, {{0x1967,3},{0xfb0,2}}, {{0xe6f,4},{0xc6bc,4}}, + {{0x12f6,4},{0x5342,3}}, {{0xcc8,1},{0x9a6,1}}, {{0x10b4,4},{0x12b5,2}}, {{0xfe8,2},{0xe67,2}}, + {{0x17f7,6},{0xaaeb,6}}, {{0x46af,3},{0xb4f0,5}}, {{0x18d72,5},{0xcc3,3}}, {{0x10a3,3},{0xe0b,2}}, + {{0x109,2},{0xe,1}}, {{0x111a,3},{0x219f4,4}}, {{0x4853,3},{0x1692,2}}, {{0xe97,3},{0xf16,2}}, + {{0x1ffab,6},{0x1b04,3}}, {{0x2a58,2},{0xed5,3}}, {{0x1005,2},{0xfdf,3}}, {{0x45a5,11},{0xf35,3}}, + {{0x111a,3},{0x1062,2}}, {{0x1787,7},{0x155e,3}}, {{0x1859,4},{0xe77,3}}, {{0xff2b,7},{0xed9,2}}, + {{0x7414,3},{0x4188,3}}, {{0x1be,2},{0x21,1}}, {{0xbb4,4},{0x30861,2}}, {{0xf1f,3},{0xe0a,1}}, + {{0x12154,3},{0x12157,3}}, {{0x1367,3},{0x16fff,3}}, {{0x712f,4},{0xb23c,4}}, {{0xe99,1},{0xfcb,2}}, + {{0xf0f,2},{0x1b03,3}}, {{0x1153,2},{0xfb0,2}}, {{0x2948,4},{0x3075,4}}, {{0x4e4c,7},{0xcce,2}}, + {{0x9201,5},{0x1155,2}}, {{0x11ce9,5},{0x2236,3}}, {{0x1a1a7,5},{0x1064,3}}, {{0xf65,4},{0x2cab,3}}, + {{0xf89,3},{0x3537,2}}, {{0x29fc,5},{0x6,1}}, {{0x1c463,5},{0xcc8,3}}, {{0xe6f,3},{0xdb73,3}}, + {{0x1040,3},{0xf92,2}}, {{0x797f,4},{0xcba,2}}, {{0x1cfa,5},{0x1b80,3}}, {{0x4153,8},{0x1722,5}}, + {{0x1cd3,2},{0xcc1,1}}, {{0x2e22f,4},{0x9f,1}}, {{0xe4a8,6},{0x43fd,4}}, {{0xf9b,7},{0x9904,5}}, + {{0x2fd3,10},{0xe6b,3}}, {{0xf9b,5},{0x11a6,2}}, {{0xe2b,2},{0xe7f,2}}, {{0x3ad1,8},{0xe69,5}}, + {{0x1a17,4},{0xee6c,4}}, {{0x115e,5},{0xfa6,3}}, {{0x10a3,5},{0xcc1,1}}, {{0xf11,1},{0x4767,1}}, + {{0x34e9,7},{0x1244,7}}, {{0xe08,1},{0x442d,1}}, {{0x1467,5},{0xf1a,2}}, {{0x27e0,5},{0x61a1,4}}, + {{0x2bc7,5},{0x1c8b,3}}, {{0xeb5,2},{0xf35,2}}, {{0xf15,1},{0x93b4,7}}, {{0x3a1b,6},{0x6ca7,3}}, + {{0x4853,3},{0xfb0,3}}, {{0x1eda,12},{0x1be9,3}}, {{0xcda0,4},{0x2ee9,3}}, {{0xcf37,6},{0x128c,4}}, + {{0x18f7,4},{0x1dd05,5}}, {{0xbba1,4},{0x11b5,2}}, {{0x2016d,6},{0xe67,2}}, {{0x2467b,4},{0x1969,1}}, + {{0x2abc4,5},{0xe11,1}}, {{0xe11,2},{0xe69,5}}, {{0x52aa,10},{0xe77,3}}, {{0x11cb,3},{0x2,1}}, + {{0xcd3,2},{0x5bdf,9}}, {{0x27e0,3},{0xccaa,4}}, {{0x29000,2},{0x1e57e,2}}, {{0x292a,8},{0xcc9,2}}, + {{0xc954,5},{0xcd3,1}}, {{0x10e77,5},{0xfe0,2}}, {{0x17dd9,3},{0xa,2}}, {{0xfcb,3},{0xcc9,2}}, + {{0xcd3,2},{0x27dc,4}}, {{0x471f,5},{0xafbe,6}}, {{0xb805,5},{0x2,1}}, {{0x10e9a,4},{0x5136,5}}, + {{0x8d,1},{0x666,2}}, {{0x1290,4},{0xb221,8}}, {{0x12e5,4},{0x156a,3}}, {{0xe5b,3},{0x1d2f,6}}, + {{0x824d,4},{0x811a,4}}, {{0x236c,4},{0x568c,5}}, {{0xaaf,2},{0x2b50b,2}}, {{0x11788,4},{0x45ee,3}}, + {{0x19b7,3},{0xcb7,2}}, {{0xab1,1},{0x30a31,2}}, {{0x110c9,7},{0x127c,3}}, {{0xe6f,4},{0x7998,4}}, + {{0xe83,3},{0x1c5ce,6}}, {{0x4781,3},{0xe13,3}}, {{0x4853,4},{0x10cb,4}}, {{0xf0a,3},{0x243ce,5}}, + {{0x7b2d,5},{0x3caa,3}}, {{0xcc1,1},{0x1780,3}}, {{0x1e62,4},{0x1160,5}}, {{0x451b,2},{0x120b,4}}, + {{0x1a306,6},{0xe0a,1}}, {{0xb349,7},{0xcc8,1}}, {{0x11b5,2},{0x2467,4}}, {{0x3089,5},{0x7a15,4}}, + {{0x1d143,5},{0x7a15,4}}, {{0xb34,2},{0xc,1}}, {{0x1677,3},{0x2f5a,4}}, {{0x478f,3},{0xfaac,7}}, + {{0x21,1},{0x1ac,2}}, {{0x772d,9},{0xcce,2}}, {{0x1a66,1},{0x9b99,3}}, {{0x2df3b,4},{0x578,2}}, + {{0x1832,3},{0xe7f,2}}, {{0xe83,3},{0xc342,3}}, {{0x794d,6},{0x2f2e,3}}, {{0x46af,3},{0xe19,1}}, + {{0x1e8f,11},{0xfdd,4}}, {{0x1763c,6},{0xe0a,1}}, {{0x16fd4,5},{0xe31,2}}, {{0x1ff7,3},{0x38e2,5}}, + {{0xe16,1},{0x9a8,1}}, {{0xe0c,2},{0x17c0,2}}, {{0x8f0d,7},{0x35a3,3}}, {{0x3075,4},{0x126a,4}}, + {{0x17182,6},{0x1b0d,3}}, {{0x1977,4},{0xe71,1}}, {{0xefdf,6},{0x305a,5}}, {{0x4161,5},{0x331f,4}}, + {{0x112b,4},{0xcc3,3}}, {{0x1fbb,5},{0x21fe0,3}}, {{0x9441,5},{0xcd3,2}}, {{0xebe,4},{0x12b4,3}}, + {{0xed1,4},{0xffc,3}}, {{0xe11,1},{0x141a,2}}, {{0x142d4,6},{0xe0d,2}}, {{0xb69d,3},{0xfcb,2}}, + {{0x113c,5},{0x2c6a,5}}, {{0xce96,4},{0xed6,2}}, {{0x4,1},{0x3,1}}, {{0xd3af,8},{0xe11,1}}, + {{0x88f5,11},{0xe11,1}}, {{0x113c,3},{0xcce,3}}, {{0xe6f,3},{0xe2b,2}}, {{0x3a29,4},{0xf86,3}}, + {{0xbccd,4},{0x11d2,3}}, {{0xee7f,6},{0xec6,3}}, {{0x2b46,4},{0x14ab,3}}, {{0xb535,5},{0x1c1e,4}}, + {{0xeba9,6},{0xfb8,3}}, {{0x1f7f,5},{0x146d,9}}, {{0x2675d,2},{0xe0f,1}}, {{0x29cf,3},{0x442d,1}}, + {{0xfe3,4},{0x1bf18,5}}, {{0xe11,2},{0xa1e1,4}}, {{0xb,1},{0x56e7,5}}, {{0x1252e,4},{0x2917,4}}, + {{0xeab,2},{0xead,5}}, {{0x1f5a6,5},{0xf69,3}}, {{0x5bf5,9},{0x128c,4}}, {{0x4c37,6},{0x5dd0,6}}, + {{0x4979,6},{0x1663,3}}, {{0xaec9,5},{0x1064,3}}, {{0xabf9,5},{0xabfe,7}}, {{0x1c91,6},{0xf7a,2}}, + {{0x1165f,5},{0x3bed,3}}, {{0x1e53,7},{0x1b4f,5}}, {{0x179d6,7},{0x1d06,3}}, {{0x12fd,3},{0x8,1}}, + {{0x125d,6},{0x5342,3}}, {{0x2ba2,3},{0xe5e,2}}, {{0x7414,3},{0x8,1}}, {{0x28b31,3},{0x28b3a,1}}, + {{0x12092,6},{0x1085,3}}, {{0x70fb,5},{0x277e,2}}, {{0x591d,5},{0xe67,8}}, {{0x488b,4},{0x6,1}}, + {{0x16a7,11},{0xfdf,4}}, {{0x12d4,5},{0x59b4,3}}, {{0x79c5,4},{0x320c,4}}, {{0xaaf,2},{0x1347,4}}, + {{0xed35,5},{0x15af,3}}, {{0x56c7,5},{0x168f,5}}, {{0x3bbf,8},{0xec3,3}}, {{0x4853,3},{0xac0d,4}}, + {{0x5749,6},{0xc8f7,5}}, {{0xf1a,2},{0x1b69,3}}, {{0x29c0,4},{0x7bab,6}}, {{0x554e,7},{0x158e,2}}, + {{0x12e5,3},{0xd15f,3}}, {{0x6dfe,3},{0x8128,5}}, {{0x201d0,5},{0xdd0a,3}}, {{0xe83,5},{0xa35e,6}}, + {{0x64ff,10},{0xe77,3}}, {{0x1bd,2},{0x7b,1}}, {{0xe1f,3},{0x1380,5}}, {{0xe83,3},{0x27e43,4}}, + {{0xcbd,1},{0xe92,3}}, {{0x1807,6},{0x4132,5}}, {{0x2406b,5},{0xf91,3}}, {{0x29ea,3},{0xcce,2}}, + {{0x239c,7},{0xcc9,2}}, {{0x1977,4},{0x7b2f,5}}, {{0xe83,3},{0x178a,3}}, {{0x46af,3},{0x29e3,4}}, + {{0xb3f1,3},{0x6,1}}, {{0xea96,5},{0x2246,5}}, {{0x496c,6},{0x128c,4}}, {{0x26193,7},{0xe11,1}}, + {{0x2df3b,4},{0x567,2}}, {{0xebe,5},{0x98a2,7}}, {{0x1bb0,6},{0xf7a,2}}, {{0xd3d0,8},{0xf3a,3}}, + {{0xc9ac,5},{0xfe8,2}}, {{0x1997,5},{0x101f,3}}, {{0x14f7,5},{0xec3,3}}, {{0xf65,4},{0xcd3,3}}, + {{0x1b30,4},{0x1b34,4}}, {{0xe3d,4},{0x2afe0,2}}, {{0x70ad,3},{0x2c484,3}}, {{0x2b0a8,6},{0x2b4fe,2}}, + {{0x187c8,6},{0xfdd,4}}, {{0x16a7,3},{0x88fb,5}}, {{0x105f,3},{0x7f5f,6}}, {{0x8481,8},{0xcc9,2}}, + {{0x442d,1},{0x2252,3}}, {{0xf0a,3},{0x288b,2}}, {{0xcedf,7},{0x2dd7,4}}, {{0x9da1,5},{0x1571,4}}, + {{0x7e15,11},{0xe11,1}}, {{0xeb4,2},{0xf79,3}}, {{0xcc7,1},{0xe5e,2}}, {{0x229a,7},{0x5e93,6}}, + {{0x10868,8},{0xe6b,3}}, {{0xec6,3},{0xe0d,2}}, {{0x1567,6},{0xe95,2}}, {{0x48a9,3},{0x1b4f,7}}, + {{0x10b4,5},{0x188c,4}}, {{0xbba1,4},{0xcbf,2}}, {{0x12e3e,7},{0xec6,3}}, {{0x5903,5},{0x104c,2}}, + {{0x11e33,7},{0xe11,1}}, {{0xefa,4},{0xe0a,1}}, {{0x328f,9},{0xe11,1}}, {{0x7e2d,7},{0xe95,2}}, + {{0x1747,5},{0xe6c,3}}, {{0x14932,6},{0x2dd7,4}}, {{0xefdf,6},{0xe6b,3}}, {{0x17b48,5},{0x6,1}}, + {{0x1839,3},{0xe11,1}}, {{0x13a7,5},{0x4a4e,8}}, {{0xf1a,2},{0xcd3,2}}, {{0x13a7,7},{0xc3d0,3}}, + {{0x5,2},{0x9,1}}, {{0x1ff7,3},{0xe77,2}}, {{0x457b,5},{0xe6b,3}}, {{0x101b4,7},{0xec6,3}}, + {{0xe11,1},{0xf91,3}}, {{0xcc1,2},{0x1314f,3}}, {{0x29cf,3},{0xf18,2}}, {{0xe7f,2},{0xccd,1}}, + {{0x1e26,6},{0x1790,6}}, {{0x2bb4,2},{0xcce,2}}, {{0x8ccd,6},{0xe0b,4}}, {{0x4781,3},{0xe22,3}}, + {{0x1e08,9},{0xec6,3}}, {{0x2afb6,4},{0x468,2}}, {{0xc36,2},{0x308a3,2}}, {{0xe0f9,3},{0xcd3,1}}, + {{0x1927,4},{0x2e29,3}}, {{0x7e83,5},{0xf59,2}}, {{0x2015,6},{0x146d,9}}, {{0x12d4,3},{0xe0a,1}}, + {{0x67ca,10},{0x18b4,3}}, {{0x1571,4},{0x1152,3}}, {{0x712f,4},{0x94b5,3}}, {{0x18ecc,2},{0x2afc6,2}}, + {{0xbf49,7},{0xbf50,5}}, {{0x179c2,6},{0x1040,3}}, {{0x5269,6},{0xec6,3}}, {{0x1367,3},{0x10f4,4}}, + {{0x29f7,3},{0x4,1}}, {{0xe1a6,6},{0xe1ac,5}}, {{0x1f5c1,6},{0xe0a,1}}, {{0x3f5b,9},{0xec6,3}}, + {{0x111a,3},{0x3976,3}}, {{0xed9,2},{0xcc3,3}}, {{0xcd3,2},{0x1b4f,5}}, {{0x113c,3},{0x1ae7f,4}}, + {{0x1f38,1},{0x1ea3,3}}, {{0xe6f,3},{0x1ca18,4}}, {{0x33fb,5},{0xeb5,2}}, {{0x2be3,5},{0x22bd,3}}, + {{0xf1a,2},{0x5669,3}}, {{0x9219,5},{0x239e,5}}, {{0xb37c,3},{0xcc9,2}}, {{0x2de81,4},{0x8d,1}}, + {{0xe99,1},{0x1095,3}}, {{0x115a,4},{0x7978,5}}, {{0x18f7,4},{0x12a3,3}}, {{0xe5b,3},{0x5342,3}}, + {{0x26e1,8},{0x1440,7}}, {{0xfb0,2},{0xe86,2}}, {{0x10a3,3},{0x4385,3}}, {{0x20f6,10},{0xcc9,2}}, + {{0x29cf,3},{0x1eaba,6}}, {{0x3559,4},{0xc01d,4}}, {{0x14dba,6},{0xcc3,3}}, {{0x1577,4},{0x331f,3}}, + {{0xe5e,2},{0xe80,2}}, {{0x824d,5},{0x4aef,3}}, {{0x233f,8},{0x3b49,6}}, {{0x92d9,7},{0x1663,3}}, + {{0xf16,2},{0x142d,3}}, {{0x13a7,7},{0x2bae,2}}, {{0x1007,7},{0x6894,6}}, {{0xabf9,5},{0xabfe,6}}, + {{0x11557,7},{0xec3,3}}, {{0x7d61,8},{0xe11,1}}, {{0x17ab2,6},{0x1e8b,4}}, {{0xcbd,1},{0x2dd7,4}}, + {{0xf4f,1},{0x2d11,3}}, {{0xe563,5},{0x139ab,5}}, {{0xfcb,2},{0xfb0,2}}, {{0xfe3,5},{0xe11,2}}, + {{0x146ee,5},{0x2269,4}}, {{0x1087e,5},{0xf35,3}}, {{0x40d5,6},{0x167f,8}}, {{0x1677,4},{0xe65,2}}, + {{0x1019,4},{0x6,1}}, {{0x105f,3},{0xe1c,3}}, {{0x30f9,7},{0xf84,5}}, {{0x1b371,6},{0xec6,3}}, + {{0xcc8,1},{0x44ad,3}}, {{0x1487,4},{0xe0a,1}}, {{0xe08,1},{0x1303,3}}, {{0x201d9,7},{0x6,1}}, + {{0x8811,7},{0x14ab,4}}, {{0x724d,6},{0xfb8,3}}, {{0x10a3,3},{0xcddd,5}}, {{0x8235,7},{0x6034,5}}, + {{0xc281,4},{0xe47,2}}, {{0xcc7,1},{0x1303,3}}, {{0x496c,5},{0xf86,3}}, {{0x11179,5},{0x1117e,6}}, + {{0x2bab,2},{0x2bad,4}}, {{0xf65,4},{0x2,1}}, {{0x393b,5},{0x3940,4}}, {{0xc36,16},{0xc36,16}}, + {{0x5269,6},{0xd6ee,5}}, {{0x1bdfd,7},{0xe95,2}}, {{0xf302,7},{0xcc9,2}}, {{0x113e,3},{0xf7a,2}}, + {{0x28b33,1},{0x307bb,1}}, {{0x2df3b,4},{0x21,1}}, {{0x175c,3},{0x6cb4,3}}, {{0x3b5d,9},{0xeed,4}}, + {{0x1567,6},{0x4f55,4}}, {{0x18f9,2},{0x17c0,2}}, {{0x2ba5,1},{0xe0b,2}}, {{0x15af,3},{0x13e4,3}}, + {{0x19b7,3},{0x4458,2}}, {{0x27ef,4},{0x6ca7,3}}, {{0x1f00f,5},{0xf86,2}}, {{0x206,2},{0x21,1}}, + {{0x74f1,4},{0xe99,1}}, {{0x2a94,4},{0x101f,3}}, {{0x18d7,9},{0xcc9,2}}, {{0xe32,1},{0x6008,3}}, + {{0x1e84a,6},{0xf91,3}}, {{0xccd,1},{0x344b,4}}, {{0x14806,5},{0x11c77,4}}, {{0xb145,7},{0x12be,5}}, + {{0xeacd,5},{0x310f,4}}, {{0x118b3,5},{0x4665,4}}, {{0xcc98,6},{0x2352,5}}, {{0x17d7,8},{0x34d7,4}}, + {{0x4aff,6},{0xbd1a,4}}, {{0xe6f,3},{0x1efee,3}}, {{0xbfcd,5},{0x1f107,4}}, {{0x1cfa,5},{0x4971,8}}, + {{0x20f6,5},{0x6cc8,3}}, {{0x4e60,2},{0xed6,2}}, {{0xcc8,1},{0xe09,2}}, {{0x10e2a,4},{0xcd3,2}}, + {{0x111a,3},{0x219f4,5}}, {{0x5e58,6},{0x13178,3}}, {{0x1ebc,5},{0xfb0,2}}, {{0x6c1b,7},{0xcce,2}}, + {{0x2a47,3},{0x2ba5,1}}, {{0x12c3,4},{0x3,1}}, {{0x473d,3},{0x27e9,3}}, {{0x3591,6},{0x6,1}}, + {{0x691c,6},{0x22d9,7}}, {{0x26183,5},{0xe22,2}}, {{0x29fc,5},{0x1fcf,5}}, {{0xe0a,1},{0x1189,3}}, + {{0x72d1,2},{0xe7f,2}}, {{0xf0c,1},{0x29a30,2}}, {{0xeca,3},{0xeed,4}}, {{0x3be9,5},{0x240b,5}}, + {{0x113c,3},{0xeb4,3}}, {{0x1567,3},{0x1fbe,3}}, {{0x15738,5},{0xfe8,2}}, {{0x478f,3},{0xe1c,3}}, + {{0xe2b,2},{0x10342,4}}, {{0x12f6,4},{0xf24,2}}, {{0xc1d1,4},{0x9a6,1}}, {{0x12d4,3},{0x1153,2}}, + {{0x235db,5},{0xed6,2}}, {{0x1219,6},{0xeee,3}}, {{0x73ef,2},{0xde07,3}}, {{0x2a94,4},{0xcd3,2}}, + {{0xf77,3},{0x17cd,4}}, {{0x10dd2,6},{0xcc3,3}}, {{0x2213,5},{0x63cf,5}}, {{0xcc1,1},{0xcd3,2}}, + {{0x1ff1b,5},{0xec6,3}}, {{0xebe,4},{0x9925,5}}, {{0x1569,2},{0xe69,5}}, {{0xcd3,1},{0x128c,4}}, + {{0x8835,5},{0x883a,4}}, {{0xe,1},{0x666,2}}, {{0x760f,6},{0x13345,3}}, {{0xf0c,1},{0xe2f,1}}, + {{0xe97,3},{0x1303,3}}, {{0x4767,1},{0xe2b,2}}, {{0xf35,2},{0x1025,1}}, {{0xc081,6},{0xcbd,1}}, + {{0x4b11,5},{0xe11,1}}, {{0x12c3,4},{0x1088,4}}, {{0x1c91,4},{0xe623,6}}, {{0x1417,8},{0x141f,4}}, + {{0x9a6,1},{0xcc1,1}}, {{0x2aa1,9},{0x10f2,6}}, {{0x8ccd,6},{0xed9,2}}, {{0xe32,1},{0xcce,2}}, + {{0x75db,8},{0x75e3,5}}, {{0x15a58,6},{0x2477,3}}, {{0xe25,2},{0x8,1}}, {{0x1bbf,5},{0x2,1}}, + {{0xcbf,2},{0x189b,4}}, {{0x12c3,5},{0x7d81,4}}, {{0x2a47,3},{0x4,1}}, {{0x1d3a7,8},{0xe11,1}}, + {{0x11fab,3},{0x142a,3}}, {{0x26ff,8},{0x6a90,5}}, {{0x2240,4},{0x3,1}}, {{0x127f,4},{0x4317,5}}, + {{0x205a1,1},{0x28b33,1}}, {{0x180e,3},{0x41e9,4}}, {{0xe0b,2},{0xcd3,1}}, {{0x13e4c,6},{0x34d7,4}}, + {{0x5536,4},{0xec6,3}}, {{0x48a7,5},{0x1288,4}}, {{0x1eb47,5},{0x1001,3}}, {{0x7158,2},{0xe30,3}}, + {{0xe5b,3},{0x344b,4}}, {{0x12d4,3},{0x11186,2}}, {{0x20559,2},{0x20559,2}}, {{0x1817,7},{0x146d,9}}, + {{0x2966,4},{0xe22,2}}, {{0x4765,3},{0x155b,3}}, {{0xe1f,3},{0xe16,1}}, {{0xd428,8},{0xe6b,3}}, + {{0x115a,3},{0xe69,5}}, {{0xf77,3},{0xc6dc,5}}, {{0x478f,3},{0x13e02,4}}, {{0x19b9,1},{0xe0f,1}}, + {{0x4767,1},{0x2d8d,3}}, {{0xe37,4},{0x78a9,2}}, {{0x479d,4},{0x15692,5}}, {{0xef2,4},{0xcc9,2}}, + {{0xe31,2},{0x20bed,4}}, {{0x8439,5},{0x15fc,3}}, {{0x168f,2},{0xe22,3}}, {{0x1dea,6},{0xe0b,4}}, + {{0xbfc3,3},{0x3be3,3}}, {{0x17acb,2},{0x74fb,3}}, {{0xb69d,3},{0x2966d,4}}, {{0x1019,4},{0xf1f,3}}, + {{0x5d13,8},{0xe11,1}}, {{0xe32,1},{0xe2b,2}}, {{0xcbd,1},{0xe7d,2}}, {{0xe2f,1},{0xe2f,1}}, + {{0x1027a,5},{0xcb8,1}}, {{0x16c96,5},{0x4f55,4}}, {{0x1367,4},{0x6b90,4}}, {{0xf18,2},{0xcc9,2}}, + {{0x4199,5},{0x419e,8}}, {{0x2416,3},{0xe92,3}}, {{0x29c0,3},{0xcd2,2}}, {{0xc560,6},{0x1a71,4}}, + {{0x1877,5},{0xf1a,2}}, {{0xf70,2},{0x1054,3}}, {{0x29cf,3},{0xf0d,2}}, {{0xe08,1},{0x1601,3}}, + {{0x46bd,3},{0x123e,3}}, {{0x74f3,2},{0x1e2f0,2}}, {{0x17394,7},{0xec6,3}}, {{0xe83,3},{0x59b4,3}}, + {{0x5edd,3},{0xe0d,2}}, {{0xf77,4},{0x583b,5}}, {{0xcc1,2},{0x5fa5,5}}, {{0x112b,6},{0x8a87,6}}, + {{0x4ef5,4},{0x22a2,7}}, {{0x29fc,5},{0x153a,3}}, {{0xcc1,1},{0x2f41,5}}, {{0x2e280,3},{0x2e292,1}}, + {{0x3a53,4},{0x5e94,5}}, {{0xb595,5},{0x583a,3}}, {{0xf86,2},{0x10f5,3}}, {{0x2489,7},{0x249f,3}}, + {{0x2cbe5,4},{0xe0f,1}}, {{0x10c5,4},{0x1153,3}}, {{0x3a29,4},{0x14863,3}}, {{0x2f71,4},{0x1a71,3}}, + {{0x1152,3},{0x2b89,3}}, {{0x32ab,6},{0xccd,4}}, {{0x1787,6},{0xec6,3}}, {{0x1153,2},{0xe5e,2}}, + {{0x1f25,7},{0x2560,4}}, {{0x33a7,5},{0x120b,4}}, {{0xe1f,3},{0xe08,1}}, {{0x77a2,9},{0x1592,4}}, + {{0x824d,7},{0xfdd,4}}, {{0x9a8,1},{0x22bfe,5}}, {{0xe7f,2},{0x9,1}}, {{0x6241,9},{0xfdf,4}}, + {{0xbb4,2},{0x2b4f2,2}}, {{0x11ec2,5},{0x6,1}}, {{0x2c21,4},{0xe0b,4}}, {{0xf0f,2},{0xebb,3}}, + {{0x29cf,3},{0x1062,2}}, {{0x1b5a8,6},{0xec6,3}}, {{0x12e5,3},{0x155b,3}}, {{0x180a,3},{0x73d6,2}}, + {{0x48d2,4},{0x48d6,2}}, {{0x77f0,4},{0xfa5,3}}, {{0x22323,5},{0xf3a,3}}, {{0x11e12,5},{0x4aef,3}}, + {{0x18ecc,2},{0xe4d,2}}, {{0x314,2},{0x302,2}}, {{0xb3cd,6},{0x1db3,4}}, {{0x29cf,3},{0x4538,3}}, + {{0x12d4,3},{0xe22,2}}, {{0xe21,1},{0x10d9,2}}, {{0xf65,4},{0x2cd5,10}}, {{0x355b,3},{0xed9,2}}, + {{0x3e0b,7},{0xcc9,2}}, {{0xf16,2},{0xcd3,1}}, {{0x12e5,3},{0x288b,2}}, {{0x1f38,1},{0x2,1}}, + {{0x9201,5},{0x1258,5}}, {{0x16a7,4},{0xdd0a,3}}, {{0xef7,3},{0x4cbc,5}}, {{0x15e7,5},{0x3593,4}}, + {{0x11da4,7},{0x11dab,4}}, {{0x16cfa,6},{0xcce,2}}, {{0xad6d,4},{0x9a9,2}}, {{0x29c0,3},{0x12f82,4}}, + {{0x29c0,3},{0x1025,1}}, {{0x15fc6,7},{0xcc9,2}}, {{0x3957,8},{0x1fc7,3}}, {{0x70ad,3},{0xe09,1}}, + {{0x127ea,5},{0xf91,3}}, {{0x773a,7},{0xfa6,3}}, {{0x5e3e,5},{0xcc7,1}}, {{0x6644,6},{0x6657,7}}, + {{0x130be,6},{0x15fe,4}}, {{0x1efbe,5},{0xe80,2}}, {{0x129de,6},{0x3075,3}}, {{0x1787,6},{0x7efc,4}}, + {{0x127f,3},{0x188a,4}}, {{0x450b,4},{0x19f7d,5}}, {{0x113c,3},{0xeb5,2}}, {{0x1252e,4},{0x5b48,4}}, + {{0x11a6,3},{0xe0d,2}}, {{0xe0c,2},{0x1593,3}}, {{0x105f,3},{0xcc3,2}}, {{0x5722,5},{0xe1b,4}}, + {{0x41d1,7},{0xfa5,2}}, {{0x2015,3},{0x27544,4}}, {{0x15f7,6},{0x95d3,6}}, {{0x288b,2},{0xe67,2}}, + {{0xe25,2},{0xed9,2}}, {{0x5d15,6},{0x1059,3}}, {{0x46bf,1},{0x11b5,2}}, {{0x22b8,4},{0x14c6c,4}}, + {{0x155b,3},{0xec6,3}}, {{0x1285,3},{0xe31,2}}, {{0x129a2,5},{0x12bf,4}}, {{0x569a,3},{0xf86,2}}, + {{0xf0a,3},{0xe08,1}}, {{0x13fdc,5},{0xcc7,1}}, {{0x2e32,3},{0xe11,1}}, {{0xfb8,3},{0x6,1}}, + {{0x260e9,2},{0x4767,1}}, {{0x417d,5},{0xcc3,2}}, {{0x170ba,5},{0x3940,4}}, {{0x1967,3},{0xe0d,2}}, + {{0xef7,5},{0x8b3d,4}}, {{0x1d3c,3},{0x4,1}}, {{0x5ee7,8},{0x1380,5}}, {{0x1f366,5},{0xec5,4}}, + {{0x19b7,3},{0x2d3bc,2}}, {{0x1fbb,10},{0xfdd,4}}, {{0x4765,3},{0xf0c,1}}, {{0x11daf,6},{0x8344,5}}, + {{0x9a9,2},{0x1a99,5}}, {{0x4e4c,7},{0x18b4,3}}, {{0xaaf,2},{0x30853,2}}, {{0x18b60,6},{0xe11,1}}, + {{0xe8a,2},{0xe6a,4}}, {{0x314d,6},{0x2236,3}}, {{0x9351,5},{0x4a36,6}}, {{0xf37b,6},{0xe1fa,4}}, + {{0x3dd3,6},{0x3b4a,5}}, {{0x4775,2},{0x4833,4}}, {{0xcc9,2},{0x6,1}}, {{0x2e870,3},{0x7905,1}}, + {{0x1467,4},{0x1153,2}}, {{0xcc7,1},{0x5342,3}}, {{0x13dfc,5},{0x4b12,4}}, {{0x2a47,3},{0x10cb,4}}, + {{0x1827,5},{0xec6,3}}, {{0xf70,2},{0xe67,2}}, {{0xe89,2},{0xe0d,2}}, {{0xb199,5},{0xe1b,4}}, + {{0x116af,6},{0xb426,2}}, {{0x11fbf,5},{0x4aef,3}}, {{0x27c2,6},{0x146d,9}}, {{0xb97c,2},{0x2,1}}, + {{0x1cb1,3},{0xed6,2}}, {{0x236c,4},{0x2146,3}}, {{0x1c91,6},{0xe69,5}}, {{0xe83,5},{0xcc7,1}}, + {{0x27e0,3},{0x70f8,3}}, {{0x3b09,4},{0x44a4,4}}, {{0x4767,1},{0x7a14,4}}, {{0x25e2,9},{0xe69,5}}, + {{0x19b7,3},{0x22fb8,3}}, {{0x4be9,5},{0x331f,4}}, {{0x12d4,3},{0x11284,5}}, {{0x16a7,3},{0x1b6d,4}}, + {{0xe32,1},{0xcbf,2}}, {{0x205a1,1},{0x2e273,1}}, {{0x19c7,6},{0x5bb9,4}}, {{0xbc31,5},{0x188c,4}}, + {{0x2e235,4},{0x7b,1}}, {{0x116ac,5},{0xcc7,1}}, {{0xb5dd,5},{0x4c99,6}}, {{0x1024,2},{0x148a,3}}, + {{0x1d641,5},{0x1b41,4}}, {{0x1062,2},{0x14a2,5}}, {{0x1c73,5},{0x1bf6,5}}, {{0x2948,3},{0x1db3a,2}}, + {{0x2f47,5},{0x44b3,4}}, {{0x1edf3,5},{0xed5,3}}, {{0x4767,4},{0x1054,3}}, {{0xcc9,2},{0xf04,2}}, + {{0x4599,2},{0x59b4,3}}, {{0x2e27d,1},{0x2e27e,2}}, {{0x1cfa,5},{0xcbe,3}}, {{0x1153,2},{0xe67,2}}, + {{0x111a,3},{0x7950,3}}, {{0x16f7,6},{0x5b06,5}}, {{0xe5b,3},{0x4bec,10}}, {{0xeb4,2},{0xe89,2}}, + {{0x7414,3},{0xfcb,2}}, {{0x1fa80,6},{0x6,1}}, {{0x7a79,6},{0x1722,5}}, {{0x36a9,8},{0x1230,3}}, + {{0x3097,7},{0x1177,7}}, {{0x2e32,3},{0xe0d,2}}, {{0x1467,5},{0x12eb1,5}}, {{0x142d4,6},{0xec6,3}}, + {{0x5124,7},{0x2514,4}}, {{0x6644,6},{0x6411,4}}, {{0xb,1},{0xf35,2}}, {{0x9a8,1},{0xe7d,6}}, + {{0x2b88,4},{0x6,1}}, {{0x27e0,3},{0x145b,2}}, {{0xf59,2},{0x1bf0,2}}, {{0x2a81f,5},{0xe22,2}}, + {{0x8c55,8},{0xec6,3}}, {{0x578a,6},{0x775c,4}}, {{0x101f,2},{0xf35,3}}, {{0x4ee8,7},{0x4eef,6}}, + {{0x712f,4},{0x305a,5}}, {{0xf0c,1},{0x7d80,5}}, {{0x119d1,6},{0x6813,5}}, {{0xefa,3},{0x3abf,4}}, + {{0x237d,2},{0x1e40,4}}, {{0x27e0,3},{0xed6,2}}, {{0x25e2,9},{0xec6,3}}, {{0xf89,3},{0x41cb,6}}, + {{0xfa5,2},{0x2f41,6}}, {{0x2e269,2},{0x28b33,1}}, {{0x1e30d,5},{0x1b9d,4}}, {{0x1427,5},{0x143c,4}}, + {{0x478f,3},{0x1c0f,3}}, {{0x12092,6},{0x6,1}}, {{0xcd1,2},{0x61bb,4}}, {{0xe11,2},{0x163b,5}}, + {{0x1da94,6},{0xe95,2}}, {{0x182c8,7},{0xed6,2}}, {{0x18ee,3},{0xd0a9,4}}, {{0x122d,2},{0xed5,3}}, + {{0xf11,1},{0x3da2,7}}, {{0x1062,2},{0xed6,2}}, {{0xc371,5},{0xfe0,3}}, {{0x10b4,6},{0x1288,4}}, + {{0x17e7,7},{0xfd38,4}}, {{0xebbf,6},{0x11d2,3}}, {{0xb319,8},{0xe11,1}}, {{0x2a56,4},{0xf261,3}}, + {{0xf77,3},{0x2c3b,5}}, {{0x479d,4},{0x143c,4}}, {{0x21,1},{0x152,2}}, {{0x12d4,3},{0x2d4ed,2}}, + {{0x11373,4},{0x11382,7}}, {{0x111a,3},{0x27521,4}}, {{0x122f,3},{0x14f9,3}}, {{0xf70,2},{0xe0b,4}}, + {{0x1847,5},{0x142d,3}}, {{0x2fc18,3},{0xab1,1}}, {{0xa509,7},{0x809a,3}}, {{0x4169,4},{0xe67,2}}, + {{0x113c,5},{0x5782,6}}, {{0x450b,4},{0xcb7,2}}, {{0xeb5,2},{0x14f0,7}}, {{0x15774,6},{0x6cff,4}}, + {{0xfdf,3},{0xe67,2}}, {{0x13014,7},{0xfb8,3}}, {{0x1569,2},{0x8428,3}}, {{0x292a,8},{0x305a,5}}, + {{0x11d9,3},{0xf85,4}}, {{0x2dbf,5},{0x19918,4}}, {{0x29de,4},{0xeab,2}}, {{0x6ee6,5},{0x10cb,2}}, + {{0x74ca,5},{0x5d66,8}}, {{0x1019,4},{0x11b5,2}}, {{0x10d9,2},{0xed9,2}}, {{0x1e53,7},{0x4fb3,5}}, + {{0xb8c5,8},{0xe0a,1}}, {{0x3be9,5},{0x566f,4}}, {{0x1e11e,5},{0x130e1,4}}, {{0x11a6,3},{0xe11,1}}, + {{0x9555,9},{0xf91,3}}, {{0x2,1},{0x6,1}}, {{0x7156,4},{0x6008,3}}, {{0x7a01,9},{0xe0a,1}}, + {{0x113c,3},{0x2d8d,3}}, {{0xe11,1},{0xeb5,2}}, {{0xccb,2},{0xe78,1}}, {{0x46bf,1},{0xcc3,2}}, + {{0x25b73,5},{0xe1b,3}}, {{0x19817,6},{0xf7a,2}}, {{0x27e0,3},{0x2f2e,3}}, {{0xe71,1},{0x309c,4}}, + {{0xed6,2},{0x1001,3}}, {{0x7f41,4},{0x12a46,6}}, {{0x4853,3},{0x6fe1,3}}, {{0x19b9,1},{0xe19,1}}, + {{0x8,2},{0xcd3,1}}, {{0x12f1a,6},{0x1ac7,3}}, {{0xe88,3},{0xf03,2}}, {{0x6d94,8},{0xeed,4}}, + {{0x25403,5},{0x17c0,2}}, {{0x11003,7},{0xe6b,3}}, {{0x7423,2},{0xcd3,2}}, {{0x16a7,3},{0x4b62,5}}, + {{0x7bbd,7},{0x1392,3}}, {{0x30633,1},{0x30633,1}}, {{0x1230,3},{0x9,1}}, {{0x1837,9},{0xe67,7}}, + {{0x10c5,4},{0x4aee,3}}, {{0x18d7,9},{0xeb7,7}}, {{0xcbd,1},{0x148db,4}}, {{0xf0c,1},{0x50ce,5}}, + {{0x28d0,4},{0x23b4f,4}}, {{0x141f,4},{0xe22,2}}, {{0x16a9,4},{0xcc9,2}}, {{0x48a7,5},{0xec6,3}}, + {{0x1977,3},{0x1057,1}}, {{0x1bec,5},{0x2e28,3}}, {{0xcbd,1},{0xe2b,2}}, {{0x6,1},{0x1d74,3}}, + {{0x17f58,6},{0x1b9d,4}}, {{0x115e,5},{0x14a81,4}}, {{0xf15,1},{0x2f41,5}}, {{0x12f6,4},{0x120f,3}}, + {{0x5430,6},{0x3976,3}}, {{0xe19,1},{0xccd,1}}, {{0x73e0,4},{0xe09,1}}, {{0x6cde,4},{0x7f90,5}}, + {{0x11788,4},{0x3c88,3}}, {{0x1947,6},{0x1044,4}}, {{0x3559,7},{0x11b5,2}}, {{0x1133c,5},{0x948d,3}}, + {{0x6393,8},{0xed9,2}}, {{0xc36,2},{0x78a9,2}}, {{0x27f3c,5},{0xf63,2}}, {{0xf32,2},{0x6,2}}, + {{0x1657,6},{0x1ac7,3}}, {{0x1d72,10},{0xe0b,4}}, {{0x62ed,4},{0xe0a,1}}, {{0xb3f1,3},{0xe2b,2}}, + {{0x478f,3},{0x27e9,3}}, {{0xe7a,1},{0x4963,4}}, {{0xe7a,1},{0x4,1}}, {{0x4af9,5},{0xe0a,1}}, + {{0xe21,1},{0x442d,1}}, {{0x4765,3},{0xbbfc,5}}, {{0x116d8,5},{0x2b89,3}}, {{0x591d,5},{0xed9,2}}, + {{0xe1f,3},{0x2c3b,5}}, {{0x4765,3},{0x12a3,3}}, {{0x2759,6},{0x5dd0,3}}, {{0x127d6,7},{0xcc9,2}}, + {{0xaed5,9},{0x14a2,3}}, {{0x7eed,5},{0x1059,3}}, {{0xb69d,3},{0x23987,4}}, {{0xed6,2},{0xf86,2}}, + {{0x1687,4},{0x11b5,2}}, {{0xb8dd,5},{0xe2b,4}}, {{0x8505,8},{0x1059,3}}, {{0x1927,5},{0xcc1,1}}, + {{0xb3d9,6},{0xe11,1}}, {{0xe33,1},{0x445b,2}}, {{0xd,2},{0x69,1}}, {{0x58a8,5},{0xf91,3}}, + {{0x6eac,3},{0x127c,3}}, {{0x3409,6},{0xf7a,2}}, {{0x1bd,2},{0x8d,1}}, {{0xe71,1},{0x1fc7,3}}, + {{0xe71,1},{0xe2b,2}}, {{0x2a47,3},{0xc297,3}}, {{0xccd,1},{0xf79,3}}, {{0x9b9d,6},{0xec8b,5}}, + {{0x1d69b,5},{0xe5e,2}}, {{0x10a3,5},{0x10a8,5}}, {{0x62c3,11},{0xe95,2}}, {{0x1081,7},{0x4b61,6}}, + {{0x4767,1},{0x1461f,4}}, {{0x22b8,6},{0xfdf,4}}, {{0x48da,2},{0x1766b,2}}, {{0xb8dd,6},{0x3a91,3}}, + {{0x5,1},{0x2476,4}}, {{0x45a5,5},{0x13ee,7}}, {{0x111a,3},{0x121c,3}}, {{0x46af,3},{0xcbd,1}}, + {{0x4f1c,5},{0x5989,2}}, {{0x4853,3},{0x1805e,2}}, {{0x10c46,6},{0x16ad,5}}, {{0x46af,3},{0xe92,3}}, + {{0xf18,2},{0xed6,2}}, {{0x4765,3},{0x11a6,3}}, {{0x2533b,5},{0x1fc7,3}}, {{0xe32,1},{0xfdf,3}}, + {{0x1467,4},{0x178a,3}}, {{0x1312c,6},{0xcb9,4}}, {{0x1191,8},{0x3801,6}}, {{0x4dbd,10},{0xf91,3}}, + {{0x824d,5},{0xcdf2,5}}, {{0x465b,4},{0x17bce,6}}, {{0x20f6,5},{0x7d98,4}}, {{0xb3f1,3},{0x4187,3}}, + {{0x1a66,1},{0x27e9,3}}, {{0x1d69b,5},{0x3075,3}}, {{0x713c,5},{0x2dd7,4}}, {{0xae5d,7},{0x2e28,4}}, + {{0x2bf1,6},{0x6452,4}}, {{0x1ca5,5},{0xfc7,3}}, {{0xe80,2},{0x2239,4}}, {{0x2e32,3},{0xcc9,2}}, + {{0x2f71,4},{0xe1c,3}}, {{0x7414,3},{0x1fbe,3}}, {{0xecd2,6},{0x1040,3}}, {{0xe1c,3},{0x6,1}}, + {{0xf77,3},{0xf24,2}}, {{0x1f16,5},{0x2651,7}}, {{0x1007,6},{0x3385,6}}, {{0xcc8,1},{0x4,1}}, + {{0x46af,3},{0xf59,2}}, {{0xf9b,5},{0x6b2b,6}}, {{0x478f,3},{0x6,1}}, {{0xcb8,1},{0x5,1}}, + {{0x58a8,5},{0x2c5b,4}}, {{0x1927,4},{0xfcb,3}}, {{0x9bd1,3},{0xe0a,1}}, {{0x1bbf,4},{0xf8e,5}}, + {{0x1f07,4},{0xe6b,2}}, {{0xc040,2},{0xec6,3}}, {{0x4615,5},{0xcc7,1}}, {{0x79f5,5},{0x13e4,3}}, + {{0x1ff7,3},{0xcc8,1}}, {{0xcd3,1},{0x10e2,5}}, {{0xbaa5,7},{0x10f2,5}}, {{0xa659,5},{0x2c15,3}}, + {{0x595e,6},{0xed6,2}}, {{0x11373,4},{0x2ba5,1}}, {{0xed1,5},{0x4ce6,7}}, {{0x1967,3},{0xe78,1}}, + {{0x486f,4},{0x277e,2}}, {{0xdeba,7},{0x2dd7,4}}, {{0x24f2,5},{0x1418f,5}}, {{0x192da,6},{0xcce,2}}, + {{0x1787,9},{0x1790,3}}, {{0x772d,5},{0xcd3,2}}, {{0x21679,6},{0xe2b,2}}, {{0x1e9e,5},{0x8e22,5}}, + {{0x109,2},{0x21,1}}, {{0x10a3,3},{0x2075,3}}, {{0xedd,1},{0xe2a,3}}, {{0x1766a,2},{0xe99,1}}, + {{0xf0c,2},{0x9a8,2}}, {{0x450b,4},{0x73d6,2}}, {{0x1290,11},{0x1702,4}}, {{0xe97,3},{0x1ba9,3}}, + {{0x31f5,6},{0x2815,7}}, {{0x2cdf,4},{0x1b4f,5}}, {{0xcd3,2},{0x1783,4}}, {{0x4597,5},{0x1dc2,5}}, + {{0x4161,5},{0x100dd,4}}, {{0x10b4,4},{0x286d,3}}, {{0x1677,3},{0x810e,3}}, {{0x3027,9},{0xe75,5}}, + {{0x1c0f,3},{0xe1c,3}}, {{0xe83,3},{0x18ff2,6}}, {{0x12d4,4},{0x73d6,2}}, {{0x2de7b,3},{0xf8,2}}, + {{0xe83,3},{0xb9d1,3}}, {{0x8661,7},{0xcc9,2}}, {{0x1ebc,6},{0x1b4f,5}}, {{0x1ebc,10},{0x1059,3}}, + {{0xe5b,5},{0x1e1b,3}}, {{0x3a53,4},{0xfb0,2}}, {{0x478f,3},{0x1a66,1}}, {{0xcba,3},{0xed6,2}}, + {{0xc9ac,5},{0x12a83,5}}, {{0x1ff7,3},{0x1418f,5}}, {{0x145fe,7},{0x10b7,2}}, {{0x12c3,4},{0x10b9,2}}, + {{0x35a2,4},{0x1de7,3}}, {{0x6644,6},{0xfa9,4}}, {{0x229a,7},{0x413c,6}}, {{0x4c10,6},{0x2940,3}}, + {{0x4dbd,10},{0xec6,3}}, {{0x1667,7},{0xf84,5}}, {{0x1809,3},{0xcc7,1}}, {{0xe7a,1},{0x18776,2}}, + {{0x513e,8},{0x1059,3}}, {{0xe7f,2},{0xf91,3}}, {{0x12e5,3},{0xcce,3}}, {{0xafe9,8},{0xcc9,2}}, + {{0x23e99,2},{0xf0c,1}}, {{0x74f9,5},{0xf0c,1}}, {{0x48d6,2},{0x4767,1}}, {{0x1557,7},{0x155e,9}}, + {{0xe67,2},{0xe0b,4}}, {{0xcbf,2},{0x1fc7,3}}, {{0x29169,5},{0xe67,2}}, {{0x478f,3},{0xbfca,3}}, + {{0x29cf,3},{0x123e,3}}, {{0xe16,1},{0x4767,1}}, {{0x2993,7},{0x431c,5}}, {{0x1557,4},{0x6da6,4}}, + {{0x7d55,7},{0xe11,1}}, {{0x2b0b0,2},{0xbb8,2}}, {{0xcbe8,7},{0x11d2,3}}, {{0x255db,6},{0x8,1}}, + {{0x1cfa,5},{0x27dc,4}}, {{0x1817,4},{0x17c0,2}}, {{0x479f,2},{0x10b9,2}}, {{0x6,1},{0x183a,3}}, + {{0x10d6,5},{0x4132,5}}, {{0xed1,3},{0xf13,2}}, {{0x1cd3,2},{0xe6b,3}}, {{0x27e0,4},{0xcc3,2}}, + {{0xd,2},{0xe,1}}, {{0xcd2,2},{0x2ef8,3}}, {{0x58a8,5},{0xf7a,2}}, {{0x16868,7},{0x1150,2}}, + {{0x478f,3},{0xeb4,3}}, {{0xe5e,2},{0xcc9,2}}, {{0x1997,4},{0x14cec,5}}, {{0x72cf,4},{0x125f1,5}}, + {{0x6,1},{0xe67,2}}, {{0xe27,2},{0x1d74,5}}, {{0xf15,1},{0xcbf,2}}, {{0x1819c,5},{0xe80,2}}, + {{0x25b1b,5},{0xe0d,2}}, {{0x416f,5},{0x101f,2}}, {{0x206,2},{0x7b,1}}, {{0x1ff7,3},{0xec6,3}}, + {{0x12d4,3},{0x59b4,3}}, {{0x1967,3},{0xb850,9}}, {{0x115a,3},{0x1c2a,4}}, {{0x109b,2},{0xe11,1}}, + {{0xfa6,3},{0x1265,5}}, {{0x12d6,3},{0x16e3,4}}, {{0x1827,5},{0xb,1}}, {{0x1a66,1},{0xcd3,2}}, + {{0x1967,3},{0xedd,1}}, {{0xf77,3},{0x2158c,5}}, {{0x46af,3},{0x1969,1}}, {{0xf0c,1},{0xe22,3}}, + {{0xe6f,5},{0xe74,6}}, {{0x4be9,6},{0xec3,3}}, {{0xf4f,1},{0x2f99b,2}}, {{0xc576,6},{0xd886,4}}, + {{0x31e7,8},{0x31ef,5}}, {{0x205a5,1},{0x205a7,1}}, {{0xe09,1},{0x2271,3}}, {{0x5722,5},{0x1417b,5}}, + {{0x1f07,5},{0xfdd,4}}, {{0xe1f,3},{0x113f,2}}, {{0x1e7a8,6},{0xcbd,1}}, {{0x1150,2},{0xcc3,2}}, + {{0x10c5,4},{0x6479,4}}, {{0x1c046,6},{0x1e8b,3}}, {{0x6,2},{0xeb9,5}}, {{0x1789,4},{0xcd3,2}}, + {{0x4781,3},{0xe0a,1}}, {{0x478f,3},{0x2d8d,5}}, {{0x12e5,3},{0xe7d,2}}, {{0xcd2,2},{0x12bf,4}}, + {{0x6533,8},{0xec6,3}}, {{0x11a34,8},{0xe0a,1}}, {{0x74fc,2},{0xf11,1}}, {{0xe2f,1},{0x5884,4}}, + {{0x12d4,3},{0x104a,4}}, {{0xed6,2},{0x156a,3}}, {{0x34a3,5},{0x1832,3}}, {{0xacb9,8},{0xf85,4}}, + {{0x2de7b,3},{0x152,2}}, {{0xf0a,3},{0x1731f,7}}, {{0x12f6,4},{0x1a578,4}}, {{0x127f,3},{0x1c2a,4}}, + {{0xcb8,1},{0xe11,1}}, {{0x1b8db,5},{0xdd0a,3}}, {{0x17c7,10},{0xe69,6}}, {{0xef7,5},{0xeab,2}}, + {{0x712f,4},{0x1ba9,3}}, {{0x4781,3},{0xb,1}}, {{0x34e9,7},{0x2663,5}}, {{0xcbd,1},{0x1b80,3}}, + {{0xc975,6},{0x38ee,5}}, {{0xb025,9},{0xcc9,2}}, {{0x5722,5},{0x1418f,5}}, {{0x75db,5},{0x9,2}}, + {{0x11b3,4},{0xf32,2}}, {{0x1e96c,3},{0x10f4b,4}}, {{0x116ac,5},{0x14e91,5}}, {{0xe32,1},{0xcbd,1}}, + {{0xc015,4},{0x1d7d,3}}, {{0xe7a,2},{0x948b,4}}, {{0xe6f,3},{0x101b7,4}}, {{0x2de63,3},{0x666,2}}, + {{0x1f07,5},{0xcc9,2}}, {{0x50a2,8},{0xe69,5}}, {{0xeb5,2},{0x8,1}}, {{0x2be3,5},{0xe80,2}}, + {{0xe97,3},{0x40d8,3}}, {{0xf65,3},{0xfe8,2}}, {{0x127f,3},{0x7d99,4}}, {{0x4765,3},{0x569a,3}}, + {{0x2f2c5,4},{0xe08,1}}, {{0x6dd5,7},{0xf7a,2}}, {{0x2f2e,3},{0xcc9,2}}, {{0xb3f1,3},{0xf91,3}}, + {{0x5c50,7},{0x249f,3}}, {{0x1cf27,6},{0xe0d,2}}, {{0x19b7,3},{0x12159,2}}, {{0x169b,5},{0x1e8b,3}}, + {{0x15a7,6},{0xf24,2}}, {{0x29154,6},{0xe11,1}}, {{0x2213,8},{0x3324,5}}, {{0x129d4,6},{0xe67,2}}, + {{0x15a1c,7},{0xec6,3}}, {{0x6304,4},{0x8,1}}, {{0x12e7,3},{0x9a8,1}}, {{0x1cfa,5},{0xeee,3}}, + {{0xef7,3},{0x1059,3}}, {{0x133a2,6},{0x138e,2}}, {{0xad19,6},{0xe0a,1}}, {{0x12e5,3},{0x1a66,1}}, + {{0x6f68,8},{0x13e3,4}}, {{0x4e3f,5},{0xcd3,3}}, {{0x45f2,2},{0xe22,2}}, {{0x2582b,6},{0xf35,2}}, + {{0x2015,3},{0x15e6d,3}}, {{0x4599,2},{0xcd3,3}}, {{0x2,2},{0xe60,2}}, {{0xf4f,1},{0x1601,3}}, + {{0x8ccd,6},{0xda48,4}}, {{0xee9,2},{0xf86,3}}, {{0x2991f,4},{0x1a66,1}}, {{0xe83,6},{0x4d85,4}}, + {{0xe2f,1},{0xe21,1}}, {{0x2ba5,1},{0x1569,3}}, {{0x2b0a8,4},{0x2b511,2}}, {{0x12c3,4},{0x10a6,2}}, + {{0x1677,3},{0x5e27,3}}, {{0xe8a,2},{0x1fbe,3}}, {{0x5fc4,5},{0x18b4,3}}, {{0xbc01,4},{0xe5e,2}}, + {{0x7935,5},{0x10e3,4}}, {{0x4f29,6},{0x4d27,7}}, {{0x1967,3},{0x1cd3,2}}, {{0x91f5,5},{0x1d74,3}}, + {{0x3a45,5},{0x1de7,3}}, {{0xfe3,4},{0x1bec7,5}}, {{0x4597,5},{0x13b27,5}}, {{0x4853,3},{0x113f,2}}, + {{0x29cf,3},{0x1085,3}}, {{0x7303,5},{0x3286,3}}, {{0x4edb,8},{0x4ee3,5}}, {{0x1a01b,6},{0xed6,2}}, + {{0x1877,4},{0x2d8d,3}}, {{0x28c1,4},{0x1d74a,5}}, {{0xe83,3},{0x1089,3}}, {{0x684c,8},{0xec6,3}}, + {{0x16bf6,5},{0x158f,3}}, {{0x71be,4},{0x2236,3}}, {{0x115e,5},{0x269f,6}}, {{0x6275,6},{0x1720,7}}, + {{0xb51d,5},{0xe66,2}}, {{0xc17d,5},{0x172d,3}}, {{0x1f38,1},{0xcd3,2}}, {{0x1897,5},{0x189f,3}}, + {{0xccd,1},{0xed9,2}}, {{0x4765,3},{0x81c4,3}}, {{0x3d39,5},{0x17ec,4}}, {{0x8265,7},{0xed6,2}}, + {{0x6cc4,4},{0x38ec,3}}, {{0x18772,2},{0xe21,1}}, {{0x2ba5,1},{0x2c59,4}}, {{0x12e5,3},{0x492e,3}}, + {{0xab1,2},{0xab1,1}}, {{0xf89,3},{0xf0d,2}}, {{0x16a7,3},{0xec3,3}}, {{0x13172,6},{0x13178,3}}, + {{0xf8d,2},{0x10b8,2}}, {{0xd147,5},{0x1a2ba,4}}, {{0xedd,1},{0x237e,5}}, {{0xdf5f,6},{0x1040,3}}, + {{0x4597,6},{0x1131,8}}, {{0x236c,5},{0x1c351,4}}, {{0xe235,7},{0x1059,3}}, {{0xf9b,5},{0x21eb,5}}, + {{0x39d5,7},{0x27dc,4}}, {{0x9519,6},{0x331f,4}}, {{0x1290,11},{0x18b2,5}}, {{0x2f71,4},{0x797a,3}}, + {{0x2777,6},{0x15fe,4}}, {{0x9c69,7},{0x15e9,3}}, {{0x70ad,3},{0xf7a,2}}, {{0x7421,4},{0xe5e,2}}, + {{0x19b7,3},{0xd15f,3}}, {{0x185de,5},{0x1c8b,3}}, {{0x1a17,5},{0xb0a2,7}}, {{0xe11,1},{0x10cb,4}}, + {{0x2a29,8},{0xed9,2}}, {{0x473b,5},{0x2182,7}}, {{0x478f,3},{0xedd,1}}, {{0x27e0,3},{0xe13,3}}, + {{0x29cf,3},{0x4,1}}, {{0x41b5,7},{0xe95,2}}, {{0x29c0,3},{0x15d1,6}}, {{0xefa,4},{0x142d,3}}, + {{0xf24,2},{0xf7a,2}}, {{0xb3f1,3},{0x207f4,5}}, {{0x1ac,2},{0xe,1}}, {{0x1677,3},{0x20fbd,4}}, + {{0x1497,5},{0x1244,7}}, {{0x1727,12},{0xeed,4}}, {{0xe2b,2},{0xe22,2}}, {{0x46af,7},{0x1702,5}}, + {{0x7b51,4},{0x10d2,4}}, {{0xadc1,7},{0x1be9,3}}, {{0x15eb8,6},{0xed6,2}}, {{0xe32,1},{0x1ebf,3}}, + {{0xa1f1,7},{0x1523,4}}, {{0xf4f,1},{0x123e,3}}, {{0x29c0,4},{0xc8f7,4}}, {{0x46af,3},{0xdc6f,4}}, + {{0x2f8d,10},{0xf23,3}}, {{0x1db87,5},{0x17ec,4}}, {{0xcc9,2},{0x2,1}}, {{0xe1f,3},{0x73d6,2}}, + {{0x235d,8},{0x2467,4}}, {{0xe89,2},{0xe78,1}}, {{0x1537,4},{0x8,1}}, {{0x5430,6},{0x189f,3}}, + {{0x25dbb,6},{0xe86,2}}, {{0x1165f,5},{0x11664,6}}, {{0x1a345,7},{0xcc7,1}}, {{0x114d,5},{0x2c15,3}}, + {{0xcc1,2},{0x1bef,2}}, {{0x13f7,11},{0xcc9,2}}, {{0x113c,3},{0xf02,2}}, {{0x1967,3},{0xec3,3}}, + {{0x106c6,8},{0x18b4,3}}, {{0x1182d,6},{0xed6,2}}, {{0xe31,2},{0xb491,8}}, {{0x12e5,3},{0xedd,1}}, + {{0x74fc,2},{0x19b9,1}}, {{0x1969,2},{0xeb5,2}}, {{0x1050,3},{0xf63,2}}, {{0x729b,9},{0xe11,1}}, + {{0x41bc,4},{0xe0d,2}}, {{0x1537,6},{0x5dd0,6}}, {{0x7414,3},{0x2d11,4}}, {{0x48d2,6},{0x48d8,5}}, + {{0x21ef3,7},{0xe0a,1}}, {{0x3a8b,8},{0xe69,6}}, {{0x15396,5},{0xec6,3}}, {{0x19b9,1},{0xcd3,1}}, + {{0x3dd3,6},{0x3ce0,5}}, {{0x6ebf,8},{0xebb,3}}, {{0x2015,4},{0x1050,3}}, {{0x12d4,3},{0x11cb,3}}, + {{0x2a83,4},{0xe25,2}}, {{0xc1ad,5},{0x1632,5}}, {{0xe19,1},{0x9,1}}, {{0x1155,2},{0xe86,2}}, + {{0x760f,5},{0xffc,3}}, {{0x2e241,4},{0x8d,1}}, {{0xe0f,1},{0x7416,1}}, {{0x478f,3},{0xf15,1}}, + {{0xf9b,5},{0x3bec,4}}, {{0xede,1},{0x1e57d,2}}, {{0x8,2},{0xf91,3}}, {{0x1e9e,4},{0x1832,3}}, + {{0x59d3,7},{0x59da,6}}, {{0xe71,1},{0x17c0,2}}, {{0x12b2,5},{0xeee,3}}, {{0x37c1,7},{0xeed,4}}, + {{0x12f6,4},{0xe22,2}}, {{0x26b4,7},{0x3b49,6}}, {{0x4853,3},{0x200bc,4}}, {{0x9309,10},{0xed6,2}}, + {{0x1567,6},{0x14050,4}}, {{0x4599,3},{0x138e,4}}, {{0x4765,3},{0xee6c,5}}, {{0x171fa,5},{0x1085,3}}, + {{0x7158,2},{0xfdf,3}}, {{0x15e9,3},{0xb428,3}}, {{0x2948,4},{0xebb,3}}, {{0xbc79,4},{0x12bf,4}}, + {{0xf0c,1},{0xebc,2}}, {{0xe83,8},{0xe8b,7}}, {{0xb,1},{0x94b2,4}}, {{0xa,2},{0xf7a,2}}, + {{0x12e5,3},{0xf02,2}}, {{0x1747,10},{0xe69,6}}, {{0x187d2,6},{0x1ea3,3}}, {{0x29c0,3},{0x4767,1}}, + {{0xee4,4},{0x2ca1,6}}, {{0xef7,3},{0xe5e,2}}, {{0x11e49,5},{0x12fe,2}}, {{0x127f,3},{0x1252,3}}, + {{0x2240,4},{0xdd0a,3}}, {{0x41b5,7},{0x7096,4}}, {{0x595e,6},{0xec6,3}}, {{0x1367,3},{0x19070,5}}, + {{0x12d4,3},{0x46bf,1}}, {{0x25f4b,7},{0xe11,1}}, {{0x5c02,8},{0x14ab,4}}, {{0xe83,3},{0x22a3,2}}, + {{0x450b,4},{0xf70,2}}, {{0x88d4,4},{0xcc3d,3}}, {{0x9a4,3},{0xcce,2}}, {{0x154f4,5},{0x2b89,3}}, + {{0x1177d,6},{0x15e9,3}}, {{0x109,2},{0x57,1}}, {{0x206,2},{0x9f,1}}, {{0xf38,2},{0xf3a,3}}, + {{0x1ff7,3},{0xe6b,3}}, {{0xcd3,1},{0x13c3,4}}, {{0x10c5,4},{0x142d,3}}, {{0xf1a,2},{0x8cd3,3}}, + {{0xeb9,4},{0x1be9,3}}, {{0x1f5f7,4},{0x1057,1}}, {{0x3a7d,6},{0x155ea,4}}, {{0x1137e,5},{0x17e13,5}}, + {{0xe97,3},{0xc9af,4}}, {{0x4781,3},{0x4fa2,5}}, {{0x1230c,2},{0xec6,3}}, {{0xcbd,1},{0xb,1}}, + {{0xfa6,3},{0xa,2}}, {{0x585a,7},{0x5861,5}}, {{0x1ebc,8},{0xe0d,2}}, {{0x1019,4},{0x6b90,9}}, + {{0xe08,1},{0xeea,3}}, {{0x10c5,4},{0x1d7d,3}}, {{0xdd4f,4},{0xf0f,2}}, {{0x3d39,5},{0x4a6a,6}}, + {{0xf80,2},{0x3075,3}}, {{0x1bbf,5},{0xcce,2}}, {{0x1088,3},{0x3abf,4}}, {{0x52f8,8},{0xf72,5}}, + {{0x1569,2},{0x8,1}}, {{0xcc8,1},{0x9b99,3}}, {{0x2625b,5},{0xe7f,2}}, {{0xcb6,3},{0x1a9a,4}}, + {{0x2f71,7},{0xf62,3}}, {{0x1967,3},{0x10a5,2}}, {{0x51b3,7},{0x6411,4}}, {{0x1647,5},{0x128c,4}}, + {{0x2d87,6},{0x2d8d,8}}, {{0xa5ed,5},{0xf04,3}}, {{0x3c2f,10},{0xe77,3}}, {{0x153aa,6},{0x7a0f,4}}, + {{0x1501,2},{0x3756,3}}, {{0xd,2},{0x9f,1}}, {{0x3a7d,6},{0xccaa,4}}, {{0xefdf,6},{0xe6b,4}}, + {{0x105f,3},{0x1252,3}}, {{0x1980e,6},{0x1317,2}}, {{0x5fde,7},{0x40a5,6}}, {{0x9e19,5},{0xe6d4,4}}, + {{0x53c8,9},{0xec6,3}}, {{0xf69,5},{0xf6e,9}}, {{0xf89,5},{0xed6,2}}, {{0x1019,4},{0xa1e1,4}}, + {{0x1943,2},{0xec6,3}}, {{0x5e27,3},{0xe0d,2}}, {{0xe83,3},{0xeee,3}}, {{0xe83,5},{0x15fb,3}}, + {{0x2b4fe,2},{0xbb8,2}}, {{0xe11,2},{0x1059,3}}, {{0xfe0,2},{0x8,1}}, {{0xcc8,1},{0x111c,2}}, + {{0x7c3d,4},{0xec6,3}}, {{0x2939,4},{0x293d,6}}, {{0x2a47,3},{0x1db44,2}}, {{0x18ed2,4},{0x18ed6,2}}, + {{0x4765,3},{0x2afb2,2}}, {{0x29cf,3},{0x17661,2}}, {{0x1007,5},{0x138e,4}}, {{0xcf37,6},{0x1059,3}}, + {{0x2858,4},{0x2146,3}}, {{0xcbd,1},{0x2280,2}}, {{0x11163,5},{0xe5e,2}}, {{0x1153,2},{0x8,1}}, + {{0x1e44,6},{0xf24,2}}, {{0x87c9,8},{0x2dd7,4}}, {{0x53c8,9},{0xcc9,2}}, {{0x1807,5},{0x6ec3,3}}, + {{0xe97,3},{0x1189,3}}, {{0xe0b,2},{0xcbd,2}}, {{0x80fd,6},{0x7949,4}}, {{0x73ef,2},{0x9a8,2}}, + {{0x7,2},{0x8,1}}, {{0x54cc,5},{0x12849,5}}, {{0x3a45,5},{0xfb8,3}}, {{0x30357,1},{0x3034d,2}}, + {{0xef7,3},{0x169d,3}}, {{0xb379,3},{0x29f3,3}}, {{0xe0b,2},{0xce83,4}}, {{0x4781,3},{0x38ec,3}}, + {{0x4209,9},{0x1d7d,4}}, {{0xcb8,1},{0x16fff,3}}, {{0x8415,5},{0xf4a,5}}, {{0xf0c,1},{0x7416,1}}, + {{0x9441,5},{0x2477,3}}, {{0x1969,1},{0x8,1}}, {{0x7a37,2},{0xcc9,2}}, {{0xe65,2},{0xed9,2}}, + {{0xfe3,4},{0x196cd,5}}, {{0x16bf6,5},{0xf86,3}}, {{0xf65,5},{0xa317,6}}, {{0x19f9,2},{0x1314f,3}}, + {{0x311d3,4},{0xb,1}}, {{0x8835,5},{0x6d4e,5}}, {{0xf89,3},{0xf7a,2}}, {{0xe19,1},{0x11d9,3}}, + {{0x1969,1},{0x101f,2}}, {{0x33b5,8},{0xfdf,4}}, {{0xe7e1,8},{0xcc9,2}}, {{0xccd,1},{0x1790,3}}, + {{0x39b9,8},{0x1523,4}}, {{0x311af,2},{0x2b05e,2}}, {{0x8af9,9},{0x2468,3}}, {{0xf11,1},{0x1ea72,2}}, + {{0xef87,7},{0x58ff,4}}, {{0x11b5,2},{0xebb,3}}, {{0x3521,4},{0x156a,3}}, {{0x183b,3},{0xcc7,1}}, + {{0xcc6,2},{0x10b9,2}}, {{0x150c6,7},{0x14a2,3}}, {{0xe16,2},{0xb,1}}, {{0x4ef5,4},{0x7948,5}}, + {{0x2bd5,4},{0x7,2}}, {{0xe08,1},{0x1dee,2}}, {{0x4ef5,4},{0x11b5,2}}, {{0xe09,1},{0x12b5,2}}, + {{0x478f,3},{0x16ad,3}}, {{0x12b8f,5},{0xe95,2}}, {{0x24b6,5},{0xf86,3}}, {{0x29cf,3},{0x504d,3}}, + {{0x16d7,6},{0x2781,5}}, {{0x1367,3},{0x4180,4}}, {{0x4,1},{0xf1a,2}}, {{0xf0a,3},{0x48d3,2}}, + {{0xc281,4},{0xd7c,2}}, {{0x3559,4},{0x174b,3}}, {{0x6,2},{0x38ee,5}}, {{0x9465,5},{0x2c5b,4}}, + {{0x16d7,10},{0x23df,5}}, {{0x10658,6},{0x28f8,5}}, {{0xf11,1},{0xe0f,1}}, {{0x514b,7},{0xe6b,4}}, + {{0x45dd,6},{0x1cd3,2}}, {{0x46af,3},{0x5538,2}}, {{0x125d,6},{0x1cd3,2}}, {{0x1d7e,3},{0x12be,5}}, + {{0x7414,3},{0x1cd3,2}}, {{0xe1c,3},{0x1025,1}}, {{0x2ca1,4},{0xec6,3}}, {{0x791d,7},{0xfb8,3}}, + {{0xe22,3},{0x189f,3}}, {{0x4853,3},{0x31f8,3}}, {{0x28d0,5},{0xf1a,2}}, {{0x1153,2},{0xfbb,3}}, + {{0x4853,3},{0x9b99,3}}, {{0xe78,1},{0xe7d,2}}, {{0xf722,5},{0x2917,4}}, {{0x8bb9,7},{0x2872,4}}, + {{0x1ff7,3},{0xa,2}}, {{0x140,2},{0xe,1}}, {{0x2858,8},{0x167f,7}}, {{0xc045,5},{0xc04a,7}}, + {{0xb8c5,4},{0xe31,2}}, {{0x4edb,8},{0x1c85,3}}, {{0xc0ed,5},{0xec3,3}}, {{0x45cf,6},{0x169b,6}}, + {{0x3d63,5},{0x2c16,5}}, {{0xe83,6},{0xfa6,3}}, {{0x3356,4},{0xe0a,1}}, {{0x6ee6,5},{0x1062,2}}, + {{0xcd3,3},{0x15fc,2}}, {{0x12e5,3},{0xe5e,3}}, {{0x1de2a,5},{0x1150,2}}, {{0x3973,6},{0x8ea8,5}}, + {{0xef7,3},{0xe09,1}}, {{0x1e08,5},{0x8c97,6}}, {{0xb805,5},{0x1ea1,5}}, {{0x1807,5},{0x5b06,4}}, + {{0x1220e,7},{0xec6,3}}, {{0x6d46,6},{0xf91,3}}, {{0x4615,5},{0x2b89,3}}, {{0x2e864,4},{0xe41,2}}, + {{0x2588,11},{0xcce,2}}, {{0x224f,6},{0x2dd7,4}}, {{0x1252e,4},{0xe1c,3}}, {{0xaaf,2},{0x2b50f,2}}, + {{0x6cc7,5},{0x6ccc,3}}, {{0xb597,3},{0x2f5a,4}}, {{0xb379,3},{0xe9fe,5}}, {{0xe11,1},{0xcd61,8}}, + {{0x2c54d,4},{0xf4f,1}}, {{0x1c0a,10},{0xe11,1}}, {{0x478f,3},{0xe0f,1}}, {{0x9441,5},{0x2917,4}}, + {{0x780c,2},{0x8f3a,3}}, {{0x2966,4},{0xeb4,2}}, {{0xcd3,2},{0xf1d,2}}, {{0x70ad,3},{0x28d2,3}}, + {{0x284de,6},{0xe11,1}}, {{0xe2b,2},{0x1004,3}}, {{0xf,1},{0x302,2}}, {{0x2f7f,6},{0x583a,3}}, + {{0xf59,2},{0xcc9,2}}, {{0x14f7,5},{0x6480,5}}, {{0x5,1},{0x18b2,5}}, {{0xe0f,2},{0x9a8,1}}, + {{0x70ad,4},{0x19188,5}}, {{0xe5b,4},{0x6dfe,3}}, {{0x1be,2},{0x325,2}}, {{0x2ba5,1},{0xe77,3}}, + {{0x2a47,4},{0xa045,8}}, {{0xf0a,3},{0xed5,3}}, {{0xb415,7},{0x1085,3}}, {{0x115e,5},{0xe89,2}}, + {{0x413d,5},{0x4142,3}}, {{0x3513,5},{0x7a0f,4}}, {{0x27e0,5},{0x27ea,5}}, {{0xe1a6,6},{0x1832,5}}, + {{0xe1f,3},{0x19eb7,4}}, {{0x19e7,5},{0xeed,4}}, {{0xe7d,2},{0x1fc0,3}}, {{0x127f,3},{0xcd3,2}}, + {{0x451b,2},{0x2c21,4}}, {{0x59b9,10},{0xed6,2}}, {{0x2e346,2},{0x18ed6,2}}, {{0x11a34,8},{0x127c,3}}, + {{0xf7a,2},{0xf1a,2}}, {{0x46af,3},{0x10f4,4}}, {{0xbccd,4},{0xf61,2}}, {{0x2006,3},{0xcd3,2}}, + {{0x70fb,5},{0x1601,3}}, {{0x5534,4},{0xc3fb,5}}, {{0x113f,2},{0xcc3,2}}, {{0x11e07,5},{0xed5,3}}, + {{0x1927,4},{0xe6c,3}}, {{0x1969,1},{0x48d3,2}}, {{0x159c2,5},{0xad8a,4}}, {{0xc996,6},{0x2f4a,4}}, + {{0x9da1,5},{0x3694,3}}, {{0xe83,4},{0x2e2c,3}}, {{0xa9a1,9},{0xf7a,2}}, {{0x1005f,9},{0xebc,2}}, + {{0x11871,6},{0x6,2}}, {{0x10c5,5},{0xcbb6,6}}, {{0x1088,4},{0x6,2}}, {{0x1967,4},{0xcc3d,3}}, + {{0x66c6,5},{0x1b80,3}}, {{0x114d,5},{0xf79,3}}, {{0xf13,2},{0x6,1}}, {{0x1711e,4},{0xf91,3}}, + {{0x24e3,9},{0xe92,3}}, {{0x79f5,5},{0x23e1,3}}, {{0x46af,3},{0x1523,4}}, {{0x11b5,2},{0xe69,5}}, + {{0x385b,7},{0x11d9,3}}, {{0x7518,5},{0x35ce,4}}, {{0xf1f,3},{0x5,1}}, {{0x7414,3},{0xe0f9,3}}, + {{0x1d54,6},{0x189f,3}}, {{0x236c,11},{0xec6,3}}, {{0x9bd1,3},{0xec6,3}}, {{0xcc8,1},{0x10d55,4}}, + {{0x2be3,5},{0x2c6a,5}}, {{0x56c7,5},{0xe1b,4}}, {{0x205eb,4},{0xe11,1}}, {{0x1977,4},{0xc572,4}}, + {{0x1ac,2},{0x21,1}}, {{0x18fc2,3},{0x18fc5,6}}, {{0x1a66,1},{0xfbb,4}}, {{0x739f,6},{0x45ee,3}}, + {{0x1f7f,5},{0x146d,10}}, {{0xb3f1,3},{0x4132,5}}, {{0x29cf,3},{0xddb9,4}}, {{0x156a,3},{0xcc8,1}}, + {{0x29e3,4},{0x29e7,6}}, {{0x46bd,3},{0x1150,2}}, {{0x9189,5},{0xed9,2}}, {{0x1a07,3},{0x1943,2}}, + {{0x1252e,4},{0xcbd,1}}, {{0x7aa9,6},{0x305a,5}}, {{0x578a,5},{0x57b6,8}}, {{0x97a1,5},{0x142a,3}}, + {{0x478f,3},{0x101f,3}}, {{0x2b4fe,2},{0xc279,2}}, {{0x20f6,5},{0x2e32,9}}, {{0xccb,2},{0x3640,4}}, + {{0x96c4,4},{0xbf5d,4}}, {{0x33a7,8},{0x1722,5}}, {{0x399d,9},{0x6ba3,3}}, {{0x11b5,2},{0xa,2}}, + {{0x94be,4},{0xb381,4}}, {{0xe6f,3},{0x83ba,7}}, {{0x1007,5},{0x1240,2}}, {{0x2ba5,4},{0xec6,3}}, + {{0x336f,7},{0x3376,7}}, {{0x1e08,6},{0x8bcb,6}}, {{0xbab1,8},{0x1204,4}}, {{0x2e241,4},{0x69,1}}, + {{0x111a,3},{0x14ddd,5}}, {{0xe97,3},{0x1054,3}}, {{0x2e211,4},{0x9f,1}}, {{0x2fc1d,3},{0xab1,1}}, + {{0x1939,2},{0x12fd,3}}, {{0x1189,4},{0x14f9,3}}, {{0xe99,1},{0x8,2}}, {{0x1577,7},{0x8fbc,5}}, + {{0xf15,1},{0x6,2}}, {{0x4781,3},{0x227de,5}}, {{0x1290,4},{0x1062,2}}, {{0x157ce,5},{0x2872,4}}, + {{0x2e241,4},{0x7b,1}}, {{0x18ec6,6},{0x18ecc,2}}, {{0xe35e,6},{0xe36f,4}}, {{0x1687,4},{0xc088,4}}, + {{0xcc8,2},{0x188a,4}}, {{0x48d0,2},{0x48d2,11}}, {{0x10e1f,4},{0xcba,2}}, {{0x29cf,3},{0x74f8,2}}, + {{0xbb4,6},{0x205a1,1}}, {{0xb3f1,3},{0x1dbed,6}}, {{0x1057,1},{0x2966d,4}}, {{0x1567,3},{0x1373,2}}, + {{0x556,2},{0x556,2}}, {{0xf0a,3},{0x12211,4}}, {{0xbba1,4},{0x181b,3}}, {{0x6d46,12},{0xe11,1}}, + {{0x9f45,6},{0xf0f8,5}}, {{0x1817,4},{0xe22,2}}, {{0x402d,9},{0x6a0f,4}}, {{0x2a47,3},{0x5989,2}}, + {{0x2540b,5},{0x101f,2}}, {{0xfa6,3},{0xcc3,2}}, {{0xe0f,2},{0x160b,4}}, {{0x445e,2},{0xe16,1}}, + {{0x3655,11},{0xcc9,2}}, {{0x7899,6},{0x789f,6}}, {{0xc6f7,4},{0xdba8,5}}, {{0x75db,6},{0xe6c,3}}, + {{0xf15,1},{0xf50,3}}, {{0x7414,3},{0x1eee0,6}}, {{0x9ddd,6},{0xeb5,2}}, {{0xfa5,2},{0xf79,3}}, + {{0x1155,2},{0xe22,2}}, {{0x12d4,3},{0xf50,3}}, {{0x9a8,1},{0xcc9,2}}, {{0x29c0,4},{0xcc1,1}}, + {{0x1a93,5},{0x1a98,6}}, {{0xf4f,1},{0xeee,3}}, {{0x8b11,7},{0xe2b,2}}, {{0x9b9d,6},{0xec80,5}}, + {{0x80b5,9},{0xe77,3}}, {{0x149aa,5},{0x964d,4}}, {{0x46af,3},{0x4,1}}, {{0x7a91,6},{0xed6,2}}, + {{0x1367,3},{0x8,3}}, {{0xf57,2},{0xe7f,2}}, {{0x41b7,3},{0x8,2}}, {{0x3d63,5},{0x7f8f,6}}, + {{0x27e0,4},{0x16786,5}}, {{0x4781,3},{0xcce,2}}, {{0x1844e,7},{0xec6,3}}, {{0x80fd,6},{0x320d,3}}, + {{0x12c5,3},{0xcce,3}}, {{0xb7bd,8},{0xed9,2}}, {{0x1587,4},{0x8,1}}, {{0xcb8,1},{0xcc9,2}}, + {{0x1be,2},{0x57,1}}, {{0x1535a,6},{0xec6,3}}, {{0xecb,2},{0x3315,4}}, {{0x1252,5},{0x2c6a,5}}, + {{0x1f03f,2},{0xedd,1}}, {{0xb55b,3},{0x1153,2}}, {{0x8115,7},{0x5261,4}}, {{0x4fd2,7},{0xe69,6}}, + {{0x1ebf,3},{0xcc9,2}}, {{0x19b7,3},{0xcb8,1}}, {{0x107e4,7},{0xeed,4}}, {{0xfb8,3},{0xcc3,2}}, + {{0x46bd,3},{0x6479,4}}, {{0xf0c,1},{0xccc,2}}, {{0x16804,6},{0xe11,1}}, {{0x10b7,2},{0x3f56,4}}, + {{0xe71,1},{0xe25,2}}, {{0x5,1},{0x190e6,3}}, {{0x1817,4},{0x6008,3}}, {{0x4765,3},{0x158f,3}}, + {{0x1a1a7,5},{0x4f55,4}}, {{0x1a93,5},{0xc3fb,5}}, {{0x14a7,4},{0x1153,2}}, {{0xf77,3},{0x12a3,3}}, + {{0xee4,4},{0x2352,5}}, {{0xcc3,2},{0xfb8,3}}, {{0x478f,3},{0xfff,3}}, {{0x255b,6},{0x1790,7}}, + {{0x111a,3},{0x2766a,4}}, {{0x2777,6},{0x1244,7}}, {{0x70ad,3},{0xc570,6}}, {{0x6d46,6},{0x9d80,4}}, + {{0x70ad,3},{0x1a71,3}}, {{0x8829,6},{0x2c3b,5}}, {{0x113f,2},{0xe77,3}}, {{0x46bf,1},{0x237d,3}}, + {{0x9129,9},{0xec6,3}}, {{0x45a5,5},{0xccd,1}}, {{0x7559,6},{0xf07f,4}}, {{0x1482e,6},{0x1040,3}}, + {{0xc54a,8},{0xcc9,2}}, {{0x29de,4},{0x6,2}}, {{0xe08,1},{0x1e57e,2}}, {{0x299d0,5},{0xe86,2}}, + {{0x10cb4,4},{0x9a5,2}}, {{0xe11,2},{0x3537,2}}, {{0xe89,2},{0x4fa8,3}}, {{0xcd2,2},{0x1085,3}}, + {{0x8ccd,9},{0xcc9,2}}, {{0xaaf,2},{0x78f9,2}}, {{0x18b74,6},{0xeac,2}}, {{0xe11,1},{0xe65,2}}, + {{0x10f4a,5},{0x4,1}}, {{0x19e7,5},{0x404e,4}}, {{0x1567,6},{0x5f96,3}}, {{0x1c28,5},{0x4833,4}}, + {{0xe99,1},{0x6190,4}}, {{0x46bd,3},{0x1f27,3}}, {{0x7414,3},{0xf59,2}}, {{0x42bf,9},{0xe69,5}}, + {{0x29cf,3},{0x1e872,2}}, {{0xaeb1,5},{0x127c,3}}, {{0x1817,4},{0x1d06,3}}, {{0x1ae61,6},{0xec6,3}}, + {{0x314d,8},{0x1b4f,5}}, {{0x1d54,6},{0x6a0f,4}}, {{0x2cda1,4},{0xf4f,1}}, {{0x6f1a,5},{0xd3eb,6}}, + {{0xcd2,2},{0xf59,2}}, {{0xf1a,2},{0xe22,2}}, {{0x4597,5},{0x303c,7}}, {{0xb3f1,3},{0x4a01,3}}, + {{0x4ee8,4},{0x4d72,3}}, {{0x14d4c,5},{0xed5,3}}, {{0x2bb4,2},{0xed6,2}}, {{0x12f6,4},{0xf150,5}}, + {{0x3a29,4},{0xf04,3}}, {{0xe0a,1},{0xcc3,2}}, {{0x4871,2},{0x8cd3,3}}, {{0x2006,3},{0x809a,3}}, + {{0xe2f,1},{0x2c59,4}}, {{0x1b56,7},{0x174b,3}}, {{0x1cdc,6},{0xec6,3}}, {{0x162c,3},{0xe11,1}}, + {{0xcb8,1},{0xce96,4}}, {{0x139a6,6},{0x3caa,3}}, {{0xb001,8},{0xe6b,3}}, {{0x955a,4},{0xcba,3}}, + {{0x24ddb,5},{0x1062,2}}, {{0x72cf,4},{0xdb01,6}}, {{0xe6b,2},{0x4aef,3}}, {{0x2f7f,7},{0x2eec,7}}, + {{0x1081,5},{0xb496,3}}, {{0x1969,1},{0x5538,2}}, {{0x2a56,4},{0x14dd,9}}, {{0xebc,2},{0x4e3c,3}}, + {{0x488b,4},{0x6ec3,7}}, {{0x2f9b,8},{0x43fd,4}}, {{0xeb5,2},{0x431e,3}}, {{0x2e271,3},{0x307bb,1}}, + {{0xcb8,1},{0x492e,3}}, {{0xcc1,1},{0xebb,3}}, {{0xb55b,3},{0xe78,2}}, {{0x2669,10},{0xe69,5}}, + {{0x2a47,3},{0xf13,2}}, {{0xf4f,1},{0x6fe1,3}}, {{0x73d6,2},{0xe22,2}}, {{0x10cd,2},{0xcc7,1}}, + {{0x12e5,3},{0x2d9ce,3}}, {{0x74fc,2},{0xf0c,1}}, {{0x21,1},{0xf8,2}}, {{0x122d,2},{0x6,1}}, + {{0x2eec,4},{0xec6,3}}, {{0xf8e5,7},{0xe92,3}}, {{0x2015,3},{0xcb7,2}}, {{0x750b,4},{0xec6,3}}, + {{0xcce,2},{0xf59,2}}, {{0xf0c,1},{0xed9,2}}, {{0xe83,3},{0x1393,3}}, {{0x4853,3},{0x1150,3}}, + {{0x112b,4},{0x6a90,5}}, {{0xed1,3},{0x2bae,2}}, {{0x75b4,4},{0x121e,2}}, {{0x4a34,4},{0x286d,3}}, + {{0x4781,3},{0x1189,3}}, {{0x12d4,3},{0x1ae88,6}}, {{0x1467,4},{0x17cd,4}}, {{0x6ca7,3},{0xe09,1}}, + {{0x133de,5},{0xec6a,5}}, {{0xb349,7},{0xcc8,3}}, {{0x1967,4},{0x155b,3}}, {{0x52d8,3},{0xe32,1}}, + {{0x1cf9c,6},{0x1150,2}}, {{0x1957,5},{0xe62,3}}, {{0xe19,1},{0x1a66,1}}, {{0x478f,3},{0x1a67,6}}, + {{0x1db45,2},{0x1766b,2}}, {{0x27e0,3},{0x101f,5}}, {{0x4767,1},{0xfb0,2}}, {{0x7351,5},{0x1047,3}}, + {{0x109,2},{0xd,1}}, {{0x5430,6},{0xd914,4}}, {{0x2b75,2},{0x1d3c,5}}, {{0xa659,5},{0xfee,7}}, + {{0xf4f,1},{0xfb0,3}}, {{0x43f3,11},{0xec6,3}}, {{0x1128c,6},{0x1302,5}}, {{0x9e19,5},{0xebc,2}}, + {{0x11e49,5},{0x9a5,2}}, {{0x353d,5},{0x30f7,2}}, {{0x6bda,6},{0x2269,4}}, {{0x2948,3},{0xe99,1}}, + {{0x22a2,4},{0xe11,1}}, {{0xcce,2},{0xf86,2}}, {{0xc195,5},{0xb1da,7}}, {{0xe78,1},{0x1523,4}}, + {{0x19b9,1},{0x2ba5,1}}, {{0xcc6,2},{0x1150,2}}, {{0x4c03,5},{0xcc3,3}}, {{0xc015,5},{0x11e85,6}}, + {{0x113c,3},{0xcbac,5}}, {{0x122d,2},{0xef5,2}}, {{0x48d0,2},{0xedd,1}}, {{0x3e35,9},{0xcc9,2}}, + {{0xd777,8},{0xe95,2}}, {{0x24653,4},{0xe21,1}}, {{0x39d5,5},{0x296f,3}}, {{0x66c6,5},{0x2,1}}, + {{0x7b2d,5},{0x7a36,3}}, {{0x13424,7},{0xcc9,2}}, {{0x7414,3},{0x9a4,3}}, {{0xed9,2},{0xe6b,3}}, + {{0xccd,1},{0xf91,3}}, {{0x4be9,6},{0x1004,3}}, {{0x10c5,4},{0x2e29,3}}, {{0xe78,1},{0xcbd,1}}, + {{0x1d194,6},{0xec6,3}}, {{0x175ec,6},{0x9c87,4}}, {{0xe11,2},{0x9a6,1}}, {{0xc631,5},{0x1943e,4}}, + {{0x9465,5},{0x160f,7}}, {{0x1ac7,3},{0xf7a,2}}, {{0x1d6bf,5},{0x104dd,4}}, {{0x5b4c,7},{0x1f7c,3}}, + {{0x1230,3},{0xf92,2}}, {{0x3537,2},{0xcc9,2}}, {{0x4,1},{0x8666,2}}, {{0xf77,4},{0x29e3,4}}, + {{0xb8d1,5},{0x18b4,3}}, {{0x1c76,3},{0x13e3,4}}, {{0x48dd,6},{0xf91,3}}, {{0x1a17,4},{0x2d8d,3}}, + {{0xb37c,3},{0xec6,3}}, {{0x10f27,7},{0x10f2e,4}}, {{0x9a8,1},{0x1d65,3}}, {{0x121b4,7},{0xe11,1}}, + {{0x1007,9},{0x4d85,4}}, {{0xcb7,2},{0x9,1}}, {{0x2a2b,3},{0x13dc,5}}, {{0x115e,7},{0x11b5,2}}, + {{0x41df,7},{0x41e6,7}}, {{0x12e5,3},{0x1e8b,3}}, {{0x112b,5},{0x2094,3}}, {{0x19b7,3},{0x1f38,1}}, + {{0x29cf,3},{0xe99,1}}, {{0x1949,3},{0xccd,1}}, {{0x1967,3},{0xe99,1}}, {{0x10a3,3},{0x2e25,4}}, + {{0xcc9,2},{0xe2b,2}}, {{0xe08,1},{0xe99,1}}, {{0x17f00,3},{0xb97c,2}}, {{0xef9,5},{0xfe6,2}}, + {{0xe0d,2},{0xab88,4}}, {{0xe83,3},{0xf1f,3}}, {{0x1567,3},{0xe75,2}}, {{0xe7e1,8},{0xec6,3}}, + {{0x14a7,4},{0x5,2}}, {{0x1fe8b,6},{0xec6,3}}, {{0x2df3b,4},{0x556,2}}, {{0x1a1a7,5},{0x1e5e,4}}, + {{0x5534,4},{0xe65,2}}, {{0xf0f,2},{0xe0a,1}}, {{0x19b7,3},{0x1fc7,3}}, {{0x238a,5},{0x22d8,8}}, + {{0xed1,4},{0x69ca,7}}, {{0xe83,5},{0x1240,2}}, {{0x21aa,10},{0xe92,3}}, {{0x1507,7},{0xcc1,1}}, + {{0x57be,5},{0x240b,6}}, {{0x486f,4},{0x4b12,4}}, {{0x9a6,1},{0xcb6,3}}, {{0x16a41,5},{0xcce,2}}, + {{0x121c8,6},{0x2dd7,4}}, {{0x19f5e,7},{0xcba,2}}, {{0x1677,3},{0xfb0,3}}, {{0x4853,3},{0x2fa68,2}}, + {{0xe1f,3},{0xf0c,1}}, {{0x1bbf,4},{0x10cb,3}}, {{0x2df3b,4},{0x589,2}}, {{0x1ff7,3},{0x6ee8,3}}, + {{0x9e01,5},{0xccaa,4}}, {{0xf16,2},{0xe0d,2}}, {{0x1607a,6},{0xed6,2}}, {{0x4765,3},{0x5b06,4}}, + {{0x4781,3},{0xe7a,1}}, {{0xb865,6},{0xcd3,2}}, {{0x1bc9e,6},{0xb0ca,3}}, {{0xaf4,16},{0xaf4,4}}, + {{0x2ba5,1},{0x11b5,2}}, {{0x4137,5},{0x1230c,2}}, {{0x2015,3},{0x14999,6}}, {{0xaf4,1},{0x307bb,1}}, + {{0x9b25,5},{0x126a,4}}, {{0xb7a5,4},{0x386f,4}}, {{0xe83,5},{0x1067,9}}, {{0xcc4,2},{0x4743,6}}, + {{0x56c7,5},{0x5699,4}}, {{0x113c,5},{0x5dd0,3}}, {{0x473b,8},{0x4743,6}}, {{0x2939,4},{0x1ae7,4}}, + {{0xe10,2},{0xe67,2}}, {{0x235d,5},{0xf2e6,6}}, {{0x3a1b,5},{0x1130,2}}, {{0x309c,4},{0xe32,1}}, + {{0xf77,3},{0x12df2,3}}, {{0x3a0d,7},{0xe69,6}}, {{0x26b4,7},{0x11dc,5}}, {{0x2a29,7},{0x3640,4}}, + {{0xf0a,3},{0x1373,2}}, {{0x1290,4},{0x6fba,5}}, {{0x9219,5},{0x6a69,5}}, {{0xb5dd,11},{0x8,1}}, + {{0xc7ff,6},{0xe95,2}}, {{0x17a7,8},{0x10b9,2}}, {{0x54f3,10},{0xcc9,2}}, {{0x8c91,6},{0xf91,3}}, + {{0x1155,2},{0xf86,3}}, {{0x182d,3},{0x1830,7}}, {{0xe78,1},{0x4187,3}}, {{0x2a436,5},{0xe31,2}}, + {{0x1607,10},{0x10f2,5}}, {{0x1db33,2},{0xe33,1}}, {{0x5b4c,7},{0x1c1d,4}}, {{0x74f1,4},{0xf4f,1}}, + {{0xeca,3},{0x6,1}}, {{0xfa9,3},{0x2dd7,4}}, {{0x12c3,4},{0x1d74,5}}, {{0x10f32,8},{0x10f3a,3}}, + {{0x4ef5,4},{0x7998,4}}, {{0x19b7,3},{0x1f875,1}}, {{0xef66,7},{0x1004,3}}, {{0xf9f8,5},{0xfb0,2}}, + {{0x27e0,3},{0x9a4,3}}, {{0xee9,2},{0xe7f,2}}, {{0xb895,5},{0x45ca,4}}, {{0x1a66,1},{0x288b,2}}, + {{0x12f8,2},{0x1189,4}}, {{0xb199,5},{0xdb0a,5}}, {{0x2523b,5},{0xa,2}}, {{0x3115,8},{0xebb,3}}, + {{0x15399,3},{0xe0a,1}}, {{0x6abc,8},{0x12be,5}}, {{0x6f41,8},{0xe92,3}}, {{0xa299,9},{0xec6,3}}, + {{0x486f,4},{0x3e0e,3}}, {{0x2e235,4},{0x21,1}}, {{0x2fe1,9},{0xe11,1}}, {{0xe22,3},{0x104dd,4}}, + {{0xe11,1},{0x15399,2}}, {{0x450b,4},{0x6,1}}, {{0x1cdc,6},{0x180f,7}}, {{0x2e27d,1},{0x1327,1}}, + {{0xe2f,1},{0xf0c,1}}, {{0x2c85,2},{0xe11,1}}, {{0x2213,8},{0x1c1d,4}}, {{0x1141,4},{0x2f2e,3}}, + {{0x109,2},{0x8d,1}}, {{0xc281,6},{0x9b5,2}}, {{0x1ab01,6},{0x10b7,2}}, {{0xb,1},{0xdd0a,3}}, + {{0xaaf,2},{0xb74,4}}, {{0x9a8,1},{0x1593,3}}, {{0x478f,3},{0xa,2}}, {{0x2e27d,1},{0x78f9,1}}, + {{0x8d81,10},{0x6,1}}, {{0xaac1,8},{0xe6b,4}}, {{0x70ad,3},{0x9e08,4}}, {{0x1467,4},{0x1303,3}}, + {{0x27e0,4},{0xaccc,5}}, {{0x1dc56,4},{0x3f56,5}}, {{0x478f,3},{0x8,1}}, {{0x1b6e3,8},{0xe11,1}}, + {{0x12151,3},{0x12154,6}}, {{0x14a7,4},{0x2d11,3}}, {{0xeb5,2},{0x4,2}}, {{0x28b42,4},{0x1189,3}}, + {{0x13208,7},{0xebb,3}}, {{0xebe,5},{0x1062,2}}, {{0xd,2},{0x57,1}}, {{0x12e5,4},{0x232d7,4}}, + {{0x90bd,6},{0xe11,1}}, {{0x111a,3},{0x14c61,4}}, {{0x478f,3},{0xe99,1}}, {{0x9a7d,6},{0x146d,4}}, + {{0x760f,6},{0xa48b,3}}, {{0x46bd,3},{0x24bd8,3}}, {{0x1567,3},{0x2b77,4}}, {{0x63ee,9},{0xf7a,2}}, + {{0xe21,1},{0xfb8,3}}, {{0xedd,1},{0x120b,4}}, {{0x70ad,3},{0x5bb6,3}}, {{0x44c5,6},{0xe77,2}}, + {{0x4765,3},{0x9e34,3}}, {{0xf0c,1},{0x1040,3}}, {{0xe8a,2},{0xcc9,2}}, {{0xd131,4},{0x13ab0,4}}, + {{0xf0a,3},{0x9,2}}, {{0x1fe3a,6},{0x1664,2}}, {{0x1ff7,3},{0xf0d,2}}, {{0x7638,3},{0xb02a,4}}, + {{0x6aaf,8},{0xebb,3}}, {{0x14f9,3},{0x6411,4}}, {{0x354b,7},{0x2843,6}}, {{0xee53,6},{0xee59,5}}, + {{0x1687,4},{0xe22,2}}, {{0x3083b,2},{0x2b088,2}}, {{0x1ff7,3},{0xf16,2}}, {{0xa,2},{0x1025,1}}, + {{0x1fa7,3},{0xe78,2}}, {{0x1fbb,10},{0x127c,3}}, {{0x1367,3},{0x344b,4}}, {{0x662a,6},{0xfdd,6}}, + {{0x27d1,6},{0x27d7,4}}, {{0xbf85,8},{0x668d,4}}, {{0x75ce,4},{0x3c8b,3}}, {{0xaec9,5},{0x1b9d,4}}, + {{0x478f,3},{0xcd2,2}}, {{0x26b4,7},{0xe67,8}}, {{0x1150,2},{0x2c15,3}}, {{0xc081,7},{0xc088,5}}, + {{0x1034b,6},{0x10351,5}}, {{0x2b84,2},{0xe8a,2}}, {{0xb865,6},{0x8fa3,6}}, {{0x14f9a,6},{0xc3d0,3}}, + {{0x10a6,2},{0x1c444,4}}, {{0xecb,2},{0xe1c,3}}, {{0xe5b,3},{0x4618,4}}, {{0x1601,3},{0xf86,3}}, + {{0x2280,2},{0x3976,3}}, {{0x12e7a,6},{0x1b9d,4}}, {{0x28ca0,4},{0xe19,1}}, {{0x1587,11},{0x1592,4}}, + {{0xcc8,1},{0x29f3,3}}, {{0x409d,8},{0x138e,2}}, {{0xf0a,3},{0xe0d,2}}, {{0xe08,1},{0xe7a,1}}, + {{0xfbf,12},{0xfcb,2}}, {{0x13ed8,7},{0x27f8,3}}, {{0x19e7,5},{0x12be,5}}, {{0x9a8,1},{0xccb,2}}, + {{0xf,1},{0x1ac,2}}, {{0x1766a,2},{0xf0c,1}}, {{0x5d7b,6},{0x2b7a,3}}, {{0xbfc1,5},{0xcc3,2}}, + {{0x75b4,7},{0x16ce,5}}, {{0xecb,2},{0xcce,3}}, {{0x2e273,1},{0x2e273,1}}, {{0x19b9,1},{0x10cb,2}}, + {{0x17f7,6},{0xcc6,2}}, {{0xe09,1},{0x1ac7,3}}, {{0x5cdf,6},{0x1e40,4}}, {{0x17312,5},{0x174b,3}}, + {{0x1817,4},{0x122d,3}}, {{0x29de,5},{0x29e3,10}}, {{0x1e62,4},{0x12a34,4}}, {{0x89a9,9},{0xebb,3}}, + {{0x12c3,4},{0x138e,2}}, {{0x111a,3},{0x20fbd,4}}, {{0xcc7,1},{0x5136,5}}, {{0x3a45,5},{0x4618,3}}, + {{0xe65,2},{0xcc1,1}}, {{0x4781,3},{0x10cb,2}}, {{0x30f51,2},{0xd1c,2}}, {{0x1ff7,3},{0xf02,2}}, + {{0x6d46,6},{0x10d2,4}}, {{0xaf4,1},{0x1357,1}}, {{0x753f,5},{0x10d2,4}}, {{0x1bbf,4},{0xcd2,2}}, + {{0xe11,1},{0x1040,3}}, {{0x1487,4},{0x11a6,2}}, {{0x478f,3},{0x1f875,1}}, {{0xe21,1},{0x78ed,2}}, + {{0x4519,4},{0x2239,4}}, {{0x4434,3},{0x1cd3,2}}, {{0x1be84,6},{0xeca,3}}, {{0x1caf,7},{0x14a1,4}}, + {{0xef7,4},{0x122e,2}}, {{0xffe,6},{0x1004,3}}, {{0x142a,3},{0x142d,3}}, {{0x113f,2},{0xed6,2}}, + {{0x2939,4},{0x7a15,4}}, {{0xcc4,2},{0x3,2}}, {{0x2939,4},{0x60f5,5}}, {{0x7e81,7},{0x7e88,5}}, + {{0x3169,8},{0x1b4f,5}}, {{0xf0a,3},{0x1e2e3,2}}, {{0xe83,3},{0xf24,2}}, {{0xf77,3},{0x7948,5}}, + {{0x5be8,7},{0x6411,4}}, {{0x27e0,3},{0x6ca7,3}}, {{0xe11,2},{0x145b,2}}, {{0xf11,1},{0xe99,1}}, + {{0x15364,6},{0xcc9,2}}, {{0x1155,2},{0x119e2,4}}, {{0x16a7,3},{0x109b,2}}, {{0x9a6,2},{0x18b4,3}}, + {{0x11b3,4},{0x3c9a,5}}, {{0xf722,5},{0x809a,3}}, {{0x1163e,6},{0x1be9,3}}, {{0x1857,4},{0x1dc0,3}}, + {{0xc949,7},{0x2dd7,4}}, {{0xd709,10},{0xe11,1}}, {{0x4853,3},{0x44ad,4}}, {{0x3083b,2},{0x2b05e,2}}, + {{0xccd,1},{0x168b,4}}, {{0x12e5,3},{0x5edd,3}}, {{0x2e269,2},{0x2e27d,1}}, {{0xb74,1},{0xcd6,1}}, + {{0xed1,4},{0x87aa,7}}, {{0x9a4,3},{0x15399,2}}, {{0x29cf,3},{0x1393,3}}, {{0x385b,7},{0x10f5,3}}, + {{0x4781,3},{0x2b88,4}}, {{0x9a6,1},{0x64a7,10}}, {{0xe0f,1},{0xf69,3}}, {{0x17e72,6},{0xabfe,4}}, + {{0x2b84,2},{0x10612,4}}, {{0x9a6,1},{0x27dc,4}}, {{0x115e,5},{0x5eaf,4}}, {{0x3d63,5},{0x1790,3}}, + {{0x1ac45,6},{0xcc9,2}}, {{0x46bf,1},{0x1c79,2}}, {{0x73b9,5},{0x6452,4}}, {{0x1096,3},{0x431c,5}}, + {{0x205a9,1},{0x3034d,2}}, {{0xe613,5},{0x2477,3}}, {{0x79c5,4},{0x9498,5}}, {{0xe21,1},{0x5538,2}}, + {{0xb0cd,7},{0x12be,5}}, {{0xfa5,2},{0x1c2a,4}}, {{0x14d7,6},{0x14dd,5}}, {{0x5722,5},{0x4b96,5}}, + {{0x332b,3},{0x10b7,2}}, {{0x10a3,3},{0xe13,3}}, {{0x2,1},{0xfe8,2}}, {{0x29893,4},{0x1969,1}}, + {{0x4853,3},{0x3e0e,3}}, {{0x281c,8},{0x1024,7}}, {{0xe1f,3},{0x190e6,3}}, {{0x11b26,5},{0x103bb,5}}, + {{0xb69d,3},{0xe7a,1}}, {{0x113c,5},{0x146d,10}}, {{0x7fe9,5},{0x2352,5}}, {{0xed1,4},{0xfcff,5}}, + {{0x9a6,1},{0x6,2}}, {{0xf89,3},{0x78cd,3}}, {{0x17326,5},{0xe22,2}}, {{0xae69,8},{0xcc9,2}}, + {{0x1bec,5},{0xc3d0,3}}, {{0x113c,4},{0xcc3,2}}, {{0x2a29,7},{0x249f,3}}, {{0xf0d,2},{0x127c,3}}, + {{0x46af,3},{0x320c,5}}, {{0xef7,3},{0xf095,5}}, {{0x19b9,3},{0xa352,7}}, {{0xbfcf,3},{0x122d,2}}, + {{0xe19,1},{0xf13,2}}, {{0xe83,5},{0xcbd,1}}, {{0x78f9,4},{0x78f9,1}}, {{0x3fe7,8},{0x277e,2}}, + {{0x51b3,9},{0xeed,4}}, {{0x2231,5},{0x8db7,5}}, {{0x19c9,4},{0x17cd,4}}, {{0x11536,6},{0x18351,3}}, + {{0x9a8,2},{0xe0a,1}}, {{0x205a5,1},{0x7905,1}}, {{0x1f34,8},{0xe6b,3}}, {{0x9a6,2},{0xec6,3}}, + {{0x73ed,4},{0x8,1}}, {{0xe2f,1},{0x1059,3}}, {{0x22b8,4},{0xcba,2}}, {{0x189b2,6},{0x9,2}}, + {{0x17b5c,6},{0xe22,2}}, {{0x2be3,5},{0x146d,9}}, {{0xdd44,6},{0x1150,2}}, {{0x11871,6},{0x1244,3}}, + {{0x5534,4},{0xf16,2}}, {{0xf7a,2},{0x1302,5}}, {{0x13168,7},{0xec6,3}}, {{0x1567,3},{0xe78,1}}, + {{0xe1f,3},{0x1e2ed,2}}, {{0x4853,3},{0x1bef,2}}, {{0x113c,3},{0x766f,4}}, {{0xf29f,6},{0xe71,1}}, + {{0x7b2d,7},{0xebb,3}}, {{0x7b51,4},{0xe11,1}}, {{0x1f38,1},{0x12a3,3}}, {{0x1f52,10},{0xec6,3}}, + {{0x12d4,3},{0xe60,2}}, {{0x3642,2},{0x9cad,4}}, {{0x4765,3},{0xe0b,2}}, {{0x2d11,3},{0x1025,1}}, + {{0x1467,4},{0xe1c,3}}, {{0x9ff9,7},{0x153a,3}}, {{0x73ed,4},{0x9511,5}}, {{0x12e5,3},{0x4574,3}}, + {{0x1dea,6},{0xe69,5}}, {{0x1344c,5},{0x1523,4}}, {{0x277e,2},{0xe71,1}}, {{0xb925,8},{0xfdd,4}}, + {{0x48d3,2},{0x442d,1}}, {{0xe21,1},{0x4516,3}}, {{0x1ebc,6},{0x57a0,4}}, {{0xe33,1},{0xf50,3}}, + {{0x181b,3},{0x2e2c,3}}, {{0x115a,3},{0xeee,3}}, {{0x9d1d,9},{0xf91,3}}, {{0x2d87,6},{0x5dd0,3}}, + {{0x1711e,4},{0x1632,5}}, {{0xcbd,1},{0xdc6f,4}}, {{0x4781,3},{0xfc7,3}}, {{0xb7a5,5},{0x162c,3}}, + {{0x20549,2},{0x2ba5,1}}, {{0x10a3,3},{0x5,1}}, {{0x4383,5},{0x1790,3}}, {{0x131e0,7},{0xe11,1}}, + {{0x10a3,3},{0x10cb,3}}, {{0x442b,3},{0x4618,3}}, {{0xed5,4},{0xebb,3}}, {{0x2de51,3},{0x666,2}}, + {{0xedd,1},{0xe7a,1}}, {{0xe1f,3},{0x2158c,4}}, {{0x329d,5},{0xeea,3}}, {{0xcc6,2},{0x6,1}}, + {{0x4853,3},{0x1ce76,5}}, {{0xe22,2},{0xebb,3}}, {{0x12704,6},{0xfdd,4}}, {{0xb3f1,3},{0x2af9f,2}}, + {{0xcc1,1},{0xfa5e,4}}, {{0xbc7b,5},{0x9ff4,5}}, {{0x2d38f,4},{0xe19,1}}, {{0x391f,5},{0xe0c,3}}, + {{0x181b,3},{0xec6,3}}, {{0x478f,3},{0x260e9,2}}, {{0x1257e,5},{0x1722,5}}, {{0x141a,2},{0xcc3,2}}, + {{0x4199,5},{0x1cec9,4}}, {{0x125d,8},{0xeee,3}}, {{0x1c28,5},{0x28f8,5}}, {{0x4599,3},{0x4,1}}, + {{0xf0a,3},{0x442d,1}}, {{0x118b3,5},{0x1de7,3}}, {{0xe1f,3},{0x22a3,2}}, {{0x206,2},{0x57,1}}, + {{0x55,2},{0x7b,1}}, {{0x4781,3},{0x16fff,3}}, {{0x2e235,4},{0x8d,1}}, {{0x18e7,10},{0xe69,5}}, + {{0x254e3,5},{0x23d2,3}}, {{0xb1f9,6},{0x38ee,5}}, {{0x1ebf,3},{0x57a0,4}}, {{0x17146,4},{0x126a4,6}}, + {{0x112b,4},{0x990b,4}}, {{0x4899,7},{0x6f3b,6}}, {{0x19b7,5},{0xe61,2}}, {{0x8c55,8},{0xeee,3}}, + {{0xc6ec,5},{0xec6,3}}, {{0x281e,6},{0x1663,4}}, {{0xe19,1},{0x15d1,5}}, {{0x1a07,3},{0x1bef,2}}, + {{0xcbd,1},{0x23d0,5}}, {{0x29f3,3},{0x4,1}}, {{0xcc7,1},{0xf16,2}}, {{0x1969,1},{0x1e3b,4}}, + {{0x2948,3},{0x74f5,2}}, {{0x185c4,4},{0xcc3,2}}, {{0x46af,3},{0xe30,3}}, {{0x127f,3},{0x120f,3}}, + {{0x4f91,5},{0x1ce6,5}}, {{0x124c,6},{0x1e40,4}}, {{0x1dfb,4},{0xe92,3}}, {{0x7f41,4},{0xdc6f,4}}, + {{0x595e,6},{0xf91,3}}, {{0x58f6,7},{0x2f4a,4}}, {{0xe80,2},{0x120b,4}}, {{0x11b73,5},{0xe80,2}}, + {{0x29c0,3},{0x4,1}}, {{0xe71,1},{0x1dc3,7}}, {{0xf9b,5},{0xf59,3}}, {{0xf0a,3},{0x2bb2,3}}, + {{0x112b,4},{0x8459,4}}, {{0xff6d,7},{0x1523,4}}, {{0x2a94,4},{0xeee,3}}, {{0x3bcd,4},{0x1a98,6}}, + {{0x113c,5},{0x6e53,4}}, {{0x27e0,3},{0x6cc7,8}}, {{0x105f,3},{0xfb8,3}}, {{0x1ca54,6},{0xf86,2}}, + {{0x1170f,7},{0x3555,4}}, {{0xfe6,2},{0xe11,1}}, {{0xcd3,2},{0x45f2,2}}, {{0x2e235,4},{0xe,1}}, + {{0x5534,4},{0xdaf6,7}}, {{0xcc3,2},{0x10cc,2}}, {{0x1e961,4},{0xcd3,2}}, {{0x69df,9},{0xe6b,3}}, + {{0x442b,3},{0xb396,2}}, {{0x200b9,7},{0xcbf,2}}, {{0x1189d,4},{0xf16,2}}, {{0x77e5,4},{0x1f7c,3}}, + {{0x1977,3},{0x2f598,2}}, {{0x116f,8},{0x1177,9}}, {{0x10afc,6},{0x10b23,5}}, {{0xe0f,1},{0x4461,2}}, + {{0xef7,3},{0x10a6,2}}, {{0x6b8c,5},{0xddb9,4}}, {{0x1967,3},{0x1303,3}}, {{0x40d5,6},{0x3b4a,5}}, + {{0x520e,5},{0xcd3,1}}, {{0x17c92,5},{0x8a70,5}}, {{0x24f4,3},{0x775c,4}}, {{0x453b,4},{0xec6,3}}, + {{0x44f1,3},{0x1f38,4}}, {{0xe67,2},{0x538f,5}}, {{0x4791,2},{0x16ad,3}}, {{0x308f7,3},{0x205a1,1}}, + {{0x4137,5},{0x1132,2}}, {{0xc7ff,5},{0xed6,2}}, {{0x1be,2},{0x45,1}}, {{0xe5b,3},{0xcd3,2}}, + {{0x8fd9,5},{0x8fea,6}}, {{0x16519,4},{0x2b7a,3}}, {{0x12b2,5},{0xfc87,5}}, {{0x9099,8},{0xe0b,4}}, + {{0x6bda,6},{0xf79,3}}, {{0x1ff7,3},{0xf0f,2}}, {{0x29cf,3},{0x20fbd,4}}, {{0x2e487,3},{0xfcb,2}}, + {{0x18fc2,3},{0xabc5,3}}, {{0x1b2e,3},{0xe67,2}}, {{0x125d,6},{0x2651,7}}, {{0xcd1,2},{0x11b5,2}}, + {{0x9a8,1},{0xec0,3}}, {{0x2dbf,5},{0xe71,1}}, {{0x111a,3},{0xe22,3}}, {{0x7414,3},{0xcc5,2}}, + {{0x12f6,4},{0xcbf,2}}, {{0x29d4,4},{0x1783,4}}, {{0x2c85,2},{0xe0d,2}}, {{0x8241,8},{0x1004,3}}, + {{0xe97,3},{0x23fde,5}}, {{0x29cf,3},{0x2ea14,2}}, {{0xe6f,4},{0x22b2,3}}, {{0x248ff,3},{0x442d,1}}, + {{0x44ef,5},{0x4dcf,6}}, {{0x455f,5},{0x13e3,4}}, {{0x572f,7},{0x2790,5}}, {{0x7974,4},{0xec6,3}}, + {{0x9dd1,6},{0xf72,5}}, {{0xfe3,4},{0xe0f9,3}}, {{0x2a47,3},{0xe16,1}}, {{0xcc1,1},{0xf02,2}}, + {{0xcc7,1},{0x15399,2}}, {{0x17178,5},{0x10b9,3}}, {{0x848d,8},{0xe78,2}}, {{0x4e18,8},{0xe7f,2}}, + {{0x111a,7},{0x11ad,3}}, {{0x2a83,4},{0xcce,2}}, {{0x2231,12},{0xebb,3}}, {{0xa149,9},{0x1be9,3}}, + {{0x1008b,6},{0x15fe,4}}, {{0xf0f,2},{0x1fc7,3}}, {{0x46af,3},{0x951c,3}}, {{0x9645,8},{0x964d,4}}, + {{0x3a0d,4},{0x1153,2}}, {{0x4853,3},{0x181b,3}}, {{0xf0f,2},{0xcd3,1}}, {{0x809a,3},{0xe09,1}}, + {{0x2858,5},{0x1040,3}}, {{0x123b,7},{0x6,2}}, {{0x6c83,10},{0x15e9,3}}, {{0x77bc,4},{0x2d8d,3}}, + {{0xcc1,2},{0x2236,3}}, {{0x1ff7,3},{0x1b80,3}}, {{0x14a7,4},{0x60c2,6}}, {{0x29c0,3},{0x27782,4}}, + {{0x4781,3},{0x3da2,7}}, {{0x2de3f,3},{0xab1,1}}, {{0xe87,2},{0x8,4}}, {{0x3fbd,9},{0x318e,5}}, + {{0xf0c,1},{0x10edd,7}}, {{0x18cb4,6},{0x6bd6,4}}, {{0x2d79,4},{0xcb33,4}}, {{0x23a9b,5},{0xe0d,2}}, + {{0x33b5,10},{0xec3,3}}, {{0x18ee,3},{0xe5e,2}}, {{0x1967,3},{0xd086,3}}, {{0x9a9a,5},{0xf35,2}}, + {{0xede,1},{0xf1a,2}}, {{0x29cf,3},{0xe6c,3}}, {{0x1702,4},{0xf86,3}}, {{0x434b,9},{0x1dc7,5}}, + {{0xf4f,1},{0xff70,4}}, {{0x2b9d,3},{0xf63,2}}, {{0x101f,3},{0xf91,3}}, {{0x27dde,5},{0xf63,2}}, + {{0xdb1e,5},{0xf7a,2}}, {{0x6cde,4},{0xefb,3}}, {{0x10a3,3},{0xf1d,1}}, {{0x13672,8},{0xe95,2}}, + {{0xe2f,1},{0xcc9,2}}, {{0xfb0,2},{0xf91,3}}, {{0x3089,5},{0x308e,5}}, {{0xe5b,3},{0x5342,4}}, + {{0x135e6,6},{0x3caa,3}}, {{0x2696,7},{0x6a0f,4}}, {{0x2075,3},{0xcdda,2}}, {{0x15e7,5},{0x122d,2}}, + {{0x11502,4},{0x22a2,4}}, {{0x1dae,6},{0x1db4,4}}, {{0x28d0,4},{0x87a0,5}}, {{0x3,1},{0x4e12,2}}, + {{0x7d31,5},{0xe78,1}}, {{0x3e51,7},{0x167f,7}}, {{0x1967,3},{0x48d3,2}}, {{0xb69d,4},{0x4a01,3}}, + {{0x55,2},{0xe,1}}, {{0xcc8,1},{0x9a8,1}}, {{0xf0a,3},{0xcb7,2}}, {{0x4c5e,8},{0xe69,5}}, + {{0x2df3b,4},{0x45,1}}, {{0x4383,5},{0x3155,6}}, {{0x7d31,5},{0x8,1}}, {{0x532c,9},{0xe6b,4}}, + {{0x8ca9,10},{0xe95,2}}, {{0xebe,4},{0x60f3,7}}, {{0x9351,5},{0x168f,2}}, {{0x1be,2},{0x3be,2}}, + {{0xf12,3},{0xed6,2}}, {{0x1e53,7},{0x8459,4}}, {{0x49a6,3},{0xe0d,2}}, {{0x4871,2},{0xeab,2}}, + {{0x81a5,6},{0x2091,4}}, {{0x10e2,3},{0xe7f,2}}, {{0x115e,7},{0x3694,7}}, {{0x18c50,5},{0x237d,2}}, + {{0x7414,3},{0x1054a,5}}, {{0x115e,7},{0x2085,8}}, {{0x7414,3},{0xeb5,2}}, {{0x478f,3},{0x583b,5}}, + {{0xe0f,2},{0xe78,1}}, {{0x5430,6},{0x103e,5}}, {{0x111a,7},{0x5256,6}}, {{0xebe,5},{0xf86,2}}, + {{0x1807,6},{0xf1a,2}}, {{0x1e544,6},{0x1a70e,3}}, {{0x1889,2},{0xcd3,1}}, {{0xe83,5},{0x365c,7}}, + {{0x2d773,4},{0x1f875,1}}, {{0x41bc,4},{0xec6,3}}, {{0xf89,5},{0x1749,3}}, {{0xcc1,1},{0xe89,2}}, + {{0x1367,3},{0xdb21,3}}, {{0x10d3,3},{0xcc3,2}}, {{0x27e0,3},{0xfb0,3}}, {{0x171e6,5},{0x33d3,2}}, + {{0x12c3,11},{0x10f2,5}}, {{0x2385b,6},{0xe0a,1}}, {{0x1967,3},{0xe19,1}}, {{0x11e49,5},{0x11e4e,6}}, + {{0x55,2},{0x21,1}}, {{0xe282,6},{0x3c9a,5}}, {{0xf22,2},{0xce96,4}}, {{0xb67b,3},{0x546a,7}}, + {{0x4781,3},{0x11187,2}}, {{0xec3,3},{0xfdd,4}}, {{0x2ba5,1},{0x1969,1}}, {{0x12e5,3},{0x2280,2}}, + {{0x12e5,3},{0x28504,4}}, {{0xe6a2,6},{0x1265,5}}, {{0x9,2},{0x12a83,5}}, {{0x29cf,3},{0x1e65,3}}, + {{0x3c9f,9},{0xcd3,2}}, {{0x17ca6,5},{0x7d1f,3}}, {{0xf65,4},{0xa766,7}}, {{0x110b3,7},{0x59b4,3}}, + {{0x18f7,7},{0xccd,4}}, {{0x1c37,9},{0xfdd,6}}, {{0x31f8,3},{0xe11,1}}, {{0x10a3,3},{0x1663,4}}, + {{0xccd,1},{0xe09,1}}, {{0x1827,4},{0x9a8,1}}, {{0x10aa4,7},{0xe11,1}}, {{0x10f32,5},{0x6bd6,4}}, + {{0x46af,3},{0xe65,2}}, {{0x19e7,5},{0xe67,2}}, {{0xcbd,1},{0x44b2,5}}, {{0xef7,3},{0x6479,4}}, + {{0x16340,6},{0xcc8,3}}, {{0x2e27d,1},{0x205a7,1}}, {{0x3f5b,9},{0xcc9,2}}, {{0x591d,5},{0xd1e7,5}}, + {{0x8cdf,3},{0x9,1}}, {{0x1677,3},{0x14e73,5}}, {{0xe83,3},{0x1d7e,3}}, {{0x18200,6},{0x1892,4}}, + {{0xe5b,3},{0x51c8,5}}, {{0x138e,2},{0x1085,3}}, {{0x19b9,1},{0x11287,5}}, {{0xcb8,1},{0xeee,3}}, + {{0x3567,8},{0x18b2,5}}, {{0x14f7,5},{0xf7a,2}}, {{0xe71,1},{0xb410,4}}, {{0xe6f,3},{0xb,1}}, + {{0x1153,2},{0x6031,5}}, {{0x2e26b,3},{0x1357,1}}, {{0x1943,2},{0xe0a,1}}, {{0xe31,2},{0x309c,4}}, + {{0x1fe8,5},{0x1214,3}}, {{0x1e9e,5},{0xd58c,5}}, {{0x18fc2,3},{0xf24,2}}, {{0x98a9,8},{0xeed,4}}, + {{0x662a,6},{0x7bd9,4}}, {{0xe71,1},{0x10d3,3}}, {{0x24623,5},{0x2,1}}, {{0x12e5,3},{0x2b86,4}}, + {{0x1290,4},{0x1050,4}}, {{0x1dee,2},{0x6,1}}, {{0x105f,3},{0x3317,4}}, {{0x14a2,3},{0x4a86,4}}, + {{0x824d,4},{0xcd3,1}}, {{0x10a2b,7},{0xe6b,4}}, {{0xe09,1},{0x1ebf,3}}, {{0x12bdc,6},{0x1894,3}}, + {{0x1897,5},{0xef08,6}}, {{0x953d,6},{0xcc9,2}}, {{0x2eb3a,3},{0x205a1,1}}, {{0x1ca0,5},{0x1ca5,8}}, + {{0x15940,6},{0x1059,3}}, {{0x124c,6},{0x546a,7}}, {{0x418b,7},{0x12a9,3}}, {{0x254eb,5},{0x1ea3,3}}, + {{0x11654,5},{0x310f,6}}, {{0x1081,4},{0x1a63,3}}, {{0x5f42,7},{0xfef,6}}, {{0x114d,5},{0x1bc3,3}}, + {{0x17fee,5},{0x249f,3}}, {{0x18426,5},{0x1150,2}}, {{0x113e1,5},{0x1ed20,4}}, {{0xe97,3},{0x1a101,4}}, + {{0xaaf,2},{0xb74,8}}, {{0x1677,3},{0xe4ab,4}}, {{0x11963,8},{0x1085,3}}, {{0x2e21d,4},{0x314,2}}, + {{0x2a29,5},{0x8,1}}, {{0x10a3,3},{0xc3d0,3}}, {{0x1a17,5},{0xe89,2}}, {{0x19e7,5},{0x10b9,2}}, + {{0x19e9,4},{0x5710,5}}, {{0xe5b,3},{0x1252,3}}, {{0x17312,5},{0x1f9f,3}}, {{0x30f51,2},{0x308a3,2}}, + {{0x115e,7},{0xe6f6,4}}, {{0x2a47,3},{0x413e,4}}, {{0xebf6,7},{0x6,2}}, {{0x10d22,8},{0xe11,1}}, + {{0x12ba,4},{0xec6,3}}, {{0x11a55,5},{0x142d,3}}, {{0x7d3d,6},{0x6bd6,4}}, {{0x1019,4},{0x37c8,5}}, + {{0x1019,6},{0xcc7,1}}, {{0x1189d,4},{0x1372,4}}, {{0xe2b,2},{0xccaa,4}}, {{0x1027a,7},{0xec6,3}}, + {{0xc88e,6},{0x2872,4}}, {{0x1a66,1},{0xe77,3}}, {{0xe4df,6},{0xcce,2}}, {{0xe21,1},{0x1969,1}}, + {{0x1a66,1},{0x74f3,2}}, {{0x2df3b,4},{0x59a,2}}, {{0xf4f,1},{0x17661,2}}, {{0xe7a,2},{0x19419,5}}, + {{0xf77,5},{0xeb5,2}}, {{0x46af,3},{0x11d2,3}}, {{0xb331,7},{0x1523,4}}, {{0x5471,9},{0xe0b,4}}, + {{0x5,1},{0xf1a,2}}, {{0x16692,6},{0x166a2,4}}, {{0xe0d,2},{0xa,2}}, {{0x331f,3},{0x4,1}}, + {{0xf15,1},{0xcce,2}}, {{0xf15,1},{0x4bfa,3}}, {{0x30f51,2},{0x18efa,2}}, {{0x6234,8},{0x1663,4}}, + {{0xfe3,4},{0x142a,3}}, {{0xd83d,6},{0x1265,5}}, {{0xf25d,7},{0xe0b,4}}, {{0x179c2,6},{0x2872,4}}, + {{0xc93e,6},{0x13e2,4}}, {{0x10b9,2},{0xed6,2}}, {{0xe97,3},{0xf0d,2}}, {{0x7414,3},{0x149f,3}}, + {{0xca88,8},{0xcc9,2}}, {{0xe31,2},{0xe0a,1}}, {{0x1d65,3},{0x6,1}}, {{0x4765,3},{0xd002,4}}, + {{0x1d54,6},{0x2f26,5}}, {{0x13974,7},{0xed6,2}}, {{0x17e7,9},{0x1c1d,4}}, {{0x5863,3},{0xf1a,2}}, + {{0x2de7b,3},{0x260,2}}, {{0x1f687,5},{0x1056b,4}}, {{0xf1a,2},{0xe86,2}}, {{0x506e,9},{0xe11,1}}, + {{0x4853,3},{0xe0f,1}}, {{0x628f,6},{0x1440,7}}, {{0x1a7b3,5},{0x23d2,3}}, {{0x19a7,4},{0x17b1b,3}}, + {{0x434b,5},{0x227f,3}}, {{0x4fb8,4},{0x2075,3}}, {{0xfcb,2},{0xe69,6}}, {{0x27e0,3},{0x1085,3}}, + {{0x127f,4},{0x6,2}}, {{0xecb,2},{0x2d11,3}}, {{0x1687,4},{0xec0,3}}, {{0xe32,1},{0xcd3,2}}, + {{0xf59,2},{0xa,2}}, {{0x4979,4},{0xf82,7}}, {{0xb391,5},{0x1d982,4}}, {{0xf9f8,5},{0xf9fd,6}}, + {{0x19b7,3},{0x19b9,1}}, {{0x3c67,7},{0xe1fa,4}}, {{0x3d71,8},{0xfef,6}}, {{0x4e18,6},{0x1244,7}}, + {{0xe32,1},{0xe65,2}}, {{0xe32,1},{0x7a14,5}}, {{0x1967,3},{0x218c4,5}}, {{0x2487b,7},{0xe11,1}}, + {{0x28fd3,5},{0x26768,2}}, {{0x426b,8},{0x27dc,4}}, {{0x1bbf,5},{0x4c15,4}}, {{0xcc1,2},{0xcc9,2}}, + {{0x1747,4},{0xed6,2}}, {{0x10e7,5},{0xa1e1,4}}, {{0x1231,4},{0x59b4,3}}, {{0x8829,8},{0x18b4,3}}, + {{0x5117,5},{0xcc9,2}}, {{0x12e5,3},{0x2,1}}, {{0x34b1,5},{0xe38f,6}}, {{0x10361,6},{0x4fa8,3}}, + {{0x1745c,6},{0x3976,3}}, {{0xeb0f,7},{0x1b41,4}}, {{0xe8a,2},{0xcbd,1}}, {{0x55,2},{0x69,1}}, + {{0x97e9,10},{0xe95,2}}, {{0xea6a,7},{0x1059,3}}, {{0x27e0,3},{0x28b7,5}}, {{0x2a47,3},{0x2f41,5}}, + {{0x1e57c,3},{0x26943,4}}, {{0x11b73,5},{0x1772,5}}, {{0xedd,1},{0xede,1}}, {{0xe3d,4},{0x2e79a,2}}, + {{0x73ed,4},{0xcbf,2}}, {{0x2501,6},{0xce8e,4}}, {{0xe08,1},{0x2176,4}}, {{0x17be8,5},{0x9,1}}, + {{0x46bf,1},{0xf0c,1}}, {{0x5903,5},{0xf63,2}}, {{0x2251,5},{0xcc9,2}}, {{0xcc1,1},{0x309c,4}}, + {{0xcc7,1},{0x2d1f,3}}, {{0xcc7,1},{0xf8e,3}}, {{0x2b500,6},{0x2afc8,2}}, {{0x4853,3},{0xf16,2}}, + {{0x532c,9},{0xe6b,3}}, {{0x2015,3},{0x4227,3}}, {{0x10d64,7},{0x8441,4}}, {{0x17f44,6},{0x10d3,3}}, + {{0xff20,5},{0x1cb28,4}}, {{0xb7d5,5},{0x1244,7}}, {{0x1081,5},{0x1f38,4}}, {{0x11b3,5},{0xe95,2}}, + {{0xa659,5},{0xfa4a,6}}, {{0x19b7,3},{0xe08,1}}, {{0x478f,3},{0x7e55,4}}, {{0x1967,3},{0xcce,2}}, + {{0x5e4b,6},{0x3976,3}}, {{0xcc4,2},{0x141a,2}}, {{0xb8e3,3},{0x2b7a,3}}, {{0x3d39,5},{0xd8c7,5}}, + {{0x1ab1c,5},{0xce83,4}}, {{0x4781,3},{0xf4f,1}}, {{0xc295,4},{0xfb0,3}}, {{0x9a6,1},{0x1e1b,3}}, + {{0x2b75,2},{0x1fbe,3}}, {{0x8835,5},{0x9b99,3}}, {{0x114d,5},{0x1451d,5}}, {{0x1766a,2},{0x1e2f0,2}}, + {{0x10e7,5},{0x5538,2}}, {{0x473b,5},{0x37aa,9}}, {{0x12baa,7},{0x3bff,3}}, {{0xfdd,4},{0xe11,1}}, + {{0x1847,4},{0xe8a,2}}, {{0x6f1a,5},{0x527c,7}}, {{0x307f,5},{0xe69,5}}, {{0x4781,3},{0x1d65,3}}, + {{0x143f6,7},{0x1040,3}}, {{0x111a,3},{0xe1c,3}}, {{0x73e0,7},{0x1de7,3}}, {{0x127f,3},{0x7998,4}}, + {{0x13a7,5},{0x13dc,5}}, {{0xc05d,5},{0xfe6,2}}, {{0xac65,6},{0x174b,3}}, {{0xf,1},{0x512,2}}, + {{0xfb0,3},{0x4b15,4}}, {{0x1e6fd,5},{0x27dc,4}}, {{0xe5b,3},{0x775c,4}}, {{0xbab1,8},{0x10e3,4}}, + {{0x1a17,5},{0x1a3b6,4}}, {{0x12d4,3},{0x2252,3}}, {{0xc26d,8},{0x2b4fe,2}}, {{0x3521,4},{0x2560,4}}, + {{0x12e5,3},{0x2675d,2}}, {{0x12e5,3},{0xcb6,3}}, {{0xe6f,3},{0x124cf,5}}, {{0x62c3,7},{0x6cb4,3}}, + {{0xedd,1},{0x10ba,6}}, {{0xc069,5},{0xae92,5}}, {{0x24003,5},{0x2d7c,3}}, {{0x115e,5},{0xfb8,3}}, + {{0x1969,1},{0x1dfc,3}}, {{0xe16,1},{0xe0f,1}}, {{0xe3cc,7},{0x156a,3}}, {{0x8e41,9},{0xe6b,3}}, + {{0x27e0,3},{0x1189,3}}, {{0xccd,1},{0x910c,4}}, {{0x5,1},{0x1303,3}}, {{0x751a,2},{0x1b01,4}}, + {{0xcc8,1},{0x77bf,5}}, {{0xcd3,2},{0x2091,4}}, {{0xf0a,3},{0x1150,3}}, {{0x1817,4},{0x1d75,3}}, + {{0x73ed,4},{0xee8,2}}, {{0x12c3,4},{0x134d2,5}}, {{0xd,2},{0x7b,1}}, {{0x105f,3},{0x10e51,4}}, + {{0x5f69,8},{0xe92,3}}, {{0x4c03,8},{0xfa6,3}}, {{0x2bd5,4},{0x4,1}}, {{0x3d71,8},{0x1773,4}}, + {{0xf91,3},{0xcc9,2}}, {{0x1ebf,3},{0xbf50,4}}, {{0xc015,4},{0x18c0e,6}}, {{0x1019,4},{0x4524,3}}, + {{0x58a8,5},{0xe7f,2}}, {{0x4853,3},{0x20fbd,4}}, {{0xfe3,9},{0x1770,7}}, {{0x58f6,9},{0x1004,3}}, + {{0xed5,3},{0xec6,3}}, {{0x111a,3},{0x3bee,5}}, {{0xee64,4},{0xe11,1}}, {{0x10c04,5},{0x348b,5}}, + {{0x101e,4},{0xcc9,2}}, {{0x19c7,7},{0x1059,3}}, {{0x2d95,5},{0xccd,1}}, {{0x55,2},{0x57,1}}, + {{0x11ad9,5},{0x1cd6,6}}, {{0xfcb,2},{0xfdf,4}}, {{0x87bd,9},{0xec6,3}}, {{0x16052,6},{0x2,2}}, + {{0x2e223,4},{0xe,1}}, {{0xcc1,2},{0x4a5f,4}}, {{0x8c01,8},{0x59b4,3}}, {{0x951c,3},{0x13e4,3}}, + {{0x19a57,7},{0xe11,1}}, {{0x12d4,3},{0x2690c,2}}, {{0xe43a,6},{0xe440,5}}, {{0x48a9,3},{0x1288,4}}, + {{0x125d,7},{0x2ca3,4}}, {{0x12e,2},{0x45,1}}, {{0x6519,6},{0x1d7d,3}}, {{0xcc8,1},{0x149f,3}}, + {{0x7af1,7},{0xe0b,4}}, {{0x16944,5},{0xe11,1}}, {{0x17f5a,4},{0xb,1}}, {{0x16282,7},{0x1392,3}}, + {{0x1467,4},{0x810e,3}}, {{0x34b1,6},{0x2075,3}}, {{0x4cc6,6},{0x12a2a,4}}, {{0xc2ed,7},{0x8913,3}}, + {{0x12e5,3},{0x29bfe,2}}, {{0xf0c,1},{0x6,2}}, {{0x1cf0c,6},{0xe11,1}}, {{0x4781,3},{0x4b96,5}}, + {{0x2e235,4},{0x57,1}}, {{0x12e5,3},{0xe0b,4}}, {{0x3de1,5},{0xef5,2}}, {{0x2966,5},{0x1de5c,4}}, + {{0x518c,9},{0xec6,3}}, {{0x127f,3},{0xb19c,4}}, {{0xf77,3},{0x11b5,2}}, {{0x1d65,3},{0xf0f,2}}, + {{0x79d1,10},{0xf7a,2}}, {{0xe2f,1},{0x1601,3}}, {{0x16808,3},{0xe0d,2}}, {{0x4,1},{0xcd3,1}}, + {{0x12f6,4},{0x1ffa,4}}, {{0x79c5,4},{0x19149,5}}, {{0x2e271,3},{0xb74,1}}, {{0x1ff7,3},{0x22a2,7}}, + {{0xd13c,5},{0xed5,3}}, {{0xbdb1,8},{0x6cb4,3}}, {{0x19b9,1},{0x2252,3}}, {{0x1ba43,5},{0x10cd,2}}, + {{0xe83,3},{0xe0a,1}}, {{0x22623,6},{0xe11,1}}, {{0x5f22,3},{0x1b9d,4}}, {{0x3a45,5},{0x23d0,5}}, + {{0xf1a,2},{0xe7f,2}}, {{0xf15,1},{0x181b,3}}, {{0xf79,3},{0x149c,3}}, {{0x1830,3},{0xe7f,2}}, + {{0x105f,3},{0x19283,6}}, {{0x1007,5},{0xf1d,2}}, {{0x7989,6},{0xe95,2}}, {{0x101f,2},{0xec3,3}}, + {{0x1ff7,3},{0xec6,4}}, {{0x3123,6},{0x3129,7}}, {{0xe11,2},{0x120f,3}}, {{0x9a9,2},{0xfd3,4}}, + {{0xf0a,5},{0x8,1}}, {{0xcc7,1},{0x101f,2}}, {{0x9a8,1},{0xed7d,5}}, {{0xf77,4},{0x1364e,4}}, + {{0xe2b,2},{0x10f4,4}}, {{0x33ed,5},{0xe77,3}}, {{0x488b,5},{0xf1a,2}}, {{0x29cf,3},{0xead,3}}, + {{0x1a27,4},{0x2017,4}}, {{0x1a29a,6},{0x2e2c,3}}, {{0x4aff,6},{0x83bc,5}}, {{0x2,1},{0xcd3,1}}, + {{0x1577,7},{0x9389,4}}, {{0x181b,3},{0xe86,2}}, {{0x4847,6},{0x1fc7,3}}, {{0x2e223,4},{0x9f,1}}, + {{0x4765,3},{0x181b,3}}, {{0x7f41,4},{0xfdf,3}}, {{0x1367,3},{0x8666,2}}, {{0x44c5,6},{0x6176,4}}, + {{0xede,1},{0xf0c,1}}, {{0x29cf,3},{0xe104,3}}, {{0xe78,1},{0x9a6,1}}, {{0xf93,5},{0x10d3,3}}, + {{0x15a58,6},{0xe6c,3}}, {{0x440f,9},{0xe69,5}}, {{0x5,1},{0x1177,7}}, {{0x9a8,1},{0xfbb,4}}, + {{0x111a,3},{0x1363b,5}}, {{0x2a47,3},{0x1855f,7}}, {{0x36a9,8},{0x7955,4}}, {{0xf77,5},{0xeee,3}}, + {{0x4287,7},{0xe717,4}}, {{0x317b8,2},{0x18ed6,2}}, {{0x2d11,3},{0xcbd,1}}, {{0x125d,8},{0xe2b,4}}, + {{0x11234,6},{0x17b94,4}}, {{0x44c5,5},{0x96c4,4}}, {{0xcc1,1},{0x10b8,2}}, {{0xe97,3},{0x113f,2}}, + {{0x3bbf,8},{0xfdd,6}}, {{0x1577,7},{0x6a0f,4}}, {{0xee4,4},{0x86bb,6}}, {{0xcd3,2},{0x1120,2}}, + {{0x496c,5},{0xc4cb,6}}, {{0x2939,4},{0xe24,3}}, {{0x77c9,4},{0x26427,4}}, {{0xf0f,2},{0x2280,2}}, + {{0x10efb,5},{0xe78,1}}, {{0xccd,1},{0x17dd9,3}}, {{0x28d0,5},{0xe133,5}}, {{0x1131,3},{0xffc,3}}, + {{0x4781,3},{0x116fc,8}}, {{0x2d11,3},{0x6,1}}, {{0xe8a,2},{0x4434,5}}, {{0x112b,9},{0x18b4,3}}, + {{0x7d41,3},{0xe11,1}}, {{0x478f,3},{0xe92,3}}, {{0xfa5,2},{0xe0a,1}}, {{0x2de75,3},{0x1347,3}}, + {{0x19b9,1},{0xec3,3}}, {{0xc6f7,4},{0x2075,3}}, {{0xcc1,1},{0x1303,3}}, {{0x29cf,3},{0xab9f,3}}, + {{0x1081,5},{0x111c,2}}, {{0x79c5,4},{0xcc9,2}}, {{0x7414,3},{0x121c,3}}, {{0x7911,3},{0x20a4,3}}, + {{0x8811,7},{0x4116,5}}, {{0x70ad,6},{0x70b3,7}}, {{0x21941,6},{0xe11,1}}, {{0x1db00,5},{0x4eeb,4}}, + {{0x1d0,2},{0x69,1}}, {{0x1e274,8},{0xe11,1}}, {{0x1849,3},{0x12a3,3}}, {{0x2036e,4},{0xf15,1}}, + {{0x1ebe,3},{0x2e7d,6}}, {{0xe2f,1},{0x12397,6}}, {{0x1f38,1},{0xcbd,1}}, {{0x1a02d,6},{0xeca,3}}, + {{0xb958,5},{0x1025,1}}, {{0x4773,4},{0x9498,5}}, {{0x1a66,1},{0xccb,2}}, {{0xf0a,3},{0x148a,3}}, + {{0xaaf,2},{0xaf4,32}}, {{0x4,1},{0x4e12,2}}, {{0xc2,2},{0xf,1}}, {{0x1a71a,6},{0xe11,1}}, + {{0x8409,8},{0x58ff,4}}, {{0x2cf91,2},{0x442d,1}}, {{0x1b50f,6},{0xe11,1}}, {{0x31955,2},{0x9b5,2}}, + {{0xe0f,2},{0xe11,1}}, {{0x19b7,3},{0x16ad,3}}, {{0x1ab1,5},{0x1ab6,6}}, {{0xcd6,2},{0xcd6,1}}, + {{0x10cc,2},{0xeb4,2}}, {{0x4287,5},{0x1054a,6}}, {{0xfa50,5},{0x189f,3}}, {{0xe6f,3},{0xe5e,2}}, + {{0x1fdce,7},{0x1150,2}}, {{0x6cde,4},{0x70a6,3}}, {{0x2a47,3},{0xe87,2}}, {{0xd6d2,6},{0xd6d8,5}}, + {{0x113f,2},{0xfa5,2}}, {{0x10e2a,4},{0x20fbd,4}}, {{0x2948,3},{0x13041,4}}, {{0x1dee,2},{0x8,1}}, + {{0x12d4,3},{0x2d979,2}}, {{0xf25d,7},{0xe11,1}}, {{0x1ceb,6},{0x1722,5}}, {{0x19c7,7},{0x1510,7}}, + {{0x11003,7},{0xe6b,4}}, {{0x4767,1},{0x1f168,6}}, {{0xf65,3},{0xcd3,3}}, {{0x8abd,9},{0x18b4,3}}, + {{0x1179e,5},{0x1ea3,3}}, {{0x7378,6},{0x8b30,4}}, {{0xf1d,1},{0x6,1}}, {{0x4853,3},{0xe25,2}}, + {{0x29cf,3},{0x5342,4}}, {{0x1050,4},{0xf72,5}}, {{0x9a41,5},{0xef5,2}}, {{0xe11,1},{0x1693,3}}, + {{0x1a07,3},{0x2de2a,3}}, {{0x1089f,7},{0xf91,3}}, {{0xe1f,3},{0x9b99,3}}, {{0x15d7,8},{0x431c,5}}, + {{0x19b7,3},{0x4618,3}}, {{0x2489,5},{0xcc3,2}}, {{0x114e9,6},{0x12a9,5}}, {{0x2623,4},{0x21a5,5}}, + {{0x2e235,4},{0xd,1}}, {{0x3fbd,9},{0xe11,1}}, {{0xf4f,1},{0xe0a,1}}, {{0x19b7,3},{0x65ec,5}}, + {{0x2588,11},{0x18b4,3}}, {{0x4853,3},{0xeee,3}}, {{0x27e0,4},{0x181b,3}}, {{0x256a3,5},{0xe11,1}}, + {{0xcd3,3},{0x8,1}}, {{0x753f,6},{0x1b0d,3}}, {{0x41b5,5},{0x320d,3}}, {{0x22bd,3},{0x1523,4}}, + {{0x1b425,8},{0xe11,1}}, {{0x105f,3},{0xe67,2}}, {{0x103da,6},{0x3c9a,5}}, {{0x1877,10},{0xe92,5}}, + {{0x18b10,7},{0x6,1}}, {{0x8421,6},{0x8427,4}}, {{0x2f9d4,4},{0xf4f,1}}, {{0x3e51,7},{0x240b,5}}, + {{0x9189,5},{0x10cb,2}}, {{0x150d0,6},{0x126a,4}}, {{0xcbd,1},{0x53c2,3}}, {{0xadb5,5},{0x9,2}}, + {{0x9e61,8},{0xec3,3}}, {{0x70ad,3},{0x2ee9,3}}, {{0x29cf,3},{0x9a4,3}}, {{0xe97,3},{0x13345,3}}, + {{0x12e5,3},{0x17ac9,2}}, {{0xe1f,3},{0x1a66,1}}, {{0x19b7,3},{0x153a,3}}, {{0x70ad,3},{0xe1c,3}}, + {{0xf4f,1},{0xcc3d,3}}, {{0x3089,5},{0x1e40,4}}, {{0x1ff7,3},{0x1153,3}}, {{0x2ba5,1},{0x2261,3}}, + {{0x27e0,3},{0x6fe1,3}}, {{0x11d99,5},{0xcc8,1}}, {{0xf0a,3},{0x4385,3}}, {{0x7392,5},{0x7397,8}}, + {{0x23f16,2},{0x1a66,1}}, {{0xbd0b,3},{0xe95,2}}, {{0x4765,3},{0xee59,5}}, {{0xe0f,1},{0xef5,2}}, + {{0xe97,3},{0x2c6ca,3}}, {{0x111a,3},{0x11a6,2}}, {{0x271d,12},{0xcc9,2}}, {{0x478f,3},{0x3642,2}}, + {{0x772d,5},{0xef5,2}}, {{0x4853,3},{0xfc7,3}}, {{0xadcd,5},{0x9adf,5}}, {{0x9489,6},{0xde1c,4}}, + {{0x479f,2},{0x11d9,3}}, {{0x1937,5},{0xcb8,1}}, {{0xcc1,1},{0xfe6,2}}, {{0xb,1},{0xb,1}}, + {{0x29cf,3},{0x7974,4}}, {{0x11b5,2},{0xcc3,2}}, {{0xf15,1},{0xf11,1}}, {{0xcc8,1},{0xcc7,1}}, + {{0x28fc2,2},{0x1969,1}}, {{0x5,1},{0x72d3,3}}, {{0x1d18,8},{0xfe6,2}}, {{0x2de7b,3},{0x512,2}}, + {{0x29f3,3},{0xe1c,3}}, {{0xccb,2},{0x180b,3}}, {{0x1059,3},{0xec6,3}}, {{0x314,2},{0x1347,3}}, + {{0x4fb8,4},{0x1e40,4}}, {{0xe87,2},{0x113f,2}}, {{0xe5b,3},{0x6,1}}, {{0x93a5,7},{0x1663,3}}, + {{0x1191,7},{0x1050,3}}, {{0x19b9,1},{0x2261,3}}, {{0x4767,1},{0x3922,4}}, {{0x2a58,2},{0xe650,5}}, + {{0x73b9,5},{0xf86,2}}, {{0x1019,4},{0x1303,3}}, {{0x17a9e,7},{0x189f,3}}, {{0x81a5,6},{0x1ce7,4}}, + {{0x1ee71,5},{0x19e1,3}}, {{0x724d,6},{0xd70f,4}}, {{0x2a47,3},{0x48d2,3}}, {{0x10b4,7},{0x5ddf,4}}, + {{0xcc7,1},{0x48ca,6}}, {{0x4853,5},{0xf20,2}}, {{0x4f36,5},{0xf59,2}}, {{0xd78,12},{0xd78,12}}, + {{0xee4,4},{0xf9f,4}}, {{0x6ee6,5},{0x1b4f,5}}, {{0x1d75,3},{0x2,1}}, {{0x1857,4},{0x15572,4}}, + {{0xe16,3},{0xd15f,3}}, {{0x16cc8,7},{0xe91,2}}, {{0x2df3b,4},{0x5ab,2}}, {{0x4853,3},{0x2e29,3}}, + {{0x27e0,3},{0xd086,3}}, {{0xe37,4},{0x3100f,2}}, {{0x712f,4},{0x12075,5}}, {{0x13938,6},{0xc3d0,3}}, + {{0xc7de,6},{0x1e8b,3}}, {{0x12e5,3},{0xcbf,2}}, {{0x79f5,5},{0x16e3,4}}, {{0x1969,1},{0xe0a,1}}, + {{0x307bb,1},{0x28b3a,1}}, {{0xcc6,2},{0xcc8,3}}, {{0xb901,5},{0x148b,4}}, {{0x12a3,3},{0xe0d,2}}, + {{0x602c,5},{0x14a2,5}}, {{0x478f,3},{0x1af2,10}}, {{0x1569,2},{0xf86,3}}, {{0x58b5,6},{0x29f7,3}}, + {{0x12fb0,5},{0x1692,2}}, {{0x19b7,3},{0xe32,1}}, {{0x1db44,2},{0xe2f,1}}, {{0xb595,5},{0x17232,4}}, + {{0x944d,5},{0xfb8,3}}, {{0x9525,6},{0x2e28,4}}, {{0xef7,3},{0x10bb,5}}, {{0x2ba5,1},{0xcba,2}}, + {{0x4c03,5},{0xed7d,5}}, {{0x1882c,6},{0xe80,2}}, {{0xcd3,2},{0xe5e,2}}, {{0x1019,4},{0xb37c,3}}, + {{0xf0f,2},{0xe92,3}}, {{0x1384,2},{0x22bc,4}}, {{0x1367,4},{0xe2b,2}}, {{0xaaf,2},{0xd18,6}}, + {{0xcbf,2},{0x72d3,3}}, {{0xe11,1},{0x1693,2}}, {{0xf0a,3},{0xede,1}}, {{0xc437,5},{0x7a15,4}}, + {{0xf8,2},{0x8d,1}}, {{0x1947,6},{0xe6c,3}}, {{0x1bbf,5},{0xc3d7,5}}, {{0x4853,4},{0x63ea,4}}, + {{0x7518,6},{0xeb3,2}}, {{0x29cf,3},{0x7416,1}}, {{0x2ca7,7},{0x2cae,3}}, {{0x17f7,8},{0xec3,3}}, + {{0xb867,4},{0xfbb,4}}, {{0x12c3,4},{0xdbff,6}}, {{0x18f7,7},{0x122f,3}}, {{0x486f,4},{0xe71,1}}, + {{0xe0f,2},{0x268c,3}}, {{0xb535,5},{0x12c8b,5}}, {{0x13fdc,5},{0x155e,3}}, {{0x183b,3},{0x1b9d,4}}, + {{0x19b9,1},{0xcd2,2}}, {{0x4f50,6},{0x3abd,6}}, {{0xf59,4},{0xeb4,3}}, {{0x111a,3},{0x2075,3}}, + {{0xccb,2},{0x104c,2}}, {{0x10a3,3},{0x13125,7}}, {{0x1f368,3},{0xec5,4}}, {{0x4853,3},{0xe7a,1}}, + {{0x464d,7},{0x2f32,4}}, {{0xd7a3,9},{0xcc9,2}}, {{0x245f3,5},{0x17df,3}}, {{0xf4f,1},{0x40d8,3}}, + {{0x4853,3},{0x158f,3}}, {{0x9921,9},{0xe92,3}}, {{0x7414,3},{0x6008,3}}, {{0x7b45,4},{0x12528,6}}, + {{0x4757,7},{0xe78,2}}, {{0x4217,6},{0x1a9a,4}}, {{0x29cf,3},{0x20382,2}}, {{0xa659,8},{0xa661,4}}, + {{0x10a3,3},{0x18ef,3}}, {{0x12e5,3},{0x1ce76,5}}, {{0x1c91,6},{0xfa9,4}}, {{0xe87,2},{0xe6c,3}}, + {{0x2b75,2},{0x1870e,6}}, {{0x1367,3},{0x13fb9,5}}, {{0x1967,3},{0x15834,4}}, {{0x3d0f,6},{0x18b2,5}}, + {{0x4773,4},{0x3e23,4}}, {{0x109b,2},{0x10a6,2}}, {{0x2f55,9},{0xf84,5}}, {{0x712f,4},{0x6ca7,3}}, + {{0x1677,3},{0xee6c,5}}, {{0xe2b,2},{0xe69,6}}, {{0x205a1,2},{0x28b33,1}}, {{0x1677,3},{0x1569,4}}, + {{0x2510b,6},{0xa,2}}, {{0xe11,1},{0xeab,2}}, {{0xf0c,1},{0xf8e,3}}, {{0xef7,3},{0xcbf,2}}, + {{0x29a2,5},{0x30f7,2}}, {{0x1ff7,3},{0xfcb,2}}, {{0x38e7,4},{0xf32,2}}, {{0x46af,3},{0xcc6,2}}, + {{0xe33,1},{0x20379,3}}, {{0xe86,2},{0x1040,3}}, {{0x4791,2},{0x14e4b,4}}, {{0xcedf,7},{0xe11,1}}, + {{0x16322,6},{0xf7a,2}}, {{0xe83,3},{0xcc8,1}}, {{0xe1f,3},{0x77b3,4}}, {{0x75f5,6},{0x1230,5}}, + {{0x305f,6},{0xf86,3}}, {{0x4853,7},{0xc3d0,3}}, {{0xe8a,2},{0xf91,3}}, {{0x115e,5},{0x5a74,4}}, + {{0x1d950,4},{0xe7f,2}}, {{0x62f3,4},{0xf32,2}}, {{0x52d1,8},{0x52d9,5}}, {{0x8559,9},{0xec6,3}}, + {{0x256a,8},{0x6791,5}}, {{0x29cf,3},{0x74f3,2}}, {{0x11b5,2},{0x3695,4}}, {{0xcc8,2},{0x333a,3}}, + {{0x11d5,5},{0x1085,3}}, {{0x2ba55,5},{0xe11,1}}, {{0xe08,1},{0x113f,2}}, {{0x12f6,4},{0xe22,3}}, + {{0x112b,4},{0x1160,5}}, {{0x2d79,4},{0x7949,4}}, {{0x1967,3},{0x17ac9,2}}, {{0xbd09,5},{0x91cd,4}}, + {{0xf0c,1},{0x8244,5}}, {{0x2280,2},{0xcd3,2}}, {{0xa61d,7},{0xce83,4}}, {{0x4519,4},{0xcc8,1}}, + {{0x1467,10},{0xe69,6}}, {{0xc015,4},{0xfb0,3}}, {{0x7414,3},{0x5edd,3}}, {{0x5f42,5},{0xe5e,2}}, + {{0xe08,1},{0xeaf5,4}}, {{0xa3d1,5},{0x10cb,2}}, {{0xe89,2},{0x2,1}}, {{0x4597,5},{0x53da,4}}, + {{0xb69d,4},{0xcbf,2}}, {{0x2501,8},{0x1f7c,3}}, {{0xb3f1,3},{0x1462,5}}, {{0xe22,2},{0xf70,2}}, + {{0x1a9fc,6},{0x2075,3}}, {{0x1f2c4,6},{0x1054,3}}, {{0x1bda3,6},{0xcc9,2}}, {{0xe5e,2},{0x6452,4}}, + {{0xc171,5},{0x6eeb,7}}, {{0x4,1},{0x2ee9,3}}, {{0xff6d,5},{0x1085,3}}, {{0x123e,3},{0x11020,4}}, + {{0xe16,2},{0x6ec3,7}}, {{0xe11,2},{0xe89,2}}, {{0x205a1,1},{0x205a5,1}}, {{0xed9,2},{0xe1c,3}}, + {{0x29c0,3},{0xe29,2}}, {{0x2a47,3},{0x22a3,2}}, {{0x21,1},{0x1f4,2}}, {{0x6cc4,4},{0xeb5,2}}, + {{0x1967,3},{0x1372,5}}, {{0x1ae61,6},{0xf7a,2}}, {{0x7353,2},{0x8b5e,7}}, {{0x44b7,7},{0xfdd,4}}, + {{0x6109,8},{0xcc9,2}}, {{0x74f6,2},{0xf0c,1}}, {{0x9e61,8},{0xef3,4}}, {{0x1081,4},{0x7955,4}}, + {{0x2,2},{0x10b9,2}}, {{0x125d,5},{0x5,1}}, {{0xf0a,3},{0x29f3,3}}, {{0x2e27d,1},{0xcd6,1}}, + {{0xf89,3},{0x26e21,4}}, {{0x14a7,4},{0xcd3,1}}, {{0xe08,1},{0xcc3,2}}, {{0x1d18,5},{0x2651,7}}, + {{0x1373,2},{0xb16f,4}}, {{0x1089f,7},{0xcce,2}}, {{0xe2b,2},{0x2872,4}}, {{0xb3f1,3},{0x8,1}}, + {{0x2,2},{0x15692,5}}, {{0x471f,6},{0x1510,4}}, {{0x10a3,3},{0x16903,4}}, {{0x8775,6},{0x1791,6}}, + {{0xfe8,2},{0x5,1}}, {{0x1c37,6},{0xcbf9,5}}, {{0x5117,5},{0x14c6c,4}}, {{0x111a,3},{0xb37c,3}}, + {{0x14f9,3},{0x809a,3}}, {{0x27ef,4},{0x2,1}}, {{0xd11b,5},{0xcbf,2}}, {{0x52f8,8},{0xe6b,4}}, + {{0x25363,6},{0x1058,2}}, {{0x1141,4},{0xf93,8}}, {{0x1ea72,2},{0x4767,1}}, {{0x12f6,4},{0x6,1}}, + {{0x11b5,2},{0xe7f,2}}, {{0x3ac3,8},{0x3acb,5}}, {{0x951c,3},{0xec5,4}}, {{0xa599,9},{0xcc9,2}}, + {{0x2e21d,4},{0x9f,1}}, {{0xcc8,2},{0xe32,1}}, {{0x1827,5},{0x1262,3}}, {{0x1927,4},{0x1ebf,3}}, + {{0x2015,3},{0x223be,5}}, {{0xcbd,1},{0xef3,4}}, {{0x16692,6},{0x43fd,4}}, {{0x24cb3,5},{0xe5e,2}}, + {{0x11788,4},{0xa,2}}, {{0x5199,9},{0x1ac7,3}}, {{0x35f3,9},{0x138e,3}}, {{0xe80,2},{0xcd3,2}}, + {{0x6b8c,5},{0x7949,4}}, {{0x1384,2},{0x181b,3}}, {{0x70ad,3},{0x13dd,4}}, {{0x9111,9},{0xebb,3}}, + {{0xc281,4},{0x2b4f2,2}}, {{0x1607,10},{0x1702,4}}, {{0xcf00,6},{0x10f5,3}}, {{0xf65,4},{0xf69,14}}, + {{0x3027,9},{0xf4a,5}}, {{0x5903,5},{0x621e,5}}, {{0xcc7,1},{0xf35,2}}, {{0x114d,5},{0xb83d,4}}, + {{0x9ecd,8},{0x10f4,4}}, {{0x29169,5},{0xf35,2}}, {{0x2375b,5},{0x11d2,3}}, {{0xc862,7},{0x126a,4}}, + {{0x1e26,10},{0x1c8c,5}}, {{0xc1d1,4},{0xeb9,5}}, {{0x9219,5},{0xe195,6}}, {{0x1766a,2},{0x4767,1}}, + {{0x30a13,3},{0xb74,1}}, {{0x17e36,6},{0x17e3c,4}}, {{0x1a84,5},{0x1440,7}}, {{0x1537,4},{0x642a,5}}, + {{0x39d5,5},{0x15139,5}}, {{0x10b6a,5},{0x15500,4}}, {{0x1057,2},{0x2b7a,3}}, {{0x12bfa,6},{0x8ce2,3}}, + {{0x236c,5},{0xfe6,2}}, {{0xfb37,8},{0xcce,2}}, {{0xff78,7},{0xcc9,2}}, {{0xe61,3},{0x9904,5}}, + {{0x29cf,3},{0x4767,1}}, {{0xa089,8},{0xeed,4}}, {{0x12154,3},{0xf0c,1}}, {{0xe9e6,8},{0xcc9,2}}, + {{0xe83,5},{0xa36a,7}}, {{0x442b,3},{0xe65,2}}, {{0x19f7,4},{0x1d7d,4}}, {{0xc075,5},{0xfdd,6}}, + {{0xe0a,1},{0x4,1}}, {{0x4789,5},{0xebb,3}}, {{0x9891,10},{0xe95,2}}, {{0xcb8,1},{0xf18,2}}, + {{0xe83,3},{0xf02,2}}, {{0x11d99,5},{0x5,1}}, {{0x28c1,4},{0xccd,1}}, {{0x3169,8},{0xe2b,2}}, + {{0x1977,4},{0x163b,5}}, {{0xe1f,3},{0x9a6,1}}, {{0xc0a1,2},{0xcd3,1}}, {{0x62dd,6},{0xe92,3}}, + {{0xcc1,1},{0x31f8,3}}, {{0xcd3,1},{0x12fd,3}}, {{0x11f04,7},{0xe0a,1}}, {{0xa461,8},{0xe77,3}}, + {{0x12e5,5},{0xb,1}}, {{0xe11,1},{0x990b,4}}, {{0x10c5,4},{0x3aff,5}}, {{0x1f25,4},{0x10ed,3}}, + {{0x27e0,3},{0x2454,3}}, {{0x1099,4},{0xe67,2}}, {{0xe86,2},{0xe80,2}}, {{0xce56,4},{0xed6,2}}, + {{0x6cde,4},{0xc088,4}}, {{0xe563,5},{0x1392,3}}, {{0x16a9,3},{0xcc1,1}}, {{0xc069,5},{0xec0,3}}, + {{0x16c50,7},{0x286d,3}}, {{0x2e271,3},{0xc16,1}}, {{0xe5b,3},{0x20c7c,5}}, {{0x5722,5},{0xde9e,6}}, + {{0x2015,3},{0x2e2c,3}}, {{0x80cd,8},{0x34d7,4}}, {{0x1887,7},{0x188e,9}}, {{0xe33,1},{0x1569,2}}, + {{0x14a7,4},{0xce40,5}}, {{0x9a8,1},{0x1303,3}}, {{0x10c5,4},{0x3642,2}}, {{0xa659,5},{0xcc8,1}}, + {{0xb559,6},{0xeac,3}}, {{0xcc9,2},{0xe0f,2}}, {{0xf0c,1},{0x1a66,1}}, {{0x1dee,2},{0xe67,2}}, + {{0xc27b,2},{0x2b0b0,4}}, {{0xefa,2},{0xe71,1}}, {{0x29cf,3},{0xf15,1}}, {{0x39d5,5},{0x1bc6,8}}, + {{0x3b73,3},{0x1025,1}}, {{0x55,2},{0x8d,1}}, {{0xf65,3},{0xcc7,2}}, {{0x104a,3},{0xf91,3}}, + {{0x162c8,5},{0xcce,3}}, {{0x5903,7},{0x590a,6}}, {{0x11b3,5},{0xa348,5}}, {{0x73ed,8},{0x103e,5}}, + {{0x486f,6},{0xe77,3}}, {{0xe77,2},{0xf35,2}}, {{0x12d4,3},{0x103e7,4}}, {{0x5722,5},{0x3fb8,5}}, + {{0x92b5,5},{0xc8f7,4}}, {{0xcda0,4},{0xe5e2,5}}, {{0x16a7,3},{0x4d5f,3}}, {{0x607a,11},{0xe95,2}}, + {{0xe1f,3},{0x1889,2}}, {{0xef7,3},{0x2c59,4}}, {{0xcc9,2},{0x2177,5}}, {{0x7416,1},{0xe2b,2}}, + {{0x4853,3},{0xcd3,2}}, {{0x1109,8},{0x5eaf,4}}, {{0x12e5,3},{0xf84,5}}, {{0x1caf,5},{0xf0f,2}}, + {{0x1e571,4},{0x48d0,2}}, {{0x24cb3,5},{0xe0d,2}}, {{0xe97,3},{0x1fc7,3}}, {{0x27c2,10},{0x27dc,4}}, + {{0x1059,3},{0xe86,2}}, {{0x8,1},{0xd229,4}}, {{0x18b74,6},{0x136a,4}}, {{0x9a6,1},{0xf0f,2}}, + {{0x12ad8,8},{0xcc9,2}}, {{0x3bdb,6},{0x10d2,4}}, {{0x13b4a,7},{0xe11,1}}, {{0xb8d1,5},{0xe6b,3}}, + {{0xeea,3},{0x127c,3}}, {{0xf0a,3},{0x1085,3}}, {{0x1e65,3},{0x505d,4}}, {{0xe09,1},{0x1791,6}}, + {{0x40e3,7},{0xf86,3}}, {{0x11b5d,5},{0xeca,3}}, {{0xe65,2},{0xe2b,2}}, {{0x1467,4},{0xf38c,3}}, + {{0x1089f,7},{0x1054,3}}, {{0x2271,3},{0x10e3,4}}, {{0x72d1,2},{0xe22,2}}, {{0x1467,10},{0xe69,5}}, + {{0xe8a,2},{0x1e8b,4}}, {{0x1947,5},{0xd28b,5}}, {{0x2f71,4},{0xdde5,4}}, {{0x137e,7},{0xe95,2}}, + {{0xe61,6},{0xe67,8}}, {{0x194ff,6},{0xf35,3}}, {{0x9345,9},{0xec6,3}}, {{0x189f,3},{0x2239,4}}, + {{0x10b4,6},{0x4d27,7}}, {{0x1447,7},{0x4d42,6}}, {{0xe08,1},{0x1969,1}}, {{0xe78,1},{0xcce,2}}, + {{0x1367,3},{0xe2b,2}}, {{0xef7,4},{0x1607e,6}}, {{0x8d15,8},{0x122d,3}}, {{0x1e3c1,8},{0xe11,1}}, + {{0xf0a,3},{0xcd2,2}}, {{0x29cf,3},{0xcd3,3}}, {{0x1df5c,5},{0xf1a,2}}, {{0xb1c9,7},{0x10d2,4}}, + {{0xb745,5},{0xfb8,3}}, {{0x1977,8},{0xeed,4}}, {{0x109b,2},{0xfc8,3}}, {{0xe97,3},{0x1692,5}}, + {{0x8115,9},{0xec6,3}}, {{0x3735,9},{0xe69,5}}, {{0xe97,4},{0x240df,4}}, {{0x1ff7,3},{0x3b4a,5}}, + {{0xeda3,6},{0x2f27,4}}, {{0x2a65,5},{0xebb,3}}, {{0x20f6,5},{0xa893,6}}, {{0x1469,3},{0xf34,4}}, + {{0xcd1,2},{0x59b4,3}}, {{0x10b4,4},{0x2,1}}, {{0x1967,3},{0x4b2e,5}}, {{0xefa,3},{0xf63,2}}, + {{0x1ea72,2},{0xe16,1}}, {{0x19b7,3},{0x2a734,4}}, {{0xb979,4},{0xe86,2}}, {{0xe09,1},{0x8,1}}, + {{0x2c86,2},{0x1155,2}}, {{0xed1,4},{0x249c,6}}, {{0x4326,2},{0xeb5,2}}, {{0x11fe0,5},{0x7a36,3}}, + {{0xcd3,2},{0x1702,4}}, {{0x5770,5},{0xdf9b,6}}, {{0x2966,4},{0x1de37,5}}, {{0x3a45,5},{0x2781,5}}, + {{0x1977,4},{0x1cd4,5}}, {{0x1467,5},{0x40a5,6}}, {{0x4551,6},{0x7d99,4}}, {{0x1967,3},{0x24661,2}}, + {{0x170a6,6},{0x1783,4}}, {{0xfb4,4},{0xcc9,2}}, {{0xecb,2},{0x4fa8,3}}, {{0xed1,4},{0x1567e,5}}, + {{0xe61,2},{0xcc3,2}}, {{0x74f3,2},{0xf0c,1}}, {{0x4781,3},{0xcd2,2}}, {{0x30c1,8},{0x6a0f,4}}, + {{0x70af,2},{0x1230c,2}}, {{0x16fd6,3},{0xec7,2}}, {{0x105f,3},{0xe25,2}}, {{0xe86,2},{0xe0d,2}}, + {{0x11b73,5},{0xfe6,2}}, {{0x18b74,6},{0xe32,1}}, {{0x113c,5},{0xbf5c,5}}, {{0xe83,3},{0x9393,6}}, + {{0xcd6,1},{0x78f9,1}}, {{0x4781,3},{0xcbf,2}}, {{0x1967,3},{0x10b7,3}}, {{0x5f83,6},{0xe77,3}}, + {{0xccd,1},{0x2e29,3}}, {{0x1e9e,10},{0xf84,5}}, {{0xe22,2},{0xdcfc,6}}, {{0xcc1,2},{0x319a,7}}, + {{0xf3c8,6},{0x1702,4}}, {{0x7a0d,6},{0x7a13,5}}, {{0xe1f,3},{0x4aee,3}}, {{0xe65,2},{0xb,1}}, + {{0x2213,8},{0x129a,6}}, {{0x1937,4},{0xe22,2}}, {{0x6da1,8},{0x6da9,5}}, {{0xf60,2},{0xccd,4}}, + {{0x1db45,2},{0xf4f,1}}, {{0x2c15,4},{0xcc9,2}}, {{0x9a8,1},{0xe09,1}}, {{0x302,2},{0x45,1}}, + {{0x1857,4},{0x331f,3}}, {{0xd173,8},{0xcc9,2}}, {{0x7181,6},{0x2d11,3}}, {{0x116f,8},{0xfdf,4}}, + {{0xe1f,3},{0x20549,2}}, {{0x9bd1,3},{0xed6,2}}, {{0xf3d3,7},{0x1059,3}}, {{0xcba,2},{0x7119,3}}, + {{0x1967,3},{0x18c0e,4}}, {{0xae09,5},{0x579d,7}}, {{0x1796b,4},{0xe11,1}}, {{0x13028,6},{0xcc9,2}}, + {{0x712f,4},{0x2e29,3}}, {{0x1567,6},{0x1403c,4}}, {{0x1db33,2},{0xf0c,1}}, {{0x2de75,3},{0x1ac,2}}, + {{0x14d4f,6},{0xe11,1}}, {{0x7602,4},{0xf20,2}}, {{0x12e5,3},{0xfc5b,5}}, {{0xcc8,2},{0x2,1}}, + {{0xd,2},{0x8d,1}}, {{0x113f,2},{0xcce,2}}, {{0xaaf,2},{0xf24,2}}, {{0xf65,3},{0xcc8,1}}, + {{0xe7d,2},{0xe69,6}}, {{0x11e07,5},{0x66c2,3}}, {{0x5,1},{0x59b4,3}}, {{0xef7,3},{0xcb52,4}}, + {{0x122e,2},{0x9a8,1}}, {{0x56ee,6},{0x240b,6}}, {{0x1567,10},{0x3694,3}}, {{0x11a6,3},{0x6,1}}, + {{0x5f90,6},{0x152d4,4}}, {{0xbb4,4},{0x18ee2,2}}, {{0x46af,3},{0x2cf67,2}}, {{0xccb,2},{0x136ee,5}}, + {{0x309d,3},{0x34d7,4}}, {{0x6,2},{0x331f,4}}, {{0xf77,4},{0x111c,2}}, {{0x1ff7,3},{0x30ad,6}}, + {{0x12c3,4},{0x278e,7}}, {{0x19f7,4},{0x14ab,4}}, {{0x1f4,2},{0x9f,1}}, {{0x1050,4},{0xe32,1}}, + {{0x19e9,3},{0x9904,5}}, {{0xb841,5},{0x1db1,3}}, {{0x7f41,4},{0x31f8,3}}, {{0xcc1,1},{0x1153,2}}, + {{0x1312c,6},{0x136d,3}}, {{0xe1f,3},{0x16d88,4}}, {{0x1677,3},{0x14e0d,7}}, {{0xaf4,1},{0x20599,1}}, + {{0xcc3,2},{0xed9,2}}, {{0x4853,3},{0x1969,1}}, {{0x18ecc,2},{0xc273,2}}, {{0x8dc9,7},{0x1a71,3}}, + {{0xc17d,6},{0xe22,3}}, {{0x40d5,6},{0x6452,4}}, {{0x105f,3},{0x2182,4}}, {{0x46af,3},{0xf16,2}}, + {{0x235d,5},{0xf095,5}}, {{0xd11b,5},{0x1f2c,6}}, {{0xcb8,1},{0xa,2}}, {{0x1957,5},{0xf64c,5}}, + {{0xcd3,1},{0xe0a,2}}, {{0xe7a,2},{0x4201,8}}, {{0x4853,3},{0x1252,4}}, {{0x1017d,5},{0x190cc,4}}, + {{0x1de7b,5},{0x1085,3}}, {{0x9a8,1},{0x809a,3}}, {{0xead8,5},{0xccaa,4}}, {{0x111a,3},{0x217f4,5}}, + {{0xe99,1},{0x19b9,1}}, {{0xcf6,2},{0xcf6,1}}, {{0xcc1,2},{0xcc3,3}}, {{0x6cde,4},{0x49a6,3}}, + {{0x46af,3},{0xe4e2,5}}, {{0x2c7d,10},{0xcc9,2}}, {{0x1817,4},{0x1bf18,5}}, {{0x11b94,6},{0x4f79,3}}, + {{0x647d,8},{0xec6,3}}, {{0x5242,5},{0xe75,2}}, {{0x1f5a6,5},{0xf69,4}}, {{0x2f71,4},{0x2e29,3}}, + {{0x18764,5},{0x18769,5}}, {{0x1498c,4},{0x1085,3}}, {{0x236c,5},{0x2e29,3}}, {{0x1c91,4},{0x1663,3}}, + {{0x7b51,4},{0xb1d0,5}}, {{0x21,1},{0x468,2}}, {{0x2a47,3},{0x1025,1}}, {{0x18d72,5},{0x9ff4,5}}, + {{0xed1,4},{0x6ead,4}}, {{0xcbd,1},{0x1372,4}}, {{0x11b89,7},{0xcce,2}}, {{0x2948,3},{0xcc7,1}}, + {{0x12baa,7},{0x1bf0,2}}, {{0x2271,3},{0x1944,3}}, {{0x70ad,3},{0x9a4,3}}, {{0xf89,3},{0xcd3,3}}, + {{0x23c4b,3},{0x1f875,1}}, {{0x19b7,3},{0xe89,2}}, {{0x2e2f,6},{0xf91,3}}, {{0x9add,5},{0xcc8,1}}, + {{0x4,1},{0x2454,3}}, {{0x22e5,6},{0x5342,3}}, {{0x15332,7},{0xcc9,2}}, {{0x2b46,4},{0xb191,5}}, + {{0x4aee,3},{0xe22,2}}, {{0x43fc,2},{0xf3a,3}}, {{0x7414,3},{0xe19,1}}, {{0x1a66,1},{0x1d65,3}}, + {{0x2e22f,4},{0x8d,1}}, {{0xdd65,4},{0xcc9,2}}, {{0x29de,4},{0xf3f,3}}, {{0x4765,3},{0x6008,3}}, + {{0x1367,4},{0x190e6,3}}, {{0x10b4,4},{0x9a6,2}}, {{0x5,1},{0x5,1}}, {{0x1057,2},{0xf1f,3}}, + {{0x11a6,3},{0xe89,2}}, {{0xebe,3},{0xcd3,1}}, {{0x479d,4},{0x15692,6}}, {{0xfa5,2},{0x2,1}}, + {{0x52f8,8},{0xf7a,2}}, {{0x11d9,3},{0x103e,5}}, {{0x9,1},{0xf1a,2}}, {{0x181b0,5},{0xcce,2}}, + {{0x10a3,3},{0x210a4,5}}, {{0x46af,3},{0x122d,2}}, {{0x1cd2,3},{0x1489,2}}, {{0x144e,6},{0xeee,3}}, + {{0x1777,12},{0xeee,3}}, {{0x1a66,1},{0x168b,4}}, {{0x2094,3},{0x1166,3}}, {{0x1667,7},{0x9a0c,5}}, + {{0xf16,2},{0xcc4,2}}, {{0x1ff7,3},{0xefa,2}}, {{0x1967,3},{0x1969,1}}, {{0x6b24,7},{0x6b2b,6}}, + {{0xcc7,1},{0x1569,3}}, {{0xe235,7},{0xf35,2}}, {{0x1647,5},{0x3756,4}}, {{0xb751,6},{0x1be9,3}}, + {{0x13e06,7},{0xec6,3}}, {{0x1977,3},{0xcc8,1}}, {{0x1f3ff,4},{0x1e872,2}}, {{0xe37,4},{0x2b05e,2}}, + {{0x70ad,3},{0x19070,6}}, {{0xee9,2},{0xed9,2}}, {{0xb421,5},{0xe7f,2}}, {{0xe21,1},{0xe21,1}}, + {{0x2b500,6},{0x2afe0,2}}, {{0x2aa25,6},{0xe0a,1}}, {{0x133fc,5},{0xe95,2}}, {{0x1290,5},{0x1d7e,3}}, + {{0x236c,11},{0xcc9,2}}, {{0xcc1,1},{0xcc8,1}}, {{0xf15,1},{0xe5e,2}}, {{0x2cdf,5},{0xf7a,2}}, + {{0x6d2c,7},{0x6d33,6}}, {{0xb69d,8},{0x4665,4}}, {{0x11ef0,3},{0xcba,2}}, {{0xccb,2},{0x1025,1}}, + {{0xf1d,2},{0x1150,2}}, {{0x10b9,3},{0x7ba0,5}}, {{0xd48,4},{0x18ed6,2}}, {{0xf4f,1},{0x1153,3}}, + {{0x2501,5},{0xa63a,5}}, {{0x1be,2},{0x336,2}}, {{0x46af,3},{0x6ee8,3}}, {{0xf70,2},{0x66c2,3}}, + {{0xe32,1},{0xb,1}}, {{0x46bd,3},{0xab88,3}}, {{0x1839,2},{0xf8f,4}}, {{0x12e5,3},{0x11cb,3}}, + {{0x1817,4},{0x11ed3,3}}, {{0x1827,4},{0x122e,3}}, {{0x20671,5},{0xcc9,2}}, {{0xf77,4},{0x11b5,2}}, + {{0x112ad,7},{0x566f,4}}, {{0x3869,10},{0xcc9,2}}, {{0x247a,9},{0xe11,1}}, {{0x1967,3},{0x5,2}}, + {{0xe1dd,7},{0xec6,3}}, {{0x18d74,3},{0xcc3,3}}, {{0x1523,4},{0xcbd,1}}, {{0xf0a,3},{0xe2b,2}}, + {{0xcef5,8},{0xe11,1}}, {{0x1ff7,3},{0xc342,3}}, {{0x1827,6},{0x182d,10}}, {{0x1747,10},{0x1722,5}}, + {{0x1ebc,5},{0xe80,2}}, {{0x1807a,8},{0xe86,2}}, {{0x156e8,6},{0xe11,1}}, {{0xd,2},{0xf,1}}, + {{0x22b8,4},{0x5782,6}}, {{0x2075,3},{0x1693,2}}, {{0xe60,2},{0x9a6,1}}, {{0x3ff5,11},{0xec6,3}}, + {{0x5e3e,5},{0x14e9b,5}}, {{0x58cf,7},{0xeaa,2}}, {{0xbb7d,5},{0x180e,3}}, {{0x10c5,4},{0x62f3,4}}, + {{0x2de7b,3},{0x5bc,2}}, {{0xf65,4},{0x1b0f,3}}, {{0x1189d,4},{0x29ccf,3}}, {{0xe83,3},{0x1153,3}}, + {{0xb09d,7},{0x10612,4}}, {{0x17f62,5},{0xe11,1}}, {{0xef7,6},{0x2091,4}}, {{0x1657,6},{0x138e,2}}, + {{0x6,2},{0xe0b,4}}, {{0x2af23,4},{0x3694,3}}, {{0x4ef5,4},{0x1153,2}}, {{0xe33,1},{0x17b4b,7}}, + {{0x1e9e,6},{0xec3,3}}, {{0x11b3,4},{0x530a,6}}, {{0x2ad7b,4},{0xb,1}}, {{0x2f71,4},{0x14f9,3}}, + {{0x1557,4},{0xce83,4}}, {{0x75ce,4},{0x185c4,6}}, {{0xc0f9,5},{0x80f3,6}}, {{0x29de,4},{0x1150,2}}, + {{0x7414,3},{0x2123d,4}}, {{0x31955,2},{0xbb6,2}}, {{0xcc1,1},{0x277a,3}}, {{0x1a27,4},{0x149c,3}}, + {{0x127f,3},{0x3142,4}}, {{0x23c4b,3},{0xa,2}}, {{0x19b9,1},{0xe22,2}}, {{0xe71,1},{0xcba,2}}, + {{0x1447,7},{0x9a8,1}}, {{0x1a27,4},{0x92b7,3}}, {{0x3b5d,5},{0x1040,3}}, {{0xe5e7,5},{0xdc6e,4}}, + {{0x1a56,2},{0xe7f,2}}, {{0x7911,3},{0x4574,3}}, {{0x329d,6},{0xc3d0,3}}, {{0x11654,5},{0x10af6,4}}, + {{0x3623,3},{0x4,1}}, {{0xac7d,6},{0x3d17,6}}, {{0x9a6,1},{0x21a0,8}}, {{0x20f6,10},{0xcce,2}}, + {{0xf0c,1},{0xd28b,6}}, {{0x2d79,4},{0x2,1}}, {{0x10361,6},{0x4cc2,3}}, {{0xe33,1},{0x1dee,2}}, + {{0x7f41,4},{0x2252,3}}, {{0x1fd1a,6},{0xe89,2}}, {{0x22b8,4},{0x1e65,3}}, {{0x7414,3},{0x11502,8}}, + {{0x8625,8},{0x13c3,4}}, {{0x1969,2},{0x110f9,4}}, {{0x12d4,3},{0xe25,2}}, {{0xf0a,3},{0x2f3c,8}}, + {{0xe0a,1},{0xf91,3}}, {{0x7b2d,7},{0xe69,5}}, {{0x417d,6},{0xcc3,2}}, {{0x10b8b,6},{0x1054,3}}, + {{0x179b8,6},{0xccb,2}}, {{0xaca1,6},{0x1b41,4}}, {{0x200fa,3},{0xe6b,2}}, {{0x16a7,3},{0x811a,4}}, + {{0x4781,3},{0x78d0,3}}, {{0x4765,3},{0xfe7,2}}, {{0x5117,5},{0x19583,3}}, {{0xb37b,1},{0xedd,1}}, + {{0x14a7,4},{0xeee,3}}, {{0x27ef,4},{0x10d3,3}}, {{0xe1f,3},{0xf70,2}}, {{0xaf4,1},{0x205a1,1}}, + {{0x329d,5},{0x12bf,4}}, {{0x4767,1},{0xe0a,1}}, {{0xf65,4},{0x2017,4}}, {{0x54cc,5},{0x6,3}}, + {{0x5f76,7},{0x2f78,6}}, {{0x4137,5},{0x9a8,1}}, {{0xe1f,3},{0x78d0,3}}, {{0x28e1,3},{0x2,1}}, + {{0xe1f,3},{0x204e0,2}}, {{0x46af,3},{0xe571,5}}, {{0x111a,3},{0x4e45,3}}, {{0x465b,4},{0x8,1}}, + {{0xde8e,4},{0x29f7,3}}, {{0xcc6c,7},{0x1664,2}}, {{0xe11,1},{0x843c,3}}, {{0x31d9,6},{0x15399,2}}, + {{0xe97,3},{0xf15,1}}, {{0x12d4,3},{0x1cbf8,5}}, {{0x1898a,6},{0xfdd,4}}, {{0x29cf,3},{0xeee,5}}, + {{0x113f,2},{0x1235,6}}, {{0x2948,4},{0xe67,2}}, {{0x1059,3},{0xfe6,2}}, {{0x12e5,3},{0xee9,2}}, + {{0x15760,4},{0xe2b,2}}, {{0x9af,2},{0xddc,2}}, {{0x9e6d,9},{0xcc9,2}}, {{0x8f1c,5},{0xe95,2}}, + {{0xcd2,2},{0xcbf,2}}, {{0x10c5,5},{0x566f,4}}, {{0x2d79,4},{0x111c,2}}, {{0x1e62,4},{0xcc6,2}}, + {{0xe1f,6},{0xe0a,1}}, {{0x29b90,5},{0xe0d,2}}, {{0x1db31,2},{0x48d3,2}}, {{0x10b7,2},{0x29e3,4}}, + {{0x2ee64,4},{0x19b9,1}}, {{0xc279,2},{0xc27b,2}}, {{0xf65,4},{0xf69,3}}, {{0x11d9,3},{0xec6,3}}, + {{0x13050,5},{0xfe8,2}}, {{0xcd3,2},{0xf91,3}}, {{0x13a7,7},{0x5e7a,5}}, {{0xbc79,4},{0x6b2b,6}}, + {{0xe71,1},{0xcc3,3}}, {{0x1ac,2},{0x9f,1}}, {{0x3957,8},{0x3555,4}}, {{0xc975,6},{0x9a30,5}}, + {{0x16a7,3},{0x1dc0,3}}, {{0xcc8,1},{0xaeb4,9}}, {{0x7ac1,6},{0x1059,3}}, {{0x1bec,5},{0x11cb,3}}, + {{0x2de75,3},{0x567,2}}, {{0x19b7,3},{0xf35,3}}, {{0x66fa,8},{0xe92,3}}, {{0x20509,2},{0x20509,2}}, + {{0x1503a,7},{0xcc9,2}}, {{0x206,2},{0x69,1}}, {{0x2015,3},{0x15e93,3}}, {{0x360f,6},{0x3,1}}, + {{0x1db1b,6},{0xec6,3}}, {{0x1447,7},{0x4d35,5}}, {{0x478f,3},{0x63cf,5}}, {{0x1133c,5},{0x161ab,5}}, + {{0xe11,1},{0x9a4,3}}, {{0x4767,1},{0x1153,2}}, {{0xe11,1},{0x9a6,1}}, {{0xb,1},{0xcbd,1}}, + {{0x4be9,6},{0xe11,1}}, {{0x478f,3},{0x2d794,3}}, {{0x65f6,5},{0xccd,1}}, {{0xe71,1},{0x9a6,1}}, + {{0xf8,2},{0xe,1}}, {{0x8cfd,5},{0xfb0,2}}, {{0x2213,8},{0x27db,5}}, {{0x11c70,8},{0xf35,2}}, + {{0x3965,11},{0xec6,3}}, {{0x17312,5},{0xfa2b,4}}, {{0x11d5,5},{0xa348,5}}, {{0x19b7,3},{0x145b,2}}, + {{0x15f7,4},{0x6ec3,3}}, {{0x5,1},{0x1b4f,7}}, {{0x11d99,5},{0x2ca1,4}}, {{0x1f729,5},{0xe86,2}}, + {{0x1969,1},{0x1790,3}}, {{0xe1f,3},{0x6fe1,3}}, {{0x1290,4},{0x164a2,5}}, {{0xf65,4},{0xcc7,1}}, + {{0x1777,5},{0xb0ca,3}}, {{0x4153,7},{0x1601,6}}, {{0x19b9,1},{0xa,2}}, {{0x6,2},{0xf59,2}}, + {{0x1a17,4},{0xb0c5,8}}, {{0x70ad,3},{0xf16,2}}, {{0xe1b,3},{0xec6,3}}, {{0x14dba,6},{0x4ef1,4}}, + {{0xe21,1},{0x1bef,2}}, {{0x23c4b,3},{0xcd3,1}}, {{0xb3f1,3},{0x15df5,5}}, {{0x1ac,2},{0x69,1}}, + {{0x17103,4},{0x10e3,3}}, {{0xf70f,4},{0x504d,3}}, {{0x15486,6},{0xe11,1}}, {{0xe78,1},{0xebb,3}}, + {{0x65cf,6},{0x1722,5}}, {{0xe2f,1},{0x9e34,3}}, {{0x6234,8},{0x1663,3}}, {{0x1738a,7},{0xf91,3}}, + {{0x1a56,2},{0x766f,4}}, {{0xe0d,2},{0x141a,2}}, {{0x1702e,5},{0x3371,5}}, {{0x11b75,7},{0xe95,2}}, + {{0x19f7,4},{0x4516,3}}, {{0x40f1,9},{0x1dc7,5}}, {{0x43fb,3},{0xcc3,2}}, {{0x46bd,3},{0x1969,1}}, + {{0x9345,6},{0x1258,5}}, {{0x3bdb,10},{0xe11,1}}, {{0x2dcd,10},{0x2dd7,4}}, {{0x2004d,6},{0xf7a,2}}, + {{0x1538c,7},{0xf23,3}}, {{0x5cab,7},{0x18b2,5}}, {{0x227c,5},{0x10b8,2}}, {{0x1efff,3},{0xd10c,4}}, + {{0xbcd9,9},{0xed9,2}}, {{0x264a3,7},{0x6,1}}, {{0xf80,2},{0xed9,2}}, {{0x10a3,3},{0x9498,5}}, + {{0x416f,5},{0x14f0,3}}, {{0x10c04,7},{0xe0a,1}}, {{0x2bc7,4},{0x8459,4}}, {{0x4781,3},{0x2bb4,2}}, + {{0x4aef,3},{0x9a9,2}}, {{0x7911,3},{0x6,1}}, {{0x11d5,5},{0x7d99,4}}, {{0x73ef,3},{0x9a4,3}}, + {{0x4767,1},{0x113f,2}}, {{0xb,1},{0x103e,5}}, {{0x49ba,6},{0xe0b,4}}, {{0x2de7b,3},{0x468,2}}, + {{0x9af,2},{0x2e7da,2}}, {{0x19e9,3},{0xeed,4}}, {{0x1e2f0,2},{0xedd,1}}, {{0x1d72,7},{0xe11,1}}, + {{0x5e58,6},{0x4415,3}}, {{0xb,1},{0xe86,2}}, {{0x4952,6},{0xc4a0,5}}, {{0x17e7,7},{0xed9,2}}, + {{0x6bd4,4},{0x1523,4}}, {{0x2a29,7},{0x184d,6}}, {{0x1f25,5},{0x7f90,5}}, {{0x2d89f,5},{0xe11,1}}, + {{0xfe3,4},{0x14e73,5}}, {{0xf0c,1},{0x168b,4}}, {{0xe11,1},{0xe78,1}}, {{0x19b7,3},{0xbd28,4}}, + {{0xe89,2},{0x4e45,3}}, {{0x9a8,1},{0x3,1}}, {{0x7795,6},{0x11d68,5}}, {{0x4765,3},{0xf16,2}}, + {{0x4ef5,4},{0x8a70,5}}, {{0x22b8,4},{0x56b5,5}}, {{0xe11,1},{0x4618,3}}, {{0x19694,6},{0x1d75,3}}, + {{0x12f6,4},{0xcd3,1}}, {{0xcc4,2},{0x2,1}}, {{0xef7,3},{0x1e8b,3}}, {{0xe11,1},{0xe67,2}}, + {{0xfcb,2},{0x2fcc,7}}, {{0x27e0,3},{0xf49d,4}}, {{0x1062,2},{0x1702,5}}, {{0x2e27d,1},{0x2e269,2}}, + {{0x15f7,4},{0x15fb,7}}, {{0x74f5,3},{0xf15,1}}, {{0x181b,3},{0xcc9,2}}, {{0x20d8,11},{0xed9,2}}, + {{0x4065,9},{0xe92,3}}, {{0x1927,5},{0x1692,5}}, {{0xf0a,3},{0x2e2c,3}}, {{0x206,2},{0xf,1}}, + {{0x3e6d,9},{0xe6b,4}}, {{0xcc8,1},{0x4a86,4}}, {{0xcc6,2},{0x1a71,3}}, {{0xed1,3},{0x12b5,2}}, + {{0xb3a9,5},{0x66c1,4}}, {{0x11fd5,8},{0xcd3,2}}, {{0x1ffc6,6},{0x1fc7,3}}, {{0x3d71,8},{0x1783,4}}, + {{0xe01a,5},{0xfa5,2}}, {{0x27e0,3},{0x2e29,3}}, {{0x46bd,3},{0x15e93,3}}, {{0x245c,11},{0xf62,3}}, + {{0xfad,5},{0x1516b,5}}, {{0x2e217,4},{0x9f,1}}, {{0x30eeb,4},{0x2b511,2}}, {{0x1131,3},{0x6,1}}, + {{0x18ee,3},{0x7d1f,3}}, {{0x1189,3},{0x15fe,4}}, {{0xe19,1},{0x442d,1}}, {{0x10c04,7},{0xeed,4}}, + {{0xe2b,2},{0xfb0,2}}, {{0xf0d,2},{0xe69,5}}, {{0x2652b,5},{0xf12,3}}, {{0x3a53,4},{0x3537,2}}, + {{0x12d4,3},{0xfb8,3}}, {{0x1bbf,5},{0x19768,4}}, {{0x3642,2},{0x2c59,4}}, {{0x58a8,5},{0x18b4,3}}, + {{0x2f4a,4},{0xe0a,1}}, {{0x4765,3},{0x14a3c,4}}, {{0x2181,3},{0x4132,5}}, {{0x1081,4},{0x15e6d,3}}, + {{0x1a66,1},{0xf1a,2}}, {{0x1967,3},{0x1393,3}}, {{0x100f9,6},{0x1ce6,5}}, {{0x2e193,4},{0x314,2}}, + {{0xe97,4},{0xa,2}}, {{0xed1,4},{0x25bb,4}}, {{0xaba5,6},{0x127c,3}}, {{0x4853,3},{0x6cc8,3}}, + {{0x1bec,7},{0xe2b,2}}, {{0x13eec,5},{0xcbd,4}}, {{0x46af,3},{0x2280,2}}, {{0xe97,3},{0xa48b,3}}, + {{0x70ad,3},{0x7968,6}}, {{0x22e5,6},{0x12be,5}}, {{0x32ab,6},{0xdc6e,5}}, {{0xe6f,3},{0x2286e,5}}, + {{0x4781,3},{0xcd3,2}}, {{0x7eed,5},{0x128c,4}}, {{0xf0d,2},{0xe30,3}}, {{0xf0c,1},{0x15399,2}}, + {{0x45a7,3},{0x8b5e,5}}, {{0x4899,4},{0xf7a,2}}, {{0x11b47,5},{0x3643,3}}, {{0x6cde,4},{0x6,2}}, + {{0x236c,4},{0x12a29,5}}, {{0x1005,2},{0xe30,3}}, {{0xcc8,1},{0xf16,2}}, {{0x2a47,3},{0x111f,3}}, + {{0x12e5,3},{0x6ee8,3}}, {{0x29cf,3},{0x4385,3}}, {{0x4853,3},{0x1317,2}}, {{0x14f7,5},{0x2,1}}, + {{0x1fde9,6},{0xec6,3}}, {{0x12fe2,8},{0xe95,2}}, {{0x1a27,4},{0x2845,4}}, {{0xb3f1,3},{0x124eb,6}}, + {{0xb8dd,5},{0x41cc,5}}, {{0x119a,3},{0x1153,2}}, {{0x241f5,3},{0xe0d,2}}, {{0xf15,1},{0x6,1}}, + {{0xccb,2},{0x6,1}}, {{0x19b7,3},{0x10d2,3}}, {{0x6e91,3},{0xe11,2}}, {{0xfcb,3},{0xcce,2}}, + {{0x6275,6},{0x167f,7}}, {{0xfe3,7},{0x8,1}}, {{0xeab,2},{0x4,1}}, {{0x2a47,3},{0xed5,6}}, + {{0xdd8,6},{0x28b3a,1}}, {{0xf0a,3},{0x14de,4}}, {{0xe0f,1},{0xfe0,2}}, {{0xe33,1},{0x48d3,2}}, + {{0xf65,3},{0xe32,1}}, {{0x12e7,3},{0x69ca,7}}, {{0xcb8,1},{0xf62,3}}, {{0xf77,6},{0xee9,2}}, + {{0x5117,5},{0x1295,4}}, {{0x1156,3},{0xfdd,4}}, {{0xe6f,3},{0xe0a,1}}, {{0x4979,6},{0x1663,4}}, + {{0xe67,2},{0x12b74,4}}, {{0x2df3b,4},{0x314,2}}, {{0x14d4c,5},{0x2091,4}}, {{0x7115,4},{0xe22,2}}, + {{0x12c3,4},{0x101f,3}}, {{0x1a84,5},{0xe2b,4}}, {{0x44a9,8},{0x44b1,6}}, {{0xf8,2},{0x69,1}}, + {{0x18184,4},{0xe11,1}}, {{0x1677,3},{0x1d06,3}}, {{0x1be,2},{0x347,2}}, {{0xe25,2},{0xf91,3}}, + {{0x2006,4},{0x82c9,6}}, {{0x170e2,5},{0xbf50,4}}, {{0xe5b,3},{0xeb5,2}}, {{0x2e22f,4},{0x69,1}}, + {{0xf89,3},{0xcd3,1}}, {{0x1977,8},{0x160f,7}}, {{0x17fb2,5},{0xe0a,2}}, {{0xacb9,5},{0x19e1,3}}, + {{0x33ed,5},{0x10f4,4}}, {{0x1d18,5},{0x142d,3}}, {{0xccb,2},{0x3,1}}, {{0x12308,6},{0x5eaf,4}}, + {{0x1c46,6},{0xcc8,3}}, {{0x180e,3},{0x8,1}}, {{0x3a7d,7},{0x6411,4}}, {{0x2d521,4},{0x48d2,2}}, + {{0xe97,4},{0x7f09,8}}, {{0xcc1,1},{0x4516,3}}, {{0x31cb,8},{0xe69,6}}, {{0xf2cb,6},{0x2280,2}}, + {{0xb649,5},{0x4a01,3}}, {{0x29cf,3},{0x320c,4}}, {{0x4597,5},{0xf03,2}}, {{0xbc79,4},{0xe22,2}}, + {{0x215f,8},{0x1177,7}}, {{0xb985,7},{0x1302,5}}, {{0x206,2},{0xe,1}}, {{0x25b83,7},{0xe11,1}}, + {{0x5534,4},{0x4fa8,3}}, {{0x1e30d,5},{0x1064,3}}, {{0x9a41,5},{0xec5,4}}, {{0x109ff,6},{0x10298,3}}, + {{0xb8dd,6},{0xb8e3,6}}, {{0xb,1},{0xcc7,1}}, {{0x46af,3},{0x104a,3}}, {{0x2b46,4},{0x1025,1}}, + {{0x21,1},{0x260,2}}, {{0xe5e,2},{0x123e,3}}, {{0xd223,8},{0xed6,2}}, {{0x1857,4},{0x1380,5}}, + {{0x8841,8},{0xe6b,3}}, {{0x6cde,4},{0x1780,4}}, {{0x5536,4},{0xcc9,2}}, {{0x36ef,12},{0xed9,2}}, + {{0xf4f,1},{0xfa5e,4}}, {{0x1ccd,5},{0x1077,6}}, {{0x4c10,9},{0x1561,4}}, {{0x1c91,4},{0xfb0,2}}, + {{0x14bbc,8},{0xfe6,2}}, {{0x19f7,4},{0xcd3,3}}, {{0xd777,8},{0xec6,3}}, {{0xadf1,5},{0xeab,2}}, + {{0x10c5,4},{0x7e9d,3}}, {{0x7414,3},{0x5,2}}, {{0x1bbf,5},{0x1198,3}}, {{0x4853,3},{0x109b,2}}, + {{0x145b,2},{0xcc9,2}}, {{0x2006,3},{0x2dd7,4}}, {{0x1817,4},{0x5538,2}}, {{0x146d,4},{0xeee,3}}, + {{0x442b,3},{0x78ed,2}}, {{0x2966,4},{0xec6,3}}, {{0x2a81f,5},{0xe11,1}}, {{0xec53,3},{0x10d3,3}}, + {{0xdd0a,3},{0xe32,1}}, {{0xcd3,2},{0x11d0,5}}, {{0x2a47,3},{0xe0a,1}}, {{0x1e355,6},{0xec6,3}}, + {{0x3b09,4},{0xd183,6}}, {{0x473d,3},{0xf35,2}}, {{0x30c1,8},{0x4eb0,4}}, {{0x9b9d,6},{0x3a30,6}}, + {{0xe86,2},{0xf91,3}}, {{0x9ddd,6},{0xeb9,5}}, {{0x739f,5},{0xe22,2}}, {{0x19e9,4},{0xe22,3}}, + {{0x236d3,5},{0xec6,3}}, {{0x2df3b,4},{0xe,2}}, {{0x22b8,4},{0x94be,4}}, {{0xbccd,4},{0xee9,2}}, + {{0x1667,4},{0xf0d,2}}, {{0x1007,5},{0xdbff,6}}, {{0x11b89,5},{0xe69,5}}, {{0x1133e,3},{0xe2b,2}}, + {{0x12b8f,3},{0xe0a,1}}, {{0x1cf3,3},{0xe6b,4}}, {{0xb9a9,5},{0x94be,7}}, {{0x52d8,3},{0xed9,2}}, + {{0xc6cb,6},{0xc6dc,5}}, {{0x1937,4},{0x4618,3}}, {{0x1f9f9,7},{0x6,1}}, {{0x7a39,4},{0xe11,1}}, + {{0x1702,4},{0xf35,3}}, {{0x22fbb,7},{0xe11,1}}, {{0xf34f,7},{0xfdd,4}}, {{0x1081,7},{0xcc7,1}}, + {{0x1377,5},{0x843c,3}}, {{0x1b8a,4},{0xfa9,4}}, {{0xe61,3},{0x1af1,4}}, {{0x206,2},{0x8d,1}}, + {{0x3479,8},{0xe67,2}}, {{0x314,2},{0x21,1}}, {{0xcbd,1},{0x2075,3}}, {{0x4ee8,4},{0x8f39,4}}, + {{0x1969,1},{0x1cd3,2}}, {{0x13028,6},{0xec6,3}}, {{0x1ff7,3},{0x2280,2}}, {{0x451e,3},{0xfb0,2}}, + {{0x4137,5},{0x1722,5}}, {{0x4693,5},{0x3454,9}}, {{0x1150,3},{0x45f2,2}}, {{0x6415,10},{0xec6,3}}, + {{0xfb0,2},{0xe80,2}}, {{0x5611,5},{0x152e,3}}, {{0x11019,4},{0x1101d,7}}, {{0x16322,6},{0x1150,2}}, + {{0x10e77,5},{0x1150,2}}, {{0x2a65,5},{0xfe6,2}}, {{0xefa,2},{0xfdb,4}}, {{0x33d1,4},{0xe11,2}}, + {{0xed6,2},{0xe92,3}}, {{0x10e2,3},{0x6,2}}, {{0x144a0,7},{0x1de7,3}}, {{0xe0eb,7},{0x1fc7,3}}, + {{0x1967,3},{0x1062,2}}, {{0x29cf,3},{0x2bb4,2}}, {{0x164,2},{0x57,1}}, {{0x1e9e,5},{0x1b8a,8}}, + {{0xaaf,2},{0xe77,2}}, {{0xa,2},{0x1be9,3}}, {{0xf1f,3},{0xf91,3}}, {{0x4853,3},{0xec6,3}}, + {{0xfa5,2},{0x6,1}}, {{0xa,2},{0xe0b,4}}, {{0x9b79,5},{0x10d9,2}}, {{0xb001,8},{0xcc9,2}}, + {{0x1893a,7},{0xe5e,2}}, {{0x28df,5},{0x10862,4}}, {{0xcb8,1},{0x8,1}}, {{0x1c91,4},{0x13e3,4}}, + {{0xe1f,3},{0x1252,3}}, {{0xdd2e,7},{0x2dd7,4}}, {{0x1967,3},{0x15399,2}}, {{0x2e22f,4},{0x7b,1}}, + {{0xeca,3},{0xcd3,1}}, {{0xf59,3},{0xeb4,2}}, {{0xe71,1},{0xee22,5}}, {{0xbd09,5},{0xcbd,1}}, + {{0xebe,4},{0x1b9d,4}}, {{0xef7,3},{0xfc5b,5}}, {{0x7d61,7},{0x2ca3,4}}, {{0x19c7,6},{0x149c,3}}, + {{0x1d0,2},{0x9f,1}}, {{0xcc8,1},{0xec0,3}}, {{0x8265,7},{0x423c,5}}, {{0x5693,10},{0xcc9,2}}, + {{0x1f1a4,6},{0x1392,3}}, {{0x9219,5},{0xe5e9,3}}, {{0x1567,14},{0xe95,2}}, {{0xc017,2},{0x1593,3}}, + {{0x1189d,4},{0xcd3,3}}, {{0x46bd,3},{0x319a,3}}, {{0x45a5,6},{0xeee,3}}, {{0xe1f,3},{0xf62,3}}, + {{0xe97,3},{0xe16,1}}, {{0xfe8,2},{0xe77,3}}, {{0x7d0d,6},{0x2f2e,3}}, {{0xcb8,1},{0x1a5e,3}}, + {{0x19b7,3},{0x15af1,7}}, {{0xb3f1,3},{0x2d843,2}}, {{0xde8e,4},{0xe6b,3}}, {{0x15fc6,7},{0xec6,3}}, + {{0xcc7,1},{0xf61,2}}, {{0x1133c,6},{0xbfca,3}}, {{0x4295,5},{0x1189,4}}, {{0x1d7bb,7},{0xe11,1}}, + {{0x29c0,3},{0xe99,1}}, {{0x116a5,2},{0x116a7,5}}, {{0xe6f,3},{0xce83,4}}, {{0xb60d,10},{0xcc3,2}}, + {{0xe11,1},{0xed9,2}}, {{0xcbd,1},{0xf1a,2}}, {{0x5f1b,5},{0xe11,2}}, {{0x146ee,7},{0xec6,3}}, + {{0x12b2,5},{0x53c1,4}}, {{0xcc14,7},{0xc541,3}}, {{0x4781,3},{0x142d,3}}, {{0x1131,3},{0xeed,4}}, + {{0xec17,7},{0x1fc7,3}}, {{0x30f63,4},{0x2e7da,2}}, {{0x1967,3},{0xf86,2}}, {{0x46af,3},{0x20bfd,4}}, + {{0x5903,5},{0x809a,3}}, {{0x103ae,4},{0x2ee9,3}}, {{0x5652,8},{0xed9,2}}, {{0x6109,8},{0xe11,1}}, + {{0x1667,4},{0xe0d,2}}, {{0x1e718,5},{0x113f,2}}, {{0xed1,3},{0x2638d,3}}, {{0x1a47,4},{0x143c,4}}, + {{0xdb21,3},{0xe71,1}}, {{0xf4f,1},{0x1153,2}}, {{0x7414,3},{0x113f,2}}, {{0x1bb0,6},{0xf91,3}}, + {{0x3457,4},{0x127c,3}}, {{0x15e6d,3},{0xed6,2}}, {{0x1967,3},{0x4618,3}}, {{0x1cd3,2},{0xcd3,1}}, + {{0xe22,2},{0x2e28,3}}, {{0x2df3b,4},{0x699,2}}, {{0x478f,3},{0x162c,3}}, {{0xfb8,3},{0xf35,3}}, + {{0xe2b,2},{0x1722,5}}, {{0xf11,1},{0x1a66,1}}, {{0xf0a,3},{0x5,1}}, {{0x122d,2},{0x13e4,3}}, + {{0x3fbd,9},{0xcce,2}}, {{0x4853,3},{0xcc3,3}}, {{0x1303,3},{0xf7a,2}}, {{0x21,1},{0x5bc,2}}, + {{0xe32,1},{0xf61,2}}, {{0x5693,7},{0x11a6,2}}, {{0x2579b,5},{0x1f10d,3}}, {{0xff78,7},{0xed6,2}}, + {{0x20068,6},{0xec3,3}}, {{0x70ad,3},{0x445b,2}}, {{0x27a34,6},{0xe11,1}}, {{0x31955,2},{0x2b0aa,2}}, + {{0x4853,3},{0x1db34,2}}, {{0xef7,3},{0x286d,3}}, {{0x13dfc,5},{0x5261,4}}, {{0x309c,4},{0xeed,4}}, + {{0x4aff,5},{0x3244,5}}, {{0x12d4,3},{0xe09,1}}, {{0x68,2},{0x8d,1}}, {{0x4597,4},{0x1252,3}}, + {{0xaf4d,8},{0x6ba3,3}}, {{0x28b33,1},{0x28b3a,1}}, {{0x1e2,2},{0x57,1}}, {{0x19c34,6},{0xf35,3}}, + {{0x1df9,5},{0x4eb1,3}}, {{0x455f,5},{0xd3f6,5}}, {{0x82b9,6},{0xcc3c,4}}, {{0x12e5,3},{0x1654b,7}}, + {{0x2183,3},{0xf35,2}}, {{0xe99,1},{0xc962,5}}, {{0x4599,3},{0x13a73,5}}, {{0x78f9,1},{0x20599,1}}, + {{0x16a7,3},{0x63cf,5}}, {{0xccd,1},{0xf86,2}}, {{0x2948,3},{0x4459,3}}, {{0x8229,7},{0x8230,5}}, + {{0x53ef,6},{0x138e,4}}, {{0x12e5,3},{0x103e7,4}}, {{0xecb,2},{0xce96,4}}, {{0x59c6,5},{0x1bf0,2}}, + {{0xc08f,4},{0x1689,6}}, {{0x9435,6},{0xe95,2}}, {{0xef7,3},{0x24f7,4}}, {{0xe97,3},{0xeb4,3}}, + {{0x23d1,3},{0x1150,2}}, {{0x2e22f,4},{0x21,1}}, {{0xe21,1},{0x6,1}}, {{0xe37,4},{0x18ed6,2}}, + {{0x4853,3},{0x70f8,3}}, {{0x10238,6},{0xcc9,2}}, {{0x1290,7},{0x28f5,5}}, {{0x6171,5},{0x1de7,3}}, + {{0xcb8,1},{0xe0a,1}}, {{0x1f25,8},{0xec6,3}}, {{0x11f25,5},{0xcc3,2}}, {{0x1a27,4},{0x3c88,3}}, + {{0x105f,3},{0xc445,5}}, {{0x10e09,8},{0xec3,3}}, {{0xf15,1},{0x1569,3}}, {{0x10cc,2},{0x2bb4,3}}, + {{0x1edb4,6},{0x6,1}}, {{0x21,1},{0x109,2}}, {{0x27e0,5},{0x3643,4}}, {{0x5903,7},{0x128c,4}}, + {{0x1d0f,3},{0xe80,2}}, {{0xa215,5},{0xcce,2}}, {{0x114d,5},{0x1de7,3}}, {{0x12d4,3},{0xed6,2}}, + {{0x7ff5,5},{0xe11,1}}, {{0x2a56,4},{0x10298,3}}, {{0xee4,4},{0x4d42,6}}, {{0x15076,7},{0xec6,3}}, + {{0x4765,3},{0x246d7,4}}, {{0x10e2a,4},{0x2435f,4}}, {{0x1c73,5},{0xe6b,2}}, {{0x1240,2},{0x1a71,4}}, + {{0x4f77,8},{0xe77,3}}, {{0xe2f,1},{0x12151,9}}, {{0x2df3b,4},{0x688,2}}, {{0x2437b,5},{0x1fd05,3}}, + {{0x4781,3},{0xfa5e,4}}, {{0x101f,3},{0x318e,5}}, {{0x1977,3},{0x1049,3}}, {{0x5eda,5},{0x1b41,4}}, + {{0x1f444,2},{0x19b9,1}}, {{0x45a5,5},{0x8b5e,5}}, {{0xf77,9},{0xe77,3}}, {{0x1019,6},{0x8a87,6}}, + {{0x3559,4},{0x592e,5}}, {{0x1967,3},{0x3642,2}}, {{0x7a79,6},{0x27dc,4}}, {{0x1327,4},{0x1327,4}}, + {{0x19e7,5},{0xec6,3}}, {{0xcb8,1},{0x1d7e,3}}, {{0x1e62,4},{0x1150,2}}, {{0xf77,5},{0x4fca,8}}, + {{0xe61,4},{0xe22,3}}, {{0xb7bd,8},{0xb7c5,4}}, {{0xe01a,6},{0x4bef,4}}, {{0x1747,4},{0x1889,2}}, + {{0x18496,3},{0x18499,5}}, {{0x30c1,8},{0x189f,3}}, {{0x157a6,8},{0xebc,2}}, {{0xd013,8},{0xed9,2}}, + {{0x10b9,2},{0xe1fa,4}}, {{0xe97,4},{0x10c97,7}}, {{0x58cf,7},{0x4eef,5}}, {{0x158f,3},{0xec6,3}}, + {{0x1687,4},{0x566f,4}}, {{0x39b9,8},{0xcc9,2}}, {{0x8c91,6},{0xccd,1}}, {{0x70ad,3},{0xc3d7,5}}, + {{0xcd3,2},{0x10bb,5}}, {{0x13a7,5},{0x2c90,9}}, {{0x19e7,5},{0x41bc,4}}, {{0x16a7,3},{0x288b,2}}, + {{0xb025,9},{0xe11,1}}, {{0xccb,2},{0xcc3,2}}, {{0x15e9,3},{0xe0a,1}}, {{0x1803e,5},{0x10af6,4}}, + {{0x18d72,5},{0xc3d0,3}}, {{0x6def,8},{0x12be,5}}, {{0x3bdb,6},{0xe11,1}}, {{0x29cf,3},{0x7a14,4}}, + {{0x1447,7},{0xcc8,1}}, {{0x9,1},{0x4,1}}, {{0x19b7,3},{0xcba,2}}, {{0xc954,5},{0xe69,5}}, + {{0xe,1},{0x302,2}}, {{0x4ee8,4},{0x5342,4}}, {{0x4a70,8},{0x7c3d,4}}, {{0xed1,4},{0xe32,1}}, + {{0xfd1,9},{0xfda,5}}, {{0xc6f7,4},{0xeee,3}}, {{0x39b9,12},{0xed9,2}}, {{0xaed5,9},{0xe0a,1}}, + {{0x44b7,7},{0x2daa,7}}, {{0x12f6,4},{0x142d,3}}, {{0x8b89,8},{0xeee,3}}, {{0x9a8,1},{0xcc8,1}}, + {{0xe01a,5},{0x142b1,5}}, {{0x109b,2},{0x1d65,3}}, {{0x1f38,1},{0x1dee,2}}, {{0x103b9,5},{0x534e,5}}, + {{0x24eeb,5},{0xe09,1}}, {{0x3d63,5},{0x15ce7,5}}, {{0x9,1},{0x1569,2}}, {{0xeca,3},{0xc300,3}}, + {{0x11e09,3},{0x66c2,3}}, {{0x17524,6},{0x1752a,4}}, {{0x22f8b,6},{0xe5e,2}}, {{0x19b7,3},{0xb37c,3}}, + {{0xe21,1},{0x1067f,3}}, {{0x2cbe5,4},{0xe11,1}}, {{0xe33,1},{0x1a66,1}}, {{0x1f38,1},{0xbfca,3}}, + {{0xeee,3},{0x2,1}}, {{0x384d,7},{0x9934,5}}, {{0xe28,3},{0xe0a,1}}, {{0x17030,2},{0x122c6,6}}, + {{0x82b9,6},{0xcc1,1}}, {{0x12d4,3},{0xcbf,2}}, {{0xf02,2},{0xe7f,2}}, {{0x1150,2},{0x5,1}}, + {{0x8d15,8},{0x8d1d,4}}, {{0x70ad,3},{0x74f6,2}}, {{0x780a,5},{0x1189,4}}, {{0x1df9,6},{0x6,2}}, + {{0x13be0,9},{0xe11,1}}, {{0xe5b,3},{0x1153,2}}, {{0x26921,2},{0x2ba5,1}}, {{0x1208,4},{0x58ff,4}}, + {{0xe1f,3},{0x65ec,5}}, {{0xee22,5},{0x1152,3}}, {{0x4765,3},{0x5724,3}}, {{0x77f0,4},{0xfa5,4}}, + {{0x3db7,7},{0x286d,3}}, {{0x10a3,3},{0x19149,5}}, {{0x9ff9,6},{0xe95,2}}, {{0x21,1},{0x1bd,2}}, + {{0xc159,4},{0x2271,3}}, {{0x1692,2},{0xf35,2}}, {{0x1b263,6},{0xec6,3}}, {{0xfe3,4},{0xb3e8,6}}, + {{0x2ace,10},{0xe92,3}}, {{0x145b,2},{0x13146,4}}, {{0xe2f,1},{0xed9,2}}, {{0xbd99,5},{0x1143,3}}, + {{0xe5f2,7},{0x5342,3}}, {{0x51f4,7},{0xcce,2}}, {{0x46cd,7},{0xf4a,5}}, {{0x11b26,5},{0xb97c,3}}, + {{0x1be,2},{0x369,2}}, {{0xf0a,3},{0x1e2bf,6}}, {{0x29cf,3},{0x2261,3}}, {{0xe77,2},{0xe0b,4}}, + {{0x20579,1},{0xaf4,1}}, {{0x110d4,6},{0x1b9d,4}}, {{0xe97,3},{0x169d,3}}, {{0xf1d,2},{0xcd3,2}}, + {{0x724d,6},{0x120c,3}}, {{0xe78,2},{0x14f9,3}}, {{0xe0f,2},{0x1088,9}}, {{0x956d,5},{0xbd26,3}}, + {{0x5bb6,3},{0x15bf6,4}}, {{0xcbd,1},{0xfb0,2}}, {{0x3203,7},{0xec6,3}}, {{0xc7e9,7},{0xe92,3}}, + {{0xb69d,3},{0xcd3,1}}, {{0x41ed,4},{0xce8e,4}}, {{0x1a66,1},{0xcce,3}}, {{0x7414,3},{0xcd3,1}}, + {{0xe11,1},{0x492e,3}}, {{0x8af9,9},{0x2477,3}}, {{0x27ef,4},{0x61a1,4}}, {{0x11788,4},{0xfb0,2}}, + {{0x12e5,3},{0x6970,4}}, {{0xfe86,6},{0x30f4,4}}, {{0xb51f,4},{0x5538,2}}, {{0xed1,5},{0x3c35,7}}, + {{0xe32,1},{0xc300,3}}, {{0x1081,7},{0x1f9f,3}}, {{0xf4d0,6},{0x3075,3}}, {{0x1189d,4},{0x6,2}}, + {{0x1f4,2},{0x7b,1}}, {{0xe83,5},{0x15b43,5}}, {{0xe823,8},{0x59b4,3}}, {{0x9a8,1},{0x1317,2}}, + {{0xede,1},{0x1790,3}}, {{0x5315,4},{0xf59,2}}, {{0x2533b,5},{0xf86,2}}, {{0x12e7,3},{0x9a9,4}}, + {{0xe1f,3},{0x6034,5}}, {{0x121c,3},{0x17c0,2}}, {{0x2adf,4},{0x2317,5}}, {{0x6678,9},{0xec6,3}}, + {{0xe22,2},{0xcc4,2}}, {{0x9a6,1},{0x2e29,3}}, {{0x1f34,8},{0xe6b,4}}, {{0xe09,1},{0x3756,3}}, + {{0xe6f,3},{0xfb0,3}}, {{0x5534,4},{0x101f,2}}, {{0xf65,4},{0xe7f,4}}, {{0xe3d,4},{0x2aff8,2}}, + {{0xe97,3},{0x1204,4}}, {{0x46bd,3},{0xfb0,2}}, {{0x23e1,3},{0x1f7c,3}}, {{0x1dee,2},{0xcc8,1}}, + {{0x4c85,8},{0xed9,2}}, {{0x11184,4},{0xe19,1}}, {{0x12d4,3},{0xe2f,1}}, {{0x7824,5},{0x6ede,8}}, + {{0x2ba5,1},{0x1ffa,4}}, {{0x4c10,6},{0xcc7,1}}, {{0xe83,3},{0x18735,4}}, {{0x1417,8},{0xe67,2}}, + {{0x450b,4},{0xee9,2}}, {{0xcc7,1},{0xf70,2}}, {{0x465b,4},{0xfe8,2}}, {{0x4385,3},{0x1288,4}}, + {{0x133b6,6},{0x1b9d,4}}, {{0x13b7,12},{0xe0b,4}}, {{0x417d,5},{0x182f,3}}, {{0xf4f,1},{0x6,2}}, + {{0xb379,3},{0x1317,2}}, {{0x1d69b,5},{0xdd0a,3}}, {{0x2ba5,1},{0xe19,1}}, {{0x712f,6},{0x10bb,5}}, + {{0xf0a,3},{0x10cb,2}}, {{0x1569,2},{0xe0b,4}}, {{0x1a07,3},{0xc3d0,3}}, {{0xecb,2},{0x3ce0,5}}, + {{0x175c,3},{0x6ca7,3}}, {{0xe11,2},{0x13e3,4}}, {{0x122f4,7},{0xec6,3}}, {{0xe33,1},{0xcce,2}}, + {{0xcb8,1},{0x22b2,3}}, {{0xe08,1},{0x7a37,2}}, {{0x6dc8,7},{0x16e1,6}}, {{0x176b4,6},{0x7e59,4}}, + {{0x1f07,4},{0x3080,4}}, {{0x127a4,7},{0xed6,2}}, {{0xca30,6},{0xfdd,4}}, {{0xccd,1},{0xb,1}}, + {{0x6fd0,8},{0xec6,3}}, {{0x156d,3},{0xe5e,2}}, {{0x16a7,3},{0xeaf5,4}}, {{0x1047,3},{0x10f2,5}}, + {{0x4ce0,6},{0x9a4,3}}, {{0xe2f,4},{0xcd3,2}}, {{0x9a9,2},{0xcd3,2}}, {{0x5749,6},{0xc8f7,4}}, + {{0x354b,7},{0xf85,4}}, {{0x2c86,2},{0xf7a,2}}, {{0x1252e,4},{0x12871,5}}, {{0x1085,3},{0xe25,2}}, + {{0xe22,2},{0xf0d,2}}, {{0x1bef,2},{0x6,1}}, {{0x46af,3},{0x1e65,3}}, {{0x127f,3},{0x4b15,4}}, + {{0x116b7,6},{0x1ea1,5}}, {{0xe2f,1},{0xcba,2}}, {{0xe11,1},{0x10b9,2}}, {{0xcc1,1},{0xfcb,2}}, + {{0xd48,4},{0x2b0b0,2}}, {{0x20c39,7},{0xe11,1}}, {{0x18766,3},{0xf62,3}}, {{0x3bdb,10},{0xec6,3}}, + {{0x16f7,6},{0xed6,3}}, {{0x712f,4},{0x8,1}}, {{0x1189d,4},{0x6,1}}, {{0x1677,3},{0x1fbe,3}}, + {{0x1a07,3},{0x1f38,1}}, {{0xf65,4},{0x7b9d,8}}, {{0x11965,6},{0xe22,2}}, {{0x11d7,3},{0x269f,6}}, + {{0x4f9e,9},{0x1e83,3}}, {{0x2948,3},{0xede,1}}, {{0x6f1a,5},{0x1b80,3}}, {{0x7303,6},{0x1fc7,3}}, + {{0x143c4,7},{0x9372,3}}, {{0x1847,4},{0xe25,2}}, {{0x17786,6},{0x10af6,4}}, {{0x307ff,2},{0x0,1}}, + {{0x417d,5},{0x29d4,4}}, {{0xffdb,7},{0x6,1}}, {{0x55,2},{0xd,1}}, {{0x9a8,1},{0x1d7d,3}}, + {{0x2667b,5},{0x14f9,3}}, {{0xe83,3},{0xb37c,3}}, {{0x1ffa,3},{0xe11,1}}, {{0x188,2},{0xf,1}}, + {{0x2d38f,4},{0xe0f,1}}, {{0x1c82,6},{0xce40,5}}, {{0xcd3,2},{0xf1a,2}}, {{0xe584,7},{0xe11,1}}, + {{0x3a1b,5},{0xb1d0,5}}, {{0xd551,6},{0x3075,4}}, {{0xe4c9,8},{0xf91,3}}, {{0x6,2},{0x318e,5}}, + {{0x20851,6},{0xe95,2}}, {{0xb,1},{0x1059,3}}, {{0x2ba5,1},{0x1131,3}}, {{0xbb35,5},{0xec5,4}}, + {{0x7197,8},{0x146d,4}}, {{0x17acb,2},{0x4461,2}}, {{0x2006,4},{0x10cb,4}}, {{0x4765,3},{0x1db3a,2}}, + {{0xe7f,2},{0x6,1}}, {{0x4,1},{0xfa1,2}}, {{0xf77,3},{0xb9d1,3}}, {{0x114a7,8},{0x1be9,3}}, + {{0x1857,4},{0x61bb,4}}, {{0xe08,1},{0xcbf,2}}, {{0x19f7,4},{0x53c2,3}}, {{0xf32,2},{0xe71,1}}, + {{0x1d54,6},{0xf84,5}}, {{0xf57,2},{0x49a6,3}}, {{0xd48,4},{0x308c1,2}}, {{0xd131,4},{0xf3a,2}}, + {{0x80fd,6},{0xe78,2}}, {{0x127f,4},{0x106b4,3}}, {{0x2f71,7},{0xe11,1}}, {{0x38e7,7},{0x23d2,3}}, + {{0x3e51,7},{0x240b,6}}, {{0x2583b,6},{0xf23,2}}, {{0x478f,3},{0x2b83,2}}, {{0xe21,1},{0x4461,2}}, + {{0x1437,9},{0xfa9,4}}, {{0xce71,5},{0x49a6,3}}, {{0x12f6,4},{0x1ebf,3}}, {{0x18220,3},{0xccd,1}}, + {{0xaaf,2},{0xe6b,3}}, {{0xf3a,2},{0xccc,2}}, {{0x14ff,3},{0xf7a,2}}, {{0x7414,3},{0xeb4,2}}, + {{0x11b68,8},{0xed6,2}}, {{0x17314,3},{0xfa2b,4}}, {{0xef7,3},{0x41e9,4}}, {{0xcb8,1},{0x15ec,3}}, + {{0x1ff7,3},{0x9a4,3}}, {{0x54f3,10},{0xec6,3}}, {{0x1b2bd,5},{0xe1a2,4}}, {{0x12e5,3},{0x23566,5}}, + {{0x16a7,3},{0x1a71,3}}, {{0x23663,6},{0x1664,2}}, {{0x1ef2e,6},{0xe0a,1}}, {{0x6cc4,4},{0x61a1,4}}, + {{0x758d,5},{0x153ff,5}}, {{0x1041,3},{0x11cb,3}}, {{0x624e,6},{0x36ce,5}}, {{0x127f,3},{0x1693,3}}, + {{0x4853,3},{0xffc,3}}, {{0xe2b,2},{0x14a2,3}}, {{0xd78,4},{0x18ee2,2}}, {{0x10c5,4},{0xf24,2}}, + {{0x9fb1,6},{0xc6dc,5}}, {{0xe25,2},{0xe13,3}}, {{0x1de7,3},{0xe32,1}}, {{0x300b,8},{0x8531,3}}, + {{0x2ed7,7},{0x172e,5}}, {{0xe2f,1},{0xf15,1}}, {{0x1637,7},{0xe92,3}}, {{0x2501,5},{0x5538,2}}, + {{0x101bf,6},{0x2b7a,3}}, {{0x4c37,5},{0x1292f,5}}, {{0xe164,6},{0xed9,2}}, {{0x7f09,3},{0x10d3,3}}, + {{0x10d6,5},{0xe86,2}}, {{0xe33,1},{0xe0f,1}}, {{0xe5e,2},{0x8,1}}, {{0x124c,6},{0x1131,3}}, + {{0x29bf9,4},{0x29bfd,3}}, {{0x1bec,5},{0x1b8a,8}}, {{0x2a94,4},{0x678f,6}}, {{0x2de93,4},{0x21,1}}, + {{0xe1f,3},{0x183a,3}}, {{0x205a5,1},{0x2e27e,2}}, {{0xc099,4},{0x1040,3}}, {{0xaaf,2},{0x2e269,2}}, + {{0x1ac,2},{0x8d,1}}, {{0x73b9,8},{0xec6,3}}, {{0x1ff7,3},{0x951c,4}}, {{0x14ab,3},{0xff1,4}}, + {{0x1364a,8},{0xcc9,2}}, {{0xe97,3},{0x168a,3}}, {{0x12d4,3},{0x1f401,2}}, {{0xe0c,3},{0x277e,2}}, + {{0x4c37,6},{0x2c6a,5}}, {{0x7a01,5},{0xe10,2}}, {{0x1e9e,5},{0x4,1}}, {{0x1377,5},{0x1040,3}}, + {{0xe,1},{0x468,2}}, {{0x4618,3},{0x1025,1}}, {{0x149c,3},{0x1025,1}}, {{0x17ada,5},{0x17cc,4}}, + {{0x10c5,4},{0x45f2,2}}, {{0x2957,7},{0x1689,6}}, {{0x111a,3},{0x104a,3}}, {{0xe83,3},{0xa3ec,9}}, + {{0x16a7,3},{0x1c79,2}}, {{0x11db,3},{0xfbb,4}}, {{0x464d,5},{0x11218,6}}, {{0x2015,3},{0xd885,5}}, + {{0xf89,3},{0x13f3f,7}}, {{0x1796b,4},{0x2,1}}, {{0xb979,4},{0x104c,2}}, {{0xcc1,1},{0xe8a,2}}, + {{0x12f8,2},{0x8,1}}, {{0x1377,5},{0x87a0,5}}, {{0x1d950,4},{0x28b54,3}}, {{0x471f,5},{0x17cd,4}}, + {{0x769e,8},{0x3caa,3}}, {{0x2e22f,4},{0xf,1}}, {{0x17bd4,5},{0x2801,3}}, {{0x17eb8,7},{0xebb,3}}, + {{0x1f4,2},{0x57,1}}, {{0x70ad,3},{0x8,1}}, {{0xe37,4},{0x2b0e8,2}}, {{0x13f50,6},{0xcce,2}}, + {{0x215f,8},{0xed9,2}}, {{0x311af,2},{0xd1c,2}}, {{0xe22,2},{0x4317,5}}, {{0x35a1,2},{0xcd3,2}}, + {{0x2b0a8,4},{0x2e7c0,2}}, {{0xe2b,2},{0x1177,7}}, {{0xe33,1},{0x1969,1}}, {{0x1d98f,6},{0xec6,3}}, + {{0x9a8,1},{0xb,1}}, {{0x4853,3},{0x3372,4}}, {{0x1be,2},{0x9f,1}}, {{0x7911,3},{0x2ed1,6}}, + {{0x3bcd,4},{0xfda,9}}, {{0xed1,3},{0x1f38,4}}, {{0x1587,4},{0xf70,2}}, {{0x1bbf,4},{0x159e3,4}}, + {{0x11817,5},{0xf1d,2}}, {{0xefa,2},{0x3,1}}, {{0x54e6,9},{0xf7a,2}}, {{0x1756a,5},{0x18b2,5}}, + {{0x19b7,3},{0x78ed,2}}, {{0x450b,4},{0x7181,9}}, {{0x478f,6},{0xe61,2}}, {{0x46af,3},{0xe08,1}}, + {{0x4bfa,3},{0xcd3,1}}, {{0xf9b,5},{0x4574,3}}, {{0x3a0d,7},{0xf91,3}}, {{0x1a66,1},{0x22d9,7}}, + {{0xada9,8},{0x126a,4}}, {{0x4853,3},{0xe99,1}}, {{0x1367,4},{0x4618,3}}, {{0x2966,5},{0x2c59,4}}, + {{0xcc7,1},{0x181b,3}}, {{0x19b7,3},{0x180a,3}}, {{0xf0c,1},{0xcd61,8}}, {{0x1c3ee,6},{0xcc9,2}}, + {{0x4773,4},{0x3,1}}, {{0xcc1,1},{0x1601,3}}, {{0x1889,2},{0xf35,2}}, {{0x1bc68,6},{0x1131,3}}, + {{0x1208,5},{0x1050,3}}, {{0x45a5,5},{0x3640,4}}, {{0x2647b,5},{0x17b0,3}}, {{0x2de63,3},{0x302,2}}, + {{0x89d3,3},{0xe77,3}}, {{0x250e3,5},{0xe22,2}}, {{0xcd3,2},{0xb7e8,5}}, {{0x18a70,6},{0xf91,3}}, + {{0x2cc9f,4},{0x24901,2}}, {{0x1a07,3},{0xf0f,2}}, {{0x13fa0,7},{0x288b,2}}, {{0x1677,3},{0xe104,3}}, + {{0x46af,3},{0xf4f,1}}, {{0x19b9,1},{0x17c0,2}}, {{0xcc1,1},{0xa704,4}}, {{0x5722,5},{0x51c8,5}}, + {{0x613d,6},{0x9baf,6}}, {{0x17e18,9},{0xe11,1}}, {{0x2d79,4},{0xcc7,2}}, {{0x13eec,5},{0x2ca1,4}}, + {{0x11c4,7},{0xf4a,5}}, {{0x4765,3},{0x4a86,4}}, {{0x122d,2},{0xcd3,1}}, {{0x1447,7},{0x2e1a,7}}, + {{0x260eb,5},{0xf15,1}}, {{0x28b3a,1},{0xab1,1}}, {{0xa0bd,3},{0xe11,1}}, {{0x2de5d,3},{0x109,2}}, + {{0x29de,4},{0x367a,5}}, {{0xb60f,4},{0x10d3,3}}, {{0x1ec4c,5},{0x1ad8e,4}}, {{0x1667,5},{0x1de7,3}}, + {{0xf57,2},{0x2dd7,4}}, {{0xcc7,1},{0xe22,3}}, {{0x457b,5},{0x870e,7}}, {{0x391f,5},{0xeb9,3}}, + {{0xcc8,1},{0xcaa1,5}}, {{0x2ba5,1},{0x1d003,5}}, {{0x19b7,3},{0x157c,3}}, {{0x12d4,3},{0x1692,2}}, + {{0x354b,7},{0xe69,5}}, {{0x1a07,3},{0xcc8,2}}, {{0x29c0,3},{0x2ba5,1}}, {{0x12bf0,7},{0xcc9,2}}, + {{0x101f,2},{0x6,1}}, {{0xec0,3},{0x6,1}}, {{0x169d,4},{0xe67,2}}, {{0x91f5,5},{0xf1d,2}}, + {{0x6c42,10},{0xec6,3}}, {{0x3329,7},{0xe0a,1}}, {{0xf0c,1},{0xf1d,2}}, {{0x5,1},{0xfbb,3}}, + {{0x70ad,3},{0xe5e,2}}, {{0xb3f1,3},{0xf0c,1}}, {{0x1e71,6},{0xe67,2}}, {{0x111a,3},{0x89d3,3}}, + {{0x5,1},{0xcd3,3}}, {{0xcbe,3},{0xcc9,2}}, {{0x1ea72,2},{0x1a66,1}}, {{0x486f,6},{0x10f4,4}}, + {{0x495f,5},{0x1d75,3}}, {{0xe32,1},{0x1064,3}}, {{0x1715a,5},{0x158e,2}}, {{0x1ff7,3},{0x142a,3}}, + {{0x10600,8},{0xcc9,2}}, {{0x1d74,3},{0x1025,1}}, {{0xeb5,2},{0xf80,2}}, {{0x449b,5},{0x1de0b,4}}, + {{0x1567,3},{0x400a,2}}, {{0x9a6,1},{0xe89,2}}, {{0x1f25,5},{0x1131,6}}, {{0x17600,5},{0xf62,3}}, + {{0x1be,2},{0x358,2}}, {{0x1178a,2},{0x22bc,4}}, {{0x46bf,1},{0xf7a,2}}, {{0x21,1},{0xd,2}}, + {{0x4ef5,4},{0x8f2c,5}}, {{0x1727,8},{0xe89,2}}, {{0x17ec2,5},{0xfdd,4}}, {{0x2bc7,8},{0x11d0,5}}, + {{0xe71,1},{0xcc8,1}}, {{0x149f,3},{0xe0a,1}}, {{0x314d,6},{0x1156,3}}, {{0x12c3,4},{0xcd3,2}}, + {{0x2533b,5},{0xf35,2}}, {{0x70ad,3},{0x3356,4}}, {{0x504d,3},{0xe7f,2}}, {{0x27e0,3},{0x6d4e,5}}, + {{0xf86,2},{0xe09,1}}, {{0x2e27d,2},{0x2e27d,1}}, {{0x3e0b,5},{0xccb,2}}, {{0x773a,7},{0xa,2}}, + {{0xf0c,1},{0xcdda,2}}, {{0xfea7,8},{0xec3,3}}, {{0x1a05a,6},{0xf91,3}}, {{0x1780,3},{0x8,1}}, + {{0x48d6,2},{0xe16,1}}, {{0x46af,3},{0x1c0f,5}}, {{0xdfd8,6},{0xb183,3}}, {{0x57cb,5},{0xe61,3}}, + {{0x2489,5},{0x11db,3}}, {{0xeee,3},{0x2c15,3}}, {{0xf,1},{0x4bd,2}}, {{0x4781,3},{0xedd,1}}, + {{0x1837,5},{0xe8a,2}}, {{0x109ff,8},{0x127c,3}}, {{0x1a19,3},{0x18748,4}}, {{0xf0a,3},{0xfa5,3}}, + {{0x1667,4},{0x6eac,3}}, {{0x18f7,7},{0xe2b,2}}, {{0xc933,7},{0x4cc2,3}}, {{0xe2f,1},{0xeb5,2}}, + {{0x7416,1},{0xe19,1}}, {{0x19e7,5},{0x19583,3}}, {{0x11,1},{0x20599,1}}, {{0x550d,5},{0x2663,6}}, + {{0xe2f,1},{0x19b9,1}}, {{0x111a,3},{0xbdf2,3}}, {{0x29c0,3},{0x16651,5}}, {{0x4cc6,6},{0x4ccc,7}}, + {{0x34b1,5},{0x1465d,5}}, {{0x1be,2},{0x69,1}}, {{0x132bc,6},{0x1040,3}}, {{0xe11,1},{0xc6bc,4}}, + {{0xe83,3},{0xe8a,2}}, {{0xac0d,3},{0x153a,3}}, {{0x2ba5,1},{0xe22,3}}, {{0x1189d,4},{0x3e54,3}}, + {{0x9be0,3},{0xfcb,3}}, {{0xb74,3},{0x28b3a,1}}, {{0x1ff7,3},{0x1cd3,2}}, {{0x2e59,8},{0x36a5,4}}, + {{0xedd,1},{0x442d,1}}, {{0x29a2,6},{0xe11,1}}, {{0x712f,4},{0x237d,2}}, {{0x11515,5},{0x6d19,6}}, + {{0x2e22f,4},{0xe,1}}, {{0x92b5,5},{0x1b0a6,4}}, {{0x2006,3},{0x1150,2}}, {{0x4,1},{0xc80d,4}}, + {{0x337d,7},{0x109a,3}}, {{0xef7,3},{0x2280,2}}, {{0xbb89,4},{0xfb8,3}}, {{0x7d25,5},{0xcce,2}}, + {{0xeaa,2},{0x1303,3}}, {{0x29ccb,4},{0x29ccf,3}}, {{0xedd,1},{0xe11,2}}, {{0xff6d,5},{0x1cc02,4}}, + {{0x1c28,7},{0x4e39,6}}, {{0xe83,3},{0xfcb,2}}, {{0x113e,3},{0x16e3,4}}, {{0xe27,3},{0xe2a,3}}, + {{0x33a7,8},{0x13e3,4}}, {{0xaf4,16},{0xaf4,8}}, {{0x176,2},{0x9f,1}}, {{0x3a29,4},{0xcba,3}}, + {{0x4519,4},{0x4434,3}}, {{0x1947,5},{0x1252,5}}, {{0xf0a,3},{0x1db3b,2}}, {{0x243e,11},{0x1523,4}}, + {{0xb3f1,3},{0x990b,4}}, {{0xe71,1},{0xeaf5,4}}, {{0x150b2,6},{0xe11,1}}, {{0x5,1},{0xeb5,2}}, + {{0x1987,5},{0x37ba,5}}, {{0x17146,4},{0x19fa2,4}}, {{0x562b,8},{0x2845,4}}, {{0x1b602,5},{0x1b607,3}}, + {{0x478f,3},{0xfcb,2}}, {{0x1987,5},{0x5959,5}}, {{0x1f729,5},{0x17e50,4}}, {{0x9345,6},{0xcce,2}}, + {{0x9201,5},{0xfdf,4}}, {{0x1f25,4},{0x7a37,2}}, {{0x2094,3},{0x1040,3}}, {{0x122d,3},{0x2,1}}, + {{0x6ea5,7},{0x6eac,6}}, {{0x1189,3},{0x12a9,3}}, {{0x11817,5},{0x3ba5,4}}, {{0x46cb,9},{0xf4a,5}}, + {{0x46bf,1},{0xe65,2}}, {{0xf89,3},{0x2f94,4}}, {{0xe67,2},{0x1085,3}}, {{0x25b23,4},{0x25b27,4}}, + {{0x1fa2,3},{0x1780,3}}, {{0xe2f,1},{0xfdf,3}}, {{0x1f76,5},{0xe0a,1}}, {{0x588e,8},{0x5896,5}}, + {{0x1ff7,3},{0xe0a,1}}, {{0xf57,2},{0x1d24c,4}}, {{0x1947,5},{0x10db,7}}, {{0xb0fd,6},{0xe69,6}}, + {{0x19b7,3},{0xfe6,2}}, {{0x115e,7},{0x5b05,6}}, {{0x465b,5},{0x1125a,6}}, {{0x4765,3},{0x109b,2}}, + {{0x1198f,5},{0xceee,6}}, {{0x1e2,2},{0x7b,1}}, {{0x4c37,8},{0x2277,5}}, {{0x1857,6},{0x10f4,4}}, + {{0x1ac,2},{0xf,1}}, {{0x12160,3},{0xed5,3}}, {{0x112a2,5},{0x8428,3}}, {{0x40c7,9},{0xcc9,2}}, + {{0x70ad,3},{0xe22,3}}, {{0x13dfc,5},{0x331f,4}}, {{0x187a0,5},{0x6,2}}, {{0x30cf,5},{0x8ce2,3}}, + {{0x29cf,3},{0x809a,3}}, {{0x43c9,7},{0x2663,6}}, {{0x1927,10},{0xfdf,4}}, {{0xecfe,8},{0x15e9,3}}, + {{0x6127,4},{0xcc8,1}}, {{0x111a,3},{0x45ee,3}}, {{0x127f,3},{0xf19,2}}, {{0x478f,3},{0xb396,2}}, + {{0x207e,10},{0x2,1}}, {{0xb679,5},{0x1378f,3}}, {{0x1209b,5},{0x120a0,6}}, {{0x2e3d,9},{0xe6b,3}}, + {{0x27d7,2},{0xe22,2}}, {{0x9a6,1},{0x4d5f,3}}, {{0x2ba5,1},{0x11cb,3}}, {{0x4f43,7},{0x6,2}}, + {{0x1777,12},{0x1783,4}}, {{0x2f71,4},{0x13345,3}}, {{0x1969,1},{0x249e,4}}, {{0x10a3,3},{0x5f04,3}}, + {{0xe209,7},{0xe0b,4}}, {{0xa5ed,5},{0xe67,7}}, {{0x2e273,1},{0x3034d,2}}, {{0x1477,9},{0xef3,4}}, + {{0xf93d,8},{0xe11,1}}, {{0x12e5,3},{0x149c,3}}, {{0x23c4b,3},{0xf35,2}}, {{0x1498c,4},{0x14990,5}}, + {{0x29c0,3},{0xccb,2}}, {{0xc1d3,2},{0xeb9,5}}, {{0x3559,4},{0xf1a,2}}, {{0x6ee6,5},{0x3155,6}}, + {{0x4853,3},{0x1eea2,2}}, {{0x2016d,6},{0xe11,1}}, {{0x2df3b,4},{0x20,2}}, {{0x1e08,6},{0x1f2a,8}}, + {{0x146d,4},{0xe92,3}}, {{0x1d54e,5},{0x8eee,4}}, {{0xcbd,1},{0x1e65,3}}, {{0x71d8,6},{0x504d,3}}, + {{0x2ffd,6},{0xbd19,4}}, {{0xee4,4},{0xa099,4}}, {{0x7414,3},{0xe33,1}}, {{0x19f7,4},{0xe22,2}}, + {{0x3739,2},{0x15340,3}}, {{0x5534,6},{0xe0b,4}}, {{0x17acb,2},{0xe99,1}}, {{0x14ee6,6},{0x6ec3,3}}, + {{0x2371,3},{0x386f,4}}, {{0x70ad,4},{0x10b37,7}}, {{0xcb8,1},{0x1230,3}}, {{0xda8f,8},{0xec6,3}}, + {{0x19e7,5},{0x268c,3}}, {{0x10aaf,6},{0x10ab5,5}}, {{0xcc7,1},{0x9408,4}}, {{0x10bac,5},{0xe78,2}}, + {{0x1a66,1},{0xe22,2}}, {{0x2966,4},{0x3e0e,3}}, {{0x17678,5},{0x1085,3}}, {{0xbd99,5},{0x2651,7}}, + {{0xcbf,2},{0x1cd3,2}}, {{0x12830,6},{0x34d7,4}}, {{0x10361,5},{0xef08,6}}, {{0xadcf,4},{0xe25,2}}, + {{0x28fd,6},{0xa894,5}}, {{0xb8dd,5},{0x9a9,2}}, {{0x10d3,3},{0xcd3,1}}, {{0x127f,3},{0x17df,3}}, + {{0x2afbd,3},{0xcf6,1}}, {{0x10d64,7},{0xec6,3}}, {{0x18ce6,5},{0xfb0,2}}, {{0xf4f,1},{0x1a66,1}}, + {{0x206f,6},{0x2075,3}}, {{0x18c50,5},{0x18c5f,5}}, {{0x6c42,6},{0xec6,3}}, {{0xe5b,3},{0xe5e2,5}}, + {{0xe0c,2},{0x1a71,3}}, {{0xe11,2},{0x4b15,4}}, {{0xe1f,3},{0x12df2,3}}, {{0x70ad,3},{0x5e5f,6}}, + {{0x4,1},{0xf24,2}}, {{0x465b,4},{0x10cb,3}}, {{0x1c2a,4},{0x16ac,3}}, {{0x18dea,5},{0xcba,2}}, + {{0x4773,4},{0xce40,5}}, {{0xe1f,3},{0x15dc,3}}, {{0xb,1},{0xf59,2}}, {{0x16656,7},{0xe1c,3}}, + {{0x7303,5},{0x17ec,4}}, {{0x6cc4,4},{0x8,1}}, {{0x1877,5},{0x3075,3}}, {{0xf8,2},{0x9f,1}}, + {{0xc39d,5},{0x2f78,6}}, {{0x42db,6},{0x9c85,3}}, {{0x127f,3},{0x1041f,8}}, {{0xc36,2},{0x29979,2}}, + {{0x12c3,4},{0x1258,5}}, {{0x237d,2},{0x2,1}}, {{0x18ecc,2},{0x2b0ac,2}}, {{0x10b4,4},{0x30f6,3}}, + {{0x4cb9,5},{0xe11,1}}, {{0x17a3a,5},{0x4617,3}}, {{0x6d46,6},{0xdd46,4}}, {{0x228db,5},{0x13e4,3}}, + {{0x7a5a,4},{0x1be9,3}}, {{0x1937,4},{0x2f2e,3}}, {{0xee9,2},{0x90f3,4}}, {{0x1019,4},{0xcd3,2}}, + {{0x1567,3},{0x4b61,6}}, {{0x917d,10},{0xe95,2}}, {{0x292a,8},{0xec6,3}}, {{0x2a47,3},{0x4574,3}}, + {{0x1073f,7},{0x1523,4}}, {{0x225e,6},{0x4eef,6}}, {{0x2de93,4},{0x9f,1}}, {{0xb679,5},{0x7e55,4}}, + {{0xccd,1},{0x31a4,8}}, {{0x1ef0a,5},{0x14919,4}}, {{0x2a65,5},{0x2269,4}}, {{0xf0a,3},{0x2432e,5}}, + {{0x314,2},{0x9f,1}}, {{0xe25,2},{0xfdd,4}}, {{0x10217,8},{0xcc9,2}}, {{0x12d4,3},{0xcc6,2}}, + {{0x4225,4},{0x1235,6}}, {{0x10c5,4},{0xfdf,3}}, {{0x11db,3},{0x167f,7}}, {{0xc626,9},{0xe11,1}}, + {{0xe2b,2},{0x11dc,3}}, {{0xb595,5},{0x174b,4}}, {{0x3080,4},{0x431f,2}}, {{0xe0b,2},{0x43ed,6}}, + {{0xe0a,1},{0xe0a,1}}, {{0x1539,4},{0x2c6a,5}}, {{0x13924,6},{0xf86,3}}, {{0x712f,4},{0x2265,4}}, + {{0x3739,2},{0x10cb,4}}, {{0x27f51,6},{0xe11,1}}, {{0x5,1},{0xf16,2}}, {{0x105f,3},{0xb02a,4}}, + {{0x10dc,2},{0x3,1}}, {{0x19e7,5},{0x1ebe,3}}, {{0x6533,8},{0xe69,5}}, {{0x1ac,2},{0x57,1}}, + {{0x46bd,3},{0x1cd3,2}}, {{0x9a6,1},{0x1c550,5}}, {{0x1025,1},{0x2245,3}}, {{0xc39d,6},{0xe11,1}}, + {{0xf8,2},{0xf,1}}, {{0x1007,10},{0x12bf,4}}, {{0x2240,4},{0xf20,2}}, {{0xef7,3},{0x70a6,3}}, + {{0x40c7,9},{0xf91,3}}, {{0x122a,11},{0xf35,3}}, {{0x12e5,3},{0x1150d,8}}, {{0x10a,2},{0x57,1}}, + {{0x7b2d,5},{0xe78,2}}, {{0x27e0,4},{0x155e,3}}, {{0x3257,10},{0x10f4,4}}, {{0xcc1,1},{0xffc,3}}, + {{0x9a8,1},{0x101f,3}}, {{0x1eb6,6},{0xe95,2}}, {{0x11373,4},{0xe33,1}}, {{0x10b9,2},{0x9a49,4}}, + {{0x115e,5},{0x2c15,3}}, {{0x1e9e,4},{0xfb0,2}}, {{0x1569,2},{0xe22,2}}, {{0x1960d,6},{0xcc9,2}}, + {{0x1166,3},{0xeab,2}}, {{0x46af,3},{0x29c88,4}}, {{0x1397,5},{0x602f,7}}, {{0xf3a,2},{0x1fbe,3}}, + {{0x1a07,3},{0x1ebe,4}}, {{0x12f6,4},{0x1189,3}}, {{0x136ae,7},{0x7b72,3}}, {{0xe89,3},{0xfa5,2}}, + {{0xb199,5},{0x7d80,5}}, {{0x5f42,5},{0x1692,2}}, {{0xf70,2},{0xeb5,2}}, {{0xf15,1},{0x1303,3}}, + {{0x12f6,4},{0xcd3,2}}, {{0x24beb,4},{0xa,2}}, {{0xcc7,1},{0x4618,3}}, {{0x4853,5},{0x9,3}}, + {{0x1da0d,6},{0xe11,1}}, {{0xe89,2},{0xcc8,1}}, {{0x5,1},{0x1380,5}}, {{0x3a37,6},{0x3a3d,8}}, + {{0x281c,8},{0x2842,7}}, {{0x2e223,4},{0x69,1}}, {{0x18c20,3},{0x6b26,4}}, {{0x2,2},{0xed5,6}}, + {{0x166d8,6},{0x6f8b,4}}, {{0x8428,4},{0x156a,3}}, {{0xcce,2},{0x1fc7,3}}, {{0xf65,4},{0xcc8,1}}, + {{0x1e62,4},{0x9,2}}, {{0xb379,3},{0x113f,2}}, {{0xf15,1},{0xf0f,2}}, {{0xb7d5,5},{0x15fe,4}}, + {{0xef7,4},{0x189b,4}}, {{0x1787,6},{0x679c,7}}, {{0x2de57,3},{0x666,2}}, {{0x1787,6},{0x1077,6}}, + {{0xf11,1},{0xe92,3}}, {{0x1007,6},{0x6b90,4}}, {{0x6b7f,7},{0x1cd3,2}}, {{0x1977,3},{0x1f875,1}}, + {{0x1a84,5},{0x1632,5}}, {{0x2a47,3},{0x63e4,4}}, {{0x1b5f9,7},{0xfe6,2}}, {{0xa5a5,7},{0xe69,5}}, + {{0x440f,9},{0xe92,3}}, {{0xe1f,3},{0x26427,4}}, {{0x4ef5,4},{0x3b73,3}}, {{0xebe,5},{0x3e54,3}}, + {{0xe2b,2},{0x1bf6,5}}, {{0x22593,6},{0xe95,2}}, {{0x194d2,5},{0x164b8,4}}, {{0x3a45,5},{0xcc9,2}}, + {{0x647d,8},{0xe77,3}}, {{0x5f90,6},{0x2260,4}}, {{0x2522,5},{0xcc9,2}}, {{0x824d,4},{0xe92,3}}, + {{0x17bea,3},{0xe67,2}}, {{0xe71,1},{0xfb0,2}}, {{0x30c1,8},{0x2f26,5}}, {{0x1153,2},{0x158e,2}}, + {{0x1567,6},{0x59da,6}}, {{0xbba1,4},{0x1a71,3}}, {{0x2b50f,2},{0x30f85,2}}, {{0x8229,7},{0xec6,3}}, + {{0x14702,6},{0xec6,3}}, {{0xe1f,3},{0x48d8,2}}, {{0x2b84,2},{0xe13,3}}, {{0x2330,5},{0x2280,2}}, + {{0x17f12,6},{0xde1c,4}}, {{0x46af,3},{0x9498,5}}, {{0x1208,4},{0x1a70e,3}}, {{0x2975,6},{0xe95,2}}, + {{0xcb8,1},{0xe67,2}}, {{0xebd5,7},{0x296f,3}}, {{0x1be,2},{0x37a,2}}, {{0xf4f,1},{0x180a,3}}, + {{0xb271,7},{0xe92,5}}, {{0x780a,8},{0xe92,3}}, {{0x80fd,6},{0x111c,2}}, {{0xfabe,7},{0xcb9,4}}, + {{0x34b1,5},{0x1d3c,3}}, {{0x7414,3},{0xe65,2}}, {{0x32ab,6},{0x2467,4}}, {{0x20561,2},{0x20561,2}}, + {{0xe97,3},{0xfdf,3}}, {{0x7e69,9},{0x1392,3}}, {{0xb40f,5},{0x2,1}}, {{0x3131,7},{0xf6e,7}}, + {{0x4788,3},{0x6c88,5}}, {{0x10361,6},{0x1279,5}}, {{0x1ea0,6},{0xed9,2}}, {{0xcc1,1},{0x10cb,2}}, + {{0x1024,2},{0x1177,7}}, {{0xe21,1},{0x168b,4}}, {{0xd48,12},{0xd48,12}}, {{0x1fb7c,6},{0x15e9,3}}, + {{0x1290,5},{0x2d1f,6}}, {{0x72cf,4},{0x22a3,2}}, {{0xadf1,5},{0x1688b,5}}, {{0x1917,4},{0x1025,1}}, + {{0x15526,6},{0x126a,4}}, {{0x10b4,6},{0x91cd,4}}, {{0x4161,8},{0x4169,6}}, {{0x1821e,5},{0xa,2}}, + {{0x8,1},{0xf1d,2}}, {{0xf15,1},{0x1859,3}}, {{0xc0ed,5},{0xbf50,5}}, {{0xe71,1},{0xf86,2}}, + {{0x3b5d,5},{0xa0ca,7}}, {{0x3d39,6},{0x13345,3}}, {{0xb3f1,5},{0x4,1}}, {{0xf0d,2},{0xf35,2}}, + {{0x8666,2},{0xe86,2}}, {{0x4137,5},{0x6,2}}, {{0xf65,4},{0x2c6a,5}}, {{0x1766a,2},{0xe19,1}}, + {{0xf1d,2},{0x4a01,3}}, {{0xf8,2},{0x21,1}}, {{0xf0a,3},{0xcc9,2}}, {{0x10b4,6},{0x2651,7}}, + {{0xb12d,7},{0x2f27,4}}, {{0xcc6c,5},{0x6,2}}, {{0x15422,5},{0x1ce6,5}}, {{0x3e51,9},{0x27dc,4}}, + {{0x1019,4},{0x233df,4}}, {{0x2df3b,4},{0x6aa,2}}, {{0x1bec,5},{0xccd,1}}, {{0x1367,3},{0x8102,3}}, + {{0x753f,5},{0x6d07,3}}, {{0x46bd,3},{0x1ef8b,6}}, {{0x2a47,3},{0x8101,3}}, {{0x11b5,2},{0xed6,2}}, + {{0x19e7,5},{0x40a2,7}}, {{0x1327,1},{0x2e27d,1}}, {{0x3559,9},{0x6cb4,3}}, {{0xe83,3},{0xeee,5}}, + {{0x29de,4},{0xe22,2}}, {{0x3dc5,7},{0x809a,3}}, {{0x9f,1},{0x666,2}}, {{0xb867,4},{0x8fa3,6}}, + {{0x1819c,5},{0x1001,3}}, {{0x25d3,8},{0x167f,7}}, {{0xfe0,2},{0x73d6,2}}, {{0x124c,6},{0x15ca,3}}, + {{0x19f7,4},{0x2d11,3}}, {{0xe99,1},{0xe08,1}}, {{0x478f,3},{0xd885,5}}, {{0xe22,2},{0xcc9,2}}, + {{0x1a1e6,5},{0xed6,2}}, {{0x2a92,6},{0x678f,6}}, {{0xef66,7},{0xef3,4}}, {{0x1a66,1},{0x15399,2}}, + {{0xe71,1},{0x5538,2}}, {{0x1ac,2},{0x7b,1}}, {{0xf77,3},{0x1a738,5}}, {{0xf57,2},{0x20bed,3}}, + {{0x15a6f,4},{0xcba,3}}, {{0x22b8,4},{0x17c0,2}}, {{0x2bc7,5},{0xc4a0,5}}, {{0x2f71,4},{0x3b4a,5}}, + {{0x16a7,3},{0x180a,3}}, {{0x11b3,5},{0x1363b,5}}, {{0x10b4,5},{0xf91,3}}, {{0x2e2b3,2},{0xd7c,2}}, + {{0x1817,4},{0xbb20,4}}, {{0xc279,4},{0xc27d,4}}, {{0x112b,5},{0x4aef,3}}, {{0x2e271,3},{0x205a9,1}}, + {{0x7911,3},{0xc78c,5}}, {{0x7414,3},{0x2cae,3}}, {{0x1f687,4},{0xb,1}}, {{0x450b,4},{0x4516,3}}, + {{0x7416,1},{0xe08,1}}, {{0x4f02,5},{0xec8b,5}}, {{0xf1d,2},{0x2b7a,3}}, {{0x12d4,3},{0xfb0,2}}, + {{0x127f,4},{0x2171,3}}, {{0x101b,4},{0x101f,5}}, {{0x1165f,5},{0x14e4b,4}}, {{0x27fe,7},{0xe69,5}}, + {{0x46bd,3},{0x1303,3}}, {{0xb649,5},{0xb64e,7}}, {{0x1ff7,3},{0x6970,4}}, {{0x7989,6},{0x798f,6}}, + {{0x1819c,5},{0x3940,4}}, {{0xbb89,4},{0xdb37,4}}, {{0xe16,1},{0xb37b,1}}, {{0x5992,6},{0x4665,4}}, + {{0x4f91,5},{0xd4da,4}}, {{0x1e57e,2},{0x1e580,3}}, {{0x111a,3},{0x15e6d,3}}, {{0xb6d9,6},{0x990b,4}}, + {{0x2e273,1},{0x30352,2}}, {{0xf31,3},{0xcc9,2}}, {{0x5e58,6},{0xec6,3}}, {{0x10ec4,5},{0xfb0,3}}, + {{0xf0c,1},{0xee9,2}}, {{0x5,1},{0xcc3d,3}}, {{0x2015,3},{0x14985,7}}, {{0x1007,5},{0x4d74,4}}, + {{0xe97,3},{0xf70,2}}, {{0xee9,2},{0x1cfc,3}}, {{0x1ca0,13},{0xf35,2}}, {{0xf89,5},{0x1445f,4}}, + {{0x9b03,6},{0xe0a,1}}, {{0xe0f,1},{0xeea,3}}, {{0x51f4,7},{0xcc9,2}}, {{0xaf4,1},{0x2e292,1}}, + {{0x152,2},{0x21,1}}, {{0x5534,4},{0x1f7b,4}}, {{0x5534,4},{0xf59,2}}, {{0xaebd,6},{0x142d,3}}, + {{0x1687,8},{0xcc9,2}}, {{0x9a8,1},{0x3594,5}}, {{0xe83,5},{0xe80,2}}, {{0x46af,3},{0x2bb4,2}}, + {{0xe19,1},{0x1e872,2}}, {{0x1847,4},{0x3196,3}}, {{0x1a66,1},{0x1a67,6}}, {{0x58a8,5},{0xe6b,4}}, + {{0x1567,3},{0xcd2,2}}, {{0x4853,3},{0x7d64,4}}, {{0x1967,3},{0x11187,2}}, {{0xb8c5,4},{0x1ea85,5}}, + {{0x4765,3},{0xf02,2}}, {{0x9f15,7},{0x1b4f,5}}, {{0x3a7d,6},{0xf50,3}}, {{0x12e5,4},{0x11cb,3}}, + {{0xed1,5},{0x5,1}}, {{0x4853,3},{0x101b7,4}}, {{0x2de2d,4},{0x2d51d,2}}, {{0xeba9,6},{0x4a92,4}}, + {{0x27e8,4},{0xec6,3}}, {{0xe83,3},{0x5342,3}}, {{0x478f,3},{0x51b8,4}}, {{0x2bf1,6},{0x167f,7}}, + {{0x29cf,3},{0x11ca,2}}, {{0x1cd3,3},{0x4921,4}}, {{0x1787,6},{0x6d08,4}}, {{0xaf4,1},{0x1,1}}, + {{0x16a7,3},{0xfc7,3}}, {{0xe86,3},{0x4921,4}}, {{0xe21,1},{0xe25,2}}, {{0x450b,4},{0xf1a,3}}, + {{0x10c04,5},{0x9a5,2}}, {{0xe83,5},{0x161e,7}}, {{0x78b1,6},{0x78b1,6}}, {{0x1e9e,5},{0x3144,8}}, + {{0xbd0b,3},{0xe31,2}}, {{0x9b01,8},{0x3976,3}}, {{0x68,2},{0xe,1}}, {{0xef7,3},{0x1dee,2}}, + {{0x18f7,4},{0x5959,5}}, {{0x2690c,2},{0xf0c,1}}, {{0x1db45,2},{0xe33,1}}, {{0x1477,9},{0xebc,2}}, + {{0xe6f,3},{0x145b,2}}, {{0x66fa,8},{0x10f2,5}}, {{0x1369,2},{0xe0a,1}}, {{0x17396,5},{0xec6,3}}, + {{0x25403,5},{0x1d75,3}}, {{0xe11,2},{0xccb,2}}, {{0xfa6,3},{0xcce,2}}, {{0x2e193,4},{0x9f,1}}, + {{0x1a29,2},{0xe78,1}}, {{0x205a9,1},{0x78f9,1}}, {{0x12c3,4},{0x1d3c,3}}, {{0xcc6,2},{0xf35,2}}, + {{0x4765,3},{0x23dae,3}}, {{0x4153,8},{0xe69,6}}, {{0xf0a,3},{0xefa,2}}, {{0x5,2},{0x3537,2}}, + {{0x29e30,5},{0xcd3,2}}, {{0xf65,4},{0x1a57,4}}, {{0xf69,3},{0x9a9,4}}, {{0x32b9,10},{0x1d05,4}}, + {{0x16eb2,6},{0xec5,4}}, {{0x4,1},{0xfdd,4}}, {{0xccb9,5},{0x6008,3}}, {{0x4773,4},{0x116a5,7}}, + {{0xcc1,1},{0x1654b,7}}, {{0x3b6f,4},{0xe8a,2}}, {{0x3,2},{0xcc3,2}}, {{0x19b7,3},{0x113f,2}}, + {{0xe104,3},{0xe0a,1}}, {{0x4,1},{0x1025,1}}, {{0x1577e,9},{0x2,1}}, {{0x12d4,3},{0x2ba5,1}}, + {{0xbb4,2},{0x2afe0,2}}, {{0x491e,7},{0xcd3,2}}, {{0xf31,3},{0xcc1,1}}, {{0x1d0,2},{0xe,1}}, + {{0xe5b,4},{0x7f09,3}}, {{0xed9,2},{0x1235,6}}, {{0xe0ca,6},{0xe11,1}}, {{0x18ecc,2},{0x308c1,2}}, + {{0x1caf,5},{0x7a8a,5}}, {{0x17f7,8},{0x2716,7}}, {{0x1f25,7},{0x156a,3}}, {{0xf77,4},{0xfa5,2}}, + {{0x70ad,3},{0x6008,3}}, {{0x6e7e,8},{0x1663,4}}, {{0xe97,3},{0xcd3,2}}, {{0x3ac3,8},{0x3acb,6}}, + {{0x794f,4},{0xf91,3}}, {{0x9a6,1},{0x239c,7}}, {{0x9ad1,5},{0x6040,5}}, {{0x25193,5},{0xcd3,2}}, + {{0x1ab1,11},{0xe0b,4}}, {{0x860d,7},{0xed9,2}}, {{0xcc1,2},{0xed6,2}}, {{0x8,2},{0xf35,2}}, + {{0x1fdd7,5},{0xe99,1}}, {{0x8c91,6},{0x8c97,6}}, {{0x2403d,3},{0xfa6,3}}, {{0xed1,4},{0x6127,5}}, + {{0x168e0,5},{0xec5,4}}, {{0x2e223,4},{0x7b,1}}, {{0xf3c8,6},{0xe69,5}}, {{0xe2f,1},{0x1593,3}}, + {{0xf0a,5},{0x1e0db,4}}, {{0x1be,2},{0xe,1}}, {{0x314,2},{0xe,1}}, {{0x2f2e,3},{0x268c,3}}, + {{0x8775,6},{0x9a5,2}}, {{0x29cf,3},{0x24db6,5}}, {{0x111a,3},{0x4767,1}}, {{0x3027,9},{0x138e,2}}, + {{0x19b7,3},{0x17df,7}}, {{0x74f8,2},{0x1f875,1}}, {{0x27e0,3},{0x109b,2}}, {{0xf4f,1},{0x1f444,2}}, + {{0x11f46,5},{0x1523,4}}, {{0xf0a,3},{0x1c11,2}}, {{0x1957,5},{0xeee,3}}, {{0xef7,3},{0x9a6,1}}, + {{0x1e62,4},{0x7949,4}}, {{0xf9b,8},{0x1150,2}}, {{0xe88,3},{0xccd,1}}, {{0x5538,2},{0xe22,2}}, + {{0xe71,1},{0xe09,2}}, {{0x1e84c,3},{0x146d,4}}, {{0xc6ec,4},{0x5,1}}, {{0x308f7,3},{0x205a7,1}}, + {{0xb8c5,4},{0xfdb,4}}, {{0x19b7,3},{0x3a91,3}}, {{0x34a3,6},{0x34a9,3}}, {{0x1697,4},{0x1512e,6}}, + {{0x9af,2},{0x78b5,2}}, {{0x47c7,5},{0x2fcc,4}}, {{0x7de5,9},{0x1054,3}}, {{0x3c21,10},{0xcc9,2}}, + {{0x16a7,3},{0x1317,2}}, {{0x70ad,3},{0x28c33,4}}, {{0x2ba5,1},{0xf04,2}}, {{0xcc7,1},{0xe30,3}}, + {{0x214c9,5},{0x45c7,2}}, {{0x507b,8},{0x1702,5}}, {{0x7d31,5},{0xc754,5}}, {{0x2de7b,3},{0x206,2}}, + {{0x13a7,7},{0x1b30,8}}, {{0x1917,7},{0x249f,3}}, {{0xeab,2},{0x9fb7,6}}, {{0xc,1},{0xaf4,1}}, + {{0x1caf,7},{0xe95,2}}, {{0x5199,8},{0x2,1}}, {{0xe45b,5},{0x18c1,6}}, {{0xf65,4},{0x2cc7,10}}, + {{0x50bc,8},{0x3075,3}}, {{0x2a325,4},{0xe7a,1}}, {{0x1f8eb,5},{0x45c7,2}}, {{0x329d,6},{0xc3d0,4}}, + {{0x46af,3},{0xcc9,2}}, {{0x3b5d,5},{0xafbe,6}}, {{0x10c5,4},{0xcd3,3}}, {{0x40f1,9},{0xcce,2}}, + {{0x1a66,1},{0xfb0,3}}, {{0xe83,3},{0x4fa8,3}}, {{0x33b5,10},{0xe11,1}}, {{0xb5ad,5},{0x8366,7}}, + {{0x1367,4},{0xf24,2}}, {{0x29a4,3},{0x1153,2}}, {{0x14842,7},{0xe11,1}}, {{0xf15,1},{0x7df5,4}}, + {{0xf7dd,8},{0xec6,3}}, {{0xcc7,1},{0x4cc2,3}}, {{0x41b5,11},{0xec6,3}}, {{0x27e0,3},{0x129b9,4}}, + {{0x140,2},{0x9f,1}}, {{0x1120,3},{0xcc7,1}}, {{0xf0a,3},{0x73d6,2}}, {{0x1f0e7,5},{0x1f0ec,4}}, + {{0x1882c,7},{0x9dca,3}}, {{0x1e2,2},{0xe,1}}, {{0x2e223,4},{0x8d,1}}, {{0x1697,4},{0x169b,8}}, + {{0xf32,2},{0x155e,3}}, {{0xe613,5},{0x2917,4}}, {{0xf0a,3},{0xed5,4}}, {{0xe08,1},{0xfcb,2}}, + {{0x2ec9,7},{0xe1b,4}}, {{0xf11,1},{0xe65,2}}, {{0x712f,4},{0xf1f,3}}, {{0x164,2},{0x9f,1}}, + {{0xf8,2},{0x7b,1}}, {{0x78a5,6},{0xe55,6}}, {{0x1a27,10},{0x18b1,5}}, {{0x41a7,5},{0xcd4,2}}, + {{0x111a,3},{0x492e,3}}, {{0xeab,2},{0x4d5f,3}}, {{0x479f,2},{0xe60,2}}, {{0x6c42,6},{0x7a15,4}}, + {{0x1949,3},{0x149c,3}}, {{0xe0e0,5},{0xe69,6}}, {{0x12f6,4},{0x2266,5}}, {{0x100f9,6},{0x2872,4}}, + {{0x125d,6},{0x9101,4}}, {{0x2393b,5},{0xf63,2}}, {{0xf0c,1},{0x14aa,5}}, {{0xf205,4},{0xcbf,2}}, + {{0x3976,3},{0xe0a,1}}, {{0x8,1},{0xcd3,1}}, {{0x1b04,3},{0xf7a,2}}, {{0x2a47,3},{0x13ae,5}}, + {{0x10c5,4},{0x169d,3}}, {{0x1a843,7},{0xe95,2}}, {{0x16a7,3},{0xc5e0,4}}, {{0x48f7,7},{0xc341,4}}, + {{0xb3f1,3},{0x2c85,2}}, {{0x1155,2},{0x6ec3,3}}, {{0xf53,2},{0x7e9d,3}}, {{0x1967,3},{0x15443,5}}, + {{0xcc8,1},{0x10d3,3}}, {{0x28b2,5},{0x6ed1,7}}, {{0x1059,3},{0xcc3,2}}, {{0x1303,3},{0xcc3,2}}, + {{0xf60,2},{0xe88,3}}, {{0xb74,3},{0x2e27d,1}}, {{0xebbf,6},{0x3976,3}}, {{0xaf4,4},{0xaf4,2}}, + {{0xcbf,2},{0x2017,4}}, {{0x12dc6,7},{0xf91,3}}, {{0xb289,7},{0x1004,3}}, {{0x1e9e,5},{0x9a8,1}}, + {{0x28d0,4},{0x1cb1,5}}, {{0xe33,1},{0x27e9,3}}, {{0x17f7,6},{0x1783,4}}, {{0x1adb6,6},{0xf0f,2}}, + {{0xc159,4},{0x13c0,4}}, {{0xedd,1},{0xe11,1}}, {{0x1967,3},{0x2f94,3}}, {{0x7414,3},{0xcb7,2}}, + {{0xe2f,1},{0x9cad,4}}, {{0x164,2},{0x69,1}}, {{0xebe,5},{0x8,1}}, {{0x4,1},{0xcc1,1}}, + {{0x9a4,3},{0x1059,3}}, {{0x29cf,3},{0x1e84,3}}, {{0x3575,7},{0x1024,7}}, {{0x24d5e,2},{0xedd,1}}, + {{0x20ce1,6},{0xcc9,2}}, {{0xe5b,3},{0xe87,2}}, {{0x20380,5},{0x20385,4}}, {{0x1f4,2},{0x8d,1}}, + {{0x8715,8},{0x16e3,4}}, {{0x12d4,3},{0xe21,1}}, {{0x29789,6},{0x1025,1}}, {{0x3727,9},{0x10bb,5}}, + {{0xf0c,1},{0x442d,1}}, {{0x204f1,4},{0xa,2}}, {{0xcd3,2},{0x1b9d,4}}, {{0x9,1},{0xe09,1}}, + {{0x1342e,5},{0xe92,3}}, {{0xe88,3},{0x5372,4}}, {{0xf1a,2},{0x73d6,2}}, {{0x7611,3},{0x1c85,3}}, + {{0x2e271,3},{0x3033c,4}}, {{0x10c5,4},{0x57e0,5}}, {{0x7a01,5},{0x504f,5}}, {{0xe613,5},{0x12ac,6}}, + {{0x4853,3},{0x1278,4}}, {{0xe7f,2},{0x1632,5}}, {{0x1155,2},{0x1e84,3}}, {{0xe1f,3},{0xe22,2}}, + {{0x1967,3},{0xe1c,3}}, {{0x8f55,9},{0x14a2,3}}, {{0x10bac,8},{0xe1c,3}}, {{0x10dc,2},{0x1783,4}}, + {{0xbc79,7},{0xf193,4}}, {{0x2b48,2},{0xed5,4}}, {{0x306d,6},{0x436b,5}}, {{0x4c5e,8},{0x13e3,4}}, + {{0xe83,3},{0x15c95,6}}, {{0x5f01,6},{0xed7d,5}}, {{0x313f,10},{0xcc9,2}}, {{0x70ad,3},{0xdc6f,4}}, + {{0xf89,3},{0x99da,6}}, {{0x65f6,8},{0xe69,5}}, {{0x9af,64},{0x9af,64}}, {{0x9b4d,4},{0xebb,3}}, + {{0xb3f1,3},{0xed6,3}}, {{0x250e3,5},{0xcd3,2}}, {{0x346b,8},{0xcce,2}}, {{0xe97,3},{0xf24,2}}, + {{0x51b3,7},{0x809a,3}}, {{0x1967,3},{0x10cb,2}}, {{0x14ff,3},{0xec6,3}}, {{0xfd1,9},{0x61a1,4}}, + {{0x2,2},{0x11d9,3}}, {{0x5f28,8},{0x1c14,5}}, {{0x4765,3},{0x1d7d,3}}, {{0x1085,3},{0xcc3,2}}, + {{0xfb1,3},{0xe92,3}}, {{0x1677,3},{0xcd3,1}}, {{0x4775,2},{0x10cb,4}}, {{0xdd65,5},{0xec6,3}}, + {{0xb,1},{0xcc3,3}}, {{0xe83,5},{0x948b,4}}, {{0x2006,4},{0x10f4,4}}, {{0x1e8a,4},{0x9a6,1}}, + {{0x1b2b4,6},{0xe95,2}}, {{0x2675b,4},{0x1154e,2}}, {{0x19b9,3},{0x5536,4}}, {{0x46af,3},{0x101f,2}}, + {{0x2c54d,4},{0xf0c,1}}, {{0xe0b,2},{0xcbd,1}}, {{0x156a,3},{0x2467,4}}, {{0x46bf,1},{0x3642,2}}, + {{0x2e211,4},{0x21,1}}, {{0x4765,6},{0x395d,6}}, {{0x6,2},{0x4cc2,3}}, {{0xb7ed,6},{0x127c,3}}, + {{0xcd3,2},{0xed5,4}}, {{0x191d5,6},{0xe31,2}}, {{0x2d79,4},{0x10b8,2}}, {{0x19b9,1},{0xf15,1}}, + {{0x14fb8,5},{0x15e9,3}}, {{0x236c,4},{0x1c311,5}}, {{0xf02,2},{0xcd3,1}}, {{0xe3d,4},{0xe4d,2}}, + {{0xcd3,2},{0x1702,5}}, {{0xe1f,3},{0xf80,2}}, {{0x2e22f,4},{0xd,1}}, {{0x10eda,5},{0x35a3,3}}, + {{0x450b,4},{0x3b4a,5}}, {{0x1367,3},{0x1692,5}}, {{0x1057,2},{0x7251,4}}, {{0xfe86,7},{0x1fc7,3}}, + {{0xa,2},{0xb381,4}}, {{0xc36,2},{0xd1c,2}}, {{0xae75,7},{0x2560,4}}, {{0xdd18,7},{0x794f,4}}, + {{0xcc1,1},{0x2522,5}}, {{0x3559,4},{0xe78,1}}, {{0x1ff7,3},{0x16ad,5}}, {{0x1a93f,6},{0xec6,3}}, + {{0x188,2},{0x21,1}}, {{0xccd,1},{0x39cd,8}}, {{0x2975,6},{0x10ba,6}}, {{0xcc7,1},{0x17dd9,3}}, + {{0x1c8f5,7},{0xebc,2}}, {{0xe5b,3},{0x4e43,4}}, {{0x141a,2},{0x127c,3}}, {{0xe16,1},{0xcb8,1}}, + {{0x1601,3},{0xf7a,2}}, {{0x1f7f,5},{0x5ddd,5}}, {{0x1967,3},{0x3153,7}}, {{0x1a29,2},{0x1153,2}}, + {{0xcbd,1},{0xcc8,1}}, {{0x1bef,2},{0xe11,1}}, {{0x5d2d,7},{0x237f,4}}, {{0x1817,4},{0x4789,6}}, + {{0x759a,8},{0xed6,2}}, {{0x12e5,3},{0x23446,5}}, {{0x383f,7},{0x17df,7}}, {{0xf0a,3},{0x1839,2}}, + {{0x625b,7},{0x11dc,5}}, {{0x2948,4},{0x5863,3}}, {{0x1567,6},{0x5,1}}, {{0x9ecd,8},{0xe6b,4}}, + {{0xcc1,1},{0x7d1f,3}}, {{0xb745,7},{0xcdf3,4}}, {{0x201f4,7},{0x6,1}}, {{0x5cc5,11},{0xe95,2}}, + {{0x1599a,6},{0xfb8,3}}, {{0x8d2d,5},{0x1240,2}}, {{0xf0a,3},{0xcd1,5}}, {{0x13050,6},{0xe78,2}}, + {{0x2240,4},{0x2f94,3}}, {{0xc159,4},{0x1077a,5}}, {{0x166d8,6},{0x1381,4}}, {{0xf16,2},{0xcd3,2}}, + {{0x2231,5},{0xc3f0,5}}, {{0x1677,4},{0xcb8,1}}, {{0xe83,3},{0x44b2,5}}, {{0xec3,3},{0x2269,4}}, + {{0x1e2,2},{0x69,1}}, {{0xaebd,6},{0x3b49,6}}, {{0x486f,5},{0x1a71,3}}, {{0xa5a5,7},{0xe92,3}}, + {{0x2091,4},{0xcc3,2}}, {{0xb74,32},{0xb74,32}}, {{0x46bd,9},{0x1302,5}}, {{0x12e,2},{0x9f,1}}, + {{0x10c5,4},{0x1212,3}}, {{0x1290,4},{0x1153,2}}, {{0x17506,6},{0x15e9,3}}, {{0xf4f,1},{0xe08,1}}, + {{0x1bec,5},{0x34a9,3}}, {{0x2a395,6},{0xe11,1}}, {{0x255b,8},{0xec5,4}}, {{0x486f,4},{0xec3,3}}, + {{0x1019,4},{0x164ca,6}}, {{0xcbd,1},{0x1569,3}}, {{0x28c1,4},{0x19e1,3}}, {{0x4781,3},{0xe22,2}}, + {{0x1b27e,5},{0x126a,4}}, {{0xcc7,1},{0xcc1,1}}, {{0x2c54d,4},{0xedd,1}}, {{0x24f4,3},{0x1e40,4}}, + {{0x4ae5,4},{0x4,2}}, {{0xec0,3},{0x142a,3}}, {{0x1367,3},{0x44a4,5}}, {{0xcbd,1},{0x1523,4}}, + {{0x48a9,3},{0x1bb6,9}}, {{0xfe3,4},{0x30f5,4}}, {{0xfb0,2},{0xf35,2}}, {{0x12c3,4},{0x2c21,4}}, + {{0x1967,3},{0x1a63,3}}, {{0x4401,10},{0xed9,2}}, {{0x46af,3},{0xd66b,4}}, {{0xe1f,3},{0xf0f,2}}, + {{0x1637,9},{0x1663,4}}, {{0x162c,3},{0xcd3,1}}, {{0xf65,4},{0xe020,5}}, {{0x113c,3},{0xefa,3}}, + {{0x11142,6},{0xcc9,2}}, {{0x5dfd,6},{0xf62,3}}, {{0x1196e,5},{0x11973,3}}, {{0xecb,2},{0xdde5,4}}, + {{0xf65,4},{0x1cfc,3}}, {{0x1f717,5},{0x1c351,4}}, {{0x2df3b,4},{0x32,2}}, {{0x1847,4},{0xabc6,3}}, + {{0x3107,5},{0x49b4,6}}, {{0x1f4,2},{0xe,1}}, {{0x478f,3},{0xcd3,1}}, {{0xed40,6},{0xe6c,3}}, + {{0xb8dd,5},{0xe67,3}}, {{0x111a,3},{0xe71,1}}, {{0xa,2},{0xeed,4}}, {{0x19c73,6},{0xcc9,2}}, + {{0x4781,3},{0x2286e,5}}, {{0x2240,4},{0x9498,5}}, {{0x1081,4},{0xe1fa,4}}, {{0x13a7,7},{0x7c90,5}}, + {{0xb7ac,3},{0xfe0,2}}, {{0x10a3,3},{0x30f5,4}}, {{0x315b,9},{0xe6b,4}}, {{0x1677,6},{0xf04,2}}, + {{0x1a66,1},{0x178a,3}}, {{0x101f,2},{0x1150,2}}, {{0x7a01,5},{0x2b89,3}}, {{0x74f1,4},{0x1e576,3}}, + {{0x150b2,6},{0x4dc6,4}}, {{0x72d1,2},{0x22a3,2}}, {{0x1d54,6},{0x1024,7}}, {{0xbfe5,5},{0x9,2}}, + {{0xee4,4},{0x621e,5}}, {{0x74f9,2},{0x48d3,2}}, {{0x4519,4},{0xcc9,2}}, {{0xb331,7},{0x1059,3}}, + {{0x1a66,1},{0xf15,1}}, {{0xef7,3},{0x285d6,4}}, {{0xede,1},{0xe11,1}}, {{0xe86,2},{0xcd3,1}}, + {{0x105f,3},{0xcba,2}}, {{0xf77,4},{0x11d9,3}}, {{0x732a,10},{0xf23,3}}, {{0x5611,7},{0x129a,6}}, + {{0x2c223,4},{0x2,1}}, {{0x2f71,4},{0xcf0f,7}}, {{0xb379,3},{0x18fc5,6}}, {{0x105f,3},{0x26b73,4}}, + {{0x2b46,4},{0xffc,3}}, {{0x2,1},{0xcc3,2}}, {{0x5756,7},{0xcc9,2}}, {{0x74e4,5},{0x142a,3}}, + {{0x72cf,4},{0xb9f4,3}}, {{0x18390,7},{0x3976,3}}, {{0x1c802,7},{0x1c809,2}}, {{0x10e8d,5},{0xf35,3}}, + {{0x4765,3},{0x2280,2}}, {{0x11208,5},{0x351b,6}}, {{0xe08,1},{0xcd3,1}}, {{0x2e7c4,6},{0xd7c,2}}, + {{0x46bd,3},{0x72d3,3}}, {{0xe1b,3},{0xb97c,2}}, {{0x9a41,5},{0xfe6,2}}, {{0x105f,3},{0x2c85,2}}, + {{0xeacd,5},{0x3378,5}}, {{0xb559,5},{0x4833,4}}, {{0xaaf,2},{0x2b0a8,4}}, {{0x1131,3},{0x18b4,3}}, + {{0x12fe,2},{0xe0d,2}}, {{0xcc8,1},{0x1579,3}}, {{0x24623,5},{0x10e2,3}}, {{0x9a8,1},{0x162c,3}}, + {{0x1367,3},{0x1be9,3}}, {{0x9a6,1},{0x17c0,2}}, {{0xc1d1,4},{0x1569,3}}, {{0x4767,1},{0x6,1}}, + {{0xedd,1},{0x24900,2}}, {{0x113c,5},{0xcce,2}}, {{0x70ad,3},{0xcc3,2}}, {{0xe99,1},{0x1317,2}}, + {{0x3329,7},{0xe69,6}}, {{0x1e62,6},{0x539a,7}}, {{0x1607,5},{0x534e,5}}, {{0x1e26,6},{0x18b2,5}}, + {{0x440f,9},{0x13e3,4}}, {{0x2e21d,4},{0x7b,1}}, {{0xfd4d,4},{0x9a9,2}}, {{0x12e5,3},{0x2270,3}}, + {{0x2,1},{0xfb0,3}}, {{0x12b4,3},{0xefa,4}}, {{0xf11,1},{0xe77,3}}, {{0x1081,7},{0x5543,5}}, + {{0x14f9,3},{0x4116,5}}, {{0xf0f,2},{0xe0b,4}}, {{0x4f9e,9},{0x4fa7,4}}, {{0x4781,3},{0xf8e,3}}, + {{0x478f,3},{0xf0c,1}}, {{0x7d61,8},{0xf91,3}}, {{0x1c91,6},{0x1054,3}}, {{0x478f,3},{0x11ad,3}}, + {{0x71be,6},{0x2e2c,3}}, {{0x2e84a,2},{0x2afc8,2}}, {{0xc,1},{0x205a7,1}}, {{0x1a66,1},{0x5ead,5}}, + {{0x1019,6},{0x1571,4}}, {{0x1e2f0,2},{0xf0c,1}}, {{0xf25d,7},{0xeed,4}}, {{0xcc7,1},{0x1155,2}}, + {{0x2de5d,3},{0x1347,3}}, {{0x1e571,4},{0xf11,1}}, {{0x2b50f,2},{0xe47,2}}, {{0xcc8,1},{0xf35,2}}, + {{0x125d,6},{0x4328,7}}, {{0xe89,2},{0xe11,2}}, {{0xb3f1,3},{0x1969,1}}, {{0x1937,5},{0xcc4,2}}, + {{0x2dec5,3},{0x57,1}}, {{0x66c6,5},{0x43fd,4}}, {{0xf15,1},{0x18f9a,3}}, {{0x1189d,4},{0xe13,3}}, + {{0x9a8,1},{0x13e02,4}}, {{0x21,1},{0x206,2}}, {{0x4,1},{0x2d7c,4}}, {{0xe83,5},{0x8b2f,6}}, + {{0x9a6,1},{0x4b03,5}}, {{0x6109,8},{0xec6,3}}, {{0x4ee8,4},{0xc600,5}}, {{0x69df,9},{0x153a,3}}, + {{0x17678,5},{0x45f5,4}}, {{0x4853,3},{0x1231,4}}, {{0x1977,3},{0x1766b,2}}, {{0xe97,3},{0xefa,2}}, + {{0xe6f,3},{0x169d,3}}, {{0x113c,3},{0xb495,4}}, {{0x1d0,2},{0x57,1}}, {{0xe3d,4},{0x2afd4,2}}, + {{0x3193,6},{0x1040,3}}, {{0x2,1},{0xfcb,2}}, {{0x3fe7,8},{0x1571,4}}, {{0x12e5,3},{0xe60,2}}, + {{0xcb7,2},{0xcd3,1}}, {{0x75ce,4},{0xa,2}}, {{0x113c,3},{0xe71,1}}, {{0x61cc,8},{0x2269,4}}, + {{0x6,2},{0x127c,3}}, {{0x225eb,6},{0xcc9,2}}, {{0xa2f9,9},{0xec6,3}}, {{0x1eaa5,5},{0xf3a,3}}, + {{0xe37,4},{0xd1a,2}}, {{0x2ba5,1},{0x1b3d7,6}}, {{0x2e217,4},{0x69,1}}, {{0x2b48,2},{0x152d4,4}}, + {{0x1fc0,3},{0x141f,4}}, {{0x24eed,3},{0xe09,1}}, {{0x12d4,5},{0xccb,2}}, {{0x46bd,3},{0xfcb,2}}, + {{0x956d,6},{0xe5e2,5}}, {{0x1bb1b,6},{0xed6,2}}, {{0x46bd,3},{0x1a71,3}}, {{0x15f76,7},{0xe0a,1}}, + {{0xf48e,6},{0x2dd7,4}}, {{0x1e03d,7},{0xcce,2}}, {{0x15eea,6},{0xef3,4}}, {{0x2576b,5},{0xe1b,3}}, + {{0x1f07,7},{0x1663,4}}, {{0x10c5,4},{0x2476,4}}, {{0x11373,4},{0x19b9,1}}, {{0x119e3,3},{0x116ea,4}}, + {{0xe16,1},{0xf63,2}}, {{0xa,2},{0x8,1}}, {{0xf0c,1},{0x2,2}}, {{0x70ad,3},{0x1252,3}}, + {{0xb,1},{0x2dd7,4}}, {{0x2280,2},{0xe86,2}}, {{0xe962,7},{0xe0b,4}}, {{0x7414,3},{0x1dee,2}}, + {{0xd173,8},{0xec6,3}}, {{0x46af,3},{0xcc3,3}}, {{0x6b90,4},{0x17ec,4}}, {{0x67ca,10},{0xcc9,2}}, + {{0x12ce0,7},{0xe0a,1}}, {{0x46bf,1},{0x2236,3}}, {{0xe08,1},{0xfdf,3}}, {{0x9a8,1},{0xfb8,3}}, + {{0x1977,4},{0x268c,3}}, {{0x1957,5},{0x21a5,5}}, {{0x2d79,4},{0x108b,3}}, {{0x3c5d,3},{0x2d11,3}}, + {{0x1a19,3},{0x15af,8}}, {{0x142a2,5},{0x2246,5}}, {{0x6304,6},{0x1c6d,5}}, {{0x1957,5},{0xcc3,2}}, + {{0x19b7,3},{0x2252,3}}, {{0x2ba5,1},{0x1ca7b,5}}, {{0x115e,5},{0x5,2}}, {{0xe83,3},{0x4516,3}}, + {{0x56c7,5},{0x4b0f,5}}, {{0x29cf,3},{0x3444,6}}, {{0xe3e2,6},{0x1de7,3}}, {{0x1153,2},{0x7152,4}}, + {{0xede,1},{0x1e2f0,2}}, {{0xcda0,4},{0xab9f,3}}, {{0xe83,3},{0x1cd3,2}}, {{0x1702e,4},{0x4aee,3}}, + {{0x1e4cf,6},{0xe0a,1}}, {{0xe99,1},{0xfe6,2}}, {{0x17010,6},{0x17016,4}}, {{0x2252,3},{0x1523,4}}, + {{0xf9b,5},{0x141ad,5}}, {{0xfc7,3},{0x5261,4}}, {{0x2f186,4},{0xe2f,1}}, {{0xeb5,2},{0x113f,2}}, + {{0x5026,4},{0x2,1}}, {{0xef7,3},{0x2270,3}}, {{0xe71,1},{0x113f,2}}, {{0x1a1a7,5},{0xc3d0,3}}, + {{0x1e3b,7},{0xcc9,2}}, {{0x18232,5},{0x30f7,2}}, {{0xc9e3,8},{0xcce,2}}, {{0x70ad,3},{0xeca,3}}, + {{0x19b7,3},{0xcd3,2}}, {{0x1f97b,4},{0x1a66,1}}, {{0xb3f1,3},{0xb02a,4}}, {{0x1d0,2},{0x7b,1}}, + {{0xe0f6,6},{0xabc4,5}}, {{0x23143,6},{0xccd,1}}, {{0xcc8,2},{0xe0a,1}}, {{0x11a81,7},{0x2b79,4}}, + {{0x247a,13},{0xed9,2}}, {{0x13fa0,7},{0xf277,3}}, {{0x1019,5},{0x6ead,4}}, {{0xe97,3},{0xf8d,2}}, + {{0x2de75,3},{0xc2,2}}, {{0xcc8,1},{0xe6c,3}}, {{0x10377,8},{0xf35,3}}, {{0x17f7,6},{0x809a,3}}, + {{0xfb16,5},{0x1c7f,3}}, {{0x114d,4},{0xfaf,2}}, {{0xe7d,2},{0x10f2,5}}, {{0x1967,3},{0x1b6d,4}}, + {{0x9a9a,5},{0xe67,2}}, {{0x105f,3},{0x142d,3}}, {{0x1827,5},{0x7b72,3}}, {{0x2966,4},{0xf69b,3}}, + {{0x4781,3},{0x1062,2}}, {{0x70a6,3},{0xf23,3}}, {{0xef7,3},{0x58ff,4}}, {{0x75ce,4},{0x11a2d,7}}, + {{0x6497,7},{0x23df,5}}, {{0x12a1,11},{0x2468,3}}, {{0x7414,3},{0x20fbd,4}}, {{0x58cf,5},{0x3e0e,3}}, + {{0x116ac,5},{0x6,1}}, {{0x1c91,5},{0xca79,4}}, {{0x491e,7},{0x45c7,2}}, {{0x4767,1},{0xe8a,2}}, + {{0x6,2},{0xeea,3}}, {{0xf65,4},{0x4acf,9}}, {{0x12d4,3},{0xe92,3}}, {{0x2de63,3},{0x468,2}}, + {{0x4ef5,4},{0x13e3,4}}, {{0x12c3,4},{0x1e4b8,5}}, {{0x4853,3},{0x1d359,6}}, {{0x1bc20,6},{0x2e28,3}}, + {{0x225e,6},{0x29f7,3}}, {{0x1c892,6},{0xcce,2}}, {{0xed1,4},{0xa9a6,7}}, {{0x43fb,3},{0x2,1}}, + {{0x951c,6},{0xec6,3}}, {{0x136f,2},{0xcd3,2}}, {{0x5ff8,6},{0xfa9,4}}, {{0x4589,5},{0x3b2c,7}}, + {{0x46af,5},{0xe11,1}}, {{0x19f7,4},{0x122d,3}}, {{0x1f53a,6},{0x10e2,3}}, {{0x111a,3},{0x101f,2}}, + {{0x1a86,3},{0xfa9,4}}, {{0x2e28,4},{0xcc9,2}}, {{0xf32,2},{0xfe0,2}}, {{0x3203,5},{0x286d,3}}, + {{0x81d5,9},{0xec6,3}}, {{0x117eb,5},{0x54b6,5}}, {{0x1447,7},{0xe11,2}}, {{0x1ebc,5},{0xe22,2}}, + {{0x111c6,7},{0xf91,3}}, {{0x2e79e,4},{0x2b0aa,2}}, {{0x1467,10},{0xe11,1}}, {{0x1062,2},{0xe7f,2}}, + {{0x176,2},{0x57,1}}, {{0x1967,3},{0x2f41,4}}, {{0x1debd,2},{0x1969,1}}, {{0x11163,5},{0x319a,3}}, + {{0x7602,4},{0x9905,4}}, {{0x51ac,4},{0x10d3,3}}, {{0x13dd,4},{0x1204,4}}, {{0x1b986,6},{0xe67,2}}, + {{0x19b7,3},{0xe0a,1}}, {{0x2b50b,4},{0x2b50f,4}}, {{0xe8ff,8},{0xeee,3}}, {{0xfe3,4},{0xc6cd,4}}, + {{0x4,1},{0xe89,2}}, {{0x14a7,4},{0x66fd,3}}, {{0x16804,6},{0x1944,3}}, {{0x1a01b,6},{0xf91,3}}, + {{0x1040,3},{0xb,1}}, {{0x591d,7},{0x6452,4}}, {{0x12e5,3},{0xab9f,3}}, {{0x12059,6},{0xe69,5}}, + {{0x288b,2},{0xe0a,1}}, {{0x56c7,5},{0x10d2,4}}, {{0xe802,6},{0xe808,5}}, {{0x188,2},{0x57,1}}, + {{0x111a,7},{0x185f,7}}, {{0xf0a,3},{0x4538,3}}, {{0x10d9,2},{0xeb5,2}}, {{0x25d3,8},{0x240b,6}}, + {{0xe37,4},{0x2b088,2}}, {{0xfa5,2},{0x2790,5}}, {{0x16764,7},{0xcc9,2}}, {{0x18eb2,5},{0x1062,2}}, + {{0x1025,1},{0xe32,1}}, {{0x8ef5,11},{0xe11,1}}, {{0x58a8,5},{0xe11,1}}, {{0x1777,5},{0xa766,7}}, + {{0xed6,2},{0xcc8,1}}, {{0x11b3,5},{0x1ebf,3}}, {{0x3433,5},{0x9302,6}}, {{0xf0a,5},{0x23c0,6}}, + {{0x113f,2},{0xe0d,2}}, {{0x13a7,7},{0x641a,5}}, {{0x34b1,5},{0x5261,4}}, {{0x18a2a,7},{0xf91,3}}, + {{0x9a8,1},{0x8666,2}}, {{0xb5ad,5},{0x194b3,4}}, {{0xf77,3},{0x183a,3}}, {{0x1373,2},{0x5e94,5}}, + {{0xef66,7},{0xe1c,3}}, {{0x2f71,4},{0x1153,2}}, {{0x5416,7},{0x5150,6}}, {{0x7d41,3},{0x2075,3}}, + {{0x10a3,3},{0x7921,3}}, {{0x136a,4},{0x1054,3}}, {{0x1b04,3},{0xe0d,2}}, {{0x1943,2},{0xf86,2}}, + {{0x56c7,5},{0x3f56,5}}, {{0xf0d,2},{0xe22,3}}, {{0x1e9e,5},{0x15cf,8}}, {{0xf0a,3},{0x1131,6}}, + {{0x1f849,5},{0x6bd6,4}}, {{0xe09,1},{0x1f38,1}}, {{0x2a47,3},{0x2690a,2}}, {{0x19b9,1},{0xe7d,2}}, + {{0x3dc5,7},{0x538f,5}}, {{0x6fff,2},{0xe22,3}}, {{0x46bd,3},{0x10197,4}}, {{0x1ccd,7},{0x1cd4,5}}, + {{0xa3f5,7},{0xa3fc,5}}, {{0x14ee6,6},{0x3075,4}}, {{0xd131,4},{0xab89,3}}, {{0x1a07,3},{0x6140,3}}, + {{0xedd,1},{0xf1d,2}}, {{0x1081,7},{0xcc1,1}}, {{0x10f48,9},{0xcc3,2}}, {{0xbd99,5},{0x30ad,6}}, + {{0x1fde9,6},{0xe11,1}}, {{0xe77,2},{0x8,1}}, {{0x5dfd,6},{0xeb9,5}}, {{0x1a66,1},{0xfaac,7}}, + {{0x2b0e8,2},{0x2afd4,2}}, {{0xe83,5},{0x1b5a,7}}, {{0x46af,3},{0x2ccaf,2}}, {{0x1469,4},{0x2c6a,5}}, + {{0x479d,4},{0x1cd5,4}}, {{0xf,1},{0x44,2}}, {{0x5d2d,7},{0x10f2,5}}, {{0x457b,5},{0x15fe,4}}, + {{0x12f8,2},{0x1fc3d,5}}, {{0x8199,7},{0x7997,4}}, {{0x10a3,4},{0xe63,2}}, {{0x3521,4},{0xc300,3}}, + {{0x1837,5},{0xfeac,3}}, {{0xe33,1},{0xf1f,3}}, {{0x2f71,4},{0x13375,5}}, {{0x1537,4},{0x113f,2}}, + {{0xef7,3},{0x23446,5}}, {{0x187a0,7},{0x308b,3}}, {{0xc275,4},{0xc279,8}}, {{0x10d66,5},{0x10d3,3}}, + {{0xfa5,2},{0xcc9,2}}, {{0x19b7,3},{0x162c,3}}, {{0xb409,6},{0xb40f,6}}, {{0x1567,3},{0xe11,2}}, + {{0xb3f1,3},{0x17103,7}}, {{0xe19,1},{0xe16,1}}, {{0x780c,3},{0xcbf,2}}, {{0x8835,5},{0x168b,4}}, + {{0x18f7,5},{0x2e33,4}}, {{0x10b9,2},{0x7955,4}}, {{0x2e2b3,2},{0x2afd4,2}}, {{0x4853,3},{0xf04,2}}, + {{0x1e2,2},{0x21,1}}, {{0xcf00,6},{0x2091,4}}, {{0x20f6,5},{0xec3,6}}, {{0x11d2b,9},{0xe95,2}}, + {{0x1ef2e,6},{0x1150,3}}, {{0xe97,3},{0x29a22,2}}, {{0x5611,5},{0xed9,2}}, {{0x12c3,4},{0x5536,4}}, + {{0xfa5,2},{0x10d3,3}}, {{0x15c06,6},{0x120c,3}}, {{0x1024,2},{0x6,1}}, {{0x478f,3},{0x442d,1}}, + {{0xe2b,2},{0x4b12,4}}, {{0x19b7,3},{0x2ba5,1}}, {{0x2f01,6},{0xed9,2}}, {{0x30eb,13},{0xe11,1}}, + {{0x1677,3},{0x1393,3}}, {{0x39b9,4},{0x22877,4}}, {{0x2d79,4},{0xe29,2}}, {{0x17380,6},{0x1a9a,4}}, + {{0x72cf,4},{0xe92,3}}, {{0x1467,4},{0x43fd,4}}, {{0xcc7,2},{0xf0d,2}}, {{0x1e4c6,6},{0xcc7,1}}, + {{0x4597,5},{0x1ac7,3}}, {{0xbded,4},{0x6008,3}}, {{0x4c5e,8},{0xe92,3}}, {{0x896d,9},{0xec6,3}}, + {{0xf4f,1},{0x2341,5}}, {{0xe71,2},{0xc6bc,4}}, {{0xf65,4},{0x641a,5}}, {{0x10201,5},{0x175bd,4}}, + {{0x1d54,6},{0x4eb0,4}}, {{0xe11,1},{0x168b,4}}, {{0x8ba1,6},{0x30ad,6}}, {{0xb3f1,3},{0xfb0,2}}, + {{0x1be,2},{0x468,2}}, {{0x9ca5,6},{0xcc9,2}}, {{0x2e22f,4},{0x57,1}}, {{0x3d47,6},{0x51c8,5}}, + {{0x14e7,7},{0x14ee,9}}, {{0x10217,8},{0xec6,3}}, {{0x4853,3},{0x4bfa,3}}, {{0x6cde,4},{0xfcb,2}}, + {{0xe21,1},{0xcc3,2}}, {{0x18390,5},{0x193f,3}}, {{0xa,2},{0x1025,2}}, {{0x12f8,2},{0xf69b,3}}, + {{0x1967,3},{0x3e54,3}}, {{0x2d25,8},{0x27dc,4}}, {{0xf15,1},{0x74f3,2}}, {{0x2de7b,3},{0x109,2}}, + {{0x46bf,1},{0x1e2f5,3}}, {{0x15738,7},{0xcc9,2}}, {{0x2e3d,9},{0xf7a,2}}, {{0xf0c,1},{0x1e2ed,2}}, + {{0x5534,4},{0xab88,4}}, {{0xe6f,3},{0x7e9d,3}}, {{0x9a6,1},{0xabc6,3}}, {{0x8115,7},{0x331f,4}}, + {{0x1927,4},{0xe0a,1}}, {{0x2ec9,7},{0x2ed0,7}}, {{0xf4f,1},{0x640e,5}}, {{0x1967,3},{0xe0f9,3}}, + {{0x1081,5},{0xf4a,5}}, {{0xebe,4},{0x237d,9}}, {{0x46af,3},{0x1af5,3}}, {{0xe5b,3},{0x78cb,4}}, + {{0xb12d,7},{0x127b,4}}, {{0x1185,3},{0x189f,3}}, {{0x536d,9},{0x3bed,3}}, {{0x11d99,5},{0x16a3a,3}}, + {{0x6d1f,5},{0xf12,3}}, {{0xfa5,2},{0x5e4f,3}}, {{0x2aa1,9},{0xe69,5}}, {{0x478f,3},{0x25d5e,2}}, + {{0x10a3,3},{0x12a3,3}}, {{0xed5,3},{0x115a,3}}, {{0x2c15,3},{0x30f7,2}}, {{0x9a65,6},{0xcc9,2}}, + {{0xc581,6},{0x1632,5}}, {{0xe0f,1},{0x138e,2}}, {{0x9f81,8},{0xec6,3}}, {{0x112b8,5},{0xe7d,2}}, + {{0xcc9,2},{0x5538,2}}, {{0x62dd,4},{0x3155,6}}, {{0x4ee8,4},{0x2266,5}}, {{0x4853,3},{0xe16,1}}, + {{0x56c7,5},{0x7bc1,3}}, {{0x7b21,5},{0x23df,5}}, {{0xf80,2},{0x6,1}}, {{0x1e2f0,2},{0x48d7,2}}, + {{0x1e11e,5},{0xeb3,2}}, {{0x176,2},{0x69,1}}, {{0xf4f,1},{0xce96,4}}, {{0x1e8f,8},{0x3251,5}}, + {{0xa011,6},{0xec8b,5}}, {{0xb5af,3},{0x1166,3}}, {{0xd,2},{0x21,1}}, {{0x1a84,5},{0xfb0,2}}, + {{0xe37,4},{0x2b0d0,2}}, {{0x29cf,3},{0x28d2,3}}, {{0x1fbdf,7},{0xe95,2}}, {{0x12d4,3},{0x308f,4}}, + {{0x12e5,3},{0x2aa8a,4}}, {{0x478f,3},{0xec3,3}}, {{0xf,1},{0x468,2}}, {{0x23c4b,3},{0x2d4e9,2}}, + {{0x1839,3},{0x8,1}}, {{0xe2b,2},{0x1059,3}}, {{0x14d7,6},{0x86bb,6}}, {{0x1959,3},{0x11cb,3}}, + {{0x10cca,8},{0xcce,2}}, {{0xf11,1},{0x2ea14,2}}, {{0x1a0d8,7},{0xe11,1}}, {{0x39b2,6},{0xe11,1}}, + {{0x1567,3},{0x21cbc,5}}, {{0xf61,2},{0xf79,3}}, {{0xadb5,5},{0x2ef8,3}}, {{0x182f,3},{0xe77,3}}, + {{0x27dc2,6},{0x8,1}}, {{0xf0a,3},{0x1eea1,2}}, {{0x11db,3},{0xccd,1}}, {{0x1567,3},{0xccb,2}}, + {{0xc0f9,5},{0x158f,3}}, {{0x164,2},{0x7b,1}}, {{0x4c37,6},{0x146d,4}}, {{0xe5b,3},{0x4ef1,4}}, + {{0xd,2},{0xd,1}}, {{0x7392,5},{0x4d85,4}}, {{0x1199c,2},{0x15764,5}}, {{0xa659,5},{0x10f5,3}}, + {{0x3735,9},{0x1702,5}}, {{0x4217,5},{0xec5,4}}, {{0x11f04,7},{0x6d33,4}}, {{0x2ba5,1},{0x5538,2}}, + {{0x1ab1,5},{0xe8a,2}}, {{0xe78,1},{0xe0b,4}}, {{0xf77,3},{0x17a5e,4}}, {{0x172a4,6},{0x127c,3}}, + {{0xcc8,1},{0x22a2,4}}, {{0x12e5,3},{0x4516,3}}, {{0x1577,5},{0xa086,3}}, {{0xf0a,3},{0xfb0,2}}, + {{0x3f07,11},{0xcce,2}}, {{0x1150,2},{0x1025,1}}, {{0xf11,1},{0x1569,2}}, {{0x127f,5},{0x2bad,4}}, + {{0x1bbf,5},{0x6,2}}, {{0x1747,4},{0x12ba7,3}}, {{0xeac,2},{0x8,1}}, {{0xcc1,1},{0x4928,3}}, + {{0x11373,4},{0x19f9,2}}, {{0xf65,3},{0xcc7,1}}, {{0x7197,8},{0xef3,4}}, {{0x9b91,7},{0x9b98,5}}, + {{0x141a,2},{0x1b607,3}}, {{0x307f7,2},{0x307f9,2}}, {{0x12af6,6},{0xe1fa,4}}, {{0x2f71,4},{0xc088,4}}, + {{0x1587,8},{0x5b06,4}}, {{0x1290,4},{0x189b,6}}, {{0x2c85,2},{0x6,1}}, {{0x5903,5},{0x2477,3}}, + {{0x1dc58,2},{0xcc3,2}}, {{0xe6f,3},{0xcbf,2}}, {{0x42f7,9},{0xe92,3}}, {{0x18d74,3},{0xc3d0,3}}, + {{0x4ef5,4},{0x1056b,4}}, {{0xe83,5},{0x23f8,7}}, {{0xe0f,1},{0x1084,3}}, {{0xe97,3},{0xe08,1}}, + {{0x101f,3},{0xcc9,2}}, {{0x2e75,6},{0x12bc4,3}}, {{0x3694,4},{0xe92,5}}, {{0x1f402,2},{0x1f402,2}}, + {{0x492b,4},{0x2b78,4}}, {{0x105f,8},{0x1067,9}}, {{0x12fd,3},{0x1300,7}}, {{0xbb41,6},{0xb3bb,6}}, + {{0x46bf,1},{0x110fb,3}}, {{0x19b7,3},{0x4767,1}}, {{0xf15,1},{0x1eb14,5}}, {{0x1f729,5},{0xa,2}}, + {{0x7416,1},{0x12a6,3}}, {{0x3,1},{0xcc3,2}}, {{0xe2b,2},{0x7e9d,3}}, {{0x188,2},{0x69,1}}, + {{0x16a7,3},{0x20fbd,4}}, {{0x12d4,3},{0x810e,3}}, {{0xa671,5},{0x34f0,7}}, {{0xe22,3},{0x1de7,3}}, + {{0xe0f,1},{0x5,1}}, {{0xaaf,2},{0x317a0,2}}, {{0x22e5,4},{0x1790,6}}, {{0x10cb,2},{0x1702,4}}, + {{0x14a7,4},{0x1085,3}}, {{0xb409,4},{0x16ccd,4}}, {{0xf13,2},{0xe25,2}}, {{0x328f,9},{0xf91,3}}, + {{0x1969,1},{0x11db,3}}, {{0x27e0,3},{0x1b5a2,6}}, {{0xf15,1},{0xfcb,2}}, {{0x1b49a,6},{0xcc9,2}}, + {{0xb745,5},{0x3,1}}, {{0xed9,2},{0x30f7,2}}, {{0x28b31,3},{0x28b34,7}}, {{0x17146,4},{0x7974,4}}, + {{0x7602,9},{0xed6,2}}, {{0x4781,3},{0xee9,2}}, {{0x16642,6},{0x30f4,4}}, {{0xc1d3,2},{0x3c25,6}}, + {{0x12b2,5},{0xb2ca,7}}, {{0x1522e,7},{0xabc6,3}}, {{0x1967,3},{0xf11,1}}, {{0xfcb,2},{0x6cb4,3}}, + {{0x1ff7,3},{0x1a63,3}}, {{0xe86,2},{0x15e9,3}}, {{0x20599,2},{0x20599,2}}, {{0x1be,2},{0x39c,2}}, + {{0xe1f,3},{0x4461,2}}, {{0x7935,5},{0xcc7,1}}, {{0xf15,1},{0x453b,4}}, {{0x72cf,4},{0x13dce,6}}, + {{0xe0f,1},{0x46bf,1}}, {{0x24beb,5},{0xed6,2}}, {{0x1717a,3},{0x4531,3}}, {{0xe61,3},{0x10b9,2}}, + {{0x57cb,5},{0x12c14,4}}, {{0xefb3,6},{0xfb0,2}}, {{0xe19,1},{0xcbb,2}}, {{0x2df3b,4},{0x5cd,2}}, + {{0x4cc6,6},{0x1fbe,3}}, {{0x7d01,4},{0x7bd9,3}}, {{0x1ad0b,8},{0xe11,1}}, {{0x28d0,4},{0x7f09,3}}, + {{0x112b,4},{0xf16,2}}, {{0x7416,1},{0x8494,4}}, {{0x9e01,5},{0x18b4,3}}, {{0x41a7,5},{0xf35,3}}, + {{0x113c,3},{0x5edd,3}}, {{0x1489,2},{0x9905,4}}, {{0xcc1,1},{0x4b11,4}}, {{0x2e21d,4},{0x8d,1}}, + {{0x7bbd,5},{0x716c,4}}, {{0x9a9,2},{0x1096,3}}, {{0xf15,1},{0x1692,5}}, {{0x1007,5},{0x7844,4}}, + {{0xcbf,2},{0xe67,2}}, {{0x2e2b3,2},{0xd7a,2}}, {{0x1208,4},{0x9a8,1}}, {{0x1208,7},{0x37d7,5}}, + {{0x114de,6},{0xe11,1}}, {{0x712f,4},{0x12a3,3}}, {{0x17646,5},{0x1a152,4}}, {{0xc281,4},{0x2b0b6,4}}, + {{0x308f7,3},{0x205a5,1}}, {{0xf0a,3},{0x17dd9,3}}, {{0x1f5a6,6},{0x2f2e,3}}, {{0x3591,6},{0x126a,4}}, + {{0x11b68,8},{0xe11,1}}, {{0x11e6a,5},{0x11e6f,6}}, {{0x5e3e,9},{0x2091,4}}, {{0x113f,2},{0x127c,3}}, + {{0xb415,4},{0x1b03,3}}, {{0xe61,3},{0xeed,4}}, {{0x662a,8},{0x6a0f,4}}, {{0x3203,5},{0x23df,5}}, + {{0xb649,5},{0x15399,2}}, {{0x12e5,3},{0x1f78,7}}, {{0x1109,5},{0xe6c,3}}, {{0x2399,4},{0xcd3,1}}, + {{0x6,2},{0xcc6,2}}, {{0x1939,2},{0x4bff,4}}, {{0xaebd,5},{0x14f9,3}}, {{0x19e9,3},{0x12be,5}}, + {{0x7518,7},{0xfdf,4}}, {{0x4ef5,4},{0x11a6,2}}, {{0x7b,1},{0x1ac,2}}, {{0xede,1},{0x10e2,3}}, + {{0xccd,1},{0xe1c,3}}, {{0x236c,4},{0xfe8,2}}, {{0x1677,3},{0x6ca7,3}}, {{0x72cf,6},{0xec6,3}}, + {{0xcbd,1},{0xe0b,2}}, {{0x6,1},{0x102d6,6}}, {{0x1088,4},{0xe11,1}}, {{0x12e5,3},{0x231f6,5}}, + {{0x417d,5},{0xe11,1}}, {{0x19b7,3},{0x74fc,2}}, {{0x10dd2,5},{0x4ff1,4}}, {{0xf4f,1},{0xfe6,4}}, + {{0xbae1,7},{0xce83,4}}, {{0xedd,1},{0x156a,3}}, {{0x18ee,3},{0xed6,3}}, {{0x2dbf,5},{0xad8a,4}}, + {{0xf,1},{0x1347,3}}, {{0x887d,8},{0x1663,4}}, {{0xab1,32},{0xab1,32}}, {{0xe08,1},{0xed6,3}}, + {{0x11b5,2},{0x10b9,2}}, {{0x12e5,3},{0x74f6,2}}, {{0x112b,5},{0x53c0,5}}, {{0xe31,2},{0x7a14,4}}, + {{0x2d79,4},{0xf7a,2}}, {{0x28c1,4},{0x10b9,3}}, {{0x1e08,6},{0x8be3,6}}, {{0xe83,5},{0x2cab,3}}, + {{0x1240,2},{0xe22,3}}, {{0xe08,1},{0x1a43b,6}}, {{0x8295,5},{0x9,1}}, {{0xb841,5},{0xed5,4}}, + {{0xe32,1},{0xcc7,1}}, {{0x233f,7},{0x61b9,6}}, {{0x1085d,9},{0xe2b,2}}, {{0x18e1c,7},{0x1054,3}}, + {{0x1897,8},{0x6a0f,4}}, {{0x455f,5},{0x5150,6}}, {{0xe80,2},{0x1791,6}}, {{0x111c,3},{0xeab,2}}, + {{0x25993,7},{0xe11,1}}, {{0xcb7,2},{0x72d3,3}}, {{0x1ba4c,7},{0xf16,2}}, {{0xb895,7},{0x9100,4}}, + {{0x105f,3},{0x124eb,6}}, {{0x5f90,6},{0x2076,4}}, {{0xfa5e,5},{0x156a,3}}, {{0xb,1},{0xf1a,2}}, + {{0x113c,3},{0x5e4f,3}}, {{0x2bf1,5},{0x1059,3}}, {{0x19b7,3},{0xb428,3}}, {{0x1677,6},{0xc3d0,3}}, + {{0x15558,6},{0xbf5d,4}}, {{0x1252,5},{0xfdf,4}}, {{0x12d4,3},{0x1db44,2}}, {{0xf89,3},{0x1849,3}}, + {{0x9a41,5},{0x9a46,6}}, {{0x29e45,5},{0x45c7,2}}, {{0x1967,3},{0x1a79b,5}}, {{0x824d,4},{0xac0d,3}}, + {{0xefa,2},{0xe11,2}}, {{0xf03,2},{0x116a8,4}}, {{0xb12d,6},{0x431e,3}}, {{0xcd3,2},{0xe6b,3}}, + {{0x12844,7},{0x4d5f,3}}, {{0x12d4,3},{0xede,1}}, {{0x45eb,4},{0x1692,2}}, {{0x29de,4},{0x584a,3}}, + {{0x42cd,9},{0x12be,5}}, {{0xf89,3},{0x1830,3}}, {{0x28d0,4},{0x7a36,3}}, {{0xccb,2},{0x6e5e,4}}, + {{0x1019,6},{0xf84,5}}, {{0x13a7,5},{0x8,1}}, {{0x3d39,6},{0x167f,8}}, {{0x10c46,6},{0xec6,3}}, + {{0x307ff,2},{0x30801,2}}, {{0x3d39,6},{0x1e40,4}}, {{0x11b3,5},{0x4d27,7}}, {{0xbb7d,5},{0xf12,3}}, + {{0x11187,2},{0x18776,2}}, {{0x1f07,7},{0x1024,7}}, {{0x9555,9},{0xf79,3}}, {{0xef7,3},{0x198c9,2}}, + {{0x99c9,8},{0xeed,4}}, {{0xf65,4},{0x138b,10}}, {{0x198e6,7},{0xe95,2}}, {{0x1f342,6},{0x1f348,3}}, + {{0x1ebf,3},{0xa,2}}, {{0x450b,4},{0x9101,4}}, {{0x488b,4},{0x7cd7,4}}, {{0x2b46,4},{0x2362d,3}}, + {{0x5770,5},{0x5775,8}}, {{0xe3d,4},{0xd7a,2}}, {{0x478f,3},{0xf70,2}}, {{0x6cde,4},{0xe7d,2}}, + {{0x12d4,3},{0x2ed13,2}}, {{0xc371,8},{0x4618,3}}, {{0x12e5,3},{0xe2f,1}}, {{0x33a7,5},{0xd4b1,6}}, + {{0x9519,6},{0x4b12,4}}, {{0x28b2,10},{0x12be,5}}, {{0x1db33,2},{0x24669,2}}, {{0xe61,3},{0xcc8,1}}, + {{0x1342e,5},{0x1722,5}}, {{0x1cdc,6},{0xe11,1}}, {{0xe97,3},{0x196cd,5}}, {{0x5261,4},{0xe5e,2}}, + {{0x2ba5,1},{0xefa,2}}, {{0xb3f1,3},{0xe67,2}}, {{0x2e280,3},{0x307bb,1}}, {{0x2d95,5},{0xc90c,6}}, + {{0x305f,6},{0x7955,4}}, {{0x4871,2},{0xcc1,1}}, {{0x20579,2},{0x20579,2}}, {{0x11793,5},{0x354f,4}}, + {{0xea54,9},{0xf7a,2}}, {{0x83d9,7},{0xd0a9,4}}, {{0x2240,7},{0x2236,7}}, {{0x2ba5,1},{0x2b4c3,3}}, + {{0x9add,6},{0xcd3,2}}, {{0xef7,4},{0x1185,3}}, {{0xa61d,7},{0x37c8,5}}, {{0x1747,4},{0x13fe,9}}, + {{0xe11,1},{0xd6cc,3}}, {{0x473b,5},{0x98a2,7}}, {{0x122f4,7},{0xe11,1}}, {{0x2b48,2},{0x123e,3}}, + {{0x307bb,1},{0x2e27e,2}}, {{0x18c5a,6},{0x1de7,3}}, {{0x512,2},{0x7b,1}}, {{0x1b5e7,7},{0xe11,1}}, + {{0x156a,3},{0xef5,2}}, {{0x2e223,4},{0x57,1}}, {{0xe91,2},{0x1d7e,3}}, {{0x8265,7},{0xfb8,3}}, + {{0x1ff7,3},{0xe13,3}}, {{0x260,2},{0x468,2}}, {{0x9a8,1},{0x1790,6}}, {{0x18746,5},{0xf9fd,5}}, + {{0x300b,8},{0xe69,5}}, {{0x10a3,3},{0xefa,2}}, {{0x8415,5},{0xd10a,6}}, {{0x9c85,3},{0xe6b,2}}, + {{0x11a6,2},{0xe0d,2}}, {{0x7af1,7},{0x2844,5}}, {{0x42f7,9},{0xe69,5}}, {{0xcc7,1},{0x58d2,4}}, + {{0x3b5d,5},{0x1ce6,5}}, {{0x658e,8},{0xcc9,2}}, {{0xce50,7},{0x9bd1,3}}, {{0x3169,8},{0x809a,3}}, + {{0x478f,3},{0x178a,3}}, {{0x125d,6},{0x1d32,3}}, {{0xf0a,3},{0x120c,3}}, {{0x2e21d,4},{0x69,1}}, + {{0xe08,1},{0x421a,5}}, {{0x6cd1,5},{0x2271,3}}, {{0x16d7,6},{0x36bd,7}}, {{0x3b5d,5},{0x34d7,4}}, + {{0x1e53,12},{0xf91,3}}, {{0x3bf7,8},{0xcc8,3}}, {{0x3bcd,4},{0x44ad,3}}, {{0x11cb,3},{0x2269,4}}, + {{0x2ddb,7},{0x61bb,4}}, {{0xe80,2},{0x6,2}}, {{0xb5af,3},{0x251a,5}}, {{0x70ad,3},{0x20664,5}}, + {{0x109b,2},{0x8,1}}, {{0x1bec,5},{0x2e7a,9}}, {{0x45eb,5},{0x972b,6}}, {{0xb865,6},{0x2075,3}}, + {{0x1d7e,3},{0xb,1}}, {{0x1967,3},{0x2280,2}}, {{0x7d41,3},{0xe0d,2}}, {{0x228b,6},{0xe133,5}}, + {{0x4781,3},{0x1bbed,6}}, {{0x1569,4},{0xebc,2}}, {{0x11b5,2},{0xe22,2}}, {{0xe75,2},{0x5,1}}, + {{0x7795,4},{0x260cf,4}}, {{0xcc1,1},{0xce96,4}}, {{0xe71,1},{0xcc6,2}}, {{0x824d,4},{0xf86,3}}, + {{0x1019,4},{0x1153,3}}, {{0xb1a5,7},{0xec6,3}}, {{0x1a66,1},{0x22bfe,5}}, {{0x19b9,1},{0xe77,2}}, + {{0x1e2,2},{0x8d,1}}, {{0xe282,6},{0xe0a,1}}, {{0xf59,2},{0x15d1,5}}, {{0x1a66,1},{0xef74,6}}, + {{0xed6,3},{0x8,1}}, {{0x12f6,4},{0x6,2}}, {{0x262d5,3},{0x1780,3}}, {{0x247a,5},{0x4a01,3}}, + {{0x70ad,3},{0x28c79,4}}, {{0x1c45a,6},{0xcc9,2}}, {{0x43c9,7},{0x1244,7}}, {{0xe11,2},{0xcbf,2}}, + {{0x316e,3},{0x1b4f,5}}, {{0x4ee8,4},{0x19d07,5}}, {{0x5b8d,9},{0xcce,2}}, {{0x1a66,1},{0xa076,5}}, + {{0x121c,3},{0xe22,2}}, {{0xb3f1,3},{0x14f0,3}}, {{0x50c9,10},{0xec6,3}}, {{0xe21,1},{0x1debd,2}}, + {{0x1fcf6,6},{0x127c,3}}, {{0x1817,4},{0x19ce2,3}}, {{0x70fb,5},{0x5,2}}, {{0xf15,1},{0x1be9,3}}, + {{0x1489,2},{0xf13,2}}, {{0x19b7,3},{0x204e0,2}}, {{0x18ee,3},{0xe11,1}}, {{0x2a2b,3},{0xe5e,2}}, + {{0x15a7,6},{0xe133,5}}, {{0x4757,7},{0x7b72,3}}, {{0x1cfa,5},{0xaa38,5}}, {{0x4287,7},{0x101f,3}}, + {{0x16db8,7},{0xec6,3}}, {{0x1969,1},{0x120f,3}}, {{0xe32,1},{0xcc3,2}}, {{0xe99,1},{0x74fb,3}}, + {{0x3694,3},{0x5669,3}}, {{0x3089,5},{0x404f,3}}, {{0x479d,4},{0x29d4,3}}, {{0xc3be,8},{0xcc9,2}}, + {{0x1f4,2},{0xf,1}}, {{0x21,1},{0x164,2}}, {{0x16048,6},{0x1604e,4}}, {{0x7bd5,8},{0xe95,2}}, + {{0x10a3,3},{0x1021a,5}}, {{0xf89,3},{0x9f32,6}}, {{0xcb8,1},{0xccd,1}}, {{0xd11b,5},{0xe78,1}}, + {{0x1f2a0,5},{0xe78,2}}, {{0x1bf0,2},{0xccd,1}}, {{0xb589,4},{0x19cec,4}}, {{0x450b,4},{0xcb53,6}}, + {{0x1967,3},{0x2690c,2}}, {{0x13a7,5},{0xe86,2}}, {{0x16764,7},{0xec6,3}}, {{0xf11,1},{0x5ea9,3}}, + {{0x2af23,4},{0x14e24,3}}, {{0x46af,3},{0x62f3,4}}, {{0x2a8ab,6},{0xe0a,1}}, {{0x5be8,9},{0x1523,4}}, + {{0x3080,4},{0xe0a,1}}, {{0xdd44,6},{0xec6,3}}, {{0x1967,3},{0x13dd,4}}, {{0x19b9,1},{0xfb8,3}}, + {{0x1a66,1},{0xe2f,1}}, {{0x5172,7},{0x1702,4}}, {{0xcbd,1},{0x125fb,5}}, {{0x1787,6},{0x93dc,5}}, + {{0x11352,5},{0x121c,4}}, {{0x19b7,3},{0xf04,2}}, {{0xc5ad,7},{0x15fe,4}}, {{0x10c5,4},{0x14e73,5}}, + {{0x2df3b,4},{0x1e2,2}}, {{0x205e9,6},{0xe95,2}}, {{0x10c5,4},{0x2d11,3}}, {{0x6def,8},{0xec6,3}}, + {{0x9af,2},{0x2b05e,2}}, {{0x27ef,4},{0x102d6,7}}, {{0x125d,8},{0x3155,6}}, {{0x1c0a,8},{0x1c12,7}}, + {{0xed9,2},{0x123e,3}}, {{0x46af,3},{0x3537,2}}, {{0x9369,5},{0x13e4,3}}, {{0xf93,4},{0x7a5b,3}}, + {{0x27e0,3},{0x231de,5}}, {{0x48da,2},{0xf4f,1}}, {{0x46af,3},{0x4a86,4}}, {{0x3dd3,6},{0x9101,4}}, + {{0x251f,8},{0x1663,3}}, {{0x125d,6},{0xf85b,5}}, {{0xe3d,4},{0x2b0d0,2}}, {{0xf4f,1},{0xf15,1}}, + {{0x169b,6},{0x127c,3}}, {{0x7108,5},{0xccd,1}}, {{0x1787,6},{0x4b96,5}}, {{0x20f6,5},{0x1c85,3}}, + {{0x46af,3},{0x1db45,2}}, {{0xe83,5},{0x41cb,6}}, {{0x2075,3},{0x7d98,5}}, {{0xe613,5},{0xe623,6}}, + {{0x142a,6},{0xe0b,4}}, {{0xfcb,3},{0xe6b,3}}, {{0x496c,5},{0xaa38,5}}, {{0xb451,5},{0x289c,7}}, + {{0xaaf,2},{0xaf4,8}}, {{0xe09,1},{0x6eee,4}}, {{0xe1f,3},{0x1f875,1}}, {{0x9369,5},{0xec5,4}}, + {{0xbc31,5},{0x51c8,5}}, {{0xe97,3},{0x1373,2}}, {{0xf15,1},{0x9408,4}}, {{0x4853,3},{0xeb5,2}}, + {{0x10a3,4},{0x1ae7,3}}, {{0xf1d,2},{0xf1f,3}}, {{0x181ec,6},{0xed6,2}}, {{0xe80d,7},{0x1783,4}}, + {{0xe7a,1},{0x1e57e,2}}, {{0x29cf,3},{0x10cb,4}}, {{0x325,2},{0x325,2}}, {{0x16a7,3},{0xed9,2}}, + {{0x3eb3,9},{0xebb,3}}, {{0x2df3b,4},{0x633,2}}, {{0x4853,3},{0xf0c,1}}, {{0xe11,2},{0x1303,3}}, + {{0x2ba5,1},{0x6,2}}, {{0xc1d1,4},{0xe7f,3}}, {{0xf65,4},{0x49b1,9}}, {{0x20389,4},{0x20389,4}}, + {{0x20f6,6},{0x4d83,5}}, {{0x22e5,6},{0xeed,4}}, {{0x1967,3},{0xccc,2}}, {{0xe2f,1},{0x2f33,6}}, + {{0x12e5,3},{0x16c4c,4}}, {{0x478f,4},{0xf16,2}}, {{0x486f,4},{0xe11,1}}, {{0x3083b,2},{0x18ee0,2}}, + {{0xfb0,3},{0x127c,3}}, {{0x27e0,3},{0xc118,5}}, {{0xfa5b,7},{0xf7a,2}}, {{0x2e21d,4},{0xe,1}}, + {{0x1dc56,4},{0xf4cb,5}}, {{0x1f9d,5},{0x35df,5}}, {{0x1e4ea,5},{0x15bf7,4}}, {{0x2ba2,3},{0xe11,1}}, + {{0x1283a,5},{0x6,3}}, {{0x10c5,4},{0xbd18,6}}, {{0x122a,6},{0xf91,3}}, {{0xe0f,2},{0x163b,5}}, + {{0xe1f,3},{0xd5f9,8}}, {{0xea6a,5},{0x24f7,4}}, {{0xe5b,3},{0x1059,3}}, {{0x9af,2},{0xc38,2}}, + {{0x1cfa,5},{0x5538,2}}, {{0x27e0,3},{0x16893,7}}, {{0x124c,6},{0x1131,6}}, {{0xe83,3},{0x10bb,5}}, + {{0xcd3,2},{0xfb0,2}}, {{0x4773,4},{0x5e94,5}}, {{0x10b9,2},{0xdb01,6}}, {{0x1fa7,3},{0x44b3,4}}, + {{0x158e,4},{0xe71,1}}, {{0x29cf,3},{0xe0f9,3}}, {{0x38e7,4},{0x1c2a,4}}, {{0x11adb,3},{0xb495,4}}, + {{0x3bcd,4},{0x78d0,3}}, {{0x70ad,3},{0x1a5e,3}}, {{0x1ed7e,6},{0x11d2,3}}, {{0xcce,2},{0x9a8,1}}, + {{0x11d5,5},{0x1d7e,3}}, {{0x1967,3},{0xc6cd,4}}, {{0x1c215,2},{0xeed,2}}, {{0xe71,1},{0xf12,3}}, + {{0x1ab1,5},{0x17dd9,3}}, {{0xe97,3},{0x1231,4}}, {{0xf65,4},{0x19473,5}}, {{0x2213,5},{0x2f4c,4}}, + {{0xe97,3},{0x10c1d,8}}, {{0x4ee8,4},{0x6008,3}}, {{0x2a2b,6},{0x1177,7}}, {{0x49a6,3},{0xed6,2}}, + {{0x10c5,4},{0xec6,3}}, {{0x24633,6},{0x1153,2}}, {{0x2036e,4},{0xe99,1}}, {{0x126d2,7},{0xe11,1}}, + {{0xcc8,1},{0xac0d,4}}, {{0x1487,4},{0x2271,3}}, {{0x12d4,3},{0xe2b,2}}, {{0xaaf,2},{0xf80,2}}, + {{0x7b45,4},{0xe0b,4}}, {{0x10c5,4},{0x30f5,4}}, {{0x10cb4,4},{0x44a5,2}}, {{0x3353,6},{0x2f3f,5}}, + {{0x3be9,5},{0x167f,7}}, {{0x29cf,3},{0x158f,3}}, {{0x48da,2},{0x48d7,2}}, {{0x29de,4},{0x348b,5}}, + {{0x536d,9},{0x2b89,3}}, {{0x2de3f,3},{0xaf4,1}}, {{0x1d0,2},{0x21,1}}, {{0xbeb9,6},{0x1b4f,5}}, + {{0x6d46,6},{0xec55,4}}, {{0xee9,2},{0x1a9a,4}}, {{0x46bd,3},{0x136f,2}}, {{0x11b89,5},{0xcc9,2}}, + {{0x4765,3},{0x1189,3}}, {{0x260eb,5},{0x1969,1}}, {{0x1a66,1},{0x48d3,2}}, {{0x1154c,4},{0xe32,1}}, + {{0xa461,8},{0x10f4,4}}, {{0xaf4,12},{0xaf4,3}}, {{0x11331,6},{0x6bd4,5}}, {{0x3521,4},{0x148a,3}}, + {{0x1bd25,6},{0xc3d0,3}}, {{0x206,2},{0xd,1}}, {{0x113aa,10},{0xe11,1}}, {{0x19b7,3},{0xe99,1}}, + {{0x2399,4},{0xae19,4}}, {{0xf02,2},{0x8,1}}, {{0x19d66,6},{0xf7a,2}}, {{0x1c35e,7},{0xcc9,2}}, + {{0x7303,5},{0xcbd,1}}, {{0x50fd,5},{0x1569,2}}, {{0x1db34,2},{0x4767,1}}, {{0xf194,3},{0x4bef,3}}, + {{0x7149,7},{0x2f32,4}}, {{0x1b03,3},{0xe67,2}}, {{0xe97,3},{0x2b82,2}}, {{0x1f07,7},{0x1004,3}}, + {{0xe97,3},{0xcba,2}}, {{0x1062,2},{0x18b2,5}}, {{0x3125,4},{0x1622,5}}, {{0xe0a,1},{0x3075,3}}, + {{0xc36,2},{0x18ed6,2}}, {{0xed1,4},{0x5342,3}}, {{0xa,2},{0xe78,1}}, {{0x1969,1},{0xe89,3}}, + {{0x10a78,8},{0x15e9,3}}, {{0x2b50f,2},{0x2e84a,2}}, {{0xf4f,1},{0x6,1}}, {{0xe25,2},{0x6e91,3}}, + {{0xe3d,4},{0xe47,2}}, {{0x13938,6},{0x41b8,4}}, {{0x2ba5,1},{0xcc5,2}}, {{0x176,2},{0x21,1}}, + {{0x305f,6},{0x1c6d,5}}, {{0x6af0,9},{0x13c3,4}}, {{0x101f,3},{0xe95,2}}, {{0xf77,3},{0x2280,2}}, + {{0x7f11,8},{0x3b73,3}}, {{0x14df6,8},{0xe0a,1}}, {{0x45eb,4},{0x13041,4}}, {{0x4853,4},{0xec6,3}}, + {{0x13474,5},{0x3320,4}}, {{0x56c7,5},{0x140bd,5}}, {{0x1677,3},{0x13e02,4}}, {{0x1787,6},{0x9a4,3}}, + {{0x48d6,2},{0xedd,1}}, {{0x1bec,5},{0x2d1e,7}}, {{0x33b5,4},{0xe77,3}}, {{0xf1a,2},{0xe69,6}}, + {{0x2e223,4},{0xf,1}}, {{0x1e62,4},{0x6a0f,4}}, {{0xf79,7},{0xfa9,4}}, {{0x1c73,5},{0x30f7,2}}, + {{0x10e2a,4},{0x1393,3}}, {{0x11005,5},{0xe6b,3}}, {{0x6415,10},{0xf86,3}}, {{0x7423,2},{0x1e40,4}}, + {{0x2a56,4},{0x1c293,5}}, {{0x17006,6},{0x3075,4}}, {{0x12c3,4},{0xc4b2,5}}, {{0x1399c,6},{0x3075,3}}, + {{0x27c2,4},{0xce8e,4}}, {{0x10a,2},{0x45,1}}, {{0x1ba8,5},{0xe6b,4}}, {{0x12e5,5},{0x141d4,4}}, + {{0x6cc4,4},{0x8b9c,5}}, {{0x16f7,6},{0xccb,3}}, {{0xa5ed,5},{0x1511,6}}, {{0x1857,4},{0x1d57f,5}}, + {{0x2ec04,2},{0x2ec04,2}}, {{0xc159,4},{0x12089,7}}, {{0x288a,3},{0x289c,7}}, {{0x450b,4},{0x149f,3}}, + {{0x1e62,5},{0xec6,3}}, {{0x2de39,5},{0xe7a,1}}, {{0x11c2e,8},{0xf86,3}}, {{0x1bbf,5},{0x431c,5}}, + {{0x2948,3},{0xe71,1}}, {{0xf1d,2},{0x2266,5}}, {{0x4765,3},{0x44ad,3}}, {{0xf4f,2},{0xcd3,2}}, + {{0x46af,3},{0xe78,1}}, {{0x6f27,7},{0xe69,5}}, {{0x4861,4},{0x4187,3}}, {{0x37b3,7},{0x37ba,7}}, + {{0x6aaf,8},{0xf84,5}}, {{0x27e0,4},{0x10cb,2}}, {{0x29fc,5},{0xe2b,2}}, {{0xe5b,3},{0xfd3,4}}, + {{0x114f,3},{0x15dc,3}}, {{0x114e9,4},{0x7417,4}}, {{0x2b500,6},{0x2e84a,2}}, {{0x1607,5},{0x8f39,4}}, + {{0x19b9,1},{0xf35,3}}, {{0x17661,2},{0xe16,1}}, {{0xef7,3},{0x16537,5}}, {{0x188,2},{0x7b,1}}, + {{0x46bd,3},{0xe0b,2}}, {{0x21c19,5},{0x138e,3}}, {{0xcc8,1},{0x5538,2}}, {{0x1017d,5},{0x238c,2}}, + {{0x9a8,1},{0xe22,2}}, {{0x176,2},{0xe,1}}, {{0x4765,3},{0xeb5,2}}, {{0xcbf,2},{0xe32,1}}, + {{0xe97,3},{0x442d,1}}, {{0x74f1,4},{0x19b9,1}}, {{0x2df3b,4},{0x56,2}}, {{0x959d,6},{0xe69,5}}, + {{0x182fa,6},{0x18300,4}}, {{0xb3f1,3},{0xffc,3}}, {{0x1977,3},{0xe19,1}}, {{0xcc6,2},{0xcc8,1}}, + {{0xccb,2},{0x5,2}}, {{0xa,2},{0xeab,2}}, {{0x4551,6},{0x301f,8}}, {{0x70ad,3},{0x2075,3}}, + {{0x944d,8},{0x4516,3}}, {{0xe32,1},{0x5b06,4}}, {{0x205a1,1},{0xdd8,6}}, {{0xcc8,1},{0x1f7c,3}}, + {{0xf15,1},{0x1ffa,3}}, {{0x19b7,3},{0xcc3,3}}, {{0x79f5,5},{0xec5,4}}, {{0xec6,3},{0xcc9,2}}, + {{0xe71,1},{0x227e6,5}}, {{0x1367,3},{0x16e1,6}}, {{0xe97,3},{0x23f76,5}}, {{0xe5b,3},{0x56a7,6}}, + {{0x33b5,10},{0x1004,3}}, {{0x4853,3},{0x1a56,2}}, {{0xcc6c,5},{0x9101,4}}, {{0xc1ad,5},{0xe6b,4}}, + {{0xe3d,4},{0x18ee0,2}}, {{0xe0f,2},{0x17cc,4}}, {{0x3de3,3},{0x22a3,2}}, {{0x1877,5},{0x9a4,3}}, + {{0x12c0e,6},{0x12c14,4}}, {{0x12e5,3},{0xec0,3}}, {{0xe99,1},{0x162c,3}}, {{0xe5b,3},{0x3cdf,6}}, + {{0x12c3,4},{0xe0a,1}}, {{0xcce,2},{0xcc1,1}}, {{0x18728,5},{0x66c2,3}}, {{0x12d4,3},{0x4767,1}}, + {{0xb96d,5},{0x126a,4}}, {{0x12f8,2},{0x12fa,3}}, {{0x112b8,5},{0x386e,5}}, {{0x3755,3},{0xed5,3}}, + {{0x12b2,5},{0xe7f,3}}, {{0x102b,3},{0xcd6,1}}, {{0x12830,5},{0x1231,4}}, {{0x3dd3,6},{0x6452,4}}, + {{0xe71,1},{0x1bd4c,6}}, {{0xf15,1},{0xe1c,3}}, {{0x33a7,5},{0x33ac,8}}, {{0x263b3,6},{0xf1a,2}}, + {{0xe8a,2},{0xf35,2}}, {{0x1be,2},{0x38b,2}}, {{0xcc6,2},{0xcce,3}}, {{0x12d4,4},{0x1d3c,3}}, + {{0x478f,3},{0x1189,3}}, {{0xf91,3},{0xe77,3}}, {{0x471f,6},{0x1059,3}}, {{0x1a27f,6},{0xed6,2}}, + {{0xe16,1},{0x168a,5}}, {{0x75b4,7},{0xe6b,4}}, {{0xf11,1},{0xb410,4}}, {{0xebe,4},{0x5c61,9}}, + {{0x7935,5},{0xe11,1}}, {{0x105f,3},{0x1062,2}}, {{0x4765,3},{0x4aee,3}}, {{0x2ca7,10},{0xe0b,4}}, + {{0x113c,3},{0x16c4c,4}}, {{0xfbf,5},{0x5,1}}, {{0x158e,2},{0x6,2}}, {{0x24653,4},{0xedd,1}}, + {{0x6c83,5},{0xe32,1}}, {{0x25633,6},{0xe22,2}}, {{0x1367,3},{0x8,1}}, {{0x1ebc,4},{0xe7f,4}}, + {{0x29cf,3},{0x10cb,2}}, {{0xcbd,1},{0xdc01,4}}, {{0x14a7,4},{0x2f2e,3}}, {{0x1ff7,3},{0xe30,3}}, + {{0x458b,3},{0x43ed,6}}, {{0xf03,2},{0x19e1,3}}, {{0xcc1,1},{0xd086,3}}, {{0x2777,6},{0x350c,7}}, + {{0xf0f,2},{0xfb0,2}}, {{0x1967,3},{0x1153,2}}, {{0x4aec,4},{0xeee,3}}, {{0x18804,6},{0x28e3,4}}, + {{0x12b8f,3},{0xe0d,2}}, {{0x1edf3,5},{0x2091,4}}, {{0xbb8b,2},{0x10d3,3}}, {{0x5d58,3},{0x1155,2}}, + {{0xc400,6},{0x28f8,5}}, {{0x1487,6},{0xcd43,5}}, {{0x1d72,5},{0xed6,2}}, {{0xc015,4},{0xec0,3}}, + {{0x5,1},{0x17c0,2}}, {{0x73b9,5},{0x58a3,5}}, {{0x19b9,1},{0xe25,2}}, {{0x1ac9f,6},{0xec6,3}}, + {{0x1be9f,6},{0xf91,3}}, {{0x592a,9},{0x3075,4}}, {{0xad19,8},{0x6cb4,3}}, {{0x1889,2},{0xcce,3}}, + {{0x1367,9},{0xe0c,2}}, {{0x19a7,7},{0x2c6a,5}}, {{0xabf9,5},{0xf1a,2}}, {{0x1677,3},{0xf0f,2}}, + {{0x25b73,5},{0xeb4,2}}, {{0x8c91,6},{0x1040,3}}, {{0x1677,3},{0x8102,5}}, {{0xb4b1,8},{0xed9,2}}, + {{0x114a9,6},{0x1be9,3}}, {{0xe97,3},{0x1969,1}}, {{0x2fb1e,4},{0x7416,1}}, {{0x10d38,6},{0x10d54,5}}, + {{0xe1f,3},{0x6eac,3}}, {{0x1be,2},{0x3ad,2}}, {{0x26233,6},{0xe25,2}}, {{0x2,1},{0x2e33,4}}, + {{0x25a33,5},{0xfc8,3}}, {{0x1d986,4},{0x2f79,5}}, {{0x71be,6},{0xe0a,1}}, {{0xd11b,5},{0x174b,3}}, + {{0x114d,5},{0xe89,2}}, {{0x27e0,3},{0x2c57,8}}, {{0x4153,8},{0x27dc,4}}, {{0x2ba5,1},{0x1c0f,5}}, + {{0xcc8,1},{0x3444,6}}, {{0xe08,1},{0x6,2}}, {{0xf77,4},{0x355b,3}}, {{0xd6c7,5},{0xd6cc,3}}, + {{0x19b9,1},{0xe99,1}}, {{0x2479b,4},{0xf50,3}}, {{0x1969,1},{0x39b3,5}}, {{0x10b9,3},{0xe6a,4}}, + {{0x1847,5},{0x14ff,5}}, {{0x194d2,5},{0xec6,3}}, {{0x24d5b,5},{0xedd,1}}, {{0x12c3,4},{0x2cab,3}}, + {{0xe67,2},{0xe7f,2}}, {{0x1a66,1},{0xf8e,3}}, {{0xff20,6},{0xd227,4}}, {{0x2de5d,3},{0x302,2}}, + {{0x1467,4},{0x4cc2,3}}, {{0x10188,6},{0x1258,5}}, {{0xf65,4},{0x286d,3}}, {{0x58cf,7},{0xeb8,2}}, + {{0x12c3,4},{0x8428,3}}, {{0x1e64,3},{0x1265,5}}, {{0x28c1,4},{0x23aef,4}}, {{0x12d4,3},{0xe99,1}}, + {{0x19b9,1},{0x1e1b,3}}, {{0x1e2f5,3},{0x74fb,3}}, {{0xefc9,7},{0xe95,2}}, {{0xbb4d,6},{0xbb5f,6}}, + {{0x12e5,3},{0x1278,4}}, {{0x10b8b,8},{0x1fc7,3}}, {{0x23b7,11},{0xe6b,4}}, {{0x183b,3},{0xee9,2}}, + {{0x2a47,3},{0x10b37,7}}, {{0x111a,3},{0xf02,2}}, {{0x15774,6},{0xcc6,2}}, {{0x2240,4},{0x11a6,2}}, + {{0xe1f,3},{0x63ea,4}}, {{0x127f,4},{0x1fbf,4}}, {{0xf77,4},{0x11a6,3}}, {{0x2648b,5},{0x35a3,3}}, + {{0x17e7,6},{0x4017,6}}, {{0xb499,9},{0x2f2e,3}}, {{0x1967,3},{0x2cbca,3}}, {{0xbb4,2},{0x2afd4,2}}, + {{0x2231,5},{0x14e23,5}}, {{0x9,1},{0xf1f,3}}, {{0xe08,1},{0x15fc,2}}, {{0x1019,4},{0xafeb,5}}, + {{0xcc1,1},{0xefa,6}}, {{0x5903,5},{0x1944,3}}, {{0x1ff7,3},{0xab9f,3}}, {{0x21,1},{0x1e2,2}}, + {{0xe65,2},{0xe6b,3}}, {{0x18f7,4},{0x7d41,5}}, {{0x3de1,5},{0x13e3,4}}, {{0x8295,5},{0x21a5,5}}, + {{0x1cdc,6},{0x6894,5}}, {{0xe08,1},{0xed9,2}}, {{0x1347,4},{0x1347,3}}, {{0x3a1b,6},{0x4ac5,6}}, + {{0x18444,5},{0xf24,2}}, {{0x4fab,10},{0xf7a,2}}, {{0x1a66,1},{0x1593,3}}, {{0x1c448,6},{0x9a8,1}}, + {{0x4519,4},{0xf1d,2}}, {{0xcd3,2},{0x1fc7,3}}, {{0x17c44,4},{0x1569,4}}, {{0x12998,6},{0xfa9,4}}, + {{0xc300,3},{0xe86,2}}, {{0x112fa,6},{0x7978,5}}, {{0x457b,8},{0x129a,6}}, {{0x8,1},{0xe22,2}}, + {{0x10e7,11},{0xe69,6}}, {{0x1bbf,4},{0xb19c,4}}, {{0x1777,5},{0xccd,1}}, {{0x1d7e,3},{0xeed,4}}, + {{0xf15,1},{0x1a71,3}}, {{0xcbd,1},{0x1c79,2}}, {{0x11,1},{0x205a1,1}}, {{0xcc1,1},{0x6ca7,3}}, + {{0xc16,1},{0xb74,1}}, {{0xecd2,6},{0x2872,4}}, {{0x307f,5},{0xed9,2}}, {{0x73ef,2},{0xab88,4}}, + {{0xdd44,6},{0x2e2c,3}}, {{0xba81,9},{0xcce,2}}, {{0xc05d,5},{0xe71,1}}, {{0x9c81,7},{0x9c88,5}}, + {{0x662a,8},{0x1663,3}}, {{0x1a66,1},{0xe65,2}}, {{0x6cde,4},{0xcbac,5}}, {{0x9a5,2},{0x5,2}}, + {{0x4ef5,4},{0x6008,3}}, {{0x2a47,3},{0x66c1,4}}, {{0x314d,8},{0xec6,3}}, {{0x1367,4},{0x4618,4}}, + {{0x4c10,8},{0xec3,3}}, {{0x1bec,5},{0x29f7,3}}, {{0x3559,4},{0x1b44d,5}}, {{0x1e57d,2},{0x19b9,1}}, + {{0x12e5,3},{0x48d2,2}}, {{0xc1ad,5},{0x318e,5}}, {{0x65f6,5},{0x115a,3}}, {{0xecb,2},{0xe8a,2}}, + {{0x19b7,3},{0x26768,2}}, {{0xe86,2},{0x4b12,4}}, {{0x202f0,7},{0xed9,2}}, {{0x77f0,5},{0x30f5,4}}, + {{0x2df3b,4},{0x5de,2}}, {{0x9351,5},{0x8531,3}}, {{0x1be9f,6},{0xcc9,2}}, {{0xcf21,5},{0xec3,3}}, + {{0x2e21d,4},{0xf,1}}, {{0x46af,3},{0xe0f,1}}, {{0xd5d5,6},{0x2dd7,4}}, {{0x236c,11},{0xeed,4}}, + {{0xbccd,8},{0xeed,4}}, {{0xcb8,1},{0x1ebf,3}}, {{0xeab,2},{0xcd3,2}}, {{0x3eb3,8},{0x3a30,6}}, + {{0xcbd,1},{0xf35,2}}, {{0x1959,3},{0x21a5,5}}, {{0xe83,3},{0xb428,3}}, {{0xa011,6},{0x3a30,6}}, + {{0x1ef6d,6},{0x92b7,3}}, {{0xe83,5},{0x3152,8}}, {{0xe1f,3},{0x10cb,2}}, {{0x1024e,5},{0xef5,2}}, + {{0x20f6,5},{0x1fe3,5}}, {{0xe,1},{0x545,2}}, {{0xf15,1},{0x2,2}}, {{0x1ccd,5},{0x4ff1,8}}, + {{0xf89,5},{0x2b7a,3}}, {{0x2c0d,6},{0x2c21,8}}, {{0x5,1},{0x3b49,6}}, {{0xe0f,1},{0xe63,2}}, + {{0x1967,3},{0xe7a,1}}, {{0xcc6,2},{0xed6,2}}, {{0x39d5,5},{0x3933,4}}, {{0xe37,4},{0xe59,2}}, + {{0x12e5,3},{0x17b62,4}}, {{0xde8e,4},{0xe6b,4}}, {{0x1967,3},{0x1849,3}}, {{0xe1b,3},{0xed6,2}}, + {{0x161a6,8},{0xcc9,2}}, {{0x16a7,3},{0x6,1}}, {{0x3a1b,5},{0xcc1,1}}, {{0x4765,3},{0x116af,8}}, + {{0x7518,4},{0x5724,3}}, {{0x3de3,3},{0x1fc7,3}}, {{0xe97,4},{0xb3c8,3}}, {{0xef7,3},{0x10e3,4}}, + {{0x3949,6},{0x9537,6}}, {{0x176,2},{0x7b,1}}, {{0xe16,1},{0x29bfe,2}}, {{0x10c5,4},{0x7974,4}}, + {{0x1c37,6},{0x1279,5}}, {{0x225e,6},{0xf91,3}}, {{0xc045,4},{0x431c,5}}, {{0x33ed,5},{0x18b4,3}}, + {{0x4781,3},{0x48da,2}}, {{0x46af,3},{0xf24,2}}, {{0x1677,3},{0x27dc,4}}, {{0x2240,4},{0xe5e,2}}, + {{0xf0c,1},{0x121a7,3}}, {{0xcd3,1},{0x10b9,2}}, {{0x4461,2},{0x17acb,2}}, {{0xcce,3},{0xec6,3}}, + {{0x28b2,5},{0x113f,2}}, {{0x1927,5},{0x1095,3}}, {{0xf12,3},{0x10b86,5}}, {{0x46bd,3},{0x9594,9}}, + {{0x73ed,4},{0x1fe3c,4}}, {{0x9d41,6},{0xcd1,5}}, {{0x16a7,3},{0xb,1}}, {{0x132bc,6},{0x2872,4}}, + {{0xb,1},{0xfb0,2}}, {{0xe32,1},{0x1252,3}}, {{0x2df3b,4},{0x622,2}}, {{0xc05d,4},{0x2,1}}, + {{0x7643,6},{0x31d1,7}}, {{0x1150a,5},{0xf86,2}}, {{0x300b,8},{0xe69,6}}, {{0xe33,1},{0xe21,1}}, + {{0x9a8,1},{0x1bfdd,5}}, {{0x83f1,7},{0x13e3,4}}, {{0x27e0,3},{0x168d9,7}}, {{0x12722,7},{0xe11,1}}, + {{0x7604,3},{0x59b4,3}}, {{0x1155,2},{0x110f9,4}}, {{0x3bcd,4},{0x277d,3}}, {{0x7899,12},{0x78a5,12}}, + {{0xe33,1},{0x10cb,4}}, {{0x9a8,1},{0x3a3e,6}}, {{0x4765,3},{0x1692,2}}, {{0xcd2,2},{0x2271,3}}, + {{0xef7,3},{0xe0f9,3}}, {{0x3cbb,9},{0x22fe,5}}, {{0x1def,2},{0xf59,2}}, {{0x4781,3},{0x4767,1}}, + {{0x1937,5},{0x1b0d9,4}}, {{0x6183,4},{0x6187,4}}, {{0x10a3,3},{0x27107,4}}, {{0x1eea7,6},{0x1064,3}}, + {{0xe89,2},{0xef5,2}}, {{0x111a,3},{0xf8e,3}}, {{0xe1f,3},{0x101f,2}}, {{0x4e3f,5},{0x2dd7,4}}, + {{0x1007,5},{0xe78,2}}, {{0x18b58,3},{0x6c88,5}}, {{0x1a66,1},{0xfdf,3}}, {{0x1537,6},{0x146d,10}}, + {{0x4952,6},{0xf7a,2}}, {{0x33c3,6},{0x121c,3}}, {{0x7414,3},{0x27d7,2}}, {{0x70ad,3},{0xcba,2}}, + {{0x12f6,7},{0x12fd,10}}, {{0xcc9,2},{0x8,1}}, {{0x209c,10},{0xe69,5}}, {{0x70ad,3},{0xd086,3}}, + {{0x8c,2},{0x9f,1}}, {{0xe08,1},{0x2845,4}}, {{0x2e7a4,6},{0x2b0e8,2}}, {{0x6f27,7},{0xf7a,2}}, + {{0x1780,3},{0xe11,1}}, {{0xf0f,2},{0xe69,5}}, {{0x46bd,6},{0xf86,2}}, {{0xe0a,1},{0xe09,1}}, + {{0x1ff7,3},{0x62f3,4}}, {{0x7935,7},{0x793c,5}}, {{0x15f30,7},{0x1de7,3}}, {{0x11515,5},{0x6,1}}, + {{0x125d,6},{0x6e5c,6}}, {{0x3a29,4},{0xe0f9,3}}, {{0xb349,7},{0x15d1,5}}, {{0x29c0,3},{0xf4f,1}}, + {{0x5f28,8},{0x2eb7,4}}, {{0x12f6,4},{0xffea,7}}, {{0x17e38,4},{0xcd3,2}}, {{0x41a7,4},{0x141a,2}}, + {{0x41a7,4},{0x30f6,3}}, {{0x1877,5},{0x162c,3}}, {{0x2b0a,11},{0x1d05,4}}, {{0xe4c9,6},{0x3080,4}}, + {{0x7636,5},{0x269f,6}}, {{0xef7,3},{0x1025,1}}, {{0x3537,2},{0xe11,1}}, {{0x29cf,3},{0xe92,3}}, + {{0xf77,4},{0x5536,4}}, {{0x65dc,7},{0x13e3,4}}, {{0x10a3,3},{0x15e6d,3}}, {{0xb3f1,3},{0x20543,2}}, + {{0x488b,4},{0x9,1}}, {{0x2df3b,4},{0x9f,1}}, {{0x2036b,2},{0x2036b,2}}, {{0x24cb5,3},{0xf194,3}}, + {{0x739f,5},{0x9,1}}, {{0x4781,3},{0xfcb,2}}, {{0x29cf,3},{0x9,1}}, {{0xf0a,3},{0x101d,3}}, + {{0x1c91,4},{0x1722,5}}, {{0x70ad,3},{0xf0f,2}}, {{0x18f9,2},{0x12a3,3}}, {{0xa10d,8},{0xe11,1}}, + {{0x15116,5},{0x42f9,5}}, {{0x2675d,2},{0x1969,1}}, {{0xe37,4},{0x11840,2}}, {{0xcd3,2},{0x1050,7}}, + {{0x127ea,5},{0xe5e,2}}, {{0x6,2},{0x331f,3}}, {{0xcbd,1},{0x41bd,6}}, {{0xe97,3},{0x2ba5,1}}, + {{0x148a6,5},{0x1773,4}}, {{0x2006,4},{0x2,1}}, {{0xe08,1},{0xed6,2}}, {{0xeed,2},{0x592e,5}}, + {{0x7b51,4},{0x1225a,4}}, {{0x5534,6},{0x1689,6}}, {{0xf89,3},{0x1059,3}}, {{0xf0c,1},{0x1252,3}}, + {{0x1c28,7},{0x8,1}}, {{0x3353,7},{0x2f32,4}}, {{0x2330,11},{0xfdf,4}}, {{0xf77,3},{0x72d3,3}}, + {{0x1109,5},{0xd4f3,6}}, {{0x19b9,1},{0x159e3,4}}, {{0x7b51,4},{0x1cb1,5}}, {{0x2939,4},{0xf03,4}}, + {{0x73b9,5},{0x1465d,5}}, {{0x150d0,6},{0x1bc5c,3}}, {{0x28d0,4},{0x16d8a,6}}, {{0xe32,1},{0xccd,1}}, + {{0xa701,7},{0xabc4,4}}, {{0x1ce7,4},{0x66c2,3}}, {{0x113f,2},{0x16e3,4}}, {{0xe99,1},{0xf16,2}}, + {{0xa3ad,8},{0x6ca7,3}}, {{0xaebd,5},{0x2370,3}}, {{0x2dd31,5},{0x6,1}}, {{0x1d0,2},{0xf,1}}, + {{0xc2,2},{0xc2,2}}, {{0x1fbb,5},{0x251a,5}}, {{0x20f6,6},{0xeb7,7}}, {{0x1a17,4},{0x4b11,4}}, + {{0xaaf,3},{0xab1,2}}, {{0x154e0,6},{0xec6,3}}, {{0xbba1,4},{0xf0f,2}}, {{0x2ba2,3},{0x2ba5,6}}, + {{0x2e21d,4},{0x21,1}}, {{0xe16,1},{0x1bf0,2}}, {{0xb87d,6},{0x1722,5}}, {{0x1b04,3},{0xcd3,1}}, + {{0x28fd,6},{0x1b6d,4}}, {{0x1a5b,3},{0x1137a,4}}, {{0x7414,3},{0xcc6,2}}, {{0x753f,5},{0xf63,2}}, + {{0x16bf6,5},{0xccaa,4}}, {{0xf15,1},{0xeb5,2}}, {{0x1e8f,8},{0x3251,6}}, {{0xcd3,2},{0x160b,4}}, + {{0x72d1,2},{0xc95a,5}}, {{0xbb4,2},{0xd7c,2}}, {{0x33d1,4},{0x21def,4}}, {{0x161ba,6},{0xc088,4}}, + {{0xe21,1},{0x113f,2}}, {{0x5131,10},{0xec6,3}}, {{0x1777,12},{0xe11,1}}, {{0x536d,9},{0x4489,4}}, + {{0x25083,5},{0xb,1}}, {{0x1567,3},{0x2352,3}}, {{0xef7,4},{0x97ed,6}}, {{0x10a6,2},{0x10a8,5}}, + {{0x11d15,6},{0xfdd,4}}, {{0x2015,3},{0x4d72,3}}, {{0xccd,1},{0x1d7d,3}}, {{0x8c93,4},{0xe11,1}}, + {{0xedd,1},{0x584a,2}}, {{0x1977,4},{0x1064,3}}, {{0x833d,5},{0x2f33,5}}, {{0x12fd,3},{0xfb8,3}}, + {{0x1858e,6},{0x27dc,4}}, {{0x2c15,3},{0x9a49,4}}, {{0xcce,2},{0x14a2,5}}, {{0xcc7,1},{0x809a,3}}, + {{0x70ad,3},{0xe86,2}}, {{0xe83,3},{0x1e373,4}}, {{0xcbd,1},{0x527c,7}}, {{0x16a7,3},{0x1a71,4}}, + {{0xc15b,2},{0x26617,4}}, {{0x4597,5},{0x53cd,4}}, {{0x74f1,4},{0x74f5,2}}, {{0x1f38,1},{0x35a2,6}}, + {{0x1dd01,5},{0xf20,2}}, {{0xe99,1},{0xa,2}}, {{0x2de7b,3},{0x1e2,2}}, {{0x1c37,6},{0x4d85,4}}, + {{0xcc7,1},{0x6d5a,5}}, {{0xe97,3},{0x4e3b,4}}, {{0x1959,3},{0xe62,3}}, {{0xcc8,1},{0x4789,5}}, + {{0xf32,2},{0x3,1}}, {{0x3559,5},{0x5eaf,4}}, {{0x225e,6},{0x4b11,4}}, {{0x9a8,1},{0xe1fa,4}}, + {{0xb3a9,4},{0x754e,2}}, {{0x122d,2},{0xebc,2}}, {{0x4765,3},{0x48d3,2}}, {{0x2777,6},{0x137fe,4}}, + {{0x48d3,2},{0x2a5f3,3}}, {{0x188,2},{0x8d,1}}, {{0xf0d,2},{0xcd3,2}}, {{0xfa0e,5},{0x3594,5}}, + {{0x1cd3,3},{0x155e,3}}, {{0xf18,2},{0xf91,3}}, {{0x1969,1},{0x188c,3}}, {{0x1057,2},{0x1059,3}}, + {{0x6950,9},{0xec5,4}}, {{0xcdc1,8},{0xfb8,3}}, {{0x3a1b,5},{0x2477,3}}, {{0xe6b,3},{0xf62,3}}, + {{0xb55b,4},{0xfa5,3}}, {{0x7414,3},{0x1bef,2}}, {{0x7337,5},{0x1af2,5}}, {{0x4773,4},{0xed9,2}}, + {{0x6cde,4},{0x8,1}}, {{0x1a1e6,5},{0xf91,3}}, {{0x1677,3},{0x17bff,2}}, {{0x80a9,8},{0xe1c,3}}, + {{0x9a8,1},{0xe0a,1}}, {{0x181b,3},{0xed6,2}}, {{0xb15d,7},{0x1523,4}}, {{0x1ef6d,5},{0x8428,3}}, + {{0xe97,3},{0xfb0,2}}, {{0x77e3,9},{0x3555,4}}, {{0x2b9d,5},{0x2ba2,9}}, {{0x2e814,6},{0x18ee2,2}}, + {{0x73ac,5},{0x21fe0,3}}, {{0x1153,2},{0x2075,3}}, {{0x2e235,4},{0x314,2}}, {{0x1a47,4},{0xf1d,2}}, + {{0x176,2},{0x8d,1}}, {{0x19b9,1},{0x239c,7}}, {{0x11e49,5},{0x1692,5}}, {{0x1be,2},{0xf,1}}, + {{0x44ef,5},{0xe11,2}}, {{0x1e355,6},{0xed6,2}}, {{0x4597,5},{0x89ea,7}}, {{0x12d4,3},{0xe0f,1}}, + {{0x4,1},{0x3976,3}}, {{0xfe3,4},{0x15f48,6}}, {{0xb205,7},{0x1722,5}}, {{0x7527,7},{0x5ee3,4}}, + {{0x9bd3,4},{0xf91,3}}, {{0xcf21,5},{0x1004,3}}, {{0x3,1},{0x9a6,1}}, {{0x16642,6},{0xed6,2}}, + {{0xf0a,3},{0x775c,4}}, {{0x43be,4},{0xe78,2}}, {{0xe97,3},{0x1a66,1}}, {{0x1bd91,6},{0xcc9,2}}, + {{0x5117,9},{0x17ec,4}}, {{0x1f25,5},{0x1131,3}}, {{0xfcb,2},{0xe11,2}}, {{0x7b51,4},{0x2eec,4}}, + {{0x478f,3},{0x1085,3}}, {{0x1156,3},{0x127c,3}}, {{0xc281,4},{0x2e7c0,2}}, {{0x4853,3},{0x1fbe,3}}, + {{0x27ef,4},{0x102d6,6}}, {{0x1567,3},{0x21c2c,5}}, {{0x152,2},{0xe,1}}, {{0x3203,5},{0xf7a,2}}, + {{0x9b9d,6},{0x153a,3}}, {{0xed1,4},{0xec5,4}}, {{0xf0a,3},{0x2e32,3}}, {{0xf0a,3},{0x12b8f,7}}, + {{0x9489,5},{0xec6,3}}, {{0x2df3b,4},{0x677,2}}, {{0xe65,2},{0x1da7,7}}, {{0x1153,2},{0x167f,7}}, + {{0x29c0,3},{0x2e28,3}}, {{0x46af,3},{0xede,1}}, {{0x12e5,5},{0x2e6c,9}}, {{0xc975,6},{0x23d2,3}}, + {{0x4781,3},{0x445e,2}}, {{0x111a,3},{0x566f,4}}, {{0x36b7,10},{0xec6,3}}, {{0xe09,1},{0x14a2,5}}, + {{0xf9d,3},{0xccb,2}}, {{0x1a1d4,5},{0xcce,2}}, {{0x7197,8},{0x431c,5}}, {{0x1be,2},{0x7b,1}}, + {{0xb379,3},{0x10cb,2}}, {{0x1467,5},{0x1a99,5}}, {{0x1a07,3},{0x445c,2}}, {{0x3a6f,8},{0xe09,1}}, + {{0x277e,2},{0xcc3,2}}, {{0xe6f,3},{0xe32,1}}, {{0x8625,8},{0xcc9,2}}, {{0xb54d,9},{0xe67,2}}, + {{0x29cf,3},{0x74fc,2}}, {{0x18ecc,2},{0x18ee0,2}}, {{0xe71,1},{0x185d,2}}, {{0x28ca0,4},{0x74f9,2}}, + {{0xedd,1},{0x2c15,3}}, {{0x18afc,6},{0xe7f,2}}, {{0x114d,6},{0x149f,3}}, {{0x5d7b,6},{0xcd3,2}}, + {{0x46bf,1},{0x1f03f,3}}, {{0x2b46,4},{0xcc7,1}}, {{0x1f875,1},{0xe99,1}}, {{0xcd3,1},{0xf1d,1}}, + {{0xe1f,3},{0x445c,2}}, {{0x7929,7},{0x7930,5}}, {{0x1849,3},{0x6,1}}, {{0x1d26c,5},{0x113f,2}}, + {{0x1747,10},{0x18b2,5}}, {{0xbfcd,5},{0x44b3,3}}, {{0xb3f1,3},{0x2dc6,4}}, {{0xe2e5,7},{0x149f,3}}, + {{0x11f5c,4},{0x4b07,5}}, {{0x27ef,7},{0xe67,2}}, {{0x140,2},{0x69,1}}, {{0x1fe8,6},{0x59b2,7}}, + {{0x46af,3},{0x4fa8,3}}, {{0xf11,1},{0x15fb,3}}, {{0x77bc,5},{0xe86,2}}, {{0xf7d2,8},{0x6ba3,3}}, + {{0x4765,3},{0x55ed,5}}, {{0x1367,6},{0xc382,5}}, {{0x127f,3},{0x1373,2}}, {{0x4599,4},{0x31ef,5}}, + {{0x16a9,4},{0xec6,3}}, {{0x1e71,6},{0x1e77,9}}, {{0x760f,6},{0x1510,7}}, {{0x59c6,5},{0xcc8,1}}, + {{0x34e9,7},{0x2663,6}}, {{0x1cfa5,5},{0x4b05,4}}, {{0xd6c7,5},{0x3537,2}}, {{0xea96,5},{0x5,2}}, + {{0x1fe67,7},{0xf0d,2}}, {{0x10c5,4},{0x3650,5}}, {{0x479d,5},{0x9f32,6}}, {{0x7414,3},{0x162c,3}}, + {{0x2a38,10},{0x1382,5}}, {{0xf89,3},{0x1085,3}}, {{0x15a58,6},{0x2917,4}}, {{0x3bbf,4},{0x1099,8}}, + {{0x478f,3},{0xe2b,2}}, {{0xe6f,3},{0xeee,3}}, {{0x27ef,7},{0x6411,4}}, {{0x1f285,6},{0xcd3,1}}, + {{0xda58,6},{0xe71,1}}, {{0xe3d,4},{0x2e84a,2}}, {{0x2de93,4},{0xf8,2}}, {{0x112b,5},{0xcb8,1}}, + {{0x1507,7},{0x150e,9}}, {{0x79f5,5},{0x4,1}}, {{0x111a,7},{0xe67,2}}, {{0xbba1,6},{0x30f7,2}}, + {{0x18284,4},{0x4415,3}}, {{0x1f4,2},{0x21,1}}, {{0x1967,3},{0x14c61,4}}, {{0x2f47,5},{0x2f4c,4}}, + {{0x10a3,4},{0xe11,1}}, {{0x5c29,7},{0x3,1}}, {{0x4781,3},{0x3072,5}}, {{0x11d9,3},{0x17ec,4}}, + {{0x1dae,10},{0xe69,5}}, {{0xc954,5},{0xe0b,4}}, {{0xf596,8},{0x10d3,3}}, {{0xa04d,5},{0x13375,5}}, + {{0xe6f,3},{0x3a48,5}}, {{0x48ea,6},{0xf93,5}}, {{0x64cb,8},{0x13e3,4}}, {{0x19b7,3},{0x3642,2}}, + {{0x1046,3},{0xf86,3}}, {{0x97ad,8},{0xcc9,2}}, {{0x1cfd,3},{0x1252,3}}, {{0x7d0d,6},{0x1569,4}}, + {{0xfa5,2},{0x6,2}}, {{0x2b4f2,2},{0x9b5,2}}, {{0x4767,1},{0x1943e,4}}, {{0x1e11e,5},{0xeee,3}}, + {{0xe37,4},{0x2b0b0,2}}, {{0xe77,2},{0x1004,3}}, {{0x15f7,4},{0x2148,8}}, {{0x1debd,2},{0xe16,1}}, + {{0xf77,4},{0x237d,2}}, {{0x5,1},{0x1bef,2}}, {{0x2e217,4},{0x21,1}}, {{0xaec9,6},{0xf91,3}}, + {{0x1196e,5},{0x127c,3}}, {{0xe78,1},{0xe78,1}}, {{0x662a,8},{0x9389,4}}, {{0x7416,1},{0xb,1}}, + {{0x1d0,2},{0x8d,1}}, {{0xf15,1},{0x1e0ac,4}}, {{0xe97,3},{0x305a,5}}, {{0x113c,4},{0xf02,2}}, + {{0x16d7,6},{0xe8c,6}}, {{0x1a66,1},{0xefcc,4}}, {{0xf02,2},{0xe13,3}}, {{0xe5b,3},{0x1c444,4}}, + {{0x1949,3},{0x50ce,5}}, {{0x2948,3},{0x1118a,2}}, {{0xaf4,1},{0x2e27d,1}}, {{0x15b02,7},{0x1ac7,3}}, + {{0x29cf,3},{0xe7a,1}}, {{0x1f1e3,5},{0xf7a,2}}, {{0x1154c,4},{0xb,1}}, {{0x1fc7,3},{0xcd3,1}}, + {{0x4765,3},{0x1057,1}}, {{0x2e280,3},{0xcf6,1}}, {{0x1c85,3},{0x1059,3}}, {{0x1081,5},{0xc7ac,6}}, + {{0x46af,3},{0xec6,3}}, {{0x4767,1},{0xe65,2}}, {{0x13406,5},{0x113f,2}}, {{0xcc3,2},{0xe1b,4}}, + {{0x5,1},{0xe22,5}}, {{0x50fd,5},{0x8eee,4}}, {{0x5,2},{0x14f9,3}}, {{0x7416,1},{0xe16,1}}, + {{0x9a6,1},{0x2261,3}}, {{0x1796b,4},{0x4,1}}, {{0x780a,5},{0x850a,7}}, {{0x1c91,4},{0x1889,2}}, + {{0x1357,4},{0x1357,4}}, {{0x1c91,4},{0x21345,4}}, {{0x1daa6,5},{0xcc8,1}}, {{0x6cc4,4},{0x1d12c,5}}, + {{0xe09,1},{0x4aef,3}}, {{0x3089,5},{0x5026,4}}, {{0x1876e,4},{0x442d,1}}, {{0x145b,2},{0xe0d,2}}, + {{0x1312c,6},{0xec5,4}}, {{0x4979,6},{0x2f26,5}}, {{0xcbd,4},{0xec6,3}}, {{0x29a2,5},{0x1153,2}}, + {{0xe61,2},{0xed9,2}}, {{0x9b99,3},{0xed6,2}}, {{0x1847,9},{0xec6,3}}, {{0x19b7,3},{0xf0d,2}}, + {{0x9add,5},{0xe11,1}}, {{0xf16,2},{0x1214,5}}, {{0x12c3,4},{0x29f3,3}}, {{0x11b5,2},{0x8,1}}, + {{0x16f7,6},{0xedf6,5}}, {{0x1967,3},{0xf24,2}}, {{0x302,2},{0x9f,1}}, {{0x2f206,4},{0x5,1}}, + {{0xf89,3},{0x22a3,2}}, {{0xf60,2},{0x14cec,5}}, {{0xf4f,1},{0x17ac9,2}}, {{0x1c892,6},{0xcc9,2}}, + {{0x450b,4},{0x70a6,3}}, {{0x25d83,6},{0xe86,2}}, {{0x293f4,6},{0xe11,1}}, {{0x1469,3},{0x1692,5}}, + {{0xb3f1,3},{0x7860,4}}, {{0x11866,6},{0x9cab,5}}, {{0x123e,3},{0x8,1}}, {{0x1bec,5},{0x8096,6}}, + {{0xfe3,4},{0xe7f,2}}, {{0x29c0,3},{0x6140,3}}, {{0xe21,1},{0xcba,2}}, {{0xe71,1},{0xe0a3,6}}, + {{0x2132,9},{0xeed,4}}, {{0x22b8,4},{0x101f,2}}, {{0x2b55,5},{0x1523,4}}, {{0x1e2ed,2},{0x7416,1}}, + {{0x29dce,6},{0x1057,1}}, {{0x1e57e,2},{0x442d,1}}, {{0x12a1,4},{0x1150,2}}, {{0x2e3d,9},{0xe77,3}}, + {{0x11234,5},{0x4aee,3}}, {{0x2df3b,4},{0x5ef,2}}, {{0x1057,2},{0x4a01,3}}, {{0x2777,10},{0x1523,4}}, + {{0x12a3,3},{0x2e2c,3}}, {{0x2e223,4},{0x21,1}}, {{0xcce,3},{0x5669,3}}, {{0x14fcc,7},{0xcc9,2}}, + {{0x478f,4},{0x16ad,3}}, {{0x3273,8},{0x18b1,6}}, {{0x4861,4},{0x1235,6}}, {{0x18c50,5},{0xeab,2}}, + {{0x5e58,6},{0xcc1,1}}, {{0xe16,1},{0xccd,1}}, {{0x2df3b,4},{0x600,2}}, {{0x152,2},{0x57,1}}, + {{0x5,1},{0xe22,3}}, {{0x48c6,3},{0x48c9,7}}, {{0x9a6,1},{0xcd3,2}}, {{0x5edd,3},{0x3075,3}}, + {{0xe32,1},{0x10cb,2}}, {{0xb3f1,3},{0x2c3c4,3}}, {{0x122e,2},{0xf84,3}}, {{0x7115,4},{0xdc6f,4}}, + {{0xcc8,1},{0xf35,3}}, {{0x956d,6},{0x56a7,6}}, {{0x1d3a,3},{0x59b4,3}}, {{0x27e0,3},{0x4574,3}}, + {{0x75b4,4},{0xcd3,1}}, {{0x41ad,3},{0xfb0,2}}, {{0xf0c,1},{0x9a4,3}}, {{0x12e7,3},{0x1d4c,8}}, + {{0xd48,4},{0xd1c,2}}, {{0x142d4,6},{0x3075,3}}, {{0x1290,4},{0x189b,12}}, {{0x105f,3},{0xefa,2}}, + {{0x60e2,7},{0x6411,4}}, {{0x753f,6},{0x1288,4}}, {{0x780c,2},{0x9,1}}, {{0xe08,1},{0x8129,4}}, + {{0x260d9,2},{0x1e2ec,2}}, {{0x417d,5},{0xd7ec,4}}, {{0x1a63,3},{0xec6,3}}, {{0x70fb,8},{0x1054,3}}, + {{0x112b,4},{0x3537,2}}, {{0x113c,3},{0xfb0,2}}, {{0x16b24,6},{0xec3,3}}, {{0x10361,5},{0x2781,5}}, + {{0x2b0a8,4},{0x2b4f0,2}}, {{0x450b,4},{0xc342,3}}, {{0x30a4e,1},{0x30a4e,1}}, {{0x9525,6},{0xeaa,2}}, + {{0xe1f,3},{0x29dd1,2}}, {{0x8da5,5},{0xebc,2}}, {{0xed1,4},{0x9fcd,8}}, {{0x2d25,8},{0xe69,6}}, + {{0x1ebc,5},{0x29d4,3}}, {{0x11d0a,5},{0xe78,1}}, {{0xedd,1},{0xfb0,3}}, {{0x17ada,5},{0x268c,3}}, + {{0x11b5,2},{0xcd3,1}}, {{0x6ee6,5},{0x14ab,4}}, {{0x2966,4},{0x309c,4}}, {{0xc463,6},{0x566f,4}}, + {{0x2de5d,3},{0x666,2}}, {{0x1766a,2},{0xe16,1}}, {{0x19844,6},{0xed6,2}}, {{0x3559,4},{0x1692,5}}, + {{0xcc1,1},{0x10b7,2}}, {{0x3203,5},{0xeca,3}}, {{0x983d,8},{0x1b41,4}}, {{0x7414,3},{0xf4f,1}}, + {{0x30d27,3},{0x20561,1}}, {{0x30f4,4},{0x1689,6}}, {{0x41a7,10},{0x6cb4,3}}, {{0xf0a,3},{0xeb4,2}}, + {{0xe65,2},{0x3075,4}}, {{0xe2b,2},{0x1b41,4}}, {{0x10e2a,5},{0xf32,2}}, {{0x77f2,2},{0xcbd,1}}, + {{0x1118a,2},{0x48da,3}}, {{0x314,2},{0x69,1}}, {{0x38e7,5},{0x175c,3}}, {{0x13dfc,5},{0x50de,5}}, + {{0x14fcc,7},{0xec6,3}}, {{0x478f,3},{0x2a4d3,4}}, {{0x11ec4,3},{0x116ea,4}}, {{0xc463,6},{0xc469,5}}, + {{0x2de81,4},{0x21,1}}, {{0x9a8,1},{0x6008,6}}, {{0x1dcef,5},{0xe86,2}}, {{0xc040,2},{0xe32,1}}, + {{0x479d,4},{0xcc1,1}}, {{0x29cf,3},{0x1118a,2}}, {{0x11c,2},{0x69,1}}, {{0x1823c,5},{0x1f20c,4}}, + {{0x1be,2},{0x8d,1}}, {{0x12d4,3},{0x74f6,2}}, {{0x1467,6},{0xe11,1}}, {{0x1607,5},{0x10e2,3}}, + {{0x22b8,4},{0xf70,2}}, {{0x12e5,3},{0x2f94,3}}, {{0x11b3,5},{0x14c61,4}}, {{0xead8,5},{0x18b4,3}}, + {{0xe71,1},{0xe5e,2}}, {{0x2024,8},{0x1790,7}}, {{0xbff1,6},{0xe0d,2}}, {{0x1062,2},{0xfb0,2}}, + {{0xbfcf,5},{0xbfd4,5}}, {{0xbae1,7},{0xcc3d,3}}, {{0x111a,3},{0x2252,3}}, {{0x130be,6},{0x3075,3}}, + {{0xef7,3},{0x1d75,3}}, {{0x13a7,7},{0xc67a,4}}, {{0x70ad,3},{0xf0c,1}}, {{0x3afb,9},{0x13e3,4}}, + {{0x1c463,5},{0x1b41,4}}, {{0x3a29,4},{0xb3e8,6}}, {{0x2ba5,1},{0x1e869,2}}, {{0x2e27d,1},{0x30a1d,2}}, + {{0x46bf,1},{0x35a2,6}}, {{0x4,1},{0xe71,1}}, {{0xede,1},{0xe22,2}}, {{0x1977,3},{0x18073,7}}, + {{0x1977,4},{0xe87,2}}, {{0x478f,7},{0xa,2}}, {{0x19b9,1},{0xcb6,3}}, {{0x133fc,5},{0x126a,4}}, + {{0x95e5,6},{0xe67,2}}, {{0x478f,3},{0xfe6,2}}, {{0x3,1},{0xcc1,1}}, {{0x2e217,4},{0xe,1}}, + {{0xe86,2},{0xeab,2}}, {{0xe2f,1},{0x5538,2}}, {{0x724d,9},{0x1059,3}}, {{0xe32,1},{0x31f8,3}}, + {{0xf65,4},{0x28e1,3}}, {{0xb3f1,3},{0xe77,2}}, {{0x1303,3},{0xfb0,2}}, {{0x729b,9},{0xe6b,4}}, + {{0x4765,3},{0x1056b,4}}, {{0x1e9e,5},{0x6bed,6}}, {{0xf0a,3},{0xd485,6}}, {{0x1c55,7},{0x149f,6}}, + {{0x3bdb,6},{0x17cc,4}}, {{0x654d,9},{0x128c,4}}, {{0x1577,4},{0xb,1}}, {{0xcb8,1},{0x1089,3}}, + {{0x18054,5},{0x10ed,3}}, {{0x2df3b,4},{0x611,2}}, {{0x2e21d,4},{0xd,1}}, {{0x2a83,4},{0xec6,3}}, + {{0xdd0a,3},{0xa,2}}, {{0xf59,3},{0x3075,3}}, {{0x520e,5},{0xfdd,6}}, {{0x75db,4},{0xf59,2}}, + {{0x4853,3},{0x29f3,3}}, {{0x354b,4},{0x1067,9}}, {{0x29c0,3},{0xe08,1}}, {{0xbcd9,9},{0x1be9,3}}, + {{0x9351,5},{0x2,1}}, {{0x10a6,2},{0xf7a,2}}, {{0x3a45,8},{0xcd1,5}}, {{0xbba1,4},{0xe0b,2}}, + {{0x4a70,8},{0x2ee9,3}}, {{0xb903,3},{0x2514,4}}, {{0x1e4cf,6},{0xed6,2}}, {{0xb595,5},{0xe11,1}}, + {{0xe71,1},{0xf02,2}}, {{0x38e7,7},{0x38ee,7}}, {{0xe11,1},{0x14aa,5}}, {{0x1a07,3},{0x46bf,1}}, + {{0x1019,6},{0x1004,3}}, {{0x1290,4},{0x1b8a,8}}, {{0x7385,6},{0x5342,3}}, {{0x4,2},{0x1a71,3}}, + {{0x9f69,7},{0x1380,5}}, {{0xc08d,6},{0x1689,6}}, {{0xe2f,1},{0x5e5f,6}}, {{0x7a49,5},{0x1de7,3}}, + {{0x156d,3},{0x413e,4}}, {{0x105f,3},{0xcd3,1}}, {{0x70ad,3},{0x1030e,5}}, {{0x1ff7,3},{0x4b55,5}}, + {{0x450b,4},{0xcee3,6}}, {{0x18772,2},{0x48d8,2}}, {{0xe37,4},{0x2ad7d,2}}, {{0x1a07,3},{0x2f1ca,2}}, + {{0x496c,6},{0xeb7,7}}, {{0xed1,3},{0x6ca7,3}}, {{0x19b7,3},{0x2b83,2}}, {{0xcc8,1},{0x3e0e,3}}, + {{0xf3d3,7},{0x128c,4}}, {{0x10c5,5},{0x6,2}}, {{0xaaf,2},{0x317b8,2}}, {{0x4f29,6},{0x6792,4}}, + {{0x17e1a,4},{0x453e,3}}, {{0xebe,4},{0x1899,6}}, {{0x4767,1},{0xe0f,1}}, {{0x254b3,4},{0x1a66,1}}, + {{0x750b,4},{0xed9,2}}, {{0xe030,6},{0xf7a,2}}, {{0x18022,4},{0x1ea3,3}}, {{0x7a37,2},{0x2,1}}, + {{0x16bc,6},{0xeed,4}}, {{0xf57,2},{0x17212,6}}, {{0x20549,3},{0x2b4d7,3}}, {{0x4767,1},{0xcbf,2}}, + {{0x1153,2},{0x1e84,3}}, {{0x1156,3},{0x1159,5}}, {{0xccc,2},{0xe11,1}}, {{0x1f9d,5},{0x1fa2,6}}, + {{0x125d,6},{0x7f8f,6}}, {{0x10c04,5},{0x4a35,3}}, {{0x12059,6},{0x1de7,3}}, {{0xe99,1},{0xd086,3}}, + {{0x2ba5,1},{0x4516,3}}, {{0xc6f7,5},{0x1692,2}}, {{0xdb34,5},{0xeab,2}}, {{0x418b,9},{0xe69,5}}, + {{0x1969,1},{0x113f,2}}, {{0x1531e,5},{0xed9,2}}, {{0x264bb,5},{0xeea,3}}, {{0x1e2,2},{0xf,1}}, + {{0x1a07,3},{0x23f28,2}}, {{0x29c0,3},{0x28fea,4}}, {{0xfeac,3},{0xcd3,1}}, {{0x1747,5},{0x189f,3}}, + {{0x9a6,1},{0xcbd,1}}, {{0x2b50f,2},{0x2afc6,2}}, {{0x204b1,3},{0x204b4,5}}, {{0xfe3,4},{0x104a5,6}}, + {{0x1807,10},{0x10f2,5}}, {{0x3a7d,6},{0x24f7,4}}, {{0xe11,1},{0x27895,2}}, {{0x9add,5},{0x1bf0,2}}, + {{0x17d7,8},{0x17df,8}}, {{0xcc7,1},{0xe86,2}}, {{0x1947,5},{0x149c,3}}, {{0x155e,3},{0xe0a,1}}, + {{0x7156,4},{0x8,3}}, {{0x8415,5},{0xe75,2}}, {{0xe5e,2},{0xf35,2}}, {{0x65b5,5},{0x3080,4}}, + {{0xf953,6},{0xfb8,3}}, {{0xd04a,8},{0xcc9,2}}, {{0x113c,3},{0x11a6,2}}, {{0x17468,4},{0x7a0f,4}}, + {{0x24653,4},{0x17661,2}}, {{0xedd,1},{0x1a66,1}}, {{0x23c4b,3},{0xcd3,2}}, {{0xf7b,5},{0xccaa,4}}, + {{0x34dd,4},{0xf23,3}}, {{0x176,2},{0xf,1}}, {{0xd83d,6},{0x10e2,5}}, {{0xef24,8},{0xec6,3}}, + {{0x2858,4},{0xd2e2,6}}, {{0xcc7,1},{0xeb5,2}}, {{0xb8c5,4},{0xf91,3}}, {{0xcc8,1},{0x70a6,3}}, + {{0x5242,5},{0x5261,4}}, {{0xf15,1},{0xe67,2}}, {{0x5bc1,7},{0xe69,6}}, {{0x16a7,5},{0xcc1,1}}, + {{0xe22,3},{0x8,1}}, {{0x22e5,4},{0x104a5,6}}, {{0xb3f1,3},{0x1062,2}}, {{0x311af,4},{0x311af,2}}, + {{0x110fb,3},{0xe8a,2}}, {{0x1997,4},{0xe64,3}}, {{0x4f29,6},{0x1a9a,4}}, {{0x6fb6,9},{0x12bf,4}}, + {{0x8835,5},{0x883a,7}}, {{0x1081,11},{0xec6,3}}, {{0x1ebc,5},{0x4aee,3}}, {{0x9b25,5},{0x180e,3}}, + {{0x10238,6},{0xec6,3}}, {{0x113f,2},{0xf72,5}}, {{0xa914,4},{0x318f,4}}, {{0x442b,3},{0x8,1}}, + {{0xcc8,1},{0x22a3,2}}, {{0x624e,6},{0x2468,3}}, {{0x11326,8},{0xe11,1}}, {{0x12f6,4},{0xe09,1}}, + {{0x1969,1},{0xf79,3}}, {{0x185de,5},{0x12af1,5}}, {{0x1081,5},{0x8b9c,5}}, {{0xe1f,3},{0xf59,2}}, + {{0x4765,3},{0x22a3,3}}, {{0x30817,4},{0x78a3,2}}, {{0x2a47,3},{0x5,2}}, {{0x77c9,6},{0x3075,3}}, + {{0x1949,3},{0x15df6,4}}, {{0x18f7,4},{0x6326,5}}, {{0x4952,6},{0x6,1}}, {{0xcc1,1},{0x1132,2}}, + {{0x8666,2},{0xf86,3}}, {{0xfa5,2},{0x1150,2}}, {{0x9b85,5},{0xcc9,2}}, {{0x1be,2},{0x3cf,2}}, + {{0xed35,6},{0xfa6,3}}, {{0x680b,9},{0xeee,3}}, {{0x1969,1},{0x2e29,3}}, {{0x29d5e,6},{0xe11,1}}, + {{0xe32,1},{0x569a,3}}, {{0xe89,2},{0xcc8,2}}, {{0xa3ad,8},{0x6cb4,3}}, {{0x478f,3},{0xb428,3}}, + {{0x1977,5},{0x333c,5}}, {{0xc560,6},{0x6326,5}}, {{0xf15,1},{0x4618,3}}, {{0xed1,3},{0x15af,3}}, + {{0x306d,8},{0x3075,4}}, {{0x12e5,4},{0x15ffc,6}}, {{0x11a6,2},{0x78cd,3}}, {{0xe97,3},{0xe89,3}}, + {{0xe99,1},{0xe0a,1}}, {{0xe88,3},{0x303c,7}}, {{0x1ebf,3},{0xe0a,1}}, {{0x5242,5},{0x331f,4}}, + {{0x1692,2},{0x8,1}}, {{0x3b6f,6},{0x3695,4}}, {{0xe1f,3},{0x1a738,5}}, {{0x2d51b,4},{0x1eea2,2}}, + {{0x2e223,4},{0xd,1}}, {{0x16a7,3},{0xf38c,3}}, {{0xf53,4},{0xf60,5}}, {{0x478f,3},{0xf11,1}}, + {{0x11b3,11},{0xe69,6}}, {{0x1967,3},{0xe25,2}}, {{0x15399,3},{0x2872,4}}, {{0x103ae,4},{0x9e34,3}}, + {{0x2de75,3},{0xf8,2}}, {{0x1153,2},{0xe7f,2}}, {{0x1268c,5},{0xbf38,5}}, {{0x5f90,6},{0x5f96,3}}, + {{0xe80,2},{0x1ebe,3}}, {{0x2777,8},{0x4131,6}}, {{0x8e1d,10},{0xed9,2}}, {{0xf0c,1},{0x5538,2}}, + {{0x479d,7},{0x4,1}}, {{0xe0f,2},{0xcc1,1}}, {{0x48f7,7},{0xd15f,3}}, {{0x12064,5},{0xf91,3}}, + {{0x9a8,1},{0xc5e0,4}}, {{0x520e,7},{0x184d,6}}, {{0x7337,4},{0x1c14,5}}, {{0x167fa,7},{0xec6,3}}, + {{0x12d4,3},{0x19b9,1}}, {{0x1567,6},{0xdd81,5}}, {{0xe74,3},{0xe77,2}}, {{0xe2f,1},{0x1969,1}}, + {{0xc1ad,5},{0xe11,1}}, {{0x311a9,2},{0x2b4f2,2}}, {{0x33ed,5},{0xe6b,4}}, {{0xe78,1},{0xe67,2}}, + {{0x29cf,3},{0x18de5,5}}, {{0x7636,5},{0x4b96,5}}, {{0x6,1},{0xed6,2}}, {{0x7eb1,7},{0x1392,3}}, + {{0x7414,3},{0x1a98,6}}, {{0x4853,4},{0xe86,2}}, {{0x174b,2},{0xeb5,2}}, {{0x5471,9},{0xec6,3}}, + {{0x140,2},{0x8d,1}}, {{0xeab,2},{0x1a578,4}}, {{0x14932,6},{0xf91,3}}, {{0xf9b,5},{0x1bef,2}}, + {{0x11d0a,5},{0xe11,2}}, {{0x5e94,5},{0xec6,3}}, {{0x112b,5},{0x8ab6,7}}, {{0x3739,2},{0x1372,4}}, + {{0x1e65,3},{0xe25,2}}, {{0xbd18,6},{0xe13,3}}, {{0x1f984,4},{0xd4de,5}}, {{0x7344,7},{0xe0a,1}}, + {{0x20510,2},{0x78ed,2}}, {{0x1969,1},{0xa,2}}, {{0x442b,3},{0x22a3,2}}, {{0xdd44,6},{0x2476,4}}, + {{0x9af5,8},{0x2eb7,4}}, {{0xcc1,1},{0x113f,2}}, {{0xe11,2},{0x12a3,3}}, {{0xf4f,1},{0x1780,3}}, + {{0x10c5,4},{0x116db,4}}, {{0xcc7,1},{0xf62,3}}, {{0x8dc9,7},{0x1a71,4}}, {{0x157ce,5},{0xcbd,1}}, + {{0x11daf,6},{0xfbb,4}}, {{0x2f47,5},{0x3308,5}}, {{0x54e6,9},{0xec6,3}}, {{0x12e5,3},{0x7950,3}}, + {{0x3b09,4},{0xf0f,2}}, {{0xe97,3},{0x5538,2}}, {{0x6cde,4},{0x1d75,3}}, {{0x9e61,8},{0x1004,3}}, + {{0x27a34,5},{0xf1a,2}}, {{0x1817,4},{0xcba,3}}, {{0xe99,2},{0x1096,3}}, {{0x5feb,6},{0xef40,5}}, + {{0x2eff1,4},{0x1969,1}}, {{0x46af,3},{0xf1a,2}}, {{0x261e,9},{0x21a5,5}}, {{0xccd,1},{0x10ec,6}}, + {{0xcd48,5},{0x19c9c,4}}, {{0x2b4fe,2},{0x30eff,4}}, {{0x4693,5},{0x1bc3,3}}, {{0x4be9,6},{0xec6,3}}, + {{0xcc1,1},{0x6f3b,6}}, {{0x27ef,4},{0xb05c,5}}, {{0xf0c,1},{0xf23,3}}, {{0xcc1,1},{0x16c4c,4}}, + {{0x1189d,4},{0x1593,3}}, {{0xe3d,4},{0xc78,2}}, {{0x3107,5},{0xebb,3}}, {{0xe31,2},{0x2236,3}}, + {{0x236c,4},{0x1b8b,6}}, {{0xcc8,1},{0x70f8,3}}, {{0x1019,4},{0x11cb,3}}, {{0xb5b9,8},{0x1040,3}}, + {{0x2ba5,1},{0xe09,1}}, {{0x30e73,3},{0x205a7,1}}, {{0x2416,3},{0x13e3,4}}, {{0x111a7,5},{0xe11,1}}, + {{0x152,2},{0x69,1}}, {{0xa149,9},{0xed9,2}}, {{0x10679,7},{0xcc9,2}}, {{0x1a07,3},{0xedd,1}}, + {{0x9a6,1},{0xe22,2}}, {{0xf0a,3},{0xf16,2}}, {{0x1949,3},{0x50db,8}}, {{0x15526,6},{0xe0a,1}}, + {{0x2b0e4,6},{0x2b0e4,6}}, {{0xab1,8},{0xab1,4}}, {{0x7158,2},{0x1ebf,3}}, {{0x20519,2},{0x20519,2}}, + {{0xcded,8},{0xe6c,3}}, {{0x1a7c5,5},{0xb496,3}}, {{0x16839,4},{0xcc9,2}}, {{0x1252e,4},{0x6813,5}}, + {{0xa,2},{0xe650,5}}, {{0x478f,3},{0xb37c,3}}, {{0xef7,6},{0x668b,4}}, {{0x5,1},{0xe0b,2}}, + {{0xe7a,1},{0x1e2f0,2}}, {{0xe99,1},{0xe0f,1}}, {{0x94ad,5},{0xf7a,2}}, {{0x124c,6},{0x7f90,5}}, + {{0xe08,1},{0x22a3,2}}, {{0x14ee6,6},{0xcc3,2}}, {{0x1fdd7,5},{0x260e8,3}}, {{0x465b,4},{0x9115,5}}, + {{0x19b9,1},{0x4b03,5}}, {{0x10c5,4},{0x19b3c,4}}, {{0x24663,4},{0xe16,1}}, {{0x18bc6,4},{0xeca,3}}, + {{0x2c8f5,4},{0x1969,1}}, {{0x74f9,2},{0x74f6,2}}, {{0xe7d,2},{0x8,1}}, {{0x12a60,7},{0xec6,3}}, + {{0xf63,2},{0x3,1}}, {{0x4aee,3},{0xcc3,2}}, {{0x10b9,2},{0x142d,3}}, {{0x7385,6},{0xec6,3}}, + {{0x1716e,5},{0x1e73,3}}, {{0xe78,1},{0x10e2,3}}, {{0x1084,3},{0xeab,2}}, {{0x2de75,3},{0x302,2}}, + {{0xe,1},{0x44,2}}, {{0x1347,8},{0x1347,8}}, {{0x1cdc,6},{0x57e0,5}}, {{0x1677,4},{0x1062,2}}, + {{0xf04,2},{0xec6,3}}, {{0x1064,3},{0xe71,1}}, {{0x9c2d,5},{0x2872,4}}, {{0x1c19,9},{0xec3,3}}, + {{0x1d74,5},{0xe6b,3}}, {{0x1b4fd,7},{0xed9,2}}, {{0x4853,3},{0x10d3,3}}, {{0x10a3,3},{0xcce,2}}, + {{0x247a3,6},{0xf7a,2}}, {{0x19b7,3},{0x15a79,7}}, {{0x78f9,5},{0xaf4,1}}, {{0x46af,3},{0xe2b,2}}, + {{0x4853,3},{0x2eb7,4}}, {{0xef7,4},{0xeb5,2}}, {{0xe11,2},{0xcb9f,4}}, {{0xb7bd,6},{0xed9,2}}, + {{0x445f,2},{0x1e57e,2}}, {{0x4781,3},{0x145b,2}}, {{0xc16,1},{0x20599,1}}, {{0x176,2},{0xd,1}}, + {{0xcc4,2},{0xf59,2}}, {{0x1997f,6},{0xcc9,2}}, {{0xf77,3},{0x19020,5}}, {{0x7eed,6},{0xfef,6}}, + {{0x1ee68,7},{0xb,1}}, {{0x29d4,4},{0x149f,6}}, {{0x140,2},{0x7b,1}}, {{0x166d8,6},{0xe80,2}}, + {{0x1567,6},{0xcc1,1}}, {{0x2260,4},{0xed6,2}}, {{0x8,1},{0x189f,3}}, {{0x27ef,4},{0x1150,2}}, + {{0x4781,3},{0xe0d,2}}, {{0x2b84,2},{0x5538,2}}, {{0xf89,3},{0xf59,2}}, {{0xc6ec,5},{0xcc9,2}}, + {{0xa31d,10},{0xe11,1}}, {{0xe99,1},{0x9bd1,3}}, {{0x29c0,3},{0xe71,1}}, {{0x2,2},{0xec3,6}}, + {{0xf0a,3},{0x162c,3}}, {{0xe09,1},{0x1155,2}}, {{0xf4f,1},{0xe0f,1}}, {{0x77e3,6},{0x2845,4}}, + {{0x70ad,3},{0x155b,3}}, {{0xa2d5,9},{0xed9,2}}, {{0x103da,6},{0x2467,4}}, {{0xcc1,1},{0x1ce9a,5}}, + {{0x6f27,7},{0xaa38,5}}, {{0x2ba5,1},{0x1db45,2}}, {{0x31453,2},{0xcf6,1}}, {{0x40ab,9},{0x18b2,5}}, + {{0x4519,5},{0xec5,4}}, {{0x17d28,5},{0x2f32,4}}, {{0x1557,7},{0x101f,2}}, {{0x2f7c7,4},{0x1969,1}}, + {{0xcc40,7},{0x3075,4}}, {{0x12f8,2},{0x1fc61,5}}, {{0xe5b,3},{0xe22,2}}, {{0x164,2},{0xe,1}}, + {{0x665e,9},{0x17cc,4}}, {{0xb3f1,3},{0x101f,2}}, {{0x10a,2},{0x9f,1}}, {{0xdb34,5},{0x1894,3}}, + {{0xfe3,4},{0x61bb,4}}, {{0x2ed7,10},{0x1663,4}}, {{0xe99,1},{0x4538,3}}, {{0x46bd,3},{0xeb4,3}}, + {{0x19b7,3},{0x16826,5}}, {{0x1809,3},{0xccaa,4}}, {{0x9a8,1},{0x3356,4}}, {{0x205a1,1},{0x205a5,2}}, + {{0x329d,5},{0xf3f0,4}}, {{0x1467,4},{0x59b4,3}}, {{0xf89,3},{0x35a2,4}}, {{0x29cf,3},{0x1593,3}}, + {{0x9519,7},{0xfe6,2}}, {{0x6171,5},{0xf24,2}}, {{0x29cf,3},{0x4aee,3}}, {{0xe0a,1},{0xfe0,2}}, + {{0x28fda,4},{0xf4f,1}}, {{0xb,1},{0xe69,5}}, {{0x17506,6},{0x6cee,4}}, {{0x149aa,5},{0xe09,1}}, + {{0x7414,3},{0xccb,2}}, {{0x12090,8},{0xfb0,2}}, {{0x1a07,3},{0x20559,2}}, {{0x1417,8},{0x141f,8}}, + {{0x1787,6},{0x5,2}}, {{0xf0a,3},{0xfdf,4}}, {{0x5201,10},{0x2,1}}, {{0x1827,5},{0x58a3,5}}, + {{0x1e9e,4},{0xde07,3}}, {{0x1787,9},{0x1790,6}}, {{0xfa6,3},{0xe69,5}}, {{0x1f5ca,6},{0x1040,3}}, + {{0x112b,5},{0x111c,2}}, {{0xe0bf,7},{0x2b90,4}}, {{0xef7,3},{0x1569,3}}, {{0x6d41,5},{0xe11,1}}, + {{0xe37,4},{0x2afc8,2}}, {{0x1367,3},{0xd086,3}}, {{0x12e5,3},{0x453b,4}}, {{0x53fc,8},{0xcc9,2}}, + {{0x19b7,3},{0x4740,4}}, {{0x5,1},{0x2bad,4}}, {{0x10cb,2},{0xcd3,1}}, {{0x1677,3},{0x373b,3}}, + {{0x10c5,4},{0xefb,3}}, {{0x4781,3},{0x2e6a4,2}}, {{0x7351,8},{0x1702,5}}, {{0x450b,4},{0xe13,3}}, + {{0x12ff6,7},{0xe11,1}}, {{0xead,3},{0x73d6,2}}, {{0xff20,6},{0x1e4b,3}}, {{0x19b7,3},{0x1f7c5,6}}, + {{0x69,1},{0x666,2}}, {{0x1f16,5},{0x7f8f,6}}, {{0x168f,3},{0x320c,4}}, {{0x2a92,6},{0x14ff,5}}, + {{0x7303,5},{0xe09,1}}, {{0x112ce,6},{0x17621,4}}, {{0x77f0,5},{0x7efc,4}}, {{0x40c7,9},{0xec6,3}}, + {{0x22e5,4},{0x77b3,4}}, {{0xe1f,3},{0xcd3,2}}, {{0x11d0a,5},{0x1132,2}}, {{0x153a,3},{0xebb,3}}, + {{0x1567,3},{0xcbd,1}}, {{0x7201,8},{0xe22,2}}, {{0x11788,4},{0x1054,3}}, {{0x70ad,3},{0x74f3,2}}, + {{0xb74,4},{0xb74,3}}, {{0xf16,2},{0xeee,3}}, {{0x4e43,4},{0xec6,3}}, {{0xebe,4},{0xe32,1}}, + {{0x46bf,1},{0x4ef1,4}}, {{0x1817,4},{0x7417,4}}, {{0xed9,2},{0xe22,2}}, {{0x28b31,3},{0x2eb42,2}}, + {{0x17eb8,5},{0x94b2,4}}, {{0x12e5,3},{0xcc9,2}}, {{0xe8a,2},{0xe7f,2}}, {{0xe92,3},{0xcbd,1}}, + {{0x9af,2},{0x3100f,2}}, {{0x17661,2},{0xf4f,1}}, {{0x11a34,4},{0x1f77e,5}}, {{0xe3d,4},{0xc38,2}}, + {{0x7414,3},{0x3381,3}}, {{0x1a2fd,8},{0xe11,1}}, {{0x100f9,6},{0xe77,3}}, {{0x21c19,5},{0x138e,2}}, + {{0x244d,7},{0x2454,7}}, {{0x4ef5,4},{0x109b,2}}, {{0x9a8,1},{0xb428,3}}, {{0x1969,1},{0x1150,2}}, + {{0xf15,1},{0xeb4,3}}, {{0x9f69,7},{0x6a0f,4}}, {{0x2f47,5},{0xe67,2}}, {{0x1392e,6},{0xc3e6,4}}, + {{0x247a,5},{0x52fe,5}}, {{0x780a,5},{0x6df4,7}}, {{0xd147,5},{0x6ead,4}}, {{0x1f09,3},{0xe6b,4}}, + {{0xe1f,3},{0x1969,1}}, {{0x184bc,5},{0x15517,5}}, {{0x1189d,4},{0xb410,4}}, {{0x6de2,8},{0x12be,5}}, + {{0x314,2},{0x7b,1}}, {{0x129b9,4},{0xcba,3}}, {{0x7a49,5},{0x7a5a,7}}, {{0xe27,2},{0x23427,4}}, + {{0xef7,3},{0x103e7,4}}, {{0xe71,1},{0x2f94,3}}, {{0x10b4,6},{0x7f8f,6}}, {{0xf0a,3},{0x1ea72,2}}, + {{0x18020,6},{0xe11,1}}, {{0x7a01,5},{0xccd,1}}, {{0x41b7,3},{0x9,3}}, {{0x1c37,6},{0x1d75,3}}, + {{0xb205,7},{0x13e3,4}}, {{0x2de7b,3},{0x4bd,2}}, {{0x1e9e,5},{0xeb5,2}}, {{0xe25,2},{0x9204,4}}, + {{0x478f,3},{0x23ea,4}}, {{0x11d9,3},{0x237f,4}}, {{0x1677,3},{0x453b,4}}, {{0x2ba5,1},{0xf80,2}}, + {{0x9f,1},{0x109,2}}, {{0x94ad,5},{0xae6c,5}}, {{0xf,1},{0x55,2}}, {{0x4137,5},{0x23468,3}}, + {{0xdfac,5},{0x56e9,5}}, {{0x29cf,3},{0x22a3,2}}, {{0xe08,1},{0xf194,3}}, {{0x5,2},{0x1d3c,3}}, + {{0x70af,2},{0x10cb,4}}, {{0x46bd,3},{0x1692,2}}, {{0x4773,4},{0x1fbe,3}}, {{0x1b572,6},{0xec6,3}}, + {{0x46bd,3},{0x1f03f,3}}, {{0x1367,3},{0x16935,5}}, {{0xe09,1},{0xc54d,5}}, {{0x20f6,5},{0x17cd,4}}, + {{0x4597,5},{0x1dc2,8}}, {{0x18444,5},{0xed5,3}}, {{0x12fe,2},{0x6,1}}, {{0xc05d,4},{0x1153,2}}, + {{0x7a79,6},{0x21a5,5}}, {{0xf24,2},{0xe69,5}}, {{0x824d,7},{0x6db6,5}}, {{0x2df3b,4},{0x1d0,2}}, + {{0x7824,5},{0xf86,2}}, {{0xf0a,3},{0xe0f,1}}, {{0x39d5,5},{0xb200,5}}, {{0xde8e,4},{0x587c,5}}, + {{0x6,2},{0xcbd,1}}, {{0x1180c,7},{0x15e9,3}}, {{0x4853,3},{0xcd2,2}}, {{0x143c,4},{0xe77,3}}, + {{0x1aadd,5},{0xe92,3}}, {{0x12c3,5},{0x4b2e,5}}, {{0x12e,2},{0x69,1}}, {{0xe0ca,6},{0x431c,5}}, + {{0xed1,3},{0x1c3e8,6}}, {{0x824d,4},{0x2075,3}}, {{0x9bd9,5},{0x1155,2}}, {{0xec6,3},{0x1152,3}}, + {{0x1a66,1},{0x5342,4}}, {{0xf4f,1},{0x158f,3}}, {{0xcb8,1},{0x5884,4}}, {{0x1d18,5},{0xc80d,4}}, + {{0x1e80,11},{0x23e1,3}}, {{0x7416,1},{0x6,2}}, {{0x2cf87,4},{0x1f875,1}}, {{0x111c8,5},{0x58cb,4}}, + {{0x2c6f,12},{0xe95,2}}, {{0x5cf9,9},{0xe6b,4}}, {{0x1a66,1},{0x266f,4}}, {{0x7905,4},{0x7905,4}}, + {{0x2de9,8},{0x6cb4,3}}, {{0x10a3,3},{0x1189,3}}, {{0xb1bd,8},{0x13e3,4}}, {{0x16fb6,8},{0xe95,2}}, + {{0xf0a,3},{0x1462,5}}, {{0x2330,5},{0x7a15,4}}, {{0x16048,6},{0xec6,3}}, {{0x1252,3},{0x1287,5}}, + {{0x2b84,2},{0x12a3,3}}, {{0xe1f,3},{0x24d65,2}}, {{0x1dee,2},{0xeb5,2}}, {{0x228eb,7},{0xe11,1}}, + {{0xf13,2},{0xcc3,2}}, {{0x6,2},{0x1440,7}}, {{0x24025,3},{0x127c,3}}, {{0x1d09,6},{0x1d0f,5}}, + {{0x4765,3},{0xf15,1}}, {{0x7602,4},{0xe71,1}}, {{0x1bbf,4},{0xf69b,3}}, {{0xe0a,1},{0x1150,2}}, + {{0x2247,4},{0x35ce,4}}, {{0xe0d,2},{0x592e,5}}, {{0x7414,3},{0xf0d,2}}, {{0x4853,3},{0xaeb4,9}}, + {{0x16a7,3},{0xcd3,1}}, {{0x1e223,5},{0xec6,3}}, {{0xd4d8,6},{0xd4de,5}}, {{0x28b31,3},{0xaf4,1}}, + {{0x12e7,4},{0x1288,4}}, {{0x1482e,6},{0x2872,4}}, {{0x1969,1},{0x10a5,2}}, {{0x1587,4},{0xccd,1}}, + {{0xf89,3},{0x17dd9,3}}, {{0x56ee,5},{0x1aca,5}}, {{0xe16,1},{0x1f875,1}}, {{0x2fe1,9},{0x1392,3}}, + {{0xccb,2},{0xcc4,2}}, {{0x3739,2},{0xe0f9,3}}, {{0x2948,4},{0x1a6f,6}}, {{0xccb,2},{0x1d74,5}}, + {{0x1240,2},{0xf0f,2}}, {{0x2b46,8},{0x2707,7}}, {{0x254e3,5},{0x8,1}}, {{0x2501,5},{0x2454,3}}, + {{0x18b74,7},{0x1004,3}}, {{0xe22,3},{0xf59,2}}, {{0xe16,3},{0x104dd,4}}, {{0x12e5,6},{0x8,1}}, + {{0x29ee6,5},{0x138e,2}}, {{0x12a1,11},{0x2917,4}}, {{0x23d2,3},{0xe77,3}}, {{0x171e6,5},{0x1021a,5}}, + {{0x4765,3},{0xee9,3}}, {{0xe31,2},{0xfc7,3}}, {{0x29cf,3},{0xe1fa,4}}, {{0x2231,4},{0x8666,2}}, + {{0xbae1,7},{0xce8e,4}}, {{0x4597,4},{0xc088,5}}, {{0xe2f,1},{0x22b2,3}}, {{0xb34,4},{0xb34,2}}, + {{0x1f4,2},{0xd,1}}, {{0x127f,3},{0xefb,3}}, {{0x23b7,11},{0xec6,3}}, {{0xe97,3},{0xb37c,5}}, + {{0x2ee64,4},{0x2ba5,1}}, {{0x70ad,3},{0x44a4,5}}, {{0xe08,1},{0x883a,7}}, {{0xefa,2},{0x149d,2}}, + {{0xb979,4},{0x8,1}}, {{0x442b,3},{0xfb0,2}}, {{0x1927,4},{0xee9,2}}, {{0x450b,4},{0x4c16,3}}, + {{0x11df1,6},{0xf02,2}}, {{0x2d3a7,4},{0xe78,1}}, {{0xf89,3},{0xcbd,1}}, {{0xed1,5},{0x178d,3}}, + {{0x56,2},{0x45,1}}, {{0x45eb,6},{0xe0a,1}}, {{0x9a6,1},{0x2b86,4}}, {{0x8181,9},{0xcc9,2}}, + {{0x1f09,3},{0xf72,5}}, {{0x3642,2},{0x4afa,5}}, {{0xb74,1},{0x30801,2}}, {{0x4a70,8},{0x1692,5}}, + {{0x16430,7},{0xfa6,3}}, {{0x4e18,8},{0xcd3,1}}, {{0x75b4,4},{0xe80,2}}, {{0x10cb,2},{0x18b2,5}}, + {{0x11ef9,7},{0x1b9d,4}}, {{0xe75,2},{0x1054,3}}, {{0x31cb,6},{0x9101,4}}, {{0x24e3,5},{0xef0,2}}, + {{0x7aa9,5},{0x5959,5}}, {{0x4,1},{0xd086,3}}, {{0xc2ed,7},{0xc2ff,4}}, {{0xf15,1},{0x2ea14,2}}, + {{0x7004,7},{0xe69,5}}, {{0x3957,6},{0x305a,5}}, {{0xe89,3},{0x4745,4}}, {{0x11cbd,8},{0x1303,3}}, + {{0x1587,4},{0xcc3,2}}, {{0x27e0,3},{0x28e1,3}}, {{0x9a6,1},{0xf86,3}}, {{0x1b133,3},{0xcc8,2}}, + {{0xc26d,8},{0xc275,12}}, {{0x12a1a,7},{0xe25,2}}, {{0x1e2ed,2},{0x4767,1}}, {{0x29fc,5},{0xb428,3}}, + {{0xaec9,5},{0x3a91,3}}, {{0x4765,3},{0xe08,1}}, {{0xaaf,2},{0xc16,4}}, {{0x1eee6,6},{0x1085,3}}, + {{0xcc1,1},{0x180a,3}}, {{0x1a66,1},{0xe08,1}}, {{0x112b,4},{0x8cd4,5}}, {{0x18ae8,6},{0x113f,2}}, + {{0x29cf,3},{0x5342,3}}, {{0xf37b,6},{0xd347,5}}, {{0x1e11e,5},{0x9,1}}, {{0x56,2},{0xf,1}}, + {{0x113f,2},{0xf91,3}}, {{0x1a66,1},{0x19b9,1}}, {{0x15e9a,5},{0x2352,5}}, {{0xed9,2},{0xfd9,3}}, + {{0x18be2,6},{0x1a71,3}}, {{0x18278,6},{0x73d6,2}}, {{0x1cbeb,6},{0x431f,2}}, {{0x10a3,3},{0x2f3c,8}}, + {{0xb18d,9},{0xe67,2}}, {{0x314d,8},{0xf7a,2}}, {{0x2b77,3},{0xe6b,3}}, {{0x4199,8},{0x1722,5}}, + {{0x4e18,6},{0x2663,5}}, {{0xccb9,5},{0x2d1f,6}}, {{0x2,1},{0x10cb,4}}, {{0x473b,5},{0xe0a,1}}, + {{0x10b9,2},{0x72d3,3}}, {{0x1967,3},{0xf18,2}}, {{0x3be9,5},{0xfb8,3}}, {{0x5f83,6},{0x1267,7}}, + {{0xe1f,3},{0x2dd7,4}}, {{0x1ec5,3},{0x14ab,4}}, {{0x10af6,4},{0xcc3,2}}, {{0xf15,1},{0x178a,3}}, + {{0x10cb,2},{0xfa9,4}}, {{0x7905,1},{0x205a1,1}}, {{0x3281,8},{0xfdd,6}}, {{0x373b,3},{0xcbf,2}}, + {{0x4853,4},{0x2d1f,3}}, {{0xccd,1},{0x10d3,3}}, {{0x6e23,7},{0x129a,6}}, {{0x10ecf,7},{0x17cd,4}}, + {{0x765d,8},{0xe92,3}}, {{0xb931,5},{0x6,1}}, {{0xcda0,4},{0x62f3,4}}, {{0x6,1},{0xf59,2}}, + {{0x6cde,4},{0xa7c8,5}}, {{0x33d1,8},{0xf86,3}}, {{0x10d6,5},{0xe77,3}}, {{0xe7d,2},{0x1153,3}}, + {{0x19b7,3},{0x1e373,4}}, {{0xb87d,6},{0x6,1}}, {{0x12e,2},{0x57,1}}, {{0x1577,4},{0x7d38,4}}, + {{0x1467,6},{0x9a0c,5}}, {{0x29cf,3},{0x2e2c,3}}, {{0x19b9,1},{0x17df,7}}, {{0x4767,1},{0xa,2}}, + {{0x3a37,6},{0x9cac,5}}, {{0x313f,8},{0x1d32,3}}, {{0x10c25,6},{0x1ea1,5}}, {{0x9a6,1},{0xccd,1}}, + {{0xe7f,2},{0xf62,3}}, {{0xcbd,1},{0x6c88,5}}, {{0x1f93c,5},{0x1fc7,3}}, {{0x2de7b,3},{0x164,2}}, + {{0x1003,3},{0xf7a,2}}, {{0x1977,4},{0x237f,4}}, {{0x6,2},{0x5,2}}, {{0xe1f,3},{0xe21,1}}, + {{0x46af,3},{0xcce,2}}, {{0x9a6,1},{0x122d,3}}, {{0x12f6,7},{0x9302,5}}, {{0x12a1,4},{0x16f4c,6}}, + {{0x28c1,4},{0xe7f,3}}, {{0xf,1},{0xf8,2}}, {{0xef7,3},{0xed6,2}}, {{0xe97,3},{0x101f,2}}, + {{0x28b31,3},{0x1357,1}}, {{0x1827,6},{0x1ce43,3}}, {{0xb625,9},{0x1059,3}}, {{0xed6,2},{0x431f,2}}, + {{0x16a7,3},{0x1399f,3}}, {{0xadf1,5},{0xf7a,2}}, {{0xeb88,8},{0x14a2,3}}, {{0x27e0,4},{0x3a3e,6}}, + {{0x5,1},{0x1085,3}}, {{0x10d2d,9},{0xf86,2}}, {{0x2,3},{0x5,2}}, {{0x11187,2},{0xe99,1}}, + {{0x4845,8},{0xe1c,3}}, {{0xf0a,3},{0x17c0,2}}, {{0x13ae,4},{0x10bb,5}}, {{0x1024e,5},{0x1c2a,4}}, + {{0x127f,5},{0xe2b,2}}, {{0x10ffa,3},{0xe6b,2}}, {{0xe08,1},{0x17acb,2}}, {{0xe37,4},{0x308c1,2}}, + {{0x1a84,5},{0xe6b,4}}, {{0x12e5,5},{0x143c,4}}, {{0xebe,4},{0xe1b,4}}, {{0xb7f9,8},{0x8d7d,4}}, + {{0xe86,2},{0x1085,3}}, {{0xba39,4},{0x44b3,4}}, {{0x9af,2},{0xe4d,2}}, {{0x4,1},{0x1692,5}}, + {{0x1191,8},{0xec3,3}}, {{0x29dea,5},{0xf1a,2}}, {{0x1ff7,3},{0x10cb,2}}, {{0x1937,5},{0x5bb9,4}}, + {{0x457b,5},{0x1244,8}}, {{0x4765,3},{0x1025,1}}, {{0xe31,2},{0xe89,2}}, {{0xb3f1,3},{0x10b83,8}}, + {{0x29cf,3},{0x4461,2}}, {{0x1182d,8},{0xf1f,3}}, {{0x1969,1},{0xcbf,2}}, {{0x188,2},{0xd,1}}, + {{0x6f27,7},{0xec6,3}}, {{0x19e7,8},{0xe67,7}}, {{0x2e217,4},{0x7b,1}}, {{0x5faa,10},{0xe11,1}}, + {{0x1467,4},{0xd704,5}}, {{0xf38,2},{0x157b,3}}, {{0x29a2,10},{0x128c,4}}, {{0x29c0,3},{0x111c,2}}, + {{0x3d3b,3},{0x1c85,3}}, {{0x19f9,2},{0x2236,3}}, {{0xefdf,6},{0x8,1}}, {{0x6cd1,5},{0x2514,4}}, + {{0xf79,3},{0xafee,6}}, {{0x1c1e,4},{0x305a,5}}, {{0xf0c,1},{0xd084,5}}, {{0x2231,5},{0x9cab,5}}, + {{0x1777,5},{0xe89,2}}, {{0xe99,1},{0x1dcfb,6}}, {{0x1feaf,7},{0xe22,2}}, {{0x29cf,3},{0x1f875,1}}, + {{0xe97,3},{0xf0c,1}}, {{0x712f,4},{0xcd2,2}}, {{0x2ee5,7},{0x2eec,7}}, {{0x739f,9},{0x5669,3}}, + {{0x2d5d,10},{0x1ce7,4}}, {{0x46bf,1},{0x3537,2}}, {{0xe5b,3},{0x101f,2}}, {{0x2e217,4},{0x314,2}}, + {{0x2eed7,4},{0x7416,1}}, {{0x5,1},{0xcc8,1}}, {{0x115e,11},{0xe69,6}}, {{0xf0a,3},{0xf11,1}}, + {{0x7b51,4},{0xa1df,6}}, {{0xbb7d,5},{0x160b,4}}, {{0x1933d,5},{0xfbb,3}}, {{0x5c02,5},{0xfb8,3}}, + {{0x3,1},{0x9a8,1}}, {{0x29c0,4},{0xe6b,3}}, {{0x2d2b1,5},{0xe0a,1}}, {{0x8421,6},{0x8427,3}}, + {{0x5d54,5},{0x5d59,5}}, {{0x3a29,4},{0x7948,5}}, {{0xcce,3},{0x2,2}}, {{0x4c05,6},{0x1c14,5}}, + {{0xcda0,4},{0x19cec,4}}, {{0x255b,8},{0xef5,2}}, {{0x2132,9},{0xe69,6}}, {{0x11e12,5},{0x3599,3}}, + {{0x18b4,3},{0x331f,3}}, {{0xcc7,1},{0xb495,4}}, {{0x1ff7,3},{0x1040,3}}, {{0xe09e,8},{0xe95,2}}, + {{0x15030,6},{0x1a71,3}}, {{0x4781,3},{0xec6,3}}, {{0x13a7,7},{0xc685,4}}, {{0xaf4,12},{0xaf4,2}}, + {{0x1019,4},{0xce8e,4}}, {{0xb3f1,3},{0x1e2f0,2}}, {{0x5652,8},{0xec6,3}}, {{0x4765,3},{0x6ee8,3}}, + {{0xc015,4},{0x2bb4,2}}, {{0xb121,8},{0xec3,3}}, {{0x29de,5},{0x1fc7,3}}, {{0x728e,9},{0xe11,1}}, + {{0x2e866,2},{0xd1c,2}}, {{0x1f25,4},{0x1f38,1}}, {{0x12d4,3},{0x2995a,4}}, {{0x1089,3},{0xe22,2}}, + {{0xe22,2},{0xf1d,2}}, {{0x6,2},{0x1004,3}}, {{0xe8a,2},{0x6,1}}, {{0x5f01,6},{0x1a98,6}}, + {{0x1a7c5,6},{0xe0a,1}}, {{0xfbf,5},{0xe2b,2}}, {{0x10ec4,8},{0x1fc7,3}}, {{0xcedf,7},{0xf91,3}}, + {{0x13474,5},{0x1e8b,3}}, {{0xc26f,2},{0x2ad7d,2}}, {{0x7ef9,7},{0xcc9,2}}, {{0x2fb1e,4},{0xe99,1}}, + {{0x12e5,3},{0xede,1}}, {{0x2d79,4},{0xccb,2}}, {{0x1949,3},{0xd28b,5}}, {{0x25c33,7},{0xe11,1}}, + {{0x44,2},{0x69,1}}, {{0xcd3,2},{0x1177,7}}, {{0x2858,5},{0xafbe,6}}, {{0x11b47,5},{0xfc7,3}}, + {{0x1367,4},{0xc396,7}}, {{0x1e64,3},{0x1040,3}}, {{0x16a7,3},{0xbfca,3}}, {{0x2b84,2},{0x4516,3}}, + {{0x2c37,9},{0xfdf,4}}, {{0xf79,4},{0x1044,4}}, {{0x1567,3},{0x1692,2}}, {{0x794d,6},{0xcbd,4}}, + {{0x47c7,5},{0x1064,3}}, {{0xcc5,2},{0xe0d,2}}, {{0x205a1,1},{0xb74,3}}, {{0x6567,7},{0x7b72,3}}, + {{0x9,1},{0x2047c,5}}, {{0x1cdda,6},{0xe11,1}}, {{0x6f68,8},{0xe69,5}}, {{0x1a07,3},{0xeab,2}}, + {{0x780a,4},{0x8f3a,3}}, {{0x6,2},{0xfa5,2}}, {{0x1ff7,3},{0x101f,3}}, {{0x2966,4},{0xe09,1}}, + {{0x5,1},{0xcc7,1}}, {{0xb199,5},{0x6451,5}}, {{0x113c,5},{0xe6b,4}}, {{0x11873,4},{0x6,2}}, + {{0x478f,3},{0x20559,2}}, {{0xe3d,4},{0x30f85,2}}, {{0x1fa7,3},{0x156a,3}}, {{0x1081,7},{0x6552,4}}, + {{0xf0c,1},{0x13233,7}}, {{0x4597,5},{0x3144,5}}, {{0x1467,4},{0xfbb,4}}, {{0x15df0,9},{0xe11,1}}, + {{0x1a66,1},{0x7416,1}}, {{0x31d9,6},{0xf91,3}}, {{0x4cff,4},{0x2269,4}}, {{0xe31,2},{0xe7f,2}}, + {{0x3755,3},{0xcc7,1}}, {{0xe5b,3},{0x308f,4}}, {{0x1927,4},{0x14185,4}}, {{0x1041,3},{0x30c6,3}}, + {{0x29480,5},{0x45c7,2}}, {{0x48c6,3},{0x794f,4}}, {{0x111a,3},{0xebb,3}}, {{0x125d,6},{0x6593,7}}, + {{0xcc1,1},{0x41cb,6}}, {{0xb8dd,5},{0x4d5e,3}}, {{0x2de51,3},{0x1ac,2}}, {{0x3e35,9},{0xe6b,4}}, + {{0x15abc,5},{0x1159,5}}, {{0x1a07,3},{0xb37b,1}}, {{0xf4f,1},{0xf70,2}}, {{0xd131,4},{0xe62,3}}, + {{0x1467,6},{0x2663,5}}, {{0x4767,1},{0x6008,3}}, {{0x2fd3,10},{0xe77,3}}, {{0x1bd,2},{0x1bd,2}}, + {{0x14f9,3},{0xfa9,4}}, {{0xcc3,2},{0xe5e,2}}, {{0x1a6d2,6},{0x1059,3}}, {{0xccb,2},{0x49b4,6}}, + {{0x1917,4},{0x286d,3}}, {{0x7392,5},{0x1ad8e,4}}, {{0xed9,2},{0x141a,2}}, {{0x2bb4,2},{0x10d3,3}}, + {{0xcbd,2},{0xe8a,2}}, {{0x1ff7,3},{0xeee,3}}, {{0xecb,2},{0x6,1}}, {{0x105f,3},{0x81c1,5}}, + {{0xeed,3},{0xe09,1}}, {{0x1ff1b,5},{0x1eeac,4}}, {{0x91b9,6},{0x10f2,6}}, {{0x1837,9},{0x423c,5}}, + {{0x140,2},{0x57,1}}, {{0xe22,2},{0xe67,2}}, {{0x9a6,1},{0x22fb8,3}}, {{0x11c,2},{0x9f,1}}, + {{0x7eb1,7},{0xcc9,2}}, {{0x168e0,8},{0xcc9,2}}, {{0xcbd,1},{0x78d0,3}}, {{0x2f2b,7},{0x2f32,4}}, + {{0x11ac3,5},{0xed5,3}}, {{0x4853,3},{0xf02,2}}, {{0xe5e7,5},{0xdc6e,5}}, {{0xe16,1},{0x102d6,6}}, + {{0x19b9,1},{0x48d6,2}}, {{0xf1c3,8},{0xebb,3}}, {{0x205a9,1},{0x30352,2}}, {{0x11276,10},{0xe11,1}}, + {{0x317ac,2},{0x18efa,2}}, {{0xe97,3},{0x73d6,2}}, {{0x42ee,3},{0xf0f,2}}, {{0x7995,5},{0x1b03,3}}, + {{0x13f50,6},{0x6,1}}, {{0x4209,6},{0xec6,3}}, {{0x1081,4},{0x1951e,5}}, {{0x46af,3},{0x6452,4}}, + {{0xcda0,4},{0x122d,3}}, {{0x21d79,5},{0x453e,3}}, {{0x2ba5,1},{0xe92,3}}, {{0x53ef,7},{0xf24,2}}, + {{0xb985,4},{0xe8a,2}}, {{0x1ec94,6},{0xec3,3}}, {{0x1219,6},{0x7b70,5}}, {{0xa815,9},{0xe11,1}}, + {{0xc159,4},{0xefa,4}}, {{0x1927,4},{0x810e,3}}, {{0x2d79,5},{0x1de7,3}}, {{0x1577,7},{0x8fbc,4}}, + {{0x7b51,4},{0x137f,6}}, {{0xe11,1},{0x1d05,4}}, {{0x442d,1},{0x442d,1}}, {{0x464d,6},{0x2f3f,5}}, + {{0xcc7,1},{0x246d7,4}}, {{0x1b30,4},{0xe69,5}}, {{0x9bc1,6},{0x9bd3,6}}, {{0x4765,3},{0x2252,3}}, + {{0x1c28,5},{0x1692,2}}, {{0x18b4c,6},{0x1848c,4}}, {{0x21079,6},{0x400a,2}}, {{0x1937,4},{0xe22,3}}, + {{0x1e62,4},{0x56a8,5}}, {{0x1290,4},{0x4921,4}}, {{0x2b46,4},{0x355b,3}}, {{0x45c7,2},{0x9a9,2}}, + {{0x70ad,3},{0x10ad3,5}}, {{0xf65,4},{0xcd3,2}}, {{0x1109,5},{0xf0d,2}}, {{0xe2b,2},{0x3537,2}}, + {{0x27946,5},{0xe67,2}}, {{0xf80,2},{0xe7f,2}}, {{0x5471,9},{0xe11,1}}, {{0x1ef49,5},{0x11d9,3}}, + {{0xcd3,1},{0x1722,5}}, {{0x1747,4},{0x15cf,7}}, {{0x14842,6},{0xcd4,2}}, {{0xe83,4},{0x1be9,3}}, + {{0x3ff5,6},{0x1b4f,7}}, {{0xf77,4},{0x15af,3}}, {{0x1607,5},{0x8,3}}, {{0x14ab,3},{0x1ac7,3}}, + {{0x18ecc,2},{0xd7c,2}}, {{0x1967,3},{0x178a,3}}, {{0x1008b,6},{0x4eef,5}}, {{0x12ea2,7},{0xec6,3}}, + {{0x129de,6},{0x1a9a,4}}, {{0x113c,3},{0xb9d1,3}}, {{0xe8a,2},{0x2eb7,4}}, {{0x29fc,5},{0x17eb3,5}}, + {{0x2df3b,4},{0x644,2}}, {{0x9405,5},{0x18b4,3}}, {{0x1e11e,5},{0x1783,4}}, {{0x9441,5},{0x1279,6}}, + {{0x122f4,8},{0xcc9,2}}, {{0x2993,7},{0x11ad,3}}, {{0x205a1,2},{0x30809,2}}, {{0x13118,6},{0x126a,4}}, + {{0xf528,7},{0x5eaf,4}}, {{0x1025,1},{0xcc3,2}}, {{0xe27,2},{0x136ee,5}}, {{0x17f9e,4},{0x141a,2}}, + {{0x1977,3},{0xeab,2}}, {{0xee4,4},{0x1025,1}}, {{0x478f,3},{0x116af,6}}, {{0x2e864,4},{0x29979,2}}, + {{0x592a,6},{0x2dd7,4}}, {{0x111a,3},{0x2769b,4}}, {{0x10c5,4},{0xed6,3}}, {{0x1ff7,3},{0xf1a,2}}, + {{0x4589,5},{0x43ed,6}}, {{0x6d46,6},{0x159d8,4}}, {{0x7416,1},{0x11b5,2}}, {{0x10cb4,4},{0xcd4,2}}, + {{0x3de1,5},{0x1d32,4}}, {{0xcb8,1},{0xcc7,1}}, {{0x1154c,4},{0xe0d,2}}, {{0x5172,7},{0x1722,5}}, + {{0x12fd,3},{0xcd3,1}}, {{0x1937,5},{0x2f92,5}}, {{0x6e53,4},{0xed5,3}}, {{0x11d0a,5},{0x9a8,1}}, + {{0x550d,5},{0xe11,1}}, {{0x17f6c,6},{0x4b12,4}}, {{0x170ec,5},{0x1b41,4}}, {{0x40ab,9},{0xec6,3}}, + {{0x1cd3,2},{0xb38c,3}}, {{0xe8ae,3},{0xf86,2}}, {{0x1a2f4,7},{0xfe6,2}}, {{0xbb4,2},{0x2e828,4}}, + {{0xe27,2},{0xfdf,4}}, {{0x1577,4},{0xcc1,1}}, {{0x27ef,4},{0xe22,2}}, {{0x11515,5},{0xe0a,1}}, + {{0x12d6,3},{0x59b4,3}}, {{0x4853,3},{0x810e,3}}, {{0x78f9,1},{0x28b3a,1}}, {{0x1a49b,6},{0xcc9,2}}, + {{0xe11,2},{0xa,2}}, {{0x5f90,6},{0x266e,5}}, {{0x2009e,6},{0x3643,3}}, {{0x121b4,7},{0xcc9,2}}, + {{0x4,1},{0xb495,4}}, {{0x4599,2},{0x11dc,3}}, {{0xf0a,3},{0xd28b,6}}, {{0xe67,2},{0x1702,4}}, + {{0x451b,2},{0xe22,2}}, {{0x1464e,7},{0xec6,3}}, {{0x17adc,3},{0x268c,3}}, {{0x46bd,3},{0x223be,5}}, + {{0xf77,5},{0x1252,3}}, {{0x1172a,2},{0xe0d,2}}, {{0x201f4,8},{0xe11,1}}, {{0x12830,5},{0x1d74,3}}, + {{0xc077,3},{0xe67,2}}, {{0xe74,3},{0x1632,5}}, {{0xe11,2},{0x169d,3}}, {{0xccd,1},{0x2341,5}}, + {{0x3aed,6},{0xe11,1}}, {{0x442b,3},{0x6,1}}, {{0x2e21d,4},{0x57,1}}, {{0x7643,5},{0x4132,5}}, + {{0xf77,3},{0x8874,5}}, {{0x1e3b,3},{0xfd3,4}}, {{0xfa6,3},{0xec6,3}}, {{0x21,1},{0x55,2}}, + {{0x7fe9,5},{0x29f7,3}}, {{0x44,2},{0xe,1}}, {{0x1e4fc,5},{0xf0f,2}}, {{0x4773,4},{0xcd3,2}}, + {{0xc1d1,4},{0x8f9f,8}}, {{0x1577,7},{0x1004,3}}, {{0xf0a,3},{0x3372,4}}, {{0x1817,4},{0x6,1}}, + {{0x7de9,2},{0xcd3,1}}, {{0xb597,3},{0x10b9,3}}, {{0x1189d,4},{0x4a34,4}}, {{0x2a47,3},{0x6140,3}}, + {{0xcd1,2},{0xe7f,2}}, {{0x1019,4},{0x8d71,4}}, {{0x19b9,1},{0x26768,2}}, {{0x24b6,5},{0x8a0f,6}}, + {{0x41ed,4},{0x2815,7}}, {{0x1715a,6},{0x16694,4}}, {{0x1959,3},{0xeee,3}}, {{0xe33,1},{0x293e,5}}, + {{0x120b,4},{0xe6b,4}}, {{0xe2f,1},{0x11cb,3}}, {{0x16a7,3},{0x8129,4}}, {{0x23da3,5},{0x1064,3}}, + {{0xe32,1},{0xe25,2}}, {{0xe7a,2},{0xe2b,2}}, {{0x1447,7},{0x2e28,6}}, {{0xf0a,3},{0xe30,3}}, + {{0x1428e,8},{0xf7a,2}}, {{0x3d0f,11},{0xf23,3}}, {{0xee59,3},{0x4415,3}}, {{0x28b2,8},{0x138e,3}}, + {{0x2966,5},{0xcc7,1}}, {{0x1ea30,6},{0x1b0d,3}}, {{0x1747,4},{0xebb,3}}, {{0x442b,3},{0xcd3,1}}, + {{0x9219,5},{0x1859,4}}, {{0x17661,2},{0xe21,1}}, {{0x1607,5},{0x1a71,4}}, {{0x4765,3},{0x8,2}}, + {{0xefb,3},{0x1be9,3}}, {{0xf4f,1},{0x1b6a,6}}, {{0x15fc,2},{0x6,1}}, {{0x2006,3},{0x1b5a2,6}}, + {{0x457b,5},{0x1244,7}}, {{0x1081,4},{0x5538,2}}, {{0x1e80,11},{0x1e8b,4}}, {{0x486f,5},{0x149f,3}}, + {{0xe83,5},{0xa35e,7}}, {{0x3b17,9},{0xfdd,4}}, {{0x115e,7},{0x1187,6}}, {{0x9da1,6},{0x320b,5}}, + {{0x119b0,5},{0x3075,4}}, {{0x2fffb,4},{0x45,1}}, {{0x10efb,6},{0x6eee,4}}, {{0x445b,2},{0x442d,1}}, + {{0x7170,6},{0xed9,2}}, {{0x7929,4},{0x1fbe,3}}, {{0xbb4,2},{0xc287,2}}, {{0xcbd,1},{0x113f,2}}, + {{0x307bb,1},{0xcd6,1}}, {{0x532c,9},{0x5342,3}}, {{0xa10d,8},{0xec6,3}}, {{0x2a29,7},{0x96c4,4}}, + {{0x1be,2},{0xd,1}}, {{0x840c,5},{0x286d,3}}, {{0xe1f,3},{0x1fbe,3}}, {{0xdd46,4},{0xf62,3}}, + {{0x5cab,7},{0xe69,6}}, {{0x46bf,1},{0x2c21,4}}, {{0x10587,5},{0xe11,1}}, {{0x4781,3},{0x2ea14,2}}, + {{0xe5b,3},{0x3756,3}}, {{0xb,1},{0x128c,4}}, {{0xcb8,1},{0xcc3,2}}, {{0xe37,4},{0xe3b,2}}, + {{0x14f9,3},{0x9a6,1}}, {{0xf79,3},{0x17ec,4}}, {{0xbfcd,5},{0xe552,5}}, {{0x1f7f,5},{0x15fe,4}}, + {{0xafe9,8},{0xec6,3}}, {{0x14f7,5},{0xcc5,3}}, {{0xc05d,4},{0xe22,2}}, {{0x7935,5},{0xecb,2}}, + {{0x2501,11},{0x1663,4}}, {{0x2e27d,1},{0xb74,3}}, {{0x7a,2},{0x7b,1}}, {{0x4295,5},{0x72d3,3}}, + {{0x12b2,12},{0x12be,5}}, {{0x2e866,2},{0xd1a,2}}, {{0x9a6,1},{0x113f,2}}, {{0xe0e0,5},{0x1632,5}}, + {{0x1f25,4},{0x150e,6}}, {{0xf89,5},{0x10e9,9}}, {{0xe13,3},{0xe11,2}}, {{0xe6b,3},{0xe67,2}}, + {{0x145b,2},{0x138e,2}}, {{0x30357,1},{0x7905,1}}, {{0x2006,6},{0x1382,5}}, {{0xccd,4},{0xec6,3}}, + {{0xcd3,2},{0x21a5,5}}, {{0xe16,1},{0xcd2,2}}, {{0x1937,5},{0x1e270,4}}, {{0x19b9,1},{0x6,1}}, + {{0x12e5,3},{0x1230,3}}, {{0x1f25,4},{0x141d4,6}}, {{0x2afc6,2},{0x2afc8,2}}, {{0xe71,1},{0xe77,3}}, + {{0x27e0,3},{0x9e34,3}}, {{0xee4,4},{0x1ff9,4}}, {{0x465d,2},{0x1303,3}}, {{0x2df3b,4},{0xc2,2}}, + {{0x1507,8},{0x17cd,4}}, {{0x17556,7},{0x1059,3}}, {{0x25c1b,6},{0x2,1}}, {{0x12e5,3},{0x30c6,3}}, + {{0x1977,3},{0xf69,3}}, {{0x1969,1},{0x3153,7}}, {{0x16a7,3},{0x2d8d,3}}, {{0x12ccc,6},{0x1ce7,4}}, + {{0xe80,2},{0x1050,3}}, {{0x242eb,7},{0x1f875,1}}, {{0x4d72,3},{0x2e2c,3}}, {{0x591d,5},{0x9a6,1}}, + {{0xf11,1},{0xed9,2}}, {{0xf0a,3},{0x28f5,5}}, {{0xe08,1},{0x2c85,2}}, {{0x7d3d,9},{0xec6,3}}, + {{0xe99,1},{0x1692,5}}, {{0xd04a,8},{0xe11,1}}, {{0x1827,4},{0x11530,4}}, {{0x103ae,4},{0x7c3d,4}}, + {{0x4871,2},{0xcc7,1}}, {{0x10a,2},{0x7b,1}}, {{0xe83,6},{0xa2c3,6}}, {{0x478f,3},{0x2a4e1,4}}, + {{0x1577,7},{0x157e,9}}, {{0xe97,3},{0x123e,3}}, {{0x1c5e6,6},{0x373c,3}}, {{0x9a6,1},{0x174a,4}}, + {{0xf0c,1},{0x10b9,2}}, {{0x225eb,6},{0xe11,1}}, {{0x3537,2},{0xec6,3}}, {{0x7b2d,7},{0xe92,3}}, + {{0x54cc,5},{0xe6b,3}}, {{0x1817,4},{0xcb7,2}}, {{0xad85,6},{0xcbd,1}}, {{0x1537,4},{0xee9,2}}, + {{0x20382,2},{0xe16,1}}, {{0x1fea6,6},{0x1e2f,3}}, {{0xa1c1,5},{0xeb7,7}}, {{0x6cd1,6},{0x2dd7,4}}, + {{0x1da0d,6},{0xcba,2}}, {{0x1c8b6,6},{0x1601,3}}, {{0xf,1},{0x152,2}}, {{0x10c3d,5},{0x188a,4}}, + {{0xf59,3},{0x2269,4}}, {{0x11d9,3},{0x3294,8}}, {{0xcb8,1},{0x3e23,4}}, {{0xee4,4},{0x516b,7}}, + {{0xc015,4},{0xcba,2}}, {{0xf77,4},{0xcd1,5}}, {{0x122d,2},{0x8666,2}}, {{0xed9,2},{0x1559,3}}, + {{0xcdf8,5},{0x28f5,5}}, {{0x41a7,5},{0x1944,3}}, {{0x3a3d,5},{0xec6,3}}, {{0x1939,2},{0xe13,3}}, + {{0x712f,4},{0x4ef1,4}}, {{0xcd3,1},{0xcc6,2}}, {{0x44,2},{0x9f,1}}, {{0x331f,3},{0x33d3,2}}, + {{0x19289,6},{0x3599,3}}, {{0xb,1},{0xe25,2}}, {{0x8b59,6},{0x8b9b,6}}, {{0x1ee71,5},{0xfb8,3}}, + {{0xc36,2},{0x2e2b1,2}}, {{0x27e0,3},{0x6,1}}, {{0x1d98f,6},{0xed6,2}}, {{0x2e211,4},{0x7b,1}}, + {{0x12e5,5},{0xc3d0,3}}, {{0x40f1,9},{0xe11,1}}, {{0x30f9,7},{0x2833,7}}, {{0x393b,5},{0x1b0a6,4}}, + {{0x109b,2},{0xfa6,3}}, {{0x10e1f,4},{0x1569,2}}, {{0x1ff7,3},{0x72d3,3}}, {{0xe32,1},{0xcb7,2}}, + {{0x10e1f,4},{0x6008,3}}, {{0x90f9,7},{0xe016,4}}, {{0x18732,5},{0xf86,3}}, {{0x27e0,4},{0x1252,3}}, + {{0x71b1,6},{0x4aef,3}}, {{0xe0a,1},{0xe63,2}}, {{0x487d,8},{0xe69,6}}, {{0x1d3c,3},{0x1c0f,5}}, + {{0x10d6,5},{0x6176,4}}, {{0x12f74,6},{0xe95,2}}, {{0x18fc2,3},{0x1317,2}}, {{0x14f0,3},{0x1d7e,3}}, + {{0xf4f,1},{0xfcb,2}}, {{0x1208,7},{0x120f,3}}, {{0x5541,7},{0xec6,3}}, {{0x24d5e,2},{0xe19,1}}, + {{0x2a47,3},{0x4d27,7}}, {{0x7f41,4},{0x7f45,5}}, {{0xccd,3},{0xed5,3}}, {{0x1b52a,6},{0xc300,3}}, + {{0x1e9e,4},{0x1abb0,4}}, {{0xe4a8,7},{0xef3,4}}, {{0x2e866,2},{0x30861,2}}, {{0x11165,3},{0xe5e,2}}, + {{0x7421,4},{0xe22,2}}, {{0x11b5,2},{0xeb5,2}}, {{0x4,1},{0xf68,2}}, {{0x8505,8},{0xcc9,2}}, + {{0x56c7,5},{0x1373,2}}, {{0x1ccd,5},{0x3b49,6}}, {{0x6,2},{0xcd2,2}}, {{0x1e62,4},{0xf07f,4}}, + {{0x1decc,6},{0x1085,3}}, {{0x116d8,5},{0x15bf7,4}}, {{0x79c5,4},{0xf13,2}}, {{0x3537,2},{0xed6,2}}, + {{0x49bf,3},{0xe67,2}}, {{0xe97,3},{0xe99,1}}, {{0x2c15,3},{0xf35,2}}, {{0x1bbf,4},{0x16921,5}}, + {{0x2ba5,1},{0xe67,2}}, {{0x4781,3},{0x142a,3}}, {{0x70ad,3},{0x72d3,3}}, {{0x2d11,3},{0xe31,2}}, + {{0x164,2},{0xf,1}}, {{0x41b5,7},{0x41ca,6}}, {{0xecb,2},{0x6d42,4}}, {{0x181b,3},{0x5669,3}}, + {{0x1bef,2},{0xe0d,2}}, {{0xb199,7},{0xb1a0,5}}, {{0xcc3,2},{0x1489,2}}, {{0x562b,5},{0xed9,2}}, + {{0x40f1,9},{0x18b4,3}}, {{0xb3f1,3},{0xab27,5}}, {{0x11331,5},{0x6,1}}, {{0x3d0f,6},{0x1702,4}}, + {{0xe83,3},{0xee9,2}}, {{0xeee,3},{0xcc3,2}}, {{0xcc1,1},{0x1ebf,3}}, {{0xeaa,2},{0xe13,3}}, + {{0xcbf,2},{0xf3a,3}}, {{0xf4f,1},{0xfe6,2}}, {{0x10a3,3},{0xecb,2}}, {{0x1943,2},{0xed6,2}}, + {{0x1c46c,7},{0xa,2}}, {{0x4781,3},{0xf0c,1}}, {{0x4519,4},{0x6,2}}, {{0x66b9,8},{0x30f4,4}}, + {{0x824d,4},{0x7948,5}}, {{0x1947,5},{0x50db,8}}, {{0x200f8,5},{0xcd3,1}}, {{0xb67b,3},{0x278f,6}}, + {{0x14edc,6},{0x13e4,3}}, {{0x9af,2},{0x18ed6,2}}, {{0x1898a,6},{0xe67,2}}, {{0xcc1,1},{0x1025,1}}, + {{0x111a,3},{0xe11,1}}, {{0x4615,5},{0x6326,4}}, {{0x1957,5},{0xdb21,3}}, {{0x10c5,4},{0xf277,4}}, + {{0x1f18,3},{0xe0a,1}}, {{0x9219,5},{0x1b031,4}}, {{0x18232,5},{0x9,1}}, {{0xf0c,1},{0xcbf,2}}, + {{0x205a1,1},{0x30dc1,2}}, {{0x16fe8,7},{0x8913,3}}, {{0xb619,5},{0xeb4,3}}, {{0x4861,4},{0x23987,4}}, + {{0x8d,1},{0x152,2}}, {{0xe33,1},{0x6,1}}, {{0xb3f1,3},{0xf4f,1}}, {{0xb5ad,5},{0x1040,3}}, + {{0xf15,1},{0x442d,1}}, {{0x1be,2},{0x3e0,2}}, {{0x1e65,3},{0xf24,2}}, {{0x112b,5},{0x13ae,5}}, + {{0x13a7,5},{0xa,2}}, {{0xe6f,3},{0x2b88,4}}, {{0x2a92,6},{0x12bf,4}}, {{0x10b6a,5},{0x10b6f,6}}, + {{0x1756a,6},{0x987b,4}}, {{0xf,1},{0x260,2}}, {{0x1c91,4},{0x3fd0,9}}, {{0x478f,3},{0x404f,3}}, + {{0x29cf,3},{0x26768,2}}, {{0x3bcd,4},{0x20fbd,4}}, {{0x2a64a,6},{0xe11,1}}, {{0x11559,5},{0xe67,2}}, + {{0x1467,4},{0xfcb,2}}, {{0x1827,4},{0x1130,2}}, {{0x5d7b,6},{0x22fe,5}}, {{0xe6f,4},{0x8f2c,5}}, + {{0x7f41,4},{0x2dd7,4}}, {{0x2966,5},{0xeed,2}}, {{0x1dee,2},{0xe0a,1}}, {{0x113c,3},{0x3537,2}}, + {{0x27ef,4},{0xf9d2,5}}, {{0x10c5,5},{0x80f6,4}}, {{0xd428,8},{0xec6,3}}, {{0x562b,8},{0x3554,5}}, + {{0x4597,5},{0x1cd4,5}}, {{0xe21,1},{0x2d11,3}}, {{0xe11,1},{0xe0d,2}}, {{0x69d2,9},{0xe6b,4}}, + {{0x19c7,7},{0xf6e,9}}, {{0x27ef,4},{0xb3c8,3}}, {{0x22b83,5},{0xf91,3}}, {{0xccd,1},{0x4cc2,3}}, + {{0x2114,10},{0xe11,1}}, {{0xe88,3},{0x13a73,5}}, {{0x4853,3},{0x260e9,2}}, {{0x1763e,4},{0xf91,3}}, + {{0x11b5,2},{0x27dc,4}}, {{0xef7,4},{0x1722,5}}, {{0x1ca27,7},{0xf7a,2}}, {{0x28fbe,4},{0x29674,2}}, + {{0x6ba8,5},{0xcc9,2}}, {{0x2e217,4},{0x8d,1}}, {{0xe16,1},{0xecb,2}}, {{0x46bd,3},{0xf0c,1}}, + {{0x478f,3},{0x1790,6}}, {{0x17f7,8},{0xed9,2}}, {{0xf29f,6},{0xf2a5,5}}, {{0x1317,4},{0x1317,4}}, + {{0x1423e,5},{0x14243,5}}, {{0x2054a,2},{0x19b9,1}}, {{0xf80,2},{0x8,1}}, {{0x1e2e0,4},{0xede,1}}, + {{0xe21,1},{0xa,2}}, {{0xf478,7},{0xec6,3}}, {{0x1e120,3},{0x156a,3}}, {{0xe5b,3},{0xfdf,4}}, + {{0x29cf,3},{0xe989,5}}, {{0xfac9,5},{0x10d3,3}}, {{0x39d5,7},{0x1de7,3}}, {{0x27d05,6},{0xe11,1}}, + {{0x2777,6},{0x2663,6}}, {{0xd147,5},{0xcc8,3}}, {{0x2948,4},{0xc5f3,7}}, {{0x9b31,8},{0xcc9,2}}, + {{0x97d1,7},{0xe2b,2}}, {{0x125d,6},{0x161d4,4}}, {{0x10d85,6},{0x5dd0,3}}, {{0x4e3f,8},{0xe11,1}}, + {{0xf,1},{0x578,2}}, {{0x10b4,4},{0x12b72,6}}, {{0x113c,4},{0x61bb,4}}, {{0x712f,4},{0xfcb,2}}, + {{0x10a3,3},{0x2bb2,3}}, {{0x7414,3},{0xf16,2}}, {{0xe86,2},{0x8,1}}, {{0x1bbf,9},{0xfdd,6}}, + {{0xf15,1},{0x246d7,4}}, {{0x2f55,9},{0xebb,3}}, {{0x19d66,6},{0xcc9,2}}, {{0xf70,2},{0xb496,3}}, + {{0xec6,3},{0xf7a,2}}, {{0x205a1,1},{0xaf4,1}}, {{0x127f,4},{0xe31,2}}, {{0x11b3,5},{0xcc9,2}}, + {{0x2ba2,3},{0x7d1f,3}}, {{0xb49b,7},{0x2f2e,3}}, {{0x9345,5},{0xe7f,2}}, {{0xe61,4},{0x2ea8,5}}, + {{0xe22,3},{0xcd3,1}}, {{0x1dee,2},{0x1f38,1}}, {{0xcd3,2},{0x2280,2}}, {{0x9a8,1},{0x7d99,4}}, + {{0xc1d1,4},{0x18eb6,6}}, {{0x13a7,5},{0x2261,3}}, {{0x28000,6},{0xe11,1}}, {{0x4767,1},{0xf12,3}}, + {{0x48da,2},{0xf11,1}}, {{0x1427,9},{0xeb7,7}}, {{0x3a29,4},{0xf1f,3}}, {{0xf77,3},{0x27464,4}}, + {{0x478f,3},{0xfb8,3}}, {{0x12f6,6},{0xac2f,6}}, {{0x1905b,6},{0xec6,3}}, {{0x550d,7},{0xec3,3}}, + {{0x662a,8},{0x2f26,5}}, {{0xf89,3},{0xe7f,3}}, {{0xe78,1},{0xe1c,3}}, {{0x1827,6},{0x587c,5}}, + {{0x3591,6},{0xe95,2}}, {{0x22e5,4},{0x372d,4}}, {{0x2966,5},{0x9a8,2}}, {{0x1f76,5},{0x1f7b,4}}, + {{0x39b9,8},{0x18b4,3}}, {{0xaaf,2},{0xd18,24}}, {{0x2e217,4},{0xf,1}}, {{0xc7ff,6},{0x2f2e,3}}, + {{0x1a07,3},{0x183a,3}}, {{0x11d01,5},{0xfc7,3}}, {{0xe16,1},{0xe7a,1}}, {{0x14f7,5},{0x87aa,7}}, + {{0x2b46,4},{0x1944,3}}, {{0x2df3b,4},{0xd,2}}, {{0x1367,3},{0x157de,4}}, {{0x425d,8},{0xaf9d,4}}, + {{0x109b,2},{0xe5d8,4}}, {{0x7f41,4},{0x1153,3}}, {{0x1f4fb,6},{0xeca,3}}, {{0xad19,6},{0xe0d,2}}, + {{0x19670,5},{0x126a,3}}, {{0xf70,2},{0xcc7,1}}, {{0xf77,3},{0x5538,2}}, {{0x1467,4},{0xe65,2}}, + {{0x154b8,6},{0x1392,3}}, {{0x1ebf,3},{0xbf50,5}}, {{0x1827,4},{0xe7f,2}}, {{0xcce,2},{0xfdd,6}}, + {{0x4551,6},{0x344b,4}}, {{0x4781,3},{0xf0d,2}}, {{0x550d,5},{0x2,1}}, {{0x383f,7},{0x1f7b,4}}, + {{0xe6f,3},{0xe0d,2}}, {{0x48d0,2},{0xe16,1}}, {{0x2d38f,4},{0x2054a,2}}, {{0x111c6,5},{0x269f,6}}, + {{0x1234e,7},{0xa0bd,3}}, {{0x10361,5},{0xf69,3}}, {{0xeee,3},{0xebb,3}}, {{0x4765,3},{0x1317,2}}, + {{0xed40,6},{0xcc3,2}}, {{0x20382,2},{0xf4f,1}}, {{0xf4d0,6},{0x1a9a,4}}, {{0x11b3,6},{0xe67,7}}, + {{0xf0a,3},{0x10cb,4}}, {{0xf512,6},{0x5,1}}, {{0xaf4,4},{0xaf4,3}}, {{0x2eb3a,3},{0x1327,1}}, + {{0xf89,3},{0x28d2,3}}, {{0xe21,1},{0x180a,3}}, {{0x2e7ec,6},{0x18ee0,2}}, {{0x1109,5},{0x11a6,2}}, + {{0x4385,3},{0xec6,3}}, {{0xe09,1},{0x138e,3}}, {{0x4853,3},{0x9a4,3}}, {{0x17dc,3},{0x1040,3}}, + {{0x7d0d,5},{0xe5e9,3}}, {{0x1c73,5},{0x12f8d,5}}, {{0xe97,3},{0x196cd,6}}, {{0x409d,8},{0x40a5,6}}, + {{0x1467,4},{0x3208,3}}, {{0x2de7b,3},{0x1f4,2}}, {{0xe1f,3},{0x1153,3}}, {{0x4d48,10},{0xebb,3}}, + {{0x9af,2},{0xc78,2}}, {{0x18f7,4},{0x59c0,5}}, {{0xf4f,1},{0x12fa,3}}, {{0x12e5,3},{0x2c85,2}}, + {{0x11137,7},{0x113f,2}}, {{0x25e2,9},{0xcc9,2}}, {{0xe4c9,6},{0x2dd7,4}}, {{0x13050,5},{0xcb8,1}}, + {{0x4fa2,5},{0x1e83,3}}, {{0x4781,3},{0xcc3,3}}, {{0x28b31,3},{0x28b3e,4}}, {{0xf8,2},{0x57,1}}, + {{0x1677,3},{0x1b8de,6}}, {{0x2b50b,2},{0x29979,2}}, {{0x1a29a,6},{0xe0a,1}}, {{0x19b7,3},{0x2d8f0,3}}, + {{0xe35e,6},{0xf62,3}}, {{0x1ebc,5},{0x6e91,3}}, {{0x111a,3},{0x6ec3,3}}, {{0xe16,1},{0x1025,1}}, + {{0xacc5,6},{0x77b2,5}}, {{0x12d4,3},{0xb37b,1}}, {{0xcda0,4},{0x12a3,3}}, {{0x1ee95,5},{0xf1a,2}}, + {{0x10b9,3},{0xeed,4}}, {{0x1edfc,5},{0x2cad,3}}, {{0xf89,3},{0x2c59,4}}, {{0xcda0,4},{0x5e27,3}}, + {{0x164,2},{0x8d,1}}, {{0x1b5e7,7},{0xe95,2}}, {{0x18bce,6},{0x17f52,4}}, {{0x1b86f,4},{0xf02,2}}, + {{0x1a7e9,6},{0xec6,3}}, {{0x39b9,4},{0x6,2}}, {{0x450b,4},{0x24447,4}}, {{0x1a58,3},{0xec6,3}}, + {{0x1777,5},{0xcc3,2}}, {{0x127f,4},{0x10672,4}}, {{0x1f0d9,3},{0x11b5,2}}, {{0x76d2,9},{0xe6b,3}}, + {{0x8379,8},{0x1040,3}}, {{0x83d9,7},{0x83e0,5}}, {{0x19b7,3},{0x28478,4}}, {{0x6,2},{0x16e3,4}}, + {{0x1556c,6},{0x15572,4}}, {{0xa659,5},{0x7b72,3}}, {{0x4f50,6},{0x60b5,6}}, {{0x15a62,7},{0xec6,3}}, + {{0x19b9,1},{0xe89,3}}, {{0x2e273,1},{0x28b33,1}}, {{0x57be,5},{0xfbb,4}}, {{0xb9c1,9},{0xf23,3}}, + {{0x4781,3},{0x3e0e,3}}, {{0x2e211,4},{0x8d,1}}, {{0x3f07,11},{0xe77,3}}, {{0xe77,2},{0xe69,5}}, + {{0xa749,9},{0xcc9,2}}, {{0x1944,3},{0x1a5e,3}}, {{0x12e5,3},{0x1cd2,3}}, {{0x11d0a,5},{0x1c2a,4}}, + {{0x46af,3},{0x11a6,2}}, {{0x2b0a8,4},{0x3100f,2}}, {{0x24d5e,2},{0x4767,1}}, {{0x19b9,1},{0x2c910,3}}, + {{0x28d0,4},{0x15bf7,4}}, {{0xe88,3},{0x13b27,5}}, {{0xe0f,1},{0xfa1,2}}, {{0x3a53,4},{0xfb0,3}}, + {{0x10b6a,5},{0x7978,5}}, {{0x1a66,1},{0x4524,3}}, {{0x6ba6,7},{0x172e,5}}, {{0x1081,7},{0x1ba8,8}}, + {{0x2de93,4},{0xe,1}}, {{0xc6f7,5},{0xde07,3}}, {{0x1cfa,5},{0x43c0,4}}, {{0xf0c,1},{0x3385,6}}, + {{0x328f,9},{0xed6,2}}, {{0xb37b,1},{0xcc3,3}}, {{0x7d0d,5},{0x194ce,4}}, {{0x10cb,2},{0x13e3,4}}, + {{0x316e,3},{0xe2b,2}}, {{0x12e5,3},{0x843c,3}}, {{0x183b,3},{0x3694,3}}, {{0x3a29,5},{0xcce,2}}, + {{0x27f1,3},{0xeab,2}}, {{0x1747,4},{0xe61,3}}, {{0x2948,3},{0xcd4,2}}, {{0x11f25,5},{0xabff,4}}, + {{0x478f,3},{0xe717,4}}, {{0xe5b,3},{0x41bd,6}}, {{0x2cbaf,5},{0x19b9,1}}, {{0x4519,4},{0xed9,2}}, + {{0x1ef9a,6},{0x1004,3}}, {{0x185ca,7},{0xe67,2}}, {{0x12e5,3},{0x18b4,3}}, {{0xede,1},{0x2,1}}, + {{0x29cf,3},{0xec6,3}}, {{0x18f7,7},{0x1088,4}}, {{0xe78,1},{0xcc3,2}}, {{0x7636,5},{0xa833,6}}, + {{0x172a4,6},{0xfdd,4}}, {{0xb3f1,3},{0xcc3,2}}, {{0x2948,4},{0x2c3b,5}}, {{0x16d7,6},{0x49b5,5}}, + {{0x4853,3},{0x41d4,5}}, {{0x31441,2},{0x205a1,1}}, {{0x433d,4},{0xcc3,2}}, {{0x18714,6},{0xe95,2}}, + {{0x1ff7,3},{0xe22,2}}, {{0x1f984,4},{0x5863,3}}, {{0x31f8,3},{0xcc9,2}}, {{0x1cfa,5},{0x7ca8,5}}, + {{0x22b8,4},{0xcce,2}}, {{0xb8dd,5},{0xe5e9,3}}, {{0xe3d,4},{0x2ad7d,2}}, {{0x1290,4},{0xfc7,3}}, + {{0xe256,8},{0x492e,3}}, {{0x2b46,4},{0x3bff,3}}, {{0x277a,3},{0x7979,4}}, {{0x5c95,3},{0xe2b,2}}, + {{0x1005,2},{0x1ebf,3}}, {{0x19b7,3},{0x4e43,4}}, {{0xc76,32},{0xc76,32}}, {{0x205a7,1},{0x205a7,1}}, + {{0x71be,5},{0xb3af,6}}, {{0x8265,7},{0x2c6a,5}}, {{0x1647,5},{0xa93b,6}}, {{0x129ac,6},{0x1569,4}}, + {{0x7911,6},{0x7917,6}}, {{0xcbf,2},{0x1b4f,7}}, {{0xe0eb,5},{0x1832,5}}, {{0x7416,1},{0xf0c,1}}, + {{0x5c02,5},{0xa,2}}, {{0xe99,1},{0x8666,2}}, {{0xbc01,4},{0x103e,5}}, {{0x12e,2},{0x7b,1}}, + {{0xfa50,5},{0xcc1,1}}, {{0xfe3,4},{0xe92,3}}, {{0xf65,4},{0x2c65,10}}, {{0x109c8,9},{0xcc9,2}}, + {{0x29cf,3},{0x11f3e,4}}, {{0x478f,4},{0x2781,5}}, {{0x1ea30,5},{0xed9,2}}, {{0x4781,3},{0xbbfc,5}}, + {{0x114de,4},{0x123be,4}}, {{0x4ef5,4},{0x142d,3}}, {{0x4773,4},{0xcc8,1}}, {{0x4781,3},{0x2212f,3}}, + {{0x2b0a8,6},{0x2e2b3,2}}, {{0x11c,2},{0x8d,1}}, {{0xf15,1},{0xf92,2}}, {{0x12e5,3},{0xf194,3}}, + {{0x10ef0,5},{0xd10a,6}}, {{0x302,2},{0x8d,1}}, {{0x63ba,6},{0x1059,3}}, {{0x15eae,7},{0x1150,2}}, + {{0x4765,3},{0x1780,3}}, {{0xcc8,1},{0xb37c,3}}, {{0xb841,5},{0x11131,6}}, {{0x13fdc,5},{0x57d2,4}}, + {{0x4781,3},{0x19b9,1}}, {{0xe67,2},{0xf0d,2}}, {{0x46af,3},{0x1e373,4}}, {{0xdb08,8},{0x1be9,3}}, + {{0x1692,2},{0xcd3,2}}, {{0x457b,8},{0x2269,4}}, {{0xe0b,2},{0x1373,2}}, {{0xb805,8},{0xad87,4}}, + {{0x1677,4},{0xd886,4}}, {{0x1967,3},{0x594d,4}}, {{0xf0c,1},{0x331f,3}}, {{0x2d97d,4},{0x46bf,1}}, + {{0xee4,4},{0x5bb9,4}}, {{0x1d0,2},{0xd,1}}, {{0x7351,5},{0xdf59,5}}, {{0x4853,3},{0xf12,3}}, + {{0x9a8,1},{0x7f83,6}}, {{0xe61,3},{0x5912,5}}, {{0x3a7d,7},{0x809a,3}}, {{0x478f,3},{0xd3b4,6}}, + {{0x26921,2},{0xe33,1}}, {{0xf0a,3},{0xcc4,2}}, {{0x1a47,4},{0xf0f,2}}, {{0x5538,2},{0x57d2,4}}, + {{0x10bac,5},{0x1d75,3}}, {{0x3bcd,4},{0xfda,5}}, {{0x2867,11},{0x1f7b,4}}, {{0x2e280,3},{0xb74,1}}, + {{0x311a9,2},{0x2afe0,2}}, {{0x1a63,3},{0xcc9,2}}, {{0x121f0,5},{0x56a8,5}}, {{0x7995,5},{0xcba,2}}, + {{0x10e1f,4},{0x5849,4}}, {{0xcbd,1},{0x155e,3}}, {{0xcc3,2},{0x138e,2}}, {{0x1f37a,6},{0xe0a,1}}, + {{0x2280,2},{0x4187,3}}, {{0x2d95,5},{0x8b31,4}}, {{0x1969,1},{0x17661,2}}, {{0x9af,2},{0x78a9,2}}, + {{0x1ed7e,5},{0x1db4,4}}, {{0x1189d,4},{0x25957,4}}, {{0xcbd,1},{0x1569,2}}, {{0x1088,3},{0x138e,3}}, + {{0x14a7,4},{0x1316c,6}}, {{0x1b2b4,5},{0xf3a,3}}, {{0xfb7,3},{0xe0a,1}}, {{0xaea5,8},{0x5909,4}}, + {{0x2e346,2},{0x2b0e8,2}}, {{0x465b,4},{0xcc3,2}}, {{0x70ad,3},{0xf0d,2}}, {{0x10bee,5},{0xfdd,6}}, + {{0x110c9,7},{0x5e43,3}}, {{0x20591,2},{0x20591,2}}, {{0x10172,7},{0xed6,2}}, {{0x3d55,5},{0xe77,3}}, + {{0x7416,1},{0x1303,3}}, {{0x111a,3},{0x10197,4}}, {{0x10760,7},{0x3ebb,4}}, {{0x94ad,5},{0xef5,2}}, + {{0x2510,4},{0x4,1}}, {{0x215b1,5},{0xe11,1}}, {{0x1593,3},{0xe0d,2}}, {{0xf0a,3},{0x6d4e,5}}, + {{0xe32,1},{0x1d7d,3}}, {{0x10cb4,6},{0x296e,4}}, {{0x4,1},{0x9a8,1}}, {{0x315b,9},{0xf72,5}}, + {{0xe09,1},{0xf0f,2}}, {{0x1e9e,5},{0x3b48,7}}, {{0x25283,6},{0xe0d,2}}, {{0x17bb6,5},{0xe89,2}}, + {{0x8691,8},{0x13e3,4}}, {{0x1dde2,5},{0x10cb,4}}, {{0x38ec,3},{0xe11,1}}, {{0x1885e,6},{0x162c,3}}, + {{0x1567,3},{0x3643,4}}, {{0x2de93,4},{0x69,1}}, {{0x121a7,3},{0x2d11,3}}, {{0xe7d,2},{0x1722,5}}, + {{0x4853,3},{0x20bed,4}}, {{0x44f1,3},{0x4dcf,6}}, {{0x6164,5},{0x72d3,3}}, {{0x1cf1e,6},{0xfa6,3}}, + {{0x2213,8},{0x129a,7}}, {{0xf1a,2},{0x1b41,4}}, {{0x48d3,2},{0x1e2f0,2}}, {{0xbfcd,5},{0x1832,3}}, + {{0x2e889,3},{0xa,2}}, {{0x17efe,6},{0x17f04,4}}, {{0x46bd,3},{0x7921,3}}, {{0x8799,7},{0x1c85,3}}, + {{0x12e7,3},{0x293d,3}}, {{0x10a,2},{0x8d,1}}, {{0x8481,8},{0xed9,2}}, {{0x1a27,4},{0x18e3e,6}}, + {{0x46af,3},{0x2ba5,1}}, {{0x10a3,3},{0xce76,6}}, {{0xe6f,3},{0xf59,2}}, {{0x1f03f,2},{0x4767,1}}, + {{0xcc1,1},{0x6fe1,3}}, {{0xbba1,4},{0x5d56,3}}, {{0x9d41,6},{0xee64,5}}, {{0x2f9e3,4},{0x19b9,1}}, + {{0xe86,3},{0xf91,3}}, {{0x112b,5},{0xe80,2}}, {{0x10b40,3},{0x10b43,6}}, {{0x29cf,3},{0x21e16,5}}, + {{0xcc9,2},{0xcd3,2}}, {{0x8f0d,10},{0xcc9,2}}, {{0x6832,9},{0x1b41,4}}, {{0x1f03f,2},{0xe08,1}}, + {{0x1307,8},{0x1307,8}}, {{0x12e5,4},{0x13041,4}}, {{0xdaa5,7},{0x3075,4}}, {{0xe33,1},{0xede,1}}, + {{0x6140,3},{0x1d75,3}}, {{0x15af1,4},{0xcd3,2}}, {{0x9a6,1},{0x142d,3}}, {{0xa509,7},{0x6411,4}}, + {{0x4781,3},{0xe2f,1}}, {{0x8c55,8},{0xcc9,2}}, {{0x19f7,4},{0x6,1}}, {{0x750b,4},{0x10ba,3}}, + {{0x12d4,3},{0x11b5,2}}, {{0x2e864,4},{0x30861,2}}, {{0x759a,8},{0xf91,3}}, {{0xcc7,1},{0x1a336,5}}, + {{0x3a29,4},{0x1849,3}}, {{0x5717,4},{0x10f2,5}}, {{0x6685,9},{0xe11,1}}, {{0x1d0d,3},{0x16fd0,4}}, + {{0xe5e,2},{0xcd3,2}}, {{0xcb7a,8},{0x1392,3}}, {{0x46af,3},{0x19b9,1}}, {{0xf77,5},{0xe32,1}}, + {{0xcbd,1},{0x2ee9,3}}, {{0x79ad,7},{0x79b4,5}}, {{0x2b46,8},{0x10f2,5}}, {{0x1f07,7},{0x1663,3}}, + {{0x5717,4},{0xe69,5}}, {{0x1e9e,4},{0x1230c,2}}, {{0x1ade3,6},{0x121a7,3}}, {{0x10cb,2},{0xeb5,2}}, + {{0x1081,7},{0x3155,6}}, {{0xe8a,2},{0x12a2a,4}}, {{0xe0c,2},{0x44ad,3}}, {{0x2e217,4},{0x57,1}}, + {{0x1e2,2},{0xd,1}}, {{0xb34,32},{0xb34,32}}, {{0x1ff7,3},{0x951c,9}}, {{0x2a58,2},{0xcc1,1}}, + {{0x19b7,3},{0x1e2ed,2}}, {{0x794d,6},{0x4927,4}}, {{0x1467,4},{0xb1a1,4}}, {{0xf70c,5},{0xf711,6}}, + {{0x16f7,9},{0x1700,7}}, {{0x1969,1},{0xd086,3}}, {{0xe21,1},{0x5e94,5}}, {{0x68,2},{0x9f,1}}, + {{0xe21,1},{0x24d65,2}}, {{0xfb7,3},{0x2091,4}}, {{0x1150,2},{0x8,1}}, {{0x19a7,7},{0xebb,3}}, + {{0x2bd5,4},{0xcd3,2}}, {{0xbfe5,5},{0x66c2,3}}, {{0x1857,5},{0x1a71,3}}, {{0xe,1},{0x1ac,2}}, + {{0xb453,3},{0x289c,7}}, {{0x24633,5},{0xe95,2}}, {{0x9af,2},{0x308c1,2}}, {{0xccd,1},{0x1303,3}}, + {{0x284a6,5},{0xe67,2}}, {{0x1740c,7},{0x1a62,3}}, {{0x183b,3},{0xe80,2}}, {{0xe11,2},{0x27dc,4}}, + {{0xf65,4},{0x7bb5,8}}, {{0xe32,1},{0xc035,4}}, {{0x2a5e8,6},{0x442d,1}}, {{0x1392e,6},{0x1a70e,3}}, + {{0x21e6,10},{0xe69,5}}, {{0xe22,3},{0xec6,3}}, {{0x10a3,4},{0xfe0,2}}, {{0xbc79,6},{0x66c2,3}}, + {{0x2e211,4},{0x57,1}}, {{0x10e8d,5},{0x8951,3}}, {{0x2e193,4},{0x57,1}}, {{0xcc7,1},{0x1e3b,4}}, + {{0x1131b,5},{0xe5e9,3}}, {{0x127f,5},{0x7bd9,3}}, {{0xefdf,6},{0x153a,3}}, {{0xcc4,2},{0xf20,2}}, + {{0x12d4,3},{0x2d11,3}}, {{0xb,1},{0x1089,3}}, {{0xcc7,1},{0x142a,3}}, {{0x3965,6},{0xc3d0,4}}, + {{0x22b8,4},{0x1153,2}}, {{0xf528,7},{0xec6,3}}, {{0x173da,7},{0xeea,3}}, {{0x73b9,5},{0x1151,3}}, + {{0xadfd,7},{0xe11,1}}, {{0xf4f,1},{0x1569,4}}, {{0xcd6,8},{0xcd6,8}}, {{0x70ad,3},{0x123e,3}}, + {{0x1969,2},{0x113f,2}}, {{0x1a07,3},{0x2a4e2,2}}, {{0xcd2,2},{0x8,1}}, {{0x735e,5},{0x57b6,8}}, + {{0x46af,3},{0x174a,4}}, {{0x2de93,4},{0x8d,1}}, {{0x2a47,3},{0xedd,1}}, {{0x655a,7},{0x10f2,5}}, + {{0x2c475,4},{0x2af9f,2}}, {{0xe78,1},{0x4a01,3}}, {{0x7e81,7},{0xcd3,2}}, {{0x4f43,7},{0x1722,5}}, + {{0x6cc,2},{0x8d,1}}, {{0x10a5,2},{0xf68,2}}, {{0x10d01,6},{0x2e2c,3}}, {{0xf77,3},{0x1849,3}}, + {{0x1597,9},{0x1258,5}}, {{0x1e142,7},{0xe95,2}}, {{0x9219,5},{0x9,1}}, {{0x2e27d,1},{0x205a0,2}}, + {{0x4f9e,5},{0x1bef,2}}, {{0x5715,6},{0x10f2,6}}, {{0x465d,2},{0x14e5d,5}}, {{0x72d1,2},{0x155e,3}}, + {{0x17f08,5},{0xe2b,2}}, {{0x1a66,1},{0x1bfdd,5}}, {{0xc1ad,5},{0xcce,2}}, {{0x12f8,4},{0x101f,5}}, + {{0x1007,9},{0x1d32,4}}, {{0x9e,2},{0x7b,1}}, {{0x896d,9},{0xcc9,2}}, {{0x712f,4},{0xcb6,3}}, + {{0x4773,4},{0x10cb,4}}, {{0x22b2,3},{0x6,1}}, {{0x10bee,4},{0x1155,2}}, {{0x15332,7},{0xe11,1}}, + {{0xfb16,5},{0x345f,5}}, {{0xe2f,1},{0x26768,2}}, {{0x3915,4},{0x1040,3}}, {{0x10b7,2},{0xcc3,2}}, + {{0x4,1},{0xe6c,3}}, {{0x1131,3},{0xec6,3}}, {{0x1967,3},{0xcddd,5}}, {{0xd131,4},{0x9a7,3}}, + {{0x12e5,3},{0x11d5a,5}}, {{0x127f,5},{0x1284,8}}, {{0xf9b,8},{0x381d,6}}, {{0x1e2ed,2},{0x19b9,1}}, + {{0x5715,6},{0x6,1}}, {{0x2a92,6},{0xfb8,3}}, {{0x39d5,7},{0x18b2,5}}, {{0xcbd,1},{0x11dc,3}}, + {{0x7638,3},{0x775c,4}}, {{0x1be,2},{0x3f1,2}}, {{0x1088,3},{0xf59,2}}, {{0x1a132,5},{0xf62,3}}, + {{0x1163e,6},{0x2844,5}}, {{0xb,1},{0x1025,1}}, {{0x114d,5},{0x14513,5}}, {{0xed1,4},{0xd766,6}}, + {{0xf77,5},{0x8bd7,6}}, {{0x15a1c,7},{0xf7a,2}}, {{0x556,2},{0x8d,1}}, {{0x12e5,3},{0x10ba,6}}, + {{0x9a8,1},{0x344b,4}}, {{0xf4f,1},{0x1654b,7}}, {{0x1697,4},{0x1230c,2}}, {{0xed9,2},{0xe86,2}}, + {{0xef7,3},{0x16519,7}}, {{0x62df,4},{0x13e3,4}}, {{0xef7,3},{0xcc91,4}}, {{0x2948,4},{0xe0b,4}}, + {{0xe97,3},{0x1f2db,4}}, {{0x1692,2},{0xe86,2}}, {{0x111a,3},{0x21b64,5}}, {{0x70ad,3},{0x5,2}}, + {{0x1c0a,12},{0xcc9,2}}, {{0x478f,3},{0x18b4,3}}, {{0xc2,2},{0x9f,1}}, {{0x4765,3},{0xf4f,1}}, + {{0x29cf,3},{0x1780,3}}, {{0x1a84,8},{0xe11,1}}, {{0x2000e,6},{0x3075,3}}, {{0x1b04,3},{0x10ba,6}}, + {{0xaaf,2},{0xd18,2}}, {{0xe71,1},{0xe89,2}}, {{0x27e0,3},{0x6008,3}}, {{0x1e62,4},{0x24f7,5}}, + {{0xed1,4},{0x29d4,3}}, {{0x6dfc,7},{0xe69,6}}, {{0x29cf,3},{0x159a,6}}, {{0xfa6,3},{0xfa9,4}}, + {{0xac65,9},{0xf86,3}}, {{0x361d,9},{0xe69,5}}, {{0x1fdd7,5},{0x18773,2}}, {{0xcc8,2},{0xf20,2}}, + {{0x7414,3},{0x11a6,2}}, {{0xfb0,2},{0xe09,1}}, {{0x7e09,8},{0x7e11,4}}, {{0xf0a,3},{0x3642,2}}, + {{0x2add,6},{0x405d,7}}, {{0x1214,3},{0x794f,4}}, {{0x486f,4},{0xcd2,2}}, {{0xe97,3},{0x1150,2}}, + {{0x71c0,2},{0xcbac,5}}, {{0xe2f,1},{0xf4f,1}}, {{0x19b9,1},{0x6,2}}, {{0x1487,4},{0xcc8,1}}, + {{0x1ac7b,6},{0xec6,3}}, {{0xddb2,7},{0x2236,3}}, {{0x20550,2},{0x442d,1}}, {{0xe0b,2},{0xed6,2}}, + {{0x10d6,5},{0x70f8,3}}, {{0x478f,3},{0x73d6,2}}, {{0x101f,3},{0xec6,3}}, {{0x2,1},{0xf1d,1}}, + {{0xfb8,3},{0xe69,5}}, {{0x1a66,1},{0x10cb,4}}, {{0x73b9,5},{0x30f7,2}}, {{0x12e,2},{0xf,1}}, + {{0x2e211,4},{0x69,1}}, {{0xe21,1},{0xcb7,2}}, {{0x2b0a8,4},{0x2afc8,2}}, {{0xb0,2},{0x57,1}}, + {{0xe0c,2},{0x716c,4}}, {{0x2be3,5},{0xf63,2}}, {{0xfb8,3},{0xe1c,3}}, {{0x1e6b5,5},{0x15ee,4}}, + {{0x1607,5},{0x8dd0,5}}, {{0x8a75,10},{0xe95,2}}, {{0x1a07,3},{0x8,1}}, {{0x2,1},{0x29f3,3}}, + {{0x1ff7,3},{0xfb8,3}}, {{0x1160,5},{0x1165,4}}, {{0xce71,5},{0xce76,6}}, {{0xf205,5},{0xcc3,3}}, + {{0x4137,5},{0xf7a,2}}, {{0xe95,2},{0xe11,1}}, {{0x1977,3},{0x5e50,2}}, {{0x75e8,8},{0x1054,3}}, + {{0x22623,6},{0xcc9,2}}, {{0xede,1},{0x1766a,3}}, {{0xa85d,9},{0xec6,3}}, {{0x4781,3},{0xeee,3}}, + {{0xfa5,2},{0xcd3,1}}, {{0x148d8,7},{0xec6,3}}, {{0x5903,6},{0xbfca,3}}, {{0x46af,3},{0x286d,3}}, + {{0x11d5,5},{0x344b,4}}, {{0x3d39,6},{0xeb7,4}}, {{0x1601,3},{0xe86,2}}, {{0xcc1,1},{0xe09,1}}, + {{0x154a4,9},{0xe11,1}}, {{0x1c28,5},{0xed6,2}}, {{0x536d,9},{0x3694,3}}, {{0xb3f1,3},{0x2ba7,4}}, + {{0xf11,2},{0xec6,3}}, {{0x2a47,3},{0x26ba,3}}, {{0x7911,3},{0x8,1}}, {{0x1131b,5},{0xfa5,2}}, + {{0x2de93,4},{0xf,1}}, {{0x13050,6},{0x10f5,3}}, {{0x27e0,3},{0x1393,4}}, {{0x18174,5},{0x1085,3}}, + {{0x8c,2},{0x69,1}}, {{0x125d,6},{0x1288,4}}, {{0xc081,5},{0x1064,3}}, {{0x17661,2},{0xf0c,1}}, + {{0x127f,3},{0x793c,5}}, {{0x4199,5},{0xf80,2}}, {{0x4e4c,7},{0x3d17,6}}, {{0x75f5,6},{0xa3e3,6}}, + {{0x1967,3},{0x910c,5}}, {{0x1667,7},{0x5ddd,5}}, {{0x205a5,1},{0xb74,1}}, {{0x7911,3},{0x109b,2}}, + {{0x450b,4},{0xf35,2}}, {{0xff78,7},{0x10b7,2}}, {{0x7ac1,5},{0x2,1}}, {{0xcd3,3},{0xf01,4}}, + {{0x11b5,2},{0x1571,4}}, {{0x77e5,7},{0xf35,2}}, {{0x56c7,5},{0x6451,5}}, {{0x442b,3},{0x18fce,6}}, + {{0x4,2},{0x142d,3}}, {{0x29cf,3},{0x62f3,4}}, {{0x1747,4},{0x49b4,6}}, {{0x6bda,6},{0x5,1}}, + {{0x19b7,3},{0x22a3,2}}, {{0x4853,3},{0xce96,6}}, {{0x1fe16,6},{0xe0a,1}}, {{0x97a1,5},{0x22d9,7}}, + {{0xbb7d,5},{0x7a36,3}}, {{0x4781,3},{0x227e6,5}}, {{0x19b7,3},{0xbd18,9}}, {{0x19f7,4},{0x101d,3}}, + {{0x2e280,3},{0xaf4,1}}, {{0x4fab,10},{0xcc9,2}}, {{0xccc,2},{0xe32,1}}, {{0xf22,2},{0x3315,4}}, + {{0xf80,2},{0x1a9a,4}}, {{0xeda3,7},{0x1523,4}}, {{0xf176,9},{0xe95,2}}, {{0x1155,2},{0xed9,2}}, + {{0x1ccd,5},{0x566f,4}}, {{0xf15,1},{0xee9,2}}, {{0x3a45,5},{0x286d,3}}, {{0x9a6,1},{0xf1a,2}}, + {{0x12e5,3},{0x14a2,3}}, {{0x10e7,5},{0x1363b,5}}, {{0x3281,8},{0xe67,2}}, {{0x27b3,11},{0x1d05,4}}, + {{0x104d7,7},{0x4187,3}}, {{0xe0c,2},{0xec0,3}}, {{0x6087,9},{0xe95,2}}, {{0x264bb,5},{0x1cd2,3}}, + {{0x14a7,4},{0xfd38,4}}, {{0x1697,4},{0x169b,10}}, {{0x1e4fc,5},{0x4188,3}}, {{0x2a58,2},{0xf261,3}}, + {{0x1208,4},{0xfda,5}}, {{0x17c92,5},{0x8eee,4}}, {{0x73bb,4},{0x1150,2}}, {{0xcc8,2},{0x2917,3}}, + {{0x3c91,7},{0x2560,4}}, {{0xe5b,6},{0xe61,14}}, {{0x133b6,6},{0x1064,3}}, {{0xee4,4},{0x1ff9,5}}, + {{0x2f71,4},{0x7e11,4}}, {{0x111a,5},{0x5261,6}}, {{0x1e331,5},{0xf63,2}}, {{0xcda0,6},{0x4fa6,4}}, + {{0xe86,2},{0xe1c,3}}, {{0x1f875,1},{0x1969,1}}, {{0x8db1,8},{0x7998,4}}, {{0x46af,3},{0x1f445,2}}, + {{0x47b9,6},{0x14ff,8}}, {{0xccb,2},{0xfdf,4}}, {{0x1747,4},{0x65b9,9}}, {{0xa2f9,7},{0x189f,3}}, + {{0x41ed,4},{0xe25,2}}, {{0x2f7c7,4},{0xe99,1}}, {{0x6171,5},{0xe69,6}}, {{0xeb88,5},{0x8441,4}}, + {{0x2add,6},{0x6479,4}}, {{0x2e27d,1},{0xc16,1}}, {{0xc437,6},{0x1d75,3}}, {{0x1c382,5},{0xf91,3}}, + {{0x3b4f,5},{0xef08,6}}, {{0x1a47,4},{0xfa5e,4}}, {{0xed6,2},{0x1cd3,2}}, {{0x1189,3},{0x1a9a,4}}, + {{0x40d5,6},{0x142a,3}}, {{0x138c,3},{0xcd3,1}}, {{0x17e7,6},{0x1cf3,6}}, {{0x1797,10},{0x15d1,5}}, + {{0x7414,3},{0x1189,3}}, {{0x6087,9},{0xf7a,2}}, {{0x127f,3},{0xb97c,2}}, {{0x1967,3},{0x1892,4}}, + {{0x60e2,7},{0x809a,3}}, {{0xc252,3},{0x22a3,2}}, {{0x24d5e,2},{0x1e2f0,2}}, {{0x2b46,4},{0x1d76e,5}}, + {{0x1da67,7},{0xed6,2}}, {{0x11d5,5},{0x4a86,4}}, {{0x78f9,1},{0x20579,1}}, {{0x1527,8},{0x152f,8}}, + {{0x1aadd,5},{0x27dc,4}}, {{0x3107,5},{0xe80,2}}, {{0x3c91,9},{0xf62,3}}, {{0x4e8d,7},{0xc8f7,4}}, + {{0xe21,1},{0x44ad,3}}, {{0x121f0,5},{0x111c,2}}, {{0x2966,4},{0x7e6d,5}}, {{0x11b3,5},{0x30ad,6}}, + {{0xe19,1},{0x10b8,2}}, {{0x201d0,5},{0xcbd,2}}, {{0x2a47,3},{0x26921,2}}, {{0x1a0d8,7},{0xcc9,2}}, + {{0x1166,3},{0x5261,4}}, {{0x235d,8},{0x2365,7}}, {{0x18ee,3},{0xdd0a,3}}, {{0x124c,6},{0xe7f,3}}, + {{0xe63,2},{0xcc7,1}}, {{0x1db6c,5},{0x1159,4}}, {{0x2b0c0,6},{0x2b0c0,6}}, {{0xf4f,1},{0x145b,2}}, + {{0x2006,4},{0x9498,5}}, {{0x16f7,6},{0x10d3,3}}, {{0x27e0,3},{0x1d230,6}}, {{0x70ad,3},{0x2252,3}}, + {{0x18372,5},{0xabff,4}}, {{0x9,1},{0xe22,2}}, {{0xe3d,4},{0x2b4f0,2}}, {{0x5951,8},{0xe1c,3}}, + {{0x4171,3},{0x3933,4}}, {{0x1a07,3},{0xe7f,2}}, {{0x9e19,5},{0xfdf,4}}, {{0xe31,2},{0x44ad,4}}, + {{0x1a07,3},{0xe7a,1}}, {{0x4781,3},{0xf70,2}}, {{0x109,2},{0x314,2}}, {{0xaaf,2},{0x1347,8}}, + {{0x2dbf,5},{0x1dc0,3}}, {{0x2dcb9,4},{0x23e99,2}}, {{0x5,2},{0x809a,3}}, {{0x10b49,5},{0xef5,2}}, + {{0x2fc5,7},{0x2fcc,7}}, {{0x75b4,7},{0xae95,4}}, {{0xe97,3},{0x1d06,3}}, {{0xe,1},{0x1347,3}}, + {{0x5770,5},{0x56fe,5}}, {{0xa515,8},{0xec6,3}}, {{0x4e3f,5},{0x49a6,3}}, {{0xf89,3},{0x2e32,3}}, + {{0x46af,3},{0x1eea1,2}}, {{0xf0a,3},{0x15692,5}}, {{0x111c,2},{0xcc1,1}}, {{0xf80,2},{0xcd3,1}}, + {{0x307f,5},{0x13e3,4}}, {{0x1467,6},{0x64a7,5}}, {{0x1219,6},{0x121f,5}}, {{0x129ca,6},{0xccaa,4}}, + {{0x14e50,6},{0x2dd7,4}}, {{0x1eaff,7},{0xe95,2}}, {{0x2a47,3},{0x6,2}}, {{0xccd,2},{0xe6c,3}}, + {{0x1587,4},{0xcc1,1}}, {{0x12e5,3},{0xf62,3}}, {{0x29c77,5},{0xe7f,2}}, {{0x114b2,5},{0xed5,4}}, + {{0x5f1b,7},{0x3976,3}}, {{0x111a,3},{0x4ce6,7}}, {{0x2015,3},{0x8f39,4}}, {{0x1825a,6},{0xe0a,1}}, + {{0x1337,4},{0x1337,4}}, {{0x5,1},{0x1a71,3}}, {{0xe7a,1},{0x1118a,2}}, {{0xf77,3},{0xb495,4}}, + {{0x236c,4},{0xe2b,2}}, {{0x4ef5,4},{0xe92,3}}, {{0x4ee8,4},{0x22a3,2}}, {{0x1467,4},{0xe2b,2}}, + {{0x1fdb3,6},{0xe11,1}}, {{0x46bd,5},{0x1f27,3}}, {{0x9a8,1},{0x309d,3}}, {{0x2948,3},{0xedd,1}}, + {{0x1cdc,6},{0x1510,4}}, {{0x307b,9},{0xe69,5}}, {{0xf29f,7},{0xf86,3}}, {{0x12e5,5},{0x293d,3}}, + {{0x2d326,2},{0xe33,1}}, {{0x11d0a,5},{0x10ed,3}}, {{0xe6f,3},{0xed6,2}}, {{0x2fc5,7},{0x2fcc,4}}, + {{0x15e9,3},{0x2365,7}}, {{0xe33,1},{0xe2f,1}}, {{0x1e08,6},{0x21a5,5}}, {{0x11e28,5},{0x2075,3}}, + {{0xf15,1},{0x5136,5}}, {{0x29cf,3},{0x1189,3}}, {{0xf0f,2},{0xe22,2}}, {{0x167c8,7},{0xec6,3}}, + {{0xcb8,1},{0x10a6,2}}, {{0x1357,1},{0xb74,1}}, {{0x301b,4},{0x31c6,5}}, {{0x2cda1,4},{0x23f16,2}}, + {{0x29de,4},{0x157b,3}}, {{0xbeb9,6},{0x3155,6}}, {{0x111a,3},{0x127c,3}}, {{0x126a,3},{0x5669,3}}, + {{0xe1f,3},{0x6008,3}}, {{0x2e211,4},{0xe,1}}, {{0x19b7,3},{0x10d55,4}}, {{0x236c,5},{0xe89,2}}, + {{0x1025,1},{0xe09,1}}, {{0xcc3,2},{0x1fc7,3}}, {{0x1cfc,3},{0x5150,6}}, {{0xef7,3},{0x11e62,3}}, + {{0x20380,4},{0xe16,1}}, {{0xb379,3},{0xb37c,5}}, {{0x48d8,2},{0xe16,1}}, {{0x4597,5},{0xe11,1}}, + {{0x70af,2},{0x12334,4}}, {{0x114e9,4},{0x288b,2}}, {{0x486f,4},{0x20168,5}}, {{0x10c5,4},{0x1569,3}}, + {{0x14ebe,8},{0xe11,1}}, {{0x1967,3},{0xd65c,7}}, {{0x9add,5},{0x9a6,1}}, {{0x5ee7,8},{0x6f8a,4}}, + {{0x1f878,3},{0x3933,4}}, {{0x9f,1},{0x1347,3}}, {{0x314d,6},{0x89df,6}}, {{0xcd6,1},{0x2b0f0,6}}, + {{0x2015,3},{0x27c44,4}}, {{0x17092,5},{0x6,1}}, {{0x9219,5},{0x30f7,2}}, {{0x4367,9},{0xeed,4}}, + {{0x70ad,3},{0xed6,2}}, {{0x2e193,4},{0x7b,1}}, {{0x2,1},{0xe7f,2}}, {{0xffc,3},{0xeb9,5}}, + {{0x22ba3,5},{0xed9,2}}, {{0x2df3b,4},{0x8c,2}}, {{0x2ba5,1},{0x8,1}}, {{0x56c7,5},{0x90dd,4}}, + {{0xcc35,7},{0xcc3c,4}}, {{0xcc8,1},{0x40d8,3}}, {{0x251f,8},{0x1663,4}}, {{0xcc1,2},{0x1d7d,3}}, + {{0xe99,1},{0x2454,3}}, {{0xf89,3},{0xe5e2,5}}, {{0x76c5,10},{0xec6,3}}, {{0x1ddbe,5},{0xf79,3}}, + {{0x114d,6},{0x45f2,2}}, {{0x2885,8},{0x13e1,5}}, {{0x2399,4},{0xe25,2}}, {{0x25673,6},{0xa,2}}, + {{0xef7,3},{0xfa5e,8}}, {{0x2ed7,7},{0x81c4,5}}, {{0x30f51,2},{0xe41,2}}, {{0x1607,5},{0x58ff,4}}, + {{0x227c,5},{0xec53,6}}, {{0x1677,3},{0xccd,1}}, {{0x1a5b,6},{0x1a61,5}}, {{0xa04d,5},{0xcce,3}}, + {{0xf11,1},{0xf1a,2}}, {{0x31e7,8},{0x31ef,6}}, {{0x1677,3},{0x5538,2}}, {{0xee4,4},{0x1c215,4}}, + {{0xb541,6},{0x10cb,4}}, {{0x1a86,3},{0x18b4,3}}, {{0xe0f,1},{0xec7,2}}, {{0x149f,3},{0x14a2,5}}, + {{0x1a17,5},{0x91d9,4}}, {{0x16a7,3},{0xe60,2}}, {{0x185d4,5},{0x1059,3}}, {{0x56c7,5},{0xddd8,6}}, + {{0xcce,2},{0xcc8,1}}, {{0x18fc2,3},{0x1a58,3}}, {{0x63d4,7},{0x155e,3}}, {{0x307bb,1},{0x3034d,2}}, + {{0x11d0a,5},{0xec7,2}}, {{0x11c,2},{0x57,1}}, {{0x7219,5},{0x6,1}}, {{0x1917,4},{0x8db7,5}}, + {{0x10a,2},{0xe,1}}, {{0x56c7,5},{0x6437,5}}, {{0x465b,5},{0x15e9,3}}, {{0x12d4,3},{0x24c8e,5}}, + {{0x1a07,3},{0x2271,3}}, {{0x4853,3},{0xf91,3}}, {{0x3097,7},{0xe69,5}}, {{0x1da0f,4},{0xcba,2}}, + {{0x19b7,3},{0x1969,1}}, {{0x3,1},{0x2,1}}, {{0x562b,5},{0x148a,3}}, {{0x1c085,6},{0x2f2e,3}}, + {{0x18b1d,4},{0x8,1}}, {{0x1e08,9},{0xe69,6}}, {{0x1a17,5},{0xe11,1}}, {{0x1677,3},{0x2bd04,3}}, + {{0xf,1},{0x6bb,2}}, {{0x23c4b,3},{0x2ec04,2}}, {{0x1a1f8,5},{0x4dc6,4}}, {{0x73ed,4},{0x5e94,5}}, + {{0x391f,5},{0xcb1d,5}}, {{0xe80,2},{0x141a,2}}, {{0xfb8,3},{0x615c,8}}, {{0x2948,4},{0x809a,3}}, + {{0x578,2},{0x8d,1}}, {{0x2fe1,9},{0xe0b,4}}, {{0xe16,1},{0x2801,3}}, {{0xc841,6},{0x44b3,4}}, + {{0xba99,5},{0x5102,7}}, {{0x1189,3},{0xe11,1}}, {{0xbc33,3},{0x5,2}}, {{0x15fb,3},{0x1244,7}}, + {{0x10a,2},{0x69,1}}, {{0xccd,1},{0xf1f,3}}, {{0x479f,2},{0x15692,6}}, {{0x12e5,3},{0x46bf,1}}, + {{0x77f2,3},{0x12a3,3}}, {{0x3bcd,4},{0xf49d,4}}, {{0x2ba5,1},{0xe99,1}}, {{0x12ce0,7},{0xed6,2}}, + {{0xccb,2},{0xf92,2}}, {{0x7fe9,5},{0x43fc,2}}, {{0xe0f,1},{0x1132,2}}, {{0x15fb,3},{0x2663,6}}, + {{0x9a6,1},{0x11b5,2}}, {{0xc1d1,4},{0x3c25,6}}, {{0x14d42,5},{0x14d47,5}}, {{0x111c8,3},{0x59b4,3}}, + {{0xe25,2},{0x167f,7}}, {{0xe2b,2},{0x2f94,3}}, {{0x1db45,2},{0x1f40a,2}}, {{0x1830,3},{0xed9,2}}, + {{0x7414,3},{0x1003,3}}, {{0x1987,5},{0x14bc1,5}}, {{0xf89,3},{0x5988,3}}, {{0x1a07,3},{0x183b,3}}, + {{0xe1f,3},{0xfdf,4}}, {{0x22bd,3},{0x153ff,5}}, {{0xb74,16},{0xb74,8}}, {{0x1db33,2},{0x1969,1}}, + {{0xe1a6,6},{0xd158,4}}, {{0x114f,3},{0x127c,3}}, {{0x242a3,5},{0xe2b,2}}, {{0x471f,10},{0xe6b,4}}, + {{0x12d4,3},{0x9498,5}}, {{0xcc1,1},{0x8441,4}}, {{0xe5b,3},{0x22a3,2}}, {{0x1007,5},{0x2,1}}, + {{0x18ecc,2},{0x2b0b0,2}}, {{0xe5b,3},{0x3,1}}, {{0x19b7,6},{0x1cf3,6}}, {{0x4161,8},{0x6c30,5}}, + {{0x10b8,2},{0x2,1}}, {{0xe71,1},{0xe6b,2}}, {{0x17f7,8},{0x1004,3}}, {{0x1677,5},{0x13e4,3}}, + {{0xbb89,4},{0x1059,3}}, {{0x5863,3},{0xe22,2}}, {{0x1937,4},{0x23e1,3}}, {{0x7414,3},{0x29eb8,4}}, + {{0x1367,3},{0xab27,5}}, {{0x10e8d,5},{0x1b41,6}}, {{0x2e193,4},{0x69,1}}, {{0x45ee,3},{0xf35,3}}, + {{0x9a8,1},{0xee6c,5}}, {{0xf00,7},{0xe77,3}}, {{0x1189d,4},{0xcba,2}}, {{0xf0a,3},{0xeb4,3}}, + {{0xef7,3},{0xcb6,3}}, {{0x1497,5},{0x1244,8}}, {{0xcce,2},{0xe09,1}}, {{0x1189,3},{0x3075,3}}, + {{0x12d4,3},{0x2470e,4}}, {{0x9345,5},{0x1459,4}}, {{0xe,1},{0x512,2}}, {{0x2de93,4},{0x7b,1}}, + {{0x7de9,2},{0x6,1}}, {{0xacb9,5},{0x1632,5}}, {{0x587c,5},{0xec6,3}}, {{0x2de7b,3},{0x188,2}}, + {{0x1569,2},{0xe0a,1}}, {{0x12d4,3},{0xa680,6}}, {{0xf59,2},{0x6,2}}, {{0xe19,1},{0xedd,1}}, + {{0x11c,2},{0x7b,1}}, {{0x11ca7,5},{0xb3c9,4}}, {{0x27c2,6},{0xe11,1}}, {{0x4ef5,4},{0xf0f,2}}, + {{0xe97,3},{0x4dd1,4}}, {{0x2d79,4},{0xfb0,3}}, {{0x5f69,6},{0x15284,4}}, {{0x16a7,3},{0x1de7,3}}, + {{0x19e7,6},{0xaaeb,6}}, {{0xe6f,3},{0xccd,1}}, {{0x16a7,3},{0x280e3,4}}, {{0x12d4,3},{0x2e2c,3}}, + {{0x488b,4},{0x11dc,3}}, {{0x1e84c,4},{0xf62,3}}, {{0x2add,6},{0x2d11,3}}, {{0xcbd,1},{0x22a2,7}}, + {{0xcd3,2},{0x237f,4}}, {{0xaf7d,7},{0xf84,5}}, {{0x2015,6},{0x6e53,4}}, {{0x20f6,5},{0x15df6,4}}, + {{0x23e2b,6},{0xcc3,2}}, {{0x2f71,4},{0x7c3d,4}}, {{0x1e9e,8},{0x6,1}}, {{0xfb8,3},{0x1153,3}}, + {{0x8c,2},{0x7b,1}}, {{0x168f,2},{0x142d,3}}, {{0x11d5,12},{0xec6,3}}, {{0x7416,1},{0xa,2}}, + {{0x75b4,7},{0x62a3,6}}, {{0x2e217,4},{0xd,1}}, {{0xe24,3},{0x142d,3}}, {{0xec6f,7},{0xfdd,4}}, + {{0xcc8,1},{0xc118,5}}, {{0xc371,5},{0x56a8,5}}, {{0xbc79,4},{0x3b1b,5}}, {{0x1897,10},{0xf91,3}}, + {{0x1927,5},{0xf1a,2}}, {{0x27e0,3},{0x4188,3}}, {{0xa485,8},{0x141a,2}}, {{0xf70,2},{0x1025,1}}, + {{0x13a7,8},{0xcc1,1}}, {{0x2de2d,4},{0x19b9,1}}, {{0x127f,4},{0xef5,2}}, {{0x12e5,3},{0xf59,2}}, + {{0x5e27,3},{0x3075,3}}, {{0x478f,3},{0x1303,3}}, {{0x22b8,4},{0x153ff,5}}, {{0xebe,5},{0x2c16,5}}, + {{0x2a47,3},{0x122e,2}}, {{0xf89,5},{0xf69,3}}, {{0x760f,5},{0x1c67b,4}}, {{0x2939,4},{0x1252,3}}, + {{0xe3d,4},{0xbb6,2}}, {{0x1977,3},{0x8,1}}, {{0x12e5,3},{0x4434,3}}, {{0x165f2,6},{0x7d1f,3}}, + {{0x12f6,4},{0x6665,3}}, {{0xf15,1},{0x74fc,2}}, {{0x13a7,5},{0xf7a,2}}, {{0x1977,3},{0x1db44,2}}, + {{0xef7,3},{0x14f0,7}}, {{0x3d0f,6},{0xe92,3}}, {{0x736b,5},{0x9cac,5}}, {{0x2abf,6},{0x6956,4}}, + {{0x712f,4},{0x2e32,3}}, {{0x3,1},{0x6,1}}, {{0xe86,2},{0xe60,2}}, {{0x11d15,6},{0x10018,5}}, + {{0x30eb,9},{0xe95,2}}, {{0xb3c3,7},{0xe11,1}}, {{0xe22,2},{0xe22,2}}, {{0xe19,1},{0xfe8,2}}, + {{0xc17d,9},{0x11ac,3}}, {{0x2f2e,3},{0x2f3f,8}}, {{0x713c,8},{0x6d41,5}}, {{0xc02d,7},{0xe11,1}}, + {{0x1697,4},{0x2815,7}}, {{0x164,2},{0x21,1}}, {{0x4979,4},{0x152d4,4}}, {{0x479d,4},{0x22c7e,3}}, + {{0xe0b,2},{0x4927,4}}, {{0xedd,1},{0xede,2}}, {{0x2a56,4},{0xe0b,4}}, {{0x11f25,5},{0x5,1}}, + {{0x244d,7},{0xf6c6,4}}, {{0x1f984,4},{0x25d67,4}}, {{0x15d3c,8},{0xf35,2}}, {{0x3583,5},{0xe11,1}}, + {{0x7d01,7},{0x7d08,5}}, {{0x2d0fb,4},{0x48d2,2}}, {{0x2600,10},{0x13e3,4}}, {{0xe11,1},{0x5,1}}, + {{0x2317b,7},{0xe0a,1}}, {{0x449b,5},{0x2271,3}}, {{0x457d,3},{0x870e,7}}, {{0x2b19,6},{0x414b,7}}, + {{0x2e280,3},{0xb74,3}}, {{0x2247,4},{0x14a2,3}}, {{0x1fd7f,4},{0x142d,3}}, {{0xe768,8},{0xec6,3}}, + {{0x10dc7,5},{0x1cd3,2}}, {{0x471f,6},{0x5,1}}, {{0x11e12,8},{0xf35,2}}, {{0x119e3,3},{0xed5,3}}, + {{0x1997f,6},{0xec6,3}}, {{0x18732,7},{0x1ea3,3}}, {{0x6,2},{0x1025,1}}, {{0x1807,6},{0x2c59,6}}, + {{0xe71,1},{0x122d,2}}, {{0x1aa95,6},{0x3caa,3}}, {{0x12e5,3},{0x418e,5}}, {{0x1f3c9,6},{0x1064,3}}, + {{0xe21,1},{0xe08,1}}, {{0x19df6,5},{0x90f3,4}}, {{0xb64b,3},{0x1569,3}}, {{0xfcb,2},{0x1279,5}}, + {{0xcc1,1},{0x569a,3}}, {{0xe21,1},{0xf02,2}}, {{0x2696,7},{0x1380,5}}, {{0x9a8,1},{0xe0d,2}}, + {{0x2e27d,1},{0xbb4,6}}, {{0x1dba2,5},{0xec6,3}}, {{0xe71,1},{0x227de,5}}, {{0x2bad,4},{0xed9,2}}, + {{0xcc61,4},{0x9a8,1}}, {{0x1889,2},{0xdfca,3}}, {{0xcc7,1},{0x113f,2}}, {{0xe33,1},{0x1cbf8,5}}, + {{0xe11,2},{0xcba,3}}, {{0x478f,3},{0x1a67,5}}, {{0x27fe,7},{0x6d5a,5}}, {{0x8ae1,8},{0x1f7b,4}}, + {{0xcc7,1},{0x4538,3}}, {{0x1153,3},{0x344b,4}}, {{0x1727,8},{0xa385,4}}, {{0x1f38,1},{0xe0b,2}}, + {{0xf,1},{0x206,2}}, {{0x2df3b,4},{0x655,2}}, {{0xcc4,2},{0xcac6,4}}, {{0xe83,3},{0x3ce0,5}}, + {{0xe0d,2},{0x2ba7,4}}, {{0x111a,3},{0x210a4,5}}, {{0xf65,4},{0xc635,7}}, {{0xf89,3},{0xf8e,3}}, + {{0x1a78f,4},{0x1a793,5}}, {{0xe7d,2},{0xccb,2}}, {{0x1b572,6},{0xcc9,2}}, {{0x15a26,7},{0xcc9,2}}, + {{0x118ea,6},{0xfda,5}}, {{0x4781,3},{0xe95,2}}, {{0x18ecc,2},{0x30f85,2}}, {{0xec43,7},{0x126a,4}}, + {{0x1467,4},{0x6e53,4}}, {{0x114d,5},{0x3454,9}}, {{0x125d,6},{0x89d3,3}}, {{0xcd3,1},{0x2e2c,3}}, + {{0x301,3},{0x8d,1}}, {{0x450b,4},{0x1153,2}}, {{0x1967,3},{0x1a56,2}}, {{0x3739,2},{0xf86,3}}, + {{0x17d28,5},{0x90fb,5}}, {{0x7f41,7},{0x3317,4}}, {{0x39d5,5},{0xf79,3}}, {{0x46af,3},{0x17fb8,4}}, + {{0x1e3a6,5},{0x8441,4}}, {{0xe83,6},{0x453b,4}}, {{0x1977,3},{0x29436,2}}, {{0x1a17,5},{0xe95,2}}, + {{0x127f,3},{0x1050,3}}, {{0xed9,2},{0xf84,5}}, {{0xf,1},{0x109,2}}, {{0xe31,2},{0x2dd7,4}}, + {{0x2e271,3},{0x3034d,2}}, {{0xf89,3},{0x27dc,4}}, {{0xf0a,3},{0x1025,1}}, {{0x12e5,3},{0x24bdf,2}}, + {{0xf0d,2},{0xe92,3}}, {{0xe19,1},{0x29922,2}}, {{0xf77,4},{0xa35e,6}}, {{0xcc1,1},{0xab9f,3}}, + {{0x10a83,6},{0xed6,2}}, {{0xe67,2},{0xcc3,3}}, {{0xed40,5},{0x151a7,5}}, {{0x5342,3},{0xde07,3}}, + {{0x19b9,1},{0x492e,3}}, {{0x1967,3},{0x1399f,3}}, {{0x1fcf6,6},{0xe67,2}}, {{0x1a07,3},{0x2ed13,2}}, + {{0x12e,2},{0x8d,1}}, {{0xf0a,3},{0xe6c,3}}, {{0x6f4e,8},{0x10f2,5}}, {{0x4767,1},{0xcce,2}}, + {{0xc702,10},{0xe11,1}}, {{0x12e5,3},{0x2b4d7,3}}, {{0xe1f,3},{0x9be0,3}}, {{0xbc31,5},{0x26ae,6}}, + {{0x10e8f,3},{0xf86,3}}, {{0x16a7,3},{0x6ca7,3}}, {{0xf77,3},{0xe0b,2}}, {{0xcbd,1},{0xe86,2}}, + {{0xf65,4},{0xe67,2}}, {{0xed1,3},{0xe78,2}}, {{0x1927,4},{0xcd3,2}}, {{0x108d6,6},{0x8b54,5}}, + {{0xebc,2},{0xccd,1}}, {{0xcfd1,6},{0x2844,5}}, {{0x6ba6,7},{0x2f2e,3}}, {{0x1f984,4},{0xcc1,2}}, + {{0xf0c,1},{0x5930,5}}, {{0x1b194,6},{0x1a56,2}}, {{0x1019,4},{0x1a98,6}}, {{0x3e0,2},{0x69,1}}, + {{0xefa,2},{0x3739,2}}, {{0x30a13,3},{0x7905,1}}, {{0xa911,9},{0xe6b,3}}, {{0xcc7,1},{0x9,1}}, + {{0x1da5e,7},{0xfb0,2}}, {{0x2df3b,4},{0x68,2}}, {{0xfcb,2},{0xfee,7}}, {{0xed6,2},{0xe6b,3}}, + {{0x6cc4,4},{0xfb0,3}}, {{0xb841,5},{0x4116,5}}, {{0x1019,4},{0x11a6,2}}, {{0x4853,3},{0x19b9,1}}, + {{0x1a57,4},{0x1a5b,11}}, {{0x3aed,6},{0x6452,4}}, {{0xe32,1},{0x1569,2}}, {{0xcc14,7},{0x1a9a,4}}, + {{0x200c2,5},{0x200c7,4}}, {{0xcb8,1},{0xf0f,2}}, {{0xe25,2},{0x3642,2}}, {{0x168f,2},{0x1523,4}}, + {{0x1e961,4},{0x1e965,5}}, {{0xcb8,1},{0x10cb,2}}, {{0x12830,5},{0xeab,2}}, {{0xb3f1,3},{0x288b,2}}, + {{0xb8d1,4},{0x1025,1}}, {{0xe97,3},{0x2ca1,4}}, {{0x488b,4},{0xe11,1}}, {{0x10e63,7},{0xe95,2}}, + {{0x478f,3},{0x1062,2}}, {{0x314,2},{0x8d,1}}, {{0xe7a,2},{0x3075,4}}, {{0x2b46,4},{0xcc3,3}}, + {{0xe11,2},{0x2261,3}}, {{0x4589,5},{0x88fa,6}}, {{0x5,1},{0x9498,5}}, {{0x4,1},{0xe09,1}}, + {{0x2a6dd,6},{0xb,1}}, {{0x112b,12},{0xfdf,4}}, {{0x1817,4},{0x8,1}}, {{0xe67,2},{0x1025,1}}, + {{0x1c28,5},{0x1de7,3}}, {{0xaaf,2},{0x317ac,2}}, {{0x1be,2},{0x402,2}}, {{0x10c5,4},{0x20e25,4}}, + {{0x18020,5},{0xead,3}}, {{0x591d,5},{0x1de7,3}}, {{0x9da1,5},{0x2dd7,4}}, {{0x478f,4},{0xd66b,4}}, + {{0x9a6,1},{0xcc3,3}}, {{0x15a7,6},{0x1f67,9}}, {{0x16a7,3},{0x2ad4,4}}, {{0x7935,7},{0x3075,4}}, + {{0x111a,3},{0xfb8,3}}, {{0x10a90,3},{0xc29a,6}}, {{0x44ad,3},{0xec0,3}}, {{0xe6f,3},{0x72d3,3}}, + {{0x27e0,3},{0x66bc,4}}, {{0x1967,3},{0x23e99,2}}, {{0x179c4,4},{0x1040,3}}, {{0x5604,9},{0x2467,4}}, + {{0x152,2},{0xd,1}}, {{0x5,1},{0x16ad,3}}, {{0x54cc,5},{0xe6b,4}}, {{0x1debd,2},{0x19b9,1}}, + {{0x17f4e,7},{0x10ed,3}}, {{0xf77,3},{0x1189,3}}, {{0x46af,3},{0x1e2e2,2}}, {{0x123e,3},{0xe11,1}}, + {{0x5611,5},{0x972b,6}}, {{0x19f7,4},{0x16c4c,4}}, {{0x1e2f0,2},{0x7416,1}}, {{0x27d7,2},{0x6,1}}, + {{0x113ec,5},{0x1ed7a,4}}, {{0x4ad8,8},{0x14a2,3}}, {{0x1ff7,3},{0xa833,6}}, {{0x1bac1,6},{0xe11,1}}, + {{0x9c99,8},{0x61bb,4}}, {{0xe13,3},{0xf92,2}}, {{0x1dc56,4},{0xad20,5}}, {{0xe63f,6},{0xe92,3}}, + {{0xe22,3},{0xe89,2}}, {{0xf0c,1},{0x4cc2,3}}, {{0x6386,9},{0xe77,3}}, {{0x44c5,5},{0xe78,2}}, + {{0x10c5,4},{0x12a46,6}}, {{0x1937,4},{0x21af,3}}, {{0x11a55,7},{0xe6b,3}}, {{0x10b4,6},{0x583b,5}}, + {{0x4871,2},{0xe71,1}}, {{0x7d0d,5},{0x1166,3}}, {{0x46af,3},{0xb396,2}}, {{0x27e0,4},{0x16786,6}}, + {{0xc16,1},{0x2e27d,1}}, {{0x2984,12},{0x1be9,3}}, {{0x181b0,5},{0xfb8,3}}, {{0x113c,5},{0x4fb3,5}}, + {{0x450b,4},{0x1ce76,5}}, {{0x28df,8},{0xcc9,2}}, {{0x1bbf,4},{0x6,1}}, {{0x1effd,5},{0x1150,2}}, + {{0x205a9,1},{0xaf4,2}}, {{0x17bd4,6},{0x5eeb,4}}, {{0x72cf,4},{0x113f,2}}, {{0x4767,1},{0xf0d,2}}, + {{0xe80,2},{0x156a,3}}, {{0x2,1},{0xfd3,4}}, {{0x5749,6},{0x1510,7}}, {{0x2afb6,4},{0x164,2}}, + {{0xe11,2},{0x28e1,3}}, {{0x1f38,1},{0xfb0,2}}, {{0xcce,2},{0x1b03,3}}, {{0xeaa,2},{0x1269,4}}, + {{0xcbd,1},{0x222b6,5}}, {{0x478f,3},{0x1c35a,4}}, {{0xfe5,2},{0x11dc,3}}, {{0x331b,7},{0xfb1,3}}, + {{0x1747,4},{0x4aef,3}}, {{0xeb9,3},{0x1be9,3}}, {{0x10e3,3},{0x7b72,3}}, {{0xe235,7},{0xf1a,2}}, + {{0xbba1,7},{0x2,1}}, {{0x2e7be,4},{0xc273,2}}, {{0x2b0a8,4},{0xddc,2}}, {{0xbb89,4},{0x8441,4}}, + {{0xc5fa,6},{0xc600,5}}, {{0x70ad,4},{0x2271,3}}, {{0x6fd0,8},{0xe0b,4}}, {{0x4199,5},{0x24e8,4}}, + {{0x33ed,7},{0xe69,6}}, {{0x30869,4},{0xc38,2}}, {{0xcc7,1},{0x2af25,2}}, {{0x46af,3},{0x253ff,4}}, + {{0x5909,4},{0xe0d,2}}, {{0x111a,3},{0xeee,3}}, {{0xe1f,3},{0x2280,2}}, {{0x201d0,5},{0x15fe,4}}, + {{0x7414,3},{0x1839,2}}, {{0xf59,3},{0xec6,3}}, {{0x1e8f,6},{0x4315,7}}, {{0x1747,4},{0x27d8,3}}, + {{0x127e0,5},{0x423c,5}}, {{0x2,1},{0xed6,2}}, {{0x442b,3},{0x1ea75,3}}, {{0xcb8,1},{0x7119,3}}, + {{0x18ecc,2},{0xe41,2}}, {{0x1977,3},{0xedd,1}}, {{0xe61,6},{0xebb,3}}, {{0x1a07,3},{0x4767,1}}, + {{0x1ccd,5},{0xef1,3}}, {{0xe35e,6},{0x1dc7,5}}, {{0x1875a,6},{0xdd0a,3}}, {{0x19b7,3},{0x1e57d,2}}, + {{0x1827,5},{0x167e,3}}, {{0x1dc4f,2},{0xcbd,1}}, {{0xd13c,6},{0xec6,3}}, {{0x2cdad,5},{0xe11,1}}, + {{0xe1f,3},{0x29a19,2}}, {{0xfe6,2},{0x138e,2}}, {{0x492b,4},{0xdc01,4}}, {{0xbb89,4},{0x13b0,4}}, + {{0xbc7b,5},{0xf193,4}}, {{0xef7,4},{0x15ffc,6}}, {{0x2e211,4},{0xf,1}}, {{0x8661,7},{0xec6,3}}, + {{0x1537,4},{0x1ebf,3}}, {{0xed9,2},{0x152d4,4}}, {{0xec17,7},{0xcc9,2}}, {{0x1745c,6},{0x5ddf,4}}, + {{0x24bcb,4},{0x26768,2}}, {{0x56c7,5},{0x7c90,5}}, {{0x2ba5,1},{0x29430,3}}, {{0xf77,4},{0xdd76,5}}, + {{0x29cf,3},{0x2aaa8,2}}, {{0x1997,4},{0x11d9,3}}, {{0xf0a,3},{0x10db,7}}, {{0x8d81,10},{0xed9,2}}, + {{0x1ff7,3},{0xe474,8}}, {{0x11b3,5},{0x6,2}}, {{0x12d4,3},{0x1520,5}}, {{0xee9,2},{0xf86,2}}, + {{0x2779b,4},{0xcce,2}}, {{0xb379,3},{0xf1a,2}}, {{0x8,2},{0xe11,1}}, {{0xe235,7},{0xfd9,3}}, + {{0x1e2e9,4},{0x1e2ed,2}}, {{0xc7e9,7},{0x13e3,4}}, {{0x2f94,3},{0xed6,2}}, {{0x18bf6,6},{0x28e3,4}}, + {{0x1357,1},{0x20599,1}}, {{0x2dbf,5},{0x1a57,4}}, {{0xe11,1},{0x9a8,1}}, {{0xbfc3,3},{0xffd6,5}}, + {{0x50bc,8},{0x2dc8,5}}, {{0x27d1,10},{0x1c1d,4}}, {{0x17669,2},{0x2c509,2}}, {{0x292a,8},{0x1054,3}}, + {{0xeed,2},{0xed9,2}}, {{0x1ff9,4},{0xfb8,3}}, {{0x16903,3},{0xe5e,2}}, {{0x10dd4,4},{0xcc3,3}}, + {{0xc7de,6},{0x3320,4}}, {{0x1cd3,2},{0x8,1}}, {{0x16a7,5},{0xeaf,3}}, {{0x4003,9},{0xe69,5}}, + {{0x10dc,2},{0xeee,3}}, {{0x1367,3},{0x7d99,4}}, {{0xb51d,5},{0x29f7,3}}, {{0x1efc0,3},{0xe7f,2}}, + {{0x1967,3},{0x18772,2}}, {{0x1967,3},{0x2467,4}}, {{0x10bee,4},{0x23f37,4}}, {{0x1967,3},{0x1a66,1}}, + {{0x4f77,8},{0xe6b,4}}, {{0xaaf,2},{0x30841,4}}, {{0x1ebe,4},{0x57a0,4}}, {{0x3965,6},{0xe11,1}}, + {{0xe1f,3},{0x1b0d,3}}, {{0x15fc6,7},{0xe11,1}}, {{0xe0d,2},{0xcbf,2}}, {{0xb84d,8},{0xe11,1}}, + {{0xf77,4},{0x53c0,5}}, {{0x1230c,2},{0xed6,2}}, {{0x18dea,5},{0x1b80,3}}, {{0x185d,2},{0x11d9,3}}, + {{0x3521,4},{0x2f79,5}}, {{0x27ef,9},{0x27f8,6}}, {{0x4765,3},{0x1393,3}}, {{0x17346,4},{0x12bf,4}}, + {{0x2538d,3},{0xeca,3}}, {{0x9a6,1},{0x1f38,1}}, {{0x111a,3},{0x101f,3}}, {{0xf54,3},{0x3ee5,5}}, + {{0x111c6,7},{0x58cb,4}}, {{0x2638b,5},{0x4524,3}}, {{0x2240,4},{0xfa1,2}}, {{0x12196,7},{0xe11,1}}, + {{0x25163,7},{0xe11,1}}, {{0x23c4b,3},{0x23c56,3}}, {{0x12e5,3},{0x23d2,3}}, {{0xf2cb,6},{0x4a34,4}}, + {{0xb649,5},{0x14c76,4}}, {{0x5e24,6},{0x5e2a,5}}, {{0x4767,1},{0x162c,3}}, {{0xe37,4},{0x30f85,2}}, + {{0x468,2},{0x9f,1}}, {{0xe83,3},{0xf70f,7}}, {{0x10a99,4},{0x1fbe,3}}, {{0xbac9,9},{0x1fc7,3}}, + {{0x4199,8},{0x1702,4}}, {{0x19b7,3},{0xa3ec,9}}, {{0x2de63,3},{0x1ac,2}}, {{0x29cf,3},{0x20510,2}}, + {{0x2e273,1},{0xc,1}}, {{0x205a9,1},{0x20599,1}}, {{0x4,1},{0x3553,6}}, {{0x2fd3,10},{0xec6,3}}, + {{0x101e,3},{0xe7f,3}}, {{0x12308,6},{0xc29d,3}}, {{0x1db33,2},{0x48db,2}}, {{0x2f71,4},{0x13144,6}}, + {{0x355b,3},{0x168a,5}}, {{0x27e0,3},{0x1a5e,3}}, {{0x2a83,4},{0x5b7b,5}}, {{0xe5b,3},{0x19eb7,5}}, + {{0x1ec4c,5},{0xc39f,4}}, {{0x2de7b,3},{0xd,2}}, {{0xa3ad,8},{0x6,2}}, {{0x10e7,5},{0x2651,7}}, + {{0x1007,10},{0x1773,4}}, {{0xe78,1},{0x59b4,3}}, {{0x5,1},{0x19770,5}}, {{0x17bde,5},{0x17be3,5}}, + {{0xe71,1},{0x1189,3}}, {{0x183f4,6},{0x156a,3}}, {{0x4,1},{0xe65,2}}, {{0x16692,5},{0xcc8,1}}, + {{0x2f069,4},{0xe99,1}}, {{0x12e5,3},{0x15ca,4}}, {{0xede,1},{0x48da,2}}, {{0xf77,5},{0x13b8c,4}}, + {{0xb55b,3},{0x1050,3}}, {{0x17e86,7},{0x1dee,3}}, {{0x6053,5},{0x2fbe,5}}, {{0x4899,4},{0x12bf,4}}, + {{0x1be,2},{0x424,2}}, {{0x28c1,4},{0xfc87,5}}, {{0xb8c5,8},{0xf86,3}}, {{0x1577,4},{0x7bab,6}}, + {{0x3739,2},{0x3e54,3}}, {{0x1d72,10},{0x1d7c,5}}, {{0x5611,7},{0x1c1d,4}}, {{0x9da1,6},{0x320b,6}}, + {{0x2948,4},{0xcc1,1}}, {{0x10c5,4},{0x134e7,5}}, {{0x1bbf,4},{0x128d4,6}}, {{0x56c7,5},{0x6d41,5}}, + {{0x9cc9,9},{0xcc9,2}}, {{0x1877,5},{0x5,2}}, {{0x127f,3},{0xc6bc,4}}, {{0x4,1},{0xfe6,2}}, + {{0x1397,5},{0xe7d,6}}, {{0x46af,3},{0x1024,2}}, {{0x28c29,6},{0xe0a,1}}, {{0x1937,4},{0xfc8,3}}, + {{0x12f8,2},{0x1ffa,3}}, {{0xd428,8},{0xe11,1}}, {{0x1481a,6},{0xec3,3}}, {{0xb6d9,6},{0x6b2b,6}}, + {{0x4853,4},{0xf0f,2}}, {{0x15fb,3},{0xb,1}}, {{0xd756,8},{0x104c,2}}, {{0x46af,3},{0x1dcb4,3}}, + {{0xe,1},{0x325,2}}, {{0x3a1b,5},{0xf63,2}}, {{0x478f,3},{0x2d4e9,2}}, {{0x206f,9},{0xe67,2}}, + {{0x478f,3},{0x1dc0,3}}, {{0x1367,3},{0x178a,3}}, {{0x4765,3},{0x70f8,3}}, {{0x602c,5},{0xcc9,2}}, + {{0x4459,2},{0x1f03f,2}}, {{0xba0c,5},{0xba11,4}}, {{0x4765,3},{0xe92,3}}, {{0x12e5,3},{0x5538,2}}, + {{0x517f,10},{0xec6,3}}, {{0xcce,3},{0x1258,5}}, {{0xe89,3},{0xe0a,1}}, {{0x6e8f,5},{0x6e94,4}}, + {{0x6,1},{0xe22,2}}, {{0xb,1},{0x2280,2}}, {{0x6012,6},{0xec3,3}}, {{0x445e,2},{0x4460,3}}, + {{0x11b3,6},{0x1c6d,6}}, {{0x1947,5},{0xcce,3}}, {{0x18a48,7},{0x4415,3}}, {{0x4853,4},{0xf1f,3}}, + {{0x1969,1},{0xcd3,2}}, {{0x141a,2},{0xcc1,1}}, {{0x17120,2},{0xf62,3}}, {{0x1821e,5},{0xcc7,1}}, + {{0xe7f,2},{0x5,2}}, {{0x2b0b4,6},{0x2b0b4,6}}, {{0xc1d1,4},{0x6eea,3}}, {{0x4ad8,8},{0x14a2,5}}, + {{0xe5e7,4},{0x1cee,4}}, {{0x4383,5},{0x2c16,5}}, {{0x78f9,2},{0x78f9,1}}, {{0x1b9bc,6},{0x2e2c,3}}, + {{0x127f,5},{0x42ee,5}}, {{0xab9f,3},{0xcc9,2}}, {{0x468,2},{0x69,1}}, {{0xf17,2},{0xfc8,3}}, + {{0x492b,4},{0x809a,3}}, {{0x58a8,5},{0xe6b,3}}, {{0x5,2},{0x7b72,3}}, {{0x1967,3},{0x1e694,6}}, + {{0x15a26,7},{0xec6,3}}, {{0x2e211,4},{0xd,1}}, {{0x12e5,3},{0x142d,3}}, {{0xf65,4},{0x1088,3}}, + {{0x181b,3},{0x8,1}}, {{0x2abf,8},{0x17df,7}}, {{0x9,1},{0xe65,2}}, {{0xb612,4},{0x4,1}}, + {{0x113c,3},{0x93dc,5}}, {{0x46af,3},{0x2de2b,2}}, {{0x2ba5,1},{0x78ed,2}}, {{0xe5b,3},{0x43fd,4}}, + {{0xa,2},{0x1cd3,2}}, {{0xef7,3},{0x17c0,2}}, {{0x73b9,5},{0xf1d,2}}, {{0x4539,2},{0xdde5,4}}, + {{0x1635e,7},{0xcc9,2}}, {{0x11d5,5},{0x2147,7}}, {{0x787f,11},{0xe95,2}}, {{0x70ad,3},{0xf4f,1}}, + {{0x1027a,7},{0x2dd7,4}}, {{0x1095a,8},{0xe77,3}}, {{0x12d4,3},{0x2371,3}}, {{0xe0a,1},{0x3,1}}, + {{0x1f021,6},{0x2f94,3}}, {{0x1a49b,6},{0xe11,1}}, {{0xf0a,3},{0x24e8,4}}, {{0xe5b,3},{0x7948,5}}, + {{0x14a2,3},{0xe80,2}}, {{0x754c,6},{0xbbfb,6}}, {{0x3973,6},{0x1859,4}}, {{0x2f2e,3},{0xe1c,3}}, + {{0x492b,4},{0x492f,8}}, {{0x11,1},{0xb74,1}}, {{0xeab,2},{0xf0f,2}}, {{0xb72d,9},{0xec6,3}}, + {{0xcd6,1},{0x1357,1}}, {{0x5,1},{0x12910,6}}, {{0xedd,1},{0x4251,3}}, {{0x19c7,7},{0x1510,4}}, + {{0xe5b,3},{0x1150,2}}, {{0x2075,3},{0x34d7,4}}, {{0x4767,1},{0x254b1,2}}, {{0x1537,4},{0xcee4,5}}, + {{0x17f7,8},{0x1c6d,6}}, {{0xcd3,2},{0x3,1}}, {{0xebe,4},{0x13e2,4}}, {{0x15742,7},{0xcc9,2}}, + {{0xc1d1,5},{0xb35a,7}}, {{0x241a3,6},{0xe95,2}}, {{0xf65,4},{0x11b5,2}}, {{0xb499,5},{0xcc3,3}}, + {{0xfa5,2},{0xf0f,2}}, {{0x1817,4},{0x14863,3}}, {{0x1447,7},{0x741a,4}}, {{0x46af,3},{0x45ee,3}}, + {{0x1702e,4},{0xe86,2}}, {{0xe7a,1},{0x9,1}}, {{0xe0b,2},{0xf0d,2}}, {{0x824d,4},{0x1150,2}}, + {{0x12d4,3},{0x52d8,3}}, {{0x1e9e,5},{0x30f7,2}}, {{0x28df,5},{0x5959,5}}, {{0x14158,6},{0x2dd7,4}}, + {{0x6238,4},{0xe86,2}}, {{0x16f7,9},{0x240b,5}}, {{0xe99,1},{0xf24,2}}, {{0xe78,1},{0xcc1,1}}, + {{0x1687,4},{0xd3b4,6}}, {{0x1803e,6},{0xe0a,1}}, {{0x425d,5},{0xae63,3}}, {{0x1120,3},{0xf7a,2}}, + {{0x181ce,5},{0xed6,2}}, {{0x1d18,5},{0xd485,6}}, {{0x11788,4},{0xcbf,2}}, {{0x6644,5},{0xe69,6}}, + {{0x1b356,6},{0x5669,3}}, {{0x42db,6},{0x16c4c,4}}, {{0xefb,3},{0xeb5,2}}, {{0x1ef81,4},{0x59b4,3}}, + {{0x1715a,5},{0x30f7,2}}, {{0x14a7,4},{0x133ce,6}}, {{0x27e0,3},{0x2ee9,3}}, {{0x4,1},{0x44ad,3}}, + {{0xf15,1},{0x1095,3}}, {{0x29de,4},{0x1085,3}}, {{0x29cf,3},{0x17dd9,3}}, {{0x7201,8},{0x1085,3}}, + {{0xe86,2},{0xed9,2}}, {{0x797f,4},{0x70a6,3}}, {{0x1761e,6},{0x1cd3,2}}, {{0x7af1,7},{0xe69,5}}, + {{0xc2,2},{0x69,1}}, {{0x4,1},{0xcd2,2}}, {{0x3a29,4},{0xb97c,2}}, {{0x2075,3},{0xffc,3}}, + {{0x2759,6},{0x2c6a,5}}, {{0xe164,6},{0xe71,1}}, {{0x12f6,4},{0x11b5,2}}, {{0xe97,3},{0xcce,3}}, + {{0x643c,7},{0x53c2,3}}, {{0x114f,3},{0xed9,2}}, {{0x780a,4},{0x1252,3}}, {{0x1657,6},{0xf4a,5}}, + {{0x1647,5},{0xcbd,1}}, {{0x16b24,6},{0xef3,4}}, {{0x1153,3},{0xe32,1}}, {{0xed1,3},{0x413e,4}}, + {{0xb3f1,3},{0x3933,4}}, {{0xbfe5,4},{0x3756,3}}, {{0xf15,1},{0xec0,3}}, {{0x12330,8},{0xfe6,2}}, + {{0xf0c,1},{0x1ea72,2}}, {{0x2e193,4},{0x8d,1}}, {{0xcbf,2},{0x115a,3}}, {{0xe71,1},{0x1153,2}}, + {{0x1789,4},{0x101e,4}}, {{0x1889,2},{0x6,1}}, {{0x655a,7},{0x10f2,6}}, {{0xcda0,4},{0x30f5,4}}, + {{0x1019,4},{0x35a3,3}}, {{0xedd,1},{0x1c7b,5}}, {{0x1827,4},{0x7949,4}}, {{0x2957,7},{0xf93,8}}, + {{0x4765,3},{0xf91,3}}, {{0x1977,3},{0x1025,1}}, {{0xe83,3},{0xf04,3}}, {{0xe0f,1},{0x48da,3}}, + {{0x22a2,4},{0xebc,2}}, {{0x2e7a4,6},{0xbb8,2}}, {{0x12d4,3},{0x1969,1}}, {{0x2f9b,4},{0x8b9c,5}}, + {{0xe0f,2},{0x5bdf,9}}, {{0xe5b,3},{0xcc9,2}}, {{0x51f4,7},{0x18b4,3}}, {{0x46af,3},{0x40d8,3}}, + {{0x6b8c,5},{0x9,2}}, {{0x70ad,3},{0x1089,3}}, {{0x1290,5},{0x2147,7}}, {{0x7f41,4},{0x7921,3}}, + {{0xfa6,3},{0x505d,4}}, {{0xf77,3},{0x6008,3}}, {{0x750b,4},{0x1de7,3}}, {{0x11628,8},{0x1059,3}}, + {{0xf22,2},{0x113f,2}}, {{0xe1f,3},{0xfb0,2}}, {{0x127a4,7},{0xf91,3}}, {{0x4853,3},{0xe65,2}}, + {{0x16fea,4},{0xec6,3}}, {{0x9b25,5},{0x3694,3}}, {{0x1e826,6},{0x17b0,3}}, {{0x46af,3},{0x1e576,2}}, + {{0xe0f6,6},{0xabc4,4}}, {{0x26103,4},{0x17661,2}}, {{0x478f,3},{0xcc5,2}}, {{0x29cf,3},{0x2c85,2}}, + {{0xe08,1},{0x31f8,3}}, {{0xf0d,2},{0x913b,6}}, {{0x17e36,6},{0xf35,3}}, {{0xecfe,8},{0xeed,3}}, + {{0x947d,6},{0x28f8,5}}, {{0x111c8,5},{0xf35,3}}, {{0x227c,5},{0x1508f,5}}, {{0x12d4,3},{0xb410,4}}, + {{0x19b9,1},{0xed6,2}}, {{0x1537,4},{0xcd3,3}}, {{0xec3,3},{0x1c1d,4}}, {{0x1efee,3},{0xf3b,3}}, + {{0x24d5b,5},{0x1766a,3}}, {{0x18412,7},{0x1524,3}}, {{0x13eec,5},{0xe0b,4}}, {{0x3d63,5},{0x67c6,4}}, + {{0x1927,5},{0xff1,4}}, {{0x4775,2},{0x1ebf,3}}, {{0xda8,24},{0xda8,24}}, {{0xf2ec,6},{0x4a5f,4}}, + {{0xbae3,5},{0xce83,4}}, {{0x19b9,1},{0x28471,4}}, {{0x46af,3},{0xe86,2}}, {{0xf302,7},{0xeed,4}}, + {{0x4853,3},{0xf49d,4}}, {{0x712f,4},{0x876c,4}}, {{0x1749,3},{0xe22,3}}, {{0x2e193,4},{0xf,1}}, + {{0x21e1b,7},{0xe11,1}}, {{0x10c5,5},{0xf6a4,5}}, {{0x3b4f,9},{0xeed,4}}, {{0x302,2},{0xd,1}}, + {{0x1702e,4},{0x6ca7,3}}, {{0x2240,4},{0xfd38,4}}, {{0xa,2},{0xe0a,1}}, {{0xe1f,3},{0xe0b,2}}, + {{0x2de75,3},{0x44,2}}, {{0x46af,5},{0xe5c0,6}}, {{0xe89,2},{0x29f3,3}}, {{0x442b,3},{0x110fb,3}}, + {{0x19f7,4},{0x18984,6}}, {{0xfd10,9},{0xe11,1}}, {{0x2a2b,6},{0x1150,2}}, {{0x9e,2},{0x9f,1}}, + {{0x12ce0,7},{0xf91,3}}, {{0x4c37,5},{0x3694,3}}, {{0x2dcdd,4},{0x2,1}}, {{0x229a,7},{0x39b2,7}}, + {{0x4791,2},{0x1523,4}}, {{0x19f7,4},{0x11b5,2}}, {{0x2948,3},{0xe32,1}}, {{0x1062,2},{0xe67,2}}, + {{0x4c03,5},{0x1303,3}}, {{0x17ec,4},{0x2c15,3}}, {{0x1118f,6},{0x3640,4}}, {{0xbeb9,6},{0xf04,3}}, + {{0x1bec,10},{0xe77,3}}, {{0x2e193,4},{0x21,1}}, {{0xcc7,1},{0xfcb,2}}, {{0x10c5,5},{0x5538,2}}, + {{0x12e5,4},{0x122e,2}}, {{0x10e7,5},{0x1263,7}}, {{0x753f,5},{0xee21,6}}, {{0x1537,6},{0x146d,9}}, + {{0x3642,2},{0x7968,6}}, {{0xb379,3},{0x16fcd,7}}, {{0x1497,5},{0x2663,6}}, {{0x46bd,3},{0x19b9,1}}, + {{0x152,2},{0xf,1}}, {{0x70ad,3},{0x2d11,3}}, {{0xf65,4},{0xeaa,2}}, {{0xe99,1},{0xc80d,4}}, + {{0x7ff5,5},{0x174b,4}}, {{0xe83,5},{0x161e,9}}, {{0x2e193,4},{0xe,1}}, {{0xf34,2},{0xe7f,2}}, + {{0xbb89,4},{0x1b60d,3}}, {{0xf02,2},{0xf19,2}}, {{0xf205,4},{0xcc3d,3}}, {{0x1ddf4,5},{0x12b4,4}}, + {{0x120a,5},{0xcc9,2}}, {{0xf65,4},{0x1789,4}}, {{0x10e77,5},{0x14991,4}}, {{0x46af,3},{0x1153,3}}, + {{0x1d7bb,7},{0xcc9,2}}, {{0x5715,6},{0x10f2,5}}, {{0x4574,3},{0x6,1}}, {{0xe09,1},{0xcd3,3}}, + {{0x9159,8},{0x1783,4}}, {{0x101f,2},{0x14e1,6}}, {{0x10b4,5},{0x5,2}}, {{0x8b59,6},{0xeb4,3}}, + {{0x450b,4},{0x2e29,3}}, {{0xae69,5},{0xef5,2}}, {{0x2b0a8,4},{0x18ed6,2}}, {{0xe5b,3},{0x3a3e,6}}, + {{0x2b94,6},{0xf91,3}}, {{0xebe,4},{0x184d,6}}, {{0x11d5,5},{0x2317,5}}, {{0xb3c1,6},{0xf86,2}}, + {{0x6,1},{0x8b31,4}}, {{0x2240,4},{0xee9,2}}, {{0x4765,3},{0x809a,3}}, {{0x1fc7,3},{0xb,1}}, + {{0xf0a,3},{0x72d3,3}}, {{0xfa2f,9},{0xe11,1}}, {{0x18c5a,6},{0xed9,2}}, {{0x1857,4},{0xec3,3}}, + {{0xe08,1},{0xcaa1,5}}, {{0x16728,6},{0x1664,2}}, {{0x70ad,5},{0x7a36,3}}, {{0x4522,3},{0x6,1}}, + {{0x1d9f,6},{0xefa,3}}, {{0x1747,4},{0xcc9,2}}, {{0x7414,3},{0x1a9a,4}}, {{0x5722,4},{0x4,1}}, + {{0x1647,5},{0x6956,4}}, {{0x5242,5},{0x16e1,6}}, {{0x113c,3},{0xcc7,1}}, {{0xf18,2},{0xe09,1}}, + {{0x1e872,2},{0x1e874,3}}, {{0x302,2},{0xe,1}}, {{0x2e59,8},{0xe0a,1}}, {{0x1f97b,4},{0xe16,1}}, + {{0x116ac,5},{0x354f,4}}, {{0x46bd,3},{0xed9,2}}, {{0xe08,1},{0x44ad,3}}, {{0x24f2,5},{0x4bbd,5}}, + {{0xceea,6},{0xeed,4}}, {{0xe08,1},{0x12fd,3}}, {{0x28d0,4},{0xe0d,2}}, {{0xcc8,1},{0x3cdf,6}}, + {{0x29622,2},{0x2d4e9,2}}, {{0x111c8,3},{0xe1b,4}}, {{0x2de7b,3},{0x55,2}}, {{0xd029,8},{0xec6,3}}, + {{0x14a7,4},{0x125f1,5}}, {{0x73e0,5},{0x1067f,3}}, {{0xe97,3},{0x24bdf,2}}, {{0xeab,2},{0x120f,3}}, + {{0x9a6,1},{0x4,1}}, {{0x1809,3},{0xfeac,3}}, {{0x2995,3},{0x48c6,10}}, {{0xb37b,1},{0x2245,3}}, + {{0x12830,5},{0x1489,2}}, {{0x45,1},{0x666,2}}, {{0x2b0d8,4},{0x2b0dc,2}}, {{0x11b3,5},{0x1ea1,5}}, + {{0x1937,6},{0x175e8,4}}, {{0x3537,2},{0xe67,2}}, {{0x21a09,6},{0xcc9,2}}, {{0xf0a,3},{0x11a6,3}}, + {{0x152,2},{0x7b,1}}, {{0x2d38f,4},{0x2995,2}}, {{0x109b,2},{0xcbd,1}}, {{0x1447,7},{0x7fcc,5}}, + {{0x1290,4},{0x6fba,8}}, {{0x1847,5},{0x4a44,5}}, {{0x11b26,5},{0x2b78,5}}, {{0x4853,3},{0x26ede,4}}, + {{0x2df3b,4},{0x7a,2}}, {{0x58a8,6},{0x103e,5}}, {{0x1567,3},{0xe11,1}}, {{0x2de75,3},{0x512,2}}, + {{0x5bc,2},{0x69,1}}, {{0x17c10,6},{0x17c16,4}}, {{0x5bb4,5},{0xe92,3}}, {{0x2d95,5},{0xccd,2}}, + {{0x12d4,3},{0xf15,1}}, {{0x1f5a6,6},{0xa,2}}, {{0x314,2},{0x57,1}}, {{0x5269,6},{0x526f,7}}, + {{0x2b84,6},{0xed6,2}}, {{0x18c6e,7},{0x1790,3}}, {{0x11e75,5},{0x23d1,3}}, {{0xe5b,3},{0x194a8,5}}, + {{0x2cbe5,4},{0xe08,1}}, {{0x1198f,5},{0xed9,2}}, {{0x75ea,6},{0xcce,2}}, {{0xe1f,3},{0x9a4,3}}, + {{0x3a29,5},{0x4188,3}}, {{0x2b2a,6},{0xf84,5}}, {{0x1c9d6,6},{0x2075,3}}, {{0x301b,4},{0x1773,4}}, + {{0x4685,7},{0x180e,3}}, {{0xe11,1},{0x2e2c,3}}, {{0xecb,2},{0x6479,4}}, {{0x12f8,4},{0x3075,3}}, + {{0x26f5,4},{0xdc6e,4}}, {{0xe6f,3},{0xa385,4}}, {{0x2de7b,3},{0x1bd,2}}, {{0x1825a,6},{0x7a0f,4}}, + {{0xcd2,2},{0xf19,2}}, {{0x7b51,4},{0x4e0d,6}}, {{0x4767,1},{0xe25,2}}, {{0xe83,15},{0xe92,5}}, + {{0xe77,2},{0xf84,5}}, {{0x13a7,5},{0xc6af,6}}, {{0x1208,7},{0xf3f0,4}}, {{0x6ae3,8},{0xcce,2}}, + {{0xbc93,5},{0x1632,5}}, {{0x2fc18,3},{0x0,1}}, {{0x15f7,4},{0x2037,11}}, {{0x21,1},{0x1d0,2}}, + {{0x12c3,4},{0x136f8,6}}, {{0x29c0,3},{0x48d2,3}}, {{0x1977,3},{0x2a327,2}}, {{0x4853,3},{0x4e43,4}}, + {{0xe11,2},{0x3650,5}}, {{0xf0a,3},{0xf62,3}}, {{0x12fe,2},{0xcc9,2}}, {{0x16ac,3},{0xf62,3}}, + {{0xcc9,2},{0x1b4f,5}}, {{0x45a5,5},{0xcc1,1}}, {{0x1ff7,3},{0x11dc,3}}, {{0x124c,6},{0x6970,7}}, + {{0x4199,5},{0x305a,4}}, {{0x1373,2},{0x12334,4}}, {{0x122a,6},{0x28f8,5}}, {{0xf0a,3},{0xfbb,3}}, + {{0xcc7,1},{0x141a,2}}, {{0x1153,2},{0x9a6,1}}, {{0xe6d9,8},{0xe92,3}}, {{0x9,1},{0x9,1}}, + {{0x1967,3},{0x74f9,2}}, {{0x311fb,4},{0x8,1}}, {{0xe11,2},{0x4ef1,4}}, {{0xe1b,3},{0x30f7,2}}, + {{0xf77,3},{0x63ea,4}}, {{0x204b1,3},{0x390b,4}}, {{0x122a,11},{0x11ad,4}}, {{0xf0a,3},{0x3a48,5}}, + {{0x332b,5},{0x1b80,3}}, {{0x5f69,6},{0x1288,4}}, {{0xcc1,1},{0x198c9,2}}, {{0x115e,7},{0x15cf,7}}, + {{0x265bb,5},{0x101d,3}}, {{0xf77,4},{0xfe8,2}}, {{0xf0a,5},{0x10e03,6}}, {{0x5117,5},{0x2ee9,3}}, + {{0xccd,1},{0x14f9,3}}, {{0xe83,3},{0x6479,4}}, {{0x1839,3},{0xe6b,4}}, {{0x4853,3},{0x2ad98,3}}, + {{0x1e30f,3},{0x1b9d,4}}, {{0xf9cc,7},{0x2917,4}}, {{0xec6f,7},{0xe11,1}}, {{0xf,1},{0x325,2}}, + {{0xb895,5},{0xe5e,2}}, {{0x27e0,3},{0xe65,2}}, {{0x1aae6,6},{0xcba,2}}, {{0x1dbd,6},{0x7f8f,6}}, + {{0x6007,7},{0xcc9,2}}, {{0x1f25,4},{0x3c8a,7}}, {{0x48d3,2},{0xe33,1}}, {{0xd449,6},{0x2f94,3}}, + {{0xf4f,1},{0x162c,3}}, {{0x4,1},{0xcbd,1}}, {{0xf0c,1},{0x1e8b,3}}, {{0x9add,5},{0x1a5e,3}}, + {{0x17a3a,5},{0xeed,4}}, {{0x12e5,3},{0x1054,3}}, {{0x7602,4},{0xfe8,2}}, {{0x10e7,5},{0xeee,3}}, + {{0x70ad,4},{0x1692,2}}, {{0xb37c,3},{0x4665,4}}, {{0x8cfd,5},{0x37c8,5}}, {{0x2f71,7},{0x2467,4}}, + {{0x2024,5},{0x18b4,3}}, {{0x7414,3},{0xe0b,2}}, {{0xf1d,1},{0x295c7,2}}, {{0x488d,3},{0xcd3,1}}, + {{0x1367,3},{0xcba,2}}, {{0x2ca39,4},{0x260ef,2}}, {{0xe5b,3},{0xf8d,3}}, {{0xf0a,3},{0xe67,2}}, + {{0x125d,6},{0x61ba,5}}, {{0x1467,4},{0xf86,3}}, {{0x1e44,6},{0x211a,4}}, {{0xb,1},{0xe09,1}}, + {{0x1252e,4},{0x2468,3}}, {{0xc7ff,5},{0xcc9,2}}, {{0xcb4e,7},{0xf7a,2}}, {{0x4853,3},{0x9b99,4}}, + {{0x7911,3},{0xa,2}}, {{0x2b57,3},{0x153ff,5}}, {{0x16f7,6},{0x5adf,4}}, {{0x486f,6},{0x3b1b,5}}, + {{0x2c81,6},{0xeed,4}}, {{0x19b9,1},{0x122d,3}}, {{0x9219,5},{0x5b6d,6}}, {{0x2de93,4},{0x57,1}}, + {{0x794f,4},{0xed6,2}}, {{0x2df3b,4},{0x8d,1}}, {{0x1977,3},{0xe71,1}}, {{0x450f,5},{0x4514,5}}, + {{0xe99,1},{0x2b83,2}}, {{0x46bf,1},{0x101f,2}}, {{0x3949,10},{0x126a,4}}, {{0x40ab,9},{0x1702,4}}, + {{0x13960,5},{0x1bf6,5}}, {{0x9a8,1},{0xec6,3}}, {{0xe80,2},{0xcc9,2}}, {{0xedd,1},{0xe0d,2}}, + {{0x162c,3},{0xe69,5}}, {{0xf1c3,5},{0x1c1aa,4}}, {{0x1ebc,5},{0xeca,3}}, {{0x19b7,3},{0x123e,3}}, + {{0x11f5c,4},{0xc3c2,7}}, {{0x247a,5},{0x1235,6}}, {{0x4853,3},{0x3cdf,6}}, {{0x10bf9,5},{0x9,1}}, + {{0x1109,5},{0x1131,3}}, {{0x1ff7,3},{0x172cf,4}}, {{0x18ae8,6},{0x16620,4}}, {{0x18ecc,2},{0xc287,2}}, + {{0x2cdcb,5},{0xf0c,1}}, {{0xe83,3},{0x5,2}}, {{0x24233,6},{0xe22,2}}, {{0x10a99,4},{0x123e,3}}, + {{0xf0a,3},{0x1debd,2}}, {{0x1b2cf,7},{0xe95,2}}, {{0x115e,10},{0xed5,3}}, {{0x72cf,4},{0x142d,3}}, + {{0xf11,2},{0x39bd,8}}, {{0x1d26c,7},{0xfe6,2}}, {{0x15030,6},{0xc088,4}}, {{0x492e,3},{0x1025,1}}, + {{0xa519,4},{0x34d7,4}}, {{0xe3d7,6},{0x13e3,4}}, {{0xb8dd,5},{0x9,1}}, {{0xb835,5},{0xe89,2}}, + {{0x1ff7,3},{0x4227,3}}, {{0x12e,2},{0xe,1}}, {{0x15ee0,5},{0xfdd,4}}, {{0x1e250,8},{0xe11,1}}, + {{0xcbd,1},{0x716c,4}}, {{0xf15,1},{0xccd,1}}, {{0x1007,5},{0x3fd0,9}}, {{0x31f8,3},{0x2dd7,4}}, + {{0x1155,2},{0xeb5,2}}, {{0x1977,3},{0xee58,3}}, {{0x16a7,3},{0x1047,3}}, {{0x1727,8},{0x3cdf,6}}, + {{0x10566,7},{0x1059,3}}, {{0x10a5,2},{0xb,1}}, {{0x29ed,4},{0x156a,3}}, {{0x1917,4},{0xe2b,2}}, + {{0x164,2},{0xd,1}}, {{0x2939,4},{0x168f,3}}, {{0x12a3,3},{0xf91,3}}, {{0x1969,1},{0x6,1}}, + {{0x442b,3},{0xe5e,2}}, {{0x17030,3},{0x3371,5}}, {{0x30118,4},{0x9f,1}}, {{0xb3f1,3},{0xe1c,3}}, + {{0x488b,4},{0x6,2}}, {{0xed1,5},{0x211a,4}}, {{0x1e57e,2},{0xe99,1}}, {{0x9f81,8},{0xe0b,4}}, + {{0xede,1},{0x1dcb6,3}}, {{0x288b,2},{0x1252,3}}, {{0x19b9,1},{0x24d65,2}}, {{0x1967,3},{0x1cfc,3}}, + {{0x8535,8},{0xeed,4}}, {{0x2696,7},{0x189f,3}}, {{0x4861,4},{0xe77,2}}, {{0x115e,7},{0x15cf,8}}, + {{0x1dae,6},{0x146d,4}}, {{0x74f3,2},{0xe16,1}}, {{0x1f687,4},{0xcd3,2}}, {{0x7e6b,6},{0x4,1}}, + {{0x21,1},{0x1be,2}}, {{0x7240,10},{0xfe6,2}}, {{0xe65,2},{0xcdda,2}}, {{0x4139,4},{0xec3,3}}, + {{0x4767,1},{0x8,1}}, {{0x1137e,5},{0x2c85,2}}, {{0x27e0,4},{0x7417,4}}, {{0x2ba5,1},{0x1cd3,2}}, + {{0xcd2,2},{0xe95,2}}, {{0x2c54d,4},{0x2693f,2}}, {{0xf77,3},{0x3537,2}}, {{0x1ff7,3},{0x9c85,3}}, + {{0x70ad,3},{0x189f,3}}, {{0x119d1,6},{0x1a5e,3}}, {{0x10d6,5},{0xdc01,4}}, {{0x15ed6,5},{0x1894,3}}, + {{0x12c3,5},{0x1d7d,3}}, {{0xf0f,2},{0xcc6,2}}, {{0xe75,2},{0xe67,3}}, {{0x5638,7},{0x1859,4}}, + {{0x12d4,3},{0xfcb,3}}, {{0xeed,2},{0xe71,1}}, {{0x1646c,7},{0xfb8,3}}, {{0xccb,2},{0x14e1,6}}, + {{0x7efc,4},{0xe0a,1}}, {{0x7788,6},{0x168f,2}}, {{0x6567,7},{0x1f2c,6}}, {{0xeab,2},{0xc3fb,5}}, + {{0x2966,4},{0xb491,8}}, {{0xedd,1},{0x198cf,5}}, {{0x1196e,5},{0xe22,2}}, {{0xb69d,3},{0xec6,3}}, + {{0x1f16,5},{0xddb9,4}}, {{0xe2f,1},{0x26909,3}}, {{0xe78,1},{0xf18,2}}, {{0x29cf,3},{0x1839,2}}, + {{0xf0a,3},{0x24bc6,2}}, {{0x556,2},{0x7b,1}}, {{0xf11,1},{0x11187,2}}, {{0xb3f1,5},{0xefb,4}}, + {{0xcd4,2},{0xcc3,2}}, {{0xf4f,1},{0x569a,3}}, {{0x18ecc,2},{0x2b0dc,2}}, {{0xf7a,2},{0x1d74,3}}, + {{0xdad1,6},{0x114f,3}}, {{0x10b4,4},{0xec6,3}}, {{0x1d9f,6},{0x28b7,5}}, {{0x8505,8},{0xec6,3}}, + {{0x478f,3},{0x16e1,6}}, {{0x17178,5},{0x1de7,3}}, {{0x7911,3},{0x162c,3}}, {{0x2de75,3},{0x260,2}}, + {{0xebe,4},{0xf03,4}}, {{0x1e9e,10},{0x1663,4}}, {{0x9a7,3},{0xa,2}}, {{0xe21,1},{0x136f,2}}, + {{0x48d8,2},{0x2e718,3}}, {{0x7a91,6},{0x172e,5}}, {{0x60d5,7},{0x1254,6}}, {{0x2e27c,2},{0x2e27d,1}}, + {{0x188c,3},{0x1569,3}}, {{0x48d9,4},{0xf0c,1}}, {{0xcbd,1},{0x6215,5}}, {{0x3b09,4},{0x10e51,4}}, + {{0x127f,3},{0x9294,4}}, {{0x114f,3},{0x6,1}}, {{0x518c,9},{0xe77,3}}, {{0x618b,7},{0x10ba,6}}, + {{0x247a,5},{0x6a0f,4}}, {{0xe0ed,3},{0xe67,2}}, {{0x1830,3},{0x1a71,3}}, {{0x797d,6},{0xec6,3}}, + {{0x5724,3},{0x29f7,3}}, {{0x292a,8},{0x1440,7}}, {{0x9,2},{0x14f9,3}}, {{0x11ec4,3},{0xed5,3}}, + {{0x18020,6},{0x66c1,4}}, {{0xe31,2},{0xce76,6}}, {{0xf0c,1},{0x12a6,3}}, {{0x187be,7},{0xf35,2}}, + {{0x77f0,4},{0x1c7e,4}}, {{0x12e,2},{0xd,1}}, {{0xb0,2},{0x69,1}}, {{0xc88e,6},{0xbf5d,4}}, + {{0x24373,5},{0xe31,2}}, {{0xaaf,2},{0x2b50b,8}}, {{0x4ef5,4},{0x17cd,4}}, {{0xbfe5,5},{0x1944,3}}, + {{0xcc8,1},{0xf0d,2}}, {{0xf0c,1},{0x10a6,3}}, {{0x229a,7},{0x22b0,8}}, {{0xef7,3},{0x1047,3}}, + {{0x1357,1},{0x2e27d,1}}, {{0xed1,3},{0x9c92,7}}, {{0x126b4,7},{0xec6,3}}, {{0x1467,6},{0x34f0,7}}, + {{0x1aab9,5},{0x2d7c,4}}, {{0x70ad,3},{0x1969,1}}, {{0xe97,3},{0x48d3,2}}, {{0x62fa,4},{0xe67,2}}, + {{0xf65,3},{0x10b9,2}}, {{0x12e5,3},{0x6ca7,3}}, {{0x11d9,3},{0x1ab69,4}}, {{0x1817,7},{0xabd0,5}}, + {{0x10285,6},{0x1059,3}}, {{0x307bb,1},{0xaf4,1}}, {{0x1ff7,3},{0xb9f6,3}}, {{0x1059,3},{0xe1c,3}}, + {{0x4853,3},{0x1579,3}}, {{0xcd3,1},{0xe25,2}}, {{0xcd6,1},{0x2e273,1}}, {{0x11fbf,8},{0xe67,2}}, + {{0x10a3,3},{0xf1a,2}}, {{0x24d5e,2},{0xe16,1}}, {{0x1f14a,6},{0x15e9,3}}, {{0x466b,5},{0x3376,7}}, + {{0x1290,4},{0x4a36,6}}, {{0x12ee8,7},{0xcc9,2}}, {{0x780c,3},{0xafe2,7}}, {{0x11a55,5},{0x3bee,5}}, + {{0x11b3,6},{0x1059,3}}, {{0xb979,5},{0xcc6,2}}, {{0x7414,3},{0xfa6,3}}, {{0x111a,3},{0x27544,4}}, + {{0xf0a,3},{0x74f9,2}}, {{0x77f2,3},{0x679c,7}}, {{0x666,2},{0x57,1}}, {{0x2280,2},{0x158f,3}}, + {{0x6bda,9},{0x1663,4}}, {{0xe97,3},{0xe33,1}}, {{0x9c69,7},{0xe95,2}}, {{0x1a07,3},{0x43be,6}}, + {{0x56c7,6},{0xd704,5}}, {{0x1e8b,3},{0xebc,2}}, {{0x12c3,4},{0x2,1}}, {{0xe97,3},{0x1372,5}}, + {{0x19b7,3},{0x1ebf,3}}, {{0x1692,2},{0xe0b,4}}, {{0xf89,3},{0xccd,1}}, {{0x18228,8},{0xe95,2}}, + {{0xf77,3},{0xdb21,3}}, {{0x18aac,7},{0xe1c,3}}, {{0xfe6,2},{0xe22,2}}, {{0x1817,7},{0x127c,3}}, + {{0x1ccd,5},{0xa894,5}}, {{0x2de7b,3},{0x11c,2}}, {{0x127f,3},{0xe32,1}}, {{0xa641,6},{0x2dd7,4}}, + {{0x139ec,7},{0xec6,3}}, {{0x18a34,6},{0x15e9,3}}, {{0xe19,1},{0x15d1,6}}, {{0x93a7,3},{0xc39f,4}}, + {{0x10da,3},{0x239e,3}}, {{0x10c5,4},{0xed9,2}}, {{0xed1,4},{0x49b4,6}}, {{0xb69d,4},{0x286d,3}}, + {{0xdfac,7},{0xfdd,4}}, {{0xe08,1},{0x35a3,3}}, {{0x1a66,1},{0x101f,3}}, {{0x17f9e,5},{0x66c1,5}}, + {{0x1274a,7},{0xec6,3}}, {{0x28d0,7},{0xec6,3}}, {{0x18e08,7},{0x1085,3}}, {{0x699,2},{0x69,1}}, + {{0x29cf,3},{0xe33,1}}, {{0x114e9,4},{0x4516,3}}, {{0x7ef9,7},{0xe69,5}}, {{0x5416,7},{0x308f,3}}, + {{0x11191,4},{0x3640,4}}, {{0x70e1,6},{0x1b4f,7}}, {{0x200a7,5},{0x5026,4}}, {{0x1e60c,4},{0xe92,3}}, + {{0x4765,3},{0x1db33,2}}, {{0xaebd,5},{0x5,1}}, {{0xe97,3},{0x6,2}}, {{0xf4f,1},{0x2270,3}}, + {{0x1f03f,2},{0x19b9,1}}, {{0x25723,7},{0x2,1}}, {{0x4781,3},{0x6,2}}, {{0x1189d,4},{0x8,1}}, + {{0xf77,5},{0x7998,4}}, {{0xebe,5},{0xe60,2}}, {{0x10da,3},{0xeee,3}}, {{0x3273,8},{0x153a,3}}, + {{0x1bef,2},{0xf7a,2}}, {{0xc2d7,7},{0x3640,4}}, {{0x177fe,7},{0xf59,2}}, {{0x9da1,5},{0x2268,5}}, + {{0xee4,4},{0xf8d,2}}, {{0x1b01,5},{0xcba,3}}, {{0x1dcb6,3},{0x74fc,2}}, {{0x29cf,3},{0x22b2,3}}, + {{0x7a,2},{0x57,1}}, {{0x24d5e,2},{0xe99,1}}, {{0x9af,2},{0x18ee0,2}}, {{0x123ee,5},{0x123f3,5}}, + {{0x215b1,5},{0x16a3a,3}}, {{0xce03,9},{0xe95,2}}, {{0x4765,3},{0xcd3,2}}, {{0xa185,7},{0x4c00,3}}, + {{0x1787,12},{0x1054,3}}, {{0x22b8,4},{0x3ce0,5}}, {{0x3ad1,8},{0x104a,4}}, {{0x1007,6},{0x2146,3}}, + {{0x9219,5},{0xa36b,6}}, {{0x2de75,3},{0x468,2}}, {{0xccb,2},{0xf34,2}}, {{0x5e58,6},{0xe67,2}}, + {{0x1a7e9,6},{0xcc9,2}}, {{0x5cab,7},{0x10f2,5}}, {{0xf77,3},{0x11a6,3}}, {{0x4225,4},{0xeb4,3}}, + {{0x2d137,5},{0xe19,1}}, {{0x73b9,5},{0xe3b0,6}}, {{0x1be,2},{0x413,2}}, {{0xffc,3},{0xcc3,2}}, + {{0xc6f7,7},{0xc6fe,4}}, {{0xcf6,16},{0xcf6,16}}, {{0x7115,4},{0x1153,3}}, {{0x7b2d,5},{0x3a30,6}}, + {{0x6f68,8},{0x27dc,4}}, {{0x6fd2,6},{0xcc9,2}}, {{0xbc25,5},{0xeb9,5}}, {{0x140,2},{0x21,1}}, + {{0x1c211,5},{0x1c216,4}}, {{0x3535,4},{0xfbb,4}}, {{0x11b3,5},{0xcd2,4}}, {{0xf0c,1},{0x286d,3}}, + {{0x2132,9},{0xed6,2}}, {{0xe97,3},{0x1db44,2}}, {{0xcc7,1},{0x431c,5}}, {{0xe1b,3},{0x2252,3}}, + {{0x772d,9},{0xe77,3}}, {{0x10cb,2},{0x1722,5}}, {{0xe97,3},{0x8,4}}, {{0x1467,6},{0x2663,6}}, + {{0x7416,1},{0xe33,1}}, {{0x12e5,3},{0xe95,2}}, {{0xcce,2},{0xebb,3}}, {{0x24f2,5},{0xed6,2}}, + {{0x5b8d,9},{0x18b4,3}}, {{0x11a6,5},{0x7b72,3}}, {{0xe21,1},{0xf15,1}}, {{0xb51d,5},{0xe11,1}}, + {{0x215f,8},{0xec6,3}}, {{0x10cb4,4},{0x172b2,6}}, {{0xf80,2},{0xe1b,2}}, {{0x7b,1},{0x567,2}}, + {{0x22b8,4},{0x1569,3}}, {{0x281c,8},{0x1663,3}}, {{0xdd8,24},{0xdd8,24}}, {{0x18796,5},{0x189f,3}}, + {{0x67ca,10},{0xec6,3}}, {{0x23d1,3},{0xfe0,2}}, {{0x445e,2},{0xedd,1}}, {{0x2538b,5},{0xe5e,2}}, + {{0xccd,1},{0x101e,4}}, {{0x45cf,6},{0x110fb,5}}, {{0x114e9,6},{0xec6,3}}, {{0xe32,1},{0x155b,3}}, + {{0x1847,9},{0xe6b,4}}, {{0xcbf,2},{0xe22,2}}, {{0x1150,2},{0xe7f,2}}, {{0x302,2},{0x69,1}}, + {{0xcb8,1},{0xb405,4}}, {{0x2b48,2},{0x4,1}}, {{0x15a7,8},{0xe95,2}}, {{0x6171,5},{0x6183,8}}, + {{0x20579,1},{0x205a7,1}}, {{0x478f,3},{0x3a3e,7}}, {{0x75ce,4},{0x3599,3}}, {{0x1524c,6},{0x90f3,4}}, + {{0xf11,2},{0x39bd,4}}, {{0xf89,5},{0xe7f,3}}, {{0x2939,4},{0xfc87,5}}, {{0x106c6,8},{0xfe6,2}}, + {{0x1d65,3},{0xed6,2}}, {{0x578,2},{0xe,1}}, {{0x7935,5},{0x277e,2}}, {{0xc862,7},{0xed6,2}}, + {{0x18908,6},{0xe1c,3}}, {{0x13ee2,6},{0x128c,4}}, {{0x105f,3},{0xec0,3}}, {{0x1007,5},{0x1d74,5}}, + {{0xf89,3},{0x125fb,5}}, {{0xef7,3},{0x163cf,7}}, {{0x12e5,3},{0x1a5e,3}}, {{0x117eb,6},{0x10b7,2}}, + {{0x103cf,7},{0x1523,4}}, {{0x5cec,8},{0xe69,5}}, {{0xb535,5},{0x6,2}}, {{0xe5b,3},{0xa7c8,5}}, + {{0xeee,3},{0x6,1}}, {{0x12d4,3},{0x1a58,3}}, {{0xccd,1},{0x6479,4}}, {{0x4c5e,8},{0x431c,5}}, + {{0x1f38,4},{0xe6b,3}}, {{0x7199,6},{0xef3,4}}, {{0x74f1,4},{0xf0c,1}}, {{0x7602,4},{0x2,1}}, + {{0x647d,8},{0x305a,5}}, {{0xe21,1},{0xcbe,3}}, {{0x450b,4},{0x11a6,2}}, {{0x168f,2},{0x10cb,4}}, + {{0x75e8,8},{0x18b4,3}}, {{0x772d,5},{0xfeac,3}}, {{0x27e0,3},{0x1dee,2}}, {{0x31d9,8},{0x13c3,4}}, + {{0x22b8,4},{0x7974,4}}, {{0x9a8,1},{0x5edd,3}}, {{0xed1,3},{0xe71,1}}, {{0xf0f,2},{0xe86,2}}, + {{0xf4f,1},{0x29bfe,2}}, {{0x2dbf,5},{0x4cff,8}}, {{0x2d87,6},{0x16ad,5}}, {{0xc2,2},{0x8d,1}}, + {{0x22a3,2},{0x4d74,4}}, {{0x12d4,3},{0xeb5,2}}, {{0xe22,2},{0x413d,5}}, {{0x329d,5},{0x38ee,5}}, + {{0x18610,5},{0xe91,2}}, {{0x2de7b,3},{0x1d0,2}}, {{0x1a07,3},{0x2b79,4}}, {{0x1367,6},{0xe5e9,3}}, + {{0x16a7,3},{0x15399,6}}, {{0x12e5,5},{0x1d74,5}}, {{0x168e0,5},{0xe11,1}}, {{0xe19,1},{0x12b5,2}}, + {{0x73ed,4},{0x114a0,7}}, {{0x28b3a,1},{0x2e269,2}}, {{0x3032f,3},{0x2e27e,2}}, {{0x3a29,4},{0x1bf18,5}}, + {{0x6bb,2},{0x8d,1}}, {{0x21ff3,6},{0xcc9,2}}, {{0xf63,2},{0x4159,3}}, {{0x2687,8},{0xcc9,2}}, + {{0x331f,3},{0xcbd,1}}, {{0x9c85,3},{0xed6,2}}, {{0x65cf,6},{0x6ca7,3}}, {{0x73e0,7},{0xe69,5}}, + {{0x1e8a4,4},{0x319a,3}}, {{0xb3f1,3},{0xe77,3}}, {{0x12f8,2},{0xf150,5}}, {{0x12f8,2},{0xead,5}}, + {{0xc95f,5},{0x8d1d,4}}, {{0xf89,3},{0xf62,3}}, {{0xf0a,3},{0x8666,2}}, {{0x21f5,10},{0x21a5,5}}, + {{0x12e5,3},{0x11187,2}}, {{0x12c3,4},{0x910c,4}}, {{0x49a6,3},{0xe0a,1}}, {{0x1240,2},{0x6326,5}}, + {{0x1c28,7},{0x1c2f,4}}, {{0xa659,5},{0xcbd,1}}, {{0x478f,3},{0x1db45,3}}, {{0x9ca5,6},{0x9cab,6}}, + {{0xf15,1},{0xe25,2}}, {{0x488b,4},{0xeab,2}}, {{0xee95,6},{0x158f,3}}, {{0x1829,3},{0x16a3a,3}}, + {{0x55d0,6},{0x2d1f,6}}, {{0x4aef,3},{0x4b12,4}}, {{0xb8d1,4},{0x18313,5}}, {{0x1114d,6},{0xec6,3}}, + {{0x12f6,4},{0x1153,3}}, {{0x1939,2},{0x2ca1,4}}, {{0xe101,6},{0xe11d,4}}, {{0x1cdc,6},{0xcc9,2}}, + {{0xdd65,4},{0xf7a,2}}, {{0x1967,3},{0x1e65,3}}, {{0x48d0,2},{0x19b9,1}}, {{0x445e,2},{0x1a66,1}}, + {{0xf79,3},{0x10db,7}}, {{0x7392,5},{0xec6,3}}, {{0x26ff,8},{0x10f2,5}}, {{0x19b9,1},{0x11b5,2}}, + {{0x1587,11},{0xec6,3}}, {{0x1a07,3},{0x18772,2}}, {{0xe97,3},{0x3614,4}}, {{0x41ed,4},{0xce83,4}}, + {{0x14fb8,5},{0x3a39,4}}, {{0xfcb,2},{0x14a2,3}}, {{0x1eb23,5},{0xeee,3}}, {{0x1be,2},{0x435,2}}, + {{0x1e9e,5},{0xdb7b,6}}, {{0x12fe,2},{0xccd,1}}, {{0x17b5c,6},{0xfdf,4}}, {{0x5,1},{0xee9,2}}, + {{0xf0c,1},{0x29395,4}}, {{0x783e,5},{0x43fb,3}}, {{0xf65,4},{0x29f7,4}}, {{0xf0a,3},{0x29bfb,2}}, + {{0xf24,2},{0xf91,3}}, {{0xcbd,1},{0x5849,4}}, {{0x1702e,4},{0x58ff,4}}, {{0x10b7,2},{0xe0d,2}}, + {{0x7d0d,5},{0x158e,2}}, {{0x73ed,4},{0x12ba7,3}}, {{0x26da0,6},{0xe11,1}}, {{0x7392,5},{0xed6,2}}, + {{0xf15,1},{0x48d3,2}}, {{0x12c3,4},{0x1c85,3}}, {{0x1e9e,5},{0xeed,2}}, {{0xc015,4},{0x7119,3}}, + {{0x2df3b,4},{0xb0,2}}, {{0x361d,9},{0x1722,5}}, {{0x4,1},{0x2270,3}}, {{0xf457,5},{0xf45c,6}}, + {{0xe0b,2},{0x2f4a,4}}, {{0x1a14a,3},{0xf7a,2}}, {{0x780a,8},{0x27dc,4}}, {{0xe78,1},{0x7251,4}}, + {{0x1497,5},{0x2663,5}}, {{0xf59,2},{0x158e,2}}, {{0x2f41,5},{0xe0a,1}}, {{0xceea,6},{0x12be,5}}, + {{0x29922,2},{0x29922,2}}, {{0xe22,2},{0xe31,2}}, {{0xd013,8},{0xcc9,2}}, {{0x11d5,12},{0xe69,5}}, + {{0xd78,4},{0xc38,2}}, {{0x7bc1,3},{0xe11,1}}, {{0x29e0,2},{0x1150,2}}, {{0xee59,3},{0x3075,3}}, + {{0x1059,3},{0x127c,3}}, {{0xe21,1},{0x1722,5}}, {{0x48d6,2},{0x48d6,2}}, {{0xe32,1},{0x78d0,3}}, + {{0x5f1b,7},{0xe11,1}}, {{0xcc8,1},{0x1fcf,2}}, {{0x302,2},{0x7b,1}}, {{0xf65,4},{0x1849,3}}, + {{0x19b7,3},{0xeb5,2}}, {{0xe0d,2},{0xce83,4}}, {{0x1f3c9,6},{0xfa6,3}}, {{0x49b,2},{0x7b,1}}, + {{0x4,1},{0x4bf9,4}}, {{0xe78,2},{0xfe0,2}}, {{0x6bb,2},{0x69,1}}, {{0xaaf,3},{0xab1,4}}, + {{0xe11,1},{0x16935,5}}, {{0xf205,4},{0x9edf,5}}, {{0xb69d,4},{0xcd3,2}}, {{0x1599a,6},{0xe11,1}}, + {{0x12b2,12},{0xeed,4}}, {{0x70ad,4},{0xcd3,1}}, {{0x2de3f,3},{0x28b33,1}}, {{0xb34,4},{0xc,1}}, + {{0x15f7,4},{0x1cb1,3}}, {{0xe97,3},{0x258bf,4}}, {{0xa8e1,7},{0x2269,4}}, {{0xc0f9,5},{0xccaa,4}}, + {{0xb001,8},{0xe11,1}}, {{0x34e9,7},{0x350c,7}}, {{0x5,1},{0x1796b,4}}, {{0x1ba1,12},{0xe11,1}}, + {{0xf11,1},{0x1bd4c,6}}, {{0x13d66,6},{0xec5,4}}, {{0x465d,2},{0xeb5,2}}, {{0x168e0,8},{0xed9,2}}, + {{0xcbd,4},{0xed6,2}}, {{0xf0a,3},{0x1062,2}}, {{0x3c67,7},{0x3065,7}}, {{0xd131,5},{0xcd0d,4}}, + {{0x70ad,3},{0xe0f,1}}, {{0xfa5,2},{0xe2b,2}}, {{0x7602,5},{0x6e53,4}}, {{0x2c30,4},{0xcbd,1}}, + {{0x1597,11},{0xf84,5}}, {{0x417d,5},{0xed9,2}}, {{0x2b84,2},{0x2f94,3}}, {{0x2948,3},{0x2ed22,2}}, + {{0x2e280,3},{0xdd8,6}}, {{0x12e5,3},{0xe7a,1}}, {{0xe0b,2},{0x1569,3}}, {{0xd291,7},{0x1523,4}}, + {{0xe6f,11},{0xe7a,2}}, {{0x4385,3},{0xcc9,2}}, {{0x11e5f,5},{0x10f5,3}}, {{0x1977,3},{0xf5b,2}}, + {{0x9add,6},{0x45c7,2}}, {{0x4853,3},{0x11187,2}}, {{0x2f7f,7},{0x2eec,6}}, {{0x4765,3},{0xee9,2}}, + {{0x46bd,3},{0xcd3,1}}, {{0xcbb1,9},{0xe95,2}}, {{0x1290,5},{0x7d99,4}}, {{0x5534,4},{0x10cb,4}}, + {{0x27e0,3},{0x16a41,7}}, {{0x1967,3},{0x4aee,3}}, {{0x3cc0,4},{0x22fe,5}}, {{0xe99,1},{0x6ec3,3}}, + {{0x18d2c,7},{0x1fc7,3}}, {{0xf65,4},{0x15e9,3}}, {{0x1d93e,6},{0xec3,3}}, {{0x2b84,2},{0xf62,3}}, + {{0x15ca,4},{0x156a,3}}, {{0x27fe,7},{0xaee8,5}}, {{0x10a3,3},{0x9b4d,8}}, {{0x4ef5,4},{0xf1f,3}}, + {{0x7219,6},{0x1520,7}}, {{0x478f,3},{0x4457,2}}, {{0xf60,2},{0x2467,4}}, {{0x4765,3},{0x7de9,2}}, + {{0x111a,3},{0xec6,3}}, {{0x2f71,7},{0x3146,3}}, {{0xc015,4},{0x2dbe5,2}}, {{0x1ed99,6},{0xe11,1}}, + {{0x41a7,5},{0xef4,3}}, {{0x1817,4},{0x1153,3}}, {{0xf89,3},{0xeca,3}}, {{0x19c73,6},{0xec6,3}}, + {{0x5638,7},{0x113f,2}}, {{0x3e35,9},{0x126a,4}}, {{0x4527,7},{0x452e,4}}, {{0x11d4c,7},{0x5ddf,4}}, + {{0xccd,1},{0x217f4,5}}, {{0x2bb4,2},{0xf1a,2}}, {{0x2de75,3},{0x4bd,2}}, {{0x46bd,4},{0x1b0d,3}}, + {{0x44,2},{0x57,1}}, {{0x64e5,8},{0xeee,5}}, {{0x1c46,6},{0x4dc6,4}}, {{0xda8f,8},{0xcc9,2}}, + {{0x16a7,3},{0x5850,7}}, {{0xe7d,2},{0xeee,3}}, {{0xcce,2},{0xe11,2}}, {{0x73b9,5},{0xcd3,1}}, + {{0xf77,3},{0x566f,4}}, {{0x29c0,3},{0x2560,4}}, {{0x471f,6},{0xf6e,7}}, {{0x3537,2},{0x1b03,3}}, + {{0x1debd,2},{0x442d,1}}, {{0x4,1},{0x4618,3}}, {{0x7414,3},{0xe21,1}}, {{0x4597,4},{0x6e53,4}}, + {{0x225e,6},{0xb05c,5}}, {{0x9525,7},{0xcbd,1}}, {{0x1a07,3},{0x17df,3}}, {{0x2625d,3},{0xe7f,2}}, + {{0xb379,3},{0x1cd3b,3}}, {{0x4765,3},{0xf24,2}}, {{0xeacd,5},{0xe11,1}}, {{0x114de,6},{0x7860,5}}, + {{0x3a7d,7},{0x534e,5}}, {{0xfe6,2},{0xb,1}}, {{0x3903,8},{0xea93,3}}, {{0xe8a,2},{0x1c14,5}}, + {{0x14fb8,5},{0x4fa6,4}}, {{0x1367,3},{0xcc9,2}}, {{0x1160,5},{0x78da,7}}, {{0x2a2b,5},{0x78da,7}}, + {{0x28c1,4},{0xa,2}}, {{0x11e4b,3},{0x1692,5}}, {{0x595e,8},{0xcc9,2}}, {{0xe2f,1},{0x1d7e,3}}, + {{0x12e5,3},{0x3e0e,4}}, {{0x76a0,6},{0x17c0,2}}, {{0x7414,3},{0x1364e,4}}, {{0x11a13,8},{0xe77,3}}, + {{0xe13,3},{0xe22,2}}, {{0x1024,2},{0xe6c,3}}, {{0x2536d,4},{0x1155,2}}, {{0xa04d,7},{0xe69,5}}, + {{0xe7f,2},{0x12528,6}}, {{0xa659,5},{0x142c,4}}, {{0x74f9,2},{0x78ed,2}}, {{0x1967,3},{0x17661,2}}, + {{0x29cf,3},{0x24607,2}}, {{0xef7,9},{0x1130,2}}, {{0xcbd,1},{0xfc8,3}}, {{0x1787,6},{0xa833,6}}, + {{0x9a6,1},{0x28471,4}}, {{0x780a,4},{0xcc1,1}}, {{0x179d6,7},{0xf24,2}}, {{0x152d4,4},{0xe95,2}}, + {{0x9da1,5},{0x15413,5}}, {{0xfa5,2},{0xcc4,2}}, {{0x50bc,8},{0x1a9a,4}}, {{0x10c5,4},{0x3c9a,5}}, + {{0x12f6,4},{0x2a9a4,3}}, {{0x1367,3},{0xa894,5}}, {{0x4767,1},{0xcc3,2}}, {{0x7219,5},{0x3642,2}}, + {{0x12fd,3},{0xf62,3}}, {{0x1f0de,4},{0x11df6,4}}, {{0xcc7,1},{0x4bfa,3}}, {{0x80f1,6},{0x2ef8,3}}, + {{0x3203,8},{0x320b,6}}, {{0x2675d,2},{0x1e576,3}}, {{0x18d36,5},{0x1152,3}}, {{0x10b9,2},{0x113f,2}}, + {{0xafe9,8},{0x128c,4}}, {{0x1747,4},{0xccd,4}}, {{0x4519,4},{0xfaf,2}}, {{0x5c29,7},{0xe8ae,4}}, + {{0x12e5,3},{0x230fe,5}}, {{0x7414,3},{0x3c88,3}}, {{0x21179,6},{0x43fc,2}}, {{0xb6db,4},{0x17cd,4}}, + {{0xe1f,3},{0xf24,2}}, {{0x5cb8,11},{0xed9,2}}, {{0xf00,7},{0xe11,1}}, {{0xe08,1},{0x1a66,1}}, + {{0xe83,3},{0x296f,3}}, {{0x12e5,3},{0x1c964,6}}, {{0x22103,5},{0xf91,3}}, {{0xcd3,3},{0xe11,1}}, + {{0x11ec2,5},{0xebc,2}}, {{0x1de9f,5},{0xeee,3}}, {{0x19b7,3},{0x1debd,2}}, {{0x2ba5,1},{0xe78,1}}, + {{0xedd,1},{0x1132,2}}, {{0xe83,3},{0xfa6,3}}, {{0xf54,3},{0xccd,1}}, {{0x46bf,1},{0xe62c,4}}, + {{0xf02,2},{0xe67,2}}, {{0x30e53,3},{0x2e273,1}}, {{0x26921,2},{0x78ed,2}}, {{0x2e2c,3},{0x9,1}}, + {{0xede,1},{0xe19,1}}, {{0x848d,8},{0x7b72,3}}, {{0x2867,11},{0xe11,1}}, {{0x2b50f,2},{0x2aff8,2}}, + {{0xf1c3,5},{0xe67,2}}, {{0x10eb9,8},{0x1be9,3}}, {{0xe11,2},{0x716c,4}}, {{0xcbf,2},{0xf35,2}}, + {{0x2de75,3},{0x152,2}}, {{0x7337,4},{0x1413e,5}}, {{0x1497,11},{0x14a2,3}}, {{0xe83,3},{0x11729,3}}, + {{0x1062,2},{0xccd,1}}, {{0xcdab,7},{0x1a9a,4}}, {{0x5e27,3},{0x2b7a,3}}, {{0xe21,1},{0xe22,5}}, + {{0x9a8,1},{0xd347,5}}, {{0x19b7,3},{0xfb0,2}}, {{0xcbc7,7},{0xccd,1}}, {{0x643c,7},{0x6443,6}}, + {{0xccd,2},{0x1160,5}}, {{0x1777,5},{0xed9,2}}, {{0x4519,4},{0x30ba,7}}, {{0x1967,3},{0x810e,3}}, + {{0x6176,4},{0xeee,3}}, {{0x13410,6},{0x3075,4}}, {{0xe1f,3},{0x11b5,2}}, {{0x157ce,6},{0xec6,3}}, + {{0x479d,7},{0x11dc,5}}, {{0x264b,10},{0x15e9,3}}, {{0xae75,7},{0x156a,3}}, {{0xf65,4},{0x49cb,9}}, + {{0x29cf,3},{0x11cb,3}}, {{0x2006,11},{0xe0b,4}}, {{0xb3f1,3},{0x2a5ec,3}}, {{0xe99,1},{0x1f875,1}}, + {{0x10c5,6},{0x111c,2}}, {{0x7d0d,5},{0x9a8,1}}, {{0x78cb,5},{0x78d0,5}}, {{0x34b1,5},{0x3933,4}}, + {{0x3a29,4},{0x4516,3}}, {{0x2b0a8,4},{0xe47,2}}, {{0x140,2},{0xf,1}}, {{0x1debd,2},{0x78ed,2}}, + {{0x7337,5},{0x3153,7}}, {{0x2ced,5},{0xc76a,6}}, {{0x4781,3},{0x1e872,2}}, {{0xe1dd,7},{0xcc9,2}}, + {{0x28c99,5},{0x24669,2}}, {{0x2e271,3},{0x28b33,1}}, {{0x1711e,4},{0xf62,3}}, {{0x4767,1},{0x1a66,1}}, + {{0x30e73,3},{0x2e273,1}}, {{0x1cf3,3},{0xcc9,2}}, {{0x8d21,7},{0xed6,2}}, {{0xedd,1},{0x10cb,4}}, + {{0x1ebe,3},{0xe80,2}}, {{0xcc8,1},{0x4e43,4}}, {{0x1601,3},{0x1025,1}}, {{0x1eb47,5},{0x13c0,4}}, + {{0x7414,3},{0x1059,3}}, {{0x1357,2},{0x2e27d,1}}, {{0xe13,3},{0xb,1}}, {{0x5269,6},{0x8f39,4}}, + {{0x27e0,5},{0x12ba7,3}}, {{0x1977,4},{0xfcff,6}}, {{0x17a76,6},{0x17a7c,4}}, {{0x1189d,4},{0xf24,2}}, + {{0x46bf,1},{0x4227,3}}, {{0x27e0,4},{0x49a6,3}}, {{0x1a1d4,5},{0xccaa,4}}, {{0xf65,4},{0x7bf5,4}}, + {{0xed35,5},{0xdc8f,5}}, {{0x7636,5},{0xcd3,2}}, {{0xed9,2},{0x13e4,3}}, {{0x1980e,6},{0x10f2a,3}}, + {{0x9ad1,5},{0x14f0,7}}, {{0xe86,2},{0x3155,6}}, {{0x70ad,4},{0x103dc,4}}, {{0x10f8a,8},{0xec6,3}}, + {{0x4c10,8},{0xf86,3}}, {{0x25e2,9},{0x128c,4}}, {{0x50af,7},{0x153a,3}}, {{0x113e1,5},{0xcd3,1}}, + {{0x17678,5},{0x6,1}}, {{0xcd3,1},{0x2bad,3}}, {{0x1947,5},{0x8bcb,6}}, {{0x1bef,2},{0xcd3,1}}, + {{0x13690,7},{0xf86,3}}, {{0x6fdd,7},{0xe77,3}}, {{0x2b46,4},{0xe77,3}}, {{0x11f25,5},{0xcc1,2}}, + {{0xc40b,5},{0x1485c,4}}, {{0xcc1,1},{0xfe6,4}}, {{0x1e3b,7},{0xe69,5}}, {{0x17a30,5},{0x2ce9,3}}, + {{0x4ef5,4},{0xcb53,6}}, {{0xcf47,4},{0xcd3,2}}, {{0x6f1a,5},{0xb097,6}}, {{0x1ec5,3},{0x7555,4}}, + {{0xee9,2},{0xe86,2}}, {{0x1577,4},{0xe31,2}}, {{0x7303,5},{0x10af6,4}}, {{0x7602,4},{0xede,1}}, + {{0x4781,3},{0x2e2c,3}}, {{0x22e4b,5},{0xec6,3}}, {{0xf63,2},{0x2,1}}, {{0x188a,4},{0xe11,2}}, + {{0x753f,5},{0x1b03,3}}, {{0xe13,3},{0xcc7,1}}, {{0xc2,2},{0x57,1}}, {{0x1933d,7},{0xe95,2}}, + {{0x19b7,3},{0xe6b,3}}, {{0x1967,3},{0x31f8,3}}, {{0x4765,3},{0x2690c,2}}, {{0x111a,3},{0xdab3,4}}, + {{0x1a1f8,5},{0xe0c,3}}, {{0xe97,3},{0x2f41,4}}, {{0xfef,3},{0xf35,2}}, {{0x4781,3},{0xe5e,2}}, + {{0xe83,3},{0xe11,2}}, {{0x2de87,4},{0x9f,1}}, {{0x17c38,7},{0xe61,2}}, {{0x14db,3},{0x373a,4}}, + {{0x17146,4},{0x2075,3}}, {{0x27e0,3},{0x4fa8,3}}, {{0x9a6,1},{0x22a2,7}}, {{0x4853,3},{0x9bd1,3}}, + {{0x27e0,5},{0x16723,5}}, {{0x9441,5},{0x1cd3,2}}, {{0x39b9,4},{0xe0c,2}}, {{0x9a8,1},{0x111c,2}}, + {{0x1bec,5},{0x4de9,8}}, {{0x111a,3},{0xc342,3}}, {{0xcc6c,7},{0x1664,3}}, {{0x9201,5},{0x4618,3}}, + {{0x19b7,3},{0xe2f,1}}, {{0x307bb,1},{0x205a1,1}}, {{0x2006,4},{0x113f,2}}, {{0x569a,3},{0xe0a,1}}, + {{0xa215,5},{0xa63a,5}}, {{0x167c8,7},{0xcc9,2}}, {{0xeab,2},{0xe0a,1}}, {{0xe3d,4},{0x2b0dc,2}}, + {{0x122d,2},{0x101f,3}}, {{0xe025,8},{0xf91,3}}, {{0x10a99,7},{0x1a9a,4}}, {{0x14a7,4},{0x4927,4}}, + {{0xcb8,1},{0x44a4,5}}, {{0xe21,1},{0x6,2}}, {{0x90ed,5},{0x90f2,7}}, {{0x1e8a4,4},{0x16df9,5}}, + {{0x2b84,2},{0x6ca7,3}}, {{0x236c,4},{0x568c,7}}, {{0x111a,7},{0x8914,5}}, {{0x29c0,3},{0x48d8,2}}, + {{0x4d72,3},{0xf62,3}}, {{0x1967,3},{0x7416,1}}, {{0x17c92,5},{0x17c01,5}}, {{0x1969,1},{0x1692,2}}, + {{0xb121,8},{0xef3,4}}, {{0xbc31,5},{0x101e,4}}, {{0xfb8,3},{0x23d2,3}}, {{0x10d17,7},{0x10d1e,4}}, + {{0xcbd,1},{0x1317,2}}, {{0x4781,3},{0x169d,4}}, {{0x6581,8},{0xec6,3}}, {{0xb535,5},{0x65ec,5}}, + {{0x29cf,3},{0xf12,3}}, {{0x12dc6,7},{0xed6,2}}, {{0xa31d,10},{0xcc9,2}}, {{0xb37c,3},{0xe0d,2}}, + {{0x10b9,3},{0xcc3d,3}}, {{0x1ee8c,6},{0xec6,3}}, {{0x311b5,4},{0x6,1}}, {{0x2df3b,4},{0xf,1}}, + {{0x127f,4},{0x9a9,2}}, {{0x10e7,5},{0x405d,7}}, {{0x2e26b,3},{0x30328,2}}, {{0x1ebc,5},{0xf194,3}}, + {{0x944d,6},{0xe95,2}}, {{0x20559,2},{0xe16,1}}, {{0x1819c,5},{0xe7f,2}}, {{0x111a,3},{0x809a,3}}, + {{0xec0,3},{0xf91,3}}, {{0x2ba5,1},{0x2ca1e,2}}, {{0xb421,5},{0x59b4,3}}, {{0x44,2},{0x8d,1}}, + {{0x19b7,5},{0x641a,5}}, {{0xbb4,2},{0xe47,2}}, {{0x162c,6},{0x153a,3}}, {{0x111a,3},{0xfa6,3}}, + {{0x9e55,4},{0xe5e,2}}, {{0x10cb,2},{0x3ebb,4}}, {{0xf60,2},{0x10b9,2}}, {{0x2015,3},{0x569b,5}}, + {{0x1607,5},{0xed9,2}}, {{0x11eee,5},{0xcbef,4}}, {{0xfa9d,8},{0x18b4,3}}, {{0x10e2a,5},{0x10e2f,6}}, + {{0x1569,2},{0xcdd9,3}}, {{0x100ac,7},{0x3a39,4}}, {{0x1c91,4},{0x1de7,3}}, {{0xe86,2},{0x9a7,3}}, + {{0x2e27d,1},{0x3034d,2}}, {{0xbc01,5},{0x15399,2}}, {{0x17acb,2},{0xf0c,1}}, {{0xe5b,3},{0xf79,4}}, + {{0xc021,7},{0xadec,5}}, {{0x3642,2},{0x2d11,3}}, {{0x1937,5},{0x10d2,3}}, {{0xa,2},{0xcc4,2}}, + {{0x584f,5},{0xcc9,2}}, {{0xc05d,4},{0xf49d,4}}, {{0x3075,3},{0xe32,1}}, {{0xea12,9},{0xe95,2}}, + {{0x4137,5},{0x28f8,5}}, {{0xbccf,2},{0x2c83,4}}, {{0xeaa,2},{0xfc8,3}}, {{0xeca,3},{0xe95,2}}, + {{0x453b,5},{0x4540,3}}, {{0x11234,5},{0x17b94,4}}, {{0x3bcd,4},{0x4a44,5}}, {{0x479d,4},{0xe2b,2}}, + {{0xc099,4},{0x30f2,3}}, {{0x1f38,1},{0xe65,2}}, {{0x5fc4,5},{0x13e3,4}}, {{0xe09,1},{0x45f5,4}}, + {{0x2b75,2},{0xccc,2}}, {{0x1447,7},{0xe78,1}}, {{0x33d1,6},{0xfdd,4}}, {{0x19b7,3},{0x1c550,5}}, + {{0x18d68,7},{0xe0d,2}}, {{0xe1f,3},{0x1e57d,2}}, {{0xb6d9,6},{0xc6bc,4}}, {{0x4853,3},{0x10d55,4}}, + {{0xe3d,4},{0x78a9,2}}, {{0x3146,3},{0xec5,4}}, {{0x3b4f,9},{0x12be,5}}, {{0x17a26,7},{0x2075,3}}, + {{0x2540b,5},{0x1803b,3}}, {{0x2015,3},{0x11ed3,3}}, {{0x70ad,3},{0x10a6,2}}, {{0x10c5,4},{0xe7b0,5}}, + {{0xfe3,9},{0xfec,9}}, {{0xe1f,3},{0x2470e,5}}, {{0x1381,4},{0xe0d,2}}, {{0x1ff7,3},{0x38b4,4}}, + {{0x478f,3},{0x70a3,5}}, {{0xbfb5,5},{0x1660b,5}}, {{0xb9f1,5},{0xb9f6,3}}, {{0xe2f,1},{0xe33,1}}, + {{0x3a45,5},{0x153ff,5}}, {{0x68,2},{0x57,1}}, {{0xe5b,3},{0xf0f,2}}, {{0x1807,6},{0x63cf,5}}, + {{0xb8c5,4},{0x5,1}}, {{0x317c9,2},{0xbb6,2}}, {{0x1756c,3},{0x1702,4}}, {{0x562b,5},{0x5256,6}}, + {{0x21d91,6},{0xe95,2}}, {{0x8421,9},{0x23d2,3}}, {{0x486f,11},{0x1040,3}}, {{0xe5b,3},{0x20a0c,5}}, + {{0x1d41c,8},{0xe0a,1}}, {{0x62ea,9},{0x62f3,4}}, {{0xf1d,2},{0x1d7e,3}}, {{0x1a66,1},{0x1bd67,5}}, + {{0x2240,4},{0x277fa,3}}, {{0xc27b,2},{0x2e7c0,2}}, {{0x1477,9},{0x4eb0,4}}, {{0xcb7a,8},{0xf7a,2}}, + {{0x10a3,3},{0x4b96,5}}, {{0xf89,10},{0xf93,8}}, {{0x15760,4},{0x5342,3}}, {{0x5269,6},{0x8,3}}, + {{0x772d,5},{0x18b4,3}}, {{0xe83,5},{0x1b133,3}}, {{0xb396,2},{0x8,1}}, {{0x28b33,1},{0xc,1}}, + {{0x5de,2},{0x8d,1}}, {{0xcc4,2},{0x9115,5}}, {{0xf4db,5},{0x1722,5}}, {{0xe1f,6},{0xfdf,3}}, + {{0x737a,4},{0xcd3,1}}, {{0x3e7b,12},{0xe95,2}}, {{0xf0a,3},{0x7921,3}}, {{0x12e5,3},{0x1b14,3}}, + {{0xe5b,3},{0x12bf,4}}, {{0x1a47,4},{0x4413,5}}, {{0x1ebc,6},{0xdc8f,5}}, {{0x12e,2},{0x21,1}}, + {{0xee9,2},{0x1571,4}}, {{0x4853,3},{0x445b,2}}, {{0xe11,1},{0xcd56,8}}, {{0x1f34,8},{0xcc9,2}}, + {{0x1bef,2},{0x2c15,3}}, {{0xccd,1},{0x4a5f,4}}, {{0x2d3bc,2},{0xf0c,1}}, {{0x1240,2},{0x181b,3}}, + {{0x4241,10},{0xe0b,4}}, {{0xede,1},{0x48d6,2}}, {{0x1807c,6},{0xcd3,1}}, {{0x1ceb,6},{0x6ca7,3}}, + {{0xe1f,3},{0xf15,1}}, {{0xe78,1},{0xf16,2}}, {{0xf70,2},{0x6,1}}, {{0xcd3,2},{0x14a2,3}}, + {{0xebe,4},{0xffc,3}}, {{0x11310,5},{0xb428,3}}, {{0x2e2b3,2},{0x2b0b0,2}}, {{0x18232,7},{0x1fc7,3}}, + {{0xe08,1},{0x587d,4}}, {{0x4287,5},{0x146d,4}}, {{0xc099,7},{0xeb4,2}}, {{0xfb0,2},{0xe6b,2}}, + {{0xe1f,3},{0xeee,3}}, {{0xe16,1},{0x74f3,2}}, {{0x42db,6},{0xb097,6}}, {{0x33b5,10},{0xebb,3}}, + {{0x2858,5},{0x6b8f,4}}, {{0x12d4,3},{0x136f,2}}, {{0x113c,5},{0xeab,2}}, {{0xe32,1},{0x157c,3}}, + {{0x4853,4},{0x1252,3}}, {{0xeb2,2},{0xeb4,10}}, {{0x20c9,11},{0xcc9,2}}, {{0x3eb3,8},{0xeee,5}}, + {{0x7f41,4},{0x2ed1,6}}, {{0x7303,6},{0x1cd5,4}}, {{0xcc8,1},{0xf86,3}}, {{0xb74,1},{0x0,1}}, + {{0xe30,3},{0x345f,5}}, {{0x46af,3},{0x101d,3}}, {{0x7ef9,7},{0xec6,3}}, {{0x4385,3},{0x5,1}}, + {{0x8f19,9},{0xec6,3}}, {{0xcc1,2},{0xcbf,2}}, {{0x19b7,3},{0xede,1}}, {{0x18336,6},{0xa099,4}}, + {{0xf89,3},{0xe65,2}}, {{0x1a17,5},{0x11a9,5}}, {{0x28d0,7},{0xe69,6}}, {{0xb841,5},{0x1e7bf,4}}, + {{0x1677,4},{0x1b13,3}}, {{0x3cbb,9},{0x6452,4}}, {{0x577d,7},{0x1b41,6}}, {{0x1d067,3},{0xe0a,2}}, + {{0x3976,3},{0xcd3,1}}, {{0x78f9,1},{0x3034d,2}}, {{0x70ad,3},{0xeee,3}}, {{0x8295,5},{0x130e1,4}}, + {{0x2ced,5},{0xcc7,2}}, {{0x2a94,4},{0xa84b,5}}, {{0x7416,1},{0x1364e,4}}, {{0xe164,6},{0xf1a,2}}, + {{0xfb8,3},{0x2,1}}, {{0xf1f,3},{0x6,1}}, {{0x4871,2},{0x11414,4}}, {{0x45a5,5},{0x8b5e,7}}, + {{0x17e36,6},{0xe0a,1}}, {{0x1467,4},{0x1d574,4}}, {{0xe71,1},{0x2075,3}}, {{0xebe,4},{0x10d2,4}}, + {{0x29a2,10},{0x1059,3}}, {{0xf4f,1},{0x66c9,3}}, {{0x29cf,3},{0x15ca,3}}, {{0x6ea5,7},{0x6eac,5}}, + {{0xb619,5},{0xe89,2}}, {{0x1208,4},{0x60f5,5}}, {{0x2858,5},{0xeb4,3}}, {{0x77c9,6},{0x10325,5}}, + {{0x4853,3},{0x7e6d,5}}, {{0x6497,7},{0xeca,3}}, {{0x11963,6},{0x159f,2}}, {{0xe11,1},{0x1131,6}}, + {{0x11b5d,8},{0x14a2,3}}, {{0xf86,3},{0xe5e,2}}, {{0xf693,8},{0xf69b,3}}, {{0x6cde,4},{0x61a1,4}}, + {{0x2,3},{0x188c,4}}, {{0x2abc4,5},{0x9a6,1}}, {{0x1786c,9},{0xe11,1}}, {{0xbb89,4},{0x141a,2}}, + {{0x13a7,7},{0xc6a6,4}}, {{0x1687,4},{0x1303,3}}, {{0x25b33,4},{0x10cb,4}}, {{0x2df3b,4},{0x7b,1}}, + {{0x1f03f,2},{0x48d3,2}}, {{0x9dc5,7},{0x141a,5}}, {{0x1817,4},{0x716c,4}}, {{0xe99,1},{0x240ee,5}}, + {{0x121f0,5},{0x13041,4}}, {{0x1be9f,6},{0xec6,3}}, {{0x14a2,3},{0xe22,3}}, {{0x72f6,9},{0xe1c,3}}, + {{0x74f9,5},{0x1e2f0,2}}, {{0x7303,5},{0xe31,2}}, {{0x2858,4},{0x23d2,3}}, {{0x43c9,7},{0x2663,5}}, + {{0x1f3ae,6},{0xc3d0,3}}, {{0xf22,2},{0xe8a,2}}, {{0x9cad,4},{0x10a8a,4}}, {{0x4767,1},{0xe22,2}}, + {{0x11f25,5},{0x1cfc,3}}, {{0x73ed,4},{0xe32,1}}, {{0x23c4b,3},{0xede,1}}, {{0x1367,4},{0x11b5,2}}, + {{0x10e7,5},{0x8,1}}, {{0x12e5,3},{0xf11,1}}, {{0x29cf,3},{0x1153,2}}, {{0x21aa,10},{0x1722,5}}, + {{0x1d425,6},{0x2f2e,3}}, {{0x947d,7},{0x1279,5}}, {{0xe83,5},{0x5b4e,5}}, {{0xf4f,1},{0x1e57e,2}}, + {{0xffdb,7},{0x141f,4}}, {{0x478f,3},{0x24e8,4}}, {{0xf0c,1},{0x10a6,2}}, {{0xeb5,2},{0xe6b,3}}, + {{0x19e7,5},{0x1e64,3}}, {{0xcc1,1},{0xfa5,4}}, {{0x1587,4},{0xe7d,2}}, {{0x6cc4,4},{0xd886,4}}, + {{0x1a66,1},{0x2b4c3,3}}, {{0xcc3,2},{0x8,1}}, {{0xe65,2},{0x5863,3}}, {{0xf18,2},{0xa,2}}, + {{0x4853,3},{0xf15,1}}, {{0x2e866,2},{0x18efa,2}}, {{0x13884,9},{0xe11,1}}, {{0xe83,6},{0x4a5f,4}}, + {{0x2966,4},{0x20be5,4}}, {{0xe1f,3},{0x41e9,4}}, {{0x1a07,3},{0x1f444,2}}, {{0x113c,5},{0x1141,12}}, + {{0x180a,3},{0xa,2}}, {{0xcf6,1},{0x2e292,1}}, {{0x7b75,7},{0x38e2,5}}, {{0x6cde,4},{0xabc5,3}}, + {{0x591d,6},{0x14582,4}}, {{0x1081,4},{0x1153,2}}, {{0x17290,5},{0x15e9,3}}, {{0x2f71,4},{0x62f3,4}}, + {{0x15e7,10},{0x8,1}}, {{0x29cf,3},{0xe2f,1}}, {{0x2f9b,8},{0x1a67,6}}, {{0x2f71,4},{0x24f7,4}}, + {{0x2687,8},{0xe69,5}}, {{0xb001,8},{0xe6b,4}}, {{0x1089,3},{0xe6c,3}}, {{0xf1a,2},{0xf16,2}}, + {{0xe0b,2},{0xe2b,2}}, {{0xbdb3,3},{0x11b15,6}}, {{0x46af,3},{0x9b99,3}}, {{0xb3f1,5},{0x30f7,2}}, + {{0xeac,2},{0x7d99,4}}, {{0x227c,6},{0x2282,9}}, {{0xf0c,1},{0xec6,3}}, {{0x29cf,3},{0x1024,2}}, + {{0x7e39,6},{0x3003,4}}, {{0x19478,5},{0x19462,4}}, {{0x28ce6,6},{0xe11,1}}, {{0xd147,5},{0x2271,3}}, + {{0x17cf6,7},{0xebb,3}}, {{0x2f71,4},{0x80b0,4}}, {{0xeaa,2},{0x3b73,3}}, {{0x3109,3},{0x310c,4}}, + {{0x1ae7c,7},{0xe7f,2}}, {{0x158f,3},{0x3abf,4}}, {{0x2c54d,4},{0x204cb,2}}, {{0x19b7,3},{0x2d4ed,2}}, + {{0xcb8,1},{0x5,2}}, {{0x1fed3,5},{0xf86,2}}, {{0x1939,2},{0x4618,3}}, {{0x4853,3},{0x1e57d,2}}, + {{0x3,1},{0xcd3,1}}, {{0xe0f,1},{0xed5,3}}, {{0x2e271,3},{0x30352,2}}, {{0xcb8,1},{0x1cb1,5}}, + {{0x1a17a,6},{0x18b4,3}}, {{0x14a2,3},{0xcc9,2}}, {{0x24d65,3},{0xe16,1}}, {{0x4597,5},{0x9a7,2}}, + {{0x7392,5},{0x2c5b,4}}, {{0x4,1},{0x8,4}}, {{0x478f,3},{0x19b9,1}}, {{0xe21,1},{0x3642,2}}, + {{0xed1,3},{0xfe0,2}}, {{0x8d,1},{0xf8,2}}, {{0xac35,8},{0x668d,4}}, {{0x4781,3},{0x1cd3,2}}, + {{0x16d54,8},{0xcc9,2}}, {{0x1957,5},{0xccb,2}}, {{0x296f,3},{0x1025,1}}, {{0x17af8,5},{0x11b5,2}}, + {{0x17b0c,4},{0xe77,3}}, {{0x127d6,7},{0xed6,2}}, {{0xcba,2},{0x4415,3}}, {{0x2948,4},{0x7bd9,4}}, + {{0xe21,1},{0x9b99,3}}, {{0x34b1,5},{0x14649,5}}, {{0x29624,5},{0xe22,2}}, {{0x1a27,4},{0x6fe1,3}}, + {{0xa19d,11},{0xe11,1}}, {{0x12c3,4},{0x8605,4}}, {{0xf0a,3},{0x2c85,2}}, {{0x1977,3},{0x260ef,2}}, + {{0x9b9d,6},{0x9baf,6}}, {{0xe22,3},{0xcc6,2}}, {{0x1969,1},{0xfcb,2}}, {{0x1947,5},{0x1150,2}}, + {{0x18f7,4},{0xf1f,3}}, {{0x1967,4},{0x23427,4}}, {{0xe97,3},{0x17c0,2}}, {{0x113e1,8},{0x1fc7,3}}, + {{0x16340,6},{0x8666,2}}, {{0x27e0,3},{0xbfca,3}}, {{0x1007,6},{0x1c32,3}}, {{0x7149,7},{0x7150,6}}, + {{0x1189d,4},{0x1372,5}}, {{0xa04d,5},{0x49b5,5}}, {{0x75ce,6},{0x1177,7}}, {{0x1977,3},{0x2b471,2}}, + {{0x10188,6},{0xfdf,4}}, {{0x2,1},{0x1722,5}}, {{0x1aae6,6},{0xf1a,2}}, {{0xf0a,3},{0x1189,3}}, + {{0x46bd,3},{0xb9d1,3}}, {{0xf1a,2},{0x1a9a,4}}, {{0xc159,4},{0x1b91e,5}}, {{0x5117,5},{0xd3b4,6}}, + {{0x1a27,10},{0x18c1,6}}, {{0x23d2,3},{0x1113,2}}, {{0x3a29,4},{0xc600,5}}, {{0x1967,3},{0x1f444,2}}, + {{0x11d9,3},{0xe92,3}}, {{0x1130,2},{0x103e,5}}, {{0x7f41,4},{0xdb21,3}}, {{0x227c,5},{0x10f5,3}}, + {{0x1a954,4},{0xfe6,2}}, {{0x140,2},{0xd,1}}, {{0x168f,3},{0xde07,3}}, {{0xbb89,4},{0xed6,2}}, + {{0x2f71,4},{0x211fd,4}}, {{0xb3f1,3},{0xcee4,5}}, {{0xf1d,2},{0xec3,3}}, {{0xb12d,7},{0xfdc,5}}, + {{0x4cb9,8},{0x4cc1,5}}, {{0xf0a,3},{0x1db33,2}}, {{0x50c9,8},{0x5261,4}}, {{0x6386,9},{0xcc9,2}}, + {{0x2015,3},{0x158f,3}}, {{0x305f,6},{0xe67,3}}, {{0xacc5,6},{0x4cc2,4}}, {{0xcc8,1},{0x3555,4}}, + {{0x205a5,1},{0x2e27d,1}}, {{0xcc1,1},{0x66c9,3}}, {{0xf11,1},{0x113f,2}}, {{0xefa,2},{0x5261,4}}, + {{0x1969,1},{0x1db34,2}}, {{0x7f41,4},{0x155b,3}}, {{0x113e,3},{0xe69,6}}, {{0xe11,1},{0x17dd9,3}}, + {{0x8835,5},{0x1a635,4}}, {{0x1807,10},{0xe92,3}}, {{0xf77,3},{0x3c9a,5}}, {{0x113c,3},{0xf1a,2}}, + {{0x1747,5},{0x3da0,9}}, {{0x19b7,3},{0x1dec0,2}}, {{0x16d7,6},{0x3a02,4}}, {{0x1e65,3},{0x3976,3}}, + {{0x7414,3},{0xe89,2}}, {{0x1a7e9,6},{0x1693,3}}, {{0x1d18,5},{0x194b3,4}}, {{0x9e19,7},{0xf84,5}}, + {{0x46af,3},{0xfa6,3}}, {{0x29c0,3},{0xe0d,2}}, {{0xccd,1},{0x9a6,1}}, {{0x1a7c5,6},{0x1150,2}}, + {{0x17ada,5},{0x5699,4}}, {{0x712f,4},{0x1153,2}}, {{0xe19,1},{0xcbd,1}}, {{0x1a66,1},{0x1d7d,3}}, + {{0xe7a,1},{0xe7a,1}}, {{0xf77,4},{0x5e5e,7}}, {{0x2e346,2},{0x29979,2}}, {{0x6012,6},{0x240b,6}}, + {{0x2bd5,4},{0x5b7b,5}}, {{0x12736,6},{0x1273c,4}}, {{0xe09,1},{0x5538,2}}, {{0x29cf,3},{0x6ca7,3}}, + {{0x12e5,4},{0x2075,3}}, {{0x28b33,1},{0x28b33,1}}, {{0x2e193,4},{0xd,1}}, {{0xd383,6},{0xf91,3}}, + {{0x7414,3},{0xba0c,9}}, {{0xa041,5},{0xf1f4,6}}, {{0x7ff5,5},{0xcc7,1}}, {{0xe83,3},{0x7974,4}}, + {{0x1a49,3},{0xefa,4}}, {{0x4e3f,8},{0x4e47,5}}, {{0xe0e0,5},{0x1059,3}}, {{0xccd,1},{0xfb0,3}}, + {{0x44,2},{0x7b,1}}, {{0xe83,3},{0x584a,2}}, {{0x1637,6},{0x1235,6}}, {{0x2de63,3},{0x1347,3}}, + {{0x5242,8},{0xe0b,4}}, {{0x1bbf,4},{0x1030e,5}}, {{0x252ab,4},{0xed9,2}}, {{0x115e,7},{0x3694,4}}, + {{0x19b9,1},{0xe65,2}}, {{0x2573b,6},{0x1153,2}}, {{0x1c42d,7},{0xe95,2}}, {{0x1933d,5},{0xfbb,4}}, + {{0xccd,1},{0x1372,5}}, {{0xede,1},{0xe2f,1}}, {{0x1db36,7},{0x4461,2}}, {{0x1e26,6},{0x1702,4}}, + {{0xb3c8,3},{0x7921,3}}, {{0x63ad,8},{0xebb,3}}, {{0x28b31,3},{0xc16,1}}, {{0x28c1,4},{0x1155,2}}, + {{0x56c7,5},{0xdde3,6}}, {{0x10d90,6},{0x809a,3}}, {{0xcded,8},{0xed9,2}}, {{0x311af,2},{0x308a3,2}}, + {{0xe1f,3},{0x2252,3}}, {{0x149aa,6},{0x1523,4}}, {{0x250e3,5},{0xe67,2}}, {{0xccb,2},{0x136f8,6}}, + {{0xb37b,1},{0xb37b,1}}, {{0x4853,3},{0x168b,4}}, {{0x2a67,3},{0xfe6,2}}, {{0xed1,4},{0x809a,3}}, + {{0xe86,2},{0xf0d,2}}, {{0xbbe9,7},{0xed6,2}}, {{0x1367,3},{0xccb,2}}, {{0xbba1,7},{0x4665,4}}, + {{0x29cf,3},{0x2507d,2}}, {{0x4,1},{0x320c,4}}, {{0x74f3,2},{0xf4f,1}}, {{0x2b0a8,4},{0x18ec8,2}}, + {{0x225ab,6},{0xe95,2}}, {{0xfa5,3},{0xb397,2}}, {{0xefb3,8},{0xf86,3}}, {{0xe83,5},{0x1dee,2}}, + {{0xa551,7},{0x1b4f,5}}, {{0xe3d,4},{0x2afc8,2}}, {{0xee4,4},{0x15804,6}}, {{0x5,3},{0x1244,8}}, + {{0xf89,5},{0xe203,6}}, {{0x157ce,5},{0x34d7,4}}, {{0x3c91,9},{0x2476,4}}, {{0xcc7,1},{0xcce,3}}, + {{0x3a29,4},{0x44ad,3}}, {{0xef7,3},{0x1131,3}}, {{0x51f4,7},{0xe11,1}}, {{0xf0a,3},{0x1230,3}}, + {{0xe11,1},{0x5b9f,8}}, {{0x10e8d,5},{0x85f9,4}}, {{0x181b,3},{0xcbf,2}}, {{0x2de87,4},{0x7b,1}}, + {{0x1cea9,6},{0xe95,2}}, {{0xcc8,1},{0x4789,6}}, {{0x1027a,5},{0xcc9,2}}, {{0x712f,4},{0xe89,2}}, + {{0x10708,7},{0xeed,4}}, {{0xc14d,7},{0x54b7,5}}, {{0x10a3,3},{0x143c,4}}, {{0x4781,3},{0xcb7,2}}, + {{0x6,1},{0xf1d,1}}, {{0x2c21,4},{0xe67,2}}, {{0x1467,4},{0xcc91,7}}, {{0xb,1},{0x10f2,5}}, + {{0x103e,4},{0x13e3,4}}, {{0x77c9,8},{0x6d41,5}}, {{0x1dcb4,2},{0x1dcb6,3}}, {{0xedd,1},{0xe08,1}}, + {{0x4781,3},{0x7e9d,3}}, {{0x464d,7},{0x2f32,7}}, {{0x18444,5},{0x277e,2}}, {{0x1a07,5},{0x2803,6}}, + {{0x42b1,7},{0x6e5e,4}}, {{0x2b0a8,4},{0x2b088,2}}, {{0xe6f,5},{0x13f7e,4}}, {{0x6d46,6},{0x9a4,3}}, + {{0xf176,6},{0x2178,5}}, {{0xf63,2},{0x1059,3}}, {{0x302,2},{0x21,1}}, {{0xf0a,3},{0x16903,4}}, + {{0xed1,10},{0xedb,2}}, {{0x1397,11},{0x13a2,5}}, {{0xe6f,13},{0xe7c,7}}, {{0xe6f,5},{0x1bb56,4}}, + {{0xed1,12},{0xedd,3}}, {{0xed1,15},{0xee0,4}}, {{0x1a66,1},{0xcd2,2}}, {{0xeab,2},{0x10d3,3}}, + {{0xa,2},{0x10e2,5}}, {{0x1cca8,7},{0xe11,1}}, {{0xef7,3},{0x9a8,1}}, {{0x4765,3},{0x254b1,2}}, + {{0xfb2c,7},{0x180e,3}}, {{0xe83,3},{0xe08,1}}, {{0xe97,3},{0x7c3d,4}}, {{0xb841,5},{0x17a67,5}}, + {{0x5,2},{0xeb5,2}}, {{0x12f6,4},{0x155b,3}}, {{0x73e0,7},{0x2843,6}}, {{0x10e3,3},{0xe78,2}}, + {{0x7312,6},{0xed9,2}}, {{0x29c0,3},{0x26921,2}}, {{0x1944,3},{0xf86,3}}, {{0x1c45a,6},{0xec6,3}}, + {{0x338b,10},{0xfdd,4}}, {{0xe2b,2},{0x13e1,5}}, {{0x1898a,7},{0xe6c,3}}, {{0x7979,4},{0xcc9,2}}, + {{0x29cf,3},{0x1166d,4}}, {{0x4c5e,8},{0x1de7,3}}, {{0x15fb,3},{0x28f5,5}}, {{0x3a29,4},{0x2d11,3}}, + {{0x235d,5},{0x155ea,4}}, {{0x1d4ac,7},{0x10a5,2}}, {{0xccd,1},{0xe5e,2}}, {{0xcc7,1},{0xe43d,6}}, + {{0x9f75,8},{0xe6b,4}}, {{0x246ab,5},{0x1de7,3}}, {{0x9a6,1},{0x850a,7}}, {{0x15a62,7},{0xe11,1}}, + {{0x1ff7,3},{0x16ad,3}}, {{0x12e5,3},{0xbde4,6}}, {{0x1467,4},{0x7a14,5}}, {{0x73b9,6},{0x2e2c,3}}, + {{0x11d99,5},{0x165a7,4}}, {{0x11b3,5},{0x583b,5}}, {{0x442b,3},{0x1692,2}}, {{0xe11,1},{0xf0f,2}}, + {{0x1ff7,3},{0x161d4,4}}, {{0xc46e,7},{0x1059,3}}, {{0x5d2d,6},{0x5d4d,7}}, {{0x10427,5},{0x2c93,6}}, + {{0xbccd,8},{0x6ba3,3}}, {{0x1070,7},{0x51c8,5}}, {{0xed5,4},{0xfdf,4}}, {{0x70ad,3},{0x1849,3}}, + {{0x30c1,8},{0x30c9,6}}, {{0x1131,3},{0x11b5,2}}, {{0x2e2b3,2},{0x3082b,2}}, {{0xef7,4},{0x13e3,4}}, + {{0x5,1},{0xeac,2}}, {{0x94b9,5},{0x94be,7}}, {{0x73ed,8},{0xe69,5}}, {{0x3117,3},{0x43ed,6}}, + {{0x6cc,2},{0xe,1}}, {{0x302,2},{0xf,1}}, {{0x1667,5},{0xfdf,4}}, {{0x11142,6},{0xdc6e,4}}, + {{0x8265,7},{0x5dd0,3}}, {{0x4693,5},{0x6,1}}, {{0x29cf,3},{0x18774,2}}, {{0x8cfd,5},{0x6326,5}}, + {{0x1579,5},{0x1663,4}}, {{0x5909,4},{0x4415,3}}, {{0xf65,4},{0x7d64,5}}, {{0x1779,3},{0x2fcc,4}}, + {{0xaaf,2},{0x3208,3}}, {{0x8ed1,7},{0x4187,3}}, {{0x32ab,6},{0xed6,2}}, {{0x5b8d,9},{0xe6b,4}}, + {{0x9a7,2},{0xed6,2}}, {{0xbb71,8},{0x9b09,4}}, {{0x11c,2},{0xf,1}}, {{0x4853,4},{0xf70,2}}, + {{0x1e77,3},{0x6,1}}, {{0x1088,3},{0xf63,2}}, {{0x29de,5},{0xd1e7,5}}, {{0x29bfb,2},{0xe33,1}}, + {{0xf86,2},{0x2560,4}}, {{0x728e,9},{0x1571,4}}, {{0x18ecc,2},{0x789d,2}}, {{0x2de7b,3},{0x176,2}}, + {{0xcc7,1},{0xe09,1}}, {{0x12e5,3},{0x1e57e,2}}, {{0x22a3,2},{0x6,1}}, {{0x2f71,5},{0x13195,5}}, + {{0x215f,8},{0x10f2,5}}, {{0x72cf,4},{0x1085,3}}, {{0x10b4,12},{0xe69,5}}, {{0xe97,3},{0x6d08,4}}, + {{0xebc,2},{0x10d3,3}}, {{0x2b204,3},{0xfb7,3}}, {{0x23e53,5},{0x6,1}}, {{0x1f28e,7},{0x6,2}}, + {{0x55ed,5},{0xeee,3}}, {{0x479f,2},{0x143c,4}}, {{0x46af,3},{0x24d5e,2}}, {{0xfdf,3},{0x6,1}}, + {{0x12e5,3},{0x7ff8,3}}, {{0x29c0,3},{0x4e60,2}}, {{0x495f,5},{0xe25,2}}, {{0x1f93c,5},{0x4,1}}, + {{0x19b7,3},{0x2d980,3}}, {{0x134f6,6},{0xe6b,3}}, {{0xf89,3},{0xf04,2}}, {{0x455f,5},{0xf69b,3}}, + {{0x1697,4},{0xe8a,2}}, {{0x2b4ec,6},{0x2afd4,2}}, {{0xed9,2},{0xc992,4}}, {{0xe16,2},{0xe31,2}}, + {{0x1095,3},{0x8,1}}, {{0x1777,5},{0x1cd2,3}}, {{0x305f,6},{0xe67,7}}, {{0xc015,4},{0x1077a,5}}, + {{0x19b7,3},{0x22a2,7}}, {{0x1647,5},{0x15af,3}}, {{0x1edb4,6},{0x1b607,3}}, {{0x2b50f,2},{0xd7c,2}}, + {{0x11c,2},{0xe,1}}, {{0x479f,2},{0xe2b,2}}, {{0x22b8,4},{0xabc5,3}}, {{0x1debc,2},{0x74f3,2}}, + {{0x4a97,10},{0xec6,3}}, {{0x1897,5},{0x1380,5}}, {{0xe32,1},{0xee59,5}}, {{0x1567,6},{0x56b3,4}}, + {{0xe6f,3},{0xcce,2}}, {{0xe104,3},{0x17c0,2}}, {{0xed1,3},{0x22df6,5}}, {{0x3b51,3},{0xb405,4}}, + {{0x11b3,5},{0x89d3,3}}, {{0x9a6,1},{0x80c5,3}}, {{0xcc1,1},{0x6008,3}}, {{0x2858,4},{0x10a6,3}}, + {{0x92b5,5},{0x101f,2}}, {{0x6,2},{0xef5,2}}, {{0xccd,1},{0x15e6d,3}}, {{0x1aab9,5},{0x113f,2}}, + {{0x73ed,8},{0x10f2,5}}, {{0x16804,6},{0x6bd6,4}}, {{0x19f7,4},{0xcb7,2}}, {{0xe11,1},{0xad87,4}}, + {{0x9a6,1},{0x45f2,2}}, {{0x7233,8},{0x9a4,3}}, {{0x2be3,5},{0x9a9,2}}, {{0x3169,8},{0x534e,5}}, + {{0x17ab2,6},{0x1e8b,3}}, {{0x18018,3},{0x11284,5}}, {{0x1567,3},{0x115a,3}}, {{0x1ba31,6},{0x1392,3}}, + {{0x11c,2},{0xd,1}}, {{0x29c0,4},{0x331f,3}}, {{0x1eaa5,6},{0x1fa2,3}}, {{0xcb9,4},{0xe11,1}}, + {{0x2858,4},{0x12a31,3}}, {{0xf11,1},{0x48d3,2}}, {{0x2b48,2},{0xc3d0,4}}, {{0x215f,8},{0xe11,1}}, + {{0x70ad,3},{0xf15,1}}, {{0x1967,3},{0x6ec3,3}}, {{0x1a17,5},{0x16c5f,5}}, {{0x486f,4},{0xb3de,7}}, + {{0x46bf,1},{0x1153,2}}, {{0x591d,7},{0xfbb,4}}, {{0xf0a,3},{0x3199,3}}, {{0x17acb,2},{0x2054e,3}}, + {{0xf77,4},{0x28e1,3}}, {{0xe1f,3},{0xcd3,1}}, {{0x1a66,1},{0xf11,1}}, {{0xf0c,1},{0x713f,5}}, + {{0xcc8,1},{0xd086,3}}, {{0x20c09,7},{0xe11,1}}, {{0x595e,6},{0x2dd7,4}}, {{0xe1f,4},{0x295c6,3}}, + {{0x46af,3},{0x1692,2}}, {{0xccd,1},{0x180a,3}}, {{0xef5,2},{0xcdda,2}}, {{0x17c24,6},{0xe0a,1}}, + {{0x7636,5},{0x65c7,7}}, {{0x3de1,5},{0x15e6d,3}}, {{0x9a4,3},{0x2269,4}}, {{0x73ed,4},{0xcc3,3}}, + {{0x6,1},{0x2560,4}}, {{0xe164,7},{0x2467,4}}, {{0x1a19,3},{0xb0a2,7}}, {{0xe33,1},{0xe67,2}}, + {{0xeac,2},{0xe7f,2}}, {{0x2966,4},{0xc85b,7}}, {{0x1839,2},{0xf13,2}}, {{0xf89,3},{0x6008,3}}, + {{0xecb,2},{0x9b99,3}}, {{0xe83,4},{0x2371,3}}, {{0x262d,11},{0xe95,2}}, {{0x4767,1},{0x2245,3}}, + {{0x2,1},{0xfb0,2}}, {{0x12d4,3},{0xe08b,8}}, {{0x11afa,9},{0xed6,2}}, {{0xfa03,6},{0x587c,5}}, + {{0x1046,4},{0x6e53,4}}, {{0xe21,1},{0x109b,2}}, {{0x58c2,9},{0x58cb,4}}, {{0x1607,5},{0x1a71,3}}, + {{0xaf4,1},{0x2e273,1}}, {{0x17f7,6},{0x1b8b,7}}, {{0x1a07,3},{0x18cd5,7}}, {{0x41b5,11},{0xe11,1}}, + {{0x5f1b,7},{0xed9,2}}, {{0xfe3,4},{0x44ad,3}}, {{0x4765,6},{0x395d,4}}, {{0x1a1d4,5},{0x5b06,4}}, + {{0x18776,2},{0xede,1}}, {{0x1c28,6},{0xeb5,2}}, {{0x167c8,7},{0xed6,2}}, {{0xcddc,4},{0x1150,2}}, + {{0xe37,4},{0xe41,2}}, {{0xf70,2},{0x83db,4}}, {{0x1967,3},{0xe0f,1}}, {{0x2de7b,3},{0xc2,2}}, + {{0x729b,7},{0x1b69,3}}, {{0x1207a,7},{0x127b,4}}, {{0x9621,7},{0x9628,5}}, {{0x1070,7},{0x1077,6}}, + {{0x12e5,3},{0x442d,1}}, {{0x1333e,7},{0xcd3,2}}, {{0xe6f,3},{0x7d41,3}}, {{0x61cc,5},{0x5f04,3}}, + {{0x5312,8},{0x531a,5}}, {{0x1677,3},{0x30f5,4}}, {{0x4765,3},{0x3642,2}}, {{0xf1a,2},{0x1692,2}}, + {{0x10e1f,4},{0x11dc,3}}, {{0x6d42,4},{0xec6,3}}, {{0xf16,2},{0x1e8b,3}}, {{0x1f729,5},{0x6eac,3}}, + {{0xe5b,6},{0xe61,3}}, {{0x2de7b,3},{0x1be,2}}, {{0x149c,3},{0xe22,2}}, {{0x486f,4},{0x180e,3}}, + {{0x1937,4},{0x4927,4}}, {{0xe08,1},{0xe22,2}}, {{0x94ad,7},{0x1b7d,3}}, {{0x6cde,4},{0x6dfe,3}}, + {{0x68,2},{0x69,1}}, {{0xe613,5},{0x6d19,6}}, {{0x769e,8},{0xeee,5}}, {{0x4538,3},{0xec6,3}}, + {{0x11375,2},{0xf4f,1}}, {{0x2ba5,1},{0x4461,2}}, {{0x1d42e,5},{0x61dd,4}}, {{0x10dc7,7},{0x1fe4,3}}, + {{0x5117,5},{0x3f02,5}}, {{0x182be,7},{0xe30,3}}, {{0x2e2c,3},{0xe09,1}}, {{0x44ef,5},{0x1e94c,3}}, + {{0x7310,8},{0x1258,5}}, {{0x3d3b,3},{0x87a0,5}}, {{0xe0f9,3},{0x13e1,3}}, {{0x1212,3},{0xf1a,2}}, + {{0x1109,5},{0xf38c,3}}, {{0x32ab,6},{0xe6b,4}}, {{0x1327,1},{0x205a1,2}}, {{0xe5b,4},{0x2,1}}, + {{0x10a36,6},{0x1b4f,5}}, {{0x11b89,7},{0xec6,3}}, {{0x1f38,1},{0x101f,2}}, {{0x2df3b,4},{0xe,1}}, + {{0x302,2},{0x57,1}}, {{0x1aae6,6},{0x2f94,3}}, {{0x2c15,3},{0x23e1,3}}, {{0xcd6,1},{0x205a1,1}}, + {{0x4,1},{0x9,1}}, {{0x944d,6},{0x945f,6}}, {{0xd131,4},{0xa7c8,5}}, {{0x73d6,2},{0xcc3,2}}, + {{0x4765,3},{0xbb20,4}}, {{0x181b,3},{0xffc,3}}, {{0xf528,7},{0x9a4,3}}, {{0x2006,4},{0xe2b,2}}, + {{0xe83,3},{0x14edf,7}}, {{0x3bf7,9},{0x1523,4}}, {{0x2f71,4},{0x4618,3}}, {{0x65f6,8},{0x13e3,4}}, + {{0x3089,10},{0x1702,4}}, {{0x2ba5,1},{0xe08,1}}, {{0x12d4,3},{0x1ea72,2}}, {{0x409d,12},{0xe11,1}}, + {{0x128da,7},{0xf91,3}}, {{0x6bb,2},{0x9f,1}}, {{0x1019,4},{0xe8a,2}}, {{0xe08,1},{0x41b8,4}}, + {{0x7f59,8},{0xe6b,4}}, {{0x1987a,5},{0x2477,3}}, {{0xcbd,1},{0x131bc,6}}, {{0x199ac,5},{0x12ba,4}}, + {{0x1e166,8},{0xe11,1}}, {{0x1e144,5},{0xe95,2}}, {{0xe5b,3},{0xb495,4}}, {{0xe16,1},{0x183a,3}}, + {{0x18772,2},{0xedd,1}}, {{0x4781,3},{0x20379,3}}, {{0x1c91,4},{0x1004,3}}, {{0x7414,3},{0xe86,2}}, + {{0x1099,4},{0xcc4,2}}, {{0xfac9,5},{0x7950,3}}, {{0x9d35,6},{0x505d,4}}, {{0x196d3,5},{0x104dd,4}}, + {{0x1967,3},{0xe08,1}}, {{0x1db45,2},{0xedd,1}}, {{0x2e28,3},{0xc5e0,4}}, {{0xe32,1},{0x3b62,4}}, + {{0xda58,6},{0x2b89,3}}, {{0x12f6,4},{0xed9,2}}, {{0xf02,2},{0xcce,2}}, {{0x1118b,2},{0x2a7eb,3}}, + {{0x12e5,5},{0x9a9,4}}, {{0x6cde,4},{0x121c,3}}, {{0xdb34,5},{0x172e,5}}, {{0x73ac,5},{0x1fc0,5}}, + {{0x355b,3},{0x1d65,3}}, {{0x1da94,6},{0x9a4,3}}, {{0x3583,5},{0xc78c,5}}, {{0x27e0,3},{0x1ebf,3}}, + {{0xe2b,2},{0x3075,3}}, {{0x16b7,5},{0x2246,5}}, {{0xbb4,48},{0xbb4,48}}, {{0x205a1,1},{0x307bb,1}}, + {{0x1a84,5},{0x505d,4}}, {{0x56c7,6},{0x17cd,4}}, {{0x17dd9,3},{0x6,1}}, {{0x2ae22,3},{0x6,1}}, + {{0x23e4,7},{0x115a,3}}, {{0xf604,6},{0xf60a,5}}, {{0x19f7,4},{0x4a5f,4}}, {{0x18b60,8},{0xcd3,2}}, + {{0x1e520,5},{0x1b607,3}}, {{0x4e60,2},{0x11cb,3}}, {{0x23c4b,3},{0xe0f,1}}, {{0x158f,3},{0x1ac7,3}}, + {{0xf0c,1},{0x16ad,3}}, {{0xb0,2},{0x8d,1}}, {{0x12c3,4},{0xf32,2}}, {{0x7414,3},{0xefa,2}}, + {{0xcc1,1},{0x2ee9,3}}, {{0xcc6,2},{0xe86,2}}, {{0xf4f,1},{0x4b11,4}}, {{0x29de,4},{0x592e,5}}, + {{0x2a56,4},{0x2352,5}}, {{0x1c7c,4},{0xe0a,1}}, {{0x15e7,10},{0xe69,5}}, {{0x4e60,2},{0x3356,4}}, + {{0x46bf,1},{0x5538,2}}, {{0x1019,4},{0xe13,3}}, {{0x2f65b,4},{0x5,1}}, {{0x19b9,1},{0x2b86,4}}, + {{0x842d,10},{0xcc9,2}}, {{0x65f6,6},{0xa68f,6}}, {{0x1a07,3},{0x5,2}}, {{0xe33,1},{0x2280,2}}, + {{0x1bbf,5},{0x1099,8}}, {{0x10c5,5},{0xf70,2}}, {{0xb3f1,3},{0xe19,1}}, {{0x18282,6},{0xbf5d,4}}, + {{0x3f07,11},{0xec6,3}}, {{0xd48,4},{0x2e2b1,2}}, {{0x18c64,7},{0x809a,3}}, {{0x2993,7},{0x1099,8}}, + {{0xe11,1},{0x101f,2}}, {{0x18ecc,2},{0x2b05e,2}}, {{0xccd,1},{0x3206,5}}, {{0x73ac,5},{0x2091,4}}, + {{0x10f8a,8},{0xcc9,2}}, {{0x11dfc,4},{0x9a9,2}}, {{0x123ee,5},{0xe89,2}}, {{0x29cf,3},{0x22096,5}}, + {{0x1ff7,3},{0x1153,2}}, {{0x1803e,6},{0x2dd7,4}}, {{0xed35,5},{0xeed,4}}, {{0xb5e9,5},{0x6bd6,4}}, + {{0x173c6,7},{0x11cb,3}}, {{0xb3d9,6},{0xb3bb,6}}, {{0x115e,7},{0x2d1e,4}}, {{0x113c,3},{0x1d40,2}}, + {{0x8fd9,5},{0x1a58,3}}, {{0x1a9fc,6},{0x2477,3}}, {{0x8,1},{0x2f79,5}}, {{0xcd3,2},{0x23df,5}}, + {{0x9ca7,4},{0x9cab,5}}, {{0xc7ff,5},{0x2271,3}}, {{0xef7,3},{0x181b,3}}, {{0x2de4b,3},{0x666,2}}, + {{0xeb5,2},{0x1131,3}}, {{0xb685,5},{0xb97c,2}}, {{0x7b,1},{0x534,2}}, {{0x2b84,2},{0xccb,2}}, + {{0xca25,9},{0xcc9,2}}, {{0xcb8,1},{0x156e,3}}, {{0xdd02,9},{0x1de8,2}}, {{0x2bd5,4},{0xeb5,2}}, + {{0x4781,3},{0xe0f,1}}, {{0xe1f,3},{0x29675,3}}, {{0xd5d5,6},{0x6c88,5}}, {{0xe11,1},{0xcce,3}}, + {{0x1f7f,5},{0x5dd0,6}}, {{0x10e1f,4},{0xe92,3}}, {{0x145b,2},{0x122e,2}}, {{0x34b1,5},{0xe0c,3}}, + {{0x1647,5},{0x14b71,5}}, {{0x10432,5},{0xe2b,4}}, {{0x1f5f7,6},{0x1f5fd,3}}, {{0x1967,3},{0x1a939,6}}, + {{0xf0a,3},{0x23f16,2}}, {{0x2e280,3},{0x2e273,1}}, {{0x7416,1},{0xe0a,1}}, {{0x1db44,2},{0x442d,1}}, + {{0x9f81,8},{0xe6b,4}}, {{0x1ff7e,7},{0xe95,2}}, {{0x1ec94,6},{0x1004,3}}, {{0xbfe5,5},{0xe11,2}}, + {{0x7414,3},{0xef1,3}}, {{0xfb8,3},{0x4ef1,4}}, {{0x1fbe1,5},{0xe95,2}}, {{0xedd,1},{0xfe0,2}}, + {{0x2b0a8,4},{0x11840,2}}, {{0x72a8,9},{0x2dd7,4}}, {{0xe99,1},{0x8,4}}, {{0x445e,2},{0x1766a,2}}, + {{0x29977,4},{0x6,1}}, {{0x18a72,4},{0x1f7c,3}}, {{0x4765,3},{0x2a199,4}}, {{0x19b7,3},{0x3bd0,4}}, + {{0x3a1b,6},{0xe69,6}}, {{0x74f6,2},{0xe33,1}}, {{0x1ed7a,4},{0xe11,1}}, {{0x3be9,5},{0x1720,7}}, + {{0x25933,5},{0xf91,3}}, {{0x11c2e,8},{0xe6b,3}}, {{0x3cbb,9},{0x1e40,4}}, {{0xb385,5},{0xb38a,5}}, + {{0x242cb,7},{0xe11,1}}, {{0x105f,3},{0xc4b3,8}}, {{0x9525,6},{0xe5b6,5}}, {{0x2ba5,1},{0xa,2}}, + {{0x29c0,3},{0x1dc2,3}}, {{0x5897,3},{0xf35,2}}, {{0x13e42,6},{0x3abf,4}}, {{0x1007,5},{0x3fd0,4}}, + {{0x83c1,7},{0x5,1}}, {{0x1dee,2},{0xf35,2}}, {{0xe01a,5},{0x948d,3}}, {{0x17f58,6},{0xe10,2}}, + {{0xf77,4},{0x35a1,2}}, {{0x5944,8},{0x594c,5}}, {{0x1189f,2},{0x6008,3}}, {{0x5bf5,7},{0x6411,4}}, + {{0x1e907,6},{0x24c59,2}}, {{0x19b7,3},{0x3537,2}}, {{0x1977,3},{0x17ace,2}}, {{0x1857,4},{0xed5,3}}, + {{0x5534,4},{0xfcb,2}}, {{0x5944,8},{0xe0a,1}}, {{0x3521,6},{0xf93,8}}, {{0xe11,2},{0xcc9,2}}, + {{0x1367,3},{0x6452,4}}, {{0x7f05,7},{0x6a0f,4}}, {{0x450b,4},{0x80b0,4}}, {{0x2638b,5},{0xed6,3}}, + {{0xc281,4},{0x2e7e8,4}}, {{0xf2ec,6},{0x5fa5,5}}, {{0x1f38,1},{0x18023,3}}, {{0xd756,8},{0xef5,2}}, + {{0x1947,5},{0x2fca,9}}, {{0x24c3b,5},{0xf91,3}}, {{0xf65,4},{0x8b69,4}}, {{0x5,1},{0x1de7,3}}, + {{0xe83,3},{0x797f,4}}, {{0x46af,3},{0x73d6,2}}, {{0x10e1f,4},{0x15ffb,4}}, {{0x7a,2},{0x69,1}}, + {{0x20f6,5},{0x4da9,7}}, {{0x28e1,3},{0xe0d,2}}, {{0x19f7,4},{0xcc3,3}}, {{0xeba9,6},{0xfcd,4}}, + {{0x2ab0,10},{0x15e9,3}}, {{0x8cfd,5},{0xcbf,2}}, {{0xd194,8},{0xf91,3}}, {{0xef7,3},{0x34d7,4}}, + {{0x2df3b,4},{0x9e,2}}, {{0xfb0,2},{0x7a36,3}}, {{0x9a8,1},{0x2ee9,3}}, {{0x2966,4},{0xce76,6}}, + {{0x27d9,2},{0xf35,2}}, {{0x1969,1},{0x20370,3}}, {{0x19b7,3},{0x2d7c,3}}, {{0x8,1},{0xe2b,2}}, + {{0x1367,4},{0x7948,5}}, {{0x27e0,3},{0xa54a,7}}, {{0x11680,8},{0x127c,3}}, {{0xe61,3},{0x2dd7,4}}, + {{0x417d,6},{0x4183,4}}, {{0x12f6,4},{0x164ca,6}}, {{0xb379,3},{0x12a3,3}}, {{0x17afa,6},{0xed9,2}}, + {{0xef7,4},{0x6ca7,3}}, {{0x1a831,6},{0x1131,3}}, {{0x464d,6},{0xcc3,2}}, {{0x8d15,7},{0xe95,2}}, + {{0x5f42,5},{0x10cb,4}}, {{0x97d1,7},{0x1b4f,5}}, {{0x1817,4},{0x1153,2}}, {{0x2de75,4},{0xf,1}}, + {{0x9,2},{0x9a8,1}}, {{0x4618,3},{0x10cb,3}}, {{0x2ba5,1},{0x1130c,3}}, {{0x111a,7},{0x8,1}}, + {{0x1702,4},{0x5669,3}}, {{0xf15,1},{0x4461,2}}, {{0x7d55,7},{0xf86,3}}, {{0xebe,5},{0x15ca,3}}, + {{0xe83,3},{0xcc1,1}}, {{0x24bdf,2},{0xf0c,1}}, {{0x8511,7},{0x14ab,4}}, {{0x2a29,7},{0x13ae,5}}, + {{0x4ef5,4},{0x12a3,3}}, {{0x1afd2,6},{0x149f,3}}, {{0x16b7,7},{0x6151,6}}, {{0x9e,2},{0x57,1}}, + {{0x10c5,5},{0x4a44,5}}, {{0x113c,3},{0x1780,3}}, {{0xf0c,1},{0xe7f,2}}, {{0x1cdda,6},{0x2,1}}, + {{0xf1a,2},{0xe92,3}}, {{0xf86,2},{0x44b3,4}}, {{0x12632,8},{0xe95,2}}, {{0x1ac3c,6},{0xed6,2}}, + {{0xcc3,2},{0xf35,3}}, {{0xfcb,3},{0xe77,3}}, {{0xede,1},{0xf35,2}}, {{0x1e89b,5},{0x8,1}}, + {{0x2b28,8},{0xf84,5}}, {{0xfb1,4},{0x9,2}}, {{0x7416,1},{0xe21,1}}, {{0x1133c,5},{0x104c,2}}, + {{0xed4b,6},{0x23df,5}}, {{0x56c7,5},{0x29f7,3}}, {{0x114d,5},{0xe67,2}}, {{0x1be,2},{0x446,2}}, + {{0x267f0,5},{0xe67,2}}, {{0xe97,3},{0xeee,3}}, {{0x109b,2},{0xfdd,4}}, {{0x1a07,3},{0x16ded,7}}, + {{0x1677,3},{0x7998,4}}, {{0x1fffc,5},{0x16ad,3}}, {{0x62dd,6},{0x18b2,5}}, {{0xccb,2},{0x6e44,6}}, + {{0x2bc7,5},{0x4958,7}}, {{0x12862,6},{0x4415,3}}, {{0x24d63,5},{0x24d68,3}}, {{0x17146,4},{0x7918,4}}, + {{0xbb4d,6},{0x9497,6}}, {{0x227c,5},{0xf32,2}}, {{0xccb9,5},{0x809a,3}}, {{0x1e9e,4},{0x7ba0,5}}, + {{0xf77,4},{0x1941,3}}, {{0x29bf9,4},{0xe0f,1}}, {{0x710a,3},{0xccd,1}}, {{0xe11,2},{0x2f94,3}}, + {{0x2ced,5},{0x9,1}}, {{0x1f0de,4},{0xf3a,2}}, {{0xcc8,1},{0xd3b4,6}}, {{0x1d54,6},{0x1004,3}}, + {{0xdd4f,4},{0x1252,3}}, {{0x4765,3},{0x1cd3,2}}, {{0x584d,7},{0xe11,1}}, {{0xadf1,5},{0xec6,3}}, + {{0xab99,9},{0xec6,3}}, {{0x8c91,6},{0xed9,2}}, {{0x1afb7,6},{0x277d,3}}, {{0x2489,5},{0xb068,5}}, + {{0x2fe1,9},{0xec6,3}}, {{0x143c4,7},{0xf0d,2}}, {{0x794d,6},{0x56b3,4}}, {{0x12e5,3},{0x2ee9,3}}, + {{0x710a,3},{0x3ee5,5}}, {{0x29c0,7},{0x1eff,7}}, {{0x1e9e,6},{0x4da9,7}}, {{0x8c,2},{0x57,1}}, + {{0xf4f,1},{0x2f79,5}}, {{0xe08,1},{0x178d,3}}, {{0x8775,8},{0x1059,3}}, {{0x4781,3},{0x1debc,2}}, + {{0x27e0,3},{0x30ad,6}}, {{0x10d6,5},{0x8f39,4}}, {{0x5722,5},{0x30ad,6}}, {{0x9ca5,6},{0xec6,3}}, + {{0x13b4a,7},{0x9a8,1}}, {{0x19e9,4},{0xe65,2}}, {{0x5128,3},{0x2514,4}}, {{0x17adc,3},{0x17cc,4}}, + {{0x1007,7},{0xfc30,4}}, {{0xef7,3},{0x155ea,4}}, {{0x1a66,1},{0x18f9a,3}}, {{0x1019,4},{0xfb0,3}}, + {{0x12f8,2},{0x6,2}}, {{0x473d,3},{0x1fc7,3}}, {{0x442b,3},{0x10d3,3}}, {{0x78f9,1},{0x3144b,2}}, + {{0x1967,3},{0x7d81,4}}, {{0x23c4b,3},{0x1b9e4,5}}, {{0xe1f,3},{0x1ea72,2}}, {{0x307bb,1},{0x2e269,2}}, + {{0x77bc,4},{0x6,2}}, {{0xe77,2},{0x13e3,4}}, {{0x8428,3},{0x4,1}}, {{0x5bb9,4},{0xe0b,4}}, + {{0x19b9,1},{0xe11,1}}, {{0x185de,5},{0xb,1}}, {{0x1cb11,6},{0xcd3,2}}, {{0x132ee,8},{0xe95,2}}, + {{0x1e4fc,6},{0x18b4,3}}, {{0x4853,3},{0xf7a,2}}, {{0x472f,7},{0xe69,5}}, {{0xebe,4},{0x15cf,7}}, + {{0xbb71,8},{0xe0a,1}}, {{0x9a4,3},{0x128c,4}}, {{0x111a,7},{0x185f,8}}, {{0x10e77,5},{0x1eb89,3}}, + {{0xcc1,1},{0x1f78,7}}, {{0xc02d,7},{0xc040,5}}, {{0xecb,2},{0x78d0,3}}, {{0x1a66,1},{0x14f9,3}}, + {{0xe7d,2},{0xfa5,2}}, {{0xef7,3},{0x62f3,4}}, {{0xf0a,3},{0x23e98,2}}, {{0x4781,3},{0x1fc7,3}}, + {{0x780a,4},{0x3555,4}}, {{0x109b,2},{0x2917,4}}, {{0x2,1},{0x10ba,6}}, {{0x1a7ce,6},{0x809a,3}}, + {{0xb3f1,3},{0x22a2,4}}, {{0x4781,3},{0x16935,4}}, {{0x1677,3},{0x4b55,5}}, {{0x159cc,7},{0xcc9,2}}, + {{0x1019,4},{0x9bd1,3}}, {{0xb379,3},{0xf18,3}}, {{0x3487,6},{0x3075,3}}, {{0x468,2},{0x21,1}}, + {{0xdd8,6},{0xb74,2}}, {{0x2fb0f,4},{0xf0c,1}}, {{0x28b3a,1},{0x205a1,1}}, {{0x16d7,6},{0xcce,3}}, + {{0x29cf,3},{0xfb0,3}}, {{0x6ea5,7},{0xb0e0,5}}, {{0x29cf,3},{0x6008,3}}, {{0xb903,3},{0x1054,3}}, + {{0x23f03,4},{0x13c0,4}}, {{0x4597,5},{0xcc8,1}}, {{0x123d0,5},{0x534e,5}}, {{0x1715a,6},{0xe11,1}}, + {{0x3329,7},{0x43fd,4}}, {{0x3b09,4},{0x333c,5}}, {{0x10c3b,6},{0x4142,3}}, {{0x52f8,6},{0x8,1}}, + {{0x1208,7},{0x5,1}}, {{0x10259,6},{0xcd1,5}}, {{0x19b7,3},{0xccb,2}}, {{0xcd1,2},{0x8459,4}}, + {{0xbd99,5},{0x113f,2}}, {{0x107c3,7},{0x11ad,4}}, {{0x10dd2,5},{0xef1,3}}, {{0xcc7,1},{0x1ffa,3}}, + {{0xb,1},{0xe1c,3}}, {{0xdfd8,9},{0xf35,2}}, {{0x10e77,5},{0x131d1,5}}, {{0x1cdb6,7},{0xfe6,2}}, + {{0x12830,5},{0x3b74,3}}, {{0x2628b,7},{0xe0a,1}}, {{0x3,1},{0xcc8,1}}, {{0x10a3,3},{0x44ad,3}}, + {{0x39b9,4},{0x28d2,3}}, {{0xccb,6},{0xcd1,5}}, {{0xcc6,5},{0xccb,11}}, {{0xcc1,5},{0xcc6,16}}, + {{0x1977,4},{0xe848,7}}, {{0x478f,3},{0x1f4d1,6}}, {{0x113c,5},{0x90b6,7}}, {{0xcc1,1},{0xed6,3}}, + {{0xebe,4},{0x4111,9}}, {{0xcb6,3},{0xcb9,8}}, {{0xcb6,11},{0xcc1,21}}, {{0xcc1,1},{0xe69,5}}, + {{0x19b7,3},{0x1c442,6}}, {{0xcbd,1},{0xf16,2}}, {{0x19b9,1},{0x78ed,2}}, {{0x3c2f,10},{0xe95,2}}, + {{0x1f66c,7},{0xf35,2}}, {{0x14158,6},{0x126a,4}}, {{0xe6f,3},{0x22866,5}}, {{0x145b,2},{0xf20,2}}, + {{0xe2f,1},{0x10352,4}}, {{0x1f0d5,4},{0x1f0d9,5}}, {{0x8da5,5},{0xdb5a,6}}, {{0x4225,4},{0x23987,4}}, + {{0x4765,3},{0xcc9,2}}, {{0x1fbe,3},{0x6,1}}, {{0x181f6,5},{0x181fb,5}}, {{0xef7,3},{0x1d2e6,4}}, + {{0x545,2},{0x69,1}}, {{0x8439,8},{0x10d3,3}}, {{0x29cf,3},{0x109b,2}}, {{0x121c,3},{0xcc3,2}}, + {{0x185d4,5},{0x1152,3}}, {{0x14a4,2},{0x22a2,5}}, {{0x182f0,6},{0x1b34,4}}, {{0x1bec,5},{0x1b3c,9}}, + {{0x479d,4},{0xf164,7}}, {{0x19b7,3},{0xf59,2}}, {{0xaf4,4},{0xaf4,1}}, {{0x111a,3},{0x5342,4}}, + {{0x70ad,3},{0x1ea75,3}}, {{0x4781,3},{0x4574,3}}, {{0x478f,3},{0xf0d,2}}, {{0x2fb1e,4},{0xf15,1}}, + {{0x103cf,7},{0xe11,1}}, {{0xe97,3},{0x1062,2}}, {{0x1027a,5},{0x1692,2}}, {{0x1e57d,2},{0x442d,1}}, + {{0xe77,2},{0xec3,3}}, {{0x2352,5},{0xe95,2}}, {{0x1969,1},{0xf91,3}}, {{0x19b7,3},{0x1dee,2}}, + {{0x46af,3},{0xf0c,1}}, {{0x20f6,5},{0x484e,5}}, {{0x2e866,2},{0xe3b,2}}, {{0x9e1c,4},{0xf86,2}}, + {{0x2a58,2},{0x1ff9,5}}, {{0xc6f7,4},{0xef3,4}}, {{0x22bd3,7},{0xe0a,1}}, {{0x1aadd,5},{0x6cb4,3}}, + {{0x11b3,5},{0x1569,4}}, {{0x214c9,5},{0x2477,3}}, {{0x478f,3},{0x6008,6}}, {{0x10a3,3},{0x4a86,4}}, + {{0x307bb,1},{0x78f9,1}}, {{0x4e60,2},{0xf1f,3}}, {{0x113c,3},{0x10f2,6}}, {{0x2240,4},{0xb,1}}, + {{0x12d4,4},{0x189f,3}}, {{0xe3d,4},{0x2e7c0,2}}, {{0xe6f,3},{0x4fa2,5}}, {{0xeda3,6},{0x711b,3}}, + {{0xe83,3},{0x1c442,6}}, {{0x1f570,8},{0xe11,1}}, {{0x465b,5},{0x2e29,3}}, {{0x1857,8},{0x1099,8}}, + {{0x1567,3},{0x4,1}}, {{0x1dee,2},{0xf1a,2}}, {{0x6ceb,7},{0x1a71,3}}, {{0x6f1a,5},{0x1b2e,3}}, + {{0x2ba5,1},{0xede,1}}, {{0x3de1,5},{0xe2b,2}}, {{0xe1f,3},{0x2ed13,2}}, {{0x739f,5},{0x66c2,3}}, + {{0x178c6,7},{0x1040,3}}, {{0x4911,6},{0x1382,5}}, {{0xe83,15},{0xe92,3}}, {{0x1f16,5},{0x1dc3,7}}, + {{0x15bf2,9},{0xe11,1}}, {{0xae69,8},{0x2dd7,4}}, {{0x1be,2},{0x512,2}}, {{0x2385b,6},{0xe11,1}}, + {{0x5d2d,10},{0x1004,3}}, {{0x2de7b,3},{0x12e,2}}, {{0x3a7d,6},{0xf095,5}}, {{0x2a47,3},{0x1c3e8,6}}, + {{0x2df3b,4},{0x1be,2}}, {{0xf77,3},{0x1059,3}}, {{0x57be,5},{0x167f,8}}, {{0xb0,2},{0x7b,1}}, + {{0x8e7d,7},{0x1392,5}}, {{0x2c15,3},{0x6,1}}, {{0x478f,3},{0x2d764,3}}, {{0x7ac1,5},{0x129a,6}}, + {{0x2940,3},{0x49a6,3}}, {{0xd131,4},{0x4e3c,3}}, {{0x253fb,4},{0x253ff,4}}, {{0x1fe8b,6},{0x2b7a,3}}, + {{0x26253,6},{0xed6,2}}, {{0x24beb,4},{0xfa6,3}}, {{0x2bae,2},{0xf91,3}}, {{0x1754e,4},{0x6e53,4}}, + {{0xb589,4},{0x4c16,3}}, {{0x2df3b,4},{0xd,1}}, {{0x56,2},{0x9f,1}}, {{0x2de7b,3},{0x325,2}}, + {{0x2017,4},{0x59b4,3}}, {{0x27e0,3},{0xcd2,2}}, {{0x16f7,6},{0xe11,1}}, {{0x52f8,6},{0x530b,7}}, + {{0x105f,5},{0x3599,3}}, {{0x824d,4},{0xcb53,6}}, {{0xcbd,1},{0x10f5,3}}, {{0x194e4,6},{0x1159,3}}, + {{0x7a,2},{0xe,1}}, {{0x2948,3},{0x80c5,3}}, {{0x2a47,3},{0xf0f,2}}, {{0x1041,3},{0x13e3,4}}, + {{0xccd,1},{0xfa5,3}}, {{0x22bd3,7},{0xe11,1}}, {{0x17394,7},{0xcc9,2}}, {{0x57,1},{0x666,2}}, + {{0x111a,3},{0xcd3,1}}, {{0xa461,8},{0xcce,2}}, {{0x1d37a,6},{0x10d3,3}}, {{0x7b2d,7},{0x13e3,4}}, + {{0x2b8f,5},{0x2b94,9}}, {{0x2aaaf,3},{0x1766b,2}}, {{0x2e271,3},{0x1307,1}}, {{0x1377,5},{0xfcb,2}}, + {{0x28df,5},{0xfca8,5}}, {{0x6012,6},{0x1004,3}}, {{0xf77,5},{0xd183,6}}, {{0x12f6,4},{0x25f87,4}}, + {{0x12e5,3},{0x10a6,2}}, {{0x2489,5},{0x101e,4}}, {{0x2ba5,1},{0x2d8d,3}}, {{0x1caf,5},{0x2477,3}}, + {{0x2231,5},{0xf62,3}}, {{0x11e28,6},{0x8,1}}, {{0x611,2},{0x9f,1}}, {{0xe60,2},{0x6,1}}, + {{0x8bb9,7},{0xf7a,2}}, {{0x391f,5},{0x158f,3}}, {{0x1467,4},{0xd347,5}}, {{0x30e53,3},{0xcd6,1}}, + {{0xb400,3},{0x14ab,3}}, {{0xf4f,1},{0xefa,3}}, {{0x24bdf,2},{0x48d3,2}}, {{0xe99,1},{0xccb,2}}, + {{0xf0c,1},{0xcc3,2}}, {{0x18b1a,8},{0xf35,2}}, {{0x3976,3},{0xccb,2}}, {{0xcc7,1},{0x123e,3}}, + {{0x8,1},{0x1c215,2}}, {{0xe4df,8},{0xebb,3}}, {{0x10da6,5},{0x1e0ae,4}}, {{0x118be,9},{0x8,1}}, + {{0x2de7b,3},{0x10a,2}}, {{0x4ef5,4},{0x22a3,2}}, {{0x11d83,7},{0xe22,2}}, {{0x120a,5},{0x2c15,3}}, + {{0x14a7,4},{0x1a112,5}}, {{0x4765,3},{0x62ec,5}}, {{0x1007,7},{0x68a1,6}}, {{0x9bc1,6},{0xf86,2}}, + {{0xbb89,4},{0x9b4d,8}}, {{0xc159,4},{0x174b,2}}, {{0x1e7a8,6},{0x1ea3,3}}, {{0xc954,5},{0xcc9,2}}, + {{0x22ba3,5},{0xe7f,2}}, {{0x1949,4},{0x1044,4}}, {{0xc17d,6},{0xe86,2}}, {{0xe31,2},{0xf35,2}}, + {{0xf11,1},{0xe09,2}}, {{0x1507,7},{0x150e,6}}, {{0x9e61,8},{0xf7a,2}}, {{0xa9a1,9},{0xec6,3}}, + {{0x1967,3},{0x15fc,2}}, {{0x569a,3},{0xe11,1}}, {{0xa5ed,5},{0x3704,7}}, {{0xe21,1},{0x2236,3}}, + {{0x1687,8},{0x168f,8}}, {{0xe97,3},{0x1ffa,3}}, {{0xe3d,4},{0x2b0aa,2}}, {{0x12c3,4},{0xe78,2}}, + {{0xf79,3},{0xd28b,5}}, {{0x1f7f,4},{0xe6c,3}}, {{0x1208,10},{0x1212,7}}, {{0x23ad3,6},{0xe11,2}}, + {{0x1dba2,5},{0xe12,3}}, {{0xe33,1},{0x29889,3}}, {{0xe08,1},{0x2ad98,3}}, {{0x17f7,6},{0x1d32,3}}, + {{0x1207a,5},{0x120a0,4}}, {{0x3a29,7},{0x3a30,7}}, {{0x8d,1},{0x44,2}}, {{0x1aee8,6},{0x3075,3}}, + {{0xbe1d,5},{0xbe22,7}}, {{0xe97,3},{0x1252,3}}, {{0x11725,5},{0x1172a,2}}, {{0xf0a,3},{0x28fdf,2}}, + {{0xdb1e,5},{0x943a,6}}, {{0x14a7,4},{0x2f94,3}}, {{0x9a4,3},{0x8,1}}, {{0xf16,2},{0xe7f,2}}, + {{0x2a47,3},{0x2ece6,2}}, {{0xcd6,1},{0xcf6,1}}, {{0x1fffc,5},{0x296f,3}}, {{0x6cc,2},{0x69,1}}, + {{0x1a84,5},{0xcc1,1}}, {{0x7233,8},{0x51c8,5}}, {{0x2015,3},{0x223c6,5}}, {{0xff0a,6},{0x1b4f,5}}, + {{0x2858,8},{0xcd3,2}}, {{0x7965,9},{0xec6,3}}, {{0x4519,5},{0x10b7,2}}, {{0x1ff7,3},{0x101f,2}}, + {{0xe78,1},{0x11b5,2}}, {{0x48d6,2},{0xf15,1}}, {{0xccd,1},{0x2467,4}}, {{0x445c,2},{0x2ba5,1}}, + {{0x9e,2},{0x69,1}}, {{0x1290,4},{0x1f38,4}}, {{0x1659,6},{0x1204,4}}, {{0xcbd,1},{0xe13,3}}, + {{0x4b12,4},{0xe0a,1}}, {{0x22b8,4},{0x4b55,5}}, {{0xef7,3},{0x5988,3}}, {{0x18414,4},{0x2608,3}}, + {{0x12e52,7},{0xf91,3}}, {{0x8049,9},{0xe11,1}}, {{0x1019,4},{0x13de2,6}}, {{0x19d4b,6},{0x1085,3}}, + {{0x18f7,4},{0x6cb4,3}}, {{0x17094,3},{0xe2b,2}}, {{0x1db1,3},{0x431e,3}}, {{0xf89,3},{0x1439f,7}}, + {{0x59b9,6},{0xf62,3}}, {{0x10a3,3},{0xf24,2}}, {{0xe73c,9},{0xe95,2}}, {{0x5fc4,7},{0xeca,3}}, + {{0x174a2,5},{0x12a83,5}}, {{0x478f,3},{0xcc6,2}}, {{0xcce,2},{0xccd,3}}, {{0x7414,3},{0x29d7,3}}, + {{0x11b47,5},{0xe31,2}}, {{0xe32,1},{0x12a3,3}}, {{0xb895,4},{0x1e9ec,5}}, {{0x7d25,5},{0x18b4,3}}, + {{0x53ae,9},{0xeed,4}}, {{0x442b,3},{0x10a86,8}}, {{0x1d63,4},{0xc6bc,4}}, {{0x7416,1},{0x442d,1}}, + {{0xe16,2},{0xe91,2}}, {{0x30311,4},{0x28b33,1}}, {{0x19b7,5},{0x77bf,5}}, {{0x1ea8a,6},{0x1189,3}}, + {{0x70ad,3},{0xa,2}}, {{0x23f8b,5},{0xec6,3}}, {{0xe11,1},{0xf1d,1}}, {{0xa575,9},{0xf86,3}}, + {{0x1312c,6},{0xed5,3}}, {{0xac65,6},{0x117a2,4}}, {{0xae09,5},{0x2f92,4}}, {{0x12e5,3},{0xe33,1}}, + {{0xcbd,1},{0x181b,3}}, {{0x1f38,1},{0x1150,2}}, {{0x3de1,5},{0x1722,5}}, {{0x11,1},{0x20579,1}}, + {{0xed1,3},{0x25b1e,4}}, {{0x1240,2},{0xc088,4}}, {{0x19b7,3},{0x2997f,4}}, {{0x2a7ec,2},{0xf4f,1}}, + {{0xf15,1},{0x445b,2}}, {{0x75db,4},{0xf49d,3}}, {{0x17ed6,6},{0x6452,4}}, {{0x28e1,3},{0xed6,2}}, + {{0x236c,4},{0xe22,2}}, {{0xc36,2},{0x30861,2}}, {{0xcd1,2},{0xcc3,2}}, {{0x4781,3},{0x2c86,2}}, + {{0x26ff,8},{0x2707,7}}, {{0x17182,6},{0x1273c,4}}, {{0x11186,2},{0xe19,1}}, {{0x3559,4},{0x3,1}}, + {{0x9ddd,6},{0x5342,3}}, {{0x3d63,5},{0x4d1a,7}}, {{0x4d62,8},{0x428e,5}}, {{0x1131,3},{0x1254,6}}, + {{0xbb35,5},{0x2091,4}}, {{0xe71,1},{0xccd,1}}, {{0x52f8,6},{0x8a27,6}}, {{0x2ba5,1},{0x24e8,4}}, + {{0x488b,4},{0x106ca,4}}, {{0x4a01,3},{0x7f21,8}}, {{0xf89,3},{0x82c9,6}}, {{0x18f7,5},{0x122e,2}}, + {{0xd7a,2},{0xc279,2}}, {{0x29e0,3},{0x5669,3}}, {{0xe0f,1},{0x2542e,3}}, {{0x1d90,10},{0x1278,4}}, + {{0x1057,5},{0xebb,3}}, {{0x46af,3},{0x120c,3}}, {{0x113c,4},{0xea93,3}}, {{0x9f,1},{0x1ac,2}}, + {{0xf11,1},{0x442d,1}}, {{0x4ef5,4},{0xe5e2,5}}, {{0x29cf,3},{0x2db19,2}}, {{0x1ebc,5},{0x6,1}}, + {{0xccd,1},{0x1393,3}}, {{0x737a,4},{0x8b30,4}}, {{0xfb0,2},{0x1e8b,3}}, {{0x113c,3},{0x158f,3}}, + {{0x4519,4},{0xe71,1}}, {{0xf31,3},{0xfe0,2}}, {{0xe78,1},{0x14a2,3}}, {{0x11cb,3},{0xf35,3}}, + {{0x1756c,3},{0x249f,3}}, {{0x1177d,6},{0xb381,4}}, {{0x72cf,4},{0x17293,4}}, {{0xcc4,2},{0xcc9,2}}, + {{0xe282,6},{0x6bd4,5}}, {{0x1230,3},{0x4,1}}, {{0xc93e,6},{0xcc9,2}}, {{0x9471,7},{0x6cb4,3}}, + {{0x73ed,4},{0x73d6,2}}, {{0x19b7,3},{0x2a6af,4}}, {{0x236c,4},{0x4b62,5}}, {{0xe7a,1},{0x1f875,1}}, + {{0x3b09,4},{0x1a71,3}}, {{0xf89,3},{0x1efee,3}}, {{0x7929,7},{0xe95,2}}, {{0x46af,3},{0x2f94,3}}, + {{0x1c28,7},{0x4e39,5}}, {{0x13d7a,6},{0x2468,3}}, {{0x16bec,6},{0x6,1}}, {{0x29cf,3},{0x1ea72,2}}, + {{0x12a1,4},{0xccb,2}}, {{0x29c0,3},{0x19b9,1}}, {{0x16a7,3},{0x9a8,1}}, {{0x101bf,6},{0x642a,5}}, + {{0x4765,3},{0x1829b,5}}, {{0xf8e,3},{0xe0d,2}}, {{0x7414,3},{0x1692,2}}, {{0x44a9,7},{0x1392,5}}, + {{0xbfc1,5},{0x10d55,4}}, {{0xcd3,2},{0x1791,6}}, {{0x1a17,5},{0xa385,4}}, {{0xef7,4},{0xed6,2}}, + {{0x4a97,10},{0xcc9,2}}, {{0xe89,2},{0x2560,4}}, {{0xe16,3},{0xccb,2}}, {{0x6cde,4},{0x1efee,3}}, + {{0xf59,2},{0xf91,3}}, {{0x602c,5},{0xe1c,3}}, {{0x1153,3},{0x1156,8}}, {{0x23dae,3},{0xe22,2}}, + {{0xc15b,2},{0xefa,4}}, {{0x6519,8},{0xe69,5}}, {{0x18f05,3},{0x10b01,6}}, {{0x1d3a,7},{0xeed,4}}, + {{0x47c7,5},{0x766f,4}}, {{0x1cf3,3},{0xf35,2}}, {{0x46bf,4},{0x1ea3,3}}, {{0x2ba5,1},{0xe0f,1}}, + {{0xe33,1},{0x10f2,5}}, {{0xe21,1},{0xe11,1}}, {{0x2cc59,2},{0xe6b,2}}, {{0x1150a,6},{0x17fd6,4}}, + {{0x1a66,1},{0x1af2,10}}, {{0xaf4d,8},{0x1059,3}}, {{0x45a5,5},{0x4bbc,6}}, {{0x2d8e1,5},{0xb,1}}, + {{0xb3f1,3},{0xe11,1}}, {{0xf15,1},{0xe86,2}}, {{0x506e,9},{0xeee,3}}, {{0x27e0,3},{0xefa,3}}, + {{0xe11,2},{0xe0b,4}}, {{0x111a,3},{0x157de,4}}, {{0x2c6f,6},{0x10b9,2}}, {{0x11d0a,5},{0xbd26,3}}, + {{0x2ba5,1},{0xf15,1}}, {{0x12e5,3},{0x1393,3}}, {{0xe0c,2},{0xcba,3}}, {{0x2669,10},{0xec6,3}}, + {{0xe7d,2},{0x10ed,3}}, {{0x1046,4},{0xec6,3}}, {{0xe2f,1},{0xcd3,1}}, {{0x11444,6},{0x1144a,5}}, + {{0xead,3},{0xcd3,1}}, {{0x10c5,4},{0x9bd1,3}}, {{0xe32,1},{0x9a6,1}}, {{0x105f,3},{0x3080,4}}, + {{0x2675d,2},{0x4767,1}}, {{0x10a6,7},{0x14a2,3}}, {{0x26921,2},{0xe21,1}}, {{0xf59,2},{0x13c3,4}}, + {{0x136a,4},{0x395d,4}}, {{0x4767,1},{0x5988,3}}, {{0x4767,1},{0x5538,2}}, {{0x8511,7},{0x2177,5}}, + {{0x1469,3},{0xf4a,5}}, {{0x7093,9},{0xec6,3}}, {{0xe19,1},{0x1bf0,2}}, {{0x1f93c,5},{0x18fc7,3}}, + {{0x9b9d,6},{0x14ab,4}}, {{0x72cf,4},{0x1b6d,4}}, {{0xbfc1,5},{0xed9,2}}, {{0x17661,2},{0x1db3b,2}}, + {{0x9f2d,8},{0xe77,3}}, {{0x16a7,5},{0xe71,1}}, {{0x27e0,3},{0x8a0f,6}}, {{0xe7a,1},{0x9a5,2}}, + {{0x1e44,6},{0x54ab,7}}, {{0x2759,6},{0x146d,9}}, {{0xe83,3},{0x3aff,5}}, {{0x9b79,5},{0x111c,2}}, + {{0xd48,4},{0xe3b,2}}, {{0x10f53,7},{0x6,1}}, {{0x2957,5},{0x2261,3}}, {{0xe86,2},{0x58ff,4}}, + {{0x2a4c9,5},{0x18772,2}}, {{0x29977,4},{0x8,1}}, {{0x9c85,3},{0xcd3,1}}, {{0x5dfd,6},{0x2467,4}}, + {{0x26b4,7},{0x6cbe,4}}, {{0x28d0,4},{0xfeac,4}}, {{0x451b,2},{0x1050,3}}, {{0x2510,7},{0x2517,8}}, + {{0x2,1},{0x14e5d,5}}, {{0x4522,3},{0x120b,4}}, {{0x9615,8},{0x13c3,4}}, {{0xf0a,3},{0x1c76,3}}, + {{0xe563,5},{0x320b,5}}, {{0x127f,3},{0xe0d,2}}, {{0x7310,8},{0xfdf,4}}, {{0xe33,1},{0x2bb4,3}}, + {{0x251f,8},{0x1024,7}}, {{0x4597,5},{0xcc1,1}}, {{0x4535,6},{0x453b,8}}, {{0x309d,3},{0x1ce6,5}}, + {{0x1467,4},{0x6479,4}}, {{0x3c9f,11},{0x3caa,3}}, {{0x2687,8},{0x1177,7}}, {{0xb8d1,7},{0x2f92,3}}, + {{0x2de9,8},{0x2df1,5}}, {{0x39bb,10},{0xed9,2}}, {{0x13fa0,7},{0x189f,3}}, {{0x11a4a,6},{0xec6,3}}, + {{0x24cc3,5},{0xcc3,2}}, {{0x4161,5},{0x1656b,5}}, {{0x2271,3},{0x5,2}}, {{0x1ddc0,3},{0x185c5,4}}, + {{0x69,1},{0x4bd,2}}, {{0x119e3,3},{0x6,1}}, {{0x113ec,5},{0xeea,3}}, {{0x49e1,8},{0x1279,5}}, + {{0xe78,2},{0x1463,4}}, {{0x170e2,5},{0xbf50,5}}, {{0xe2b,2},{0x1267,7}}, {{0xe1f,3},{0xede,1}}, + {{0x772d,5},{0x354f,4}}, {{0xe11,1},{0xcd3,2}}, {{0x8,1},{0xe636,2}}, {{0xeee,3},{0xcd3,2}}, + {{0x1eec2,4},{0xeca,3}}, {{0xb7ad,4},{0x8,1}}, {{0x122e,2},{0x6d42,4}}, {{0x8,2},{0xe0a,1}}, + {{0xe97,3},{0xe92,3}}, {{0x1b1ee,5},{0xe0d,2}}, {{0x127f,3},{0x4188,3}}, {{0x4139,4},{0xfdd,4}}, + {{0xc2,2},{0xe,1}}, {{0xb,1},{0x4928,3}}, {{0x10b6a,5},{0xccd,1}}, {{0x2e889,3},{0x3,1}}, + {{0x10f48,5},{0xcc8,1}}, {{0x5bb9,4},{0x14a2,3}}, {{0x312f4,2},{0xc,1}}, {{0x9a8,2},{0x11dc,3}}, + {{0xb3f1,3},{0xe2f,1}}, {{0x1367,3},{0x3a48,5}}, {{0x19b7,3},{0x296f,3}}, {{0x4,1},{0x1a101,4}}, + {{0x1967,3},{0xede,1}}, {{0x7518,4},{0xbbb1,8}}, {{0xe6f,3},{0x6478,5}}, {{0xe634,7},{0xef3,4}}, + {{0xef7,3},{0xccd,1}}, {{0x1c28,6},{0x4187,4}}, {{0xf15,1},{0x413d,5}}, {{0xd079,4},{0x2ce9,4}}, + {{0x25d53,4},{0xf15,1}}, {{0x126a,3},{0xf35,2}}, {{0x1ff7,3},{0x3a48,5}}, {{0x5d54,5},{0x805b,6}}, + {{0x12e5,3},{0x260d6,3}}, {{0x14068,7},{0x10cb,3}}, {{0xfa6,3},{0x153a,3}}, {{0xe08,1},{0xe22,3}}, + {{0x1081,11},{0xe11,1}}, {{0x108b,3},{0x5261,4}}, {{0x111c,2},{0xe6c,3}}, {{0x11515,5},{0x428e,5}}, + {{0x9a8,1},{0x1a67,5}}, {{0x5199,7},{0x1f7c,3}}, {{0x2779b,5},{0xe95,2}}, {{0x70ad,3},{0x6bd4,5}}, + {{0xe08,1},{0x1ce7,4}}, {{0x4853,3},{0x70a6,3}}, {{0x5bc,2},{0x21,1}}, {{0x1766a,2},{0x1e57e,2}}, + {{0x1ff7,3},{0xe6b,4}}, {{0x18e8a,6},{0x6cff,4}}, {{0x2966,4},{0x31f8,3}}, {{0xe1f,4},{0x17cd,4}}, + {{0x71c3,3},{0x71c6,5}}, {{0x2b84,2},{0x12075,5}}, {{0x2ba5,1},{0x1372,4}}, {{0x29c0,4},{0x4,1}}, + {{0x1198f,5},{0x1258,5}}, {{0x1e2f0,2},{0xe99,1}}, {{0xf0a,3},{0x2ca1e,2}}, {{0xe99,1},{0x4e3b,4}}, + {{0x1ff7,3},{0x10a6,2}}, {{0x780a,5},{0x1150,2}}, {{0xe61,2},{0x6,2}}, {{0x2b81,2},{0x1969,1}}, + {{0xf4f,1},{0x48d2,2}}, {{0x1e706,7},{0xed6,2}}, {{0x11a6,3},{0x15af,8}}, {{0x2ba2,3},{0xed6,3}}, + {{0x4765,3},{0x7416,1}}, {{0x2a58,2},{0xee8,9}}, {{0x2b48,2},{0x1cb1,5}}, {{0xe21,1},{0x142d,3}}, + {{0x20543,2},{0x1969,1}}, {{0x174fc,5},{0x286d,3}}, {{0xf89,3},{0x168b,4}}, {{0xc1d1,4},{0xf82,7}}, + {{0x1b4b,4},{0x1b4f,5}}, {{0x2b84,2},{0x28e1,3}}, {{0x125d,8},{0x1783,4}}, {{0x29cf,3},{0x3e54,3}}, + {{0x19b7,4},{0x198aa,4}}, {{0x48ea,6},{0x1225a,4}}, {{0x8f85,5},{0x8f8a,7}}, {{0x4853,3},{0x120f,3}}, + {{0x2baeb,4},{0xe71,1}}, {{0x24b6,5},{0x1e2c,4}}, {{0xb679,5},{0x546a,7}}, {{0x478f,3},{0x1969,1}}, + {{0x1a9ea,6},{0x2477,3}}, {{0x111a,3},{0x1153,4}}, {{0xcc7,1},{0xe989,5}}, {{0x17ec,4},{0x1f7c,3}}, + {{0x3bdb,6},{0x1cb1,5}}, {{0x16a7,3},{0x6326,5}}, {{0xe99,1},{0xed9,2}}, {{0xe99,1},{0xfe7,2}}, + {{0x2966,4},{0xe0a,1}}, {{0xb396,2},{0xf7a,2}}, {{0xe2b,2},{0xfa5,2}}, {{0x1567,3},{0xe78,2}}, + {{0x4217,6},{0x12a9,3}}, {{0x1a0bd,6},{0x1593,3}}, {{0x15422,5},{0xfcb,2}}, {{0xe1f,3},{0x19b9,1}}, + {{0xcc1,1},{0xe89,3}}, {{0xcc6c,5},{0x4e45,3}}, {{0x205a7,1},{0x1327,1}}, {{0x3083b,2},{0x18efa,2}}, + {{0x2a47,3},{0xe32,1}}, {{0x3639,11},{0xec6,3}}, {{0xb69d,3},{0xcd3,2}}, {{0x2858,4},{0xa893,6}}, + {{0x24bcd,2},{0x1766a,2}}, {{0x1817,5},{0x7a15,4}}, {{0x4781,3},{0xfb0,3}}, {{0x12d4,3},{0xee9,2}}, + {{0x1ff7,3},{0x1b293,6}}, {{0x1677,3},{0x2236,3}}, {{0x1417,8},{0x9a6,1}}, {{0x3d47,6},{0x30ad,6}}, + {{0x2984,5},{0x6a0f,4}}, {{0xe1f,3},{0xb495,4}}, {{0xed9,2},{0x1c85,3}}, {{0x512,2},{0x57,1}}, + {{0xc2,2},{0x7b,1}}, {{0x16a7,3},{0x22a3,2}}, {{0xa35e,5},{0xec6,3}}, {{0x4,1},{0x15390,3}}, + {{0x4979,4},{0xed6,2}}, {{0x9,1},{0xeca,3}}, {{0x17660,3},{0x1db4d,4}}, {{0x677,2},{0x45,1}}, + {{0x112d,4},{0x809a,3}}, {{0x20791,5},{0xf62,3}}, {{0x127f,3},{0x138e,2}}, {{0xb3f1,3},{0x170f9,7}}, + {{0xe97,3},{0x44ad,4}}, {{0x29cf,3},{0xb396,2}}, {{0x2de7b,3},{0x140,2}}, {{0xf0c,1},{0x843c,3}}, + {{0x4871,2},{0x5d58,3}}, {{0x123da,8},{0xe67,2}}, {{0x269da,5},{0xcc8,1}}, {{0x29cf,3},{0x2054a,2}}, + {{0xae99,7},{0x1064,3}}, {{0x1957,5},{0x30c6,3}}, {{0x1a07,3},{0x2675d,2}}, {{0x24bcd,2},{0x26768,2}}, + {{0x2e27d,1},{0x205a9,1}}, {{0xa461,8},{0xec6,3}}, {{0xcc1,1},{0xb,1}}, {{0x27e0,5},{0xb05c,5}}, + {{0xc077,3},{0xfdd,6}}, {{0x1967,3},{0xf16,2}}, {{0x112a2,9},{0xed9,2}}, {{0x473b,5},{0xf86,2}}, + {{0x46af,3},{0x1889,2}}, {{0x19b7,5},{0xe0b,4}}, {{0x17b0c,4},{0x1ea3,3}}, {{0x1cdc,6},{0x68a1,6}}, + {{0x1a1e6,5},{0x2dd7,4}}, {{0x391f,5},{0x149f,3}}, {{0x10d9,2},{0x12bf,4}}, {{0x25f2b,7},{0x6,1}}, + {{0xa29b,7},{0x451e,4}}, {{0x4765,3},{0x453b,4}}, {{0x1224,6},{0x2b7d,4}}, {{0x151c,4},{0x1520,7}}, + {{0xb025,9},{0xec6,3}}, {{0x46af,3},{0x22a3,2}}, {{0x1db3b,2},{0x74f9,2}}, {{0x7a85,5},{0x7a8a,5}}, + {{0x7303,5},{0xe80,2}}, {{0x5a6f,9},{0x1523,4}}, {{0xb589,6},{0x16478,4}}, {{0x450b,4},{0x7e11,4}}, + {{0xe83,3},{0x278af,4}}, {{0x19b7,4},{0x1212,3}}, {{0xbb89,4},{0x2842,4}}, {{0x11b5,2},{0x6bef,5}}, + {{0x44,2},{0xf,1}}, {{0x11187,2},{0xf11,1}}, {{0xe16,1},{0x3,1}}, {{0x4f43,7},{0x27dc,4}}, + {{0x73d3,5},{0xcc7,1}}, {{0xe5b,3},{0xe78,1}}, {{0x1f38,1},{0x73d6,2}}, {{0xe19,1},{0x17ac9,2}}, + {{0xf4f,1},{0x277a,3}}, {{0x1da0d,7},{0xcce,2}}, {{0x1cf3,3},{0x1fc7,3}}, {{0xe6a2,6},{0x1b4f,5}}, + {{0xe83,5},{0x1410c,4}}, {{0x18610,5},{0x18330,4}}, {{0x2de7b,3},{0x19a,2}}, {{0xedd,1},{0xcc7,2}}, + {{0x4003,8},{0x1b9d,4}}, {{0x39d5,7},{0x9c04,5}}, {{0x1172a,2},{0xe0a,1}}, {{0x1ac69,6},{0xf86,3}}, + {{0x45a5,5},{0x1050,4}}, {{0xf49,6},{0xf4f,4}}, {{0x1db45,2},{0xe16,1}}, {{0xb0,2},{0x21,1}}, + {{0xed3,8},{0xf49,10}}, {{0x1467,6},{0x5dd0,6}}, {{0x15f30,7},{0xfdf,3}}, {{0x46bf,1},{0x1230,3}}, + {{0x4fb8,4},{0xfe8,2}}, {{0x1a17,5},{0x6e4f,7}}, {{0x112b,6},{0x8b9c,5}}, {{0x311af,2},{0x2e7da,2}}, + {{0x2b84,2},{0x810d,4}}, {{0xce50,5},{0x943a,5}}, {{0x5756,7},{0x13e3,4}}, {{0x3329,5},{0x149c,3}}, + {{0x41a7,10},{0x141f,4}}, {{0x1059,3},{0xfdd,6}}, {{0x1ae7,4},{0xcc9,2}}, {{0x1941,3},{0x10f2,5}}, + {{0x1196e,8},{0xf35,2}}, {{0x12e5,3},{0x285d6,4}}, {{0x20f6,5},{0xd704,5}}, {{0xe5e,2},{0x915f,6}}, + {{0x2ed6f,4},{0xe11,1}}, {{0x4853,3},{0x17661,2}}, {{0xe97,3},{0xe0f,1}}, {{0xcd3,1},{0x185f,7}}, + {{0x1a07,3},{0x25d5e,2}}, {{0x2e4b,9},{0x1d32,4}}, {{0x4871,2},{0xe0b,2}}, {{0xf0a,3},{0xb02a,3}}, + {{0x442b,3},{0x109b,2}}, {{0xccd,1},{0x188c,3}}, {{0x10172,7},{0xf91,3}}, {{0x8181,9},{0x1be9,3}}, + {{0xf4d0,7},{0x1392,3}}, {{0x7a85,5},{0x7a8a,7}}, {{0x4c03,5},{0x1a98,6}}, {{0x1969,2},{0x3473,6}}, + {{0x2601b,6},{0xe0a,1}}, {{0x2a023,5},{0x5,2}}, {{0xad8a,4},{0xec6,3}}, {{0xf0a,3},{0xe95,2}}, + {{0xe0a,1},{0x66c2,3}}, {{0x10217,8},{0xf91,3}}, {{0x1114d,6},{0xbb24,5}}, {{0xaaf,2},{0x317a4,2}}, + {{0x1f00f,6},{0xe67,3}}, {{0x2f9b,5},{0xee9,2}}, {{0x9711,8},{0x12bf,4}}, {{0x478f,3},{0x3fed,3}}, + {{0xe63f,4},{0x113f,2}}, {{0x7414,3},{0x4574,3}}, {{0x158f,3},{0x1b9d,4}}, {{0x1692,2},{0xfa6,3}}, + {{0x239b,3},{0xe11,1}}, {{0xcbd,1},{0x1d003,5}}, {{0xb8dd,5},{0xf49d,3}}, {{0x4459,2},{0x445b,3}}, + {{0x1715c,3},{0xe5e9,3}}, {{0x2ba5,1},{0xe0a,1}}, {{0x12e5,5},{0xe22,2}}, {{0x181b,3},{0xe67,2}}, + {{0x81a5,6},{0x14f9,3}}, {{0x1e84a,5},{0xf91,3}}, {{0x1150,2},{0xf86,3}}, {{0xe5b,3},{0xcb53,6}}, + {{0xf15,1},{0x4cc2,3}}, {{0xe1f,3},{0xcb8,1}}, {{0xe11,1},{0x16ad,3}}, {{0x1cdad,5},{0xebb,3}}, + {{0x39b9,4},{0x9a7,2}}, {{0xb379,3},{0x8,1}}, {{0xf22,2},{0x4516,3}}, {{0xf59,2},{0x2b89,3}}, + {{0x6234,8},{0x4eb0,4}}, {{0x1d18,5},{0xabff,4}}, {{0x14248,7},{0xebc,2}}, {{0xee4,4},{0x5e50,2}}, + {{0x11142,6},{0xe77,3}}, {{0x5,1},{0xcb8,1}}, {{0x666,2},{0x9f,1}}, {{0xebe,5},{0x122d,8}}, + {{0xe1f,3},{0xe67,3}}, {{0x1f15c,5},{0x121a6,4}}, {{0x1182d,6},{0x3c8b,3}}, {{0x1290,4},{0xf24,2}}, + {{0x30f75,4},{0xbb6,2}}, {{0x41df,7},{0x2f2e,3}}, {{0x9a41,5},{0xc5e0,4}}, {{0xbb1d,4},{0x1189,3}}, + {{0x19b7,3},{0x190e6,3}}, {{0xd131,4},{0xcbac,5}}, {{0x78f9,6},{0x78f9,6}}, {{0xe7a,1},{0xede,1}}, + {{0x29513,6},{0xe0a,1}}, {{0xf0a,3},{0xf277,4}}, {{0x34b1,10},{0x1663,4}}, {{0x62dd,4},{0x809a,3}}, + {{0x2de75,4},{0xe,1}}, {{0x5128,3},{0x1054,3}}, {{0x1467,6},{0x11dc,4}}, {{0x10a,2},{0xf,1}}, + {{0x2b0a8,4},{0xc78,2}}, {{0x7ad9,6},{0xfdd,6}}, {{0x10432,5},{0x1b4f,5}}, {{0x4773,4},{0xf20,2}}, + {{0xef7,3},{0x2f41,5}}, {{0x181ec,6},{0x2dd7,4}}, {{0xcbf,2},{0xed9,2}}, {{0x12e5,3},{0xeea,3}}, + {{0x46af,3},{0x1ee0,3}}, {{0x24f2,5},{0x120b,4}}, {{0x1969,1},{0xf1f,3}}, {{0x1f93c,5},{0x22a3,2}}, + {{0x11187,2},{0x1a66,1}}, {{0x4952,6},{0x4958,7}}, {{0x113f,2},{0x23d2,3}}, {{0x1819,5},{0x2c6a,5}}, + {{0x73d3,5},{0xf1a,2}}, {{0x4765,3},{0xcce,3}}, {{0xf4f,1},{0xefa,6}}, {{0xe11,2},{0x4251,3}}, + {{0x113e,3},{0x8459,4}}, {{0xc2,2},{0xd,1}}, {{0x450b,4},{0x11b5,2}}, {{0x9a8,1},{0xb37c,3}}, + {{0x4853,3},{0xf86,2}}, {{0xb199,5},{0xec6,3}}, {{0x4597,5},{0x4799,4}}, {{0x181ec,6},{0xec6,3}}, + {{0x4e8d,7},{0x18b2,5}}, {{0xeb9,3},{0x13e3,4}}, {{0x1724a,6},{0x4b12,4}}, {{0xb,1},{0x2ce9,4}}, + {{0xe3d,6},{0xe55,6}}, {{0xe99,2},{0xe0d,2}}, {{0xe08,1},{0x26246,5}}, {{0x7108,5},{0x10b9,2}}, + {{0xe11,2},{0x5538,2}}, {{0x3dd3,6},{0x31d1,8}}, {{0x699,2},{0x57,1}}, {{0xb3f3,3},{0x239e,3}}, + {{0x186d8,8},{0xed6,2}}, {{0x1118f,6},{0x11195,5}}, {{0xf0f,2},{0x185d,2}}, {{0xde8e,4},{0xb1d0,5}}, + {{0x113c,3},{0x2e2c,3}}, {{0x29fc,5},{0xeb5,3}}, {{0x1ebe,4},{0x32cd,8}}, {{0x551a,7},{0xe67,2}}, + {{0x8,1},{0x413d,5}}, {{0x8ccd,6},{0xda48,5}}, {{0x13f00,6},{0xeed,4}}, {{0xcc1,1},{0x268b5,4}}, + {{0x10a3,3},{0x6895,5}}, {{0xae99,7},{0x1e5e,4}}, {{0x78ed,2},{0x2d843,2}}, {{0x2f71,7},{0x2f78,7}}, + {{0x2b0d8,6},{0x2b0d8,6}}, {{0x125d,5},{0x1150,2}}, {{0x29c0,7},{0xe67,2}}, {{0xf1d,2},{0xe5e,2}}, + {{0x392d,10},{0x1663,4}}, {{0x11e4b,3},{0x1692,2}}, {{0x1e9e,4},{0xe5e,2}}, {{0x2e563,3},{0xf80,2}}, + {{0x6dfe,3},{0x3,1}}, {{0xfcb,2},{0x2781,5}}, {{0xe97,3},{0x1eea1,2}}, {{0x1969,1},{0xe71,1}}, + {{0xd5d5,6},{0xe0b,4}}, {{0x113e1,5},{0xf18,2}}, {{0xf89,3},{0x1a79b,5}}, {{0xae5d,7},{0x7e10,5}}, + {{0x9a6,1},{0xed9,2}}, {{0xb3f1,3},{0x12b4,3}}, {{0x4765,3},{0x7417,4}}, {{0x5bc,2},{0x57,1}}, + {{0x4853,3},{0x168d9,7}}, {{0xfa5,2},{0xec7,2}}, {{0x1567,6},{0xcbd,4}}, {{0x4837,7},{0x1024,7}}, + {{0x5d54,5},{0xae95,4}}, {{0x16a7,3},{0x10e3,4}}, {{0xe37,4},{0xc27f,2}}, {{0x3027,9},{0x1ac7,3}}, + {{0x3a1b,6},{0x1244,7}}, {{0x1f38,1},{0x22a3,2}}, {{0x1d7e,3},{0x1025,1}}, {{0xe71,1},{0x2252,3}}, + {{0xef7,4},{0xb068,5}}, {{0x204e1,2},{0x204e3,6}}, {{0xf0a,3},{0x46bf,1}}, {{0x7414,3},{0xcb8,1}}, + {{0xe0f,2},{0xe2b,2}}, {{0x9a6,1},{0x1a58,3}}, {{0x29c0,3},{0xe89,2}}, {{0x46af,3},{0x569b,3}}, + {{0x2917e,6},{0xe11,1}}, {{0x30118,4},{0x21,1}}, {{0xb985,5},{0x189f,3}}, {{0x333c,5},{0xfdf,4}}, + {{0xf65,5},{0x1780,3}}, {{0x1166d,4},{0x11671,4}}, {{0x1dbd,10},{0x10f4,4}}, {{0x2a56,4},{0x41e9,4}}, + {{0x2a83,4},{0x2,1}}, {{0x121e6,7},{0xf62,3}}, {{0x27e0,4},{0x1bec7,5}}, {{0x18c78,6},{0x18c88,4}}, + {{0x18fc2,3},{0x1b9c,5}}, {{0xeca,3},{0xe0b,4}}, {{0x1156,3},{0xfdd,6}}, {{0x12e5,3},{0x16537,5}}, + {{0x4765,3},{0x17c0,2}}, {{0x2006,3},{0x155b,4}}, {{0x173ee,7},{0xec6,3}}, {{0x1bb0,6},{0xed6,2}}, + {{0xcfc6,6},{0xec6,3}}, {{0x1fd7d,6},{0x1040,3}}, {{0xe,1},{0xf8,2}}, {{0xcc8,1},{0xeca,3}}, + {{0xe5b,3},{0x15284,4}}, {{0x1b773,6},{0x18b4,3}}, {{0x1927,4},{0x4921,4}}, {{0x19b7,3},{0xef08,6}}, + {{0x1e576,3},{0xe33,1}}, {{0x113c,4},{0xcc8,1}}, {{0x4781,3},{0x18772,2}}, {{0xcc7,1},{0xab9f,3}}, + {{0x1e9e,4},{0x13195,5}}, {{0x1a66,1},{0xe2b,2}}, {{0x8f19,8},{0xf7a,2}}, {{0x248eb,6},{0xcd3,1}}, + {{0xe1f,3},{0x214bc,4}}, {{0x189b,4},{0x1380,5}}, {{0x5724,3},{0x59b4,3}}, {{0x20389,2},{0x3,1}}, + {{0x1d63,4},{0x9a8,2}}, {{0x12f8,2},{0xc6dc,5}}, {{0xc88e,6},{0xc894,5}}, {{0x2ba5,1},{0x20bfd,4}}, + {{0x29c0,3},{0x400a,2}}, {{0x2e79e,4},{0x18ee2,2}}, {{0x21c8,10},{0x2177,5}}, {{0x18610,5},{0x1f83c,4}}, + {{0xab1,1},{0x1307,1}}, {{0x9999,10},{0xe95,2}}, {{0x167c8,7},{0xe11,1}}, {{0x4853,3},{0x4ef1,4}}, + {{0x77bc,4},{0xe25,2}}, {{0x1882e,4},{0x16008,4}}, {{0x1c91,6},{0x1177,7}}, {{0x1db45,2},{0x442d,1}}, + {{0x9b85,5},{0x19583,3}}, {{0xcc9,2},{0xa,2}}, {{0x216e,6},{0x11d9,3}}, {{0x46af,3},{0xed6,2}}, + {{0xb3f1,3},{0x4618,3}}, {{0x7e2d,7},{0xa,2}}, {{0x2a47,3},{0x17661,2}}, {{0x12d4,3},{0xf59,2}}, + {{0x106c6,8},{0xcce,2}}, {{0xf0c,1},{0xeee,3}}, {{0x4765,3},{0x77bf,4}}, {{0x6cc8,3},{0xfdd,4}}, + {{0xfdf,3},{0x73d6,2}}, {{0x2f9b,4},{0xccd,1}}, {{0x6ee8,3},{0x6,1}}, {{0x1927,4},{0x4e43,4}}, + {{0x1140,2},{0x7974,4}}, {{0x229a,7},{0x1ea3,3}}, {{0x9cbd,7},{0x1040,3}}, {{0x1f8e,7},{0x1702,4}}, + {{0x4519,4},{0x19faa,5}}, {{0x12c3,4},{0x8f1c,5}}, {{0xa01d,7},{0xe69,5}}, {{0x11ceb,3},{0x2236,3}}, + {{0x1ebc,5},{0x29f3,3}}, {{0xaebd,5},{0x2c15,3}}, {{0x2e79e,4},{0x2b0dc,2}}, {{0x125d,6},{0x181b,3}}, + {{0x6f1a,5},{0x16da9,5}}, {{0xbb4,4},{0x2afe0,2}}, {{0x24d5e,2},{0x28caa,3}}, {{0xfff,3},{0x2dc6,4}}, + {{0x1367,3},{0x2bad,4}}, {{0x18fc2,3},{0xf9d,3}}, {{0x1a1f8,5},{0xcc8,3}}, {{0x2588b,6},{0xed6,2}}, + {{0xb979,7},{0x6cc6,5}}, {{0x25533,5},{0x156a,3}}, {{0x354b,4},{0xf1a,2}}, {{0xbc91,6},{0xec6,3}}, + {{0x2a922,5},{0xcc8,1}}, {{0xfb8,3},{0xcc5,3}}, {{0x4f77,8},{0xcce,2}}, {{0x4853,3},{0xcc91,4}}, + {{0xe86,2},{0x1523,4}}, {{0x2a47,3},{0x9,1}}, {{0x4aff,5},{0xe8a,2}}, {{0xe6f,3},{0x4928,3}}, + {{0x1a17,5},{0x1a58,3}}, {{0x1de2a,7},{0xe22,2}}, {{0xd13c,6},{0x6452,4}}, {{0x29cf,3},{0xeee,3}}, + {{0x7ff5,8},{0x1663,4}}, {{0x18f0e,5},{0x18f13,4}}, {{0x1081,4},{0x7b24,4}}, {{0x2df3b,4},{0x10a,2}}, + {{0xcce,2},{0xe22,2}}, {{0x1a07,5},{0x183c,4}}, {{0xe6f,3},{0x150e7,7}}, {{0x42b1,7},{0xfa5,4}}, + {{0x1e62,4},{0x7e9d,3}}, {{0x2f9b,4},{0x1a13f,5}}, {{0x1daa6,5},{0x1c2a,4}}, {{0xfcb,2},{0xe7f,2}}, + {{0x7e99,6},{0xcc9,2}}, {{0x1ff7,3},{0x121ad,5}}, {{0x1648a,7},{0xed6,2}}, {{0xf31,2},{0x12e56,5}}, + {{0x1467,4},{0xed7d,5}}, {{0xe32,1},{0x109b,2}}, {{0x1917,4},{0xf8f,4}}, {{0x1a07,3},{0xcd3,2}}, + {{0x201d0,5},{0xfe6,2}}, {{0xe83,5},{0x1539,4}}, {{0x11817,7},{0x1773,4}}, {{0x18552,7},{0x1214,3}}, + {{0x5e3e,5},{0x11d9,3}}, {{0x7305,3},{0x17ec,4}}, {{0x9a7d,6},{0x5dd0,6}}, {{0x127f,3},{0xeb5,2}}, + {{0x18dea,5},{0xe22,2}}, {{0x28fdf,2},{0xedd,1}}, {{0x187a0,7},{0xec6,3}}, {{0x6cc,2},{0x57,1}}, + {{0x1677,3},{0x1099,4}}, {{0x1e5a7,6},{0x3075,3}}, {{0x750b,4},{0xf7a,2}}, {{0x1230,4},{0xb,1}}, + {{0x5bc,2},{0xe,1}}, {{0x2b0a8,4},{0xc273,2}}, {{0x248bb,5},{0x17d56,3}}, {{0x1847,5},{0xa,2}}, + {{0x2a47,3},{0x18588,6}}, {{0x7b51,4},{0xe89,2}}, {{0x7122,5},{0xccd,1}}, {{0x1969,1},{0x111d,4}}, + {{0x18f7,4},{0xa84b,5}}, {{0x12d4,3},{0x78ed,2}}, {{0xbb35,5},{0xef5,2}}, {{0x16950,3},{0x17c0,2}}, + {{0x6678,9},{0xcce,2}}, {{0xe21,1},{0x7d1f,3}}, {{0x127e0,5},{0x2075,3}}, {{0x27e0,3},{0x133c4,6}}, + {{0x5,1},{0x59b2,5}}, {{0x1503a,7},{0xec6,3}}, {{0x229eb,6},{0x1c215,2}}, {{0x6f1a,5},{0xd3eb,5}}, + {{0xc14,3},{0x2e27d,1}}, {{0x2,2},{0xcd1,2}}, {{0x666,2},{0xf,1}}, {{0x12f6,4},{0xf1f,3}}, + {{0xe97,3},{0x31f8,3}}, {{0x2600,10},{0xe69,5}}, {{0x478f,3},{0x18429,7}}, {{0x4e60,2},{0x7974,4}}, + {{0x164b,2},{0x101f,2}}, {{0xcc1,2},{0x1d06,3}}, {{0x17df0,5},{0xcd3,2}}, {{0x29c15,5},{0xf1a,2}}, + {{0xb8df,3},{0xe31,2}}, {{0x17acb,2},{0x1db3b,2}}, {{0x2f8d,9},{0xe95,2}}, {{0x169d,3},{0xcc9,2}}, + {{0x56,2},{0x69,1}}, {{0x2df3b,4},{0x260,2}}, {{0xed1,3},{0x3fd0,4}}, {{0xebe,4},{0x132f0,6}}, + {{0x7aa9,6},{0x5782,6}}, {{0x268b4,5},{0x12b5,2}}, {{0x130be,6},{0x12a9,3}}, {{0x1208,4},{0x10f5,3}}, + {{0x70ad,3},{0x1780,3}}, {{0x1d0f,3},{0xe11,2}}, {{0x6c42,5},{0xad36,4}}, {{0x2ad94,4},{0x2ad98,3}}, + {{0x3ff5,11},{0xcc9,2}}, {{0x2b4fe,2},{0x789d,2}}, {{0x1085,3},{0x568e,5}}, {{0xa9c5,9},{0x1054,3}}, + {{0x1830,3},{0xec3,3}}, {{0x13d48,9},{0xe11,1}}, {{0x478f,7},{0x5edc,4}}, {{0xf5b,2},{0xcc8,1}}, + {{0x1587,4},{0x9139,8}}, {{0x17f9e,5},{0x587c,5}}, {{0x11eee,5},{0xe0d,2}}, {{0xcb8,1},{0x155b,3}}, + {{0x4af2,7},{0xe11,1}}, {{0x20f6,5},{0x34d7,4}}, {{0xbfe5,4},{0x12b5,2}}, {{0xe7f,2},{0xe0b,4}}, + {{0x5bc,2},{0x7b,1}}, {{0x72cf,4},{0x566f,4}}, {{0x2e193,4},{0x3be,2}}, {{0x13406,7},{0xf62,3}}, + {{0x1b30e,5},{0x2477,3}}, {{0x9a8,1},{0xcf04,3}}, {{0xe6f,3},{0x6,1}}, {{0x12d4,3},{0x1859,3}}, + {{0x10efb,5},{0xcc6,2}}, {{0xcf2c,8},{0xe0a,1}}, {{0xc015,4},{0x44ad,3}}, {{0xccd,1},{0xcddd,5}}, + {{0x1367,6},{0x11d9,3}}, {{0xf89,3},{0x1722,5}}, {{0xe25,2},{0x127c,3}}, {{0x10efb,5},{0x15e9,3}}, + {{0x7414,3},{0xcbf,2}}, {{0x127f,4},{0xa0cc,5}}, {{0x1807,6},{0x8937,6}}, {{0x11c4,10},{0x11ce,7}}, + {{0x162e6,7},{0xe6b,3}}, {{0xf11,1},{0x4784,4}}, {{0xcc8,1},{0x20bed,4}}, {{0xc26f,2},{0xbb6,2}}, + {{0x9,1},{0x8,2}}, {{0x1e9e,5},{0x55e2,8}}, {{0x4a34,4},{0xe0b,4}}, {{0x1e62,4},{0x208f,6}}, + {{0x1219,6},{0xf24,2}}, {{0x101f,2},{0xcd3,1}}, {{0x7ea5,7},{0x395e,5}}, {{0xbdf9,5},{0x1c7f,3}}, + {{0x9d05,8},{0xec5,4}}, {{0xef0e,7},{0x1663,4}}, {{0x30817,4},{0x11840,2}}, {{0xe0a,1},{0x2f2e,3}}, + {{0xcbd,1},{0x1b3d7,6}}, {{0x6cc4,4},{0x2f79,5}}, {{0x11eee,5},{0x43c0,4}}, {{0xe97,4},{0x4b11,5}}, + {{0x46af,3},{0xe77,2}}, {{0x1f3ff,6},{0x1f405,3}}, {{0x11a55,7},{0x1c8a,4}}, {{0x74f6,2},{0x4461,2}}, + {{0x29a2,6},{0xf86,3}}, {{0x1e44,8},{0x14f0,7}}, {{0x10e1f,4},{0x113f,2}}, {{0xe21,1},{0x2c85,2}}, + {{0x18908,6},{0x1e40,4}}, {{0x5b4c,7},{0x21c2,6}}, {{0x1019,4},{0x296e,4}}, {{0x965d,8},{0xfbb,4}}, + {{0x12c3,4},{0x8845,4}}, {{0x145fe,7},{0xc541,3}}, {{0x6ceb,7},{0x4788,6}}, {{0x1ed90,6},{0xb,1}}, + {{0x73ed,4},{0x5e50,2}}, {{0x1e08,5},{0x6e44,6}}, {{0xf0a,3},{0x30ad,6}}, {{0x17812,5},{0x310c,4}}, + {{0x5,2},{0x3,1}}, {{0x9a8,1},{0x122d,2}}, {{0x281c,8},{0x2833,7}}, {{0x1967,3},{0x1ea72,2}}, + {{0xfb0,3},{0xfdd,4}}, {{0xf604,6},{0xcc3,2}}, {{0x16476,6},{0xec5,4}}, {{0x2e28f,4},{0x2e293,2}}, + {{0x145e,7},{0xe6b,3}}, {{0x3097,7},{0xe92,3}}, {{0x24e3,5},{0xa592,4}}, {{0x41b5,5},{0xe31,2}}, + {{0x19b7,3},{0x20be5,4}}, {{0x1a27,4},{0x115a,3}}, {{0x1025,1},{0x15e9,3}}, {{0x2f8d,10},{0x1d05,4}}, + {{0x2de81,4},{0xf,1}}, {{0x1789,4},{0x101f,3}}, {{0x1de7,3},{0x6,1}}, {{0x7b,1},{0x545,2}}, + {{0xcc1,1},{0x4bff,4}}, {{0x12df2,3},{0xf62,3}}, {{0x2df3b,4},{0x206,2}}, {{0x6cde,4},{0x51c8,5}}, + {{0x28d0,4},{0x19473,5}}, {{0x2ba5,1},{0xe592,7}}, {{0x9e,2},{0x8d,1}}, {{0x6cde,4},{0x5eaf,4}}, + {{0x12f6,4},{0xc6dc,5}}, {{0xe2f,1},{0x16fff,3}}, {{0x2240,4},{0x1ec5,3}}, {{0x11b8b,5},{0xec6,3}}, + {{0x1e9e,5},{0x3144,5}}, {{0xc9ac,7},{0x126a,4}}, {{0x1ebf,3},{0x2,1}}, {{0x9d11,7},{0x3acb,5}}, + {{0x10f48,7},{0x7,2}}, {{0x11b5,2},{0xe88,3}}, {{0xe33,1},{0x2f1ca,2}}, {{0x17ec2,5},{0x1214,3}}, + {{0x11adb,3},{0xd885,5}}, {{0x2150,8},{0x1c88,7}}, {{0x17ac6,5},{0x17acb,2}}, {{0x2faa1,4},{0x1057,1}}, + {{0x12e5,3},{0x2b83,2}}, {{0x1c91,4},{0xcb7,2}}, {{0x1159,4},{0xed6,2}}, {{0xcc7,1},{0x2ba5,1}}, + {{0x9a4,3},{0x122d,2}}, {{0x9a8,1},{0x8344,5}}, {{0x2de7b,4},{0x9f,1}}, {{0xe09,1},{0xeca,3}}, + {{0x2e870,3},{0x2e27d,1}}, {{0x4597,5},{0x13b1d,5}}, {{0x236c,4},{0x53da,4}}, {{0x4f36,9},{0x126a,4}}, + {{0x1ac3c,6},{0xec6,3}}, {{0x1bec,7},{0xf6e,7}}, {{0x8bb9,7},{0x34d7,4}}, {{0xd4d8,6},{0x137f4,4}}, + {{0x4618,3},{0xcc8,1}}, {{0x246a5,3},{0xe0a,1}}, {{0x112b,6},{0x538d,7}}, {{0x185ea,3},{0x156a,3}}, + {{0x70ad,3},{0x2f33,5}}, {{0x20579,1},{0x307bb,1}}, {{0x29a19,2},{0x1debc,2}}, {{0xf89,3},{0xa2f3,5}}, + {{0x1fbe8,6},{0x66c2,3}}, {{0x3739,2},{0xf16,2}}, {{0x1e53,12},{0xed6,2}}, {{0xcc1,1},{0xa317,6}}, + {{0x712f,4},{0x1510,4}}, {{0x4385,3},{0x1f3f3,3}}, {{0xe,1},{0x152,2}}, {{0x171d2,6},{0xfcd,4}}, + {{0x2a023,5},{0xe89,2}}, {{0xb987,3},{0xe86,2}}, {{0xb0,2},{0xf,1}}, {{0x3ff5,6},{0x8,1}}, + {{0xe97,3},{0x11ca,2}}, {{0x4979,6},{0x1024,7}}, {{0x21dbb,7},{0x6,1}}, {{0xbdb1,5},{0xe11,1}}, + {{0x2fb9,3},{0x2468,3}}, {{0xccd,1},{0x16c4c,4}}, {{0x3a1b,6},{0x15298,4}}, {{0x6bc0,7},{0x6bd4,5}}, + {{0x7a,2},{0x8d,1}}, {{0xf93d,8},{0xe77,3}}, {{0x177ea,6},{0xc3d0,3}}, {{0x4589,5},{0x29e0,3}}, + {{0x205c9,5},{0x5edd,3}}, {{0xcbd,1},{0x1bf0,2}}, {{0x464d,5},{0x15316,4}}, {{0x24bdf,2},{0xedd,1}}, + {{0x29a8d,6},{0xe0a,1}}, {{0x23b7,11},{0xcce,2}}, {{0xd029,8},{0xe11,1}}, {{0x9e6d,9},{0xe11,1}}, + {{0x2b84,2},{0xe22,2}}, {{0x105f,3},{0x4971,8}}, {{0x11d5,5},{0xddb9,4}}, {{0x81a5,6},{0x1f2c,6}}, + {{0xb559,6},{0xe11,1}}, {{0x19b7,3},{0xdb73,3}}, {{0x9a8,1},{0x3642,2}}, {{0x18772,2},{0x19b9,1}}, + {{0xc2,2},{0x21,1}}, {{0x16322,6},{0x2872,4}}, {{0x26d2,12},{0x1be9,3}}, {{0xf0a,3},{0x1d550,4}}, + {{0x1a63,3},{0xe0a,1}}, {{0x9219,5},{0x1150,2}}, {{0x6e09,7},{0x2663,5}}, {{0x2a83,4},{0xe75,2}}, + {{0x9,1},{0x1054a,5}}, {{0x14a7,4},{0x11db,3}}, {{0x2de7b,3},{0x578,2}}, {{0x3131,7},{0x4d83,6}}, + {{0x1c91,4},{0xa318,5}}, {{0x6d94,8},{0x12be,5}}, {{0x1607a,6},{0xcc9,2}}, {{0x2ba5,1},{0x10d9,2}}, + {{0x478f,3},{0x9bd1,3}}, {{0x9a8,1},{0xeb4,3}}, {{0x3203,7},{0x3ba5,4}}, {{0x19b7,3},{0xf16,2}}, + {{0x1a909,6},{0xcc9,2}}, {{0x7414,3},{0x1b5c6,5}}, {{0x1817,4},{0xf70,2}}, {{0xef7,3},{0x1fbe,3}}, + {{0x127f,4},{0x1d67b,5}}, {{0x2b84,2},{0x1089,3}}, {{0xcc6,2},{0x320c,4}}, {{0x11e54,7},{0xcbef,4}}, + {{0x1062,2},{0xcd3,1}}, {{0x8,1},{0x1d7e,3}}, {{0x46bf,1},{0x46bf,1}}, {{0xe32,1},{0x1025,1}}, + {{0xb87f,4},{0xe69,5}}, {{0xf0a,3},{0xf1f,3}}, {{0x9e,2},{0xe,1}}, {{0x11704,8},{0x781c,3}}, + {{0xe21,1},{0xe92,3}}, {{0x11d5,5},{0x6443,6}}, {{0x9a8,1},{0x7955,4}}, {{0x486f,6},{0x185d,2}}, + {{0x5,2},{0x9a8,1}}, {{0x29cf,3},{0xf35,2}}, {{0x2de93,4},{0x152,2}}, {{0x1f07,4},{0x219c5,4}}, + {{0xa2f9,7},{0x6a0f,4}}, {{0x4773,6},{0x3995,8}}, {{0xf0c,1},{0x73d6,2}}, {{0x111a,3},{0x4fa8,3}}, + {{0x57,1},{0x48a,2}}, {{0x29cf,3},{0x5988,3}}, {{0x1bdac,7},{0xcc9,2}}, {{0xda8f,8},{0x14a2,3}}, + {{0x12e5,5},{0x2560,4}}, {{0xcc5,2},{0x30f7,2}}, {{0xfe3,4},{0xe0b,2}}, {{0x2e269,2},{0x205a1,1}}, + {{0x2ced,5},{0x2c21,4}}, {{0xf77,3},{0x104a,3}}, {{0xa04d,7},{0x1722,5}}, {{0x7a01,5},{0x5,1}}, + {{0x33fb,5},{0xe11,1}}, {{0x1ff7,3},{0x116db,4}}, {{0xb51d,5},{0x12b37,5}}, {{0x11e28,6},{0x11e2e,5}}, + {{0x1969,2},{0x4ef1,4}}, {{0x1467,5},{0x2ca3,4}}, {{0x10e2a,4},{0xf24,2}}, {{0x2de93,4},{0x666,2}}, + {{0x2df3b,4},{0x1bd,2}}, {{0x72cf,4},{0x2801,3}}, {{0xc159,4},{0x9a4,3}}, {{0x114d,4},{0x6ca7,3}}, + {{0x68,2},{0x7b,1}}, {{0x10c5,4},{0xfa0,3}}, {{0x28b42,4},{0xefa,2}}, {{0x11491,6},{0x11284,5}}, + {{0x25613,5},{0x10d3,3}}, {{0xcbf,2},{0xe78,1}}, {{0x29c0,4},{0xc39f,4}}, {{0x28d0,4},{0x1314f,3}}, + {{0x27e0,3},{0x223c6,5}}, {{0x488b,4},{0x1859,4}}, {{0x1bef,2},{0x23f0f,4}}, {{0x10e8d,5},{0x1b41,4}}, + {{0x9a8,1},{0x2d1f,6}}, {{0x17af8,8},{0xed9,2}}, {{0x2aa09,5},{0xeb5,2}}, {{0x11187,2},{0x1debd,2}}, + {{0x4f36,5},{0xcf47,6}}, {{0x65f6,8},{0xe92,3}}, {{0xf16,2},{0xc992,4}}, {{0x205a5,1},{0x1327,1}}, + {{0x91f5,5},{0x1d74,4}}, {{0xb51d,5},{0x43fc,2}}, {{0xf77,4},{0x184d,6}}, {{0x10d8,3},{0x10db,7}}, + {{0x46af,3},{0x10b7,2}}, {{0xbc0d,5},{0x17b0,3}}, {{0xa5c9,9},{0x15e9,3}}, {{0xb3f1,3},{0x1118a,2}}, + {{0xec3,3},{0xe1c,3}}, {{0x159cc,7},{0xec6,3}}, {{0x4853,7},{0x41bc,7}}, {{0x4c03,5},{0x1054a,5}}, + {{0xf0a,3},{0x104c,2}}, {{0x440f,9},{0x1722,5}}, {{0x647d,8},{0xe11,1}}, {{0xf02,2},{0x1b80,3}}, + {{0xcc8,1},{0x810e,3}}, {{0x9a6,1},{0x17df,7}}, {{0x566c,6},{0x1392,5}}, {{0xe21,1},{0xe28,3}}, + {{0x3185,9},{0xe6b,4}}, {{0xe6f,3},{0xf16,2}}, {{0x1367,4},{0xec3,3}}, {{0x10a3,3},{0x4516,3}}, + {{0x1647,5},{0x37ba,7}}, {{0xbec5,6},{0xed6,3}}, {{0x773a,5},{0x45e3,4}}, {{0x94b9,5},{0xe09,1}}, + {{0xad19,6},{0x3075,3}}, {{0x2247,5},{0x14a2,3}}, {{0x1ffa,3},{0xed6,2}}, {{0x14ebe,8},{0xe95,2}}, + {{0x3737,7},{0x1702,5}}, {{0x7305,3},{0x3294,8}}, {{0xf4f,1},{0xe11,1}}, {{0x1510,4},{0x2236,3}}, + {{0x2bb4,2},{0x1692,3}}, {{0x111a,3},{0x5585,5}}, {{0x1647,5},{0x278f,6}}, {{0x8c79,5},{0x9a6,1}}, + {{0xb379,3},{0x1c79,2}}, {{0x566c,6},{0xef5,2}}, {{0xe83,3},{0x15e93,3}}, {{0xfe8,2},{0x6,1}}, + {{0xaf4,8},{0xaf4,3}}, {{0x20f6,5},{0x2146,3}}, {{0x479d,7},{0x3aae,7}}, {{0x114e9,4},{0x15ec,3}}, + {{0x15fb,3},{0xcce,2}}, {{0xcc8,1},{0x18b4,3}}, {{0x82b9,6},{0xf91,3}}, {{0x120f,3},{0xd954,3}}, + {{0x10a3,3},{0x1b6d,4}}, {{0x27ef,5},{0x1c85,3}}, {{0x46bd,3},{0x7d4d,4}}, {{0xa065,10},{0xcc9,2}}, + {{0x2f71,4},{0x1314e,4}}, {{0x445e,2},{0xe99,1}}, {{0x4767,1},{0xe19,1}}, {{0x2f71,4},{0x2e32,3}}, + {{0x1977,3},{0x2d3ab,2}}, {{0x1c91,4},{0x3fd0,4}}, {{0xd189,7},{0xe2b,2}}, {{0x94a4,5},{0x7a14,4}}, + {{0x2ba5,1},{0xcd3,1}}, {{0x1bec,5},{0x1c1b,6}}, {{0x4519,4},{0xfb0,2}}, {{0x1e3a6,5},{0x10d3,3}}, + {{0x4765,3},{0xccc,2}}, {{0x4853,4},{0x181b,3}}, {{0xe11,1},{0x4ddb,2}}, {{0x6275,6},{0x2e8b,6}}, + {{0x10c5,4},{0x25d9,5}}, {{0xb3f1,3},{0x74f9,2}}, {{0xb985,4},{0xe22,2}}, {{0x1007,7},{0x6894,5}}, + {{0x1877,10},{0x13e3,4}}, {{0x111a,3},{0xf7a,2}}, {{0x1a07,3},{0x1e57e,2}}, {{0x5,1},{0x9fb7,6}}, + {{0x2de63,4},{0xe,1}}, {{0x56,2},{0x21,1}}, {{0x1627,14},{0xe11,1}}, {{0x29f3,3},{0xe09,1}}, + {{0x1cdc,10},{0x1ce6,5}}, {{0x73ed,4},{0x44b3,3}}, {{0x1a1a7,5},{0xf7a,2}}, {{0xa599,9},{0x1392,3}}, + {{0x27d1,10},{0x27db,5}}, {{0x17ca6,5},{0xdd0a,3}}, {{0x479d,5},{0x8,1}}, {{0x13f7,11},{0xec6,3}}, + {{0xfdf,3},{0xe7d,2}}, {{0x1a318,6},{0xec6,3}}, {{0xf0c,1},{0x1e2d1,6}}, {{0x133ac,8},{0xe95,2}}, + {{0x2c565,5},{0xe11,1}}, {{0x29cf,3},{0x445b,2}}, {{0x3123,6},{0x4e39,6}}, {{0x91b9,6},{0x1702,4}}, + {{0x2dadf,5},{0xe11,1}}, {{0x106b5,2},{0xb,1}}, {{0x263bb,6},{0xcc3,2}}, {{0xf9ab,9},{0xe95,2}}, + {{0x450b,4},{0xe09,1}}, {{0x15399,2},{0xee9,2}}, {{0xe7d,2},{0x1b41,4}}, {{0xb8c5,4},{0xe11,2}}, + {{0xe33,1},{0x17b73,7}}, {{0xf77,4},{0xe7f,3}}, {{0x5f83,6},{0x1267,4}}, {{0x1a66,1},{0x3642,2}}, + {{0xcd3,2},{0xfdd,4}}, {{0xb,1},{0x6,2}}, {{0x836d,6},{0x3075,4}}, {{0xbc79,4},{0x6,1}}, + {{0x2a47,3},{0x48d2,2}}, {{0x46bd,3},{0xe19,1}}, {{0x4665,4},{0xf91,3}}, {{0x1487,4},{0x78d1,4}}, + {{0x1941,3},{0xf86,2}}, {{0x1081,7},{0x14ab,4}}, {{0x14112,5},{0x3933,4}}, {{0x5f01,6},{0xeb5,2}}, + {{0x7414,3},{0xe25,2}}, {{0x11656,3},{0x310f,6}}, {{0x62f7,7},{0xfdd,6}}, {{0xbb35,5},{0x1944,3}}, + {{0x18ecc,2},{0x30391,2}}, {{0x18d2c,7},{0xf35,2}}, {{0xe5e,2},{0x15e9,3}}, {{0x2271,3},{0x7,2}}, + {{0x111a,3},{0x308f,3}}, {{0x2f577,4},{0xe11,1}}, {{0x26ba,3},{0xe2b,2}}, {{0x2bd5,4},{0x2075,3}}, + {{0x1487,4},{0x3ce0,5}}, {{0xccd,1},{0x30f5,4}}, {{0xf11,4},{0xa,2}}, {{0xbded,4},{0xe0b,2}}, + {{0xec3,3},{0xcce,2}}, {{0xe1f,3},{0x1805f,2}}, {{0x30e73,3},{0x2e292,1}}, {{0xe71,1},{0x2651,7}}, + {{0xe634,7},{0xec3,3}}, {{0x1518e,5},{0xe0c,3}}, {{0xacdd,6},{0xe71,1}}, {{0x1647,5},{0x2664,5}}, + {{0x1a66,1},{0x155e,3}}, {{0x18430,6},{0x153ce,4}}, {{0xbccd,4},{0x18588,6}}, {{0xbb4,2},{0x3082b,2}}, + {{0x2f71,4},{0x716c,4}}, {{0x1240,2},{0xe0b,2}}, {{0xccb9,5},{0x9a4,3}}, {{0x2f5f4,4},{0xede,1}}, + {{0xe0b,2},{0xe8c,6}}, {{0xc1d3,2},{0x1569,3}}, {{0x2a67,3},{0xebb,3}}, {{0x5536,4},{0xf91,3}}, + {{0x17f7,6},{0x2178,5}}, {{0x1062,2},{0x1783,4}}, {{0x5f01,9},{0xeed,4}}, {{0x625b,7},{0x60b5,6}}, + {{0x70ad,3},{0x1912d,6}}, {{0x1677,4},{0xeb5,2}}, {{0x2de3f,3},{0x20561,1}}, {{0x12fe,2},{0xa,2}}, + {{0x4161,5},{0x4b12,4}}, {{0x46bd,3},{0x1efee,6}}, {{0x123da,8},{0x8,1}}, {{0x1c46,8},{0x1663,3}}, + {{0x18282,6},{0x4415,3}}, {{0x5b32,8},{0x2c6a,5}}, {{0xc1d1,4},{0xe5d8,4}}, {{0x391f,5},{0x152f,8}}, + {{0xccd,1},{0xe1fa,4}}, {{0x5bc,2},{0x9f,1}}, {{0x18a70,6},{0x23e99,2}}, {{0xf31,3},{0x146c,5}}, + {{0x2240,4},{0xcc9,2}}, {{0x12e5,3},{0x1debd,2}}, {{0x117eb,5},{0x5342,3}}, {{0x19b9,1},{0xf86,2}}, + {{0x10a36,6},{0x23df,5}}, {{0x1722c,6},{0x1ea3,3}}, {{0xe97,4},{0x1297e,6}}, {{0x70ad,3},{0x181b,3}}, + {{0x1f38,1},{0x123e,3}}, {{0x2d38f,4},{0x2d3a5,2}}, {{0x18dea,5},{0xf86,3}}, {{0xecb,2},{0x2ee9,3}}, + {{0x18ecc,2},{0x2b07c,2}}, {{0xe78,1},{0x1790,3}}, {{0x1f116,3},{0x10d3,3}}, {{0x1747,4},{0xcc6,2}}, + {{0x6109,8},{0x1382,5}}, {{0x7163,7},{0x716a,6}}, {{0xf80,2},{0x2,1}}, {{0x15ac6,6},{0xc3d0,3}}, + {{0x125d,8},{0xcc9,2}}, {{0x10cb,2},{0x108b,3}}, {{0x33b5,10},{0xef3,4}}, {{0xe6f,3},{0xabc4,4}}, + {{0x17f9e,4},{0xa,2}}, {{0x6393,8},{0xe0b,4}}, {{0xf3a,2},{0xcc1,2}}, {{0xe97,3},{0x1ddee,6}}, + {{0x175ec,6},{0xeed,2}}, {{0x27e0,3},{0x3286,3}}, {{0x4225,4},{0xf0f,2}}, {{0x75b4,4},{0xcc3,2}}, + {{0xf16,2},{0xf1a,2}}, {{0xe97,3},{0x20550,2}}, {{0xe21,1},{0x4e62,4}}, {{0x4287,9},{0x1bf6,5}}, + {{0x1089f,7},{0x18b4,3}}, {{0x1f875,1},{0x2ba5,1}}, {{0x1987,5},{0xeca0,4}}, {{0x8c,2},{0x8d,1}}, + {{0x197e1,5},{0x1b41,4}}, {{0x45cf,6},{0x2815,7}}, {{0x11d99,5},{0x10e3,3}}, {{0x4aff,5},{0xf32,2}}, + {{0x1763c,6},{0x5,2}}, {{0x2501,5},{0x92ea,4}}, {{0xb69f,3},{0xa,2}}, {{0x256a3,6},{0x1153,2}}, + {{0x29c0,3},{0xf15,1}}, {{0x4a01,3},{0xeab,2}}, {{0xe33,1},{0x2d65d,2}}, {{0x2df3b,4},{0xd4,2}}, + {{0xfbf,5},{0xa076,7}}, {{0x73b9,5},{0xe6b,3}}, {{0x22e5,4},{0x9c91,8}}, {{0x46b1,3},{0x158f,3}}, + {{0x116b9,3},{0xfe6,2}}, {{0x148a6,5},{0xe133,5}}, {{0xedd,1},{0x14e5d,5}}, {{0x3b4f,5},{0x2781,5}}, + {{0x110be,5},{0x1254,6}}, {{0x2f71,4},{0x6452,4}}, {{0xf0f,2},{0xcbf,2}}, {{0x1d074,7},{0xe31,2}}, + {{0xad01,7},{0xf84,5}}, {{0x2b4ec,6},{0x2b4f2,4}}, {{0x1fe3a,6},{0x3,1}}, {{0xcf21,5},{0xf7a,2}}, + {{0x122a,11},{0x1235,6}}, {{0x5e4b,7},{0x59da,6}}, {{0xe97,3},{0x7de9,2}}, {{0x9a6,1},{0x5,2}}, + {{0xe240,6},{0xe92,3}}, {{0x9f45,9},{0xe6b,3}}, {{0xe1f,3},{0x4457,2}}, {{0xdd0a,3},{0x1fd05,3}}, + {{0xbde1,4},{0x2234,3}}, {{0xe6f,4},{0x1bb3a,5}}, {{0x1817,4},{0x4ef1,4}}, {{0x10dd2,5},{0x3642,2}}, + {{0x1967,3},{0xfe6,2}}, {{0xaf4,12},{0xaf4,1}}, {{0x7a01,6},{0xc3fb,5}}, {{0x104c,2},{0x5863,4}}, + {{0xd11b,6},{0xf62,3}}, {{0xe83,5},{0x30f7,2}}, {{0xe21,1},{0x1db45,3}}, {{0x2cdbf,5},{0xe11,1}}, + {{0x17e36,6},{0x1fc7,3}}, {{0x2e77f,3},{0x205a7,2}}, {{0x4383,5},{0x67c6,4}}, {{0x5330,2},{0x1040,3}}, + {{0xeb5,2},{0x4aef,3}}, {{0x10776,9},{0xe95,2}}, {{0x1ebf,3},{0x12be,5}}, {{0xccd,1},{0x219f4,4}}, + {{0x2d62f,5},{0xe11,1}}, {{0x251dd,3},{0x2f2e,3}}, {{0xc26f,2},{0xe4d,2}}, {{0x28f8d,5},{0xeb5,2}}, + {{0xc075,5},{0xeb5,2}}, {{0xe9db,8},{0xf35,3}}, {{0x712f,4},{0x1650,7}}, {{0x9a8,1},{0x7950,3}}, + {{0xcc8,1},{0x2ab26,4}}, {{0xf77,3},{0x77b3,4}}, {{0x1f273,6},{0x6cc8,3}}, {{0xcd2,2},{0x14a2,3}}, + {{0x6cde,4},{0x7119,3}}, {{0xabfb,3},{0xabfe,7}}, {{0x417d,5},{0x1894,3}}, {{0x44,2},{0x21,1}}, + {{0x95e5,6},{0xfdd,6}}, {{0x26f0,12},{0xe92,3}}, {{0x18232,5},{0x10af6,4}}, {{0xb74,1},{0xcf6,1}}, + {{0x7795,5},{0x100d2,6}}, {{0x13924,6},{0x1b80,3}}, {{0xcd3,2},{0xed5,6}}, {{0x1537,4},{0x2d7c,3}}, + {{0xe11,2},{0x62f3,4}}, {{0xe99,1},{0x2691e,3}}, {{0xcc7,1},{0xe25,2}}, {{0x26d2,8},{0xfb7,3}}, + {{0x30118,4},{0x69,1}}, {{0x2f71,4},{0x80c5,3}}, {{0xe3d,4},{0x18ee2,2}}, {{0x12d4,3},{0x766f,4}}, + {{0x10d6,5},{0x189f,3}}, {{0xb6d9,6},{0x17cd,4}}, {{0x2ced,5},{0x4b11,5}}, {{0x1537,4},{0x333c,3}}, + {{0x11184,4},{0x78ed,2}}, {{0x3d63,5},{0x3153,7}}, {{0x124c,14},{0xebb,3}}, {{0x121c,3},{0x18b4,3}}, + {{0x11b3,4},{0xea2c,7}}, {{0x12efc,6},{0x1b9d,4}}, {{0x1d69b,5},{0x15fe,4}}, {{0x12e5,3},{0x1062,2}}, + {{0xe61,6},{0xe67,7}}, {{0x464d,5},{0x6,1}}, {{0x7518,5},{0x1fd05,3}}, {{0xe8a,2},{0xed5,3}}, + {{0x10a3,3},{0x14e73,5}}, {{0xf31,2},{0x113f,2}}, {{0x22b33,6},{0xe95,2}}, {{0x26103,4},{0xe21,1}}, + {{0x11c,2},{0x21,1}}, {{0xcb8,1},{0x1d2e6,4}}, {{0x4617,3},{0xfb8,3}}, {{0x71be,4},{0x16e3,4}}, + {{0xe33,1},{0x2ba5,1}}, {{0xc26f,2},{0xd1a,2}}, {{0x2f71,4},{0x2123d,4}}, {{0x1937,4},{0x4ff1,4}}, + {{0xe,1},{0x4bd,2}}, {{0x4599,3},{0x1dc2,5}}, {{0x5199,9},{0x3abf,4}}, {{0x1817,7},{0xabc4,5}}, + {{0xe0b,2},{0xcc5,2}}, {{0x10a3,3},{0xf02,2}}, {{0x23d2,3},{0xe6b,3}}, {{0x512,2},{0x69,1}}, + {{0xb379,8},{0xb381,4}}, {{0x118b3,5},{0xeca,3}}, {{0x175ba,6},{0xf35,2}}, {{0x17600,5},{0x249f,3}}, + {{0x472d,9},{0xe69,5}}, {{0xe22,2},{0x1151,3}}, {{0x2e273,1},{0xaf4,1}}, {{0x2de75,4},{0x21,1}}, + {{0x1967,3},{0x15e6d,3}}, {{0xfe3,4},{0x2c59,4}}, {{0x12198,4},{0xe09,1}}, {{0xd131,4},{0xfb0,3}}, + {{0x5c29,7},{0x3abd,6}}, {{0xe83,3},{0x10b7,2}}, {{0x46bd,3},{0xe21,1}}, {{0x4781,3},{0x227f,3}}, + {{0x1c37,6},{0x1040,3}}, {{0x1032a,6},{0xabc4,5}}, {{0xe16,1},{0x17cc,4}}, {{0xe2f,1},{0x8102,3}}, + {{0xeed,2},{0xe22,2}}, {{0xb379,3},{0x1692,2}}, {{0x1e910,4},{0xf7a,2}}, {{0x12d4,3},{0x1fbe,3}}, + {{0x3911,7},{0x4,1}}, {{0x40b9,10},{0xeed,4}}, {{0xf4f,1},{0x276b,4}}, {{0x1f8e,7},{0xe92,5}}, + {{0x23b7,11},{0x18b4,3}}, {{0x27e0,8},{0x27e8,7}}, {{0x2de45,3},{0x468,2}}, {{0xf0a,3},{0xf18,2}}, + {{0x12e5,3},{0x10cb,2}}, {{0x20377,4},{0x48d3,2}}, {{0xe21,1},{0x20543,2}}, {{0x2601b,6},{0xed6,2}}, + {{0x142a,3},{0xec6,3}}, {{0xe282,6},{0xcc9,2}}, {{0xed1,3},{0xe32,1}}, {{0x46bd,3},{0x775c,5}}, + {{0xcd6,1},{0x2e292,1}}, {{0x1029b,7},{0x102a2,4}}, {{0x255b,9},{0xe6b,4}}, {{0x14a7,12},{0xfdf,4}}, + {{0x2203b,6},{0x5,2}}, {{0xccd,1},{0x8cd4,5}}, {{0x27c56,4},{0x1054,3}}, {{0x1882c,6},{0xef5,2}}, + {{0x1db33,2},{0x29621,2}}, {{0x14edf,4},{0x4aef,3}}, {{0x10e8f,3},{0xf35,3}}, {{0xe08,1},{0x3e0e,3}}, + {{0x4765,3},{0x14d4f,7}}, {{0xf,1},{0x176,2}}, {{0x1e9e,4},{0x2,1}}, {{0x59b9,5},{0xb97c,2}}, + {{0x1bec,5},{0x2b89,3}}, {{0xb745,7},{0x159e,4}}, {{0x688,2},{0x9f,1}}, {{0x19b7,3},{0x2cde7,2}}, + {{0x1fa38,6},{0x2075,3}}, {{0xf512,7},{0x6452,4}}, {{0x11fbf,8},{0x127c,3}}, {{0x2de75,3},{0x206,2}}, + {{0x7414,3},{0x155b,4}}, {{0x1847,5},{0xeee,3}}, {{0xfcb,2},{0x1944,3}}, {{0x1e17,7},{0x4dd1,4}}, + {{0x235d,5},{0xab9f,3}}, {{0x12e5,3},{0x16ad,3}}, {{0x4f91,8},{0xe77,3}}, {{0xbded,4},{0xc80d,4}}, + {{0x9a6,1},{0xb,1}}, {{0xf4f,1},{0xff7b,4}}, {{0x11a08,7},{0x3555,4}}, {{0x11d99,5},{0x11d9e,6}}, + {{0xaaf,2},{0xfe0,2}}, {{0x4767,1},{0xf59,2}}, {{0x739f,5},{0x8,1}}, {{0x6c35,9},{0xef3,4}}, + {{0x101b4,7},{0xcc9,2}}, {{0xe99,1},{0x1373,2}}, {{0xc075,5},{0xcd3,2}}, {{0x7918,4},{0x4,1}}, + {{0xf15,1},{0x1cd3,2}}, {{0x1a9ea,6},{0xf63,2}}, {{0xb9f1,4},{0x6f8a,4}}, {{0x7525,4},{0x1f38,1}}, + {{0x1303,3},{0xcd3,2}}, {{0x8439,8},{0x8441,4}}, {{0x1567,3},{0x119a,3}}, {{0x7337,10},{0xebb,3}}, + {{0x29cf,3},{0x27a14,4}}, {{0x1fdb3,6},{0xec6,3}}, {{0x11a6,2},{0x6,1}}, {{0xfcb,2},{0x3bff,3}}, + {{0x168f,2},{0xe0f9,3}}, {{0x1303,3},{0x10d3,3}}, {{0xcc1,1},{0x1796b,4}}, {{0xcd3,3},{0x36ca,9}}, + {{0x46af,3},{0x1dee,2}}, {{0x25b7b,5},{0xf0f,2}}, {{0x4ee8,4},{0x12ff0,6}}, {{0x9d41,6},{0xec6,3}}, + {{0x585a,7},{0xef3,4}}, {{0x1859,3},{0xebb,3}}, {{0x5951,8},{0x5959,5}}, {{0xf89,3},{0x1004,3}}, + {{0x10a62,7},{0xfbb,4}}, {{0x10ca9,4},{0x39bd,4}}, {{0xe1f,3},{0x27d7,2}}, {{0xa04d,5},{0x78cb,4}}, + {{0xe11,1},{0x87a0,5}}, {{0x488d,4},{0x6ec3,3}}, {{0x4fab,10},{0xec6,3}}, {{0x361d,7},{0x6cb4,3}}, + {{0x127f,4},{0x249c,6}}, {{0x7414,3},{0xf02,2}}, {{0x33ed,5},{0x122d,2}}, {{0xe6f,3},{0x11e62,3}}, + {{0x1a84,8},{0x1024,7}}, {{0xec01,8},{0xec3,3}}, {{0x1716e,5},{0x1dd18,4}}, {{0xcc7,1},{0x7df5,4}}, + {{0x19b9,1},{0xf1a,2}}, {{0x112b8,5},{0xcd3,1}}, {{0x1367,3},{0x8441,4}}, {{0x19682,7},{0xef5,2}}, + {{0xcbd,1},{0xfb8,3}}, {{0xe5b,6},{0xccd,4}}, {{0xb51d,6},{0x72d3,3}}, {{0x72cf,4},{0x6,2}}, + {{0x1ea72,2},{0xf0c,1}}, {{0xed1,3},{0x1c439,6}}, {{0xb843,3},{0x7555,4}}, {{0x7414,3},{0x1150d,8}}, + {{0xa,2},{0xb397,2}}, {{0x1ba43,5},{0x57d0,3}}, {{0x29cf,3},{0xf1f,3}}, {{0x1943,2},{0x3075,3}}, + {{0x1677,3},{0x1dee,2}}, {{0x1b6d,4},{0x142d,3}}, {{0xb199,5},{0x16df9,5}}, {{0x1467,4},{0x1085,3}}, + {{0x1019,4},{0xeb9,3}}, {{0x127f,3},{0x16c8f,7}}, {{0x2bc7,9},{0x2269,4}}, {{0x74bd,5},{0x1252,5}}, + {{0x478f,3},{0xf79,3}}, {{0xb415,7},{0xe22,2}}, {{0x22a2,4},{0x2268,5}}, {{0xec6,3},{0x8,1}}, + {{0xf65,4},{0xc614,7}}, {{0x4459,2},{0x2e722,3}}, {{0x16a7,3},{0xe7f,3}}, {{0xf205,4},{0x6ead,4}}, + {{0x1897,8},{0x189f,3}}, {{0x5,2},{0x1380,5}}, {{0x451e,4},{0x1040,3}}, {{0x1847,5},{0x5eaf,4}}, + {{0x1e571,4},{0x1e2f0,2}}, {{0x12b8f,3},{0x12a9,3}}, {{0x4ee8,4},{0x9b99,3}}, {{0x2de75,4},{0x9f,1}}, + {{0xb3c1,6},{0xe86,2}}, {{0x6cde,4},{0x1780,3}}, {{0xe16,2},{0xdcfc,6}}, {{0xb3f1,3},{0xe99,1}}, + {{0xcc3,2},{0xe67,3}}, {{0x80f1,9},{0xf12,3}}, {{0xe21,1},{0x1a66,1}}, {{0xe33,1},{0xf15,1}}, + {{0xb74,1},{0x20571,2}}, {{0x89a9,9},{0x14a2,3}}, {{0x6cc4,4},{0xa7c8,5}}, {{0x10a,2},{0x21,1}}, + {{0x29fc,10},{0x1ce6,5}}, {{0x11186,2},{0x29889,3}}, {{0xe71,1},{0xfc7,3}}, {{0x1557,7},{0x6cb4,3}}, + {{0x71be,5},{0x71c3,8}}, {{0x9,1},{0xeb4,2}}, {{0x1bbf,4},{0x20bb5,4}}, {{0x4765,3},{0xf70,2}}, + {{0x5874,8},{0x587c,5}}, {{0xec17,7},{0x3555,4}}, {{0x2b46,4},{0xed5,3}}, {{0xfe0,2},{0x15fe,4}}, + {{0x2f71,4},{0x12a3,3}}, {{0x20659,6},{0xe95,2}}, {{0x6d46,6},{0x16a3a,4}}, {{0x1047,3},{0x6,1}}, + {{0x10b4,4},{0x8db7,6}}, {{0x17dfa,5},{0x17dff,5}}, {{0xc0a1,2},{0x73d6,2}}, {{0xedd,1},{0x2b89,3}}, + {{0x4853,3},{0x227f,3}}, {{0x6533,8},{0xe92,3}}, {{0x1969,1},{0x2cbca,3}}, {{0xf00,5},{0x1ac7,3}}, + {{0xff78,8},{0xec6,3}}, {{0x5ea9,3},{0x797f,4}}, {{0x2,2},{0x3801,6}}, {{0x18174,5},{0x1155,2}}, + {{0x17a3a,5},{0xcc4,2}}, {{0x105f,3},{0x93dc,5}}, {{0x317b8,2},{0x2ad7d,2}}, {{0xcb59,8},{0xeee,3}}, + {{0xe6b,3},{0x6,1}}, {{0x1377,5},{0x1bef,2}}, {{0x7ff5,5},{0x3694,3}}, {{0x116ac,5},{0xe1ac,5}}, + {{0x1bee,3},{0x1f38,4}}, {{0xe1f,3},{0x177f7,5}}, {{0x12d4,3},{0x1cd3,2}}, {{0x1019,11},{0x1024,7}}, + {{0x1a132,5},{0x5e50,2}}, {{0x1f94e,5},{0x1ea3,3}}, {{0x11d8e,5},{0x19e1,3}}, {{0x16a7,3},{0xcd2,2}}, + {{0x11f25,5},{0x165a7,4}}, {{0xf89,5},{0x15bc,11}}, {{0x20f6,5},{0x1244,7}}, {{0xfb37,8},{0x18b4,3}}, + {{0xb199,5},{0x1080a,6}}, {{0x12d4,4},{0xe75,2}}, {{0x73d6,2},{0xcd3,1}}, {{0x2df3b,4},{0x1f4,2}}, + {{0x9,1},{0xcc8,1}}, {{0x155b,3},{0x101f,2}}, {{0x2f71,4},{0xe65,2}}, {{0x83d9,6},{0xf61,2}}, + {{0x9a7d,6},{0x2c6a,5}}, {{0x30118,4},{0x57,1}}, {{0x951c,4},{0xf91,3}}, {{0xe33,1},{0xe08,1}}, + {{0xcd3,1},{0x27dc,4}}, {{0xed6,2},{0xebb,3}}, {{0x450b,4},{0x10d3,3}}, {{0xf77,3},{0x6034,5}}, + {{0x14fea,7},{0xcc9,2}}, {{0x4781,4},{0x3a91,3}}, {{0x1d7ea,5},{0xe11,2}}, {{0xc045,4},{0x1099,8}}, + {{0x1a07,3},{0x7a0f,4}}, {{0xcba,2},{0x162c,3}}, {{0x30853,2},{0x2b511,2}}, {{0xc05d,4},{0x1839,2}}, + {{0xecb,2},{0xcb7,2}}, {{0x4767,1},{0x12a3,3}}, {{0x2533b,5},{0x1fd05,3}}, {{0x1f03f,2},{0xf0c,1}}, + {{0xf0d,2},{0x1ea3,3}}, {{0x951c,3},{0x6,1}}, {{0xcc1,1},{0x145b,2}}, {{0x1ec5e,6},{0x59b4,3}}, + {{0x1977,3},{0x9,1}}, {{0x82dd,6},{0x3abd,6}}, {{0xd601,9},{0xe11,1}}, {{0x2e271,3},{0x30343,2}}, + {{0xe78,1},{0xc43a,6}}, {{0x16c96,5},{0xc3d0,4}}, {{0x1ceb,7},{0xcc1,1}}, {{0x5e58,6},{0x6792,4}}, + {{0x9ad1,5},{0x5bfc,5}}, {{0xc27b,2},{0x9b1,2}}, {{0x29cf,3},{0x1a66,1}}, {{0x10b9,3},{0x10bc,9}}, + {{0x181b,3},{0xafe2,7}}, {{0x6c42,10},{0xcc9,2}}, {{0x442b,3},{0x17c0,2}}, {{0xf70,2},{0xe69,6}}, + {{0x442b,3},{0x20a4,3}}, {{0x1497,5},{0x2b89,3}}, {{0xd131,4},{0x1595,2}}, {{0x9369,5},{0xf194,3}}, + {{0x255b,6},{0x2c85,2}}, {{0xe78,1},{0x207f4,5}}, {{0x4f9e,8},{0xcc9,2}}, {{0xe33,1},{0x15fc,2}}, + {{0x6cfc,5},{0xfdd,4}}, {{0x2e271,3},{0x2e27d,2}}, {{0x4ae5,6},{0xfb0,2}}, {{0x127f,5},{0xf24,2}}, + {{0x1154c,8},{0xf91,3}}, {{0x512,2},{0xe,1}}, {{0x22ba3,5},{0xeca,3}}, {{0x2fb7,7},{0x2fbe,7}}, + {{0x7414,3},{0x1ebf,3}}, {{0x1f9d,11},{0x1204,4}}, {{0x36a9,8},{0x28f8,5}}, {{0x11e1f,5},{0xed6,2}}, + {{0x1567,6},{0x3739,2}}, {{0x12a1,4},{0xcc4,2}}, {{0x29cf,3},{0x3537,2}}, {{0x7414,3},{0xfff,3}}, + {{0x9a8,1},{0x404f,3}}, {{0x249eb,6},{0xed9,2}}, {{0x11f46,6},{0xe67,2}}, {{0x699,2},{0x7b,1}}, + {{0x7303,6},{0xe6c,3}}, {{0x158f,3},{0xf62,3}}, {{0x4767,1},{0xe08,1}}, {{0x29cf,3},{0xe7f,3}}, + {{0x74ca,5},{0x5d59,5}}, {{0x185e8,5},{0x44b3,4}}, {{0x8da5,5},{0x3155,6}}, {{0x1bfb,7},{0x1ba9,4}}, + {{0x10a3,3},{0x14de,4}}, {{0xb72d,9},{0xcce,2}}, {{0xf70,2},{0xcc3,2}}, {{0xf0c,1},{0x6ec3,3}}, + {{0x1557,4},{0xcc3,2}}, {{0xf77,3},{0xe1fa,4}}, {{0x488b,6},{0xe89,3}}, {{0x15e9a,5},{0x4f55,4}}, + {{0x479d,4},{0xf101,6}}, {{0x48a9,3},{0xec6,3}}, {{0x61cc,5},{0x2467,4}}, {{0x17808,6},{0xe61,4}}, + {{0x92b5,5},{0xc8f7,5}}, {{0x9351,5},{0xf7a,2}}, {{0x75db,4},{0x49a6,3}}, {{0xb865,5},{0x6b90,4}}, + {{0x1bb12,6},{0xe11,1}}, {{0x110c9,5},{0xf1a,2}}, {{0x1fbe,3},{0xe25,2}}, {{0x4ef5,4},{0x13040,6}}, + {{0xe1f,3},{0x10298,3}}, {{0x1827,5},{0xcf1a,4}}, {{0x442b,3},{0x2c3ac,3}}, {{0x28d0,4},{0x9,1}}, + {{0xe0f,1},{0x1213,2}}, {{0x6,1},{0xf70,5}}, {{0x1133c,5},{0xe1b,3}}, {{0x12e5,3},{0x1084,3}}, + {{0x1877,4},{0x2daa,7}}, {{0x2de63,3},{0x260,2}}, {{0x56c7,5},{0xec6,3}}, {{0xb901,5},{0x305a,5}}, + {{0x11a6,3},{0x3cd1,6}}, {{0xef7,7},{0x2269,4}}, {{0xe09,1},{0xf13,2}}, {{0x1e64,3},{0xec6,3}}, + {{0x3a37,6},{0x7f44,4}}, {{0x70ad,3},{0xfb0,3}}, {{0x70ad,3},{0x1150,2}}, {{0x794f,4},{0xcc9,2}}, + {{0xe80,2},{0x6791,4}}, {{0x1ceb,6},{0xfd38,4}}, {{0x1230,3},{0x8,1}}, {{0x181b,3},{0xfc03,5}}, + {{0x24bc7,2},{0x1766a,2}}, {{0xcc7,1},{0x286d,3}}, {{0x2db09,5},{0xe11,1}}, {{0x18a34,6},{0xe5e,2}}, + {{0x36ca,5},{0xeee,3}}, {{0xb34,16},{0xb34,8}}, {{0x19b9,1},{0x109b,2}}, {{0x1367,3},{0x1ebf,3}}, + {{0x1bfb,7},{0x4dd1,5}}, {{0xe11,1},{0x7d80,5}}, {{0x27ef,4},{0x13146,4}}, {{0x29cf,3},{0xede,1}}, + {{0x833d,5},{0x122d,2}}, {{0x1150,3},{0xfdd,4}}, {{0x1e08,5},{0x29f3,3}}, {{0x10d6,5},{0x3933,4}}, + {{0x5242,5},{0x1265,5}}, {{0x2f71,7},{0xced0,4}}, {{0x2105,8},{0x1d32,4}}, {{0x23d5b,6},{0xcb7,2}}, + {{0x10a62,7},{0xa,2}}, {{0x7414,3},{0x12154,3}}, {{0x1447,7},{0x144e,9}}, {{0x16a7,3},{0xfe6,2}}, + {{0x7518,4},{0x8,1}}, {{0xe99,1},{0x74f6,2}}, {{0x1787,9},{0x1790,7}}, {{0x6fe1,3},{0xe67,2}}, + {{0x9525,8},{0x78cb,4}}, {{0xcc8,1},{0x26d6c,3}}, {{0x1817,4},{0x142a,3}}, {{0x2bc7,5},{0x7a36,3}}, + {{0xcc1,1},{0x808c,5}}, {{0xe5b,3},{0x5662,5}}, {{0xd147,5},{0xf7a,2}}, {{0x28ca2,2},{0x74f9,2}}, + {{0x52f8,8},{0xed6,2}}, {{0x1208,4},{0x2825e,3}}, {{0xd196,6},{0xcc9,2}}, {{0x19b7,3},{0x7416,1}}, + {{0x72cf,4},{0x6,3}}, {{0x16a7,3},{0x111c,2}}, {{0xe99,1},{0x44ad,3}}, {{0x1f8eb,5},{0x7555,4}}, + {{0x8b11,9},{0x1663,3}}, {{0xfb0,2},{0x11d9,3}}, {{0x181c4,6},{0x17fe7,4}}, {{0x19e7,5},{0xfdc5,6}}, + {{0xcc4,2},{0xcc1,1}}, {{0xf89,3},{0x109b,2}}, {{0xb,1},{0xee9,2}}, {{0xb931,5},{0x8,1}}, + {{0x1118b,2},{0x1a66,1}}, {{0xe11,2},{0xfdf,3}}, {{0xcd3,2},{0x126a,4}}, {{0xb3fd,7},{0xb404,5}}, + {{0x1e44,6},{0x54ab,6}}, {{0x29cf,3},{0x162c,3}}, {{0xcd3,1},{0x1692,2}}, {{0xec3,3},{0x10e3,4}}, + {{0x2de87,4},{0x69,1}}, {{0x5693,7},{0x56a7,6}}, {{0x1756c,3},{0xe92,3}}, {{0x758d,5},{0x1523,4}}, + {{0xf79,3},{0xe0a,1}}, {{0x101e,3},{0xf35,3}}, {{0x74f6,2},{0x24661,2}}, {{0x29cf,3},{0x1eaf0,6}}, + {{0x2b84,3},{0x123e,3}}, {{0x12e5,4},{0xeab,2}}, {{0x17d5c,3},{0x5e43,3}}, {{0xb96d,5},{0x3381,3}}, + {{0x2015,3},{0x2f94,3}}, {{0x417d,5},{0x2,1}}, {{0xe2f,1},{0xf18,2}}, {{0x180a,3},{0x6,1}}, + {{0x122d,3},{0x278f,6}}, {{0x8d45,8},{0xec3,3}}, {{0x17ec2,5},{0x2dad,3}}, {{0x3002d,4},{0x9f,1}}, + {{0x3d63,5},{0x1790,6}}, {{0x1ec3a,5},{0x2d11,4}}, {{0x46bf,1},{0xe09,1}}, {{0x4ef5,4},{0x70a6,3}}, + {{0x271d,12},{0xf91,3}}, {{0xb3c1,6},{0xcba,2}}, {{0x7559,6},{0x1cd3,2}}, {{0x14d8a,3},{0x73d6,2}}, + {{0x1092,7},{0x1fc5,5}}, {{0x2231,5},{0x8db7,6}}, {{0x1189d,4},{0x2280,2}}, {{0x18f7,4},{0x3922,4}}, + {{0x2afb6,5},{0x314,2}}, {{0xe09,1},{0x1463,4}}, {{0x2f71,4},{0x2ba7,4}}, {{0xb8a3,4},{0x57d1,6}}, + {{0x6bb,2},{0x7b,1}}, {{0xf77,4},{0x156a,3}}, {{0xeba9,6},{0x2eb7,4}}, {{0x491e,7},{0x4925,6}}, + {{0x1d36,6},{0x1d3c,5}}, {{0x1827,5},{0x1bf0,2}}, {{0x1081,5},{0x2560,4}}, {{0xcc6c,5},{0x95cf,5}}, + {{0xee69,6},{0x1372,4}}, {{0x10a3,3},{0x2dd7,4}}, {{0x666,2},{0x69,1}}, {{0x1a735,6},{0x809a,3}}, + {{0x174a,4},{0x5669,3}}, {{0x2399,10},{0xec6,3}}, {{0xf89,10},{0x1fb6,5}}, {{0x2e27d,1},{0x307bb,1}}, + {{0xe21,1},{0xf1f,3}}, {{0x1943,2},{0xf86,3}}, {{0x5430,6},{0xf86,2}}, {{0x824d,4},{0x1722,5}}, + {{0x32ab,6},{0x7d80,5}}, {{0x16a7,3},{0xef3,4}}, {{0x2476,4},{0x7099,3}}, {{0x4767,1},{0xcb7,2}}, + {{0x20382,2},{0x1969,1}}, {{0x45,1},{0x468,2}}, {{0x17218,8},{0xef5,2}}, {{0x1fd62,6},{0x1ea3,3}}, + {{0x8b4d,8},{0x1592,4}}, {{0xe32,1},{0x1058,2}}, {{0x159c2,5},{0x12af1,5}}, {{0xb985,4},{0x1085,3}}, + {{0x127f,5},{0xe86,2}}, {{0x602c,10},{0xebb,3}}, {{0xf0a,3},{0x12df2,3}}, {{0xe8a,2},{0xed9,2}}, + {{0x1977,4},{0x9,1}}, {{0xe11,2},{0x810d,4}}, {{0xef7,3},{0x1d65,3}}, {{0x3575,7},{0x1663,4}}, + {{0x251f,4},{0x1c8c3,5}}, {{0x22b83,5},{0xccb,2}}, {{0x18f9,3},{0x1d3c,3}}, {{0xb8dd,5},{0x239e,5}}, + {{0x1e872,2},{0x442d,1}}, {{0x1150,3},{0xe0a,1}}, {{0x115e,7},{0x13ae,5}}, {{0x1967,3},{0x26921,2}}, + {{0xcc6,2},{0x3ed7,6}}, {{0x2016d,6},{0x1fc7,3}}, {{0x1d3a,7},{0xcc9,2}}, {{0x133fc,6},{0xe0d,2}}, + {{0xe6f,3},{0x228ce,5}}, {{0x111c6,5},{0xed6,2}}, {{0x2d38f,4},{0x1969,1}}, {{0xe89,2},{0x4aef,3}}, + {{0x1e2e0,5},{0x48d3,2}}, {{0x1f8fd,5},{0xe86,2}}, {{0x15a7,9},{0x3976,3}}, {{0x12ccc,6},{0x14f9,3}}, + {{0x2a3a,8},{0x1382,5}}, {{0x251f,8},{0x1be9,3}}, {{0x4209,6},{0xcc9,2}}, {{0xfa5,2},{0x3,1}}, + {{0x15a7,9},{0x1b80,3}}, {{0x3a29,4},{0xcb53,6}}, {{0x187a0,6},{0x45c7,2}}, {{0x16a7,11},{0x1de7,3}}, + {{0xf35,2},{0x2,1}}, {{0x72cf,6},{0xcc9,2}}, {{0x77f0,4},{0xe25,2}}, {{0x1153,2},{0x26617,4}}, + {{0x1189d,4},{0x1153,2}}, {{0xcc5,2},{0x1025,1}}, {{0x184d,5},{0x13e3,4}}, {{0x4cb9,8},{0x4cc1,4}}, + {{0x94dd,9},{0x1004,3}}, {{0x4615,5},{0xcd3,2}}, {{0x1967,3},{0xe92,4}}, {{0xe33,1},{0xf59,2}}, + {{0xe97,3},{0x1debd,2}}, {{0x10a3,3},{0x35a3,3}}, {{0x455f,5},{0x1a70,5}}, {{0xef7,4},{0x1e40,4}}, + {{0x205a1,1},{0x2e77c,2}}, {{0x19f7,4},{0x6008,3}}, {{0x4899,4},{0xe09,1}}, {{0xd9b3,6},{0x141e,5}}, + {{0xc1ad,7},{0xe92,3}}, {{0x2de4b,3},{0x2f0,2}}, {{0x127b8,7},{0xf91,3}}, {{0x8295,5},{0x7a13,3}}, + {{0x1dea,6},{0xf7a,2}}, {{0x2777,6},{0xe7f,2}}, {{0x4853,3},{0x142d,3}}, {{0x1edb4,6},{0x1edc3,3}}, + {{0xc1d1,4},{0x23835,3}}, {{0x2b75,3},{0x2b78,5}}, {{0x69d2,9},{0xe6b,3}}, {{0xfad,6},{0xe89,2}}, + {{0x713c,5},{0x286d,3}}, {{0x2e346,2},{0x2b4f0,2}}, {{0xe22,3},{0xe5e,2}}, {{0xe6f,3},{0x5d56,3}}, + {{0x1837,5},{0x2812,3}}, {{0xe97,3},{0x194a8,5}}, {{0x48dd,8},{0x1392,5}}, {{0xbb7d,5},{0x1153,2}}, + {{0x10aa4,7},{0x7997,4}}, {{0x18282,6},{0xe0d,2}}, {{0x1bbf,7},{0xef3,4}}, {{0x13050,5},{0x1230c,2}}, + {{0x28b42,4},{0xe09,1}}, {{0x169b,6},{0xfdd,6}}, {{0x2cf67,2},{0xe16,1}}, {{0x24beb,5},{0xf91,3}}, + {{0x1fbe,3},{0xe11,1}}, {{0xc14d,7},{0x54b7,4}}, {{0xb,1},{0x9e1c,4}}, {{0x31453,2},{0x205a1,1}}, + {{0x3739,2},{0x15390,3}}, {{0x2eb37,2},{0x2eb37,2}}, {{0x10a3,3},{0x1062,2}}, {{0x7416,1},{0xe32,1}}, + {{0x54cc,5},{0xd9e4,6}}, {{0x1b383,7},{0xe22,2}}, {{0xac65,6},{0xed9,2}}, {{0x4519,4},{0x1a0af,5}}, + {{0x2de93,4},{0x188,2}}, {{0x1fbb,5},{0x1fc0,7}}, {{0x425d,8},{0x6dc3,5}}, {{0x112d,4},{0x1131,8}}, + {{0x16a7,3},{0x9101,4}}, {{0x12a4,5},{0x12a9,3}}, {{0x1019,4},{0xcd3,1}}, {{0x791d,7},{0x41cc,5}}, + {{0x9279,10},{0xe95,2}}, {{0x9ae9,5},{0x9aee,7}}, {{0x11a6b,5},{0x5959,5}}, {{0x5,1},{0xcc3,3}}, + {{0x2e280,3},{0x20599,1}}, {{0x5,1},{0x2dd7,4}}, {{0x1847,9},{0xe11,1}}, {{0xe78,1},{0x3a91,3}}, + {{0x18ecc,2},{0x18efa,2}}, {{0xf4f,1},{0x2675d,2}}, {{0x5534,6},{0xef2,4}}, {{0x31f5,5},{0xeab,2}}, + {{0x2b0a8,4},{0xe4d,2}}, {{0x21aa,10},{0x27dc,4}}, {{0x1487,4},{0x1692,2}}, {{0xb001,8},{0xec6,3}}, + {{0x10c51,8},{0x1004,3}}, {{0x1967,3},{0x198aa,4}}, {{0x46bf,1},{0x6,1}}, {{0x138e,3},{0xed5,3}}, + {{0x154b8,6},{0xec6,3}}, {{0x4597,4},{0x5849,4}}, {{0xa04d,7},{0x13e3,4}}, {{0xf11,1},{0xe2f,1}}, + {{0xd131,4},{0xcc8,2}}, {{0x18be2,8},{0xcc3,2}}, {{0x101f,2},{0xef3,4}}, {{0x172c2,5},{0x172d1,5}}, + {{0x2a619,6},{0x9a8,1}}, {{0x29a2,5},{0x1a71,3}}, {{0x73ed,4},{0x2bae,2}}, {{0x216e,6},{0x10b9,2}}, + {{0x1ff7,3},{0xdc6f,4}}, {{0xe0d,2},{0x1889,2}}, {{0x1db44,2},{0xf11,1}}, {{0xcbd,1},{0x24e8,4}}, + {{0xabf9,5},{0x2f94,3}}, {{0x1152b,4},{0x1efdd,5}}, {{0x5bc,2},{0x8d,1}}, {{0x26908,4},{0x2690c,3}}, + {{0x73e0,7},{0xf35,2}}, {{0x136f,2},{0xe7f,2}}, {{0x4775,2},{0x5e4f,3}}, {{0x1ff7,3},{0x1eebc,5}}, + {{0xe1f,3},{0xe2f,1}}, {{0x51ac,4},{0x2467,4}}, {{0xe09e,8},{0xcc9,2}}, {{0xe61,3},{0xfd4c,5}}, + {{0x2a47,3},{0x449f,4}}, {{0xe101,8},{0xec6,3}}, {{0x3bdb,6},{0x4e0d,6}}, {{0xe97,3},{0x89d3,3}}, + {{0xe97,3},{0x4cbc,5}}, {{0x24025,3},{0xe67,2}}, {{0x1a47,5},{0x16f75,5}}, {{0xab1,1},{0xcd6,1}}, + {{0xcbd,1},{0x2d8d,3}}, {{0x12c3,4},{0xcd3,1}}, {{0x1dbd,10},{0xf7a,2}}, {{0xcc8,1},{0x2252,3}}, + {{0x16b7,11},{0x12be,5}}, {{0x1ef81,4},{0xcd3,2}}, {{0x45eb,4},{0x29f3,3}}, {{0x4781,3},{0x2a248,4}}, + {{0x18ecc,2},{0xd1a,2}}, {{0x17178,5},{0xc754,5}}, {{0x19a9,2},{0xeee,3}}, {{0x4765,3},{0xe77,3}}, + {{0x1949,3},{0xd28b,6}}, {{0x1b086,5},{0xf7a,2}}, {{0x780a,5},{0xfc03,5}}, {{0xf15,1},{0xe09,1}}, + {{0x38e7,5},{0xe7d,2}}, {{0x10a3,3},{0x149f,3}}, {{0x70ad,3},{0xe22,2}}, {{0xf0f,2},{0x1b41,4}}, + {{0x1919,2},{0x138d,5}}, {{0xaaf,2},{0xe6b,2}}, {{0x201d2,3},{0xe5e,2}}, {{0x65e9,8},{0x14a2,5}}, + {{0x11b89,7},{0x1040,3}}, {{0xe2f,1},{0x1ea75,3}}, {{0x20579,1},{0x28b33,1}}, {{0x1150a,5},{0x2bdb,4}}, + {{0x204f1,4},{0x3080,4}}, {{0xf15,1},{0x1054a,5}}, {{0x19a7,4},{0x24e7,3}}, {{0xe32,1},{0x1189,3}}, + {{0x2777,8},{0x1050,4}}, {{0xe32,1},{0x308b,3}}, {{0x4153,5},{0x1009b,6}}, {{0x70ad,4},{0x23468,3}}, + {{0x1967,3},{0x22a3,2}}, {{0x25d33,5},{0x66c2,3}}, {{0x12bbe,9},{0x6,1}}, {{0xb396,2},{0xe09,1}}, + {{0x1e9e,6},{0xdba8,5}}, {{0xf32,2},{0xcd3,1}}, {{0xf12,3},{0xec6,3}}, {{0x2a83,5},{0x5b6d,6}}, + {{0x4765,3},{0xfb0,3}}, {{0x12e5,3},{0x48da,3}}, {{0xd83d,6},{0xed6,2}}, {{0x10a3,5},{0x6ec3,7}}, + {{0x113c,3},{0xf80,2}}, {{0xe25,2},{0x1bf0,2}}, {{0x113c,5},{0xe69,5}}, {{0x19b7,3},{0xeca,3}}, + {{0x77f0,4},{0x6da5,4}}, {{0xee53,6},{0xf0f,2}}, {{0x2afa1,4},{0xf11,1}}, {{0x1ec5,3},{0xed5,4}}, + {{0xcbd,1},{0x1cd3,2}}, {{0x532c,9},{0x5342,4}}, {{0xcc8,1},{0xeaf5,4}}, {{0x2e269,2},{0x20599,1}}, + {{0xb421,5},{0xe25,2}}, {{0x15440,8},{0xe95,2}}, {{0x1bef,2},{0x43ed,6}}, {{0x2948,3},{0x1084,3}}, + {{0x11234,5},{0x2e7b,4}}, {{0xe,1},{0x260,2}}, {{0x12e5,3},{0x1e2f0,2}}, {{0x24d5e,2},{0x23e99,2}}, + {{0x1eb47,5},{0xc8f7,4}}, {{0x2a56,4},{0x621e,5}}, {{0xec17,7},{0xec6,3}}, {{0x11a6,3},{0x9a4,3}}, + {{0x77f2,3},{0x29f3,3}}, {{0x147f2,7},{0xcc9,2}}, {{0x3ff5,6},{0xabc6,3}}, {{0x4326,2},{0x4328,7}}, + {{0x578,2},{0x57,1}}, {{0x90f9,7},{0x9100,5}}, {{0x28fe1,5},{0x442d,1}}, {{0x24653,4},{0x20370,3}}, + {{0x7414,3},{0x5bb6,3}}, {{0x13442,7},{0xe92,3}}, {{0x38e7,4},{0x1b87c,5}}, {{0x8,1},{0x56a8,5}}, + {{0x46bf,1},{0x1dee,2}}, {{0x1ff7,3},{0x2e9dd,2}}, {{0xb3f1,3},{0x48d3,2}}, {{0x17f9e,4},{0x12a83,5}}, + {{0xe0b,2},{0x1215,4}}, {{0x9ced,8},{0xec5,4}}, {{0x2c5b,4},{0x6,1}}, {{0x10d6,5},{0x8937,6}}, + {{0xf77,5},{0x6cc8,3}}, {{0xe99,1},{0xe5e,2}}, {{0x1f303,6},{0x15e9,3}}, {{0x9e,2},{0xf,1}}, + {{0xccd,1},{0xf02,2}}, {{0xebe,5},{0xe86,3}}, {{0x18f7,7},{0x1245,6}}, {{0xe6f,3},{0xcba,3}}, + {{0x29cf,3},{0xf8e,3}}, {{0xef7,3},{0xe86,2}}, {{0xad6d,4},{0xf93,5}}, {{0x1809,3},{0x120b,4}}, + {{0x2494b,5},{0x24950,3}}, {{0x101f,3},{0x1dc7,5}}, {{0x4781,3},{0x6ee8,3}}, {{0x9a9,2},{0xfe0,2}}, + {{0x5d13,8},{0xec6,3}}, {{0xe71,1},{0xfef,6}}, {{0x353d,5},{0xe25,2}}, {{0x4853,4},{0x1303,3}}, + {{0x4767,1},{0x9372,3}}, {{0xc05d,5},{0x1944,3}}, {{0x82b9,6},{0xcb9,4}}, {{0x506e,9},{0xf91,3}}, + {{0x2054a,2},{0x442d,1}}, {{0xe5b,3},{0x129b9,7}}, {{0xe0d,2},{0x13e4,3}}, {{0x1fbb,5},{0x2268,5}}, + {{0x5471,9},{0xe77,3}}, {{0x1567,6},{0x5537,3}}, {{0xf11,1},{0x24bc5,2}}, {{0xb3f1,3},{0xf1f,3}}, + {{0x16084,8},{0xcc9,2}}, {{0xe99,1},{0xe0b,2}}, {{0xf32,2},{0xed6,2}}, {{0x1939,2},{0xe22,2}}, + {{0x65cf,11},{0xe95,2}}, {{0xe78,1},{0x185d,2}}, {{0x1877,7},{0x44b3,4}}, {{0xe5b,3},{0x5ddf,4}}, + {{0xb3f1,3},{0xf35,2}}, {{0x7844,4},{0x1a71,3}}, {{0x24593,6},{0xe86,2}}, {{0xa551,7},{0x23df,5}}, + {{0x7267,6},{0xfa5,2}}, {{0x9219,5},{0x8,1}}, {{0x392d,10},{0xebb,3}}, {{0x4767,1},{0x1debd,2}}, + {{0x1200c,5},{0xe5e,2}}, {{0xf15,1},{0x1e872,2}}, {{0x1ddbe,5},{0x73d6,2}}, {{0x6cde,4},{0x73d6,2}}, + {{0x11eee,5},{0x1ee5b,4}}, {{0x1230,5},{0xf35,3}}, {{0xe97,3},{0xf04,2}}, {{0xaec9,6},{0xed6,2}}, + {{0x56,2},{0x7b,1}}, {{0x91f5,7},{0xe2b,2}}, {{0x7197,8},{0xec3,3}}, {{0x17be8,5},{0xfdd,4}}, + {{0x1677,3},{0x142a,3}}, {{0xf22,2},{0x78d0,3}}, {{0x12830,5},{0xeed,4}}, {{0x2ed7,7},{0x5724,3}}, + {{0xedd,1},{0xf03,3}}, {{0x478f,3},{0x109b,2}}, {{0x28c1,6},{0x5ddd,5}}, {{0xf22,2},{0x4c16,3}}, + {{0xe0f,4},{0x1523,4}}, {{0x187c8,6},{0x127c,3}}, {{0x65e9,4},{0x174a,4}}, {{0x4767,1},{0x1f120,6}}, + {{0x145e0,6},{0x1288,4}}, {{0x2f577,4},{0x1a66,1}}, {{0xdf5f,6},{0xfc8,3}}, {{0x1a07,3},{0x2b89,3}}, + {{0xcd2d,4},{0xcd3,1}}, {{0x125d,6},{0x8b9c,5}}, {{0x9e,2},{0x21,1}}, {{0x4edf,4},{0x12fe,2}}, + {{0xb685,5},{0x1511,6}}, {{0xec3,3},{0x129a,6}}, {{0xc015,4},{0x7f90,5}}, {{0x4853,3},{0x16a41,7}}, + {{0xf,1},{0x1f4,2}}, {{0x112b,4},{0x44ad,3}}, {{0x23dab,5},{0x1c8b,3}}, {{0xe29,2},{0xec6,3}}, + {{0xf89,3},{0x14381,7}}, {{0xb69d,4},{0xcd3,3}}, {{0xc015,4},{0x2f41,5}}, {{0xfb7,4},{0xec6,3}}, + {{0x132d0,5},{0x11dc,5}}, {{0x20571,2},{0x11,1}}, {{0x2a47,3},{0x9c92,7}}, {{0x28ca0,4},{0x28cab,3}}, + {{0x29cf,3},{0x1efee,3}}, {{0x51f4,7},{0xec6,3}}, {{0x2b46,4},{0xe78,1}}, {{0xabc6,3},{0xc29d,3}}, + {{0x12e5,3},{0x1db44,2}}, {{0x2d25,8},{0x1702,4}}, {{0x2880c,5},{0xe7f,2}}, {{0x6,2},{0xe09,1}}, + {{0x70af,2},{0x12320,5}}, {{0x180a,3},{0xe11,1}}, {{0x169c6,6},{0x1004,3}}, {{0x10a3,3},{0x13125,6}}, + {{0x1a07,5},{0xfeac,3}}, {{0xe78,2},{0x1025,1}}, {{0x2b0a8,6},{0xc27b,2}}, {{0xe71,2},{0x8441,4}}, + {{0x751a,2},{0x1579,3}}, {{0x6eeb,5},{0x18b4,3}}, {{0x11817,5},{0x3537,2}}, {{0x3eb3,8},{0x12bf,4}}, + {{0x457b,5},{0x10018,5}}, {{0xc05f,4},{0xf86,2}}, {{0x18ece,4},{0x18ed2,6}}, {{0xc7e9,7},{0x1059,3}}, + {{0x2948,3},{0xe2f,1}}, {{0x393b,5},{0x1292f,5}}, {{0x325,2},{0x9f,1}}, {{0x2cf7b,5},{0xe0f,1}}, + {{0xe9d0,7},{0x14ab,4}}, {{0xe7d,2},{0x3315,3}}, {{0xed6,2},{0xcd3,1}}, {{0x10aa4,5},{0xe11,2}}, + {{0x464d,5},{0x1003,3}}, {{0x1de9f,6},{0xec6,3}}, {{0x24f2,5},{0x5eaf,4}}, {{0xfa6,3},{0xe0b,4}}, + {{0x2de93,4},{0x19a,2}}, {{0xb115,6},{0x104d4,3}}, {{0x2ba5,1},{0x3642,2}}, {{0xf48e,6},{0xed6,2}}, + {{0xbfc1,5},{0x18af7,5}}, {{0x5638,7},{0x6ead,4}}, {{0x18ec6,8},{0x18ece,10}}, {{0x4861,4},{0xe71,1}}, + {{0x17661,2},{0xf15,1}}, {{0x4a56,7},{0x4a5d,6}}, {{0x154fe,6},{0xc39f,4}}, {{0x6bb,2},{0x57,1}}, + {{0xcc8,1},{0xe0b,4}}, {{0x18dea,5},{0x386f,4}}, {{0x17ac9,2},{0x1e869,2}}, {{0x1007,5},{0xe61,2}}, + {{0x4,1},{0x10cb,4}}, {{0x20380,4},{0x2d638,2}}, {{0x29cf,3},{0x6452,4}}, {{0xcbd,1},{0x8428,3}}, + {{0xc281,6},{0xc287,2}}, {{0x10e9,9},{0xcc9,2}}, {{0x2058b,3},{0x1347,3}}, {{0xfd1,9},{0xfb0,3}}, + {{0x24d5e,2},{0xf0c,1}}, {{0xcc8,1},{0xeb5,2}}, {{0x7489,5},{0x5c07,8}}, {{0x9609,8},{0xcce,2}}, + {{0xb8c5,4},{0x29a2f,3}}, {{0xc36,8},{0xc36,4}}, {{0x2afaf,4},{0x1db33,3}}, {{0x1141,4},{0xcd3,2}}, + {{0xf89,3},{0x9,1}}, {{0xe08,1},{0x1062,2}}, {{0x478f,3},{0x2ee9,3}}, {{0xf499,8},{0x1fc7,3}}, + {{0xe2f,1},{0x6,1}}, {{0x156e,3},{0xcc7,1}}, {{0x70fb,5},{0x1084,3}}, {{0x1047,3},{0x1303,4}}, + {{0x6aa2,8},{0x3063,5}}, {{0x445d,2},{0x30665,2}}, {{0x2e280,3},{0x0,1}}, {{0xccb,2},{0x3063,5}}, + {{0x169b,6},{0xe11,1}}, {{0x17664,4},{0x24677,4}}, {{0xf9d,3},{0xfa9,4}}, {{0x24ddb,6},{0xe95,2}}, + {{0x10e77,5},{0x10e7c,6}}, {{0x2f577,4},{0xedd,1}}, {{0x4d72,3},{0xe0d,2}}, {{0x6b3e,5},{0xe69,6}}, + {{0xe32,1},{0x140dc,4}}, {{0x2948,4},{0x15399,2}}, {{0xc5fa,6},{0x6008,3}}, {{0x1967,3},{0x19cec,4}}, + {{0x12d4,3},{0x5897,3}}, {{0x2e3d,6},{0xf59,3}}, {{0x513e,8},{0x1523,4}}, {{0x2de81,4},{0x314,2}}, + {{0x1133c,5},{0x621e,5}}, {{0x12268,6},{0x4,1}}, {{0x40d5,6},{0x1cd3,2}}, {{0x18c28,7},{0xc29d,3}}, + {{0x1019,6},{0xff38,4}}, {{0x2948,3},{0x2b83,2}}, {{0x1f5c1,6},{0x1f282,3}}, {{0x159e0,7},{0xc3d0,3}}, + {{0xe97,3},{0x1230c,2}}, {{0x1967,3},{0x7974,4}}, {{0x1569,3},{0xccb,2}}, {{0x1092,7},{0x4ca6,6}}, + {{0xc1ad,5},{0x153a,3}}, {{0x3739,2},{0xe69,5}}, {{0x478f,3},{0x22b16,5}}, {{0xbccd,4},{0x28242,3}}, + {{0xe22,2},{0xad34,3}}, {{0x1fe8,5},{0xe41e,6}}, {{0x4ef5,4},{0xf70,2}}, {{0x1bb75,6},{0xf91,3}}, + {{0x1979,6},{0x204a,7}}, {{0x2e273,1},{0x30dfd,2}}, {{0xf0a,3},{0x840c,8}}, {{0x17f9e,4},{0x252b7,4}}, + {{0x1b8a,4},{0xe77,3}}, {{0xcbd,1},{0x149f,3}}, {{0x27e0,3},{0x71b8,6}}, {{0xf,1},{0x6cc,2}}, + {{0x2c6eb,4},{0x1debd,2}}, {{0x11ec2,5},{0x18c41,5}}, {{0xf4f,1},{0xede,1}}, {{0xe32,1},{0x1372,4}}, + {{0xe1f,3},{0x48d0,2}}, {{0x1019,4},{0x1059,3}}, {{0xe1f,3},{0x24607,2}}, {{0x403b,8},{0x3155,6}}, + {{0x21eeb,6},{0xe95,2}}, {{0x1459a,6},{0x1a9a,4}}, {{0x433d,4},{0xeb9,5}}, {{0x149f,3},{0xf91,3}}, + {{0x9f,1},{0x302,2}}, {{0x10a3,5},{0xe31,2}}, {{0x1a9a,4},{0xed6,2}}, {{0x10a,2},{0xd,1}}, + {{0xed1,4},{0x8ab6,7}}, {{0x29a4,4},{0xe0a,1}}, {{0x1787,6},{0x1159,4}}, {{0x29fc,5},{0xcce,2}}, + {{0x1947,6},{0x1780,3}}, {{0x1e53,5},{0x1380,5}}, {{0x15e7,5},{0x1e5e,4}}, {{0x5190,3},{0x1150,2}}, + {{0x17314,3},{0x2b89,3}}, {{0x25083,4},{0x9a5,2}}, {{0x7636,5},{0x37ba,7}}, {{0x1240,2},{0x11b5,2}}, + {{0x1d0a1,5},{0x1a9a,4}}, {{0xe11,2},{0xcd2,2}}, {{0x2b4fe,2},{0x30391,2}}, {{0xe0a,1},{0xcd4,2}}, + {{0xe3d7,6},{0x27dc,4}}, {{0x19b9,1},{0x1dcb4,2}}, {{0x1527,8},{0x5342,3}}, {{0x3640,4},{0xe11,1}}, + {{0x18764,5},{0xcc3,2}}, {{0x2bd7,3},{0x9a9,2}}, {{0x1a66,1},{0xcbd,2}}, {{0x182c8,7},{0xfb8,3}}, + {{0xeb5,2},{0xcc3,2}}, {{0xe67,2},{0xf35,2}}, {{0x8ccd,9},{0xed9,2}}, {{0x1c880,6},{0xe6b,3}}, + {{0x666,2},{0xe,1}}, {{0x1be,2},{0x479,2}}, {{0x1e65,3},{0xed9,2}}, {{0x1a19,3},{0x15af,3}}, + {{0xeaa,2},{0x1ba9,7}}, {{0x1f9d,5},{0x160f,7}}, {{0x74f9,2},{0xf0c,1}}, {{0xccd,1},{0x101f,2}}, + {{0xf205,4},{0xce8e,4}}, {{0x3dc5,7},{0x3dcc,7}}, {{0x181e2,9},{0x2,1}}, {{0x23c4b,3},{0xe09,1}}, + {{0x27e0,3},{0x14f9,3}}, {{0x5457,7},{0x2429,6}}, {{0x9a8,1},{0x23ea,4}}, {{0x236c,4},{0x1155,2}}, + {{0x5534,4},{0x133c4,6}}, {{0x56c7,5},{0x11d9,3}}, {{0x450f,5},{0xec6,3}}, {{0x3273,8},{0x18b1,5}}, + {{0xf89,3},{0x231f6,4}}, {{0x1f729,5},{0x386f,4}}, {{0x1ea6f,4},{0x48d2,3}}, {{0xb241,10},{0xe95,2}}, + {{0x17661,2},{0xe0f,1}}, {{0xc099,9},{0xc0a2,3}}, {{0x3433,6},{0x3439,4}}, {{0xab39,9},{0xe6b,3}}, + {{0x26233,6},{0xe0d,2}}, {{0x46af,3},{0xf8e,3}}, {{0x1967,3},{0xe11,1}}, {{0x19b7,3},{0x1288,4}}, + {{0x6053,8},{0x13e3,4}}, {{0x4217,5},{0x2268,5}}, {{0x10a3,3},{0x9b4d,4}}, {{0x12d4,5},{0xec5,4}}, + {{0x183f6,4},{0x1c85,3}}, {{0x1152b,5},{0x296f,3}}, {{0x45,1},{0x1ac,2}}, {{0x486f,4},{0x3170,3}}, + {{0x2006,4},{0x4fa8,3}}, {{0xe1f,3},{0x29620,4}}, {{0xf15,1},{0xe989,5}}, {{0x2b0a8,4},{0x2b4f2,2}}, + {{0x2dbf,5},{0xca35,6}}, {{0xa701,6},{0x94a7,6}}, {{0xf89,3},{0xb64e,7}}, {{0x14d88,7},{0xec6,3}}, + {{0x4853,4},{0xe22,2}}, {{0x2b46,4},{0x386f,4}}, {{0x8439,5},{0xfb8,3}}, {{0xcc7,1},{0x3306,7}}, + {{0x16692,6},{0x1b80,3}}, {{0xaebd,5},{0x2364,4}}, {{0x1e4d1,4},{0xed6,2}}, {{0x78ed,2},{0xedd,1}}, + {{0x7518,4},{0x169b,8}}, {{0xe99,1},{0x1a101,4}}, {{0xf,1},{0xd,2}}, {{0x7518,4},{0x1230c,2}}, + {{0xe89,2},{0xe31,2}}, {{0x1384,2},{0xf91,3}}, {{0x478f,3},{0x74f3,2}}, {{0x30853,2},{0x2b0aa,2}}, + {{0x1a07,3},{0x66c1,4}}, {{0xed9,2},{0xed5,4}}, {{0x688,2},{0x69,1}}, {{0x2bd5,7},{0xcd3,2}}, + {{0xf11,1},{0x2b88,4}}, {{0x115e,5},{0xe5e,2}}, {{0xfc7,3},{0x331f,4}}, {{0xf22,2},{0x6d42,4}}, + {{0x28c1,4},{0x1b91e,5}}, {{0x4853,3},{0x101c,3}}, {{0x111a,3},{0xd886,4}}, {{0xead8,7},{0xe0b,4}}, + {{0x471f,6},{0x4d83,6}}, {{0x1487,4},{0x129b9,4}}, {{0x125d,5},{0x6,1}}, {{0x2a47,3},{0x29922,2}}, + {{0xb0,2},{0xd,1}}, {{0x45c7,2},{0xfb7,3}}, {{0x4781,3},{0x102a2,4}}, {{0xe0d,2},{0xcd3,2}}, + {{0x11ddb,7},{0x11de2,4}}, {{0xcc7,1},{0x93b4,7}}, {{0xe0f,1},{0xcbd,1}}, {{0x20f6,10},{0x18b4,3}}, + {{0x7414,3},{0x442d,1}}, {{0x17e7,7},{0xe77,3}}, {{0x1bef,2},{0xcc8,1}}, {{0x1967,3},{0x997a,7}}, + {{0x1c3f7,5},{0xec6,3}}, {{0x4845,8},{0xfbb,3}}, {{0x1827,5},{0xe67,2}}, {{0x2d51b,4},{0xe21,1}}, + {{0xe21,1},{0x204e0,2}}, {{0x2f71,5},{0x1d3c,3}}, {{0xf3a,2},{0x9905,4}}, {{0x111a,3},{0x2e32,3}}, + {{0x12f6,4},{0x9fb7,6}}, {{0x836d,6},{0x3075,6}}, {{0x77f2,3},{0x1d2f,6}}, {{0x28fd,6},{0x4397,8}}, + {{0x1692,2},{0x2b7a,3}}, {{0x2a47,3},{0x1a66,1}}, {{0x1837,5},{0x1279,5}}, {{0xe97,3},{0x62f3,4}}, + {{0xb7a5,5},{0xf3a,3}}, {{0x712f,4},{0xee9,2}}, {{0x9f,1},{0x260,2}}, {{0x2617b,5},{0xe0c,3}}, + {{0x29f7,4},{0x2dd7,4}}, {{0x478f,3},{0x258de,5}}, {{0x14356,6},{0x10d3,3}}, {{0x143a6,6},{0x1569,4}}, + {{0x66c6,11},{0xcc9,2}}, {{0x2d13d,5},{0xe11,1}}, {{0x206,2},{0x314,2}}, {{0x2e2b3,2},{0x789d,2}}, + {{0x4765,3},{0x48d6,2}}, {{0xa,2},{0x9a8,1}}, {{0x251f,6},{0xf02,2}}, {{0x4765,3},{0xb37c,3}}, + {{0xf11,1},{0xcd3,1}}, {{0x11b3,4},{0xe71,1}}, {{0xe16,2},{0x7cd7,4}}, {{0xf4f,1},{0x4,1}}, + {{0x1f38,1},{0x5538,2}}, {{0x1987,5},{0x164c,11}}, {{0x9df5,7},{0xfdf,4}}, {{0x2ba5,1},{0xe7d,2}}, + {{0x58cf,7},{0x6d07,3}}, {{0x1567,6},{0x5f22,3}}, {{0xe29,2},{0xe11,1}}, {{0x113f,2},{0xeee,3}}, + {{0x178e,3},{0x1702,4}}, {{0x20571,4},{0x20571,4}}, {{0x19628,6},{0x3315,3}}, {{0x6fd0,5},{0x3537,2}}, + {{0x9645,8},{0x3caa,3}}, {{0x10a3,3},{0xcd3,1}}, {{0x71cb,7},{0xe69,5}}, {{0xe88,3},{0x1dc2,5}}, + {{0x16688,7},{0x1be9,3}}, {{0x24603,5},{0x1067f,3}}, {{0x7414,3},{0x12a2a,4}}, {{0x4f36,5},{0x85f9,4}}, + {{0x201f4,7},{0xfb0,2}}, {{0x125d,6},{0xe5e,2}}, {{0x1131,3},{0x4415,3}}, {{0x72cf,4},{0xfda,5}}, + {{0x1a27,4},{0x1050,4}}, {{0x17902,5},{0x1265,5}}, {{0xb69d,3},{0x4,1}}, {{0x25583,6},{0xe7f,2}}, + {{0x15fb,3},{0x437c,7}}, {{0x15fe,4},{0xebb,3}}, {{0x1caf,11},{0x126a,4}}, {{0x1747,7},{0xe67,2}}, + {{0xe09,1},{0x1265,5}}, {{0x4853,3},{0x2de2b,2}}, {{0xbba1,5},{0x1943,2}}, {{0xcc1,1},{0xf35,2}}, + {{0x18796,6},{0x1a71,3}}, {{0x2922d,6},{0xcd3,1}}, {{0xe2f,1},{0x17661,3}}, {{0x1357,1},{0x2e273,1}}, + {{0x114d,4},{0xfe0,2}}, {{0x3d55,5},{0xeb4,3}}, {{0xe0a,1},{0x8441,4}}, {{0xe16,1},{0xe11,2}}, + {{0x9099,8},{0x13c3,4}}, {{0x29c0,3},{0x2271,3}}, {{0xe21,1},{0x1153,2}}, {{0xf65,4},{0xc5bc,7}}, + {{0x1c91,4},{0xf1d,1}}, {{0x2280,2},{0xf62,3}}, {{0xe99,1},{0xe11,1}}, {{0x2de57,3},{0x44,2}}, + {{0x161a6,8},{0x2,1}}, {{0x30a13,3},{0x2e27d,1}}, {{0x1a66,1},{0x1303,3}}, {{0x100f9,6},{0x318e,5}}, + {{0x4757,9},{0xeed,4}}, {{0x18796,6},{0x2ba7,4}}, {{0x101d,3},{0x27d7,2}}, {{0xf15,1},{0x2675d,2}}, + {{0x2e2b3,2},{0x2e7c0,2}}, {{0x10c5,5},{0x1252,3}}, {{0xed9,2},{0xc3d0,4}}, {{0x1a66,1},{0xe95,2}}, + {{0xe33,1},{0xe2b,2}}, {{0x28d0,4},{0x28a71,3}}, {{0x1faa4,6},{0xec6,3}}, {{0x2a83,4},{0x18b4,3}}, + {{0x113e3,3},{0x7a36,3}}, {{0x3203,7},{0x10bb,4}}, {{0x2b0a8,4},{0x18eca,2}}, {{0x425d,8},{0x1839,3}}, + {{0x292c,6},{0xfa9,4}}, {{0x677,2},{0x9f,1}}, {{0xe1f,3},{0x2efdb,2}}, {{0xcc1,2},{0x122d,4}}, + {{0x8c07,4},{0x4b15,4}}, {{0x3d63,5},{0x51c8,5}}, {{0xed9,2},{0x29f3,3}}, {{0x495f,6},{0x2872,4}}, + {{0x5,2},{0x9,2}}, {{0xe5b,3},{0x809a,3}}, {{0x4765,3},{0xefa,2}}, {{0x3ff5,6},{0xe25,2}}, + {{0x112bb,5},{0xed9,2}}, {{0xebe,5},{0xeee,3}}, {{0xc54a,8},{0xec6,3}}, {{0x1840a,4},{0x90b3,4}}, + {{0x1162a,6},{0x1059,3}}, {{0x3005f,4},{0xd,1}}, {{0x58b5,6},{0x1392,3}}, {{0x1787,6},{0x5eaf,4}}, + {{0xf4f,1},{0x5,2}}, {{0x4199,5},{0x6185,3}}, {{0x29c0,3},{0x2ccae,3}}, {{0x1a9fe,4},{0xcd3,2}}, + {{0x1a66,1},{0x6,2}}, {{0x2d38f,4},{0xf0c,1}}, {{0x185ca,7},{0x127c,3}}, {{0x1085,3},{0xa,2}}, + {{0x534,2},{0x8d,1}}, {{0x307bb,1},{0x30352,2}}, {{0x1467,4},{0x9e08,4}}, {{0x5e58,6},{0x1225a,4}}, + {{0x4765,3},{0x5e27,3}}, {{0x30762,2},{0x30762,2}}, {{0x18f9,2},{0x142a,3}}, {{0x833d,5},{0xcfb5,6}}, + {{0xbff1,6},{0xf7a,2}}, {{0x7219,5},{0x8,1}}, {{0xb99d,7},{0x103e,5}}, {{0xe11,1},{0x775c,4}}, + {{0xf11,1},{0x1be9,3}}, {{0x1a07,3},{0x15fc,2}}, {{0x18f7,4},{0xcd3,2}}, {{0x28fdf,2},{0x7416,1}}, + {{0x1cbeb,6},{0xe67,2}}, {{0x2ee64,4},{0x4767,1}}, {{0x1019,4},{0x1278,4}}, {{0x1607,5},{0x6326,5}}, + {{0xf80,2},{0xe09,1}}, {{0xee4,4},{0xf59,2}}, {{0x504d,3},{0x6,1}}, {{0x28d0,4},{0x8b00,4}}, + {{0x74bd,5},{0x98f6,7}}, {{0xe08,1},{0x29bfe,2}}, {{0x1bbf,4},{0x145b,2}}, {{0x2f9b,4},{0xd886,4}}, + {{0x236c,4},{0x2663,5}}, {{0xebe,4},{0x2517,8}}, {{0xef7,3},{0x168a,3}}, {{0x18e7,10},{0xe69,6}}, + {{0x3807,10},{0xeee,3}}, {{0x4ef5,4},{0x1d06,3}}, {{0xbd09,7},{0xf1d,2}}, {{0xe11,1},{0x319a,3}}, + {{0x2054a,2},{0x1e57e,2}}, {{0xebe,3},{0x1b872,6}}, {{0xfb0,2},{0x1692,3}}, {{0xad6d,4},{0x2,1}}, + {{0x1857,4},{0x9a6,1}}, {{0xed1,5},{0x164c,3}}, {{0x4ef5,4},{0x4ef9,9}}, {{0x3e0b,7},{0x3e12,7}}, + {{0xf79,3},{0x1489,2}}, {{0x9da1,5},{0xf80,2}}, {{0x2a5ef,4},{0x2a5f3,3}}, {{0xe97,3},{0x2a4e2,2}}, + {{0x2,1},{0x1943,2}}, {{0x11541,4},{0xed9,2}}, {{0xee4,4},{0xef2,4}}, {{0x11d83,7},{0x6b0f,4}}, + {{0x1937,4},{0x4fa8,3}}, {{0x4f36,5},{0x13271,5}}, {{0x1219,6},{0x44a4,4}}, {{0xe33,1},{0x4767,1}}, + {{0x2ed7,7},{0x2dd7,4}}, {{0xcd2,2},{0x1d74,3}}, {{0xe0f,1},{0x1057,1}}, {{0x27ef,7},{0x6d19,6}}, + {{0x16c1e,5},{0x16c23,5}}, {{0x16fd6,3},{0x1d970,4}}, {{0xb7a5,7},{0xb7ac,5}}, {{0xada9,8},{0xfb8,3}}, + {{0x10b6a,5},{0x39a2,4}}, {{0xf0c,1},{0xf12,3}}, {{0x1d991,4},{0xec6,3}}, {{0xae99,7},{0x83a4,5}}, + {{0x1947,5},{0xd8c7,5}}, {{0x1ee71,7},{0x1cd3,2}}, {{0x2260,4},{0xec6,3}}, {{0x2de63,3},{0x44,2}}, + {{0x1a26d,7},{0xe8a,2}}, {{0x74f9,2},{0x12154,3}}, {{0x2de75,3},{0x3be,2}}, {{0x2ecb3,2},{0xe33,1}}, + {{0xf11,1},{0xe11,1}}, {{0x9,1},{0x1b5c6,5}}, {{0x7d0f,4},{0xcc9,2}}, {{0x31d9,8},{0xe0b,4}}, + {{0x7d0d,6},{0x2571,5}}, {{0x4765,3},{0xdd0a,3}}, {{0xf0c,1},{0x6,1}}, {{0x1e15d,6},{0xe636,2}}, + {{0xe78,2},{0xe32,1}}, {{0x2507b,5},{0x25080,3}}, {{0xede,1},{0x1e77,3}}, {{0xed1,4},{0x534e,5}}, + {{0x2015,3},{0xe0b,2}}, {{0xb42d,5},{0x2dc6,4}}, {{0x12a1,4},{0xeea,3}}, {{0x4781,3},{0x11a6,2}}, + {{0x2271,3},{0xb,1}}, {{0xe16,1},{0x9,1}}, {{0x11373,4},{0xbb8b,2}}, {{0x3b5d,5},{0x3075,6}}, + {{0x1f582,5},{0xf62,3}}, {{0x12d4,4},{0xe5e,2}}, {{0xede,1},{0x6,1}}, {{0xf15,1},{0x7416,1}}, + {{0x27e0,4},{0x1d32,3}}, {{0x7414,3},{0x145b,2}}, {{0x2d83f,4},{0xede,1}}, {{0x17b0c,4},{0x19503,4}}, + {{0xbb4,4},{0xc38,2}}, {{0x7414,3},{0x1889,2}}, {{0x4af2,7},{0xec6,3}}, {{0x1677,3},{0x4fa8,3}}, + {{0xf,1},{0x164,2}}, {{0x3513,5},{0x2844,4}}, {{0x2015,3},{0x1ea3,3}}, {{0x111a,3},{0x2dd3,7}}, + {{0xcce,3},{0xeed,4}}, {{0x11b96,5},{0xfe6,2}}, {{0xd9ea,7},{0x1893,4}}, {{0x1b0b,7},{0xe77,2}}, + {{0x78f9,1},{0x30352,2}}, {{0x71be,4},{0x246d7,4}}, {{0x12b8f,3},{0xec6,3}}, {{0x73ed,4},{0x11a6,2}}, + {{0xfcb,2},{0x2790,5}}, {{0xecb,2},{0x78cb,10}}, {{0x4765,3},{0x445b,2}}, {{0x1cd3,2},{0xe92,3}}, + {{0x1827,4},{0x39bd,4}}, {{0x260f,9},{0x3f8e,5}}, {{0x4853,3},{0x48d0,2}}, {{0x92fd,6},{0xf62,3}}, + {{0x10571,8},{0xec6,3}}, {{0xede,1},{0x15df5,5}}, {{0x1b086,5},{0xed6,2}}, {{0xbdb3,3},{0x175c,7}}, + {{0x4853,3},{0xb560,5}}, {{0x1837,6},{0xccaa,4}}, {{0x69,1},{0x1347,3}}, {{0x112b,5},{0x184d,6}}, + {{0x10d90,8},{0x153a,3}}, {{0x4,1},{0xccb,2}}, {{0x21e6,10},{0x13e3,4}}, {{0xf0a,3},{0xcce,3}}, + {{0x1e9e,4},{0x129b9,4}}, {{0x1227c,7},{0xec6,3}}, {{0xccb,2},{0x1da7,7}}, {{0x311a9,4},{0x311a9,2}}, + {{0x1969,1},{0x453b,4}}, {{0xbccd,4},{0x33d3,2}}, {{0xed1,4},{0xf1d,2}}, {{0x12fe,2},{0x8,1}}, + {{0x177cc,5},{0xe6b,2}}, {{0x1967,3},{0x7417,4}}, {{0x4781,3},{0xfe6,2}}, {{0x1155,2},{0x1059,3}}, + {{0x16a7,3},{0x1166,3}}, {{0xf1c3,5},{0xb,1}}, {{0x1857,6},{0xdc01,4}}, {{0x30357,1},{0xaf4,1}}, + {{0xcc1,1},{0xce83,4}}, {{0xc015,4},{0x1efee,3}}, {{0x11b3,4},{0xcc8,1}}, {{0xcc1,1},{0xe78,1}}, + {{0xe0a,1},{0x1132,2}}, {{0x11b5,2},{0x6ec3,3}}, {{0xef7,7},{0xcb9,4}}, {{0x103ae,4},{0xc3c2,7}}, + {{0x1dcef,7},{0xf35,2}}, {{0x12c3,4},{0x122f,3}}, {{0x29cf,3},{0x46bf,1}}, {{0xf65,4},{0x2e1a,7}}, + {{0x11d99,5},{0x18acf,5}}, {{0x1024,2},{0xa,2}}, {{0x12d4,3},{0x1e9a3,6}}, {{0xfa5,2},{0x1132,2}}, + {{0x3b09,4},{0xb496,3}}, {{0x578,2},{0x7b,1}}, {{0x35f3,9},{0x1a68,5}}, {{0xcbd,1},{0xe989,5}}, + {{0x17de6,5},{0x1ec36,4}}, {{0x10760,7},{0xa7e1,4}}, {{0x2ba5,1},{0x148db,4}}, {{0x18de0,5},{0x18de5,5}}, + {{0x16282,7},{0xec6,3}}, {{0x19f7,4},{0x9f4a,3}}, {{0x29f7,3},{0xec5,4}}, {{0xe33,1},{0x2cdaa,3}}, + {{0x478f,3},{0xef8a,7}}, {{0xf0a,3},{0x260e9,2}}, {{0x11,1},{0x2e273,1}}, {{0x450b,4},{0x1dfd,3}}, + {{0xb931,5},{0xed6,2}}, {{0x19a57,7},{0xcc9,2}}, {{0x12e5,4},{0x102d6,6}}, {{0x1373,2},{0x19188,5}}, + {{0x10cb,3},{0x1153,2}}, {{0xf65,4},{0x7cd5,8}}, {{0x3559,4},{0xe78,2}}, {{0xef7,3},{0x2c85,2}}, + {{0xcc1,1},{0xfb0,2}}, {{0xcc8,1},{0x15390,3}}, {{0xfb0,2},{0x34d7,4}}, {{0x451b,2},{0x421a,5}}, + {{0x1761e,6},{0x17624,4}}, {{0x1046,3},{0x1b41,4}}, {{0xa70d,9},{0x14a2,3}}, {{0xf0a,3},{0x7001,3}}, + {{0x695d,9},{0x13e3,4}}, {{0x30311,4},{0xcd6,1}}, {{0xf65,7},{0x13ee,9}}, {{0x5881,5},{0xe11,1}}, + {{0x1768c,8},{0xe0a,2}}, {{0x111b0,7},{0x10c7,4}}, {{0x110be,5},{0xe6b,3}}, {{0x16f7,6},{0x640e,5}}, + {{0x478f,3},{0x2054a,2}}, {{0x9a8,1},{0x2792d,4}}, {{0x7602,4},{0xed6,2}}, {{0x9a6,2},{0xcd3,1}}, + {{0xbd69,5},{0x26ae,6}}, {{0x41a7,10},{0x6ca7,3}}, {{0x1150,2},{0x4c00,3}}, {{0x6ff7,8},{0x6fff,5}}, + {{0x27d7,2},{0xcc7,1}}, {{0x27e0,3},{0x27544,4}}, {{0x10bb7,4},{0xeb9,5}}, {{0x80a9,8},{0x6452,4}}, + {{0xfc7,3},{0xbc21,4}}, {{0xccb,2},{0x50cd,6}}, {{0x1e1ae,6},{0xee9,3}}, {{0x13082,6},{0x331f,4}}, + {{0x1747,4},{0x179f,7}}, {{0xb3f1,3},{0xeb5,2}}, {{0xf7a,2},{0x16ad,3}}, {{0x7573,5},{0x2319,8}}, + {{0x1a6d2,6},{0xf62,3}}, {{0x190e6,3},{0xe0a,1}}, {{0xe0e0,5},{0x2268,5}}, {{0xe31,2},{0x10561,5}}, + {{0x30118,4},{0x8d,1}}, {{0x9a8,1},{0x1150,2}}, {{0xcc8,1},{0x2f94,3}}, {{0x1a7c5,5},{0xeb5,2}}, + {{0x2966,4},{0xefa,2}}, {{0x8,1},{0xf0c,1}}, {{0xe11,1},{0x123e,3}}, {{0x9cbd,7},{0x34d7,4}}, + {{0xf77,4},{0x189b,4}}, {{0xa519,4},{0x1040,3}}, {{0x662a,6},{0xfa82,5}}, {{0xe7f,2},{0x1e8b,3}}, + {{0x1ceb,8},{0x1cf3,7}}, {{0xb3f1,3},{0x19283,6}}, {{0x1917,7},{0x144e,9}}, {{0x111c8,5},{0xf91,3}}, + {{0x1538c,6},{0x2477,3}}, {{0x6cde,4},{0xb410,4}}, {{0xebe,4},{0x8f1c,5}}, {{0x169b,5},{0x1e8b,4}}, + {{0xe3f8,7},{0x78cf,4}}, {{0x247a,5},{0x4187,3}}, {{0x1be21,6},{0xb496,3}}, {{0x1200c,7},{0x12013,4}}, + {{0x7532,6},{0xe11,1}}, {{0x1747,4},{0xfdc5,6}}, {{0x1189d,4},{0xe09,1}}, {{0x442b,3},{0x1058,3}}, + {{0x1367,3},{0x4d5f,3}}, {{0x1475c,5},{0xf0f,2}}, {{0x4f02,5},{0xe09,1}}, {{0x301b,4},{0x1212c,6}}, + {{0xed4b,6},{0xeca,3}}, {{0x17646,5},{0xf1a,2}}, {{0xcf16,7},{0x1392,3}}, {{0x108b5,9},{0xe95,2}}, + {{0x1290,4},{0x143d,3}}, {{0x5117,5},{0x3b62,4}}, {{0xe101,8},{0x14a2,3}}, {{0xb37c,3},{0x3075,3}}, + {{0x2a47,3},{0x2cde7,2}}, {{0x2de75,3},{0xd,2}}, {{0xe11,1},{0xeee,3}}, {{0x14f7,5},{0x237d,2}}, + {{0x12e5,3},{0x4b11,4}}, {{0x1967,3},{0xfcb,3}}, {{0x10cb,2},{0x1085,3}}, {{0x2de63,3},{0x5bc,2}}, + {{0x1e08,6},{0x1c01,9}}, {{0x16a7,3},{0xf79,3}}, {{0x1a66,1},{0xb37c,3}}, {{0x175c,3},{0x27dc,4}}, + {{0x17148,2},{0x19fa2,4}}, {{0x70ad,4},{0x20bed,3}}, {{0xe97,3},{0x1bc62,5}}, {{0x12e5,3},{0xe7b0,5}}, + {{0x6b41,4},{0xfa6,3}}, {{0x111a,3},{0x1a954,6}}, {{0x9b25,9},{0xec6,3}}, {{0x18ef0,6},{0x18ef6,6}}, + {{0x26235,4},{0xe25,2}}, {{0x100b7,9},{0xcc9,2}}, {{0x4,1},{0xb,1}}, {{0x56,2},{0x8d,1}}, + {{0x24cc3,5},{0x1693,2}}, {{0x613d,6},{0x3a30,7}}, {{0x9b31,8},{0xec6,3}}, {{0x168ae,6},{0x2dd7,4}}, + {{0xb8dd,5},{0x52d9,5}}, {{0x14e5a,5},{0x2091,4}}, {{0x6f8f,8},{0x1be9,3}}, {{0xe65,2},{0xef5,2}}, + {{0x4f29,5},{0x30f4,4}}, {{0x235d,5},{0xfe6,4}}, {{0x12e5,3},{0x9e34,3}}, {{0x1ff7,3},{0x70a6,3}}, + {{0x1c0f,3},{0xf7a,2}}, {{0x12d4,3},{0x31f8,3}}, {{0x16692,5},{0x1bf0,2}}, {{0xadcd,6},{0x12a9,3}}, + {{0x1db51,5},{0x93e6,4}}, {{0xf,1},{0x1e2,2}}, {{0x1467,4},{0x19c14,5}}, {{0xccd,1},{0x13cf1,7}}, + {{0xcaca,6},{0x101e,4}}, {{0x1c91,6},{0xe69,6}}, {{0x1877,5},{0x82b3,6}}, {{0x2de75,3},{0x1f4,2}}, + {{0xee4,13},{0xfdf,4}}, {{0x24653,4},{0x48d8,2}}, {{0x3115,5},{0x6151,6}}, {{0x9f,1},{0x5bc,2}}, + {{0xa3d1,7},{0x1783,4}}, {{0x688,2},{0xe,1}}, {{0x1897,5},{0x61bb,4}}, {{0x8da5,5},{0x1db1,3}}, + {{0x5d7b,6},{0x3b4a,5}}, {{0x8e89,8},{0xe11,1}}, {{0x2a29,5},{0x14a81,4}}, {{0x780a,4},{0x23d2,3}}, + {{0x101f,3},{0xe7f,2}}, {{0x10ff8,5},{0x6cbe,4}}, {{0x46af,3},{0xe99,1}}, {{0xe2b,2},{0xeb7,7}}, + {{0x10cd,2},{0x1692,5}}, {{0x451b,3},{0xec5,4}}, {{0x5770,4},{0x153ff,5}}, {{0x12c3,4},{0x237d,2}}, + {{0x7602,9},{0xf91,3}}, {{0xe33,1},{0xcd3,1}}, {{0x594c,3},{0x138e,3}}, {{0x325,2},{0x45,1}}, + {{0x17f32,3},{0x775c,4}}, {{0x146ee,5},{0xf91,3}}, {{0x1e89b,5},{0x4e62,4}}, {{0xf,1},{0x12e,2}}, + {{0x1317,2},{0x8,1}}, {{0x1537,4},{0x2d1f,6}}, {{0x2e28,4},{0x2e2c,3}}, {{0xc06b,3},{0xec0,3}}, + {{0xaeb1,5},{0xcd3,2}}, {{0x2399,5},{0xe11,1}}, {{0xe22,2},{0xf86,2}}, {{0x3739,2},{0x6008,3}}, + {{0xe75,2},{0xcbd,1}}, {{0x2768,7},{0x1663,4}}, {{0x11801,5},{0x11806,6}}, {{0x307f7,2},{0x205a0,2}}, + {{0x7414,3},{0xf0c,1}}, {{0x181ba,8},{0xe95,2}}, {{0xf1a,2},{0x6,2}}, {{0x3f07,11},{0xe11,1}}, + {{0x46af,3},{0x1085,3}}, {{0x19b7,3},{0x1d7e,3}}, {{0x1ee9e,4},{0x2cf91,2}}, {{0x1dd0a,6},{0xe0c,3}}, + {{0x48ea,6},{0x48f0,7}}, {{0x7351,4},{0x17b38,6}}, {{0x8415,5},{0xebb,3}}, {{0x43fb,3},{0x6,1}}, + {{0x12e7,3},{0xe11,2}}, {{0x1687,5},{0x1b69,3}}, {{0x12e5,3},{0x1fd02,6}}, {{0xd525,9},{0xcc9,2}}, + {{0x70ad,3},{0x15ec,3}}, {{0xe08,1},{0x77bf,5}}, {{0xe92,3},{0x14f9,3}}, {{0xe32,1},{0x1943e,4}}, + {{0x1c55,5},{0xd229,4}}, {{0x9441,5},{0xfdd,6}}, {{0x4767,1},{0xfdf,3}}, {{0x8049,9},{0xec6,3}}, + {{0xda58,6},{0x9203,5}}, {{0x2c223,4},{0xf7a,2}}, {{0x1e139,6},{0x13178,3}}, {{0xf0a,3},{0x26ba,3}}, + {{0xb745,6},{0x8b2f,6}}, {{0x46af,3},{0x1150,3}}, {{0x1ebf,3},{0x6,1}}, {{0x14a7,4},{0xcce,2}}, + {{0x1939,2},{0x4fa2,8}}, {{0x8661,7},{0xe69,5}}, {{0x307e8,2},{0x307e8,2}}, {{0x2489,7},{0x1231,4}}, + {{0xee59,3},{0xe0a,1}}, {{0x8c79,7},{0x3075,4}}, {{0x14806,5},{0x1480b,5}}, {{0x1019,4},{0xdc6f,4}}, + {{0x75ce,4},{0x6411,4}}, {{0xe80,2},{0xd4b1,6}}, {{0x4f43,9},{0xef3,4}}, {{0x1347,3},{0x21,1}}, + {{0xb199,5},{0x821f,5}}, {{0x7d0d,6},{0x795f,6}}, {{0xef7,3},{0xbde4,6}}, {{0x1969,1},{0x2cbee,3}}, + {{0x1969,1},{0x9372,3}}, {{0x6cd1,6},{0xcc9,2}}, {{0xe5b,3},{0xe6b,3}}, {{0x3,1},{0xe11,1}}, + {{0x48ea,6},{0x2eec,4}}, {{0x1367,3},{0x2476,4}}, {{0x73e0,7},{0xf85,4}}, {{0x1189f,2},{0xf16,2}}, + {{0x6af0,9},{0xec6,3}}, {{0x6bb,2},{0xe,1}}, {{0x1977,3},{0x1003,3}}, {{0x2d11,3},{0xf92,2}}, + {{0xf77,3},{0xf16,2}}, {{0x1cfa,5},{0xd3eb,6}}, {{0xbb89,4},{0x39a1,5}}, {{0x1c19,9},{0xfdd,6}}, + {{0x1518e,5},{0xf61,2}}, {{0x2270,4},{0xebc,2}}, {{0x17eea,6},{0x17ef0,4}}, {{0xe71,1},{0xf79,3}}, + {{0x1687,4},{0xed7d,5}}, {{0x250ab,5},{0x2,1}}, {{0xe11,2},{0x6ca7,3}}, {{0xe1f,3},{0x716c,4}}, + {{0x1c91,6},{0xec6,3}}, {{0x1a49b,6},{0xec6,3}}, {{0x7518,4},{0x1099,8}}, {{0x2b50b,4},{0x2b50b,2}}, + {{0x113f,2},{0xe89,3}}, {{0x1c91,4},{0xcb8,1}}, {{0x9945,10},{0xe95,2}}, {{0x688,2},{0x8d,1}}, + {{0x2e7c4,6},{0xc38,2}}, {{0x81a5,6},{0x44b3,4}}, {{0x4853,3},{0x1f38,1}}, {{0x19b9,4},{0x1cf3,6}}, + {{0xf,1},{0x11c,2}}, {{0x19e7,5},{0x158e,2}}, {{0x2a3fe,5},{0xf7a,2}}, {{0xe33,1},{0x74f9,2}}, + {{0x80fd,6},{0x44b3,4}}, {{0xe31,2},{0x17b0,3}}, {{0x9b25,9},{0xcc9,2}}, {{0x1967,3},{0xec6,3}}, + {{0x5534,6},{0x1392,3}}, {{0x1d4a3,6},{0x1d75,3}}, {{0x3329,7},{0x1177,7}}, {{0x1367,3},{0x62f3,4}}, + {{0x11b94,5},{0x165a7,4}}, {{0x1c475,6},{0x2b89,3}}, {{0x1fe31,6},{0x1046,3}}, {{0x4765,3},{0x2f2e,4}}, + {{0xe2b,2},{0xe09,1}}, {{0x1877,5},{0x12e11,4}}, {{0xccd,1},{0x2f41,4}}, {{0x14d4c,5},{0x13e4,3}}, + {{0x10eb9,8},{0xe95,2}}, {{0xcbd,1},{0x142d,3}}, {{0x1f875,1},{0x442d,1}}, {{0x1967,3},{0x74f3,2}}, + {{0xe67,2},{0xe6c,3}}, {{0xff20,6},{0xff26,5}}, {{0x10a3,3},{0x30c9,6}}, {{0x1b89c,6},{0x3075,3}}, + {{0xfb8,3},{0xfbb,4}}, {{0xb691,7},{0xe69,5}}, {{0xed1,3},{0xe61,2}}, {{0x578,2},{0x69,1}}, + {{0x19b7,3},{0x1b80,3}}, {{0xcc7,1},{0xcd3,3}}, {{0x3a45,8},{0x3a4d,6}}, {{0xe83,5},{0x310c,4}}, + {{0x26243,5},{0x1cac,3}}, {{0xef5,2},{0xe0a,1}}, {{0x188,2},{0x314,2}}, {{0x20f6,5},{0x2c75,6}}, + {{0x478f,3},{0xefa,2}}, {{0x16a7,3},{0x1cf3,3}}, {{0x6ee6,5},{0xe0f9,3}}, {{0xe1f,3},{0x1692,2}}, + {{0x15e7,7},{0x93dc,5}}, {{0x4599,3},{0x3144,5}}, {{0x2e2f,6},{0x59b4,3}}, {{0xfc7,3},{0x138e,3}}, + {{0x4065,9},{0x13e3,4}}, {{0x12e5,3},{0x2a7f8,4}}, {{0x39d5,5},{0xe7f,2}}, {{0x10ad0,8},{0xe1c,3}}, + {{0x23fcb,7},{0xe11,1}}, {{0x1677,3},{0xb1a1,4}}, {{0x4519,4},{0xa,2}}, {{0xee4,4},{0x1db1,3}}, + {{0xf4f,1},{0xf12,3}}, {{0x3203,5},{0x37bc,5}}, {{0x10e1f,4},{0x2280,2}}, {{0xb5e9,4},{0x3915,4}}, + {{0x9e55,4},{0x9e59,8}}, {{0x2b46,4},{0x7,2}}, {{0xf65,4},{0xf9f,4}}, {{0xd9f5,8},{0x249f,3}}, + {{0xf15,1},{0x142a,3}}, {{0x116ac,5},{0x1025,1}}, {{0x1dbd,10},{0x1dc7,5}}, {{0x30118,4},{0xe,1}}, + {{0xebe,5},{0x378e,9}}, {{0xbde1,9},{0x1152,3}}, {{0x109ff,8},{0xf35,2}}, {{0x1c91,4},{0x1373,3}}, + {{0x425d,5},{0x2dd3,7}}, {{0x1a07,3},{0x78ed,2}}, {{0x5,1},{0x5e94,5}}, {{0x1c382,5},{0xfb8,3}}, + {{0x16340,6},{0x1bf0,2}}, {{0x48a7,5},{0xe11,1}}, {{0x56c7,5},{0xfe5,3}}, {{0x1787,6},{0xf16,2}}, + {{0x4765,3},{0x7a14,5}}, {{0x1e9e,4},{0xfe8,2}}, {{0x11352,5},{0x45f5,4}}, {{0x20bc,8},{0xcc9,2}}, + {{0x2948,3},{0x1db3b,2}}, {{0xe1f,3},{0x9b99,4}}, {{0x1f10b,5},{0x6cd6,4}}, {{0xe97,3},{0x2edd6,2}}, + {{0x17678,7},{0x1fc7,3}}, {{0x3755,3},{0x15413,5}}, {{0x2b84,2},{0xcc3,3}}, {{0x1997,4},{0x10b9,2}}, + {{0x6b7f,9},{0x296f,3}}, {{0xf4f,1},{0xe0d,2}}, {{0x9a6,1},{0x3,1}}, {{0x83b5,7},{0xbd1a,4}}, + {{0x1967,3},{0x4,1}}, {{0x2de87,4},{0x21,1}}, {{0x24bdf,2},{0x1e57e,2}}, {{0x2ced,9},{0x14a2,5}}, + {{0x2b84,2},{0xcb9f,4}}, {{0xfabe,5},{0x44b3,4}}, {{0x1cf27,6},{0x12a9,3}}, {{0xe1f,3},{0xf11,1}}, + {{0xccd,1},{0xdb21,3}}, {{0x97a1,5},{0x1ce6,5}}, {{0x1857,5},{0x149f,3}}, {{0x29a4,4},{0x159c,4}}, + {{0x255ab,6},{0xe67,2}}, {{0xe11,2},{0xe0a,1}}, {{0x2d79,4},{0x56a8,5}}, {{0x7108,6},{0xfb8,3}}, + {{0x1231,4},{0x6e53,4}}, {{0xcc8,1},{0xe32,1}}, {{0x1ebc,5},{0x13f9b,5}}, {{0x1dc8c,6},{0xf50,3}}, + {{0xf415,7},{0x1b41,4}}, {{0x2eb3a,3},{0x307bb,1}}, {{0x24c13,5},{0x1a5e,3}}, {{0x227c,5},{0x1d3c,3}}, + {{0xb595,5},{0x174bb,5}}, {{0x6cde,4},{0xe22,3}}, {{0xbb95,7},{0xbb9c,5}}, {{0x1d991,4},{0xed6,2}}, + {{0xe1b,3},{0xf91,3}}, {{0x19b7,3},{0x59b4,3}}, {{0x46bf,1},{0xf4f,1}}, {{0x1ebc,5},{0xebb,3}}, + {{0x10a3,3},{0xc6bc,4}}, {{0x30118,4},{0x7b,1}}, {{0x1e59e,5},{0x10b6e,3}}, {{0x6,2},{0x2091,4}}, + {{0x9a6,1},{0x9,1}}, {{0x1a66,1},{0xe1c,3}}, {{0xf9f,4},{0xe22,2}}, {{0x3a1b,6},{0x2663,6}}, + {{0x19a7,4},{0xf0d,2}}, {{0xeb5,2},{0xf91,3}}, {{0x1fc0,3},{0x38ec,3}}, {{0x478f,3},{0x2280,2}}, + {{0x206f,6},{0x63cf,5}}, {{0x1827,5},{0x1ce15,4}}, {{0x46af,3},{0x5849,4}}, {{0x4765,3},{0x59c0,5}}, + {{0xaaf,2},{0xaf4,16}}, {{0x1f8e,7},{0xe69,5}}, {{0xc27b,2},{0x2b0aa,2}}, {{0xe7d,2},{0xe7d,2}}, + {{0x1019,11},{0x1663,3}}, {{0xe97,4},{0x1de5c,4}}, {{0x1c73,7},{0x1c7a,8}}, {{0x1e9e,5},{0x9,1}}, + {{0x29a2,10},{0xe69,5}}, {{0x4,2},{0x3b49,6}}, {{0x297eb,6},{0x8,1}}, {{0x1155,2},{0x141a,2}}, + {{0x4af2,7},{0x4af9,6}}, {{0x625b,7},{0x1b80,3}}, {{0x1133c,5},{0xeab,2}}, {{0xcc1,1},{0x1770,7}}, + {{0x178a8,7},{0xebb,3}}, {{0xe5b,4},{0x37c8,5}}, {{0xb349,7},{0x4dc6,4}}, {{0x1397,5},{0x7bfe,7}}, + {{0xbee9,8},{0x386f,4}}, {{0xe83,5},{0x10b9,3}}, {{0x5e5e,4},{0xf91,3}}, {{0x112b,9},{0xe6b,4}}, + {{0x17a26,7},{0xcd3,2}}, {{0x1d69b,5},{0x11d1,4}}, {{0x46af,3},{0x2d122,3}}, {{0x534,2},{0x69,1}}, + {{0x47c7,5},{0x177c,7}}, {{0x8b59,6},{0xd885,5}}, {{0xacc5,6},{0xe5e,2}}, {{0xcbd,1},{0xccd,1}}, + {{0xfb0,2},{0x277e,2}}, {{0xb685,5},{0x87aa,7}}, {{0x11557,7},{0xef3,4}}, {{0x237d,6},{0xe11,1}}, + {{0x9a6,1},{0x2236,3}}, {{0x46af,3},{0x82d5,5}}, {{0x116e3,5},{0x1f281,4}}, {{0x105f,3},{0xfb0,2}}, + {{0x24023,5},{0x127c,3}}, {{0x12d4,3},{0x8eee,4}}, {{0x1899,6},{0x1380,5}}, {{0x1172a,2},{0x6,1}}, + {{0x1766a,2},{0x78ed,2}}, {{0x1ccd,5},{0xedf6,5}}, {{0x29f3,3},{0xe0b,4}}, {{0x24943,6},{0x1150,2}}, + {{0x11541,6},{0x11547,5}}, {{0x1ccd,5},{0x101e,4}}, {{0x1667,7},{0x38e0,7}}, {{0xe16,1},{0x24447,4}}, + {{0x4853,3},{0x4789,5}}, {{0xe11,1},{0xf0d,2}}, {{0x156e,3},{0xe0d,2}}, {{0xfb0,2},{0x50c0,4}}, + {{0x4767,1},{0x3b73,3}}, {{0x5,1},{0xc6dc,5}}, {{0xe08,1},{0x6,1}}, {{0x1967,3},{0x88d4,4}}, + {{0xc27b,2},{0xbb6,2}}, {{0x2437b,5},{0xcd3,1}}, {{0x16bc4,6},{0xe6f6,4}}, {{0x2df3b,4},{0x109,2}}, + {{0x2f71,7},{0x2eb7,4}}, {{0x2de75,3},{0x109,2}}, {{0x2420,9},{0x104a,4}}, {{0x7108,5},{0x2d9a,8}}, + {{0x1db00,5},{0x66c2,3}}, {{0x3591,6},{0x1b2e,3}}, {{0xccd,1},{0x3457,4}}, {{0x5117,5},{0x15399,2}}, + {{0x3fbd,9},{0x18b4,3}}, {{0x2afd0,6},{0x789f,6}}, {{0xb9f1,8},{0xf93,4}}, {{0xe24,3},{0x240b,6}}, + {{0x10b4,4},{0x20dc5,4}}, {{0x11b5,2},{0xe0c,3}}, {{0x11163,5},{0xe67,2}}, {{0xbdb1,5},{0xe22,3}}, + {{0x772d,5},{0x6ec3,3}}, {{0xcc3,2},{0xa,2}}, {{0x29cf,3},{0x48d3,2}}, {{0x7b,1},{0x4bd,2}}, + {{0xfcb,2},{0xf35,2}}, {{0xb9f4,3},{0xf1a,2}}, {{0x25c9b,5},{0x2454,3}}, {{0x1969,1},{0xcd2,2}}, + {{0x7fe9,5},{0x12b37,5}}, {{0x2de81,4},{0xd,1}}, {{0x525c,11},{0xe67,2}}, {{0xf722,7},{0xfdf,4}}, + {{0x11e5f,5},{0xe65,2}}, {{0x2f71,4},{0xe9fe,5}}, {{0x2f71,4},{0x492e,3}}, {{0xe97,5},{0x1e1b,3}}, + {{0x264bb,5},{0x1f7c,3}}, {{0xb421,10},{0xe22,2}}, {{0x29c0,3},{0xf11,1}}, {{0xef7,3},{0xcc91,7}}, + {{0x2a2b,3},{0x15fc,2}}, {{0xbc01,4},{0x5e94,5}}, {{0xc647,8},{0xec6,3}}, {{0x1877,10},{0xe69,5}}, + {{0xc26d,8},{0xc26f,2}}, {{0x17cba,5},{0xeb9,5}}, {{0x12d4,3},{0x7a37,2}}, {{0xaf4,1},{0xb74,1}}, + {{0xcc8,1},{0x3756,3}}, {{0x2ba5,1},{0x74f3,2}}, {{0xe97,3},{0x2270,3}}, {{0x12e5,5},{0xbe3a,7}}, + {{0xe5e7,5},{0xae33,6}}, {{0x12e5,3},{0x11ca,2}}, {{0x1567,6},{0xe31,2}}, {{0x1ff7,4},{0x1040,3}}, + {{0x20571,2},{0x1327,1}}, {{0xb3f1,3},{0x19cec,4}}, {{0x29f3,3},{0x6,1}}, {{0x111c8,3},{0x29f7,3}}, + {{0xe1f,3},{0x1e53e,6}}, {{0x46bd,3},{0x185d,2}}, {{0x46bf,1},{0xb306,5}}, {{0x1f38,1},{0xccd,1}}, + {{0x2d79,7},{0x2842,7}}, {{0x145e,7},{0xcce,2}}, {{0x1f25,8},{0xf7a,2}}, {{0x17420,7},{0xe22,2}}, + {{0x1997,4},{0x5d72,9}}, {{0x1937,4},{0xed9,2}}, {{0xf4f,1},{0xd086,3}}, {{0xe5b,3},{0xab9f,3}}, + {{0xd131,4},{0xf1a,2}}, {{0x1969,1},{0xfb0,3}}, {{0x1019,4},{0x2f94,3}}, {{0x4853,3},{0x4b96,5}}, + {{0x10e77,5},{0x1e1a1,4}}, {{0x566c,6},{0xed5,3}}, {{0x27ef,4},{0xf49d,4}}, {{0x11b89,7},{0x2872,4}}, + {{0x15a6c,7},{0x35a3,3}}, {{0x1677,3},{0x3594,5}}, {{0x12064,5},{0x12069,6}}, {{0x9af,2},{0x30391,2}}, + {{0x12b5,2},{0xf0d,3}}, {{0x478f,3},{0x7968,6}}, {{0x1150,2},{0x395e,5}}, {{0x4979,6},{0x4eb0,4}}, + {{0x1c91,5},{0xe92,3}}, {{0xee4,4},{0xd2e2,6}}, {{0x4137,5},{0xf91,3}}, {{0xe99,1},{0xe2f,1}}, + {{0x28df,5},{0x5c2e,5}}, {{0x9,1},{0xeb5,2}}, {{0xfe6,2},{0x15af,3}}, {{0x11cb,3},{0x28f8,5}}, + {{0x19e9,3},{0xfd4c,5}}, {{0x14fe0,5},{0x4b07,5}}, {{0x2d8d,3},{0x127c,3}}, {{0x1dca7,4},{0x1dcab,5}}, + {{0x252e3,5},{0x7a36,3}}, {{0x1367,3},{0xa076,5}}, {{0x6cc4,11},{0xf86,2}}, {{0x2f3e5,2},{0x1e57e,2}}, + {{0x1e649,7},{0xcc3,2}}, {{0xcb8,1},{0x31f8,3}}, {{0xf1a,2},{0xec3,3}}, {{0x309c,4},{0xec6,3}}, + {{0x10c5,4},{0x4a44,5}}, {{0xf1a,2},{0xe1c,3}}, {{0x4ef5,4},{0x11dc,3}}, {{0x48da,2},{0xe33,1}}, + {{0x4137,5},{0xef4,3}}, {{0x1687,8},{0x5e7a,5}}, {{0xead,3},{0x113f,2}}, {{0x18f7,4},{0x5538,2}}, + {{0x1142e,5},{0x9,2}}, {{0x12e5,3},{0x18773,2}}, {{0xe83,3},{0xfd01,4}}, {{0x479d,4},{0xed5,6}}, + {{0x7643,5},{0x1f91,4}}, {{0x1ebc,5},{0x8eee,4}}, {{0x29de,5},{0xe1b,4}}, {{0x468,2},{0x57,1}}, + {{0x19b7,3},{0x1030e,5}}, {{0x1ae7,3},{0xed9,2}}, {{0xe71,1},{0x1025,1}}, {{0x4781,3},{0xf59,2}}, + {{0xbdb1,5},{0x8,1}}, {{0x1f38,1},{0xcc5,2}}, {{0xe83,3},{0xe32,1}}, {{0x2271,3},{0x15e9,3}}, + {{0x1859,4},{0xe11,1}}, {{0xee4,4},{0xf1d,2}}, {{0x1199a,4},{0x4798,5}}, {{0x64cb,8},{0xe69,5}}, + {{0x5f35,9},{0x1d05,4}}, {{0x486f,4},{0x9a6,1}}, {{0x30118,4},{0xd,1}}, {{0x246a3,5},{0xcd3,2}}, + {{0x47b9,6},{0x1523,4}}, {{0x1467,4},{0x141ad,5}}, {{0xe83,3},{0x1c523,6}}, {{0x1567,6},{0x5699,7}}, + {{0x1327,8},{0x1327,8}}, {{0x183f6,4},{0xe11,2}}, {{0x19e7,5},{0xf7a,2}}, {{0x1327,1},{0x2b4e9,2}}, + {{0x18084,6},{0x3555,4}}, {{0x16a7,3},{0x15399,7}}, {{0x2ba5,1},{0x222b6,5}}, {{0xa659,5},{0xfe6,2}}, + {{0x17f80,6},{0x66c1,4}}, {{0xcc6c,5},{0x6008,3}}, {{0x4161,5},{0x100dd,6}}, {{0x2939,10},{0xf84,5}}, + {{0xf72d,8},{0xe77,3}}, {{0xb74,4},{0xb74,5}}, {{0x2e83,8},{0x240b,5}}, {{0x109b,2},{0xe95,2}}, + {{0x2de87,4},{0x57,1}}, {{0xf15,1},{0x1a336,5}}, {{0xe35e,6},{0x101f,2}}, {{0xad85,6},{0xf91,3}}, + {{0x3bdb,6},{0xa1df,6}}, {{0x2df3b,4},{0xe6,2}}, {{0x56,2},{0xe,1}}, {{0xb3f1,3},{0xf11,1}}, + {{0x1ff7,3},{0x222fe,5}}, {{0xf0a,3},{0x1eb89,3}}, {{0xc17d,6},{0x6,1}}, {{0xf3a,3},{0xdc01,4}}, + {{0x15eea,6},{0xec3,3}}, {{0x2b0a8,6},{0x2b0ae,6}}, {{0x9438,4},{0x6c88,5}}, {{0x205a9,4},{0x205a9,4}}, + {{0x1cf6f,6},{0xe11,1}}, {{0x355b,3},{0xe92,3}}, {{0x1a6a5,5},{0xec6,3}}, {{0x1109,8},{0x30ad,6}}, + {{0xe89,2},{0x14f9,3}}, {{0x15a7,6},{0x1f76,9}}, {{0xe65,2},{0x7bd9,4}}, {{0x6c83,10},{0xeed,3}}, + {{0x1b0b,5},{0x4251,3}}, {{0x29cf,3},{0x2675d,2}}, {{0xe83,6},{0xf5bd,5}}, {{0x3cc0,4},{0xe1c,3}}, + {{0x46bf,1},{0x1131,3}}, {{0x7414,3},{0x252c6,5}}, {{0x18ecc,2},{0x11840,2}}, {{0x7086,6},{0x36bd,7}}, + {{0x44c7,3},{0xe78,1}}, {{0xe7a,1},{0xe32,1}}, {{0x53ef,6},{0x2091,4}}, {{0xc0a1,2},{0x6,1}}, + {{0xcba,2},{0xf3a,3}}, {{0x106fd,8},{0x14a2,3}}, {{0x1a07,3},{0x18f95,2}}, {{0x1889,2},{0xed6,2}}, + {{0xc647,8},{0xcc9,2}}, {{0x147f2,7},{0xec6,3}}, {{0x27e0,5},{0xb068,5}}, {{0x4765,3},{0x3cdf,6}}, + {{0x113c,3},{0x6,2}}, {{0x2d25,8},{0x1722,5}}, {{0x3909,4},{0xfdd,4}}, {{0x127f,5},{0x3129,7}}, + {{0x10a8e,5},{0xc29a,6}}, {{0x27f6d,6},{0xe0a,1}}, {{0xcb8,1},{0x6008,3}}, {{0xcc7,1},{0x1230,3}}, + {{0x27ef,4},{0x798b,4}}, {{0x29cf,3},{0x185d,2}}, {{0xede,1},{0xc445,5}}, {{0x1155,2},{0x1ab20,4}}, + {{0x1c82,6},{0xfd38,4}}, {{0x4765,3},{0x29620,3}}, {{0x3123,6},{0x2f33,5}}, {{0xed35,5},{0x1064,3}}, + {{0x15e6d,3},{0x1364e,4}}, {{0x2006,3},{0x5538,2}}, {{0x10a57,8},{0xcc9,2}}, {{0x10c5,4},{0x12db6,6}}, + {{0x1153,2},{0xb,1}}, {{0x3d39,5},{0x8be3,6}}, {{0xe1f,3},{0xe77,2}}, {{0x46bd,3},{0x1b01,4}}, + {{0x83a9,9},{0xec6,3}}, {{0xf0a,3},{0x16935,5}}, {{0xf24,2},{0xec6,3}}, {{0xe5b,4},{0xcc3d,3}}, + {{0x3409,9},{0x1be9,3}}, {{0x112b8,5},{0x3e0e,3}}, {{0xe99,1},{0x2c6ca,3}}, {{0x1969,1},{0x10ec,6}}, + {{0x4137,6},{0x413d,8}}, {{0xed5,4},{0x1131,3}}, {{0x4765,3},{0x3bec,4}}, {{0x1967,3},{0x2493e,5}}, + {{0x10c5,4},{0xe571,5}}, {{0x1da43,6},{0xbd26,3}}, {{0x28fda,4},{0x28cab,3}}, {{0x2e866,2},{0xe41,2}}, + {{0x11ad,3},{0xe7f,2}}, {{0x25a6b,5},{0xfb8,3}}, {{0x7602,4},{0x2c83,4}}, {{0x15fe4,6},{0x13e4,3}}, + {{0x1a66,1},{0x2d4e9,2}}, {{0x186b0,6},{0xc992,4}}, {{0xed1,4},{0x6411,4}}, {{0x9a8,1},{0x51b8,4}}, + {{0xe030,5},{0x9a6,1}}, {{0x205a1,3},{0x2b4e9,3}}, {{0x105f,3},{0x1b12,3}}, {{0x145b,2},{0xe95,2}}, + {{0xe,1},{0x5bc,2}}, {{0xc159,4},{0xa,2}}, {{0xfa3,6},{0xfa9,4}}, {{0xc281,4},{0x2afd4,2}}, + {{0x19b9,1},{0x25d5e,2}}, {{0x1290,4},{0x10927,7}}, {{0x4137,5},{0xcb8,1}}, {{0x12e5,4},{0x9,2}}, + {{0x17556,7},{0xcd3,1}}, {{0x5c95,3},{0x3933,4}}, {{0x465b,4},{0xf20,2}}, {{0xe71,1},{0x21a5,5}}, + {{0xfd3,4},{0xed9,2}}, {{0xcd6,1},{0x2e27d,1}}, {{0x79c5,4},{0x1be9,3}}, {{0xe6f,4},{0x189f,3}}, + {{0xbec5,6},{0x11cb,3}}, {{0x1e910,4},{0xe6b,3}}, {{0x6,2},{0x4b12,4}}, {{0x27e0,3},{0x372d,4}}, + {{0x75e8,8},{0xe77,3}}, {{0x15e7,5},{0x1894,3}}, {{0x1085,3},{0x9,1}}, {{0x2213,5},{0x69cc,6}}, + {{0x4209,9},{0x344a,5}}, {{0x68,2},{0xf,1}}, {{0x9372,3},{0xb,1}}, {{0x18f3b,6},{0xe67,2}}, + {{0x1702e,5},{0x6,2}}, {{0x1a07,3},{0x15af,3}}, {{0x1807,5},{0x14ddd,5}}, {{0x12d4,3},{0x29a19,4}}, + {{0xe0b,2},{0x8,1}}, {{0xe43a,5},{0x1cd2,3}}, {{0xec0,3},{0x21a0,8}}, {{0xe11,1},{0xc9af,4}}, + {{0x1467,4},{0x101f,2}}, {{0x7414,3},{0x7a5a,4}}, {{0xaaf,2},{0x2e346,2}}, {{0xcc6,2},{0x2,1}}, + {{0x3d0f,6},{0x13e3,4}}, {{0x2f71,4},{0x4927,4}}, {{0xab1,1},{0x205a7,1}}, {{0xf77,3},{0xcb53,6}}, + {{0x450b,4},{0x5538,2}}, {{0xbded,4},{0x196cd,5}}, {{0x647f,6},{0xcc9,2}}, {{0x16d18,8},{0xcc9,2}}, + {{0x1db3f,5},{0x1db44,4}}, {{0xf16,2},{0xe6c,3}}, {{0x1ff36,6},{0xf91,3}}, {{0x4137,5},{0x2269,4}}, + {{0x1857,4},{0xb041,8}}, {{0x1729a,5},{0x1025,1}}, {{0x7a,2},{0xf,1}}, {{0x1189d,4},{0x15390,3}}, + {{0x2fffb,4},{0x9f,1}}, {{0x1367,3},{0x12a46,6}}, {{0x1977,4},{0xfd0a,6}}, {{0x4781,3},{0x4a44,5}}, + {{0xc015,4},{0xc088,4}}, {{0xf11,1},{0x1153,2}}, {{0x17646,5},{0x1764b,5}}, {{0x18ce6,5},{0x18ceb,5}}, + {{0x4597,4},{0x1849,3}}, {{0x1c55,5},{0xd886,4}}, {{0x1977,3},{0xe08,1}}, {{0x1e520,5},{0x1e52e,4}}, + {{0x4599,3},{0x13b27,5}}, {{0xccb,2},{0xe89,2}}, {{0x12d4,3},{0xe71,1}}, {{0x10b6a,5},{0x6cee,4}}, + {{0x4,1},{0xccd,1}}, {{0x1567,6},{0xfa5,2}}, {{0x1290,11},{0xe69,6}}, {{0xe5b,3},{0xcd3,3}}, + {{0x1d18,5},{0x11dc,5}}, {{0x1aad4,6},{0xd711,3}}, {{0x16868,7},{0x2e2c,3}}, {{0x15760,4},{0xec3,3}}, + {{0x1d0a1,6},{0xe11,1}}, {{0xea96,7},{0xea9d,4}}, {{0x1747,4},{0xe22,2}}, {{0x2015,3},{0x7921,3}}, + {{0x1052f,5},{0x9a4,3}}, {{0x512,2},{0x9f,1}}, {{0x1761e,6},{0x15c1d,4}}, {{0x9af,2},{0x2b0ac,2}}, + {{0xf65,4},{0x4ac2,5}}, {{0x450b,4},{0x17649,4}}, {{0xccb,2},{0xcc8,1}}, {{0x12d1c,6},{0x1571,4}}, + {{0x325,2},{0x69,1}}, {{0x29cf,3},{0xf11,1}}, {{0xe11,2},{0x7417,4}}, {{0xb10d,6},{0xf35,2}}, + {{0x48d3,2},{0xe19,1}}, {{0x9201,5},{0xee58,3}}, {{0xbba1,4},{0x1303,3}}, {{0x1967,3},{0x1c79,2}}, + {{0x43fb,3},{0xcbd,1}}, {{0xa5a5,6},{0xec5,4}}, {{0x44c5,7},{0x2dc6,7}}, {{0x647d,8},{0x10f4,4}}, + {{0x959d,6},{0xe69,6}}, {{0xe1f,3},{0x288b,2}}, {{0x739f,5},{0xcdda,2}}, {{0x1a66,1},{0x5e94,5}}, + {{0x329d,5},{0x1aca,5}}, {{0x6cc,2},{0x7b,1}}, {{0x1e44,6},{0xd96c,5}}, {{0xf89,3},{0x22096,5}}, + {{0x1967,3},{0xfa5,3}}, {{0xb415,4},{0x157b,3}}, {{0xb841,5},{0xeee,3}}, {{0x7416,1},{0x27c44,4}}, + {{0xe27,4},{0xe2b,4}}, {{0x113c,3},{0x1594,3}}, {{0x495f,6},{0x4328,7}}, {{0x1937,8},{0x1025,1}}, + {{0x1367,3},{0x19070,6}}, {{0x1adfe,6},{0x14a2,3}}, {{0x4773,4},{0x4e45,3}}, {{0x4853,3},{0xf11,1}}, + {{0x1ff7,3},{0x56e7,5}}, {{0x1927,4},{0x6d42,3}}, {{0xe63f,4},{0xe64e,7}}, {{0x106c6,8},{0x1f7c,3}}, + {{0x450b,4},{0x1d06,3}}, {{0xc2a0,7},{0x4415,3}}, {{0x1155,2},{0xcd3,1}}, {{0x7911,3},{0x1058,3}}, + {{0x10fd7,8},{0xe6b,3}}, {{0x1b866,5},{0xb381,4}}, {{0x1fe8,5},{0xfdd,6}}, {{0xf533,8},{0xe6b,3}}, + {{0xf1a,2},{0xe89,2}}, {{0x5539,3},{0xcc7,1}}, {{0xe1f,3},{0xd704,5}}, {{0x10f48,5},{0x18fc7,3}}, + {{0x7414,3},{0x101d,3}}, {{0x73c6,6},{0x5998,7}}, {{0x116ac,5},{0xcc8,1}}, {{0x9b25,5},{0x277e,2}}, + {{0xccd,1},{0x14e73,5}}, {{0xbc01,4},{0x10b37,7}}, {{0x1461c,7},{0xec6,3}}, {{0x6cde,4},{0x30ad,6}}, + {{0xe1f,3},{0x27dc,4}}, {{0x2e193,4},{0x468,2}}, {{0x7929,4},{0x49a6,3}}, {{0x2948,4},{0xeab,2}}, + {{0x1ddbe,5},{0xeab,2}}, {{0x3d49,4},{0x808c,5}}, {{0x391f,7},{0x4187,3}}, {{0xeb9,4},{0x1722,5}}, + {{0x12e5,5},{0xe78,1}}, {{0xbc01,4},{0xf13,2}}, {{0x29620,3},{0x24661,2}}, {{0x1367,11},{0x1372,4}}, + {{0xcce,3},{0x18602,4}}, {{0x2e2c,3},{0xe0a,1}}, {{0x10573,4},{0x12fe,2}}, {{0xb8dd,5},{0x8,1}}, + {{0x1977,3},{0x9,2}}, {{0x12e5,3},{0x29bfd,3}}, {{0x70ad,3},{0x26768,2}}, {{0x2cf81,4},{0x74f8,2}}, + {{0x74a3,12},{0xe11,1}}, {{0x10b4,12},{0xed9,2}}, {{0x8c79,7},{0x7a13,5}}, {{0x712f,4},{0x145b,2}}, + {{0x1a66,1},{0xe7d,4}}, {{0x169e,3},{0x17d56,3}}, {{0x772d,5},{0x355b,3}}, {{0x1849,3},{0xcd3,1}}, + {{0xb37b,1},{0xe16,1}}, {{0x111a,3},{0xdbf2,5}}, {{0x7170,6},{0x103e,5}}, {{0x10f32,5},{0xbd26,3}}, + {{0x284a6,5},{0xf7a,2}}, {{0xee59,3},{0x12a9,3}}, {{0x19b7,3},{0x39a3,4}}, {{0x74f1,4},{0xede,1}}, + {{0x8b9c,5},{0x153a,3}}, {{0x12e5,3},{0xe31,2}}, {{0x1487,4},{0x1223,2}}, {{0x361d,9},{0xe92,3}}, + {{0xe1f,3},{0x1c79,2}}, {{0x19b7,4},{0xa3b1,4}}, {{0x11b94,7},{0x10e3,4}}, {{0x72d3,3},{0xcc3,2}}, + {{0x606d,8},{0x1b4f,5}}, {{0xe83,5},{0xf6cf,6}}, {{0x11daf,6},{0x122d,3}}, {{0x9351,7},{0x9358,5}}, + {{0x18f7,4},{0x155e,3}}, {{0x2fc13,4},{0x78f9,1}}, {{0xe80,2},{0x1463,4}}, {{0x1e331,5},{0x347e,4}}, + {{0x442b,3},{0x27dc,4}}, {{0x1f42c,6},{0x1664,2}}, {{0x6cde,4},{0x1d216,5}}, {{0xf15,1},{0x5780,4}}, + {{0xb721,6},{0x189f,3}}, {{0x1059,3},{0x4251,3}}, {{0x5f90,9},{0xe0b,4}}, {{0x12e5,3},{0x1fb6d,6}}, + {{0x1789,4},{0xa84b,5}}, {{0x10c04,5},{0xf7a,2}}, {{0x4781,3},{0x18b4,3}}, {{0x10e4b,5},{0x174b1,5}}, + {{0xaebd,5},{0x1ce7,4}}, {{0xe5e9,3},{0x2,1}}, {{0x4ef5,4},{0xc600,5}}, {{0x712f,6},{0x1c3d,7}}, + {{0xc27b,2},{0x2aff8,2}}, {{0x2e7c4,6},{0x2e7da,2}}, {{0x18dec,3},{0x70a6,3}}, {{0x391f,5},{0xeb9,5}}, + {{0x3bcd,4},{0xed7d,5}}, {{0x478f,3},{0x35a3,3}}, {{0x6cc,2},{0xf,1}}, {{0x1c91,4},{0xb404,4}}, + {{0x3949,6},{0x14e1a,4}}, {{0xa701,6},{0xfada,5}}, {{0x105f,3},{0x5342,3}}, {{0x2e59,8},{0x27f8,6}}, + {{0x7de9,2},{0x8,1}}, {{0x647f,6},{0x1054,3}}, {{0x28c1,4},{0x174b,3}}, {{0xede,1},{0xf91,3}}, + {{0xa35e,5},{0xf7a,2}}, {{0x2e870,3},{0x205a5,1}}, {{0x12f6,4},{0x566f,4}}, {{0x2de87,4},{0x8d,1}}, + {{0xb,1},{0x1dee,2}}, {{0x1e9e,5},{0x143c,4}}, {{0xe6f,3},{0x1601,3}}, {{0xeeab,8},{0xeed,3}}, + {{0x2542b,6},{0xe86,2}}, {{0x1876e,5},{0x18773,2}}, {{0x478f,3},{0x2cdaa,3}}, {{0xbc9d,6},{0x3a30,6}}, + {{0xe71,1},{0x169d,4}}, {{0x6,2},{0xf35,3}}, {{0x66fa,8},{0x1722,5}}, {{0x9369,5},{0xe22,2}}, + {{0x234e,9},{0x2eb7,4}}, {{0x28d0,4},{0xcd3,1}}, {{0x4,1},{0xd885,5}}, {{0xd11b,5},{0x1d32,3}}, + {{0x79d1,6},{0xfb8,3}}, {{0x18b60,6},{0x18b70,4}}, {{0xe7a,1},{0xe16,1}}, {{0x18dea,5},{0x2c85,2}}, + {{0x833d,5},{0xa,2}}, {{0xe7d,2},{0xfc8,3}}, {{0xb3c1,9},{0x1ea3,3}}, {{0xe11,1},{0xcd1,2}}, + {{0x20599,1},{0xbb4,6}}, {{0x4781,3},{0x1a66,1}}, {{0x2d1f,3},{0xfa6,3}}, {{0xc040,2},{0x6,2}}, + {{0x46bd,3},{0x15e6d,3}}, {{0x8e22,3},{0xe92,3}}, {{0x1f58b,6},{0xf91,3}}, {{0x18c1e,5},{0x1688b,5}}, + {{0x10cb,2},{0xf91,3}}, {{0x9a6,1},{0xe32,1}}, {{0x46af,3},{0xd134,4}}, {{0xccd,1},{0x5849,4}}, + {{0x233f,8},{0x4a44,5}}, {{0x21a89,6},{0xcc9,2}}, {{0x1600c,6},{0xcc3,2}}, {{0xb69f,3},{0x17c0,2}}, + {{0xc3be,8},{0xec6,3}}, {{0xcc1,1},{0x1461f,4}}, {{0x13d7,10},{0x13e1,5}}, {{0xcedf,7},{0x2f2e,3}}, + {{0x6bb3,9},{0x141f,4}}, {{0xb739,8},{0x1040,3}}, {{0x1a81f,6},{0xeee,3}}, {{0xcd3,2},{0x2781,5}}, + {{0x13474,5},{0x23d2,3}}, {{0x16052,6},{0xfdd,4}}, {{0x10c5,5},{0x7998,4}}, {{0xe83,3},{0x14ff,3}}, + {{0x24c73,5},{0xf91,3}}, {{0x9f,1},{0x44,2}}, {{0x7303,5},{0x1088,4}}, {{0xc081,6},{0x20080,3}}, + {{0xed1,3},{0x183a,3}}, {{0xf0c,1},{0x48d3,2}}, {{0x8265,7},{0x1279,5}}, {{0x4,1},{0xc300,3}}, + {{0x5e2b,4},{0x6c48,4}}, {{0x1057,1},{0x2186,6}}, {{0x3877,9},{0x23df,5}}, {{0xbcf1,7},{0xbcf8,5}}, + {{0x10427,5},{0xeed,4}}, {{0x4765,3},{0xed38,5}}, {{0x207e,10},{0xcc9,2}}, {{0xe4c9,6},{0xfa6,3}}, + {{0x7414,3},{0x8,2}}, {{0x10a3,3},{0xf62,3}}, {{0x1a1f8,5},{0xc117,4}}, {{0x19b7,3},{0xcc9,2}}, + {{0xf89,3},{0x1393,3}}, {{0xf32,2},{0x1a99,5}}, {{0x207e9,6},{0x113f,2}}, {{0x729d,5},{0xf4a,5}}, + {{0x19b9,1},{0x46bf,1}}, {{0xcc7,1},{0x1803b,3}}, {{0x6fdd,7},{0xe69,6}}, {{0x591d,5},{0xfdd,6}}, + {{0x167fa,7},{0xcc9,2}}, {{0x10566,7},{0x1523,4}}, {{0x83a9,6},{0x7949,4}}, {{0x1f16,5},{0x1288,4}}, + {{0x74f5,4},{0x74f9,5}}, {{0x2015,3},{0x22d9,7}}, {{0xe,1},{0x206,2}}, {{0x28fdf,2},{0x28fdf,2}}, + {{0xf0c,1},{0x14934,4}}, {{0x1bec,5},{0xf03,2}}, {{0x1df5c,5},{0x4d74,4}}, {{0x1967,3},{0x1b04,3}}, + {{0x3559,4},{0x12fe,2}}, {{0x29fc,5},{0xf24,2}}, {{0x12e5,3},{0x1889,2}}, {{0x7684,8},{0xe69,5}}, + {{0xe99,1},{0x1e8b,3}}, {{0x1d18,5},{0x4a44,5}}, {{0x2e2b1,2},{0x2e2b3,2}}, {{0x308b,3},{0x120b,4}}, + {{0x1bbf,4},{0x26d6c,3}}, {{0x1e18a,6},{0x45c7,2}}, {{0x3d0f,6},{0x27dc,4}}, {{0x70ad,4},{0xa84c,4}}, + {{0x4765,3},{0x4618,3}}, {{0x4217,6},{0x421d,8}}, {{0xe11,1},{0x22b0,5}}, {{0x3ff5,6},{0xf0d,2}}, + {{0xe32,1},{0xefb,3}}, {{0x3056,4},{0x305a,5}}, {{0x12b2,5},{0x7a15,4}}, {{0x12160,3},{0x15413,5}}, + {{0x2f71,4},{0xcd2,2}}, {{0x33ed,7},{0xe92,3}}, {{0x518c,9},{0xe6b,4}}, {{0xe33,1},{0x1393,3}}, + {{0x46af,3},{0xe4ab,4}}, {{0x18ee0,2},{0xe3b,2}}, {{0xf0a,3},{0x2c910,3}}, {{0xc08d,6},{0x10b7,2}}, + {{0x31955,2},{0x9b1,2}}, {{0xb,1},{0xcd3,2}}, {{0x47c7,5},{0x2fcc,7}}, {{0x2015,4},{0x3208,3}}, + {{0xf70,2},{0x5,2}}, {{0x1967,3},{0x2c15,3}}, {{0x1cdc,6},{0x5026,7}}, {{0x18df4,5},{0x266b8,3}}, + {{0x486f,4},{0x13dd,4}}, {{0x1877,10},{0xe69,6}}, {{0x4ef5,4},{0x7f19,4}}, {{0x34db,6},{0x34e1,8}}, + {{0x794d,6},{0x2dd7,4}}, {{0x4765,3},{0x1cf3,3}}, {{0x478f,3},{0x18351,3}}, {{0x73ef,2},{0x492e,3}}, + {{0x1f22b,6},{0x6ec3,3}}, {{0x478f,3},{0x2ad4,4}}, {{0x2de63,3},{0xf8,2}}, {{0xe5b,3},{0xa076,5}}, + {{0x228bb,6},{0xe95,2}}, {{0x16692,6},{0x1eb2,3}}, {{0x4781,3},{0x1839,2}}, {{0xcc8,1},{0x4ef1,4}}, + {{0x1687,5},{0x1569,3}}, {{0x1e08,5},{0x9a9,4}}, {{0xe37,2},{0x2afc6,4}}, {{0x1b83,8},{0x4b55,5}}, + {{0x2add,6},{0x2317,5}}, {{0x13a7,7},{0xf62,3}}, {{0xbccd,4},{0x124ed,5}}, {{0xe99,1},{0x5342,3}}, + {{0x1567,3},{0xe0a,1}}, {{0x73b9,5},{0x44b3,3}}, {{0x12e5,3},{0x445b,2}}, {{0x6cde,4},{0x1e65,3}}, + {{0x305f,6},{0x1c6d,6}}, {{0x73b9,5},{0xa84c,5}}, {{0x24fcd,4},{0xe7f,2}}, {{0xc015,4},{0x716c,4}}, + {{0x354b,7},{0x13e3,4}}, {{0x6c76,8},{0x1016f,3}}, {{0xbc03,2},{0xe5e,2}}, {{0x3a53,5},{0x10bc,9}}, + {{0x7911,5},{0x2ce1,4}}, {{0x5722,5},{0x9a4,3}}, {{0x70fb,5},{0xcc7,1}}, {{0xf79,3},{0xec3,3}}, + {{0x10049,6},{0xe69,5}}, {{0x9711,8},{0x1773,4}}, {{0x27e0,3},{0xee9,2}}, {{0xe1f,4},{0x189f,3}}, + {{0x5cd,2},{0x9f,1}}, {{0x38f5,10},{0xf7a,2}}, {{0x666,2},{0x21,1}}, {{0x5534,4},{0x219c5,4}}, + {{0x175c,3},{0x6,2}}, {{0x1b614,6},{0x2e2c,3}}, {{0xbb41,6},{0x18184,4}}, {{0x1153,2},{0x123e,3}}, + {{0x124c,6},{0xed6,2}}, {{0x688,2},{0x7b,1}}, {{0x46af,3},{0x23427,4}}, {{0x6fdd,7},{0xec6,3}}, + {{0x478f,3},{0x5538,2}}, {{0x2f71,4},{0x14c76,4}}, {{0xe78,2},{0xcc1,1}}, {{0x3089,5},{0xe1c,3}}, + {{0xe6f,3},{0xcc3,2}}, {{0x14fb8,5},{0xeed,3}}, {{0x1025,1},{0xeb4,2}}, {{0x450b,6},{0x136d,3}}, + {{0x1977,3},{0x11e00,3}}, {{0x2df3b,4},{0x55,2}}, {{0x8cfd,5},{0x13d75,5}}, {{0x303a5,4},{0x303a5,4}}, + {{0x2de5d,3},{0x260,2}}, {{0x111a,3},{0x1a810,6}}, {{0x2de87,4},{0xd,1}}, {{0x70ad,4},{0x4833,4}}, + {{0x2b46,4},{0xf61,2}}, {{0x29cf,3},{0x48d8,2}}, {{0x1a27,4},{0x15df6,4}}, {{0xf4f,1},{0xfb0,2}}, + {{0xcd1,2},{0x386f,4}}, {{0xe21,1},{0x155e,3}}, {{0x79dd,7},{0x79e4,5}}, {{0x6dae,8},{0x6db6,5}}, + {{0x6c35,9},{0x1663,3}}, {{0x11515,4},{0x59b4,3}}, {{0x38af,7},{0x240b,6}}, {{0x1967,3},{0x24b56,5}}, + {{0x95a9,7},{0xe69,5}}, {{0x10adb,9},{0xf7a,2}}, {{0xcbf,2},{0xe0d,2}}, {{0x264bb,5},{0xe89,2}}, + {{0x16a7,3},{0x8666,2}}, {{0x75b4,4},{0x1a86,3}}, {{0xb753,4},{0x1be9,3}}, {{0x46af,3},{0x8428,3}}, + {{0x75b4,4},{0x10f5,3}}, {{0xf77,5},{0x8f2c,5}}, {{0x10c5,4},{0xbd18,5}}, {{0xf,1},{0x1be,2}}, + {{0x1967,3},{0x2f049,2}}, {{0x6f8f,8},{0x10e2,5}}, {{0x19b9,1},{0x23e99,2}}, {{0xe1f,3},{0x2f07,5}}, + {{0x4ee8,4},{0x2252,3}}, {{0x1857,4},{0x1ea3,3}}, {{0x1252,5},{0xed9,2}}, {{0x14a7,4},{0x1059,3}}, + {{0x9219,5},{0x8ea8,5}}, {{0x1677,5},{0x14f9f,5}}, {{0x50af,7},{0x17c0,2}}, {{0xebe,5},{0x1c85,3}}, + {{0x450b,4},{0x951c,3}}, {{0x75b4,4},{0xcc7,1}}, {{0x504d,3},{0xcd3,1}}, {{0xe16,1},{0x122e,2}}, + {{0xe2f,1},{0x1db39,4}}, {{0x25083,4},{0xcc3,2}}, {{0x156e,3},{0x111c,2}}, {{0x8c,2},{0xd,1}}, + {{0xe4a8,7},{0xec3,3}}, {{0x6497,7},{0x16e1,6}}, {{0x56c7,5},{0xde04,6}}, {{0x39b9,4},{0x6ca7,3}}, + {{0x9a8,1},{0xef8a,7}}, {{0x12d4,3},{0x73d6,2}}, {{0x1ea3,3},{0x1fc7,3}}, {{0x77bc,4},{0x2d8d,5}}, + {{0x8421,6},{0x1a14a,3}}, {{0x478f,3},{0x2d11,3}}, {{0x29bba,6},{0x6,1}}, {{0x1847,5},{0xb5f7,3}}, + {{0x29cf,3},{0x74f6,2}}, {{0xf13,2},{0x2,1}}, {{0x9189,7},{0x1722,5}}, {{0xe99,1},{0x4bf9,4}}, + {{0x49a0,5},{0xfc30,3}}, {{0x19b7,5},{0x2f41,5}}, {{0x1ff7,3},{0xe453,8}}, {{0x11144,4},{0xdc6e,4}}, + {{0x46bd,3},{0x2f4d0,2}}, {{0x16806,4},{0xcc9a,4}}, {{0xe,1},{0x1f4,2}}, {{0x4455,4},{0x28dae,3}}, + {{0xed6,3},{0xed9,2}}, {{0x15d8c,7},{0xec6,3}}, {{0xe99,1},{0x24bdf,2}}, {{0x11b3,6},{0x128c,4}}, + {{0x2fb14,4},{0xf11,1}}, {{0x4765,3},{0x1378f,3}}, {{0x1849,3},{0x5,1}}, {{0x359f,9},{0x1279,5}}, + {{0x45eb,4},{0x1f949,4}}, {{0x1977,3},{0xe16,1}}, {{0xe21,1},{0x11a6,2}}, {{0x2bae,2},{0xed9,2}}, + {{0x728e,9},{0xeed,2}}, {{0x4ee8,4},{0xb3e8,6}}, {{0xcb8,1},{0x10f4,4}}, {{0xcd1,5},{0x1063,2}}, + {{0x72cf,4},{0xab88,4}}, {{0xcd3,2},{0xe7f,2}}, {{0x28fdf,2},{0x1969,1}}, {{0xfa50,5},{0x6f8a,4}}, + {{0x29a2,5},{0xeca,3}}, {{0x38b4,4},{0x5669,3}}, {{0x3329,7},{0x128c,4}}, {{0x46bd,3},{0xe637,4}}, + {{0xcc7,1},{0xe8a,2}}, {{0x111a,3},{0xcd3,3}}, {{0x2240,4},{0xe75,2}}, {{0x29de,4},{0x333a,3}}, + {{0x647f,6},{0xcce,2}}, {{0x7532,6},{0xec6,3}}, {{0x29cf,3},{0x2792d,4}}, {{0x10c5,4},{0xf16,2}}, + {{0xe99,1},{0x3976,3}}, {{0xe6f,3},{0x142a,3}}, {{0xada9,8},{0xe95,2}}, {{0x18b4,3},{0xcd3,1}}, + {{0x7b51,4},{0x11cc4,4}}, {{0xe21,1},{0x19b9,1}}, {{0x14806,5},{0xe6b,4}}, {{0xbff1,6},{0xe0a,1}}, + {{0x2b77,3},{0x1b41,4}}, {{0x41ed,4},{0x185f,7}}, {{0xbc25,5},{0xa3e5,4}}, {{0x2b28,8},{0x1024,7}}, + {{0x2de87,4},{0xe,1}}, {{0x18dec,3},{0xcba,2}}, {{0xd18,2},{0x2b05e,2}}, {{0x11793,4},{0x1062,2}}, + {{0x8dbd,6},{0x530b,5}}, {{0x113f,2},{0x504d,3}}, {{0xf7a,2},{0xe80,2}}, {{0x71be,4},{0x9a7,2}}, + {{0x125ec,7},{0x1894,3}}, {{0x9e,2},{0xd,1}}, {{0x450b,4},{0x1692,2}}, {{0x29c0,3},{0x56fe,5}}, + {{0x3b5d,5},{0x65ec,5}}, {{0x19b9,1},{0xee9,2}}, {{0x305f,6},{0xa,2}}, {{0xcc9,2},{0x14ab,4}}, + {{0x129ca,6},{0xcce,2}}, {{0x1bd5b,5},{0x190cc,4}}, {{0x10432,5},{0xfa9,4}}, {{0x2b0b4,4},{0xe47,2}}, + {{0xe33,1},{0x59b4,3}}, {{0x6cd1,6},{0x10d3,3}}, {{0xe1f,3},{0x4c16,3}}, {{0x24f2,5},{0xaa38,5}}, + {{0x2ed6a,4},{0xe19,1}}, {{0x18444,7},{0x19e1,3}}, {{0x7cdd,7},{0x1622,5}}, {{0x1047,3},{0x10f2,6}}, + {{0x1487,4},{0x6479,4}}, {{0x11e75,5},{0x66c2,3}}, {{0x402d,9},{0x1380,5}}, {{0x1fe8b,6},{0xf91,3}}, + {{0xe21,1},{0x1e2f0,2}}, {{0x1a07,3},{0x2f1c5,2}}, {{0x3208,3},{0x5863,3}}, {{0x105f,3},{0x124eb,7}}, + {{0xe83,4},{0x7949,4}}, {{0x2c85,2},{0xed6,2}}, {{0x23c4b,3},{0x2c3c4,3}}, {{0xce50,7},{0x72d3,3}}, + {{0x70ad,3},{0x2f41,4}}, {{0x19b7,3},{0x121c,3}}, {{0xc281,8},{0xda8,12}}, {{0x2e292,1},{0xb74,1}}, + {{0xebf6,7},{0x6ca7,3}}, {{0xc05d,4},{0x237d,2}}, {{0x4,2},{0x183a,3}}, {{0x4,2},{0x4a44,5}}, + {{0x3c6b,3},{0xe2b,2}}, {{0xe21,1},{0xe7f,2}}, {{0xe16,3},{0xe0a,1}}, {{0x4853,3},{0x1d65,3}}, + {{0x11187,2},{0x1969,1}}, {{0xccd,1},{0xf0f,2}}, {{0xc26f,4},{0x2afc6,2}}, {{0x24d73,5},{0x1059,3}}, + {{0xe16,2},{0x11b5,2}}, {{0x73b9,5},{0xfbb,3}}, {{0x9c2d,5},{0x5342,3}}, {{0x3967,3},{0x3320,4}}, + {{0x9a8,1},{0xed9b,8}}, {{0x1576a,7},{0x111c,3}}, {{0x66c6,5},{0xec6,3}}, {{0x17e7,6},{0x189f,3}}, + {{0x1081,4},{0xd347,5}}, {{0xf0a,3},{0x4457,2}}, {{0x1b7d,3},{0xe5e,2}}, {{0x24303,6},{0xf86,2}}, + {{0x1f9de,6},{0x7a36,3}}, {{0x1a27,4},{0x16fff,3}}, {{0x174f2,7},{0xed6,2}}, {{0x2f71,4},{0x210ce,3}}, + {{0x1977,3},{0xf11,1}}, {{0x46af,3},{0xf86,3}}, {{0x11f25,5},{0x2271,3}}, {{0xccd,1},{0x6d4b,2}}, + {{0x208c1,5},{0x2ee9,3}}, {{0x1e26,6},{0x1702,5}}, {{0x24668,2},{0x24661,2}}, {{0xcd6,1},{0xc16,2}}, + {{0x360f,7},{0x1c6d,6}}, {{0x70ad,6},{0x10b2e,5}}, {{0xf02,2},{0xf3a,3}}, {{0xfa5,2},{0xeed,4}}, + {{0xaeb1,5},{0x3ba5,4}}, {{0x2675d,2},{0x19b9,1}}, {{0xe11,2},{0x12075,5}}, {{0x2a436,5},{0xebc,2}}, + {{0xcc9,2},{0xe2b,4}}, {{0xf11,1},{0x48da,2}}, {{0x1db34,2},{0x74fb,3}}, {{0xee9,2},{0xec5,4}}, + {{0x1c91,4},{0x3643,4}}, {{0x5,1},{0x78d0,3}}, {{0x433d,4},{0x6ec3,3}}, {{0xf0a,3},{0x4a86,4}}, + {{0x2de81,4},{0xe,1}}, {{0xf4f,1},{0x6008,3}}, {{0x1ff7,3},{0x1e373,4}}, {{0x111a,3},{0xefb,3}}, + {{0xe33,1},{0x2e1b,6}}, {{0x19a7,5},{0xfb0,2}}, {{0xf205,8},{0x14a2,3}}, {{0x244d3,6},{0xcce,2}}, + {{0x18278,6},{0xebb,3}}, {{0x2df3b,4},{0x19a,2}}, {{0xf89,3},{0xce96,4}}, {{0x4781,3},{0xcc3,2}}, + {{0x2ba52,3},{0x6,1}}, {{0x6ebf,8},{0x14a2,5}}, {{0x7414,3},{0x2c6d7,2}}, {{0x1497,5},{0x86c6,6}}, + {{0xe2f,1},{0x1160,5}}, {{0x4e0b,8},{0xcc9,2}}, {{0x666,2},{0x7b,1}}, {{0x78f9,1},{0x2b4e9,2}}, + {{0xe5b,4},{0xce8e,4}}, {{0xef7,4},{0x4111,9}}, {{0x191cc,6},{0x11dc,3}}, {{0x28fda,4},{0xe21,1}}, + {{0x307bb,1},{0x307bc,2}}, {{0x20071,6},{0xec6,3}}, {{0xfa1,2},{0x1d7e,3}}, {{0x16a7,3},{0xe22,5}}, + {{0x1ff7,3},{0xf35,2}}, {{0xf11,1},{0x6,1}}, {{0x3bdb,6},{0x11cc4,4}}, {{0x115e,10},{0xec5,4}}, + {{0x473d,3},{0x2182,7}}, {{0xe33,1},{0x1089,3}}, {{0x14996,9},{0xe0a,1}}, {{0x3170,3},{0x6b26,4}}, + {{0x8cfd,5},{0xc76a,6}}, {{0x24003,5},{0xe11,1}}, {{0x11d0a,6},{0x5315,5}}, {{0x1a27,4},{0x4d35,5}}, + {{0x30664,2},{0xedd,1}}, {{0x8829,8},{0xe6b,4}}, {{0x512,2},{0x8d,1}}, {{0xf4f,1},{0xe89,2}}, + {{0x2de7b,4},{0x21,1}}, {{0x6b3e,5},{0x3a02,3}}, {{0xee9,2},{0xe09,1}}, {{0x1e3c3,6},{0xed6,2}}, + {{0x1f38,4},{0xcc9,2}}, {{0xe7a,1},{0x78ed,2}}, {{0xe22,2},{0x1025,1}}, {{0x1be,2},{0x457,2}}, + {{0x16fe8,6},{0xed6,2}}, {{0x26b4,7},{0x1b80,3}}, {{0x24f7,4},{0x17ec,4}}, {{0x3ca4,6},{0xeee,5}}, + {{0xe99,1},{0xcc3,2}}, {{0x4597,4},{0x1004,3}}, {{0x10e77,5},{0xccc,2}}, {{0x3002d,4},{0x69,1}}, + {{0xb,1},{0x288b,2}}, {{0xb3f1,3},{0x109b,2}}, {{0xe19,1},{0xf39,2}}, {{0x1d54,6},{0x277e,2}}, + {{0x9a9,2},{0x9,1}}, {{0x95c1,7},{0xe69,5}}, {{0x168cc,6},{0x5863,4}}, {{0x16c7,10},{0xfdd,6}}, + {{0xccd,1},{0x9372,3}}, {{0x4,1},{0xfdf,3}}, {{0x2e27c,2},{0x2e27e,2}}, {{0xb1f9,6},{0xb1ff,6}}, + {{0x7455,7},{0x3324,5}}, {{0x755b,4},{0xe13,3}}, {{0xe83,3},{0x15e6d,3}}, {{0x699,2},{0x8d,1}}, + {{0xccd,1},{0x142d,3}}, {{0x46bd,5},{0x1d74,4}}, {{0x19b7,3},{0x1f9f,3}}, {{0x78f4,4},{0xf7a,2}}, + {{0x134f6,6},{0x6411,4}}, {{0x391f,5},{0xf0f,2}}, {{0x19b9,1},{0xe89,2}}, {{0x1969,1},{0x39cd,8}}, + {{0x12196,7},{0x1392,3}}, {{0xfbf,5},{0xb495,4}}, {{0x91f5,7},{0xe2b,3}}, {{0x8c,2},{0xf,1}}, + {{0x1469,3},{0xff1,4}}, {{0x3e51,7},{0x1720,7}}, {{0xb931,5},{0x1fc0,3}}, {{0x17ec2,6},{0xe7f,2}}, + {{0xf15,1},{0xefa,4}}, {{0x4759,5},{0x7b72,3}}, {{0x24653,4},{0x23f18,3}}, {{0x2e743,3},{0x1e57e,2}}, + {{0xee7f,6},{0xcc9,2}}, {{0x129de,6},{0x12a9,3}}, {{0x6005,9},{0xcc9,2}}, {{0xf77,4},{0x1579,5}}, + {{0xe77,2},{0x10e2,3}}, {{0x9a8,1},{0x3a48,5}}, {{0x513e,8},{0x1c8c,5}}, {{0x1150,2},{0xec5,4}}, + {{0xb3f1,3},{0xe22,3}}, {{0x7913,3},{0xec7,2}}, {{0x18372,5},{0x4665,4}}, {{0x53fc,8},{0x15d1,5}}, + {{0xb145,6},{0xf84,5}}, {{0x1797c,5},{0x7ba0,5}}, {{0xcc3,2},{0x1254,6}}, {{0x29c0,3},{0xde29,2}}, + {{0x9201,5},{0x1de7,3}}, {{0x442b,3},{0x73d6,2}}, {{0x1e4d1,4},{0xe0a,1}}, {{0xb597,3},{0xcc3,2}}, + {{0x2a58,2},{0xe32,1}}, {{0x19b9,1},{0x174a,4}}, {{0x1817,4},{0x8428,3}}, {{0xb8df,3},{0xe2b,4}}, + {{0x19b7,3},{0xe7a,1}}, {{0xc39d,5},{0x122e5,5}}, {{0x2ed7,7},{0x2f2e,3}}, {{0x15a30,7},{0x1392,3}}, + {{0xaec9,5},{0x11166,4}}, {{0x10361,6},{0x4cc2,4}}, {{0xe32,1},{0xcee3,6}}, {{0x6eea,3},{0xe67,2}}, + {{0x2e2f,6},{0x15399,2}}, {{0xe83,3},{0x26ca8,3}}, {{0x1c8b,3},{0x8,1}}, {{0x12f8,2},{0x142d,3}}, + {{0x6,2},{0x1cd3,2}}, {{0x39c7,6},{0x39cd,8}}, {{0x2e271,3},{0x30a4e,1}}, {{0x257fb,5},{0x1295,3}}, + {{0x9af,128},{0x9af,128}}, {{0x28fd,6},{0x4b62,5}}, {{0x2ba5,1},{0xb37c,3}}, {{0x3125,4},{0x120c,3}}, + {{0x260,2},{0x164,2}}, {{0x14a7,4},{0x133a6,6}}, {{0x58b5,6},{0x58bb,7}}, {{0xe60,2},{0xc6bc,4}}, + {{0x19b9,1},{0xe33,1}}, {{0xcd1,2},{0x11dc,3}}, {{0x45a5,6},{0x8bcb,6}}, {{0x23e93,5},{0x23e98,2}}, + {{0x2e271,3},{0x2e274,6}}, {{0x4385,3},{0x4516,3}}, {{0xe33,1},{0x74f6,2}}, {{0x1967,3},{0x145b,2}}, + {{0xccd,1},{0xe65,2}}, {{0x46af,3},{0x17ac9,2}}, {{0x2e27d,2},{0x2e27d,2}}, {{0x46af,3},{0x7bd9,3}}, + {{0xf0a,3},{0x445b,2}}, {{0x199ac,5},{0x1a9a,4}}, {{0x5242,8},{0x12be,5}}, {{0xdfac,5},{0xcc8,1}}, + {{0x1052f,5},{0x1b6a,6}}, {{0x71be,6},{0xf86,3}}, {{0x9a8,1},{0x10dc,2}}, {{0xf57,2},{0xf59,7}}, + {{0x3273,8},{0x3324,5}}, {{0x29314,5},{0xcd3,1}}, {{0xe83,5},{0x155b,3}}, {{0x298f5,5},{0xed6,2}}, + {{0x479d,4},{0x15cf,7}}, {{0x2312,10},{0x1bf6,5}}, {{0x19e7,8},{0xf84,5}}, {{0x10a36,6},{0xeca,3}}, + {{0x29a2,6},{0x1064,3}}, {{0xfe8,2},{0xabc6,3}}, {{0x2de51,3},{0x49b,2}}, {{0x753f,4},{0x7a36,3}}, + {{0x12e5,3},{0xce83,4}}, {{0x9b85,5},{0xcc3d,3}}, {{0x10fd7,5},{0xac0d,4}}, {{0xf11,1},{0x168a,5}}, + {{0x30d57,3},{0x2e27d,1}}, {{0x18638,6},{0x80b0,4}}, {{0xf18,2},{0x1295,3}}, {{0x442d,1},{0x2,1}}, + {{0xc015,4},{0x1ff28,5}}, {{0x1e9e,6},{0xef3,4}}, {{0xcc8,1},{0x1303,3}}, {{0x1647,5},{0x63cf,5}}, + {{0x1017d,5},{0xb0e1,4}}, {{0x57,1},{0x1bd,2}}, {{0xb841,5},{0x14ab,4}}, {{0x1747,5},{0x1cd3,2}}, + {{0x28fd,10},{0x1523,4}}, {{0x1967,3},{0xcb7,2}}, {{0x6,2},{0x10e2,3}}, {{0x2e889,3},{0x4e12,2}}, + {{0x6012,6},{0x167f,7}}, {{0x10e8d,5},{0xe78,2}}, {{0x30853,2},{0x9b5,2}}, {{0x168f,2},{0xf6a4,5}}, + {{0x127f,3},{0x1025,1}}, {{0x10f60,6},{0xe11,1}}, {{0x1567,6},{0x3313,6}}, {{0xd131,4},{0x1153,2}}, + {{0x12ea2,7},{0xe0a,1}}, {{0xb,1},{0x56e7,7}}, {{0x156e,3},{0xf35,3}}, {{0x16f7,6},{0x8b30,4}}, + {{0x2858,5},{0xafbe,7}}, {{0xe71,1},{0x1267,4}}, {{0x1cd5,4},{0xec6,3}}, {{0x12d4,3},{0x1ea69,6}}, + {{0x30ef1,4},{0x308c1,2}}, {{0x91f5,9},{0x4d5f,3}}, {{0x4a00,4},{0xcd3,2}}, {{0xdfac,7},{0xe67,2}}, + {{0x219b,10},{0x12bf,4}}, {{0x1081,7},{0x1b4f,7}}, {{0x51f4,10},{0x1be9,3}}, {{0xb919,6},{0xb58f,6}}, + {{0x9a6,2},{0x1463,4}}, {{0x2f71,7},{0xfb8,3}}, {{0x82dd,6},{0x1254,6}}, {{0x4853,3},{0x101f,2}}, + {{0x1a47,9},{0xe11,1}}, {{0x2b0a8,4},{0x2e7a2,2}}, {{0x29f3,3},{0xe0a,1}}, {{0x101e,4},{0xe77,3}}, + {{0x457b,5},{0x11dc,5}}, {{0x41d1,7},{0x41d8,7}}, {{0x2e33,4},{0x538f,5}}, {{0x4853,3},{0x27dc,4}}, + {{0x2de75,3},{0x1bd,2}}, {{0x123a8,6},{0x123ae,4}}, {{0x9a8,2},{0xe11,1}}, {{0xc05d,5},{0x9,1}}, + {{0xb597,3},{0x583a,3}}, {{0x10f53,8},{0x1252,3}}, {{0x2b78,4},{0xec6,3}}, {{0x1252,5},{0xf35,3}}, + {{0x10dc,2},{0x17ec,4}}, {{0xee4,4},{0x157fa,6}}, {{0x12e5,5},{0x156a,3}}, {{0x4781,3},{0x44b2,5}}, + {{0xe3d,4},{0x2b4f2,2}}, {{0x3575,7},{0x1663,3}}, {{0x478f,3},{0x1db3a,2}}, {{0x5f42,5},{0x1692,5}}, + {{0xf15,1},{0x15399,2}}, {{0x4c37,5},{0x4c56,8}}, {{0xf7a,2},{0x1fc7,3}}, {{0xf34,2},{0x12bf,4}}, + {{0xe2f,1},{0xec6,3}}, {{0x2ad9f,2},{0x48d0,2}}, {{0x2225b,5},{0xf63,2}}, {{0x170a6,6},{0xeee,3}}, + {{0x4693,5},{0xfdf,3}}, {{0x2de75,4},{0x69,1}}, {{0x10a3,3},{0x2f3c,11}}, {{0xcd2d,4},{0x8,1}}, + {{0xf15,1},{0x309d,3}}, {{0x13028,6},{0xcb9,4}}, {{0x1ccd,5},{0xc591,6}}, {{0x18036,4},{0x33d3,2}}, + {{0x9a4,3},{0xfb0,2}}, {{0xc16,4},{0xc16,1}}, {{0xed6,2},{0xe67,2}}, {{0xf77,4},{0x2075,3}}, + {{0x1f18,3},{0xe0b,4}}, {{0x18174,7},{0xebb,3}}, {{0x2252,3},{0x2781,5}}, {{0x1cb1,3},{0xe22,2}}, + {{0xf4f,1},{0x1ce9a,5}}, {{0x492b,4},{0x2c3b,5}}, {{0xe11,1},{0xe7d,2}}, {{0x28d0,7},{0xe69,5}}, + {{0x1083,5},{0x1088,4}}, {{0x12e5,3},{0x16519,7}}, {{0x666,2},{0x8d,1}}, {{0x37b3,7},{0x37ba,5}}, + {{0x4e18,6},{0x350c,7}}, {{0xe0a,1},{0xe71,1}}, {{0x5bc,2},{0xf,1}}, {{0xf0a,3},{0xe8a,2}}, + {{0x3d47,10},{0xe77,3}}, {{0x1969,2},{0xcc3d,3}}, {{0x75ce,4},{0x18602,4}}, {{0xdab0,7},{0x6b0f,4}}, + {{0x1050,4},{0xe7f,2}}, {{0xe16,1},{0xcc7,2}}, {{0x3583,7},{0x358a,7}}, {{0x479d,4},{0x60f3,7}}, + {{0x22a3,2},{0xf1a,2}}, {{0xe2f,1},{0x1230,3}}, {{0x5985,6},{0x22d9,7}}, {{0x2231,12},{0xe11,1}}, + {{0xaf2,6},{0xaf4,3}}, {{0xe65,2},{0xcd3,1}}, {{0x7d19,6},{0x6452,4}}, {{0x1198f,5},{0xebb,3}}, + {{0x19b9,1},{0xe09,1}}, {{0x58b5,6},{0xcc9,2}}, {{0xe1f,3},{0x4767,1}}, {{0xc02d,7},{0xc034,5}}, + {{0x3a53,4},{0x6ca7,3}}, {{0x2e211,4},{0x314,2}}, {{0xccb,2},{0x10b9,2}}, {{0x8c,2},{0x21,1}}, + {{0x45e2,3},{0xa,2}}, {{0x218c,8},{0x2194,7}}, {{0xe95,2},{0x1132,2}}, {{0x12fe,2},{0xcd3,1}}, + {{0xf77,4},{0xe5e,2}}, {{0xa215,7},{0x13e4,3}}, {{0x9489,5},{0x1269,5}}, {{0x1bfb,11},{0xe6b,4}}, + {{0x3a45,6},{0xffc,3}}, {{0x9da1,5},{0x4afc,3}}, {{0x3d3b,4},{0x1510,4}}, {{0x9a6,1},{0x7979,4}}, + {{0xc05d,9},{0x19e1,3}}, {{0xcbd,1},{0xe571,5}}, {{0x1e9e,5},{0x404e,4}}, {{0xf0a,3},{0x28fc2,2}}, + {{0x1829,3},{0xcc8,1}}, {{0xc9ac,5},{0x2c59,4}}, {{0x170ce,6},{0x1040,3}}, {{0x46bd,3},{0xf16,2}}, + {{0x7788,6},{0xcc8,1}}, {{0xb3f1,3},{0xd793,5}}, {{0xcbe8,7},{0xcbef,4}}, {{0x6dae,8},{0x127c,3}}, + {{0x25673,6},{0xcc3,2}}, {{0x75db,4},{0x101f,2}}, {{0x18f9,2},{0x59c0,5}}, {{0x17f7,6},{0x9a4,3}}, + {{0x45a5,6},{0x8bd7,6}}, {{0x19b7,3},{0x1118a,2}}, {{0xcd3,2},{0x4baf,6}}, {{0x1231c,5},{0x14e1a,4}}, + {{0x1969,1},{0x218c4,5}}, {{0x9d35,7},{0x1392,5}}, {{0x2b000,6},{0x2b01e,6}}, {{0x1cfa,5},{0x527c,7}}, + {{0x2f9b,5},{0x1d7e,3}}, {{0xbb4,2},{0x789d,2}}, {{0xb51d,8},{0x4665,4}}, {{0x2e2b3,2},{0x2b511,2}}, + {{0xede,1},{0x1a578,4}}, {{0x78f9,4},{0x78f9,4}}, {{0x215f,8},{0x1059,3}}, {{0x1d0a1,5},{0xe5e,2}}, + {{0x2948,4},{0xc62a,5}}, {{0xaaf,2},{0x2e267,4}}, {{0x3107,5},{0xf63,2}}, {{0x13e4c,5},{0xe66,3}}, + {{0x2948,3},{0xcc7,2}}, {{0x2948,3},{0x23f16,5}}, {{0x17614,6},{0x10a8a,4}}, {{0x712f,4},{0xfdf,3}}, + {{0xe0d,2},{0x4574,3}}, {{0x1f34,8},{0x1dc7,5}}, {{0x1f25,4},{0x9473,5}}, {{0xe466,7},{0x4aee,3}}, + {{0x359f,6},{0x1045a,4}}, {{0x1567,3},{0x1b8a,7}}, {{0x4599,3},{0xe11,1}}, {{0x243d3,5},{0xbd26,3}}, + {{0x10b9,2},{0x1210,3}}, {{0x12e2a,7},{0xcc9,2}}, {{0xe6f,3},{0x267d0,3}}, {{0x1081,5},{0xe2b,4}}, + {{0xc7ff,5},{0x1150,2}}, {{0xcda0,4},{0x56a7,6}}, {{0x4519,4},{0x1050,4}}, {{0x35a3,3},{0xed9,2}}, + {{0xb45d,4},{0xf24,2}}, {{0x27e0,3},{0x3317,4}}, {{0xccd,3},{0xed9,2}}, {{0xcbd,1},{0x913b,6}}, + {{0xe21,1},{0x1cd3,2}}, {{0x11005,5},{0xe6b,4}}, {{0xcd3,1},{0x23e99,2}}, {{0x7ff5,8},{0x1663,3}}, + {{0x18772,2},{0x74f9,2}}, {{0x2e193,4},{0x666,2}}, {{0x11a6,2},{0xfb8,3}}, {{0x1ff7,3},{0x4b96,5}}, + {{0x170ec,6},{0xe0b,4}}, {{0x168f,2},{0x7b57,6}}, {{0x46af,3},{0x2991a,3}}, {{0x20599,1},{0x2e27d,1}}, + {{0xab99,9},{0xf7a,2}}, {{0x3,1},{0xdfc9,4}}, {{0x12d4,3},{0xcc9,2}}, {{0x442d,1},{0x19b9,1}}, + {{0x1937,5},{0x6,1}}, {{0x6ea5,7},{0xf194,3}}, {{0xe83,5},{0x7096,4}}, {{0xe0a,1},{0xccb,2}}, + {{0x1303,3},{0x63cf,5}}, {{0xd131,4},{0x156a,3}}, {{0xe11,1},{0x23e1,3}}, {{0x1168b,6},{0xecb,2}}, + {{0x12b5,2},{0xcd3,1}}, {{0x4199,5},{0x1153,2}}, {{0x17c24,6},{0xcc3,2}}, {{0x1969,1},{0x20bc,8}}, + {{0x2df3b,4},{0x11c,2}}, {{0x2a47,3},{0x17fe7,4}}, {{0x11cb,3},{0xf7a,2}}, {{0x16a7,3},{0x3fb8,5}}, + {{0x1977,4},{0x1050,7}}, {{0x10bac,5},{0x17119,5}}, {{0x2948,3},{0x9a6,1}}, {{0xe97,3},{0x122d,3}}, + {{0xcc6c,5},{0x2,1}}, {{0x1537,4},{0x6ed1,7}}, {{0x4aff,10},{0x296f,3}}, {{0xed6,2},{0x320d,3}}, + {{0x29673,2},{0x29675,3}}, {{0x17f80,6},{0x14924,4}}, {{0xe11,1},{0x2f2e,4}}, {{0x3559,4},{0x5e50,2}}, + {{0x4599,2},{0x990b,4}}, {{0x712f,4},{0xec6,3}}, {{0xe01a,6},{0xe020,5}}, {{0x1877,5},{0x2,1}}, + {{0x1e80,6},{0x169b,8}}, {{0x3e43,6},{0xe7f,2}}, {{0xccb,2},{0x278e,7}}, {{0xe97,3},{0x1dc0,3}}, + {{0xe7a,1},{0xcd4,2}}, {{0x2e27d,1},{0x31721,2}}, {{0x1ee71,5},{0x4531,3}}, {{0xb289,7},{0x1722,5}}, + {{0x147b6,9},{0x2,1}}, {{0x63ad,8},{0xf84,5}}, {{0xb8a1,6},{0x57d1,6}}, {{0x2b000,6},{0x2b012,6}}, + {{0xeda3,6},{0xec6,3}}, {{0x1152b,4},{0xccc,2}}, {{0x7303,5},{0x15cf,7}}, {{0x2075,3},{0x9,1}}, + {{0x8295,5},{0x130e1,5}}, {{0x1f1e3,5},{0x1253,3}}, {{0x73ef,2},{0xe22,2}}, {{0x1def9,5},{0x24180,3}}, + {{0x6185,3},{0x2844,5}}, {{0x556,2},{0x69,1}}, {{0x1467,4},{0xcce,2}}, {{0x3e27,8},{0xe69,6}}, + {{0xf16,2},{0xcd2d,5}}, {{0x2cdf,4},{0x2271,3}}, {{0x2d3a7,4},{0x2d3ab,2}}, {{0xeb5,2},{0xe7f,2}}, + {{0xb3f1,3},{0xe09,1}}, {{0x79c5,8},{0x79cd,4}}, {{0x11dba,6},{0x11dc0,5}}, {{0xe22,2},{0x1025,2}}, + {{0x1be84,6},{0xcc9,2}}, {{0xb379,3},{0xfcb,2}}, {{0xe83,3},{0x28478,4}}, {{0x1084,3},{0x8,1}}, + {{0xeb5,2},{0x1fc7,3}}, {{0x148ec,7},{0x2f2e,3}}, {{0x9a8,1},{0x15e9,3}}, {{0x301b,4},{0x7d99,4}}, + {{0x10afc,5},{0x10b17,6}}, {{0x19b7,3},{0x22a87,4}}, {{0x74fc,2},{0xe99,1}}, {{0x20f6,5},{0xf0d,2}}, + {{0x111e7,8},{0xe11,1}}, {{0x27e0,3},{0xefa,2}}, {{0x24cab,6},{0xe67,2}}, {{0x471f,5},{0xffc,3}}, + {{0xeaa,2},{0xe22,2}}, {{0xe83,3},{0x1c832,6}}, {{0x1667,4},{0x17a5e,4}}, {{0x9407,5},{0xebb,3}}, + {{0x4669,5},{0x1303,4}}, {{0x1f42c,6},{0x1f444,3}}, {{0xe5b,3},{0x1ebf,3}}, {{0x1b7d,3},{0xe67,2}}, + {{0x523,2},{0x45,1}}, {{0xff20,5},{0xcbe,2}}, {{0x133de,5},{0x8b3d,4}}, {{0x1b2e1,6},{0x10b7,2}}, + {{0x473d,3},{0x142a,3}}, {{0x97ad,8},{0xe6b,4}}, {{0x2248,3},{0xccb,2}}, {{0x127f,3},{0xe09,1}}, + {{0x13460,6},{0xc3d0,3}}, {{0x39d5,5},{0xeabd,5}}, {{0x7416,1},{0xec0,3}}, {{0x479d,4},{0x156a6,6}}, + {{0x442b,3},{0x2bb4,2}}, {{0x1a66,1},{0x7e55,4}}, {{0x1ebc,5},{0xdcfc,6}}, {{0x2b46,4},{0x16d62,6}}, + {{0xf77,4},{0x11a6,2}}, {{0x8,2},{0x1796b,4}}, {{0x4ef5,4},{0x21125,4}}, {{0x1dcef,5},{0xeaf,3}}, + {{0x1e64,3},{0x5669,3}}, {{0x1064,3},{0xe0a,1}}, {{0xa,2},{0xe67,2}}, {{0x9add,5},{0x22bd,3}}, + {{0x17ada,5},{0xed6,2}}, {{0x11e1d,7},{0xed6,2}}, {{0xf9b,5},{0xfcb,2}}, {{0x1667,5},{0x2daa,7}}, + {{0x6d46,6},{0xc541,3}}, {{0xf69,4},{0xfc03,5}}, {{0x11ad9,5},{0x120c,3}}, {{0xf3a,2},{0xf20,2}}, + {{0x2d257,4},{0x2690c,2}}, {{0x4781,3},{0x1166,3}}, {{0x29cf,3},{0x1766a,2}}, {{0xc7de,7},{0x126a,4}}, + {{0x479d,4},{0x316e,5}}, {{0x1677,3},{0xe77,3}}, {{0x2ba5,1},{0xf7a,2}}, {{0x2467b,5},{0x24680,3}}, + {{0x77f0,4},{0x10e2,3}}, {{0x1a5e,3},{0x2,1}}, {{0x12d4,3},{0x1393,3}}, {{0xe22,3},{0x6b38,6}}, + {{0xcc7,1},{0x7a14,4}}, {{0xada9,6},{0x1a71,3}}, {{0x688,2},{0x57,1}}, {{0x10d6,5},{0xf0d,2}}, + {{0x17f62,5},{0x1ea3,3}}, {{0x70ad,3},{0x73d6,2}}, {{0xe8a,2},{0x9372,3}}, {{0x136f,2},{0x13e4,3}}, + {{0xf0a,3},{0x1760d,7}}, {{0x2de75,3},{0x55,2}}, {{0x70ad,3},{0xf9d,3}}, {{0x4cb9,5},{0x1317,2}}, + {{0x1821e,5},{0x114f,3}}, {{0x1367,3},{0x12aa,4}}, {{0xeab,2},{0xf24,2}}, {{0xe97,3},{0xfbb,3}}, + {{0xcc8,1},{0xe71,1}}, {{0x1647,5},{0x1203,3}}, {{0x5,1},{0xb,1}}, {{0x1066e,8},{0xf86,3}}, + {{0x10cb4,4},{0xf68,2}}, {{0x479d,4},{0x1153,2}}, {{0x19e7,6},{0xe2b,2}}, {{0x19b7,4},{0x1be9,3}}, + {{0x2de1b,5},{0xe19,1}}, {{0x7602,4},{0x180e,3}}, {{0xae19,4},{0xfdd,4}}, {{0x2696,12},{0xe6b,3}}, + {{0x8d,1},{0x611,2}}, {{0x6227,9},{0xec6,3}}, {{0xaaf,2},{0x1d7e,3}}, {{0x2015,4},{0x6e53,4}}, + {{0x2a47,3},{0x1db31,2}}, {{0x26203,5},{0xec6,3}}, {{0x31453,2},{0xcd6,1}}, {{0x3a61,9},{0x13e3,4}}, + {{0xccd,1},{0x8,3}}, {{0x1e7f9,6},{0xe6c,3}}, {{0x17ca6,5},{0xed6,2}}, {{0x4,3},{0x1d3c,3}}, + {{0x2768,7},{0x1ef0,8}}, {{0x354b,7},{0x3552,7}}, {{0x1a1a7,5},{0x2,1}}, {{0x19f7,4},{0x7e11,4}}, + {{0x6,2},{0x23e1,3}}, {{0x6c42,10},{0xf91,3}}, {{0x19b7,5},{0xa2b6,5}}, {{0xbc19,5},{0xbc1e,7}}, + {{0xbfb5,5},{0xe61,3}}, {{0xaf4,8},{0xaf4,2}}, {{0x1ff7,3},{0x155e,3}}, {{0x3bcd,4},{0x3b49,6}}, + {{0x1ff7,3},{0xa84c,4}}, {{0xc0ed,5},{0x428c,7}}, {{0x1796b,4},{0xb,1}}, {{0x4,1},{0x4538,3}}, + {{0x28b3a,1},{0x3034d,2}}, {{0x2d641,4},{0xe19,1}}, {{0xb87d,6},{0x1702,4}}, {{0x11cb,3},{0x22fe,5}}, + {{0x1987,5},{0x9812,6}}, {{0x2948,3},{0x111c,2}}, {{0x54cc,5},{0x1773,4}}, {{0x1cf3,3},{0xa,2}}, + {{0x1cd3,3},{0xe6c,3}}, {{0x7115,4},{0x11b5,2}}, {{0x18714,6},{0xe1b,4}}, {{0xe7a,2},{0xebb,3}}, + {{0x65f6,5},{0x22fe,5}}, {{0x234e,9},{0x2357,6}}, {{0x79c5,4},{0x1cc02,4}}, {{0x58a8,5},{0xcc9,2}}, + {{0x111a,3},{0xe95,2}}, {{0xf9b,5},{0xfb8,3}}, {{0x2d971,5},{0xe11,1}}, {{0xe2f,1},{0x9bd1,3}}, + {{0xe08,1},{0x1db3a,2}}, {{0x18f9,2},{0x1a71,3}}, {{0x247a,5},{0xed9,2}}, {{0xf80,2},{0xe22,3}}, + {{0x1119a,7},{0x10cb,4}}, {{0x4617,6},{0x461d,5}}, {{0xe83,3},{0x1ebf,3}}, {{0xf89,3},{0x1062,2}}, + {{0x2ba5,1},{0xe21,1}}, {{0x5117,5},{0xd39e,6}}, {{0x1e4c6,6},{0x277e,2}}, {{0x317a0,2},{0x3082b,2}}, + {{0x15c7,6},{0xf1a,2}}, {{0xb3f1,3},{0x23dae,5}}, {{0x534,2},{0x9f,1}}, {{0x3039f,4},{0xccb,2}}, + {{0xf0a,3},{0x11a6,2}}, {{0x5903,5},{0x2917,4}}, {{0x11d99,5},{0xe95,2}}, {{0x331f,3},{0x1c2a,4}}, + {{0x27e0,4},{0x190e6,3}}, {{0xe445,5},{0xe44a,6}}, {{0x7518,7},{0x1702,4}}, {{0xadf1,5},{0xadf6,7}}, + {{0x62dd,4},{0xfa9,4}}, {{0x2de87,4},{0xf,1}}, {{0xe99,1},{0xf11,1}}, {{0x51a6,6},{0xc754,5}}, + {{0xe2f,4},{0xe33,2}}, {{0x2cab,3},{0xcba,2}}, {{0x46bf,1},{0x45ee,3}}, {{0x15eb8,6},{0xfb8,3}}, + {{0x1677,3},{0x7974,4}}, {{0x1c520,5},{0xf62,3}}, {{0x14a7,4},{0x14a3c,4}}, {{0x7414,3},{0x71c6,5}}, + {{0x74e4,8},{0x3324,5}}, {{0x11d2d,7},{0xe95,2}}, {{0x1139f,7},{0x7417,4}}, {{0x17e74,4},{0xfbb,4}}, + {{0x15be8,7},{0x2251,3}}, {{0xa0a1,7},{0x14a2,5}}, {{0x2de45,3},{0x325,2}}, {{0xecb,2},{0x5,1}}, + {{0xf1d,2},{0x1ebf,3}}, {{0x1d866,6},{0x1059,3}}, {{0x29cf,3},{0x3642,2}}, {{0x50fd,5},{0x5102,7}}, + {{0x164da,6},{0xfdd,4}}, {{0xb829,9},{0xf62,3}}, {{0xa,2},{0xf91,3}}, {{0x17f94,5},{0x2271,3}}, + {{0x5fc4,5},{0x6ca7,3}}, {{0x1747,4},{0x3,1}}, {{0x70ad,3},{0x13e13,6}}, {{0x1dee7,6},{0x50cd,3}}, + {{0x9a6,1},{0xcc7,1}}, {{0xd11b,5},{0xebc,2}}, {{0xe0a,1},{0x70a3,5}}, {{0x1827,4},{0xf32,2}}, + {{0x75db,4},{0x142d,3}}, {{0x297eb,6},{0x6,1}}, {{0x1ddeb,5},{0x1e2a,3}}, {{0x3075,3},{0xcd3,1}}, + {{0xf15,3},{0x2bb4,5}}, {{0x70ad,3},{0xf1f,3}}, {{0x29cf,3},{0xb,1}}, {{0x1a07,3},{0xf20,2}}, + {{0xe1f,3},{0x8f2c,5}}, {{0x445b,2},{0x74fc,2}}, {{0x2231,5},{0x9a9a,7}}, {{0x17661,2},{0x1969,1}}, + {{0xc400,6},{0x2269,4}}, {{0xf4f,1},{0x24bc5,2}}, {{0x1593,3},{0x1317,2}}, {{0x1967,3},{0xdb21,3}}, + {{0x7e2d,7},{0x1c14,5}}, {{0x11e07,5},{0x4,1}}, {{0xf,1},{0x1d0,2}}, {{0x15cce,8},{0xcc9,2}}, + {{0xf0c,1},{0x1131,6}}, {{0x3a61,9},{0x1722,5}}, {{0x46bf,1},{0x1a63,3}}, {{0x624e,6},{0x6254,7}}, + {{0x2690c,2},{0x48d3,2}}, {{0x9f45,9},{0xe77,3}}, {{0x2afa8,4},{0x1e576,3}}, {{0x224f,7},{0xeb58,4}}, + {{0x46af,5},{0xe5e,2}}, {{0x12a3,3},{0xe0a,1}}, {{0x2b19,6},{0x2c6a,5}}, {{0x3756,3},{0x129a,6}}, + {{0xb37b,1},{0x2,1}}, {{0x2948,3},{0x12fe,2}}, {{0x2e22f,4},{0x314,2}}, {{0x1e08,6},{0x239e,3}}, + {{0x19b7,5},{0xccd,1}}, {{0x2dbf,5},{0x2477,3}}, {{0x1c54d,6},{0xe11,1}}, {{0x4522,3},{0xf59,3}}, + {{0x6b99,6},{0x1b7d,3}}, {{0xe1f,3},{0x27464,4}}, {{0xe5b,3},{0x7417,4}}, {{0x6685,10},{0xcce,2}}, + {{0x8d2d,7},{0x8d34,5}}, {{0x10fd7,5},{0xdd0a,3}}, {{0xb69d,3},{0xf4f,1}}, {{0x1a07,3},{0x1511,6}}, + {{0x3,1},{0xf35,2}}, {{0xf18,2},{0x9,1}}, {{0xcc8,1},{0x14f9,3}}, {{0xe7e1,8},{0xe6b,3}}, + {{0xef7,4},{0x1d574,4}}, {{0x9a6,1},{0xe08,1}}, {{0x48d7,2},{0xedd,1}}, {{0xb379,3},{0x11a6,2}}, + {{0x478f,3},{0x1317,2}}, {{0x17a7,8},{0xccd,3}}, {{0x1100e,9},{0xe95,2}}, {{0x113f,2},{0xe6b,4}}, + {{0x2b46,4},{0x10014,7}}, {{0xe97,3},{0x18351,3}}, {{0xbd15,4},{0x8,1}}, {{0xf0c,1},{0xc9af,4}}, + {{0x468,2},{0xe,1}}, {{0x11793,4},{0x1569,2}}, {{0x16a7,5},{0xb,1}}, {{0xe33,1},{0xcd3,2}}, + {{0xe32,1},{0x5724,3}}, {{0x1d63,5},{0x146d,10}}, {{0x2df3b,4},{0x188,2}}, {{0x479d,7},{0xef5,2}}, + {{0x2bb4,2},{0xf7a,2}}, {{0xed35,5},{0x12be,5}}, {{0xf1a,2},{0xf35,3}}, {{0x12d4,3},{0xe0b,2}}, + {{0x2de81,4},{0x7b,1}}, {{0xb3f1,3},{0xcc9,2}}, {{0x391f,5},{0x7a8a,5}}, {{0x296e1,5},{0xf32,2}}, + {{0x113c,3},{0x200c7,4}}, {{0x1b287,5},{0x1693,4}}, {{0x17556,7},{0xe0a,1}}, {{0x17e18,6},{0xe86,2}}, + {{0x1445a,9},{0xe0a,1}}, {{0x2add,6},{0x89df,6}}, {{0x17060,7},{0xec6,3}}, {{0x478f,3},{0xb400,3}}, + {{0x101e,4},{0xfdd,4}}, {{0xe08,1},{0xe0f9,3}}, {{0xe5b,3},{0x1c1e0,4}}, {{0x14fea,7},{0xec6,3}}, + {{0x27ef,4},{0x4e45,3}}, {{0x2de93,4},{0x688,2}}, {{0x1007,5},{0xf03,2}}, {{0x7844,4},{0x1d74,3}}, + {{0x1e4d1,4},{0xec6,3}}, {{0x9b79,7},{0x2781,5}}, {{0xb453,3},{0x5,2}}, {{0x3b5d,5},{0x172e,5}}, + {{0x4767,1},{0x10cb,2}}, {{0x712f,4},{0x141f,4}}, {{0x71b1,6},{0x71b7,7}}, {{0x2ba5,1},{0x1058,2}}, + {{0x11331,6},{0xcd3,1}}, {{0x6,1},{0xf1d,2}}, {{0x2993,5},{0x48c6,3}}, {{0xe1f,3},{0x12b8f,3}}, + {{0x127f,3},{0x134d2,5}}, {{0xe78,1},{0xccd,1}}, {{0x46bf,1},{0xed6,2}}, {{0x2f71,4},{0x1d770,3}}, + {{0x1947,5},{0xec3,3}}, {{0xc0ed,5},{0x9aec,4}}, {{0xacdd,6},{0x3075,4}}, {{0x41b5,5},{0x320d,4}}, + {{0x2d95,8},{0x16ad,5}}, {{0x2de5d,3},{0x1ac,2}}, {{0xe99,1},{0x15390,3}}, {{0x1715a,6},{0xec6,3}}, + {{0x4979,4},{0x2268,5}}, {{0x111a,3},{0xe28,3}}, {{0x385b,7},{0x7fcc,5}}, {{0x2fc1d,3},{0x2e273,1}}, + {{0x4cb9,5},{0xcbd,1}}, {{0x5534,4},{0x566f,4}}, {{0x1f4,2},{0x314,2}}, {{0x1287,5},{0x1040,3}}, + {{0x7573,5},{0x1783,4}}, {{0x34b3,4},{0xcd3,2}}, {{0x5eac,6},{0xe11,1}}, {{0x71d8,6},{0x180f,7}}, + {{0x8cf1,6},{0xf70,2}}, {{0x17966,5},{0xed6,2}}, {{0x11fa9,8},{0xe1c,3}}, {{0x12e5,3},{0x48d6,2}}, + {{0x17664,4},{0x1e2f0,2}}, {{0xcce,2},{0x319a,3}}, {{0x1bbf,4},{0x12884,4}}, {{0xe80,2},{0x1230c,2}}, + {{0x111a,3},{0x6068,4}}, {{0xc36,2},{0x2e7da,2}}, {{0x2e335,2},{0xe09,1}}, {{0xe6f,3},{0x4574,3}}, + {{0x2858,5},{0xafca,7}}, {{0x1977,3},{0x2d3bc,3}}, {{0x4,1},{0x1372,4}}, {{0x7235,6},{0x51c8,5}}, + {{0xf65,4},{0x12c14,4}}, {{0xe1f,8},{0xe27,8}}, {{0xe1f,16},{0xe2f,6}}, {{0xdcec,8},{0x1664,3}}, + {{0x15738,5},{0x15d1,5}}, {{0x115e,7},{0x2094,4}}, {{0x712f,4},{0x8,3}}, {{0xf0a,3},{0xe61,2}}, + {{0xe08,1},{0xec0,3}}, {{0x18ecc,2},{0x18ec8,2}}, {{0x1967,3},{0x12155,2}}, {{0x17bb6,5},{0x10f2,5}}, + {{0x24d5b,4},{0x20559,2}}, {{0x73ef,2},{0xcc3,2}}, {{0x6f1a,5},{0x2c85,2}}, {{0x46af,3},{0x319a,3}}, + {{0x19b7,3},{0x4201,8}}, {{0x9f,1},{0x4bd,2}}, {{0x13d7,10},{0x13e1,6}}, {{0x1937,4},{0xcce,2}}, + {{0xf89,3},{0x1f7b,4}}, {{0x27e0,3},{0xf0f8,5}}, {{0x1489,2},{0xcc3,2}}, {{0xcbd,1},{0x122d,2}}, + {{0x57a4,6},{0x3,1}}, {{0x6f1a,5},{0x198d0,4}}, {{0x2957,7},{0x7c24,5}}, {{0xe1f,3},{0x72d3,3}}, + {{0xc015,4},{0x333c,4}}, {{0x1677,3},{0xf92,2}}, {{0x19b7,3},{0xee9,2}}, {{0x2de75,3},{0x12e,2}}, + {{0x45c7,2},{0xed5,3}}, {{0x305f,6},{0x3065,8}}, {{0xb289,7},{0x27dc,4}}, {{0xcd2,2},{0x7b72,3}}, + {{0xf15,1},{0x4767,1}}, {{0x111a,3},{0x1085,3}}, {{0x4765,3},{0xe0f,1}}, {{0x3521,6},{0x3535,8}}, + {{0x5770,4},{0x14238,6}}, {{0xed9,2},{0xed6,2}}, {{0x7f41,4},{0x162c,3}}, {{0xf0a,3},{0x87a0,5}}, + {{0xe11,1},{0xf34,2}}, {{0x1154c,4},{0x3075,3}}, {{0x1a07,3},{0x2d655,2}}, {{0x24f2,5},{0x6cbe,4}}, + {{0x2702b,5},{0xe67,2}}, {{0xe7d,2},{0xcc3,2}}, {{0x7416,1},{0xf4f,1}}, {{0x1a07,3},{0x11b5,2}}, + {{0x4,1},{0xf86,2}}, {{0x73d6,2},{0x73d6,2}}, {{0xf89,3},{0x2ba5,1}}, {{0x19b9,1},{0x1f875,1}}, + {{0x27e0,3},{0x15ca,3}}, {{0x11eb7,6},{0x587c,5}}, {{0x2464b,4},{0x2464f,4}}, {{0x1ea71,2},{0x442d,1}}, + {{0xfaf,2},{0x10d3,3}}, {{0x16d7,6},{0x7f8f,6}}, {{0x4486,6},{0xe95,2}}, {{0x2b48,2},{0xe22,2}}, + {{0x4137,5},{0x8d1f,2}}, {{0x1f07,5},{0x127c,3}}, {{0x12e5,3},{0x955a,4}}, {{0x20377,4},{0xf4f,1}}, + {{0x8799,7},{0x87a0,5}}, {{0x3fed,3},{0xe69,5}}, {{0xce45,7},{0x2dd7,4}}, {{0x68,2},{0x21,1}}, + {{0xf,1},{0x1bd,2}}, {{0x70ad,3},{0xe08,1}}, {{0x1787,6},{0x36bd,7}}, {{0xe97,3},{0x28fcf,4}}, + {{0x19b9,1},{0x153a,3}}, {{0xcc14,7},{0x12a9,3}}, {{0x13b7,12},{0x13c3,4}}, {{0x7fe9,6},{0x7fef,6}}, + {{0x2b499,3},{0x1e872,2}}, {{0xe83,3},{0x16826,5}}, {{0x12af6,6},{0xec6,3}}, {{0x4765,3},{0x1e57d,2}}, + {{0x10e1f,4},{0x12a3,3}}, {{0x66c2,3},{0xf7a,2}}, {{0x2f71,4},{0x28d2,3}}, {{0x17094,3},{0x153a,3}}, + {{0x677,2},{0x69,1}}, {{0xbd9b,3},{0x6593,7}}, {{0xcc1,1},{0x1cf3,6}}, {{0x2c0d,8},{0x2c15,6}}, + {{0xe5b,3},{0xcbf,2}}, {{0xf77,4},{0x4bef,4}}, {{0x2c81,6},{0xcc9,2}}, {{0x62dd,6},{0x1722,5}}, + {{0x15012,6},{0x1894,3}}, {{0xcc8,3},{0xabc4,4}}, {{0xc1ad,7},{0xf84,5}}, {{0xb3f1,3},{0x20844,5}}, + {{0x2c8cb,4},{0x74f9,2}}, {{0x2f71,4},{0x19e93,5}}, {{0x10cb,2},{0xcce,2}}, {{0x83f1,7},{0xe69,5}}, + {{0x1a66,1},{0xd3b4,6}}, {{0xcc1,1},{0x2b86,4}}, {{0xe67,2},{0xed5,3}}, {{0x105f,3},{0x26b50,4}}, + {{0x4,2},{0x104a5,6}}, {{0x9a9,2},{0xcc1,1}}, {{0x5f90,6},{0x1689,6}}, {{0x79cd,4},{0x6,1}}, + {{0x2bd5,4},{0x7ae9,6}}, {{0x2f835,4},{0xe08,1}}, {{0xe97,3},{0xf86,2}}, {{0xedd,1},{0xe0a,1}}, + {{0xe5b,3},{0x194a8,6}}, {{0x177ea,6},{0x41b8,4}}, {{0x1150a,5},{0x1025,1}}, {{0x11866,6},{0xf7a,2}}, + {{0x9345,5},{0x155e,3}}, {{0xbc01,6},{0x9def,6}}, {{0x7573,5},{0x1254,6}}, {{0x4d72,3},{0xeca,3}}, + {{0x159e0,5},{0xccd,1}}, {{0xeab,2},{0x7118,4}}, {{0x29ddc,4},{0x1e84,3}}, {{0xe11,1},{0xcc8,1}}, + {{0x12d4,3},{0xfbb,3}}, {{0xb85b,5},{0x1e3b,4}}, {{0x28d0,4},{0x153ce,4}}, {{0x19f7,4},{0x9c85,3}}, + {{0x8d21,7},{0x28f8,5}}, {{0x1cca8,7},{0xe95,2}}, {{0x1937,4},{0x2b86,4}}, {{0x4522,3},{0x30ba,7}}, + {{0x7eb1,7},{0x1392,5}}, {{0x1e343,8},{0x8,1}}, {{0x30f27,4},{0x2b0dc,2}}, {{0xe11,2},{0x1ba9,3}}, + {{0xbd21,8},{0x4665,4}}, {{0xe61,3},{0x40a2,7}}, {{0x1e225,3},{0xec6,3}}, {{0xf0c,1},{0x4434,3}}, + {{0xa011,6},{0x1b34,4}}, {{0xef7,3},{0xe77,2}}, {{0x780a,4},{0xfa5,2}}, {{0xa215,5},{0x7998,4}}, + {{0x19b7,3},{0x3aff,5}}, {{0xfa3,6},{0xe77,3}}, {{0x1d2a2,5},{0x10e3,4}}, {{0x19b7,3},{0x1a66,1}}, + {{0x10a3,3},{0x11806,4}}, {{0xdac6,6},{0x1258,5}}, {{0xe2f,1},{0xe0f,1}}, {{0x245c,11},{0x2476,4}}, + {{0x4217,6},{0x10325,5}}, {{0x1dee,2},{0x5342,4}}, {{0x6bb,2},{0xd,1}}, {{0x1817,4},{0xec6,3}}, + {{0x7ca1,7},{0x38e2,5}}, {{0x46af,3},{0x121ad,5}}, {{0x1677,4},{0xefb,3}}, {{0xccd,1},{0xfa5,2}}, + {{0x30f9,7},{0x5dd0,3}}, {{0x122a,6},{0x2269,4}}, {{0x2eb49,4},{0x28b3a,1}}, {{0xb3f1,3},{0x1024,2}}, + {{0xcc1,1},{0xf59,2}}, {{0x14a4,2},{0x492e,3}}, {{0x207e9,6},{0x109b,2}}, {{0x1537,4},{0xf1a,2}}, + {{0x1cf27,6},{0x3075,3}}, {{0x2b46,4},{0x2603,4}}, {{0x4,1},{0x19898,5}}, {{0x337d,6},{0xf73,4}}, + {{0xe59a,8},{0x1252,3}}, {{0x124e,4},{0xfca8,5}}, {{0xbd99,5},{0xe31,2}}, {{0x860d,7},{0x4cbc,5}}, + {{0xe08,1},{0x2252,3}}, {{0x113f7,7},{0x6b0f,4}}, {{0x1b602,5},{0x1b607,4}}, {{0x27e0,3},{0x15e6d,3}}, + {{0x1927,4},{0xc342,3}}, {{0xbe4d,9},{0xe11,1}}, {{0x18b92,6},{0x18b98,4}}, {{0x13456,7},{0x127c,3}}, + {{0x6234,8},{0x2f26,5}}, {{0x17150,5},{0x2277,5}}, {{0xe32,1},{0xfe7,2}}, {{0xec3,3},{0xcc3,2}}, + {{0x9219,10},{0xed9,2}}, {{0x2e2b3,2},{0x308c1,2}}, {{0x11d99,5},{0xfe6,2}}, {{0xe5b,3},{0x2b71c,3}}, + {{0xa,2},{0x1523,4}}, {{0x4767,1},{0x1303,3}}, {{0x1ebf,3},{0x23e1,3}}, {{0xd131,4},{0x3688,4}}, + {{0x2b75,2},{0xe22,2}}, {{0xc6f7,4},{0xec3,6}}, {{0x150d0,6},{0x1a97,4}}, {{0x5d54,5},{0x6741,6}}, + {{0x2ba5,1},{0x44b2,5}}, {{0x27e0,4},{0x1cfb2,5}}, {{0x12e5,3},{0x2f6e3,2}}, {{0x77f0,4},{0x9,1}}, + {{0x4,2},{0x1bb4,9}}, {{0x1557,4},{0x1ab32,5}}, {{0x712f,4},{0x25d9,5}}, {{0x9f2d,8},{0xe6b,4}}, + {{0x73b9,5},{0xcd3,2}}, {{0x1590e,8},{0xcc9,2}}, {{0x2a47,3},{0xe71,1}}, {{0xcd3,3},{0xfb8,7}}, + {{0x24bd3,4},{0x24bdf,4}}, {{0x77bc,4},{0x38ec,3}}, {{0x1a17,5},{0x781c,5}}, {{0x8655,7},{0x13e3,4}}, + {{0xede,1},{0xe99,1}}, {{0xf15,1},{0x17acb,2}}, {{0x14356,6},{0xed6,2}}, {{0x48f7,10},{0xec6,3}}, + {{0x58cf,9},{0x3b73,3}}, {{0x4781,3},{0x9c24,8}}, {{0x12e5,3},{0x5fbd,7}}, {{0x12017,8},{0xe1c,3}}, + {{0x7643,5},{0xccb,2}}, {{0x11a55,7},{0xe67,2}}, {{0x1017d,5},{0xe11,1}}, {{0x1059,3},{0xf62,3}}, + {{0x1977,3},{0xcc3,2}}, {{0x7995,5},{0x2eb7,4}}, {{0x12158,3},{0x18f9a,4}}, {{0x11788,4},{0x14c6c,4}}, + {{0x442e,4},{0x4432,7}}, {{0x11e62,3},{0xa,2}}, {{0x1130,2},{0xe5e,2}}, {{0xd362,7},{0xeed,4}}, + {{0xeb04,6},{0x9781,5}}, {{0x1e571,4},{0x248ff,4}}, {{0x1e6f4,6},{0xf0d,2}}, {{0x11e5f,5},{0xe32,1}}, + {{0x79dd,5},{0xef5,2}}, {{0x2dbf,6},{0x10f4,4}}, {{0x3a29,4},{0x22a77,4}}, {{0x121c,3},{0xe0a,1}}, + {{0x2b48,2},{0xffc,3}}, {{0x1dc4d,6},{0x1dc53,3}}, {{0x1969,2},{0x1e737,5}}, {{0xf0c,1},{0x1371,3}}, + {{0x4781,3},{0x7d64,4}}, {{0x478f,3},{0xee9,2}}, {{0x93e1,8},{0xe0b,4}}, {{0xc95f,5},{0x122d,3}}, + {{0x2948,3},{0x2d979,2}}, {{0x1e6f4,6},{0xe6c,3}}, {{0x17b7a,7},{0x1fc7,3}}, {{0x8109,8},{0x4927,4}}, + {{0xfb16,5},{0xfb1b,6}}, {{0x156d,4},{0x1571,4}}, {{0x9a8,1},{0xe0b,2}}, {{0xcc1,1},{0x4c16,3}}, + {{0xe88,3},{0xde29,2}}, {{0xf77,4},{0x49a4,5}}, {{0x1567,6},{0x2f78,6}}, {{0x1499,3},{0x10b9,3}}, + {{0x1367,3},{0x1317,2}}, {{0x3c21,10},{0xec6,3}}, {{0x712f,4},{0x1e00b,5}}, {{0x28dfe,6},{0x6,1}}, + {{0x19b7,3},{0x4516,3}}, {{0x567,2},{0x57,1}}, {{0x16f7,6},{0x11cb,3}}, {{0xbccd,4},{0x2a567,3}}, + {{0xb3f1,3},{0xf7a,2}}, {{0xe1f,3},{0x2ef95,2}}, {{0x884d,7},{0x1ce6,5}}, {{0x1007,6},{0xa8ab,6}}, + {{0x1ea95,6},{0xe11,1}}, {{0xf,1},{0x19a,2}}, {{0xd777,8},{0xe11,1}}, {{0xe80,2},{0xcd3,1}}, + {{0x4765,3},{0x7974,4}}, {{0x11b5,3},{0x4a5f,4}}, {{0x478f,3},{0xd086,3}}, {{0xe8de,8},{0x11db,3}}, + {{0x5e5e,2},{0x123e,3}}, {{0x1501,2},{0x7844,7}}, {{0x19b9,1},{0x222ae,4}}, {{0x205a9,1},{0x28b3a,1}}, + {{0xc7ff,5},{0x3378,5}}, {{0x1ea6f,4},{0x4461,2}}, {{0x8db1,8},{0x1252,3}}, {{0x13924,7},{0xec6,3}}, + {{0xbfcd,5},{0xf3a,3}}, {{0x30815,4},{0x2b094,2}}, {{0x2e889,3},{0xccd,1}}, {{0x2948,4},{0xe0d,2}}, + {{0x479d,4},{0xccd,4}}, {{0x10dc,2},{0x7de9,2}}, {{0xe08,1},{0x2e32,3}}, {{0x2e27d,1},{0x30801,2}}, + {{0xe08,1},{0x9b99,3}}, {{0x189e4,7},{0x4415,3}}, {{0xcce,2},{0x10f2,5}}, {{0xf15,1},{0x1131,3}}, + {{0x9159,8},{0xfa9,4}}, {{0xffc,3},{0xdb73,3}}, {{0x17be8,6},{0xabc4,4}}, {{0x4781,3},{0x4618,3}}, + {{0xe71,1},{0xcc1,1}}, {{0xbdf9,5},{0x45c7,2}}, {{0xe1f,3},{0x1f7b,4}}, {{0x1601,3},{0xfdd,4}}, + {{0xe08,1},{0x162c,3}}, {{0x7d19,6},{0xe1c,3}}, {{0x314,2},{0x2058b,6}}, {{0x3559,7},{0x289c,7}}, + {{0x12059,6},{0x13e3,4}}, {{0xe99,1},{0x4461,2}}, {{0x2966,5},{0x11c60,5}}, {{0xcc1,1},{0x92af,6}}, + {{0x4765,3},{0x3976,3}}, {{0x666b,11},{0xe2b,2}}, {{0x20272,7},{0xf35,2}}, {{0xf65,4},{0xeb58,4}}, + {{0x1789,4},{0x678f,6}}, {{0xf65,4},{0xf79,3}}, {{0x83b5,7},{0x83bc,5}}, {{0x1f5a6,6},{0xcc3,2}}, + {{0xe99,1},{0xf7a,2}}, {{0x28c1,4},{0x2271,3}}, {{0xd131,5},{0xacbf,6}}, {{0x1e18a,6},{0xed5,3}}, + {{0x46af,3},{0x2f33,5}}, {{0x1817,7},{0x5dd0,3}}, {{0xb64b,3},{0x4a01,3}}, {{0xf65,4},{0xddad,5}}, + {{0x256a,12},{0xf86,3}}, {{0xa095,8},{0xeed,4}}, {{0xb391,5},{0x9bd3,3}}, {{0xe71,1},{0x2b88,4}}, + {{0x5534,4},{0x13dce,6}}, {{0x3bbf,4},{0x431c,5}}, {{0xf0a,3},{0x2e29,3}}, {{0x49a0,5},{0xc59c,6}}, + {{0x1447,7},{0x4d35,6}}, {{0x2e280,3},{0x30357,1}}, {{0x16a7,3},{0x11e87,4}}, {{0x17f7,6},{0xe6c,3}}, + {{0x33c3,6},{0x6ead,5}}, {{0xebe,5},{0x6e53,4}}, {{0x1967,3},{0xe95,2}}, {{0x4383,10},{0xfdf,4}}, + {{0x25803,5},{0x320d,3}}, {{0x2a47,3},{0x1057,1}}, {{0x72d1,2},{0x8cd4,5}}, {{0x1cdad,6},{0x6,2}}, + {{0xc1d1,5},{0xa797,5}}, {{0x1e65,3},{0xe7f,2}}, {{0xe08,1},{0xe5be,3}}, {{0xf77,3},{0xe69,5}}, + {{0xf77,5},{0xcd3,2}}, {{0x6c5c,7},{0x129a,6}}, {{0x465b,5},{0xccd,4}}, {{0x2006,4},{0x716c,4}}, + {{0xe78,1},{0x4,1}}, {{0x125d,6},{0x2d8d,3}}, {{0x1939,2},{0xfc8,3}}, {{0xd0fa,5},{0x41bc,4}}, + {{0x1b572,6},{0xf7a,2}}, {{0x113c,3},{0xe11,1}}, {{0xfdf,3},{0xcd3,1}}, {{0x73b9,5},{0x29d4,3}}, + {{0x1967,3},{0x52d8,3}}, {{0x11ad,3},{0xb83d,4}}, {{0x2dcd,10},{0xe11,1}}, {{0x12c3,5},{0xf01,4}}, + {{0x179d6,7},{0xf86,3}}, {{0x1b65,11},{0xf85,4}}, {{0x2a47,3},{0xfcb,2}}, {{0x17678,5},{0x1523,4}}, + {{0x4765,3},{0x1fbe,3}}, {{0x17bc0,6},{0xe11,1}}, {{0x19f7,4},{0x19ce2,3}}, {{0x6644,5},{0xcc7,1}}, + {{0x1d74,3},{0x17c0,2}}, {{0x2de75,3},{0x611,2}}, {{0x7b51,4},{0x266e,5}}, {{0x28b3a,1},{0x2e27e,2}}, + {{0x8811,7},{0x3196,3}}, {{0x2df3b,4},{0x12e,2}}, {{0x2e241,4},{0x314,2}}, {{0xf70,2},{0xf8d,2}}, + {{0x3d63,5},{0x1dc3,7}}, {{0xcba,2},{0xeed,4}}, {{0x1a66,1},{0x1085,3}}, {{0x114d,4},{0xeab,2}}, + {{0x28b2,5},{0x4326,4}}, {{0xef7,9},{0xffe,9}}, {{0x1844e,5},{0x2872,4}}, {{0xcc8,1},{0xf12,3}}, + {{0xb8d1,4},{0x6452,4}}, {{0x185e8,5},{0x2560,4}}, {{0x596b,12},{0xe11,1}}, {{0x25da3,7},{0x8,1}}, + {{0x38e7,5},{0x113e,3}}, {{0x8096,4},{0x809a,3}}, {{0x313f,8},{0x23c0,6}}, {{0xa215,7},{0x4,1}}, + {{0x20541,2},{0x20543,2}}, {{0x4853,3},{0xfc8,3}}, {{0x12c3,4},{0x192f0,4}}, {{0xc954,5},{0xec6,3}}, + {{0x112b8,5},{0x4618,4}}, {{0xeee,3},{0xec6,3}}, {{0x4,1},{0xfcb,2}}, {{0x1c84,4},{0x1c88,7}}, + {{0x11184,4},{0x2aaa8,2}}, {{0x10c5,5},{0x4a86,4}}, {{0x111a,3},{0x4bf9,4}}, {{0xe1f,3},{0x1a267,5}}, + {{0x308a3,2},{0xc27f,2}}, {{0xe01a,5},{0xed6,2}}, {{0xfa5,2},{0x33d3,2}}, {{0xe32,1},{0xcb8,1}}, + {{0x1e2ed,2},{0xe16,1}}, {{0x361d,9},{0x13e3,4}}, {{0x10c5,5},{0x12c59,5}}, {{0x58cf,7},{0x8951,4}}, + {{0x1e3a,3},{0xb495,4}}, {{0x105f,3},{0x70a6,3}}, {{0x1537,4},{0x2ee9,3}}, {{0x48ef,2},{0x48ef,2}}, + {{0x14d7,6},{0x1050,4}}, {{0xe7a,1},{0xcc8,1}}, {{0x1cfa,5},{0xa592,4}}, {{0x1fe16,6},{0x1b04,3}}, + {{0x15af,3},{0xfcea,5}}, {{0x2ea8,4},{0x14f9,3}}, {{0x179c2,5},{0x10d3,3}}, {{0x4137,5},{0x3643,4}}, + {{0xe09,1},{0xcc1,2}}, {{0x1579,5},{0xe67,2}}, {{0x353d,7},{0x1663,4}}, {{0x11a34,8},{0xec3,3}}, + {{0x28fd,6},{0xb2b3,6}}, {{0x7638,3},{0x65c7,7}}, {{0xe11,1},{0xcc9,2}}, {{0x187ca,4},{0x127c,3}}, + {{0xef7,3},{0xcc1,1}}, {{0x6bb,2},{0xf,1}}, {{0x68,2},{0xd,1}}, {{0x9de9,6},{0x70a6,3}}, + {{0x6ba6,7},{0x6bad,6}}, {{0x45,1},{0x152,2}}, {{0xf77,4},{0x834c,8}}, {{0x591d,5},{0x1742,5}}, + {{0x7414,3},{0x1118b,2}}, {{0x1b89c,6},{0xe0d,2}}, {{0xc88e,6},{0xec6,3}}, {{0x7305,3},{0x237f,4}}, + {{0x4af2,7},{0x6ba3,3}}, {{0x237f,4},{0x1040,3}}, {{0xe83,3},{0x8428,3}}, {{0x174b,3},{0x1be9,3}}, + {{0x16d7,6},{0x3c35,8}}, {{0x2e223,4},{0x314,2}}, {{0x7b45,4},{0x1e8b,3}}, {{0xdccb,7},{0x58ff,4}}, + {{0x450b,4},{0x3ce0,5}}, {{0xb3f1,3},{0x11b5,2}}, {{0xaebd,5},{0x169b7,5}}, {{0x7392,5},{0xd485,6}}, + {{0x1230,3},{0x180b,3}}, {{0xed1,3},{0xcc8,1}}, {{0xf89,3},{0xcc1,1}}, {{0x10dd2,6},{0x82bc,3}}, + {{0x1977,4},{0x2094,4}}, {{0xeab,2},{0xf150,5}}, {{0xcc8,1},{0x41b8,4}}, {{0x11dfc,4},{0x1025,1}}, + {{0xec64,6},{0xf7a,2}}, {{0x556,2},{0x57,1}}, {{0xaaf,3},{0xab1,16}}, {{0x2858,5},{0x2f58,4}}, + {{0x14edc,6},{0xec5,4}}, {{0x3a37,6},{0x568c,5}}, {{0x24f2,5},{0x319a,7}}, {{0xcc6,2},{0x158b8,6}}, + {{0x125d,6},{0x2236,3}}, {{0x107ce,8},{0xf86,3}}, {{0x10c5,5},{0x1189,3}}, {{0x2ca1,4},{0xf91,3}}, + {{0xcc8,1},{0x1189,3}}, {{0x101bf,6},{0xf91,3}}, {{0xeea,3},{0x10cc,2}}, {{0xcd2,2},{0x113f,2}}, + {{0xccd,1},{0x3e54,3}}, {{0xcc1,1},{0xf12,3}}, {{0xf0c,1},{0x15692,5}}, {{0x41a7,4},{0x2c85,2}}, + {{0x45,1},{0x44,2}}, {{0x1882c,7},{0xbd26,3}}, {{0x2de7b,4},{0x69,1}}, {{0x10b3e,5},{0xf97,4}}, + {{0x512,2},{0x21,1}}, {{0xdf33,8},{0xe77,3}}, {{0xadb5,5},{0x1693,4}}, {{0x46af,3},{0xed9,2}}, + {{0xe22,2},{0xfdd,4}}, {{0x18ecc,2},{0xddc,2}}, {{0x6,2},{0xa,2}}, {{0x12e7,3},{0x150e,9}}, + {{0xaba5,6},{0xfdd,6}}, {{0x5ddf,4},{0xf23,3}}, {{0xe33,1},{0xb410,4}}, {{0x19b7,6},{0x1cf3,3}}, + {{0x1e520,5},{0x1cd3,2}}, {{0x353d,5},{0x4618,3}}, {{0x4899,7},{0x1f78,7}}, {{0x2a58,2},{0xe0b,4}}, + {{0x9a71,7},{0x568c,5}}, {{0xeee,3},{0x1040,3}}, {{0x1969,1},{0x308b,3}}, {{0xf4f,1},{0xa704,4}}, + {{0x12dc6,7},{0xec6,3}}, {{0x9c2d,5},{0x9c32,7}}, {{0x1fa7,3},{0x2560,4}}, {{0x73b9,8},{0x3063,5}}, + {{0x30f1b,4},{0xddc,2}}, {{0xbbdf,6},{0xe11,1}}, {{0x15ed6,5},{0x1b9d,4}}, {{0x11b68,8},{0xf91,3}}, + {{0x79c5,4},{0x12ba7,3}}, {{0x29cf,3},{0xeb4,2}}, {{0x433d,4},{0x5342,3}}, {{0xe97,3},{0x1849,3}}, + {{0xe67,2},{0xeee,3}}, {{0xe21,1},{0x19770,5}}, {{0x3e0d,3},{0x9a8,2}}, {{0x1150a,5},{0xe0a,1}}, + {{0xbc33,3},{0x188c,4}}, {{0x1827,5},{0xe78,2}}, {{0xe1f,3},{0x1569,4}}, {{0x11dfc,4},{0xeea,3}}, + {{0x7a,2},{0x21,1}}, {{0xa965,9},{0xe11,1}}, {{0x5,1},{0x453b,4}}, {{0xe2b,2},{0xf35,2}}, + {{0x1e5c2,6},{0x1693,3}}, {{0x24635,3},{0xe95,2}}, {{0x1a6d,3},{0x1a70,5}}, {{0x1969,1},{0x3206,5}}, + {{0x1ff7,3},{0xf1f,3}}, {{0xf32,2},{0x1692,2}}, {{0xe86,2},{0x30f7,2}}, {{0x2f9d4,4},{0xe11,1}}, + {{0x2a56,4},{0x3b6f,10}}, {{0xcd3,2},{0x163b,5}}, {{0xf4f,1},{0x1cd3,2}}, {{0x11f5c,7},{0x126a,4}}, + {{0x19b7,3},{0x1d65,3}}, {{0x307e4,2},{0x307e4,2}}, {{0xf77,3},{0x122d,3}}, {{0x8385,8},{0x1040,3}}, + {{0x5f22,3},{0x1e5e,4}}, {{0x6cc4,4},{0xd229,4}}, {{0xe6c,3},{0xcc3,2}}, {{0x8,1},{0xcd3,2}}, + {{0xebeb,5},{0xcb5b,6}}, {{0x4161,5},{0x6e91,3}}, {{0x486f,6},{0xc117,6}}, {{0xeab,2},{0xfdf,3}}, + {{0x16a7,3},{0x103fd,3}}, {{0x8,2},{0xcd3,2}}, {{0x353f,5},{0x4784,4}}, {{0x12d4,3},{0x20379,3}}, + {{0xcbf,2},{0x3c88,3}}, {{0xf0c,1},{0x1db45,2}}, {{0x1153,2},{0xe92,3}}, {{0x83b5,7},{0xe0c,3}}, + {{0x1827,5},{0xcc1,1}}, {{0x29fc,5},{0x15ec,5}}, {{0x2aa02,5},{0xf1a,2}}, {{0x10e8d,5},{0x5151,3}}, + {{0xcbd,1},{0x2c59,4}}, {{0x122e,2},{0xed6,2}}, {{0xec64,7},{0x1a9a,4}}, {{0x7602,4},{0x186c8,6}}, + {{0x2bad,4},{0xef3,4}}, {{0x465b,5},{0xe87,2}}, {{0x8ba1,6},{0x51c8,5}}, {{0x1859,4},{0xeed,4}}, + {{0xa659,5},{0x13e3,4}}, {{0x225e,6},{0x4eef,5}}, {{0x2948,4},{0x6aa4,6}}, {{0xf0a,3},{0x2c8fe,3}}, + {{0xe16,1},{0x5b48,4}}, {{0xf9d7,6},{0x6451,5}}, {{0x393b,10},{0xfdf,4}}, {{0x29cf,3},{0x74f9,2}}, + {{0x17312,5},{0x4489,4}}, {{0x8fd9,5},{0x4a44,5}}, {{0x2521b,6},{0xe95,2}}, {{0x17fbc,6},{0xfdf,3}}, + {{0x22e5,4},{0x10cb,2}}, {{0x17ed6,6},{0xfbb,3}}, {{0x10b49,7},{0x5699,3}}, {{0x17d5a,5},{0x7207,5}}, + {{0x5290,9},{0xcce,2}}, {{0x22b8,4},{0x2d11,3}}, {{0x205a5,1},{0x205a1,1}}, {{0x72b7,4},{0x5669,3}}, + {{0xf77,3},{0x78d0,3}}, {{0x10c7d,8},{0x3b73,3}}, {{0x4695,3},{0xed9,2}}, {{0x1109,5},{0x6fe1,3}}, + {{0x30d57,3},{0x7905,1}}, {{0x5cdf,6},{0x167f,7}}, {{0x11b3,5},{0xddb9,4}}, {{0xec6,3},{0xa,2}}, + {{0x30633,1},{0x205a7,1}}, {{0x1677,3},{0x2f41,4}}, {{0xe83,3},{0x15af1,7}}, {{0x17f7,6},{0xfd4d,5}}, + {{0x10b9,2},{0x125f1,5}}, {{0xcc1,1},{0x123e,3}}, {{0xcc7,1},{0x3,1}}, {{0x2948,3},{0xc54d,5}}, + {{0xed1,5},{0x169d,3}}, {{0x23f7b,5},{0x1ea3,3}}, {{0x7559,6},{0x180f,7}}, {{0x31dd,3},{0x13e3,4}}, + {{0x4ef5,4},{0x4b96,5}}, {{0x512,2},{0xf,1}}, {{0x4853,3},{0xb396,2}}, {{0xe86,2},{0xe5e,2}}, + {{0x125d,8},{0x1265,9}}, {{0xeab,2},{0x4524,3}}, {{0x1967,3},{0x55ed,8}}, {{0x2a47,3},{0x1f642,6}}, + {{0xb57d,9},{0xec3,3}}, {{0xf0a,3},{0x17ac9,2}}, {{0x2510,4},{0xe22,2}}, {{0x479d,4},{0x1c17c,5}}, + {{0xe7a,1},{0x1a66,1}}, {{0x46af,3},{0x2d134,3}}, {{0x1be9,3},{0xcbd,1}}, {{0xcc3,2},{0x1150,2}}, + {{0xbccd,8},{0xcc5,2}}, {{0xcb7,2},{0xcc9,2}}, {{0x177cc,5},{0x2dd7,4}}, {{0x11c4,7},{0x6067,3}}, + {{0x1062,2},{0xf58,2}}, {{0x72cf,4},{0x149f,3}}, {{0xf3c8,6},{0xe92,3}}, {{0x7677,7},{0x1700,6}}, + {{0x10b49,5},{0x10af6,4}}, {{0xed1,4},{0xfcff,6}}, {{0x4f50,6},{0x14ab,4}}, {{0x15760,4},{0x1fa2,3}}, + {{0x6f1a,5},{0xe7d,2}}, {{0x45a7,3},{0x8b5e,7}}, {{0x450b,4},{0xe0a,1}}, {{0x17484,6},{0x17494,4}}, + {{0x2ba5,1},{0x2ca1e,3}}, {{0x1463a,8},{0xe95,2}}, {{0x2006,4},{0x1dee,2}}, {{0x6fa9,11},{0xf92,2}}, + {{0xc05d,4},{0xa,2}}, {{0x1fa80,6},{0xe11,1}}, {{0x373b,3},{0xf91,3}}, {{0xde8e,4},{0x34e0,7}}, + {{0xb4f9,9},{0xcc9,2}}, {{0xe97,3},{0x1839,2}}, {{0xf18,2},{0xf1a,3}}, {{0xf0a,3},{0x4ede,5}}, + {{0x116d8,5},{0x7152,4}}, {{0xe37,4},{0x789d,2}}, {{0x45a7,3},{0xe78,1}}, {{0x70ad,3},{0x3b62,4}}, + {{0xef7,3},{0x1ca18,6}}, {{0x4765,3},{0xc088,4}}, {{0xe0d,2},{0x1025,1}}, {{0xcc8,1},{0x12a7,3}}, + {{0x22e5,6},{0x2448,5}}, {{0x46af,3},{0x8,2}}, {{0x48d8,2},{0x2cdb6,3}}, {{0xb805,5},{0xe89,2}}, + {{0x2df3b,4},{0x152,2}}, {{0x1967,3},{0x9a4,3}}, {{0xf00,5},{0x3abf,4}}, {{0x1cfa,5},{0xd3eb,5}}, + {{0xe78,1},{0xe69,3}}, {{0xccd,1},{0x4aee,3}}, {{0x833d,5},{0xcd3,2}}, {{0x12d4,3},{0x28fc2,2}}, + {{0x1a29a,6},{0xcc9,2}}, {{0xcc8,1},{0x2e32,3}}, {{0xcc8,1},{0xe95,2}}, {{0x12c5,3},{0xe95,2}}, + {{0x4765,3},{0xeb4,2}}, {{0x6e09,7},{0x2663,6}}, {{0x11557,7},{0x11569,4}}, {{0x556,2},{0x9f,1}}, + {{0x25f03,7},{0xe11,1}}, {{0x7611,3},{0x1c67b,4}}, {{0x4af2,7},{0xcc5,2}}, {{0x8385,8},{0xec6,3}}, + {{0xf0a,3},{0x1dee,2}}, {{0x780a,4},{0x239c7,4}}, {{0x2b468,3},{0x1db33,3}}, {{0x19f7,4},{0xcba,3}}, + {{0x19b7,3},{0x185ff,7}}, {{0x7602,5},{0xcc3,2}}, {{0xcbd,1},{0x286d,3}}, {{0x73b9,5},{0xe0c,3}}, + {{0x27e0,3},{0x23626,5}}, {{0x6644,5},{0xe11,2}}, {{0x1d59f,7},{0xed9,2}}, {{0xf0a,3},{0xa385,4}}, + {{0x18b74,6},{0xe0a,1}}, {{0x2269,4},{0xe30,3}}, {{0x1967,3},{0x1166d,4}}, {{0x2501,5},{0xf50,3}}, + {{0xb3f1,3},{0xeca,3}}, {{0xb679,5},{0x120b,4}}, {{0xe22,2},{0xcc3,2}}, {{0x1a5cd,8},{0xe11,1}}, + {{0x5d56,3},{0xf91,3}}, {{0x4767,1},{0xf15,1}}, {{0x20671,5},{0xec6,3}}, {{0x1399c,6},{0x12a9,3}}, + {{0x1fbb,5},{0x9a9,2}}, {{0xe65,2},{0x8,1}}, {{0x1969,1},{0x116f3,5}}, {{0x2e27d,1},{0x30352,2}}, + {{0xe5b,3},{0xb2b3,6}}, {{0xc996,8},{0x1004,3}}, {{0x478f,3},{0x11e62,3}}, {{0x896d,9},{0x18b4,3}}, + {{0x57b6,4},{0xe7f,2}}, {{0x307e0,2},{0x307e0,2}}, {{0xe2f,1},{0x5,2}}, {{0x1ff7,3},{0x8666,2}}, + {{0xcbf,2},{0xcc6,2}}, {{0x103e,4},{0xe69,5}}, {{0xe3d,4},{0x2b0e8,2}}, {{0x18f7,5},{0xd229,4}}, + {{0x2a47,3},{0x12155,2}}, {{0x2620b,6},{0xed6,2}}, {{0x1847,5},{0xcc7,1}}, {{0x19b9,1},{0xfcb,2}}, + {{0x468,2},{0x7b,1}}, {{0xce50,5},{0x3,1}}, {{0xef7,3},{0x17cd,4}}, {{0x1a07,3},{0x237e,5}}, + {{0x1367,3},{0x15ffb,4}}, {{0x20056,6},{0xed6,2}}, {{0x27f1,3},{0x237d,2}}, {{0x2bfa1,5},{0xe71,1}}, + {{0x29441,4},{0xe09,1}}, {{0x11,1},{0x28b33,1}}, {{0xcc6c,4},{0xcce,2}}, {{0xf0c,1},{0x10434,4}}, + {{0xe63f,4},{0xb8e2,2}}, {{0x1b758,7},{0xf63,2}}, {{0xe88,3},{0xcc1,1}}, {{0x63d4,6},{0xf0f8,5}}, + {{0x125d,6},{0x7f83,6}}, {{0x113c,3},{0xcc6,2}}, {{0xd081,8},{0xec6,3}}, {{0x12e5,3},{0x1040,3}}, + {{0x8abf,7},{0xec6,3}}, {{0xf0c,1},{0xf0d,2}}, {{0x112b,5},{0x894e,4}}, {{0xe2b,2},{0x1663,4}}, + {{0x20245,5},{0x2024a,4}}, {{0x133a2,6},{0x9a8,1}}, {{0x51a6,6},{0x51ac,7}}, {{0xccb,2},{0xe78,2}}, + {{0x1677,3},{0x14dc7,7}}, {{0x712f,4},{0x1288,4}}, {{0x6b41,4},{0xa,2}}, {{0x2de63,3},{0x152,2}}, + {{0x5ea8,4},{0xe11,1}}, {{0x12d4,4},{0xee9,2}}, {{0xe1f,3},{0x11a6,3}}, {{0x34b1,5},{0x331f,4}}, + {{0xeab,2},{0x88d4,4}}, {{0x1711e,4},{0xf7a,2}}, {{0x2de63,4},{0x9f,1}}, {{0xc05d,5},{0xcc7,1}}, + {{0x8fd9,5},{0x8fea,7}}, {{0x11515,5},{0x18d2,5}}, {{0x18a2c,5},{0xf7a,2}}, {{0xb379,3},{0xcd3,2}}, + {{0x282d8,6},{0xe0a,1}}, {{0x2ebb,7},{0x2ec2,7}}, {{0x1e9e,5},{0x138e,2}}, {{0x2966,4},{0xfcb,2}}, + {{0x1f93c,7},{0x73d6,2}}, {{0x1214,3},{0x1ea2c,4}}, {{0x1ee95,5},{0x354f,4}}, {{0x28c1,4},{0xe7f,4}}, + {{0xbb89,4},{0x1189,3}}, {{0x442d,1},{0x1db33,2}}, {{0xe21,1},{0x29dd1,2}}, {{0x12e5,3},{0x2db18,3}}, + {{0x16a7,3},{0x11ad,3}}, {{0x5,1},{0x1189,3}}, {{0x16a7,3},{0x2ad4,9}}, {{0x29cf,3},{0x1059,3}}, + {{0x4853,3},{0x142a,3}}, {{0x29cf,3},{0x2d11,3}}, {{0x23f8,7},{0xe77,3}}, {{0x29cf,3},{0x5d66,8}}, + {{0x4853,3},{0x17acb,2}}, {{0x5cd,2},{0x45,1}}, {{0x8e95,9},{0x1004,3}}, {{0x56c7,5},{0xddf9,6}}, + {{0x15fb,3},{0xe6b,3}}, {{0x25363,5},{0x1796b,4}}, {{0x6cde,4},{0x41bd,6}}, {{0x1f600,4},{0x5,2}}, + {{0xe08,1},{0xe11,1}}, {{0x4a97,10},{0xf7a,2}}, {{0x7156,4},{0x11e87,4}}, {{0x1817,4},{0xc600,5}}, + {{0x178d,3},{0xe6b,2}}, {{0x1b92,12},{0xec6,3}}, {{0xc009,6},{0xc00f,6}}, {{0x24beb,4},{0xcbd,1}}, + {{0x1a9fc,6},{0xe11,1}}, {{0x1677,3},{0x22666,5}}, {{0x110ea,5},{0x7a39,4}}, {{0xf89,3},{0x10cb,2}}, + {{0x11208,5},{0x5,1}}, {{0x16ffc,6},{0x2,1}}, {{0x5b4c,7},{0xf91,3}}, {{0x1577,4},{0xd7cb,4}}, + {{0x75ce,4},{0x3643,3}}, {{0x75e8,8},{0x1f875,1}}, {{0xcc8,1},{0x286d,3}}, {{0x6cde,4},{0x1077a,5}}, + {{0xe78,1},{0x5,1}}, {{0x75d0,2},{0xf63,2}}, {{0x1967,3},{0x1118a,2}}, {{0x2,2},{0xe2b,2}}, + {{0x19e7,5},{0xcc9,2}}, {{0xb841,6},{0xb847,6}}, {{0xbb89,4},{0xf0f,2}}, {{0x7170,6},{0xe11,1}}, + {{0xb379,3},{0xed6,2}}, {{0x4899,4},{0x1111,4}}, {{0x1d09,11},{0xeed,4}}, {{0xf15,1},{0x78cd,3}}, + {{0xcd3,1},{0x1b872,5}}, {{0x73b9,5},{0xa1a0,3}}, {{0xf0a,3},{0x58ff,4}}, {{0xe32,1},{0xe92,3}}, + {{0xa,2},{0xad87,4}}, {{0x10a3,3},{0x19cc7,6}}, {{0xccd,1},{0x9a4,3}}, {{0x77cb,3},{0x15e9,3}}, + {{0xe78,1},{0xee9,2}}, {{0x24663,4},{0x2690c,2}}, {{0x5283,11},{0xed9,2}}, {{0xf69,3},{0xb,1}}, + {{0x25ccb,7},{0xe11,1}}, {{0x74f9,2},{0x1dcb4,3}}, {{0x4599,3},{0x9dc7,4}}, {{0x10a5,2},{0xcc7,1}}, + {{0x46bf,1},{0xe16,1}}, {{0x90ed,5},{0x9593,2}}, {{0x20f8,4},{0xe7b0,5}}, {{0xf0f,2},{0x27dc,4}}, + {{0x136f,2},{0x5,2}}, {{0x298d9,4},{0x73d6,3}}, {{0x1c91,4},{0x2f26,5}}, {{0xc05d,4},{0x61a1,4}}, + {{0xd11b,5},{0xef5,2}}, {{0xf15,1},{0x1b8b,6}}, {{0x751a,5},{0xfdf,4}}, {{0x18f7,4},{0x1951e,5}}, + {{0xfa5,2},{0xcc3,2}}, {{0x355b,3},{0x27dc,4}}, {{0xe83,3},{0x11dc,3}}, {{0x16a7,3},{0x1d7d,4}}, + {{0x1ebe,3},{0xe0b,4}}, {{0xf11,1},{0x169d,4}}, {{0x2d79,7},{0xec6,3}}, {{0x15c10,9},{0xe11,1}}, + {{0xb391,5},{0xb396,2}}, {{0x10b9,3},{0x4,1}}, {{0x29de,4},{0xe32,1}}, {{0xe0ca,6},{0xfdd,4}}, + {{0xb559,6},{0xfa5,4}}, {{0x1839,3},{0xfdd,4}}, {{0x6cfc,5},{0x10018,5}}, {{0x9555,5},{0xe5d6,6}}, + {{0x1208,4},{0x22dc7,4}}, {{0x104a,3},{0x4516,3}}, {{0x4853,3},{0x1766b,2}}, {{0x4597,4},{0xab88,4}}, + {{0x385b,7},{0xe78,1}}, {{0x7602,5},{0xcd3,2}}, {{0x2e280,3},{0x1327,1}}, {{0x1ebe,3},{0x2c30,4}}, + {{0x2de9,8},{0x2df1,6}}, {{0x4853,3},{0x3444,6}}, {{0x1d18,5},{0x11dc,4}}, {{0x5bb6,3},{0xc8f7,4}}, + {{0x3019,6},{0x31c6,5}}, {{0x1189,3},{0xe22,2}}, {{0xbfe5,5},{0xb3de,7}}, {{0x142d,3},{0xeed,4}}, + {{0x111e7,8},{0xe77,3}}, {{0xabc6,3},{0xcdda,2}}, {{0xf11,1},{0xede,1}}, {{0xf65,4},{0x2c57,8}}, + {{0xe5b,3},{0xcc1,1}}, {{0x1677,3},{0x344b,4}}, {{0xeed,4},{0xed9,2}}, {{0x5a21,7},{0x5a35,6}}, + {{0x1081,7},{0x10b9,2}}, {{0x2af9a,5},{0x2af9f,2}}, {{0xc36,2},{0x2b088,2}}, {{0xbc7b,2},{0x12bf,4}}, + {{0xf4d0,6},{0x13e4,3}}, {{0xb9f1,4},{0x3a8f,4}}, {{0x1882c,6},{0xf62,3}}, {{0x10cb,2},{0xcc3,2}}, + {{0x29fc,5},{0x3c9a,5}}, {{0xe97,3},{0x1ebf,3}}, {{0xefc9,7},{0x1592,4}}, {{0xb3f1,3},{0x4aed,5}}, + {{0xb199,5},{0xe11,1}}, {{0x9ddd,8},{0x8fbc,4}}, {{0x18bc6,4},{0x142d,3}}, {{0x16c1e,5},{0x141f,4}}, + {{0xefa,2},{0x9a8,1}}, {{0xe2f,1},{0xdc6f,4}}, {{0x18246,6},{0x28e3,4}}, {{0x9ff9,6},{0x2dd7,4}}, + {{0xb3f1,3},{0xc4b3,8}}, {{0xf1d,2},{0x286d,3}}, {{0xf11,1},{0xfdf,3}}, {{0x1967,3},{0x1166,3}}, + {{0x111a,3},{0x3e11,2}}, {{0x46af,3},{0xf15,1}}, {{0xf0a,4},{0x1ca3,3}}, {{0x2a29,7},{0x143c,4}}, + {{0x57,1},{0x1ac,2}}, {{0x1dcc,8},{0xeb7,7}}, {{0x19a7,4},{0xe0d,2}}, {{0x113ec,5},{0x1a5b,6}}, + {{0x2a47,5},{0x16bc,10}}, {{0xf59,2},{0x10a5,2}}, {{0x9c21,8},{0x2dd7,4}}, {{0x12d4,3},{0x7de9,2}}, + {{0x12f8,5},{0xf86,2}}, {{0x2858,4},{0x17ec,4}}, {{0x724d,6},{0x1462,5}}, {{0x28d0,4},{0x1d7b6,5}}, + {{0x41ed,4},{0x1cd3,2}}, {{0x1088,3},{0x277d,3}}, {{0x1e57d,2},{0xf0c,1}}, {{0x46cd,7},{0x1ac7,3}}, + {{0x2de75,3},{0x9e,2}}, {{0x425d,8},{0x104d4,3}}, {{0x2a94,4},{0x14ff,5}}, {{0x110c9,5},{0xe67,2}}, + {{0x72d1,2},{0xdb01,6}}, {{0x683f,9},{0xeed,4}}, {{0xcb8,1},{0x169d,3}}, {{0x16070,7},{0x1be9,3}}, + {{0x46bd,3},{0x27c44,4}}, {{0x15e9,3},{0x93e6,4}}, {{0x224f,7},{0x168f,8}}, {{0xcc1,1},{0x1d7d,3}}, + {{0x11d0a,5},{0xe89,2}}, {{0xcc1,1},{0xf17,2}}, {{0x29e0,3},{0xfdd,4}}, {{0x1a47,9},{0xeb7,7}}, + {{0x205a9,1},{0x3144b,2}}, {{0x148a,3},{0x5342,3}}, {{0x111a,7},{0x6ead,4}}, {{0x71d8,6},{0x2c15,4}}, + {{0x6171,5},{0x8a87,6}}, {{0x121c,3},{0x1d75,3}}, {{0x2df3b,4},{0x2ba,2}}, {{0x12d4,3},{0x1230c,2}}, + {{0xcc1,1},{0x6a0f,4}}, {{0x18f7,4},{0x104a5,6}}, {{0x1567,3},{0x156ee,4}}, {{0x1ca54,6},{0xed6,2}}, + {{0x1cd2,3},{0xe86,2}}, {{0xf77,4},{0x89f5,4}}, {{0x1647,5},{0x5959,5}}, {{0x1967,7},{0x155e,9}}, + {{0xfa6,3},{0xf72,5}}, {{0x77f2,3},{0x7efc,4}}, {{0xe1f,3},{0x1054,3}}, {{0x73bb,3},{0xe61,2}}, + {{0x103b9,5},{0x809a,3}}, {{0x4767,1},{0x2690c,2}}, {{0x4,1},{0xc591,6}}, {{0x1024e,5},{0xe11,2}}, + {{0x4fd2,6},{0x14f9,3}}, {{0x111a,3},{0x1594,3}}, {{0x1f18,3},{0xf91,3}}, {{0x314,2},{0x260,2}}, + {{0x28c1,6},{0xe133,5}}, {{0x2c15,3},{0xe22,2}}, {{0x18f95,2},{0x18f97,7}}, {{0x4aff,6},{0x6f8b,4}}, + {{0x1677,5},{0x10f5,3}}, {{0x7414,3},{0x4a44,4}}, {{0x1f996,5},{0x4415,3}}, {{0x1a07,3},{0x26756,3}}, + {{0x12e5c,8},{0xf0f,2}}, {{0x8b65,9},{0xe77,3}}, {{0x25b6b,5},{0x7a36,3}}, {{0x122d,2},{0xe717,4}}, + {{0x38b4,4},{0xe69,3}}, {{0x442b,3},{0xcd3,2}}, {{0x1290,4},{0x174b,3}}, {{0xb3f1,3},{0xf16,2}}, + {{0xebe,4},{0xfb94,6}}, {{0x1ba43,6},{0x11d2,3}}, {{0x4765,3},{0xab88,4}}, {{0x2ba5,1},{0x10a6,2}}, + {{0x2225b,5},{0x1944,3}}, {{0x425d,8},{0x3bc5,6}}, {{0x1b03,3},{0xec5,4}}, {{0x2777,6},{0x6,1}}, + {{0x12e5,3},{0xe67,2}}, {{0x10c67,6},{0xe86,2}}, {{0x17f0a,3},{0x6411,4}}, {{0xe83,3},{0x145b,2}}, + {{0x2fa38,4},{0xe7a,1}}, {{0x7d61,7},{0x6791,5}}, {{0x111a,3},{0x149f,3}}, {{0x2a29,5},{0xe89,2}}, + {{0xdc3c,9},{0xe95,2}}, {{0x127f,3},{0x8f2c,5}}, {{0x3521,4},{0x1cd3,2}}, {{0xe97,3},{0x41e9,4}}, + {{0x2fffb,4},{0xf,1}}, {{0x684c,8},{0xf7a,2}}, {{0x1215a,6},{0x12160,4}}, {{0x3035e,4},{0x205a1,1}}, + {{0x1d14c,6},{0xec6,3}}, {{0x20ba1,5},{0x13e4,3}}, {{0xe2cf,9},{0xed9,2}}, {{0x7788,5},{0x1009b,6}}, + {{0x24668,2},{0x17661,2}}, {{0x24a4d,4},{0xcd3,2}}, {{0x1a306,6},{0xec6,3}}, {{0xe33,1},{0x2bb4,2}}, + {{0x2473b,5},{0x1091a,3}}, {{0x12b2,5},{0x640e,7}}, {{0x824d,4},{0x3fed,3}}, {{0xc27b,2},{0x30391,2}}, + {{0x3aed,6},{0xa84c,4}}, {{0xe282,6},{0xec6,3}}, {{0x1af54,6},{0xec6,3}}, {{0x12e5,3},{0x12f16,4}}, + {{0x1fffc,6},{0x1152,3}}, {{0x7f41,4},{0xe5e2,5}}, {{0x39b9,4},{0x2236,3}}, {{0x7416,1},{0x5538,2}}, + {{0x3521,4},{0x277fa,3}}, {{0x1db00,5},{0x4aef,3}}, {{0x28b31,3},{0x307bb,1}}, {{0x1877,4},{0xb0c5,8}}, + {{0x27e0,3},{0x23916,5}}, {{0x1e2e9,4},{0x29437,3}}, {{0x75b4,4},{0x4f20,3}}, {{0x2de75,4},{0x8d,1}}, + {{0x101f,2},{0xe6c,3}}, {{0x7e2d,7},{0x2eb7,4}}, {{0x6fb6,9},{0x1783,4}}, {{0x1392e,6},{0xe0a,1}}, + {{0xc4e7,8},{0x1004,3}}, {{0x465b,5},{0xbbb5,4}}, {{0x1007,5},{0x1f38,4}}, {{0xcc1,1},{0x62f3,4}}, + {{0x4137,5},{0x13e3,4}}, {{0x1f8e,7},{0x18b2,5}}, {{0x1ebe,3},{0xb3c8,3}}, {{0xedd,1},{0x29922,2}}, + {{0x2501,6},{0xe2b,2}}, {{0x24653,4},{0x2ba5,1}}, {{0x1729a,6},{0x45f5,4}}, {{0xe1f,3},{0xe0f,1}}, + {{0x2df3b,4},{0x176,2}}, {{0x479d,4},{0x5342,3}}, {{0x183b,3},{0xcbd,1}}, {{0x1bbf,5},{0x1099,4}}, + {{0x217a9,6},{0xcdda,2}}, {{0xba39,4},{0x1928b,4}}, {{0x142d4,6},{0xe0a,1}}, {{0xcce,2},{0xe86,2}}, + {{0xe7a,1},{0xcc7,1}}, {{0x7416,1},{0x6,1}}, {{0x1b263,6},{0x1a14a,3}}, {{0xf,1},{0x188,2}}, + {{0x27e0,3},{0x1cd3,2}}, {{0xb805,5},{0x5,2}}, {{0x7416,1},{0x12154,3}}, {{0x1580a,8},{0xcc9,2}}, + {{0xe19,1},{0x12f82,4}}, {{0x2393b,5},{0x181b,3}}, {{0x2de75,3},{0xe,2}}, {{0x72cf,4},{0x7955,4}}, + {{0x12e5,3},{0x48d0,2}}, {{0x112b,4},{0x11cd8,6}}, {{0x207e,10},{0xec6,3}}, {{0x9a6,1},{0x648d,8}}, + {{0x1ff7,3},{0x2bb4,2}}, {{0x19b7,3},{0x2eea7,2}}, {{0x532c,9},{0xec6,3}}, {{0x478f,3},{0x15e6d,3}}, + {{0xf16,2},{0x109b,2}}, {{0xc959,3},{0xeed,4}}, {{0xb,1},{0x1569,2}}, {{0x1019,4},{0x82d5,5}}, + {{0x17661,2},{0xe08,1}}, {{0x3aed,6},{0x167f,8}}, {{0x11649,7},{0x2eec,4}}, {{0x4781,3},{0xe7f,2}}, + {{0x1a66,1},{0x11cb,3}}, {{0xe,1},{0xd,2}}, {{0xe08,1},{0x1e65,3}}, {{0x33d1,4},{0xfdb,4}}, + {{0x3559,4},{0xab9f,3}}, {{0x4853,3},{0x2280,2}}, {{0x1062,2},{0x1025,1}}, {{0xcc8,1},{0x10180,5}}, + {{0x1840a,4},{0x7a39,4}}, {{0x2e59,8},{0x1663,4}}, {{0xeecc,7},{0x5909,4}}, {{0x6b24,7},{0x1252,3}}, + {{0xe7d,2},{0x15fe,4}}, {{0x12e7,3},{0xb,1}}, {{0x772d,6},{0x180d,4}}, {{0x1be84,6},{0xe11,1}}, + {{0x1153,2},{0x17df,3}}, {{0x73d6,2},{0xf1a,2}}, {{0x5,1},{0xef3,4}}, {{0x7f41,4},{0x198e1,5}}, + {{0x11d5,5},{0x51c8,5}}, {{0x1967,3},{0x1839,2}}, {{0xe11,1},{0x10b7,2}}, {{0x1467,4},{0xf1a,2}}, + {{0xe5e7,5},{0x90b3,4}}, {{0xe11,1},{0x2e32,3}}, {{0x1b0b,7},{0xed9,2}}, {{0x1dbd,10},{0xec6,3}}, + {{0xfb1,3},{0x2dd7,4}}, {{0x117d5,7},{0x35e0,4}}, {{0x19b9,3},{0xbd26,3}}, {{0x75b4,5},{0x1050,3}}, + {{0xe25,2},{0x1cac,3}}, {{0x8385,8},{0xcc9,2}}, {{0x62ea,5},{0x1e5e,4}}, {{0x41b7,3},{0x413e,4}}, + {{0x2a56,4},{0xe650,5}}, {{0x2e2b3,2},{0xe59,2}}, {{0x1ff7,5},{0x22308,3}}, {{0x46af,3},{0x2ca1e,2}}, + {{0xcc7,1},{0x1131,3}}, {{0xb3b7,3},{0x1ea3,3}}, {{0x7108,5},{0x3ee5,5}}, {{0x138b,7},{0x1392,5}}, + {{0x32ff,7},{0xefa,4}}, {{0xad31,9},{0xf62,3}}, {{0x168ae,6},{0xe11,1}}, {{0xb69d,4},{0x52d8,3}}, + {{0x450b,4},{0x450f,10}}, {{0x5,1},{0xe0f9,3}}, {{0x5951,6},{0x113f,2}}, {{0x1af1,4},{0x1b0d,3}}, + {{0x772d,5},{0x4,1}}, {{0xc05d,4},{0xf381,3}}, {{0xecc,3},{0xcd3,1}}, {{0x1677,4},{0x277a,3}}, + {{0x2de7b,4},{0x7b,1}}, {{0x7602,4},{0xe7f,2}}, {{0xc6f7,4},{0x7974,4}}, {{0x17e7,9},{0x21c2,6}}, + {{0x113c,3},{0x1af06,6}}, {{0xcc1,1},{0xfa9,4}}, {{0xe6f,3},{0xee9,2}}, {{0xe33,1},{0xb37b,1}}, + {{0xf15,1},{0x1fbe,3}}, {{0xb,1},{0x4326,2}}, {{0x4553,4},{0x7d99,4}}, {{0x111a,3},{0x48e0,5}}, + {{0xf0a,3},{0x1db45,2}}, {{0x12312,6},{0x2dd7,4}}, {{0x1ff7,3},{0x9438,9}}, {{0xe33,1},{0x78ed,2}}, + {{0x73d3,5},{0x1ed3b,4}}, {{0x523,2},{0x9f,1}}, {{0x4385,3},{0xe0d,2}}, {{0x18372,5},{0x1064,3}}, + {{0x12e5,3},{0x2aaaf,3}}, {{0x4855,2},{0x77b3,4}}, {{0x1467,4},{0x2454,3}}, {{0x18b38,6},{0xc39f,4}}, + {{0x6cb7,5},{0x1a2ba,4}}, {{0xd16,26},{0xd18,24}}, {{0x1a9fe,4},{0x2075,3}}, {{0xf77,3},{0x16786,5}}, + {{0x27b3,7},{0x1212,4}}, {{0x2560,4},{0xfa9,4}}, {{0xede,1},{0x4a01,3}}, {{0x1f7f,5},{0x5ddd,6}}, + {{0xb933,3},{0xcce,2}}, {{0x8d,1},{0x468,2}}, {{0xb00d,8},{0x6c7f,4}}, {{0xf0a,3},{0x149c,5}}, + {{0x12d4,3},{0xec6,3}}, {{0x2523b,5},{0xf86,3}}, {{0x20da9,6},{0xfcb,2}}, {{0x1577,4},{0x1bf0,2}}, + {{0xaf2,6},{0xaf4,1}}, {{0xb34,4},{0xb34,3}}, {{0x7421,9},{0x1004,3}}, {{0x16b7,4},{0x7d80,5}}, + {{0x1ff7,3},{0xe0f9,3}}, {{0x1677,3},{0x17c0,2}}, {{0x4e8d,7},{0x1f7c,3}}, {{0x4767,1},{0xf60a,5}}, + {{0xe3d,4},{0xc273,2}}, {{0x6c83,5},{0x23d2,3}}, {{0x14d7,6},{0x14dd,9}}, {{0xf77,4},{0x13644,6}}, + {{0x1702e,5},{0xdd0a,3}}, {{0x29cf,3},{0x1579,3}}, {{0x10e3,3},{0x44b3,4}}, {{0x103fb,5},{0x10400,6}}, + {{0x2015,3},{0x2242e,5}}, {{0x4853,3},{0x74f9,2}}, {{0xfb7,3},{0x1d74,3}}, {{0x2be3,5},{0x9a9,3}}, + {{0xccd,1},{0x1040,3}}, {{0x9a8,1},{0x18351,3}}, {{0xe37,4},{0x2e7da,2}}, {{0x9a6,1},{0x1cd3,2}}, + {{0xc6ec,4},{0x1155,2}}, {{0xef7,3},{0x1393,3}}, {{0xed1,3},{0xf1d,1}}, {{0x2501,5},{0xcc3,2}}, + {{0x1960d,6},{0xec6,3}}, {{0x63ad,8},{0xe92,3}}, {{0x4853,4},{0x1fe74,5}}, {{0xcd1,5},{0x9a8,1}}, + {{0x12a9,3},{0x2477,3}}, {{0x10b4,4},{0x9a5,2}}, {{0xef7,4},{0x1c215,2}}, {{0xeb3b,7},{0xeb42,4}}, + {{0x11d9,3},{0x2d56,7}}, {{0x4225,4},{0xed9,2}}, {{0x4781,3},{0xf11,1}}, {{0x9a8,1},{0x1bd67,5}}, + {{0x8da5,5},{0xdb70,6}}, {{0x25263,5},{0x526d,3}}, {{0x1fe8,6},{0x2e2c,3}}, {{0x2b48,2},{0x1d76e,5}}, + {{0x75ce,4},{0x386f,4}}, {{0x2b19,4},{0xf79,3}}, {{0x2ca3f,4},{0x1118a,2}}, {{0x6cb7,7},{0xaa38,5}}, + {{0x5ef,2},{0x8d,1}}, {{0x3d55,5},{0x10f4,4}}, {{0x3911,8},{0x26ae,6}}, {{0x2e864,4},{0xbb8,2}}, + {{0x2231b,6},{0x1113,2}}, {{0x3a29,4},{0x1d7d,3}}, {{0x3409,9},{0x10e2,5}}, {{0x1a6a5,5},{0xf7a,2}}, + {{0x712f,4},{0x2266,5}}, {{0xb8dd,5},{0x1143,3}}, {{0x24f2,5},{0xe0a,1}}, {{0x1a051,7},{0xe67,2}}, + {{0xe1f,3},{0x1e508,6}}, {{0x156e8,6},{0x156ee,4}}, {{0x567,2},{0x8d,1}}, {{0x1025,1},{0x83db,4}}, + {{0x4f9e,5},{0xa2c3,6}}, {{0x27e0,3},{0x70a6,3}}, {{0x2519b,6},{0xcc3,2}}, {{0x117ca,4},{0xf35,2}}, + {{0x159e0,5},{0x56a8,5}}, {{0x9a8,1},{0xe717,4}}, {{0xe16,1},{0xe0d,2}}, {{0x27fba,6},{0xe11,1}}, + {{0x11e49,5},{0xfb0,3}}, {{0x2247,5},{0xebb,3}}, {{0x725a,10},{0xcce,2}}, {{0x28c1,6},{0x2c6a,5}}, + {{0x2d431,5},{0xe71,1}}, {{0x478f,3},{0xb,1}}, {{0xf57,2},{0xc85b,7}}, {{0x29a08,4},{0x4767,1}}, + {{0xb8e9,9},{0xec6,3}}, {{0x1765e,2},{0x17660,4}}, {{0xb745,5},{0x1e633,4}}, {{0x4781,3},{0xe0a3,6}}, + {{0x70f1,3},{0xed5,3}}, {{0xa3f5,7},{0x2236,3}}, {{0x29cf,3},{0x1a5e,3}}, {{0x46af,3},{0xe21,1}}, + {{0x1c907,7},{0xcc9,2}}, {{0x1667e,7},{0xec6,3}}, {{0x1219,6},{0x10db,7}}, {{0x1f38,1},{0x9594,9}}, + {{0x7b45,8},{0x126a,4}}, {{0x11916,6},{0xf70,5}}, {{0x20579,1},{0x2e273,1}}, {{0x253fb,4},{0x1054,3}}, + {{0x6,1},{0x73d6,2}}, {{0x55a9,10},{0xcc9,2}}, {{0x4aec,4},{0x1783,4}}, {{0xec3,3},{0xfb0,2}}, + {{0xbded,4},{0xe92,3}}, {{0x14c5c,8},{0xf7a,2}}, {{0x1927,4},{0x157c,3}}, {{0xcc9,2},{0xf7a,2}}, + {{0x18284,4},{0xe0d,2}}, {{0xb379,3},{0x1b2e,3}}, {{0x49a4,5},{0xe0b,4}}, {{0x2521d,4},{0xe95,2}}, + {{0x1c55,7},{0x149f,8}}, {{0x21c8,10},{0x14ab,4}}, {{0xa2d5,9},{0xec6,3}}, {{0x5534,4},{0x16d9f,5}}, + {{0xa185,7},{0xe0a,1}}, {{0x2de51,3},{0x7a,2}}, {{0x5,1},{0xeca,3}}, {{0x17222,6},{0x17228,4}}, + {{0x1fbe,3},{0x1153,2}}, {{0x4f02,5},{0xe61,3}}, {{0xede,1},{0xa,2}}, {{0x1959,3},{0xdb21,3}}, + {{0x4,1},{0xe5e,2}}, {{0xcbd,1},{0xf8e,3}}, {{0xff6d,5},{0x2f94,3}}, {{0x4535,5},{0x1130c,3}}, + {{0x2de81,4},{0x69,1}}, {{0x1f07,5},{0xec6,3}}, {{0xee4,4},{0x6437,5}}, {{0xfb8,3},{0x38ee,5}}, + {{0x1a07,3},{0x2,1}}, {{0x4bfa,3},{0xe11,1}}, {{0x45a7,3},{0xccd,1}}, {{0x1189f,2},{0xcba,2}}, + {{0x1a1a7,5},{0x5724,3}}, {{0x2a47,3},{0x1722,5}}, {{0x4781,3},{0x5342,4}}, {{0xc1ad,5},{0xec6,3}}, + {{0xf79,3},{0xd28b,6}}, {{0xf80,2},{0x7095,3}}, {{0xf77,3},{0x1d40,2}}, {{0x824d,5},{0x3318,3}}, + {{0xc015,4},{0x104a,3}}, {{0xf0a,3},{0x245f6,5}}, {{0x1b8db,5},{0xed5,3}}, {{0x2df3b,4},{0x164,2}}, + {{0xe8a,2},{0x1fc7,3}}, {{0xf20,2},{0x8,1}}, {{0xfe3,4},{0xcb26,7}}, {{0x100f9,6},{0x566f,4}}, + {{0x1a17,10},{0xe69,6}}, {{0xe0d,2},{0x9511,5}}, {{0x12068,3},{0x56a8,5}}, {{0xe22,2},{0x4928,3}}, + {{0x8481,8},{0xec6,3}}, {{0x1967,3},{0x2236,3}}, {{0xf0a,3},{0x1230c,2}}, {{0x1939,2},{0x113f,2}}, + {{0x19a7,5},{0x6,1}}, {{0xcc1,1},{0x189f,3}}, {{0x17484,8},{0xf35,2}}, {{0x2de75,3},{0x1e2,2}}, + {{0x1a5b,2},{0x1463,4}}, {{0x3e0b,5},{0x15886,3}}, {{0x1a5e,3},{0xcd3,1}}, {{0x451b,2},{0x6,1}}, + {{0x1f582,5},{0xbf38,4}}, {{0x5903,6},{0x5916,7}}, {{0xe1f,3},{0x4458,2}}, {{0xbb89,4},{0x1131,3}}, + {{0x111a,3},{0xd347,5}}, {{0xf15,1},{0xe43d,6}}, {{0x2b84,8},{0x2b8c,3}}, {{0x12f6,6},{0xebb,3}}, + {{0x2fffb,4},{0x69,1}}, {{0x417d,6},{0xe6c,3}}, {{0x1ddf4,5},{0xe0a,1}}, {{0x2b81,3},{0x2b84,11}}, + {{0x11142,6},{0xe6b,3}}, {{0x268b4,2},{0xe71,1}}, {{0xf57,2},{0xe25,2}}, {{0x2393b,5},{0x2468,3}}, + {{0xc05d,6},{0x4798,5}}, {{0xb74,1},{0x2b0e4,6}}, {{0x1967,3},{0x24bdf,2}}, {{0x12e5,5},{0x1f38,1}}, + {{0x1637,9},{0x1024,7}}, {{0x41fb,6},{0x4201,8}}, {{0x19b9,1},{0x1bef,2}}, {{0x22b9b,6},{0xed9,2}}, + {{0xa34d,10},{0xed6,2}}, {{0xef7,3},{0x3e0e,3}}, {{0xea6a,5},{0x1b4f,5}}, {{0xf1a,2},{0x9a8,1}}, + {{0xf0c,1},{0x20509,2}}, {{0x2006,3},{0x2ea14,2}}, {{0xe32,1},{0xeb8b,5}}, {{0xc0ed,5},{0xef3,4}}, + {{0x1c79,2},{0xe3d2,2}}, {{0x545,2},{0x57,1}}, {{0x1e31f,5},{0xe0a,1}}, {{0xe33,1},{0xe1c,3}}, + {{0x1e520,5},{0x1e537,4}}, {{0x18ecc,2},{0xd1c,2}}, {{0x2d1f,3},{0x8,1}}, {{0xb235,7},{0xb23c,5}}, + {{0xf4f,1},{0xffc,3}}, {{0x12ff6,7},{0xcc9,2}}, {{0x11b3,5},{0x5710,5}}, {{0x433d,4},{0x1d7e3,5}}, + {{0x12c3,4},{0x12c14,4}}, {{0x12e5,5},{0x17ec,4}}, {{0x4519,4},{0x7e9d,3}}, {{0x1567,3},{0x27782,4}}, + {{0x25b3b,6},{0xcd3,2}}, {{0x6d46,6},{0xed6,2}}, {{0x1760a,5},{0x138e,2}}, {{0x2abc4,5},{0xe0d,2}}, + {{0xe2f,1},{0x74f3,2}}, {{0x1467,4},{0x2075,3}}, {{0x1ebc,4},{0x7a15,4}}, {{0xe09,1},{0xfe8,2}}, + {{0x13154,7},{0x1a72,3}}, {{0x10c5,6},{0x7949,4}}, {{0x47c7,5},{0x365c,7}}, {{0x4f9e,5},{0xd05a,6}}, + {{0x113c,3},{0xcd3,1}}, {{0x1847,5},{0x1d7e,3}}, {{0xf0a,3},{0x29a19,2}}, {{0x1a66,7},{0x1a6d,8}}, + {{0x1977,3},{0x2b83,2}}, {{0x2e271,3},{0x30357,1}}, {{0x833d,5},{0x11ce,4}}, {{0x9a8,1},{0xe7d,4}}, + {{0xcc1,1},{0x276b,4}}, {{0x2e193,4},{0x5bc,2}}, {{0xcd3,3},{0x110fb,3}}, {{0x3eb3,8},{0x153a,3}}, + {{0x1d92c,7},{0xee8,2}}, {{0xf0a,3},{0x8,2}}, {{0xe7d,2},{0x13459,3}}, {{0x1f875,1},{0xf15,1}}, + {{0x22e5,4},{0x42f9,5}}, {{0x4abe,9},{0xe0b,4}}, {{0x1857,4},{0xe1a2,4}}, {{0x6ecc,7},{0xe69,6}}, + {{0xcc8,1},{0x1fbe,3}}, {{0x19f9,2},{0x13e1,5}}, {{0xe83,3},{0x18b4,3}}, {{0x10e1f,4},{0x1252,3}}, + {{0xe61,2},{0x11cb,3}}, {{0x455f,5},{0xcbe,3}}, {{0x46af,3},{0x2b49d,2}}, {{0x11418,6},{0x7978,5}}, + {{0x2c45,6},{0x2c4b,4}}, {{0x50bc,8},{0x12a9,3}}, {{0x1699e,6},{0x30f5,4}}, {{0xb,1},{0xccd,1}}, + {{0xca04,8},{0xe92,3}}, {{0x6c1b,9},{0x1663,4}}, {{0xe37,4},{0x78a3,2}}, {{0x2bf1,6},{0x240b,6}}, + {{0x15a44,7},{0xf62,3}}, {{0xebe,5},{0xec3,3}}, {{0x17038,7},{0x1a19,3}}, {{0x2e193,4},{0x512,2}}, + {{0x5a74,4},{0x1523,4}}, {{0x104e,3},{0x8,3}}, {{0x1153,2},{0x9204,4}}, {{0x1507,7},{0x1461,4}}, + {{0x236c,4},{0x104a,3}}, {{0x1026f,7},{0x126a,4}}, {{0x2e235,4},{0x468,2}}, {{0x1171,6},{0x1150,2}}, + {{0xcc1,1},{0x1c550,5}}, {{0x28d0,5},{0x145b,2}}, {{0x2939,4},{0x1e965,3}}, {{0xe97,3},{0x18774,2}}, + {{0x567,2},{0x7b,1}}, {{0x1647,5},{0xe7f,4}}, {{0x1db3c,2},{0x48d0,2}}, {{0x152b0,8},{0xfe6,2}}, + {{0x16ff2,6},{0xe0a,1}}, {{0x12e5,3},{0xcd3,1}}, {{0xcb8,1},{0xcd3,1}}, {{0xe11,1},{0x1153,2}}, + {{0x48a,2},{0xe,1}}, {{0x1120,3},{0x14e4b,4}}, {{0x2790e,5},{0x1062,2}}, {{0x478f,3},{0x6ba3,3}}, + {{0x19b7,3},{0x48da,2}}, {{0xe0f,2},{0xed5,6}}, {{0xfcb,2},{0xcc8,3}}, {{0x9a8,1},{0x143a,3}}, + {{0x6,2},{0xe25,2}}, {{0x74e4,5},{0x63cf,5}}, {{0x8cf1,6},{0xcc9,2}}, {{0x3a29,4},{0x11a6,2}}, + {{0xef7,4},{0x8666,2}}, {{0x2ba5,1},{0x29dd1,3}}, {{0xe16,2},{0x6e91,3}}, {{0x17592,6},{0xe6b,4}}, + {{0xbfcd,7},{0x31f8,3}}, {{0xcc6,2},{0xb,1}}, {{0x1677,3},{0x14e5d,5}}, {{0x12d4,3},{0x29620,4}}, + {{0x113c,3},{0xd885,5}}, {{0x179ae,5},{0x943a,5}}, {{0x56,2},{0xd,1}}, {{0x8,1},{0x9a7,2}}, + {{0x4597,4},{0x92ea,4}}, {{0x4edf,4},{0x9a5,2}}, {{0x4ef5,4},{0xb3e8,6}}, {{0x1ccd,5},{0xcd2,2}}, + {{0x2280,3},{0x158f,3}}, {{0x658e,8},{0xec6,3}}, {{0xe71,1},{0xeb5,2}}, {{0x48d6,2},{0xf4f,1}}, + {{0x9309,5},{0xc3d0,3}}, {{0x7ce9,8},{0x168b,4}}, {{0x6d1f,5},{0x16935,5}}, {{0xe97,3},{0x101d,3}}, + {{0x1819,5},{0xf7a,2}}, {{0xede,1},{0xc43a,6}}, {{0x1893a,7},{0xf35,3}}, {{0x80fd,6},{0x56a8,5}}, + {{0x331b,10},{0x13e3,4}}, {{0x11767,5},{0x10f5,3}}, {{0x6bb,2},{0x21,1}}, {{0xba39,6},{0xfdd,6}}, + {{0x1d98f,6},{0xf91,3}}, {{0x1ff7,3},{0x5eaf,4}}, {{0x29fc,5},{0x1025,1}}, {{0x1d63,4},{0x1050,3}}, + {{0xdd4f,6},{0x10f2,5}}, {{0x2de7b,4},{0x8d,1}}, {{0x1e57d,2},{0x1a66,1}}, {{0x101f,3},{0x1632,5}}, + {{0x1830,3},{0xf1a,2}}, {{0x19b9,1},{0x7979,4}}, {{0x9e01,8},{0xe0b,4}}, {{0x5de3,8},{0x1722,5}}, + {{0x16a7,3},{0x15457,7}}, {{0x4765,3},{0x9a7,2}}, {{0x23c4b,3},{0x1058,3}}, {{0x677,2},{0x8d,1}}, + {{0x1b4c7,5},{0x2269,4}}, {{0x6,2},{0xe86,2}}, {{0x479,2},{0x45,1}}, {{0x13eec,5},{0x6ba8,5}}, + {{0xe2b,2},{0xcc3,2}}, {{0x7416,1},{0xf1a,2}}, {{0x23e8b,4},{0x7a0f,4}}, {{0x1f582,5},{0x2b89,3}}, + {{0xcf37,6},{0xe67,2}}, {{0x1384,2},{0x3fe0,4}}, {{0x4ef5,4},{0x1a63,3}}, {{0x259e3,5},{0x2c15,3}}, + {{0x19b7,3},{0x2ca1e,2}}, {{0xfb8,3},{0xec6,3}}, {{0x884d,7},{0x1040,3}}, {{0x1557,4},{0x45f2,2}}, + {{0xe78,1},{0x70f8,3}}, {{0xe2b,2},{0x1054,3}}, {{0xe21,1},{0xd0a9,4}}, {{0xdd4f,6},{0xe69,5}}, + {{0x1df9,5},{0x1664,3}}, {{0x9279,6},{0x1288,4}}, {{0x25bd3,4},{0x25bd7,4}}, {{0x17660,3},{0xe33,1}}, + {{0x18ecc,2},{0x18ee2,2}}, {{0x235d,5},{0xf50,3}}, {{0x1848a,6},{0x30f4,4}}, {{0xcb17,8},{0xebb,3}}, + {{0xe0f,1},{0xe22,2}}, {{0xb385,10},{0xf35,2}}, {{0x311a9,2},{0x2b088,2}}, {{0x101f,2},{0xcbd,1}}, + {{0x1db34,2},{0xedd,1}}, {{0x1be,2},{0x49b,2}}, {{0x1537,6},{0x9a0c,5}}, {{0x21839,6},{0xf7a,2}}, + {{0x1165,4},{0xebc,2}}, {{0x5f1b,5},{0x1664,2}}, {{0x10a3,3},{0xe11,1}}, {{0x204f9,4},{0x1702,4}}, + {{0x1252e,4},{0xa3d7,6}}, {{0xf89,3},{0xd885,5}}, {{0x12f6,4},{0x1153,2}}, {{0x1427,6},{0x3b49,6}}, + {{0xaeb1,5},{0xeb5,2}}, {{0x1a7c5,6},{0xf86,3}}, {{0xeb5,2},{0x1059,3}}, {{0x1967,3},{0x1e57e,5}}, + {{0xcbd,1},{0x11a6,2}}, {{0x155e,3},{0x14a2,3}}, {{0x1a66,1},{0x2252,3}}, {{0x1ec70,8},{0xe0a,1}}, + {{0x1839,3},{0x2803,6}}, {{0xe97,3},{0x20510,2}}, {{0x127f,5},{0x11b5,2}}, {{0xf16,2},{0x3075,3}}, + {{0x699,2},{0xf,1}}, {{0x9ca7,4},{0xf7a,2}}, {{0x1367,4},{0xf5ba,6}}, {{0x1da3a,5},{0x3372,4}}, + {{0xadb5,5},{0x2b79,4}}, {{0x2c56b,4},{0x20543,2}}, {{0x101e,4},{0xe6b,4}}, {{0x205a3,2},{0x205a1,1}}, + {{0xe5b,3},{0x16ad,3}}, {{0x1ebc,6},{0xcc9,2}}, {{0x9fe3,5},{0x9ff4,5}}, {{0x1fdd9,3},{0xe99,1}}, + {{0xebe,5},{0x14bfd,5}}, {{0x4383,5},{0x5,1}}, {{0xccb,2},{0x9,1}}, {{0x25d5e,2},{0x4461,2}}, + {{0x236c,4},{0x530b,5}}, {{0xcc1,2},{0x1898e,5}}, {{0x1567,3},{0xf0f8,5}}, {{0xd194,8},{0xed6,2}}, + {{0x1455e,6},{0xcb9,4}}, {{0xf77,4},{0x2371,3}}, {{0x442b,3},{0x11ca,2}}, {{0x183b,3},{0x1a57,4}}, + {{0xe5be,3},{0x9a9,2}}, {{0x10c5,4},{0xcb26,7}}, {{0x4217,5},{0x331f,4}}, {{0x2de81,4},{0x57,1}}, + {{0x1797,10},{0x17a1,5}}, {{0x3131,7},{0x4d83,5}}, {{0xfa6,3},{0xe86,2}}, {{0x2b75,2},{0xcc1,2}}, + {{0x712f,4},{0xb1a0,5}}, {{0xf15,1},{0x3306,7}}, {{0x29c0,3},{0x1fbe,3}}, {{0xe78,1},{0x12b4,3}}, + {{0x10b8,2},{0x2dd7,4}}, {{0x2ba,2},{0x21,1}}, {{0x1ebc,6},{0x13f7e,4}}, {{0x1153,3},{0xec6,3}}, + {{0x12c5,3},{0x7d81,4}}, {{0x7416,1},{0xe0f,1}}, {{0x1db3b,2},{0xe21,1}}, {{0xcaca,6},{0xe95,2}}, + {{0x4e60,2},{0xf91,3}}, {{0xc017,2},{0x2ee9,3}}, {{0xe7f,2},{0x153a,3}}, {{0x6825,9},{0x128c,4}}, + {{0xacc5,6},{0xaccb,6}}, {{0x2a317,5},{0x74f9,2}}, {{0x6cde,4},{0xe0f9,3}}, {{0x2b500,6},{0x2e7da,2}}, + {{0x699,2},{0x21,1}}, {{0x8859,8},{0xcc9,2}}, {{0xe3d,4},{0x2b094,2}}, {{0x2c2d,7},{0x12a9,3}}, + {{0xe83,3},{0x10a6,2}}, {{0xf16,2},{0xe92,3}}, {{0x90f9,7},{0xe95,2}}, {{0x18ecc,2},{0xe47,2}}, + {{0x611,2},{0x8d,1}}, {{0x833d,5},{0x42f9,5}}, {{0x2b55,5},{0xe7d,2}}, {{0xaaf,2},{0x205a9,2}}, + {{0x244d,7},{0xf6bb,4}}, {{0x4853,3},{0xe2f,1}}, {{0xede,1},{0xfa4,2}}, {{0x14ee6,6},{0xec6,3}}, + {{0xf37b,6},{0x7955,4}}, {{0x80fd,6},{0x10f5,3}}, {{0xebe,4},{0x4665,4}}, {{0x7414,3},{0x10d3,3}}, + {{0x2240,4},{0x6ca7,3}}, {{0x18336,5},{0x43fc,2}}, {{0xf70,2},{0xe22,2}}, {{0xed6,3},{0x1839,3}}, + {{0x45f2,2},{0xfc8,3}}, {{0x2a47,3},{0x7f09,3}}, {{0x46bf,1},{0x19b9,1}}, {{0x1677,3},{0x2f94,3}}, + {{0x10d38,6},{0x5,1}}, {{0x824d,4},{0x270d7,3}}, {{0x1807,10},{0x18b2,5}}, {{0x17120,2},{0x1632,5}}, + {{0x10d6,5},{0x4fca,8}}, {{0x24653,6},{0xf0c,1}}, {{0x63ba,6},{0xa2f3,5}}, {{0x124c,11},{0xe95,2}}, + {{0x3591,5},{0x1215,4}}, {{0x2b48,2},{0xcd3,1}}, {{0x5604,9},{0x5342,3}}, {{0x9e6d,9},{0xec6,3}}, + {{0x1303,3},{0x1fc7,3}}, {{0xfb8,3},{0x2261,3}}, {{0x8d45,8},{0xef3,4}}, {{0x17e40,7},{0xed9,2}}, + {{0x9de9,6},{0x9def,6}}, {{0xe83,3},{0xc600,5}}, {{0x2948,3},{0xe21,1}}, {{0x7170,4},{0x2921c,3}}, + {{0x2add,6},{0x101f,3}}, {{0x1153,2},{0x1252,3}}, {{0x1969,1},{0x217f4,5}}, {{0x73ed,4},{0x10cb,3}}, + {{0x1967,7},{0x101f,2}}, {{0xec3,3},{0x27db,5}}, {{0x1e8b,3},{0xfdd,4}}, {{0x16a7,3},{0x17c0,2}}, + {{0x2a47,3},{0x115a,3}}, {{0x2e271,3},{0x205a7,1}}, {{0x4685,10},{0x1592,4}}, {{0x6386,9},{0xec6,3}}, + {{0x19b7,3},{0x10b7,2}}, {{0xe6f,3},{0x4665,4}}, {{0x4519,4},{0xe78,1}}, {{0x73b9,5},{0x1fc7,3}}, + {{0x1ffa,3},{0xcc3,2}}, {{0x19b7,3},{0xf8e,3}}, {{0x2de3f,3},{0x2de42,3}}, {{0x10c5,5},{0xe22,3}}, + {{0x12dda,9},{0xe11,1}}, {{0x1025,1},{0x1cd3,2}}, {{0x111a,7},{0x2ce9,4}}, {{0xe1f,3},{0x12a3,3}}, + {{0x6cb7,11},{0xe95,2}}, {{0x30ecd,4},{0xc273,2}}, {{0xcb01,8},{0x2477,3}}, {{0x471f,6},{0xe2b,2}}, + {{0x12f6,4},{0xcba,2}}, {{0xef7,3},{0x2467,4}}, {{0x4765,3},{0x6ca7,3}}, {{0x2948,3},{0xf92,2}}, + {{0xa3d1,5},{0x1d32,4}}, {{0xe7f,2},{0x6,2}}, {{0x14ab,3},{0xcc4,2}}, {{0xb901,9},{0xf23,3}}, + {{0xbfe5,5},{0x9,1}}, {{0xaaf,2},{0xf86,2}}, {{0x10592,7},{0x4e3a,4}}, {{0x19b9,1},{0x80c5,3}}, + {{0x149c,3},{0xcc3,2}}, {{0x1927,4},{0x4516,3}}, {{0x17df0,5},{0x5538,2}}, {{0xbd99,5},{0x9a4,3}}, + {{0x1a66,1},{0x1549d,7}}, {{0xf0c,1},{0xe7d,2}}, {{0x1be,2},{0x48a,2}}, {{0x4853,3},{0x1230,3}}, + {{0x306d,8},{0x3075,6}}, {{0xfa87,7},{0x1a9a,4}}, {{0x1857,4},{0x1055f,7}}, {{0x30ef1,4},{0x2b4f0,2}}, + {{0x1716e,6},{0xfdd,4}}, {{0x11e12,5},{0xe71,1}}, {{0x18a02,6},{0x45f2,2}}, {{0x1290,5},{0x4a6a,6}}, + {{0x1bec,5},{0x618f,5}}, {{0x11191,4},{0x1403c,4}}, {{0x56ee,6},{0x1720,7}}, {{0x12e5,3},{0x29a22,2}}, + {{0x7f41,4},{0xe13,3}}, {{0xf0a,4},{0xe0d,2}}, {{0x19b7,5},{0xf5dd,6}}, {{0xf,1},{0x10a,2}}, + {{0x8abd,9},{0xe6b,3}}, {{0x3089,5},{0x34a9,3}}, {{0x5d54,5},{0xf5bd,5}}, {{0x301b,4},{0x21a5,5}}, + {{0x824d,7},{0x127c,3}}, {{0x27c2,5},{0x62fc,4}}, {{0xcc7,1},{0x4b55,5}}, {{0xa,2},{0x4798,5}}, + {{0xcc8,1},{0xcf04,3}}, {{0xe97,3},{0x17acb,2}}, {{0xcc8,1},{0xee59,5}}, {{0x16a7,3},{0xee9,2}}, + {{0xcc7,1},{0xec3,3}}, {{0x11,1},{0x28b3a,1}}, {{0x79c5,4},{0x492e,3}}, {{0x17a9e,7},{0x288b,2}}, + {{0xfbf,6},{0xf0f8,5}}, {{0x18c8c,7},{0x72d3,3}}, {{0x14248,7},{0xec3,3}}, {{0x109b,2},{0xf86,2}}, + {{0x468,2},{0x8d,1}}, {{0x90ed,5},{0xdfca,3}}, {{0x244d,7},{0x2454,8}}, {{0x20561,4},{0x20561,4}}, + {{0x77e3,5},{0x11fa3,6}}, {{0xcc1,1},{0x2f94,3}}, {{0x46af,3},{0x1ea72,2}}, {{0x4,1},{0x1bef,2}}, + {{0x39a1,5},{0xe1c,3}}, {{0x1969,1},{0x23e99,2}}, {{0x6d46,6},{0x2ecb,5}}, {{0x1643a,7},{0x1392,3}}, + {{0xe1f,3},{0xf16,2}}, {{0x1230c,2},{0x6,1}}, {{0xeb8,2},{0xce8e,4}}, {{0x216e,9},{0x2177,6}}, + {{0x1692,2},{0x5,2}}, {{0x70ad,3},{0x2d1f,3}}, {{0x4,1},{0xe22,2}}, {{0x1a6a5,5},{0xec3,3}}, + {{0x1aa5f,7},{0x1839,2}}, {{0xeab,2},{0xed9,2}}, {{0x747c,6},{0xe86,2}}, {{0x11d7,3},{0x2651,7}}, + {{0xef7,3},{0x8e22,5}}, {{0x2f71,4},{0x16935,5}}, {{0x4385,3},{0xa,2}}, {{0xccb,2},{0xe95,2}}, + {{0x2e273,1},{0x1327,1}}, {{0x1004,3},{0x6,1}}, {{0x457b,5},{0x86c6,7}}, {{0x1db3b,2},{0x17661,2}}, + {{0x11d2,3},{0xb,1}}, {{0xe33,1},{0x24d56,5}}, {{0xf11,1},{0xe7a,1}}, {{0xe101,5},{0xcc7,1}}, + {{0xeb6,2},{0xe7f,2}}, {{0x4847,6},{0x3251,5}}, {{0x67ca,10},{0x153a,3}}, {{0x4597,5},{0xde29,2}}, + {{0x46bd,4},{0x11dc,3}}, {{0x11326,8},{0xec3,3}}, {{0x12cf4,6},{0x8441,4}}, {{0xe11,2},{0x6,1}}, + {{0x11d9,3},{0xf35,2}}, {{0x1e71,6},{0x8d3f,6}}, {{0x2362b,6},{0xcc9,2}}, {{0x16a7,3},{0x151e1,7}}, + {{0x77e5,7},{0x1fc7,3}}, {{0x4693,5},{0x14513,5}}, {{0x29ed,5},{0xb942,7}}, {{0xf1a,2},{0xcc8,1}}, + {{0x52f8,6},{0x1062,2}}, {{0x3bdb,6},{0xc3e6,4}}, {{0x6c76,5},{0x4b12,4}}, {{0x27e0,3},{0x158f,3}}, + {{0x74f1,4},{0x74f5,9}}, {{0x4853,3},{0xe86,2}}, {{0x1cd5,4},{0xe11,1}}, {{0xcbf,2},{0x4f20,3}}, + {{0x25b5,10},{0x1722,5}}, {{0xf1a,2},{0x1317,2}}, {{0x17ec,4},{0x2269,4}}, {{0x45eb,4},{0xde07,3}}, + {{0x17120,2},{0xcc9,2}}, {{0x1f7f,5},{0xcc6,2}}, {{0xe6f,3},{0xa833,6}}, {{0x2de4b,3},{0x1347,3}}, + {{0x7a,2},{0xd,1}}, {{0xf89,3},{0x9c91,8}}, {{0xe1f,3},{0x2bb4,2}}, {{0x1a29a,6},{0xec6,3}}, + {{0x14f72,9},{0xe11,1}}, {{0x19b7,3},{0x2d9aa,3}}, {{0x1a09,3},{0xe25,2}}, {{0x12d4,3},{0x5342,3}}, + {{0x7d25,5},{0x149c,3}}, {{0x18c64,7},{0xe2b,2}}, {{0x1a17,7},{0x29f3,3}}, {{0x9cac,5},{0x8913,3}}, + {{0x73ed,4},{0x16935,5}}, {{0xf11,1},{0xed6,2}}, {{0x20f8,4},{0x2261,3}}, {{0x7ac1,6},{0xe69,6}}, + {{0x10e7,5},{0x3056,9}}, {{0x677,2},{0x7b,1}}, {{0x1a07,3},{0xefb,3}}, {{0x46bd,3},{0x1bef,2}}, + {{0x479d,5},{0x9f1a,7}}, {{0x2b48,2},{0x1559,3}}, {{0x10a3,3},{0x1085,3}}, {{0xddb2,7},{0x17c0,2}}, + {{0x8f49,7},{0x3e0e,4}}, {{0x3567,8},{0x2d9d,6}}, {{0x111a,3},{0x13f3f,7}}, {{0x17f44,6},{0xeb8d,4}}, + {{0x11d5,5},{0x1dc3,7}}, {{0x3c21,10},{0xe6b,4}}, {{0x8295,5},{0x2178,5}}, {{0x4,2},{0x142a,3}}, + {{0x27e0,3},{0x8102,5}}, {{0x2de5d,3},{0x5bc,2}}, {{0x52d1,8},{0x1150,2}}, {{0x11b3,5},{0x3153,7}}, + {{0x1007,5},{0x3fde,6}}, {{0xaaf,3},{0xab1,64}}, {{0xe97,4},{0x6e44,6}}, {{0x442b,3},{0x2236,3}}, + {{0xcd3,3},{0x269f,6}}, {{0xe99,1},{0xcba,3}}, {{0x12722,7},{0xec6,3}}, {{0xbba1,4},{0x101f,2}}, + {{0x2af9a,4},{0x1f03f,2}}, {{0x442d,1},{0x8,1}}, {{0x1477,9},{0xe11,1}}, {{0x1ea30,5},{0xe32,1}}, + {{0x1830e,5},{0x18313,5}}, {{0x2b7d,3},{0xf9fd,5}}, {{0x4773,4},{0x3b1d,3}}, {{0x3005f,4},{0x21,1}}, + {{0x1be,2},{0x4ac,2}}, {{0x11788,4},{0x2277,4}}, {{0xe83,5},{0xcc6,3}}, {{0x1977,10},{0xe69,6}}, + {{0x4853,3},{0x149f,3}}, {{0xf16,2},{0x14e1,6}}, {{0x2b84,2},{0x4299,5}}, {{0x2ced,5},{0x12777,5}}, + {{0x72cf,4},{0x72d3,3}}, {{0x4a63,7},{0x4a6a,6}}, {{0x7995,5},{0x1c14,5}}, {{0x1248e,6},{0xfdf,4}}, + {{0x1647,5},{0x104a,4}}, {{0x1c865,5},{0xed5,3}}, {{0x9a8,1},{0x4e12,2}}, {{0x2de8d,4},{0x314,2}}, + {{0x3125,4},{0x4e39,5}}, {{0x9a8,1},{0xe1c,3}}, {{0x2501,5},{0x663a,7}}, {{0x238a,13},{0xed9,2}}, + {{0x6d05,5},{0xf86,2}}, {{0x25a6b,5},{0xe11,2}}, {{0x1025,1},{0x136f,2}}, {{0x3353,6},{0x2f3f,8}}, + {{0x127f,3},{0x142a,3}}, {{0xccd,3},{0xe92,3}}, {{0x73b9,5},{0x1bc7f,4}}, {{0x4f84,8},{0x13e3,4}}, + {{0x3642,2},{0x7c25,4}}, {{0x29ed,4},{0x1e8b,3}}, {{0x1081,5},{0x8f1c,5}}, {{0x9219,5},{0xe1a0,6}}, + {{0xfcb,2},{0x431f,2}}, {{0xf11,1},{0x2252,3}}, {{0xe11,1},{0xe22,3}}, {{0x19e9,3},{0x10b9,2}}, + {{0x2a47,3},{0x260ef,2}}, {{0x5534,4},{0xeee,3}}, {{0x1133c,5},{0x1b69,3}}, {{0x3005f,4},{0x8d,1}}, + {{0x1debc,2},{0x29001,3}}, {{0x2ac1,6},{0x17df,7}}, {{0x4767,1},{0x14d4f,7}}, {{0x112b,4},{0xe67,2}}, + {{0x1807,10},{0x1722,5}}, {{0x29a2,5},{0xdce6,6}}, {{0x18782,6},{0x2dd7,4}}, {{0x2e271,3},{0x0,1}}, + {{0x87c9,8},{0xed6,2}}, {{0x3a29,4},{0x6ca7,3}}, {{0x2de63,3},{0x1f4,2}}, {{0x1369,2},{0x2236,3}}, + {{0x718f,4},{0x7193,4}}, {{0x29c0,4},{0x3170,3}}, {{0x442d,1},{0xe21,1}}, {{0x7929,4},{0xef3,4}}, + {{0x27e0,3},{0x2392e,5}}, {{0x2e27d,1},{0x205a5,1}}, {{0x4853,3},{0x231de,5}}, {{0x114bd,6},{0x2f41,5}}, + {{0x3b5d,5},{0x2dd7,4}}, {{0x12b4,3},{0x7030,6}}, {{0x10efb,5},{0x1153,2}}, {{0x2,1},{0x4251,3}}, + {{0x4bd,2},{0x9f,1}}, {{0xbfe5,5},{0x5,1}}, {{0x2004d,6},{0x1b04,3}}, {{0x1c7c,4},{0x14a2,3}}, + {{0xe7a,2},{0xe6b,3}}, {{0x8c55,8},{0x1783,4}}, {{0x71a4,10},{0xf23,3}}, {{0x2948,3},{0x1f875,1}}, + {{0x1a27f,6},{0x2f2e,3}}, {{0x6cc4,4},{0xcc3,2}}, {{0xed9,2},{0xcc7,1}}, {{0xbfc1,5},{0xed5,3}}, + {{0x2e2b3,2},{0xe3b,2}}, {{0x13424,7},{0xec6,3}}, {{0x1817,4},{0xcbf,2}}, {{0x105f,3},{0x11a6,2}}, + {{0x478f,3},{0x1549d,7}}, {{0xe86,2},{0xe69,6}}, {{0x2de5d,3},{0x44,2}}, {{0x3205,3},{0x59b4,3}}, + {{0x7b5d,8},{0x1a9a,4}}, {{0x3bcd,4},{0x131bc,6}}, {{0x25093,5},{0xf35,2}}, {{0x111f2,7},{0x11204,4}}, + {{0x478f,3},{0x4a34,4}}, {{0x1f0e0,2},{0x11d9,3}}, {{0xb5f5,6},{0xb5fb,6}}, {{0x739f,5},{0x17d23,5}}, + {{0xe22,2},{0x6e91,3}}, {{0x2533b,5},{0x52d8,3}}, {{0x4767,1},{0xe09,1}}, {{0x1109,5},{0x82b3,6}}, + {{0x6,1},{0x2260,4}}, {{0x523,2},{0x8d,1}}, {{0x1397,5},{0x4a34,8}}, {{0xe83,3},{0x2781,5}}, + {{0xe19,1},{0x3,1}}, {{0x3559,5},{0x1258,5}}, {{0x2de63,4},{0xf,1}}, {{0x120f,3},{0x1c832,5}}, + {{0xe802,6},{0x1d7e,3}}, {{0x29cf,3},{0x14c6c,4}}, {{0x1327,1},{0x307ff,2}}, {{0x170ec,6},{0x1059,3}}, + {{0x11331,6},{0x1803b,3}}, {{0x46af,3},{0x2d3bd,2}}, {{0x200a7,5},{0x2ad7b,4}}, {{0x4bd,2},{0x8d,1}}, + {{0x1556c,6},{0x3e0e,3}}, {{0xd48,4},{0x18ee0,2}}, {{0x11373,4},{0x1a66,1}}, {{0x753f,6},{0xe0a,1}}, + {{0xf15,1},{0xfb0,2}}, {{0x565f,5},{0x13fb9,5}}, {{0x1081,11},{0xe69,6}}, {{0xf1d,1},{0xf1d,1}}, + {{0x10d6,5},{0x44a4,5}}, {{0x1ce7,4},{0x2,1}}, {{0x1a07,3},{0xcd3,1}}, {{0x8666,2},{0x2,1}}, + {{0xde8e,4},{0x10d2,4}}, {{0x12e5,3},{0x2d769,2}}, {{0x4853,3},{0x2d11,3}}, {{0x109a,3},{0xcd3,2}}, + {{0xe4df,6},{0x4188,3}}, {{0x1747,4},{0xf9f,4}}, {{0x343a,6},{0x1be9,3}}, {{0xeb5,2},{0xe22,2}}, + {{0x12e5,5},{0x189b,4}}, {{0x1159,3},{0xe0a,2}}, {{0x313f,10},{0xec6,3}}, {{0x2e7ec,6},{0x2ad7d,2}}, + {{0x10a83,6},{0xf91,3}}, {{0x2aac8,5},{0xcc4,2}}, {{0x14a4,2},{0xcba,2}}, {{0xcb7,2},{0xf2e,2}}, + {{0x46bf,1},{0x29ea,3}}, {{0x2de7b,4},{0x57,1}}, {{0x10e2a,5},{0xb58f,6}}, {{0xaaf,2},{0x1796b,4}}, + {{0x1123f,9},{0x1058,2}}, {{0x18188,6},{0x1818e,4}}, {{0xbb4d,6},{0xe95,2}}, {{0x23acb,6},{0xf80,2}}, + {{0x17a76,6},{0xcce,2}}, {{0x46af,3},{0x2e2c,3}}, {{0x6cde,4},{0x141ad,5}}, {{0x12420,6},{0x2c5b,4}}, + {{0x12e5,3},{0x2afb2,2}}, {{0x1807,10},{0x13e3,4}}, {{0x1025,1},{0x10cb,2}}, {{0x73ef,3},{0xed9,2}}, + {{0xb0cd,7},{0x10633,4}}, {{0x27e0,4},{0xf0f,2}}, {{0x1e08,6},{0x1150,2}}, {{0x19b7,3},{0x1ea72,2}}, + {{0x20377,4},{0xe16,1}}, {{0x311a9,2},{0xbb8,2}}, {{0x1859,4},{0xec6,3}}, {{0x41ad,3},{0x7a15,4}}, + {{0x8839,5},{0xed6,2}}, {{0x1e62,4},{0x1215,4}}, {{0x236c,4},{0x86c6,6}}, {{0x112d9,6},{0x1832,5}}, + {{0xead8,5},{0x57e0,5}}, {{0x189f,3},{0xf59,2}}, {{0x127cc,7},{0xcce,2}}, {{0x19f7,4},{0x4789,5}}, + {{0xbfcd,5},{0xcc7,1}}, {{0x6479,4},{0x11b59,4}}, {{0xce50,7},{0xce57,4}}, {{0x7a79,6},{0xcd3,2}}, + {{0x5ecd,9},{0x1663,4}}, {{0xc17d,5},{0xcc1,1}}, {{0x236c,5},{0x1c35a,4}}, {{0x154e0,6},{0x7a39,4}}, + {{0x2a1b2,4},{0x2a1b6,3}}, {{0x46af,3},{0x12a3,3}}, {{0x12f6,4},{0x1303,3}}, {{0xcd2,2},{0x156a,3}}, + {{0xf4f,1},{0x156e,3}}, {{0x7115,4},{0x155b,3}}, {{0x11491,5},{0xe1c,3}}, {{0xe89,2},{0x43fd,4}}, + {{0x2ba5,1},{0xe571,5}}, {{0x1b5a8,6},{0xed6,2}}, {{0x4383,5},{0x1265,5}}, {{0x7602,4},{0x1de7,3}}, + {{0xe2f,1},{0x190ca,5}}, {{0x1789,4},{0x3b49,6}}, {{0xa04d,7},{0xe92,3}}, {{0x2cc8d,4},{0x48da,2}}, + {{0xc6f7,5},{0x129b9,4}}, {{0x10c5,4},{0x6008,3}}, {{0x1467,4},{0x7e11,4}}, {{0x2a47,4},{0x2237,3}}, + {{0x2a47,3},{0x12b5,2}}, {{0x255b,6},{0x1790,3}}, {{0x16804,6},{0x2917,4}}, {{0xe0f,1},{0x48d3,2}}, + {{0x4765,3},{0x2ba5,1}}, {{0xe101,6},{0xe11d,5}}, {{0x4bd,2},{0x57,1}}, {{0x4765,3},{0xf80,2}}, + {{0x1747,4},{0x10b9,2}}, {{0x46bd,3},{0x11cb,3}}, {{0xf0c,1},{0x101f,2}}, {{0xe83,5},{0x2094,4}}, + {{0x1f114,5},{0x2,1}}, {{0x1cd3,2},{0x1e8b,3}}, {{0x251f,8},{0x30c9,6}}, {{0x478f,6},{0x1025,1}}, + {{0x1847,4},{0xe89,2}}, {{0x2e346,2},{0x2aff8,2}}, {{0x18ebc,5},{0xe,1}}, {{0x56c7,5},{0x8c93,4}}, + {{0xe21,1},{0x1e65,3}}, {{0x9bd9,7},{0x9be0,5}}, {{0x1823c,6},{0x2dd7,4}}, {{0x26433,4},{0x26437,4}}, + {{0x2f71,4},{0x1569,3}}, {{0x8,1},{0x7949,4}}, {{0x1937,4},{0x781c,3}}, {{0x28c1,4},{0x23ac7,4}}, + {{0xe22,2},{0x1fc7,3}}, {{0x6123,9},{0x13e3,4}}, {{0xed1,3},{0x2c59,4}}, {{0x699,2},{0xd,1}}, + {{0x28fc2,2},{0xedd,1}}, {{0xd685,5},{0xccd,1}}, {{0x3940,5},{0xed9,2}}, {{0xb379,3},{0x1153,2}}, + {{0x2fb1e,4},{0xe0f,1}}, {{0x5d56,3},{0x1b0d,3}}, {{0xe5be,3},{0xfb7,3}}, {{0x1acf,10},{0x11d0,5}}, + {{0x12e5,3},{0x74f9,2}}, {{0x2dcdd,4},{0xe86,2}}, {{0x1a84,8},{0x1663,3}}, {{0x9af,2},{0x789d,2}}, + {{0x10ff8,5},{0xfdd,4}}, {{0x9a8,1},{0xcc7,1}}, {{0x2a85,3},{0x5b6d,6}}, {{0x753f,5},{0x13dd,4}}, + {{0xa815,9},{0x153a,3}}, {{0x10cb4,4},{0xc99a,4}}, {{0xc8e6,6},{0x10f2,5}}, {{0x2d97d,4},{0x78ed,2}}, + {{0x1f303,6},{0xe11,1}}, {{0x367f,11},{0xeee,3}}, {{0x205a5,1},{0x20579,1}}, {{0x3694,4},{0x13e3,4}}, + {{0x2fb7,7},{0x7d1f,3}}, {{0x16b24,6},{0x1004,3}}, {{0x329d,6},{0xdc58,5}}, {{0x29cf,3},{0xf59,2}}, + {{0xf77,4},{0x35f5,7}}, {{0x2de75,4},{0x7b,1}}, {{0xcd3,1},{0x2f5e7,3}}, {{0x9d7d,7},{0x2352,5}}, + {{0x7f41,4},{0x3cdf,6}}, {{0x111a,3},{0x15834,4}}, {{0xe08,1},{0xe09,1}}, {{0x1342e,5},{0x13e3,4}}, + {{0xbded,4},{0x149f,3}}, {{0x2e27a,4},{0x2e27e,2}}, {{0x6005,9},{0xe0b,4}}, {{0x3b5d,8},{0xec6,3}}, + {{0x6aa,2},{0xf,1}}, {{0x2e27d,1},{0x28b33,1}}, {{0xe87b,8},{0xe6b,3}}, {{0x1ca54,6},{0xe11,1}}, + {{0x2de45,3},{0x666,2}}, {{0x113f,2},{0x104d4,3}}, {{0x1997,4},{0x1153,2}}, {{0x2006,3},{0x6,1}}, + {{0xe5b,4},{0xd66b,4}}, {{0x4781,7},{0xe11,1}}, {{0xe35,6},{0xe3b,2}}, {{0x1be,2},{0x523,2}}, + {{0x30853,2},{0x9b1,2}}, {{0x1bef,2},{0x45c7,2}}, {{0x255b,8},{0xed5,3}}, {{0x11e00,3},{0xcc4,2}}, + {{0x9a4,3},{0x2,1}}, {{0x45a5,5},{0x1ebe,3}}, {{0x11234,5},{0x948d,3}}, {{0x1fc42,6},{0xf3b,3}}, + {{0xe32,1},{0x11b5,2}}, {{0x23f2b,5},{0xead,3}}, {{0x1e2d7,6},{0x1fbe,3}}, {{0x11234,6},{0xd711,3}}, + {{0x1d63,4},{0xfe8,2}}, {{0x4326,2},{0xf1a,2}}, {{0x4f1c,5},{0x1a99,5}}, {{0x38af,7},{0x240b,5}}, + {{0x1c6d9,6},{0xec3,3}}, {{0xf70,2},{0xcce,2}}, {{0x7455,7},{0x129a,6}}, {{0x1367,4},{0x13e3f,3}}, + {{0xb99d,7},{0x1be9,3}}, {{0xc040,2},{0x1839,3}}, {{0x111a,3},{0xdcc3,8}}, {{0xf16,2},{0x101d,3}}, + {{0x4855,2},{0xe22,3}}, {{0x3d55,5},{0x109b,2}}, {{0xdd8,6},{0x2e27d,1}}, {{0x464d,5},{0xe80,2}}, + {{0x1a93,5},{0x2d1f,6}}, {{0xef7,3},{0xf04,2}}, {{0xadd9,8},{0xe1b,4}}, {{0xc53f,7},{0xec5,4}}, + {{0x1109,5},{0x5b06,5}}, {{0xe83,3},{0x22e8e,5}}, {{0x10ff8,5},{0xf1a,2}}, {{0x232bb,6},{0xed6,2}}, + {{0x24af3,5},{0xf7f,2}}, {{0x11b5,2},{0x22fe,5}}, {{0x2e77c,2},{0x28b33,1}}, {{0x567,2},{0x69,1}}, + {{0xede,1},{0xcd3,1}}, {{0x478f,3},{0x188c,3}}, {{0x1967,3},{0xf7a,2}}, {{0x2bd5,7},{0x22fe,5}}, + {{0xe97,3},{0x4461,2}}, {{0x1199a,4},{0x15778,4}}, {{0xb,1},{0x182e,3}}, {{0x9,1},{0xf0f,2}}, + {{0x247a,5},{0x2f2e,3}}, {{0x8,1},{0xe75,2}}, {{0x1f38,1},{0xcbf,2}}, {{0xf15,1},{0x27d7,2}}, + {{0x1967,3},{0x26768,2}}, {{0x1697,4},{0xece1,7}}, {{0x2de75,3},{0x176,2}}, {{0x2777,8},{0x278e,7}}, + {{0x8428,3},{0xf1f,3}}, {{0x1be,2},{0x4bd,2}}, {{0x442b,3},{0x1203,3}}, {{0x450b,4},{0xfdf,3}}, + {{0x4765,3},{0x1569,4}}, {{0xe65,2},{0xcd3,2}}, {{0xf0c,1},{0xcd1,2}}, {{0xe6f,3},{0x7979,4}}, + {{0x116cd,6},{0x6c88,5}}, {{0x245c,11},{0x2467,4}}, {{0x1849,3},{0x30f5,4}}, {{0x2bcfb,5},{0xe11,1}}, + {{0x10d38,6},{0x10d5f,5}}, {{0xc27b,2},{0xd7a,2}}, {{0xed40,6},{0x642a,5}}, {{0x1eee6,5},{0x5,2}}, + {{0xec38,8},{0xf86,3}}, {{0x1f2fa,6},{0x4bfa,3}}, {{0x1a6a5,5},{0xef3,4}}, {{0x16a7,5},{0xf17,2}}, + {{0x1dcb9,6},{0x4cc2,3}}, {{0xede,1},{0x1462,5}}, {{0xbccd,4},{0x1287,5}}, {{0xcc8,1},{0x421a,5}}, + {{0xe,1},{0x534,2}}, {{0xdccb,7},{0x286d,3}}, {{0x26263,5},{0x2271,3}}, {{0xf0c,1},{0xf11,1}}, + {{0x2,2},{0xec3,3}}, {{0x1967,3},{0x9a8,1}}, {{0xf65,4},{0xe80,2}}, {{0xca30,7},{0xe6c,3}}, + {{0xe08,1},{0xac0d,4}}, {{0x2948,4},{0x348c,4}}, {{0x178b2,7},{0xcc9,2}}, {{0xc069,10},{0xed9,2}}, + {{0x1a07,3},{0x1c2a,4}}, {{0x1117b,3},{0x7860,5}}, {{0xf65,4},{0xc656,7}}, {{0x10a3,3},{0xe78,1}}, + {{0x2d353,4},{0xe99,1}}, {{0x1b4c7,5},{0x4927,4}}, {{0x1969,1},{0x142d,3}}, {{0x1007,7},{0x128c,4}}, + {{0x46af,3},{0xe2f,1}}, {{0x4853,3},{0x2ee9,3}}, {{0x127ea,5},{0xdd0a,3}}, {{0x2498,10},{0xe69,5}}, + {{0x11e75,5},{0x19503,4}}, {{0x1026f,7},{0xcc9,2}}, {{0x70ad,3},{0xed38,5}}, {{0x17cce,6},{0x1288,4}}, + {{0xde8e,4},{0x1039e,5}}, {{0x1817,4},{0x1085,3}}, {{0x4853,3},{0x29675,3}}, {{0x1be,2},{0x5bc,2}}, + {{0x127f,5},{0x7bd9,4}}, {{0x8469,6},{0x395d,6}}, {{0x7303,5},{0x104c,2}}, {{0x24683,4},{0x13c0,4}}, + {{0x20599,1},{0xb74,1}}, {{0xe08,1},{0x26cae,4}}, {{0x1081,5},{0xc7ac,4}}, {{0x29b1,12},{0x1be9,3}}, + {{0x9d41,6},{0x90b3,4}}, {{0xf0f,2},{0xf35,2}}, {{0x17f58,6},{0x1894,3}}, {{0xe80,2},{0x1a05e,5}}, + {{0x2248,3},{0xe67,2}}, {{0x6497,5},{0x64a9,8}}, {{0x4767,1},{0x1252,3}}, {{0x30edf,4},{0x2afc6,2}}, + {{0x9645,8},{0x17c0,2}}, {{0xcd3,2},{0xe80,2}}, {{0x3559,4},{0xce83,4}}, {{0x1877,5},{0x6e4f,8}}, + {{0xcb8,1},{0xb3e8,6}}, {{0x2df3b,4},{0x140,2}}, {{0xede,1},{0x2e681,4}}, {{0x7f41,4},{0x66fd,3}}, + {{0xe11,1},{0xcc1,2}}, {{0x16944,5},{0xabc4,5}}, {{0xcc3,2},{0x127c,3}}, {{0xbded,4},{0xc6cd,4}}, + {{0xf9f,4},{0x381d,6}}, {{0xe962,7},{0x101f,2}}, {{0x23c33,7},{0xcd3,1}}, {{0x6008,3},{0x4,3}}, + {{0x1025,1},{0x7a13,3}}, {{0x9a6,1},{0x65ec,5}}, {{0x15e7,10},{0xe69,6}}, {{0xbdb1,5},{0xe6c,3}}, + {{0x20559,2},{0x1a66,1}}, {{0x10eb0,6},{0x1be9,3}}, {{0x20382,3},{0x4461,2}}, {{0x2ba5,1},{0x1e872,2}}, + {{0x28c1,4},{0xe0a,1}}, {{0x5,2},{0x11d9,3}}, {{0x1150,3},{0xe66,3}}, {{0xe,1},{0x1e2,2}}, + {{0x1e62,5},{0xda1b,6}}, {{0x3005f,4},{0xf,1}}, {{0x17772,8},{0xf7a,2}}, {{0x7b45,4},{0xcc8,1}}, + {{0xb3f1,3},{0x1a5e,3}}, {{0xdb73,3},{0xe0a,1}}, {{0x1ed2d,6},{0x1314f,3}}, {{0x780c,2},{0xf35,2}}, + {{0x21169,7},{0xe11,1}}, {{0x479d,4},{0x22c87,4}}, {{0x2add,6},{0x1150,2}}, {{0x46af,3},{0x1766a,2}}, + {{0x29cf,3},{0x9f32,6}}, {{0x1a07,3},{0xeed,2}}, {{0x2600,10},{0xe92,3}}, {{0xadbc,5},{0xe11,1}}, + {{0x178a,3},{0xeee,3}}, {{0x325,2},{0x8d,1}}, {{0x1817,4},{0xa,2}}, {{0xf89,3},{0x278af,4}}, + {{0x3739,2},{0x6,2}}, {{0x4bd,2},{0x69,1}}, {{0xb3f1,3},{0x17ac9,2}}, {{0xd793,4},{0xe67,2}}, + {{0xb,1},{0xa,2}}, {{0x7392,5},{0x1d32,3}}, {{0xf0c,1},{0x1569,2}}, {{0x3a45,5},{0xed6,2}}, + {{0xe21,1},{0xe32,1}}, {{0xe95,2},{0x1b69,3}}, {{0x14d7,11},{0x12be,5}}, {{0x1802a,8},{0xf7a,2}}, + {{0x117eb,6},{0x117f1,5}}, {{0x2bd97,5},{0xb,1}}, {{0xf0c,1},{0x12b8f,7}}, {{0xed1,5},{0xe8c,6}}, + {{0x9,1},{0x5,1}}, {{0xcd3,1},{0x1702,4}}, {{0xe99,1},{0x6,1}}, {{0x5e24,11},{0xe7f,2}}, + {{0xe33,1},{0x11186,2}}, {{0x11c0d,8},{0xec6,3}}, {{0x12e0c,8},{0xe95,2}}, {{0x1f7f,5},{0x2ed1,6}}, + {{0x753f,5},{0x277d,3}}, {{0x46af,3},{0xe86,3}}, {{0x1eed4,7},{0xe91,2}}, {{0x2de75,3},{0x164,2}}, + {{0xf77,3},{0x1cfb2,5}}, {{0x157ce,5},{0x3caa,3}}, {{0x6644,5},{0x12a83,5}}, {{0xcc3,2},{0x9a9,2}}, + {{0xb,1},{0xeb4,2}}, {{0xeb5,2},{0x2c59,4}}, {{0x1f12f,6},{0x2e2c,3}}, {{0x1f25,4},{0xdf79,7}}, + {{0x74f3,2},{0x18772,2}}, {{0x611,2},{0x57,1}}, {{0x1498c,9},{0xe0a,1}}, {{0x16d7,10},{0x16e1,6}}, + {{0x1f38,1},{0x34d7,4}}, {{0xae99,5},{0xe11,1}}, {{0x1499,3},{0x2f5a,4}}, {{0x1155,2},{0x113f,2}}, + {{0x9f,1},{0xf8,2}}, {{0x1114d,6},{0xc3d0,3}}, {{0x10a3,3},{0x20bfd,4}}, {{0x74fe,8},{0x66c1,5}}, + {{0xf80,2},{0xfcb,2}}, {{0x77c9,5},{0xcc3,2}}, {{0xeb2,2},{0x4187,3}}, {{0xe83,3},{0x1c832,5}}, + {{0x1fe8,5},{0x942e,7}}, {{0x1be9,3},{0xb,1}}, {{0x3bf7,9},{0x2781,5}}, {{0x17678,5},{0x2245,3}}, + {{0x1ebc,5},{0x169e,3}}, {{0xf89,5},{0x14473,5}}, {{0xd78,4},{0x2b0e8,2}}, {{0x450b,4},{0x2844,4}}, + {{0x1252e,4},{0x22fe,5}}, {{0x5,1},{0x19eb7,4}}, {{0xe77,2},{0xfb0,2}}, {{0x9a8,1},{0x4b62,5}}, + {{0x1c39d,7},{0xcc9,2}}, {{0x2b46,4},{0x7842,9}}, {{0x2de63,3},{0x512,2}}, {{0x95a9,7},{0x13e3,4}}, + {{0xb379,3},{0xf24,2}}, {{0x4853,3},{0x1e77,3}}, {{0x9af,2},{0x18eca,2}}, {{0x24b6,5},{0x28b7,5}}, + {{0x168ae,5},{0x10e2,5}}, {{0x170ba,5},{0xe80,2}}, {{0x1f16,5},{0x1cd3,2}}, {{0x17fbc,6},{0x7555,4}}, + {{0x4781,3},{0x24bcd,2}}, {{0x1467,4},{0x3642,2}}, {{0x75b4,4},{0x25acf,4}}, {{0x2a47,3},{0xfb0,2}}, + {{0x3bcd,4},{0x19eff,5}}, {{0x1489,2},{0xe06b,3}}, {{0x10679,7},{0x1523,4}}, {{0x4853,3},{0x1ea72,2}}, + {{0x699,2},{0xe,1}}, {{0x712f,4},{0x80f5,5}}, {{0xe2b,2},{0x27dc,4}}, {{0x11c86,6},{0x1265,5}}, + {{0x148a,3},{0xcc3,3}}, {{0x19a7,7},{0x146d,9}}, {{0x175c,3},{0xe1c,3}}, {{0x161e,7},{0xe6b,3}}, + {{0x236d3,5},{0xed6,2}}, {{0x2af9a,4},{0x19b9,1}}, {{0x2ae20,5},{0xfb0,2}}, {{0x442d,1},{0x1189,3}}, + {{0x4,1},{0xeab,2}}, {{0x1393,3},{0x73d6,2}}, {{0x2501,6},{0xe77,3}}, {{0x1890a,4},{0x6,2}}, + {{0xccc,2},{0x15764,5}}, {{0x2416,3},{0x9a9,2}}, {{0xe2f,1},{0x7968,6}}, {{0x699e,8},{0x3fb8,5}}, + {{0x10cd,2},{0xf1a,2}}, {{0x2240,4},{0x1de7,3}}, {{0x1cf9c,6},{0x2e2c,3}}, {{0x2d143,4},{0xe2f,1}}, + {{0xe08,1},{0x10dc,2}}, {{0x4ef5,4},{0xe0b,2}}, {{0x29918,4},{0x28dae,3}}, {{0xe7d,2},{0xcbd,1}}, + {{0x1849,3},{0xcc3,2}}, {{0x10d22,8},{0x1ea3,3}}, {{0x4781,3},{0x3a48,5}}, {{0xbbdd,8},{0xe95,2}}, + {{0xb42d,8},{0xb435,4}}, {{0xe87,2},{0x2f05,4}}, {{0x10cb,2},{0xcbd,1}}, {{0x457b,5},{0x9ccf,6}}, + {{0x11184,4},{0x1e869,2}}, {{0x1c91,4},{0xce40,5}}, {{0x741a,5},{0xec6,3}}, {{0x1827,6},{0xfbb,4}}, + {{0xb3f1,3},{0xe60,2}}, {{0xc05d,4},{0xee9,2}}, {{0x3433,10},{0x343d,4}}, {{0x1373,2},{0x1692,2}}, + {{0x11d9,3},{0xe80,2}}, {{0x1c28,6},{0x5342,3}}, {{0x2a92,6},{0x3ed5,8}}, {{0x1967,4},{0x1059,3}}, + {{0x19f7,4},{0x8,1}}, {{0x56c7,5},{0xccd,1}}, {{0xed1,4},{0xd886,4}}, {{0x3005f,4},{0x7b,1}}, + {{0x1a02d,6},{0xf86,2}}, {{0x15e7,5},{0xe67,2}}, {{0x113c,3},{0x5897,3}}, {{0xed5,3},{0x277e,2}}, + {{0xc17f,4},{0xab27,5}}, {{0xf77,5},{0x44a4,5}}, {{0x58c2,9},{0xf35,2}}, {{0x3a7d,6},{0xa15d,4}}, + {{0x1007,7},{0x25f8,8}}, {{0x108d6,6},{0xe1a2,4}}, {{0xcc7,1},{0x52fe,5}}, {{0x19b9,1},{0x2ca1e,2}}, + {{0x41b5,7},{0x41ca,7}}, {{0x3591,9},{0x359a,5}}, {{0xb931,5},{0xb936,7}}, {{0x2a47,3},{0xe61,2}}, + {{0x8428,3},{0x8,1}}, {{0x3002d,4},{0x7b,1}}, {{0xcbd,1},{0x951c,3}}, {{0xf89,3},{0x1d32,3}}, + {{0x16f7,6},{0xcb9f,4}}, {{0x1e08,6},{0xd084,5}}, {{0x1e08,5},{0x7efc,4}}, {{0x2b75,2},{0x9905,4}}, + {{0x11817,5},{0xcc9,2}}, {{0x1969,1},{0xcd3,1}}, {{0x4767,1},{0x7416,1}}, {{0x6ceb,7},{0xed6,2}}, + {{0x12e5,3},{0x56e7,5}}, {{0x1367,3},{0x18ff2,6}}, {{0x9a6,1},{0x1722,5}}, {{0x20f6,5},{0x1fe3,4}}, + {{0x8889,6},{0xfb0,2}}, {{0x1e08,5},{0xb068,5}}, {{0x3b09,4},{0x1790,6}}, {{0x457b,5},{0xfbb,3}}, + {{0x1967,3},{0xfa6,3}}, {{0xcf2c,8},{0x4c00,3}}, {{0x12d4,3},{0x181b,3}}, {{0x19b9,1},{0xf1f,3}}, + {{0x1be9f,6},{0xe11,1}}, {{0xe83,3},{0x16d9f,5}}, {{0x1a07,3},{0xcbf,2}}, {{0xe7a,2},{0x4a19,7}}, + {{0x111a,3},{0x11729,3}}, {{0x4781,3},{0x267d0,3}}, {{0x1487,4},{0xb496,3}}, {{0x113c,4},{0x1325d,4}}, + {{0x465b,4},{0xab27,5}}, {{0x10c5,4},{0xd086,3}}, {{0xf790,7},{0x13e3,4}}, {{0x1e721,5},{0x29f3,4}}, + {{0x29ed,6},{0xe77,3}}, {{0x1dcb4,2},{0x48d3,2}}, {{0xc1d1,4},{0x24e5,3}}, {{0x199a3,7},{0xcc9,2}}, + {{0x19844,6},{0xfb8,3}}, {{0x1e44,6},{0x8c67,6}}, {{0x127f,3},{0xe0a,1}}, {{0x5,1},{0x146d,9}}, + {{0x7351,4},{0x1f38,1}}, {{0xcc1,1},{0x4618,3}}, {{0xf65,4},{0x1d74,8}}, {{0x1832,3},{0x2ce9,4}}, + {{0xcbf,2},{0xfb0,2}}, {{0x5d66,3},{0x13e3,4}}, {{0x19b9,1},{0x72d3,3}}, {{0x1d72,5},{0xfa6,3}}, + {{0x1f3a5,5},{0x57d2,4}}, {{0x772d,5},{0x158f,3}}, {{0x1fed3,5},{0x15e9,3}}, {{0x46bd,3},{0x46bf,1}}, + {{0x21db5,4},{0xe78,2}}, {{0xa1f1,7},{0x27dc,4}}, {{0x17346,4},{0xeee,3}}, {{0xf89,3},{0xe09,1}}, + {{0x6d46,6},{0x109a,3}}, {{0x75b4,7},{0xe89,2}}, {{0x18f9,2},{0x183a,3}}, {{0x688,2},{0xf,1}}, + {{0x3ff5,6},{0xfcea,5}}, {{0x5,1},{0xd0a9,4}}, {{0x19c7,6},{0xa89f,6}}, {{0x1d88a,7},{0x2c86,2}}, + {{0x5909,4},{0x12a9,3}}, {{0x73ac,5},{0x9a9,2}}, {{0x1f38,1},{0xcd2,2}}, {{0x1997,5},{0x997a,7}}, + {{0xcbd,1},{0xb9d1,3}}, {{0x2416,3},{0xe69,5}}, {{0x7a01,5},{0x3694,3}}, {{0x10e1f,4},{0x492e,3}}, + {{0xf89,5},{0x12a9,3}}, {{0x3a53,5},{0xeed,4}}, {{0x7414,3},{0x73d6,2}}, {{0x49a6,3},{0xcd3,1}}, + {{0x9,2},{0xcdf2,5}}, {{0x104c,2},{0xcbd,1}}, {{0xb9fd,5},{0xcd3,2}}, {{0xbb37,3},{0xed5,3}}, + {{0x457d,3},{0x28f5,5}}, {{0x44c5,5},{0x18351,3}}, {{0x10c5,4},{0x9101,4}}, {{0x70ad,3},{0x10352,4}}, + {{0x12d4,3},{0x5538,2}}, {{0x10e2a,4},{0xcd3,1}}, {{0x1029b,7},{0xef2,4}}, {{0xb37c,3},{0x1150,2}}, + {{0x11d5,5},{0x89d3,6}}, {{0x11b5,2},{0x1150,2}}, {{0x1ccd,5},{0xc9af,4}}, {{0x2463,4},{0xf62,3}}, + {{0xbc03,2},{0x103e,5}}, {{0x4aff,5},{0xa420,5}}, {{0x2231,5},{0xf91,3}}, {{0x57,1},{0x523,2}}, + {{0x680b,9},{0x1773,4}}, {{0x70ad,3},{0x1db3a,2}}, {{0x1fe8b,6},{0xed6,2}}, {{0x188a,4},{0x1c85,3}}, + {{0xe2f,1},{0x2d11,3}}, {{0xf0c,1},{0x2f92,4}}, {{0x13a7,5},{0x17c0,2}}, {{0x11187,2},{0xf4f,1}}, + {{0x1062,5},{0xe0b,4}}, {{0x329f,4},{0xe67,2}}, {{0x77bc,4},{0x189f,3}}, {{0x2de75,3},{0x188,2}}, + {{0x1d59f,7},{0xcc9,2}}, {{0x442b,3},{0xec6,3}}, {{0x30f75,4},{0x18eca,2}}, {{0xb428,3},{0x1131,3}}, + {{0x111a,3},{0xfb0,2}}, {{0x9201,5},{0xccd,1}}, {{0x3a29,4},{0xae95,4}}, {{0x479f,2},{0x1287,5}}, + {{0x3537,2},{0x2917,4}}, {{0x9,1},{0xe08,1}}, {{0xbba1,4},{0xc3fb,5}}, {{0x2b50b,2},{0xc78,2}}, + {{0x17d3c,6},{0x6,1}}, {{0x2573b,6},{0xe67,2}}, {{0x1e2e9,6},{0x1e2ef,3}}, {{0xb60d,5},{0xeb8d,4}}, + {{0x1a66,1},{0x1084,3}}, {{0x28ee,12},{0xec6,3}}, {{0x8d,1},{0x1ac,2}}, {{0xccd,3},{0x6,1}}, + {{0xd48,4},{0x2b0ac,2}}, {{0x402d,9},{0x61bb,4}}, {{0x27e0,3},{0x3687,5}}, {{0xe74,2},{0x143c,4}}, + {{0xf57,2},{0x20be5,4}}, {{0x311af,2},{0x30861,2}}, {{0x93b1,7},{0x1bf6,5}}, {{0x70fb,5},{0x5,1}}, + {{0x10cb,2},{0x141e,5}}, {{0xeab,2},{0x566f,4}}, {{0x2399,4},{0xe78,2}}, {{0x12ddc,4},{0x4,1}}, + {{0x73bb,3},{0x1d3c,3}}, {{0x1f5f9,2},{0x2693c,3}}, {{0x797d,6},{0x7983,6}}, {{0x2de75,3},{0x8c,2}}, + {{0xcbf,2},{0x3976,3}}, {{0x7f41,4},{0x56a7,6}}, {{0x15364,6},{0x3075,4}}, {{0xb799,6},{0x1702,4}}, + {{0x17d46,7},{0xe0d,2}}, {{0x314d,6},{0x89d3,6}}, {{0x2993,7},{0xe67,2}}, {{0x6de2,8},{0xec6,3}}, + {{0x6053,8},{0xe69,5}}, {{0xaebd,5},{0x7a36,3}}, {{0xcbd,1},{0x142a,3}}, {{0x127ea,5},{0x28f8,5}}, + {{0x28d0,7},{0xe68,6}}, {{0x1ffa2,6},{0x7a36,3}}, {{0xf31,2},{0x4921,4}}, {{0x194d2,5},{0x6,1}}, + {{0x19f7,7},{0xf7a,2}}, {{0x11819,3},{0x1e2a,4}}, {{0xe65,2},{0xed6,2}}, {{0x2ba5,1},{0x1d770,3}}, + {{0xe78,1},{0x1a578,4}}, {{0x1607a,6},{0xfb8,3}}, {{0xcce,2},{0x5,1}}, {{0x13fdc,5},{0xccd,1}}, + {{0x2e292,1},{0x205a7,1}}, {{0x9a1d,8},{0xf35,2}}, {{0x4693,5},{0xdc29,5}}, {{0xccd,1},{0x128c,4}}, + {{0x12ee8,7},{0xec6,3}}, {{0x479f,5},{0xef5,2}}, {{0x1977,8},{0x18b4,3}}, {{0x488b,4},{0x8ea8,5}}, + {{0xce71,5},{0x15e6d,3}}, {{0x10b8b,6},{0x11b5,2}}, {{0x3002d,4},{0x57,1}}, {{0x3bbf,4},{0x1c3ce,5}}, + {{0x4853,3},{0xd3b4,6}}, {{0x5de,2},{0x9f,1}}, {{0x11352,5},{0xf194,3}}, {{0x5ef,2},{0x69,1}}, + {{0x113f,2},{0xfdf,4}}, {{0x2a47,3},{0x2acc4,3}}, {{0x2352,3},{0x6,1}}, {{0x105d4,9},{0xcc9,2}}, + {{0xc9ac,5},{0x1722,5}}, {{0x14f7,8},{0x1d2f,7}}, {{0x550d,5},{0x66bb,4}}, {{0x833d,5},{0xfbb,4}}, + {{0x9a8,1},{0xfcb,2}}, {{0x4677,7},{0x3384,7}}, {{0xe21,1},{0xe22,3}}, {{0x29c0,3},{0xe11,2}}, + {{0x25063,6},{0xa,2}}, {{0xbae1,7},{0x37c8,5}}, {{0x1f94e,5},{0x10af6,4}}, {{0x44ef,5},{0xc3d0,3}}, + {{0x1857,4},{0x10ee,3}}, {{0xf69,4},{0x1047,3}}, {{0xe08,1},{0x26921,2}}, {{0x1467,4},{0x15b6c,4}}, + {{0x25083,4},{0x9a8,2}}, {{0x18124,7},{0x5669,3}}, {{0x1f7d4,6},{0x1a14a,3}}, {{0x9e01,5},{0x14ddd,5}}, + {{0x620d,8},{0x6215,5}}, {{0x10cc,2},{0x2d8d,3}}, {{0x20f6,5},{0x124ed,5}}, {{0x41a7,5},{0xad8a,7}}, + {{0x442b,3},{0x11690,4}}, {{0x170ba,6},{0xfdd,4}}, {{0x200f8,5},{0xe2b,4}}, {{0x115e,5},{0x30ad,6}}, + {{0x9db9,7},{0x4789,5}}, {{0xc017,2},{0xabc5,3}}, {{0x9a8,1},{0x101f,2}}, {{0x11d4c,5},{0xe11,1}}, + {{0x1c85,3},{0xec6,3}}, {{0xfac9,8},{0xf91,3}}, {{0x11f30,6},{0x2844,5}}, {{0x188c,3},{0x5136,5}}, + {{0x2f1ca,2},{0x20510,2}}, {{0x16ab6,7},{0x1054,3}}, {{0x2c21,4},{0xfe6,2}}, {{0x4522,3},{0x8b00,4}}, + {{0xe0e0,5},{0xcc9,2}}, {{0x12ac,3},{0x6ec3,3}}, {{0x1dee,2},{0xcd3,2}}, {{0x2993,7},{0x8,1}}, + {{0x57,1},{0x534,2}}, {{0x222ab,5},{0xeca,3}}, {{0x3973,10},{0xfdd,4}}, {{0x75db,4},{0xcc3,3}}, + {{0xefa,2},{0x9,1}}, {{0xfa87,7},{0x12a9,3}}, {{0x1ec4c,5},{0x11b5,2}}, {{0x10e21,2},{0x113f,2}}, + {{0x1537,4},{0x1024,2}}, {{0xb3f1,3},{0xf0f,2}}, {{0x122d,2},{0x1a9a,4}}, {{0x1857,8},{0x185f,8}}, + {{0x7093,9},{0xeed,4}}, {{0x9a6,1},{0xf35,3}}, {{0xe0d,2},{0xcc3,2}}, {{0x478f,3},{0xfb0,2}}, + {{0xe99,1},{0xcc9,2}}, {{0xf77,3},{0xd5f9,8}}, {{0xe3cc,7},{0x2560,4}}, {{0x6d1f,8},{0x5b06,4}}, + {{0x20f6,5},{0x1040,3}}, {{0x5117,5},{0xf02,2}}, {{0x7117,2},{0x7974,4}}, {{0xe32,1},{0x1c79,2}}, + {{0x1467,4},{0xe1fa,4}}, {{0x28df,8},{0xeb7,7}}, {{0x478f,3},{0xed6,3}}, {{0x113e,3},{0xe69,5}}, + {{0x11f46,5},{0x153ff,5}}, {{0x3329,7},{0xf86,3}}, {{0xa,2},{0xee8,9}}, {{0x142de,6},{0x3064,4}}, + {{0x132d0,5},{0xe22,2}}, {{0x1a66,1},{0xe7a,1}}, {{0x261eb,6},{0x8,1}}, {{0x2939,4},{0x126f5,5}}, + {{0x488b,4},{0x14f0,3}}, {{0x114f,3},{0x1451d,5}}, {{0x4781,3},{0x228ce,5}}, {{0x9e34,3},{0x8,1}}, + {{0x478f,3},{0x2f41,5}}, {{0x10b5f,6},{0x55ed,5}}, {{0x478f,3},{0x28057,4}}, {{0x1bbf,4},{0x31f8,3}}, + {{0x5,1},{0x11d0,5}}, {{0x1133c,5},{0xfe6,2}}, {{0xcb8,1},{0xe1c,3}}, {{0x550d,7},{0x155e,3}}, + {{0x46af,3},{0xead,3}}, {{0xd36d,8},{0xec6,3}}, {{0x111a,5},{0x331f,3}}, {{0x1f7f,5},{0x1244,7}}, + {{0xcb7,2},{0x1e94c,3}}, {{0x2b0f0,6},{0x2b0f0,6}}, {{0x10e2,3},{0x1f38,1}}, {{0x65dc,7},{0xe69,6}}, + {{0x6e7e,8},{0x189f,3}}, {{0x4781,3},{0x1ffa,3}}, {{0x11a6,3},{0xe95,2}}, {{0xecc7,6},{0xeccd,4}}, + {{0x1189d,4},{0xe22,2}}, {{0x1d986,4},{0x1849,3}}, {{0xe7a,1},{0x2271,3}}, {{0x281c,8},{0x6a0f,4}}, + {{0x112b8,5},{0xed9,2}}, {{0x20509,4},{0x20509,4}}, {{0x184d,5},{0xe92,3}}, {{0x1961f,8},{0x8,1}}, + {{0x478f,3},{0x17661,2}}, {{0x28c1,4},{0x6270,5}}, {{0x1a07,3},{0x1d65,3}}, {{0x2e29,3},{0xcd3,2}}, + {{0x10b8b,6},{0x13e3f,3}}, {{0xe11,2},{0xe0b,2}}, {{0x1567,3},{0xcc7,1}}, {{0x2a47,3},{0x17ace,2}}, + {{0x1adb6,6},{0x4188,3}}, {{0x3107,9},{0xe95,2}}, {{0xb3f1,3},{0xfb8,3}}, {{0xf205,4},{0xe71,1}}, + {{0x6,2},{0xe22,2}}, {{0x44c5,5},{0x19933,4}}, {{0x3e35,9},{0xec6,3}}, {{0x17ae4,5},{0x1024,2}}, + {{0xc05d,4},{0x1150,2}}, {{0x10d6,5},{0x8,3}}, {{0x5f42,5},{0x13113,4}}, {{0x4765,3},{0x1da2b,6}}, + {{0x1a66,1},{0xeb4,3}}, {{0x1f582,5},{0x277e,2}}, {{0x2fb1e,4},{0x1969,1}}, {{0xe32,1},{0x168b,4}}, + {{0x111a,3},{0x569b,5}}, {{0x19e7,8},{0xef3,4}}, {{0x174b,3},{0x1c2a,4}}, {{0x11dc,5},{0x1be9,3}}, + {{0xc5e4,8},{0xec6,3}}, {{0x1397,5},{0xe2b,2}}, {{0x1373,2},{0xcc9,2}}, {{0xa,2},{0x8c67,4}}, + {{0x6,2},{0xfdd,4}}, {{0x2a74,9},{0x2357,6}}, {{0x12d4,3},{0xf11,1}}, {{0x2add,6},{0x406b,8}}, + {{0xf3a,2},{0xa,2}}, {{0x28bf8,5},{0xcba,2}}, {{0xbf31,6},{0xe0a,1}}, {{0xc189,7},{0xb1d0,5}}, + {{0x2de57,3},{0x1347,3}}, {{0x1eb89,3},{0xeb4,3}}, {{0xf16,2},{0xfdd,6}}, {{0x30cf,5},{0x2c6a,5}}, + {{0xacb9,8},{0xebc,2}}, {{0x4767,1},{0x2a329,3}}, {{0xccd,1},{0x1b607,3}}, {{0x9a8,1},{0xcc5,2}}, + {{0xcd1c,7},{0x1a9a,4}}, {{0xe83,3},{0x1796b,4}}, {{0xfd10,9},{0xcc9,2}}, {{0xf4f,1},{0x9e1c,4}}, + {{0x125d,6},{0x583b,5}}, {{0x1a07,3},{0xf79,3}}, {{0x19b7,3},{0xeee,3}}, {{0xf22,2},{0xf70,2}}, + {{0x824d,4},{0x11b5,2}}, {{0xcbf,2},{0x1294,6}}, {{0x5dfd,6},{0xf82,7}}, {{0x4781,3},{0x2075,3}}, + {{0x2de57,3},{0x284,2}}, {{0xf89,3},{0x278b6,4}}, {{0x11373,4},{0x2a2b,3}}, {{0x7643,5},{0x5538,2}}, + {{0x9f,1},{0x152,2}}, {{0x68c1,9},{0x3ebb,4}}, {{0x479d,4},{0xf05c,6}}, {{0x135e6,6},{0xec0,3}}, + {{0x12326,6},{0xe0b,4}}, {{0x2de75,3},{0x11c,2}}, {{0x158f,3},{0x114f,3}}, {{0x73d6,2},{0xe11,1}}, + {{0x10f48,5},{0x4fa8,3}}, {{0xed1,3},{0x1c3e8,5}}, {{0x20f8,4},{0x1523,4}}, {{0x1e571,4},{0x1e2e5,4}}, + {{0x1a17,5},{0xcbd,1}}, {{0x45,1},{0xf8,2}}, {{0x10e2a,4},{0xf86,3}}, {{0x302,2},{0x314,2}}, + {{0x1c085,6},{0x6cb4,3}}, {{0xf0c,1},{0xcddd,5}}, {{0x10fcc,6},{0x2b78,4}}, {{0x2f47,5},{0x10f5,3}}, + {{0x11e07,8},{0x1016f,3}}, {{0x174d4,5},{0x56a8,5}}, {{0x2a4c9,4},{0x11187,2}}, {{0x567,2},{0xe,1}}, + {{0x29e0,3},{0xe67,2}}, {{0x130be,6},{0xf91,3}}, {{0x17bc0,6},{0x3075,4}}, {{0x307bb,2},{0x307bb,2}}, + {{0x88fb,5},{0xe11,1}}, {{0x19b7,3},{0xe77,3}}, {{0x5de,2},{0x69,1}}, {{0x4f77,8},{0x1dc7,5}}, + {{0x1817,4},{0x23307,4}}, {{0x3e0,2},{0x57,1}}, {{0x88d1,7},{0xd66b,4}}, {{0x2252,3},{0x1894,3}}, + {{0x10d3,3},{0xe0a,1}}, {{0x27ef,7},{0x534e,5}}, {{0x1c0f,3},{0x12ba,4}}, {{0x121b4,7},{0xec6,3}}, + {{0x1967,3},{0x158f,3}}, {{0x12e7a,6},{0x29f3,3}}, {{0x24e3,5},{0xe78,2}}, {{0x12e5,3},{0x120f,3}}, + {{0x8d,1},{0x260,2}}, {{0xf063,8},{0xec6,3}}, {{0x2cf87,4},{0x2cf91,2}}, {{0x2de7b,4},{0xf,1}}, + {{0xe6f,3},{0xe89,3}}, {{0xee4,5},{0x2c85,2}}, {{0x747c,6},{0x1b6f2,3}}, {{0xb979,4},{0x5150,3}}, + {{0x9a6,1},{0xfe6,2}}, {{0xe97,3},{0x1ce6,5}}, {{0xf57,9},{0xf60,5}}, {{0x170ec,5},{0xdfc9,4}}, + {{0x3a61,5},{0x1150,2}}, {{0x3a29,4},{0x22a87,4}}, {{0x1567a,9},{0xe11,1}}, {{0x2f71,4},{0x3356,4}}, + {{0x17b0c,4},{0x10ee,3}}, {{0x4459,2},{0x254b1,2}}, {{0x1cfa,5},{0x6cbe,4}}, {{0x4455,4},{0xf4f,1}}, + {{0xe99,1},{0x158f,3}}, {{0x4217,5},{0x16e3,4}}, {{0x2adf,4},{0x43fb,3}}, {{0x22b8,8},{0x1024,7}}, + {{0x1969,1},{0x14f9,3}}, {{0x2501b,6},{0x2c85,2}}, {{0x1677,3},{0xe7d,2}}, {{0x1f38,1},{0x1153,2}}, + {{0x7978,5},{0xcc9,2}}, {{0x2ac11,6},{0xe11,1}}, {{0x114f4,6},{0x3a48,5}}, {{0x2b94,3},{0x4665,4}}, + {{0x140fe,7},{0xe95,2}}, {{0xe68,3},{0x20444,5}}, {{0x2de7b,4},{0xd,1}}, {{0x9fb1,6},{0x9fb7,6}}, + {{0x2a29,5},{0xeee,3}}, {{0xc165,7},{0x12be,5}}, {{0x19b9,1},{0x204e0,2}}, {{0x10c5,4},{0x2f2e,3}}, + {{0xc36,32},{0xc36,32}}, {{0x18df4,5},{0x4788,3}}, {{0x3005f,4},{0x69,1}}, {{0x1e74,2},{0xf3a,2}}, + {{0x1969,1},{0x180a,3}}, {{0xf53,4},{0xf57,14}}, {{0xe466,7},{0x6b90,4}}, {{0x24aab,6},{0xf1a,2}}, + {{0x3a7d,6},{0xcce,2}}, {{0x2b84,2},{0x8119,5}}, {{0xe16,1},{0x1ebe,4}}, {{0xf65,4},{0xc5dd,7}}, + {{0x17f0a,3},{0xe2b,2}}, {{0x1907,11},{0xf91,3}}, {{0x1627,11},{0x1632,5}}, {{0x22d9,4},{0x1040,3}}, + {{0x1d0,2},{0x314,2}}, {{0xe83,3},{0x4574,3}}, {{0xe08,1},{0x11e62,5}}, {{0x1481a,6},{0x1569,4}}, + {{0x2271,3},{0xe7f,2}}, {{0x9a8,1},{0x14f9,3}}, {{0x112fc,4},{0x7978,5}}, {{0xf,1},{0x140,2}}, + {{0x11871,6},{0xe11,1}}, {{0x21861,7},{0xe11,1}}, {{0x760f,5},{0x87a0,5}}, {{0x1b78e,7},{0xf7a,2}}, + {{0x2975,6},{0x2236,3}}, {{0x48d8,2},{0xf0c,1}}, {{0x46af,3},{0xe989,5}}, {{0x2625b,5},{0x1b7f,3}}, + {{0x11b5,2},{0x1722,5}}, {{0x24d5e,2},{0x1f03f,2}}, {{0xa965,9},{0xcce,2}}, {{0x6d1f,7},{0xcc9,2}}, + {{0x478f,3},{0xfc7,3}}, {{0x10a3,4},{0xf2a2,4}}, {{0x58c2,9},{0x5669,3}}, {{0x1653e,7},{0xec6,3}}, + {{0x46af,3},{0xb9d0,5}}, {{0xe2f,1},{0x5,1}}, {{0x442b,3},{0x442e,11}}, {{0x2fb1e,4},{0x1a66,1}}, + {{0x157d8,6},{0x157de,4}}, {{0x103c4,8},{0xcc9,2}}, {{0x19b9,1},{0x2d974,2}}, {{0x1f7b0,4},{0x1f7b4,5}}, + {{0xbec5,6},{0xffc,3}}, {{0xbf91,7},{0x6bd4,5}}, {{0x4765,3},{0x1d067,3}}, {{0x5bb9,4},{0xe67,2}}, + {{0x3d63,5},{0xa502,7}}, {{0x24663,4},{0x17661,2}}, {{0xe,1},{0x109,2}}, {{0x238a,4},{0x49be,4}}, + {{0xc75a,7},{0x1a9a,4}}, {{0x15a30,7},{0xcc9,2}}, {{0x1927,4},{0x101f,2}}, {{0xccd,1},{0x1aca2,6}}, + {{0xe27,2},{0x10b9,2}}, {{0x4781,3},{0x15173,7}}, {{0xf15,1},{0x1295,3}}, {{0xf65,4},{0x2c2d,10}}, + {{0x1153,2},{0xf1a,2}}, {{0x2b456,3},{0x48da,3}}, {{0xcb8,1},{0xd553,4}}, {{0xcc1,1},{0x1b6a,6}}, + {{0x4,1},{0xed9,2}}, {{0x12e5,3},{0x2a4e2,2}}, {{0x11a6,3},{0x2dd7,4}}, {{0x1c91,6},{0xcc9,2}}, + {{0x16a7,3},{0x3abd,6}}, {{0x11142,5},{0x8,1}}, {{0x760f,5},{0x9,1}}, {{0x14a7,4},{0x5724,3}}, + {{0x17a7,8},{0x3ee5,5}}, {{0x46af,3},{0x160f,3}}, {{0xcbd,1},{0xe4e2,5}}, {{0x4bd,2},{0x7b,1}}, + {{0x1877,5},{0x6e4f,7}}, {{0x28db1,5},{0x28db6,2}}, {{0x9f,1},{0x512,2}}, {{0x2966,4},{0xc85b,6}}, + {{0x74e4,5},{0xf59,2}}, {{0x27b3,10},{0xcc9,2}}, {{0xe37,4},{0x2e7a2,2}}, {{0x1208,7},{0x18b4,3}}, + {{0x2de75,3},{0x336,2}}, {{0x4765,3},{0x1f25b,6}}, {{0x168a,5},{0xcc9,2}}, {{0x46bd,3},{0x2d326,3}}, + {{0x1377,5},{0x121f,5}}, {{0x1537,6},{0x5ddd,5}}, {{0x1f3ed,5},{0x1b03,3}}, {{0x48da,2},{0xedd,1}}, + {{0xf9d7,6},{0xf9e8,5}}, {{0x72cf,4},{0x128c,4}}, {{0xaaf,2},{0xe6b,4}}, {{0x12b2,5},{0x12bf,4}}, + {{0xc6f7,5},{0x1692,5}}, {{0x2f71,4},{0x157de,4}}, {{0x1a66,1},{0x28fde,3}}, {{0x12f6,4},{0xd66b,4}}, + {{0x202ce,5},{0xe11,2}}, {{0x57,1},{0x5bc,2}}, {{0x114d,6},{0x1153,11}}, {{0x90bd,8},{0x1663,4}}, + {{0x30e73,3},{0x1327,1}}, {{0x45a5,5},{0x4131,6}}, {{0xbb89,4},{0x1153,2}}, {{0x1019,4},{0x8f39,4}}, + {{0x23c4b,3},{0x2af9f,2}}, {{0x1fd1a,6},{0xec6,3}}, {{0x1ddc0,3},{0x1231,4}}, {{0x133d4,6},{0xccd,1}}, + {{0x1f021,6},{0xf1a,2}}, {{0xcb8,1},{0xe2b,2}}, {{0x833d,5},{0xe67,2}}, {{0x15399,2},{0xf86,2}}, + {{0x4781,3},{0xce96,4}}, {{0x124c,6},{0x6452,4}}, {{0xe33,1},{0x2e6bd,4}}, {{0x46af,3},{0xcc3,2}}, + {{0x46bd,3},{0x4d72,3}}, {{0xe0a,1},{0x5863,3}}, {{0x2a90d,5},{0xe60,2}}, {{0xedd,1},{0x11a0b,4}}, + {{0x1cdc,6},{0x5026,4}}, {{0x2b46,4},{0x11de2,4}}, {{0x1019,4},{0x569b,5}}, {{0x19b7,3},{0x15e6d,3}}, + {{0x2631b,6},{0x6,1}}, {{0xe0b,2},{0xcc1,1}}, {{0x4ef5,4},{0x1189,3}}, {{0x337d,7},{0x1083,5}}, + {{0xe11,1},{0x2280,2}}, {{0x6227,9},{0xeed,4}}, {{0xbb4,2},{0xc27d,4}}, {{0x16340,6},{0x2514,4}}, + {{0x29cf,3},{0x11b5,2}}, {{0x478f,3},{0x5,2}}, {{0x1cd2,3},{0xe80,2}}, {{0xbfb7,3},{0x3933,4}}, + {{0x1f9ba,5},{0x1f9bf,4}}, {{0x2a2b,5},{0x96c4,4}}, {{0x112b,6},{0x2e35,6}}, {{0x74f1,4},{0x12157,2}}, + {{0x2de75,3},{0x1d0,2}}, {{0x266f,4},{0xed9,2}}, {{0x9f,1},{0x468,2}}, {{0x760f,5},{0x99cd,4}}, + {{0x7416,1},{0x45ee,3}}, {{0xd03f,7},{0xf61,4}}, {{0x12e5,4},{0x6,2}}, {{0xfb0,2},{0xe6b,4}}, + {{0xc40b,6},{0x910b,5}}, {{0x46bd,3},{0xf0d,2}}, {{0x84b1,8},{0x1783,4}}, {{0x127f,5},{0xe77,2}}, + {{0x4853,3},{0x13e02,4}}, {{0x30861,2},{0x18ec8,2}}, {{0x1cf6f,6},{0xf91,3}}, {{0x1bec,5},{0x1419,6}}, + {{0x712f,4},{0x3650,5}}, {{0x46af,3},{0x7921,3}}, {{0xe16,1},{0x2de2a,3}}, {{0xf210,6},{0x1c6d,5}}, + {{0x10285,6},{0x1c8c,5}}, {{0x6d1f,7},{0xf7a,2}}, {{0x12d4,3},{0xe65,2}}, {{0x127f,5},{0x127c,3}}, + {{0x2,2},{0xccd,4}}, {{0x1118b,2},{0xede,1}}, {{0xcb8,1},{0xcc8,1}}, {{0x1557,4},{0xccd,1}}, + {{0x7455,7},{0x251b,4}}, {{0xf079,9},{0x5,1}}, {{0x10d6,5},{0xd183,6}}, {{0x1839,4},{0xccaa,4}}, + {{0xe71,1},{0x1085,3}}, {{0xaeb1,5},{0x9,1}}, {{0x2858,4},{0x4253,10}}, {{0x18ecc,2},{0x18eca,2}}, + {{0x1db31,2},{0x12154,3}}, {{0x523,2},{0x69,1}}, {{0xf11,1},{0xfc8,3}}, {{0xe1f,3},{0x6127,4}}, + {{0x12d4,3},{0x5e43,3}}, {{0x121c,3},{0x3caa,3}}, {{0x4f36,5},{0x174b,3}}, {{0xccd,1},{0x13c83,7}}, + {{0x130a0,6},{0x9a7,2}}, {{0xfbf,14},{0xf35,3}}, {{0x288b,2},{0xcd3,2}}, {{0x7392,5},{0x1047,4}}, + {{0x5534,4},{0x1aa5a,5}}, {{0xb,1},{0x1cd3,2}}, {{0xcd2,2},{0x30f7,2}}, {{0xe16,1},{0x1db34,2}}, + {{0x11f72,6},{0xb958,5}}, {{0x760f,5},{0xcc1,1}}, {{0x18ee2,2},{0x18ed2,6}}, {{0x1967,3},{0xe7d,2}}, + {{0x124c,6},{0x4bbd,5}}, {{0x2e866,2},{0x308a3,2}}, {{0x329d,5},{0x5261,4}}, {{0x1a66,1},{0x20549,2}}, + {{0x556,2},{0x21,1}}, {{0x9cbd,7},{0x2872,4}}, {{0xa461,8},{0xe11,1}}, {{0xa5ed,5},{0x1c6d,5}}, + {{0x1007,10},{0xeee,3}}, {{0xfb16,5},{0x2235,3}}, {{0xe2f,1},{0xe99,1}}, {{0xc9ac,5},{0x6ca7,3}}, + {{0x4e3f,5},{0x7921,3}}, {{0xcc8,1},{0x101d,3}}, {{0xe11,1},{0xf0d,4}}, {{0x1377,5},{0xe7f,2}}, + {{0x16692,5},{0xcdda,2}}, {{0x72f6,9},{0x2,1}}, {{0x2599b,5},{0x259a0,3}}, {{0x4c10,8},{0xef3,4}}, + {{0xe13,3},{0xed9,2}}, {{0x30633,2},{0x30633,2}}, {{0x2d79,7},{0xcc9,2}}, {{0x10238,5},{0x1664,2}}, + {{0xe1f,3},{0x2cbe7,2}}, {{0x725c,8},{0x18b4,3}}, {{0xe83,5},{0x1c0f,3}}, {{0x450b,4},{0x6479,4}}, + {{0x585a,7},{0x5861,6}}, {{0x9609,8},{0xe6b,4}}, {{0x1b3f8,6},{0x4b6f,3}}, {{0x1133c,5},{0xf63,2}}, + {{0x46bd,3},{0xf4f,1}}, {{0x2f01,11},{0xebb,3}}, {{0x1db3f,5},{0x1db4d,4}}, {{0x7bbd,5},{0x17fb8,4}}, + {{0xe97,3},{0x1131,3}}, {{0x19679,6},{0x1d75,3}}, {{0x19b7,3},{0x2e6a4,2}}, {{0xe99,1},{0x23f76,5}}, + {{0x3559,4},{0x1085,3}}, {{0x1607,5},{0x9511,5}}, {{0x417d,5},{0x66c9,3}}, {{0xbb29,5},{0x9a46,7}}, + {{0x4853,3},{0x1166,3}}, {{0x2675b,4},{0x2675f,4}}, {{0xf0f,2},{0xe1c,3}}, {{0xf1f,3},{0xe0d,2}}, + {{0x457d,3},{0x9ccf,6}}, {{0x2bd5,4},{0x192f0,5}}, {{0xed1,3},{0x14e72,3}}, {{0x2017,2},{0x1050,3}}, + {{0x1a66,1},{0xeca,3}}, {{0x19b9,1},{0x48d8,2}}, {{0x19b7,3},{0x19e1,3}}, {{0xf57,2},{0x3e0e,3}}, + {{0x18a16,7},{0xec6,3}}, {{0xcc8,2},{0x10d3,3}}, {{0x2e273,1},{0x30a4e,1}}, {{0x2015,3},{0xb495,4}}, + {{0x1677,3},{0x5,1}}, {{0x1083,5},{0x122f,3}}, {{0xe77,2},{0x1722,5}}, {{0x5fd1,5},{0x2e2c,3}}, + {{0x1997,4},{0xf16,2}}, {{0x11373,4},{0x11377,7}}, {{0x12fa6,7},{0x1150,2}}, {{0x1154e,2},{0x6,1}}, + {{0x12f6,4},{0x1849,3}}, {{0x712f,4},{0x142d,3}}, {{0x4519,5},{0x718f,8}}, {{0x29c0,3},{0xe0a,1}}, + {{0x73ac,10},{0x127c,3}}, {{0x677,2},{0xe,1}}, {{0x1208,9},{0xe95,2}}, {{0x4781,3},{0x12fd,3}}, + {{0x4853,4},{0xfb0,2}}, {{0xe08,1},{0x2d10a,3}}, {{0x478f,3},{0x3a48,5}}, {{0x9a6,1},{0x1a63,3}}, + {{0xe0e0,5},{0x128c,4}}, {{0x1a49b,6},{0x1de7,3}}, {{0x115e,7},{0x1140,2}}, {{0xef7,3},{0x25706,4}}, + {{0xeb4,3},{0x6,1}}, {{0x4855,3},{0x413e,4}}, {{0x19b7,6},{0x11cb,3}}, {{0xf32,2},{0x2,1}}, + {{0xcb6,3},{0x4415,3}}, {{0x1827,5},{0xccd,1}}, {{0x3005f,4},{0x57,1}}, {{0x2b078,6},{0x2b07e,6}}, + {{0x1cfc,3},{0xe69,6}}, {{0x1787,7},{0x61a1,4}}, {{0x4522,3},{0xfeac,3}}, {{0x1109,5},{0x151c,11}}, + {{0xf65,4},{0x12a5,4}}, {{0x1ff7,3},{0xcee3,6}}, {{0x5172,7},{0x27dc,4}}, {{0x1f07,5},{0x1ad8e,4}}, + {{0x18a02,7},{0x9bd3,3}}, {{0x1a07,3},{0xfe6,2}}, {{0x1ee73,3},{0xfb8,3}}, {{0x13460,6},{0x17cc,4}}, + {{0xe83,3},{0x153ff,5}}, {{0x1dc8c,6},{0x31f8,3}}, {{0xe16,1},{0x12a4,8}}, {{0x2c99,8},{0x2ca1,4}}, + {{0x29cf,3},{0x1f03f,2}}, {{0x6,2},{0xe6b,2}}, {{0xeab,2},{0x1523,4}}, {{0xeac,2},{0x1050,3}}, + {{0x2e685,3},{0x29674,2}}, {{0x9e01,8},{0x58ff,4}}, {{0xac65,9},{0xf35,3}}, {{0xcc8,1},{0x22fe,5}}, + {{0xf32,2},{0xcc9,2}}, {{0x11671,4},{0xe11,1}}, {{0x48d8,2},{0x1969,1}}, {{0x105f,3},{0x1830,7}}, + {{0x25b5,10},{0x13e3,4}}, {{0xaebd,5},{0xfc7,3}}, {{0x46af,3},{0x18771,3}}, {{0x442d,1},{0x70a3,5}}, + {{0xbdfc,6},{0x18b4,3}}, {{0x190e2,7},{0xe0a,1}}, {{0x29cf,3},{0x373b,3}}, {{0x2a77e,5},{0x1cd3,2}}, + {{0x115a,3},{0x1ad8e,4}}, {{0x4767,1},{0x7921,3}}, {{0x6cc,2},{0x21,1}}, {{0x1969,1},{0xe67,2}}, + {{0xb589,6},{0xb58f,6}}, {{0x49b,2},{0x8d,1}}, {{0x1827,5},{0x44b3,4}}, {{0x13a7,5},{0xc6ba,6}}, + {{0x4359,11},{0x14a2,3}}, {{0x13fdc,5},{0x277e,2}}, {{0x1a07,3},{0x1057,1}}, {{0x10c5,4},{0x1859,4}}, + {{0x2ba5,1},{0x66fd,3}}, {{0x1ac9f,6},{0xe0d,2}}, {{0x3a29,4},{0xcbac,5}}, {{0x1819c,5},{0x181ab,5}}, + {{0xe16,2},{0x288d,7}}, {{0x158e,2},{0x2d8d,3}}, {{0x1dea,6},{0x1067,9}}, {{0x29cf,3},{0xeca,3}}, + {{0xed1,4},{0x22c87,4}}, {{0x11a1e,8},{0xf35,3}}, {{0x2298b,6},{0xe7f,2}}, {{0xa269,9},{0xec6,3}}, + {{0x11b26,5},{0x7f5f,6}}, {{0x1dc0,3},{0x1d65,3}}, {{0x19b7,3},{0x10a6,2}}, {{0x9a6,1},{0x190e6,3}}, + {{0x4,1},{0xe25,2}}, {{0x6053,5},{0xb83d,4}}, {{0x12e5,3},{0x1569,3}}, {{0x4853,3},{0x1085,3}}, + {{0x12f74,6},{0xa,2}}, {{0x1fdd7,5},{0xf0c,1}}, {{0xebe,4},{0x987d,8}}, {{0xa01d,7},{0x1722,5}}, + {{0x11486,5},{0xb3bb,6}}, {{0x1e55,5},{0x59b4,3}}, {{0x9a7,2},{0xcd3,1}}, {{0x4f1c,5},{0x12316,5}}, + {{0x12d4,3},{0x3b73,3}}, {{0x41d1,7},{0x23e1,3}}, {{0x766a,9},{0x3555,4}}, {{0xe0a,1},{0xcc4,2}}, + {{0x1230c,2},{0xcd3,1}}, {{0xe08,1},{0x1393,3}}, {{0x1847,5},{0x6e44,6}}, {{0x4fa2,5},{0x4fa7,4}}, + {{0xb12d,7},{0xe80,2}}, {{0x7414,3},{0xb09f,4}}, {{0x1377,5},{0x1aa7,10}}, {{0x115e,7},{0x3205,3}}, + {{0x44ad,3},{0xe0a,1}}, {{0xfa5,2},{0x2b89,3}}, {{0x3123,6},{0x3129,8}}, {{0x3a1b,6},{0xee17,5}}, + {{0x26183,5},{0x138e,2}}, {{0x48b5,5},{0x11796,5}}, {{0xc1d1,4},{0x27ea,4}}, {{0xecb,2},{0x4516,3}}, + {{0x27e0,3},{0xf59,2}}, {{0xcc8,1},{0x1cd3,2}}, {{0xf1d,2},{0x6,1}}, {{0x70ad,3},{0x4574,3}}, + {{0xf1d,1},{0x4,1}}, {{0x19b7,4},{0x15c32,6}}, {{0x69,1},{0x578,2}}, {{0x1977,4},{0xe66f,7}}, + {{0x7b21,5},{0xeca,3}}, {{0x1081,7},{0x2d1e,7}}, {{0xe101,5},{0xcdda,2}}, {{0xbc01,4},{0xcd3,1}}, + {{0x103b9,5},{0x6411,4}}, {{0x17fe4,5},{0xff87,5}}, {{0x7ff8,3},{0xf86,3}}, {{0x9345,5},{0xd347,5}}, + {{0xe71,1},{0xfdf,3}}, {{0xf4f,1},{0x1fbe,3}}, {{0xe08,1},{0x1a635,4}}, {{0x22b2,3},{0x8,1}}, + {{0xb3f1,3},{0x7251,4}}, {{0xde8e,4},{0x4,1}}, {{0x1597,5},{0x3155,6}}, {{0x11817,5},{0xcc6,2}}, + {{0x311b5,4},{0xb,1}}, {{0x2501,5},{0x1773,4}}, {{0xcbd,2},{0x10b8,2}}, {{0xf86,2},{0x7b72,3}}, + {{0x4781,3},{0x11cb,3}}, {{0xf65,4},{0x49a4,9}}, {{0xb8a1,6},{0x1230a,4}}, {{0x2de75,3},{0x19a,2}}, + {{0x4775,2},{0x6,2}}, {{0x1e08,9},{0xed6,2}}, {{0xe636,2},{0x1189,3}}, {{0x5534,4},{0x44ad,3}}, + {{0x11f72,6},{0xcc3,2}}, {{0x27ef,5},{0x1025,1}}, {{0xe1f,3},{0x2f2e,3}}, {{0x1306e,6},{0x1571,4}}, + {{0x19b7,3},{0xeb4,2}}, {{0xefa,2},{0xed5,3}}, {{0x1faa4,6},{0xf86,2}}, {{0x26673,6},{0xf35,2}}, + {{0xf63,2},{0xe0a,1}}, {{0x7b21,5},{0xebb,3}}, {{0xdd65,4},{0xcbd,1}}, {{0x317ac,2},{0xe3b,2}}, + {{0x4,1},{0x93dc,5}}, {{0x11f5c,4},{0x200d8,5}}, {{0x417d,5},{0xe78,1}}, {{0x1026f,7},{0xe95,2}}, + {{0x24773,5},{0x7a36,3}}, {{0xbccd,4},{0xb495,4}}, {{0x4553,4},{0x344b,4}}, {{0x10e8d,5},{0x11c77,4}}, + {{0x169b,5},{0x23e1,3}}, {{0x122d,2},{0x4c99,4}}, {{0x1e3b,4},{0xf35,2}}, {{0x28d0,8},{0x1722,5}}, + {{0xf1d,2},{0x52d8,3}}, {{0x1c73,5},{0x8d3f,6}}, {{0x2948,4},{0x6cee,4}}, {{0x19e7,8},{0x1004,3}}, + {{0x1567,3},{0x111c,2}}, {{0x1847,5},{0x14ff,8}}, {{0x2939,4},{0x303c,7}}, {{0xc1d1,4},{0x1d65,3}}, + {{0xce5b,7},{0x1e40,4}}, {{0x4853,3},{0x2d10a,3}}, {{0x3089,5},{0x3b4a,5}}, {{0xbc01,4},{0xa744,5}}, + {{0x1e8a4,4},{0xcbd,2}}, {{0x2496b,5},{0x2d1f,3}}, {{0x5,1},{0x12a3,3}}, {{0x1189,3},{0xfa9,4}}, + {{0xaca1,6},{0x1b41,6}}, {{0x29cf,3},{0x2cc00,3}}, {{0x27e9,3},{0xe11,1}}, {{0xf15,1},{0x7a14,4}}, + {{0xb559,6},{0xe32,1}}, {{0x1967,3},{0x1d7d,3}}, {{0xf0c,1},{0xe0b,2}}, {{0x325,2},{0x7b,1}}, + {{0x77c9,4},{0xed9,2}}, {{0xe08,1},{0xe60,2}}, {{0x17f7,6},{0x6,1}}, {{0x1967,3},{0xfdf,3}}, + {{0x4781,3},{0x17d56,3}}, {{0xf89,10},{0xf93,5}}, {{0x1967,3},{0x78cd,3}}, {{0xf38,5},{0xe0b,4}}, + {{0xe83,5},{0x2940,3}}, {{0x450b,4},{0x13345,3}}, {{0x30357,1},{0x205a1,1}}, {{0x1d54,6},{0x1c3d,9}}, + {{0x329d,5},{0xe6b,2}}, {{0x4781,3},{0xcb8,1}}, {{0x1db75,6},{0x17c0,2}}, {{0x9f45,9},{0xec6,3}}, + {{0x1369,2},{0x122c6,6}}, {{0x148a,3},{0x141a,2}}, {{0xe0a,1},{0xf24,2}}, {{0xe,1},{0x1d0,2}}, + {{0x1a29,2},{0x2017,4}}, {{0xb3e5,4},{0x534e,5}}, {{0x1131,3},{0xcc3,2}}, {{0x29b43,5},{0x1113,2}}, + {{0x2a83,4},{0x6b44,4}}, {{0x4e0b,8},{0x4e13,5}}, {{0x3807,10},{0x1783,4}}, {{0x29cf,3},{0x1150,3}}, + {{0xf1c3,5},{0x1cd3,2}}, {{0x74fc,2},{0x78ed,2}}, {{0x9909,8},{0xe77,2}}, {{0x1687,4},{0x2123d,4}}, + {{0x11e07,5},{0x4b12,4}}, {{0x4775,4},{0xed6,2}}, {{0x11d5,5},{0x2317,8}}, {{0x9af,2},{0x2b4f0,2}}, + {{0x3e27,8},{0xe92,3}}, {{0x1007,6},{0xa8cf,6}}, {{0xe11,1},{0x2dd3,7}}, {{0xe21,1},{0xec6,3}}, + {{0xb867,4},{0xcd3,2}}, {{0x1007,5},{0x60f3,7}}, {{0x1130,2},{0x1150,2}}, {{0x101f,2},{0xe95,2}}, + {{0x478f,3},{0x116af,8}}, {{0xe08,3},{0xe0b,4}}, {{0xe83,3},{0x10d55,4}}, {{0x14edf,4},{0x1485c,4}}, + {{0x1208,4},{0x123e,3}}, {{0x3002d,4},{0x8d,1}}, {{0x1497,5},{0x1062,2}}, {{0xf11,1},{0xfb0,2}}, + {{0x7414,3},{0xb19c,4}}, {{0x3123,6},{0x5,1}}, {{0x10f48,5},{0x8,1}}, {{0x2fac9,4},{0xedd,1}}, + {{0xe8a,2},{0xf0d,2}}, {{0x111a,7},{0x1099,10}}, {{0xe87,2},{0xcd3,2}}, {{0x2c57,6},{0xfdf,4}}, + {{0x12e5,5},{0x178d,3}}, {{0xe2f,1},{0x492e,3}}, {{0x6cc,2},{0xd,1}}, {{0x1a27,4},{0x189b,11}}, + {{0x1f22b,6},{0xcc3,2}}, {{0xb865,5},{0xeee,5}}, {{0xe86,2},{0xf31,7}}, {{0x53fc,8},{0x17a1,5}}, + {{0x1367,3},{0xeb5,2}}, {{0x7414,3},{0x3976,3}}, {{0xcc4,2},{0x6,1}}, {{0x111a,3},{0x1d40,2}}, + {{0x9b25,5},{0x158e,4}}, {{0x70ad,3},{0x7d99,4}}, {{0xf9f,4},{0x43fb,3}}, {{0x1777,5},{0x1e5d,4}}, + {{0x103e,4},{0x10ee1,4}}, {{0x1967,3},{0x1314e,4}}, {{0x12d4,3},{0x2691e,3}}, {{0x1189d,4},{0x2ee9,3}}, + {{0x6140,3},{0x3caa,3}}, {{0x138e,2},{0x2b78,4}}, {{0x22e5,5},{0x22a3,4}}, {{0xef7,3},{0x37c8,5}}, + {{0x1a1a7,5},{0xeccd,4}}, {{0xe6f,3},{0xcd3,2}}, {{0x1ee68,7},{0xcd4,2}}, {{0xbb7d,5},{0x10ba,3}}, + {{0x11b73,5},{0xfa4a,6}}, {{0xf1d,2},{0x23df,5}}, {{0x337d,7},{0x3384,7}}, {{0x4765,3},{0xa661,3}}, + {{0x10217,8},{0xed6,2}}, {{0x8da5,10},{0xed6,2}}, {{0x12e5,4},{0x1607e,6}}, {{0xe2f,1},{0x2db2a,3}}, + {{0x1607,5},{0x569b,5}}, {{0x124e,4},{0x6b2b,6}}, {{0x2b9d,3},{0x10d2,4}}, {{0x10c5,4},{0xe11,1}}, + {{0x550f,3},{0x1244,7}}, {{0x2b75,8},{0x2b7d,4}}, {{0x12160,3},{0xcc7,1}}, {{0x12e5,3},{0x1569,2}}, + {{0xf1d,5},{0xf22,4}}, {{0xf1d,9},{0xf26,9}}, {{0xd83f,4},{0x1be9,3}}, {{0xf2f,9},{0xf38,9}}, + {{0x104e,9},{0x1057,8}}, {{0xeab,7},{0xeb2,12}}, {{0x2afb2,2},{0x1f875,1}}, {{0x7378,7},{0x5847,6}}, + {{0x1803e,5},{0x1064,3}}, {{0x49b,2},{0x69,1}}, {{0x29cf,3},{0x9a6,1}}, {{0x2e86b,3},{0x2e86e,2}}, + {{0xf15,1},{0xe33,1}}, {{0xac05,7},{0xeca,3}}, {{0x42e9,10},{0x1059,3}}, {{0xbf55,7},{0xbf5c,5}}, + {{0x3005f,4},{0xe,1}}, {{0x4f9e,8},{0x5536,4}}, {{0x6f9c,8},{0x6fa4,5}}, {{0x455f,11},{0xf23,3}}, + {{0xf79,7},{0xe77,3}}, {{0x1571,4},{0x66c2,3}}, {{0x66b9,8},{0x66c1,5}}, {{0x478f,3},{0x7a37,2}}, + {{0x1a66,1},{0x25d5e,2}}, {{0x1a264,6},{0xf86,3}}, {{0x478f,3},{0xef7f,8}}, {{0x56ee,6},{0x240b,5}}, + {{0x1208,9},{0x3d3b,3}}, {{0x1059,3},{0xf7a,2}}, {{0x8385,8},{0x2872,4}}, {{0x22b8,4},{0x3caa,3}}, + {{0x3c9f,9},{0xeee,3}}, {{0x28df,5},{0xa93b,6}}, {{0x5537,3},{0x2f2e,3}}, {{0xe08,1},{0x7d64,4}}, + {{0xf89,3},{0x9be0,3}}, {{0x177fe,7},{0xebb,3}}, {{0x4765,3},{0xf18,2}}, {{0xcb8,1},{0x1030e,5}}, + {{0x4767,1},{0x5b06,4}}, {{0xfbf,5},{0xeb4,3}}, {{0x18a84,6},{0xe11,1}}, {{0x1099,4},{0x17c0,2}}, + {{0x105f,3},{0xeb5,2}}, {{0x1e08,5},{0x4b11,5}}, {{0x65dc,7},{0x10f2,5}}, {{0x9a6,1},{0x122d,8}}, + {{0x8c01,8},{0x6e53,4}}, {{0x7156,4},{0x569b,5}}, {{0xb889,9},{0x1152,3}}, {{0x1489,2},{0x18c88,4}}, + {{0x1a345,7},{0x277e,2}}, {{0x2b46,4},{0x1155,2}}, {{0xe0c,2},{0xfb0,3}}, {{0xb55b,3},{0xe5e,2}}, + {{0x1875a,8},{0xe0d,2}}, {{0x10c5,5},{0x15ec,3}}, {{0x5117,5},{0x453b,4}}, {{0x1489,2},{0x2b75,12}}, + {{0x478f,3},{0x7950,3}}, {{0x4,1},{0x1ba9,3}}, {{0xf0d,2},{0xa661,3}}, {{0x23d2,3},{0xf7a,2}}, + {{0xf4f,1},{0xf11,1}}, {{0x17ac6,7},{0x17acd,3}}, {{0x2d8d,3},{0x6,1}}, {{0x75db,4},{0x78d0,3}}, + {{0x18ec6,8},{0x18ee0,2}}, {{0x18ed8,10},{0x18ee2,8}}, {{0x2bd5,5},{0xec5,4}}, {{0x1efb5,5},{0x56a9,4}}, + {{0x1957,5},{0x1131,6}}, {{0x7394,3},{0xcce,2}}, {{0x478f,3},{0x9c84,4}}, {{0x61e8,3},{0x63e9,5}}, + {{0x3e6d,8},{0xcc9,2}}, {{0x24d63,4},{0x29a21,3}}, {{0x739f,6},{0xe6b,4}}, {{0x1f58b,6},{0xec6,3}}, + {{0x70ad,3},{0x1317,2}}, {{0x1189d,4},{0x2d11,3}}, {{0x1601,3},{0x8,1}}, {{0x5d56,3},{0x99da,6}}, + {{0x2bf1,5},{0x104a,4}}, {{0x2d4fd,4},{0x48d0,2}}, {{0xb3f1,3},{0x7de9,2}}, {{0x15fc,2},{0xed9,2}}, + {{0xb3f1,3},{0xc471,4}}, {{0x17346,4},{0xe0a,1}}, {{0x4fb8,4},{0x3b4a,5}}, {{0xf77,3},{0x30f5,4}}, + {{0x2240,4},{0x2c59,4}}, {{0xe1f,6},{0x15af1,4}}, {{0x4853,4},{0xe0f9,3}}, {{0xe97,3},{0xee9,2}}, + {{0x2b50b,2},{0x2b088,2}}, {{0xef7,3},{0x1569,2}}, {{0x30357,1},{0x28b3a,1}}, {{0xd525,9},{0xe11,1}}, + {{0x29c0,3},{0x20544,2}}, {{0x29cf,3},{0xcf04,3}}, {{0x1081,4},{0x4b6f,3}}, {{0xacb9,5},{0xf70f,4}}, + {{0x15f44,6},{0x1a71,3}}, {{0x1ce2b,6},{0xf62,3}}, {{0x80fd,6},{0xf32,2}}, {{0x7414,3},{0x45f2,2}}, + {{0x451e,4},{0x2872,4}}, {{0x2de57,3},{0x336,2}}, {{0x112b,5},{0x3198,9}}, {{0x150d0,6},{0xf86,3}}, + {{0x102b,10},{0xb74,2}}, {{0xe88,3},{0x8ab6,7}}, {{0x1969,1},{0x3457,4}}, {{0x19643,5},{0xfdd,4}}, + {{0x1477,9},{0x1663,3}}, {{0x1a07,3},{0x115a,3}}, {{0xe71,1},{0xcc7,1}}, {{0x16cfa,6},{0xccaa,4}}, + {{0x16958,6},{0x2dd7,4}}, {{0xe11,1},{0x15692,5}}, {{0xbb4d,6},{0x4665,4}}, {{0x1a07,5},{0x1004,3}}, + {{0x5903,6},{0xe2b4,5}}, {{0x3639,11},{0xed6,2}}, {{0x2ba5,1},{0x48d3,2}}, {{0x10dd2,5},{0xf91,3}}, + {{0xf37b,7},{0x8,1}}, {{0x780a,5},{0xe0a,1}}, {{0x3002d,4},{0xd,1}}, {{0x75ce,4},{0x534e,5}}, + {{0x12f6,4},{0xb604,4}}, {{0x8d,1},{0x5bc,2}}, {{0x111a,3},{0xf34,2}}, {{0x70ee,9},{0x70f7,4}}, + {{0x20549,2},{0x24900,2}}, {{0x163e0,7},{0x12a9,3}}, {{0x17fca,3},{0x490d,3}}, {{0xe32,1},{0x9a7,2}}, + {{0x62ea,7},{0xe95,2}}, {{0x2e27c,2},{0x205a7,1}}, {{0xec0,3},{0x37aa,9}}, {{0xe83,6},{0xf91,3}}, + {{0xb3f1,3},{0x3b5f,5}}, {{0x4781,3},{0x25826,5}}, {{0x111a,3},{0x1de7,3}}, {{0x1969,1},{0x45ee,3}}, + {{0x44ef,5},{0x1f9f,3}}, {{0xe67,2},{0xf59,2}}, {{0xf57,2},{0xe09,1}}, {{0x1817,4},{0x6b35,9}}, + {{0x417d,6},{0x16616,4}}, {{0x19f7,4},{0x11ed3,3}}, {{0xedd,1},{0x2b84,6}}, {{0x3579,3},{0x2842,7}}, + {{0x3082f,4},{0x18ee0,2}}, {{0xe71,1},{0x3642,2}}, {{0x393b,5},{0x4cff,4}}, {{0x46af,3},{0x1569,2}}, + {{0x12c3,4},{0x1224,6}}, {{0x175c,3},{0xcd3,2}}, {{0x19f9,5},{0xe67,2}}, {{0x1c3ee,6},{0xec6,3}}, + {{0x643c,7},{0xa348,5}}, {{0x471f,5},{0x10cb,4}}, {{0x109b,2},{0xe65,2}}, {{0x74bd,5},{0x4574,3}}, + {{0xc54c,6},{0xe11,1}}, {{0x10b8,2},{0x1185,3}}, {{0x24ce6,3},{0xa,2}}, {{0x2df3b,4},{0x302,2}}, + {{0x4853,3},{0x2f94,3}}, {{0x534,2},{0x7b,1}}, {{0x27e0,3},{0xf830,5}}, {{0x258a3,6},{0x1098,2}}, + {{0xfcb,2},{0x6,2}}, {{0x12c3,4},{0x10ed,3}}, {{0x206f,6},{0x60f5,5}}, {{0x9b79,5},{0x56a8,5}}, + {{0x11e80,6},{0xcd1,5}}, {{0xe1f,3},{0xa086,3}}, {{0xe65,2},{0xf35,2}}, {{0x15e9,3},{0x2476,4}}, + {{0x255f3,5},{0x9a6,2}}, {{0x2de75,3},{0x6bb,2}}, {{0x2501,5},{0xf095,5}}, {{0x1e62,4},{0x2e2c,3}}, + {{0x2015,3},{0x14863,3}}, {{0x478f,3},{0x29620,4}}, {{0x1153,2},{0x3378,5}}, {{0x1ec28,6},{0x70a6,3}}, + {{0xbb7d,5},{0x17f0d,5}}, {{0x2a2b,5},{0x3640,4}}, {{0x4765,3},{0x1cd3,3}}, {{0x4853,3},{0x1db44,2}}, + {{0x15d78,7},{0xe6b,3}}, {{0xcc7,1},{0x1dee,2}}, {{0xe2f,1},{0x10e30,5}}, {{0x112c3,6},{0x2352,5}}, + {{0x46bd,3},{0xcc9,2}}, {{0x24303,6},{0xf35,2}}, {{0x7b45,4},{0xfcb,2}}, {{0x5f69,8},{0xe92,5}}, + {{0x1e5b0,5},{0xec5,4}}, {{0x478f,3},{0xf12,3}}, {{0x8415,5},{0x14f0,7}}, {{0x1ebc,6},{0xdc9a,5}}, + {{0x48d6,2},{0x74fc,2}}, {{0xe08,1},{0xcba,2}}, {{0x1fdd7,5},{0xf4f,1}}, {{0xb685,5},{0x8585,4}}, + {{0xf0a,3},{0x1ceeb,5}}, {{0x4bf6,7},{0x4bfd,6}}, {{0xf37b,7},{0x1cd3,2}}, {{0x78b1,12},{0x78b1,12}}, + {{0x7414,3},{0x80c5,3}}, {{0xe61,3},{0x34ab,3}}, {{0xb805,5},{0xdb5a,6}}, {{0x28c1,4},{0x9a6,1}}, + {{0xbdf9,5},{0x2235,3}}, {{0x1e17,7},{0x4dc4,6}}, {{0xa929,9},{0xebb,3}}, {{0x5b06,4},{0xf7a,2}}, + {{0xdadc,7},{0x6d33,4}}, {{0xe83,5},{0x63cc,8}}, {{0x11a34,4},{0x431c,5}}, {{0x2d1f,3},{0xed9,2}}, + {{0x16a7,3},{0x104a,3}}, {{0x2858,8},{0x240b,6}}, {{0x545a,4},{0x104a,4}}, {{0xdbef,8},{0xf35,3}}, + {{0x11e12,5},{0x1485c,4}}, {{0x10c5,4},{0x4618,3}}, {{0xef7,3},{0xb068,5}}, {{0x11515,5},{0xe30,3}}, + {{0x18674,6},{0xce83,4}}, {{0x18dec,3},{0xa,2}}, {{0x1ff7,3},{0xfb0,2}}, {{0x2f71,4},{0x8441,4}}, + {{0x1917,4},{0x2024a,4}}, {{0xbbdd,8},{0xfcd,4}}, {{0x1160,5},{0x96c4,4}}, {{0x2975,6},{0x7fbf,6}}, + {{0x4385,3},{0xe6c,3}}, {{0x6aa,2},{0x21,1}}, {{0x1997,4},{0x1084,3}}, {{0x70ad,3},{0x11b5,2}}, + {{0x57cb,5},{0x3a0f,5}}, {{0x29cf,3},{0xcc8,1}}, {{0xe16,2},{0x92ea,4}}, {{0xe83,3},{0x1c80e,6}}, + {{0xe22,3},{0x2,1}}, {{0x8469,4},{0xe0a,1}}, {{0x17146,4},{0xdba8,5}}, {{0x1e64,3},{0xed9,2}}, + {{0x10a6,2},{0xdde3,3}}, {{0x170ee,3},{0x1b41,4}}, {{0x311a9,2},{0xc287,2}}, {{0x7414,3},{0x10cad,2}}, + {{0xe09,2},{0x1c7e,3}}, {{0xc39d,6},{0xc3a3,5}}, {{0x46af,3},{0x1839,2}}, {{0xe22,2},{0x1cd3,2}}, + {{0xc5ce,5},{0xec3,3}}, {{0xe43a,5},{0x23e99,2}}, {{0x1cdc,6},{0xabc4,4}}, {{0x17b0c,4},{0xe77,2}}, + {{0x18df4,5},{0xc3d0,4}}, {{0xc7ff,7},{0xe0b,4}}, {{0x57,1},{0x468,2}}, {{0x520e,5},{0x8ce2,3}}, + {{0xe78,1},{0x2c85,2}}, {{0xfd9,3},{0xe61,2}}, {{0x23313,7},{0xe0a,1}}, {{0x1f7f8,6},{0xec6,3}}, + {{0x18d74,3},{0x9ff4,5}}, {{0x10cb6,2},{0x11ac,3}}, {{0x4765,3},{0xffc,3}}, {{0xe11,2},{0x1692,5}}, + {{0xf65,4},{0xc6cf,7}}, {{0x27e0,3},{0x236b6,5}}, {{0x12d4,3},{0x1dcb7,2}}, {{0x523,2},{0x7b,1}}, + {{0x1c7c,4},{0xe67,2}}, {{0xfb8,3},{0x16bc,6}}, {{0x1ff7,3},{0x1c0f,3}}, {{0xe83,4},{0x15c1e,6}}, + {{0x478f,3},{0x249f,3}}, {{0x2ba5,1},{0x1d7d,3}}, {{0x712f,4},{0x10d3,3}}, {{0x24f2,5},{0x2e35,6}}, + {{0x35a1,2},{0x3b4a,5}}, {{0xcc8,2},{0x1153,2}}, {{0x27778,5},{0xf24,2}}, {{0x6cde,4},{0x4b96,5}}, + {{0x7fe9,5},{0x61ba,4}}, {{0x2ba2,2},{0xe13,3}}, {{0x478f,3},{0xb02a,4}}, {{0x1fa80,6},{0x239e,3}}, + {{0x29cf,3},{0x1bef,2}}, {{0x1189f,2},{0x15390,3}}, {{0xe22,2},{0xe80,2}}, {{0x13eec,5},{0x2f2e,3}}, + {{0x750b,8},{0x18b4,3}}, {{0x19b7,3},{0x25c06,5}}, {{0xc081,5},{0x3a91,3}}, {{0xe33,1},{0xf1a,2}}, + {{0x1081,5},{0xd886,4}}, {{0x5d2d,10},{0xec3,3}}, {{0xf59,2},{0xead,3}}, {{0x6ca7,3},{0x24180,3}}, + {{0xe,1},{0x9e,2}}, {{0x294f0,6},{0xe11,1}}, {{0x4ef5,4},{0xfcb,2}}, {{0x19a7,5},{0xfdf,4}}, + {{0xe5b,3},{0x12757,7}}, {{0xf4f,1},{0x2d9ce,3}}, {{0x92b5,5},{0x1447d,5}}, {{0xb379,3},{0xe5e,2}}, + {{0x12e5,3},{0x13dd,4}}, {{0x2adf,4},{0x6,2}}, {{0x1e355,6},{0xe11,1}}, {{0xeaa,2},{0x14ff,3}}, + {{0x18f7,5},{0xb496,3}}, {{0x955a,4},{0xf91,3}}, {{0xcb8,1},{0x1160,5}}, {{0x5d54,5},{0x5d59,8}}, + {{0xeb5,2},{0x13e3,4}}, {{0x1787,9},{0x67c6,4}}, {{0xe65,2},{0x4a19,7}}, {{0x1303,3},{0xe6b,4}}, + {{0x29cf,3},{0x319a,3}}, {{0x1f09,3},{0x11b5,2}}, {{0x74f9,2},{0x26921,3}}, {{0x1697,4},{0x8,1}}, + {{0x1150,2},{0xed5,3}}, {{0x11d99,5},{0xcbd,2}}, {{0xe,1},{0x164,2}}, {{0x1011a,7},{0xfdd,4}}, + {{0xb535,9},{0xf12,3}}, {{0xb,1},{0x2252,3}}, {{0x328f,6},{0x239e,3}}, {{0x331b,7},{0x10c7,4}}, + {{0xf02,2},{0x1ce43,3}}, {{0x7b51,4},{0xfa5,2}}, {{0x1373a,7},{0xec6,3}}, {{0x2560,4},{0xe77,3}}, + {{0xef7,3},{0x16537,7}}, {{0x19b7,3},{0x48d8,2}}, {{0xe768,8},{0xcc9,2}}, {{0xaf2,6},{0xaf4,2}}, + {{0xbded,4},{0xe0f9,3}}, {{0x1a25b,6},{0xec6,3}}, {{0x23c73,5},{0xe30,3}}, {{0x1367,4},{0xe13,3}}, + {{0x2d79,4},{0x1392,2}}, {{0xf4f,1},{0x198c9,2}}, {{0x4853,3},{0x2454,3}}, {{0x30e73,3},{0xc,1}}, + {{0xf77,3},{0xe77,3}}, {{0x1a27,4},{0x6f79,9}}, {{0x1367,3},{0x1849,3}}, {{0x4765,3},{0xe19,1}}, + {{0x8dc9,7},{0x8dd0,5}}, {{0xb859,7},{0x6bef,5}}, {{0x1f25,8},{0x1177,7}}, {{0x12d4,3},{0x18776,2}}, + {{0xb8d1,4},{0x1f38,1}}, {{0x10efb,5},{0xcc3,2}}, {{0x1081,4},{0xf67,3}}, {{0xf021,6},{0x31c6,5}}, + {{0x73b9,5},{0x6,1}}, {{0x1e62,4},{0xe8a,2}}, {{0x2afa1,4},{0xe33,1}}, {{0x479f,2},{0xcc1,1}}, + {{0xb39d,8},{0x1392,3}}, {{0xe97,3},{0xf49d,3}}, {{0x3949,6},{0x9537,5}}, {{0x7156,7},{0x715d,6}}, + {{0x21af,5},{0x13e3,4}}, {{0xe63,2},{0xe63,2}}, {{0x3521,4},{0x1889,2}}, {{0x23c3b,5},{0x6,3}}, + {{0x473b,5},{0x8,1}}, {{0x1817,4},{0x7b57,6}}, {{0x2ad7b,4},{0xe11,1}}, {{0x5d54,5},{0x4249,6}}, + {{0xe32,1},{0x1bef,2}}, {{0xf38,2},{0x1189,4}}, {{0x9d95,9},{0x1d06,3}}, {{0x16ff2,6},{0xa,2}}, + {{0x7414,3},{0xee59,3}}, {{0x46bd,3},{0x1805f,2}}, {{0x18764,5},{0xb,1}}, {{0xf4f,1},{0xcba,2}}, + {{0xcc1,1},{0xa15d,4}}, {{0x688,2},{0x21,1}}, {{0x1637,7},{0x1722,5}}, {{0x75b4,4},{0x9,1}}, + {{0x1f996,5},{0xec5,4}}, {{0x16fac,8},{0xcc5,2}}, {{0xb3f1,3},{0x1523,4}}, {{0x2513b,5},{0xe30,3}}, + {{0xf11,1},{0x2e6a4,2}}, {{0xdf5f,6},{0x34d7,4}}, {{0x1c448,6},{0x10f5,3}}, {{0x12f6,4},{0xe8a,2}}, + {{0x4853,3},{0x1b2e5,3}}, {{0x10bae,3},{0x1d75,3}}, {{0x15a7,6},{0x91e3,6}}, {{0x101bf,6},{0xcc9,2}}, + {{0x457d,3},{0x15fe,4}}, {{0x20541,4},{0x74fa,4}}, {{0x17c24,6},{0xed9,2}}, {{0x127f,3},{0x2c292,3}}, + {{0x7d61,8},{0xed6,2}}, {{0x6cc4,4},{0xb496,3}}, {{0x12e2a,7},{0xec6,3}}, {{0x12c5,3},{0x10ec,6}}, + {{0x1739e,7},{0xf23,3}}, {{0xe,1},{0x11c,2}}, {{0x6463,10},{0x6140,3}}, {{0x19f70,8},{0xe0a,1}}, + {{0x148c4,8},{0xcc9,2}}, {{0x12c3,4},{0x3063,5}}, {{0x478f,6},{0x1183e,4}}, {{0x545,2},{0x7b,1}}, + {{0x9a6,1},{0xcce,2}}, {{0x49ba,6},{0x49c0,7}}, {{0x162c8,5},{0x7d81,4}}, {{0x431f,2},{0xb,1}}, + {{0x19f7,7},{0x127c,3}}, {{0xc159,4},{0x1155,2}}, {{0x4ef5,4},{0x13022,6}}, {{0x48a7,5},{0x1790,6}}, + {{0x1e841,5},{0xf79,3}}, {{0x20f6,5},{0x1ba8,8}}, {{0xebe,4},{0x3921,5}}, {{0x115a,3},{0xe7f,2}}, + {{0x18034,6},{0x1803a,4}}, {{0x6,2},{0x2f94,3}}, {{0x70fd,3},{0x1001,3}}, {{0xe97,3},{0x1cd3,2}}, + {{0x450b,4},{0x155b,4}}, {{0xfb0,3},{0x6,1}}, {{0xcc1,1},{0x453b,4}}, {{0x5534,4},{0x13d60,6}}, + {{0x449b,5},{0x2514,4}}, {{0xf22,2},{0xf1a,2}}, {{0x4767,1},{0xed9,2}}, {{0x29c0,3},{0xeaa,2}}, + {{0xef7,5},{0xec6a,5}}, {{0xf58,3},{0x1085,3}}, {{0x1467,4},{0xa914,4}}, {{0x1667,4},{0xd711,3}}, + {{0x1927,4},{0x6,1}}, {{0x2b55,5},{0xd3eb,5}}, {{0xc05d,4},{0x6ca7,3}}, {{0x10dc,2},{0x6,1}}, + {{0x196c1,6},{0xec6,3}}, {{0x1b34d,6},{0xed6,2}}, {{0x4781,3},{0xeea,3}}, {{0x69,1},{0x260,2}}, + {{0x4e18,6},{0x2663,6}}, {{0xce50,6},{0x2370,3}}, {{0x29fc,10},{0x1fe3,4}}, {{0xe13,3},{0xe16,3}}, + {{0x1be,2},{0x4df,2}}, {{0x1e53,5},{0x61bb,4}}, {{0x1189d,4},{0x24f7,4}}, {{0xe85,3},{0xe0b,4}}, + {{0x75b4,7},{0x395e,5}}, {{0x5,2},{0x189f,3}}, {{0xedd,1},{0xe31,2}}, {{0xe240,6},{0x13e3,4}}, + {{0x1482e,6},{0x1fe3,4}}, {{0x7416,1},{0x4188,3}}, {{0x7795,4},{0x39bd,4}}, {{0x2006,3},{0x3002,5}}, + {{0x9bd9,5},{0xcc1,1}}, {{0x113d6,6},{0x1cfd,3}}, {{0x478f,3},{0x1393,4}}, {{0x30f39,4},{0x18ed6,2}}, + {{0x2a4d2,3},{0x29675,3}}, {{0xcc6c,7},{0x2f27,4}}, {{0x29441,4},{0xf3a,3}}, {{0x1153,3},{0x1317,2}}, + {{0xe13,6},{0xe19,6}}, {{0xe0f,4},{0xe13,12}}, {{0xe08,7},{0xe0f,16}}, {{0x6ae3,8},{0x37d7,5}}, + {{0x1e520,6},{0xf62,3}}, {{0x77e5,4},{0xcd3,2}}, {{0x450b,4},{0x1314e,4}}, {{0xb5e9,4},{0x2075,3}}, + {{0x57,1},{0x206,2}}, {{0x7414,3},{0x4767,1}}, {{0x79dd,7},{0x266e,5}}, {{0x2a47,3},{0x23f28,2}}, + {{0xcc8,1},{0xe5be,3}}, {{0x12e5,3},{0x2f2e,3}}, {{0xbccd,4},{0x53da,4}}, {{0x6171,9},{0x12bf,4}}, + {{0x677,2},{0x21,1}}, {{0xe7a,2},{0x7bd9,4}}, {{0x11229,6},{0x1122f,5}}, {{0x15571,4},{0x1046,3}}, + {{0x11b3,4},{0x14f0,7}}, {{0x1704c,6},{0x17052,4}}, {{0x29e45,5},{0xcd3,2}}, {{0x101f,2},{0xfb0,2}}, + {{0x307bb,1},{0x205a0,2}}, {{0x30869,4},{0x18ec8,2}}, {{0x1e3c3,6},{0xcc9,2}}, {{0xef7,3},{0xefb,3}}, + {{0x2bc7,4},{0xe67,2}}, {{0x25193,5},{0x526d,3}}, {{0x1d14c,6},{0xcc9,2}}, {{0x688,2},{0xd,1}}, + {{0x97d1,7},{0x6a69,5}}, {{0xf2cb,8},{0x18b4,3}}, {{0x25623,5},{0x3a91,3}}, {{0x712f,4},{0x2f2e,3}}, + {{0x46bd,3},{0x1166d,4}}, {{0xe16,1},{0x1463,4}}, {{0x30de9,2},{0x2e273,1}}, {{0x572f,7},{0x546b,6}}, + {{0xe97,3},{0xfa6,3}}, {{0xbae3,5},{0xce8e,4}}, {{0x20380,5},{0x74fb,3}}, {{0xaaf,2},{0x2e79e,6}}, + {{0x177d6,6},{0x2dd7,4}}, {{0x4853,3},{0x309c,4}}, {{0x2de75,4},{0x57,1}}, {{0x19b9,1},{0xefa,2}}, + {{0xe9e6,8},{0xec6,3}}, {{0x1f7cb,5},{0x1f7d0,4}}, {{0xfa2,3},{0x15398,3}}, {{0x1057,1},{0xe08,1}}, + {{0xca88,8},{0xec6,3}}, {{0x6d05,6},{0x3317,4}}, {{0x17f9e,4},{0x19e55,4}}, {{0x2988c,5},{0x48d3,2}}, + {{0xcc1,1},{0x2270,3}}, {{0x7414,3},{0x809a,3}}, {{0x4781,3},{0x1ba9,3}}, {{0x1f07,4},{0x5669,3}}, + {{0x10e7,5},{0x4249,6}}, {{0x4,1},{0xe7d,2}}, {{0x8428,3},{0x17d56,3}}, {{0xe1f,3},{0x15f70,5}}, + {{0x1015c,5},{0x1796b,4}}, {{0xb379,3},{0xabc5,3}}, {{0xbfe5,5},{0xf61,2}}, {{0x492b,4},{0xe77,3}}, + {{0x10c5,4},{0x13e02,4}}, {{0x1747,5},{0x5896,5}}, {{0xf9d,3},{0x89bc,5}}, {{0x5fb7,7},{0x1252,3}}, + {{0x24663,4},{0x24667,4}}, {{0x29a4,3},{0xe86,2}}, {{0x3521,6},{0xec6,3}}, {{0x5534,4},{0x6,2}}, + {{0x1bb99,7},{0xe95,2}}, {{0x16692,6},{0xe11,1}}, {{0x82b9,7},{0x37c8,5}}, {{0x2,2},{0x2c75,6}}, + {{0x4781,3},{0x1f3f0,6}}, {{0x61ce,6},{0x28f8,5}}, {{0xe27,2},{0x8605,4}}, {{0x7414,3},{0xf70,2}}, + {{0x17e7,7},{0x69f3,6}}, {{0x19511,6},{0x3694,3}}, {{0x3383,3},{0x3b73,3}}, {{0x11dc5,6},{0x3f55,5}}, + {{0xe97,3},{0xa385,4}}, {{0x1db1,3},{0x109b,2}}, {{0x29d21,3},{0xe86,2}}, {{0xf0c,1},{0x1e2e3,2}}, + {{0x13460,6},{0x18f12,3}}, {{0xd11b,5},{0x1dfd,3}}, {{0x194f6,7},{0x1150,2}}, {{0x29f29,3},{0x33d3,2}}, + {{0x92b5,7},{0x2fbe,5}}, {{0x40e3,7},{0x1024,7}}, {{0x28c1,4},{0x268c,3}}, {{0x2a325,4},{0x2a329,3}}, + {{0xe92,3},{0xeab,2}}, {{0x19b9,1},{0x122d,8}}, {{0x2a47,3},{0x1e57e,2}}, {{0x750b,8},{0x12be,5}}, + {{0x1a07,3},{0x2260,4}}, {{0x2afc4,6},{0x2afc4,6}}, {{0xdc6e,4},{0x1287,5}}, {{0x2ba5,1},{0x2f3e5,2}}, + {{0x1977,4},{0xfcff,5}}, {{0x185fc,5},{0x1de0b,4}}, {{0x45,1},{0x6bb,2}}, {{0x11c70,8},{0x1fc7,3}}, + {{0x3559,4},{0xce8e,4}}, {{0x3e0,2},{0xe,1}}, {{0x1747,4},{0xc564,7}}, {{0x11b47,4},{0xea93,3}}, + {{0xcd3,1},{0xe69,6}}, {{0x169c6,6},{0x1663,4}}, {{0x1991c,6},{0x16ad,3}}, {{0xe61,2},{0x3,1}}, + {{0x16836,7},{0xcc9,2}}, {{0xe3d,4},{0x78b5,2}}, {{0x8cf1,6},{0xa,2}}, {{0x3d55,5},{0x108b,3}}, + {{0xf77,4},{0x2742d,3}}, {{0x11234,6},{0x1123a,5}}, {{0x2a47,3},{0x2c59,4}}, {{0x2b4fe,2},{0xc287,2}}, + {{0x178d,3},{0xcce,2}}, {{0xe09e,8},{0xed6,2}}, {{0x9a41,5},{0x9a46,7}}, {{0x1677,8},{0x167f,8}}, + {{0x5,1},{0xee59,5}}, {{0x2b4b0,3},{0x74fb,3}}, {{0x18430,6},{0x1016f,3}}, {{0xaf71,8},{0xeed,4}}, + {{0x57be,5},{0x240b,5}}, {{0x4225,4},{0x1d49e,5}}, {{0x29cf,3},{0x17d8f,7}}, {{0xe5b,3},{0xe11,1}}, + {{0x4fd2,6},{0x2790,5}}, {{0xed1,3},{0xc557,3}}, {{0xfe3,4},{0x27dc,4}}, {{0xe97,3},{0x2691e,3}}, + {{0x2de63,3},{0xe,2}}, {{0x2de75,3},{0x1be,2}}, {{0x46bf,1},{0x24bd8,3}}, {{0x7bd9,3},{0x57d2,4}}, + {{0x2f71,7},{0x49be,4}}, {{0xe67,2},{0xe5e9,3}}, {{0x112b,5},{0xd766,6}}, {{0x1877,4},{0xcd3,1}}, + {{0x2966,4},{0x16921,5}}, {{0x49b,2},{0x57,1}}, {{0x330d,7},{0xcb7,2}}, {{0x1807,5},{0xcd3,1}}, + {{0x11234,5},{0x2f92,3}}, {{0x1567,6},{0xcc1,2}}, {{0xf18,2},{0x490c,3}}, {{0x12e5,3},{0x1a56,2}}, + {{0x2fe4d,4},{0xe,1}}, {{0x48a,2},{0x57,1}}, {{0x18dea,5},{0x70a6,3}}, {{0x260,2},{0x12e,2}}, + {{0x11adb,3},{0x1f8a8,4}}, {{0x18773,2},{0x442d,1}}, {{0x29f7,3},{0x10b7,2}}, {{0x10e09,8},{0x1004,3}}, + {{0x10da8,3},{0x52d8,3}}, {{0xe11,1},{0x2c04,3}}, {{0x2675b,4},{0xe21,1}}, {{0x450b,6},{0xcb9,4}}, + {{0x28d0,4},{0x10785,7}}, {{0x116a5,2},{0x1230c,2}}, {{0x46af,3},{0x1569,4}}, {{0x20519,4},{0x20519,4}}, + {{0x1757,8},{0x65a3,5}}, {{0x2df3b,4},{0x284,2}}, {{0x1133c,5},{0x6cba,4}}, {{0x183b8,8},{0xe86,2}}, + {{0x792f,2},{0x781c,3}}, {{0x4bcf,7},{0x4be3,6}}, {{0xe97,3},{0xeb5,2}}, {{0x750b,4},{0x6,2}}, + {{0x1467,4},{0xcc9,2}}, {{0x1947,5},{0x1047,3}}, {{0x112b,5},{0x9a6,1}}, {{0x611,2},{0x21,1}}, + {{0xef7,3},{0x101f,2}}, {{0x2948,4},{0xe77,2}}, {{0x1937,5},{0x1373,2}}, {{0x7f41,4},{0x12a5a,6}}, + {{0xb3cd,6},{0x798f,6}}, {{0x2d81b,5},{0xe11,1}}, {{0x133fc,6},{0x2eb7,4}}, {{0x1857,6},{0x1d5d2,3}}, + {{0x4767,1},{0x27d9,2}}, {{0x60fc,8},{0x1dc7,5}}, {{0xe08,1},{0x11187,2}}, {{0x1087e,5},{0x10883,6}}, + {{0xb3f1,4},{0x6e53,4}}, {{0xbdef,3},{0x10cb,2}}, {{0xea6a,5},{0x6411,4}}, {{0xe0f,2},{0xe848,7}}, + {{0x11373,4},{0xe16,1}}, {{0x5e58,6},{0x29f7,3}}, {{0xd4a1,8},{0xec6,3}}, {{0x39ff,7},{0x129a,7}}, + {{0x18714,6},{0x11440,4}}, {{0x11eee,5},{0x11ef3,6}}, {{0x101e,4},{0xcce,2}}, {{0x177f4,8},{0x8,2}}, + {{0x19b7,3},{0x25b7e,5}}, {{0x1a17,5},{0x2899,10}}, {{0x1be,2},{0x1ac,2}}, {{0x1f10b,5},{0xe0c,3}}, + {{0x155b,3},{0xcce,2}}, {{0x2938b,5},{0xfb0,2}}, {{0x18016,5},{0xfb0,2}}, {{0xdfd8,9},{0xe67,2}}, + {{0x5ff8,6},{0x1440,7}}, {{0x2461d,3},{0x2447,4}}, {{0x14112,5},{0x534e,5}}, {{0x2de45,3},{0x512,2}}, + {{0xe21,1},{0xe09,1}}, {{0x2f71,4},{0xcd3,2}}, {{0x1977,10},{0x18b2,5}}, {{0x1191,11},{0xfef,6}}, + {{0x1967,3},{0x1db45,2}}, {{0xe08,1},{0xf11,1}}, {{0x1bbe1,6},{0xec6,3}}, {{0xa461,8},{0x18b4,3}}, + {{0x17394,7},{0x10b7,2}}, {{0x7532,5},{0x43fc,2}}, {{0xb8ad,4},{0x1c7e,3}}, {{0x76c7,8},{0xec6,3}}, + {{0x1677,3},{0x109b,2}}, {{0xf70,2},{0x9a8,1}}, {{0x138e,2},{0x1c7f,3}}, {{0x5f69,6},{0x2c6a,5}}, + {{0x7532,5},{0x1791,6}}, {{0x232db,5},{0xe60,2}}, {{0x3518,3},{0x351b,6}}, {{0x4767,1},{0x6,2}}, + {{0x205a1,1},{0x205a9,1}}, {{0x58d1,5},{0x11322,4}}, {{0x611,2},{0x69,1}}, {{0x2966,4},{0xcd3,2}}, + {{0x1a07,3},{0x1766b,2}}, {{0x2b48,2},{0xfd9,3}}, {{0x29c0,3},{0x2b83,2}}, {{0xccd,1},{0x910c,5}}, + {{0x1969,1},{0x7416,1}}, {{0x2e79e,4},{0x2e84a,2}}, {{0x385b,7},{0x9958,5}}, {{0xe33,1},{0x14273,7}}, + {{0x1b0f,3},{0xed9,2}}, {{0x1b2e1,6},{0x2f2e,3}}, {{0xc6ec,4},{0xf79,3}}, {{0x17ca6,5},{0x2c6a,5}}, + {{0x7414,3},{0xe8a,2}}, {{0xc1d3,3},{0xb35a,7}}, {{0x10172,7},{0x10b7,2}}, {{0x63cb,3},{0x156a,3}}, + {{0x10432,5},{0xcd3,1}}, {{0x1687,5},{0xec32,6}}, {{0x1e2d7,5},{0xed6,2}}, {{0x45a5,6},{0x45c7,5}}, + {{0x74fc,2},{0x442d,1}}, {{0x1510c,6},{0x5ddf,4}}, {{0x174d4,5},{0x1de7,3}}, {{0x7414,3},{0x181b,3}}, + {{0x4765,3},{0x2b471,2}}, {{0x11234,5},{0xf0d,2}}, {{0x46af,3},{0xc6cd,4}}, {{0x478f,3},{0x1e65,3}}, + {{0xd78,4},{0xc27f,2}}, {{0x48d0,2},{0x1db44,2}}, {{0x1e919,5},{0x1e91e,4}}, {{0x8,1},{0xec6,3}}, + {{0x1689,6},{0xe11,1}}, {{0x3823,10},{0xed9,2}}, {{0x15eae,7},{0x2e2c,3}}, {{0x534,2},{0x57,1}}, + {{0x189b2,8},{0xcc3,2}}, {{0xb00d,8},{0x1a9a,4}}, {{0x47c7,9},{0xe6b,4}}, {{0x159f4,7},{0xf91,3}}, + {{0x1537,6},{0x5ddd,6}}, {{0x3559,4},{0x6008,3}}, {{0x1397,5},{0x7f83,6}}, {{0x4765,3},{0x14d4f,6}}, + {{0x1b5a8,6},{0x5724,3}}, {{0xe99,1},{0xcd3,1}}, {{0x1507,7},{0x152e,3}}, {{0xbba1,4},{0x128c,4}}, + {{0xbedd,7},{0xaa38,5}}, {{0x11ac3,8},{0xebb,3}}, {{0x2df3b,4},{0x2a8,2}}, {{0xcb8,1},{0x4574,3}}, + {{0x19b9,1},{0x25d3e,5}}, {{0x1ec4e,3},{0x1ad8e,4}}, {{0xb,1},{0x10d3,3}}, {{0x2280,2},{0xf35,2}}, + {{0xcc8,2},{0x1839,3}}, {{0xfa6,3},{0x4f63,7}}, {{0x4,2},{0x155e,3}}, {{0x8d21,7},{0xf91,3}}, + {{0x478f,3},{0x101e,4}}, {{0x2e79e,4},{0xc273,2}}, {{0x1e08,5},{0x143c,4}}, {{0x2289b,7},{0xe0a,1}}, + {{0x1977,3},{0x2d3c2,3}}, {{0xe74,2},{0xfa5e,4}}, {{0x2de57,3},{0x468,2}}, {{0xf0c,1},{0x13053,4}}, + {{0x331f,3},{0xcc3,2}}, {{0xd0ef,7},{0xfdd,4}}, {{0x7392,5},{0x17cf1,5}}, {{0x19f7,5},{0xb9d1,3}}, + {{0xf77,3},{0x1796b,4}}, {{0x4c16,3},{0x2bae,2}}, {{0x1827,5},{0x3126,3}}, {{0x29314,5},{0xcd3,2}}, + {{0x19e1,3},{0x6,1}}, {{0x18fc2,3},{0x8,1}}, {{0x473d,3},{0x21a0,8}}, {{0xa3f5,7},{0xddb9,4}}, + {{0x12e5,3},{0x17c0,2}}, {{0xf15,1},{0x17661,2}}, {{0xd383,6},{0x1b4f,5}}, {{0x7414,3},{0xf18,2}}, + {{0x329d,6},{0x431c,5}}, {{0x4f77,8},{0xe11,1}}, {{0x17f00,4},{0x17f04,4}}, {{0x2858,5},{0x5538,2}}, + {{0x19b7,3},{0xf79,3}}, {{0xc88e,6},{0x153a,3}}, {{0x8c93,4},{0xcc9,2}}, {{0x17acb,2},{0x1e2f0,2}}, + {{0x29cf,3},{0xb02a,3}}, {{0xe33,1},{0x1a58,3}}, {{0x115e,7},{0x161e,9}}, {{0xf205,5},{0x141f,4}}, + {{0x1709c,5},{0xe7f,2}}, {{0x2de5d,3},{0xf8,2}}, {{0xee4,15},{0xef3,4}}, {{0x1967,3},{0x24ade,5}}, + {{0x61cc,5},{0x61de,8}}, {{0x74f1,4},{0x18772,2}}, {{0x3bbf,8},{0xfdd,4}}, {{0xdf6e,3},{0x1b41,4}}, + {{0xe6f,3},{0x3cdf,6}}, {{0x11729,3},{0xe0a,1}}, {{0xef87,7},{0x13c3,4}}, {{0x17dfa,5},{0x1303,3}}, + {{0xe99,1},{0x1e3d,3}}, {{0x1677,3},{0xc6dc,5}}, {{0x10361,6},{0xcd1f,4}}, {{0x12c3,4},{0xc297,3}}, + {{0x27ef,4},{0x7a0f,4}}, {{0x1967,3},{0x4a1d,3}}, {{0x29ed,6},{0xe36f,4}}, {{0xf1d,1},{0xcd3,1}}, + {{0xebe,4},{0x3851,10}}, {{0x2b432,4},{0x1005,2}}, {{0x22e5,4},{0x5538,2}}, {{0x1303,3},{0x101f,2}}, + {{0xadf1,8},{0xe95,2}}, {{0x2b19,6},{0x146d,9}}, {{0x17d3e,4},{0x4f24,4}}, {{0x15f7,4},{0x2fe3,10}}, + {{0xed9,2},{0xe13,3}}, {{0xbccf,2},{0x28242,3}}, {{0x3b5d,9},{0x12be,5}}, {{0x13a7,5},{0x1150,2}}, + {{0x9a8,1},{0xe71,1}}, {{0x1b0f,3},{0x7948,5}}, {{0x5903,6},{0xe29e,5}}, {{0x12e5,3},{0x142a,3}}, + {{0x5d54,5},{0x103e,5}}, {{0x123c6,5},{0x4b12,4}}, {{0xc02d,7},{0xc39f,4}}, {{0x31955,2},{0xc273,2}}, + {{0xe32,1},{0xc035,3}}, {{0xe85,3},{0x3cc0,9}}, {{0x5342,3},{0x2,1}}, {{0x25023,5},{0x1e84,3}}, + {{0x19b7,3},{0xb9d1,3}}, {{0x2aff4,6},{0xe49,6}}, {{0x442d,1},{0xa385,4}}, {{0xebe,4},{0x156a,3}}, + {{0x2f71,4},{0x17649,4}}, {{0x442b,3},{0x123e,3}}, {{0xf24,2},{0xe5e,2}}, {{0x162c,3},{0xa,2}}, + {{0x7795,6},{0xe0a,1}}, {{0x168f,2},{0x4188,3}}, {{0x10a3,3},{0x1859,3}}, {{0x567,2},{0xd,1}}, + {{0xe33,1},{0x2252,3}}, {{0x1687,8},{0x794f,4}}, {{0x28c1,4},{0x2bb4,2}}, {{0x2de63,3},{0x206,2}}, + {{0xbb35,9},{0x66c2,3}}, {{0x453e,3},{0xe11,1}}, {{0x4853,3},{0x7921,3}}, {{0x6e23,7},{0x4c8c,6}}, + {{0x70ad,3},{0xe2b,2}}, {{0x2b46,4},{0x1e38f,5}}, {{0xe83,5},{0x3c5e,9}}, {{0x6d07,4},{0x1cd3,2}}, + {{0x6aa,2},{0xd,1}}, {{0x111a,3},{0xcc1,1}}, {{0x3002d,4},{0xe,1}}, {{0xe89,2},{0x34ab,3}}, + {{0x10f4a,3},{0xcd3,2}}, {{0x1677,3},{0x26d6c,3}}, {{0x18f7,7},{0x1b4f,5}}, {{0x4631,5},{0x333c,9}}, + {{0x2de75,3},{0x140,2}}, {{0x1702e,4},{0x206bd,4}}, {{0x73ed,4},{0xe0a,1}}, {{0xcd32,8},{0xf23,3}}, + {{0x127d,2},{0xe78,1}}, {{0xf65,4},{0x138b,12}}, {{0x1a07,3},{0xe09,1}}, {{0xe0d,2},{0xf20,2}}, + {{0x23cb3,6},{0xcc9,2}}, {{0x11725,7},{0x6c7f,4}}, {{0xb74,1},{0xd18,6}}, {{0x1587,4},{0x1cc02,4}}, + {{0x10dc7,7},{0x1288,4}}, {{0x473b,5},{0x7a88,3}}, {{0x75b6,2},{0xe80,2}}, {{0x69,1},{0x44,2}}, + {{0x4aef,3},{0xf7a,2}}, {{0xf4f,2},{0x29f3,3}}, {{0x7b51,4},{0x7b55,8}}, {{0x7414,3},{0xf7a,2}}, + {{0x4f43,9},{0xec3,3}}, {{0x13960,5},{0xef3,4}}, {{0x1019,4},{0x4a44,5}}, {{0x7086,6},{0x8a27,6}}, + {{0xff70,4},{0x1b9d,4}}, {{0x14d7,6},{0x86a3,6}}, {{0x12a2e,6},{0x12a34,4}}, {{0xd3af,8},{0xf91,3}}, + {{0x11d0a,5},{0x5e50,2}}, {{0xf89,3},{0x178a,3}}, {{0xf113,8},{0x1be9,3}}, {{0xe97,3},{0x74f6,2}}, + {{0xb37b,1},{0x1f875,1}}, {{0x1537,6},{0x2833,7}}, {{0x712f,4},{0x1153,3}}, {{0x17600,5},{0x17605,5}}, + {{0x294b1,6},{0xcd3,1}}, {{0x111a,3},{0x2966d,3}}, {{0x3c75,9},{0x10e2,5}}, {{0x1db12,6},{0xe11,1}}, + {{0x12f6,4},{0x16ce,5}}, {{0x26b4,12},{0x1be9,3}}, {{0x2632b,6},{0xf70,2}}, {{0x2e26b,3},{0xaf4,3}}, + {{0xbdf2,3},{0xef2,4}}, {{0xfe3,7},{0x169b,8}}, {{0x34a5,3},{0x2091,4}}, {{0xbfb5,5},{0xeabd,5}}, + {{0x93a5,5},{0x92ea,4}}, {{0xfbf,5},{0x1c21f,4}}, {{0xb7b8,5},{0xe11,1}}, {{0xab45,8},{0x128c,4}}, + {{0xcbd,1},{0xf24,2}}, {{0x11788,4},{0x1dee,2}}, {{0x4853,3},{0x2d98c,2}}, {{0x1155,2},{0xcc3d,3}}, + {{0xe31,2},{0x44ad,3}}, {{0x29622,2},{0x2b81,2}}, {{0x17f7,6},{0xfd4d,4}}, {{0x2eb3a,4},{0x1327,1}}, + {{0xb74,2},{0xcd6,1}}, {{0x457b,5},{0x3080,4}}, {{0x2d97d,4},{0xe0f,1}}, {{0xc1ad,7},{0x4132,5}}, + {{0x4ef5,4},{0xe2b,2}}, {{0x1cd3,2},{0xed9,2}}, {{0x11187,2},{0xf15,1}}, {{0x1019,4},{0x128c,4}}, + {{0x442d,1},{0xe09,1}}, {{0x17df4,2},{0x141a,2}}, {{0x11e4b,3},{0x4051,3}}, {{0x753f,5},{0x1ac7,3}}, + {{0x1200e,3},{0x20160,4}}, {{0x12e16,7},{0xeea,3}}, {{0x48d6,2},{0xe19,1}}, {{0x113e1,5},{0xcc3,3}}, + {{0x2de75,3},{0x68,2}}, {{0x67b0,10},{0xec6,3}}, {{0xe5b,3},{0x12b74,4}}, {{0x354b,5},{0xe5e,2}}, + {{0x11b3,6},{0xc3fb,5}}, {{0x208d9,6},{0xf1a,2}}, {{0x12e5,3},{0x2c59,4}}, {{0x314d,8},{0x3155,6}}, + {{0xf15,1},{0xb958,9}}, {{0x11963,6},{0xe11,1}}, {{0xe2b,2},{0x1159,4}}, {{0xf11,1},{0xeb5,2}}, + {{0x75b4,4},{0x1050,3}}, {{0x4519,4},{0x1230c,2}}, {{0x4853,3},{0xeb4,2}}, {{0x1d36,11},{0xeed,4}}, + {{0x171d2,6},{0xe11,1}}, {{0x46af,3},{0x1bef,2}}, {{0x205a9,1},{0x2b4e9,2}}, {{0xed9,2},{0xcc3,2}}, + {{0x7416,1},{0x1278,4}}, {{0x3487,6},{0x9393,6}}, {{0x5d7b,8},{0xe0b,4}}, {{0x16c82,7},{0x3075,3}}, + {{0x442d,1},{0xe33,1}}, {{0x7b,1},{0x5bc,2}}, {{0x1c28,6},{0x4187,3}}, {{0x1467,10},{0xebb,3}}, + {{0x46af,3},{0xd3eb,6}}, {{0x1fffc,6},{0xed6,2}}, {{0x2a47,3},{0xf03,2}}, {{0x1f87f,6},{0x1be9,3}}, + {{0x4928,3},{0xeab,2}}, {{0x73b9,5},{0x1ece1,4}}, {{0x6cde,4},{0x28f5,5}}, {{0x29cf,3},{0x248f6,2}}, + {{0x7414,3},{0x156ed,2}}, {{0x12e5,3},{0x29bfb,2}}, {{0xe0a,1},{0x28b7d,4}}, {{0x11d99,5},{0xbd26,3}}, + {{0x6cc4,4},{0x41bd,6}}, {{0x12e5,3},{0x2aa83,4}}, {{0x11dfe,2},{0x9a9,2}}, {{0x4e43,4},{0xe11,1}}, + {{0xcbf,2},{0xa,2}}, {{0x4599,3},{0x53da,4}}, {{0x16ff2,6},{0x10d2,4}}, {{0xf0c,1},{0x1373,2}}, + {{0xf0c,1},{0x10b7,2}}, {{0x7414,3},{0x29dd1,2}}, {{0x451b,3},{0x10b7,2}}, {{0x129d4,5},{0xe2b,2}}, + {{0x1ccd,5},{0x14ff,8}}, {{0xe83,3},{0x1d75,3}}, {{0x29cf,3},{0x2f206,4}}, {{0xb74,1},{0x78f9,1}}, + {{0x30f75,4},{0x2b0b0,2}}, {{0xccd,1},{0x4fa8,3}}, {{0x1ce97,6},{0x8,1}}, {{0x1967,3},{0x1e2f0,2}}, + {{0x62df,4},{0xe69,5}}, {{0xe16,1},{0x33d3,2}}, {{0x948b,4},{0xe95,2}}, {{0xe71,1},{0x1a9a,4}}, + {{0x1007,14},{0xfdf,4}}, {{0x116d8,5},{0xcc7,1}}, {{0x1927,5},{0x1692,2}}, {{0x7995,5},{0x190cc,4}}, + {{0x168f,2},{0xe92,3}}, {{0xfabe,5},{0x1943f,3}}, {{0x1977,3},{0xed5,3}}, {{0x42f7,9},{0x1722,5}}, + {{0x4853,3},{0x2f2e,3}}, {{0x1969,1},{0x219f4,4}}, {{0x442b,3},{0xccc,2}}, {{0x1ee68,6},{0xf86,2}}, + {{0x1677,3},{0xf70,2}}, {{0x166a6,8},{0xcd3,2}}, {{0x10efb,5},{0x1f2c,6}}, {{0x1019,4},{0x6ca7,3}}, + {{0x2252,3},{0xe0b,4}}, {{0x181bc,6},{0xe95,2}}, {{0x1e2f0,2},{0x1db31,2}}, {{0x1044,4},{0xf1d,2}}, + {{0xcc1,1},{0x149c,3}}, {{0x15ca,4},{0x2b79,4}}, {{0xb398,3},{0xeab,2}}, {{0x1c91,4},{0x44a5,4}}, + {{0x10eda,5},{0x11690,4}}, {{0xf0c,1},{0x6d4e,5}}, {{0x255b,8},{0x36ce,5}}, {{0xb601,7},{0xb381,4}}, + {{0x1be,2},{0x4ce,2}}, {{0x1af81,5},{0xed9,2}}, {{0x151b6,6},{0xfb8,3}}, {{0x3a53,5},{0xef55,6}}, + {{0x3,1},{0xe7f,2}}, {{0xec3,3},{0x2,1}}, {{0x1debd,2},{0xf0c,1}}, {{0xe4a8,6},{0x1b80,3}}, + {{0x1487,4},{0x12f3c,6}}, {{0x256a3,5},{0xb,1}}, {{0x4,1},{0x26d1e,4}}, {{0x45,1},{0x164,2}}, + {{0x2141,8},{0x1177,7}}, {{0x12d4,3},{0x2d3a5,2}}, {{0xccd,1},{0xcc8,1}}, {{0xe71,1},{0x77b6,6}}, + {{0xcce,2},{0x73d6,2}}, {{0xfdf,3},{0x3317,4}}, {{0x772d,5},{0x18967,5}}, {{0x1477,9},{0x2f26,5}}, + {{0x14afe,8},{0xe95,2}}, {{0xe97,3},{0x4c16,3}}, {{0x24e5,3},{0x5538,2}}, {{0xe5b,3},{0x4574,3}}, + {{0x1967,3},{0x168b,4}}, {{0x9369,5},{0x63ea,4}}, {{0x6581,8},{0x12be,5}}, {{0xeb5,2},{0xe22,3}}, + {{0x1b413,6},{0xa,2}}, {{0x5eda,5},{0xfe6,2}}, {{0x2c577,4},{0x1f5f9,2}}, {{0x6cde,7},{0x23e0,4}}, + {{0x29de,4},{0x3976,3}}, {{0x14e5d,5},{0xec6,3}}, {{0x2240,4},{0x8532,3}}, {{0x46bd,3},{0xcb7,2}}, + {{0x8666,2},{0xed5,3}}, {{0x4589,8},{0xe69,6}}, {{0x28d0,4},{0x2091,4}}, {{0xcd3,3},{0x1077,6}}, + {{0xb3a9,6},{0xb3af,6}}, {{0x9a6,1},{0x248c,12}}, {{0x17f26,5},{0xcd58,5}}, {{0xe31,2},{0xcd3,2}}, + {{0xb8df,3},{0x1c2a,4}}, {{0x7b,1},{0x468,2}}, {{0x2885,8},{0x288d,7}}, {{0x1447,7},{0x2e28,7}}, + {{0x10eb9,8},{0xe11,1}}, {{0xcce,2},{0x1cd3,2}}, {{0xe32,1},{0x1378f,3}}, {{0x27e0,3},{0x4dd1,4}}, + {{0x1ee9e,5},{0x1eea3,4}}, {{0xe65,2},{0xcc9,2}}, {{0xf89,5},{0x1160,9}}, {{0x1977,4},{0x1ab57,4}}, + {{0x2de75,3},{0x545,2}}, {{0x7e51,11},{0xe11,1}}, {{0x18ac0,6},{0x6176,4}}, {{0xfad,8},{0xfb5,10}}, + {{0x9b49,6},{0x943a,5}}, {{0x1747,4},{0xdbff,6}}, {{0x9a8,1},{0xfaac,7}}, {{0x5235,11},{0xe95,2}}, + {{0x1e343,5},{0x1b7f,3}}, {{0x465b,5},{0x4,1}}, {{0x1467,4},{0x12f0a,6}}, {{0xfb0,2},{0xe7f,2}}, + {{0x4d55,11},{0xf7a,2}}, {{0x1f984,5},{0x7671,4}}, {{0xe0d,2},{0x13146,4}}, {{0x9,1},{0x1153,3}}, + {{0xeab,2},{0xe6b,2}}, {{0x1bbf,4},{0xf59,7}}, {{0x1e154,6},{0x7a36,3}}, {{0x1303,3},{0xe69,5}}, + {{0x4f1c,5},{0x1595,2}}, {{0xb379,3},{0xe0a,1}}, {{0xedd,1},{0x29436,2}}, {{0x15ed6,5},{0xe11,1}}, + {{0x7911,3},{0xc342,3}}, {{0xb,1},{0x73d6,2}}, {{0x45eb,4},{0x28737,3}}, {{0x2a47,3},{0x10e3,3}}, + {{0x11515,4},{0x17fde,6}}, {{0x478f,3},{0x5850,7}}, {{0x5,1},{0x3,1}}, {{0x7099,3},{0x1a5e,3}}, + {{0xed9,2},{0x2362d,3}}, {{0x2add,6},{0x269c,9}}, {{0xef7,3},{0x6e44,6}}, {{0x2948,3},{0x1025,1}}, + {{0x1062,5},{0xeb7,7}}, {{0xb745,7},{0x8b30,4}}, {{0x46bd,3},{0x1fc7,3}}, {{0xec6,3},{0xf91,3}}, + {{0x41bc,4},{0xe11,1}}, {{0x1e8a4,4},{0x24c1f,4}}, {{0xeab,2},{0x1ebf,3}}, {{0x4,1},{0x5342,3}}, + {{0x1de18,6},{0x43fb,3}}, {{0x1112c,6},{0xcc3,2}}, {{0x1702e,4},{0xf24,2}}, {{0x330d,7},{0x1663,4}}, + {{0x46bf,1},{0x2,1}}, {{0xbf31,6},{0xbf37,6}}, {{0x4853,3},{0xf5dd,6}}, {{0x11b47,4},{0x78cd,3}}, + {{0xf15,1},{0x73d6,2}}, {{0x22efb,5},{0xf61,2}}, {{0x17f7,8},{0xef3,4}}, {{0xe78,1},{0xe09,1}}, + {{0x11b96,4},{0x152e,3}}, {{0x9c69,7},{0x5e7a,5}}, {{0x1367,3},{0x2dd3,7}}, {{0x3de1,5},{0xc8f7,4}}, + {{0x791d,7},{0x1c2a,4}}, {{0x128bc,8},{0xcc9,2}}, {{0x4853,3},{0x4fa8,3}}, {{0x17600,5},{0x2dd7,4}}, + {{0x2b0a8,4},{0x9b5,2}}, {{0xf0d,2},{0xec6,3}}, {{0x27d7,2},{0x8,1}}, {{0x38af,7},{0x167f,7}}, + {{0xf15,1},{0x18774,2}}, {{0x3521,4},{0xb604,4}}, {{0x4,2},{0x1a63,3}}, {{0xf16,2},{0x1773,4}}, + {{0xfcb,2},{0xe6b,3}}, {{0x5881,8},{0x11d0,5}}, {{0x12f6,4},{0xe65,2}}, {{0x18b74,5},{0x16471,5}}, + {{0x2b46,4},{0x7a36,3}}, {{0x19b9,1},{0x190e6,3}}, {{0x6dc8,7},{0x23df,5}}, {{0x12e5,5},{0x7844,4}}, + {{0x1a47,9},{0xec6,3}}, {{0xe32,1},{0x16935,5}}, {{0x70ad,4},{0xcd3,2}}, {{0x2b46,4},{0x1cb1,5}}, + {{0x10d6,5},{0x10ad3,5}}, {{0x24e3,5},{0x63cf,5}}, {{0x21649,7},{0xe11,1}}, {{0x1290,4},{0x97ed,6}}, + {{0xf1d,2},{0x1059,3}}, {{0x5e58,6},{0x14e24,4}}, {{0xcce,2},{0xe6b,2}}, {{0x40d5,6},{0x1722,5}}, + {{0xcc1,1},{0x155ea,4}}, {{0x217e9,6},{0x145b,2}}, {{0xccb,2},{0xe31,2}}, {{0xe33,1},{0xf18,2}}, + {{0x17182,6},{0xed9,2}}, {{0xb8c5,8},{0x1b41,4}}, {{0xebe,4},{0x1679,3}}, {{0xb3a9,5},{0x1b9d,4}}, + {{0x19f7,7},{0x146d,9}}, {{0xeab,2},{0xc6dc,5}}, {{0xf65,4},{0xe0b,2}}, {{0x14a7,4},{0x31f8,3}}, + {{0x159c,4},{0x13e3,4}}, {{0xcb8,1},{0xcbd,1}}, {{0x1780,3},{0x35fb,5}}, {{0x14d7,6},{0x516b,7}}, + {{0x11cff,7},{0x1592,4}}, {{0xe22,2},{0x182e,3}}, {{0x6fa9,11},{0x5,1}}, {{0x15af8,8},{0xed9,2}}, + {{0xb54d,9},{0xf86,3}}, {{0x15832,8},{0xcc9,2}}, {{0x47ab,5},{0xefa,6}}, {{0x1ff7,3},{0x1bf18,5}}, + {{0x187ca,4},{0xfdd,4}}, {{0x2c15,3},{0x15fe,4}}, {{0x2948,3},{0x2ece6,2}}, {{0x1c76,3},{0xe69,5}}, + {{0x6ba8,5},{0xec6,3}}, {{0xbe7d,9},{0xec6,3}}, {{0x1e30f,3},{0x4f55,4}}, {{0x11d9,3},{0x3286,3}}, + {{0x780a,4},{0x870d,4}}, {{0x16d7,6},{0xed7d,5}}, {{0x11142,5},{0x17a8f,5}}, {{0x19b7,3},{0x43fd,4}}, + {{0x260d3,6},{0x260d9,2}}, {{0x229a,6},{0x286d,3}}, {{0x4ee8,4},{0x12a3,3}}, {{0xdd0d,8},{0x1d32,3}}, + {{0xf0a,3},{0x26921,2}}, {{0x1709e,6},{0xf35,2}}, {{0x478f,3},{0xe44a,6}}, {{0x48a,2},{0x7b,1}}, + {{0x29c0,3},{0x1693,3}}, {{0x6c42,5},{0xe5e,2}}, {{0x29cf,3},{0x2ced6,3}}, {{0x1be,2},{0x4f0,2}}, + {{0x12f6,4},{0x11ca,2}}, {{0x12e5,3},{0x1067f,3}}, {{0x1f38,1},{0x1a578,4}}, {{0x237d,2},{0xed6,2}}, + {{0x70ad,3},{0x169d,3}}, {{0x1f93c,5},{0xe92,3}}, {{0xf0c,1},{0x15fc,2}}, {{0x5f90,6},{0x155b,3}}, + {{0x2549b,5},{0xe13,3}}, {{0xc7ff,5},{0xc80f,6}}, {{0x1dea,6},{0xec6,3}}, {{0x12d4,4},{0xcc3,2}}, + {{0x11767,5},{0xeb5,2}}, {{0x9a8,1},{0xa,2}}, {{0x1c529,6},{0x1059,3}}, {{0x1f4d7,7},{0xe95,2}}, + {{0x2a47,3},{0x94a4,5}}, {{0x4765,3},{0x4457,2}}, {{0x760f,5},{0x1d7e,3}}, {{0xcce,2},{0xfb0,2}}, + {{0x2a2a9,4},{0xe11,1}}, {{0x760f,5},{0x15bf7,4}}, {{0x1025,1},{0xf1a,2}}, {{0x1153,2},{0x6452,4}}, + {{0xe19,1},{0x48d0,2}}, {{0x9f83,4},{0x1d32,3}}, {{0x6cc4,4},{0x1f27,3}}, {{0x2fb1e,4},{0x2ba5,1}}, + {{0xc,1},{0x2e273,1}}, {{0x1fc83,4},{0x50cd,3}}, {{0x34a3,9},{0xe69,5}}, {{0x12e5,4},{0xf4f,1}}, + {{0xa485,9},{0xed6,2}}, {{0x12f6,4},{0x1fc2b,5}}, {{0x14a7,4},{0x82d5,5}}, {{0x780a,5},{0x2e2c,3}}, + {{0x479,2},{0x8d,1}}, {{0x12e5,3},{0x1c35a,4}}, {{0x8829,8},{0xe77,3}}, {{0x1937,4},{0x3b73,3}}, + {{0x595e,8},{0xf91,3}}, {{0x9519,6},{0x50de,5}}, {{0x2c223,4},{0xe0d,2}}, {{0x17664,4},{0xe16,1}}, + {{0xe80,2},{0xf1d,1}}, {{0x29cf,3},{0x5724,3}}, {{0x9a8,1},{0xd3b4,6}}, {{0x1179e,5},{0x1bf0,2}}, + {{0xbbaf,5},{0xf35,2}}, {{0xeff7,7},{0xe95,2}}, {{0xe33,1},{0x46bf,1}}, {{0x3583,5},{0xf07f,5}}, + {{0xe11,2},{0x1de7,3}}, {{0x591d,5},{0x1235,6}}, {{0x4765,3},{0x12aa,4}}, {{0x6,2},{0xcba,3}}, + {{0xebe,3},{0xf02,2}}, {{0x3d3b,3},{0x1c669,4}}, {{0xe78,1},{0x1303,3}}, {{0x46bf,1},{0x149f,3}}, + {{0x2,2},{0x4da9,7}}, {{0x6b24,7},{0xc6bc,4}}, {{0x10bb7,4},{0xf82,7}}, {{0x11d0a,5},{0x11a6,2}}, + {{0x9441,5},{0x1c3d,7}}, {{0x65f6,5},{0x170f,8}}, {{0x11234,5},{0x142b1,5}}, {{0xccd,1},{0x1692,2}}, + {{0x1a66,1},{0x2eed,5}}, {{0x1a291,5},{0x12bf,4}}, {{0xe11,2},{0x2e32,3}}, {{0xe563,5},{0x1392,5}}, + {{0x1ceb,7},{0x7,2}}, {{0xe6b,2},{0xeab,2}}, {{0x1f38,1},{0x1f38,1}}, {{0x186b2,4},{0xc992,4}}, + {{0x2f62d,2},{0x2f62d,2}}, {{0x15af,3},{0xe6a,4}}, {{0x1ed9b,4},{0xe11,1}}, {{0x2fffb,4},{0x7b,1}}, + {{0x7d0d,5},{0x194b3,4}}, {{0xc1d1,4},{0x7097,5}}, {{0xf9b,5},{0x1131,3}}, {{0x171b4,7},{0x11cb,3}}, + {{0xa659,5},{0x12a9,3}}, {{0x31d9,8},{0x1ce7,4}}, {{0x1df9,8},{0x1024,7}}, {{0x15f7,4},{0x35cd,6}}, + {{0x1967,3},{0x13c0,4}}, {{0x450b,4},{0x2ee9,3}}, {{0x11373,4},{0x6fff,2}}, {{0xe3d,4},{0x2b511,2}}, + {{0xf8e,3},{0xf91,3}}, {{0x16f7,9},{0x240b,6}}, {{0x10340,6},{0x4b96,5}}, {{0xe0f,1},{0x1e57e,2}}, + {{0x18ce8,3},{0x42f9,5}}, {{0x314d,6},{0x89f7,6}}, {{0x70ad,3},{0x1024,2}}, {{0x4781,3},{0x11b5,2}}, + {{0xf69,3},{0x278e,7}}, {{0x14d7,6},{0x86af,6}}, {{0xf11,1},{0xe32,1}}, {{0xcb8,1},{0x2bad,4}}, + {{0xed1,3},{0x2175,4}}, {{0x1a66,1},{0xed9,2}}, {{0x1b8c0,5},{0x2477,3}}, {{0x101e,3},{0xec3,3}}, + {{0xe21,1},{0x1766a,2}}, {{0x1a66,1},{0xe09,1}}, {{0x16a7,3},{0x1054a,5}}, {{0x712f,4},{0x1bef,2}}, + {{0x61cc,5},{0x15841,5}}, {{0x10a99,7},{0xe0d,2}}, {{0x5d7b,8},{0x10f2,5}}, {{0x45eb,4},{0xed6,2}}, + {{0x1f5dc,6},{0x18b4,3}}, {{0xe22,2},{0xe7f,2}}, {{0x1f80a,6},{0x1244,3}}, {{0x174b,3},{0xe2b,4}}, + {{0xd13c,5},{0x2091,4}}, {{0xf80,2},{0xf35,2}}, {{0x1ff00,5},{0xff7b,4}}, {{0x9a4,3},{0x4618,3}}, + {{0x10e1f,4},{0x22a2,7}}, {{0x450b,4},{0x12a3,3}}, {{0xe21,1},{0x2ed13,2}}, {{0x10d9b,7},{0xb381,4}}, + {{0xf0c,1},{0x8666,2}}, {{0x29893,4},{0x29897,3}}, {{0x19f7,4},{0x1569,4}}, {{0xe1f,3},{0x185d,2}}, + {{0xbd9b,3},{0x30ad,6}}, {{0xb901,5},{0xcce,2}}, {{0xf1a,2},{0x1153,2}}, {{0x13e42,6},{0x1ac7,3}}, + {{0xa659,5},{0xe149,5}}, {{0xe78,1},{0x4618,3}}, {{0x747c,6},{0x4397,7}}, {{0x1967,3},{0x8,3}}, + {{0x5faa,10},{0xec6,3}}, {{0x26b4,7},{0x566f,4}}, {{0xf0c,1},{0x775c,4}}, {{0x116ac,5},{0x3bed,3}}, + {{0x15ca,3},{0xa317,6}}, {{0x27e0,3},{0xfa9,4}}, {{0x112b8,5},{0x1155,2}}, {{0xe6f,3},{0x1e3d,3}}, + {{0x48a,2},{0x9f,1}}, {{0x19b9,1},{0x74fc,2}}, {{0x1007,5},{0x2248,3}}, {{0xfe3,4},{0x149f,3}}, + {{0x19b7,3},{0x11186,2}}, {{0x2fe1,9},{0x1392,5}}, {{0xe21,1},{0xabc5,3}}, {{0x12d4,3},{0xcb7,2}}, + {{0x25d33,5},{0xeb4,2}}, {{0xccb,2},{0x2c21,4}}, {{0x201d0,5},{0xe7f,2}}, {{0x75d0,4},{0xe69,5}}, + {{0x171fa,7},{0xe67,2}}, {{0x319c9,2},{0xc287,2}}, {{0x1567,3},{0x6140,3}}, {{0xe65,2},{0x6411,4}}, + {{0x20be9,7},{0xe11,1}}, {{0x143f6,7},{0xfcb,2}}, {{0x12e5,3},{0x2cbe7,2}}, {{0xf15,1},{0x29ad6,4}}, + {{0xc8e6,6},{0xc8f7,5}}, {{0x110c9,5},{0x6a8e,4}}, {{0x2,2},{0xcc1,1}}, {{0x2,2},{0x60f3,7}}, + {{0x110b3,5},{0xe808,4}}, {{0x1807,5},{0x1627d,5}}, {{0xc015,4},{0x9a4,3}}, {{0x137b,3},{0x137e,9}}, + {{0x311b5,4},{0xe11,1}}, {{0x1b773,6},{0x120d,3}}, {{0xaeb1,5},{0xed9,2}}, {{0x2cf63,4},{0x2cf67,2}}, + {{0xf8e,3},{0x8,1}}, {{0x242a5,3},{0xe2b,2}}, {{0x7604,7},{0xeed,4}}, {{0x9525,5},{0xed5,4}}, + {{0x1be,2},{0x501,2}}, {{0x5269,6},{0x527c,7}}, {{0x1d69b,5},{0xec9,4}}, {{0x4853,3},{0xec0,3}}, + {{0x73ed,4},{0xf35,2}}, {{0xf03,3},{0xf91,3}}, {{0x5e27,3},{0xe0a,1}}, {{0x1043,7},{0x104a,4}}, + {{0x1637,9},{0x1663,3}}, {{0x17146,4},{0x59b4,3}}, {{0x1917,4},{0x9,1}}, {{0x1e26,6},{0xe67,2}}, + {{0xe83,4},{0xa3b1,5}}, {{0x1c73,5},{0x11973,3}}, {{0x748b,3},{0x5c07,8}}, {{0x14f86,6},{0x2269,4}}, + {{0xba39,4},{0xf61,2}}, {{0x1057,1},{0x2e69f,4}}, {{0x1bc9e,6},{0x111c,2}}, {{0x4853,3},{0x1fc7,3}}, + {{0x10c5,4},{0x104a5,6}}, {{0x16a7,3},{0x9a4,3}}, {{0x39bb,3},{0x8230,5}}, {{0xf65,4},{0xb,1}}, + {{0x1749,3},{0x175c,7}}, {{0x10cb,2},{0x2454,3}}, {{0x2de5d,3},{0x468,2}}, {{0x2fffb,4},{0xe,1}}, + {{0x2ebb,7},{0x8128,5}}, {{0x1118a,2},{0x48d3,2}}, {{0x10007,6},{0x23df,5}}, {{0x4765,3},{0x4fa8,3}}, + {{0x5c50,7},{0x14f9,3}}, {{0x2de4b,3},{0x284,2}}, {{0xf0a,3},{0x17473,7}}, {{0xe19,1},{0x24c36,5}}, + {{0xe1f,3},{0xddb9,4}}, {{0x2d773,4},{0x1e2ef,2}}, {{0x20f6,5},{0x5b9f,8}}, {{0x2de63,4},{0x69,1}}, + {{0x7235,6},{0x9a4,3}}, {{0x450b,4},{0xe1c,3}}, {{0x566c,6},{0x5672,7}}, {{0x2a7ec,2},{0xedd,1}}, + {{0x255db,6},{0xed6,2}}, {{0x2a65,7},{0x61b9,6}}, {{0xe0f,1},{0x74f6,2}}, {{0xcbf,2},{0x1f38,1}}, + {{0xe33,1},{0x1dcb7,2}}, {{0x2ba5,1},{0xf11,1}}, {{0xb175,7},{0x13e3,4}}, {{0x12a1,11},{0x12ac,6}}, + {{0x1a07,3},{0x254b1,2}}, {{0x7219,5},{0x15fc,2}}, {{0x123c6,5},{0x50de,5}}, {{0x2de45,3},{0x5bc,2}}, + {{0xf89,3},{0x9b99,3}}, {{0xbd69,5},{0x4ce6,7}}, {{0xef7,3},{0x1ced9,6}}, {{0xe08,1},{0x1cb1,5}}, + {{0xe71,1},{0x6,2}}, {{0x7414,3},{0x10dc,2}}, {{0x148a6,5},{0xeee,3}}, {{0x18fc2,3},{0x2,1}}, + {{0x29cf,3},{0x1c0f,3}}, {{0xe83,5},{0x55ab,5}}, {{0x565f,6},{0x5665,7}}, {{0x4767,1},{0x1057,1}}, + {{0xc437,6},{0x3ebb,4}}, {{0x1142e,5},{0xe69,6}}, {{0xcc5,2},{0x11d9,3}}, {{0x385f,4},{0xc6bc,4}}, + {{0x1c91,4},{0xb3c8,3}}, {{0x70ad,3},{0xe99,1}}, {{0x1024,2},{0x8,1}}, {{0x11186,2},{0x2aaa8,2}}, + {{0x1286c,5},{0x12871,5}}, {{0x30b3,7},{0x30ba,7}}, {{0xfe3,4},{0xe22,2}}, {{0x2de51,3},{0x468,2}}, + {{0x12d4,3},{0x1a66,1}}, {{0x677,2},{0xd,1}}, {{0x578,2},{0x21,1}}, {{0xccd,1},{0x104a5,6}}, + {{0x5cd,2},{0x69,1}}, {{0x9a9,4},{0x1040,3}}, {{0xf31,2},{0x17cd,4}}, {{0x5f44,3},{0x1e2a,4}}, + {{0x3cc0,4},{0xcc9,2}}, {{0x1deba,5},{0x1debf,4}}, {{0x3082f,4},{0xddc,2}}, {{0x1839,3},{0x183c,4}}, + {{0x70ad,3},{0x1db45,3}}, {{0x5,1},{0x2c6a,5}}, {{0xf77,3},{0x58ff,4}}, {{0x208a9,6},{0xe7f,2}}, + {{0x9,1},{0x121c,3}}, {{0x2e7ec,6},{0x2b094,2}}, {{0x824d,4},{0x19dd6,5}}, {{0xe83,5},{0x63e6,8}}, + {{0x117ca,4},{0xed9,2}}, {{0x2adf,4},{0xe22,2}}, {{0x16e1c,5},{0xec6,3}}, {{0xe71,2},{0x1252,3}}, + {{0xe08,1},{0x28d2,3}}, {{0x959d,6},{0x1702,4}}, {{0x2411,12},{0x1be9,3}}, {{0x4,1},{0x1d06,3}}, + {{0xd83d,6},{0x27dc,4}}, {{0x44b7,7},{0x7bd9,4}}, {{0x17a3a,5},{0x12be,5}}, {{0x2bb4,2},{0xe5e,2}}, + {{0xe1f,3},{0x2ca1e,3}}, {{0x19dc,5},{0xf35,3}}, {{0x45,1},{0x5bc,2}}, {{0xe83,3},{0x2e488,2}}, + {{0x46bd,6},{0x2e2c,3}}, {{0x72cf,6},{0x5724,3}}, {{0x1ae61,6},{0x2b7a,3}}, {{0x10cb4,4},{0xcc7,2}}, + {{0x1ebf,3},{0xcc3,2}}, {{0xb0f1,7},{0xe69,5}}, {{0x4522,5},{0x3315,3}}, {{0xef7,4},{0xb496,3}}, + {{0x450b,4},{0x4d5f,3}}, {{0x30373,6},{0x20579,1}}, {{0x71be,4},{0x1025,1}}, {{0x260ed,3},{0x24bcd,3}}, + {{0xbc79,5},{0x13dd,4}}, {{0x17178,5},{0x7d36,4}}, {{0x46bf,1},{0x2c85,2}}, {{0xf11,1},{0x2fb9,3}}, + {{0x3083b,2},{0xe41,2}}, {{0x8abf,7},{0xcce,2}}, {{0x725a,6},{0x11d9,3}}, {{0x1e1d2,7},{0xe7f,2}}, + {{0x10ea3,8},{0xcc9,2}}, {{0x5,1},{0xe71,1}}, {{0x240e3,5},{0x240e8,3}}, {{0x2b84,2},{0x5,2}}, + {{0x13078,5},{0xec6,3}}, {{0x2fc13,3},{0x2e27d,1}}, {{0x1e9e,4},{0xe71,1}}, {{0x10c48,3},{0xeb6,2}}, + {{0xc7ff,6},{0x9ca7,5}}, {{0x5944,8},{0x58b7,4}}, {{0x12d4,3},{0xe08,1}}, {{0x14a9,6},{0x146d,4}}, + {{0x450b,4},{0xe2b,2}}, {{0x307f,5},{0xe67,2}}, {{0x74f3,2},{0x1e576,3}}, {{0xe33,1},{0x28fc2,2}}, + {{0x10c5,4},{0x2ca1,4}}, {{0x2a56,4},{0x15399,2}}, {{0x29cf,3},{0x2f295,2}}, {{0x2a47,3},{0x29bfb,2}}, + {{0xcc7,1},{0x1e0ac,4}}, {{0x9b5,2},{0x3100f,2}}, {{0x92d9,7},{0x2f26,5}}, {{0xee59,3},{0x1a9a,4}}, + {{0x38cb,7},{0x355e,7}}, {{0x3123,6},{0x1c2f,4}}, {{0x5430,11},{0xe95,2}}, {{0x14662,8},{0xe11,1}}, + {{0xd14a,3},{0xf86,3}}, {{0x11d8e,6},{0x19997,3}}, {{0x19b9,1},{0x1e2ed,2}}, {{0x3d3b,3},{0x1c67b,4}}, + {{0x1087e,5},{0x1cd3,2}}, {{0x4f9e,8},{0x2dd7,4}}, {{0x3de1,5},{0x3a66,9}}, {{0xbba1,4},{0xec0,3}}, + {{0x103d,6},{0x1043,11}}, {{0x16a7,3},{0xc088,4}}, {{0xed5,3},{0x170f,8}}, {{0xc22b,6},{0xc231,5}}, + {{0x1a66,1},{0x1a67,5}}, {{0x3db7,12},{0xe95,2}}, {{0x1969,1},{0x17969,6}}, {{0x11a6,2},{0x149c,3}}, + {{0x114c8,5},{0x114cd,6}}, {{0xf4f,1},{0x31f8,3}}, {{0x47c7,5},{0xed9,2}}, {{0x81c9,7},{0x1059,3}}, + {{0xe99,1},{0x17c0,2}}, {{0x1219,11},{0x1224,6}}, {{0xf11,1},{0x4b96,5}}, {{0x956d,5},{0x1045a,4}}, + {{0x4781,3},{0xcba,2}}, {{0x7636,5},{0x309d,3}}, {{0x11fe0,5},{0x66c2,3}}, {{0xacc5,6},{0xdd0a,3}}, + {{0x5f90,6},{0x5fa3,7}}, {{0x7559,6},{0xe13,3}}, {{0x1c0c,4},{0x1c10,4}}, {{0x113f,2},{0xcd3,2}}, + {{0x2bd5,9},{0x2844,5}}, {{0x16a7,3},{0xbd18,5}}, {{0x1ebc,5},{0x11a6,2}}, {{0x712f,4},{0xda48,4}}, + {{0x5,1},{0xb496,3}}, {{0x112b,4},{0xf1f,3}}, {{0x1ff99,6},{0x18b8b,3}}, {{0xc159,4},{0xb13d,8}}, + {{0x152c0,4},{0x1894,3}}, {{0x2939,4},{0x168b,4}}, {{0x4853,3},{0x11e62,3}}, {{0x2f7f,6},{0x11d9,3}}, + {{0x11feb,5},{0x26ae,6}}, {{0x2de45,3},{0x48a,2}}, {{0x13b72,9},{0xe11,1}}, {{0x17f7,8},{0xe6b,3}}, + {{0x23c4b,3},{0x442d,1}}, {{0x1557,4},{0x6ec3,3}}, {{0xe025,8},{0xed6,2}}, {{0x2de75,3},{0xd4,2}}, + {{0x2e269,2},{0x205a0,2}}, {{0x14f7,8},{0x14ff,8}}, {{0x724f,4},{0x120c,3}}, {{0xf0a,4},{0x9a8,1}}, + {{0x7416,1},{0xed9,2}}, {{0x1475c,5},{0x12ce2,5}}, {{0xcb8,1},{0x15aca,4}}, {{0x12998,6},{0x12a9,3}}, + {{0x1ccd,12},{0xe77,3}}, {{0xcd3,3},{0x14a81,4}}, {{0x2bc7,9},{0x28f8,5}}, {{0x2df3b,4},{0x296,2}}, + {{0xaaf,2},{0xaf4,20}}, {{0xe67,2},{0xfa5,3}}, {{0xc576,6},{0x8b9c,5}}, {{0x1c91,5},{0xcf9f,6}}, + {{0xeeab,8},{0xf86,3}}, {{0x1327,1},{0xaf4,1}}, {{0x1677,3},{0xe87d,5}}, {{0x4199,8},{0xe7f,2}}, + {{0xb8c7,2},{0xe31,2}}, {{0x13a7,5},{0x7cbe,7}}, {{0x1f07,7},{0x1ef0,8}}, {{0x3d63,5},{0x1288,4}}, + {{0x4209,6},{0x587c,5}}, {{0x442b,3},{0xcbf,2}}, {{0x11019,4},{0x1a793,5}}, {{0x1154e,2},{0xb,1}}, + {{0xe0f,1},{0xf3a,2}}, {{0x3559,5},{0xe6b,3}}, {{0x7414,3},{0x25256,5}}, {{0xeee,3},{0x15464,4}}, + {{0x5611,7},{0x21c2,6}}, {{0x18232,5},{0xe31,2}}, {{0x11184,4},{0x1e872,5}}, {{0x1f36f,5},{0x10d3,3}}, + {{0x1967,3},{0x101f,3}}, {{0x1977,4},{0xa9a6,7}}, {{0x75b4,4},{0xfd9,3}}, {{0x75b4,4},{0x4a44,4}}, + {{0x1a86,3},{0x153a,3}}, {{0x391f,5},{0x1571,4}}, {{0x3ff5,6},{0x1e1b,3}}, {{0x478f,3},{0x1830,3}}, + {{0x30f75,4},{0x30f85,2}}, {{0xed1,3},{0x62b9,10}}, {{0x247a,5},{0xe11,1}}, {{0x19b7,3},{0x2d96e,3}}, + {{0xe19,1},{0x111c,2}}, {{0x19b9,1},{0x4767,1}}, {{0x4853,3},{0x28b7,5}}, {{0xf0f,2},{0x13e3,4}}, + {{0x1a5e,3},{0x8,1}}, {{0x8571,10},{0xe22,2}}, {{0x1677,3},{0x6ee8,3}}, {{0xf0a,3},{0x1b04,3}}, + {{0x169b,6},{0xf86,3}}, {{0x1db3b,2},{0x26965,5}}, {{0x1081,7},{0x2237,6}}, {{0xcdd7,5},{0xcddc,6}}, + {{0x1085,3},{0x1373,3}}, {{0x595e,6},{0x10b7,2}}, {{0x2b50b,2},{0x3100f,2}}, {{0x1b986,6},{0xe1c,3}}, + {{0x2adf,4},{0x2d11,3}}, {{0xe97,3},{0x2280,2}}, {{0xc040,2},{0xfb0,3}}, {{0x2e3d,9},{0x18b4,3}}, + {{0x33b5,4},{0x21db5,6}}, {{0xbffd,6},{0x7a36,3}}, {{0xe11,2},{0x1288,4}}, {{0xeed,2},{0x6,2}}, + {{0x3bdb,10},{0xe0b,4}}, {{0x1b78e,7},{0xcc9,2}}, {{0x14a7,4},{0x28e1,3}}, {{0x46af,3},{0x1a63,3}}, + {{0x181ce,5},{0x8,1}}, {{0x17346,4},{0xe6b,2}}, {{0xe0f,2},{0xe87,2}}, {{0xf77,3},{0x14e73,5}}, + {{0xe06b,3},{0x1b41,4}}, {{0xb805,5},{0xebc,2}}, {{0x479f,2},{0xed5,6}}, {{0x2df3b,4},{0x272,2}}, + {{0xe2f,1},{0x2f94,3}}, {{0xe61,3},{0x1f9f,3}}, {{0x268c,3},{0xf91,3}}, {{0xf65,4},{0x1dee,2}}, + {{0x1f687,4},{0x5,1}}, {{0x2a47,3},{0xf11,1}}, {{0x2b46,4},{0x1153,2}}, {{0x174c0,7},{0xf35,2}}, + {{0x77fd,8},{0x6da9,5}}, {{0x48d6,2},{0x1e576,3}}, {{0x1e298,7},{0xe67,2}}, {{0x1083,5},{0x1245,6}}, + {{0x46af,3},{0x1314f,3}}, {{0x4,3},{0xc7ac,6}}, {{0xcbd,1},{0x7bd9,4}}, {{0xd291,7},{0xe92,3}}, + {{0xb3d9,5},{0xeab,2}}, {{0xcd1c,7},{0xec6,3}}, {{0xe97,3},{0x204e0,2}}, {{0x4,1},{0xcc3,3}}, + {{0x56c7,5},{0xcbd,1}}, {{0x9b3d,7},{0x9b44,5}}, {{0x10e8d,5},{0xf86,2}}, {{0x69,1},{0x302,2}}, + {{0x9525,6},{0x7e10,5}}, {{0x24823,5},{0x10f5,3}}, {{0x12f74,6},{0x2eb7,4}}, {{0x15e90,6},{0x1a9a,4}}, + {{0x70ad,3},{0xc3fb,5}}, {{0x1b025,5},{0xe11,1}}, {{0xf15,3},{0xf18,5}}, {{0x49a0,5},{0xc591,6}}, + {{0x1fff3,5},{0x28e3,4}}, {{0xf15,1},{0xcd3,1}}, {{0x185ca,7},{0x8,1}}, {{0xe19,1},{0xccb,2}}, + {{0x479,2},{0x9f,1}}, {{0x7929,7},{0x1392,3}}, {{0x1ff7,3},{0x34d7,4}}, {{0x16052,6},{0xe641,4}}, + {{0x2bd5,4},{0x3,1}}, {{0x9a6,1},{0xc341,4}}, {{0x5342,3},{0x4,1}}, {{0x1ffe,8},{0xeac,2}}, + {{0x478f,3},{0x1224,6}}, {{0x3583,5},{0xe5c0,6}}, {{0x14e6e,5},{0x14e73,5}}, {{0xcb8,1},{0xc3d7,5}}, + {{0xed6,2},{0xf1f,3}}, {{0x1447,7},{0xca79,4}}, {{0x1e328,5},{0x1a9a,4}}, {{0xbb89,4},{0x182a4,6}}, + {{0xe5b,3},{0x9a6,1}}, {{0x325,2},{0x21,1}}, {{0x1b0b,5},{0xc662,6}}, {{0x6bda,7},{0x122d,2}}, + {{0xcf16,6},{0x3378,5}}, {{0x1969,1},{0xf02,2}}, {{0x478f,3},{0xf80,2}}, {{0xaaf,2},{0x4fb3,5}}, + {{0x5471,9},{0xcce,2}}, {{0x2fffb,4},{0x21,1}}, {{0x188a,4},{0x15ef,7}}, {{0xf69,3},{0x150e,6}}, + {{0xf4f,1},{0xe22,3}}, {{0x20561,1},{0xcf6,1}}, {{0x433d,4},{0x604d,6}}, {{0xf77,4},{0xcd1,2}}, + {{0x2aaa8,2},{0xe16,1}}, {{0x2006,4},{0x2d1f,6}}, {{0x17f08,5},{0x6,1}}, {{0x16a7,3},{0x22a5e,5}}, + {{0x534,2},{0xe,1}}, {{0x7310,8},{0x6,1}}, {{0x9,1},{0xcbd,1}}, {{0x7b,1},{0x302,2}}, + {{0x41df,7},{0x10b7,2}}, {{0x317ac,2},{0x2b05e,2}}, {{0x1877,5},{0xe7b0,5}}, {{0x127f,13},{0x128c,4}}, + {{0x7122,5},{0x2237,3}}, {{0xbb7f,3},{0x1003,3}}, {{0x10c3b,6},{0x2940,3}}, {{0xcc5,2},{0xcc5,2}}, + {{0xe7a,1},{0xc54d,5}}, {{0xe6f,3},{0x5f04,3}}, {{0x15ac6,6},{0xee64,4}}, {{0x450b,4},{0x44ad,3}}, + {{0x2ba5,1},{0xe7a,1}}, {{0x29cf,3},{0x48da,2}}, {{0x1967,3},{0x1780,3}}, {{0xe11,1},{0x12211,4}}, + {{0xf89,5},{0x92a2,7}}, {{0xb,1},{0x1523,4}}, {{0x27e0,3},{0xe90,3}}, {{0xf15,1},{0xf70,2}}, + {{0x1747,4},{0x12578,6}}, {{0x46af,3},{0x1e869,2}}, {{0x12d4,3},{0x1131,3}}, {{0xe22,2},{0x92ea,4}}, + {{0x127f,3},{0x6740,7}}, {{0xf8e,3},{0xcba,3}}, {{0x10b4,12},{0xcc9,2}}, {{0x12e5,3},{0xc541,3}}, + {{0x2de5d,4},{0xe,1}}, {{0x3d63,5},{0x159e3,4}}, {{0x1e097,7},{0xe0d,2}}, {{0x317b8,2},{0x9b5,2}}, + {{0x29de,5},{0x14f0,7}}, {{0x1839,4},{0x18b4,3}}, {{0x1e2d7,5},{0xe22,2}}, {{0x12d4,3},{0x129b9,4}}, + {{0x1d7d,3},{0x9a6,1}}, {{0x113d6,6},{0x3ce0,4}}, {{0xb5b9,8},{0x2872,4}}, {{0x7310,8},{0xeaf,3}}, + {{0x73d3,7},{0x73da,6}}, {{0x2df3b,4},{0x2de,2}}, {{0x1967,3},{0xeb4,2}}, {{0x1eb47,5},{0xf62,3}}, + {{0x40d8,3},{0x6,2}}, {{0x788e,6},{0x1054,3}}, {{0x22e5,6},{0x2c93,6}}, {{0xe99,1},{0xb156,7}}, + {{0xae75,7},{0x2cbe,5}}, {{0x11788,4},{0x1178c,7}}, {{0xed9,2},{0x87a0,5}}, {{0x10e1f,4},{0x22a3,2}}, + {{0xf15,1},{0x74f9,2}}, {{0x672e,9},{0xfa9,4}}, {{0x1fedc,6},{0x16a3a,3}}, {{0x2b88,4},{0xcc3,2}}, + {{0x12c3,4},{0xecc,3}}, {{0xcd4,2},{0x8666,2}}, {{0x13c58,6},{0x2269,4}}, {{0x12e87,4},{0xf1a,2}}, + {{0x4ee8,4},{0x10197,4}}, {{0x1ecee,6},{0xcc3,2}}, {{0x4853,3},{0x1a66,1}}, {{0x9f,1},{0x1bd,2}}, + {{0x1f303,6},{0x162c,3}}, {{0x19b7,3},{0x17661,2}}, {{0xcc7,1},{0x3537,2}}, {{0xe71,1},{0x1ebf,3}}, + {{0x1f25,4},{0x5c08,6}}, {{0x18f7,7},{0x1b8a,7}}, {{0x18610,5},{0xe69,5}}, {{0x69,1},{0x468,2}}, + {{0x1020c,8},{0xec6,3}}, {{0x113ac,8},{0xe11,1}}, {{0xe37,4},{0x29979,2}}, {{0x3d3b,4},{0xa48b,3}}, + {{0x5f90,6},{0x7c90,5}}, {{0xb121,8},{0x1004,3}}, {{0x7414,3},{0xfe6,2}}, {{0x59b4,3},{0x111c,2}}, + {{0x1ff7,3},{0x1472d,7}}, {{0x1937,5},{0x122d,3}}, {{0x106b0,7},{0x2d7c,4}}, {{0xe65,2},{0x809a,3}}, + {{0x16a7,3},{0x1fc7,3}}, {{0x712f,4},{0x11b5,2}}, {{0xf0a,3},{0x2a329,3}}, {{0x1977,5},{0x9511,5}}, + {{0x6d1f,11},{0xed9,2}}, {{0x170ce,6},{0x2872,4}}, {{0x1bec,5},{0x26ba,4}}, {{0x39ff,5},{0x1b4f,5}}, + {{0x45eb,5},{0xcd0d,4}}, {{0xfb2c,8},{0xe6b,3}}, {{0x2e2b1,2},{0x2afc6,2}}, {{0x9489,5},{0x2eb7,4}}, + {{0x168fe,7},{0x2477,3}}, {{0x116ea,4},{0x7a37,2}}, {{0x11b89,5},{0xccc,2}}, {{0x1b383,7},{0xa,2}}, + {{0x149b,4},{0xcd3,1}}, {{0xe67,2},{0x13c3,4}}, {{0x3537,2},{0xf3a,3}}, {{0x123f8,7},{0xebb,3}}, + {{0x2f71,7},{0xc3e6,4}}, {{0x1967,3},{0x128c,4}}, {{0x11a6,2},{0xec3,3}}, {{0x4767,1},{0xee59,5}}, + {{0x1f7d4,5},{0x111c,2}}, {{0x3694,3},{0xfdd,4}}, {{0x1d9f,6},{0x1da5,9}}, {{0x12d4,3},{0x28c9d,2}}, + {{0x977d,9},{0x1392,3}}, {{0x46bf,1},{0xede,1}}, {{0xc05d,4},{0x10d3,3}}, {{0x12f6,4},{0xefa,2}}, + {{0x1019,6},{0x277e,2}}, {{0x27e0,3},{0x2075,3}}, {{0x6ee6,5},{0x6eeb,8}}, {{0xf0a,3},{0x10edd,8}}, + {{0x97d1,7},{0xe2b,4}}, {{0x478f,4},{0x63ea,4}}, {{0x8d,1},{0x302,2}}, {{0x30e61,2},{0x307bb,1}}, + {{0x12e5,5},{0xcce,2}}, {{0x1ebf,3},{0xbd26,3}}, {{0x23c4b,3},{0x5d31,5}}, {{0xe71,1},{0x7d64,4}}, + {{0xcc8,2},{0xf7a,2}}, {{0x724d,9},{0x128c,4}}, {{0x1487,4},{0x1692,5}}, {{0x29cf,3},{0x81c1,5}}, + {{0x1557,4},{0xce8e,4}}, {{0x2de57,3},{0x5bc,2}}, {{0x14a7,4},{0xb3c8,3}}, {{0x1cedf,6},{0xec6,3}}, + {{0x18066,6},{0x3555,4}}, {{0x1ed90,7},{0x1ca6,2}}, {{0x46bd,3},{0xe16,1}}, {{0x9ad1,5},{0x604d,6}}, + {{0x1817,4},{0x8d1d,4}}, {{0x4781,3},{0x24d5e,2}}, {{0xec6,4},{0xeca,7}}, {{0x2006,3},{0x8,1}}, + {{0x115e,7},{0x365c,7}}, {{0xb37b,1},{0xf24,2}}, {{0x17f5a,4},{0x1b9d,4}}, {{0x4a8a,9},{0x24f7,4}}, + {{0xc015,4},{0x49a6,3}}, {{0x7416,1},{0xe09,1}}, {{0x5ef,2},{0x57,1}}, {{0x1a07,5},{0x1dee,2}}, + {{0xe0f,1},{0x11187,2}}, {{0x79dd,7},{0xec6,3}}, {{0x13f50,6},{0xfe6,2}}, {{0x69,1},{0x1ac,2}}, + {{0xc42c,8},{0x1be9,3}}, {{0x17268,7},{0xf1a,2}}, {{0x490c,3},{0x6411,4}}, {{0x1aad4,6},{0xcc3,2}}, + {{0x127f,5},{0xf0f,2}}, {{0x4016,7},{0xe95,2}}, {{0x111a,3},{0x10d3,3}}, {{0x1367,3},{0x3c9a,5}}, + {{0x14298,5},{0xeb9,5}}, {{0x442b,3},{0xe7f,2}}, {{0x97ad,8},{0xec6,3}}, {{0x9a8,1},{0x9e34,4}}, + {{0x1967,3},{0x445b,3}}, {{0x18ecc,2},{0x2e7da,2}}, {{0x1ccd,5},{0x2ee9,3}}, {{0x11184,4},{0x2ca1e,2}}, + {{0x4161,5},{0x100d2,6}}, {{0xcc8,1},{0x6008,3}}, {{0xc2a0,7},{0x6792,4}}, {{0x32b9,9},{0xec6,3}}, + {{0x113c,3},{0xddb9,4}}, {{0x2de75,3},{0x5de,2}}, {{0x18f9,5},{0x1088,4}}, {{0x1153,2},{0xa,2}}, + {{0x27e0,3},{0x4927,4}}, {{0x19a7,4},{0x1a58,3}}, {{0x19d7,10},{0xcd3,2}}, {{0x1c91,4},{0xccd,1}}, + {{0xb8dd,5},{0x1859,4}}, {{0x1849,3},{0xa,2}}, {{0x45eb,4},{0x1ab8c,5}}, {{0x18ee,3},{0x2c6a,5}}, + {{0x9201,5},{0x9212,7}}, {{0x5611,5},{0x621e,5}}, {{0x5722,11},{0xe95,2}}, {{0xd6d2,6},{0xf86,3}}, + {{0x8,2},{0x149f,3}}, {{0x10ca9,8},{0x10ed,3}}, {{0x1967,3},{0x1317,2}}, {{0x4765,3},{0x2a329,3}}, + {{0xe7f,2},{0xf72,5}}, {{0x2be3,5},{0x1bf0,2}}, {{0x29c0,3},{0x15e9,3}}, {{0x1a86,3},{0x1054,3}}, + {{0x8dc9,7},{0x333c,5}}, {{0x15a7,6},{0xe2b,2}}, {{0x14a7,4},{0x13388,6}}, {{0xf11,1},{0x5538,2}}, + {{0xcba,2},{0x5538,2}}, {{0x148a,3},{0x3473,6}}, {{0xcbd,1},{0xe7f,2}}, {{0x1213,2},{0xe09,1}}, + {{0x1877,4},{0x6e8f,9}}, {{0x10a15,8},{0xebb,3}}, {{0x5534,6},{0xbf5d,4}}, {{0x280d,8},{0x2815,7}}, + {{0xe0f,1},{0x28fc2,2}}, {{0x12fb0,5},{0x1692,5}}, {{0xb595,5},{0x1244,7}}, {{0x10b8,2},{0xe11,1}}, + {{0x162c,3},{0x2b7a,3}}, {{0x110d6,4},{0x1150,2}}, {{0x1caf,7},{0x1392,5}}, {{0x113c,3},{0x594d,4}}, + {{0x12d4,3},{0x1e2ed,2}}, {{0x2d3a7,4},{0xe19,1}}, {{0x19b7,5},{0x5fa3,7}}, {{0xff7b,4},{0xcce,2}}, + {{0x14a2,3},{0xe0a,1}}, {{0x18772,2},{0x48d3,2}}, {{0x3002d,4},{0x21,1}}, {{0x18798,3},{0x1025,1}}, + {{0x12f8,2},{0xfdf,3}}, {{0x578,2},{0xf,1}}, {{0x44c5,6},{0xe77,3}}, {{0x478f,3},{0x9e1c,4}}, + {{0xc159,4},{0xf0f,2}}, {{0x11a6,2},{0x8,1}}, {{0x70af,2},{0x19188,5}}, {{0x19b9,1},{0x48da,2}}, + {{0x7b,1},{0x512,2}}, {{0xbba1,7},{0x1174d,4}}, {{0x59b9,5},{0xa,2}}, {{0xed9,2},{0x1cd3,2}}, + {{0x8cf1,8},{0x128c,4}}, {{0x2cbe5,5},{0x2,1}}, {{0x9,1},{0x6,2}}, {{0x111a,3},{0xcb7,2}}, + {{0x7414,3},{0x7979,4}}, {{0xf4f,1},{0x1fc0,3}}, {{0xb4b1,8},{0x1702,4}}, {{0xf77,4},{0x4571,6}}, + {{0x30a13,3},{0x28b33,1}}, {{0x4519,4},{0x12ba7,3}}, {{0x8295,8},{0x57d2,4}}, {{0x712f,4},{0x24f7,4}}, + {{0x1687,5},{0x2f79,5}}, {{0x19b7,3},{0x648d,8}}, {{0x1154c,4},{0x148db,4}}, {{0x4853,4},{0xaccc,5}}, + {{0x2b4ee,4},{0x18ee2,2}}, {{0xedd,1},{0x4461,2}}, {{0x29cf,3},{0xf2ba,4}}, {{0x7b2d,5},{0x10f5,3}}, + {{0x177d6,6},{0xcc9,2}}, {{0x1967,4},{0x155b,4}}, {{0x29c0,7},{0x1ef0,8}}, {{0x5611,7},{0x3324,5}}, + {{0x10f32,5},{0x1152,3}}, {{0x724d,6},{0x1e65,3}}, {{0x1567,5},{0x13dd,4}}, {{0xed1,4},{0x1c16a,5}}, + {{0xe97,3},{0x46bf,1}}, {{0xaaf,2},{0x1347,6}}, {{0x19523,7},{0xe0d,2}}, {{0x6cc4,6},{0x16a3a,3}}, + {{0x28ca2,2},{0xe19,1}}, {{0x1367,3},{0xcb73,7}}, {{0x58cf,9},{0x58d8,4}}, {{0x6ba6,7},{0xef2,4}}, + {{0x1290,4},{0x1d822,5}}, {{0xe21,1},{0xd134,4}}, {{0x1a29,2},{0x1294,6}}, {{0xb619,5},{0x301f,7}}, + {{0xbb4d,5},{0x3320,4}}, {{0x70af,2},{0x5e94,5}}, {{0x5342,3},{0xf63,2}}, {{0x37c1,7},{0x12be,5}}, + {{0x12e5,3},{0xbdfc,9}}, {{0x34a3,5},{0xe80,2}}, {{0xf0a,3},{0x5bb6,3}}, {{0x5,1},{0x9a8,1}}, + {{0x1677,3},{0x225d6,5}}, {{0xfb0,2},{0x16b6e,6}}, {{0x4bd,2},{0xe,1}}, {{0xb8b9,5},{0x1d550,4}}, + {{0x2c6b5,4},{0x1e2ec,2}}, {{0x1f408,5},{0x1f40d,4}}, {{0x4295,5},{0x9fb7,6}}, {{0x2de63,4},{0x7b,1}}, + {{0xcbd,1},{0x1702,4}}, {{0xe6f,3},{0xff7b,4}}, {{0x16f7,6},{0x640e,7}}, {{0xaba5,6},{0x4ca6,6}}, + {{0x4457,2},{0xedd,1}}, {{0x43bb,7},{0x10f5,3}}, {{0xbccd,4},{0x1ea1,5}}, {{0xe61,3},{0x404e,4}}, + {{0xab1,1},{0x28b33,1}}, {{0x53ef,9},{0xfdf,4}}, {{0x22e5,5},{0xeb5,2}}, {{0xccd,1},{0x13fb9,5}}, + {{0x7eb1,6},{0x1693,4}}, {{0xf77,4},{0xcc1,2}}, {{0x46af,3},{0x2d146,3}}, {{0x10b4,6},{0x4d1a,7}}, + {{0xeb5,2},{0xe67,2}}, {{0x127f,13},{0x1059,3}}, {{0x2510b,5},{0x16a3a,3}}, {{0x1bbf,4},{0xcce,2}}, + {{0x1467,4},{0x6,1}}, {{0x1491e,6},{0x14924,4}}, {{0x1e7a8,6},{0x138e,2}}, {{0xcc6,2},{0x8,1}}, + {{0x5534,4},{0x7921,3}}, {{0xa215,5},{0xfb8,3}}, {{0xaaf,2},{0xc16,32}}, {{0xcc8,1},{0xe86,2}}, + {{0x1cd3,3},{0xdd0a,3}}, {{0xcbf,2},{0x5,1}}, {{0xf31,2},{0x2f05,4}}, {{0x1679,4},{0x6,1}}, + {{0x1969,1},{0x49a6,3}}, {{0x9a4,3},{0xb426,2}}, {{0x2fc5,11},{0xcc9,2}}, {{0x1e1b,3},{0x4c16,3}}, + {{0xb601,7},{0x4798,5}}, {{0x1697,4},{0x1099,8}}, {{0x57ff,8},{0xf84,5}}, {{0x1ce2b,6},{0xe77,2}}, + {{0x2a47,3},{0xdcfd,3}}, {{0x11f25,5},{0xbd26,3}}, {{0x2fffb,4},{0x8d,1}}, {{0x5c95,3},{0xe0a,1}}, + {{0x18772,2},{0x74fc,2}}, {{0x19b9,1},{0x2d980,3}}, {{0x3433,5},{0x9302,7}}, {{0x2006,3},{0xed6,2}}, + {{0x63ba,9},{0x1a9a,4}}, {{0xf77,4},{0xd83f,4}}, {{0xfa5b,7},{0x2dd7,4}}, {{0x1be,2},{0x6bb,2}}, + {{0x5638,7},{0x8ea8,5}}, {{0x10290,7},{0x10297,4}}, {{0x2de75,3},{0x5cd,2}}, {{0x114f,3},{0xfe6,2}}, + {{0x7351,4},{0x1ae53,5}}, {{0x75f5,6},{0x546a,7}}, {{0xe0c,2},{0x82c9,6}}, {{0x2afdc,6},{0x2afee,6}}, + {{0x8428,3},{0x14f0,3}}, {{0x1e2d7,5},{0xeac,2}}, {{0x1155,2},{0x28d2,3}}, {{0x772d,5},{0x8,1}}, + {{0x153a,3},{0x6,1}}, {{0x4111,5},{0x4116,5}}, {{0x29de,5},{0xfbb,3}}, {{0xf69,3},{0x141d4,4}}, + {{0x611,2},{0x7b,1}}, {{0x18278,6},{0x16616,4}}, {{0x2a1ab,5},{0xe2b,2}}, {{0x478f,3},{0x3372,4}}, + {{0x20c21,6},{0x138e,2}}, {{0x10a3,5},{0xc990,6}}, {{0x6164,11},{0xe11,1}}, {{0x1367,3},{0x49a6,3}}, + {{0x18f7,4},{0x2ba7,4}}, {{0x1118a,2},{0xe16,1}}, {{0x1927,4},{0x12e56,5}}, {{0x11633,9},{0xe67,2}}, + {{0x1f1e3,5},{0x10d2,4}}, {{0x1e9e,4},{0x101f,2}}, {{0x3513,5},{0x59b4,3}}, {{0x9d7d,7},{0x30f4,4}}, + {{0x1bbf,4},{0xcb8,1}}, {{0x1b4c7,5},{0xde9b,4}}, {{0x2ba5,1},{0xe4e2,5}}, {{0x4aff,5},{0x5717,4}}, + {{0x1677,3},{0x372d,4}}, {{0x1e4cf,6},{0xf91,3}}, {{0x1969,2},{0x1303,3}}, {{0x4853,3},{0x2ad1e,4}}, + {{0x11b8b,3},{0x13e3,4}}, {{0x10432,5},{0x809a,3}}, {{0x101f,2},{0x1b7a,6}}, {{0x1aa2,7},{0x2c06,7}}, + {{0x3976,3},{0x6,1}}, {{0x20581,4},{0x20581,4}}, {{0x41b5,5},{0xeab,2}}, {{0x6e57,11},{0xcc9,2}}, + {{0x29cf,3},{0x9bd1,3}}, {{0x1b69,3},{0x1b9d,4}}, {{0x2a90d,5},{0x2,2}}, {{0xe19,1},{0x48d2,3}}, + {{0xf15,1},{0x2f94,4}}, {{0x19b7,3},{0x1c0f,3}}, {{0x479d,5},{0x2651,7}}, {{0x23f3,12},{0x1392,3}}, + {{0x1052f,5},{0x30ad,6}}, {{0x4,1},{0x6d08,4}}, {{0x110df,8},{0x122d,3}}, {{0x1c2a,4},{0xe0a,1}}, + {{0x2b46,4},{0x2026d,5}}, {{0xf97,3},{0xe22,3}}, {{0xbdb1,5},{0x1f90b,4}}, {{0x487f,6},{0xe69,6}}, + {{0x5d58,3},{0xed9,2}}, {{0x7e39,9},{0x268c,3}}, {{0x30eb,6},{0x1cfc,3}}, {{0xf89,3},{0x20fbd,4}}, + {{0x2240,4},{0x5d58,3}}, {{0x12e5,3},{0x1e580,3}}, {{0xffe,6},{0xec3,3}}, {{0xe11,2},{0x11b5,2}}, + {{0x15ec,5},{0x94b5,3}}, {{0xe89,2},{0x193f,3}}, {{0x1766b,2},{0x20544,2}}, {{0x4871,2},{0x9,1}}, + {{0xe09,1},{0xf34,2}}, {{0x120b,4},{0xe67,2}}, {{0x95a9,7},{0x1722,5}}, {{0x23d1,3},{0x2e2c,3}}, + {{0xe16,1},{0xe0a,1}}, {{0x1d36,6},{0x13693,4}}, {{0x27d05,6},{0xe0a,1}}, {{0xe97,4},{0x29f3,3}}, + {{0xf0a,3},{0x2252,3}}, {{0x1749,3},{0x6e1d,6}}, {{0xe,1},{0x567,2}}, {{0x71d8,6},{0xe13,3}}, + {{0x2ed7,7},{0x45c7,2}}, {{0x1967,3},{0xe86,2}}, {{0x122d,3},{0xcd3,2}}, {{0x13050,7},{0xe0a,1}}, + {{0x11c4,6},{0x2c59,4}}, {{0x26b4,7},{0x60b5,6}}, {{0x78f4,4},{0x9cab,6}}, {{0x2132,9},{0xe11,1}}, + {{0x27e0,3},{0x9fb7,6}}, {{0x137b,3},{0x96c4,4}}, {{0x3a0f,5},{0x4665,4}}, {{0x346b,8},{0x3473,6}}, + {{0x3002d,4},{0xf,1}}, {{0x4434,3},{0xe11,1}}, {{0x1d3a,3},{0x6e53,4}}, {{0x4871,2},{0x2dd9,2}}, + {{0xb5dd,5},{0x844a,6}}, {{0x1137e,5},{0x1089,3}}, {{0xf7a,2},{0xcc3,2}}, {{0x19c9,4},{0x2615,8}}, + {{0x29cf,3},{0x1eb89,6}}, {{0x5f96,3},{0xec6,3}}, {{0xe86,2},{0x1dc7,5}}, {{0x71be,4},{0xabc6,3}}, + {{0x7518,7},{0xe67,2}}, {{0xfd1,9},{0xfda,9}}, {{0x9b79,5},{0x7949,4}}, {{0xfe86,7},{0xe67,2}}, + {{0x75c1,10},{0xebb,3}}, {{0xe6f,4},{0xec10,7}}, {{0x2501,5},{0x180f,7}}, {{0x7303,10},{0xe77,3}}, + {{0x25e2,9},{0xe69,6}}, {{0xf65,4},{0x6ee8,3}}, {{0x1aa95,6},{0x27f8,3}}, {{0xe424,7},{0x1fc7,3}}, + {{0xed1,3},{0x2fcc,7}}, {{0xb481,6},{0x1004,3}}, {{0xcce,2},{0x1b80,3}}, {{0xe89,2},{0xde29,2}}, + {{0x1bd,2},{0x314,2}}, {{0xe99,1},{0x1153,2}}, {{0xd7c,2},{0xc26f,2}}, {{0x2e866,2},{0xe59,2}}, + {{0x311a9,2},{0x3100f,2}}, {{0xb799,6},{0x18b2,5}}, {{0x296b,3},{0x296e,4}}, {{0x7f11,8},{0x7f19,4}}, + {{0x532e,7},{0xe11,1}}, {{0xf65,4},{0x49ff,9}}, {{0x10c5,4},{0x125fb,5}}, {{0x2a65,5},{0xfc4,7}}, + {{0x2171,3},{0x2c75,6}}, {{0x79f5,6},{0x77b6,6}}, {{0xede,1},{0x1303,3}}, {{0x115e,5},{0x289c,7}}, + {{0xebe,3},{0x22536,5}}, {{0x19c7,7},{0xe0b,4}}, {{0x1c55,5},{0x9a7,2}}, {{0x1587,4},{0xe06b,7}}, + {{0x3a45,5},{0xe11,1}}, {{0xac7d,6},{0xcce,2}}, {{0x17ca6,5},{0xf7a,2}}, {{0x2a47,4},{0x11d9,3}}, + {{0xf1a,2},{0x16a3a,3}}, {{0x115e,7},{0x2094,8}}, {{0x222bb,6},{0xcc9,2}}, {{0x1e71,6},{0xcd3,1}}, + {{0x39d5,7},{0x14a2,5}}, {{0x2966,5},{0x296b,7}}, {{0x2966,12},{0x2972,3}}, {{0x1857,4},{0x63e4,4}}, + {{0x30845,4},{0xd7c,2}}, {{0xe6f,3},{0x7373,5}}, {{0x17a44,5},{0x17a49,5}}, {{0xbb89,4},{0x2cd9,3}}, + {{0xc626,9},{0xe95,2}}, {{0xf77,3},{0x116db,4}}, {{0xcd2,2},{0x1150,2}}, {{0x28ca0,4},{0x48da,2}}, + {{0xb42d,5},{0x1289,4}}, {{0xd13c,6},{0xcc9,2}}, {{0x59c6,5},{0xccd,1}}, {{0x12e5,3},{0x2d638,2}}, + {{0xccd,1},{0xed5,3}}, {{0xcd3,3},{0xe6a7,6}}, {{0x105f,3},{0x13375,5}}, {{0x11d5,12},{0xcc9,2}}, + {{0x17b0c,7},{0xe7f,2}}, {{0xc159,4},{0xcc3,2}}, {{0xce45,7},{0xec6,3}}, {{0x3751,9},{0xe92,3}}, + {{0x117a9,8},{0x15e9,3}}, {{0x1c82,6},{0x2dd7,4}}, {{0x29de,4},{0xcba,2}}, {{0xb8ad,5},{0x160f,7}}, + {{0x331f,3},{0x30f6,3}}, {{0xe,1},{0xc2,2}}, {{0x1208,4},{0xfeef,5}}, {{0x11e12,6},{0x2844,5}}, + {{0xf7a,3},{0xf86,2}}, {{0xf0a,3},{0x204e0,2}}, {{0x9a6,1},{0x1ce6,5}}, {{0x1467,4},{0x20fbd,4}}, + {{0x104a,3},{0x6,1}}, {{0x17972,5},{0xb7d0,5}}, {{0xf15,1},{0x1e2f0,2}}, {{0x3be9,8},{0xfdd,6}}, + {{0x10b49,7},{0x35e0,4}}, {{0x478f,3},{0x1debd,2}}, {{0x9,1},{0xed7d,5}}, {{0xcc9,2},{0x6411,4}}, + {{0x16fd4,6},{0x121a6,4}}, {{0x10a3,10},{0x1024,7}}, {{0x110b3,7},{0x6e53,4}}, {{0x18772,2},{0x248f6,2}}, + {{0x39d5,5},{0x3bec,4}}, {{0xb69d,3},{0xe21,1}}, {{0x113e,3},{0x59b4,3}}, {{0x353d,5},{0x1722,5}}, + {{0x1025,1},{0xcd3,2}}, {{0x2de75,3},{0x10a,2}}, {{0xed9,2},{0xb191,5}}, {{0x2006,3},{0x3687,5}}, + {{0xede,1},{0x8,1}}, {{0xf77,3},{0x5b9c,4}}, {{0xec64,7},{0xe0d,2}}, {{0x1937,4},{0xd15f,3}}, + {{0x19b7,3},{0x1062,2}}, {{0xe16,1},{0x25d5e,2}}, {{0x3559,4},{0x37c8,5}}, {{0x2aa8e,5},{0x1796b,4}}, + {{0xd131,4},{0x54eb,3}}, {{0x1947,5},{0x1cd5,4}}, {{0xf89,5},{0x9296,4}}, {{0x8e41,9},{0xcc9,2}}, + {{0x21ce1,5},{0xebb,3}}, {{0x578a,5},{0x579c,8}}, {{0x19c7,6},{0x540f,7}}, {{0x10f8c,6},{0xec6,3}}, + {{0x5770,4},{0x2781,5}}, {{0xa5ed,8},{0xfa9,4}}, {{0x450b,4},{0x4fa8,3}}, {{0x2de75,3},{0x49b,2}}, + {{0x3080f,4},{0xc287,2}}, {{0x5897,3},{0x20a4,3}}, {{0x18c52,3},{0x237d,2}}, {{0x4853,3},{0x1153,2}}, + {{0xf0a,3},{0x1153,3}}, {{0x122d,2},{0x15399,2}}, {{0xed40,5},{0x1049,3}}, {{0x29de,5},{0x1de7,3}}, + {{0x178d,3},{0x1fd05,3}}, {{0x113c,4},{0x4b05,4}}, {{0xed1,3},{0x1d2e6,4}}, {{0x5d66,3},{0xe92,3}}, + {{0x7416,1},{0xe99,1}}, {{0xbb7d,5},{0x158e,4}}, {{0xe09,1},{0xf91,3}}, {{0x1a306,6},{0xcc9,2}}, + {{0xccb,2},{0xf1d,1}}, {{0x337d,7},{0x4,1}}, {{0x1b03,3},{0x1abb,5}}, {{0x142d,3},{0x6,1}}, + {{0x1767a,3},{0xbd26,3}}, {{0x13a7,7},{0x56a9,3}}, {{0x3521,4},{0x9a8,2}}, {{0x44ef,5},{0x2ea4,9}}, + {{0x17c7e,6},{0xf0d,2}}, {{0xcc8,1},{0x1024,2}}, {{0x15e7,7},{0x6d08,4}}, {{0x181b,3},{0xdba8,5}}, + {{0x4781,3},{0x2bb2,3}}, {{0x10a3,4},{0x198cf,5}}, {{0x514b,11},{0xe95,2}}, {{0x45a5,5},{0x9a8,1}}, + {{0x4781,3},{0x8129,4}}, {{0xe99,1},{0x20510,2}}, {{0x11ce9,5},{0xcd3,1}}, {{0xe,1},{0x556,2}}, + {{0x6d21,3},{0xec0,3}}, {{0x29c0,3},{0xe09,1}}, {{0xf11,4},{0xf15,8}}, {{0x1b998,7},{0x1591,2}}, + {{0xe21,1},{0x2b78,4}}, {{0x7eed,6},{0xcc3,2}}, {{0x97a1,5},{0x1040,3}}, {{0x478f,3},{0xe8f,4}}, + {{0x111a,3},{0xf16,2}}, {{0x433d,4},{0x14f0,7}}, {{0x303ad,2},{0x303ad,2}}, {{0xfcb,2},{0xe22,2}}, + {{0x2a47,3},{0x20550,2}}, {{0x16b7,5},{0xcc5,3}}, {{0x1c556,5},{0x2917,4}}, {{0x2de63,3},{0x109,2}}, + {{0x5,1},{0x1132,2}}, {{0x27c2,4},{0xce83,4}}, {{0x2,2},{0xa9a6,7}}, {{0x115e,5},{0x62f3,4}}, + {{0xe7e1,8},{0xe11,1}}, {{0x236c,5},{0xf12,3}}, {{0x29c0,3},{0x1f7c,3}}, {{0x10b7,2},{0x6ff0,7}}, + {{0xe,1},{0x1bd,2}}, {{0x2948,4},{0x2c6a,5}}, {{0x7602,4},{0xe0d,2}}, {{0xed4b,6},{0x155e,3}}, + {{0x1fa26,5},{0x7251,4}}, {{0x4853,4},{0x29f3,3}}, {{0x2ba5,1},{0x180d,4}}, {{0x5e58,6},{0xebdb,5}}, + {{0x10188,5},{0x61bb,4}}, {{0x6fff,2},{0x1a71,3}}, {{0x30ed3,4},{0x2afd4,2}}, {{0x2572b,6},{0x33d3,2}}, + {{0x5342,3},{0xa,2}}, {{0x2b84,2},{0x27dc,4}}, {{0x4527,11},{0x1fc7,3}}, {{0xb9fd,6},{0x6008,3}}, + {{0x69,1},{0x556,2}}, {{0x3bb1,8},{0x3075,6}}, {{0x1876e,4},{0x25d5f,4}}, {{0x28fda,4},{0x48da,2}}, + {{0x29de,4},{0xcd3,1}}, {{0xffc,3},{0xe69,5}}, {{0x1be,2},{0x534,2}}, {{0x1687,5},{0xcd3,2}}, + {{0xcb8,1},{0x7974,4}}, {{0x4553,4},{0x301f,8}}, {{0x336,2},{0x9f,1}}, {{0x1a26d,6},{0xe11,1}}, + {{0x16b7,5},{0x27dc,4}}, {{0x4765,3},{0x1a66,1}}, {{0x1677,4},{0xeac,2}}, {{0x1c6eb,7},{0xe95,2}}, + {{0x29c0,3},{0x18776,2}}, {{0x5534,4},{0x13dd8,6}}, {{0x3823,10},{0xfdf,4}}, {{0x18f7,4},{0x30f5,4}}, + {{0x28f78,5},{0xf7a,2}}, {{0x1019,4},{0xc3fb,5}}, {{0x9d35,7},{0x1392,3}}, {{0x262cb,5},{0x2271,3}}, + {{0x7414,3},{0x2d254,3}}, {{0x7416,1},{0xeee,3}}, {{0x12e5,3},{0x113f,2}}, {{0x15af,3},{0xef5,2}}, + {{0x1a66,1},{0xcc9,2}}, {{0x1b974,6},{0x14a2,3}}, {{0x170ba,5},{0x9a6,1}}, {{0x10cb4,6},{0x1c6d,5}}, + {{0x74e4,4},{0x3577,5}}, {{0x46bf,1},{0x1150,2}}, {{0x19b7,3},{0x2d524,2}}, {{0xccb,2},{0x2c21,8}}, + {{0xcc1,1},{0xd15f,3}}, {{0x16a7,13},{0xec3,3}}, {{0x126d2,7},{0x1392,3}}, {{0x46bd,3},{0xec6,3}}, + {{0x1ff7,3},{0xeb5,2}}, {{0x3bdb,6},{0xcc9,2}}, {{0xee4,4},{0xf2fb,7}}, {{0x1795c,7},{0xf86,3}}, + {{0x17de6,5},{0x2f41,5}}, {{0x4765,3},{0x2d11,3}}, {{0x7998,4},{0x82bc,3}}, {{0x1ebc,5},{0xb3c8,3}}, + {{0xa,2},{0xd7ec,4}}, {{0xb185,6},{0xcc7,1}}, {{0xb15d,7},{0x2781,5}}, {{0x7d19,6},{0x9c88,5}}, + {{0x4049,9},{0xf84,5}}, {{0x7414,3},{0xe99,1}}, {{0x2de75,3},{0x7a,2}}, {{0x7518,5},{0x1215,4}}, + {{0x1a66,1},{0x4457,2}}, {{0x19b9,1},{0x41e9,3}}, {{0x4,1},{0xf1f,3}}, {{0xe6f,3},{0xbdf2,3}}, + {{0x239e,5},{0x1679,3}}, {{0x5638,11},{0xed9,2}}, {{0x4199,5},{0xcc1,1}}, {{0x20599,1},{0xb74,3}}, + {{0xef7,3},{0x2f2e,3}}, {{0xbb89,4},{0xe22,2}}, {{0x329d,6},{0x1099,8}}, {{0xe1f,3},{0xef40,5}}, + {{0x13a7,7},{0x3324,5}}, {{0x3a29,5},{0x5fbc,8}}, {{0x46bd,3},{0x5669,2}}, {{0x4574,4},{0x10d9,2}}, + {{0xb69d,4},{0xe22,2}}, {{0x2de63,3},{0x10a,2}}, {{0xaaf,2},{0x3083b,4}}, {{0xf15,1},{0x8c67,4}}, + {{0x12e7,3},{0x150e,6}}, {{0x12e5,3},{0x14f0,7}}, {{0xe1f,3},{0x13963,5}}, {{0xe1f,3},{0x20550,2}}, + {{0x478f,3},{0x9b4d,4}}, {{0x2de75,3},{0x369,2}}, {{0x7312,6},{0xfdf,4}}, {{0xf4f,1},{0x16c4c,4}}, + {{0x9af,2},{0x308a3,2}}, {{0x178d,3},{0xfdd,4}}, {{0xcd3,2},{0xa,2}}, {{0x7ae5,10},{0xe95,2}}, + {{0x24b83,5},{0x6,1}}, {{0x116f,8},{0xfcd,4}}, {{0x3a29,4},{0x62f3,4}}, {{0x12c3,4},{0xf20,2}}, + {{0x1ed80,4},{0x11d2,3}}, {{0xe08,1},{0x5,2}}, {{0x1ac,2},{0x1ac,2}}, {{0x227f,3},{0x2dd7,4}}, + {{0xe21,1},{0xe33,1}}, {{0xe2f,1},{0x48e0,5}}, {{0x10e8f,3},{0x1b41,6}}, {{0xf77,4},{0x134f0,6}}, + {{0x8cf1,6},{0x1d32,4}}, {{0x1967,3},{0x1c0f,3}}, {{0xe0d,2},{0x10cb,3}}, {{0xec0,3},{0xe0d,2}}, + {{0xffc5,9},{0xfe6,2}}, {{0xb96d,5},{0x151c,4}}, {{0x4853,3},{0x20370,3}}, {{0x1949,3},{0x8bcb,6}}, + {{0x1849,3},{0x1d2f,6}}, {{0x45df,4},{0x45e3,8}}, {{0x19f9,2},{0x1bef,2}}, {{0x5541,6},{0x1064,3}}, + {{0x22e5,4},{0x5f53,9}}, {{0x9e31,7},{0x1392,5}}, {{0x70fb,8},{0x305a,5}}, {{0x46af,3},{0x74f9,2}}, + {{0x18d90,8},{0xa,2}}, {{0xe22,2},{0xe09,1}}, {{0x1967,3},{0x2cc00,3}}, {{0xf0a,3},{0x17b0,3}}, + {{0xcd3,1},{0xf62,3}}, {{0x72cf,6},{0xde9b,4}}, {{0x4781,3},{0x2d3ab,2}}, {{0xe,1},{0x12e,2}}, + {{0x2939,4},{0x293d,4}}, {{0x46af,3},{0x3372,4}}, {{0x3c83,7},{0x3c8a,7}}, {{0x780c,2},{0x10a6,3}}, + {{0x10e77,5},{0x6,1}}, {{0xede,1},{0xffc,3}}, {{0x824d,4},{0xdde5,4}}, {{0x2457b,5},{0x584a,3}}, + {{0x3,1},{0xccd,1}}, {{0x7941,6},{0x1c14,5}}, {{0x14a7,4},{0x1a11b,5}}, {{0x201d0,5},{0xe0d,2}}, + {{0x38ec,3},{0xed9,2}}, {{0x4aff,5},{0xe78,2}}, {{0x712f,4},{0xe0a,1}}, {{0x12d4,3},{0x24ce6,5}}, + {{0x2e28,3},{0xe1c,3}}, {{0x1252,3},{0xcc3,2}}, {{0xbd9b,3},{0x1143,3}}, {{0xc017,2},{0x109b,2}}, + {{0x74e4,5},{0x38b4,7}}, {{0x127cc,7},{0xe11,1}}, {{0x1577,7},{0x189f,3}}, {{0x1567,3},{0xfb1,3}}, + {{0x1a66,1},{0xe11,1}}, {{0x94e9,7},{0x3c9a,5}}, {{0x19b7,3},{0x11b55,8}}, {{0xfb0,2},{0xf1a,2}}, + {{0x1ff7,3},{0x1189,3}}, {{0xed1,4},{0x1e3c,6}}, {{0xfcb,3},{0xe6b,4}}, {{0x17678,5},{0x8,1}}, + {{0x2b090,6},{0x2b012,6}}, {{0x1787,6},{0x51c8,5}}, {{0x3b79,11},{0xec6,3}}, {{0x24143,7},{0x4,1}}, + {{0x2b46,8},{0xe92,3}}, {{0x4539,2},{0x1303,3}}, {{0xc9ac,5},{0x2e2c,3}}, {{0xef7,4},{0x162cc,6}}, + {{0x4171,3},{0x1660b,5}}, {{0x10e7,5},{0x3537,2}}, {{0x1ff7,3},{0x19070,5}}, {{0xe89,2},{0x8,1}}, + {{0x8d2d,7},{0x13e3f,3}}, {{0xe1f,3},{0x2e32,3}}, {{0x471f,7},{0x239e,5}}, {{0x250e3,5},{0x8,1}}, + {{0x51b9,3},{0x14a2,3}}, {{0xedd,1},{0x4767,1}}, {{0x133e8,7},{0x15e9,3}}, {{0x23a9b,5},{0x3075,3}}, + {{0x2ba5,1},{0xcc9,2}}, {{0xb841,5},{0xebc,2}}, {{0x3537,2},{0x1cd3,2}}, {{0x24bed,3},{0xed6,2}}, + {{0x2420,9},{0x2429,6}}, {{0x9,1},{0x1f38,1}}, {{0xf15,1},{0xe7a,1}}, {{0x1b47,8},{0x1b4f,7}}, + {{0x2bab,6},{0x2bb1,8}}, {{0xcd3,1},{0x10d3,3}}, {{0xe19,1},{0x1692,2}}, {{0x47d5,9},{0xe69,5}}, + {{0xcc8,2},{0xed6,2}}, {{0x1e8a4,4},{0x1b4b0,3}}, {{0x19b9,1},{0x283fa,4}}, {{0xe7f,2},{0xcdda,2}}, + {{0x4f91,8},{0xe6b,3}}, {{0x5534,4},{0xb9f4,3}}, {{0xf89,3},{0xec6,3}}, {{0x1747,4},{0xaa5a,7}}, + {{0x29cf,3},{0x14a2,3}}, {{0x1977,3},{0x24661,2}}, {{0x4765,3},{0x92ea,4}}, {{0x18426,5},{0x1571,4}}, + {{0x2847c,5},{0x8,2}}, {{0x4765,3},{0xf1f,3}}, {{0x4217,5},{0x2091,4}}, {{0x2a29,5},{0x162c,9}}, + {{0x8d,1},{0x4bd,2}}, {{0x1796b,4},{0x5,1}}, {{0x48d6,2},{0x74fb,3}}, {{0xb69d,4},{0x232a,5}}, + {{0x12f6,4},{0x164a2,6}}, {{0x4326,2},{0x178e,3}}, {{0xef7,4},{0x2f41,5}}, {{0x26767,3},{0xf0c,1}}, + {{0x46af,3},{0x19070,5}}, {{0x442b,3},{0xcce,2}}, {{0xe22,3},{0x28f8,5}}, {{0xf0c,1},{0x1693,3}}, + {{0xeac,2},{0x142a,3}}, {{0xe0b,2},{0x45c7,2}}, {{0x8ccd,9},{0xec6,3}}, {{0x1227c,7},{0xcc9,2}}, + {{0x9a6,1},{0x6008,3}}, {{0x314d,6},{0x2317,5}}, {{0xf77,3},{0x15f70,5}}, {{0xec64,6},{0x2eb6,4}}, + {{0x22a63,5},{0xed6,2}}, {{0x1109,5},{0x4017,6}}, {{0x247a,5},{0xb496,3}}, {{0x79dd,7},{0xc3e6,4}}, + {{0x30f0f,4},{0xc78,2}}, {{0x2bae,2},{0x8,1}}, {{0x451e,4},{0x4522,5}}, {{0xc96a,5},{0x79a7,6}}, + {{0x1dcb4,2},{0x78ed,2}}, {{0x18773,2},{0x28fc2,3}}, {{0xc1d1,4},{0xe5e,2}}, {{0xf0a,3},{0x1e2f0,2}}, + {{0x116b7,6},{0x113a5,5}}, {{0xb979,4},{0x250a7,4}}, {{0xcc8,1},{0x4fa8,3}}, {{0x2de63,4},{0x358,2}}, + {{0x18771,3},{0x2941b,3}}, {{0xbb8b,2},{0xfb8,3}}, {{0x12d4,3},{0x1f875,1}}, {{0xcd3,2},{0x1059,3}}, + {{0x18c52,3},{0x1025,1}}, {{0x1edab,6},{0xcc9,2}}, {{0x11ca7,5},{0x156a,3}}, {{0x4,1},{0x7d58,8}}, + {{0x4cb9,4},{0x39bd,4}}, {{0x2de75,3},{0x56,2}}, {{0xe97,3},{0x48db,2}}, {{0x146d,4},{0x1c8c,5}}, + {{0x710a,3},{0x2d9a,8}}, {{0x1a66,1},{0xe5e,2}}, {{0x13a7,7},{0x7c24,5}}, {{0x11515,5},{0x2468,3}}, + {{0x2de3f,3},{0x1357,1}}, {{0x10c5,4},{0x1a63,3}}, {{0x3329,7},{0x104a,4}}, {{0x2939,4},{0xed6,2}}, + {{0x478f,3},{0x3594,5}}, {{0x2e27d,1},{0x2b4e9,2}}, {{0x12d4,3},{0x15284,4}}, {{0xf79,3},{0x1150,2}}, + {{0xcd3,2},{0x1150,2}}, {{0x120c,3},{0x104d4,3}}, {{0xc39d,6},{0x126a,4}}, {{0x1967,3},{0x136f,2}}, + {{0x2264,5},{0x2269,4}}, {{0xe22,3},{0xe22,2}}, {{0x33a7,5},{0x10f2,6}}, {{0x2966,4},{0x6d42,3}}, + {{0x19f7,4},{0xf24,2}}, {{0x46af,3},{0x2b469,2}}, {{0x6cde,4},{0x10cb,4}}, {{0x85e9,9},{0x1d7e,3}}, + {{0x7416,1},{0x94b5,3}}, {{0x1537,4},{0xed6,2}}, {{0x12e5,3},{0xf7a,2}}, {{0x1677,4},{0x10b9,2}}, + {{0x336,2},{0x57,1}}, {{0x2966,4},{0xb410,4}}, {{0x15ca,3},{0x119a1,4}}, {{0x7611,3},{0x9,1}}, + {{0x20409,5},{0xe92,3}}, {{0x479d,4},{0x9fcd,8}}, {{0x3a0f,5},{0xe69,5}}, {{0xc281,4},{0x2aff8,2}}, + {{0x1f875,1},{0xcd3,1}}, {{0x33d1,8},{0x1b41,6}}, {{0x94b2,4},{0x3075,3}}, {{0x1e9e,5},{0xeca,3}}, + {{0x759a,5},{0xdd0a,3}}, {{0x1f97b,4},{0x48d0,2}}, {{0x272,2},{0x45,1}}, {{0x308e9,2},{0x205a5,1}}, + {{0x2948,4},{0x1a57,4}}, {{0x1cdc,6},{0x3075,4}}, {{0x1118a,2},{0x78ed,2}}, {{0x3356,4},{0x7bad,4}}, + {{0x2a29,7},{0x3694,7}}, {{0xf70c,5},{0x1e5e,4}}, {{0x18f7,4},{0x2f2e,3}}, {{0x4519,4},{0x2c86,2}}, + {{0x116e3,6},{0xe11,1}}, {{0x109b,2},{0x2477,3}}, {{0xc7d3,8},{0xf86,3}}, {{0x283aa,5},{0xcd4,2}}, + {{0x545,2},{0x8d,1}}, {{0x16dfe,5},{0x12be,5}}, {{0x1f25,8},{0xe0b,4}}, {{0xb3f1,3},{0x1252,3}}, + {{0xcbf,2},{0x6fe1,3}}, {{0x19b7,3},{0x2bf6e,3}}, {{0x112b,14},{0x1004,3}}, {{0x45a5,6},{0x175bd,4}}, + {{0x473b,5},{0xf86,3}}, {{0xccd,1},{0x288b,2}}, {{0x29de,4},{0x240df,4}}, {{0xe2f,1},{0x1252,3}}, + {{0x3b5d,5},{0x6cff,4}}, {{0x29a2,5},{0xe22,2}}, {{0xe08,1},{0x20bed,3}}, {{0x562b,5},{0x1de7,3}}, + {{0x1977,3},{0xe7a,1}}, {{0x20314,6},{0x1059,3}}, {{0x4765,3},{0x5edd,3}}, {{0x3e27,8},{0x27dc,4}}, + {{0xe104,3},{0xa,2}}, {{0x4e4c,7},{0x57e0,5}}, {{0xcc1,2},{0x13e1,5}}, {{0x4439,9},{0xf84,5}}, + {{0x7414,3},{0x113e,3}}, {{0x45ee,3},{0xf7a,2}}, {{0x18764,5},{0x1fc7,3}}, {{0x2dcdd,4},{0xe5e,2}}, + {{0xf0c,1},{0xccd,4}}, {{0xaebd,5},{0xcc8,1}}, {{0xf0a,3},{0x1098,2}}, {{0xecb,2},{0xcba,3}}, + {{0x119a,3},{0xa,2}}, {{0x3537,2},{0x1783,4}}, {{0x578a,5},{0x90ce,7}}, {{0x2231,5},{0x9aa6,7}}, + {{0xae15,6},{0x181b,3}}, {{0x11ad9,5},{0xeb4,3}}, {{0xcc61,5},{0xe33,1}}, {{0xe97,3},{0x1b0d,3}}, + {{0x1b78,8},{0x1b80,3}}, {{0xe0f,1},{0x2e6f9,4}}, {{0x2b48,2},{0x354f,4}}, {{0x17c7e,6},{0x8,1}}, + {{0x1025,1},{0x3,1}}, {{0x2b19,5},{0x18a6b,5}}, {{0xcce,2},{0x3170,3}}, {{0xcc1,1},{0xfa6,3}}, + {{0x4ef5,4},{0x5538,2}}, {{0x12152,2},{0x17661,3}}, {{0x4767,1},{0x442d,1}}, {{0x27e0,3},{0xcc91,4}}, + {{0x4597,5},{0xcc8,2}}, {{0x57a4,7},{0x3801,6}}, {{0x189bc,7},{0x1524,3}}, {{0xc02d,7},{0x11eb3,4}}, + {{0x8ccd,6},{0x1de7,3}}, {{0xe1f,3},{0x14f0,3}}, {{0xb649,5},{0x142d,3}}, {{0x73ed,4},{0x2463,4}}, + {{0x19523,7},{0xcc9,2}}, {{0x478f,3},{0x8129,4}}, {{0x103dc,4},{0xec6,3}}, {{0xb541,7},{0x8128,5}}, + {{0x488b,4},{0x1d669,5}}, {{0x9a89,9},{0x14a2,3}}, {{0x1a07,3},{0x15e9,3}}, {{0x2977,4},{0x10ba,6}}, + {{0xe97,3},{0xcbe,3}}, {{0x1e9e,4},{0x2c33,4}}, {{0x15e7,5},{0x1b20e,4}}, {{0x2948,3},{0x28d3d,4}}, + {{0x15bf7,4},{0xe11,1}}, {{0x4765,3},{0x1462,5}}, {{0x2de63,4},{0x21,1}}, {{0xf32,2},{0xf7a,2}}, + {{0x15398,3},{0xf7a,2}}, {{0xe83,3},{0x1f38,1}}, {{0xf77,5},{0x1604e,4}}, {{0x18d7,9},{0x1059,3}}, + {{0x6f8f,8},{0xebb,3}}, {{0xebeb,5},{0xc382,5}}, {{0x46af,3},{0x1e7ac,5}}, {{0xe83,3},{0xa414,5}}, + {{0x1ebe,4},{0xe11,1}}, {{0x4767,1},{0xfcb,2}}, {{0x27ef,4},{0xedf6,5}}, {{0x7911,3},{0x5,1}}, + {{0x24a4b,6},{0xcd3,2}}, {{0x18ede,4},{0xe59,2}}, {{0x30311,3},{0xc16,2}}, {{0x1db1,3},{0x7a36,3}}, + {{0xc3d4,8},{0x23e1,3}}, {{0x44ef,5},{0x1b8a,7}}, {{0x122d,2},{0x1371,5}}, {{0x445b,2},{0xf4f,1}}, + {{0x6b8c,5},{0xee9,2}}, {{0x8379,8},{0x2872,4}}, {{0xcc7,1},{0xe16,1}}, {{0x37c3,5},{0x37c8,5}}, + {{0xeb4,2},{0xcd3,1}}, {{0x12fb0,5},{0x320c,5}}, {{0x2669,10},{0xe11,1}}, {{0x75b4,5},{0x7d38,5}}, + {{0x75b4,4},{0x25ac7,4}}, {{0x1109,5},{0xed9,2}}, {{0xe97,3},{0x2e745,2}}, {{0xcb8,1},{0x190ca,5}}, + {{0x70ad,3},{0x8666,2}}, {{0xbba1,4},{0x1f2da,5}}, {{0x1677,4},{0xb19c,4}}, {{0x5de3,8},{0x13e3,4}}, + {{0x1db3f,5},{0xe33,1}}, {{0x11a6,3},{0x6c88,5}}, {{0xe97,3},{0x1db3a,2}}, {{0x1a66,1},{0xb428,3}}, + {{0x3203,5},{0xe6b,2}}, {{0x4049,9},{0xf7a,2}}, {{0x23953,5},{0x2,1}}, {{0x23c4b,3},{0x1dcb4,2}}, + {{0x1969,1},{0x1a66,1}}, {{0x3034d,2},{0x28b33,1}}, {{0x1969,1},{0x3e23,4}}, {{0x2de63,3},{0x9e,2}}, + {{0xf15,1},{0x15fc,2}}, {{0x442b,3},{0x8441,4}}, {{0x26763,4},{0x1969,1}}, {{0x7911,3},{0x20fe5,4}}, + {{0x53ef,6},{0x138e,3}}, {{0x16692,6},{0xf86,3}}, {{0xbfb5,9},{0x1004,3}}, {{0x2,2},{0x7efc,4}}, + {{0x1f5f9,2},{0x1057,1}}, {{0x1927,4},{0xa914,4}}, {{0x2b46,4},{0x6,1}}, {{0x8cfd,7},{0x1c8c,5}}, + {{0x41a7,4},{0x9a8,1}}, {{0x24b6,5},{0x4a01,3}}, {{0x1ab1,5},{0x49f3,8}}, {{0x1490a,5},{0xa744,5}}, + {{0x1830,3},{0x6,1}}, {{0x1ff7,3},{0xfee4,4}}, {{0xed9,2},{0x14ab,3}}, {{0x325,2},{0xe,1}}, + {{0x5199,8},{0xf7a,2}}, {{0x17f62,5},{0xc95b,4}}, {{0xf0c,1},{0x2129,4}}, {{0x1399c,6},{0x1a9a,4}}, + {{0xb721,6},{0xb727,6}}, {{0x1967,4},{0x1e749,5}}, {{0x11b26,5},{0x5538,2}}, {{0x3a61,9},{0x27dc,4}}, + {{0x12e5,3},{0x78ed,2}}, {{0x1b5f9,5},{0xdd0a,3}}, {{0x10238,6},{0x4aef,3}}, {{0x1780,3},{0xec6,3}}, + {{0x3211,7},{0x1024,7}}, {{0x112b8,5},{0xe22,2}}, {{0x10efb,5},{0xcbf,2}}, {{0xf0a,3},{0x23e99,2}}, + {{0x2b55,5},{0x59b4,3}}, {{0x29895,2},{0x2b482,4}}, {{0x1766a,2},{0x1db45,2}}, {{0x11ad,3},{0x2872,4}}, + {{0x2,2},{0x1287,5}}, {{0xb39d,8},{0x4665,4}}, {{0x12e5,3},{0x2daf4,3}}, {{0x260fb,4},{0x445b,3}}, + {{0x57,1},{0x4bd,2}}, {{0xe6f,3},{0xccb,3}}, {{0x19b7,3},{0x22f8e,5}}, {{0x11788,4},{0x101f,2}}, + {{0x205a9,1},{0x31444,2}}, {{0xf77,3},{0xcc7,1}}, {{0x8,1},{0xe1c,3}}, {{0x16f9,4},{0x170d,10}}, + {{0x12d4,3},{0x1d10,4}}, {{0xcc7,1},{0x7f45,5}}, {{0x105f,3},{0x207ac,5}}, {{0x19c7,6},{0xa8ab,6}}, + {{0x1ff7,7},{0x1ffe,8}}, {{0x10c7,4},{0x10cb,4}}, {{0x22a2,4},{0xe1b,3}}, {{0xf11,1},{0x178d,3}}, + {{0x3115,8},{0x1663,4}}, {{0x70ad,3},{0x1d2e6,4}}, {{0xb685,5},{0x9a6,1}}, {{0x5feb,6},{0x5ff1,7}}, + {{0x29cf,3},{0x149f,3}}, {{0xf1a,2},{0x1569,2}}, {{0x1535a,7},{0xec6,3}}, {{0x75db,4},{0x15e6d,3}}, + {{0x22a3,2},{0xa,2}}, {{0xf4f,1},{0xe5e,3}}, {{0x6b7f,9},{0x3bec,4}}, {{0x19b7,3},{0x24d5e,2}}, + {{0x20591,4},{0x20591,4}}, {{0x6c83,5},{0x79cd,4}}, {{0xc05d,4},{0x103dc,4}}, {{0x10cb6,2},{0x2845,4}}, + {{0x7414,3},{0x1a56,2}}, {{0x9,1},{0xfb0,2}}, {{0x187a0,7},{0xb67b,3}}, {{0x1be,2},{0x666,2}}, + {{0x4ac,2},{0x302,2}}, {{0x1ceb,6},{0xce40,5}}, {{0xb3a9,5},{0x1e5e,4}}, {{0x113ec,5},{0xe89,2}}, + {{0x19b7,3},{0x1e872,2}}, {{0xe0c,2},{0x1523,4}}, {{0xf0c,1},{0xcce,3}}, {{0x578,2},{0xd,1}}, + {{0x114d,5},{0xccb,2}}, {{0x19b7,3},{0x217ad,3}}, {{0x39b9,4},{0xcb33,5}}, {{0xf48e,6},{0x30f4,5}}, + {{0x6a3a,10},{0x1059,3}}, {{0x281c,8},{0x2f26,5}}, {{0x10637,7},{0x3a02,4}}, {{0x5717,4},{0x13e3,4}}, + {{0xf89,3},{0x73d6,2}}, {{0x3afb,9},{0xe69,5}}, {{0xc15b,2},{0x1077a,5}}, {{0x10e8d,5},{0x169e,3}}, + {{0x1677,4},{0x1664,2}}, {{0xcb8,1},{0xcba,2}}, {{0x3a6f,9},{0x23df,5}}, {{0x417d,5},{0xf381,3}}, + {{0x4853,3},{0x110fb,3}}, {{0x105f,3},{0x12bf,4}}, {{0x14a7,4},{0x4c15,4}}, {{0x47c9,3},{0x2fcc,4}}, + {{0xe,1},{0x140,2}}, {{0x4225,4},{0xe71,1}}, {{0xbdb3,3},{0xe22,3}}, {{0x2e804,6},{0xe41,2}}, + {{0x9321,9},{0x2d7c,3}}, {{0x205a4,2},{0x2e77c,3}}, {{0x712f,4},{0x10d9,2}}, {{0xe08,1},{0xe6b,2}}, + {{0x110d4,6},{0xf7a,2}}, {{0x4d6f,9},{0xe77,3}}, {{0x2501,5},{0x8e22,5}}, {{0x17772,8},{0x2,1}}, + {{0x17f9e,4},{0x17fca,6}}, {{0xbba1,7},{0x8e7f,5}}, {{0x3dd3,6},{0x181b,3}}, {{0x17434,7},{0xf91,3}}, + {{0x1bbf,4},{0x8,1}}, {{0x2501,5},{0xfe6,4}}, {{0x27e0,4},{0x15f48,6}}, {{0x1f006,6},{0xee9,3}}, + {{0xf24,2},{0xe8a,2}}, {{0xf0c,1},{0xcd3,1}}, {{0x69,1},{0x49b,2}}, {{0x1834a,7},{0x18351,3}}, + {{0xef7,3},{0x268c,2}}, {{0x25613,5},{0xe5e,2}}, {{0x7a91,6},{0x6bad,6}}, {{0x23143,6},{0x4143,2}}, + {{0x12d4,5},{0x146d,9}}, {{0x12f6a,6},{0xed6,2}}, {{0x17ca6,5},{0xfb8,3}}, {{0xbb65,5},{0x9aee,7}}, + {{0x16584,6},{0x57d2,4}}, {{0xcd3,2},{0xfcff,6}}, {{0x1667,7},{0x5ddd,6}}, {{0x12e5,3},{0x248ff,3}}, + {{0xcd3,2},{0x17ec,4}}, {{0xe99,1},{0xdb73,3}}, {{0x1ded5,5},{0xccc,2}}, {{0x2de75,3},{0xb0,2}}, + {{0xcc8,1},{0x1e65,3}}, {{0x4ee8,4},{0xee9,2}}, {{0x2917,3},{0x3,1}}, {{0x127ea,6},{0xfcd,4}}, + {{0xe6f,3},{0x8492,7}}, {{0x24ddb,5},{0x1d74,3}}, {{0x48c6,3},{0x1ea2c,4}}, {{0x445b,2},{0x4461,2}}, + {{0x739f,9},{0x58cb,4}}, {{0xe7d,2},{0xe25,2}}, {{0x1be,2},{0x545,2}}, {{0x23743,6},{0xe95,2}}, + {{0xe11,1},{0x13053,4}}, {{0x16b7,4},{0x331f,3}}, {{0xe3ae,4},{0xe3b2,4}}, {{0x7f41,4},{0x5ea9,3}}, + {{0x45eb,5},{0xed9,2}}, {{0x9159,8},{0xeee,3}}, {{0xb559,9},{0x1ea3,3}}, {{0x7416,1},{0x48d3,2}}, + {{0xb379,3},{0x71b8,3}}, {{0x1003,3},{0xe86,2}}, {{0x353d,7},{0x1024,7}}, {{0x1e1c9,6},{0x158f,3}}, + {{0x201d0,5},{0x15af,3}}, {{0x14f9,3},{0x14f0,7}}, {{0x3125,4},{0x1f39,6}}, {{0x29a2,4},{0x308f,3}}, + {{0x1567,3},{0x1f9f,3}}, {{0xe1f,3},{0x246c6,5}}, {{0xe97,3},{0x1bef,2}}, {{0x1607,5},{0x59cb,8}}, + {{0x4,1},{0xebc,2}}, {{0xf89,3},{0x1e65,3}}, {{0x1155,2},{0x3473,6}}, {{0xf4f,1},{0x1c964,6}}, + {{0x127f,4},{0x8ea8,5}}, {{0xac05,7},{0x9b09,4}}, {{0x1ff7,3},{0x1393,3}}, {{0x29cf,3},{0x1230c,2}}, + {{0x46af,3},{0xe592,8}}, {{0x1245,3},{0xfb8,3}}, {{0x10ef0,5},{0x28e3,4}}, {{0x7b45,4},{0xeb7,7}}, + {{0x122a,6},{0xe7f,3}}, {{0x19b7,3},{0x2c910,3}}, {{0x1467,4},{0x9e08,5}}, {{0x23e53,7},{0x6,1}}, + {{0xb721,6},{0x52fe,5}}, {{0xe3d,6},{0x2b01e,6}}, {{0x2c15,4},{0xec6,3}}, {{0x1025,1},{0xcc5,2}}, + {{0x1715c,3},{0x1dceb,4}}, {{0x2edc4,4},{0xe11,1}}, {{0xe88,3},{0x1050,3}}, {{0x5ef,2},{0xd,1}}, + {{0xcdab,6},{0xcdbc,5}}, {{0x2e76b,3},{0x260,2}}, {{0xd4a1,8},{0xcc9,2}}, {{0xb985,4},{0xe86,2}}, + {{0xf65,4},{0x3739,2}}, {{0x1db2d,6},{0x1db33,3}}, {{0x10f5e,8},{0xec6,3}}, {{0xead,3},{0xf86,2}}, + {{0x171e6,5},{0xfb0,2}}, {{0x4791,2},{0x104a,3}}, {{0x4597,6},{0xe2b,2}}, {{0x17664,5},{0xede,1}}, + {{0xe1f,3},{0xbd18,5}}, {{0xf18,2},{0x3922,4}}, {{0xf7a,2},{0xe22,2}}, {{0xe5b,3},{0x898b,6}}, + {{0x1bd5b,5},{0x1b03,3}}, {{0x1678c,7},{0x4aef,3}}, {{0x478f,3},{0x20550,2}}, {{0xf9f,4},{0x2317,5}}, + {{0x8ee9,9},{0x127c,3}}, {{0x2015,3},{0xe22,2}}, {{0xb649,5},{0xcc6,2}}, {{0x10e2a,4},{0x1030e,5}}, + {{0x1ff7,3},{0x1569,2}}, {{0xb69d,4},{0x2ee9,3}}, {{0x120f,3},{0x6,1}}, {{0x3a29,4},{0x4538,3}}, + {{0x4599,2},{0xf9d,3}}, {{0x1567,6},{0x568c,5}}, {{0x1b30e,5},{0x2917,4}}, {{0x7414,3},{0x2f049,2}}, + {{0x1166,3},{0x9a9,2}}, {{0xb349,7},{0x1bf0,2}}, {{0xcb8,1},{0x4a00,4}}, {{0xaaf,2},{0x205a0,2}}, + {{0x7416,1},{0x2dd7,4}}, {{0x4765,3},{0xeb4,3}}, {{0x1f5a6,6},{0xec6,3}}, {{0x3,2},{0x11a6,2}}, + {{0x1821e,5},{0x4f20,3}}, {{0x1d7e,3},{0xe10,2}}, {{0x2ba5,1},{0x1461f,4}}, {{0x13fd2,7},{0x4aef,3}}, + {{0x12e5,3},{0x11186,2}}, {{0xf11,1},{0xe89,2}}, {{0x1168b,8},{0x13e1,3}}, {{0x14e3c,5},{0x1279,5}}, + {{0x2e28b,2},{0x28b33,1}}, {{0x2489,5},{0x5d4d,7}}, {{0x2858,4},{0x7d98,4}}, {{0x26b4,7},{0x2f4c,4}}, + {{0xbba1,7},{0x11671,4}}, {{0xf77,6},{0xc342,3}}, {{0x712f,4},{0xcb1b,4}}, {{0x118b3,5},{0x23df,5}}, + {{0x9a8,1},{0xed9,2}}, {{0xcc8,1},{0x181b,3}}, {{0x2939,4},{0x2821,3}}, {{0x1b06b,6},{0x2b7a,3}}, + {{0xbc01,4},{0xfb0,3}}, {{0x23e95,3},{0x23e98,2}}, {{0x1007,5},{0x2094,3}}, {{0x1163e,6},{0xfe6,2}}, + {{0x1969,1},{0x1393,3}}, {{0x4765,3},{0x142a,3}}, {{0xe2b,2},{0x1523,4}}, {{0x78f9,1},{0x3075c,6}}, + {{0x2e27d,1},{0xaf4,2}}, {{0x29a2,5},{0x2c30,5}}, {{0xf69,3},{0xe78,1}}, {{0xe,1},{0x523,2}}, + {{0xeac,2},{0xf1a,2}}, {{0xcb8,1},{0x1059,3}}, {{0x1969,1},{0x910c,4}}, {{0xcc7,1},{0x2075,3}}, + {{0x1ddbe,5},{0x8,1}}, {{0x28fbe,4},{0x28fc2,3}}, {{0xe1f,3},{0xeb4,2}}, {{0x19b9,1},{0xe2f,1}}, + {{0x70ad,3},{0x13fb9,5}}, {{0x46af,3},{0xccc,2}}, {{0x16a7,5},{0xcdda,2}}, {{0x64e5,8},{0xeee,3}}, + {{0x8ce2,3},{0xe86,2}}, {{0x4b11,4},{0xe78,1}}, {{0x1747,4},{0xf4cb,5}}, {{0x11b5,2},{0x4328,7}}, + {{0x1ccd,5},{0x10d3,3}}, {{0x22e5,6},{0x10bc,9}}, {{0xfac9,5},{0x10203,3}}, {{0x442b,3},{0x2ca18,2}}, + {{0x4765,3},{0x1e2f0,2}}, {{0xb84f,6},{0xe11,1}}, {{0xf0a,3},{0x16903,3}}, {{0xb541,6},{0x1cf3,3}}, + {{0x246a3,5},{0x2271,3}}, {{0x311a9,2},{0x2b0dc,2}}, {{0x4791,2},{0xf16,2}}, {{0x111a,3},{0x4,1}}, + {{0x8ff1,8},{0xfdf,4}}, {{0xb379,3},{0x20543,2}}, {{0x18f7,7},{0x1ba8,5}}, {{0x19b7,3},{0xc39f,4}}, + {{0x3e0,2},{0x21,1}}, {{0xf15,1},{0x1185,3}}, {{0x29cf,3},{0x24d5e,2}}, {{0xe4f,6},{0xe55,6}}, + {{0x14d4c,5},{0xef5,2}}, {{0x9f81,6},{0x4d85,4}}, {{0xe0f,2},{0xfcff,6}}, {{0x23bf3,6},{0xe67,2}}, + {{0x1947,9},{0x1440,7}}, {{0x19b7,3},{0xf59,3}}, {{0x1373,2},{0xcd3,1}}, {{0xe16,3},{0x1ea1,5}}, + {{0x253db,5},{0x11d9,3}}, {{0x10cb,4},{0xcc3,2}}, {{0x7088,3},{0xb35a,7}}, {{0x1a29,2},{0x149c,3}}, + {{0x5534,4},{0xf8e,5}}, {{0x112ba,3},{0x1b9d,4}}, {{0xe97,3},{0x5b06,4}}, {{0x19b7,3},{0x149f,3}}, + {{0x2e866,2},{0x2e7da,2}}, {{0xe97,3},{0x29675,3}}, {{0x4781,3},{0xfbb,3}}, {{0x417d,5},{0xe1c,3}}, + {{0xcb7,2},{0xe22,2}}, {{0x8241,8},{0xef3,4}}, {{0xf0a,3},{0x18ef,3}}, {{0x11b3,5},{0x1b7f6,4}}, + {{0x2975,12},{0x1be9,3}}, {{0xf0d,3},{0x1fbe,3}}, {{0xb9e5,6},{0xb9eb,6}}, {{0x4b61,6},{0xe95,2}}, + {{0x343a,6},{0xe11,1}}, {{0x1ef8,9},{0xf91,3}}, {{0x2399,10},{0x10e2,5}}, {{0x170ee,4},{0xe0b,4}}, + {{0x2a319,3},{0x48da,2}}, {{0xf77,5},{0x7d81,4}}, {{0x27e0,4},{0x15a5c,6}}, {{0x2de75,3},{0x534,2}}, + {{0xc0ef,3},{0xec3,3}}, {{0xcb8,1},{0x9,1}}, {{0xe0c,2},{0xf91,3}}, {{0xe7a,2},{0x6aa4,6}}, + {{0xb619,5},{0xd1db,6}}, {{0x14eaa,6},{0x9101,4}}, {{0x127e0,5},{0xcd3,2}}, {{0x5,1},{0x44ad,3}}, + {{0x9e31,7},{0xe11,1}}, {{0x4781,3},{0x169d,6}}, {{0x2bd5,4},{0xcc1,1}}, {{0x46af,3},{0x1e2ef,2}}, + {{0x785a,2},{0x9a46,5}}, {{0x23a5b,5},{0xeee,3}}, {{0x9a4,3},{0x36a5,4}}, {{0x2ba5,1},{0x2ee9,3}}, + {{0x19b7,3},{0x23e99,2}}, {{0x14aa,5},{0x1b41,4}}, {{0x17b16,4},{0x1e94a,5}}, {{0x18dea,5},{0xe0a,1}}, + {{0x449b,5},{0x943a,5}}, {{0x19b9,1},{0x6008,3}}, {{0x1977,3},{0xcc1,1}}, {{0x3ca4,6},{0x17c0,2}}, + {{0xe5b,3},{0x19997,3}}, {{0x2114,10},{0x1dc7,5}}, {{0x1967,3},{0x13c83,7}}, {{0x17ada,5},{0x140bd,4}}, + {{0x23c7b,7},{0xb,1}}, {{0x1ff7,3},{0x8428,3}}, {{0x4853,4},{0x5538,2}}, {{0x1a07,3},{0x1f875,1}}, + {{0x30869,4},{0x789d,2}}, {{0x2e26b,3},{0xcf6,1}}, {{0x1327,1},{0x307bb,1}}, {{0x75ea,6},{0x1054,3}}, + {{0xe0b,2},{0x8f2c,5}}, {{0x16a7,3},{0x2c5b,4}}, {{0xe67,2},{0x10f2,5}}, {{0x1501,3},{0x4,1}}, + {{0x1e9e,5},{0x8f1c,5}}, {{0xf0c,1},{0x28d2,3}}, {{0x7a01,5},{0x3b74,3}}, {{0x90ed,5},{0x90f2,5}}, + {{0x16660,7},{0x2e2c,3}}, {{0xcc61,5},{0xcc66,6}}, {{0x10e1f,4},{0x1b080,3}}, {{0x8c79,7},{0xec6,3}}, + {{0x15fb,3},{0xe69,5}}, {{0x1a66,1},{0x2352,5}}, {{0xe80,2},{0x4edf,4}}, {{0x10c5,4},{0xfc7,3}}, + {{0xef7,3},{0x109b,2}}, {{0x11a6,2},{0x4b11,4}}, {{0xc281,4},{0x3082b,2}}, {{0x1015c,5},{0x10161,6}}, + {{0xccd,1},{0x7955,4}}, {{0x182b4,6},{0x85f1,4}}, {{0xaed8,4},{0x5669,3}}, {{0xf77,3},{0x3b49,6}}, + {{0x2777,5},{0xd4de,5}}, {{0x59b9,10},{0xf91,3}}, {{0xcc1,1},{0x640e,5}}, {{0x10e7,5},{0x1d98,4}}, + {{0x11df1,5},{0x1253,3}}, {{0x15af,3},{0x775c,4}}, {{0x220a3,4},{0x2c15,3}}, {{0x3d47,10},{0xcce,2}}, + {{0x7b2d,5},{0x19330,4}}, {{0xf77,4},{0xf1d,1}}, {{0x6d46,6},{0x1039e,5}}, {{0x4597,5},{0x316e,8}}, + {{0x7414,3},{0x1150,2}}, {{0x7339,2},{0x1c14,5}}, {{0xf0c,1},{0x2c86,2}}, {{0x30f15,4},{0x18efa,2}}, + {{0xcf37,6},{0x2dd7,4}}, {{0x8f19,8},{0xa,2}}, {{0x104d7,7},{0x4187,4}}, {{0x17ca6,5},{0xe11,1}}, + {{0x713c,5},{0x3a48,5}}, {{0x2a92,6},{0xa84b,5}}, {{0xc26f,2},{0x308a3,2}}, {{0x29cf,3},{0xfa6,3}}, + {{0x15a7,6},{0x11b5,2}}, {{0x3a37,6},{0x3a3d,7}}, {{0xf32,2},{0xcc1,1}}, {{0x163fe,7},{0xe1c,3}}, + {{0x311af,2},{0xe41,2}}, {{0x9a4,3},{0xcd3,1}}, {{0x1467,4},{0x3ce0,5}}, {{0x13cda,7},{0x13ce1,3}}, + {{0xe1f,3},{0xe33,1}}, {{0x1967,3},{0x162c,3}}, {{0xe5b,3},{0x20bac,5}}, {{0x9d7d,7},{0xe0a,1}}, + {{0xb96d,5},{0x16ad,3}}, {{0xf0c,1},{0xdc6e,4}}, {{0x31d9,6},{0x8c13,6}}, {{0x1e08,5},{0x31c2,9}}, + {{0xf04,2},{0x6,1}}, {{0x1367,3},{0x146d,3}}, {{0x15c7,8},{0x15cf,7}}, {{0x1ba5e,7},{0xe95,2}}, + {{0x10d01,8},{0xec6,3}}, {{0x113f,2},{0xe25,2}}, {{0x18322,6},{0x484d,4}}, {{0x9d43,4},{0xcc9,2}}, + {{0x2cdf,5},{0xec6,3}}, {{0xec0,3},{0x2182,7}}, {{0x1025,1},{0x1230c,2}}, {{0xb,1},{0x1ae88,6}}, + {{0xcc7,1},{0xf0d,2}}, {{0x1caf,7},{0x1392,3}}, {{0x677,2},{0xf,1}}, {{0x1477,9},{0x1024,7}}, + {{0x32ab,9},{0xe92,5}}, {{0x170d8,5},{0x124b1,5}}, {{0x4861,4},{0xeb4,10}}, {{0xe99,1},{0x45ee,3}}, + {{0x1ff7,3},{0x453b,4}}, {{0x10dd2,6},{0xf193,4}}, {{0x5e3e,5},{0x5669,3}}, {{0xcc1,2},{0xcb7,2}}, + {{0xe83,4},{0x56a8,5}}, {{0x2ec04,2},{0x1f875,1}}, {{0x115e,7},{0x1ea0,8}}, {{0x7b,1},{0x260,2}}, + {{0x1bec,5},{0xed5,3}}, {{0x41ed,4},{0x185f,8}}, {{0x1145a,7},{0xec6,3}}, {{0x1f07,5},{0xe67,2}}, + {{0x24b6,5},{0x11b5,2}}, {{0x9a4,3},{0xcc3,2}}, {{0x12e5,3},{0x1089,3}}, {{0x2de75,3},{0x32,2}}, + {{0x12e5,3},{0x7001,3}}, {{0x154b8,6},{0x3075,4}}, {{0x28d0,4},{0x113f,2}}, {{0x1899e,7},{0x11cb,3}}, + {{0x1e30d,5},{0x4f55,4}}, {{0xb6d9,6},{0x4132,5}}, {{0x10b7,2},{0x3f56,5}}, {{0xadd3,4},{0xf20,2}}, + {{0x337d,6},{0xcc3,2}}, {{0x9b9d,6},{0xec6,3}}, {{0x12e5,3},{0x4,1}}, {{0x2623,4},{0x1783,4}}, + {{0xcd3,2},{0xf35,2}}, {{0xf69,3},{0x143c,4}}, {{0xd131,4},{0x3ce0,5}}, {{0xcd2,2},{0x6140,3}}, + {{0x11d57,8},{0x1fc7,3}}, {{0x9219,5},{0x109b,2}}, {{0xe5e9,3},{0xf7a,2}}, {{0x105df,8},{0xe92,3}}, + {{0x59e0,5},{0x386f,4}}, {{0x78ed,7},{0x78f4,5}}, {{0x72cf,4},{0xf59,2}}, {{0x205a9,1},{0xb74,1}}, + {{0x1467,4},{0xccc8,7}}, {{0x1e9e,5},{0x23df,5}}, {{0x6cde,4},{0x113f,2}}, {{0x27ef,5},{0x331f,4}}, + {{0x2de63,3},{0x1bd,2}}, {{0x8d21,7},{0x2269,4}}, {{0x9a41,5},{0x12a9,3}}, {{0x18040,4},{0x1db4,4}}, + {{0x16fde,6},{0xc5f5,4}}, {{0x12f8,2},{0x1d7d,3}}, {{0x27430,6},{0xe11,1}}, {{0x1208,7},{0xcce,2}}, + {{0x488b,5},{0x1fc0,3}}, {{0x567,2},{0x21,1}}, {{0xf65,4},{0x2134,7}}, {{0x11b3,5},{0x1ac8,3}}, + {{0x6cde,4},{0xce76,6}}, {{0x2285b,5},{0x8,1}}, {{0x7645,3},{0xccb,2}}, {{0xe16,1},{0xfc7,3}}, + {{0x1c46,8},{0x1024,7}}, {{0x19b7,5},{0xe650,5}}, {{0xb391,7},{0xb398,5}}, {{0x140a4,8},{0xcc9,2}}, + {{0x170ce,6},{0x17df,3}}, {{0x1076,3},{0x1131,3}}, {{0x5541,7},{0xe69,5}}, {{0x7911,3},{0x2699e,4}}, + {{0xbb1d,4},{0x254ff,4}}, {{0x2f47,5},{0x1050,4}}, {{0x1687,4},{0x12f0a,6}}, {{0xa659,5},{0x1b41,6}}, + {{0xad01,7},{0xe2b,4}}, {{0xef7,3},{0x3,1}}, {{0xb679,5},{0x404f,3}}, {{0x1969,2},{0x141a,2}}, + {{0x12e5,3},{0x9a8,1}}, {{0xfe8,2},{0xcd3,2}}, {{0xf69,4},{0x2615,8}}, {{0x1607,5},{0x527c,7}}, + {{0xcc1,1},{0x158f,3}}, {{0x1a66,1},{0xe33,1}}, {{0x465b,5},{0xe95,2}}, {{0x4767,1},{0x158f,3}}, + {{0x780c,2},{0x1fc7,3}}, {{0x73ed,4},{0x6326,5}}, {{0x120dd,5},{0x10883,6}}, {{0xe16,2},{0xcc4,2}}, + {{0x1e08,5},{0x13bdb,5}}, {{0x2498,10},{0x1722,5}}, {{0x4767,1},{0x20541,2}}, {{0x17b5c,6},{0x17b62,4}}, + {{0xf0d,2},{0x1295,3}}, {{0xc159,4},{0x41b7,3}}, {{0x57,1},{0x260,2}}, {{0x4f29,5},{0x30f4,5}}, + {{0xe97,3},{0x11187,2}}, {{0x10a3,3},{0x10cb,2}}, {{0x1937,4},{0x6cc7,5}}, {{0x5cd,2},{0x7b,1}}, + {{0x479,2},{0x69,1}}, {{0x117d7,4},{0x5536,4}}, {{0xf89,3},{0x2094,3}}, {{0xf15,1},{0x1f875,1}}, + {{0xd85e,7},{0xe0a,1}}, {{0x46af,3},{0x2d50d,2}}, {{0x320c,4},{0xe09,1}}, {{0x1567,6},{0x50cf,7}}, + {{0x4853,3},{0x4618,3}}, {{0xc2d7,7},{0xe95,2}}, {{0x19f9,2},{0x2e29,3}}, {{0xd0b8,6},{0xe67,2}}, + {{0x15b66,6},{0x15b6c,4}}, {{0x2a92,6},{0x2ca1,6}}, {{0xe99,1},{0x196cd,6}}, {{0x2a47,3},{0xe2f,1}}, + {{0xe0b,2},{0xf86,3}}, {{0x72cf,4},{0x19fa2,4}}, {{0x7360,3},{0x57b6,8}}, {{0x4287,5},{0x57a0,4}}, + {{0x18f9,5},{0x122f,3}}, {{0x478f,3},{0x14bcb,5}}, {{0x1647,5},{0x6d42,4}}, {{0xe0c,3},{0xe0a,1}}, + {{0x2c0d,7},{0x7b70,5}}, {{0x2f2c5,4},{0xe16,1}}, {{0xe37,4},{0x9b5,2}}, {{0x47c9,3},{0x2fcc,7}}, + {{0x1757,8},{0x6,2}}, {{0x17c42,6},{0x1098,2}}, {{0xe89,2},{0xfde,3}}, {{0xeb5,2},{0x2dd7,4}}, + {{0x1a17a,6},{0xcce,2}}, {{0xf77,3},{0x15ec,3}}, {{0xe32,1},{0x7921,3}}, {{0x12704,6},{0xf7a,2}}, + {{0xcda0,4},{0xa2c3,6}}, {{0x46af,3},{0x74f3,2}}, {{0x4853,3},{0xf80,2}}, {{0x78ed,2},{0xe16,1}}, + {{0x45a5,5},{0xe78,1}}, {{0x11df1,5},{0xe5e,2}}, {{0x5f22,3},{0x4f55,4}}, {{0x1f25,4},{0xdf6e,7}}, + {{0xe,1},{0x7a,2}}, {{0x7ff5,5},{0x4489,4}}, {{0x4a3c,8},{0x4a44,5}}, {{0x1db00,5},{0x2091,4}}, + {{0xfde,3},{0x24e8,4}}, {{0xe6f,3},{0x1393,3}}, {{0x119b0,5},{0xafbe,6}}, {{0x30f51,4},{0xc287,2}}, + {{0x2de75,3},{0x699,2}}, {{0xba3b,2},{0xeca,3}}, {{0x1087e,5},{0x9a9d,4}}, {{0xfe3,4},{0x134e7,5}}, + {{0x181b0,5},{0x181b5,5}}, {{0x3083b,2},{0x78a3,2}}, {{0xe7f,2},{0x1185,3}}, {{0xe60,2},{0xfb0,3}}, + {{0x20382,2},{0x442d,1}}, {{0xb69d,4},{0x2b7a,3}}, {{0x18ef6,6},{0x2b012,6}}, {{0x11ec4,3},{0x6,1}}, + {{0x1437,9},{0x1440,7}}, {{0x450b,4},{0xe77,2}}, {{0x17f08,5},{0x17f0d,5}}, {{0x30869,4},{0xd7a,2}}, + {{0x12d4,3},{0x2691f,2}}, {{0x29cf,3},{0x1cf3,3}}, {{0x18bc4,6},{0xe6c,3}}, {{0x78ed,2},{0x17ace,2}}, + {{0x2cf67,2},{0x74f3,2}}, {{0x30e6f,3},{0x30357,1}}, {{0x4f91,5},{0x1131,6}}, {{0xb841,5},{0xeea,3}}, + {{0xb979,4},{0x6,1}}, {{0xb,1},{0x344a,5}}, {{0x1805c,5},{0x1579,5}}, {{0xe7f,2},{0xcc8,1}}, + {{0x2b204,3},{0x9a9,2}}, {{0x6685,10},{0x18b4,3}}, {{0x73e0,4},{0x1189,3}}, {{0x9a8,1},{0x155b,3}}, + {{0xe030,6},{0x14a2,5}}, {{0x1847,9},{0x1267,7}}, {{0x7414,3},{0x1569,2}}, {{0x1f38,1},{0x1a63,3}}, + {{0x72d1,2},{0x113f,2}}, {{0x10c5,4},{0x566f,4}}, {{0x712f,6},{0x17c0,2}}, {{0x18d68,7},{0x3075,3}}, + {{0xfa5,2},{0xed5,3}}, {{0x1e2e0,5},{0x1e2e5,4}}, {{0x1567,10},{0xcc7,1}}, {{0x442d,1},{0x78ed,2}}, + {{0x2fffb,4},{0xd,1}}, {{0x9a6,1},{0x89f7,6}}, {{0x1081,5},{0x56a8,5}}, {{0xf15,1},{0xe2b,2}}, + {{0x16a7,3},{0x1252,3}}, {{0x24b9b,5},{0x1cfd,3}}, {{0x1bbd4,3},{0x42f9,5}}, {{0x18766,3},{0xb,1}}, + {{0x111a,3},{0xef5,2}}, {{0x24bdf,2},{0xe16,1}}, {{0xcf37,6},{0x4fb3,5}}, {{0x56ad,8},{0x56b5,5}}, + {{0x1062,2},{0x8,1}}, {{0x2a47,3},{0x1601,3}}, {{0x4,1},{0x196cd,5}}, {{0x2352,5},{0xec6,3}}, + {{0x4765,3},{0xe63,2}}, {{0xe3d,6},{0x2b036,6}}, {{0x11b5,2},{0x1e84,3}}, {{0x163e0,7},{0xe0d,2}}, + {{0xe,1},{0x176,2}}, {{0x2b0a8,4},{0x2afe0,2}}, {{0xecb,2},{0x4c16,3}}, {{0x1d72,5},{0x1d75,3}}, + {{0x16cfa,6},{0x18b4,3}}, {{0x18eea,6},{0x18ef0,12}}, {{0x1a66,1},{0xed6,2}}, {{0x103ae,4},{0x8,3}}, + {{0x2de57,3},{0x556,2}}, {{0xe32,1},{0x4a86,4}}, {{0xa215,7},{0x36ce,5}}, {{0x2de5d,4},{0x9f,1}}, + {{0xe99,1},{0x1d06,3}}, {{0x3d63,5},{0x113f,2}}, {{0x824d,5},{0xcb8,1}}, {{0x11b26,5},{0x2b78,4}}, + {{0xe8a,2},{0x113f,2}}, {{0xa215,5},{0x1062,2}}, {{0x2a47,3},{0xe08,1}}, {{0x1379,3},{0x87a0,5}}, + {{0x2948,4},{0xcd3,1}}, {{0x1f875,1},{0x1a14a,3}}, {{0x3a1b,5},{0x30f7,2}}, {{0x2de51,3},{0x2f0,2}}, + {{0x18ecc,2},{0xc78,2}}, {{0x52f8,8},{0xf91,3}}, {{0xb3f1,3},{0x10e51,4}}, {{0x94e9,5},{0x1b80,3}}, + {{0x14a4,2},{0x113f,2}}, {{0x1aaef,5},{0xeed,4}}, {{0xfa0e,5},{0xd3bf,6}}, {{0xf4f,1},{0x11187,2}}, + {{0xcda0,4},{0x453b,4}}, {{0x3273,8},{0x1632,5}}, {{0x1ff7,3},{0x4bd6,6}}, {{0xbc01,4},{0x1150,2}}, + {{0x25253,5},{0x9,3}}, {{0x181ec,6},{0xa,2}}, {{0x2aab3,5},{0x1118a,2}}, {{0xcc7,1},{0x5,1}}, + {{0x532c,9},{0xcce,2}}, {{0x24b6,5},{0x7251,4}}, {{0x1649e,6},{0xe5e,2}}, {{0x1ddbe,5},{0x1231,4}}, + {{0xcc8,1},{0x4415,3}}, {{0xe21,1},{0x19eb7,4}}, {{0x7636,5},{0x6553,6}}, {{0xb6b5,11},{0xe11,1}}, + {{0x29cf,3},{0x4618,4}}, {{0xba99,5},{0x1569,2}}, {{0x4899,4},{0xeb9,5}}, {{0x1601,3},{0xed6,2}}, + {{0xebc,2},{0x203a3,6}}, {{0xe11,2},{0x24f7,4}}, {{0x2ba5,1},{0xec0,3}}, {{0x16a7,3},{0x1166d,4}}, + {{0x23c2b,5},{0x8428,3}}, {{0xe08,1},{0xe0d,2}}, {{0xdfa1,6},{0x1040,3}}, {{0xff2b,7},{0xe1b,4}}, + {{0x4bfa,3},{0xcd3,2}}, {{0x19b9,1},{0x1e2c,4}}, {{0x5f28,5},{0x10da,3}}, {{0x19c7,6},{0xf0d,4}}, + {{0xf79,3},{0x15df6,4}}, {{0xf15,1},{0x46bf,1}}, {{0x13e6a,6},{0x2247,4}}, {{0x1677,4},{0xd0b4,4}}, + {{0x70ad,3},{0x26427,4}}, {{0x1efbe,6},{0xf86,2}}, {{0x1e652,6},{0x2d11,3}}, {{0x2a47,3},{0x111c,2}}, + {{0xc765,10},{0x5,1}}, {{0xe0f,1},{0x445b,2}}, {{0x40e3,7},{0xef3,4}}, {{0xebe,4},{0xf8e,3}}, + {{0x2c475,4},{0x1a66,1}}, {{0x12e5,5},{0xfb94,6}}, {{0x8d,1},{0x1347,3}}, {{0x2f2e,3},{0x17cc,4}}, + {{0x1a17,5},{0x2446,7}}, {{0x455f,5},{0xe67,2}}, {{0x29cf,3},{0x28f5,5}}, {{0xe11,1},{0xcb7,2}}, + {{0xd22e,8},{0x1059,3}}, {{0x1090d,8},{0xe77,3}}, {{0x1ee68,7},{0xcbd,1}}, {{0x25583,6},{0xcd3,1}}, + {{0xcc8,1},{0x1113,2}}, {{0x45ed,2},{0x155e,3}}, {{0x8835,5},{0xac0d,4}}, {{0xe2e5,7},{0x9a49,4}}, + {{0x9cc9,9},{0xec6,3}}, {{0x1807,6},{0xc6bc,4}}, {{0x11d99,5},{0x1fd55,4}}, {{0x7416,1},{0x18d3b,5}}, + {{0x9f,1},{0x325,2}}, {{0xf0a,7},{0xf11,12}}, {{0xc040,2},{0xf20,2}}, {{0xcb7a,8},{0xec6,3}}, + {{0x750b,4},{0x8,1}}, {{0x7684,8},{0x10f2,5}}, {{0x16a7,3},{0xe11,1}}, {{0x486f,4},{0x43be,4}}, + {{0x2ba5,1},{0x29e3,4}}, {{0x7414,3},{0x21124,4}}, {{0x46bf,1},{0x8129,4}}, {{0x9d41,6},{0xc685,4}}, + {{0x10b6c,3},{0xfc7,3}}, {{0x14a7,4},{0x2454,3}}, {{0xe32,1},{0x2d11,3}}, {{0x2959,5},{0xf93,8}}, + {{0x1969,1},{0xcc9,2}}, {{0x4313,6},{0x431c,5}}, {{0x7824,5},{0x28b7,5}}, {{0xf15,1},{0x3578,3}}, + {{0x3a29,5},{0xeee,3}}, {{0x1d14c,6},{0xf62,3}}, {{0x19b7,6},{0xefa,4}}, {{0xeb5,2},{0xf35,3}}, + {{0xf4f,1},{0x1ebf,3}}, {{0xb895,7},{0x9100,5}}, {{0xf22,2},{0x1153,2}}, {{0x4853,3},{0x180a,3}}, + {{0x1cf3,3},{0xf86,2}}, {{0x4767,1},{0x27cec,3}}, {{0x18ce8,3},{0x2129,4}}, {{0xf65,4},{0x30c3,6}}, + {{0x4853,3},{0xf0f,2}}, {{0x13a7,7},{0x1b30,4}}, {{0x5f83,6},{0x44b2,5}}, {{0x11788,4},{0x1569,4}}, + {{0x20559,4},{0x20559,4}}, {{0xe,1},{0x6bb,2}}, {{0xede,1},{0xf11,1}}, {{0x159f,2},{0xe6b,2}}, + {{0x14934,4},{0xf91,3}}, {{0xf77,9},{0x505d,4}}, {{0x33fb,7},{0x1663,3}}, {{0x237b,8},{0xcc9,2}}, + {{0x46af,3},{0x38b4,4}}, {{0x2006,3},{0x4618,3}}, {{0x3727,9},{0xec6,3}}, {{0xead,3},{0x8a0f,6}}, + {{0x16a7,3},{0x2d1f,3}}, {{0xcc8,1},{0x453b,4}}, {{0xe97,3},{0x19898,5}}, {{0x46af,3},{0x11dc,3}}, + {{0x2675b,4},{0x1969,1}}, {{0x1130c,3},{0x14803,3}}, {{0x1a1f8,5},{0xe0a,1}}, {{0xed1,4},{0x1e5d,4}}, + {{0x11d8e,5},{0x153a,3}}, {{0x45,1},{0x512,2}}, {{0x1aba3,5},{0x6726,3}}, {{0x27fe,7},{0xe92,3}}, + {{0x7414,3},{0x2252,3}}, {{0x1fb97,7},{0xed9,2}}, {{0x6644,5},{0xcc9,2}}, {{0x1d104,7},{0xe25,2}}, + {{0x712f,4},{0xe65,2}}, {{0xcd2,2},{0x12fd,3}}, {{0x9b5,2},{0x2e84a,2}}, {{0x307b,9},{0xe92,3}}, + {{0xfe86,7},{0x3555,4}}, {{0x2cc8d,4},{0x48d3,2}}, {{0xf31,2},{0xe6c,3}}, {{0xf0f,2},{0x5669,3}}, + {{0xcc3,2},{0xe86,2}}, {{0x2ba5,1},{0xd3eb,6}}, {{0x2ba,2},{0x7b,1}}, {{0x4ce0,6},{0x775c,4}}, + {{0x19b7,3},{0x1722,5}}, {{0xf4f,1},{0x181b,3}}, {{0x1af39,6},{0xe6c,3}}, {{0x1e15d,6},{0x1ca6,2}}, + {{0x103ae,4},{0x8,4}}, {{0xeab,2},{0x1278,4}}, {{0x11331,6},{0x2467,4}}, {{0x1849,3},{0x12a9,3}}, + {{0x713c,5},{0x5538,2}}, {{0x1927,4},{0x59b4,3}}, {{0xf4f,1},{0xe2f,1}}, {{0xcef5,8},{0xec6,3}}, + {{0x4781,3},{0xb02a,3}}, {{0xc15b,2},{0xf0f,2}}, {{0x32ff,7},{0x3306,7}}, {{0x15a7,6},{0x122d,2}}, + {{0x1729a,5},{0x1064,3}}, {{0xeb5,2},{0x9,1}}, {{0x1bc68,6},{0x1bc77,3}}, {{0xe71,1},{0x14e1,6}}, + {{0x27ef,4},{0x5eac,6}}, {{0xcc7,1},{0x2812,3}}, {{0x2de75,3},{0x3e0,2}}, {{0xc64b,4},{0xed6,2}}, + {{0x12b4,3},{0x6,1}}, {{0x20f6,5},{0xcd3,2}}, {{0xe71,1},{0x11a6,2}}, {{0xe33,1},{0x10d9,2}}, + {{0x1bfa6,3},{0xe31,2}}, {{0x1d90,10},{0xfe6,2}}, {{0xcc8,1},{0x44ad,4}}, {{0x1db31,2},{0x48d6,2}}, + {{0x9b25,5},{0xcc8,1}}, {{0x101f,2},{0xf1d,2}}, {{0x3a61,5},{0x1a71,3}}, {{0xb7a5,7},{0xb7b8,5}}, + {{0x468,2},{0xf,1}}, {{0x6cde,4},{0x2e32,3}}, {{0xf22,2},{0x9101,4}}, {{0xef87,7},{0xec6,3}}, + {{0x75b6,2},{0x119e0,7}}, {{0x30397,4},{0x30397,4}}, {{0xf77,3},{0x65ec,5}}, {{0x49b,2},{0x21,1}}, + {{0x486f,4},{0x331f,3}}, {{0xe32,1},{0x1692,2}}, {{0x7518,5},{0xb200,5}}, {{0x478f,3},{0x2d79a,3}}, + {{0x3b09,4},{0x44a4,5}}, {{0x16b7,5},{0x2,1}}, {{0x1967,3},{0x2e2c,3}}, {{0x29cf,3},{0x1796b,4}}, + {{0x2a38,10},{0xec6,3}}, {{0xbfc1,8},{0xbfc9,4}}, {{0xeab,2},{0x164a2,5}}, {{0x10d38,6},{0x10d3e,5}}, + {{0xf31,2},{0xc4df,5}}, {{0xf48e,6},{0x30f4,4}}, {{0x464d,5},{0x8427,4}}, {{0x57,1},{0x512,2}}, + {{0xb,1},{0x3356,4}}, {{0xf16,2},{0x13c0,4}}, {{0x1081,11},{0x10f2,5}}, {{0x1d65,3},{0x4188,3}}, + {{0xeb8,2},{0x431c,5}}, {{0xcbf,2},{0x5538,2}}, {{0x52eb,8},{0xe69,5}}, {{0x117d5,5},{0xf61,2}}, + {{0x1f8fd,5},{0x189f,3}}, {{0xbfd9,8},{0x1702,4}}, {{0xeee,3},{0xc80d,4}}, {{0x4853,3},{0x1b04,3}}, + {{0x1877,5},{0x16c5f,5}}, {{0x2d51b,4},{0x19b9,1}}, {{0x2cf90,2},{0x12154,3}}, {{0x10c5,4},{0xf277,5}}, + {{0x14e3c,5},{0x1c2a,4}}, {{0x8fd9,5},{0x11ce,7}}, {{0x12f8,2},{0x1523,4}}, {{0x2a92,6},{0x3ed9,4}}, + {{0x1290,4},{0x162cc,6}}, {{0x9c21,8},{0xe11,1}}, {{0x8d,1},{0x109,2}}, {{0xccb,2},{0x1839,2}}, + {{0x6ec3,3},{0x277e,2}}, {{0x3642,2},{0x72d3,3}}, {{0x1657,6},{0x138e,3}}, {{0x1180,13},{0xe0b,4}}, + {{0xe80,2},{0xcc7,1}}, {{0x17030,2},{0xe2b,2}}, {{0x1081,4},{0x1523,4}}, {{0x21aa,10},{0xe69,5}}, + {{0xbc31,5},{0x164c,3}}, {{0x118b5,3},{0x5fe3,6}}, {{0x103ae,9},{0xe95,2}}, {{0x1733a,6},{0xad8a,4}}, + {{0x4765,3},{0x442d,1}}, {{0x17b5e,4},{0xfdf,4}}, {{0x119b0,5},{0xec6,3}}, {{0x780a,5},{0xec3,3}}, + {{0xfef,3},{0xf2e6,6}}, {{0x1bec,5},{0x1495c,3}}, {{0x113c,3},{0x1cd3,2}}, {{0xefb3,5},{0x141f,4}}, + {{0xf4f,1},{0x1bef,2}}, {{0xf4f,1},{0xe7a,1}}, {{0x31444,2},{0xb74,1}}, {{0x15f7,6},{0x35b3,8}}, + {{0x18ecc,2},{0x9b5,2}}, {{0x2de,2},{0xd,1}}, {{0x4765,3},{0x17661,2}}, {{0xe87,2},{0x4e43,4}}, + {{0x1062,2},{0xf35,2}}, {{0xab1,1},{0x2e292,1}}, {{0x1939,2},{0x3b73,3}}, {{0x2ba5,1},{0x4fa8,3}}, + {{0x94ad,5},{0x94b2,7}}, {{0xf0d,2},{0xcc3,2}}, {{0x16a7,3},{0x12ba7,3}}, {{0x123b,9},{0x2663,5}}, + {{0x1231e,3},{0x14916,3}}, {{0xebe,8},{0xec6,11}}, {{0x7115,4},{0xec6,3}}, {{0x40c7,9},{0x12be,5}}, + {{0xf1d,2},{0xeb5,3}}, {{0xe0b,2},{0x25f8,4}}, {{0xcc7,1},{0x21f1e,5}}, {{0xead,3},{0x4183,4}}, + {{0x1567,3},{0x4edf,4}}, {{0xe4a8,5},{0x1c2a,4}}, {{0x29671,4},{0x29675,3}}, {{0x1fdd7,6},{0x74f3,2}}, + {{0x2271,4},{0x2275,7}}, {{0x20579,4},{0x20579,4}}, {{0x18f7,5},{0xe78,2}}, {{0x17646,5},{0xcbe,2}}, + {{0x1db45,2},{0xe0f,1}}, {{0x4bd,2},{0x21,1}}, {{0x311af,2},{0x78a9,2}}, {{0xc1e9,5},{0x6835,6}}, + {{0x17ca6,5},{0x3839,5}}, {{0xe0a,1},{0x175a9,3}}, {{0x7414,3},{0x2d1f,3}}, {{0x79c5,4},{0x2,1}}, + {{0x12bf0,7},{0xec6,3}}, {{0x2a29,7},{0x13ee,7}}, {{0x19b7,3},{0x1c85,3}}, {{0x7a0d,6},{0x7a13,6}}, + {{0x478f,3},{0x1ffee,3}}, {{0x1aba3,5},{0x1485c,4}}, {{0x129ac,6},{0xeccd,4}}, {{0xe97,3},{0x29000,4}}, + {{0x19f7,7},{0xfdd,4}}, {{0x1809,3},{0x30ba,7}}, {{0x9525,6},{0xc3e6,4}}, {{0x17be8,5},{0x5863,3}}, + {{0x4f29,6},{0x3075,3}}, {{0x2de2d,4},{0xede,1}}, {{0x2de75,3},{0x6cc,2}}, {{0x2ba5,1},{0x504d,4}}, + {{0x16a7,3},{0x6479,4}}, {{0x29a2,6},{0xf35,3}}, {{0xe,1},{0x8c,2}}, {{0x1e65,3},{0x1440,7}}, + {{0x19b7,3},{0x6e91,3}}, {{0xe97,3},{0x39a1,5}}, {{0x7525,4},{0xe636,2}}, {{0x1153,2},{0xcbd,1}}, + {{0xcc1,1},{0x1783,4}}, {{0x611,2},{0xd,1}}, {{0xb739,8},{0x2872,4}}, {{0x29c0,3},{0x2ccaf,2}}, + {{0x2948,3},{0x19b9,1}}, {{0x4,1},{0xcd3,2}}, {{0x1057,1},{0x2e6a4,2}}, {{0x29f3,3},{0x8,1}}, + {{0xe,1},{0x68,2}}, {{0x22b8,4},{0x12a46,6}}, {{0x621a,9},{0xeed,4}}, {{0x4199,8},{0x27dc,4}}, + {{0x25d5e,2},{0xe19,1}}, {{0x4765,3},{0x1058,2}}, {{0xdcfc,4},{0xf7a,2}}, {{0x46af,3},{0x78d0,3}}, + {{0xf59,2},{0x8,1}}, {{0x3559,4},{0x6fe1,3}}, {{0x38f5,10},{0x1663,4}}, {{0x2569b,6},{0x2280,2}}, + {{0xe2b,2},{0x1085,3}}, {{0x1dcb5,4},{0x74fb,3}}, {{0x2e2b3,2},{0xc38,2}}, {{0x24715,3},{0xed6,2}}, + {{0xf77,3},{0xe22,3}}, {{0x1a27,4},{0x164a2,5}}, {{0x2de75,3},{0xe6,2}}, {{0xb805,5},{0x1b4f,5}}, + {{0x9,1},{0xf86,3}}, {{0xf15,1},{0x2f94,3}}, {{0x13a7,7},{0x3146,3}}, {{0x1664,2},{0xf7a,2}}, + {{0x25083,4},{0xe6c,3}}, {{0x2d98f,4},{0x29a22,2}}, {{0x7387,4},{0xec6,3}}, {{0x84a5,8},{0xf7a,2}}, + {{0x20f6,5},{0xe7db,6}}, {{0xe5e,2},{0xcd3,1}}, {{0x11,1},{0x2e27d,1}}, {{0xb74,1},{0x3075c,6}}, + {{0xef0e,7},{0xef3,4}}, {{0x1a07,3},{0x1040,3}}, {{0x12b2,5},{0xc1e9,4}}, {{0x79f5,5},{0xfb7,3}}, + {{0x442b,3},{0xe11,1}}, {{0x46af,3},{0x1002,3}}, {{0x1007,10},{0xfef,6}}, {{0x10b4,6},{0xed6,2}}, + {{0x1b131,5},{0x1fc0,3}}, {{0xcce,2},{0x1189,4}}, {{0xf89,5},{0xe1f8,6}}, {{0x93e1,9},{0xf35,3}}, + {{0xed1,4},{0x138e,2}}, {{0x260fb,4},{0xe0f,1}}, {{0xd83d,6},{0xed9,2}}, {{0x46af,3},{0xeee,3}}, + {{0x1f9c5,3},{0x2136,4}}, {{0xe32,1},{0x1569,4}}, {{0x12d4,3},{0x24661,2}}, {{0x9a4,3},{0xf59,2}}, + {{0xe83,3},{0xcb8,1}}, {{0x2b46,4},{0xcc1,1}}, {{0xb,1},{0xa3fc,5}}, {{0x1e08,6},{0xd8bc,5}}, + {{0x10bf9,4},{0x17168,6}}, {{0x7d31,5},{0x8b3d,4}}, {{0x1cfc,3},{0x10f2,5}}, {{0x4871,3},{0x1a71,3}}, + {{0x9,1},{0x1a98,6}}, {{0x70ad,3},{0x2c496,3}}, {{0x4765,3},{0x4180,4}}, {{0x19b9,1},{0x142a,3}}, + {{0x19e9,3},{0xfdc5,6}}, {{0x2b0aa,2},{0x18ed6,2}}, {{0x1877,7},{0x10f5,3}}, {{0x44c5,5},{0x9a8,1}}, + {{0x17ee0,8},{0xe22,2}}, {{0x1050,3},{0x128c,4}}, {{0xd147,8},{0xf86,3}}, {{0x1373,2},{0x9498,5}}, + {{0x11322,4},{0x7a0f,4}}, {{0x6,2},{0x3a91,3}}, {{0x22a3,2},{0xed9,2}}, {{0x227c,6},{0xe0a,1}}, + {{0x12e5,3},{0x1523,4}}, {{0x2e6b7,4},{0x442d,1}}, {{0xe95,2},{0x1692,2}}, {{0x1dde4,3},{0x10cb,4}}, + {{0xc576,6},{0xeb5,2}}, {{0x2df3b,4},{0x2cc,2}}, {{0x7392,5},{0xe6b,3}}, {{0xeee,3},{0x1b41,4}}, + {{0xe11,2},{0x59b4,3}}, {{0xdd46,4},{0x2467,4}}, {{0x4781,3},{0x2c3ac,3}}, {{0xe6f,3},{0xf0d,2}}, + {{0xbb1d,7},{0xbb24,5}}, {{0x4597,6},{0x1131,6}}, {{0x4781,3},{0x4457,2}}, {{0x75f5,6},{0x278f,6}}, + {{0x10bf9,6},{0x10bff,5}}, {{0x1edfc,5},{0x11c77,4}}, {{0x8d,1},{0x512,2}}, {{0x151c0,5},{0x1265,5}}, + {{0x110d4,6},{0x52d9,5}}, {{0xaf4,32},{0xaf4,24}}, {{0x12b2,5},{0xfc30,4}}, {{0x1019,4},{0x7417,4}}, + {{0x2ec9,5},{0x10b8,2}}, {{0x6ceb,7},{0xf91,3}}, {{0xf4f,1},{0xf02,2}}, {{0x40ab,9},{0xf91,3}}, + {{0x10dd2,7},{0x4921,4}}, {{0x45cf,6},{0x1e86,8}}, {{0x183b,3},{0xeed,2}}, {{0x1b131,5},{0xae95,4}}, + {{0xcb8,1},{0xe09,1}}, {{0x16cc8,7},{0xe19f,3}}, {{0x10d6,5},{0x134e7,5}}, {{0x17330,9},{0xe11,1}}, + {{0xe2b,2},{0x1796b,4}}, {{0x11b5,2},{0x17df,3}}, {{0xfbf,6},{0x2781,5}}, {{0x9473,5},{0xfdf,4}}, + {{0x7eed,5},{0x2e2c,3}}, {{0x29c0,3},{0x2f0fd,2}}, {{0x2cf63,4},{0x4767,1}}, {{0x18610,5},{0xe5e9,3}}, + {{0x111c6,5},{0x775c,4}}, {{0x2e280,3},{0x1357,1}}, {{0xb58b,2},{0x11a6,2}}, {{0x2afa8,4},{0xe08,1}}, + {{0x127f,4},{0x13e1,5}}, {{0xf0a,3},{0xf02,2}}, {{0x4767,3},{0x11685,5}}, {{0x1191,11},{0x1773,4}}, + {{0x19b9,1},{0xcc8,1}}, {{0x1a66,1},{0x442d,1}}, {{0x479f,2},{0xccd,4}}, {{0x127f,3},{0xf32,2}}, + {{0x276b4,6},{0xcbd,1}}, {{0xf80,2},{0xe5e,2}}, {{0x2cc09,5},{0xe11,1}}, {{0x308f7,3},{0x1327,1}}, + {{0x6ff7,5},{0xe09,1}}, {{0x2d4eb,4},{0x29bfe,2}}, {{0x5e2b,4},{0xe7f,2}}, {{0x13eec,5},{0x5724,3}}, + {{0x1747,4},{0xf84,5}}, {{0x12d4,3},{0x6,3}}, {{0xefa,2},{0x10b9,3}}, {{0xac7d,6},{0xccaa,4}}, + {{0x19f7,4},{0x1fbb6,5}}, {{0x124c,6},{0x2dd3,7}}, {{0xa,2},{0xcd3,1}}, {{0xd551,6},{0xcc3,2}}, + {{0xe8a,2},{0xfa5,2}}, {{0xcc98,6},{0xec5,4}}, {{0x1c82,6},{0x9a0c,5}}, {{0x314d,6},{0xe5e,2}}, + {{0x5feb,6},{0xe77,3}}, {{0xf0c,1},{0x4d72,6}}, {{0x13d7a,6},{0x2917,4}}, {{0x4853,3},{0x55ed,5}}, + {{0x8841,8},{0x1b41,4}}, {{0x330d,12},{0xcc9,2}}, {{0x3751,9},{0x13e3,4}}, {{0x1f38,1},{0x1f27,3}}, + {{0x545,2},{0x21,1}}, {{0x133d4,6},{0xe0b,4}}, {{0xa1f1,7},{0xe6b,3}}, {{0x465b,5},{0x4660,9}}, + {{0x1ec28,6},{0xcba,2}}, {{0x1ebc,6},{0x3155,6}}, {{0x1debd,2},{0xe0f,1}}, {{0x10b4,12},{0x1be9,3}}, + {{0xfb1,3},{0x239e,5}}, {{0x1bb12,6},{0xe0a,1}}, {{0x3273,8},{0x1b34,4}}, {{0x14216,6},{0xb7ad,4}}, + {{0x110be,5},{0x6,3}}, {{0x2556b,5},{0x3170,3}}, {{0xa659,5},{0x54eb,3}}, {{0x18414,3},{0x6,2}}, + {{0x1a747,7},{0xed6,2}}, {{0x1bd91,6},{0xec6,3}}, {{0x165f2,6},{0xd0a9,4}}, {{0x46af,3},{0x142a,3}}, + {{0x4765,3},{0x1ba2b,6}}, {{0x11918,4},{0x68fd,5}}, {{0xac05,7},{0xac0c,5}}, {{0xf11,1},{0xccb,2}}, + {{0x520e,5},{0x6cbe,4}}, {{0x18ecc,2},{0x2e84a,2}}, {{0xf89,3},{0x13e02,4}}, {{0xebe,4},{0x143d,3}}, + {{0x17074,9},{0xe0a,1}}, {{0x4e8d,7},{0x1702,4}}, {{0xedd,1},{0xe32,1}}, {{0x4,1},{0xfa5,4}}, + {{0x6610,8},{0x1722,5}}, {{0x2e2b3,2},{0x78a3,2}}, {{0x1be9,3},{0x6,1}}, {{0xe37,4},{0x2b0ac,2}}, + {{0xeb9,4},{0x2844,5}}, {{0x29918,4},{0x260e9,2}}, {{0x1927,4},{0x30ad,6}}, {{0xfe8,2},{0x10f4,4}}, + {{0xf0a,3},{0x29214,4}}, {{0x1957,5},{0x7030,6}}, {{0x5538,2},{0xcc4,2}}, {{0x105f,3},{0x11b5,2}}, + {{0x4e3f,5},{0x1189,3}}, {{0xe99,1},{0x1189,3}}, {{0x29cf,3},{0x1765e,2}}, {{0x5d58,3},{0x1b9d,4}}, + {{0x70ad,4},{0xcc9,2}}, {{0xcc7,1},{0x17017,3}}, {{0x138e,4},{0xe6b,3}}, {{0x12f6,4},{0x7921,3}}, + {{0x7b,1},{0xf8,2}}, {{0xcb8,1},{0x12397,6}}, {{0x600,2},{0x21,1}}, {{0x20431,6},{0xe95,2}}, + {{0x1969,1},{0x3e54,3}}, {{0x1969,1},{0x13cf1,7}}, {{0x20579,1},{0xcf6,1}}, {{0x111a,3},{0x1fc7,3}}, + {{0x2812d,5},{0xf7a,2}}, {{0x2a83,10},{0xe69,5}}, {{0xaec9,5},{0x23df,5}}, {{0x2de75,3},{0x325,2}}, + {{0x2036e,4},{0xf4f,1}}, {{0x2240,4},{0x5855,5}}, {{0x46bf,1},{0x2ee9,3}}, {{0xc159,4},{0xee9,2}}, + {{0xc3d0,3},{0xcc4,2}}, {{0xe78,1},{0xccb,2}}, {{0x1cd3,2},{0x267c8,5}}, {{0xdfcd,10},{0xe11,1}}, + {{0x3a0d,7},{0x1177,7}}, {{0xe37f,8},{0x14a2,3}}, {{0x15399,3},{0x4c16,3}}, {{0x48f7,10},{0x1de7,3}}, + {{0x1677,3},{0x77bf,4}}, {{0x19b7,3},{0x14eb,4}}, {{0xe86,2},{0xe0b,4}}, {{0x7414,3},{0x19b9,1}}, + {{0xa851,8},{0x1b41,4}}, {{0x19b7,3},{0xf24,2}}, {{0x486f,4},{0x15572,4}}, {{0x8a09,9},{0xe11,1}}, + {{0x9201,7},{0xe1c,3}}, {{0x4853,3},{0x1f03f,2}}, {{0x534,2},{0x21,1}}, {{0x2006,3},{0x2234e,5}}, + {{0x37b9,3},{0x23df,5}}, {{0x471f,7},{0x5b6d,6}}, {{0x16a7,3},{0xe7f,4}}, {{0x27d9,2},{0xa,2}}, + {{0x10efb,5},{0x174b,3}}, {{0x1a66,1},{0xe0b,2}}, {{0x28e1,3},{0x1622,5}}, {{0x7416,1},{0x48da,2}}, + {{0xf4f,1},{0x48da,3}}, {{0x11a57,3},{0x142d,3}}, {{0x1a9c6,6},{0x174b,3}}, {{0x75db,4},{0xce76,6}}, + {{0xf11,1},{0xe0a3,6}}, {{0x1977,10},{0x10f2,5}}, {{0x1a07,3},{0x736e,5}}, {{0xcc6,2},{0xcd3,1}}, + {{0x4cb9,6},{0x4187,3}}, {{0x10e7,5},{0xe89,2}}, {{0x12d4,5},{0x1141,12}}, {{0x11ecd,6},{0x11ed3,5}}, + {{0x3bcd,6},{0xfb0,2}}, {{0x1cbe0,7},{0x1796b,4}}, {{0x27e0,3},{0x7921,3}}, {{0x2948,3},{0x18774,2}}, + {{0x19b7,3},{0x1cd3,2}}, {{0x45,1},{0x6cc,2}}, {{0x13f50,6},{0x18b4,3}}, {{0x1ff7,3},{0xe11,1}}, + {{0x12a1,4},{0x1d885,5}}, {{0x951c,3},{0xef5,2}}, {{0x75d0,2},{0x10d2,4}}, {{0x9405,7},{0xf84,5}}, + {{0xe08,1},{0x1189,3}}, {{0x1544a,7},{0xec6,3}}, {{0x720c,6},{0x3065,7}}, {{0x2b46,4},{0x20288,5}}, + {{0x10b8,2},{0x10d3,3}}, {{0x246f3,6},{0x8,1}}, {{0x10ef0,5},{0xe75,2}}, {{0x251eb,5},{0x2570,3}}, + {{0xf80,2},{0xe0c,3}}, {{0xe0f,4},{0x1510,4}}, {{0x11b3,5},{0x54b5,8}}, {{0x72cf,6},{0x10203,3}}, + {{0x138e,2},{0x1d540,4}}, {{0x7f41,4},{0xab9f,3}}, {{0x2006,3},{0xe22,2}}, {{0x2966,5},{0x8,1}}, + {{0x2213,8},{0x21c2,6}}, {{0x63ba,9},{0x12a9,3}}, {{0x18f7,7},{0x4b95,6}}, {{0x4781,3},{0x183a,3}}, + {{0x2a7ec,2},{0x4767,1}}, {{0x7d31,9},{0x1059,3}}, {{0x620d,8},{0x181b,3}}, {{0x10238,6},{0x2e28,4}}, + {{0x12b8f,3},{0xcd3,2}}, {{0x1f38,1},{0xed6,2}}, {{0x1e26,6},{0x1c6d,5}}, {{0x78ed,2},{0x4767,1}}, + {{0x122b8,6},{0x138e,2}}, {{0x2afaf,4},{0xedd,1}}, {{0x578a,5},{0x90da,7}}, {{0x451b,2},{0xf1d,2}}, + {{0xe83,4},{0x15c28,6}}, {{0x111a,3},{0x9a4,3}}, {{0x224f,7},{0xeb4d,4}}, {{0xecb,2},{0xcd3,1}}, + {{0x115e,7},{0xe717,4}}, {{0xe97,6},{0xe61,3}}, {{0x6cd1,9},{0xeed,4}}, {{0x1285,3},{0x30ad,6}}, + {{0x250ab,5},{0xfe6,2}}, {{0x1a27,4},{0x1b8a,7}}, {{0xc015,4},{0x15002,6}}, {{0x142a,3},{0x129a,6}}, + {{0xfc8,3},{0x1943,4}}, {{0xe08,1},{0xd15f,3}}, {{0xe1a6,5},{0x1076,3}}, {{0x2cd41,5},{0x9a6,1}}, + {{0x1969,1},{0x74f3,2}}, {{0xd78,4},{0xbb6,2}}, {{0x492e,3},{0xeed,4}}, {{0x4be9,5},{0x14f9,3}}, + {{0xef7,4},{0x4111,10}}, {{0x1dd64,6},{0x1dd6a,3}}, {{0x1085,3},{0x1ea3,3}}, {{0x8421,6},{0xe0a,1}}, + {{0x4,1},{0xf12,3}}, {{0x3739,2},{0x70a6,3}}, {{0x550d,5},{0x2fbe,5}}, {{0xe97,3},{0x3594,5}}, + {{0xc015,4},{0x121c,3}}, {{0xe21,1},{0x16a41,5}}, {{0x7394,3},{0x1ad8e,4}}, {{0x6825,9},{0x1059,3}}, + {{0xb685,5},{0x4b6f,3}}, {{0x112b8,5},{0xe80,2}}, {{0x182dc,7},{0x7a36,3}}, {{0x1fbc4,7},{0xed6,2}}, + {{0x11d5,5},{0x5,1}}, {{0x10a3,3},{0xcdfb,8}}, {{0x34b1,5},{0xf1d,2}}, {{0x22da3,6},{0xe2b,2}}, + {{0x4597,5},{0x3152,8}}, {{0x1f90f,7},{0xe67,2}}, {{0x129d4,5},{0x1cd3,2}}, {{0xf11,1},{0x25706,4}}, + {{0x8c91,6},{0x10d2,3}}, {{0xebe,4},{0x1b6c3,5}}, {{0x1967,3},{0x7950,3}}, {{0x2fed4,4},{0x21,1}}, + {{0x15afa,6},{0xed9,2}}, {{0xce56,4},{0xec6,3}}, {{0x9309,5},{0x1e3c,4}}, {{0x17646,5},{0x33d3,2}}, + {{0x9781,5},{0xcc9,2}}, {{0x28fbe,4},{0x28fc9,3}}, {{0xe67,2},{0xcd3,1}}, {{0x1e2f0,2},{0x19b9,1}}, + {{0x2c54d,4},{0x2ba5,1}}, {{0x478f,3},{0x2d782,3}}, {{0xc159,4},{0x10b9,2}}, {{0xc17d,6},{0x11d94,5}}, + {{0xe1c,3},{0x1a99,3}}, {{0x18f9,2},{0x142d,3}}, {{0x1c82,6},{0x5dd0,3}}, {{0x1dbbd,6},{0xe7f,2}}, + {{0x1f25,4},{0x21cd5,4}}, {{0x2006,3},{0xe32,1}}, {{0x434b,5},{0xe89,2}}, {{0x7219,5},{0xb02a,4}}, + {{0x2de75,3},{0x688,2}}, {{0x9f,1},{0x1d0,2}}, {{0x288b,2},{0x423c,5}}, {{0x45,1},{0x188,2}}, + {{0x17146,4},{0xec3,3}}, {{0x27ebe,6},{0xe0a,1}}, {{0x19b9,1},{0x62fa,6}}, {{0x101b4,7},{0x2dd7,4}}, + {{0xcc7,1},{0x10cb,4}}, {{0x69,1},{0x325,2}}, {{0xa4cd,7},{0x1702,5}}, {{0xe99,1},{0xe89,2}}, + {{0x3a1b,5},{0x2917,4}}, {{0x1eee6,5},{0xe22,2}}, {{0x73b9,5},{0xc5e0,4}}, {{0xbffd,5},{0xe11,1}}, + {{0x13fdc,5},{0xe92,3}}, {{0x12e5,5},{0x6740,7}}, {{0xcc7,1},{0xe0b,4}}, {{0xe,1},{0x55,2}}, + {{0x2e271,3},{0xc,1}}, {{0x10a3,3},{0x8e22,3}}, {{0x12d4,3},{0x23e98,2}}, {{0x1809,3},{0x8b00,4}}, + {{0x34b1,6},{0x8fa3,6}}, {{0x3a29,4},{0xac0d,3}}, {{0x18f7,5},{0x111c,2}}, {{0x1967,3},{0x155e,3}}, + {{0xc27b,2},{0x30edb,4}}, {{0x9bc1,7},{0x4b96,5}}, {{0xee53,6},{0x4188,3}}, {{0x1cbeb,6},{0x30f7,2}}, + {{0xe97,3},{0x1059,3}}, {{0x1e394,6},{0x2075,3}}, {{0x178b2,7},{0xec6,3}}, {{0xd90e,8},{0x14f9,3}}, + {{0x1fe8,6},{0x146d,9}}, {{0xe97,3},{0xf11,1}}, {{0xe1f,3},{0x7a14,4}}, {{0x29cf,3},{0x4516,3}}, + {{0x18f3b,6},{0x127c,3}}, {{0x1e08,5},{0xfcff,5}}, {{0x1004,3},{0x8,1}}, {{0x1781c,5},{0x7119,5}}, + {{0x103e5,6},{0xb958,5}}, {{0x7414,3},{0x1f82,3}}, {{0x14ff,3},{0x1b0d,3}}, {{0x46af,3},{0x4f20,3}}, + {{0x75b6,5},{0x2c15,3}}, {{0x3089,5},{0xe440,5}}, {{0x3b5d,5},{0x3317,4}}, {{0x6678,9},{0x18b4,3}}, + {{0xe83,3},{0x15af1,6}}, {{0x29cf,3},{0xe30,3}}, {{0x16bf6,5},{0x14ddd,5}}, {{0x316e,3},{0x6411,4}}, + {{0x11efb,3},{0xcd3,2}}, {{0x1967,3},{0xe2f,1}}, {{0xe19,1},{0xeb5,2}}, {{0xb3f1,3},{0xcce,2}}, + {{0x1e1a5,6},{0x122d,2}}, {{0x1f450,6},{0x3976,3}}, {{0xfb8,3},{0xe92,3}}, {{0x2015,3},{0xb3c8,3}}, + {{0x4599,3},{0xde29,2}}, {{0x1034b,6},{0x809a,3}}, {{0x45c1,11},{0x1fc7,3}}, {{0x72b5,6},{0xd914,4}}, + {{0x4,1},{0x13345,3}}, {{0x18796,5},{0xe5e,2}}, {{0x10c48,4},{0xec6,3}}, {{0x2231,5},{0xed6,2}}, + {{0xb3f1,3},{0x1dcb6,3}}, {{0x4597,5},{0xcbd,1}}, {{0xbd99,5},{0x3056,4}}, {{0x25ea3,6},{0xcd3,2}}, + {{0x13294,7},{0x2f94,3}}, {{0x10a3,3},{0x27895,2}}, {{0x7636,5},{0x6553,7}}, {{0x2b48,6},{0x2707,7}}, + {{0xe1f,3},{0x6ca7,3}}, {{0x2b4fe,2},{0x18ed6,2}}, {{0x21f1e,4},{0xe11,2}}, {{0x307bb,1},{0x11,1}}, + {{0x149aa,5},{0x7845,3}}, {{0x5de,2},{0x57,1}}, {{0x1019,4},{0x1363b,5}}, {{0x788c,8},{0x305a,5}}, + {{0x15e9,3},{0xeee,3}}, {{0x34b1,5},{0x3e0e,3}}, {{0xb751,6},{0xb757,6}}, {{0xf4f,1},{0xe33,1}}, + {{0x59c6,7},{0x3075,4}}, {{0x18ac0,6},{0xf62,3}}, {{0x13a7,5},{0xc66d,6}}, {{0xf1d,1},{0xe78,1}}, + {{0x74f3,2},{0x29889,3}}, {{0xcc3,2},{0x3642,2}}, {{0xef7,4},{0x162d6,6}}, {{0x336,2},{0x7b,1}}, + {{0x1587,4},{0x30f6,3}}, {{0x9d4d,10},{0xed6,2}}, {{0x4781,3},{0x48d3,2}}, {{0xa461,8},{0xe0b,4}}, + {{0xb4f9,9},{0xec6,3}}, {{0x2f94d,4},{0xede,1}}, {{0xe7d,2},{0xfdf,4}}, {{0x9,1},{0x2ea14,2}}, + {{0x13a7,5},{0x2,1}}, {{0x2f71,4},{0xcc3,3}}, {{0x1017d,5},{0xf97,4}}, {{0x4,3},{0x9,1}}, + {{0x10d66,5},{0xec6,3}}, {{0x10d38,6},{0x7978,5}}, {{0x2d1eb,5},{0xccd,1}}, {{0x18c52,3},{0xeab,2}}, + {{0x12880,5},{0x10be9,5}}, {{0x1f2a9,8},{0xe11,1}}, {{0x1fbe,3},{0xcd3,1}}, {{0x2ba5,1},{0x172a,3}}, + {{0x186b2,4},{0x109b,2}}, {{0xf0a,3},{0x1f875,1}}, {{0xede,1},{0x4132,5}}, {{0xe886,7},{0x1b41,4}}, + {{0x2b50f,2},{0x2b0dc,2}}, {{0xede5,6},{0x28f8,5}}, {{0xb379,3},{0x6,1}}, {{0x1977,4},{0x5372,4}}, + {{0x2e280,3},{0x20561,1}}, {{0xe33,1},{0xe08b,8}}, {{0x8d,1},{0x1f4,2}}, {{0x45,1},{0x9e,2}}, + {{0x478f,3},{0x20382,2}}, {{0x4767,1},{0xe63,2}}, {{0x611,2},{0xe,1}}, {{0x440f,9},{0x1702,4}}, + {{0xb3f1,3},{0x9a4,3}}, {{0x7fe9,5},{0x4bfd,6}}, {{0x2cdf,7},{0x2ce6,7}}, {{0x227f,3},{0x4aed,5}}, + {{0xbbd1,10},{0xed9,2}}, {{0x1f687,4},{0x1b0a6,4}}, {{0xcc9,2},{0xf1a,2}}, {{0x1be,2},{0x556,2}}, + {{0x1740c,7},{0xccb,2}}, {{0x1957,5},{0x19a02,4}}, {{0x3e0,2},{0x9f,1}}, {{0x29cf,3},{0xeaa6,6}}, + {{0x2ba5,1},{0x1143c,8}}, {{0x2e875,3},{0xaf4,2}}, {{0x1bec,7},{0x4d83,6}}, {{0x23c4b,3},{0xe99,1}}, + {{0xcb8,1},{0x7d99,4}}, {{0xf9b,5},{0x8,1}}, {{0x7858,4},{0x10cc,2}}, {{0xedd,1},{0xeb3,2}}, + {{0xe67,2},{0xcc1,1}}, {{0xf0c,1},{0x123e,3}}, {{0x7416,1},{0x90fb,5}}, {{0xa3d1,7},{0x21a5,5}}, + {{0x4853,7},{0x41bc,4}}, {{0xe16,1},{0xf0f,2}}, {{0x1887,4},{0xf1a,2}}, {{0x4765,3},{0x29bfb,2}}, + {{0x2a5d6,4},{0xcd3,2}}, {{0xbba1,4},{0x15052,6}}, {{0x3a37,6},{0x3063,5}}, {{0x298d9,4},{0xe66,2}}, + {{0x2,1},{0x3381,3}}, {{0x478f,3},{0x11187,2}}, {{0x450b,4},{0xf80,2}}, {{0x1f876,5},{0xfb8,3}}, + {{0x4,1},{0x1bc62,5}}, {{0x14ed2,7},{0x2e2c,3}}, {{0x122a,6},{0x63cf,5}}, {{0x173d0,5},{0x95cf,5}}, + {{0x478f,3},{0xe33,1}}, {{0x15eb8,6},{0x2eb7,4}}, {{0x2f2e,3},{0x1e8b,3}}, {{0x13050,7},{0xe11,1}}, + {{0x23c4b,3},{0xed6,2}}, {{0x13178,3},{0xe11,1}}, {{0x4f29,5},{0xc541,3}}, {{0x1ac3c,6},{0xcc9,2}}, + {{0xe3e2,6},{0x38ec,3}}, {{0x11b73,5},{0x1b41,4}}, {{0xe71,1},{0x1dee,2}}, {{0x754c,6},{0x7552,7}}, + {{0xbccd,4},{0xeb5,2}}, {{0x11b5,2},{0x1569,2}}, {{0xb74,8},{0xb74,5}}, {{0x4853,3},{0x2769b,4}}, + {{0x10ebb,6},{0xe95,2}}, {{0x224f,7},{0xe0a,1}}, {{0x1007,6},{0xcc3,2}}, {{0xe11,2},{0x4a44,5}}, + {{0xed40,5},{0x54b6,5}}, {{0xcc1,2},{0x492e,3}}, {{0xdad1,9},{0xcc9,2}}, {{0x111a,3},{0x6d08,4}}, + {{0x7f41,4},{0x6,2}}, {{0x5199,7},{0xd4c9,4}}, {{0x25123,6},{0xe5e,2}}, {{0xe32,1},{0x9372,3}}, + {{0x13a7,7},{0xa0bd,3}}, {{0x10e1f,4},{0x2c59,4}}, {{0xb6d9,6},{0x1252,3}}, {{0xc159,4},{0xf1a,2}}, + {{0x1288,4},{0xcce,2}}, {{0x18ecc,2},{0x2e7a2,2}}, {{0x123e,3},{0x6,1}}, {{0xc7ff,5},{0xf0f,2}}, + {{0x111a,3},{0xdfc9,4}}, {{0x19b7,3},{0x1230c,2}}, {{0x2dbf,5},{0x2917,4}}, {{0x2bb4,2},{0x8,1}}, + {{0x2de57,3},{0x260,2}}, {{0x3d39,5},{0x30f7,2}}, {{0x1927,4},{0x1e04a,5}}, {{0x488b,4},{0x6d41,5}}, + {{0x1236c,6},{0x1d05,4}}, {{0x2a922,5},{0x5,2}}, {{0x1857,4},{0x1571,4}}, {{0x60f3,4},{0x1dc7,5}}, + {{0x2ad7f,5},{0xf63,2}}, {{0xf16,2},{0xb974,5}}, {{0x11184,4},{0x29889,3}}, {{0x17df0,5},{0x17df5,5}}, + {{0x118be,5},{0x118ce,6}}, {{0x11eb3,4},{0xec6,3}}, {{0x785a,2},{0xcc5,2}}, {{0x19478,5},{0xead,3}}, + {{0x1977,3},{0xcb8,1}}, {{0x77bc,4},{0xcc3,3}}, {{0x313,3},{0x7b,1}}, {{0x12c3,4},{0xfe8,2}}, + {{0x30ec7,2},{0xc36,4}}, {{0x1827,5},{0x11502,4}}, {{0x19b7,3},{0x1303,3}}, {{0xbff1,8},{0x575a,4}}, + {{0x12f8,2},{0xb37c,3}}, {{0x9b01,6},{0xed6,2}}, {{0xe3d,10},{0xe47,2}}, {{0x4765,3},{0xe4ab,4}}, + {{0x33a7,5},{0xe92,3}}, {{0x662a,6},{0x7f30,5}}, {{0x2094,7},{0xed9,2}}, {{0x9a99,3},{0x3457,6}}, + {{0xe83,3},{0x3,1}}, {{0x56c7,6},{0x56da,7}}, {{0x12e5,3},{0x8e22,5}}, {{0x4,1},{0x11a6,2}}, + {{0xf22,2},{0xf1a,3}}, {{0x7b51,4},{0xeb58,4}}, {{0x1bac1,6},{0xf1a,2}}, {{0xfa50,5},{0x1380,5}}, + {{0xb895,4},{0x1e9fe,5}}, {{0x2de75,3},{0x20,2}}, {{0x1303,3},{0xe7f,2}}, {{0xf0a,3},{0xe78,1}}, + {{0xcaca,6},{0xcad0,5}}, {{0xcc6c,5},{0x6479,4}}, {{0x10238,6},{0xe11,5}}, {{0x10d6,12},{0x10e2,5}}, + {{0x1fd62,6},{0x66c2,3}}, {{0xe0b,2},{0xed9,2}}, {{0x10bb9,2},{0x73d6,2}}, {{0x6519,6},{0x189f,3}}, + {{0x2948,3},{0xf15,1}}, {{0xf69,4},{0x17cd,4}}, {{0x17dd9,3},{0x8,1}}, {{0xef7,3},{0x3e23,4}}, + {{0xe97,3},{0x194a8,6}}, {{0x18f9,2},{0x3b49,6}}, {{0xead8,7},{0x1be9,3}}, {{0xc36,2},{0x78b5,2}}, + {{0x7d31,5},{0xc754,6}}, {{0xe,1},{0x188,2}}, {{0xd320,9},{0xcc9,2}}, {{0x150a8,7},{0x1392,3}}, + {{0x17c7e,6},{0x17c84,4}}, {{0x6386,9},{0xe6b,4}}, {{0x4853,3},{0x27d7,2}}, {{0x2de75,3},{0x677,2}}, + {{0x3bcd,4},{0x566f,4}}, {{0x1007,6},{0x2663,5}}, {{0x27e0,3},{0x5eaf,4}}, {{0xf89,3},{0x27a14,4}}, + {{0xfcb,2},{0xcc3,2}}, {{0x478f,3},{0x25886,5}}, {{0xcc7,1},{0x15ca,3}}, {{0x50fd,5},{0xed9,2}}, + {{0xebe,4},{0x1224,6}}, {{0xf20,2},{0xec6,3}}, {{0x1e80,6},{0xe6c,3}}, {{0x10188,5},{0x6a0f,4}}, + {{0x12e5,3},{0xa15d,4}}, {{0x109b,2},{0xcd3,1}}, {{0x113c,3},{0x6d08,4}}, {{0x11418,6},{0xe95,2}}, + {{0x73e0,5},{0xccb,2}}, {{0x19b7,3},{0x17e2f,4}}, {{0x2afbd,3},{0xcf6,2}}, {{0xf0c,1},{0x141a,2}}, + {{0xb74,1},{0x205a0,2}}, {{0xeda3,6},{0x4eb1,3}}, {{0xfb8,3},{0x16bc,10}}, {{0xe22,3},{0x2047c,5}}, + {{0xa671,5},{0x2514,4}}, {{0x712f,4},{0x1ffa,3}}, {{0x26263,5},{0x1bf0,2}}, {{0x3559,5},{0xe6b,4}}, + {{0x5e58,6},{0x5e6b,7}}, {{0x1687,4},{0xe65,2}}, {{0x12e5,3},{0x73d6,2}}, {{0x2623,4},{0xeee,3}}, + {{0xf89,3},{0x38ec,3}}, {{0x29bf9,4},{0xf15,1}}, {{0xe0f,3},{0xffc,3}}, {{0x1a66,1},{0x122d,2}}, + {{0x33ed,5},{0xe5e,2}}, {{0xf77a,5},{0xed5,3}}, {{0x4853,3},{0x22b2,3}}, {{0x18f83,7},{0xe95,2}}, + {{0x112b,5},{0xf32,2}}, {{0x1de7b,6},{0x1040,3}}, {{0x46bd,3},{0x22d9,7}}, {{0xc978,3},{0x9a30,5}}, + {{0xe7d,2},{0x10d3,3}}, {{0x170ba,5},{0x6,1}}, {{0x11f25,5},{0xe31,2}}, {{0x2e864,6},{0xe71,1}}, + {{0x1ff7,3},{0xc600,5}}, {{0x2fed4,4},{0xd,1}}, {{0xb379,3},{0x6ee8,3}}, {{0x712f,4},{0x19b3c,5}}, + {{0x1fa89,6},{0x2,2}}, {{0x25e2b,6},{0xed6,2}}, {{0x3eb3,9},{0xf59,2}}, {{0x28c92,4},{0x1eea3,3}}, + {{0xefb,3},{0x6,1}}, {{0x2fb9,3},{0xcce,2}}, {{0x1747,4},{0x7e9d,3}}, {{0x45,1},{0xc2,2}}, + {{0x4781,3},{0x2c8f2,3}}, {{0xccd,1},{0xfb0,2}}, {{0x10e7,5},{0x1dc3,7}}, {{0xe43,6},{0xe49,6}}, + {{0x1d437,6},{0x12a9,3}}, {{0x1939,2},{0xf1a,2}}, {{0xef7,3},{0x7d64,4}}, {{0xaaf,2},{0xb34,6}}, + {{0xfbf,15},{0xf23,3}}, {{0x75e8,10},{0xe92,3}}, {{0x30e53,3},{0x28b33,1}}, {{0x105f,3},{0x6452,4}}, + {{0x1052f,5},{0x51c8,5}}, {{0x2a310,4},{0x2a314,3}}, {{0x1f303,6},{0x1bc5c,3}}, {{0x2399,4},{0x13146,4}}, + {{0x2b048,6},{0x2afee,6}}, {{0x29fe,3},{0x1fcf,5}}, {{0x2c45,10},{0xe0b,4}}, {{0xcd2,2},{0x4fa8,3}}, + {{0x3976,3},{0x116f6,3}}, {{0x1cfa,5},{0x8672,7}}, {{0x1880e,7},{0xec6,3}}, {{0x5,2},{0x22a3,4}}, + {{0x3537,2},{0xa,2}}, {{0xcc1,1},{0x1a267,5}}, {{0x2858,8},{0x2075,3}}, {{0x1219,11},{0x1b80,3}}, + {{0x101f,2},{0xf34,2}}, {{0xa965,7},{0xe2b,2}}, {{0xf31,2},{0x4e43,4}}, {{0xe1f,3},{0x1c8a,4}}, + {{0xb,1},{0x59b4,3}}, {{0x11729,3},{0xe0d,2}}, {{0x14a7,4},{0x9101,4}}, {{0x28ca0,4},{0x442d,1}}, + {{0x1155,2},{0x1085,3}}, {{0x9f,1},{0x9e,2}}, {{0x3123,6},{0x895b,6}}, {{0x1eecb,7},{0xa,2}}, + {{0x9f,1},{0x8c,2}}, {{0x1937,4},{0x14ff,3}}, {{0x465b,4},{0xe32,1}}, {{0xc6f7,7},{0xf86,3}}, + {{0x5471,8},{0x16ad,5}}, {{0x9b3d,7},{0xebe7,4}}, {{0x151ca,7},{0x1392,3}}, {{0x2948,3},{0x2ba5,1}}, + {{0x2509b,5},{0x250a0,3}}, {{0x1847,5},{0xfb8,3}}, {{0x11e49,5},{0x320c,4}}, {{0x41ed,4},{0x1099,10}}, + {{0x25cd3,6},{0xed6,2}}, {{0x50fd,7},{0xe69,6}}, {{0x9a8,1},{0xcb8,1}}, {{0x1131,3},{0xa,2}}, + {{0x2b48,2},{0x59b4,3}}, {{0x116b7,5},{0xcd2,2}}, {{0xf65,4},{0x2c57,10}}, {{0xf0a,3},{0xee59,3}}, + {{0xe32,1},{0xeb4,2}}, {{0x712f,4},{0x8119,5}}, {{0xf0c,1},{0x4618,4}}, {{0xa67d,9},{0x296f,3}}, + {{0x46bd,3},{0x1b9e4,5}}, {{0x1274a,7},{0xe0a,1}}, {{0x1342e,5},{0xec5,4}}, {{0xbf91,7},{0xac54,5}}, + {{0x83a9,6},{0x111c,2}}, {{0x3a61,5},{0x2e2c,3}}, {{0x170ba,5},{0x16cf,5}}, {{0x170ba,5},{0xf63,2}}, + {{0xf0a,3},{0x3a91,3}}, {{0x2b48,2},{0x14ab,3}}, {{0xe1f,3},{0x4326,2}}, {{0x520e,5},{0xf35,3}}, + {{0x120c,3},{0xf1a,2}}, {{0x2de57,3},{0xf8,2}}, {{0xcc1,2},{0xcd3,1}}, {{0x73bb,3},{0xf86,2}}, + {{0x7989,6},{0x3a39,4}}, {{0x7795,5},{0x8,1}}, {{0xe32,1},{0xab27,5}}, {{0x123bc,6},{0x1288,4}}, + {{0x1019,4},{0xc300,3}}, {{0xf0a,3},{0x1e2f5,6}}, {{0x1d18b,7},{0xe95,2}}, {{0x7795,5},{0x100dd,4}}, + {{0xb,1},{0x1fc7,3}}, {{0x12bfc,4},{0xe0a,1}}, {{0x329d,5},{0x6782,7}}, {{0xe97,3},{0xfd3,4}}, + {{0x2171,3},{0xe7f,2}}, {{0x12d4,3},{0x74fc,2}}, {{0xe8a,2},{0x10a5,2}}, {{0x14a7,4},{0x101cf,6}}, + {{0xe11,1},{0xf86,2}}, {{0x2498,10},{0x13e3,4}}, {{0xede,1},{0xe08,1}}, {{0x299d2,3},{0xe86,2}}, + {{0x3d63,5},{0x1790,7}}, {{0x1837,9},{0x1c6d,6}}, {{0x12e5,5},{0x138e,2}}, {{0x9,1},{0x1601,3}}, + {{0x1a855,8},{0xe71,1}}, {{0x46af,3},{0x2d110,3}}, {{0xe7a,1},{0x2ed13,2}}, {{0x17092,5},{0x6a69,5}}, + {{0x1957,5},{0xfdf,3}}, {{0x14e7,7},{0xeb9,4}}, {{0x2eeaa,4},{0xe0f,1}}, {{0x1510c,6},{0x3976,3}}, + {{0x4853,3},{0x286d,3}}, {{0x2de5d,4},{0xf,1}}, {{0x123d0,5},{0xe2b,2}}, {{0x3a53,5},{0x2c93,6}}, + {{0x252ab,4},{0x7b30,4}}, {{0x9b9d,6},{0xcc9,2}}, {{0x17ec2,5},{0x1ed44,4}}, {{0x254a3,5},{0x7a88,3}}, + {{0x568c,5},{0x1392,3}}, {{0xe67,2},{0x18b2,5}}, {{0x4bd,2},{0xf,1}}, {{0x2f71,4},{0xd15f,3}}, + {{0x2fed4,4},{0x8d,1}}, {{0x3575,7},{0x2f26,5}}, {{0x6f1a,5},{0x16d9f,5}}, {{0x486f,6},{0x1749,5}}, + {{0xe30,3},{0xec6,3}}, {{0x7d41,3},{0x17df,4}}, {{0xede,1},{0x17ac9,2}}, {{0x73ef,2},{0xf02,2}}, + {{0x1567,3},{0x11d2,3}}, {{0x1657,6},{0x3abf,4}}, {{0x16d4a,5},{0x16d4f,5}}, {{0x1290,5},{0x2075,3}}, + {{0x7872,6},{0x4397,7}}, {{0xf4f,1},{0x1db45,2}}, {{0x83d9,6},{0x141e,5}}, {{0x1f7f,4},{0xe22,2}}, + {{0x18b10,7},{0x4cc2,3}}, {{0xe5b,3},{0x49a6,3}}, {{0x5903,5},{0xfe6,2}}, {{0x6c76,8},{0x6c7e,5}}, + {{0x750b,4},{0x122e,2}}, {{0xc2ed,7},{0x2b90,4}}, {{0x47c7,5},{0xe90,3}}, {{0x2015,3},{0x9594,9}}, + {{0x19b7,3},{0x15af1,6}}, {{0xbfc1,6},{0xcce,2}}, {{0xe,1},{0x578,2}}, {{0x7,2},{0x2,1}}, + {{0x2675d,2},{0xf0c,1}}, {{0x4899,4},{0xec6,3}}, {{0x1ac9f,6},{0xcc9,2}}, {{0xb379,3},{0x28b45,4}}, + {{0x4773,4},{0xf13,2}}, {{0x16b7,5},{0xf1d3,6}}, {{0x2de51,3},{0x512,2}}, {{0xb74,1},{0x205a5,1}}, + {{0x185de,5},{0x1152,3}}, {{0x4ee8,4},{0x2ef7,4}}, {{0x416f,5},{0xeabd,5}}, {{0xf8e,3},{0xeb4,2}}, + {{0xf22,2},{0xcd3,2}}, {{0xbbe9,7},{0xec6,3}}, {{0xfbf,5},{0x6190,4}}, {{0x6bf4,8},{0x594c,5}}, + {{0x19b9,1},{0x6418,7}}, {{0x7e81,7},{0x7,2}}, {{0xed9,2},{0xffc,3}}, {{0x12d4,3},{0xefa,2}}, + {{0x1207a,7},{0xe11,2}}, {{0xcbd,1},{0xcc1,1}}, {{0x1a66,1},{0x4767,1}}, {{0x445f,2},{0x2e6ff,3}}, + {{0x1967,3},{0x2aaa8,2}}, {{0x1240,2},{0x5538,2}}, {{0x1857,4},{0x127d,2}}, {{0x4765,3},{0x24d5e,2}}, + {{0xf77,3},{0xe11,1}}, {{0x5756,7},{0x1702,5}}, {{0x486f,11},{0xe11,1}}, {{0xf0a,3},{0x1050,3}}, + {{0x478f,3},{0x1e2ed,2}}, {{0x45,1},{0x2058b,3}}, {{0x4847,6},{0x34a5,3}}, {{0x2029f,7},{0xf35,2}}, + {{0x5,3},{0xe25,2}}, {{0x5de,2},{0x7b,1}}, {{0xeba9,6},{0x1d04,5}}, {{0x1837,5},{0x1cd3,2}}, + {{0x18a2a,7},{0xf7a,2}}, {{0x1877,4},{0xf7a,2}}, {{0x2de75,3},{0x4ac,2}}, {{0x490d,3},{0x4aef,3}}, + {{0x360f,7},{0xe67,7}}, {{0x1bc7a,6},{0xcd3,2}}, {{0x2de5d,3},{0x512,2}}, {{0x1357,8},{0x1357,8}}, + {{0x70a0,5},{0xccd,1}}, {{0x17ec2,5},{0x1214,5}}, {{0x4853,4},{0x261c7,4}}, {{0xe21,1},{0xeb4,3}}, + {{0x12ee8,7},{0xe11,1}}, {{0x70ad,3},{0x1da2b,6}}, {{0x82b9,7},{0xce8e,4}}, {{0xf77,5},{0x49b5,5}}, + {{0x1bef,2},{0xa,2}}, {{0x1367,4},{0xcb53,6}}, {{0x11b3,4},{0x6040,5}}, {{0xf72d,8},{0xe6b,3}}, + {{0x2c54d,4},{0x2b83,2}}, {{0x4781,3},{0xfb8,3}}, {{0xc295,4},{0x6,1}}, {{0xe97,3},{0x10cb,4}}, + {{0xec0,3},{0xed9,2}}, {{0xe67,2},{0xfb0,2}}, {{0x2eb37,1},{0xb74,1}}, {{0xf4f,1},{0x2d146,3}}, + {{0x307bb,2},{0x7905,1}}, {{0x478f,3},{0x1150,2}}, {{0x8914,5},{0xe67,2}}, {{0xe0f,2},{0x7b2f,5}}, + {{0xd475,9},{0xcc9,2}}, {{0x41b5,5},{0x166fb,5}}, {{0x1937,4},{0x24f7,4}}, {{0x2,1},{0xe78,2}}, + {{0x8c91,6},{0x2dd7,4}}, {{0x43c9,7},{0x350c,7}}, {{0x142d4,6},{0x3075,4}}, {{0x121a7,3},{0xe31,2}}, + {{0x1b131,5},{0x18b4,3}}, {{0x14a7,4},{0x14ff,3}}, {{0x106b0,7},{0x7251,4}}, {{0xadcd,5},{0x5261,4}}, + {{0x24793,5},{0x16a3a,3}}, {{0x19d7,10},{0xe1c,3}}, {{0xcd3,1},{0x7a15,4}}, {{0x1131,3},{0xf7a,2}}, + {{0x247a,5},{0x189f,3}}, {{0x2adf,4},{0x6479,4}}, {{0x111a,3},{0x1a807,6}}, {{0xe6f,3},{0x1ffa,3}}, + {{0x3b09,4},{0x8,3}}, {{0x479,2},{0x7b,1}}, {{0x2489,5},{0x288b,2}}, {{0x57,1},{0x272,2}}, + {{0x179b8,5},{0x138e,3}}, {{0x1137e,5},{0x1138e,6}}, {{0x114d,5},{0xfb0,3}}, {{0x7414,3},{0xfe6,4}}, + {{0x1969,1},{0x74f6,2}}, {{0xe5b,3},{0x30ad,6}}, {{0x1133c,7},{0x128c,4}}, {{0x4599,3},{0x9a7,2}}, + {{0xb3f1,3},{0x1ffa,3}}, {{0xb7bd,6},{0xe0b,4}}, {{0xe3d,12},{0xe49,6}}, {{0xe08,1},{0x5026,4}}, + {{0x152,2},{0x314,2}}, {{0xee69,5},{0x58a4,4}}, {{0x2b50b,2},{0x18efa,2}}, {{0x9345,6},{0x18b4,3}}, + {{0x1a07,3},{0x344b,4}}, {{0x92e5,9},{0xec3,3}}, {{0x5c02,5},{0x93dc,5}}, {{0x1716e,5},{0xc0a2,3}}, + {{0xb69d,3},{0x1fc7,3}}, {{0x104e,3},{0x7b70,5}}, {{0x45,1},{0x12e,2}}, {{0xf205,4},{0x155ea,4}}, + {{0x1db44,2},{0x1765e,2}}, {{0x6cde,4},{0x22a77,4}}, {{0xf15,1},{0x1dee,2}}, {{0x1cf6f,6},{0x1150,2}}, + {{0x2592b,4},{0x141f,4}}, {{0x185d,2},{0x6,1}}, {{0x2d259,2},{0x2d980,3}}, {{0x1977,4},{0xe2b,2}}, + {{0xe11,1},{0x2145c,5}}, {{0xa,2},{0xf59,2}}, {{0x20382,3},{0x74fb,3}}, {{0x18796,6},{0x1e8b,3}}, + {{0x19b7,3},{0x27dc,4}}, {{0xaaf,2},{0xb74,16}}, {{0xcc1,1},{0x82b3,6}}, {{0x1692,2},{0x1569,2}}, + {{0x495f,6},{0x34d7,4}}, {{0x2de5d,3},{0x611,2}}, {{0x1839,2},{0xfaf,2}}, {{0x4767,1},{0x1ebf,3}}, + {{0x1a07,3},{0x2245,3}}, {{0xf15,1},{0x20382,2}}, {{0x128da,6},{0xe95,2}}, {{0x1857,4},{0x5,2}}, + {{0x18772,2},{0x23f18,3}}, {{0x22b2,3},{0x2,1}}, {{0x46bd,5},{0xf1d,2}}, {{0x18480,5},{0x4618,4}}, + {{0x1bbf,5},{0x188b,4}}, {{0x2de75,3},{0x6aa,2}}, {{0x4ee8,7},{0xfb8,3}}, {{0x24bc3,4},{0x24bc7,4}}, + {{0x7414,3},{0xeea,3}}, {{0x4853,3},{0x809a,3}}, {{0xb3f1,3},{0x192cb,5}}, {{0xe97,6},{0x4eef,5}}, + {{0x2501,5},{0x11a6,2}}, {{0x6fd0,5},{0x22d9,4}}, {{0xf0a,3},{0x48da,2}}, {{0x2b89,3},{0xfaf,2}}, + {{0x14f7,5},{0x895c,5}}, {{0x1e08,5},{0x3959,8}}, {{0x3a8b,8},{0x1702,5}}, {{0x1e30d,5},{0xe11,1}}, + {{0x28d41,5},{0xf1a,2}}, {{0x29cf,3},{0x19462,4}}, {{0x26753,6},{0x74f6,2}}, {{0x10bcd,6},{0xc600,5}}, + {{0x1fed3,5},{0x1a9a,4}}, {{0xcc8,2},{0x1085,3}}, {{0x479,2},{0xf,1}}, {{0x2c37,9},{0xf7a,2}}, + {{0x1c91,6},{0xe2b,2}}, {{0x7414,3},{0x7921,3}}, {{0xccb,2},{0x8605,4}}, {{0x120d,3},{0xcbd,1}}, + {{0x111a,3},{0xe1fa,4}}, {{0x151b6,6},{0xed6,2}}, {{0x19f9,2},{0x4516,3}}, {{0x1109,5},{0x40d8,3}}, + {{0x478f,3},{0xb02a,3}}, {{0x4853,3},{0x23626,5}}, {{0x21941,6},{0xcc9,2}}, {{0x127f,4},{0x6,1}}, + {{0x29cf,3},{0x2f2e,4}}, {{0x24900,2},{0x2690c,2}}, {{0xf58,3},{0x149f,3}}, {{0x16692,6},{0x9a6,2}}, + {{0x17d50,7},{0xdd0a,3}}, {{0x9a8,1},{0x1153,2}}, {{0x121e6,7},{0xcc9,2}}, {{0x8ccd,6},{0x13c9a,4}}, + {{0x1702e,4},{0x4618,3}}, {{0x4765,3},{0xf7a,2}}, {{0x14fcc,7},{0xf7a,2}}, {{0x1fe31,6},{0xe80,2}}, + {{0x46af,3},{0x2d14c,3}}, {{0x261e,9},{0x1254,6}}, {{0xba99,5},{0x14b21,5}}, {{0x19b7,3},{0x25d56,3}}, + {{0x1081,7},{0x1dc2,5}}, {{0x29c0,3},{0xde07,3}}, {{0x7d31,5},{0x4531,3}}, {{0x1947,5},{0xcc3,2}}, + {{0x1a07,3},{0x2de2b,2}}, {{0xaf4,2},{0x1357,1}}, {{0xe97,3},{0x180a,3}}, {{0x15058,7},{0xec6,3}}, + {{0x28fe1,5},{0xf15,1}}, {{0xe97,3},{0x15390,3}}, {{0x12e5,5},{0x69ca,7}}, {{0x1e53,7},{0x3767,6}}, + {{0x2231,4},{0xe8a,2}}, {{0x1070,13},{0xfdf,4}}, {{0xea6a,5},{0x286d,3}}, {{0x29cf,3},{0x1569,2}}, + {{0xfcb,2},{0x1663,4}}, {{0xe0d,2},{0x1fc0,3}}, {{0x70fd,3},{0x115a,3}}, {{0xfeb2,8},{0x1392,3}}, + {{0x17efe,5},{0x2252,3}}, {{0x1f729,5},{0xf86,2}}, {{0xf11,1},{0xe0a,1}}, {{0x15e7,5},{0x568c,5}}, + {{0x2015,3},{0xe11,1}}, {{0x236c,4},{0x28249,3}}, {{0x2466b,6},{0x78ed,2}}, {{0xc,1},{0xb74,1}}, + {{0x1347,4},{0x7b,1}}, {{0x1487,11},{0xe69,5}}, {{0x13a7,8},{0x4a92,4}}, {{0x1e53,7},{0x189f,3}}, + {{0x6cde,4},{0x1dee,2}}, {{0xe8a,2},{0xfa6,3}}, {{0xb45f,2},{0x68a1,5}}, {{0x17df4,2},{0x12a83,5}}, + {{0x442d,1},{0xf4f,1}}, {{0x46bf,1},{0xe21,1}}, {{0x149c,3},{0x13e1,5}}, {{0x19f9,2},{0x53c2,3}}, + {{0x27fe,7},{0x6d5a,6}}, {{0x325,2},{0xf,1}}, {{0x119a,3},{0xe5e,2}}, {{0x1ebc,6},{0xec6,3}}, + {{0x46af,3},{0x44ad,3}}, {{0xb74,3},{0x78f9,1}}, {{0x2fe4d,4},{0x9f,1}}, {{0x5124,7},{0x512b,6}}, + {{0xed1,3},{0xce8e,4}}, {{0x15fe4,5},{0x10e2,3}}, {{0xf0a,3},{0xec0,3}}, {{0x11a15,6},{0xe77,3}}, + {{0x23e4,7},{0x170f,8}}, {{0xb8d1,4},{0x2236,3}}, {{0x19f7,4},{0x19020,5}}, {{0x168f,2},{0x27dc,4}}, + {{0x1a19,3},{0xe95,2}}, {{0x1607,5},{0xe86,2}}, {{0x7941,6},{0x2eb7,4}}, {{0xbb4,6},{0xaf4,1}}, + {{0x3567,8},{0x1702,4}}, {{0x46af,3},{0xf0d,2}}, {{0x1e328,5},{0x2,1}}, {{0xa641,9},{0xf23,3}}, + {{0xf59,2},{0xf1a,2}}, {{0xf0f,2},{0x3fb8,5}}, {{0x1607,10},{0x27dc,4}}, {{0xef7,3},{0x1cdf8,6}}, + {{0x1d27e,5},{0xf3a,3}}, {{0x4853,3},{0x48da,2}}, {{0xba3b,4},{0xfdd,6}}, {{0x1e08,6},{0x8f2c,5}}, + {{0xe83,3},{0xec6,3}}, {{0x1787,9},{0x2c16,5}}, {{0x1312c,6},{0xe11,1}}, {{0x478f,3},{0x2f766,2}}, + {{0x2de75,3},{0x556,2}}, {{0x47bb,4},{0x2c15,4}}, {{0xcdf8,5},{0x1392,3}}, {{0x12f6,6},{0x63bd,4}}, + {{0x8,1},{0xc300,3}}, {{0x2d79,5},{0x1258,5}}, {{0x1cdc,6},{0xf6e,7}}, {{0x17af8,5},{0x1e8f1,4}}, + {{0x19b7,3},{0x73d6,2}}, {{0x1817,4},{0x16312,6}}, {{0x35a3,3},{0xcc9,2}}, {{0x5770,5},{0x1601,3}}, + {{0x9525,6},{0x9537,6}}, {{0x3a29,4},{0x1bec7,5}}, {{0x41b5,7},{0xa,2}}, {{0xcc7,1},{0xf86,2}}, + {{0x13b4a,7},{0x1063,2}}, {{0x113c,3},{0x10cb,2}}, {{0x765d,6},{0xe7f,2}}, {{0x46bf,1},{0xa,2}}, + {{0x3123,6},{0x8,1}}, {{0x10afc,5},{0x91e3,6}}, {{0x4615,5},{0x8,1}}, {{0xf4f,1},{0x74f6,2}}, + {{0x2ec9,7},{0x6451,5}}, {{0x3b17,9},{0x3b20,5}}, {{0x11b47,5},{0xbf38,4}}, {{0x1342e,5},{0xcce,2}}, + {{0x4765,3},{0xe2f,1}}, {{0x4539,2},{0xed7d,5}}, {{0x2b7a,3},{0xcbd,1}}, {{0x27ef,4},{0x1943,2}}, + {{0xc015,4},{0xc019,8}}, {{0x79c5,4},{0x16935,5}}, {{0x3bdb,6},{0xb1d0,5}}, {{0x46bd,6},{0x1150,2}}, + {{0x2afa1,5},{0x1e57d,2}}, {{0xe99,2},{0x7f21,8}}, {{0x16b7,4},{0x1571e,6}}, {{0x20481,4},{0x20485,4}}, + {{0x5eda,5},{0x1b41,6}}, {{0x9d1d,9},{0xed6,2}}, {{0x70af,2},{0x1692,2}}, {{0x1db3b,2},{0xe19,1}}, + {{0x4765,3},{0x168b,4}}, {{0x479f,5},{0x2177,5}}, {{0x72cf,6},{0x15ef,7}}, {{0x29cf,3},{0x1e2ef,2}}, + {{0x2948,3},{0xec7,2}}, {{0xcc1,2},{0x38ec,3}}, {{0xf16,2},{0xfdf,3}}, {{0x4199,5},{0x1571,4}}, + {{0x1024,2},{0xfa6,3}}, {{0x2b84,2},{0x1510,4}}, {{0x70ad,3},{0x12a46,6}}, {{0x7788,7},{0x129a,6}}, + {{0x102b,10},{0xb74,6}}, {{0xfe8,2},{0x678f,6}}, {{0x2edc9,4},{0xe7a,1}}, {{0x27e0,3},{0x26ede,4}}, + {{0xe3d,4},{0x18eca,2}}, {{0xf70,2},{0x2277,5}}, {{0x7b51,4},{0x193c8,5}}, {{0x712f,4},{0x6,1}}, + {{0x772d,5},{0x1892b,5}}, {{0x163fe,7},{0x1252,3}}, {{0xb379,3},{0x101f,2}}, {{0x12c3,4},{0x1a0af,5}}, + {{0x11e33,7},{0x2dd7,4}}, {{0x28ca0,4},{0x1eea3,3}}, {{0x30a15,2},{0xcd6,1}}, {{0x46af,3},{0x2236,3}}, + {{0x57,1},{0x2ba,2}}, {{0x13a7,8},{0x1252,3}}, {{0xed6,3},{0xdd0a,3}}, {{0x105f,3},{0x4c16,3}}, + {{0x9a6,2},{0x193f,3}}, {{0x10b7,3},{0x1150,2}}, {{0x24653,4},{0x24bdf,2}}, {{0x108b,3},{0xfdd,4}}, + {{0x712f,6},{0x14e1,6}}, {{0x23e1,3},{0x2edd,3}}, {{0x1969,1},{0x20382,2}}, {{0x11b6a,6},{0xed6,2}}, + {{0x9351,5},{0x1cd3,2}}, {{0x1967,3},{0x46bf,1}}, {{0x9a4,3},{0x2f94,3}}, {{0x17f08,5},{0x809a,3}}, + {{0xcbd,1},{0x22a2,4}}, {{0x1c46,8},{0x1663,4}}, {{0x2de21,5},{0xf4f,1}}, {{0x442d,1},{0xe16,1}}, + {{0x1dc58,2},{0xf4cb,5}}, {{0xed9,2},{0x1153,2}}, {{0x1092,7},{0x8,1}}, {{0x127f,4},{0x3642,2}}, + {{0x188a,4},{0x7bf5,4}}, {{0xab5d,8},{0x11ad,4}}, {{0x11019,4},{0xe89,2}}, {{0x19b7,3},{0x1004,3}}, + {{0x5f1b,7},{0xe1b,4}}, {{0x1d72b,7},{0xf35,2}}, {{0xe0f,1},{0xe7a,1}}, {{0x1057,2},{0x286d,3}}, + {{0x18022,4},{0x43fc,2}}, {{0x181b,3},{0xcd3,2}}, {{0xf11,1},{0x24bdf,2}}, {{0x712f,4},{0x94b5,4}}, + {{0x10da6,8},{0x1c85,3}}, {{0x101f,5},{0xf35,3}}, {{0x9f,1},{0x677,2}}, {{0xe1f,3},{0x20543,2}}, + {{0x46af,3},{0xef3,4}}, {{0x2de75,3},{0x578,2}}, {{0x10fcc,6},{0xccd,1}}, {{0xe11,1},{0xcddd,5}}, + {{0x2aac8,5},{0x9a6,1}}, {{0x11dc5,6},{0xe0d,2}}, {{0xe16,2},{0x14aa,5}}, {{0x105df,8},{0x1059,3}}, + {{0xa,2},{0x14dd,9}}, {{0x155e,3},{0x6,1}}, {{0x1085,3},{0x1693,2}}, {{0x21ca9,5},{0xe11,1}}, + {{0x3e0,2},{0x8d,1}}, {{0x4ef5,4},{0xfcb,3}}, {{0x236c,4},{0x124ed,5}}, {{0x1cf9c,6},{0xe0d,2}}, + {{0xb175,7},{0xe69,5}}, {{0x18ea8,6},{0x18eae,4}}, {{0x19427,6},{0x31f8,3}}, {{0x8f25,7},{0x8f2c,5}}, + {{0x46af,3},{0x1f875,1}}, {{0x10b8,2},{0x6,1}}, {{0x6519,6},{0x6a0f,4}}, {{0x4853,3},{0x26d6c,3}}, + {{0x4853,3},{0x18772,2}}, {{0xf0c,1},{0x12f13,7}}, {{0x9f,1},{0xc2,2}}, {{0x1677,6},{0x2e28,4}}, + {{0x249eb,6},{0xed6,2}}, {{0x12d1c,6},{0x3694,3}}, {{0x53ef,9},{0x1de7,3}}, {{0xe97,3},{0x2c6fa,3}}, + {{0x1763c,6},{0x8427,4}}, {{0xf53,2},{0x6e91,3}}, {{0x4137,5},{0x9dca,3}}, {{0x4519,5},{0x451e,9}}, + {{0x724d,6},{0x1cd6,6}}, {{0x12e5,3},{0x18023,3}}, {{0x46bf,1},{0xe19,1}}, {{0x6fe1,3},{0xe8a,2}}, + {{0xe27,2},{0x2c21,4}}, {{0xb9c3,4},{0xed6,2}}, {{0x2957,7},{0xf93,5}}, {{0x478f,4},{0x14e4b,5}}, + {{0x769e,8},{0x3ebb,4}}, {{0x1817,4},{0xcb53,6}}, {{0xe1f,3},{0x584a,2}}, {{0x1d2a2,5},{0xe31,2}}, + {{0x13e0,3},{0xed6,2}}, {{0xead,3},{0xe86,2}}, {{0xccb,2},{0x101f,3}}, {{0x1cf6f,6},{0x81c4,3}}, + {{0x29a2,5},{0xfb0,2}}, {{0x2de57,3},{0x611,2}}, {{0x1e08,6},{0xc6bc,4}}, {{0xb51d,5},{0x61ba,4}}, + {{0x2bd5,4},{0xef5,2}}, {{0x1817,4},{0x14c6c,4}}, {{0x1137e,5},{0x1393,3}}, {{0x2b84,4},{0x1c10,4}}, + {{0xf11,1},{0x1db45,2}}, {{0x2213,5},{0x29e3,4}}, {{0x1e637,6},{0xec6,3}}, {{0xcbd,1},{0x1796b,4}}, + {{0x8505,8},{0xcce,2}}, {{0x27e0,4},{0xe65,2}}, {{0x1df65,6},{0xb400,3}}, {{0x31955,2},{0x2afc8,2}}, + {{0x46af,3},{0x2b78,4}}, {{0xe27,2},{0x136f8,6}}, {{0x79b9,6},{0xe11,1}}, {{0x69,1},{0x5bc,2}}, + {{0x29de,4},{0xc76a,6}}, {{0x24b6,5},{0xa54a,7}}, {{0x29441,4},{0x193f,3}}, {{0x2f2b,5},{0x1050,3}}, + {{0xacdd,7},{0x2c3b,5}}, {{0xeab,2},{0x1295,3}}, {{0x71b1,6},{0x57d1,4}}, {{0xe5b,3},{0x41e8,5}}, + {{0x12e7,4},{0x1241,11}}, {{0xc954,5},{0xe86,2}}, {{0x70e1,6},{0x1b4f,5}}, {{0x1f38,1},{0xe2b,2}}, + {{0x4cb9,7},{0x49bf,3}}, {{0x14e5a,8},{0x7,2}}, {{0xe83,5},{0x15bc,11}}, {{0x5724,3},{0x269f,6}}, + {{0xe32,1},{0x5,2}}, {{0x1876e,7},{0x18775,3}}, {{0x26b4,7},{0x1c6d,5}}, {{0x14919,4},{0xb397,2}}, + {{0x1957,7},{0x150e,9}}, {{0x13fdc,6},{0xe0b,4}}, {{0x127f,3},{0x2c04,3}}, {{0x2de63,3},{0x11c,2}}, + {{0x82b9,7},{0xce83,4}}, {{0x4589,8},{0xe69,5}}, {{0x12a5,4},{0x12a9,5}}, {{0x5bb6,3},{0xcc3,2}}, + {{0xe,1},{0x1be,2}}, {{0x4fdf,7},{0x613f,4}}, {{0xe22,3},{0xf91,3}}, {{0x3089,5},{0x1d32,3}}, + {{0xe802,6},{0x7d99,4}}, {{0xe71,1},{0xfcb,2}}, {{0x33a7,5},{0x8672,7}}, {{0x1007,6},{0x2083,4}}, + {{0xb1c9,7},{0x1db3,4}}, {{0x1e08,6},{0x10b7,3}}, {{0x11793,6},{0x11799,5}}, {{0xf89,3},{0x4,1}}, + {{0x19b7,3},{0xe33,1}}, {{0xe99,1},{0x11a6,2}}, {{0x1e9e,5},{0x1eb2,4}}, {{0xf0a,3},{0x33d3,2}}, + {{0x22f05,4},{0xb,1}}, {{0x1467,4},{0x1a98,6}}, {{0x38e7,5},{0xf91,3}}, {{0x7416,1},{0xe92,3}}, + {{0x308cb,4},{0x20599,1}}, {{0x9,2},{0xfe8,2}}, {{0x1967,3},{0x568d,6}}, {{0x2015,3},{0x6,1}}, + {{0x7414,3},{0xe447,3}}, {{0x10d3,3},{0x2,1}}, {{0xe0b,2},{0xe22,2}}, {{0x2de63,3},{0x6cc,2}}, + {{0x9d71,7},{0x2eb7,4}}, {{0x4757,9},{0x12be,5}}, {{0x6cc8,3},{0x6,1}}, {{0x7414,3},{0xf8e,3}}, + {{0x20f6,5},{0x808b,6}}, {{0x3a61,5},{0x149c,3}}, {{0x1ab1,7},{0x7b94,5}}, {{0x19c7,6},{0xfc0e,5}}, + {{0x2f9b,8},{0xf86,3}}, {{0xd685,5},{0xd68a,6}}, {{0x1647,5},{0x3756,9}}, {{0xed1,4},{0x96a9,8}}, + {{0x123b,9},{0x1244,8}}, {{0xf16,2},{0xeac,3}}, {{0xb199,5},{0x16de5,5}}, {{0x3a29,4},{0x7921,3}}, + {{0x22a63,5},{0xf91,3}}, {{0xf11,1},{0x19b9,1}}, {{0x12fa6,7},{0x2e2c,3}}, {{0x1109,5},{0xd4e8,6}}, + {{0x5944,8},{0xec6,3}}, {{0x2ba5,1},{0x2,2}}, {{0x8f0d,7},{0xe95,2}}, {{0xe78,1},{0xe71,1}}, + {{0x1b299,6},{0x11d2,3}}, {{0x235d,5},{0xe89,2}}, {{0x114bd,6},{0x1150,2}}, {{0x20341,7},{0xed9,2}}, + {{0x22d8,8},{0xed9,2}}, {{0x10a3,3},{0xcba,2}}, {{0xcc6c,5},{0xf0f,2}}, {{0x33c3,5},{0x129a,6}}, + {{0x113c,3},{0x1af69,6}}, {{0x181b0,5},{0x158f,3}}, {{0x17420,7},{0x1085,3}}, {{0x2f71,4},{0x82d5,5}}, + {{0x172a4,5},{0x1210,3}}, {{0xbfcd,5},{0x305a,5}}, {{0xe1f,3},{0x7955,4}}, {{0x44f1,3},{0x1f9f,3}}, + {{0x3107,9},{0x1392,5}}, {{0xcb8,1},{0x2280,2}}, {{0x442b,3},{0x8,2}}, {{0x1a66,1},{0xfb8,3}}, + {{0x4781,3},{0xfff,3}}, {{0x4695,3},{0xe89,2}}, {{0x959d,4},{0xa84c,4}}, {{0x9a8,1},{0x14bcb,5}}, + {{0x2e280,3},{0x205a7,1}}, {{0xcd3,2},{0xe1b,4}}, {{0x79f7,3},{0x1e8b,3}}, {{0x25405,3},{0x17c0,2}}, + {{0x260fb,4},{0x260ff,4}}, {{0x156ed,2},{0x8,1}}, {{0x1dbbf,4},{0xe6b,4}}, {{0x7b,1},{0x152,2}}, + {{0x11788,4},{0x4516,3}}, {{0xcef5,8},{0xcc9,2}}, {{0x2cbe5,4},{0xe21,1}}, {{0x2e6f9,3},{0x442d,1}}, + {{0x70ad,4},{0xf13,2}}, {{0xb595,5},{0x10b9,2}}, {{0x878d,10},{0xcc9,2}}, {{0x7414,3},{0x1152,3}}, + {{0x2e271,3},{0x11,1}}, {{0x3583,5},{0xefa,2}}, {{0xe83,4},{0x910c,5}}, {{0x1132,2},{0xcbd,1}}, + {{0x1008b,6},{0xf1a,2}}, {{0x1579,5},{0x9389,4}}, {{0xe13,3},{0xeaa,2}}, {{0xc05d,5},{0x30f7,2}}, + {{0xad1e,3},{0xb,1}}, {{0xf22,2},{0xcb53,6}}, {{0xf4f,1},{0x3320,4}}, {{0x13a7,5},{0xcc3,3}}, + {{0x3441,9},{0x1d7d,4}}, {{0xef7,3},{0xdc6f,4}}, {{0x1d962,7},{0xed6,2}}, {{0x11a6,8},{0xe92,5}}, + {{0x82dd,6},{0xdd0a,3}}, {{0xe09,1},{0xe78,2}}, {{0x1059,3},{0x32e9,8}}, {{0x3559,4},{0xcb8,2}}, + {{0x450b,4},{0xac0d,3}}, {{0x25bcb,6},{0xfe6,2}}, {{0xede,1},{0x1e3b,4}}, {{0x4ef5,4},{0x8cd4,5}}, + {{0x442b,3},{0xf1a,2}}, {{0x26b4,7},{0xe67,7}}, {{0xe0f,1},{0xb162,3}}, {{0x2a524,6},{0x6,1}}, + {{0x2ad94,4},{0xf15,1}}, {{0xe71,1},{0x5ea9,9}}, {{0xcc8,1},{0x158ff,5}}, {{0x8d,1},{0x140,2}}, + {{0x1be,2},{0x589,2}}, {{0x368d,11},{0x1be9,3}}, {{0x1007,6},{0x68d4,7}}, {{0xf15,1},{0x4538,3}}, + {{0x7170,4},{0xcc6,2}}, {{0xcba,2},{0xe22,2}}, {{0x11efb,3},{0xae9e,6}}, {{0x15396,5},{0xeed,2}}, + {{0x6610,8},{0x13e3,4}}, {{0x1007,5},{0xf03,3}}, {{0xb3f1,9},{0xed6,2}}, {{0x1e62,5},{0x1b4f,7}}, + {{0x9b85,5},{0x2e2c,3}}, {{0x7636,7},{0x3155,6}}, {{0x128da,7},{0xed6,2}}, {{0xe886,7},{0xa7e1,4}}, + {{0x9c69,7},{0xeed,3}}, {{0x1eb23,5},{0x12bf,4}}, {{0x2fed4,4},{0x7b,1}}, {{0xe92,3},{0xfcb,3}}, + {{0xbc0d,5},{0x479f,2}}, {{0xe11,1},{0xe71,1}}, {{0x523,2},{0xe,1}}, {{0xf46d,7},{0x1a9a,4}}, + {{0x2dcb3,4},{0x1f875,1}}, {{0x4f79,3},{0xf62,3}}, {{0xe5b,3},{0xfa1,2}}, {{0x10c5,4},{0xa,2}}, + {{0xf0a,3},{0xf70,2}}, {{0x1587,15},{0xe11,1}}, {{0x1817,7},{0x13e2,4}}, {{0x9a8,1},{0x43b5,6}}, + {{0x1481a,6},{0xef3,4}}, {{0x16340,6},{0x27dc,4}}, {{0x2cbee,3},{0x48d3,2}}, {{0x24513,5},{0x183b,3}}, + {{0x1062,2},{0x122d,4}}, {{0x10a3,3},{0xf16,2}}, {{0x2231,4},{0x7949,4}}, {{0x478f,3},{0x4,1}}, + {{0x2a47,3},{0xf20,2}}, {{0x12e5,3},{0x7416,1}}, {{0x2a83,4},{0x1860a,6}}, {{0x9,1},{0x4188,3}}, + {{0xfad,5},{0x3b74,3}}, {{0x9219,5},{0x12c45,4}}, {{0x46af,3},{0xf02,2}}, {{0x12e5,3},{0x2f1ca,2}}, + {{0x4,1},{0xe6b,4}}, {{0x5,1},{0x277d,3}}, {{0x8cdf,3},{0x8ce2,3}}, {{0xf89,3},{0x9a6,1}}, + {{0xf65,5},{0x19462,4}}, {{0x1081,7},{0x7d80,5}}, {{0x46af,5},{0x17f7b,5}}, {{0x13938,6},{0xc3d0,4}}, + {{0x42db,6},{0xaa38,5}}, {{0x2dad9,5},{0x2ba5,1}}, {{0x2e2b3,2},{0xbb6,2}}, {{0xb7d7,3},{0x1244,7}}, + {{0x2ace,10},{0x6cb4,3}}, {{0x2ca7,5},{0x7cca,7}}, {{0x22ed3,6},{0xed9,2}}, {{0x1977,4},{0x1088,4}}, + {{0xe8a,2},{0x13e4,3}}, {{0x7414,3},{0x2c484,3}}, {{0x73bb,3},{0x3,1}}, {{0x3903,7},{0x390a,7}}, + {{0xf1d,1},{0xe7f,2}}, {{0x12d4,3},{0x14223,7}}, {{0xbbad,7},{0x1fc7,3}}, {{0x2022a,7},{0xe80,2}}, + {{0x46af,3},{0x1fa2,3}}, {{0xe6f,4},{0x2271,11}}, {{0x23c4b,3},{0xad8b,3}}, {{0x2975,6},{0x7d81,4}}, + {{0xfa6,3},{0xed6,2}}, {{0xcc5,2},{0xe95,2}}, {{0x18cb4,6},{0x1944,3}}, {{0x1be,2},{0x567,2}}, + {{0x4871,2},{0x33d3,2}}, {{0x2015,4},{0x223a7,4}}, {{0x6b8c,5},{0x56a8,5}}, {{0x242a3,5},{0x6008,3}}, + {{0xf0a,3},{0x1aa7,10}}, {{0x118b3,5},{0xeab,2}}, {{0x2e193,4},{0x5ab,2}}, {{0x1790,3},{0xe77,3}}, + {{0x6,2},{0x279aa,4}}, {{0x4781,3},{0x1802d,4}}, {{0x9495,8},{0x949d,4}}, {{0x4781,3},{0x29436,2}}, + {{0x22a3,2},{0xe09,1}}, {{0x1e571,4},{0x24bcd,2}}, {{0x496e,4},{0xe0b,4}}, {{0x9add,5},{0x4e3c,3}}, + {{0x15cce,8},{0xe11,1}}, {{0x101f,2},{0x1b41,6}}, {{0x4f02,6},{0x1177,7}}, {{0x1230a,4},{0xe95,2}}, + {{0x1dee,2},{0xcbd,1}}, {{0xc88e,6},{0x5342,3}}, {{0x1885e,6},{0x7f44,4}}, {{0x1797,10},{0x17a1,6}}, + {{0x1a07,3},{0x9,2}}, {{0x28b3a,1},{0xaf4,1}}, {{0x30f6f,4},{0x2afc8,2}}, {{0x20579,1},{0x20599,1}}, + {{0x70ad,3},{0xcc6,2}}, {{0x4853,3},{0x2aca0,4}}, {{0x30e53,3},{0xb74,1}}, {{0x27ef,4},{0xccb,2}}, + {{0xb12d,6},{0xc992,4}}, {{0x1faa4,6},{0xf86,3}}, {{0x129ac,6},{0x5724,3}}, {{0x17030,3},{0xe5e,2}}, + {{0x9405,5},{0x3bee,5}}, {{0x17f7,6},{0x3c1c,5}}, {{0x45,1},{0x176,2}}, {{0x47c7,5},{0xb0ca,3}}, + {{0x181b,3},{0xeed,4}}, {{0x115a,3},{0xcd3,1}}, {{0x150c6,5},{0x2dc6,4}}, {{0x2b46,4},{0xfb0,2}}, + {{0x1230,3},{0x2,1}}, {{0x28fd,10},{0x2781,5}}, {{0x1a27,4},{0x2463,7}}, {{0x2f01,8},{0x1632,5}}, + {{0x9e55,4},{0xcc9,2}}, {{0x1d40,2},{0x18f05,4}}, {{0x2a47,3},{0xf8f,4}}, {{0x1081,7},{0x4b6e,6}}, + {{0x90f9,7},{0x4f55,4}}, {{0x254b3,4},{0x254b7,4}}, {{0x9f,1},{0x6bb,2}}, {{0x7414,3},{0x1153,3}}, + {{0x11817,5},{0x1692,2}}, {{0xaaf,2},{0x10cb,2}}, {{0xb7bf,4},{0x4665,4}}, {{0xe,1},{0xd4,2}}, + {{0x29cf,3},{0x4164,3}}, {{0x34b1,5},{0x6452,4}}, {{0x1677,3},{0x18b4,3}}, {{0x2c59,4},{0x348b,3}}, + {{0x77f0,5},{0x14ff,8}}, {{0xaf2,10},{0xaf4,1}}, {{0x2006,3},{0x2075,3}}, {{0x2ad9b,5},{0x2690c,2}}, + {{0x1357,2},{0x1357,1}}, {{0xf77,4},{0xa744,5}}, {{0xf0d,2},{0xcc9,2}}, {{0x1817,4},{0x450f,5}}, + {{0x455f,5},{0x10f2,5}}, {{0x2de63,3},{0x12e,2}}, {{0xe08,1},{0x1f03f,2}}, {{0x127f,3},{0x189b,4}}, + {{0x11d0a,5},{0x123e,3}}, {{0x1a07,3},{0xe0c,3}}, {{0x2968d,5},{0xcce,2}}, {{0x7604,7},{0xed6,2}}, + {{0xee4,4},{0x3b6f,10}}, {{0x2c55f,5},{0x1a66,1}}, {{0x4781,3},{0x1461f,4}}, {{0xf31,2},{0x142d,3}}, + {{0xc017,2},{0x716c,4}}, {{0x11d5,5},{0x3153,7}}, {{0x117d5,7},{0x117e7,4}}, {{0xe2f,1},{0x74f6,2}}, + {{0xcbc7,8},{0x5342,3}}, {{0x16318,6},{0x23e1,3}}, {{0xe97,3},{0xcc3,3}}, {{0xe1f,3},{0x17c0,2}}, + {{0x4,1},{0x23f76,5}}, {{0x4b0c,10},{0x14a2,3}}, {{0x16a7,3},{0x12213,5}}, {{0x31955,2},{0x2e7a2,2}}, + {{0xf0a,3},{0x1155,2}}, {{0x1cdc,6},{0x6894,6}}, {{0x236c,5},{0xb0e0,5}}, {{0x4781,3},{0xf7a,2}}, + {{0xf0c,1},{0x2145c,5}}, {{0x33a7,8},{0x18b2,5}}, {{0x115a,3},{0xec6,3}}, {{0x7817,10},{0x1fc7,3}}, + {{0x2ba5,1},{0x23e99,2}}, {{0x1803e,6},{0x6,1}}, {{0x32ab,6},{0xf91,3}}, {{0x2b4fe,2},{0x2afc8,2}}, + {{0x1cb9,2},{0x11a6,2}}, {{0x2f71,7},{0xa,2}}, {{0x309b,5},{0xcce,2}}, {{0x5bb4,5},{0x5bb9,8}}, + {{0xb4f0,5},{0x4665,4}}, {{0x545,2},{0xe,1}}, {{0x70ad,3},{0x204e0,2}}, {{0x780a,4},{0x6552,4}}, + {{0xc0f9,5},{0x1054,3}}, {{0x18f7,7},{0x1224,6}}, {{0x7416,1},{0xf1f,3}}, {{0x12b50,6},{0xcc3c,4}}, + {{0xc29d,3},{0x13f7e,4}}, {{0x79f5,7},{0x1392,3}}, {{0x2e28,3},{0x58a3,5}}, {{0x1137e,5},{0x949d,3}}, + {{0x286d,3},{0xeab,2}}, {{0x29c0,3},{0x1132,2}}, {{0x19f9,2},{0x5fa5,5}}, {{0x10c0f,10},{0x5,1}}, + {{0x14bee,7},{0xeee,3}}, {{0x19b7,3},{0x1393,3}}, {{0x50af,7},{0x3fb8,5}}, {{0x1be,2},{0x5cd,2}}, + {{0xf0a,3},{0x3002,9}}, {{0x116da,3},{0x1829b,5}}, {{0x1a02d,6},{0xf86,3}}, {{0x177d6,6},{0xec6,3}}, + {{0x20056,6},{0x7a36,3}}, {{0x4853,3},{0xe13,3}}, {{0x70ad,3},{0x2d3bd,2}}, {{0x73b9,5},{0x14649,5}}, + {{0x4765,3},{0x17bff,2}}, {{0x183f4,8},{0xfe6,2}}, {{0x65f6,8},{0x1722,5}}, {{0x11f51,6},{0x10d3,3}}, + {{0xe6f,3},{0x15173,7}}, {{0x2eed7,4},{0x2ba5,1}}, {{0x57,1},{0xf8,2}}, {{0x1af81,5},{0x17ec,4}}, + {{0x35c9,10},{0xfa9,4}}, {{0x103ae,4},{0x1392,5}}, {{0x30637,2},{0x30637,2}}, {{0x6171,5},{0xe92,3}}, + {{0x4313,9},{0x431c,5}}, {{0x2415b,6},{0xf35,2}}, {{0x965d,8},{0xe1c,3}}, {{0xe80d,7},{0x3ebb,4}}, + {{0x138e,4},{0xe77,3}}, {{0xf16,2},{0x5,2}}, {{0x4693,5},{0x104dd,4}}, {{0xf11,1},{0x39a2,4}}, + {{0x69,1},{0x611,2}}, {{0x2b0aa,2},{0xd7a,2}}, {{0x2e280,3},{0xc,1}}, {{0x2b000,6},{0x7899,6}}, + {{0x105be,7},{0x105c5,4}}, {{0x1182d,6},{0x238c,2}}, {{0x2cc,2},{0x8d,1}}, {{0x2de63,4},{0x8d,1}}, + {{0x2e193,4},{0xf8,2}}, {{0xe83,3},{0x82c9,6}}, {{0x2b84,2},{0x141f,4}}, {{0x111a,3},{0x178a,3}}, + {{0x1db5a,6},{0xf62,3}}, {{0x712f,4},{0x2261,3}}, {{0x17c24,6},{0x61dd,4}}, {{0x18016,5},{0x73d6,2}}, + {{0x442d,1},{0x2ba5,1}}, {{0x4459,5},{0x445e,5}}, {{0x2858,4},{0x16b96,6}}, {{0xb9ea,3},{0x1569,2}}, + {{0x1807,6},{0xb405,4}}, {{0x1e8da,5},{0x3933,4}}, {{0x1969,1},{0xcddd,5}}, {{0x7b,1},{0x325,2}}, + {{0x38e7,4},{0x1b885,5}}, {{0xf9d,3},{0x23d2,3}}, {{0x1607,5},{0x1a578,4}}, {{0xf8e,3},{0xe0a,1}}, + {{0x376d,7},{0x15a0,7}}, {{0xe99,1},{0x4cff,4}}, {{0xcb8,1},{0xc600,5}}, {{0xe08,1},{0x248ff,3}}, + {{0xe45b,5},{0xf0f,2}}, {{0xbf19,9},{0x1be9,3}}, {{0x1367,3},{0x2123d,4}}, {{0x4855,2},{0x7097,5}}, + {{0x10188,5},{0x1380,5}}, {{0x2de57,3},{0x1ac,2}}, {{0xf7a,2},{0x17ec,4}}, {{0x1a14a,3},{0xec6,3}}, + {{0x1969,1},{0x17ac9,2}}, {{0x2de75,3},{0x48a,2}}, {{0xe21,1},{0x120c,3}}, {{0xe516,5},{0x3fb8,5}}, + {{0x17dfa,5},{0xcc5,2}}, {{0xccd,1},{0x7f8f,6}}, {{0x19b9,1},{0x19462,4}}, {{0x2015,3},{0x8a70,5}}, + {{0x11cb,3},{0x240b,5}}, {{0x3559,4},{0xe31,2}}, {{0x16d7,10},{0x23d0,5}}, {{0x23c3b,5},{0x73d6,3}}, + {{0x2054a,2},{0xf0c,1}}, {{0x4765,3},{0x239e,3}}, {{0x12e5,3},{0xacb0,9}}, {{0x10f4a,5},{0xef5,2}}, + {{0x12f8,2},{0x1ebf,3}}, {{0x1d2fc,6},{0xe0d,2}}, {{0x11767,5},{0xec53,6}}, {{0x30359,4},{0x2e27d,1}}, + {{0x8,1},{0x2e346,4}}, {{0xc6f7,4},{0x126a4,6}}, {{0x2d11,3},{0x180b,3}}, {{0x317ac,2},{0xd1c,2}}, + {{0x2370b,7},{0xe11,1}}, {{0x4765,3},{0x2d4ed,2}}, {{0x1f54c,6},{0x15e9,3}}, {{0x9fd5,7},{0xe69,5}}, + {{0x1e8f,11},{0xf86,3}}, {{0x6,2},{0x2815,7}}, {{0x18372,5},{0xf62,3}}, {{0x9a9,2},{0x7f21,8}}, + {{0x1aed,7},{0x1b03,8}}, {{0x2be3,5},{0x5dd0,6}}, {{0x2e83,8},{0x2e8b,6}}, {{0xedd,1},{0x1de8,2}}, + {{0x1587,4},{0xcc8,1}}, {{0xf11,1},{0xcbac,5}}, {{0x48da,2},{0xe16,1}}, {{0x48b5,9},{0xeed,4}}, + {{0xe2b,2},{0x2091,4}}, {{0x4781,3},{0x949d,3}}, {{0xe83,3},{0x27544,4}}, {{0x1088,3},{0x1b69,3}}, + {{0x1e62,4},{0x13d42,6}}, {{0x29cf,3},{0x2d65d,2}}, {{0x4773,4},{0x2e5f,3}}, {{0x11dc,3},{0xcd3,1}}, + {{0xf89,3},{0x2467,4}}, {{0x354b,7},{0xe92,3}}, {{0x2777,8},{0x6b53,5}}, {{0x1133c,5},{0x1ebd3,4}}, + {{0x73ac,5},{0xe31,2}}, {{0x4,1},{0xb156,7}}, {{0x70ad,3},{0x1da34,6}}, {{0x8151,7},{0x266e,5}}, + {{0x1a27,4},{0xcd3,2}}, {{0xede,1},{0x2af9f,2}}, {{0x258e5,4},{0xe31,2}}, {{0xf079,9},{0xf92,2}}, + {{0xe2f,1},{0x48d3,2}}, {{0x12d6,3},{0xe0b,4}}, {{0x4855,3},{0x8,2}}, {{0xcc7,1},{0xfa6,3}}, + {{0x1a66,1},{0x9e34,4}}, {{0xaf4,8},{0xaf4,1}}, {{0x46bd,3},{0xefa,2}}, {{0x2b0d0,2},{0xe41,2}}, + {{0xdb34,6},{0xdb3a,5}}, {{0x28c1,4},{0xb183,3}}, {{0xe5e,2},{0xb,1}}, {{0x2e29,3},{0xe0b,4}}, + {{0xe35,8},{0xe3d,18}}, {{0xe35,26},{0xe4f,12}}, {{0x1567,4},{0x2844,5}}, {{0x2a47,3},{0x22df6,5}}, + {{0x1bb12,7},{0xf70,2}}, {{0x111a,3},{0x2280,2}}, {{0x1019,4},{0xed7d,5}}, {{0x11166,4},{0xf35,2}}, + {{0x199ac,5},{0x12a9,3}}, {{0xe83,3},{0xe0b,2}}, {{0xe66,2},{0x11d9,3}}, {{0x58a8,10},{0xf35,3}}, + {{0x19b7,3},{0x1e2e3,2}}, {{0xe99,1},{0xe22,2}}, {{0x20da9,5},{0x1155,2}}, {{0x19b7,3},{0x1e3b,4}}, + {{0x77bc,4},{0x1fc0,3}}, {{0xf02,2},{0xe22,2}}, {{0x62dd,6},{0x1702,4}}, {{0xbb4,2},{0x2e7e8,4}}, + {{0xe87,2},{0xee9,2}}, {{0x12f8,2},{0x12c63,5}}, {{0x2a47,3},{0x1f73e,6}}, {{0x1537,4},{0xcd3,1}}, + {{0x5e4b,6},{0x79cd,4}}, {{0x15058,7},{0xcc9,2}}, {{0xe7a,1},{0x1db44,2}}, {{0x3e0b,5},{0x8f39,4}}, + {{0x1efc0,4},{0xe67,3}}, {{0xe88,3},{0x53da,4}}, {{0x1e26,6},{0x1e3b,9}}, {{0x15e7,5},{0x1ce43,3}}, + {{0x41d1,8},{0xe11,1}}, {{0xb9cd,8},{0xb9d5,4}}, {{0x1677,3},{0x1b941,6}}, {{0xe0a,1},{0x1025,1}}, + {{0xbdef,2},{0x11dc,3}}, {{0x6bb3,9},{0x6,1}}, {{0x9a6,1},{0x2ba5,1}}, {{0x3559,4},{0x13375,5}}, + {{0x2006,3},{0x1b56c,6}}, {{0x201d2,3},{0x1a6e,3}}, {{0x46bd,3},{0x2ad98,3}}, {{0x1917,4},{0x1defd,5}}, + {{0x1677,5},{0xec5,4}}, {{0x48da,3},{0x74fb,3}}, {{0x7f41,7},{0x56b5,5}}, {{0xbd09,9},{0x2ee9,3}}, + {{0xa185,7},{0x90f4,5}}, {{0x12d4,3},{0x1766a,2}}, {{0x74f1,4},{0x1a66,1}}, {{0x19c7,6},{0x1b40,5}}, + {{0x32c7,12},{0xe11,1}}, {{0x2779,4},{0xe0d,2}}, {{0x7b,1},{0x44,2}}, {{0x27ef,6},{0xae3f,6}}, + {{0x2de51,3},{0x699,2}}, {{0x2de63,3},{0x3be,2}}, {{0xf77,3},{0x1a1c5,6}}, {{0x10bac,5},{0x2175,4}}, + {{0x4853,3},{0x26921,2}}, {{0x2768,7},{0x1eff,7}}, {{0xf0a,3},{0x1096,3}}, {{0xe2f,1},{0xe08,1}}, + {{0x113f,2},{0x1252,3}}, {{0x1171,6},{0x1177,7}}, {{0x2015,3},{0x18023,3}}, {{0x2df3b,4},{0x2f0,2}}, + {{0x1e9e,4},{0x1abb0,5}}, {{0xee95,6},{0xccaa,4}}, {{0x9,1},{0xe7f,2}}, {{0xd131,4},{0x6479,4}}, + {{0x1c865,5},{0x5724,3}}, {{0xc27b,2},{0xe4d,2}}, {{0x140e0,5},{0x16ad,5}}, {{0x2867,11},{0x2872,4}}, + {{0x2de75,3},{0x523,2}}, {{0xf0d,2},{0xcce,2}}, {{0xb3cd,6},{0x2,1}}, {{0x12e5,3},{0x2b471,2}}, + {{0x18e30,8},{0xcc9,2}}, {{0x5269,6},{0x569b,5}}, {{0x4665,4},{0xeca,3}}, {{0x5201,10},{0xebb,3}}, + {{0x2015,6},{0x9a0c,5}}, {{0xe83,6},{0xe5e,2}}, {{0x127f,3},{0xdfb0,5}}, {{0x110c9,5},{0xf7a,2}}, + {{0x2b50b,2},{0x78a3,2}}, {{0xee4,4},{0x1a86,3}}, {{0x19b7,3},{0x1aeeb,5}}, {{0x30f51,4},{0xd1a,2}}, + {{0xbdf2,3},{0xcb7,2}}, {{0x268de,4},{0xeea,3}}, {{0x44b9,5},{0xfdd,4}}, {{0xe99,1},{0x4c00,3}}, + {{0x10b7,2},{0x1fc0,3}}, {{0x23c4b,3},{0x7d4d,4}}, {{0xa431,9},{0x18b4,3}}, {{0xb379,3},{0xcd3,1}}, + {{0x7421,9},{0xef3,4}}, {{0xa965,8},{0xe77,3}}, {{0xb3f1,9},{0xf91,3}}, {{0x10a3,3},{0x9a6,1}}, + {{0x114eb,4},{0xec6,3}}, {{0x1081,7},{0x1b8a,8}}, {{0x24bcb,4},{0x1db45,2}}, {{0x46af,3},{0x2f3e5,2}}, + {{0x6f1a,5},{0xfd0c,4}}, {{0x1f25,4},{0x2,1}}, {{0xe83,3},{0x3b73,3}}, {{0x1177d,6},{0x4798,5}}, + {{0x492b,12},{0xe11,1}}, {{0x760f,6},{0x167f,7}}, {{0x9a5,2},{0x6,1}}, {{0x22a3,2},{0xcd3,1}}, + {{0x10469,8},{0xe77,3}}, {{0x73ed,4},{0xe22,2}}, {{0x1f7c,3},{0x1be8,3}}, {{0x15e7,5},{0xe71,1}}, + {{0xcc7,2},{0x1b2b8,3}}, {{0x1692,2},{0x2dd7,4}}, {{0xcc8,1},{0x4b96,5}}, {{0x12b2,5},{0xf0d,2}}, + {{0x15fb2,6},{0x12a9,3}}, {{0xe33,1},{0x2690c,2}}, {{0x7394,3},{0x112e9,6}}, {{0x5fc4,7},{0x23df,5}}, + {{0xb379,3},{0x10b7,2}}, {{0x1917,7},{0x4d35,5}}, {{0x1e934,6},{0x3976,3}}, {{0x479f,2},{0xf164,7}}, + {{0x7995,5},{0xa,2}}, {{0x19b9,1},{0xcc3,3}}, {{0x1367,3},{0x10cb,2}}, {{0x15c7,8},{0x15cf,8}}, + {{0x47c9,3},{0xccd,1}}, {{0xe2f,1},{0xe22,2}}, {{0xc4bb,7},{0xe0b,4}}, {{0x12d4,5},{0x13c3,4}}, + {{0x1ef01,7},{0xcc3,2}}, {{0xe22,2},{0x13e1,5}}, {{0x2b8c,2},{0x2d8d,3}}, {{0xf0a,3},{0x26768,2}}, + {{0x1b8a,4},{0xec6,3}}, {{0xc20a,4},{0x2815,7}}, {{0x394d,3},{0xcc3,2}}, {{0x13eec,5},{0xc29d,3}}, + {{0x2b50b,2},{0xe59,2}}, {{0x158e,2},{0xe0d,2}}, {{0x2bd5,4},{0xd886,4}}, {{0x2b46,4},{0x16d8a,6}}, + {{0xf53,2},{0x77ea,5}}, {{0x6130,6},{0x6136,7}}, {{0xe1f,3},{0x48d6,2}}, {{0x12e5,3},{0x2454,3}}, + {{0x120f,3},{0xfe8,2}}, {{0x1677,3},{0x1722,5}}, {{0x15012,6},{0x1b9d,4}}, {{0x1697,4},{0x169b,12}}, + {{0x23e99,2},{0x4767,1}}, {{0x79c5,4},{0x12a83,5}}, {{0xd48,24},{0xd48,24}}, {{0x5d2d,6},{0x12b5,2}}, + {{0x1edf5,3},{0xed5,3}}, {{0x6cde,5},{0x13e3,4}}, {{0x24bcd,2},{0xe16,1}}, {{0xbc01,4},{0xcd3,2}}, + {{0x1e9e,5},{0x1320a,5}}, {{0xf57,2},{0xf8e,5}}, {{0x127f,3},{0xfcb,2}}, {{0xe1f,3},{0x2ba5,1}}, + {{0x13dfc,5},{0x13e01,5}}, {{0xd78,4},{0x2e7da,2}}, {{0x1e26,10},{0x1059,3}}, {{0x2de5d,3},{0x152,2}}, + {{0x7b,1},{0x1d0,2}}, {{0x2675d,2},{0xedd,1}}, {{0x7b,1},{0xd,2}}, {{0x154f4,6},{0x4665,4}}, + {{0xb69d,3},{0x23c56,3}}, {{0x105f,3},{0x4aed,5}}, {{0x200a7,5},{0x18767,4}}, {{0x9825,8},{0xec5,4}}, + {{0x2a47,3},{0xa194,9}}, {{0x3949,6},{0x101c1,4}}, {{0x4a70,8},{0x569a,3}}, {{0xa659,5},{0xe95,2}}, + {{0x1825a,6},{0xec6,3}}, {{0x15e9,3},{0xf35,2}}, {{0x5cd,2},{0x8d,1}}, {{0x2d95,5},{0xc382,5}}, + {{0x9b25,5},{0xe0a3,6}}, {{0x1967,3},{0x12a9,5}}, {{0x478f,9},{0x4798,5}}, {{0xc26f,2},{0x3100f,2}}, + {{0xf15,1},{0x52fe,5}}, {{0x5471,9},{0x13c3,4}}, {{0x7559,6},{0x9edf,5}}, {{0xe7d,2},{0xfc87,5}}, + {{0xed6,2},{0x9a6,1}}, {{0x1809,3},{0x8,1}}, {{0x29922,2},{0x48d3,2}}, {{0x6d46,6},{0x6d41,5}}, + {{0xb3f1,3},{0x1118a,3}}, {{0x17c0,2},{0xe0c,2}}, {{0xe33,1},{0x2371,3}}, {{0x12017,5},{0x239e,5}}, + {{0x39d5,5},{0x1c7e,4}}, {{0x16796,6},{0x7bd9,4}}, {{0x4217,6},{0xcc9,2}}, {{0x4853,3},{0x22fe,5}}, + {{0xe6f,3},{0x6ee8,3}}, {{0x2479b,4},{0x1a349,4}}, {{0x545,2},{0xf,1}}, {{0x127f,3},{0x1533e,5}}, + {{0x17b0c,7},{0xf35,2}}, {{0x442d,1},{0x12154,3}}, {{0x3b5d,5},{0x122d,2}}, {{0xe86,2},{0xcd3,2}}, + {{0x797d,5},{0x2091,4}}, {{0x14a7,4},{0x82d5,8}}, {{0xe0f,1},{0xe78,1}}, {{0x19b9,1},{0x850a,7}}, + {{0x1081,4},{0xe09,1}}, {{0x19e7,5},{0x1af1,4}}, {{0x1587,4},{0x27816,3}}, {{0xb199,5},{0x56b3,4}}, + {{0x11dfc,5},{0x76bf,6}}, {{0xccd,1},{0xc95a,5}}, {{0xf69,3},{0xcd3,1}}, {{0x4853,3},{0x2acc3,4}}, + {{0x19b9,1},{0x1a58,3}}, {{0x12d4,3},{0x22a3,2}}, {{0x769e,8},{0xeee,3}}, {{0x14f9,3},{0x505d,4}}, + {{0x1f07,7},{0x2f26,5}}, {{0xed9,2},{0x23b4f,4}}, {{0x3bbf,4},{0x818f,6}}, {{0x4597,5},{0x7,2}}, + {{0x2b4fe,2},{0x2b07c,2}}, {{0xe77,2},{0x113f,2}}, {{0xd78,4},{0x2b511,2}}, {{0xcc6,2},{0xccd,1}}, + {{0x168a,3},{0xf8f,4}}, {{0x1817,4},{0x2f2e,3}}, {{0x1977,3},{0x18772,2}}, {{0x556,2},{0xf,1}}, + {{0x1f840,6},{0x2f94,3}}, {{0x19b7,3},{0x20382,2}}, {{0x1bfb,7},{0x808c,5}}, {{0xd449,9},{0xed9,2}}, + {{0x28c1,4},{0x111c,2}}, {{0x450b,4},{0x1189,3}}, {{0xf7a,2},{0xcc7,1}}, {{0x4e3f,5},{0xcc7c,5}}, + {{0xb031,8},{0x1059,3}}, {{0x29c0,3},{0x8,1}}, {{0x1896c,6},{0xf9fe,4}}, {{0xe99,1},{0x101f,3}}, + {{0x1ccd,5},{0xfbb,3}}, {{0x113c,3},{0x1379,3}}, {{0xe21,1},{0x74fc,2}}, {{0x1849,3},{0x8,1}}, + {{0x2015,3},{0x22a3,2}}, {{0x2ee37,4},{0xf11,1}}, {{0x27e0,3},{0x23806,5}}, {{0x2a4c9,4},{0x1e57e,2}}, + {{0xbbe9,7},{0xf91,3}}, {{0xccc,2},{0xcce,3}}, {{0x7414,3},{0x1969,1}}, {{0x1cdc,6},{0x24f7,4}}, + {{0x2966,4},{0xf1f,3}}, {{0x1d54e,5},{0xe13,3}}, {{0x1877,7},{0xe6f6,4}}, {{0xe21,1},{0x4b96,5}}, + {{0xf15,1},{0x20510,2}}, {{0xf11,1},{0x2034e,5}}, {{0x1fa89,6},{0x3a91,3}}, {{0xe55,6},{0x2b05a,6}}, + {{0x1132,2},{0xe32,1}}, {{0xcce,2},{0x3555,4}}, {{0x2f94,3},{0xebb,3}}, {{0xba81,6},{0x7d99,4}}, + {{0xe09,1},{0x13041,4}}, {{0x1c82,6},{0x82b3,6}}, {{0x8835,5},{0x1130c,3}}, {{0x3a29,4},{0x9101,4}}, + {{0x15a6c,7},{0x11dc,3}}, {{0x17346,4},{0xf86,3}}, {{0x81c9,7},{0xe69,5}}, {{0x17560,6},{0x1783,4}}, + {{0x1687,4},{0xefb,3}}, {{0x2858,5},{0x2872,4}}, {{0x24bcb,4},{0xe16,1}}, {{0x5cd,2},{0x21,1}}, + {{0x14a36,7},{0x1050,3}}, {{0x9a6,1},{0x21a0,5}}, {{0x7124,3},{0xe22,2}}, {{0x1ece5,6},{0x6d42,3}}, + {{0x29fe,3},{0xf35,2}}, {{0x2a94,4},{0x101e,4}}, {{0x4ef5,4},{0xb3c8,3}}, {{0x65f6,6},{0x34d7,4}}, + {{0x6644,6},{0xe2b,4}}, {{0x2ba5,1},{0x18771,3}}, {{0x4765,3},{0x28fc2,2}}, {{0x7761,7},{0x7768,6}}, + {{0x1046,4},{0xcc9,2}}, {{0x16318,5},{0x129b9,4}}, {{0x478f,3},{0x2b81,2}}, {{0xccd,1},{0x13c5b,5}}, + {{0x712f,4},{0x25f8,4}}, {{0xf04,3},{0xe77,3}}, {{0x1646c,7},{0xe95,2}}, {{0x2cf57,4},{0x1db3b,2}}, + {{0x1f3e4,8},{0x8,1}}, {{0x10b4,4},{0x58ff,4}}, {{0x1469,3},{0x1095,3}}, {{0x24e3,9},{0xe69,6}}, + {{0x12f6,4},{0x1d06,3}}, {{0x18ed6,2},{0x2afd4,2}}, {{0x11f48,3},{0x1523,4}}, {{0x28b88,5},{0xcc4,2}}, + {{0x2af0e,4},{0xeea,3}}, {{0x780c,3},{0x1150,2}}, {{0xead8,5},{0x14ddd,5}}, {{0x62dd,4},{0x2477,3}}, + {{0x17f14,4},{0xde1c,4}}, {{0x4adc,4},{0x14a2,3}}, {{0x70ad,3},{0xf62,3}}, {{0x1f600,4},{0x1230c,2}}, + {{0xcbf,2},{0x189b,11}}, {{0x2ef6f,4},{0x1f875,1}}, {{0x29cf,3},{0x48d0,2}}, {{0xe240,6},{0x1722,5}}, + {{0xf0a,3},{0x29673,2}}, {{0x2de63,3},{0x4bd,2}}, {{0x75d0,2},{0x6411,4}}, {{0xcea8,8},{0xe22,3}}, + {{0xc075,5},{0x127c,3}}, {{0x3e0b,5},{0x453c,3}}, {{0x25b23,4},{0x48da,2}}, {{0x105f,3},{0xcc7,1}}, + {{0x4111,5},{0x538f,5}}, {{0x4199,5},{0x10f5,3}}, {{0x478f,3},{0x10e3,3}}, {{0x11e3e,7},{0x6cbe,4}}, + {{0x80fd,6},{0x320d,4}}, {{0x85f5,8},{0x1523,4}}, {{0x16bb0,7},{0xf86,3}}, {{0x5,1},{0xcbd,1}}, + {{0xe08,1},{0xcc9,2}}, {{0xe32,1},{0x11a6,2}}, {{0xfe3,7},{0x2815,7}}, {{0x1e2d7,5},{0xf79,3}}, + {{0x2de63,3},{0xd,2}}, {{0xee8,2},{0x30f7,2}}, {{0x4326,2},{0x101d,3}}, {{0xab9f,3},{0xf7a,2}}, + {{0xe99,1},{0x12db6,6}}, {{0x5abd,9},{0x1e40,4}}, {{0x2399,5},{0x30f7,2}}, {{0x6f27,6},{0xe0d,2}}, + {{0xc0ed,5},{0x10555,5}}, {{0x4765,3},{0x1eea1,2}}, {{0x4,1},{0x31f8,3}}, {{0x2b4fe,2},{0x2afe0,2}}, + {{0x1f07,4},{0x1660b,5}}, {{0x2a47,3},{0xe95,2}}, {{0x1cd3,2},{0x1130c,3}}, {{0x113c,3},{0x15f70,5}}, + {{0x5e58,6},{0x5e5e,7}}, {{0xb3f1,3},{0x7416,1}}, {{0x776e,9},{0x4a43,4}}, {{0x46af,4},{0x1cd3,2}}, + {{0x10cb,2},{0x169d,4}}, {{0xe71,1},{0x3e0e,3}}, {{0x1081,4},{0xc732,7}}, {{0x654d,9},{0x1059,3}}, + {{0x24613,6},{0xcce,2}}, {{0xfb0,2},{0x1ce6,5}}, {{0x27c2,4},{0x1553e,6}}, {{0x10b75,6},{0x7a13,5}}, + {{0x9a8,1},{0x583b,5}}, {{0x11788,4},{0xcba,2}}, {{0x113c,3},{0x178a,3}}, {{0x589b,8},{0x58a3,5}}, + {{0x1caf,5},{0xe11,1}}, {{0x58a8,5},{0x92d2,7}}, {{0xa179,8},{0x13e3,4}}, {{0x24e3,5},{0xa56e,7}}, + {{0x18174,5},{0x149f,3}}, {{0x2de75,3},{0x479,2}}, {{0xb,1},{0x2e2c,3}}, {{0x1029b,7},{0x2f2e,3}}, + {{0x4385,3},{0xf91,3}}, {{0x113c,3},{0xccd,1}}, {{0xe97,3},{0x1d7e,3}}, {{0xe89,2},{0xeaa,2}}, + {{0x1bec,5},{0x2181,3}}, {{0x1b371,6},{0xf62,3}}, {{0x2795,7},{0x1099,8}}, {{0x2d4fd,5},{0xe19,1}}, + {{0xf77,5},{0x3002,9}}, {{0x1db87,5},{0x45f2,2}}, {{0x13f50,6},{0xae95,4}}, {{0x17cba,5},{0xeb5,2}}, + {{0x11f25,5},{0x2370,3}}, {{0xf4f,2},{0x1607e,6}}, {{0x478f,3},{0x2a352,4}}, {{0xcc1,1},{0x663a,7}}, + {{0xccb,2},{0xf32,2}}, {{0x2385b,6},{0x10cb,2}}, {{0x11e49,5},{0xcc9,2}}, {{0x2de63,3},{0x1d0,2}}, + {{0x833d,5},{0x50c3,6}}, {{0xc0a1,2},{0x9,1}}, {{0xa659,5},{0xd227,4}}, {{0xaba5,6},{0xeab,2}}, + {{0x1789,4},{0x4a44,5}}, {{0xb721,6},{0xfe8,2}}, {{0xfb0,3},{0xcc3,2}}, {{0x1367,3},{0xcd3,1}}, + {{0x139a6,7},{0x809a,3}}, {{0x9f,1},{0x206,2}}, {{0x11788,4},{0x1e65,3}}, {{0x3a29,4},{0x1d06,3}}, + {{0x1600c,6},{0xe6c,3}}, {{0x1817,4},{0x1b9c,5}}, {{0x17f12,6},{0xe95,2}}, {{0xb64b,3},{0x14c76,4}}, + {{0xb69d,4},{0x175e8,4}}, {{0x5,1},{0x6e53,4}}, {{0x1927,5},{0x2f94,3}}, {{0x111a,3},{0x1b41,4}}, + {{0x3d63,5},{0x3d68,9}}, {{0x19b7,3},{0x2d11,3}}, {{0xefa,3},{0x138e,3}}, {{0x1153,2},{0x2bb4,2}}, + {{0xe19,1},{0xcd4,2}}, {{0x111a,3},{0x13e31,7}}, {{0x9a6,1},{0x16826,5}}, {{0x45,1},{0x140,2}}, + {{0x70ad,3},{0x1a56,2}}, {{0x4597,5},{0x11d9,3}}, {{0x319c9,2},{0xd7c,2}}, {{0xb,1},{0xeb5,2}}, + {{0x11dfe,2},{0xfb7,3}}, {{0x1a05a,6},{0xed6,2}}, {{0x4,1},{0x1204,4}}, {{0x1397,5},{0x7e59,4}}, + {{0x73b9,5},{0xe80,2}}, {{0x6060,10},{0x1059,3}}, {{0x10cca,8},{0x18b4,3}}, {{0x18f9b,3},{0x204cc,5}}, + {{0x17402,7},{0xc3d0,3}}, {{0xbded,5},{0xbdf2,7}}, {{0x1bee,3},{0x1f9f,3}}, {{0x7518,7},{0xe69,6}}, + {{0x7b51,4},{0x48f0,7}}, {{0x6cde,7},{0x4e0d,6}}, {{0x7385,6},{0xe6b,4}}, {{0x46af,3},{0xc342,3}}, + {{0x59c6,5},{0x158e,2}}, {{0xfc8,3},{0xcd3,1}}, {{0x4767,1},{0x17bff,2}}, {{0xb3cd,6},{0x1702a,4}}, + {{0xfa2,3},{0xccd,1}}, {{0x73b9,6},{0xe7f,2}}, {{0x753f,5},{0xee58,6}}, {{0x1601,3},{0xe67,2}}, + {{0x74f3,2},{0xe19,1}}, {{0x60e2,7},{0x534e,5}}, {{0x301b,4},{0xeee,3}}, {{0xeab,2},{0xb396,2}}, + {{0xebf6,7},{0x153a,3}}, {{0x2add,6},{0x26e7,9}}, {{0x2bab,2},{0xf16,2}}, {{0x20542,3},{0xe99,1}}, + {{0x1f291,2},{0x73d6,2}}, {{0x1e86a,2},{0x2b4be,4}}, {{0xa58d,9},{0xeee,3}}, {{0x1cf0c,6},{0xed6,2}}, + {{0x17a7,11},{0x10e2,5}}, {{0x1bccb,6},{0xf1f,3}}, {{0xcbd,4},{0xe11,1}}, {{0x113c,4},{0x1a79c,4}}, + {{0xccd,1},{0x13d4b,6}}, {{0x70ad,3},{0x1692,2}}, {{0x712f,6},{0xa,2}}, {{0x7414,3},{0x17bff,2}}, + {{0x2b0a8,4},{0x2b0e8,2}}, {{0x1160,5},{0x1ae7,6}}, {{0x1607,5},{0x9602,7}}, {{0x1fde9,6},{0x1b04,3}}, + {{0xabfb,3},{0xabfe,6}}, {{0x24b03,5},{0xe0c,3}}, {{0x7108,5},{0x3ed7,6}}, {{0x73b9,5},{0x19e1,3}}, + {{0x5de,2},{0x21,1}}, {{0x79f5,6},{0xc3f0,5}}, {{0x1252,5},{0xe95,2}}, {{0xe99,1},{0x3,1}}, + {{0xf77,3},{0x286d,3}}, {{0x11163,5},{0x11168,6}}, {{0x29cf,3},{0x1eb9b,6}}, {{0x2551b,6},{0xcc3,2}}, + {{0x185d,2},{0xe7f,2}}, {{0xef7,3},{0x1ce6,5}}, {{0xf89,3},{0x6ca7,3}}, {{0x6fd0,5},{0x35a2,4}}, + {{0x154b8,7},{0x296f,3}}, {{0xf32,2},{0x1025,1}}, {{0x158e,2},{0x6ca7,3}}, {{0x112b,5},{0xaaa2,4}}, + {{0x6950,9},{0x13e4,3}}, {{0x201d0,5},{0xed6,2}}, {{0x9711,8},{0xeee,3}}, {{0x7416,1},{0x12fa,3}}, + {{0xef7,4},{0x4618,4}}, {{0x2f2b,7},{0x2f32,7}}, {{0xe83,5},{0xf8d,2}}, {{0x29c0,3},{0x189b,4}}, + {{0xc16,8},{0xc16,4}}, {{0x236d3,5},{0xcc9,2}}, {{0x4853,4},{0x1b0d,3}}, {{0x2036b,2},{0x6,1}}, + {{0xed35,6},{0x1c14,5}}, {{0x759a,5},{0xe5e,2}}, {{0x4,2},{0x30f5,4}}, {{0x3107,5},{0x2c6a,5}}, + {{0x554e,7},{0x2eec,6}}, {{0x46af,3},{0xb1a1,4}}, {{0xe83,3},{0xe22,2}}, {{0xf11,1},{0xe0b,2}}, + {{0xed1,3},{0xe75,2}}, {{0x478f,3},{0xcb7,2}}, {{0x75b4,4},{0x6eac,3}}, {{0x30e53,3},{0x20599,1}}, + {{0x267bf,5},{0xe67,2}}, {{0xb5e9,4},{0xcd3,2}}, {{0x23e1,3},{0xcc3,2}}, {{0x1827,4},{0x1062,2}}, + {{0x127f,3},{0x9a8,2}}, {{0x18b42,5},{0x18b47,5}}, {{0x10cc,2},{0x6,1}}, {{0x181b,3},{0x1fc7,3}}, + {{0x3537,2},{0x136f,2}}, {{0xe97,3},{0xf1f,3}}, {{0x6fd0,8},{0xe11,1}}, {{0x17661,2},{0x2e759,3}}, + {{0x9f,1},{0x7a,2}}, {{0x15ca,3},{0xfa5,2}}, {{0x1059,3},{0xe0a,1}}, {{0x1180c,7},{0xa099,4}}, + {{0xc015,4},{0x11729,3}}, {{0x1a07,3},{0x17ac9,2}}, {{0x18afe,4},{0x6c48,4}}, {{0xe3e2,6},{0xed9,2}}, + {{0xb415,4},{0xeb5,2}}, {{0x7414,3},{0x10d9,2}}, {{0x1ec5e,6},{0xe2b,2}}, {{0x18764,5},{0x14ab,3}}, + {{0xe33,1},{0xe69,5}}, {{0xedd,1},{0x2f41,6}}, {{0x308f7,3},{0x20579,1}}, {{0xaaf,3},{0xab1,32}}, + {{0x1c28,11},{0xfdd,4}}, {{0x1847,5},{0xe67,2}}, {{0x1f984,4},{0x25d6f,4}}, {{0x301b,4},{0x1d7e,3}}, + {{0x16a48,7},{0xec6,3}}, {{0x24b83,5},{0x1058,2}}, {{0x4a50,2},{0xb,1}}, {{0xcc8,1},{0xeee,3}}, + {{0xe08,1},{0x1317,2}}, {{0x2e271,3},{0xab1,1}}, {{0x23c4b,3},{0xab27,5}}, {{0x17448,8},{0x1150,2}}, + {{0x16552,7},{0xe0a,1}}, {{0x27c2,6},{0x5dd0,3}}, {{0x18772,3},{0x1e874,3}}, {{0x959d,4},{0xed9,2}}, + {{0xe5b,3},{0x7998,4}}, {{0x4853,4},{0x4a86,4}}, {{0xf11,1},{0x8cd3,3}}, {{0xf9f,4},{0x1263,7}}, + {{0xa659,5},{0x1702,4}}, {{0x19b7,3},{0xf11,1}}, {{0x1e2c,4},{0x5669,3}}, {{0x2d641,4},{0x1e8a6,2}}, + {{0xf34,2},{0x1722,5}}, {{0x2600b,6},{0xa,2}}, {{0xcba,2},{0x10d3,3}}, {{0x11f48,4},{0x11f4c,5}}, + {{0xf77,3},{0x27346,2}}, {{0xf4f,1},{0xe09,1}}, {{0x20671,5},{0xf7a,2}}, {{0x1469,3},{0xfe0,2}}, + {{0x17acb,2},{0x2b4a6,4}}, {{0x7ff5,8},{0x4eb0,4}}, {{0x12c3,4},{0x1a86,3}}, {{0x1367,11},{0x1372,5}}, + {{0x11e49,5},{0x29f3,3}}, {{0x3e0b,5},{0x10596,4}}, {{0x9,1},{0x1cd3,2}}, {{0x57ce,3},{0x1693,2}}, + {{0x10e7,5},{0x1150,2}}, {{0x6637,6},{0x1ea3,3}}, {{0xb9fd,5},{0x43bd,4}}, {{0x4e43,4},{0xe0b,4}}, + {{0x4fbc,3},{0x26ae,6}}, {{0x1977,3},{0x6c21,3}}, {{0x22b2,3},{0xcc9,2}}, {{0xb379,3},{0xcc9,2}}, + {{0x17f9e,4},{0x149f,3}}, {{0xbdf9,5},{0x345f,5}}, {{0x1118b,2},{0x1969,1}}, {{0x8499,9},{0xec6,3}}, + {{0x2948,3},{0xe16,1}}, {{0xfa6,3},{0xfdd,4}}, {{0xe83,3},{0x2bf6e,3}}, {{0x11ab8,6},{0xfa6,3}}, + {{0x23a53,6},{0xfb0,2}}, {{0x11142,6},{0xf62,3}}, {{0x11caa,5},{0xe11,1}}, {{0xa659,5},{0xe78,1}}, + {{0x1969,1},{0x3b73,3}}, {{0x1019,4},{0x24f7,4}}, {{0x75b4,4},{0x189f,3}}, {{0x2add,6},{0x181b,3}}, + {{0xcc8,1},{0x1bef,2}}, {{0xe3e2,6},{0x77ea,5}}, {{0x17632,6},{0x17638,4}}, {{0x2afa1,4},{0xf4f,1}}, + {{0xbded,4},{0x12a3,3}}, {{0x1057,1},{0x153a,3}}, {{0x2ba5,1},{0x951c,3}}, {{0x1153,3},{0x15e6d,3}}, + {{0x14842,7},{0xf91,3}}, {{0xecbc,6},{0x7a8a,5}}, {{0x5eda,5},{0x183b,3}}, {{0x1e3d,3},{0x12fd,3}}, + {{0xcc1,1},{0xe22,3}}, {{0x751a,5},{0xe67,2}}, {{0x91b9,6},{0x13e3,4}}, {{0xa2c9,10},{0xe95,2}}, + {{0x18f7,7},{0x2d72,7}}, {{0x11ad9,5},{0x1077,6}}, {{0xe1f,3},{0x2212f,3}}, {{0x2e346,2},{0x18eca,2}}, + {{0x13a7,7},{0x13ae,9}}, {{0xf0a,3},{0x504d,3}}, {{0x10f32,8},{0x8,1}}, {{0x2af9a,4},{0x2675d,2}}, + {{0xf0c,1},{0xcd3,2}}, {{0xf77,4},{0x1a577,5}}, {{0x11328,6},{0xe11,1}}, {{0x1208,9},{0xf3a,2}}, + {{0x7941,7},{0x7948,5}}, {{0x1667,4},{0xcd3,1}}, {{0xb7ed,6},{0x4ca6,6}}, {{0x550d,5},{0x10b7,2}}, + {{0x1747,4},{0x9a8,2}}, {{0xb649,5},{0x646c,4}}, {{0xbfe5,4},{0x2615f,4}}, {{0x156a,3},{0x1bf0,2}}, + {{0x16a7,5},{0x9,1}}, {{0xe0f9,3},{0x6,1}}, {{0x2c15,4},{0xe6b,3}}, {{0xe13,3},{0x6,1}}, + {{0xc081,6},{0x11f41,5}}, {{0x17fb2,5},{0x2812,3}}, {{0x1172a,2},{0xcd3,1}}, {{0x90bd,6},{0x10f2,5}}, + {{0x1bc7a,6},{0x2075,3}}, {{0x1015c,5},{0xf7a,2}}, {{0x4455,4},{0x4459,10}}, {{0x478f,3},{0x7d99,4}}, + {{0xf0c,1},{0x2c8fe,3}}, {{0x10a3,3},{0xd079,8}}, {{0xb3f1,3},{0xd793,4}}, {{0x29169,5},{0x43fc,2}}, + {{0xbc31,5},{0x9a4,3}}, {{0x25b23,4},{0xe11,1}}, {{0x4871,2},{0x1d57f,5}}, {{0x111a,3},{0xf7f,2}}, + {{0x7995,5},{0xfb8,3}}, {{0xe97,3},{0xe7f,2}}, {{0x3521,4},{0xabc6,3}}, {{0x2015,6},{0x5dd0,6}}, + {{0xbba1,4},{0x65ec,5}}, {{0xc26f,2},{0xc78,2}}, {{0xb67b,3},{0xed6,2}}, {{0x5de,2},{0xf,1}}, + {{0x5fc4,7},{0x16e1,6}}, {{0xe0b,2},{0xccb,2}}, {{0xf77,3},{0x492e,3}}, {{0x2a92,6},{0x5,2}}, + {{0x2e193,4},{0x336,2}}, {{0x48a9,3},{0xe11,1}}, {{0x16a7,3},{0x1062,2}}, {{0x12e5,4},{0x8,3}}, + {{0x4b08,4},{0xcc3,3}}, {{0xab1,1},{0xcf6,1}}, {{0x545,2},{0xd,1}}, {{0x7911,3},{0x1692,2}}, + {{0x1857,4},{0x9a9,2}}, {{0x29cf,5},{0x29d4,10}}, {{0x11ad9,5},{0x1f39,6}}, {{0x19f7,4},{0x104a,4}}, + {{0xbb4,2},{0x2b0aa,2}}, {{0x181b,3},{0xf86,3}}, {{0x7b2d,5},{0x6cbe,4}}, {{0x18480,7},{0xec3,3}}, + {{0x1779,3},{0x365c,7}}, {{0xede,1},{0xe5e,2}}, {{0x1969,1},{0x2252,3}}, {{0x2e3d,6},{0x211a,4}}, + {{0x13974,7},{0xfb8,3}}, {{0x9,1},{0xcb8,1}}, {{0x1467,4},{0x2d1f,6}}, {{0x46af,3},{0xe524,8}}, + {{0x30f2d,4},{0x789d,2}}, {{0x1059,3},{0x1025,1}}, {{0x19b9,1},{0xcbf,2}}, {{0x1927,6},{0x146d,10}}, + {{0x1ae7,3},{0x2fbe,5}}, {{0xe22,3},{0x5,1}}, {{0x11187,3},{0x2693c,4}}, {{0x12f9c,6},{0x7a39,4}}, + {{0x1e26,6},{0xe86,2}}, {{0x4853,3},{0x2639e,5}}, {{0x1e98e,6},{0xec6,3}}, {{0x12f6,4},{0x28e1,3}}, + {{0xe11,1},{0x1373,2}}, {{0x56c7,5},{0xf62,3}}, {{0x1af30,6},{0xec6,3}}, {{0x577d,7},{0xdfc9,4}}, + {{0x4,2},{0x7d41,5}}, {{0xcc3,2},{0x286d,3}}, {{0x1f38,1},{0xcc3,2}}, {{0x16a7,3},{0xefa,2}}, + {{0x569a,3},{0xcc9,2}}, {{0x7788,8},{0xebb,3}}, {{0xccb,2},{0x1258,5}}, {{0x9e19,5},{0x10cb,2}}, + {{0x1b8c0,5},{0x2917,4}}, {{0x1020c,8},{0xe11,1}}, {{0x11163,5},{0x711b,3}}, {{0x12f6,4},{0x11d94,5}}, + {{0x17dc,3},{0x34d7,4}}, {{0x2bc7,5},{0xef5,2}}, {{0x25ebb,7},{0xe11,1}}, {{0x1547c,5},{0xe0c,3}}, + {{0x11b73,5},{0xe78,2}}, {{0x780a,4},{0xe7f,2}}, {{0x48a,2},{0x8d,1}}, {{0x7088,3},{0xcce,2}}, + {{0xb3f1,3},{0x1766a,3}}, {{0x4765,3},{0x1131,3}}, {{0x1fca,10},{0x2872,4}}, {{0x9b79,5},{0x1172a,2}}, + {{0xb7a5,7},{0x1392,3}}, {{0x101f,2},{0xf0f,2}}, {{0x1bec,5},{0x2094,8}}, {{0x1eec2,6},{0x15e9,3}}, + {{0x2b46,4},{0x111c,2}}, {{0xe86,2},{0xe09,1}}, {{0x82dd,6},{0xfb8,3}}, {{0xb451,5},{0xeea,3}}, + {{0xe97,3},{0x128e8,5}}, {{0x750b,4},{0x2236,3}}, {{0x14464,6},{0x453b,4}}, {{0x77f2,3},{0x10458,5}}, + {{0x9201,7},{0x431c,5}}, {{0x24373,5},{0xf91,3}}, {{0xf70,2},{0x2268,5}}, {{0x2a47,3},{0x24677,4}}, + {{0x1240,2},{0xe22,2}}, {{0x17670,3},{0x667e,4}}, {{0x4781,3},{0x2cde7,2}}, {{0x5f69,6},{0x90fb,5}}, + {{0x102b,3},{0x2e27d,1}}, {{0x16c82,7},{0xe0d,2}}, {{0xcd1,2},{0xcc3,3}}, {{0xe5e,2},{0xec3,3}}, + {{0x20499,3},{0x15797,5}}, {{0x1997,4},{0x10b9,12}}, {{0xec3,3},{0x18b4,3}}, {{0x20cf9,6},{0xed6,2}}, + {{0x5534,4},{0xe0f9,3}}, {{0xaf4d,8},{0x128c,4}}, {{0xe97,3},{0xf18,2}}, {{0xbba1,7},{0x8427,4}}, + {{0x442b,3},{0xcc3,2}}, {{0x1e2e9,4},{0x2ba5,1}}, {{0x29d4,4},{0xe11,1}}, {{0xefb,3},{0x12a9,3}}, + {{0xf0c,1},{0x10db,7}}, {{0xb69d,4},{0x1796b,4}}, {{0x2bf1,5},{0x13e3,4}}, {{0x208c1,5},{0xf1f,3}}, + {{0x1133c,5},{0x17d87,5}}, {{0x2e2b3,2},{0x9b1,2}}, {{0x75db,4},{0x1303,3}}, {{0x57,1},{0x152,2}}, + {{0x5de,2},{0xe,1}}, {{0x50fd,7},{0x13e3,4}}, {{0x1eeb9,5},{0x7555,4}}, {{0x1c215,2},{0x9,1}}, + {{0x1ff7,3},{0x1499c,4}}, {{0x10b8,2},{0xe5e,2}}, {{0x27d7,4},{0x1c1d,4}}, {{0x1977,3},{0x27f71,3}}, + {{0xc1ff,4},{0xfda,7}}, {{0x2d3ab,2},{0xf4f,1}}, {{0x2ddc7,4},{0x8666,2}}, {{0x1290,4},{0x164a2,6}}, + {{0x179f4,7},{0xb72a,3}}, {{0x6f4e,8},{0xe69,5}}, {{0x24653,4},{0x74f6,2}}, {{0xe0d,2},{0x277e,2}}, + {{0xcbf,2},{0x4d5f,3}}, {{0x19d7,12},{0x19e3,4}}, {{0x111a,3},{0x4c32,5}}, {{0x1ff7,3},{0x94a4,9}}, + {{0x10918,10},{0xe11,1}}, {{0x11e49,5},{0xf7a,2}}, {{0x203d9,6},{0xe67,2}}, {{0x18450,5},{0xec6,3}}, + {{0x5534,4},{0x2f41,5}}, {{0x1967,3},{0x2f021,2}}, {{0x7351,4},{0xe11,2}}, {{0x2306b,6},{0xe95,2}}, + {{0xb481,4},{0x38ec,3}}, {{0x7417,4},{0xcc3,2}}, {{0x2f71,4},{0xcbac,5}}, {{0x1969,1},{0x404f,3}}, + {{0xe16,1},{0x1943,2}}, {{0x2b500,8},{0x205a1,1}}, {{0x1bec,5},{0x8096,7}}, {{0x21a41,6},{0xcc3,2}}, + {{0x71e5,10},{0xf35,3}}, {{0x11142,6},{0xec6,3}}, {{0x1ff7,3},{0xf59,2}}, {{0x1967,3},{0x26ae,6}}, + {{0x5582,8},{0x1279,5}}, {{0x2de63,3},{0xd4,2}}, {{0x1025,1},{0x2b103,5}}, {{0xcc1,1},{0x1a71,3}}, + {{0x45,1},{0x4bd,2}}, {{0x6e7e,8},{0x6a0f,4}}, {{0x24607,2},{0x73d6,2}}, {{0x1e5b2,3},{0xec5,4}}, + {{0x228a3,7},{0xe0a,1}}, {{0x25083,4},{0xeed,2}}, {{0x1337,8},{0x1337,8}}, {{0xe97,3},{0x296f,3}}, + {{0x2993,7},{0x5256,6}}, {{0x4765,3},{0x17acb,2}}, {{0xcc1,1},{0x277e,2}}, {{0x11a6,2},{0x1099,4}}, + {{0x41df,7},{0xed6,2}}, {{0xf953,6},{0xa,2}}, {{0x1bbf,7},{0xec3,3}}, {{0xbb4d,6},{0x7373,5}}, + {{0x27e0,3},{0x320c,4}}, {{0x10c5,4},{0x19b3c,5}}, {{0x36a9,8},{0x2269,4}}, {{0xc1d1,4},{0xe8c,6}}, + {{0x35a1,2},{0x1e40,4}}, {{0xeab,2},{0xe09,1}}, {{0x3a1b,6},{0x2663,5}}, {{0x2bf1,6},{0x167f,8}}, + {{0xaec9,5},{0xed5,3}}, {{0x1155,3},{0xe7f,2}}, {{0x8f79,10},{0xed6,2}}, {{0x29cf,3},{0x1e3b,4}}, + {{0x2afbd,3},{0xcf6,4}}, {{0x2e193,4},{0x369,2}}, {{0xe09e,8},{0xec6,3}}, {{0x24653,4},{0x2941b,3}}, + {{0x9a8,1},{0xccd,1}}, {{0x12e5,3},{0x18772,2}}, {{0x1c85,3},{0xe13,3}}, {{0x53bb,10},{0xec6,3}}, + {{0xe1f,3},{0xe7a,1}}, {{0x4853,3},{0x248ff,3}}, {{0x10a6,2},{0x6,1}}, {{0x567,2},{0xf,1}}, + {{0x1e62,5},{0xe2b,2}}, {{0x1969,1},{0x11187,2}}, {{0x5cd,2},{0xe,1}}, {{0x457b,8},{0x17b1,3}}, + {{0x1e718,5},{0x8d32,4}}, {{0xe67,2},{0xe6b,2}}, {{0x1e08,5},{0x12fe,2}}, {{0x94ad,5},{0x3378,5}}, + {{0x23c23,4},{0xc,1}}, {{0x465d,2},{0x10cb,3}}, {{0x12f6,4},{0x163da,6}}, {{0x31f8,3},{0x8,1}}, + {{0x1577,4},{0x127d,2}}, {{0x3591,6},{0x14f9,3}}, {{0x200f8,5},{0xe2b,2}}, {{0x58c2,9},{0xf35,3}}, + {{0x7303,6},{0xf35,2}}, {{0xe71,1},{0x1bbed,6}}, {{0x19b7,5},{0xeb7,7}}, {{0x19b7,3},{0x2cc00,3}}, + {{0xe2f,1},{0xe11,1}}, {{0xf02,2},{0xcc3,2}}, {{0x229a,7},{0x22a1,8}}, {{0x4853,5},{0x8,3}}, + {{0x1a07,3},{0x204cb,2}}, {{0x48d3,2},{0xe16,1}}, {{0x1ab01,6},{0xc541,3}}, {{0xb3b5,5},{0x10af6,6}}, + {{0x450b,4},{0x8441,4}}, {{0x12d4,3},{0x7416,1}}, {{0x11d5,5},{0xe5e,2}}, {{0x114f4,5},{0x1ef18,4}}, + {{0x2015,3},{0x22416,5}}, {{0x3211,7},{0x1663,4}}, {{0x1fc7,3},{0x2,1}}, {{0x458b,3},{0x88fa,6}}, + {{0x8835,5},{0x450f,3}}, {{0x42b1,11},{0xe6b,3}}, {{0x7414,3},{0x1ef28,6}}, {{0x112b,4},{0x1004,3}}, + {{0x1a66,1},{0x24668,2}}, {{0x1be,2},{0x578,2}}, {{0x46af,3},{0x180a,3}}, {{0x30f51,2},{0xd1a,2}}, + {{0xe0d,2},{0xc01d,4}}, {{0x317b8,2},{0x2b4f0,2}}, {{0xe6f,3},{0x228f6,5}}, {{0x27e0,3},{0xce96,6}}, + {{0x24343,6},{0xe95,2}}, {{0x24c23,5},{0x2f94,3}}, {{0x471f,6},{0x1510,7}}, {{0xb451,4},{0x4,2}}, + {{0x29cf,3},{0x1c79,2}}, {{0xe33,1},{0x8428,3}}, {{0x1967,3},{0x2cbee,3}}, {{0x2e273,1},{0xc16,1}}, + {{0x1e571,4},{0x1e57e,5}}, {{0xe65,2},{0xec6,3}}, {{0x168a,3},{0xe80,2}}, {{0xa,2},{0x15fc,2}}, + {{0xf77,4},{0x1d0d,3}}, {{0x11ad9,5},{0x1622,5}}, {{0x1a5b,2},{0xf0c,1}}, {{0x1c28,6},{0x1a9a,4}}, + {{0x6f41,8},{0xe69,5}}, {{0x250d3,6},{0xe95,2}}, {{0x77f0,5},{0x9a4,3}}, {{0x3967,3},{0x1e8b,3}}, + {{0xb199,7},{0x810d,4}}, {{0x30f7,2},{0xcc3,2}}, {{0x48d7,2},{0x24677,4}}, {{0x24f2,5},{0x1245,6}}, + {{0x116ac,5},{0x1f197,4}}, {{0xf4f,1},{0x4aee,3}}, {{0x1601,3},{0xeab,2}}, {{0x1089f,7},{0xe0b,4}}, + {{0x1a66,1},{0x8666,2}}, {{0x794d,6},{0x795f,6}}, {{0x111a,3},{0xf0f,2}}, {{0x5d58,4},{0xcc6,2}}, + {{0xf91,3},{0xa,2}}, {{0xc6ec,5},{0x8,1}}, {{0x28d0,4},{0xf59,2}}, {{0x48a,2},{0x21,1}}, + {{0x1f00f,5},{0xed9,2}}, {{0x1ba7,6},{0xe11,1}}, {{0x100f9,6},{0x10f4,4}}, {{0x45a5,6},{0x1783,4}}, + {{0xb9a9,5},{0x1146a,6}}, {{0x3b1b,5},{0x8,1}}, {{0xb18d,9},{0x1004,3}}, {{0x181b,3},{0xcd3,1}}, + {{0x1109,5},{0x286d,3}}, {{0x2293b,5},{0xec6,3}}, {{0xaeb1,6},{0x2e2c,3}}, {{0x4781,3},{0xefa,2}}, + {{0x1fe33,4},{0x1046,3}}, {{0xcc4,2},{0x1839,2}}, {{0x3e35,9},{0xe77,3}}, {{0xf8e,3},{0x6,1}}, + {{0xeaa,2},{0x57e0,5}}, {{0x23c4b,3},{0x19b9,1}}, {{0x9da1,5},{0x16ad,5}}, {{0xf953,6},{0x1c14,5}}, + {{0x10d6f,7},{0x3075,4}}, {{0x2a2b,3},{0x14a81,4}}, {{0x41a7,4},{0x28737,3}}, {{0x7eed,5},{0x104a,4}}, + {{0x1eac0,5},{0x1eac5,4}}, {{0xe5b,3},{0x1c9fe,4}}, {{0x19b7,3},{0x104dd,4}}, {{0xf0a,3},{0x2d1f,6}}, + {{0x9d11,7},{0xe2b,2}}, {{0x10fed,6},{0x10ff3,5}}, {{0x15399,3},{0xf86,3}}, {{0xf7a,2},{0xcd3,1}}, + {{0x17f94,5},{0x394d,3}}, {{0x345d,7},{0x2fbe,7}}, {{0x1877,4},{0x1f09,3}}, {{0xf0a,3},{0x71c6,5}}, + {{0x284,2},{0x69,1}}, {{0xe60,2},{0x2ee9,3}}, {{0x1fc0,3},{0x141f,8}}, {{0xe99,1},{0xe33,1}}, + {{0x58b5,6},{0x3075,4}}, {{0xf722,5},{0xe11,1}}, {{0x1a47,5},{0x11cb,3}}, {{0xe6c,3},{0x775c,4}}, + {{0xcc6,2},{0xec6,3}}, {{0x168f,2},{0x155e,3}}, {{0xed1,3},{0x1ed7a,4}}, {{0x47b9,6},{0x14ff,5}}, + {{0x1977,8},{0x12be,5}}, {{0xcb8,1},{0x4,1}}, {{0x28b3a,1},{0x30352,2}}, {{0x6d21,3},{0xae92,5}}, + {{0x600,2},{0xf,1}}, {{0x6cde,4},{0xd3b4,6}}, {{0x4597,5},{0x898a,7}}, {{0x49bf,3},{0xf35,2}}, + {{0x8835,5},{0x31f8,3}}, {{0x252e3,5},{0x44b3,3}}, {{0x2a83,4},{0x156a,3}}, {{0x19b7,3},{0x27e43,4}}, + {{0x17ada,5},{0xe11,1}}, {{0x28b31,3},{0xcd6,1}}, {{0x30853,2},{0xbb6,2}}, {{0xcc8,1},{0xccd,1}}, + {{0xb42d,5},{0xebb,3}}, {{0x1957,5},{0x11a6,2}}, {{0x2a1b9,5},{0x48d7,2}}, {{0x478f,3},{0x29437,3}}, + {{0x2de63,3},{0x188,2}}, {{0x523,2},{0x21,1}}, {{0x488b,5},{0x6cfb,4}}, {{0x1ca56,4},{0xcc9,2}}, + {{0x1807,6},{0x1252,3}}, {{0x127f,3},{0xcd1,2}}, {{0x13050,5},{0x1cee,4}}, {{0x1eff4,5},{0x1a86,3}}, + {{0x28d0,13},{0xe95,2}}, {{0x73ed,4},{0x1d2e6,4}}, {{0x29cf,3},{0xcb7,2}}, {{0x10642,8},{0xebb,3}}, + {{0x202f9,6},{0x2608,3}}, {{0x2939,4},{0xc1e9,4}}, {{0x17968,7},{0x174b,3}}, {{0x2858,5},{0x49b5,5}}, + {{0x2984,5},{0x4132,5}}, {{0x1967,3},{0x2766a,4}}, {{0x4781,3},{0x257b6,5}}, {{0xe19,1},{0x21cbc,4}}, + {{0xd11b,5},{0xcc3,2}}, {{0x16674,6},{0x1a9a,4}}, {{0x30c6,3},{0x1265,5}}, {{0x248b3,5},{0x15e9,3}}, + {{0x492b,4},{0x29e3,4}}, {{0x1e08,6},{0x2e2c,3}}, {{0x29c0,3},{0xecb,2}}, {{0x4781,3},{0x28da7,2}}, + {{0x5717,4},{0x1702,4}}, {{0x1360e,6},{0x5342,4}}, {{0x2de63,3},{0x55,2}}, {{0x4781,3},{0x2371,3}}, + {{0x12f6,4},{0x1692,2}}, {{0x1ba43,5},{0x23d2,3}}, {{0x15530,6},{0x2dd7,4}}, {{0x15314,6},{0xf07e,4}}, + {{0x2939,4},{0xcbd,1}}, {{0x12e5,3},{0x4f20,3}}, {{0x113ec,5},{0x11412,6}}, {{0x2aaac,6},{0xe99,1}}, + {{0x8e1d,10},{0xe0a,1}}, {{0x11a6,3},{0xf91,3}}, {{0xd551,6},{0x1893,4}}, {{0x1987,5},{0x10dc,2}}, + {{0x12e5,3},{0x1ea72,2}}, {{0x2de75,3},{0x4f0,2}}, {{0x7636,7},{0x1265,5}}, {{0x181b,3},{0xb02a,4}}, + {{0xe,1},{0x19a,2}}, {{0x8529,11},{0xe11,1}}, {{0xe83,3},{0x10f4,4}}, {{0x12e5,4},{0xeb5,2}}, + {{0x204cb,2},{0x1057,1}}, {{0x19238,7},{0xe95,2}}, {{0xe1f,3},{0x46bf,1}}, {{0x11eee,5},{0x7f09,3}}, + {{0x3bbf,4},{0x15994,6}}, {{0x174d4,6},{0xcb9,4}}, {{0x7414,3},{0xf15,1}}, {{0xf24,2},{0xcc9,2}}, + {{0xcb9f,4},{0x2dd7,4}}, {{0x780a,4},{0x2add7,3}}, {{0x2ba5,1},{0x913b,6}}, {{0x30851,4},{0x2b511,2}}, + {{0xad6d,9},{0xf91,3}}, {{0x1f303,6},{0x3643,3}}, {{0xb396,2},{0x123e,3}}, {{0xf0c,1},{0xe2b,2}}, + {{0xe97,3},{0x188c,3}}, {{0x6637,6},{0x8fa3,6}}, {{0x1fc15,6},{0xe7f,2}}, {{0xeab,2},{0x296e,4}}, + {{0x3e0,2},{0x7b,1}}, {{0x27866,5},{0xe8a,2}}, {{0x7351,4},{0xcd3,1}}, {{0x46af,3},{0x2690c,2}}, + {{0x8,1},{0x10cc,2}}, {{0x1a07,6},{0x18b4,3}}, {{0x1dee,2},{0x45f2,2}}, {{0x1dc4f,2},{0x3bff,3}}, + {{0xe5b,3},{0xcd3,1}}, {{0x70ad,4},{0xee9,2}}, {{0x4,1},{0x169d,3}}, {{0xf16,2},{0xe0a,1}}, + {{0x5652,8},{0x565a,5}}, {{0x56c7,5},{0x56e6,8}}, {{0xef7,9},{0xf00,10}}, {{0x1ddf4,5},{0xfd9,3}}, + {{0x1bef,2},{0xe86,2}}, {{0x1969,1},{0x21b2c,5}}, {{0x18772,2},{0x17661,2}}, {{0x10a3,5},{0x12a15,5}}, + {{0x4781,3},{0xa385,4}}, {{0x1677,3},{0x24e8,4}}, {{0x15e68,8},{0xcc9,2}}, {{0xed1,4},{0x1c173,5}}, + {{0xcb7,2},{0x26acb,4}}, {{0x4767,1},{0x1db33,2}}, {{0x12f8,2},{0x88d4,4}}, {{0x29727,5},{0xf86,2}}, + {{0x2948,3},{0xcd2,2}}, {{0x11871,6},{0xe69,5}}, {{0xb799,6},{0x1790,6}}, {{0xf4f,1},{0x23e98,2}}, + {{0x7e39,6},{0x12fe,2}}, {{0x18bc4,6},{0xead,3}}, {{0xb96d,5},{0xb972,7}}, {{0x317a4,2},{0x2afc8,2}}, + {{0x4209,6},{0xae33,6}}, {{0x2ca15,5},{0xe11,1}}, {{0xc05d,4},{0xf7a,2}}, {{0x9901,8},{0xe95,2}}, + {{0x1a66,1},{0x2054a,2}}, {{0x22f03,6},{0xcd4,2}}, {{0xbba1,7},{0xb381,4}}, {{0xccb,2},{0x141a,2}}, + {{0x4ef5,4},{0xec6,3}}, {{0xf318,6},{0x1b80,3}}, {{0x29727,5},{0xf1a,2}}, {{0x25c2b,4},{0x155b,4}}, + {{0xcbd,1},{0xb37c,3}}, {{0xec6,4},{0x23df,5}}, {{0x3b5d,5},{0x113f,2}}, {{0x23953,5},{0x141a,2}}, + {{0x2ba,2},{0x57,1}}, {{0x331f,3},{0xe11,2}}, {{0x5,1},{0x6ca7,3}}, {{0xf77,3},{0xee59,5}}, + {{0x1d2fc,6},{0x3075,3}}, {{0x38af,7},{0x1720,7}}, {{0x9dd1,6},{0x9093,6}}, {{0xb6d9,6},{0x8943,6}}, + {{0x2de51,3},{0x534,2}}, {{0x4f1c,5},{0x131d1,5}}, {{0xe1f,3},{0x4b96,5}}, {{0x2e193,4},{0x358,2}}, + {{0xf4f,1},{0xd15f,3}}, {{0x21e73,6},{0xcc9,2}}, {{0x23c53,5},{0x1c7e,3}}, {{0x1927,4},{0x202f5,4}}, + {{0x24e3,5},{0x11b5,2}}, {{0x1577,7},{0x1380,5}}, {{0x2231,4},{0xc300,3}}, {{0xc05d,4},{0xcd3,1}}, + {{0x1025,1},{0xfa5,3}}, {{0x1bda3,6},{0xcd3,2}}, {{0x2501,5},{0xcbf,2}}, {{0xf65,4},{0x1267c,6}}, + {{0x1153,2},{0x33d3,2}}, {{0x4e60,2},{0xec6,3}}, {{0xcdab,7},{0x12a9,3}}, {{0x2006,3},{0x8ce2,3}}, + {{0x1967,3},{0x24bd6,5}}, {{0x747c,8},{0xe2b,4}}, {{0x12f9c,6},{0xe0a,1}}, {{0x13366,7},{0xec6,3}}, + {{0x1fdfb,6},{0x1131,3}}, {{0x1969,1},{0x4,2}}, {{0xf16,2},{0x16ad,3}}, {{0xe21,1},{0xe2f,1}}, + {{0x159cc,5},{0xf0f,2}}, {{0x46af,3},{0x141a,2}}, {{0x11d8e,6},{0x11d94,5}}, {{0x46bf,3},{0x1dee,2}}, + {{0x2fed4,4},{0xe,1}}, {{0x13f50,6},{0x1040,3}}, {{0x22e5,4},{0x104a,3}}, {{0x175ba,6},{0xeab,2}}, + {{0x119b0,5},{0xe11,1}}, {{0x1977,3},{0x20520,2}}, {{0x24f4,3},{0x65c7,7}}, {{0x9a1d,8},{0xfdd,4}}, + {{0x26193,7},{0x2,1}}, {{0x49b,2},{0xd,1}}, {{0x33fb,7},{0x1024,7}}, {{0x2e2b3,2},{0x2afe0,2}}, + {{0x7bd9,3},{0x1269,5}}, {{0xf57,2},{0xcce,2}}, {{0x4ece,7},{0x4ed5,6}}, {{0xf386,7},{0xd886,4}}, + {{0xa905,9},{0x1040,3}}, {{0x8c06,3},{0x428e,5}}, {{0x12f8,2},{0x1a578,4}}, {{0xdd18,7},{0x30f4,4}}, + {{0x1969,1},{0xee9,2}}, {{0x1109,5},{0x2571,5}}, {{0x44c5,5},{0xf63,2}}, {{0x450b,4},{0x243ff,4}}, + {{0xb835,5},{0xb83a,7}}, {{0x2b0a8,4},{0xc38,2}}, {{0x12a7e,7},{0xe11,1}}, {{0x46af,7},{0x358a,7}}, + {{0x1967,3},{0x30f5,4}}, {{0xed9,2},{0xe7f,2}}, {{0x4385,3},{0xcd3,2}}, {{0x225e,6},{0x9497,6}}, + {{0xe71,1},{0x5,2}}, {{0xbc7b,2},{0x6b2b,6}}, {{0x2e71b,3},{0x74f6,2}}, {{0x1a29,2},{0x115a,3}}, + {{0x30f85,2},{0x29979,2}}, {{0x1ca93,7},{0xe75,2}}, {{0xe11,1},{0x2e32,9}}, {{0xf65,4},{0x125e6,6}}, + {{0x13474,6},{0x126a,4}}, {{0x1219,6},{0x3c43,8}}, {{0xd013,8},{0xec6,3}}, {{0xe6f,3},{0xf80,2}}, + {{0x29cf,3},{0x2467,4}}, {{0xe65,2},{0x1791,6}}, {{0x12d4,3},{0xf0f,2}}, {{0x331f,3},{0x6,2}}, + {{0x2eda6,4},{0xb37b,1}}, {{0xcc1,1},{0x6b41,7}}, {{0x7795,10},{0x1004,3}}, {{0xb,1},{0xcc8,1}}, + {{0xf625,8},{0x2e29,3}}, {{0x1e865,6},{0x1e86b,3}}, {{0x6,1},{0x1d74,4}}, {{0x10bf0,2},{0x4415,3}}, + {{0xf38,2},{0xe71,1}}, {{0x10e1f,4},{0x5538,2}}, {{0x12d4,3},{0x2245,3}}, {{0x171d2,6},{0x171e2,4}}, + {{0x74f3,2},{0x12157,3}}, {{0x9a9,2},{0xe0d,2}}, {{0xe282,5},{0x2b89,3}}, {{0x57,1},{0x302,2}}, + {{0x3a37,6},{0x7a39,4}}, {{0x10d9,2},{0x6b2b,6}}, {{0x28e1,3},{0x9a52,7}}, {{0x11822,8},{0x15e9,3}}, + {{0x11fa9,8},{0x6,1}}, {{0x45,1},{0x19a,2}}, {{0x10a3,3},{0x12a9,3}}, {{0xf77,4},{0xe7f,4}}, + {{0x18138,7},{0xebb,3}}, {{0xc2a0,7},{0xe0d,2}}, {{0xb00f,6},{0x12a9,3}}, {{0x73bb,3},{0xf35,2}}, + {{0x14fb8,5},{0x4fa6,5}}, {{0x11f30,6},{0xf86,2}}, {{0x417d,10},{0x4187,4}}, {{0xb481,4},{0xfb0,3}}, + {{0x7414,3},{0x3594,5}}, {{0x25d5e,2},{0x19b9,1}}, {{0xf77,4},{0xe5f4,5}}, {{0xe6f,3},{0xe13,3}}, + {{0x1a19e,6},{0x1040,3}}, {{0x27e0,5},{0x6e44,6}}, {{0x1fd35,6},{0x4cc2,3}}, {{0x2de63,3},{0x611,2}}, + {{0x4615,6},{0x8,1}}, {{0x8d,1},{0xd,2}}, {{0x1467,5},{0x2f94,3}}, {{0xc159,4},{0xf7a,2}}, + {{0xe0b,2},{0xe7f,2}}, {{0xb96f,3},{0x386f,4}}, {{0x1e86a,2},{0x2a314,3}}, {{0x2939,4},{0x49b5,5}}, + {{0xe0a,1},{0x73d6,2}}, {{0x9de9,5},{0xcc3,2}}, {{0x100c2,6},{0xe69,5}}, {{0x31cb,6},{0x17dd9,3}}, + {{0x111a,3},{0x4b62,5}}, {{0xe8a,2},{0x29d7,3}}, {{0x1e18a,6},{0x7a36,3}}, {{0x1766e,5},{0x1489,2}}, + {{0x1967,3},{0x6068,4}}, {{0x4911,6},{0x1392,5}}, {{0xbfc1,5},{0x103dc,4}}, {{0xf8e,3},{0x1a62,3}}, + {{0x10efb,5},{0x1be9,3}}, {{0x486f,4},{0x2651f,4}}, {{0x4e43,4},{0xed6,2}}, {{0xe1f,3},{0x1177,7}}, + {{0x1118f,6},{0xe80,2}}, {{0x7795,4},{0x7a15,4}}, {{0xc14,3},{0xb74,1}}, {{0x1367,3},{0x1dee,2}}, + {{0x17df4,2},{0xe30,3}}, {{0x19c7,6},{0xeee,3}}, {{0x15e9,3},{0x101f,2}}, {{0x49b,2},{0xf,1}}, + {{0x8d,1},{0x176,2}}, {{0x1c019,6},{0x1392,3}}, {{0x1150,2},{0xc80d,4}}, {{0x2f01,6},{0x6411,4}}, + {{0x19b7,3},{0x141a,2}}, {{0x2240,4},{0x14ea4,6}}, {{0x10201,5},{0xe0b9,3}}, {{0x2a56,4},{0x1f6af,5}}, + {{0xcc6,2},{0x2f2e,4}}, {{0xc7ff,5},{0x943a,6}}, {{0x2461b,5},{0x101d,3}}, {{0x455f,5},{0x8666,2}}, + {{0x24903,6},{0x104c,2}}, {{0x1edfc,6},{0xe6c,3}}, {{0x2a47,3},{0x29673,2}}, {{0x48d7,2},{0xe16,1}}, + {{0xe33,1},{0x7416,1}}, {{0x1fa80,6},{0xe61,2}}, {{0xbae3,5},{0xcc3d,3}}, {{0x33ed,7},{0x1722,5}}, + {{0x12f6,4},{0x123e,3}}, {{0x1153,2},{0x1e94c,3}}, {{0x11a6b,5},{0x1252,3}}, {{0x562b,5},{0x13ed3,5}}, + {{0x17290,8},{0xf35,2}}, {{0x1e664,6},{0xb9d1,3}}, {{0x2ba5,1},{0xfb0,2}}, {{0x57,1},{0x44,2}}, + {{0x5ef,2},{0xe,1}}, {{0x1019,4},{0x1839,2}}, {{0x1927,4},{0x1e065,5}}, {{0xe65,2},{0xe67,2}}, + {{0xaf4,2},{0x11,1}}, {{0x45dd,6},{0x1d06,3}}, {{0x29ec3,5},{0xf19,2}}, {{0x12560,6},{0x103e7,4}}, + {{0x4f50,6},{0x3aae,7}}, {{0x2f9b,4},{0x3,1}}, {{0x2af0e,4},{0x2147,3}}, {{0x1046,3},{0xf35,3}}, + {{0x73ae,3},{0x21fe0,3}}, {{0x1208,7},{0xec6,3}}, {{0x40ab,9},{0xed6,2}}, {{0x17bca,5},{0x1244,3}}, + {{0x10b9,3},{0xef5,2}}, {{0x2cd9b,5},{0xe09,1}}, {{0x1a27,4},{0xfc7,3}}, {{0xee4,4},{0xce73,3}}, + {{0xe1f,3},{0x29430,3}}, {{0x37b9,3},{0x5fe3,6}}, {{0x2a930,5},{0xf3a,2}}, {{0xb4f0,5},{0x28e3,4}}, + {{0x1c82,6},{0xf62,3}}, {{0x1747,4},{0xe1b,4}}, {{0x8d69,8},{0xe92,3}}, {{0x2570,6},{0xf35,3}}, + {{0x9a8,1},{0x154ed,6}}, {{0xb3f1,3},{0xfdf,3}}, {{0x11ec2,6},{0x11ec8,5}}, {{0x3a1b,5},{0xe11,1}}, + {{0x61cc,5},{0x12ba,4}}, {{0xf0c,1},{0xf0d,4}}, {{0xe33,1},{0x103e,5}}, {{0x105f,3},{0x6,1}}, + {{0xbb89,4},{0x6d08,4}}, {{0x20cf1,6},{0xed9,2}}, {{0x27fe,6},{0xaf0b,6}}, {{0x7905,8},{0x7905,4}}, + {{0x10c1a,5},{0xfdf,4}}, {{0x29c0,3},{0xe78,1}}, {{0x24f2,5},{0x3fb8,5}}, {{0x1fb8e,5},{0x1cb28,4}}, + {{0x1279a,8},{0xeb5,2}}, {{0x5534,4},{0x2c85,2}}, {{0xee95,6},{0x5b06,4}}, {{0x1189d,4},{0x4538,3}}, + {{0x2b084,6},{0x2b036,6}}, {{0x70ad,6},{0xcc3,2}}, {{0xb3f1,5},{0x10da,2}}, {{0x69,1},{0x512,2}}, + {{0x58cf,7},{0x4eef,6}}, {{0x156a,3},{0x22bd,3}}, {{0xe21,1},{0x2ca18,2}}, {{0xebe,3},{0x18238,2}}, + {{0x7905,1},{0x205a5,1}}, {{0x45,1},{0x11c,2}}, {{0x225e,6},{0x4e13,5}}, {{0xd83d,6},{0xcc9,2}}, + {{0x2231,4},{0x10d3,3}}, {{0x450b,4},{0xcbf,2}}, {{0x2a5f6,4},{0x1e576,3}}, {{0x7d31,5},{0x51ac,7}}, + {{0x416f,5},{0xe2b,2}}, {{0xcbd,1},{0xf18,2}}, {{0x488b,4},{0x4115,6}}, {{0x1ff7,3},{0x6008,3}}, + {{0x255b,6},{0xf0d,2}}, {{0x40e3,7},{0xe5e,2}}, {{0xa,2},{0x10298,3}}, {{0xf11,1},{0x5,2}}, + {{0x3115,5},{0xe11,1}}, {{0xf70,2},{0x2091,4}}, {{0x6de2,8},{0xe11,1}}, {{0x45eb,5},{0x1150,2}}, + {{0xb8dd,5},{0xa36b,6}}, {{0x1fed3,5},{0xa,2}}, {{0xeb5,2},{0x156a,3}}, {{0x4767,1},{0x1ba2b,6}}, + {{0x19b7,3},{0xec6,3}}, {{0x741a,5},{0xcc9,2}}, {{0x10b9,2},{0xcd3,2}}, {{0x25d3,10},{0x128c,4}}, + {{0x2d97d,4},{0xedd,1}}, {{0x122e,2},{0xa,2}}, {{0x44b7,7},{0x1fc5,5}}, {{0xe21,1},{0xe0a,1}}, + {{0xd147,5},{0x2514,4}}, {{0x1b8db,5},{0xe1b,4}}, {{0x1170f,7},{0x7a7c,4}}, {{0x1ef52,5},{0x1ef57,4}}, + {{0x3e0e,3},{0xed6,2}}, {{0x1f7ef,6},{0x1253,3}}, {{0x2b46,4},{0x72fe,4}}, {{0xedd,1},{0x5989,2}}, + {{0x16a7,3},{0x20736,2}}, {{0xf0a,3},{0x10d3,3}}, {{0xfcb,3},{0xf7a,2}}, {{0xe71,1},{0x268c,2}}, + {{0xe7a,2},{0x15399,2}}, {{0x1b0b,9},{0x1b14,6}}, {{0x773a,10},{0xf23,3}}, {{0xf1d,2},{0xcbf,2}}, + {{0xcc7,1},{0x1d7e,3}}, {{0xf0a,3},{0x1ded8,6}}, {{0xe08,1},{0x1d359,6}}, {{0x8d,1},{0x206,2}}, + {{0x13fbe,6},{0x62f3,4}}, {{0x1567,3},{0x6ca7,3}}, {{0xf15,1},{0xab9f,3}}, {{0x2a92,6},{0x164c,4}}, + {{0x20401,5},{0x15e9,3}}, {{0x2a47,3},{0x2b83,2}}, {{0x1bec,5},{0x2ea4,9}}, {{0x12f1a,6},{0x3abf,4}}, + {{0x10a3,3},{0x2f26,5}}, {{0x1fe16,6},{0xed6,2}}, {{0x113d6,6},{0x1702,5}}, {{0x1f8e,7},{0x27dc,4}}, + {{0x17a4e,9},{0xe11,1}}, {{0x12f6,4},{0x1fc34,5}}, {{0xb379,3},{0xe22,2}}, {{0x24653,6},{0x78ed,2}}, + {{0x11515,5},{0x2917,4}}, {{0x1977,4},{0x1e8b,3}}, {{0xc16,1},{0x20579,1}}, {{0x27e0,3},{0xeb5,2}}, + {{0x442b,3},{0xa,2}}, {{0x60e2,5},{0x2f5a,4}}, {{0x180a,3},{0x1372,4}}, {{0x1025,1},{0xf91,3}}, + {{0xcda0,4},{0x22a3,2}}, {{0x93a7,3},{0x1ad8e,4}}, {{0x6519,6},{0x3767,6}}, {{0x1967,3},{0x2ad98,3}}, + {{0x488b,4},{0x2171,3}}, {{0xd0fa,9},{0xe67,2}}, {{0x1b4fd,6},{0x3,1}}, {{0xe5b,3},{0x1153,3}}, + {{0xf0a,3},{0x11ca,2}}, {{0xcc8,1},{0x73d6,2}}, {{0x12c3,4},{0x176cc,6}}, {{0x11cf4,6},{0x11cfa,5}}, + {{0x1a07,3},{0x1db34,2}}, {{0x9a6,1},{0x2c90,9}}, {{0x2d653,4},{0x2d65d,2}}, {{0xbfc1,5},{0x26088,3}}, + {{0x30845,4},{0x2afc6,2}}, {{0x39b9,8},{0xe11,1}}, {{0xfa2,3},{0xe78,1}}, {{0xedd,1},{0xeaa,2}}, + {{0x2a47,5},{0xf1de,6}}, {{0x23e99,2},{0x1969,1}}, {{0xf2cb,8},{0x158f,3}}, {{0x19f7,4},{0xa348,5}}, + {{0x955a,4},{0x11dc,3}}, {{0x9fe3,5},{0xcc3,3}}, {{0x7935,5},{0x10ee,3}}, {{0x14a7,4},{0x133c4,6}}, + {{0x247a,5},{0x1880,7}}, {{0x17696,7},{0x127c,3}}, {{0x19e7,5},{0x7152,4}}, {{0x12f2e,7},{0x1fe4,3}}, + {{0x3b5d,5},{0xa0be,7}}, {{0x236c,4},{0x1244,7}}, {{0x179b8,6},{0x3abf,4}}, {{0x1a07,3},{0x1155,2}}, + {{0xf0a,3},{0xcddd,5}}, {{0x27e0,3},{0xce96,4}}, {{0x29c0,3},{0xe7a,1}}, {{0x77bc,8},{0x7373,5}}, + {{0x2e193,4},{0x589,2}}, {{0xf11,1},{0x25756,5}}, {{0x70ad,3},{0x12157,2}}, {{0x2fd3,10},{0xe11,1}}, + {{0x21e3b,6},{0xe67,2}}, {{0x9369,5},{0xb0e0,5}}, {{0x2b4fe,2},{0x2b511,2}}, {{0xe99,1},{0xf1a,2}}, + {{0xe83,5},{0x1ea3,3}}, {{0xb6d9,6},{0x7998,4}}, {{0xaaf,2},{0xb74,6}}, {{0xcc8,1},{0x1230c,2}}, + {{0x1a66,1},{0x2f766,2}}, {{0x41b5,5},{0xe25,2}}, {{0x1085,3},{0xf23,3}}, {{0x1a5b,2},{0x5b7b,5}}, + {{0xe030,5},{0x1595,2}}, {{0x457b,5},{0xe6b,4}}, {{0xe91,2},{0x1520,7}}, {{0x114d,5},{0x2,1}}, + {{0x6644,5},{0xfe8,2}}, {{0x10b9,2},{0x2dd7,4}}, {{0x5ea6,12},{0xe11,1}}, {{0x12a5,2},{0xe2b,2}}, + {{0x10cb,2},{0xeee,3}}, {{0xcba,2},{0x2,1}}, {{0x7b45,4},{0x9adf,5}}, {{0x4853,3},{0x2bb4,2}}, + {{0xf15,1},{0x33fe,4}}, {{0xe,1},{0xb0,2}}, {{0x45a5,6},{0x12bf,4}}, {{0x56f0,4},{0xcd3,2}}, + {{0x20f6,5},{0x14abd,5}}, {{0x1a07,3},{0xb97c,2}}, {{0xe,1},{0x56,2}}, {{0x12f6,4},{0xeb9,3}}, + {{0x8532,3},{0xeab,2}}, {{0xf11,1},{0x20379,3}}, {{0xecd2,6},{0xe69,5}}, {{0xb183,3},{0xf35,2}}, + {{0x120f,3},{0x1380,5}}, {{0x2e292,1},{0x20599,1}}, {{0xcc1,1},{0x3e0e,3}}, {{0x1977,4},{0x5b91,8}}, + {{0x6,2},{0x1c7e,4}}, {{0x1a6d,3},{0xe69,6}}, {{0x46bf,1},{0x2d326,3}}, {{0x120f,3},{0xe22,2}}, + {{0x11c9c,7},{0x794f,4}}, {{0x2ad68,5},{0x5,1}}, {{0xcc7,1},{0xcc3,3}}, {{0xf15,1},{0x1ea72,2}}, + {{0x19700,8},{0xe0a,1}}, {{0x27e0,3},{0xcc1,1}}, {{0xefd4,8},{0xf86,3}}, {{0xe21,1},{0xf59,2}}, + {{0x5770,4},{0x1523,4}}, {{0x19b7,3},{0x25d0e,5}}, {{0x10b9,3},{0xec5,4}}, {{0x78d1,4},{0xe11,1}}, + {{0x811a,4},{0x10b7,2}}, {{0x457d,3},{0x1297,9}}, {{0x7414,3},{0xedd,1}}, {{0xe21,1},{0x73d6,2}}, + {{0x31d9,6},{0x31df,8}}, {{0x46af,3},{0x6008,3}}, {{0x4765,3},{0x4767,1}}, {{0x10bae,3},{0xf0f,2}}, + {{0x12d4,3},{0x2d524,2}}, {{0x81a5,6},{0xe78,2}}, {{0x4781,3},{0x123e,3}}, {{0x1025,1},{0x2b0fd,5}}, + {{0xc1ad,5},{0x1288,4}}, {{0x1367,3},{0xf18,2}}, {{0xf65,4},{0x1b78,11}}, {{0x44a5,2},{0xcbd,1}}, + {{0x4855,2},{0x1252,3}}, {{0x48d0,2},{0xf0c,1}}, {{0x11c65,9},{0x8,1}}, {{0x1dbe1,7},{0xb,1}}, + {{0x1db02,3},{0x4aef,3}}, {{0x2231,4},{0x56a8,5}}, {{0xb3f1,3},{0xf86,2}}, {{0x1cdad,6},{0x6ca7,3}}, + {{0x28d0,4},{0xfb0,2}}, {{0x122d,2},{0x12a9,3}}, {{0xe0b,2},{0xe7f,3}}, {{0x556,2},{0xd,1}}, + {{0x2ea43,4},{0xb,1}}, {{0xe6f,3},{0x1062,2}}, {{0xd147,5},{0x4dc6,4}}, {{0x4,1},{0xeb5,2}}, + {{0x2054a,2},{0xe16,1}}, {{0x1f9d,5},{0x2068,7}}, {{0x289d3,5},{0xe95,2}}, {{0xc6ec,4},{0x39a2,4}}, + {{0x9309,5},{0xc29d,3}}, {{0x11793,5},{0x5ee3,4}}, {{0x7602,4},{0x4be4,4}}, {{0x2b51d,6},{0x2b51f,4}}, + {{0x1ebe,4},{0xf35,3}}, {{0x479f,2},{0x1c17c,5}}, {{0x8d81,6},{0x4e39,5}}, {{0x2eb44,4},{0x28b3a,1}}, + {{0x1967,3},{0x404f,3}}, {{0x1977,3},{0x111c,2}}, {{0x2560,4},{0xe6b,4}}, {{0xed1,3},{0xbf5d,4}}, + {{0x1019,4},{0xe67,2}}, {{0xe71,1},{0xfa5e,4}}, {{0x205a1,3},{0x205a4,5}}, {{0x44c5,5},{0x137e,9}}, + {{0xf15,1},{0x1579,5}}, {{0x50af,7},{0x1d75,3}}, {{0x2abf,6},{0x2ad4,9}}, {{0xcd3,2},{0x2b290,4}}, + {{0x1ff7,3},{0x1a56,2}}, {{0x18ee,3},{0x3839,5}}, {{0x1ead,9},{0x1eb6,6}}, {{0xede,1},{0x7416,1}}, + {{0x10a3,10},{0x1663,4}}, {{0x8715,8},{0x23e1,3}}, {{0x1290,4},{0xe13,3}}, {{0x1ddbe,5},{0xeed,4}}, + {{0xf0d,2},{0xfbb,3}}, {{0x2de7b,4},{0x314,2}}, {{0xf53,4},{0xc23a,7}}, {{0x111a,3},{0xf86,3}}, + {{0x478f,3},{0x74f9,2}}, {{0xe1f,3},{0x2efae,2}}, {{0x45,1},{0x688,2}}, {{0x2ca21,5},{0x1969,1}}, + {{0x4853,3},{0x46bf,1}}, {{0xfdf,3},{0x70a6,3}}, {{0x1969,1},{0xe22,3}}, {{0x1a93,5},{0xc570,6}}, + {{0xb3f1,3},{0xe7d,2}}, {{0x20032,6},{0x10d3,3}}, {{0x29c0,3},{0xe2f,1}}, {{0x46af,3},{0x17661,2}}, + {{0xbb71,6},{0xed6,2}}, {{0x2a58,11},{0xed9,2}}, {{0x17fb2,5},{0x1067f,3}}, {{0x18f7,4},{0x1523,4}}, + {{0x1967,3},{0x6ca7,3}}, {{0xb175,5},{0xce83,4}}, {{0x18372,5},{0x6d41,5}}, {{0x6c42,10},{0xed6,2}}, + {{0x4367,9},{0x12be,5}}, {{0x1e93d,6},{0x490c,3}}, {{0x12e5,3},{0x27d7,2}}, {{0x70a6,3},{0xcdda,2}}, + {{0x81a5,6},{0x7b72,3}}, {{0x130a0,6},{0xe0b,4}}, {{0x2fc1d,3},{0x2fc20,2}}, {{0xf89,3},{0x2bb72,3}}, + {{0x4ce0,6},{0x4ce6,7}}, {{0xec3,3},{0xf1a,2}}, {{0x175bc,4},{0x4665,4}}, {{0x4599,2},{0xcd3,2}}, + {{0xaf4,32},{0xaf4,16}}, {{0x2de5d,4},{0x21,1}}, {{0xc933,7},{0x4cc2,4}}, {{0x2afb6,4},{0x666,2}}, + {{0x162e6,7},{0xe77,3}}, {{0x1ec8b,7},{0xe67,2}}, {{0xe28,3},{0xcc9,2}}, {{0x11142,6},{0x6bd4,5}}, + {{0x1ff7,3},{0x1849,3}}, {{0x27e0,4},{0x7955,4}}, {{0x712f,4},{0x1a58,3}}, {{0x2cda1,4},{0xe99,1}}, + {{0x7414,3},{0x6ca7,3}}, {{0x7788,5},{0xfb8,3}}, {{0x185d,2},{0x1025,1}}, {{0xe99,1},{0xe09,1}}, + {{0x1fa77,6},{0xed5,3}}, {{0x2b4ee,4},{0x2afd4,2}}, {{0x1189f,2},{0x25957,4}}, {{0xb3b5,5},{0xb3ba,7}}, + {{0xe30,3},{0xe11,1}}, {{0x1357,2},{0x7905,1}}, {{0x105f,3},{0x30ad,6}}, {{0x33a7,5},{0xe89,2}}, + {{0x1967,4},{0xcd3,1}}, {{0x70a0,8},{0x66c1,5}}, {{0x1fdb5,4},{0x30f4,4}}, {{0x2f71,4},{0x19f50,5}}, + {{0x450b,4},{0xc088,4}}, {{0xcb8,1},{0x6,2}}, {{0x1447,7},{0x3921,5}}, {{0x2fb7,7},{0xd0b4,4}}, + {{0x14e3c,5},{0x79cd,4}}, {{0xe25,2},{0x158e,2}}, {{0x116f,8},{0xe11,1}}, {{0x1677,3},{0xcc3,3}}, + {{0x29a2,5},{0xab88,3}}, {{0x26921,2},{0xe0f,1}}, {{0xe83,3},{0x15ecf,7}}, {{0xe37,4},{0x308a3,2}}, + {{0x1489,2},{0xe78,1}}, {{0x1790,3},{0xf72,5}}, {{0x2280,2},{0xeb4,10}}, {{0x10d6,5},{0x527c,7}}, + {{0xe83,3},{0xcba,2}}, {{0xcd3,2},{0xe67,2}}, {{0x28fe1,5},{0x25d5e,2}}, {{0xe63f,4},{0x8,1}}, + {{0x56c7,5},{0x2dd7,4}}, {{0x25173,6},{0xed9,2}}, {{0x3032f,3},{0x2e27d,2}}, {{0x384d,7},{0xfcb,2}}, + {{0x56c7,5},{0x8f72,7}}, {{0x127f,4},{0xe7f,2}}, {{0x4aef,3},{0x5e43,3}}, {{0xf0f,2},{0xcc3,2}}, + {{0xcbd,1},{0xf0d,2}}, {{0xf65,4},{0x49d8,9}}, {{0xcaa9,9},{0xcc9,2}}, {{0xef7,3},{0x2e32,3}}, + {{0x10b54,6},{0xc3f0,5}}, {{0x4aef,3},{0xed9,2}}, {{0x1bec,5},{0xfb1,3}}, {{0x1cb11,6},{0xf91,3}}, + {{0x27fe,7},{0x320c,5}}, {{0x1569,2},{0xcd3,1}}, {{0x23c4b,3},{0x17c0,2}}, {{0x1f945,8},{0x6,1}}, + {{0x1b60b,5},{0x1ce7,4}}, {{0x16a7,3},{0x1604e,4}}, {{0xf69e,9},{0xcc9,2}}, {{0x1025,1},{0xf18,2}}, + {{0x2d1f,3},{0xcc3,2}}, {{0x80fd,10},{0xe95,2}}, {{0x1467,4},{0x24f7,4}}, {{0x1a29,2},{0x164a2,5}}, + {{0x307b8,2},{0x20579,1}}, {{0x25083,6},{0xcc3,2}}, {{0x6176,4},{0xfe6,2}}, {{0x1577,4},{0xfdf,4}}, + {{0x7d25,8},{0x3ebb,4}}, {{0x63a0,8},{0x348b,5}}, {{0x1007,5},{0xf7a,2}}, {{0xcce,2},{0x2fcc,4}}, + {{0x6e71,6},{0xcc3d,3}}, {{0x3d55,5},{0x45c7,2}}, {{0x1dd2e,6},{0xf0d,3}}, {{0x2b46,4},{0x1131,3}}, + {{0x111a,3},{0x8f39,4}}, {{0xbb89,4},{0x227b7,4}}, {{0xe78,1},{0x1969,1}}, {{0x2a58,2},{0x41e9,4}}, + {{0x56ee,6},{0x8344,5}}, {{0x8d,1},{0x325,2}}, {{0x1a735,6},{0xcd3,1}}, {{0x8949,9},{0xf35,3}}, + {{0xd9ea,7},{0xcc3,3}}, {{0xe5e,2},{0x3b73,3}}, {{0x17cce,6},{0xe0a,1}}, {{0x12dc6,7},{0xcc9,2}}, + {{0x2948,4},{0x2c81,10}}, {{0x640e,5},{0x1be9,3}}, {{0xa3d1,7},{0xeee,3}}, {{0xccb,2},{0xe61,4}}, + {{0xeed,2},{0xc76a,6}}, {{0xfb0,2},{0xcd3,2}}, {{0x69,1},{0x152,2}}, {{0x21951,6},{0xe11,1}}, + {{0x2bb15,4},{0xf0d,2}}, {{0xf0a,3},{0x17661,2}}, {{0x12e5,3},{0x17661,3}}, {{0x2de75,3},{0x501,2}}, + {{0x16368,6},{0x5261,4}}, {{0x1fa92,6},{0x1d7d,3}}, {{0xacd1,7},{0x103e,5}}, {{0x1025,1},{0xb,1}}, + {{0x1849,3},{0x29f3,3}}, {{0x1937,5},{0xe89,2}}, {{0x1469,3},{0x1692,2}}, {{0xccd,1},{0xb2b3,6}}, + {{0xf0a,3},{0xf04,2}}, {{0x2a47,3},{0x48db,2}}, {{0x1008b,6},{0x1062,2}}, {{0x1967,3},{0x17dd9,3}}, + {{0xe2a,2},{0x1212,3}}, {{0x28ca2,2},{0x28cab,3}}, {{0xc88e,6},{0xcc9,2}}, {{0xe08,1},{0x4574,3}}, + {{0x1ccd,5},{0x895b,6}}, {{0x12c3,4},{0x4bbc,6}}, {{0xf0c,1},{0x2280,2}}, {{0x7b51,4},{0x9bd3,4}}, + {{0x794d,6},{0x7953,6}}, {{0x2403b,5},{0xfa6,3}}, {{0x28c1,6},{0x5dd0,3}}, {{0xcc1,2},{0xabb5,6}}, + {{0x15a7,6},{0xe67,2}}, {{0x449f,4},{0xe71,1}}, {{0xa791,8},{0x1d32,4}}, {{0x457d,3},{0xe6b,3}}, + {{0x9f,1},{0x567,2}}, {{0x24023,5},{0xe67,2}}, {{0xcda0,4},{0xeb4,3}}, {{0xd11b,5},{0xe1c,3}}, + {{0x20f6,5},{0x2fca,9}}, {{0xb805,5},{0x5,1}}, {{0x9a8,1},{0x7d81,4}}, {{0xe08,1},{0x74f9,2}}, + {{0xb8ad,5},{0x9408,3}}, {{0x4fb8,5},{0x26bb,8}}, {{0x25233,5},{0xecb,2}}, {{0x2e6b2,3},{0x74fc,2}}, + {{0x29e0,2},{0x348b,5}}, {{0x1081,11},{0xed6,2}}, {{0x1f330,6},{0x10d3,3}}, {{0x6b24,7},{0x7998,4}}, + {{0xee9,2},{0xcd3,2}}, {{0xe21,1},{0x2,2}}, {{0x4853,3},{0x8,2}}, {{0xf1d,2},{0xe2b,2}}, + {{0x13172,9},{0xe11,1}}, {{0x5312,8},{0x2844,5}}, {{0x14a7,4},{0x21af,3}}, {{0x1a27,4},{0x6,1}}, + {{0x9f,1},{0xd,2}}, {{0x4ef5,4},{0xab27,5}}, {{0x87cb,6},{0xcc9,2}}, {{0x236c,5},{0x162c,3}}, + {{0x1003,3},{0x296f,3}}, {{0x6e7e,8},{0x2f26,5}}, {{0x7378,5},{0x1eab3,4}}, {{0x1179e,5},{0x117a3,6}}, + {{0x19f9,2},{0x6,1}}, {{0x6f1a,5},{0x113f,2}}, {{0x77f0,5},{0x1077,6}}, {{0x2de63,3},{0xc2,2}}, + {{0xe0d,2},{0x492e,3}}, {{0x1367,4},{0xe1c,3}}, {{0x25403,5},{0x6,1}}, {{0xbc19,4},{0x142a,3}}, + {{0x11f25,5},{0xeea,3}}, {{0xfa5,3},{0xe0a,1}}, {{0x7ab5,8},{0x1663,4}}, {{0x46bf,1},{0x57ce,3}}, + {{0xdfa1,6},{0x1ce6,5}}, {{0x1b04,3},{0xe5e,2}}, {{0xe2f,1},{0x23cb6,5}}, {{0x44ef,5},{0x136d,3}}, + {{0xee95,8},{0x1392,3}}, {{0x12c3,5},{0xe11,1}}, {{0x1c0f,3},{0xcc9,2}}, {{0xfde,4},{0x30f4,4}}, + {{0x648a,11},{0xed9,2}}, {{0x1817,4},{0x6dfe,3}}, {{0x75e8,8},{0xe6b,4}}, {{0x3a8f,4},{0x1150,2}}, + {{0x1f76,5},{0x1040,3}}, {{0x18220,3},{0x11d9,3}}, {{0xe67,2},{0xe6b,3}}, {{0x101f,2},{0xf35,2}}, + {{0x2e794,4},{0x2e798,4}}, {{0x2dbf,5},{0x2468,3}}, {{0x417d,5},{0x1c79,2}}, {{0x72b5,6},{0x72bb,7}}, + {{0xcc8,2},{0xa,2}}, {{0x24f2,5},{0x1b80,3}}, {{0x1716e,5},{0x5717,4}}, {{0x19508,6},{0xf02,2}}, + {{0xfad,5},{0xccd,1}}, {{0x2a47,3},{0xc557,3}}, {{0x1a27,4},{0xe11,1}}, {{0x39bd,4},{0x10cb,4}}, + {{0x3967,4},{0xe95,2}}, {{0xe21,1},{0x4aee,3}}, {{0xfbf,5},{0xf257,6}}, {{0x1d950,4},{0xe2b,2}}, + {{0x8d,1},{0x1d0,2}}, {{0x2944f,6},{0xe0a,1}}, {{0x226fb,7},{0xe11,1}}, {{0x1dbe1,7},{0xe22,2}}, + {{0x20509,2},{0x1e57d,2}}, {{0x17664,5},{0x17669,4}}, {{0xcd6,1},{0x20599,1}}, {{0x10c5,5},{0x12c63,5}}, + {{0x24e3,5},{0x69cc,6}}, {{0x27e0,3},{0xe86,2}}, {{0x4765,3},{0x1889,2}}, {{0x228b,6},{0x146d,9}}, + {{0xfbf,5},{0x4fb3,5}}, {{0x4457,2},{0x1db3b,2}}, {{0x1a29,2},{0xb3c8,3}}, {{0x2cca5,4},{0x4461,2}}, + {{0x2634b,6},{0xe0d,2}}, {{0x2e193,4},{0x325,2}}, {{0x1765a,4},{0x1765e,6}}, {{0x1c1e,4},{0xcce,2}}, + {{0xede,1},{0x2ba5,1}}, {{0x10c1a,5},{0xcc6,2}}, {{0x4781,3},{0x18b2,5}}, {{0x74f9,2},{0x26921,4}}, + {{0xe9c5,7},{0x1523,4}}, {{0x457d,3},{0x437c,7}}, {{0x12e5,3},{0x1be9,3}}, {{0x120dd,5},{0xf35,3}}, + {{0xcc3,2},{0xcc4,2}}, {{0xa,2},{0x5669,3}}, {{0xe83,3},{0x14f9,3}}, {{0xc05d,4},{0xe71,1}}, + {{0x4011,12},{0xe95,2}}, {{0x1447,7},{0x568c,5}}, {{0x23c4b,3},{0xe22,2}}, {{0x1f38,1},{0x3642,2}}, + {{0xc80d,4},{0xed5,3}}, {{0x11ab8,6},{0xbb24,5}}, {{0xda8,4},{0x2b0aa,2}}, {{0x1a66,1},{0xeb6,2}}, + {{0x111a,3},{0x2454,3}}, {{0x1e355,6},{0x2075,3}}, {{0x78a3,2},{0x2e2b1,4}}, {{0x24b6,5},{0x24bb,9}}, + {{0x46af,3},{0x3a91,3}}, {{0x9f,1},{0x1f4,2}}, {{0xf9b,5},{0x534e,5}}, {{0xeaa,2},{0x808c,5}}, + {{0x1f38,1},{0x1007b,5}}, {{0xb39d,6},{0xf91,3}}, {{0x11a6,3},{0x2899,10}}, {{0x4ce0,6},{0x30ad,6}}, + {{0x584d,10},{0x14a2,3}}, {{0x46af,3},{0x22a2,4}}, {{0x4187,3},{0xed9,2}}, {{0xe33,1},{0xe11,1}}, + {{0x11adb,3},{0x120c,3}}, {{0x2e27d,1},{0xab1,1}}, {{0x46af,3},{0x281f,5}}, {{0x1937,9},{0x1940,7}}, + {{0x24dbb,6},{0xed6,2}}, {{0x7602,5},{0xcd3,1}}, {{0xe60,2},{0x5862,4}}, {{0x46bf,1},{0xf1a,2}}, + {{0x8d,1},{0x55,2}}, {{0x46af,3},{0x80f6,4}}, {{0xe08,1},{0x73d6,2}}, {{0x1e2e9,4},{0x2465f,4}}, + {{0xb,1},{0xcb8,1}}, {{0x3089,5},{0x6970,7}}, {{0x79dd,7},{0xc3d0,4}}, {{0xe83,3},{0xa84c,4}}, + {{0xc017,2},{0x1a71,3}}, {{0x534,2},{0xf,1}}, {{0x1a66,1},{0x101f,2}}, {{0x1637,9},{0xe11,1}}, + {{0xd131,4},{0xe71,1}}, {{0x8ed1,7},{0x293e,5}}, {{0xe08,1},{0x1db34,2}}, {{0x28b31,3},{0x2e273,1}}, + {{0x7115,4},{0x1deeb,5}}, {{0x29cf,3},{0x78cd,3}}, {{0xd78,4},{0x2b0d0,2}}, {{0x4759,5},{0xe78,2}}, + {{0x10ff8,5},{0x1235,6}}, {{0x2a47,5},{0x1e8b,3}}, {{0x2a47,3},{0x4539,2}}, {{0x1a07,3},{0xe95,2}}, + {{0xf18,2},{0xe0a,1}}, {{0x15f7,4},{0x178d,3}}, {{0xbffd,6},{0xb88f,6}}, {{0x3089,5},{0x1303,3}}, + {{0x102b,3},{0xc,1}}, {{0xe27,2},{0xf32,2}}, {{0x1fdd9,3},{0x2695f,4}}, {{0x122a,11},{0x1742,5}}, + {{0x6b99,5},{0xe89,3}}, {{0x77f0,4},{0x10af6,4}}, {{0xb843,3},{0xed5,4}}, {{0x2330,5},{0x189f,3}}, + {{0x16660,5},{0xed9,2}}, {{0xe33,1},{0x20550,2}}, {{0x24653,4},{0xe16,1}}, {{0xf0a,3},{0x2054a,2}}, + {{0x29a2,5},{0x6e91,3}}, {{0xf77,3},{0x584a,2}}, {{0x1f114,5},{0x162c,3}}, {{0x11b94,7},{0xcb9,4}}, + {{0x126a,4},{0xf7a,2}}, {{0xdcfc,4},{0xcc9,2}}, {{0xf77,5},{0x1663,3}}, {{0xe37,4},{0xd1c,2}}, + {{0x1017d,8},{0x1be9,3}}, {{0xb535,5},{0xfb0,2}}, {{0xcb8,1},{0x1189,3}}, {{0x1877,4},{0x594d,4}}, + {{0xd987,10},{0xe11,1}}, {{0x1e9e,4},{0x29f3,3}}, {{0xcdd7,5},{0xe1b,4}}, {{0x2fed4,4},{0xf,1}}, + {{0x550f,3},{0x15fe,4}}, {{0x1a19,3},{0x6e76,8}}, {{0xb925,8},{0x127c,3}}, {{0x7602,5},{0xe19,6}}, + {{0xf0c,1},{0x1731f,7}}, {{0xb37b,1},{0xa,2}}, {{0x111a,3},{0xe09,1}}, {{0xe8a,2},{0x4745,4}}, + {{0x9f,1},{0x6cc,2}}, {{0x1747,4},{0x1088,4}}, {{0xef7,9},{0x101f,3}}, {{0x46af,3},{0x1189,4}}, + {{0x2de63,3},{0x1e2,2}}, {{0x12e7,3},{0x141d4,4}}, {{0x49b,2},{0xe,1}}, {{0x1aefa,6},{0xec6,3}}, + {{0x550d,7},{0x1004,3}}, {{0x2240,4},{0xccd,1}}, {{0xef7,6},{0x667e,7}}, {{0x12b6,5},{0xaa38,5}}, + {{0xe7a,1},{0x29922,2}}, {{0x7ca1,7},{0x7ca8,5}}, {{0x13938,6},{0xec6,3}}, {{0x1819c,5},{0x181a1,5}}, + {{0xb595,5},{0xcc3,3}}, {{0x26143,6},{0xf86,2}}, {{0x127f,3},{0x9,1}}, {{0x1de9f,5},{0x30f7,2}}, + {{0x3,1},{0x122e,2}}, {{0x3739,2},{0x2ee9,3}}, {{0xbdef,2},{0x6008,3}}, {{0x12a88,7},{0xe0a,1}}, + {{0xaec9,5},{0xf1bd,4}}, {{0x2991f,5},{0x1766a,2}}, {{0x9609,8},{0xe77,3}}, {{0x425d,8},{0x3fe0,4}}, + {{0x173bc,6},{0x28e3,4}}, {{0x1937,4},{0x2d11,3}}, {{0x2a317,5},{0x48da,2}}, {{0x2f4a,4},{0x6411,4}}, + {{0xf77,3},{0x19390,5}}, {{0x6bda,6},{0x1278,4}}, {{0x10cb,4},{0xec6,3}}, {{0x1bec,5},{0x1819,5}}, + {{0xe83,5},{0x2280,2}}, {{0x24f2,5},{0xf8e,3}}, {{0x12d4,3},{0x17621,4}}, {{0x1c76,3},{0xe92,3}}, + {{0xcc7,1},{0xfb0,3}}, {{0xdd44,5},{0x122d,2}}, {{0xf89,3},{0x9a4,3}}, {{0x2,1},{0xf91,3}}, + {{0x5d56,3},{0x5d66,8}}, {{0x29889,3},{0x74fb,3}}, {{0xdfb7,8},{0xec6,3}}, {{0xe584,7},{0xe0b,4}}, + {{0x119b0,5},{0xcc9,2}}, {{0xe78,1},{0x1235,6}}, {{0xcc6,2},{0x2e29,3}}, {{0x1969,1},{0x2d1f,3}}, + {{0x345d,7},{0x2fbe,5}}, {{0x46af,3},{0x1a66,1}}, {{0x123b,9},{0x2663,6}}, {{0xc045,5},{0xeab,2}}, + {{0x20d61,6},{0xcc9,2}}, {{0x833d,7},{0x8344,5}}, {{0x391f,5},{0xeaa6,6}}, {{0xcc7,1},{0x82d5,5}}, + {{0x1198f,5},{0xf24,2}}, {{0x52ef,3},{0x11530,4}}, {{0xf0c,1},{0x17dd9,3}}, {{0x251db,5},{0x2f2e,3}}, + {{0x2bc7,4},{0x4fb3,5}}, {{0x1bbf,4},{0x22a3,2}}, {{0x31f5,6},{0x169b,8}}, {{0xe0f,1},{0x2b83,2}}, + {{0x1f7f,4},{0x592e,5}}, {{0x9b79,7},{0x1523,4}}, {{0x124c,6},{0x539a,7}}, {{0x1e1b,3},{0xed9,2}}, + {{0x2691d,4},{0x26921,3}}, {{0x1a09,3},{0x183c,4}}, {{0x1cd3,2},{0x267cf,5}}, {{0x1969,1},{0xd65c,7}}, + {{0x8655,7},{0xe69,5}}, {{0xed9,2},{0xed5,3}}, {{0xd48,6},{0xc36,4}}, {{0xf77,3},{0x1a336,6}}, + {{0x1567,3},{0x1dc2,3}}, {{0x250ab,5},{0x162c,3}}, {{0x4633,3},{0x10b7,2}}, {{0xedd,1},{0x6,2}}, + {{0x1f0de,4},{0xf3a,3}}, {{0x18e1c,7},{0xed6,2}}, {{0x19e9,3},{0x5912,5}}, {{0x4767,1},{0xefb,3}}, + {{0x29c0,4},{0xe31,2}}, {{0x2add,6},{0x1263,7}}, {{0x260fb,4},{0xe16,1}}, {{0x2ccaf,2},{0xf4f,1}}, + {{0xd11b,5},{0x4e45,3}}, {{0x1a66,1},{0xe0d,2}}, {{0x1657,12},{0x1663,4}}, {{0x2eb37,1},{0x20599,1}}, + {{0x29c0,3},{0x2d981,2}}, {{0x1694e,5},{0x9,1}}, {{0x29a2,6},{0x32cd,8}}, {{0x4a4e,3},{0x4,1}}, + {{0xf89,3},{0xf15,1}}, {{0x1f0e7,6},{0x142d,3}}, {{0x1fc78,6},{0xf5c,3}}, {{0x2de45,3},{0x1ac,2}}, + {{0x42cd,9},{0xec6,3}}, {{0x25d9b,6},{0xa,2}}, {{0x20599,4},{0x20599,4}}, {{0x111a,3},{0x24f7,4}}, + {{0x156a,3},{0x2c6a,5}}, {{0x41ed,4},{0x6cfc,9}}, {{0xcc6,2},{0xe92,3}}, {{0x15fda,8},{0xe95,2}}, + {{0x1821e,6},{0xce76,4}}, {{0x1196e,8},{0x1fc7,3}}, {{0xf0c,1},{0x2b46f,5}}, {{0x48d3,2},{0xf4f,1}}, + {{0xfb8,3},{0xe89,2}}, {{0x41ed,4},{0xc1f4,5}}, {{0xf0a,3},{0x158f,3}}, {{0x101bf,6},{0xed6,2}}, + {{0x11e98,5},{0xb381,4}}, {{0x5b32,8},{0x5dd0,3}}, {{0x1178a,2},{0x181b,3}}, {{0xe22,2},{0xe61,2}}, + {{0x478f,3},{0x1dec0,2}}, {{0x1dc2,3},{0x29a2f,3}}, {{0x478f,3},{0x344b,4}}, {{0x2e2af,6},{0x2e2b5,4}}, + {{0xe60,2},{0x8,1}}, {{0x313,3},{0xd,1}}, {{0x181ce,5},{0x3378,5}}, {{0x2123,9},{0x149f,6}}, + {{0x4765,3},{0x2f41,4}}, {{0x10cb,2},{0xe5e,2}}, {{0x19b9,1},{0x15bf5,6}}, {{0x111a,3},{0x16935,5}}, + {{0x9525,6},{0x5f06,4}}, {{0xe83,3},{0x4e45,3}}, {{0xe32,1},{0xefa,3}}, {{0x20579,1},{0x28b3a,1}}, + {{0xf9b,5},{0x991a,7}}, {{0xb991,8},{0x66c1,4}}, {{0x1f165,5},{0x354f,4}}, {{0x11d0a,5},{0x30f6,3}}, + {{0xe11,2},{0x94b5,4}}, {{0xcd3,2},{0x18b2,5}}, {{0x19f7,4},{0xe77,3}}, {{0x1155,2},{0x80b0,4}}, + {{0x6b99,9},{0x6ba2,4}}, {{0x111a,3},{0xfdf,3}}, {{0x46bd,3},{0xf15,1}}, {{0x20365,5},{0x2036a,4}}, + {{0x2b4ee,2},{0x3082b,2}}, {{0x43bb,7},{0x2cbe,5}}, {{0xe85,3},{0xe650,5}}, {{0x1969,1},{0x1ea72,2}}, + {{0x204d9,4},{0x204d9,4}}, {{0xf15,1},{0x113f,2}}, {{0x115e,5},{0x970a,7}}, {{0x10361,5},{0x4aef,3}}, + {{0x70ad,4},{0x1bf0,2}}, {{0x2a47,5},{0x13e1,6}}, {{0x11a15,6},{0xe11,1}}, {{0x27e0,3},{0xd885,5}}, + {{0x25365,4},{0x1058,2}}, {{0x7d19,6},{0x7d1f,6}}, {{0x3329,7},{0x1059,3}}, {{0x18728,5},{0x2352,5}}, + {{0x2fea7,4},{0xd,1}}, {{0xeed,2},{0x1150,2}}, {{0x1c37,6},{0xfdd,6}}, {{0xde8e,4},{0x5699,4}}, + {{0x2006,3},{0xcd3,1}}, {{0xeb5,2},{0x3577,5}}, {{0x124ac,5},{0x2bd7,3}}, {{0x65a8,7},{0x129a,6}}, + {{0x28fd,6},{0xf86,3}}, {{0x12c3,4},{0x1025,1}}, {{0x1692,2},{0x17df,3}}, {{0x2948,3},{0x7152,4}}, + {{0x6,2},{0xe89,2}}, {{0xf9b,8},{0xfa3,10}}, {{0x6d46,6},{0x140bd,4}}, {{0x2479b,4},{0x19e1,3}}, + {{0x7b,1},{0x12e,2}}, {{0x1fbb,6},{0xe11,1}}, {{0x2e27d,1},{0x1357,1}}, {{0x2240,4},{0x22687,4}}, + {{0xe83,3},{0x9a8,1}}, {{0x71be,5},{0xfa5,2}}, {{0x46af,3},{0x29c11,4}}, {{0x13fbe,6},{0x309c,4}}, + {{0xccb,2},{0x583a,3}}, {{0x10573,4},{0xfe0,2}}, {{0x2f47,9},{0xe69,5}}, {{0x2777,6},{0xffd6,5}}, + {{0x20549,2},{0x1969,1}}, {{0x3a1b,5},{0x5538,2}}, {{0xfe3,7},{0xe67,2}}, {{0x1024,2},{0xe09,1}}, + {{0x11dc,3},{0x8,1}}, {{0x171e6,5},{0x6,3}}, {{0x4765,3},{0xabc6,3}}, {{0x2,2},{0x25d9,9}}, + {{0x1537,4},{0x1461f,4}}, {{0x10bac,5},{0x6cbe,4}}, {{0x1152b,5},{0x11237,4}}, {{0x74f1,4},{0x254af,4}}, + {{0x2e193,4},{0x44,2}}, {{0x9f,1},{0x1be,2}}, {{0xf77,5},{0xef3,4}}, {{0xcda0,6},{0x4fa6,5}}, + {{0x1927,4},{0xfcb,2}}, {{0x488b,5},{0x7bd9,3}}, {{0x250e5,3},{0xcd3,2}}, {{0x6d05,6},{0x667e,7}}, + {{0x127f,5},{0xe67,2}}, {{0xf0a,3},{0xb4f0,9}}, {{0x2b09c,6},{0x2b036,6}}, {{0x2e86b,3},{0xcd6,1}}, + {{0x1967,3},{0x155b,3}}, {{0xc26f,2},{0x9b1,2}}, {{0x1969,1},{0x2467,4}}, {{0xcd3,3},{0x89f7,6}}, + {{0x5d54,5},{0x33fe,4}}, {{0x2e193,4},{0x567,2}}, {{0x1172a,2},{0x8,1}}, {{0x113c,3},{0x277f9,4}}, + {{0x16a7,3},{0x15461,7}}, {{0x45a5,6},{0x1f2a,8}}, {{0xe8a,2},{0xfa5,3}}, {{0xe83,3},{0x3e23,4}}, + {{0x19b7,3},{0xf70f,7}}, {{0xccd,2},{0x208f,6}}, {{0xe1f,3},{0x286d,3}}, {{0xe11,1},{0x4d72,6}}, + {{0x103bb,5},{0x126a,4}}, {{0x17506,6},{0x42f1,4}}, {{0x10c5,4},{0x2781,5}}, {{0x12f2e,5},{0x19c81,4}}, + {{0x1e9e,5},{0x1ab57,4}}, {{0x24cc3,5},{0x2f92,3}}, {{0xf86,2},{0x156a,3}}, {{0x16a7,3},{0xaa38,5}}, + {{0x11520,8},{0x1fc7,3}}, {{0x11f51,6},{0x4cc2,3}}, {{0x113c,3},{0xe0b,2}}, {{0x2006,3},{0xcc8,1}}, + {{0x391f,7},{0xf84,5}}, {{0x1729a,5},{0x1b4b0,3}}, {{0x11cc4,4},{0x1be9,3}}, {{0x25e2,9},{0x104a,4}}, + {{0xb379,3},{0x1bef,2}}, {{0x5117,5},{0x1b8b,6}}, {{0x124c,6},{0xf0f,2}}, {{0x1db3b,2},{0x1057,1}}, + {{0x478f,3},{0x22a3,2}}, {{0x385b,7},{0x1a86,3}}, {{0x442d,1},{0xccc,2}}, {{0xcd6,1},{0xc,1}}, + {{0x1a93,11},{0x126a,4}}, {{0x8ccd,6},{0x8cdf,6}}, {{0x2ba,2},{0x9f,1}}, {{0x471f,10},{0xcce,2}}, + {{0x53c2,3},{0xe22,2}}, {{0xff99,7},{0x128c,4}}, {{0xf15,1},{0x2ced6,3}}, {{0x11dfc,4},{0x2,1}}, + {{0xccb,2},{0xdbff,6}}, {{0xe99,1},{0xc9af,4}}, {{0xebe,5},{0x4009,3}}, {{0xcd2,2},{0x1025,1}}, + {{0x1153,2},{0x101d,3}}, {{0xe33,1},{0x6,2}}, {{0x613d,6},{0xec80,5}}, {{0x46af,3},{0xfcb,2}}, + {{0xccc,2},{0xcbf,2}}, {{0x74f5,2},{0x1f875,1}}, {{0x2966,4},{0xe89,2}}, {{0x27318,6},{0xe0a,1}}, + {{0x16944,5},{0xcddc,4}}, {{0x7337,4},{0x1f0d9,3}}, {{0x46bf,1},{0xe08,1}}, {{0x34e9,7},{0x34f0,7}}, + {{0x4911,6},{0x1392,3}}, {{0x1cfa,5},{0xfee4,4}}, {{0xed1,5},{0x1059,3}}, {{0x2968,3},{0xeed,2}}, + {{0xf0c,1},{0xac80,5}}, {{0x712f,4},{0xeb7,7}}, {{0x2bae,2},{0x39bd,4}}, {{0x1e62,4},{0x1943f,3}}, + {{0x2006,4},{0x12a3,3}}, {{0x20f6,5},{0x2663,6}}, {{0xe97,3},{0x5342,3}}, {{0xbc31,5},{0x188c,3}}, + {{0x49a0,5},{0xf12,3}}, {{0x255b,8},{0xf63,2}}, {{0x3089,5},{0xb428,3}}, {{0x10cb,2},{0x7000,4}}, + {{0x635f,9},{0xe6b,4}}, {{0x1a68a,5},{0x2476,4}}, {{0x3479,8},{0xfdd,6}}, {{0x12c3,4},{0x23427,4}}, + {{0x12d4,3},{0x2236,3}}, {{0x74bd,8},{0xe69,5}}, {{0x1fffc,6},{0xe0a,1}}, {{0x12df2,3},{0x1a9a,4}}, + {{0xe5b,3},{0xf49d,3}}, {{0xf77,3},{0x2ee9,3}}, {{0x9369,9},{0x9372,3}}, {{0x2213,8},{0x33d8,5}}, + {{0x11b47,6},{0xb7d0,5}}, {{0xbb8b,2},{0x1252,3}}, {{0xe1f,3},{0x1ff43,4}}, {{0x18c50,5},{0x1025,1}}, + {{0xb453,3},{0x13e1,5}}, {{0x44c5,5},{0x61b9,5}}, {{0x1ac96,6},{0x1059,3}}, {{0x5724,3},{0xed6,2}}, + {{0x1da3c,3},{0x3372,4}}, {{0x1367,3},{0x6f8a,4}}, {{0x4137,6},{0xec3,3}}, {{0x2d4fd,4},{0x24900,2}}, + {{0x11e12,5},{0x9,1}}, {{0x5534,4},{0xdabf,7}}, {{0x1fdd7,4},{0x48d2,3}}, {{0x31951,2},{0xe41,2}}, + {{0x9a8,1},{0xd885,5}}, {{0x7e21,6},{0x3075,6}}, {{0x1647,5},{0x5c55,8}}, {{0x18f7,4},{0x1252,5}}, + {{0x174d4,6},{0x4f55,4}}, {{0x12e5,3},{0xe77,2}}, {{0xede,1},{0x59b4,3}}, {{0x301b,4},{0x344b,4}}, + {{0x2d1f,3},{0x1523,4}}, {{0xf65,4},{0x2c9d,10}}, {{0x20bc,8},{0xec6,3}}, {{0x600,2},{0xd,1}}, + {{0x5bc1,7},{0xe92,3}}, {{0x1c1e,4},{0xe67,2}}, {{0x2ba5,1},{0xf86,2}}, {{0xf0a,3},{0x2ed1,6}}, + {{0xe7a,1},{0xcbd,1}}, {{0x1a132,5},{0x249f,3}}, {{0xe97,3},{0x110fb,3}}, {{0x7f41,4},{0xfb0,3}}, + {{0x1969,1},{0x445b,3}}, {{0xf77,3},{0x49a6,3}}, {{0x1827,6},{0xe6b,2}}, {{0x1977,3},{0xe89,2}}, + {{0x3537,2},{0xcd3,1}}, {{0x105f,3},{0x2464,6}}, {{0x105f,3},{0x1085,3}}, {{0xb895,4},{0x29977,5}}, + {{0x1357,1},{0xab1,1}}, {{0x52eb,8},{0xe92,3}}, {{0x0,1},{0x78f9,1}}, {{0x15d7,8},{0x1099,8}}, + {{0x2de9b,3},{0x56,2}}, {{0x7d3d,6},{0xc73f,5}}, {{0x5c02,5},{0x68a1,6}}, {{0x488b,4},{0x6ed0,9}}, + {{0x2371,3},{0xc3fb,5}}, {{0x8d,1},{0x1e2,2}}, {{0xf0a,3},{0x210a4,5}}, {{0x1a07,3},{0x20382,2}}, + {{0x1094,5},{0xfdd,4}}, {{0x149b,4},{0x15ad,3}}, {{0x2de75,3},{0x4df,2}}, {{0x18ecc,2},{0x2afc8,2}}, + {{0x2501,5},{0xa63a,7}}, {{0x167c8,7},{0xf91,3}}, {{0x15c92,9},{0xe11,1}}, {{0x1f2bb,6},{0x1a71,3}}, + {{0x2d87,6},{0x5dd0,6}}, {{0x1937,4},{0x1393,4}}, {{0x1118a,2},{0xe11,1}}, {{0x14702,6},{0xcb9,4}}, + {{0x1937,4},{0x1e8b,3}}, {{0xe1f,3},{0x1796b,4}}, {{0x1da43,6},{0x15e9,3}}, {{0x248a3,6},{0x5538,2}}, + {{0x188c,3},{0x4a01,3}}, {{0x1677,3},{0x12c45,5}}, {{0x1f0de,4},{0x1f0e2,5}}, {{0x1007,6},{0x2642,9}}, + {{0x1cbeb,6},{0x127c,3}}, {{0x174c0,7},{0x1fc7,3}}, {{0xf70,2},{0xcd3,1}}, {{0xe86,2},{0xbfc9,4}}, + {{0x1cfa,5},{0xda33,4}}, {{0x1537,4},{0x175e8,4}}, {{0x12e5,3},{0x20549,2}}, {{0x1a05c,4},{0xf91,3}}, + {{0x1393,3},{0x6,1}}, {{0x19133,6},{0xec6,3}}, {{0x450b,4},{0xed9,2}}, {{0xe0c,3},{0x4b11,5}}, + {{0xe99,1},{0xeb4,2}}, {{0x17646,5},{0x1ea3,3}}, {{0xe5b,3},{0xbd18,5}}, {{0x1977,8},{0xcce,2}}, + {{0x1bec,5},{0x4df6,8}}, {{0x1e15d,6},{0x5,2}}, {{0xcba,2},{0x2b2c1,3}}, {{0x1f38,1},{0x1d6c1,5}}, + {{0x9a6,1},{0xcbf,2}}, {{0x4c5e,8},{0x1722,5}}, {{0x465b,4},{0x1f7b,4}}, {{0x30f5d,4},{0xe4d,2}}, + {{0x1b4a3,6},{0xf62,3}}, {{0x17d28,5},{0x7373,5}}, {{0x11d57,8},{0xe7f,2}}, {{0x317cd,2},{0x2afe0,2}}, + {{0xcc1,1},{0xe2b,2}}, {{0xfe0,2},{0xe22,2}}, {{0xe77,2},{0x13c3,4}}, {{0x783e,5},{0xe6b,3}}, + {{0x2de63,3},{0x5ef,2}}, {{0x1d18,8},{0x129a,7}}, {{0x161ba,6},{0x1a71,3}}, {{0xff62,6},{0x587c,5}}, + {{0x45,1},{0x699,2}}, {{0x3c91,9},{0x3c9a,5}}, {{0x29c0,3},{0xc300,3}}, {{0x1a29,2},{0x6fe1,3}}, + {{0x236c,4},{0x329f,4}}, {{0xb,1},{0xe78,1}}, {{0x11184,4},{0x24d5e,2}}, {{0x18610,5},{0xb,1}}, + {{0x1967,3},{0x8666,2}}, {{0x4853,3},{0x5849,4}}, {{0x4,1},{0xe86,2}}, {{0x173d2,3},{0x2d11,3}}, + {{0x9d41,6},{0x3a4d,6}}, {{0x1ebe,4},{0x159c,4}}, {{0x1fc4b,7},{0xe22,2}}, {{0xe08,1},{0x4cff,4}}, + {{0xec0,3},{0x5a5d,5}}, {{0xf15,1},{0x1212,3}}, {{0xff57,6},{0x7a13,5}}, {{0x17ec2,6},{0xf59,2}}, + {{0x235d,5},{0x1153,3}}, {{0x1196e,5},{0xe66,3}}, {{0x4bfa,3},{0x6,1}}, {{0x1230,3},{0xe0a,1}}, + {{0x1367,3},{0x191a2,6}}, {{0xbfcd,5},{0x151f,3}}, {{0x4049,9},{0xe6b,3}}, {{0xcfd1,6},{0xe11,1}}, + {{0x50fd,5},{0x2091,4}}, {{0x27e0,4},{0xfb0,2}}, {{0x2e345,5},{0xe22,2}}, {{0x17206,4},{0x2f2e,3}}, + {{0x29fe,3},{0x2365,7}}, {{0x1647,5},{0x169b,8}}, {{0x1969,1},{0x1a9c9,6}}, {{0x19f9,2},{0xf1a,2}}, + {{0x353d,5},{0x1258,5}}, {{0x3a29,4},{0x17b0,3}}, {{0xfb0,2},{0xe5e,2}}, {{0x1969,1},{0x178a,3}}, + {{0x550d,5},{0x2663,5}}, {{0x29c0,3},{0xec7,2}}, {{0x1bec,6},{0x4da9,7}}, {{0x127f,3},{0x3704,7}}, + {{0x11394,5},{0x11399,6}}, {{0x46af,3},{0x2d10a,3}}, {{0x168f,2},{0x3a48,5}}, {{0x1286c,5},{0xe22,2}}, + {{0x15e7,7},{0xf12,3}}, {{0x2e7bc,6},{0xc273,2}}, {{0x6c5c,8},{0x13e3,4}}, {{0x4199,5},{0x1014b,6}}, + {{0x24663,4},{0xedd,1}}, {{0x2afb,12},{0xf91,3}}, {{0x138e,2},{0x69f3,6}}, {{0x1f38,1},{0xcc1,1}}, + {{0xe2f,1},{0x1030e,5}}, {{0x9f,1},{0x164,2}}, {{0x3ff5,6},{0xcc3,3}}, {{0x111a7,5},{0xde1c,4}}, + {{0x111a,3},{0x8b9c,5}}, {{0x236c,4},{0xf193,4}}, {{0x1f9f9,7},{0xe22,2}}, {{0xf70,2},{0x127c,3}}, + {{0x479d,4},{0x316e,8}}, {{0x2de63,3},{0x140,2}}, {{0x2,1},{0x28f8,5}}, {{0x105f,3},{0x43fd,4}}, + {{0x4765,3},{0x2d4e2,3}}, {{0xc16,1},{0x1337,2}}, {{0x53ef,6},{0x8b3b,6}}, {{0x3083b,2},{0xddc,2}}, + {{0x217a9,6},{0x30f7,2}}, {{0x11a1e,6},{0x18b4,3}}, {{0x268c,3},{0xec6,3}}, {{0xf11,1},{0x78ed,2}}, + {{0x478f,3},{0x1debc,2}}, {{0x30841,4},{0x18ec8,2}}, {{0x4385,3},{0xcc3,2}}, {{0x4765,3},{0x1debd,2}}, + {{0xbbdd,6},{0x1025,2}}, {{0xe2f,1},{0x4e62,4}}, {{0xb74,1},{0x2e292,1}}, {{0xef7,3},{0x14ff,3}}, + {{0x116ac,5},{0xf02,2}}, {{0xc7ff,5},{0xf91,3}}, {{0x1927,4},{0x7955,4}}, {{0x113ec,5},{0x113f1,6}}, + {{0x6,2},{0x1b4b0,3}}, {{0x22b8,4},{0x1252,3}}, {{0x12ff6,7},{0xec6,3}}, {{0x4853,3},{0x1e2f0,2}}, + {{0xf65,4},{0xf8d,2}}, {{0x3ff5,6},{0x1cd3,2}}, {{0x168cc,6},{0xcc1,2}}, {{0x2984,5},{0x6176,4}}, + {{0x611,2},{0xf,1}}, {{0x1495a,6},{0x1a9a,4}}, {{0x4767,1},{0x22a3,2}}, {{0xb9fd,9},{0x1fc7,3}}, + {{0x20095,6},{0x1085,3}}, {{0x149b,4},{0x8b30,4}}, {{0x5770,8},{0x1b41,4}}, {{0xe7d,2},{0xfe6,2}}, + {{0x1be,2},{0x314,2}}, {{0x5b4c,7},{0x27db,5}}, {{0x1290,4},{0x10906,7}}, {{0x478f,3},{0x2eed,5}}, + {{0x2ca1,4},{0xeed,4}}, {{0x1050,3},{0x14ab,4}}, {{0xf65,3},{0x2271,3}}, {{0xe0a,1},{0xcd3,1}}, + {{0x1367,4},{0x122d,3}}, {{0x11515,4},{0x1050,3}}, {{0x4853,3},{0x71b8,6}}, {{0x1214,3},{0x9a9,2}}, + {{0x27e0,3},{0x102bf,8}}, {{0x1927,4},{0x7e11,4}}, {{0x1155,2},{0xc01d,4}}, {{0x15e9,3},{0x1fcf,5}}, + {{0xe5b,3},{0x1316c,6}}, {{0x29893,4},{0xe0f,1}}, {{0x17df4,2},{0x31dd,3}}, {{0x1e3a8,3},{0x10d3,3}}, + {{0x1647,5},{0xfdf,3}}, {{0x7108,5},{0x11d9,3}}, {{0x1c30,3},{0xfdd,6}}, {{0x24cc3,5},{0xf0d,2}}, + {{0xd46a,9},{0xe11,1}}, {{0xd6c7,7},{0x6ec3,4}}, {{0x60e2,7},{0x3155,6}}, {{0x6cde,4},{0x2f41,5}}, + {{0x2de63,4},{0x57,1}}, {{0xcb8,1},{0x16484,6}}, {{0x8481,7},{0x2271,3}}, {{0x8811,7},{0x8818,5}}, + {{0x2de57,3},{0x512,2}}, {{0xf24,2},{0x14ab,4}}, {{0xcc8,1},{0x1b04,3}}, {{0xc05d,4},{0x1aa01,4}}, + {{0x959d,4},{0x50d1,5}}, {{0x1967,4},{0xf1a,2}}, {{0x780c,3},{0xfc03,5}}, {{0x236c,4},{0x2d1f,6}}, + {{0x2f2c5,4},{0xf11,1}}, {{0xadfd,7},{0x3063,5}}, {{0xe5b,3},{0x14edf,4}}, {{0x46af,3},{0x22a87,4}}, + {{0xc159,4},{0xe2b,2}}, {{0x2777,5},{0x137f4,4}}, {{0x12d4,3},{0x2d8d,3}}, {{0x45ee,3},{0x1b04,3}}, + {{0x1747,4},{0x24f6,11}}, {{0x4765,6},{0x395d,8}}, {{0xbc79,7},{0xc29d,3}}, {{0x8f0d,7},{0x2ee9,3}}, + {{0x479,2},{0x21,1}}, {{0x113c,3},{0xe65,2}}, {{0x1ed7e,5},{0xf35,2}}, {{0x43f3,10},{0xf86,3}}, + {{0x4519,4},{0x1a05e,5}}, {{0x18f7,4},{0x6008,3}}, {{0xe22,2},{0x1004,3}}, {{0xe21,1},{0xc992,4}}, + {{0x3353,7},{0x2f32,7}}, {{0x2975,12},{0xed9,2}}, {{0x2cda1,4},{0xe7a,1}}, {{0x478f,3},{0x18774,2}}, + {{0x10eda,5},{0x1221,3}}, {{0x3,1},{0xf7a,2}}, {{0x9f,1},{0x1e2,2}}, {{0x884d,7},{0x34d7,4}}, + {{0x12e3e,6},{0x178e,4}}, {{0x2de51,3},{0x302,2}}, {{0x591d,5},{0xf35,3}}, {{0x417d,10},{0x4187,3}}, + {{0x169bc,8},{0xe67,2}}, {{0x15760,4},{0xe86,2}}, {{0x118f5,8},{0xe77,3}}, {{0x19b7,3},{0x41e9,4}}, + {{0x1377,5},{0x7b70,5}}, {{0xb4fb,7},{0xcc9,2}}, {{0x12a1,11},{0x18d2,5}}, {{0xe87,2},{0xc342,3}}, + {{0x14914,5},{0x14919,5}}, {{0xaf2,3},{0xab1,1}}, {{0x12db5,4},{0xec6,3}}, {{0xe67,2},{0xec3,3}}, + {{0x1e79f,5},{0x18a94,4}}, {{0x2f028,4},{0xe7a,1}}, {{0x1e80,6},{0xcc3,2}}, {{0x1a07,9},{0xe67,7}}, + {{0xe21,1},{0xf11,1}}, {{0x31438,2},{0x30a4e,1}}, {{0x4ac,2},{0x21,1}}, {{0x19f7,4},{0x1d7d,3}}, + {{0xe83,4},{0x910c,4}}, {{0x27e0,4},{0xec3,3}}, {{0x725a,10},{0x18b4,3}}, {{0x46bd,3},{0xcc6,2}}, + {{0x8d,1},{0x11c,2}}, {{0xbc79,7},{0x4920,5}}, {{0x253cb,6},{0xcc4,2}}, {{0x1b0f,3},{0x1258,5}}, + {{0x789f,6},{0xe55,6}}, {{0x1f36,6},{0xe11,1}}, {{0x17a30,5},{0x7207,5}}, {{0x2fe2f,4},{0x21,1}}, + {{0x6cde,4},{0xe09,1}}, {{0xcc8,1},{0x141a,2}}, {{0x1a07,3},{0x2bae,2}}, {{0x20f6,13},{0xed9,2}}, + {{0x16f7,9},{0x1720,7}}, {{0x28fbe,4},{0x1db45,2}}, {{0x1885e,6},{0xe5e,2}}, {{0xf16,2},{0x1cd3,2}}, + {{0xc6ec,4},{0xccb,2}}, {{0x2858,4},{0x2146,8}}, {{0x77af,6},{0x77b5,7}}, {{0x205a1,2},{0xaf4,1}}, + {{0x205a9,1},{0x2e28b,2}}, {{0x2a56,4},{0xe11,1}}, {{0x1fb8e,5},{0x8,1}}, {{0x1969,1},{0xf86,2}}, + {{0x2489,5},{0x29f3,3}}, {{0x12e5,3},{0x4bf9,4}}, {{0x1e71,6},{0x7bd9,4}}, {{0x7344,7},{0xe69,6}}, + {{0x3383,3},{0x58d8,4}}, {{0xa,2},{0x41e9,4}}, {{0xe08,1},{0x1399f,3}}, {{0x1a19,3},{0x2446,7}}, + {{0x442d,1},{0x1969,1}}, {{0x13960,5},{0xed6,2}}, {{0x26b4,7},{0x423c,5}}, {{0x5,1},{0x1d40,2}}, + {{0xe99,1},{0x2c85,2}}, {{0x3655,11},{0xe11,1}}, {{0x7795,5},{0x1656b,5}}, {{0x4979,4},{0x498a,9}}, + {{0x11b5,3},{0x101f,3}}, {{0x1467,4},{0xcd2b,7}}, {{0x111a,3},{0x7a8a,5}}, {{0x15706,6},{0x13693,4}}, + {{0xf9b,5},{0xa84c,4}}, {{0x1977,3},{0x2ca1e,2}}, {{0x7b,1},{0x688,2}}, {{0xa041,5},{0xa9ef,5}}, + {{0x7156,4},{0x5342,3}}, {{0xeb7,4},{0xf35,2}}, {{0x8d,1},{0x9e,2}}, {{0x1fbb,12},{0x1fc7,3}}, + {{0x2de63,3},{0x164,2}}, {{0x7414,3},{0x2ba5,1}}, {{0x4765,3},{0x20543,2}}, {{0x1567,6},{0xddad,5}}, + {{0xe97,3},{0x3537,2}}, {{0xe97,3},{0xe60,2}}, {{0x1537,4},{0x11729,3}}, {{0x3a29,4},{0x82d5,8}}, + {{0x1007,5},{0xb,1}}, {{0xbb4,4},{0x2e84a,2}}, {{0x1847,5},{0xb05c,5}}, {{0xe1f,3},{0x23e99,2}}, + {{0x20380,4},{0xf0c,1}}, {{0xe5b,3},{0x2e335,2}}, {{0x450b,4},{0x16ad,3}}, {{0x4539,2},{0xf24,2}}, + {{0xf79,3},{0x2c75,6}}, {{0x17178,6},{0x1717e,4}}, {{0x1240,2},{0x142d,3}}, {{0x15300,7},{0xf12,3}}, + {{0x10be3,6},{0x10be9,5}}, {{0x2533b,5},{0xe6b,2}}, {{0x1025,1},{0xcbd,1}}, {{0x2280,2},{0xccaa,4}}, + {{0x488b,4},{0x1d64e,5}}, {{0xed6,2},{0x1b0a6,4}}, {{0x18a70,6},{0x18a76,4}}, {{0x809a,3},{0xeab,2}}, + {{0x19b9,1},{0x28478,4}}, {{0xff41,8},{0xec6,3}}, {{0x1997,4},{0x10b9,7}}, {{0x116ee,5},{0x116f3,6}}, + {{0x2de51,3},{0x5bc,2}}, {{0xe5b,6},{0x13fe,9}}, {{0x9a4,3},{0x5,2}}, {{0x8481,8},{0xfa9,4}}, + {{0xe11,2},{0x1cd2,3}}, {{0x1a29,2},{0x6fad,7}}, {{0x284,2},{0xf,1}}, {{0x354b,7},{0x1722,5}}, + {{0x2858,4},{0x1d540,5}}, {{0x1927,4},{0x9a4,3}}, {{0x17661,2},{0x2de2b,2}}, {{0x11b5,2},{0x10a5,2}}, + {{0x11186,2},{0x78ed,2}}, {{0x119d1,6},{0x2917,4}}, {{0x7989,6},{0xc36c,5}}, {{0x1092,7},{0x1099,10}}, + {{0x236c,4},{0x809a,3}}, {{0x2036e,5},{0x20373,4}}, {{0x15f7,11},{0xf84,5}}, {{0x10007,6},{0xeca,3}}, + {{0x30f03,4},{0xd7c,2}}, {{0x10c5,4},{0x49a6,3}}, {{0xe1f,3},{0x2d8d,3}}, {{0x11a36,6},{0xe67,2}}, + {{0x1603e,7},{0xec6,3}}, {{0x1137e,5},{0xead,3}}, {{0xe88,3},{0x89ea,7}}, {{0x5579,5},{0xe89,2}}, + {{0x13654,7},{0x1f46,3}}, {{0x18f9,5},{0x1245,6}}, {{0xebe,4},{0x1d74,5}}, {{0x11767,5},{0xf32,2}}, + {{0x9b99,3},{0xf91,3}}, {{0xe71,2},{0xcd3,1}}, {{0x10cbf,8},{0x15e9,3}}, {{0x155e,3},{0x185d,2}}, + {{0xe32,1},{0x2d1f,6}}, {{0xf77,3},{0xcc1,1}}, {{0x1c142,7},{0xcc9,2}}, {{0xf0a,3},{0x2675d,2}}, + {{0xe2b,2},{0xeee,3}}, {{0x13ea6,7},{0x14a2,3}}, {{0xdf5f,6},{0x251a,5}}, {{0x2858,8},{0x240b,5}}, + {{0x2939,4},{0x8f9f,8}}, {{0x135e6,6},{0x964d,4}}, {{0x450b,4},{0xcf0f,7}}, {{0x6cee,4},{0xec6,3}}, + {{0xfdf,3},{0xe6b,3}}, {{0x12f8,2},{0x9fb7,6}}, {{0xbb7d,5},{0xbb82,7}}, {{0x4853,3},{0x11cb,3}}, + {{0x7858,6},{0x1085,3}}, {{0x1f011,3},{0xf86,2}}, {{0xabfe,4},{0x1025,1}}, {{0x11fa9,8},{0xe7f,2}}, + {{0x2fe4d,4},{0x8d,1}}, {{0x69,1},{0xf8,2}}, {{0x2015,3},{0x109b,2}}, {{0x8,2},{0x1382,5}}, + {{0x18f9,2},{0x7d41,5}}, {{0x4765,3},{0x74f6,2}}, {{0x7131,4},{0x1279,6}}, {{0x7a9d,9},{0xf23,3}}, + {{0x4383,5},{0xda1b,6}}, {{0xe32,1},{0xfcb,2}}, {{0x93a5,7},{0x2f26,5}}, {{0xe1f,3},{0x1569,3}}, + {{0xb985,5},{0xf86,2}}, {{0xbffd,6},{0x1150,2}}, {{0x26103,5},{0x18771,3}}, {{0xefa,2},{0x4f79,3}}, + {{0x1c0a,6},{0xde07,3}}, {{0xee9,2},{0x13e4,3}}, {{0xe5b,3},{0xffc,3}}, {{0x6b0a,10},{0x1004,3}}, + {{0x41a7,5},{0x43fd,4}}, {{0xe0a,1},{0x9,1}}, {{0xbebb,4},{0x1b4f,5}}, {{0x2d977,5},{0x7416,1}}, + {{0x11dfe,2},{0x19a9,2}}, {{0x4bd,2},{0xd,1}}, {{0x2e7be,4},{0xe41,2}}, {{0x7935,5},{0xc2d1,6}}, + {{0x7a49,5},{0x1177,7}}, {{0x14a4,2},{0x59b4,3}}, {{0x2f9b,4},{0xb496,3}}, {{0x47c7,12},{0xed9,2}}, + {{0x369,2},{0xe,1}}, {{0xe5b,3},{0x1062,2}}, {{0x7416,1},{0xf0f,2}}, {{0xcbd,1},{0x4789,5}}, + {{0x602c,5},{0x15521,5}}, {{0x1927,4},{0xe2b,2}}, {{0x1199a,4},{0x1199e,7}}, {{0x1929,8},{0xfdf,4}}, + {{0xb3f1,5},{0x1011c,4}}, {{0x5f22,3},{0xe11,1}}, {{0xf1d,1},{0xe11,1}}, {{0x2bd5,4},{0x4b63,4}}, + {{0x1c9a0,6},{0x3694,3}}, {{0x4,1},{0xe89,3}}, {{0x4921,4},{0x5,1}}, {{0x44ab,5},{0x1392,5}}, + {{0x1e9e,5},{0x1cf2,7}}, {{0x1577,4},{0xf150,5}}, {{0x13424,7},{0x10b7,2}}, {{0x2de63,3},{0x325,2}}, + {{0x3,1},{0x1b41,4}}, {{0x12f8,4},{0xac2f,6}}, {{0x1d93e,6},{0x1004,3}}, {{0xe1f,3},{0x11ca,2}}, + {{0x3038f,4},{0x3038f,4}}, {{0xe2f,1},{0x1a66,1}}, {{0x1070,13},{0xed9,2}}, {{0x2b4cc,3},{0x442d,1}}, + {{0x6fff,2},{0xe0b,2}}, {{0x19e9,3},{0x40a2,7}}, {{0xecb1,6},{0xecb7,5}}, {{0x17df0,5},{0x16ccd,4}}, + {{0x145b,2},{0x3ae6,7}}, {{0x1b9d,4},{0x66c2,3}}, {{0x4326,2},{0xe09,1}}, {{0x12f8,2},{0xe22,2}}, + {{0x7115,4},{0x11a6,2}}, {{0x14856,6},{0x1485c,4}}, {{0x22d6,10},{0xfdf,4}}, {{0xed6,2},{0x14a2,3}}, + {{0x1a66,1},{0x155b,3}}, {{0x4199,5},{0x395d,4}}, {{0xb99d,7},{0xfdf,4}}, {{0xf69,3},{0x1b69,4}}, + {{0x4f1c,5},{0x1e2f,3}}, {{0x10e7,5},{0x17dd9,3}}, {{0x7a37,2},{0xf7a,2}}, {{0xaeb1,5},{0x16e3,4}}, + {{0x4781,3},{0x1b01,4}}, {{0x1807,10},{0xe69,6}}, {{0xf65,4},{0x18d9,7}}, {{0x7974,4},{0xf86,2}}, + {{0xc93e,6},{0x794f,4}}, {{0x10b8,2},{0x943a,4}}, {{0xdb1e,5},{0xec6,3}}, {{0x58a8,5},{0x1ac7,3}}, + {{0xe83,3},{0x1ee0,3}}, {{0xcd2,2},{0x15fc,2}}, {{0x5951,6},{0x101d,3}}, {{0x1997f,6},{0xed6,2}}, + {{0xb8d1,4},{0xe6c,3}}, {{0x1a19,3},{0xe11,1}}, {{0x45eb,4},{0xf20,2}}, {{0x1e9e,5},{0xe78,1}}, + {{0x1189d,4},{0x15340,3}}, {{0x8,1},{0x7a36,3}}, {{0x12d4,3},{0xeca,3}}, {{0x11b5,2},{0x1663,3}}, + {{0x16bec,6},{0x141f,4}}, {{0xe09,1},{0xcd3,2}}, {{0x9a4,3},{0xeca,3}}, {{0x205a9,1},{0xcd6,1}}, + {{0x4853,3},{0x168cf,6}}, {{0x2af9a,4},{0x1766a,2}}, {{0x5342,3},{0x2477,3}}, {{0x2491b,6},{0xe89,2}}, + {{0x8ce2,3},{0x10a6,2}}, {{0x14702,6},{0x2f2e,3}}, {{0x70ad,3},{0x49a6,3}}, {{0x18f95,2},{0x1e2ed,2}}, + {{0x2010c,7},{0xe11,1}}, {{0x21361,6},{0xcc9,2}}, {{0x14f9,3},{0x8,1}}, {{0xfd9,3},{0xe86,2}}, + {{0xcda0,4},{0xf16,2}}, {{0x2afdc,6},{0x2afe2,6}}, {{0xe37,4},{0x2e2b1,2}}, {{0x1687,8},{0xec6,3}}, + {{0x136ae,7},{0x156a,3}}, {{0xed8d,8},{0x14a2,3}}, {{0x4781,3},{0x21255,4}}, {{0x478f,3},{0x7955,4}}, + {{0x2a49,2},{0xa045,8}}, {{0x9321,9},{0x296f,3}}, {{0x11b5,2},{0xf16,2}}, {{0x1937,5},{0xcbd,1}}, + {{0x1967,3},{0x3075,3}}, {{0x18c14,5},{0x29f3,3}}, {{0xba39,4},{0x3643,3}}, {{0x2a47,3},{0x2a5d6,4}}, + {{0x19b7,6},{0x8b30,4}}, {{0x15a7,9},{0xe67,7}}, {{0x162e6,6},{0x1ac7,3}}, {{0x2de63,3},{0x1be,2}}, + {{0xe11,2},{0xe32,1}}, {{0xedd,1},{0x1302,3}}, {{0xe08,1},{0x40d8,3}}, {{0xed1,4},{0x14de,3}}, + {{0x81c9,6},{0xa0cc,5}}, {{0x2ba5,1},{0x29889,3}}, {{0x1b74f,7},{0xf35,2}}, {{0x1f7b0,4},{0x17acb,2}}, + {{0x39b9,4},{0xcc8,1}}, {{0x18f9,2},{0x1bb4,9}}, {{0x1817,7},{0xe0a,1}}, {{0x17f5a,4},{0xe0a,1}}, + {{0x1967,3},{0x254b7,3}}, {{0x1a56,2},{0xe11,1}}, {{0x1081,7},{0x4b2d,6}}, {{0x1fbb,5},{0x34d7,4}}, + {{0x14e6e,5},{0xe0b,2}}, {{0x41ed,4},{0x296f,3}}, {{0x1da60,5},{0xfb0,2}}, {{0xed1,4},{0x2307,11}}, + {{0xe97,3},{0x1d75,3}}, {{0xe97,3},{0x2412e,5}}, {{0x200f8,5},{0x18351,3}}, {{0xed6,2},{0xf35,3}}, + {{0x1a27,4},{0xa,2}}, {{0x28e1,3},{0x3075,3}}, {{0x33c3,9},{0x1279,5}}, {{0x4853,3},{0x2ad72,4}}, + {{0x1db34,2},{0x1a66,1}}, {{0xe0f,1},{0xccb,2}}, {{0x12e5,5},{0x1b7f,3}}, {{0x12f8,2},{0x1153,3}}, + {{0x1367,6},{0x79a7,6}}, {{0x4765,3},{0x1849,3}}, {{0x19b9,1},{0x7416,1}}, {{0xe83,5},{0x983f,6}}, + {{0xa5ed,8},{0xcc9,2}}, {{0x1ebc,6},{0x2ee9,3}}, {{0x3bdb,6},{0xf4cb,5}}, {{0x2a47,4},{0x7d80,5}}, + {{0x769e,8},{0x964d,4}}, {{0x1757,8},{0x141f,8}}, {{0x58d2,4},{0x8951,4}}, {{0x2d1f,3},{0x6,1}}, + {{0x59c6,5},{0x9302,6}}, {{0x9f75,8},{0xcc9,2}}, {{0x11822,6},{0x1c215,2}}, {{0x4767,1},{0x1e3d,3}}, + {{0x7b,1},{0x11c,2}}, {{0xee8a,6},{0x80c8,5}}, {{0x4695,3},{0x6,1}}, {{0x2e766,3},{0x5ab,2}}, + {{0x523,2},{0xf,1}}, {{0x30357,1},{0x20579,1}}, {{0xcb8,1},{0x2ee9,3}}, {{0x9f,1},{0x140,2}}, + {{0x19b7,5},{0x644e,7}}, {{0xc442,8},{0xebb,3}}, {{0x73ed,5},{0xe6b,4}}, {{0x478f,7},{0xf86,2}}, + {{0xcd3,3},{0xeee,3}}, {{0x1cdc,6},{0xabc4,5}}, {{0x1e331,5},{0xed5,3}}, {{0x1113,2},{0xf1d,1}}, + {{0x1f34,11},{0xe0b,4}}, {{0x2e816,4},{0x18ee2,2}}, {{0xcb8,1},{0x2e29,3}}, {{0x248b3,5},{0x1062,2}}, + {{0xe71,1},{0x142d,3}}, {{0x184d,5},{0xe69,5}}, {{0x7088,3},{0xa797,5}}, {{0x788c,8},{0xcc9,2}}, + {{0x2de87,4},{0x314,2}}, {{0x16808,3},{0x3075,3}}, {{0xcffd,8},{0xe95,2}}, {{0x1f97b,5},{0x1f980,4}}, + {{0x8c91,6},{0xf62,3}}, {{0x121f2,3},{0x13041,4}}, {{0xecb,2},{0xf1a,3}}, {{0x7b,1},{0x10a,2}}, + {{0x17f7,8},{0x407b,6}}, {{0x4383,5},{0xcc3,2}}, {{0x739f,5},{0x163b,4}}, {{0x4767,1},{0x123e,3}}, + {{0x4ef5,4},{0x19d3d,5}}, {{0x1805c,4},{0x2cf67,2}}, {{0x1977,3},{0x1829,3}}, {{0xcbf,2},{0xeca,3}}, + {{0x534,2},{0xd,1}}, {{0x9405,5},{0x94b2,4}}, {{0x16ffc,6},{0x17002,4}}, {{0x75b4,4},{0xfda,5}}, + {{0xe09,1},{0x11d9,3}}, {{0x105f,3},{0x1024,2}}, {{0x1b38,13},{0xe95,2}}, {{0x24653,4},{0x19b9,1}}, + {{0xf0a,3},{0x181b,3}}, {{0xee7f,8},{0xec6,3}}, {{0x1821e,5},{0xe67,2}}, {{0x75db,5},{0x11d9,3}}, + {{0xc159,4},{0x1d74a,5}}, {{0x15e7,5},{0x1040,3}}, {{0xe83,5},{0x6811,5}}, {{0x73ed,4},{0xcd3,1}}, + {{0x168f,2},{0xec6,3}}, {{0x57,1},{0x677,2}}, {{0x97d1,7},{0x6411,4}}, {{0x225e,6},{0x2264,9}}, + {{0xee4,4},{0xf277,7}}, {{0xd18,12},{0xd18,6}}, {{0x14f7,5},{0x1288,4}}, {{0xe21,1},{0x4767,1}}, + {{0x1a693,6},{0x12a9,3}}, {{0xe83,3},{0x1790,6}}, {{0xcbd,1},{0xe6b,2}}, {{0xe97,3},{0x2d65d,2}}, + {{0x2c8f5,4},{0x2675d,2}}, {{0xf4f,1},{0x82b3,6}}, {{0x6012,6},{0xef3,4}}, {{0x19b7,3},{0x1569,3}}, + {{0x3641,3},{0x2b2c1,3}}, {{0x45,1},{0x8c,2}}, {{0xef7,4},{0x61a1,4}}, {{0xe1f,3},{0x120c,3}}, + {{0x3032f,3},{0x28b3a,1}}, {{0x2ba5,1},{0x113f,2}}, {{0x8d,1},{0x10a,2}}, {{0xf0a,3},{0x48d8,2}}, + {{0xb805,8},{0xa,2}}, {{0x7559,6},{0x142d,3}}, {{0x77bc,4},{0x8441,4}}, {{0xc05d,4},{0x2acb6,3}}, + {{0x46bd,3},{0x14985,7}}, {{0x2de93,4},{0x164,2}}, {{0xccd,1},{0x21b2c,5}}, {{0x9279,6},{0x3a02,4}}, + {{0x1687,4},{0xe92,3}}, {{0x46af,3},{0x125fb,5}}, {{0x158e,2},{0x6,1}}, {{0xf0c,1},{0x1b6d,4}}, + {{0xe71,1},{0xcbac,5}}, {{0x26b2a,5},{0xe5e,2}}, {{0xcd3,2},{0xe92,5}}, {{0xe0c,2},{0xcba,2}}, + {{0x18dec,3},{0x73d6,2}}, {{0xf65,4},{0xc5d2,7}}, {{0x27e0,3},{0x10230,8}}, {{0x479d,5},{0x9a4,3}}, + {{0xb,1},{0x5,1}}, {{0xf38,2},{0xc8f7,4}}, {{0x168a,3},{0xeab,2}}, {{0x1787,6},{0xa80f,6}}, + {{0x101f,2},{0xe7f,2}}, {{0x16d7,6},{0xa23f,6}}, {{0x5de,2},{0xd,1}}, {{0xb115,6},{0x3bc5,6}}, + {{0xe19,1},{0x1f875,1}}, {{0x11a6,2},{0x219f4,4}}, {{0x69,1},{0xc2,2}}, {{0x24bcb,4},{0x1f03f,2}}, + {{0xf77,5},{0x143a,3}}, {{0x2939,4},{0x8f2c,5}}, {{0x5ef,2},{0xf,1}}, {{0x2bf1,5},{0x2429,6}}, + {{0xbccf,2},{0x11d2,3}}, {{0x38e7,5},{0x14d33,5}}, {{0x1704c,5},{0x1064,3}}, {{0x70ad,4},{0x2,1}}, + {{0x2f8d5,4},{0xe11,1}}, {{0x9f,1},{0x55,2}}, {{0x7971,7},{0x7978,5}}, {{0x12a1,4},{0x6fee,9}}, + {{0xeee,3},{0x1be9,3}}, {{0x27f1,5},{0xe2b,2}}, {{0x729d,7},{0xe11,1}}, {{0x1967,3},{0x18f95,2}}, + {{0x2cf63,4},{0xf11,1}}, {{0x46bd,3},{0x5bb6,3}}, {{0x46bd,3},{0x1eff7,6}}, {{0x2de63,3},{0x6bb,2}}, + {{0x1997,4},{0x3c9a,5}}, {{0x1967,3},{0x5539,3}}, {{0x118b5,3},{0xeca,3}}, {{0xe5b,4},{0x3,1}}, + {{0xe5f2,7},{0x5342,4}}, {{0x1b986,6},{0x1004,3}}, {{0xf4d0,7},{0x3075,4}}, {{0x1a07,3},{0x1693,2}}, + {{0xe97,3},{0x9a4,3}}, {{0x11137,7},{0x1859,4}}, {{0xadf1,5},{0x2091,4}}, {{0xe97,6},{0xe61,14}}, + {{0xe2b,2},{0x2707,7}}, {{0xf16,2},{0xe91,2}}, {{0xf77,3},{0xe71,1}}, {{0xf0a,3},{0x2c8f2,3}}, + {{0x125d,6},{0x89d3,6}}, {{0x12d4,3},{0x7ba0,3}}, {{0x1150a,6},{0x1ef6a,3}}, {{0x3441,9},{0x344a,5}}, + {{0x206f,9},{0xfdd,6}}, {{0x1024e,7},{0x2269,4}}, {{0x4f55,4},{0x2f2e,3}}, {{0x3739,2},{0x8,1}}, + {{0xc702,5},{0xcce,2}}, {{0xccd,1},{0x158f,3}}, {{0x7131,4},{0x10bb,5}}, {{0x308f7,3},{0xc16,1}}, + {{0x1e31f,5},{0x15af1,4}}, {{0x17f94,8},{0xe95,2}}, {{0x1dc0,3},{0xfa6,3}}, {{0x178e,3},{0xf1d,1}}, + {{0x28b3a,1},{0x1357,1}}, {{0x5c91,8},{0xe69,5}}, {{0x9cbd,7},{0x1ce6,5}}, {{0x12c3,4},{0x136ee,6}}, + {{0xbba1,4},{0x142d,3}}, {{0xe88,3},{0x4799,4}}, {{0x2ba5,1},{0x2bad,3}}, {{0x2bf1,5},{0xe69,6}}, + {{0x2370b,6},{0xcc9,2}}, {{0x28fda,4},{0x28fde,3}}, {{0x4765,3},{0xf11,1}}, {{0x5fbc,5},{0x1783,4}}, + {{0xe5b,3},{0x9a8,1}}, {{0x1487,4},{0xf1a,2}}, {{0xea79,5},{0xfe5,2}}, {{0x22b8,4},{0x2781,5}}, + {{0x1927,4},{0x4cc2,3}}, {{0x46bd,3},{0xbfca,3}}, {{0x1fa2f,5},{0x10203,3}}, {{0xa6e9,7},{0x1dc7,5}}, + {{0xbb4f,3},{0x1e8b,3}}, {{0x2f47,7},{0xe2b,4}}, {{0x2bd67,5},{0x9,1}}, {{0x101f,2},{0xe6b,2}}, + {{0x3cf,2},{0x8d,1}}, {{0x4d62,8},{0x10dc,2}}, {{0x10243,7},{0xb7ad,4}}, {{0xe75,2},{0x1040,3}}, + {{0x10193,8},{0xf62,3}}, {{0x1a71a,6},{0xec6,3}}, {{0x16a7,3},{0xa076,5}}, {{0x1d69b,5},{0x12a9,3}}, + {{0x18f9,5},{0x1224,6}}, {{0x7518,5},{0x15139,5}}, {{0xe09,1},{0xf32,2}}, {{0x1f285,6},{0x1fc7,3}}, + {{0x5ef,2},{0x21,1}}, {{0x205a9,1},{0x20579,1}}, {{0x4993,11},{0xe95,2}}, {{0x29e3,4},{0x1702,4}}, + {{0xeaa,2},{0x2ca1,4}}, {{0x19844,6},{0x1b80,3}}, {{0x41ed,4},{0xae19,8}}, {{0x12e5,3},{0x2db2a,3}}, + {{0xed1,3},{0x22cc6,5}}, {{0xadb5,7},{0xadbc,5}}, {{0x6,1},{0x274fd,4}}, {{0x7416,1},{0x8,1}}, + {{0x1131d,3},{0x17d4b,5}}, {{0xe1f,3},{0x15284,4}}, {{0x11f51,6},{0x1279,5}}, {{0x3537,2},{0xf91,3}}, + {{0x1f7f,5},{0x94b2,4}}, {{0x1b86f,4},{0x4e45,3}}, {{0x1f600,6},{0x6d42,3}}, {{0x442d,1},{0xedd,1}}, + {{0x12d8a,7},{0xf23,3}}, {{0x8c79,7},{0x1392,5}}, {{0x1e9e,5},{0xcbd,1}}, {{0x450b,4},{0x1a71,3}}, + {{0xb69d,4},{0x1ebf,3}}, {{0x2a47,3},{0x2cf67,2}}, {{0xeeab,8},{0x15e9,3}}, {{0x23e99,2},{0x4461,2}}, + {{0x10bee,5},{0xfdd,4}}, {{0x3e11,2},{0x3,1}}, {{0xe282,5},{0x23d2,3}}, {{0xf1b8,4},{0x5261,4}}, + {{0x4af9,5},{0x6c88,5}}, {{0x19643,6},{0x12a9,3}}, {{0x2de75,3},{0x358,2}}, {{0xcce,2},{0x1fd05,3}}, + {{0x70af,2},{0x121c,3}}, {{0x33d1,4},{0x27894,3}}, {{0x10bac,5},{0x1710f,5}}, {{0x2b50f,2},{0xc27f,2}}, + {{0xe0d,2},{0x37c8,5}}, {{0x1109,5},{0xfa0,3}}, {{0x169d,3},{0xeaf,3}}, {{0xf0c,1},{0xe5e,2}}, + {{0x2cc,2},{0xf,1}}, {{0x3d55,5},{0xd885,5}}, {{0xbb89,4},{0x7998,4}}, {{0x25d5e,2},{0xe99,1}}, + {{0x1747,4},{0x3921,5}}, {{0x18bc4,7},{0x43fb,3}}, {{0x205a1,1},{0x2e27d,2}}, {{0xed1,4},{0x53c0,5}}, + {{0x27e0,3},{0x9bd1,3}}, {{0x2de4b,3},{0x44,2}}, {{0x4459,3},{0x1eea1,2}}, {{0xcd3,3},{0xe5e,2}}, + {{0x2ba5,1},{0x29000,2}}, {{0x1e9e,4},{0x13146,4}}, {{0x425d,5},{0x4169,4}}, {{0x1005,2},{0x569b,5}}, + {{0x1caf,5},{0x2917,4}}, {{0x15396,5},{0xe69,5}}, {{0x4161,5},{0x16561,5}}, {{0x2075,3},{0x1252,3}}, + {{0x12e5,3},{0x1cdf8,6}}, {{0x11e75,8},{0x11e7d,3}}, {{0xf11,1},{0xb9f4,3}}, {{0xbd9b,3},{0xe31,2}}, + {{0x1b2b4,6},{0x1469,3}}, {{0x1d773,8},{0xe11,1}}, {{0xeed,2},{0x584a,3}}, {{0xcbd,1},{0x1269,5}}, + {{0x1f38,1},{0xa,2}}, {{0x9a8,1},{0x7e55,4}}, {{0x12682,8},{0xa,2}}, {{0x173d0,5},{0xf0f,2}}, + {{0x45a5,6},{0x8bb3,6}}, {{0x449d,3},{0xed6,2}}, {{0xe08,1},{0xe2f,1}}, {{0xd131,4},{0x41cc,5}}, + {{0x22d93,5},{0x1baa,3}}, {{0xbb7d,5},{0x52d7,4}}, {{0x1113,3},{0xf9fd,5}}, {{0x24d73,5},{0x153a,3}}, + {{0x19e7,6},{0x11c60,5}}, {{0xb396,2},{0xcc9,2}}, {{0x12a5,2},{0x15ec,3}}, {{0x260f3,6},{0x4457,2}}, + {{0xe32,1},{0xe0a,2}}, {{0x9369,5},{0xef5,2}}, {{0x1859,4},{0x10f4,4}}, {{0x30cf,5},{0x146d,9}}, + {{0x15a7,8},{0x583b,5}}, {{0x115e,7},{0x5717,4}}, {{0x1052f,5},{0xffc,3}}, {{0xcb8,1},{0x2dd7,4}}, + {{0x156a,3},{0xec5,4}}, {{0x175ce,7},{0xe6b,3}}, {{0x5538,2},{0x2,1}}, {{0xb7c9,7},{0xb7d0,5}}, + {{0x29cf,3},{0x1debc,2}}, {{0xb,1},{0xe2b,2}}, {{0x2d8f0,3},{0xccc,2}}, {{0x1537,4},{0x88a5,8}}, + {{0xcdcc,8},{0x82bc,3}}, {{0x6bda,6},{0x6bed,7}}, {{0x10a3,5},{0x12a01,5}}, {{0x1467,4},{0xe92,3}}, + {{0xe31,2},{0xb19c,4}}, {{0x57be,5},{0x1720,7}}, {{0x11352,5},{0x44b3,3}}, {{0x45a7,3},{0x3640,4}}, + {{0x7e39,6},{0xcc8,1}}, {{0x39d5,7},{0x1177,7}}, {{0x10ff8,5},{0x1fd05,3}}, {{0x13dd,4},{0x1a9a,4}}, + {{0x268c,3},{0xe0b,4}}, {{0xcb7,2},{0xf1a,2}}, {{0xe33,1},{0x1e2f5,3}}, {{0x7bbd,7},{0x1392,5}}, + {{0x71cb,7},{0xe69,6}}, {{0x10afe,3},{0x10b01,6}}, {{0x137b,3},{0xe78,1}}, {{0x9e55,5},{0xec6,3}}, + {{0xc0a1,2},{0xb,1}}, {{0x478f,3},{0xe2f,1}}, {{0x27e0,4},{0xefb,3}}, {{0x115e,7},{0x364e,7}}, + {{0x1817,4},{0xe2b,4}}, {{0x187be,7},{0x1fc7,3}}, {{0x12f6,4},{0xe67,2}}, {{0x10d9,2},{0x6,1}}, + {{0x19b7,5},{0x11a6,3}}, {{0x1a07,3},{0x1693,3}}, {{0xa84c,4},{0xf86,3}}, {{0x9a6,1},{0x142a,3}}, + {{0x2a3a,8},{0xcc9,2}}, {{0x39d5,5},{0x35ce,4}}, {{0x2a47,3},{0x1ae7f,3}}, {{0x2f65b,4},{0xb,1}}, + {{0xccd,1},{0x4bd6,6}}, {{0xe0e0,5},{0x13e3,4}}, {{0x6463,10},{0xe78,2}}, {{0x2d51b,4},{0x2ba5,1}}, + {{0x2de57,3},{0x152,2}}, {{0x319c5,2},{0x2e2b1,2}}, {{0xcc1,1},{0x1c832,5}}, {{0xcc6c,5},{0x6ca7,3}}, + {{0x3559,4},{0x2560,4}}, {{0x19b9,4},{0x1cf3,3}}, {{0xab1,1},{0x28b3a,1}}, {{0x19b9,1},{0x2,2}}, + {{0x23e93,6},{0x23e99,2}}, {{0xe16,1},{0x254b1,2}}, {{0x1081,7},{0x101f,3}}, {{0xb9e5,5},{0x120c,3}}, + {{0x7414,3},{0x29df4,4}}, {{0x12e5,3},{0xfe7,2}}, {{0x7b,1},{0x699,2}}, {{0x2f71,4},{0x82d5,8}}, + {{0x1d572,7},{0xe67,2}}, {{0x2a29,5},{0x2ee9,3}}, {{0x201d9,7},{0x8,1}}, {{0xb69d,4},{0xe2b,2}}, + {{0x7414,3},{0xfa5,2}}, {{0x2e193,4},{0x38b,2}}, {{0xf15,1},{0x320c,4}}, {{0x45,1},{0x10a,2}}, + {{0x17abc,6},{0xec5,4}}, {{0x19b9,3},{0xe0b,4}}, {{0x57,1},{0x1f4,2}}, {{0xb12d,6},{0x2468,3}}, + {{0x129d4,6},{0x5342,3}}, {{0x314d,6},{0x23d2,3}}, {{0xe83,3},{0x8459,4}}, {{0x1dd6d,8},{0xe11,1}}, + {{0x4773,4},{0x2ba7,4}}, {{0x2a937,6},{0xe11,1}}, {{0x780c,3},{0xafee,6}}, {{0xf9b,5},{0x11db,3}}, + {{0xe83,3},{0x1d06,3}}, {{0x15f58,6},{0x15f5e,4}}, {{0x17524,6},{0x17534,4}}, {{0x2a29,7},{0x1165,4}}, + {{0x2de63,4},{0x3be,2}}, {{0xed9,2},{0x431e,3}}, {{0x12df2,3},{0x6,1}}, {{0x1497,7},{0x101f,2}}, + {{0xfd6,3},{0x7096,4}}, {{0xf0c,1},{0x1eea1,2}}, {{0xd4d8,6},{0x5863,3}}, {{0xf04,2},{0xed6,2}}, + {{0xcc9,2},{0x2477,3}}, {{0xf77,4},{0x151e,9}}, {{0x26263,6},{0x5538,2}}, {{0x7797,4},{0x2f4a,4}}, + {{0x46af,3},{0x2b4c3,3}}, {{0x19f7,4},{0x12f3c,6}}, {{0xccb,2},{0x7d80,5}}, {{0x5534,4},{0x9f4a,3}}, + {{0xe83,3},{0xf16,2}}, {{0x29cf,3},{0x155e,3}}, {{0xb37b,1},{0xe0f,1}}, {{0x206f,6},{0xb9d1,4}}, + {{0xb415,7},{0x22fe,5}}, {{0xe71,1},{0x145b,2}}, {{0x12fb0,5},{0x210ce,3}}, {{0xf0a,3},{0xf86,2}}, + {{0x12e5,3},{0x163cf,7}}, {{0x1969,1},{0x2e722,3}}, {{0xef7,5},{0x165a7,4}}, {{0x12e5,3},{0x12159,2}}, + {{0x3ba3,7},{0x1ec4,7}}, {{0xe11,1},{0xe2b,2}}, {{0x5534,6},{0x41e6,7}}, {{0xbc25,5},{0xf82,7}}, + {{0xe78,1},{0xac0d,3}}, {{0x4781,3},{0x1836b,7}}, {{0x1722e,4},{0x17232,4}}, {{0x2ca7,10},{0x13c3,4}}, + {{0xb85b,5},{0x6bef,5}}, {{0x10c5,4},{0xc9a5,7}}, {{0x1c85,3},{0x2,1}}, {{0x28fda,4},{0x28fe5,3}}, + {{0x1e60c,4},{0x6cb4,3}}, {{0x4f1c,8},{0x4f24,5}}, {{0x123ee,5},{0xcd2,2}}, {{0x10bac,5},{0xf0f,2}}, + {{0x5cd,2},{0xd,1}}, {{0x2b0b0,2},{0x2b07c,2}}, {{0x724d,6},{0x4e39,5}}, {{0x49a6,3},{0x6,1}}, + {{0x23f28,2},{0x1969,1}}, {{0xe97,3},{0xf0f,2}}, {{0xc26f,2},{0xd7c,2}}, {{0xf12,3},{0xcc9,2}}, + {{0x217d,12},{0xebb,3}}, {{0x1d3b9,6},{0xec6,3}}, {{0xf89,3},{0x2f94,3}}, {{0x70ad,3},{0x19b9,1}}, + {{0x2de4b,3},{0x1ac,2}}, {{0xe5b,3},{0xee9,2}}, {{0x4ef5,4},{0x56a7,6}}, {{0x63d4,7},{0x63db,6}}, + {{0x201d0,5},{0x2f92,3}}, {{0xcd2,2},{0xe7f,2}}, {{0x1ddd0,6},{0x3315,3}}, {{0x2966,4},{0xfcb,3}}, + {{0x100f9,6},{0xeab,3}}, {{0x1d69b,5},{0xe11,2}}, {{0x1967,3},{0x109b,2}}, {{0x11fd5,8},{0x2075,3}}, + {{0x1a27,4},{0x26707,4}}, {{0x1496e,5},{0x1392,3}}, {{0x1367,4},{0x3b4a,5}}, {{0x119d3,4},{0x6813,5}}, + {{0x8d69,8},{0x8d71,4}}, {{0x1847,5},{0x351b,6}}, {{0x148a,3},{0xcc3,2}}, {{0x449b,8},{0x44a3,6}}, + {{0x46bd,3},{0x73d6,2}}, {{0x4853,4},{0x7b57,6}}, {{0x70ad,3},{0xcbf,2}}, {{0x2a56,4},{0x348c,4}}, + {{0x27d7,2},{0xcbd,1}}, {{0x23c4b,3},{0xf86,2}}, {{0xe62,3},{0xe5e,2}}, {{0xcc1,1},{0xfa1,2}}, + {{0x18fc2,3},{0x13040,5}}, {{0x1cfa,5},{0x6,2}}, {{0x47c7,5},{0xfb3c,5}}, {{0xcc7,1},{0x1e93,3}}, + {{0xe99,1},{0x12154,3}}, {{0xeb2,2},{0xe71,1}}, {{0x3e0b,5},{0x7949,4}}, {{0x28b3a,1},{0x205a5,1}}, + {{0xf77,3},{0x2476,4}}, {{0x25093,6},{0xfcb,2}}, {{0x182aa,6},{0x182b0,4}}, {{0x158f,3},{0x9,2}}, + {{0xe33,1},{0xf70,2}}, {{0x5722,5},{0xc22d,4}}, {{0x109b,2},{0x10dc,2}}, {{0xcca,2},{0xcc7,1}}, + {{0xe164,6},{0x1de7,3}}, {{0x1245,3},{0xe0b,4}}, {{0xa2d5,9},{0xe77,3}}, {{0x30f75,4},{0x789d,2}}, + {{0x7e39,6},{0x6ca7,3}}, {{0x1cc96,7},{0x1150,2}}, {{0x10d85,6},{0x2352,5}}, {{0x11d85,5},{0x109b,2}}, + {{0x1ebf,3},{0xec3,3}}, {{0xf11,1},{0xcc8,1}}, {{0x1019,4},{0x23427,4}}, {{0x10c5,4},{0x8f39,4}}, + {{0x2de75,3},{0x4ce,2}}, {{0xe2f,1},{0x10d3,3}}, {{0x2ba5,1},{0x1722,4}}, {{0x16a7,3},{0x22b8e,5}}, + {{0x1027a,5},{0x29f3,3}}, {{0x27e0,3},{0x227f,3}}, {{0x758f,3},{0x153ff,5}}, {{0xebe,4},{0xe7d,2}}, + {{0x1f4f2,6},{0xfbb,3}}, {{0xc,1},{0x11,1}}, {{0x3559,4},{0x14800,6}}, {{0x1208,4},{0xf04,2}}, + {{0x28b2,8},{0x1b69,3}}, {{0x11444,6},{0x1058,3}}, {{0xc0f9,5},{0xc0fe,7}}, {{0x18ecc,2},{0x2aff8,2}}, + {{0x25195,3},{0xcd3,2}}, {{0xe1f,3},{0xb396,2}}, {{0x1e9e,4},{0x10b8,2}}, {{0x17678,5},{0x42f9,5}}, + {{0x1967,3},{0x17acb,2}}, {{0x2a29,7},{0x364e,7}}, {{0x77f0,4},{0x10af6,6}}, {{0xe21,1},{0x17dd9,3}}, + {{0x46bf,1},{0xe11,1}}, {{0xf11,2},{0xed9,2}}, {{0xf4f,1},{0x5b06,5}}, {{0x7b21,5},{0x16e1,6}}, + {{0xf7a,2},{0x7a36,3}}, {{0xe1f,3},{0x6d4e,5}}, {{0x18fa7,3},{0x6,1}}, {{0x5cd,2},{0xf,1}}, + {{0x8775,8},{0x104a,4}}, {{0x24653,4},{0x29430,3}}, {{0x314d,6},{0x38ee,5}}, {{0xebf6,7},{0xe0b,4}}, + {{0xfe6,2},{0xe09,1}}, {{0x1c0a0,7},{0xe95,2}}, {{0xf15,1},{0x2daf4,3}}, {{0x3a29,4},{0x19770,5}}, + {{0x25d5e,2},{0xf4f,1}}, {{0x11f5e,2},{0x4b07,5}}, {{0x1467,4},{0xe44a,6}}, {{0xb379,3},{0x73d6,2}}, + {{0x29bf9,4},{0xf11,1}}, {{0x2f71,4},{0x6326,5}}, {{0x33ed,7},{0x1177,7}}, {{0x1761e,6},{0x3a91,3}}, + {{0xf0a,3},{0x11186,2}}, {{0x2330,5},{0x3ae4,9}}, {{0xe25,2},{0xf35,3}}, {{0x29cf,3},{0x24cc6,3}}, + {{0x73ed,4},{0x14990,5}}, {{0xe16,1},{0x20344,4}}, {{0x28b31,3},{0x1,1}}, {{0x9a6,1},{0x20be5,4}}, + {{0x1032a,6},{0xe11,1}}, {{0x1747,5},{0xae95,4}}, {{0xe22,3},{0xccb,2}}, {{0x1969,1},{0xe08,1}}, + {{0xf65,4},{0x146d,9}}, {{0x4fab,5},{0x4c99,6}}, {{0x28b31,3},{0x30a4e,1}}, {{0xd85e,6},{0x3378,5}}, + {{0x1bd0a,5},{0x1722,4}}, {{0x3ba3,6},{0x1722,5}}, {{0x18dea,5},{0x26660,3}}, {{0x336,2},{0x8d,1}}, + {{0x56c7,5},{0x140db,5}}, {{0xf205,4},{0xfb0,2}}, {{0x23c4b,3},{0x17669,2}}, {{0x1e2e9,4},{0xe0f,1}}, + {{0xe19,1},{0x12fe,2}}, {{0x1ee56,5},{0x1ee5b,4}}, {{0x24bcd,2},{0x4460,3}}, {{0x1a66,1},{0x583b,5}}, + {{0x16806,4},{0xe11,1}}, {{0xe2f,1},{0x10ae9,8}}, {{0xe21,1},{0x14a3c,4}}, {{0x8835,5},{0xe92,3}}, + {{0x15f76,7},{0xe11,1}}, {{0x1927,4},{0xe22,2}}, {{0x17abc,6},{0xed5,3}}, {{0x29e45,5},{0x6,1}}, + {{0xc159,4},{0x1cd3,2}}, {{0x47c7,5},{0x1884f,5}}, {{0x19c9,4},{0x5bb9,4}}, {{0x1957,5},{0x1569,4}}, + {{0xf20,2},{0xcd3,1}}, {{0x5582,5},{0xcdda,2}}, {{0x1977,4},{0x13ee,7}}, {{0x11c30,6},{0xf86,3}}, + {{0x6bc0,10},{0xf91,3}}, {{0xcbf,2},{0x6cff,4}}, {{0xb45d,8},{0x3555,4}}, {{0x4677,7},{0x109a,3}}, + {{0x183ea,6},{0x7c3d,4}}, {{0xfbf,5},{0x504f,5}}, {{0x236c,5},{0xf3a1,6}}, {{0x24f2,5},{0x22d9,4}}, + {{0x1f34b,6},{0x3976,3}}, {{0x1e62,4},{0x6a90,5}}, {{0x4765,3},{0x225ce,5}}, {{0xcc7,1},{0x62f3,4}}, + {{0x19b7,3},{0xac0d,3}}, {{0x2de63,3},{0x176,2}}, {{0x48ef,2},{0xe32,1}}, {{0x18f7,7},{0x1088,9}}, + {{0x2e6a3,3},{0x11187,2}}, {{0xb74,16},{0xb74,2}}, {{0x7d61,7},{0x6791,4}}, {{0x4519,4},{0xde29,2}}, + {{0x7414,3},{0xed6,3}}, {{0xf24,2},{0x2f92,4}}, {{0x8871,8},{0x7a0f,4}}, {{0x1317,8},{0x1317,8}}, + {{0xedd,1},{0xcc1,1}}, {{0x1a1fa,3},{0xe0a,1}}, {{0x4599,4},{0x1131,8}}, {{0x17ada,5},{0x168f,5}}, + {{0x1ffa,3},{0x239e,5}}, {{0xf11,1},{0x18351,3}}, {{0x2a436,5},{0x6,1}}, {{0x26103,4},{0xe19,1}}, + {{0x2d773,5},{0xf15,1}}, {{0xc159,4},{0x265ff,4}}, {{0xaf4,1},{0x28b33,1}}, {{0xfe3,4},{0x1fece,4}}, + {{0x42e9,10},{0x128c,4}}, {{0x2e295,8},{0x2b0ac,2}}, {{0x7b,1},{0x8c,2}}, {{0x24d63,5},{0x2ba5,1}}, + {{0x2a92,11},{0xe6b,4}}, {{0x473d,3},{0x4740,4}}, {{0x24653,4},{0x248f6,2}}, {{0xf4f,1},{0x445c,2}}, + {{0xd11b,5},{0x14ab,4}}, {{0x6f1a,5},{0x6f1f,8}}, {{0x1a56,2},{0x9498,5}}, {{0xf89,3},{0xc600,5}}, + {{0x1f996,5},{0xed5,3}}, {{0x24495,3},{0x153a,3}}, {{0x111a,3},{0x7f83,6}}, {{0xefb3,5},{0xf9fe,4}}, + {{0xef7,3},{0x1830,3}}, {{0x18f7,7},{0x2d10,7}}, {{0xb12d,7},{0xfdc,3}}, {{0x17312,8},{0xed6,2}}, + {{0x311a9,2},{0x2e79a,2}}, {{0x2de2d,4},{0xf4f,1}}, {{0x1e3a,3},{0xeb4,3}}, {{0x7b21,5},{0x7b26,7}}, + {{0xfe3,4},{0x7088,3}}, {{0xf1a,2},{0xf86,2}}, {{0x7611,4},{0xa48b,3}}, {{0xf0a,3},{0x12a3,3}}, + {{0x1081,7},{0x395a,5}}, {{0x2b48,2},{0x202ac,5}}, {{0x7414,3},{0x12bc4,3}}, {{0x118a8,8},{0xf86,3}}, + {{0xcc1,1},{0xcc3,3}}, {{0xb0f1,7},{0xcc9,2}}, {{0x29cf,3},{0x2d643,2}}, {{0xf7a,2},{0x6,1}}, + {{0x16a7,3},{0x129b9,4}}, {{0x12e5,6},{0x1241,11}}, {{0xeb04,6},{0x2269,4}}, {{0x3e35,12},{0xed9,2}}, + {{0x1977,3},{0x2db19,2}}, {{0xf3f,3},{0xe78,2}}, {{0xebe,4},{0x11a6,13}}, {{0x15af,3},{0x30f7,2}}, + {{0x12740,7},{0x181b,3}}, {{0x111a,3},{0x14863,3}}, {{0x33a7,8},{0x1702,4}}, {{0x4845,8},{0x775c,5}}, + {{0x26ba,3},{0x809a,3}}, {{0x25c1b,6},{0xcc4,2}}, {{0x15940,6},{0x1523,4}}, {{0x11bcb,10},{0xe11,1}}, + {{0xe22,2},{0x9,2}}, {{0x7353,2},{0x1f38,1}}, {{0xc46e,7},{0x1523,4}}, {{0x1cdda,6},{0x3075,3}}, + {{0x12d4,3},{0x48d0,2}}, {{0x1165f,5},{0x8,1}}, {{0x3b87,6},{0x141f,8}}, {{0x171fa,5},{0xe7f,2}}, + {{0x1754c,6},{0xec6,3}}, {{0xb60d,6},{0xf86,2}}, {{0x1967,3},{0xbdf2,3}}, {{0x9f,1},{0x534,2}}, + {{0xb0fd,6},{0x9c04,5}}, {{0x77f0,5},{0x679c,7}}, {{0x2948,3},{0x1f3fb,4}}, {{0xf15,1},{0x1057,1}}, + {{0x33d3,2},{0x5,2}}, {{0x487d,8},{0x1059,3}}, {{0x1d90,10},{0x1d9a,5}}, {{0xb3f1,3},{0xc0a1,2}}, + {{0xc1d1,4},{0x45c7,2}}, {{0xf16,2},{0x2454,3}}, {{0x1969,1},{0xe0f9,3}}, {{0x2006,3},{0x17030,2}}, + {{0x316e,3},{0x6,1}}, {{0xf9b,5},{0x286d,3}}, {{0x70ad,4},{0x1dac5,5}}, {{0x28f78,5},{0xcd3,1}}, + {{0x1294,6},{0xe67,2}}, {{0x1e74,2},{0x11d9,3}}, {{0x478f,3},{0x4574,3}}, {{0x2de57,3},{0x302,2}}, + {{0xb8b9,8},{0x7997,4}}, {{0x1a66,1},{0x2ee9,3}}, {{0x369,2},{0x21,1}}, {{0x15e7,4},{0x1663,3}}, + {{0x36b7,10},{0xcc9,2}}, {{0x1b92,12},{0xcc9,2}}, {{0xdccb,7},{0x390b,4}}, {{0x14ee6,6},{0x16cf,4}}, + {{0x2501,5},{0x8cd4,5}}, {{0xaeb1,5},{0x3378,5}}, {{0xe10,2},{0x127c,3}}, {{0x1081,7},{0x7d98,5}}, + {{0xb331,7},{0x1c8c,5}}, {{0x183f4,6},{0x2076,4}}, {{0xc77b,7},{0x3435,4}}, {{0x46bd,3},{0x2280,2}}, + {{0xe0b,2},{0xe22,3}}, {{0x2b779,5},{0x9a6,1}}, {{0x5f1b,7},{0x15e9,3}}, {{0x1f018,5},{0x17424,4}}, + {{0x180a,3},{0xed6,2}}, {{0x12068,3},{0x111c,2}}, {{0x17664,6},{0x1766a,4}}, {{0xd77a,5},{0xe09,1}}, + {{0x148a,3},{0xfdd,4}}, {{0xe32,1},{0x3930,7}}, {{0xbd1a,4},{0xcc3,2}}, {{0x8d,1},{0x6bb,2}}, + {{0x9309,5},{0x4299,5}}, {{0x25b23,4},{0x48da,3}}, {{0x1832,3},{0x13e3,4}}, {{0xcb6,3},{0x12a9,3}}, + {{0x1e9e,5},{0x5261,4}}, {{0x1567,6},{0x587c,5}}, {{0x45eb,4},{0xe5e,2}}, {{0x1967,3},{0x5e5e,2}}, + {{0x11d99,5},{0xe31,2}}, {{0x260eb,5},{0x24bcd,3}}, {{0xe61,2},{0x2,1}}, {{0xecb,2},{0xfdf,3}}, + {{0x2489,7},{0x2790,5}}, {{0xf15,1},{0x2b499,5}}, {{0xc1d1,5},{0xeee,3}}, {{0xf15,1},{0x48da,2}}, + {{0x10a3,3},{0x1303,3}}, {{0x29dd5,4},{0x29dd9,3}}, {{0x442d,1},{0x7950,3}}, {{0xcdf8,5},{0x1e5e,4}}, + {{0x2cc8d,4},{0x1e2ed,2}}, {{0x12d4,3},{0xfcb,2}}, {{0x186d8,8},{0xe11,1}}, {{0xe80,2},{0x30ba,7}}, + {{0x1a93,5},{0x4afa,5}}, {{0x1db3b,2},{0xe16,1}}, {{0x1c0a,8},{0x4e06,5}}, {{0x3e0,2},{0xf,1}}, + {{0xcc9,2},{0xe95,2}}, {{0x19d66,6},{0xec6,3}}, {{0x3513,5},{0x3518,9}}, {{0x9da1,6},{0x9da7,6}}, + {{0x110c9,5},{0x9,1}}, {{0xfcb,2},{0x13e3,4}}, {{0x2de63,3},{0x19a,2}}, {{0x168f,3},{0x320c,5}}, + {{0x3177a,2},{0x205a1,1}}, {{0x122cc,5},{0x7373,5}}, {{0x19b7,6},{0x170d,10}}, {{0xb15d,7},{0xe0b,4}}, + {{0x1c28,5},{0x2269,4}}, {{0x243db,5},{0x11d2,3}}, {{0xf0c,1},{0x1debd,2}}, {{0x14356,6},{0x4b11,4}}, + {{0xf89,3},{0x4188,3}}, {{0x1817,4},{0x7948,5}}, {{0x2777,6},{0x2663,5}}, {{0x27e0,4},{0x1d003,5}}, + {{0x11e1d,7},{0x2dd7,4}}, {{0x5,2},{0x6a0f,4}}, {{0x1e331,7},{0x10b7,2}}, {{0x79c5,8},{0x3976,3}}, + {{0x1567,7},{0x9e08,4}}, {{0x1567,6},{0x568c,7}}, {{0x1f36f,6},{0x10d3,3}}, {{0xe11,1},{0x58ff,4}}, + {{0x23f16,2},{0x26943,4}}, {{0x1d86f,7},{0xe95,2}}, {{0x117d5,5},{0xe0c,3}}, {{0x111a,3},{0x11b5,2}}, + {{0x7414,3},{0xe7f,2}}, {{0x10bf0,3},{0xfdd,6}}, {{0x2b75,2},{0x2c83,4}}, {{0x17c38,7},{0x1c8b,3}}, + {{0xccd,1},{0x52fe,5}}, {{0xe61,3},{0xcc8,2}}, {{0xc46e,7},{0x39a3,4}}, {{0x2fea7,4},{0xf,1}}, + {{0x2b84,2},{0x3642,2}}, {{0x4853,3},{0x3aff,3}}, {{0xf77,5},{0xc6bc,4}}, {{0x1927,4},{0x8,1}}, + {{0x5117,5},{0x1e2f,4}}, {{0xf318,6},{0x6c88,5}}, {{0x168f,2},{0xa84b,5}}, {{0x56c7,5},{0x8f66,7}}, + {{0xcd1,3},{0x4d50,5}}, {{0x3559,4},{0xa288,4}}, {{0x17a3a,5},{0x66c2,3}}, {{0x18318,5},{0xcbac,5}}, + {{0xf0a,3},{0x23e1,3}}, {{0x110c9,5},{0x8,1}}, {{0x112b8,8},{0x1004,3}}, {{0x13dd,4},{0x2c15,6}}, + {{0x12fa,3},{0x149f,3}}, {{0xcb8,1},{0x3,1}}, {{0xa6e9,7},{0xe1c,3}}, {{0x488b,4},{0xcc3,2}}, + {{0x24653,4},{0x254b1,2}}, {{0x46bd,3},{0x24668,2}}, {{0xe97,3},{0xcc5,2}}, {{0x9f,1},{0x11c,2}}, + {{0x284,2},{0x57,1}}, {{0x1ba31,5},{0x5261,4}}, {{0x19b9,3},{0xa2b6,5}}, {{0x11c18,8},{0x286d,3}}, + {{0x2fd58,4},{0xd,1}}, {{0xccd,1},{0x2e32,3}}, {{0x23c4b,3},{0x260ed,3}}, {{0x29c0,4},{0xb,1}}, + {{0x28fda,4},{0x28ffa,3}}, {{0x2e70c,3},{0x4461,2}}, {{0x11fe0,6},{0x1302,5}}, {{0x30869,4},{0xc287,2}}, + {{0x15e7,5},{0x2bae,2}}, {{0xf0a,3},{0x13049,7}}, {{0x7c24,5},{0xe95,2}}, {{0x70ad,3},{0xab27,5}}, + {{0x479d,5},{0xe22,3}}, {{0x12f6,4},{0x5,1}}, {{0xf15,1},{0xec3,3}}, {{0xde20,10},{0xe0a,1}}, + {{0x4455,4},{0x23f27,4}}, {{0x15fb,3},{0xe92,3}}, {{0x18fa7,4},{0x4920,5}}, {{0x9,1},{0xf86,2}}, + {{0xee9,2},{0x12a9,3}}, {{0x19643,6},{0xe0d,2}}, {{0x16eb2,7},{0xe77,3}}, {{0x73ed,5},{0xe11,1}}, + {{0x9a6,1},{0x1288,4}}, {{0xf0a,3},{0x6068,4}}, {{0xcc8,1},{0x2d11,3}}, {{0x11788,4},{0xefa,2}}, + {{0xbdef,2},{0xc6cd,4}}, {{0x14e96,6},{0xf91,3}}, {{0x2795,7},{0xfdd,6}}, {{0x4765,3},{0x3922,3}}, + {{0xd,1},{0x1347,4}}, {{0x18e7,10},{0x1722,5}}, {{0x30f63,4},{0xbb8,2}}, {{0x121d2,7},{0x3075,3}}, + {{0x1c556,5},{0x2477,3}}, {{0x1524e,4},{0xe31,2}}, {{0x1e08,5},{0xf69,3}}, {{0x6a13,10},{0xcce,2}}, + {{0x7414,3},{0x2d11,3}}, {{0x3b09,4},{0x1790,3}}, {{0x10b6a,5},{0x11e2f,4}}, {{0x11b5,2},{0xf1a,2}}, + {{0x1f8e,8},{0x1024,7}}, {{0x1034b,6},{0x1035c,5}}, {{0x3089,5},{0x1d32,4}}, {{0x9129,5},{0x13e4,3}}, + {{0xb8ad,4},{0x8b31,4}}, {{0x7518,5},{0xf86,2}}, {{0x11d9,3},{0x18b4,3}}, {{0x1544a,7},{0xcc9,2}}, + {{0x1747,4},{0xccb,2}}, {{0x29a2,5},{0x4cbc,5}}, {{0xe0d,2},{0xf7a,2}}, {{0x1081,4},{0x2f2e,3}}, + {{0x6dfe,3},{0xf91,3}}, {{0x113c,3},{0x4326,4}}, {{0xebbf,6},{0x79cd,4}}, {{0x5fc4,5},{0x1943f,3}}, + {{0xb985,4},{0x9a8,2}}, {{0x4773,4},{0x10d3,3}}, {{0xf65,4},{0x386f,4}}, {{0x1ff7,3},{0x22a3,2}}, + {{0xb685,5},{0x15bf7,4}}, {{0x1819,5},{0xe67,2}}, {{0x2977,4},{0x7fbf,6}}, {{0x12152,2},{0x20543,2}}, + {{0xf11,1},{0x2f27c,2}}, {{0x1bd91,5},{0x2ca3,4}}, {{0x2b4fe,2},{0x2b0dc,2}}, {{0xe83,3},{0x9a6,1}}, + {{0x25aab,6},{0xcc6,2}}, {{0x2e193,4},{0x347,2}}, {{0x2cda3,2},{0x48d7,2}}, {{0x4f91,8},{0x10e2,5}}, + {{0x478f,3},{0x1e2ef,2}}, {{0x11dd0,9},{0xed9,2}}, {{0x1a66,1},{0xef8a,7}}, {{0x111a,3},{0xfa0,3}}, + {{0xf7d2,8},{0xcc5,2}}, {{0xf91,3},{0xf23,3}}, {{0x53c2,3},{0xcc3,2}}, {{0xcd3,1},{0x158f,3}}, + {{0x1a07,3},{0x2c292,3}}, {{0x5541,7},{0xe69,6}}, {{0x1153,2},{0xf35,2}}, {{0x101f,2},{0xe6b,3}}, + {{0xe21,1},{0x142a,3}}, {{0x127ea,5},{0xcc9,2}}, {{0x1dd01,5},{0xe95,2}}, {{0x9f,1},{0x49b,2}}, + {{0xcf00,6},{0x2268,5}}, {{0x5,1},{0x17cd,4}}, {{0xe2f,1},{0x8,1}}, {{0x1ff7,3},{0x1d7d,3}}, + {{0x2a29,5},{0x5b44,8}}, {{0x385d,5},{0xe78,2}}, {{0xcc7,1},{0x141f,8}}, {{0xf1b8,4},{0xf1bc,7}}, + {{0xcbf,2},{0x5,2}}, {{0xfdf,3},{0x8,1}}, {{0x17fee,5},{0x8,1}}, {{0x43fb,3},{0x9ff4,5}}, + {{0x10cf6,6},{0xcb33,4}}, {{0xb799,6},{0x1790,3}}, {{0xbba1,4},{0xc80d,4}}, {{0x20377,6},{0x2037d,3}}, + {{0xe75,2},{0x3,1}}, {{0x10e40,5},{0x3a30,6}}, {{0xe2f,1},{0x1f402,3}}, {{0x2f47,5},{0x4b04,4}}, + {{0xeed,2},{0x3976,3}}, {{0x5a6f,9},{0xe0b,4}}, {{0x1189,3},{0x28f8,5}}, {{0xf65,4},{0x1ae2,11}}, + {{0x1965e,6},{0x15ac,3}}, {{0x209c,10},{0x13e3,4}}, {{0x14fb8,5},{0x1894,3}}, {{0x29193,5},{0x1692,2}}, + {{0x30f09,4},{0xddc,2}}, {{0xe5b,3},{0x736e,5}}, {{0xfe3,4},{0xbd18,5}}, {{0x2ba5,1},{0xfa6,3}}, + {{0xff4c,7},{0x2269,4}}, {{0x10cb4,4},{0xcbd,1}}, {{0x1823c,5},{0xe22,2}}, {{0xf462,8},{0x1fc7,3}}, + {{0xcb8,1},{0x3a91,3}}, {{0x1496e,5},{0x12ce2,5}}, {{0x2966,4},{0xf80,2}}, {{0x373b,3},{0xe09,1}}, + {{0x171e8,3},{0x1021a,5}}, {{0x9f,1},{0x6aa,2}}, {{0x8f49,7},{0x16ad,3}}, {{0x92d9,7},{0x1663,4}}, + {{0x143c,4},{0xcce,2}}, {{0x1e30f,3},{0x1064,3}}, {{0x2e707,3},{0x1db31,2}}, {{0x1feaf,7},{0x6,1}}, + {{0x48b5,9},{0x12be,5}}, {{0x12830,5},{0x331f,4}}, {{0x1a6a5,6},{0xcce,3}}, {{0x1977,10},{0x1702,4}}, + {{0x18282,6},{0x1a9a,4}}, {{0x1cfc,3},{0xe69,5}}, {{0xe71,1},{0x18351,3}}, {{0x69,1},{0x206,2}}, + {{0x2006,3},{0xfde,3}}, {{0x19e7,6},{0x4a86,4}}, {{0x9a6,1},{0xf1d,1}}, {{0xa659,5},{0x1de8,2}}, + {{0x27ef,4},{0x1cc02,4}}, {{0x15ee0,5},{0x6db6,5}}, {{0xe2b,2},{0xcd2,2}}, {{0x1711e,5},{0x1392,3}}, + {{0xe08,1},{0xcc5,2}}, {{0x19b9,1},{0x2d3bd,2}}, {{0x2939,4},{0x164c,3}}, {{0x1969,1},{0x101e,4}}, + {{0x20549,3},{0x2054c,5}}, {{0x7b,1},{0x109,2}}, {{0xf9cc,7},{0x1944,3}}, {{0x2304b,6},{0xcce,2}}, + {{0x46af,3},{0xf35,2}}, {{0x7414,3},{0xf91,3}}, {{0x6123,9},{0xe92,3}}, {{0x712f,4},{0x6cb4,3}}, + {{0x4853,3},{0x4665,4}}, {{0x1937,4},{0x1269,4}}, {{0x101f6,8},{0xec6,3}}, {{0xd78,24},{0xd78,24}}, + {{0x4c16,3},{0x2ee9,3}}, {{0x10a3,3},{0x272f1,4}}, {{0x1b098,6},{0xe22,3}}, {{0x2526b,5},{0x1159,3}}, + {{0x12d4,3},{0xf80,2}}, {{0x106b0,7},{0x4a01,3}}, {{0xb1a5,7},{0xe0b,4}}, {{0x30853,2},{0x789d,2}}, + {{0x11281,6},{0x11287,5}}, {{0x4773,4},{0x63bd,5}}, {{0x4853,3},{0x23846,5}}, {{0x2e193,4},{0x402,2}}, + {{0x1cd4,5},{0xe77,3}}, {{0x523,2},{0xd,1}}, {{0x9f,1},{0x188,2}}, {{0x97d1,7},{0x809a,3}}, + {{0x1ba43,5},{0x16e3,4}}, {{0x2e193,4},{0x3cf,2}}, {{0x30f33,4},{0xe47,2}}, {{0xe78,1},{0x8428,3}}, + {{0x1969,1},{0x1040,3}}, {{0x8235,7},{0xe95,2}}, {{0x6dfc,7},{0xcd3,2}}, {{0x11b5,2},{0x1e94c,3}}, + {{0xcb9b,8},{0x1829,3}}, {{0x2948,3},{0x2d3bd,2}}, {{0x46bd,3},{0x12b8f,3}}, {{0x9d7d,7},{0x30f4,5}}, + {{0xccd,1},{0x2075,3}}, {{0x2e223,4},{0x44,2}}, {{0x4455,4},{0x28da7,3}}, {{0x172c2,5},{0x12a1f,5}}, + {{0xe99,1},{0x17acb,2}}, {{0x9f,1},{0x68,2}}, {{0x1a66,1},{0x5,2}}, {{0x30357,1},{0x2e27e,2}}, + {{0x1567,3},{0x156ed,2}}, {{0xa659,5},{0x23118,3}}, {{0x4199,5},{0x3694,3}}, {{0x1ebc,10},{0x27dc,4}}, + {{0xe99,2},{0x1f875,1}}, {{0x578a,6},{0x5790,7}}, {{0x151b6,6},{0x30f4,4}}, {{0x7602,4},{0x2ba5,1}}, + {{0x174b,3},{0xe5e9,3}}, {{0xe32,1},{0x10e2,3}}, {{0x58f6,9},{0x58ff,4}}, {{0x1b2c6,6},{0xcc9,2}}, + {{0x26763,4},{0x26767,4}}, {{0x4853,3},{0x2d3ab,2}}, {{0x2ba5,1},{0x4,1}}, {{0xe7d,2},{0x1156,3}}, + {{0xe08,1},{0xcc3,3}}, {{0x20811,6},{0xcc9,2}}, {{0xe6f,3},{0x12b5,2}}, {{0x260fb,4},{0x2aabe,3}}, + {{0x2e193,4},{0x3e0,2}}, {{0xe11,1},{0x1889,2}}, {{0xcbdd,7},{0x126a,4}}, {{0x146ee,5},{0xe95,2}}, + {{0x7518,4},{0xe32,1}}, {{0x2560,4},{0xcc3,2}}, {{0x18b4,3},{0x1150,2}}, {{0xf65,4},{0x7bf1,8}}, + {{0x127f,4},{0xb10d,8}}, {{0x17af8,5},{0xfdd,4}}, {{0x1507,7},{0x1d4c,8}}, {{0xe97,3},{0x10b7,2}}, + {{0xecb,2},{0x70a6,3}}, {{0x2cdcd,3},{0xf0c,1}}, {{0x1124a,7},{0x910c,4}}, {{0x1a07,3},{0x20550,2}}, + {{0xed5,3},{0x6,1}}, {{0xe33,1},{0xa680,6}}, {{0x375f,8},{0x3767,6}}, {{0x311a9,2},{0x18ee2,2}}, + {{0xeba9,6},{0x126a,4}}, {{0xefb,3},{0x11d0,5}}, {{0x1a07,3},{0x1b69,3}}, {{0x1b30,4},{0x14ab,4}}, + {{0x2db2a,3},{0x48d6,2}}, {{0x12240,6},{0x4665,4}}, {{0x346b,8},{0x18b4,3}}, {{0x1da79,5},{0x1da7e,4}}, + {{0x29a2,4},{0x1d3c,3}}, {{0x1e91,4},{0xe86,2}}, {{0xf77,4},{0x5e6b,7}}, {{0x55f7,9},{0x153a,3}}, + {{0x2afb6,4},{0x512,2}}, {{0x269c7,4},{0xe11,1}}, {{0x11a4a,6},{0xe11,1}}, {{0x1377,7},{0x137e,9}}, + {{0x1987a,5},{0x2917,4}}, {{0x3739,2},{0x16ad,3}}, {{0x9465,5},{0xf79,3}}, {{0xadc1,6},{0x138e,3}}, + {{0x4853,3},{0x949d,3}}, {{0xecb,2},{0xf70,2}}, {{0xddb2,7},{0xddb9,4}}, {{0x10e77,5},{0xeb5,3}}, + {{0x12f6,4},{0x1839,2}}, {{0xc015,4},{0x1131,3}}, {{0x1fd7f,4},{0x1040,3}}, {{0x7170,6},{0x1c88,7}}, + {{0x1937,4},{0xe6b,3}}, {{0x2fe4d,4},{0x57,1}}, {{0x11373,4},{0x4767,1}}, {{0x171fa,7},{0x5669,3}}, + {{0x29de,4},{0xed9,2}}, {{0x8eee,4},{0x6,1}}, {{0xf16,2},{0x12bf,4}}, {{0x3aff,3},{0x1dc3,7}}, + {{0xe08,1},{0x23427,4}}, {{0x4ac,2},{0xf,1}}, {{0xf0a,3},{0x8cd4,5}}, {{0x28dae,3},{0xe21,1}}, + {{0xe2b,2},{0xcc3,3}}, {{0x772f,4},{0x2075,3}}, {{0xe08,1},{0x168b,4}}, {{0x1024e,5},{0x13e4,3}}, + {{0x2d989,4},{0x2037e,2}}, {{0x369,2},{0xf,1}}, {{0xf65,4},{0x7bd9,8}}, {{0x15760,4},{0x36cd,4}}, + {{0xe65,2},{0xf34,2}}, {{0x1059,3},{0x1153,2}}, {{0xd551,6},{0x1b9c,5}}, {{0xeab,2},{0xa1e1,4}}, + {{0x1e869,2},{0xe21,1}}, {{0x1756a,5},{0x3578,4}}, {{0x2e193,4},{0x59a,2}}, {{0xccb,2},{0x95d3,6}}, + {{0xd48,4},{0xc78,2}}, {{0x1557,7},{0x65a3,5}}, {{0x4781,3},{0x2c5b,4}}, {{0xe78,1},{0x3976,3}}, + {{0x442d,1},{0xe22,2}}, {{0x74f6,2},{0x2ca18,2}}, {{0x1a735,5},{0xf0f,2}}, {{0xcc8,1},{0x30ad,6}}, + {{0x4455,4},{0x1eea3,4}}, {{0x2de63,3},{0x567,2}}, {{0x780c,2},{0x16b6e,6}}, {{0x79c5,4},{0xccc,2}}, + {{0x27ef,4},{0x3320,4}}, {{0x1ead2,8},{0xe11,1}}, {{0x46bd,3},{0x155e,3}}, {{0xe32,1},{0xf0f,2}}, + {{0x1367,4},{0xc38b,7}}, {{0x4455,4},{0x1dcb4,5}}, {{0x4979,4},{0xf468,5}}, {{0x956d,6},{0x11a6,2}}, + {{0x1969,2},{0x72fa,5}}, {{0x7416,1},{0xcd3,2}}, {{0x3cf,2},{0xf,1}}, {{0x944d,8},{0x2b86,4}}, + {{0x29cf,3},{0x2b4b0,3}}, {{0x1bec,5},{0x805a,7}}, {{0x44b7,7},{0x7f30,5}}, {{0x1f03c,6},{0x1766a,3}}, + {{0x4853,3},{0x1e580,3}}, {{0x2fe4d,4},{0x7b,1}}, {{0xb031,8},{0x128c,4}}, {{0x1825a,6},{0x4a92,4}}, + {{0xcc77,8},{0x12a9,3}}, {{0x1967,3},{0xe80,2}}, {{0xc27b,2},{0xc279,2}}, {{0xcd1,5},{0xcc9,2}}, + {{0x4765,3},{0x1839,2}}, {{0x74f6,2},{0x1f40a,2}}, {{0xe97,3},{0x2aaaf,3}}, {{0x1ff7,3},{0xe1fa,4}}, + {{0x959d,4},{0xeab,2}}, {{0xf11,1},{0x44b2,5}}, {{0x8ccd,6},{0xcc9,2}}, {{0x48a,2},{0xd,1}}, + {{0xcd6,16},{0xcd6,16}}, {{0x168f,3},{0x27ea,5}}, {{0x9441,5},{0x1944,3}}, {{0x4765,3},{0x17ac9,2}}, + {{0x5bb6,3},{0xf86,2}}, {{0x1f4d9,5},{0xe95,2}}, {{0xf37b,7},{0x16cf,4}}, {{0xa5a5,7},{0x13e3,4}}, + {{0xccd,1},{0xeb4,2}}, {{0xe19,1},{0x2054a,2}}, {{0x6bda,7},{0xfdf,4}}, {{0xe1f,3},{0x3,1}}, + {{0x1937,4},{0x1316c,6}}, {{0x19b9,1},{0xbb20,4}}, {{0x2240,4},{0x9ae1,8}}, {{0x18796,5},{0x6f8a,4}}, + {{0xe11,1},{0x6,2}}, {{0x9f,1},{0x10a,2}}, {{0x73b9,5},{0x17e4f,5}}, {{0x413d,5},{0x2940,3}}, + {{0x3169,8},{0x3155,6}}, {{0xedd,1},{0x4574,3}}, {{0x712f,4},{0xe0b,2}}, {{0x1894e,8},{0xf7a,2}}, + {{0x11eee,5},{0xf69b,3}}, {{0xe11,2},{0xcb73,7}}, {{0x46af,3},{0x4767,1}}, {{0xbcc1,8},{0xf53,4}}, + {{0xf4f,1},{0x1e2ef,2}}, {{0xf65,4},{0x188c,3}}, {{0x14874,7},{0xe92,3}}, {{0x24b6,9},{0xe69,6}}, + {{0x5401,3},{0xfa2b,4}}, {{0xe32,1},{0x4415,3}}, {{0xf0c,1},{0x1cd5,4}}, {{0x7414,3},{0xdaf5,4}}, + {{0xc05d,4},{0x1085,3}}, {{0x20f6,5},{0xfcb,2}}, {{0x2cbeb,4},{0x1f875,1}}, {{0x1544a,7},{0xed6,2}}, + {{0xb3f1,3},{0x1150,2}}, {{0x1927,4},{0xe0a1,5}}, {{0x1025,1},{0xf86,2}}, {{0xf0a,3},{0x1057,1}}, + {{0x1eb11,6},{0x72d3,3}}, {{0x111c6,5},{0xe1b,4}}, {{0x2518b,5},{0x1064,3}}, {{0xbc31,5},{0x4ce6,7}}, + {{0x1f059,3},{0x4665,4}}, {{0xdc26,8},{0xf62,3}}, {{0x67b0,10},{0xcc9,2}}, {{0x29fc,5},{0xf35,2}}, + {{0xe32,1},{0xac0d,3}}, {{0x24ddd,3},{0xfacb,3}}, {{0x4003,8},{0xe10,2}}, {{0x488b,4},{0xf63,2}}, + {{0x125d,6},{0xa348,5}}, {{0x45eb,4},{0xf32,2}}, {{0x1967,3},{0x1e844,6}}, {{0x2240,7},{0x2247,8}}, + {{0x1667,5},{0x1099,10}}, {{0x16a7,3},{0x23d0,5}}, {{0xa659,5},{0x1381,4}}, {{0xe1f,3},{0xb5ec,9}}, + {{0x18412,5},{0x1722,5}}, {{0xc159,4},{0x515b,4}}, {{0xe99,2},{0x6,1}}, {{0x10cb6,3},{0x12a01,5}}, + {{0x12bdc,6},{0xef5,2}}, {{0x27ef,4},{0xcbf,2}}, {{0xcbc7,7},{0xec6,3}}, {{0x29cf,3},{0x2c484,3}}, + {{0x1dee,2},{0x569a,3}}, {{0xe360,4},{0xe77,3}}, {{0x1327,1},{0x0,1}}, {{0x1677,3},{0x1a63,3}}, + {{0x72c2,6},{0x546a,7}}, {{0x2b94,6},{0xc252,5}}, {{0xf63,2},{0xec3,3}}, {{0x11229,6},{0x8,1}}, + {{0x296f,3},{0x156a,3}}, {{0xeca,3},{0xe0a,1}}, {{0x613f,4},{0x1b34,4}}, {{0x1809,3},{0x6b0f,5}}, + {{0x2b48,6},{0x10f2,5}}, {{0x750b,4},{0x4599,3}}, {{0xb3f1,3},{0x207ac,5}}, {{0x1ea6f,5},{0x1ea74,4}}, + {{0x1085,3},{0xcdda,2}}, {{0xb5af,3},{0x1040,3}}, {{0x2966,4},{0x3a02,4}}, {{0xb58b,2},{0x2ee9,3}}, + {{0x1ac57,8},{0xe11,1}}, {{0x133de,5},{0x1a152,4}}, {{0x10970,9},{0xf7a,2}}, {{0xe33,1},{0x11a6,2}}, + {{0xf15,1},{0x1a66,1}}, {{0x1db4,4},{0xe69,5}}, {{0xc040,2},{0xed6,2}}, {{0x9f,1},{0x176,2}}, + {{0x1977,3},{0xe95,2}}, {{0xfb4,4},{0xeed,4}}, {{0x1969,1},{0xec6,3}}, {{0x80fd,6},{0x3b74,3}}, + {{0x24f0b,6},{0xcc3,2}}, {{0x1e65,3},{0x1131,6}}, {{0x9111,6},{0xeea,3}}, {{0x9a4,3},{0x5669,3}}, + {{0x127f,3},{0x1155,2}}, {{0x1189d,6},{0x57e0,5}}, {{0x2fe4d,4},{0xf,1}}, {{0xf77,9},{0x1267,7}}, + {{0x46bd,3},{0x25386,5}}, {{0x11675,7},{0xff22,4}}, {{0x1f8ff,3},{0x156a,3}}, {{0x25d53,6},{0x74fc,2}}, + {{0x1005,2},{0x203ab,6}}, {{0xbd15,4},{0x10b9,2}}, {{0x10a3,3},{0xe95,2}}, {{0x1231c,5},{0x549f,3}}, + {{0x17146,4},{0x142d,3}}, {{0x11b47,5},{0x1a9a,4}}, {{0xeb9,3},{0xe92,3}}, {{0xf69,4},{0x5bb9,4}}, + {{0x19b9,1},{0x17acb,2}}, {{0xe0bf,7},{0x2ee9,3}}, {{0xf65,4},{0x7ba9,8}}, {{0x16a7,5},{0xed6,2}}, + {{0x24bcb,4},{0x2cbd1,2}}, {{0x1fdd7,7},{0x17ac9,2}}, {{0x2c0a0,3},{0xe71,1}}, {{0x22877,3},{0x176a3,4}}, + {{0x1a66,1},{0x29437,3}}, {{0x48d3,2},{0xf11,1}}, {{0x19b7,3},{0xf35,2}}, {{0x478f,3},{0x2598e,5}}, + {{0x138e,2},{0xe0d,2}}, {{0x45,1},{0xb0,2}}, {{0xf2ec,6},{0x492e,3}}, {{0x2b0cc,6},{0x2b0cc,6}}, + {{0xcc3,2},{0x10bb,5}}, {{0xed9,2},{0xec3,3}}, {{0xf15,1},{0xe22,3}}, {{0x3949,6},{0xeaf4,5}}, + {{0x478f,3},{0x104a,4}}, {{0x69df,9},{0xe6b,4}}, {{0x2a92,6},{0x566f,4}}, {{0x1040,3},{0xa,2}}, + {{0x8691,8},{0xe92,3}}, {{0x114d,4},{0x93e6,4}}, {{0x2132,9},{0x12be,5}}, {{0xf31,2},{0xc342,3}}, + {{0x8d,1},{0x12e,2}}, {{0x1e80,6},{0xe7d,2}}, {{0x1fdc5,5},{0x1f197,4}}, {{0xb601,5},{0xc01b,6}}, + {{0x1ee83,6},{0xec6,3}}, {{0xe86,2},{0x1064,3}}, {{0x1607,8},{0xe11,1}}, {{0x2c571,5},{0xe11,1}}, + {{0x2691e,2},{0x1969,1}}, {{0x1825c,4},{0x7a0f,4}}, {{0x1081,4},{0x7df5,8}}, {{0x161a6,8},{0xf7a,2}}, + {{0xf86,2},{0x9a8,2}}, {{0xeab,2},{0x1153,2}}, {{0x180e,3},{0x10cc,2}}, {{0x1937,5},{0x5,1}}, + {{0x11352,5},{0x1b7e,4}}, {{0x4765,3},{0x2c85,2}}, {{0x7a61,7},{0xe69,5}}, {{0x1667,4},{0xea79,7}}, + {{0x9cbd,7},{0xe6b,4}}, {{0x5f90,6},{0x152c0,4}}, {{0x1dee,2},{0x1cd3,2}}, {{0x1e62,4},{0x6e44,6}}, + {{0x23e93,4},{0x2c509,2}}, {{0x4e18,8},{0x27dc,4}}, {{0x4781,3},{0x7950,3}}, {{0x1c8b,3},{0xcc3,2}}, + {{0xf15,1},{0x1766a,2}}, {{0x1ea39,5},{0x35ce,4}}, {{0x473b,5},{0x5,2}}, {{0x2d989,4},{0xede,1}}, + {{0x2de5d,3},{0x10a,2}}, {{0x5b8d,9},{0xec6,3}}, {{0x229a,7},{0xf61,2}}, {{0x70ad,3},{0x23cfe,5}}, + {{0x450b,4},{0x1059,3}}, {{0x1967,3},{0x6cc8,3}}, {{0xf18,2},{0xe22,2}}, {{0xe97,3},{0x15fc,2}}, + {{0x260fb,4},{0xe21,1}}, {{0x1025,1},{0x101f,2}}, {{0x10b8d,4},{0x2277,4}}, {{0x170ba,5},{0x5dd0,3}}, + {{0xe6b,3},{0x127c,3}}, {{0x1ebc,6},{0x43fd,4}}, {{0x29cf,3},{0xefa,2}}, {{0x1809,3},{0x158f,3}}, + {{0x4c2a,8},{0x4c32,5}}, {{0xcbd,1},{0xe69,6}}, {{0x8bb9,7},{0x1ce6,5}}, {{0xf23,2},{0xe89,2}}, + {{0x101f,2},{0xf91,3}}, {{0x16a7,3},{0xf0f,2}}, {{0x1189,3},{0x4415,3}}, {{0x2f94d,4},{0xe0f,1}}, + {{0x9add,6},{0x7e88,5}}, {{0x1219,6},{0x8bcb,6}}, {{0xccb,6},{0xec6,3}}, {{0x8e22,3},{0x43fb,3}}, + {{0x331f,3},{0xe78,1}}, {{0x2f47,5},{0xe133,5}}, {{0x1ff7,3},{0x3c88,3}}, {{0xebe,5},{0xe86,2}}, + {{0x6644,6},{0x1254,6}}, {{0xccb,2},{0x17ec,4}}, {{0xcbf,2},{0x149c,3}}, {{0x1e9df,5},{0x11503,4}}, + {{0x1185b,8},{0x189f,3}}, {{0x2ba5,1},{0x5849,4}}, {{0x4767,1},{0xfe7,2}}, {{0x11ee3,7},{0x10a8a,4}}, + {{0x4911,6},{0xe11,1}}, {{0x4,1},{0x122d,2}}, {{0x2d79,5},{0xcc6,2}}, {{0x11515,5},{0x73d6,2}}, + {{0xccb,3},{0x1d7d,3}}, {{0xe0f,4},{0x1059,3}}, {{0x9f,1},{0x688,2}}, {{0x236c,5},{0xf3ac,6}}, + {{0xadcd,6},{0xadd3,6}}, {{0x27e0,3},{0xefa,4}}, {{0xc6ec,5},{0x3642,2}}, {{0x2b46,4},{0x44b3,3}}, + {{0x1f38,1},{0xec6,3}}, {{0x11b5,2},{0x2f5a,4}}, {{0xe21,1},{0xe0f9,3}}, {{0x27e0,4},{0x11b5,2}}, + {{0x2d509,5},{0x1969,1}}, {{0xe16,1},{0x11b5,2}}, {{0x28b3a,1},{0x307bb,1}}, {{0x32ab,6},{0x1dc7,5}}, + {{0xadc1,7},{0xcc9,2}}, {{0xe1f,3},{0x13e3,4}}, {{0x6637,10},{0xebb,3}}, {{0xae15,6},{0x2e29,3}}, + {{0xe83,6},{0xa2b7,6}}, {{0x171d2,5},{0x8441,4}}, {{0x2e26b,3},{0x1357,2}}, {{0x1cb1,5},{0x14a1,4}}, + {{0x9a8,1},{0x1dc0,3}}, {{0x1967,3},{0x104a,3}}, {{0xf4f,1},{0x2266,5}}, {{0x45,1},{0xd4,2}}, + {{0x30f21,4},{0x2b4f0,2}}, {{0x4ae5,5},{0x4aea,8}}, {{0x17f30,5},{0xfcea,5}}, {{0xe97,3},{0x4164,3}}, + {{0xc015,4},{0x4d1b,6}}, {{0x4781,3},{0x1debd,2}}, {{0x4137,6},{0xfdd,6}}, {{0x4519,4},{0x1889,2}}, + {{0x1e571,4},{0x1e57e,2}}, {{0x1133c,6},{0xe2b4,5}}, {{0x6c37,7},{0xec3,3}}, {{0x3a1b,6},{0x1244,8}}, + {{0x28b2,5},{0x4326,9}}, {{0x170ba,5},{0xcc8,1}}, {{0x486f,4},{0x2bae,3}}, {{0xf65,4},{0x1a6f,6}}, + {{0x9201,6},{0x23e1,3}}, {{0xa8e1,7},{0x28f8,5}}, {{0x30f4,4},{0xed6,2}}, {{0xe0f,1},{0x2e6ff,3}}, + {{0x20c41,7},{0xe11,1}}, {{0x5f1b,7},{0x5f22,6}}, {{0x246ab,5},{0x4618,3}}, {{0x7532,6},{0x16ad,7}}, + {{0xe5e,2},{0x10cb,4}}, {{0xf4f,1},{0xf23,3}}, {{0x1ad3,6},{0x1be9,3}}, {{0x5538,2},{0xb,1}}, + {{0x10e1f,4},{0xf24,2}}, {{0x2de63,3},{0x688,2}}, {{0xa9b2,4},{0xcc9,2}}, {{0x1969,1},{0x16c4c,4}}, + {{0x82c5,7},{0x1382,5}}, {{0x2afaf,4},{0xede,1}}, {{0x125d,6},{0x5fa5,5}}, {{0x7b,1},{0xc2,2}}, + {{0xb8d1,8},{0xccd,4}}, {{0x73d6,2},{0x11dc,3}}, {{0x1eaa7,3},{0x8cd3,3}}, {{0xf15,1},{0x29f3,3}}, + {{0x1687,4},{0x4188,3}}, {{0x3de1,5},{0x1fc7,3}}, {{0x5eda,9},{0x5ee3,4}}, {{0xf77a,8},{0xebb,3}}, + {{0x772d,9},{0xe6b,4}}, {{0x1cd3,2},{0x17487,3}}, {{0xeb5,2},{0xf62,3}}, {{0xcc8,1},{0x1f38,1}}, + {{0xb8dd,6},{0x1940,4}}, {{0x1457,7},{0x145e,9}}, {{0xe369,8},{0xf79,3}}, {{0x101b4,7},{0xe11,1}}, + {{0x10160,3},{0x5261,4}}, {{0xe3d2,2},{0x1fc7,3}}, {{0xf0d,2},{0x1b4f,5}}, {{0x1f5cc,4},{0x1040,3}}, + {{0x174a,4},{0xe67,2}}, {{0x3a29,4},{0x6479,4}}, {{0xff99,7},{0x1059,3}}, {{0xef7,3},{0x2872,4}}, + {{0xecc7,6},{0xeccd,5}}, {{0x10ce0,7},{0x1523,4}}, {{0xed9,2},{0xe6b,4}}, {{0xfe3,4},{0x372d,4}}, + {{0x7414,3},{0x1062,2}}, {{0x6e16,7},{0x6e1d,6}}, {{0xb451,4},{0x1c2a,4}}, {{0xf0d,2},{0x13e3,4}}, + {{0xe32,1},{0x1b8d5,6}}, {{0x29cf,3},{0x48d6,2}}, {{0x22b8,4},{0x6479,4}}, {{0xb3b5,5},{0x156e,4}}, + {{0xcc4,2},{0x12ba7,3}}, {{0x3199,3},{0x22320,3}}, {{0x8839,5},{0xf91,3}}, {{0xb3f1,3},{0x48d6,2}}, + {{0x520e,6},{0x1702,4}}, {{0x4781,7},{0x4788,7}}, {{0x2de63,3},{0x8c,2}}, {{0x101f,3},{0x153a,3}}, + {{0x9add,5},{0x1595,2}}, {{0x1183e,4},{0x6,1}}, {{0x11195,5},{0xec6,3}}, {{0xef7,9},{0xec6,3}}, + {{0x12f8,2},{0x1ffa,4}}, {{0x1019,6},{0x14f9,3}}, {{0x7a01,5},{0x123a3,5}}, {{0x2245b,5},{0xe1c,3}}, + {{0x29cf,3},{0x6cb4,3}}, {{0x2cc,2},{0xd,1}}, {{0x658e,8},{0x2872,4}}, {{0xf0a,3},{0x2075,3}}, + {{0x238a,4},{0xcc9,2}}, {{0x188c2,9},{0xe11,1}}, {{0xe71,1},{0x3315,3}}, {{0x7b,1},{0x55,2}}, + {{0x8889,6},{0xe69,6}}, {{0xe6f,3},{0xec3,3}}, {{0x4845,8},{0xe0a,1}}, {{0x127f,5},{0x36cd,4}}, + {{0xbb65,5},{0xccd,1}}, {{0x19b7,3},{0xc341,4}}, {{0x4853,3},{0x1ffa,3}}, {{0xb426,2},{0xe035,4}}, + {{0x111a,3},{0x9c91,8}}, {{0x1857,4},{0xf03,2}}, {{0x1206f,6},{0x12075,5}}, {{0xe1f,3},{0xf18,2}}, + {{0x1567,6},{0x1a6f,6}}, {{0x1711e,4},{0x12528,6}}, {{0x28f8d,5},{0x33d3,2}}, {{0x12d4,3},{0x1839,2}}, + {{0x18a84,6},{0x15fe,4}}, {{0x1367,3},{0x592e,5}}, {{0x1a291,5},{0xeee,3}}, {{0x10aa4,5},{0x10abf,6}}, + {{0xeb5,2},{0xef5,2}}, {{0xe97,3},{0xcbf,2}}, {{0xf478,7},{0x2dd7,4}}, {{0x16692,6},{0xeca,3}}, + {{0xe,1},{0xe6,2}}, {{0x4fec,8},{0xe92,3}}, {{0xe240,5},{0x68a1,5}}, {{0x11d0a,6},{0xeea,3}}, + {{0x1db3b,2},{0x2e72c,3}}, {{0xf4db,5},{0xe5e9,3}}, {{0xcc1,1},{0x11db,3}}, {{0x18f95,2},{0xe16,1}}, + {{0x488b,4},{0x100dd,4}}, {{0x1b1a6,7},{0xcc5,2}}, {{0xbb7d,4},{0xfb0,2}}, {{0xe08,1},{0xee9,2}}, + {{0x2d64d,4},{0x1dec0,2}}, {{0x11a4a,10},{0xe11,1}}, {{0x4911,6},{0x568c,5}}, {{0x753f,5},{0xe31,2}}, + {{0x10fc1,8},{0xcc9,2}}, {{0x11b3,5},{0x2209,10}}, {{0x250e3,5},{0x2477,3}}, {{0x478f,4},{0x44ad,4}}, + {{0xe1f,3},{0x1849,3}}, {{0xcd3,2},{0x3155,6}}, {{0xff78,7},{0xf91,3}}, {{0x21059,6},{0xe95,2}}, + {{0x9d65,7},{0x28f8,5}}, {{0x479d,4},{0x25d9,9}}, {{0xcc1,1},{0x83ae,7}}, {{0x7f45,5},{0x4c00,3}}, + {{0x30b91,2},{0xe71,1}}, {{0x159c2,5},{0x1098,2}}, {{0x1a66,1},{0x6,1}}, {{0x238a,5},{0x1155,2}}, + {{0xcc1,1},{0x28504,4}}, {{0x307ba,2},{0x307bc,2}}, {{0x5992,6},{0xe1b,4}}, {{0xef7,3},{0xe11,1}}, + {{0x111a,3},{0x4,2}}, {{0x70ad,3},{0xfdf,4}}, {{0x10cb,2},{0xe65,2}}, {{0x369,2},{0xd,1}}, + {{0x1ff6c,5},{0x9d43,4}}, {{0x9a8,1},{0x9498,5}}, {{0x848d,8},{0x44b3,4}}, {{0x46bf,1},{0x5,1}}, + {{0x6304,6},{0xe67,7}}, {{0x7559,6},{0xe22,2}}, {{0x1cfa,5},{0x1177,7}}, {{0x1537,4},{0x1b6d,4}}, + {{0x1689a,6},{0x137fe,4}}, {{0x1290,4},{0x8,1}}, {{0x2f71,4},{0x19e9c,5}}, {{0x127f,7},{0x4a01,3}}, + {{0x6ce0,5},{0xcc9,2}}, {{0x30f7,2},{0xe32,1}}, {{0x2f9b,4},{0x9635,4}}, {{0x14d7,6},{0x160b,4}}, + {{0x3c75,9},{0x1be9,3}}, {{0x19b7,3},{0x2b78,4}}, {{0x2de45,3},{0x1347,3}}, {{0x12bfc,4},{0xeee,3}}, + {{0xebe,4},{0x4f45,5}}, {{0x1e1b,3},{0x11a6,2}}, {{0x12862,6},{0x6792,4}}, {{0x2d62f,4},{0x74fb,2}}, + {{0x780a,5},{0x6de7,7}}, {{0x2260,4},{0xf91,3}}, {{0x953d,6},{0x9543,6}}, {{0x2939,4},{0x12a3,3}}, + {{0x369,2},{0x8d,1}}, {{0x1965e,6},{0x2370,3}}, {{0x7b,1},{0x6bb,2}}, {{0x1567,3},{0x142a,3}}, + {{0x25b5,10},{0xe69,5}}, {{0x11184,6},{0x1118a,5}}, {{0x2de63,3},{0x5de,2}}, {{0xab1,4},{0xab1,2}}, + {{0x399d,11},{0xec6,3}}, {{0x4773,4},{0xec3,3}}, {{0x18ae8,6},{0xf7a,2}}, {{0x2b4f2,2},{0xd1c,2}}, + {{0x1807,10},{0x1702,4}}, {{0xc159,4},{0xccd,1}}, {{0xe6f,3},{0xefa,2}}, {{0x24663,4},{0x248ff,3}}, + {{0xe11,2},{0x305a,5}}, {{0x48a,2},{0xf,1}}, {{0x33fb,7},{0x1663,4}}, {{0x41b5,5},{0xf02,2}}, + {{0x46af,3},{0xe7a,1}}, {{0x2b4ec,6},{0x18ee2,2}}, {{0x3089,5},{0xcd3,2}}, {{0x488b,9},{0x431c,5}}, + {{0xe78,1},{0xec0,3}}, {{0x1303,3},{0xcd3,1}}, {{0x7a01,9},{0xf86,3}}, {{0x4853,3},{0x148db,4}}, + {{0x7f41,4},{0x1fbe,3}}, {{0xef7,3},{0xb05c,5}}, {{0x6eb2,9},{0xef3,4}}, {{0x1ebf,3},{0x10555,6}}, + {{0x1b8db,5},{0xe95,2}}, {{0x712f,4},{0x3e23,4}}, {{0x4781,3},{0x2f65b,4}}, {{0x1025,1},{0xf16,2}}, + {{0x205a9,2},{0x205a9,3}}, {{0x14a7,4},{0x6cc7,5}}, {{0x1007,6},{0xa893,6}}, {{0x145b,2},{0x809a,3}}, + {{0xccb,2},{0x8f1c,5}}, {{0x10e77,5},{0xa,2}}, {{0x1efbe,5},{0x51b9,3}}, {{0x1832c,6},{0x4323,4}}, + {{0xcbf,2},{0xf86,3}}, {{0x6c76,6},{0x716c,4}}, {{0x2252,3},{0x4b12,4}}, {{0x101f,2},{0xe22,2}}, + {{0x7a31,8},{0x7a39,4}}, {{0x1314a,8},{0xcc9,2}}, {{0x83c1,7},{0x587c,5}}, {{0xcc8,1},{0x6ca7,3}}, + {{0x1977,3},{0x1805f,2}}, {{0x2858,5},{0xf7a,2}}, {{0x1747,4},{0x3d59,10}}, {{0xe97,4},{0x17276,6}}, + {{0x10fd7,5},{0x9b99,3}}, {{0x2de51,3},{0x1347,3}}, {{0xbfc1,5},{0x1be9,3}}, {{0x2006,3},{0x1b5c6,6}}, + {{0x11838,10},{0x6ccc,3}}, {{0x19b7,3},{0x2e32,3}}, {{0x1967,3},{0xcc3,2}}, {{0x73ed,4},{0xe67,3}}, + {{0x18372,5},{0x115a,3}}, {{0x1577,4},{0x1ad45,5}}, {{0x1fbf1,7},{0xf35,2}}, {{0x4199,5},{0x10156,6}}, + {{0x73ed,4},{0x5579,4}}, {{0xeee,3},{0x8,1}}, {{0xe21,1},{0xcddd,5}}, {{0x27e0,4},{0xc6cd,4}}, + {{0x18232,5},{0x1693,4}}, {{0x142d,3},{0xf91,3}}, {{0x1c91,6},{0xf80,9}}, {{0x2006,3},{0xe2f,1}}, + {{0x7414,3},{0xe22,3}}, {{0xf77,4},{0x8ab6,7}}, {{0x20ba,13},{0xe95,2}}, {{0x311a9,2},{0x78a3,2}}, + {{0x120f,3},{0xe0a,1}}, {{0x46bf,1},{0xf15,1}}, {{0x758d,9},{0xeed,4}}, {{0xcc8,1},{0xe0f9,3}}, + {{0x10e2c,2},{0xf24,2}}, {{0x1a6a5,6},{0xf91,3}}, {{0xe6f,3},{0x1077a,5}}, {{0xccd,1},{0x3695,4}}, + {{0x1fbe,3},{0xcc2,3}}, {{0x2986,3},{0x10db,7}}, {{0xcda0,4},{0x19cec,5}}, {{0xf77,4},{0xfb94,6}}, + {{0x3fd9,11},{0xe92,3}}, {{0xe99,1},{0x8129,4}}, {{0x479,2},{0xe,1}}, {{0x1ba5e,6},{0x1e8b,3}}, + {{0x3d39,5},{0xffec,5}}, {{0x11675,5},{0x15e9,3}}, {{0x19e9,4},{0x1b8b,6}}, {{0x2e271,3},{0xcd6,1}}, + {{0xdd8,6},{0x2e269,2}}, {{0x19e9,3},{0x1ebe,3}}, {{0x28c1,6},{0x146d,9}}, {{0xe25,2},{0x240b,6}}, + {{0x1d18,5},{0x1288,4}}, {{0x772d,6},{0x17cd,4}}, {{0x215f,8},{0x128c,4}}, {{0xe6f,3},{0x23aef,4}} + +}}; +constexpr std::array gptj_vocab = {{ + {0x205a9,1}, {0x205a1,1}, {0xcf6,1}, {0x2e292,1}, {0x30357,1}, {0x30a4e,1}, {0x307bb,1}, {0x2e273,1}, + {0x2e27d,1}, {0xc16,1}, {0x1357,1}, {0x20599,1}, {0xaf4,1}, {0xb74,1}, {0xcd6,1}, {0x45,1}, + {0xd,1}, {0x21,1}, {0xf,1}, {0xe,1}, {0x9f,1}, {0x8d,1}, {0x7b,1}, {0x69,1}, + {0x57,1}, {0x20579,1}, {0x7905,1}, {0x0,1}, {0xab1,1}, {0x11,1}, {0x78f9,1}, {0x20561,1}, + {0xe16,1}, {0xe08,1}, {0xf4f,1}, {0x19b9,1}, {0xedd,1}, {0x1a66,1}, {0xf11,1}, {0x4767,1}, + {0xe0f,1}, {0x46bf,1}, {0x7416,1}, {0x2ba5,1}, {0xf15,1}, {0xe33,1}, {0xe19,1}, {0x1969,1}, + {0x1057,1}, {0xe21,1}, {0xf0c,1}, {0xe99,1}, {0xe7a,1}, {0xede,1}, {0xe2f,1}, {0x1f875,1}, + {0x442d,1}, {0xb37b,1}, {0x28b33,1}, {0x1327,1}, {0x28b3a,1}, {0x30633,1}, {0xc,1}, {0x2eb37,1}, + {0x6,1}, {0xcc8,1}, {0xcc1,1}, {0x9a6,1}, {0x2,1}, {0x9a8,1}, {0xe71,1}, {0xe32,1}, + {0xcd3,1}, {0x1f38,1}, {0x9,1}, {0xcbd,1}, {0xcc7,1}, {0xb,1}, {0x8,1}, {0xccd,1}, + {0xf1d,1}, {0x5,1}, {0xe11,1}, {0x4,1}, {0xe09,1}, {0xe78,1}, {0xcb8,1}, {0x3,1}, + {0xe0a,1}, {0x1025,1}, {0x205a7,1}, {0x1,1}, {0x205a5,1}, {0x1307,1}, {0x2ad7d,2}, {0x78b5,2}, + {0xe4d,2}, {0x2b094,2}, {0x18ee0,2}, {0xddc,2}, {0x11840,2}, {0x2b088,2}, {0x78a3,2}, {0x3100f,2}, + {0x18ed6,2}, {0x2b0d0,2}, {0x2b0ac,2}, {0xc78,2}, {0x308c1,2}, {0x29979,2}, {0x30861,2}, {0xe59,2}, + {0x78a9,2}, {0xe3b,2}, {0x2e2b1,2}, {0x2b07c,2}, {0x2b05e,2}, {0x18efa,2}, {0x2e7da,2}, {0x308a3,2}, + {0xe41,2}, {0xd1c,2}, {0x18ec8,2}, {0xd1a,2}, {0x31be1,2}, {0x31bdf,2}, {0xc36,2}, {0x9af,2}, + {0x2e346,2}, {0x317b8,2}, {0x31bdd,2}, {0x31bdb,2}, {0x31bd9,2}, {0x31bd7,2}, {0x31bd5,2}, {0x319c9,2}, + {0x319c5,2}, {0x31bd3,2}, {0x2e866,2}, {0x30853,2}, {0x311af,2}, {0x31955,2}, {0x31bd1,2}, {0x31bcf,2}, + {0x31bcd,2}, {0x31bcb,2}, {0x31951,2}, {0x311a9,2}, {0x2b50b,2}, {0x2b50f,2}, {0x31bc9,2}, {0x31bc7,2}, + {0x31bc5,2}, {0x31bc3,2}, {0x31bc1,2}, {0x31bbf,2}, {0x3083b,2}, {0x317ac,2}, {0xbb4,2}, {0xe37,2}, + {0x30f51,2}, {0x18ecc,2}, {0x2e2b3,2}, {0x2b4fe,2}, {0xc26f,2}, {0xc27b,2}, {0x31bbd,2}, {0x317a4,2}, + {0x317a0,2}, {0x317cd,2}, {0x317c9,2}, {0xd18,2}, {0x2b4ee,2}, {0x31bbb,2}, {0x31bb9,2}, {0x31bb7,2}, + {0x31bb5,2}, {0x31bb3,2}, {0x31bb1,2}, {0x31baf,2}, {0x31bad,2}, {0x31bab,2}, {0x31ba9,2}, {0x31ba7,2}, + {0x31ba5,2}, {0x31ba3,2}, {0x31ba1,2}, {0x31b9f,2}, {0x31b9d,2}, {0x31b9b,2}, {0x31b99,2}, {0x31b97,2}, + {0x31b95,2}, {0x31b93,2}, {0x31b91,2}, {0x31b8f,2}, {0x31b8d,2}, {0x31b8b,2}, {0x30ec7,2}, {0x31b89,2}, + {0x31b87,2}, {0x31b85,2}, {0x31b83,2}, {0x31b81,2}, {0x31b7f,2}, {0x31b7d,2}, {0x31b7b,2}, {0x31b79,2}, + {0x31b77,2}, {0x31b75,2}, {0x31b73,2}, {0x31b71,2}, {0x31b6f,2}, {0x31b6d,2}, {0x31b6b,2}, {0x31b69,2}, + {0x31b67,2}, {0x31b65,2}, {0x31b63,2}, {0x31b61,2}, {0xaaf,2}, {0x31b5f,2}, {0xbb6,2}, {0x2b0aa,2}, + {0x9b5,2}, {0x9b1,2}, {0x2b511,2}, {0x2afc6,2}, {0xe47,2}, {0x2aff8,2}, {0xd7c,2}, {0x789d,2}, + {0x30f85,2}, {0x2afc8,2}, {0x2e7a2,2}, {0x18eca,2}, {0x2e84a,2}, {0xc273,2}, {0x2b0dc,2}, {0x18ee2,2}, + {0xc27f,2}, {0x2b0e8,2}, {0xbb8,2}, {0x2afe0,2}, {0xd7a,2}, {0x2e7c0,2}, {0x2afd4,2}, {0x2b4f2,2}, + {0xc279,2}, {0x30391,2}, {0xc287,2}, {0x3082b,2}, {0x2e79a,2}, {0x2b4f0,2}, {0xc38,2}, {0x2b0b0,2}, + {0xe5b,3}, {0x127f,3}, {0xfa5,2}, {0xcd3,2}, {0xccb,2}, {0xcc3,2}, {0x1bbf,5}, {0xed6,2}, + {0x10a3,3}, {0x6,2}, {0x1367,3}, {0x1567,3}, {0xa,2}, {0xef7,3}, {0xe2b,2}, {0xe86,2}, + {0xe22,2}, {0xcce,2}, {0xf7a,2}, {0x27e0,3}, {0xcc9,2}, {0x16a7,3}, {0xec6,3}, {0x111a,3}, + {0xefa,2}, {0x127f,4}, {0xed9,2}, {0xf1a,2}, {0x2d79,4}, {0xf89,3}, {0x5722,4}, {0xebe,4}, + {0xe83,3}, {0x1677,3}, {0x1d6bf,5}, {0xe67,2}, {0xfb0,2}, {0xe0d,2}, {0x1bbf,4}, {0xe6b,3}, + {0xe25,2}, {0xfe0,2}, {0xeee,3}, {0x113c,3}, {0x1ff7,3}, {0xe11,2}, {0xf77,4}, {0xe78,2}, + {0xed1,3}, {0xe89,2}, {0xe95,2}, {0x27ef,4}, {0xe6f,3}, {0xe97,3}, {0xe75,2}, {0xf0a,3}, + {0xf0f,2}, {0x113f,2}, {0x1977,3}, {0xf70,2}, {0x1150,2}, {0x1a07,3}, {0xe63f,4}, {0xde8e,4}, + {0x11b5,2}, {0x1153,2}, {0xcba,2}, {0x5538,2}, {0xcbf,2}, {0xe80,2}, {0x26da0,6}, {0x12e5,3}, + {0x10cb,2}, {0x3a1b,5}, {0x101f,2}, {0x7911,3}, {0x156a,3}, {0xfcb,2}, {0xf65,3}, {0xf13,2}, + {0x10c5,4}, {0x29cf,3}, {0x31b37,2}, {0x2240,4}, {0x959d,4}, {0xe69,5}, {0xe30,3}, {0xee9,2}, + {0x138e,2}, {0x7911,5}, {0xeb5,2}, {0x4853,3}, {0x1367,4}, {0xf0d,2}, {0x1967,3}, {0x48ea,6}, + {0x2afb6,3}, {0xed5,3}, {0xeab,2}, {0x2858,4}, {0x79c5,4}, {0x2e271,3}, {0x9a5,2}, {0x1303,3}, + {0x19b7,3}, {0x122d,2}, {0x2de7b,3}, {0xf16,2}, {0xf91,3}, {0x9,2}, {0x2e280,3}, {0x4765,3}, + {0xcc6,2}, {0x1007,5}, {0x70ad,3}, {0xe1f,3}, {0x1e8b,3}, {0x79f5,5}, {0xf77,3}, {0xf02,2}, + {0x478f,3}, {0x1062,2}, {0xe92,3}, {0x1847,4}, {0xcd2,2}, {0x10b8,2}, {0xe13,3}, {0x2966,5}, + {0x1c91,4}, {0xe7f,2}, {0x112b,5}, {0x1677,4}, {0xf59,2}, {0x23a53,5}, {0x1747,4}, {0x142d,3}, + {0xe22,3}, {0x1577,4}, {0x10cb,3}, {0xfb8,3}, {0xec3,3}, {0xe0b,2}, {0x120f,3}, {0x12d4,3}, + {0xe31,2}, {0x125d,5}, {0x4781,3}, {0xe65,2}, {0xe8a,2}, {0x314,2}, {0x46af,3}, {0x113c,5}, + {0x1131,3}, {0xed1,4}, {0x105f,3}, {0xf79,3}, {0x2a47,3}, {0x3642,2}, {0xebb,3}, {0x1059,3}, + {0xad6d,4}, {0xe5e,2}, {0x1cd3,2}, {0xcce,3}, {0xe7d,2}, {0xf1d,2}, {0x2be63,6}, {0x226fb,6}, + {0x10b4,4}, {0xe77,3}, {0xce96,4}, {0x2f71,4}, {0x2b701,6}, {0xcd4,2}, {0x5,2}, {0xf32,2}, + {0x10cb,4}, {0x1ebf,3}, {0xeed,4}, {0x28d0,4}, {0x142a,3}, {0x9a4,3}, {0xaf4,2}, {0xfdf,3}, + {0x29c0,3}, {0x12a3,3}, {0x1019,4}, {0x3559,4}, {0xf86,3}, {0x14f9,3}, {0x10d3,3}, {0xbb4,4}, + {0x2f2e,3}, {0x46bd,3}, {0x2939,4}, {0x2252,3}, {0xe77,2}, {0xfdf,4}, {0x158f,3}, {0x2d8d,3}, + {0x10cc,2}, {0xfe8,2}, {0x5534,4}, {0xfb0,3}, {0x417d,5}, {0x1692,2}, {0x296f,3}, {0x3537,2}, + {0x2968,3}, {0x3957,5}, {0x2399,4}, {0x39b9,4}, {0x1ba43,5}, {0xf63,2}, {0x31b35,2}, {0x2948,3}, + {0x168a,3}, {0x2f9b,4}, {0x2015,3}, {0x6c76,5}, {0x7935,5}, {0x6f1a,5}, {0x120c,3}, {0x2006,3}, + {0x16ad,3}, {0x4911,6}, {0x8,2}, {0x491e,5}, {0x2b707,6}, {0x1252,3}, {0x302,2}, {0x122e,2}, + {0x8428,3}, {0x10b9,2}, {0x413e,4}, {0x1081,4}, {0xb74,2}, {0x115e,5}, {0xf86,2}, {0x1040,3}, + {0xf62,3}, {0x1587,4}, {0xf35,3}, {0x11a6,2}, {0xe1c,3}, {0x59b4,3}, {0x114d,4}, {0x56c7,5}, + {0x1085,3}, {0xcc3,3}, {0x123e,3}, {0xe6b,4}, {0xc371,5}, {0x7414,3}, {0x7b51,4}, {0x20c39,7}, + {0x1290,4}, {0x2de75,3}, {0x7b45,4}, {0x13e3,4}, {0x14a2,3}, {0x143a6,6}, {0x17c0,2}, {0x109b,2}, + {0x712f,4}, {0xec0,3}, {0x810e,3}, {0x1487,4}, {0x11dc,3}, {0x11d9,3}, {0x2e269,2}, {0x2271,3}, + {0x1024,2}, {0x101f,3}, {0x1ade3,5}, {0x2b869,6}, {0xaf2,3}, {0x2d11,3}, {0x7911,6}, {0x12b5,2}, + {0x2966,4}, {0x1817,4}, {0xccc,2}, {0x2ee9,3}, {0xe0b,4}, {0xf24,2}, {0x1787,6}, {0xc392,7}, + {0xf35,2}, {0x11b3,4}, {0x28b15,7}, {0x26a7b,6}, {0x2b79,4}, {0x1bef,2}, {0x2bd91,5}, {0xee4,4}, + {0x125d,6}, {0x205a0,2}, {0x1977,4}, {0xf65,4}, {0x433d,4}, {0x1d7e,3}, {0x155e,3}, {0x1839,2}, + {0x1be9,3}, {0x20611,7}, {0x181b,3}, {0xfe6,2}, {0x2b500,6}, {0xcc1,2}, {0x569a,3}, {0x1230,3}, + {0x1489,2}, {0xb3f1,3}, {0x1c85,3}, {0xf80,2}, {0x5722,5}, {0xe5b,4}, {0x1050,3}, {0x442b,3}, + {0x5342,3}, {0x2236,3}, {0x286d,3}, {0x1089,3}, {0x2dec3,5}, {0xf77,5}, {0x15e7,5}, {0x1e9e,5}, + {0xde15,7}, {0x11cb,3}, {0x149c,3}, {0x2c1cf,6}, {0x9489,6}, {0xcc3d,3}, {0x1523,4}, {0x30f7,2}, + {0x72d3,3}, {0xcba,3}, {0x1783,4}, {0xe83,5}, {0xf4a,5}, {0x16c96,5}, {0x1877,5}, {0x1467,4}, + {0xcd3,3}, {0x1288,4}, {0xe69,6}, {0xeb4,3}, {0x2de63,3}, {0xfdd,4}, {0x7e99,6}, {0x9add,5}, + {0xefa,4}, {0x12f6,4}, {0x1857,4}, {0x309a7,4}, {0x7e81,7}, {0x1e9e,4}, {0x205e9,6}, {0x2280,2}, + {0x33d1,4}, {0xcd48,6}, {0x122b8,6}, {0x41e9,4}, {0x29f3,3}, {0x7eb1,6}, {0x145b,2}, {0x1780,3}, + {0xf1f,3}, {0x1567,6}, {0x1d3c,3}, {0x1537,4}, {0x317c1,4}, {0x14a7,4}, {0x309c,4}, {0x2454,3}, + {0x11541,4}, {0x168b,4}, {0xccd,4}, {0x2c2b3,6}, {0x1ebc,6}, {0x78d1,4}, {0x2006,4}, {0x1694e,5}, + {0xc7ff,6}, {0xfa6,3}, {0x2de5d,3}, {0x19e3,4}, {0x79b9,6}, {0x113c,4}, {0xf03,2}, {0x2b89,3}, + {0x1189,3}, {0x57cb,5}, {0xaf4,4}, {0x1bcd4,5}, {0x1054,3}, {0x1b4f,5}, {0x2dd7,4}, {0x2015,6}, + {0x360f,6}, {0x18ebc,3}, {0x12bf,4}, {0x1569,3}, {0x9a9,2}, {0x1ab88,8}, {0x1e08,5}, {0x22433,5}, + {0x1109,5}, {0xc6f7,4}, {0x1fc7,3}, {0xb19c,4}, {0x2e29,3}, {0x18b4,3}, {0x794d,6}, {0x1a71,3}, + {0x1dee,2}, {0x4f1c,5}, {0xde0a,5}, {0xcbb,2}, {0x49a6,3}, {0x15af,3}, {0x2df3b,4}, {0x4773,4}, + {0xeca,3}, {0xf8f,4}, {0x16c4c,4}, {0x1b962,5}, {0xe6c,3}, {0x28b31,3}, {0xd131,4}, {0x1088,4}, + {0x22b2,3}, {0x27dc,4}, {0x2560,4}, {0x2ba37,6}, {0x180a,3}, {0x1467,5}, {0xf20,2}, {0x162c,3}, + {0x1153,3}, {0x12b2,5}, {0x6cde,4}, {0x1b41,4}, {0x35a3,3}, {0x9a8,2}, {0x1593,3}, {0x1b8c9,5}, + {0x23e1,3}, {0x30e53,3}, {0xb1c9,7}, {0xcb7,2}, {0x1847,5}, {0x1569,2}, {0xcc4,2}, {0x5534,6}, + {0x1047,3}, {0x1790,3}, {0x231eb,7}, {0x2d1f,3}, {0x28c1,4}, {0xeecc,7}, {0x2de57,3}, {0x6ff7,5}, + {0x30e73,3}, {0xe60,2}, {0x16e3,4}, {0x153a,3}, {0x1393,3}, {0x17f7,6}, {0x2c85,2}, {0xf12,3}, + {0x138e,3}, {0x2c59,4}, {0x3a53,4}, {0x168e0,5}, {0x1373,2}, {0x122d,3}, {0x2e8cf,5}, {0x4516,3}, + {0x6d46,6}, {0x3034d,2}, {0x1252,5}, {0x13a7,7}, {0x41e8,5}, {0x4f79,3}, {0x3,2}, {0x1b131,5}, + {0x168a,5}, {0x1e62,4}, {0x1155,2}, {0x121c,3}, {0x3d39,5}, {0x21e33,6}, {0x283aa,5}, {0x4383,5}, + {0x1f38,4}, {0xf9b,5}, {0x188a,4}, {0x3203,5}, {0x178a,3}, {0x1d7e8,7}, {0xa9a6,4}, {0xed5,4}, + {0x2006,6}, {0x142d4,6}, {0x1007,6}, {0xef7,4}, {0x102b,3}, {0x191e7,6}, {0xcfc6,5}, {0x2de51,3}, + {0x1b9d,4}, {0x3641,3}, {0x2c637,6}, {0x1ac7,3}, {0x9ff9,6}, {0xebe,5}, {0xebc,2}, {0x70ad,4}, + {0x1fbe,3}, {0x26d99,7}, {0x112b,4}, {0x7b45,5}, {0x1d317,9}, {0x3a29,4}, {0xec7,2}, {0x1423e,5}, + {0x2e83c,8}, {0xe61,3}, {0x189f,3}, {0xe3f8,6}, {0x20c21,6}, {0x1372,4}, {0x9fe1,7}, {0x2948,4}, + {0x4f91,5}, {0x1e65,3}, {0x4bfa,3}, {0x236c,4}, {0xaaf,3}, {0x12c3,4}, {0x1b80,3}, {0x1601,3}, + {0x1607,5}, {0x120b,4}, {0x10b4,6}, {0x1722,5}, {0x1b2e1,6}, {0x15e9,3}, {0x1cd5,4}, {0x2de4b,3}, + {0x3e0e,3}, {0x41a7,4}, {0x491e,7}, {0x146d,4}, {0x2698d,7}, {0x11d2,3}, {0x122a,6}, {0xce92,8}, + {0x5117,5}, {0xf57,2}, {0xe0f,2}, {0x3b09,4}, {0xc29d,3}, {0x31741,3}, {0x14ff,3}, {0x1cfa,5}, + {0x1132,2}, {0x24f2,5}, {0x1caf,7}, {0x10a3,4}, {0x30352,2}, {0x3075,3}, {0x1347,3}, {0xfa5,3}, + {0x7e39,9}, {0x18f7,4}, {0xb34,2}, {0x2b5b7,5}, {0xf4db,5}, {0x30ddb,3}, {0x2afb6,4}, {0xce8e,4}, + {0x2858,5}, {0x3118,5}, {0x1d18,5}, {0x12064,5}, {0x15399,2}, {0x2b5f9,6}, {0xe936,8}, {0x413d,5}, + {0x11b3,5}, {0x38ec,3}, {0x1bec,5}, {0x2e834,8}, {0x23863,7}, {0x1ffa,3}, {0x1702e,4}, {0xab1,2}, + {0xfa9,4}, {0x22f03,6}, {0x1189,4}, {0x1d65,3}, {0x2de45,3}, {0xffc,3}, {0x111c,2}, {0x6411,4}, + {0x1177,7}, {0x27e0,4}, {0x3bdb,6}, {0x2bb5d,6}, {0x1692,5}, {0x16642,6}, {0x1ce6,5}, {0xf84,5}, + {0x1557,4}, {0x127c,3}, {0x1de7,3}, {0x2501,5}, {0x10f2,5}, {0x3080,4}, {0xaea5,8}, {0xeb9,5}, + {0xc39d,6}, {0x2bae5,6}, {0x1ea1,5}, {0x26d84,7}, {0x2b767,6}, {0xe5e7,4}, {0x3b5d,5}, {0x11e07,5}, + {0x2c21,4}, {0xec5,4}, {0x3521,6}, {0x237d,2}, {0x128da,7}, {0x141a,2}, {0xae69,5}, {0x4ee8,4}, + {0x809a,3}, {0x8666,2}, {0xdd65,5}, {0x5269,6}, {0x4f29,5}, {0x15ec,3}, {0x12be,5}, {0xe0c,3}, + {0x10d2,4}, {0x82b9,6}, {0x1e08,6}, {0x277e,2}, {0x955a,4}, {0x1f25,4}, {0x213e9,5}, {0x450b,4}, + {0xef5,2}, {0x1392,3}, {0x237b,5}, {0xe6f,4}, {0x20f6,6}, {0xf8e,3}, {0xfc7,3}, {0x138e,4}, + {0xfbf,5}, {0x16fd4,5}, {0x150d0,6}, {0xcc14,7}, {0x990b,4}, {0x2bb69,6}, {0x12fe,2}, {0x141b,4}, + {0x1099,4}, {0x10b7,2}, {0x2e875,3}, {0x1a63,3}, {0x5e3e,5}, {0x39bd,4}, {0x15fe,4}, {0x1632,5}, + {0x12a1,4}, {0x9219,5}, {0x1b50f,6}, {0x2deff,5}, {0x260,2}, {0x12bfa,6}, {0x2872,4}, {0x486f,4}, + {0x121a6,4}, {0x2f94,3}, {0xdfb0,5}, {0x1d75,3}, {0x104c,2}, {0x58a8,5}, {0xee6c,5}, {0x1807,5}, + {0xe6b,2}, {0x1f7f,5}, {0xef7,7}, {0x19e7,5}, {0x23d2,3}, {0x3a45,5}, {0x1d7d,3}, {0x3976,3}, + {0xbb4,6}, {0x4e43,4}, {0x44ad,3}, {0x453b,4}, {0x3372,4}, {0x10c5,5}, {0xdaa5,7}, {0x7950,3}, + {0x465b,5}, {0x2dbf,5}, {0xd086,3}, {0x9bd1,3}, {0x10bb,5}, {0x2b61d,6}, {0x101e,4}, {0x116ea,4}, + {0x2b85d,6}, {0xefa,3}, {0x2b46,4}, {0xf34,2}, {0x122a,9}, {0x26a66,7}, {0xaf4,8}, {0x1518e,6}, + {0x143c,4}, {0x1497,5}, {0xb74,3}, {0x115e,7}, {0x1230c,2}, {0x85b9,8}, {0x3185,7}, {0x26f52,7}, + {0x12a9,3}, {0x73d6,2}, {0x9add,6}, {0xc2d7,7}, {0x7e69,8}, {0xdfac,5}, {0x1859,4}, {0xc80d,4}, + {0x4618,3}, {0x4519,4}, {0x30c33,4}, {0xcd6,2}, {0x73ed,4}, {0x1ccd,5}, {0x3089,5}, {0x1081,7}, + {0x1064,3}, {0xf70,5}, {0x2091,4}, {0x129ac,6}, {0x19f7,4}, {0x124c,6}, {0xc3d0,3}, {0x492e,3}, + {0x27ed3,7}, {0x4ef5,4}, {0x22a3,2}, {0x12090,8}, {0x1467,6}, {0x5e58,6}, {0x1d287,9}, {0xef3,4}, + {0x7602,4}, {0x9b99,3}, {0xf53,2}, {0x62ea,5}, {0x1d7e8,9}, {0x3965,6}, {0x157b,3}, {0x2bb4,2}, + {0x5e94,5}, {0x11d5,5}, {0x1f07,4}, {0x20f6,5}, {0x1687,4}, {0x14e96,6}, {0x3019,6}, {0x2e2c,3}, + {0x2075,3}, {0x4597,5}, {0x1004,3}, {0x3a0d,7}, {0x4665,4}, {0x4164,3}, {0x1cf3,3}, {0xb410,4}, + {0x1e9e,8}, {0xec43,7}, {0xcd1,2}, {0x1c82,6}, {0x488b,4}, {0x3173e,3}, {0xcd53,7}, {0x4f36,5}, + {0xf23,3}, {0x1a1a7,5}, {0x2fc1d,3}, {0x4c37,5}, {0x6480,5}, {0xee69,8}, {0x2489,5}, {0x6e53,4}, + {0x153e6,6}, {0x109,2}, {0x9351,5}, {0xfe3,4}, {0x2269,4}, {0x2,2}, {0xed1,5}, {0x183a,3}, + {0x775c,4}, {0xe61,2}, {0xc93e,6}, {0x44b3,4}, {0x7a14,4}, {0x6008,3}, {0x1849,3}, {0x7b72,3}, + {0x1417,8}, {0x780a,4}, {0xf3a,3}, {0x10f4,4}, {0x115a,3}, {0x950d,6}, {0xc015,4}, {0x17ec,4}, + {0x23a1b,8}, {0x39b9,8}, {0xa659,5}, {0x1d3c,5}, {0x43fb,3}, {0xa701,6}, {0x4833,4}, {0x2467,4}, + {0x1663,3}, {0x1827,5}, {0xf50,3}, {0xe563,5}, {0xd5d5,6}, {0x31b39,2}, {0xf69,3}, {0x1d54,6}, + {0x7fa1,9}, {0x2e235,4}, {0xb74,4}, {0x216e1,8}, {0x126a,4}, {0xefdf,6}, {0x15e9a,5}, {0x1020c,6}, + {0x43fd,4}, {0xcf37,6}, {0x753f,5}, {0x26d7d,7}, {0x269da,5}, {0x591d,5}, {0xf194,3}, {0x2c643,6}, + {0x666,2}, {0x11d5,7}, {0x66c2,3}, {0x2bf53,6}, {0x62f3,4}, {0x4137,5}, {0x6644,5}, {0x6452,4}, + {0x10e7,5}, {0x1be,2}, {0x1943,2}, {0x3444,6}, {0x1687,6}, {0x1d32,3}, {0xf18,2}, {0x70af,2}, + {0x1b03,3}, {0x48d3,2}, {0x114d,5}, {0x2b83f,6}, {0x288b,2}, {0x22e33,8}, {0xed6,3}, {0x1663,4}, + {0x6479,4}, {0x602c,5}, {0xfdd,6}, {0xebbf,6}, {0x1154c,4}, {0x1019,6}, {0x3694,3}, {0x1050,4}, + {0x39d5,7}, {0x14ab,4}, {0x10b9,3}, {0x52d8,3}, {0x1231,4}, {0x1bd,2}, {0x10f5,3}, {0x15d1,5}, + {0x2de93,4}, {0x1088,9}, {0x1777,5}, {0x9051,7}, {0x6d42,4}, {0x1965e,5}, {0x4132,5}, {0x1647,5}, + {0xb379,3}, {0x183b,3}, {0xcbe,3}, {0x3115,8}, {0x1dbd,6}, {0x2c15,3}, {0xc16,2}, {0x7a01,5}, + {0x8c79,7}, {0x3640,4}, {0x280ee,5}, {0x353d,5}, {0x122a,11}, {0x8199,7}, {0x225e,6}, {0x31744,3}, + {0x1e62,6}, {0x1c37,6}, {0x1166,3}, {0x128c,4}, {0x7b2d,5}, {0x149aa,5}, {0xff6d,5}, {0x2c3b,5}, + {0x104a,3}, {0x3a7d,6}, {0x1d66e,9}, {0xb69d,3}, {0x4225,4}, {0x9ff4,5}, {0x1524,3}, {0x17030,2}, + {0xac05,7}, {0xcdf8,7}, {0x7d99,4}, {0x3075,4}, {0x94ad,6}, {0x247a,9}, {0x1d003,5}, {0x3d63,5}, + {0x32ab,6}, {0xe3d,4}, {0x7d0d,6}, {0x31f8,3}, {0x2c639,4}, {0x2514,4}, {0xfa5e,4}, {0x1a27,4}, + {0x22e5,4}, {0xf77,6}, {0xcffd,8}, {0x27d7,2}, {0x30311,3}, {0x16f7,6}, {0x30e6b,3}, {0xcd5e,11}, + {0x26d2,8}, {0x62dd,4}, {0x9da1,5}, {0x1b023,7}, {0x7de9,2}, {0xf04,2}, {0x39b9,12}, {0x19076,9}, + {0x3559,5}, {0x16d7,6}, {0x1a7aa,5}, {0x1d72,7}, {0xead,3}, {0x3123,6}, {0x1ac,2}, {0x336f,7}, + {0x2177,5}, {0x147f2,7}, {0x4287,5}, {0x20c01,8}, {0x21ef3,7}, {0x237b,8}, {0x256a,8}, {0x6bda,6}, + {0x2e193,4}, {0xb15d,7}, {0xae75,7}, {0xd084,5}, {0x12fd,3}, {0x37c1,7}, {0x1547c,6}, {0xd22e,8}, + {0x1b2bd,5}, {0x16a7,5}, {0x4a01,3}, {0xc6ec,4}, {0x13dc,5}, {0x3eb3,8}, {0x26bbd,7}, {0x1d26c,5}, + {0x2dec5,3}, {0x239eb,5}, {0x6d05,6}, {0x3032f,3}, {0x74f3,2}, {0x1f16,5}, {0xf8,2}, {0xdfb7,8}, + {0x6c88,5}, {0x2b84,2}, {0x136ee,5}, {0x1827,4}, {0x14356,6}, {0x647d,8}, {0x22b8,4}, {0x2de3f,3}, + {0x14158,6}, {0x8c91,6}, {0xfe86,6}, {0xcfc6,6}, {0x7030,6}, {0x12308,6}, {0xe92,5}, {0x3933,4}, + {0x1208,4}, {0x5ead,5}, {0x154f4,5}, {0x1081,5}, {0xfbb,4}, {0x1df9,5}, {0x2c54d,4}, {0x554e,7}, + {0x3a1b,6}, {0x2b6ad,6}, {0x205a1,2}, {0x566f,4}, {0x103e,5}, {0x28e13,7}, {0x2ed7,7}, {0x2afbd,3}, + {0x17cd,4}, {0x478f,4}, {0x2babb,6}, {0x1c73,5}, {0x3107,5}, {0x1b3f8,5}, {0x221ab,8}, {0x391f,5}, + {0xebe,3}, {0xeea,3}, {0x206,2}, {0x2e21d,4}, {0x17f7,8}, {0x595e,6}, {0x10c3b,7}, {0x7929,4}, + {0x1724a,6}, {0x215f,13}, {0xc3d0,4}, {0x6c83,5}, {0x11a6,3}, {0x1607,8}, {0xeed,2}, {0xeba9,6}, + {0x4a44,5}, {0x2261,3}, {0x5d13,8}, {0x1877,7}, {0x2d87,6}, {0x7d31,5}, {0x1cdc,6}, {0x4a5f,4}, + {0x151b6,6}, {0xacdd,6}, {0x1927,4}, {0x2865f,6}, {0x74fc,2}, {0x824d,4}, {0x1b413,6}, {0x2e26b,3}, + {0x1ebc,8}, {0x72cf,4}, {0x13c3,4}, {0xb37c,3}, {0x23df,5}, {0x1096,3}, {0xcc8,2}, {0xe4c9,6}, + {0x1702,4}, {0x19643,5}, {0x1897,5}, {0xc05d,4}, {0x1510,4}, {0x1747,5}, {0x129a,6}, {0x1a9a,4}, + {0x431f,2}, {0x4bff,4}, {0x1944,3}, {0x3949,6}, {0x1481a,6}, {0x2384b,8}, {0xf9f8,6}, {0x2e241,4}, + {0x104a0,8}, {0x53d5,8}, {0xe1b,4}, {0x8441,4}, {0x6d1f,5}, {0x1f7c,3}, {0x1f114,5}, {0x10e77,5}, + {0x1ffa,4}, {0xaf2,4}, {0x3145c,3}, {0x41b5,5}, {0x1967,4}, {0x6ca7,3}, {0x10172,7}, {0x2e895,2}, + {0xc6bc,4}, {0x53c2,3}, {0xce83,4}, {0x1773,4}, {0x5992,6}, {0x1e40,4}, {0xe936,11}, {0x308f7,3}, + {0x2285b,5}, {0x20ba,10}, {0x1b5cc,6}, {0x23c4b,3}, {0x1c3f7,5}, {0x3b49,6}, {0x1817,7}, {0xdd8,6}, + {0x12d4,4}, {0x496c,5}, {0x13014,7}, {0x15692,5}, {0x74f9,2}, {0x1667,5}, {0xf0a,4}, {0x8829,6}, + {0x551a,7}, {0xe138,5}, {0x5541,6}, {0x5604,9}, {0x44b2,5}, {0x6c42,6}, {0x13eec,5}, {0xd,2}, + {0xeaa,2}, {0x6a0f,4}, {0x49a0,5}, {0x246d7,4}, {0x2c83,4}, {0xab1,4}, {0x283aa,6}, {0x473b,5}, + {0xdd0a,3}, {0x1b6a,6}, {0x1e62,5}, {0xb34,4}, {0x2b78,4}, {0x8abd,9}, {0x536d,9}, {0x2c6a,5}, + {0x12c3,5}, {0x1f4,2}, {0x3381,3}, {0x431c,5}, {0x82d5,5}, {0xfbb,3}, {0xe0bf,6}, {0x18dea,5}, + {0x1524c,6}, {0xd1cb,8}, {0x8b5e,5}, {0x1bf0,2}, {0x235b3,8}, {0xe138,6}, {0x1937,4}, {0x20bed,3}, + {0x14fea,7}, {0x27e0,5}, {0x9345,5}, {0x416f,5}, {0x1076,3}, {0xcc5,2}, {0x159e0,5}, {0x355b,3}, + {0x4921,4}, {0x281f,5}, {0x329d,5}, {0xfa2f,9}, {0x7998,4}, {0x550d,5}, {0x7,2}, {0x1077,6}, + {0x23af3,8}, {0x3433,5}, {0x269da,7}, {0x2e217,4}, {0x21ca9,5}, {0x1267,4}, {0x169d,4}, {0x29c0,4}, + {0x1001,3}, {0x21a5,5}, {0x1af54,6}, {0x479d,4}, {0x2b86,4}, {0xecb,2}, {0x2e223,4}, {0xeda3,6}, + {0x1b8b,6}, {0xf93,5}, {0x12e5,5}, {0x1258,5}, {0xe7f,4}, {0x55,2}, {0x6533,8}, {0x1cd4a,8}, + {0x164bc,7}, {0x6cc4,4}, {0x1a84,5}, {0x5136,5}, {0x10238,6}, {0x1d76e,5}, {0x14932,6}, {0x152,2}, + {0x7949,4}, {0x2c235,6}, {0x2c30d,6}, {0x665e,9}, {0x1007,7}, {0x4574,3}, {0x140fe,7}, {0x17661,2}, + {0x249f,3}, {0x5669,3}, {0x3356,4}, {0x1d0,2}, {0xf28,7}, {0x7f41,4}, {0x3441,9}, {0x2e22f,4}, + {0x141f,4}, {0x13e4,3}, {0x750b,4}, {0x5715,6}, {0x1c0f,3}, {0x20c01,7}, {0x9408,4}, {0x1c7b,5}, + {0x19e7,6}, {0x2e8a7,5}, {0x34d7,4}, {0x1f7b,4}, {0xd081,8}, {0x45c7,2}, {0x73b9,5}, {0x28df,5}, + {0x2c031,6}, {0x28b2,5}, {0xe0f9,3}, {0x149f,3}, {0x30c35,2}, {0x15fc,2}, {0x112b,6}, {0x9b01,8}, + {0x2f2e,4}, {0x11e09,3}, {0xf72,5}, {0x316f3,2}, {0x2f47,5}, {0x1d76a,9}, {0x2de75,4}, {0x1019,9}, + {0x4775,2}, {0x5f35,8}, {0x78ed,2}, {0x3555,4}, {0xbf50,4}, {0x31b3b,2}, {0x1e910,4}, {0x27b53,7}, + {0x52f8,6}, {0x3bcd,4}, {0x3957,6}, {0x14e5d,5}, {0x16b7,5}, {0x7bd9,3}, {0x1e2,2}, {0x1ea3,3}, + {0x197d8,6}, {0x19856,6}, {0x18023,3}, {0xfb4,4}, {0x30ba,7}, {0x1db45,2}, {0x26bf5,7}, {0x22a2,4}, + {0x1b4fd,7}, {0x2bd5,4}, {0x7a91,6}, {0x30ad,6}, {0xdc01,4}, {0x1905b,6}, {0x7a0f,4}, {0x16048,6}, + {0x22d43,8}, {0xecc7,6}, {0x23ed3,8}, {0x1092,7}, {0x39b3,5}, {0x74f6,2}, {0x1ebc,5}, {0x75db,4}, + {0x2ded5,6}, {0x1278,4}, {0x28f8,5}, {0xd48,4}, {0x1ff7,7}, {0x17cc,4}, {0x6cb4,3}, {0x138d,5}, + {0x797d,5}, {0x5d13,11}, {0x2df3b,5}, {0x22f03,7}, {0x2e211,4}, {0x6c83,10}, {0xff6d,7}, {0x2ffd,6}, + {0x2b4e9,2}, {0xbfca,3}, {0x6171,5}, {0x2f41,5}, {0x5988,3}, {0x12090,10}, {0x1461,4}, {0x3ad1,8}, + {0x4201,8}, {0x3329,5}, {0x1189d,4}, {0x3591,6}, {0x592a,6}, {0x13f50,6}, {0x247a,5}, {0xaeb1,5}, + {0x4aef,3}, {0x7979,4}, {0x1577,7}, {0x24e3,5}, {0x328f,9}, {0x2ec9,7}, {0xd013,8}, {0x772d,5}, + {0xff99,7}, {0x1ce97,6}, {0x20641,8}, {0x59b9,6}, {0x532c,9}, {0x77f0,4}, {0x677c,9}, {0x51c8,5}, + {0x10cb4,4}, {0xb199,5}, {0x1024,7}, {0xc14,3}, {0x7a36,3}, {0x27907,7}, {0xee59,3}, {0x16fd6,3}, + {0x1088,3}, {0x22bfb,8}, {0x22063,8}, {0xadf1,5}, {0xda6e,8}, {0xebca,8}, {0x4952,6}, {0x6ec3,3}, + {0x2e32,3}, {0x1702e,6}, {0x4f02,5}, {0x2224,4}, {0x5989,2}, {0x386f,4}, {0x20d79,6}, {0x2917,3}, + {0x6e71,8}, {0x59d3,7}, {0x16b7,4}, {0x9a7,2}, {0x79dd,7}, {0xc80a,7}, {0x113e,3}, {0x1bb75,6}, + {0x1caae,9}, {0xe97,4}, {0x70a6,3}, {0x34b1,5}, {0xd28b,5}, {0x1e77,3}, {0x155b,3}, {0x168f,2}, + {0x1568e,9}, {0x17e7,6}, {0x5f90,6}, {0xb481,4}, {0xe88,3}, {0x48da,2}, {0x10e3,4}, {0x2de81,4}, + {0xbfc1,5}, {0xbd26,3}, {0x16f16,10}, {0x6130,6}, {0x251a,5}, {0x7c3d,4}, {0xab9f,3}, {0xc954,5}, + {0x9405,7}, {0x319a,3}, {0x27794,7}, {0x2c5b,4}, {0x391f,7}, {0x2bc8f,5}, {0x28f5,5}, {0x103f0,11}, + {0x175c,3}, {0x45ee,3}, {0x17dd9,3}, {0x2182,4}, {0x87c9,8}, {0x31444,2}, {0x130be,6}, {0xc159,4}, + {0x6b2b,6}, {0x57cb,6}, {0x1c2a,4}, {0x3bbf,8}, {0xee69,11}, {0x4853,4}, {0x1380,5}, {0x225ab,6}, + {0x152d4,4}, {0x239e,5}, {0xcf21,5}, {0x3d47,6}, {0x1d30e,8}, {0x75ce,4}, {0x2b695,6}, {0x226f3,8}, + {0x3185,9}, {0xb02a,4}, {0x780c,2}, {0x3ce0,5}, {0x279a1,7}, {0xeacd,5}, {0x1b0d,3}, {0x6b8c,5}, + {0x1005f,9}, {0x578a,5}, {0xa641,6}, {0x164,2}, {0x10ba,6}, {0x1c76,3}, {0xfc8,3}, {0xce50,6}, + {0x4597,4}, {0xb931,5}, {0x8859,8}, {0x3caa,3}, {0x5261,4}, {0x1244,7}, {0x1208,7}, {0x9051,10}, + {0x13c8a,10}, {0x14e50,6}, {0x4a86,4}, {0x4fa8,3}, {0x2c0d9,6}, {0x305a,5}, {0x13208,7}, {0x1641c,10}, + {0x2ba3d,6}, {0xb289,7}, {0x4415,3}, {0x90f9,7}, {0x3155,6}, {0x18020,6}, {0x4c16,3}, {0x5536,4}, + {0x2bfd1,6}, {0x59c6,5}, {0x1222c,9}, {0x45a5,6}, {0x7c25,4}, {0x136f,2}, {0x12e5,4}, {0x2c16f,6}, + {0xb495,4}, {0x4d85,4}, {0x2f225,4}, {0x190fd,9}, {0x281c,8}, {0xe89,3}, {0x89e5,8}, {0x2b833,6}, + {0x2e27e,2}, {0x3a61,5}, {0x1917,4}, {0x3ff5,6}, {0x534e,5}, {0x1c9df,8}, {0x2e870,3}, {0xaf4,16}, + {0x6c48,4}, {0x9ff9,7}, {0x61cc,5}, {0x54cc,5}, {0x116f,8}, {0x1ee0,3}, {0x2f71,7}, {0x7efc,4}, + {0xe37,4}, {0x1830e,5}, {0x2f5a,4}, {0x468,2}, {0x56ee,6}, {0x48d6,2}, {0x35a2,4}, {0xeb7,7}, + {0x1265,5}, {0x15ed6,5}, {0x2afb6,5}, {0x8bb9,7}, {0x28356,7}, {0x5290,9}, {0x1ce7,4}, {0x7e69,9}, + {0x1d72,10}, {0xd15f,3}, {0x10b6a,5}, {0x19f94,9}, {0xb571,7}, {0x27f12,7}, {0x16a7,6}, {0x17146,4}, + {0x2b5b1,6}, {0x2781,5}, {0x794f,4}, {0xccd,3}, {0x33d3,2}, {0x44,2}, {0x10587,5}, {0x6593,7}, + {0x2522,5}, {0x3203,7}, {0x14572,6}, {0xa6e9,7}, {0x188,2}, {0x24253,8}, {0x27f5f,7}, {0xcb6,3}, + {0x1bd67,5}, {0x13b7,12}, {0xfcb,3}, {0x7351,4}, {0x12ba,4}, {0x10a5,2}, {0xe3f8,7}, {0x48dd,5}, + {0x2bad,4}, {0x27ce9,5}, {0x220db,6}, {0x1254,6}, {0xaa6d,10}, {0x1ebe,3}, {0x1997,4}, {0x1e2f0,2}, + {0x18d7,9}, {0xc36,4}, {0xccaa,4}, {0x189b,4}, {0x1667,7}, {0x2dedb,6}, {0x21c21,8}, {0x7392,5}, + {0x24e8,4}, {0x102d6,6}, {0x10c3d,5}, {0x1b4f,7}, {0xe29,2}, {0x1dea,6}, {0x791d,7}, {0x10797,7}, + {0x702b,11}, {0x2e87a,5}, {0x935d,9}, {0x17038,6}, {0x4187,3}, {0x29fc,5}, {0xe16,3}, {0x1d719,7}, + {0xeb4,2}, {0xa10d,8}, {0x1947,5}, {0x2fc18,3}, {0x5a21,7}, {0x146ee,5}, {0x1889,2}, {0x11d99,5}, + {0x3965,5}, {0x1e919,5}, {0xb5ad,5}, {0x167f,7}, {0x221fb,8}, {0x127f,5}, {0x2476,4}, {0x1766e,6}, + {0x27ef,5}, {0x306d,6}, {0x2b9d,3}, {0x30f4,4}, {0x12d4,5}, {0x31a1,11}, {0x7a39,4}, {0x292a,8}, + {0x2182,7}, {0xbdb1,5}, {0x11963,6}, {0x5bc,2}, {0x27bca,7}, {0x5ea9,3}, {0xbba1,4}, {0x282ae,7}, + {0xe7f,3}, {0xdfc9,4}, {0x2b0e4,6}, {0x1542c,7}, {0x4f50,6}, {0x26d1b,7}, {0x595e,8}, {0x2e28b,2}, + {0x28932,7}, {0x80f1,8}, {0x5edd,6}, {0x3de1,5}, {0x449f,4}, {0x53d5,9}, {0x23063,7}, {0x8241,8}, + {0x13e1,5}, {0x445b,2}, {0x1af2,5}, {0x6c42,10}, {0x2b7a,3}, {0x12f8,2}, {0x9e55,4}, {0x1bf6,5}, + {0xe0eb,5}, {0x1369,2}, {0x1e64,3}, {0xf205,4}, {0x8439,5}, {0x21e63,8}, {0xee9,4}, {0x7a79,6}, + {0x2beab,6}, {0x1c0a,6}, {0x1aa4d,9}, {0xf9d,3}, {0x1a5e,3}, {0x205eb,4}, {0x951c,3}, {0x2e3d,9}, + {0x1e08,9}, {0x278f,6}, {0x2dee1,6}, {0x4d6f,6}, {0x32c7,12}, {0x20a19,5}, {0x4d6f,9}, {0x4845,8}, + {0x4ef1,4}, {0x1df9,6}, {0x176,2}, {0x662a,6}, {0x9525,6}, {0x353d,7}, {0x5dd0,3}, {0x10a,2}, + {0x1837,5}, {0x4461,2}, {0xbb89,4}, {0x15a7,6}, {0x5527,11}, {0x289a2,7}, {0x1529c,8}, {0x4b55,5}, + {0x1ba9,4}, {0x1cb8f,7}, {0x1e53,7}, {0x10a83,6}, {0x1bcd4,9}, {0x23beb,8}, {0x40d5,6}, {0x102f3,9}, + {0x18fc2,3}, {0x12858,7}, {0x12858,10}, {0x18a70,6}, {0x277a,3}, {0x217d,12}, {0x11373,4}, {0x12e,2}, + {0x190e6,3}, {0x759a,5}, {0x15558,6}, {0x2de87,4}, {0x20881,7}, {0x289cc,6}, {0x10d9,2}, {0x121c8,6}, + {0x45a5,11}, {0x20799,5}, {0xe5e7,5}, {0x5881,5}, {0x268c,3}, {0x16ca0,10}, {0x60bb,12}, {0x421a,5}, + {0x58b5,6}, {0x28e1,3}, {0xe62,3}, {0x1bd64,8}, {0x2477,3}, {0x1c865,5}, {0x2d79,5}, {0x7974,4}, + {0x207e9,7}, {0x1607,10}, {0x9129,5}, {0xb8c5,4}, {0x2c15,4}, {0x14ab,3}, {0x307b8,2}, {0x385b,7}, + {0x7e6b,6}, {0xb1d0,5}, {0x3fbd,9}, {0x29de,5}, {0x7917,6}, {0x269f,6}, {0xcc7,2}, {0x10f4b,4}, + {0x18b2,5}, {0xe16,2}, {0x2de5d,4}, {0x8775,6}, {0x10ec,6}, {0x28b0e,7}, {0x5f42,5}, {0x11963,8}, + {0x4e60,2}, {0x16d54,8}, {0x1a17,5}, {0x22dcb,8}, {0xe235,7}, {0xb12d,6}, {0x15530,6}, {0x2a56,4}, + {0x4618,4}, {0x1477,9}, {0x1029b,7}, {0x17acb,2}, {0x4b12,4}, {0x1b2ea,9}, {0x3a37,6}, {0x10a6,2}, + {0x23b0b,8}, {0x4cc2,3}, {0x12bfa,7}, {0x3409,6}, {0x331f,4}, {0xeaf5,4}, {0x2ced,5}, {0xfe2e,11}, + {0xe311,7}, {0x27ff9,6}, {0x2855c,7}, {0xb439,12}, {0x19e23,8}, {0x1703a,4}, {0x26ca8,3}, {0x14f9a,6}, + {0xab88,4}, {0x15dc,3}, {0x71ff,10}, {0x19b1d,9}, {0x13974,7}, {0x1e84,3}, {0xbf5d,4}, {0x22443,7}, + {0xe2b,4}, {0xf3bd,6}, {0x17c7,10}, {0x140,2}, {0xf01,4}, {0x26e56,7}, {0x11c,2}, {0x325,2}, + {0x1d9d7,6}, {0x2b665,6}, {0x492b,4}, {0x1bb0,6}, {0x28a9e,5}, {0xe282,6}, {0xf69b,3}, {0x28add,7}, + {0x8,3}, {0x2393b,5}, {0x9e01,5}, {0xc2,2}, {0x2f55,9}, {0x4538,3}, {0x18610,5}, {0x1019,11}, + {0x7d81,4}, {0x11649,7}, {0x85b9,10}, {0x26c42,6}, {0x6140,3}, {0x3286,3}, {0x1f114,9}, {0xc95f,6}, + {0x157a6,8}, {0x56a8,5}, {0x1b959,9}, {0x944d,6}, {0x2e33,4}, {0xb74,8}, {0xef74,6}, {0x20a19,8}, + {0x63ee,9}, {0xbb7d,5}, {0x7955,4}, {0x43ed,6}, {0x1a02d,6}, {0x1cd3,3}, {0x13dd,4}, {0x13442,6}, + {0xcf04,3}, {0x1c085,6}, {0x10db,7}, {0xf1b8,4}, {0x2e889,3}, {0x2ea25,5}, {0x1b85d,6}, {0x158e,2}, + {0x8229,7}, {0xbd99,5}, {0x19c85,9}, {0x40a5,6}, {0x1393,4}, {0x1531e,5}, {0x1f34,8}, {0x78d0,3}, + {0x910c,4}, {0x1aa4d,8}, {0x216f9,8}, {0x13258,9}, {0xb3e8,6}, {0x2a83,4}, {0x29a2,6}, {0x80c5,3}, + {0x174b,3}, {0x583a,3}, {0x9201,5}, {0x1aecd,9}, {0xd6fe,9}, {0x1766a,2}, {0x7921,3}, {0x13f6e,7}, + {0x60d5,7}, {0x1fe8,5}, {0x512,2}, {0x1a1e6,5}, {0x9a65,7}, {0x23873,8}, {0x1b8c9,9}, {0x10aa4,7}, + {0x7ff5,5}, {0x42db,8}, {0x30d57,3}, {0x22d6,10}, {0x1240,2}, {0x110c9,5}, {0x5f1b,7}, {0x2058b,3}, + {0x21309,8}, {0x2d95,5}, {0xc6ec,5}, {0x20fbd,4}, {0x1f07,5}, {0x21979,8}, {0x288c2,7}, {0x4b62,5}, + {0x1467,10}, {0x2decf,6}, {0xf59,3}, {0x1d63,4}, {0x8b59,10}, {0x8ba1,6}, {0x188c,4}, {0x251f,8}, + {0xa701,7}, {0x29de,4}, {0x305f,6}, {0xc371,7}, {0x2bae,2}, {0x1b69,3}, {0x7d55,7}, {0xc1ad,5}, + {0x13b22,10}, {0x14842,7}, {0x4b96,5}, {0x780a,5}, {0x1247a,9}, {0x12a6,3}, {0x6ba6,7}, {0xbfcd,5}, + {0x11187,2}, {0x1294,6}, {0xe19,2}, {0xd28b,6}, {0x27ef,7}, {0x2399,5}, {0x2489,7}, {0x235d,5}, + {0x1447,7}, {0xb27d,9}, {0x7aa9,6}, {0x2dee7,6}, {0x3487,6}, {0x4,2}, {0x1544a,7}, {0x17030,4}, + {0x1c82,10}, {0x1378f,3}, {0xef7c,6}, {0x6aa2,8}, {0xcbd,4}, {0xae99,7}, {0x16700,7}, {0x6ff7,8}, + {0x55ed,5}, {0xa4b5,9}, {0x1657,8}, {0x20749,8}, {0xc5e0,4}, {0x1571,4}, {0xaf65,9}, {0x6bb,2}, + {0x122f,3}, {0x2bf89,5}, {0x2651,7}, {0xcf6,2}, {0x19f5e,7}, {0x19df6,5}, {0x1317,2}, {0x12d12,6}, + {0x3115,5}, {0x1b962,9}, {0x30118,4}, {0x66c6,5}, {0x3d39,6}, {0x12cae,6}, {0x20382,2}, {0x1440,7}, + {0x3583,5}, {0x1f76,5}, {0x27cf0,7}, {0x1c96a,8}, {0x5eda,9}, {0x12090,9}, {0x2da55,6}, {0xf4d0,5}, + {0x2260,4}, {0x18772,2}, {0x464d,7}, {0x3abf,4}, {0x33b5,10}, {0x7d1f,3}, {0x471f,6}, {0x20d19,8}, + {0xb69d,4}, {0xac0d,3}, {0x14f7,5}, {0x50c9,10}, {0xee8,5}, {0x7518,4}, {0x41df,7}, {0x3a91,3}, + {0x821d,7}, {0x93b4,7}, {0x13866,8}, {0xc1d1,4}, {0x5ecd,9}, {0x14e5a,5}, {0x3281,8}, {0x9fed,12}, + {0x1dc7,5}, {0x1e71,6}, {0x213e9,8}, {0x44ad,4}, {0xef7,5}, {0x65f6,6}, {0xe1fa,4}, {0x1a58,3}, + {0x3a30,6}, {0xef7,6}, {0x10dc,2}, {0x14c16,9}, {0x54f3,10}, {0xc189,7}, {0x11ddb,7}, {0xbccd,4}, + {0x5d54,5}, {0xb685,5}, {0x1ab01,6}, {0x26b4,7}, {0x145ea,8}, {0x15fb,3}, {0x2,3}, {0x51ac,4}, + {0x15ca,3}, {0x4aee,3}, {0x1839,3}, {0x125d,8}, {0x27e9,3}, {0x237f,4}, {0x2de8d,4}, {0x1756a,5}, + {0x28f1d,7}, {0x37c8,5}, {0x2357b,8}, {0x1637,6}, {0x1cfa,11}, {0xb068,5}, {0xaebd,5}, {0x2de63,4}, + {0x28fda,4}, {0x2deed,6}, {0x2bc7,5}, {0x1687,8}, {0x132da,10}, {0x1257e,5}, {0x3756,3}, {0x9e,2}, + {0xa9ad,9}, {0x1ef7f,6}, {0x206a9,7}, {0x2720e,7}, {0x116ac,5}, {0xa045,8}, {0x4116,5}, {0x28b2,8}, + {0x15422,5}, {0x9498,5}, {0x80fd,6}, {0x948b,4}, {0x4188,3}, {0x1427,5}, {0x1234e,7}, {0xc281,4}, + {0x797d,6}, {0x2a92,6}, {0x22433,8}, {0xe35e,6}, {0x2b48,2}, {0x94b5,3}, {0x7bd9,4}, {0x11276,10}, + {0x7086,5}, {0xdd44,6}, {0xdde9,9}, {0xb0fd,6}, {0x566c,6}, {0x1e3b,4}, {0x93e1,7}, {0xf03,4}, + {0x30c6,3}, {0x30a13,3}, {0x10e98,6}, {0x2094,3}, {0x5724,3}, {0x1effd,5}, {0x9d41,6}, {0xc088,4}, + {0x20be9,7}, {0x33ed,5}, {0xf181,10}, {0x1898e,5}, {0x4c03,8}, {0x6fe1,3}, {0x8b31,4}, {0x5863,3}, + {0x3521,4}, {0x3dd3,6}, {0x27c5d,6}, {0x3694,4}, {0x10e7,11}, {0x40d8,3}, {0x2b88,4}, {0x1c82,13}, + {0x169b,6}, {0xf8d,2}, {0x4199,5}, {0x344b,4}, {0x1347,4}, {0x1118a,2}, {0x1debd,2}, {0x211b9,8}, + {0x2213b,8}, {0x9dc5,6}, {0x24d5e,2}, {0x331f,3}, {0xf0c,2}, {0x1c1e,4}, {0x1579,3}, {0x4765,5}, + {0xf29f,6}, {0x3be9,5}, {0x2b623,6}, {0xeb9,3}, {0x205a1,3}, {0x7e99,12}, {0x23283,8}, {0x274f4,7}, + {0x3cf3,11}, {0x11f25,5}, {0xf82,7}, {0x1cfc,3}, {0x5eaf,4}, {0xf34,4}, {0x578,2}, {0x269e1,7}, + {0x169d,3}, {0x1a56,2}, {0x57ff,8}, {0x1d06,3}, {0xc88e,6}, {0x3019,9}, {0x144c8,10}, {0xd194,8}, + {0xf77,9}, {0x4bd,2}, {0x80b5,9}, {0x1b6b6,9}, {0x22443,8}, {0x39d5,5}, {0x2b4e9,3}, {0x1b0aa,9}, + {0x12330,6}, {0x8cd3,3}, {0x8eee,4}, {0x4f55,4}, {0xe0c,2}, {0x1f116,3}, {0x28571,6}, {0x7156,4}, + {0x2264b,8}, {0xb559,5}, {0x1003,3}, {0x1ac96,6}, {0x12c04,10}, {0x2a29,8}, {0x15d7,8}, {0x11fa9,5}, + {0x7303,5}, {0x4899,4}, {0x3203,8}, {0x7115,4}, {0x9f81,6}, {0xb319,8}, {0x239e,3}, {0x14ff,5}, + {0x269cc,7}, {0xef0e,7}, {0x1cd4a,9}, {0xbdb1,8}, {0x5f35,9}, {0x2fe1,9}, {0x15760,4}, {0xaac1,8}, + {0x276b,4}, {0x1c841,8}, {0xc16,4}, {0x22877,4}, {0xee8,9}, {0x33a7,5}, {0xeee,5}, {0x1877,4}, + {0x2d79,7}, {0x6176,4}, {0x3144b,2}, {0x26ba,3}, {0x27843,7}, {0xb1a5,6}, {0x247a,13}, {0x16e1c,5}, + {0x8b30,4}, {0x19a,2}, {0x1a402,9}, {0x7858,4}, {0xf22,2}, {0x14fb8,5}, {0x111f2,7}, {0x2ca1,4}, + {0x30d27,3}, {0x21579,8}, {0x18bc4,6}, {0x1a1b0,9}, {0x2b5bd,6}, {0x8ccd,6}, {0x2746f,6}, {0x218c1,8}, + {0xc95f,8}, {0x2e924,5}, {0x2777,6}, {0xc2ed,7}, {0x58d2,4}, {0x28d2,3}, {0x1569,4}, {0x2e895,3}, + {0x1724c,4}, {0x91cd,4}, {0x156ca,10}, {0xb9d1,3}, {0x13e42,5}, {0x1a336,5}, {0x1807e,4}, {0x520e,5}, + {0x6ceb,7}, {0x191f9,6}, {0xedb,2}, {0x2b0a8,4}, {0x126a,3}, {0x77e3,6}, {0xb02a,3}, {0x4a00,4}, + {0x7149,7}, {0x1131,6}, {0x148a,3}, {0x27158,7}, {0x27112,6}, {0x359f,4}, {0x1a306,6}, {0x60f3,4}, + {0x149d,2}, {0x97a1,5}, {0x8f2c,5}, {0x1927,5}, {0x6bc0,7}, {0x3fed,3}, {0x3014a,4}, {0x2d1f,6}, + {0xfb1,3}, {0x38e7,4}, {0x1e57e,2}, {0xe5e9,3}, {0x288de,7}, {0x103e,4}, {0xb3e8,9}, {0x3199,3}, + {0x18732,5}, {0x3170,3}, {0x130a0,6}, {0x29a2,5}, {0x68,2}, {0x35a2,6}, {0x96c4,4}, {0xf9a0,10}, + {0x1ff7,6}, {0xe613,5}, {0x2fcc,4}, {0xfbbb,10}, {0x1e96a,5}, {0xa317,6}, {0x2a29,5}, {0xab1,8}, + {0x5652,8}, {0xb3c1,6}, {0x2bf47,6}, {0x28309,6}, {0x65ec,5}, {0xcf9a,7}, {0xe83,4}, {0x14e4b,4}, + {0x22d53,8}, {0x1279,5}, {0x426b,8}, {0x2266,5}, {0x22bc,4}, {0x23468,3}, {0x75b4,4}, {0x88d4,4}, + {0x5ea6,6}, {0x1c79,2}, {0x6190,4}, {0x3002d,4}, {0x11d0a,5}, {0x8559,9}, {0x21061,6}, {0x5dfd,6}, + {0xcdda,2}, {0x20ec1,8}, {0x3bec,4}, {0x93b1,10}, {0x404f,3}, {0x5881,8}, {0x10658,6}, {0x1044,4}, + {0xa041,12}, {0x90bd,6}, {0x13258,10}, {0x1c669,4}, {0x1084,3}, {0x27381,6}, {0x6cc,2}, {0x30dfd,2}, + {0x6644,6}, {0x19f9,2}, {0xb34,8}, {0x1fbb,5}, {0x9441,5}, {0x1898a,9}, {0x1db33,2}, {0x14180,8}, + {0x2de7b,4}, {0x1648a,7}, {0x127d6,7}, {0xf61,2}, {0x224f,7}, {0x10361,6}, {0x1e9e,10}, {0x10172,10}, + {0xe91,2}, {0x29f7,3}, {0xf193,4}, {0xc02d,7}, {0xe90a,10}, {0x3687,5}, {0x21d89,8}, {0x8c,2}, + {0xd4,2}, {0x31453,2}, {0x2bb99,6}, {0x2389b,8}, {0x227e3,8}, {0x17be8,5}, {0x269a2,7}, {0x45eb,4}, + {0x314d,6}, {0xf261,3}, {0x1796b,4}, {0x23ce3,7}, {0xf9d7,6}, {0x307ba,2}, {0x27ce9,6}, {0x1231c,6}, + {0x23e99,2}, {0x14ad6,8}, {0x7929,7}, {0x8199,11}, {0x102b,5}, {0x45f2,2}, {0x9da1,6}, {0xe0eb,7}, + {0x2f7f,7}, {0x146d,9}, {0x136ea,9}, {0x9cc9,9}, {0x19ae7,6}, {0x2687,8}, {0x2ea8,4}, {0x1046,3}, + {0x8f9d,10}, {0x1827,6}, {0xad19,6}, {0xa215,5}, {0x2e1b,6}, {0xef87,7}, {0x204e0,2}, {0x2865f,7}, + {0x7a15,4}, {0x132f8,9}, {0x22263,7}, {0x2917,4}, {0x14c76,4}, {0xb3e5,12}, {0x56,2}, {0x11788,4}, + {0x135fa,10}, {0x1224,6}, {0x18055,4}, {0x3e54,3}, {0x29e3,4}, {0x17f80,6}, {0xfaea,11}, {0x1f378,8}, + {0x1a99,5}, {0x3005f,4}, {0xb0,2}, {0xd617,11}, {0xd83d,6}, {0x1008b,6}, {0xcedf,7}, {0x23a83,8}, + {0x70ad,6}, {0x10868,8}, {0x21a0,5}, {0x21c99,8}, {0x1807a,8}, {0x10e98,11}, {0x1d911,9}, {0x6832,9}, + {0x61bb,4}, {0x4fd2,6}, {0x9519,6}, {0x5cab,7}, {0x9d35,7}, {0x41bc,4}, {0x12f6a,6}, {0x16935,5}, + {0x3739,2}, {0x12f74,6}, {0xfe0d,11}, {0x53cd,4}, {0x16ba6,9}, {0x10432,5}, {0x10d6,5}, {0x62dd,6}, + {0x1aa3b,9}, {0x2ba,2}, {0x2bd49,6}, {0x1463,4}, {0x136f4,10}, {0xef71,9}, {0x7a,2}, {0x1290,10}, + {0x3639,11}, {0x2132,9}, {0x1387a,10}, {0x19c58,8}, {0xb396,2}, {0x1969,2}, {0x4f36,9}, {0x1c973,9}, + {0x234eb,7}, {0x5d6e,8}, {0x3db7,7}, {0xb428,3}, {0xbda5,12}, {0x1791,6}, {0x1882c,6}, {0x2f10e,5}, + {0x1664,2}, {0x58ff,4}, {0xf6e,7}, {0x1b4fd,6}, {0x12ed4,7}, {0x1e5e,4}, {0x3575,7}, {0x10e2,3}, + {0x47c7,5}, {0x26a90,7}, {0xe1dd,7}, {0x1e26,6}, {0x1c178,7}, {0x29bfe,2}, {0x11dfc,4}, {0x12154,3}, + {0xa348,5}, {0x26e4f,7}, {0x8709,8}, {0x1f16,10}, {0xd85e,7}, {0x2df77,5}, {0x2ae43,5}, {0x1392,5}, + {0x8fd9,5}, {0x13b18,10}, {0x1510,7}, {0x1152,3}, {0x11b94,7}, {0x8b00,4}, {0x950d,9}, {0x1ea72,2}, + {0x7f09,3}, {0xf953,6}, {0x1099,8}, {0x10ed,3}, {0x1ab69,4}, {0x10dd2,6}, {0x1e9e,6}, {0x67ca,10}, + {0x1cfa,14}, {0xe87,2}, {0x1314f,3}, {0x16976,6}, {0x688,2}, {0x1f9f,3}, {0x1a29,2}, {0x5fe3,6}, + {0x684c,8}, {0x54cc,11}, {0xe58f,7}, {0x188c,3}, {0x1150,3}, {0x514b,7}, {0x7f8f,6}, {0x556,2}, + {0x1b371,6}, {0x146ee,7}, {0x5849,4}, {0x2d27b,6}, {0xef66,5}, {0xefb,3}, {0x1185,3}, {0xe104,3}, + {0xa85d,9}, {0x2213,5}, {0x5874,8}, {0x16b7,7}, {0xe009,3}, {0x29b89,7}, {0x4853,5}, {0x11cf4,7}, + {0x2fffb,4}, {0xcc6c,5}, {0x13a14,10}, {0x16a84,9}, {0x1a0af,5}, {0x2def3,6}, {0x3aed,6}, {0xe1b,3}, + {0x611,2}, {0x1894,3}, {0x8e41,9}, {0x4be9,5}, {0xefcc,4}, {0xb97c,2}, {0x235db,5}, {0x13172,6}, + {0x40f1,9}, {0x1e80,6}, {0x219a9,8}, {0x2ddb,7}, {0xdeaf,11}, {0x130d2,8}, {0x5e4f,3}, {0x14bd0,10}, + {0xebd5,7}, {0x1689,6}, {0x1a7fb,6}, {0x13424,7}, {0x12524,6}, {0x21721,7}, {0xd10c,4}, {0xd827,9}, + {0xc300,3}, {0x6ba3,3}, {0x2b5b7,6}, {0x17d3c,6}, {0x7ae5,5}, {0x2330,8}, {0x26db5,7}, {0x1ad8e,4}, + {0x13041,4}, {0x74fb,3}, {0x24f7,4}, {0x75db,8}, {0x4434,3}, {0x24b6,5}, {0x328f,13}, {0x4209,6}, + {0x152e,3}, {0x699,2}, {0xee4,13}, {0x2330,5}, {0x4385,3}, {0x7935,7}, {0x13e4c,6}, {0xac35,8}, + {0x2dec9,6}, {0x180e,3}, {0x12ea2,7}, {0x1790,6}, {0x6f27,7}, {0x18052,7}, {0x1702,5}, {0xcb9f,4}, + {0x145fe,7}, {0x2f568,4}, {0x1457,6}, {0x77bf,5}, {0x1c28,5}, {0x2219b,8}, {0x80cd,8}, {0x19e1,3}, + {0x4f43,7}, {0x12f16,4}, {0xd265,10}, {0xf25d,7}, {0xc48f,5}, {0x48d0,2}, {0x5b6d,6}, {0x1555b,7}, + {0x935d,8}, {0x6185,3}, {0x2f26,5}, {0x1965e,6}, {0xb8dd,5}, {0x28c0d,7}, {0x1592,4}, {0x201d0,5}, + {0x7636,5}, {0xdeba,7}, {0x18f9,2}, {0x504d,3}, {0x209e1,8}, {0x2d287,6}, {0xcb9,4}, {0x153ff,5}, + {0x13866,10}, {0xbd09,5}, {0x27c2,4}, {0x10d38,6}, {0x12e5,6}, {0x18ff2,6}, {0x6cde,7}, {0xeacd,6}, + {0x40ab,9}, {0x1b6d,4}, {0x16bc4,6}, {0x5342,4}, {0x1ebc,10}, {0x7e6d,5}, {0x1ba9,7}, {0x284,2}, + {0x677,2}, {0x2be45,6}, {0x4f77,8}, {0x2237b,8}, {0x111d,4}, {0x2be03,6}, {0xc0a1,2}, {0x1807,6}, + {0xe9e6,8}, {0x10f2,6}, {0x10e8d,5}, {0x272,2}, {0x11fa9,8}, {0x10201,5}, {0xf3a,2}, {0x760f,5}, + {0x2becf,6}, {0x1f03f,2}, {0x15616,10}, {0x1b827,7}, {0x73b9,6}, {0x702e,8}, {0x1a578,4}, {0x1e2ed,2}, + {0x17ec2,5}, {0x2eb7,4}, {0x2eec,4}, {0x249eb,6}, {0x8b65,9}, {0xe33,2}, {0x149c8,10}, {0x2bef9,6}, + {0x1a759,9}, {0x77f2,2}, {0x15e6d,3}, {0x6d1f,7}, {0x1252e,4}, {0x2225b,5}, {0xc572,4}, {0x7a37,2}, + {0xad19,8}, {0x1c424,9}, {0x1531e,7}, {0xdfca,3}, {0x4599,3}, {0x12a9,5}, {0x2792d,4}, {0xed7d,5}, + {0x8ce5,9}, {0x2675d,2}, {0x4f29,6}, {0x2352,5}, {0x19307,9}, {0x20bfd,4}, {0x22223,8}, {0x13460,6}, + {0x36ca,5}, {0x4cbc,5}, {0x156e,3}, {0x2ea8,5}, {0x7518,7}, {0x3914,3}, {0x27df3,7}, {0xbf50,5}, + {0xf89,5}, {0x26bc4,7}, {0x10ef0,5}, {0x385b,9}, {0x1c010,8}, {0xd01e,8}, {0x2c645,4}, {0x1302,3}, + {0x112b,9}, {0x2bc3b,6}, {0x22103,6}, {0x22cab,8}, {0x567,2}, {0x4209,9}, {0x296,2}, {0x2f0,2}, + {0xb8a1,6}, {0x20377,4}, {0x15fe4,7}, {0x4920,5}, {0x26ae,6}, {0xadcd,6}, {0x289cc,7}, {0x3fb8,5}, + {0x3b73,3}, {0x1dcc2,9}, {0x17d56,3}, {0x2be27,6}, {0x2575b,8}, {0xcda0,4}, {0x6cbe,4}, {0x207a1,6}, + {0x21d99,8}, {0x14c20,10}, {0x30c1,8}, {0x1172a,2}, {0xe63,2}, {0xfd38,4}, {0x14f36,10}, {0x2cc,2}, + {0x1b8db,5}, {0x26a4a,7}, {0x2768,7}, {0x2e2f,6}, {0x4d5f,3}, {0x6b41,4}, {0x1decc,6}, {0x506e,9}, + {0xead8,5}, {0x15490,10}, {0x3bbf,10}, {0x2ae43,7}, {0x11db,3}, {0x7f1d,12}, {0x8ff1,8}, {0x3c9a,5}, + {0x88d1,7}, {0xe27,2}, {0x148a6,5}, {0x43be,4}, {0x356c,3}, {0x1109,8}, {0x1fcf,2}, {0x127a4,10}, + {0x1c3af,9}, {0x154e0,6}, {0x2def9,6}, {0x572f,7}, {0x1231c,9}, {0x1c35e,7}, {0x1c91,6}, {0x1095,3}, + {0x2ba55,5}, {0x5c29,7}, {0xfa2f,11}, {0x1937,5}, {0x48a7,5}, {0x9bc1,6}, {0x14a7,8}, {0x255b,6}, + {0x313,3}, {0x10298,3}, {0xf9ab,9}, {0x7d61,8}, {0x9345,9}, {0x24900,2}, {0x2de,2}, {0xf40a,10}, + {0x21a71,7}, {0x27a96,7}, {0x4f02,11}, {0x2510,4}, {0x393b,5}, {0xcc8,3}, {0x1882c,7}, {0x28471,4}, + {0x1d2e6,4}, {0x1a786,9}, {0x2add,6}, {0xde1c,4}, {0x4cb9,7}, {0x12dc6,7}, {0x1da0d,6}, {0x1b04,3}, + {0x26cce,7}, {0xa8c3,6}, {0x4383,10}, {0x236d3,5}, {0x953d,6}, {0x11d0,5}, {0x7995,6}, {0x9309,5}, + {0x167fa,7}, {0xdcfe,4}, {0x127f,6}, {0xeac,2}, {0xf722,5}, {0x1c14,5}, {0x159cc,5}, {0x12e7,3}, + {0x534,2}, {0x13028,6}, {0x28934,5}, {0x2623,4}, {0x329d,6}, {0x479f,2}, {0x320c,4}, {0x20629,8}, + {0x5611,5}, {0x61cc,8}, {0x22133,8}, {0x1917,7}, {0x1754c,6}, {0x7ab5,8}, {0xe7a,2}, {0x13a6e,10}, + {0x35f3,9}, {0x9f81,8}, {0x30b3f,4}, {0x73ef,2}, {0x16282,7}, {0x17c42,6}, {0x2de57,4}, {0x9129,9}, + {0x2844b,6}, {0x1832,3}, {0x77b3,4}, {0x11c4,7}, {0xe6,2}, {0x13050,5}, {0x545,2}, {0x48dd,6}, + {0x1a45c,9}, {0x2017,4}, {0x77e3,9}, {0x6c35,9}, {0x157ce,5}, {0x40c7,9}, {0x1d785,9}, {0x31cb,6}, + {0x100f9,6}, {0x316e,3}, {0x1ae73,9}, {0xeab,4}, {0x15526,6}, {0xfa1,2}, {0xabc6,3}, {0x138fc,7}, + {0xe2f,4}, {0x142c,4}, {0x41b5,7}, {0x1c9fa,8}, {0x1d31a,6}, {0x583b,5}, {0x18494,5}, {0x4f9e,8}, + {0x944d,7}, {0x8b11,7}, {0x2ab0,10}, {0x4871,2}, {0x6e3d,10}, {0x624e,6}, {0x10e2,5}, {0x19b7,5}, + {0x1046,4}, {0x465b,4}, {0x2872c,7}, {0xff1,4}, {0x1ceb,6}, {0x2732d,7}, {0x14dd,5}, {0x4615,5}, + {0x5fde,11}, {0xa8bd,12}, {0x12f6,6}, {0x2782,4}, {0x2d38f,4}, {0x1cfd2,9}, {0x41ed,4}, {0x5ddf,4}, + {0xb595,5}, {0x24bdf,2}, {0x13af0,10}, {0x7a61,7}, {0x2399,10}, {0xa965,9}, {0xaa6d,12}, {0x3b4a,5}, + {0xbfcd,7}, {0x505d,4}, {0x19001,9}, {0x2ed6f,4}, {0x14e1,6}, {0xf48e,6}, {0x1e91b,3}, {0xd69b,11}, + {0x4f91,8}, {0x5026,4}, {0x1156,3}, {0x184d0,10}, {0x1eb14,5}, {0x1dc56,4}, {0xcf21,8}, {0xc857,7}, + {0xb841,5}, {0x6164,5}, {0x2ed7,10}, {0x16bf6,5}, {0x2468,3}, {0x1f39,6}, {0x9de9,6}, {0x9d1d,9}, + {0x157c,3}, {0x1f423,8}, {0xd46a,9}, {0x22fe,5}, {0xe915,11}, {0x19385,9}, {0x1747,7}, {0x15eb8,6}, + {0x4383,12}, {0x1db1,3}, {0x111c6,4}, {0x53a1,12}, {0x205a9,2}, {0x14d4f,6}, {0x116f,15}, {0x8bcb,6}, + {0x1f42c,6}, {0x7000,4}, {0x274d1,6}, {0xe43a,6}, {0x22593,6}, {0x18dec,3}, {0xff70,4}, {0x17b4b,7}, + {0x127ea,6}, {0x10474,11}, {0x111c6,5}, {0x23837,4}, {0x2c649,6}, {0x6d41,5}, {0x7ec9,8}, {0x11e62,3}, + {0x77bc,4}, {0x14572,9}, {0x1114d,6}, {0x10571,8}, {0x154b8,6}, {0x103ae,4}, {0x10bac,5}, {0x57e0,5}, + {0x30e61,2}, {0xeff5,9}, {0x2371,3}, {0x19052,9}, {0xc18b,5}, {0x2ff9c,4}, {0x1214,3}, {0x16ad,5}, + {0x15bb6,10}, {0x550d,12}, {0x2270,3}, {0x1e96a,9}, {0x74f1,4}, {0x1effd,9}, {0x5cd,2}, {0x18732,7}, + {0xfa5b,7}, {0x1870e,6}, {0x1f4d7,7}, {0x14522,9}, {0x2f05,4}, {0x33b5,8}, {0x8cf1,6}, {0x8937,6}, + {0x10658,8}, {0x43fc,2}, {0x15764,5}, {0x16598,7}, {0x1766e,8}, {0x224f,6}, {0x1c0f,5}, {0xa48b,3}, + {0xe088,9}, {0x8fa3,6}, {0x22efb,5}, {0x4b61,6}, {0x7e09,7}, {0x1bec,7}, {0x14374,10}, {0x18e08,7}, + {0x2bef3,6}, {0x19c73,6}, {0x22b8,8}, {0xe67,7}, {0x10b3e,5}, {0x101d,3}, {0x43bb,7}, {0xe58f,10}, + {0xec53,3}, {0x129a2,5}, {0xe07d,11}, {0x1c652,9}, {0x1c91,5}, {0xb51d,6}, {0x457b,5}, {0x1957,5}, + {0x2a8,2}, {0x8295,5}, {0x1dc3,7}, {0xe306,9}, {0xc6cd,4}, {0xbfd4,5}, {0x13a7,5}, {0x1af1,4}, + {0x716c,4}, {0x1eb11,8}, {0x1dcfb,6}, {0x7978,5}, {0x49b,2}, {0x5edd,3}, {0x2be3,5}, {0x1f165,6}, + {0xd588,9}, {0x1439c,9}, {0x2f33,6}, {0xaec9,6}, {0x2f9b,5}, {0xac0d,4}, {0xbb4d,6}, {0x1c640,8}, + {0x28fe1,5}, {0x1fced,8}, {0x8439,6}, {0x8cfd,5}, {0x2607b,8}, {0x198b9,9}, {0xafe9,8}, {0x2dbf,6}, + {0x4217,8}, {0x10e09,5}, {0x189b,6}, {0xb7ac,3}, {0xdd18,7}, {0x227db,8}, {0x1cdda,6}, {0x1939,2}, + {0x2761a,7}, {0x2ca3,4}, {0x276ec,7}, {0xc40b,6}, {0xe138,10}, {0xd9be,10}, {0x289c,7}, {0xa299,9}, + {0xcd53,11}, {0xfa0,3}, {0x297eb,6}, {0x10a8e,5}, {0x1693,4}, {0x5de,2}, {0x9372,3}, {0x2702b,5}, + {0x103cf,7}, {0x2ef7,4}, {0x2538b,5}, {0x195bc,9}, {0x1830,3}, {0x30311,4}, {0x1eee6,6}, {0x19856,9}, + {0x3e35,9}, {0x26ffa,7}, {0x7417,4}, {0x38e2,5}, {0x6478,5}, {0x4c5e,6}, {0x26add,7}, {0x2f79,5}, + {0x4979,4}, {0xf4d0,6}, {0x22a3b,8}, {0x1aa29,8}, {0x523,2}, {0x17b48,10}, {0xdb01,6}, {0x1ca7b,5}, + {0x1ade3,6}, {0x5d6e,13}, {0x1766e,9}, {0x4693,5}, {0x65b5,5}, {0x1ac4e,9}, {0x1db3b,2}, {0x12090,11}, + {0x6e91,3}, {0x17ca6,5}, {0x2715f,7}, {0xa971,12}, {0x12bf0,7}, {0x8835,5}, {0x16fd4,6}, {0x14c16,10}, + {0x1364e,4}, {0x17646,5}, {0x3ab5,10}, {0x1b8a,7}, {0xbc91,6}, {0x22a2,5}, {0x1069a,11}, {0x71ff,12}, + {0x2489,10}, {0xf835,11}, {0x25ddb,8}, {0x2e27c,2}, {0x15ac6,6}, {0x1cd53,9}, {0x1587,7}, {0x2d46d,6}, + {0xff78,7}, {0x565f,5}, {0x1870a,10}, {0x11963,10}, {0xa894,5}, {0x164a2,5}, {0xff57,6}, {0x1dcf8,9}, + {0x2b9e9,6}, {0x736b,5}, {0x1d4d0,9}, {0xac29,12}, {0x28a4a,7}, {0x647d,10}, {0xe24,3}, {0x2fed4,4}, + {0x1b34d,6}, {0xd13c,6}, {0xbfcd,12}, {0x1bf65,9}, {0x13960,5}, {0x1787,7}, {0x1c178,9}, {0x7e55,4}, + {0xcd1,3}, {0x11557,7}, {0x21dc3,8}, {0x1ce34,8}, {0x222cb,8}, {0x255b,9}, {0x10e1f,4}, {0x310c,4}, + {0x14aa,5}, {0x74bd,5}, {0x318e,5}, {0x3e0,2}, {0x77f0,5}, {0x112b8,5}, {0x10b43,6}, {0x122f4,8}, + {0x9,3}, {0x90b1,6}, {0x26df4,7}, {0x2eb3a,3}, {0xa1e1,4}, {0xbba1,7}, {0x14d4c,9}, {0x2317,5}, + {0x1c0a,8}, {0x3f5b,9}, {0x1c6d,6}, {0x5172,7}, {0xe516,5}, {0xfda,5}, {0x7eed,5}, {0x17212,6}, + {0x36ca,9}, {0x14a2,5}, {0x2c56b,4}, {0x20549,2}, {0x2852b,7}, {0x219b,10}, {0x2675b,4}, {0x90bd,8}, + {0x2231,5}, {0xdf12,9}, {0xc9ac,5}, {0x81a5,6}, {0x27453,7}, {0x4b11,5}, {0x11b3,11}, {0x4d74,4}, + {0x27032,6}, {0x1f366,5}, {0x46af,5}, {0x20ba,13}, {0xfc87,5}, {0x228c3,8}, {0x1df38,8}, {0x22cd3,5}, + {0x21f03,8}, {0x5131,10}, {0x1cb1,5}, {0x3153,7}, {0x23c0,6}, {0x93a5,5}, {0x6aa,2}, {0x121a0,10}, + {0xf8b9,8}, {0x7d55,11}, {0x65e9,8}, {0x19c7,6}, {0x2bd9d,5}, {0x1fe4c,9}, {0x8d5d,10}, {0x1a558,9}, + {0xd3d0,8}, {0x231eb,8}, {0x5199,7}, {0x6b3e,7}, {0x1a14a,3}, {0x48da,3}, {0x587c,5}, {0x5bb4,5}, + {0x260e9,2}, {0x2245,3}, {0x1df9b,8}, {0x3930,7}, {0xa076,5}, {0x50de,5}, {0x10c5,6}, {0x17ac9,2}, + {0x93e6,4}, {0x2afa1,4}, {0x22e13,8}, {0x1e2ef,2}, {0x6bd4,4}, {0x13345,3}, {0x16322,6}, {0x125fb,5}, + {0x2b617,6}, {0x11b94,6}, {0xf60,2}, {0x883a,4}, {0x78f9,2}, {0x5ee3,4}, {0x1d69b,5}, {0x1900a,7}, + {0xa797,5}, {0x5ef,2}, {0x950d,8}, {0x138ca,9}, {0x30801,2}, {0x27fe,7}, {0x6d08,4}, {0xe,2}, + {0x3567,8}, {0x1177d,6}, {0x15cb0,10}, {0x24653,4}, {0x73ed,5}, {0x9101,4}, {0x6d2c,7}, {0x1de7b,5}, + {0x1d5f9,9}, {0x80c1,8}, {0x17678,5}, {0x18ebc,4}, {0x1cc8d,8}, {0x32c7,14}, {0x2d683,6}, {0x5717,4}, + {0x250db,8}, {0x125f1,5}, {0x23b13,8}, {0x6d5a,5}, {0x64be,12}, {0x78b1,6}, {0x28ce6,6}, {0x10b3e,11}, + {0x16d72,10}, {0x8679,10}, {0x42db,13}, {0x122c6,6}, {0x23a53,6}, {0x21de3,8}, {0x5d7b,6}, {0x63e1,6}, + {0x19ccd,9}, {0x5f42,7}, {0x1f6b4,9}, {0x1a9ab,6}, {0x18728,5}, {0x121c8,9}, {0xcf2c,7}, {0x12d76,10}, + {0x1017d,5}, {0x13b4a,7}, {0x18f7,7}, {0x1fcf,5}, {0x17344,6}, {0x57cd,3}, {0x6637,6}, {0x27f0b,7}, + {0x1607a,6}, {0x185d,2}, {0xaa38,5}, {0x117bf,9}, {0x128da,10}, {0x272c4,6}, {0x1b39e,9}, {0x2980e,7}, + {0x592a,9}, {0x1eb2,3}, {0x1372,5}, {0x46bd,6}, {0x48d8,2}, {0x21d49,6}, {0x1ae7,4}, {0xfad,5}, + {0xa185,7}, {0x2bed5,6}, {0x3bb1,8}, {0xea6a,5}, {0x2f4c,4}, {0xc017,2}, {0x6b26,4}, {0x1413a,6}, + {0xadb5,7}, {0x28c0f,5}, {0x3320,4}, {0x1720e,10}, {0x20611,8}, {0x22a2,7}, {0x4bf6,7}, {0x4d27,7}, + {0x199d9,9}, {0x6bf4,8}, {0x1789,4}, {0x1b01,4}, {0xfd47,10}, {0x1607,15}, {0x72d1,2}, {0x9cad,4}, + {0x2df05,6}, {0x37c1,12}, {0x8151,7}, {0x1623c,10}, {0x10361,5}, {0xeed,3}, {0x1c54d,6}, {0x354b,7}, + {0x2b5a5,6}, {0x14860,6}, {0x10edd,7}, {0x7968,6}, {0x1f8e,8}, {0x10e2a,4}, {0x1290,16}, {0x5708,13}, + {0xd11b,5}, {0x8c85,10}, {0xb8c7,2}, {0x233a3,8}, {0xbd09,7}, {0xdc6f,4}, {0x20b69,7}, {0xa04d,5}, + {0x4bef,4}, {0x12d6,3}, {0x5884,4}, {0x23833,8}, {0x1ce97,7}, {0x1a01b,6}, {0x4d83,5}, {0x50ce,5}, + {0x42db,6}, {0x11dc,5}, {0x20,2}, {0xc0ed,5}, {0x1397,5}, {0x12434,10}, {0x6cc8,3}, {0x1f79e,6}, + {0x16214,10}, {0x1ad80,9}, {0x7e45,12}, {0x3091b,4}, {0x5d66,3}, {0x31727,2}, {0xb05c,5}, {0x48a,2}, + {0x9dc5,7}, {0x2f1ca,2}, {0x1e57d,2}, {0x2844,5}, {0x29f90,7}, {0x18df4,5}, {0x63ea,4}, {0xf7dd,8}, + {0x21a49,7}, {0x2b83,2}, {0x2786d,7}, {0x62dd,11}, {0x159e0,7}, {0x27c5d,7}, {0x12c04,9}, {0x8459,4}, + {0x20579,2}, {0x5e43,3}, {0x1288a,7}, {0x1a10e,7}, {0x4049,9}, {0x2deff,6}, {0x1e44,6}, {0x11e49,5}, + {0x479,2}, {0x69df,9}, {0x20eb9,8}, {0xcbac,5}, {0x2bffb,6}, {0x2006,11}, {0xae99,11}, {0x1e872,2}, + {0x18499,5}, {0x1006a,11}, {0x2bd9d,6}, {0xcdc1,8}, {0x5bb6,3}, {0x6d4e,5}, {0x22b33,6}, {0x9e19,5}, + {0xe67,8}, {0x1ab64,9}, {0x488b,5}, {0x1b7a0,8}, {0x27ce9,7}, {0x146a8,10}, {0x7d80,5}, {0x66c1,4}, + {0x1bbd8,9}, {0x15486,6}, {0x2319,8}, {0x21459,8}, {0x7bd5,8}, {0xe22,5}, {0x2bdf7,6}, {0x21201,8}, + {0x3957,8}, {0xef7,9}, {0x1fd05,3}, {0x2608,3}, {0x1b4be,9}, {0xdb21,3}, {0x1a009,6}, {0x25bb3,8}, + {0x2083,4}, {0xa5c9,9}, {0x1fc3d,5}, {0xc295,5}, {0x18430,6}, {0x1ea93,8}, {0x2542e,3}, {0xfbc6,11}, + {0x110fb,3}, {0x13a0a,10}, {0xd832,8}, {0x45a5,5}, {0x27e24,7}, {0x1c3d3,9}, {0x4af2,7}, {0x15390,3}, + {0x117d5,6}, {0x19184,9}, {0x3922,4}, {0x11ca7,5}, {0x14f0,7}, {0x16d22,10}, {0x28ede,7}, {0x1338e,9}, + {0x30323,2}, {0x1bf92,8}, {0x1727,8}, {0x19fa2,4}, {0x12f74,10}, {0x4ae5,5}, {0x14180,10}, {0x465d,3}, + {0x1154e,2}, {0x1a519,9}, {0x473b,7}, {0x111a,7}, {0x101b7,4}, {0x4161,5}, {0x1e1b,3}, {0x1f25,8}, + {0x20f21,7}, {0x18750,6}, {0x233f,7}, {0x1187,6}, {0x21b11,8}, {0x1c664,9}, {0x17ada,5}, {0x21e13,7}, + {0xf92,2}, {0x207b1,7}, {0x115a,4}, {0x72cf,6}, {0x195bc,8}, {0x70fb,5}, {0x13758,8}, {0x20881,8}, + {0x7fbf,6}, {0x584d,7}, {0x14180,9}, {0x111a5,7}, {0x3bff,3}, {0x9a65,6}, {0x11671,4}, {0xabc4,4}, + {0x1dcb4,2}, {0xb51d,5}, {0x5f96,3}, {0x1118f,6}, {0x1dc0,3}, {0x3be,2}, {0x1b4c7,5}, {0x1715a,5}, + {0xc342,3}, {0xd895,10}, {0x44ef,5}, {0x10238,7}, {0x1e2a,4}, {0x1763c,6}, {0x20559,2}, {0x2bad,3}, + {0x1a642,9}, {0x28e3,4}, {0x16f20,10}, {0x1db34,2}, {0x2f110,3}, {0x244e3,8}, {0x29d4,4}, {0x90fb,5}, + {0x286ba,7}, {0x1160,5}, {0x1b40a,8}, {0x10f48,5}, {0x1152b,4}, {0x1cc7b,8}, {0x17f62,5}, {0x1f368,3}, + {0xc040,2}, {0xd147,5}, {0x26c49,7}, {0xdafd,10}, {0x30eb,9}, {0x1db44,2}, {0x17204,6}, {0x279af,7}, + {0xbded,4}, {0x369,2}, {0xfa2,3}, {0x21e0b,8}, {0x94ad,5}, {0x2287b,6}, {0xcd48,5}, {0x13f14,10}, + {0x126d2,7}, {0x17f9e,4}, {0xafbe,6}, {0x1c8c,5}, {0x2e28,3}, {0x1cd1d,8}, {0x182c8,7}, {0x4153,6}, + {0xaf4,32}, {0x1a29a,6}, {0x104dd,4}, {0x104a,4}, {0xfa9d,8}, {0x9c85,3}, {0x11dfe,2}, {0xbc79,7}, + {0x278c1,7}, {0x3a48,5}, {0x14ff,8}, {0xe0bf,7}, {0x10c5,10}, {0xbb71,8}, {0xb3d9,6}, {0x15490,9}, + {0x214b9,6}, {0x83d9,6}, {0x240b,6}, {0x17d50,9}, {0xb381,4}, {0x32,2}, {0xd886,4}, {0x7096,4}, + {0x1635e,7}, {0x201d9,7}, {0x89df,6}, {0x30895,4}, {0x2542b,6}, {0x10eda,10}, {0x103b9,7}, {0x1ebe,4}, + {0x13f0a,9}, {0x2690c,2}, {0x1edf3,5}, {0x9b9d,6}, {0x87a0,5}, {0xafdd,12}, {0x20e11,7}, {0x1098,2}, + {0x1235,6}, {0x9e34,4}, {0x15517,5}, {0x19a69,9}, {0x17df,7}, {0x5c84,13}, {0x2b500,8}, {0x1b8a,4}, + {0x780a,8}, {0x16e1,6}, {0xe5be,3}, {0x1995b,8}, {0x18c50,5}, {0x2ff6a,4}, {0x1857,6}, {0x22fb8,3}, + {0x28f39,7}, {0x1120,3}, {0x27fa5,7}, {0x3433,6}, {0x1530a,10}, {0x11eb7,6}, {0x473b,8}, {0x10eae,8}, + {0x11eee,5}, {0x18494,10}, {0x2bc8f,6}, {0x21351,8}, {0x750b,8}, {0x7948,5}, {0x1a64b,9}, {0x27aff,7}, + {0x1ac45,6}, {0x3487,9}, {0x2f0a5,5}, {0x1eea1,2}, {0x166ec,9}, {0x1bb75,9}, {0xaec9,5}, {0xa01d,7}, + {0xfe3,5}, {0x1e274,8}, {0x3479,8}, {0x2991f,4}, {0x1da16,9}, {0x2746f,7}, {0x2cc57,4}, {0x8ca9,10}, + {0x15f12,9}, {0x1279,6}, {0xe67,3}, {0x9b25,5}, {0xe0a,2}, {0x37bc,5}, {0x5e27,3}, {0x1b1ee,5}, + {0xfef,6}, {0xb3c1,9}, {0x2af9f,2}, {0x320c,5}, {0x600,2}, {0x17e36,6}, {0xb649,5}, {0x28d0,8}, + {0xe133,5}, {0x162fa,7}, {0x3e0e,4}, {0x1a5b,3}, {0x2bc53,6}, {0x359f,9}, {0x3e43,8}, {0xefc9,7}, + {0x1231c,5}, {0x13050,7}, {0x683f,9}, {0x2ec9,5}, {0x16944,5}, {0xc609,6}, {0xb60d,6}, {0x1fc39,9}, + {0x5242,5}, {0x145b8,7}, {0x19419,5}, {0x9099,8}, {0xef87,10}, {0x14a3c,4}, {0x3ff5,11}, {0x3107,9}, + {0x2e27d,2}, {0x1577,14}, {0x6bc0,10}, {0x1fca,10}, {0x4ce0,6}, {0x1a47,4}, {0x662a,8}, {0x15284,4}, + {0x1ae88,6}, {0x5903,5}, {0x13ee,7}, {0x2de4b,4}, {0x9279,6}, {0x1711e,4}, {0x1ddbe,5}, {0x27ceb,4}, + {0x16fff,3}, {0x2230b,8}, {0x4359,8}, {0x50c9,8}, {0x1d878,9}, {0x4e12,2}, {0x2bc5f,6}, {0x23b63,5}, + {0x3170b,2}, {0x1809,3}, {0x16908,10}, {0x5dd0,6}, {0x16f16,8}, {0x2a29,15}, {0x124b6,9}, {0x1cca8,7}, + {0x1c3a6,9}, {0x251cb,8}, {0x24ddb,6}, {0x123bc,6}, {0x108d6,7}, {0x1acf0,9}, {0x12eac,8}, {0x22643,8}, + {0x1bfda,8}, {0x22ce3,7}, {0x237b,11}, {0x622,2}, {0x235d,8}, {0xc39f,4}, {0x22c1b,8}, {0x260f,9}, + {0x13adc,10}, {0x4aff,6}, {0x28a97,7}, {0x2de5f,3}, {0x189b,11}, {0x20543,2}, {0xbbe9,7}, {0x2146,3}, + {0x30e6f,3}, {0x23163,7}, {0xab27,5}, {0xe492,10}, {0x18084,6}, {0xae8d,10}, {0x1077a,5}, {0x21709,6}, + {0x236c,5}, {0x234f3,8}, {0xceea,6}, {0x16f34,8}, {0x2588,11}, {0x9b85,7}, {0x28fd,6}, {0x518c,9}, + {0x134d2,5}, {0x153aa,6}, {0xadfd,7}, {0x30a1d,2}, {0x1cbf4,9}, {0x6241,6}, {0x23b8b,8}, {0x58a3,5}, + {0x21f83,8}, {0x336,2}, {0x20550,2}, {0x1e223,5}, {0xd347,5}, {0x2d3ab,2}, {0x1d275,9}, {0x1a6a5,5}, + {0x10335,7}, {0x1034b,6}, {0x309d,3}, {0xc9d8,9}, {0x113ec,5}, {0x2de45,4}, {0x2e28,4}, {0x7860,5}, + {0x4e3f,8}, {0xb3c8,3}, {0x1693,2}, {0x4251,3}, {0x227f,3}, {0x10f48,7}, {0x1747,10}, {0x3324,5}, + {0xb355,10}, {0x219e1,8}, {0x11b3,6}, {0x1b3d7,6}, {0x28682,7}, {0xa485,9}, {0xc437,6}, {0x4edf,4}, + {0x16c64,10}, {0x1067f,3}, {0x172e,5}, {0xae99,5}, {0x2d95,8}, {0x1469,3}, {0xc3fb,5}, {0xa385,4}, + {0x75e8,8}, {0x1b425,8}, {0x16804,6}, {0x6ee8,3}, {0x5b4c,7}, {0xd286,11}, {0x12b4,3}, {0x6d33,4}, + {0xcc98,6}, {0x22a43,8}, {0xc857,11}, {0x112ef,10}, {0x1537,6}, {0x11822,8}, {0x141f,8}, {0xed2a,11}, + {0x159f4,7}, {0x2b6fb,6}, {0x2054a,2}, {0xa15d,4}, {0x1877,10}, {0x1e4cf,6}, {0x2b5ab,6}, {0x9e55,5}, + {0x162aa,9}, {0x2fd58,4}, {0x648d,8}, {0x1c23e,8}, {0xb09d,10}, {0xd704,5}, {0x514b,11}, {0x92c1,7}, + {0x2f4a,4}, {0x4aff,5}, {0x2ec2a,5}, {0x1d2f,6}, {0x114f,3}, {0x1a89d,9}, {0xf785,11}, {0x8e7d,7}, + {0x21179,6}, {0x119a,3}, {0x4227,3}, {0x10259,6}, {0x15512,10}, {0x15f7,4}, {0x16c3c,7}, {0x215f,8}, + {0x7156,7}, {0x18776,2}, {0x18238,2}, {0x59c6,7}, {0x8505,8}, {0xb74,16}, {0xfeac,3}, {0x6950,9}, + {0xc6f7,5}, {0x12b8f,3}, {0x171e6,5}, {0x9471,7}, {0x1d74,3}, {0x16a3a,3}, {0x1bb12,6}, {0x9ff9,12}, + {0x1a7b3,5}, {0x226ab,8}, {0x434b,5}, {0x10458,5}, {0x2ae51,7}, {0x1bf41,5}, {0x44c5,5}, {0x5430,6}, + {0x133e8,7}, {0x1a099,9}, {0x1c0a,10}, {0x1547c,9}, {0xd1a,4}, {0x4be9,6}, {0x27bc3,7}, {0xabc5,3}, + {0x9f69,7}, {0xcd48,7}, {0xd18,6}, {0x20571,2}, {0x2ef3,8}, {0x27cb8,7}, {0x1d18,8}, {0x11322,4}, + {0x11b26,5}, {0x2cbe5,4}, {0x314d,8}, {0xe56e,8}, {0x236f3,8}, {0x1db31,2}, {0x24a63,8}, {0x160b,4}, + {0x7119,3}, {0x2a29,7}, {0x8385,8}, {0x30cf,5}, {0x12397,6}, {0x2213,4}, {0x1152b,5}, {0x2ae20,5}, + {0x122c2,10}, {0x8,4}, {0x3385,6}, {0x1f8e,6}, {0xb1a5,7}, {0x19c58,9}, {0x1637,9}, {0x2fd3,10}, + {0x48dd,8}, {0x63cf,5}, {0xcf6,4}, {0x1e11e,5}, {0x1302,5}, {0x1cf0c,6}, {0x1140,2}, {0x333c,5}, + {0x308e1,6}, {0x3353,5}, {0x964d,4}, {0x1a681,9}, {0x7fe9,5}, {0x6c1b,7}, {0x5d66,8}, {0x1ca54,6}, + {0x52f8,8}, {0x279fc,6}, {0x16354,9}, {0x15396,5}, {0x107d9,9}, {0x26921,2}, {0xe7b0,5}, {0x2250b,8}, + {0x2a94,4}, {0x2d7c,3}, {0x1a0fc,9}, {0x8ce2,3}, {0x159d6,6}, {0x4e0b,8}, {0xb8d1,4}, {0x8b59,12}, + {0xce40,5}, {0x8da5,5}, {0x1c50e,8}, {0x30e17,4}, {0xead,5}, {0x15df0,9}, {0xf85,4}, {0x13910,6}, + {0x7643,5}, {0x1fa6e,9}, {0x12330,8}, {0xcbc7,7}, {0xb12d,7}, {0xb535,5}, {0x13e4c,9}, {0x24a23,8}, + {0x278e,7}, {0x1cd89,9}, {0x6b3e,10}, {0x2ba31,6}, {0xf0d1,8}, {0x1b986,6}, {0xf0a,5}, {0x7989,6}, + {0x193df,8}, {0xfa19,11}, {0x266f,4}, {0x24f4,3}, {0x9489,5}, {0x6637,10}, {0x4845,11}, {0x18f95,2}, + {0x4ac,2}, {0x1b46d,9}, {0xde15,11}, {0x47b9,6}, {0x28916,7}, {0x644,2}, {0x633,2}, {0x159c,4}, + {0xc05d,5}, {0x1109,11}, {0x22aab,7}, {0x3e0b,7}, {0x6b90,4}, {0x2de51,4}, {0x6bda,9}, {0xbc79,4}, + {0x15a26,7}, {0x3bdb,10}, {0x3fe7,8}, {0x1722c,6}, {0x190ac,8}, {0x1bab8,9}, {0x20951,6}, {0x7eed,6}, + {0xccb9,5}, {0x1d30e,9}, {0x1542c,10}, {0x5471,9}, {0x178c6,7}, {0xb7a5,7}, {0x5e4b,7}, {0x129b9,4}, + {0xefb3,5}, {0x4b2e,5}, {0x12c8b,5}, {0x2d65d,2}, {0x4eb0,4}, {0x12e8e,7}, {0x2d46f,4}, {0x2df0b,6}, + {0x16eb2,6}, {0x116d8,5}, {0x9d4d,10}, {0xb7bd,6}, {0x26d1e,4}, {0x655,2}, {0x27b7,7}, {0x2d5d,10}, + {0x10cd,2}, {0x2fe4d,4}, {0x1e3c,4}, {0x1660b,5}, {0x41a7,5}, {0x2e77c,2}, {0xed5,6}, {0x1cb1,3}, + {0x1501,3}, {0xc86d,11}, {0x20005,9}, {0xf79,4}, {0x18351,3}, {0x3409,9}, {0x10dd4,4}, {0x277b7,7}, + {0x6dd5,7}, {0x15b8e,9}, {0xf436,6}, {0x1dbd,10}, {0xf39,2}, {0x26193,7}, {0x1b14,4}, {0x23bd3,8}, + {0x21741,8}, {0x18d72,5}, {0x196c1,6}, {0x21359,8}, {0x1e784,8}, {0xb1a5,11}, {0x19fc1,8}, {0x79dd,5}, + {0x1c7de,8}, {0x7f95,10}, {0x8b9c,5}, {0x1b518,9}, {0x2e3d,12}, {0xb745,5}, {0xbdb1,12}, {0x1b5d5,6}, + {0x1decc,7}, {0xdd65,8}, {0x21cb1,8}, {0xcedf,10}, {0x62c3,7}, {0x1b607,3}, {0x226fb,7}, {0x8f1c,5}, + {0x2268,5}, {0x1145a,7}, {0x92ea,4}, {0x1ff6c,5}, {0xa5d5,8}, {0x1d320,6}, {0x1a615,9}, {0x30357,2}, + {0xd0b8,6}, {0xf344,11}, {0x1c640,9}, {0x1fc0,3}, {0x409d,8}, {0x17d5a,5}, {0xae45,9}, {0x4597,6}, + {0x38cb,7}, {0x12af6,9}, {0x2dd97,6}, {0x14ee6,6}, {0x1382,5}, {0x7997,4}, {0xc17d,6}, {0x1312c,6}, + {0x11b73,5}, {0x22113,6}, {0x1d40,2}, {0x6bcd,11}, {0x50c0,4}, {0x8181,9}, {0x36c5,14}, {0xb2d1,7}, + {0x18412,6}, {0x135f0,10}, {0x113e1,5}, {0x2362d,3}, {0x392d,10}, {0x2f01,8}, {0x1ae22,9}, {0xd7e5,9}, + {0x19e7,8}, {0x15f9e,10}, {0x23143,6}, {0x1cd4,5}, {0x28230,7}, {0x2846e,7}, {0x207a1,8}, {0x7373,5}, + {0xfd9,3}, {0x4326,2}, {0xe90,3}, {0x4ee8,7}, {0x17b20,8}, {0x29c7e,6}, {0x1204,4}, {0x180a2,10}, + {0x2777,8}, {0xeff5,11}, {0x307bc,2}, {0x1413a,9}, {0x739f,5}, {0x1bd52,6}, {0x1f444,2}, {0x118b3,5}, + {0xfe7,2}, {0x7b45,8}, {0x1017d,8}, {0x6af0,9}, {0x1221,3}, {0x6d46,12}, {0x943a,5}, {0x15760,9}, + {0x2821b,7}, {0x20a89,7}, {0x16b7,11}, {0x3f56,4}, {0xbfb5,5}, {0xfbbb,11}, {0x19ea1,9}, {0x28d8e,7}, + {0x1141,4}, {0x21901,8}, {0x1dec3,8}, {0x22e03,5}, {0x2845,4}, {0x273b9,6}, {0x1f378,9}, {0xb496,3}, + {0x211d1,8}, {0xc463,6}, {0x229a,7}, {0x5d58,3}, {0x1f6bd,9}, {0x13ad2,10}, {0x56e7,5}, {0x6991,12}, + {0x1025,2}, {0x5061,13}, {0x2016d,6}, {0x1b488,9}, {0xbb4,12}, {0xcb53,6}, {0xbbad,8}, {0x2ca1e,2}, + {0x13500,10}, {0x77e3,11}, {0x101b4,7}, {0x1057,2}, {0x16764,7}, {0x1a98,6}, {0xe650,5}, {0x1b96b,9}, + {0x127a4,7}, {0x2afb,12}, {0x793c,5}, {0x57be,5}, {0x15cf,7}, {0xe0e0,5}, {0x11e80,6}, {0x3823,10}, + {0x2463,4}, {0x402,2}, {0x2f577,4}, {0x1ae85,9}, {0x4ce,2}, {0x17f12,6}, {0x1e571,4}, {0x1131b,7}, + {0xe1b,2}, {0x102a2,4}, {0x1cd1d,9}, {0x3cf,2}, {0x6fd0,8}, {0x3315,3}, {0x62ea,7}, {0x24d65,2}, + {0x218b1,8}, {0x29436,2}, {0x15a62,7}, {0x2b87b,6}, {0xad19,11}, {0x1418f,5}, {0x93ed,12}, {0x45dd,6}, + {0x7385,6}, {0xc949,7}, {0x5372,4}, {0x1b1a,15}, {0x9e34,3}, {0x1fc61,5}, {0x48a9,3}, {0x1199a,4}, + {0x3144,5}, {0x830d,10}, {0xe794,10}, {0xf1c3,5}, {0x20941,8}, {0xc16,8}, {0x183f4,6}, {0x240b,5}, + {0x9045,12}, {0xf31,2}, {0x9e31,7}, {0x3599,3}, {0x11cbd,8}, {0x16ce,5}, {0x17d7,8}, {0x5fa5,5}, + {0xb289,12}, {0x1bb0,13}, {0x2fea7,4}, {0x648a,11}, {0xe43a,9}, {0x2dcd,10}, {0x1a7b3,6}, {0x22d9,7}, + {0x2f7d6,4}, {0x22e1b,8}, {0x10587,10}, {0x29dd1,2}, {0x58cf,7}, {0x12e8e,10}, {0x1ef0,8}, {0x20c19,8}, + {0x3315,4}, {0x1ceb2,9}, {0x2521b,6}, {0x3d55,5}, {0x980d,11}, {0x6abc,8}, {0x1e80,7}, {0xf65,5}, + {0x10018,5}, {0x1213,2}, {0x2f41,4}, {0x30f5,4}, {0xe83,6}, {0x1d770,3}, {0x9a6,2}, {0x1f303,6}, + {0x2eb35,3}, {0x19088,6}, {0x134d8,10}, {0xc36,8}, {0x2352,3}, {0x61e6,9}, {0xbf01,11}, {0x4137,6}, + {0x92fd,7}, {0x96c9,12}, {0xcd69,10}, {0x3208,3}, {0x211a,4}, {0x30dd3,4}, {0x11ad9,5}, {0x1a4e3,9}, + {0x26ff,8}, {0x175a9,3}, {0x5541,7}, {0x29226,7}, {0x43bb,9}, {0x4359,11}, {0x13046,10}, {0x4dc6,4}, + {0x219e9,8}, {0xf8e,5}, {0x2dedd,4}, {0xb96d,5}, {0xc7ff,5}, {0xddb9,4}, {0xfa50,5}, {0x71be,6}, + {0x21e33,8}, {0x917d,10}, {0x13230,9}, {0x13b04,10}, {0xe101,5}, {0x690f,12}, {0x1133c,5}, {0x1c4a2,8}, + {0x9f81,11}, {0xb025,9}, {0x287d4,6}, {0x170ba,5}, {0x61ac,6}, {0x80cd,11}, {0x1a5fa,8}, {0x1c7cc,9}, + {0xa5ed,5}, {0x1130c,3}, {0x2cf0f,6}, {0xee59,5}, {0x1b4b5,8}, {0x451b,2}, {0x1b5e7,6}, {0x3c91,7}, + {0x1c613,5}, {0x30f6,3}, {0x2d72,7}, {0x6def,8}, {0x1212,3}, {0x27ee1,7}, {0x5b06,4}, {0x25d5e,2}, + {0x1a000,8}, {0x1054a,5}, {0x18ee,3}, {0xceee,6}, {0xd70f,4}, {0xe09,2}, {0xb69d,5}, {0x1ac2a,9}, + {0xc445,5}, {0x14842,10}, {0x8a87,6}, {0xcb9b,8}, {0x1ce97,8}, {0x1a19,3}, {0x21181,8}, {0x168f,3}, + {0x1b40,5}, {0x4153,8}, {0x11850,7}, {0x1562a,10}, {0x4911,9}, {0x4524,3}, {0x1667,4}, {0x242eb,7}, + {0xa6d1,10}, {0x46af,4}, {0x1af2,10}, {0x19fc1,7}, {0x232bb,6}, {0x19c22,9}, {0x24661,2}, {0x1d692,9}, + {0x2638b,5}, {0x2778d,7}, {0x2957,7}, {0x3bee,5}, {0x10c04,5}, {0x1297a,9}, {0x31d9,8}, {0x1a86,3}, + {0x128bc,8}, {0x17e18,6}, {0x93e1,9}, {0x30fff,6}, {0x112b,14}, {0xb3f1,5}, {0x277b0,7}, {0x28f1f,5}, + {0x1244,3}, {0x9c69,7}, {0x1aca,5}, {0x1399f,3}, {0x19583,3}, {0x69ca,7}, {0x455f,5}, {0xf4d0,7}, + {0x23e98,2}, {0x21c81,8}, {0x18c1e,5}, {0x2b57,13}, {0x14fcc,7}, {0x4455,4}, {0x82dd,6}, {0x9efd,9}, + {0xee22,5}, {0x1847,9}, {0xde07,3}, {0xcb59,8}, {0xa815,9}, {0x997a,7}, {0x71ff,13}, {0x8235,7}, + {0x233bb,8}, {0x239eb,8}, {0x887d,8}, {0xc541,3}, {0x1007b,5}, {0x39a1,5}, {0xee5a,4}, {0x1384,2}, + {0x1f4aa,9}, {0x3d71,8}, {0x175ba,7}, {0x2ff38,4}, {0x2252b,4}, {0x130e1,4}, {0xe2b9,11}, {0x2df35,6}, + {0x1cc57,9}, {0xa5b1,12}, {0x5f04,3}, {0x28532,6}, {0x14162,9}, {0x19c7,7}, {0xc394,5}, {0x18f7,5}, + {0x20510,2}, {0x4f0,2}, {0x16926,10}, {0x3be3,3}, {0x2fd3f,4}, {0x17588,10}, {0x66cb,6}, {0xb805,5}, + {0xb985,5}, {0x14e50,9}, {0xab1,16}, {0x1b866,5}, {0x166d8,6}, {0x6d6d,13}, {0x4784,4}, {0xdc6e,4}, + {0x83c1,7}, {0x11a6b,5}, {0x2864a,7}, {0x2d25,8}, {0x1f52,10}, {0x1a4da,8}, {0xf04,3}, {0xf554,10}, + {0x787f,11}, {0xc2c1,7}, {0x16192,10}, {0x31a1,14}, {0x13d16,10}, {0x116e3,6}, {0x4df,2}, {0x14d42,5}, + {0x26768,2}, {0x2df11,6}, {0x11515,5}, {0x219b,13}, {0x1ef7f,9}, {0x6031,5}, {0xcd1,5}, {0x3a3e,6}, + {0x5290,12}, {0x193f,3}, {0x12b8c,8}, {0x7a13,5}, {0x1efbe,5}, {0x11186,2}, {0x1987,5}, {0x16692,5}, + {0x23c23,3}, {0x1754c,9}, {0x11184,4}, {0x12c86,10}, {0x237e,5}, {0x27f19,7}, {0x1b08f,9}, {0xd134,4}, + {0x28f71,6}, {0x2663,6}, {0xf9f8,5}, {0x13cee,10}, {0x180d,4}, {0x7881,9}, {0x12e98,7}, {0xec6f,7}, + {0x14273,7}, {0x1db3a,2}, {0xc1d3,2}, {0x3583,7}, {0x88fb,5}, {0x1b5a8,6}, {0x2252b,8}, {0x26f60,7}, + {0x139c9,5}, {0x19d30,9}, {0x2a58,2}, {0x354f,4}, {0x1a27f,6}, {0x50d6,13}, {0x23333,8}, {0x13f7,11}, + {0x1b4e2,6}, {0xb34,16}, {0x1fc5d,9}, {0x1d545,8}, {0x57a4,6}, {0xe38a,10}, {0x358,2}, {0x15936,10}, + {0x11817,5}, {0x10efb,5}, {0x3bcd,6}, {0x2ed13,2}, {0x49bf,3}, {0x1b0f,3}, {0x14ec8,9}, {0xca46,11}, + {0x19790,9}, {0xb191,5}, {0xe35e,9}, {0x12ce0,7}, {0xec17,7}, {0x15ca,4}, {0x4eef,5}, {0x2d685,4}, + {0x1f116,7}, {0xadd9,8}, {0x66c6,6}, {0x2815,7}, {0xef2,4}, {0x501,2}, {0xdd65,7}, {0x1819,5}, + {0x51b8,4}, {0x1c1d,4}, {0x2cc39,6}, {0xf722,9}, {0x20ce1,6}, {0x1dcb6,3}, {0x98e5,8}, {0xfb7,3}, + {0x1357,2}, {0x1f462,8}, {0x41d1,7}, {0x12a7,3}, {0x22453,8}, {0x1da70,9}, {0xa461,8}, {0x32b9,10}, + {0x21281,8}, {0x1fdb3,6}, {0x1ce85,8}, {0x4b11,4}, {0x4dd1,4}, {0xf09a,11}, {0x1b9f2,6}, {0x205a7,2}, + {0x5a48,12}, {0x26253,6}, {0x12240,6}, {0x26d0d,7}, {0x18dcc,10}, {0x1d2d8,8}, {0x2314b,8}, {0x1697,4}, + {0x2cf63,4}, {0x5715,11}, {0x4e3a,4}, {0x1307,2}, {0xfaf,2}, {0x160e8,10}, {0x2129,4}, {0x6087,9}, + {0x256e3,7}, {0x7421,9}, {0xf19,2}, {0x6ee6,5}, {0x2c55f,5}, {0x153e6,9}, {0x1bd7f,9}, {0x82bc,3}, + {0x6157,13}, {0x207f4,5}, {0x1c73c,8}, {0x65e9,11}, {0x9fb7,6}, {0x1522e,9}, {0x1f19,5}, {0x12f13,7}, + {0x163d6,8}, {0x16552,7}, {0x2ed24,5}, {0x13bb8,10}, {0x1170f,7}, {0x1dc58,2}, {0x10411,11}, {0x1786c,9}, + {0x1cee8,8}, {0x261e,9}, {0x7b2d,7}, {0x79d1,6}, {0x20ed1,8}, {0x8751,11}, {0xb901,5}, {0x31703,2}, + {0x4457,2}, {0x12075,5}, {0x1e907,6}, {0x6b17,12}, {0x2c86,2}, {0x6813,5}, {0x6d2c,11}, {0x1cd2,3}, + {0x26dd8,7}, {0x1920b,9}, {0xeaf,3}, {0xd6f3,11}, {0x11b10,11}, {0xf9ed,10}, {0x5944,8}, {0x139c4,10}, + {0x18052,10}, {0x15756,7}, {0x26c6c,7}, {0xf507,11}, {0x1234e,10}, {0x1949,3}, {0x8871,5}, {0x2dee3,4}, + {0xd428,8}, {0x1eee6,7}, {0x192a4,9}, {0x11547,5}, {0x546a,7}, {0x7965,9}, {0x2ff06,4}, {0xd4a1,8}, + {0x2f78,6}, {0x3329,7}, {0x23503,8}, {0x4bcf,9}, {0x6326,5}, {0x21e7b,8}, {0x8c67,4}, {0x212f9,8}, + {0x10314,8}, {0x1b34,4}, {0x10eae,11}, {0x23b7b,8}, {0x26ca4,7}, {0x62fa,4}, {0xb619,5}, {0x26c11,7}, + {0x71f2,10}, {0x5909,4}, {0x2bb4,5}, {0x2ce7f,6}, {0x19310,9}, {0x2d7c,4}, {0x10776,9}, {0xfca2,11}, + {0x157b0,10}, {0xd659,10}, {0xa149,9}, {0x2c0f7,6}, {0xa449,11}, {0x2b75,2}, {0x2c0fd,6}, {0x1db12,6}, + {0xd78,4}, {0x26b7e,7}, {0x28309,7}, {0x658e,12}, {0xb559,6}, {0x51b9,3}, {0x2fe2f,4}, {0x348b,5}, + {0x19f7,7}, {0x1c9cd,9}, {0x20071,6}, {0x21f73,6}, {0xe3b2,4}, {0x15a7,7}, {0x1b086,5}, {0x1260a,8}, + {0x7f09,8}, {0x19a7b,9}, {0x833d,5}, {0x117eb,5}, {0xd0a9,4}, {0xc39d,5}, {0x1efac,9}, {0xeb6,2}, + {0x19dd2,7}, {0x1694e,10}, {0x10e3,3}, {0x28a3,13}, {0x1130,2}, {0x70a3,5}, {0x724d,6}, {0x2663,5}, + {0x527c,7}, {0x12308,9}, {0xb0e0,5}, {0x27112,7}, {0x1d692,8}, {0x449b,5}, {0x213d9,7}, {0x1cd2f,9}, + {0x20f6,10}, {0x2dc6,4}, {0x1b0e9,9}, {0x27c2,6}, {0xe629,7}, {0x1821e,5}, {0x1c54d,9}, {0xcc1f,10}, + {0x173d0,5}, {0x2304b,6}, {0x1edf,4}, {0x1c499,9}, {0x17312,5}, {0x1f768,9}, {0x23b43,7}, {0x7097,5}, + {0x445e,2}, {0xb45d,4}, {0x589,2}, {0x2ba7,4}, {0x409d,12}, {0x78cd,3}, {0x750b,12}, {0xa311,12}, + {0x1ad0b,8}, {0x1f165,9}, {0x18aac,7}, {0x2df17,6}, {0x1d8ed,7}, {0xef08,6}, {0xc9a1,8}, {0x16cdc,8}, + {0x17148,2}, {0x20ec9,8}, {0x2365,7}, {0x1030e,5}, {0x1757,8}, {0xd2c8,11}, {0x16d90,10}, {0x1c0c4,9}, + {0xdb73,3}, {0x1bda3,6}, {0x1c293,5}, {0x141a8,10}, {0x1f46,3}, {0x3353,7}, {0x4589,8}, {0x22493,8}, + {0xe75d,11}, {0x4459,2}, {0x1166d,4}, {0x2e79e,4}, {0x8601,10}, {0x2c271,6}, {0xc6dc,5}, {0x3f15,14}, + {0x5fd1,5}, {0x24bc5,2}, {0x4ca6,6}, {0x27fdd,7}, {0x1137e,5}, {0x42f9,5}, {0xe2c4,8}, {0x7d98,4}, + {0xf226,11}, {0xefb3,6}, {0x63ee,12}, {0xd48b,11}, {0x1693,3}, {0xf1a,3}, {0x164d0,7}, {0xc992,4}, + {0x53c8,9}, {0x19a7,4}, {0x2f0a7,3}, {0xe101,8}, {0x29fe,3}, {0x2fd35,4}, {0x6dfe,3}, {0xca51,8}, + {0x22473,7}, {0x79c5,8}, {0x1edf,7}, {0x8ae1,8}, {0x2277,5}, {0x712f,6}, {0x2f1c7,5}, {0xfa5,4}, + {0xba75,11}, {0x1a7aa,9}, {0x4bec,9}, {0x1215,4}, {0x1b329,9}, {0x956d,5}, {0x45ca,4}, {0x5f22,3}, + {0x53ef,7}, {0x30ebf,3}, {0x7c90,5}, {0x11ec2,5}, {0x16318,6}, {0x197d8,9}, {0x13a50,10}, {0x6eac,3}, + {0x12211,4}, {0x27f97,7}, {0x18d2,5}, {0x17f26,6}, {0x2896a,6}, {0xc08d,6}, {0x2ef3,7}, {0xf60,5}, + {0x1599a,6}, {0x2fb1e,4}, {0xe71,2}, {0xf14a,10}, {0x17efe,5}, {0xe989,5}, {0x1ac7b,6}, {0x17c44,4}, + {0x26617,4}, {0x16bd8,10}, {0x14932,9}, {0x1c8b,3}, {0x11daf,6}, {0x27d9,2}, {0x9a11,12}, {0x21e8b,8}, + {0x20c49,8}, {0x6ec3,4}, {0x11871,6}, {0x14d4c,10}, {0x4845,7}, {0x7795,5}, {0x1274a,7}, {0x3b8c,3}, + {0x4861,4}, {0x4e62,4}, {0x62a9,10}, {0xb3b5,5}, {0x48d7,2}, {0x111c8,2}, {0x5047,9}, {0x13ab0,4}, + {0x7d3d,6}, {0x90ed,6}, {0x6cd1,6}, {0x2ec2c,3}, {0xc76,4}, {0x15fee,10}, {0x10600,8}, {0x10f48,8}, + {0x1917,5}, {0x153dc,10}, {0xee7f,6}, {0xa575,9}, {0x4199,8}, {0x21a61,8}, {0x1e8f,6}, {0x21a49,8}, + {0x42b1,7}, {0x2ef8,3}, {0x1a237,7}, {0x1a5b,2}, {0x32b9,9}, {0xfd1b,11}, {0x2fe75,4}, {0x7518,5}, + {0x4522,3}, {0x5b7b,5}, {0x30d37,4}, {0x13ae,5}, {0xca93,11}, {0x2590b,7}, {0x1766b,2}, {0x1b97d,9}, + {0x110d4,6}, {0x9cac,5}, {0x11e87,4}, {0x1772,5}, {0x66b9,8}, {0x14d42,9}, {0x14a54,10}, {0x1a07,5}, + {0x7e9d,3}, {0xb604,4}, {0x18ce6,5}, {0x2248,3}, {0x169ee,9}, {0x59a,2}, {0x21039,8}, {0x9a9,4}, + {0x4295,5}, {0x14c6c,4}, {0x144b4,10}, {0x520e,7}, {0x2f9b,8}, {0x18764,5}, {0x2f227,2}, {0xf11,2}, + {0xf31,3}, {0xab45,8}, {0x39a2,4}, {0xbba1,6}, {0x1bd91,6}, {0xf575,10}, {0x26dae,7}, {0xa61d,7}, + {0x1f687,4}, {0x1b22d,9}, {0x2de2b,2}, {0x1286c,5}, {0x145a4,10}, {0x73e0,7}, {0xaf4d,8}, {0xc600,5}, + {0x2536b,6}, {0xb895,7}, {0xe2a,3}, {0x17b48,5}, {0x119b0,5}, {0x4927,4}, {0x39d5,12}, {0xb205,7}, + {0x5539,3}, {0x255b,14}, {0x10e2a,5}, {0x184d,6}, {0x29d4,3}, {0x165a7,4}, {0x478f,7}, {0x1bd01,8}, + {0x17e7,9}, {0x1ce22,9}, {0x13c0,4}, {0x1709c,8}, {0x1d58d,9}, {0x8db7,5}, {0x1a71,4}, {0x15530,9}, + {0x1b0bc,9}, {0x1485c,4}, {0x269be,7}, {0x1b5cc,9}, {0x14a68,10}, {0xea5f,9}, {0x1bfb,7}, {0xa455,12}, + {0x19508,6}, {0x10a90,3}, {0x21739,7}, {0x2e86b,3}, {0x2811f,7}, {0x13fe6,9}, {0x7421,4}, {0xf23,2}, + {0x2ded7,4}, {0x1a57,4}, {0x22e5,5}, {0xc996,6}, {0x29e0,2}, {0x17fb8,4}, {0x1165,4}, {0x252ab,4}, + {0x11a1e,6}, {0x1daa6,5}, {0x6cff,4}, {0x18930,7}, {0x14946,9}, {0x2a2b,3}, {0x154f4,6}, {0x12a4,5}, + {0x307ff,2}, {0x3378,5}, {0x1a603,9}, {0x2de5d,5}, {0x20389,2}, {0x10ff8,5}, {0x16ff2,6}, {0xaba5,6}, + {0x38e7,5}, {0xd229,4}, {0x17df,3}, {0x10af6,4}, {0x413,2}, {0x5ab,2}, {0x28f2b,7}, {0x17e2c,6}, + {0x8415,5}, {0x14248,7}, {0x1da3a,5}, {0x16606,10}, {0x9975,12}, {0x27613,7}, {0x58a8,10}, {0xe3b0,6}, + {0x1c6d,5}, {0x4519,5}, {0x9ca5,6}, {0x5c02,5}, {0x6a95,13}, {0x2f781,5}, {0x14f0,3}, {0x1d143,5}, + {0x1c19,9}, {0xe705,11}, {0x6cee,4}, {0x6bd6,4}, {0x34a5,3}, {0x2fb78,5}, {0x6950,10}, {0x3019,14}, + {0x4fab,5}, {0xde83,11}, {0x1295,3}, {0xa766,7}, {0xfe5a,11}, {0x8679,12}, {0x2f2b,7}, {0xc76,8}, + {0x28df,8}, {0x14d1a,10}, {0xf9a0,11}, {0x1d8ae,9}, {0x3063,5}, {0x1929b,9}, {0x1fa2,3}, {0x11ad,3}, + {0x13f7e,4}, {0x19e9,3}, {0xe6a,4}, {0x12ba7,3}, {0x1a05a,6}, {0x7e2d,7}, {0x25493,8}, {0x1637,7}, + {0x2257b,8}, {0x602c,10}, {0x10432,10}, {0x96a5,10}, {0x6fad,7}, {0x2713c,7}, {0x28fcc,4}, {0x6497,5}, + {0xa9a1,9}, {0x42cd,9}, {0x61e6,13}, {0x29f27,5}, {0x780a,13}, {0x2777,10}, {0x11de6,10}, {0x22403,8}, + {0x64be,13}, {0x2cfd5,5}, {0x896d,9}, {0x26c65,7}, {0x3643,3}, {0x1bca7,7}, {0x2f94,4}, {0x2dd1f,6}, + {0x6087,12}, {0xf9ab,8}, {0x13de8,10}, {0x45f5,4}, {0x14f5e,8}, {0x1131b,11}, {0x464d,5}, {0x1b13a,9}, + {0x2984,5}, {0x836d,5}, {0x613d,6}, {0x27dbb,7}, {0x308b,3}, {0xadc1,7}, {0x21e1b,7}, {0xcc2a,11}, + {0x16340,6}, {0x18afc,6}, {0x2f70e,5}, {0x5863,4}, {0x2c26b,6}, {0x44b7,7}, {0x104a5,6}, {0xde29,2}, + {0x445c,2}, {0x2fda3,4}, {0x28733,5}, {0xb45d,8}, {0x1ec4c,5}, {0x29efd,7}, {0x174d4,6}, {0xcbd,2}, + {0xdb08,8}, {0x2fc7c,4}, {0x1909a,9}, {0x22be3,8}, {0x4e8d,7}, {0x2366b,8}, {0x18773,2}, {0x1c769,9}, + {0x1b9fb,9}, {0x4057,13}, {0x27ceb,5}, {0x1154c,8}, {0xbc01,4}, {0x28b2,10}, {0x2d9b9,5}, {0x1f072,9}, + {0x1cbce,8}, {0x13c80,10}, {0x2094,7}, {0xcddd,5}, {0x5699,4}, {0xeef8,8}, {0x284de,6}, {0x300b,8}, + {0xf436,8}, {0x1ba31,6}, {0x133e8,6}, {0x256a,12}, {0x2770f,7}, {0x3643,4}, {0xdfac,7}, {0x902d,12}, + {0x2df1d,6}, {0x1378a,8}, {0x1bef9,8}, {0xb0cd,7}, {0x1ee71,5}, {0x12092,6}, {0x18e08,8}, {0x42db,14}, + {0x4615,8}, {0xbfe5,5}, {0xed35,5}, {0x10e09,8}, {0xc560,6}, {0x21291,7}, {0x12ed4,10}, {0x9f32,6}, + {0x11ca,2}, {0xb589,4}, {0x1220e,7}, {0x1fe5e,9}, {0x24a65,6}, {0x1314e,4}, {0x14d4c,5}, {0x9639,12}, + {0x1c613,6}, {0x473d,3}, {0x10eb9,8}, {0xed6c,11}, {0x4928,3}, {0x2d839,6}, {0x11536,6}, {0xcb7a,8}, + {0x16f7a,10}, {0x399d,9}, {0x7824,5}, {0x3695,4}, {0x14df6,8}, {0x26cd5,6}, {0x18e08,9}, {0x2db3f,6}, + {0x205a5,2}, {0x1ca0,5}, {0x2cc2d,6}, {0x1bfa4,5}, {0x4f24,4}, {0xf0fd,10}, {0x479d,5}, {0x83cd,12}, + {0x5a07,13}, {0x16fe8,6}, {0x713c,5}, {0x9b3,4}, {0x18174,7}, {0xc26d,4}, {0x12ad8,8}, {0x13474,6}, + {0x1ba9,3}, {0x599f,10}, {0x5fc4,5}, {0x950d,12}, {0x4e0d,6}, {0x1f04e,9}, {0x30dbb,4}, {0x1894e,9}, + {0xe424,7}, {0x296be,7}, {0x1bf92,9}, {0x2ded1,4}, {0x3594,5}, {0x2239,4}, {0x18714,6}, {0xb355,12}, + {0x22a13,8}, {0xd8e2,11}, {0x177c,7}, {0x12939,5}, {0xb18d,9}, {0x6,3}, {0x1f97b,4}, {0x3ed7,6}, + {0x150b2,6}, {0x496c,6}, {0x30f9,7}, {0x45cf,7}, {0x275f7,6}, {0x7555,4}, {0x7e11,4}, {0x28d0,13}, + {0x8d2d,5}, {0x2885,8}, {0x26da2,4}, {0x1ae46,9}, {0x71be,4}, {0x201eb,9}, {0x1c82,15}, {0x294f0,6}, + {0x2ba52,3}, {0x1e4d1,4}, {0x4a34,4}, {0x12a1,8}, {0x2d51b,4}, {0x10e4b,6}, {0xf38,2}, {0xb8dd,6}, + {0x1377,5}, {0x112d,4}, {0x33a7,8}, {0x486f,6}, {0x8102,3}, {0x7f05,12}, {0x2538b,8}, {0xaae5,11}, + {0x585a,7}, {0x6e71,12}, {0x19dff,9}, {0x8109,8}, {0x11a4a,6}, {0xf9f,4}, {0x4765,6}, {0x1be9f,6}, + {0x3065,7}, {0xb985,7}, {0xae69,8}, {0x2e85c,8}, {0xe164,6}, {0x13bcc,10}, {0x2fcbd,4}, {0x1ec70,8}, + {0x224c3,8}, {0x1f8fd,5}, {0x1a49b,6}, {0x1debc,2}, {0x1497b,6}, {0x1859,3}, {0x1919,2}, {0x347,2}, + {0x23bb3,8}, {0x164bc,10}, {0x221bb,8}, {0x14888,10}, {0x1eff,7}, {0xb805,7}, {0x23d0,5}, {0x27ad5,7}, + {0x11352,5}, {0x1df1d,9}, {0x1f55e,9}, {0x30df7,4}, {0x1650,7}, {0x2b827,6}, {0x1e8f,8}, {0x3ebb,4}, + {0xd48,6}, {0x1d5e7,9}, {0x24d5b,5}, {0x1b8d2,9}, {0x112ad,7}, {0x2779b,5}, {0x1427,6}, {0x204cb,2}, + {0x2e33,8}, {0x2fc13,3}, {0x7b70,5}, {0x218e9,8}, {0x4c03,5}, {0xd3d0,11}, {0x10b49,7}, {0x2d3bc,2}, + {0x234eb,8}, {0x2b0a8,6}, {0x1b212,8}, {0x4e45,3}, {0x12b78,10}, {0x2bf29,6}, {0xf93,8}, {0x17dc,3}, + {0x185de,5}, {0x10352,4}, {0x2be3f,5}, {0x4c5e,8}, {0x201d9,9}, {0x29bfb,2}, {0x14a7,12}, {0xff36,6}, + {0x910c,5}, {0x2370,3}, {0x2408b,8}, {0x4cc6,5}, {0x1e30d,5}, {0x2b703,4}, {0x2cbe7,2}, {0x99da,7}, + {0x1b0aa,8}, {0x18656,10}, {0xf164,7}, {0x22263,8}, {0xfdc0,11}, {0x1159,4}, {0x1beba,9}, {0x9225,9}, + {0x124b6,10}, {0x74f8,2}, {0x29ed,6}, {0x25723,7}, {0x16e4e,10}, {0xf6e,9}, {0x3f07,11}, {0x1be8d,9}, + {0x19670,5}, {0x4fa2,5}, {0x27d36,7}, {0xbc31,5}, {0x25163,7}, {0x164c,4}, {0xba39,4}, {0x6275,6}, + {0x1b521,9}, {0x2d2b1,5}, {0x26b38,7}, {0x13e02,4}, {0xad79,12}, {0xbbe9,12}, {0x1fce4,9}, {0x26994,7}, + {0xe348,11}, {0x1062,5}, {0x9b49,7}, {0x2332b,8}, {0x277d,3}, {0x20f79,8}, {0x2ad4,4}, {0x1ef81,4}, + {0x26e02,7}, {0x424,2}, {0x298f5,5}, {0x1c7cc,8}, {0x2f92,3}, {0xc437,5}, {0x1c490,9}, {0x15d8c,7}, + {0x286d,5}, {0x132ee,8}, {0x4798,5}, {0x11caa,5}, {0x1953e,9}, {0x280cb,7}, {0x4a44,4}, {0x7b21,5}, + {0x92b5,5}, {0xfea7,8}, {0x2c16,5}, {0x1cee,4}, {0x1342e,5}, {0x25e2,9}, {0x2820d,7}, {0xe3ab,11}, + {0x1f81c,5}, {0xb09d,12}, {0x569b,5}, {0x60f3,7}, {0xe90a,11}, {0x5897,3}, {0x2f0f,14}, {0xe5b,6}, + {0x4ce6,7}, {0xd3f1,10}, {0x1067,9}, {0x9ca5,7}, {0x29942,6}, {0x29d57,5}, {0x1b9a1,9}, {0x28276,6}, + {0x26246,5}, {0x1ee9,15}, {0x9af,4}, {0x2db99,6}, {0x1d05,4}, {0x23813,8}, {0x167c8,7}, {0x10d64,7}, + {0x2b88d,5}, {0x89d3,3}, {0xf9fd,5}, {0x2fb7,5}, {0x1edf5,3}, {0x2d11,4}, {0x7d64,4}, {0x8115,7}, + {0x23f16,2}, {0xc42c,8}, {0x1917b,9}, {0x42bf,9}, {0x16a48,7}, {0x1711e,5}, {0xefdf,8}, {0x10d2,3}, + {0x1244,8}, {0x31b31,2}, {0x1bc68,5}, {0x4c37,8}, {0x32ff,7}, {0x61a1,4}, {0x3f1,2}, {0x1c28f,9}, + {0x2a309,7}, {0x29922,2}, {0x4401,10}, {0xb3db,4}, {0x17e36,8}, {0x1e576,3}, {0x6dae,5}, {0x255db,6}, + {0x5f83,6}, {0x2bd5,7}, {0x17dbe,7}, {0xeda5,4}, {0x12d8a,7}, {0xf0b0,11}, {0x109ff,6}, {0xc341,4}, + {0x1702e,5}, {0x14702,6}, {0x9ced,8}, {0x12f6a,10}, {0x1005,2}, {0x23b83,7}, {0x14c7,16}, {0x17b0,3}, + {0x175d8,9}, {0x1a6c0,7}, {0xc7de,7}, {0x29f43,7}, {0x1691c,10}, {0x2d4e9,2}, {0x12326,6}, {0x9905,4}, + {0x9af,8}, {0x185e8,5}, {0x271d,12}, {0x2ac2d,5}, {0x2cc59,2}, {0x1c1e0,4}, {0x191d5,6}, {0x9af,16}, + {0x2df23,6}, {0xe8c,6}, {0x2bd79,6}, {0x4789,5}, {0x2c37,9}, {0x74e4,5}, {0x1491e,6}, {0x2daa,7}, + {0x37a,2}, {0x7108,5}, {0x24ddb,5}, {0xdc3c,9}, {0x24ec3,8}, {0x21cbc,4}, {0x25ccb,7}, {0x1e2b3,9}, + {0x7913,3}, {0x1fd1a,6}, {0x1fb34,9}, {0x28242,3}, {0xebca,11}, {0x2f756,2}, {0x77c9,8}, {0x236eb,8}, + {0xc15b,2}, {0x2ba2,3}, {0x17120,2}, {0xfd4d,5}, {0x11b89,5}, {0x28efa,7}, {0x2fd71,4}, {0x6f8a,4}, + {0x27016,6}, {0x24023,5}, {0x2a165,7}, {0x11f5c,4}, {0x1a0a2,6}, {0x232d7,4}, {0x10d6,12}, {0x30e4b,4}, + {0x25b43,8}, {0x57d2,4}, {0x1a318,6}, {0x5722,11}, {0x1a3cc,9}, {0x207f1,8}, {0x643c,7}, {0x15508,8}, + {0x2178,5}, {0x7170,6}, {0x10f53,7}, {0x2de75,5}, {0x1805f,2}, {0x18b56,5}, {0x26103,4}, {0xad19,12}, + {0xed38,5}, {0x5604,12}, {0x1a84,8}, {0x7eb1,7}, {0x4aff,9}, {0x198cf,5}, {0x2df2f,6}, {0x8949,7}, + {0x6008,6}, {0x3b4f,5}, {0x29c93,6}, {0x28fc2,2}, {0xfc6b,11}, {0x54d9,13}, {0x11191,4}, {0xf0a5,8}, + {0x1b3d4,9}, {0x3e23,4}, {0x75e8,10}, {0x9de9,8}, {0x39c,2}, {0x20be5,4}, {0x22e4b,5}, {0x2712e,7}, + {0x11418,6}, {0x1a747,7}, {0x9d43,4}, {0x21819,6}, {0xbb35,5}, {0x22b6b,8}, {0x6238,4}, {0x75b4,7}, + {0xb149,7}, {0x7559,6}, {0x20999,8}, {0xe10,2}, {0x174b,2}, {0x20851,6}, {0x3c88,3}, {0x5dc9,10}, + {0x56a7,6}, {0x18ab6,10}, {0x1dc2,5}, {0x5290,7}, {0xeeab,6}, {0x2777,15}, {0x28504,4}, {0x45cf,6}, + {0x23763,8}, {0x1eaa5,5}, {0xa40d,12}, {0x2036e,4}, {0x60c8,13}, {0x1bec,10}, {0x26283,7}, {0x4b07,5}, + {0x3be9,10}, {0x16264,10}, {0x1e5b0,5}, {0xac11,10}, {0x11cff,7}, {0x21941,6}, {0x1f984,4}, {0x2bf3b,5}, + {0xf69,4}, {0x41cc,5}, {0x1b88a,6}, {0x1b1af,9}, {0x260f,14}, {0x7fb9,12}, {0x16e1c,10}, {0x9b4d,4}, + {0x7353,2}, {0x34a9,3}, {0x2fd8a,4}, {0x1f918,9}, {0x584a,2}, {0x1a17,4}, {0x9c87,4}, {0x2d95,13}, + {0xfcce,11}, {0x25f4b,7}, {0x21841,8}, {0xee69,5}, {0x2521d,4}, {0x185c5,4}, {0x2ce9,4}, {0x48d2,3}, + {0x7611,3}, {0x11163,5}, {0x1f4d9,5}, {0x4367,9}, {0x147b6,9}, {0x1b0a6,4}, {0x18016,5}, {0x14ce8,9}, + {0x27dc2,6}, {0x28085,7}, {0x21aa,7}, {0xf85b,5}, {0x250e3,5}, {0x12c63,5}, {0x31a95,2}, {0xca0f,10}, + {0xecc,3}, {0x15fc6,7}, {0x70f8,3}, {0x2533b,5}, {0x15c06,6}, {0x136e0,10}, {0x1c22c,9}, {0x27b7d,7}, + {0x2de2d,4}, {0x2a961,7}, {0x13e4c,10}, {0x31ef,5}, {0x28d0,5}, {0x21ad9,8}, {0x7305,3}, {0x73b9,8}, + {0x193df,9}, {0x22bfe,5}, {0x28dbf,6}, {0x181ce,6}, {0x2fcef,4}, {0x16b6e,6}, {0x296e,4}, {0x435,2}, + {0x15044,10}, {0x9af5,8}, {0x5e4b,6}, {0x6895,5}, {0xe4c9,8}, {0xd66b,4}, {0x24663,4}, {0x1ce6a,9}, + {0xc8f7,4}, {0x3257,10}, {0x1720,7}, {0xdeba,10}, {0xfe6,4}, {0x7602,9}, {0x4183,4}, {0x1186,2}, + {0xada9,8}, {0xcd0d,4}, {0xe0a1,5}, {0x10b4,7}, {0xd3b4,6}, {0x14e73,5}, {0x11a0b,4}, {0x201be,9}, + {0xc563,2}, {0x1709c,10}, {0xb979,4}, {0x1aa7a,9}, {0x13dfc,5}, {0xc9ac,7}, {0x18c88,4}, {0x19b7,4}, + {0xc6ec,11}, {0x11850,11}, {0x52aa,10}, {0x11b5d,5}, {0xc928,6}, {0xf6bb,4}, {0x83d9,7}, {0x14e3c,5}, + {0x4f9e,5}, {0x2bb93,6}, {0x1db3,4}, {0x9105,7}, {0x9d05,8}, {0x735e,6}, {0x1eb98,8}, {0x2c913,6}, + {0xe28,3}, {0x13212,8}, {0x12b50,6}, {0x6791,4}, {0x38b,2}, {0x1777,12}, {0x9ecd,8}, {0x3a30,7}, + {0x1538c,6}, {0x15190,4}, {0x2fb9,3}, {0x53ef,6}, {0x18746,6}, {0x6581,8}, {0x2a65,7}, {0x12b52,4}, + {0x785c,4}, {0x24eeb,5}, {0x128c6,10}, {0x1b155,9}, {0x6fdd,7}, {0x1200c,5}, {0x1bf80,6}, {0x5f76,7}, + {0x133de,5}, {0x2fdd5,4}, {0x13eec,9}, {0x1819c,5}, {0x19bbf,8}, {0xf03,3}, {0x2210b,8}, {0x16700,10}, + {0x74f5,2}, {0x781c,3}, {0x23b7,14}, {0x9adf,5}, {0x158e,4}, {0x1807a,9}, {0x1210,3}, {0x40d5,13}, + {0x219a1,8}, {0x48d2,2}, {0xbfc3,3}, {0x18232,5}, {0x55ea,8}, {0xb57d,9}, {0x127ea,5}, {0x1a05a,9}, + {0x1568e,10}, {0x1cc2a,9}, {0xfe5,2}, {0x288e5,6}, {0x278ba,7}, {0x2d3a7,4}, {0x114e9,4}, {0x21b89,7}, + {0xbc93,4}, {0x13a78,10}, {0x1a306,5}, {0x1a9fc,6}, {0xf1e4,11}, {0xbc7b,5}, {0x65cf,11}, {0x2e7d,6}, + {0x5457,7}, {0x2105,8}, {0x10b8b,6}, {0x19214,8}, {0xda21,11}, {0x27af8,7}, {0x728e,9}, {0x1da94,6}, + {0xab88,5}, {0x1081,11}, {0x320d,3}, {0x2db09,5}, {0xacb9,5}, {0xde6d,10}, {0x126b4,7}, {0x2a90d,6}, + {0x13186,6}, {0x22a63,5}, {0x26e41,7}, {0x1d42e,5}, {0x1b872,5}, {0x23b6b,5}, {0x219c9,8}, {0x2fcb3,4}, + {0x10453,10}, {0x3997,6}, {0x1d74,5}, {0x1ed3f,7}, {0x2388b,8}, {0x33d1,8}, {0xee4,15}, {0x19a72,9}, + {0x2f99b,2}, {0x34b1,6}, {0x824d,5}, {0x1450e,7}, {0x27c44,4}, {0x1ad65,9}, {0x136a4,10}, {0x27a6c,7}, + {0xd777,8}, {0x193e8,9}, {0x1c10c,9}, {0x191f9,9}, {0x1d6c8,9}, {0xdbce,11}, {0x23f18,3}, {0x1af42,9}, + {0x538f,5}, {0x1fd9,13}, {0x11179,5}, {0x132b2,10}, {0x144a0,6}, {0x7cf5,12}, {0x3a8b,8}, {0x148d8,7}, + {0x1754c,10}, {0x1d2f,7}, {0x1a61,5}, {0x10a3,5}, {0xb451,5}, {0x23f28,2}, {0x2799a,6}, {0x228e3,7}, + {0x23d5b,6}, {0x2cc9f,4}, {0x1290,5}, {0x115e,11}, {0x156de,9}, {0x281ce,6}, {0x26243,8}, {0xb3cd,6}, + {0x30869,4}, {0x18c1e,9}, {0x26613,8}, {0x2bab,2}, {0x7496,13}, {0xdf12,11}, {0x16e94,10}, {0x45d1,5}, + {0x2f92,4}, {0x19172,9}, {0xc996,8}, {0x21079,6}, {0x54cc,13}, {0x2d8d,5}, {0x8f9d,12}, {0xe64,3}, + {0x2de77,3}, {0x1efee,3}, {0x539a,7}, {0x28421,6}, {0x26f2f,7}, {0x12196,7}, {0xc05d,6}, {0x12c5,3}, + {0x10c46,6}, {0x10335,11}, {0x6ead,4}, {0x5a21,9}, {0x3457,4}, {0x18bb7,3}, {0x1e225,3}, {0x16dea,10}, + {0x3fe7,9}, {0x2c509,2}, {0x14522,10}, {0xb60d,9}, {0x14914,5}, {0x3169,8}, {0x105f,8}, {0xd485,6}, + {0xf0dc,11}, {0x194c0,9}, {0x1e2e9,4}, {0x1c67f,8}, {0x9d71,6}, {0x9345,6}, {0x8c97,6}, {0xf150,5}, + {0x1f52,14}, {0x25233,6}, {0x74f9,5}, {0x1a9d8,9}, {0x1d0f,3}, {0x5bc1,7}, {0x10d55,4}, {0x24668,2}, + {0x8a99,11}, {0xf04d,11}, {0x29000,2}, {0x7f5f,6}, {0x2df29,6}, {0x7602,5}, {0x13244,9}, {0x238fb,6}, + {0x10ee,3}, {0x1219,6}, {0x7795,6}, {0x11142,6}, {0x24a3b,7}, {0x15af8,8}, {0x1021a,5}, {0xd885,5}, + {0x246a3,5}, {0x30cdb,4}, {0x12f6,7}, {0x1ea0,6}, {0x1900a,8}, {0x3a3e,7}, {0x41aa,5}, {0x5756,7}, + {0x1383e,10}, {0x10193,7}, {0x21c41,8}, {0x227b7,4}, {0x1afed,8}, {0x5959,5}, {0x7bc1,3}, {0x12dde,5}, + {0x5d61,13}, {0x67b0,10}, {0x4217,6}, {0xf160,11}, {0x4cac,11}, {0x1159,3}, {0x194d2,5}, {0x23313,7}, + {0x28b65,6}, {0xad8a,4}, {0xfab3,10}, {0xcbb1,9}, {0x1837,6}, {0x5f69,6}, {0x12c14,4}, {0x22c63,8}, + {0x28ec2,7}, {0x2a937,6}, {0x1392e,6}, {0x1a156,8}, {0x16f8e,10}, {0x129d4,6}, {0x280a1,7}, {0x29169,5}, + {0x20ef1,8}, {0x2370b,6}, {0x2fd44,4}, {0x8199,12}, {0x1247a,10}, {0x1a01b,9}, {0x7f83,6}, {0x2df71,6}, + {0x26a7b,7}, {0x17060,7}, {0x11d5,12}, {0x18184,4}, {0xd223,8}, {0xd0b4,4}, {0xe0f,4}, {0xefb,4}, + {0xe3d,6}, {0x658e,8}, {0x1d14c,6}, {0x2b78,5}, {0x12b7,4}, {0x51f4,10}, {0x1decc,8}, {0x1e84a,5}, + {0xe5e2,5}, {0x11287,5}, {0x2d979,2}, {0x5095,12}, {0x51f4,7}, {0x16c32,10}, {0x1c7c,4}, {0x15bf7,4}, + {0x111c6,7}, {0xaf4,3}, {0x305f,9}, {0x129de,6}, {0x12e3e,7}, {0x1cd6e,7}, {0xf365,11}, {0x178d,3}, + {0x4615,10}, {0x2fd4e,4}, {0x27fe,15}, {0x1a21c,7}, {0x13fdc,5}, {0x28940,7}, {0x24b63,7}, {0x24f2b,7}, + {0x41b8,4}, {0x4fb3,5}, {0x15399,3}, {0xdba8,5}, {0x2bdd3,6}, {0x3e51,7}, {0x1da5e,7}, {0x1e2c,4}, + {0x1bec,6}, {0xd18,12}, {0x308b7,6}, {0xfb58,11}, {0x8349,11}, {0x10838,4}, {0x10f8a,8}, {0x127d,2}, + {0xa9a6,7}, {0xf5dd,6}, {0xb958,5}, {0x2f4d7,5}, {0x21109,8}, {0x11a08,7}, {0x1a47,5}, {0x40f1,7}, + {0x7f30,5}, {0x2691e,2}, {0x16ae8,10}, {0xbfe8,3}, {0x187a0,7}, {0x153e6,10}, {0x2467b,4}, {0x29918,4}, + {0x1b78e,7}, {0x89f7,6}, {0x28c61,5}, {0x1ee8c,6}, {0x82c5,7}, {0xe85,3}, {0x62f7,7}, {0xacc5,6}, + {0x6da5,4}, {0x29228,5}, {0x79cd,4}, {0x2abc4,5}, {0x19a57,7}, {0x769e,8}, {0x2dee9,4}, {0x453e,3}, + {0xeb9,4}, {0x6164,11}, {0xe4e2,5}, {0x111a7,5}, {0xf8d4,6}, {0x8865,12}, {0xe74,3}, {0x2e67,9}, + {0x1e84a,6}, {0x753f,6}, {0x68e8,13}, {0x7bc9,12}, {0x109a,3}, {0x1b19d,9}, {0x2213,8}, {0x2c58f,6}, + {0xc271,4}, {0x14220,10}, {0x164c,11}, {0xcf4d,11}, {0x137bc,10}, {0x1058,2}, {0x3f5b,12}, {0x151c,4}, + {0x1e4c6,6}, {0x365c,7}, {0x8b2f,6}, {0x2819d,7}, {0x3ad,2}, {0x7251,4}, {0x1b2e,3}, {0x2c64b,4}, + {0x12b2,9}, {0x29944,4}, {0x134ce,9}, {0x1ac0f,9}, {0x3513,5}, {0x4c00,3}, {0x2ebb7,5}, {0x9c21,8}, + {0xc29a,6}, {0x9cab,5}, {0x2b28,8}, {0x45ed,2}, {0x1f07,7}, {0x1a1f8,5}, {0xc26d,8}, {0x19415,9}, + {0x66c1,5}, {0x20961,7}, {0x44a4,4}, {0x1f16,15}, {0x166e2,9}, {0x1db00,5}, {0x1fa80,6}, {0xd32b,11}, + {0xef4,3}, {0x1262,3}, {0x8421,6}, {0x12b8c,10}, {0x2ddb,12}, {0x30a97,4}, {0x12f42,10}, {0xc075,5}, + {0x6f3b,6}, {0x11729,3}, {0x2f9d4,4}, {0xac4d,12}, {0x13230,10}, {0x60bb,13}, {0x2588b,6}, {0x417d,6}, + {0xd57d,11}, {0x29675,3}, {0x1b5e7,7}, {0xa689,10}, {0x425d,5}, {0x446,2}, {0x2f41,6}, {0xdbff,6}, + {0x18796,5}, {0x16692,6}, {0x7d98,5}, {0x373b,3}, {0x22c2b,8}, {0x568c,5}, {0x236fb,6}, {0x1165f,5}, + {0x20f6,7}, {0x37c1,14}, {0x131b8,7}, {0x19a2a,9}, {0xb3c1,10}, {0x12df2,3}, {0x94b9,5}, {0xe584,7}, + {0x7795,4}, {0x24bcd,2}, {0x23bbb,8}, {0xfa19,10}, {0x141c6,10}, {0x7fad,12}, {0x2bd03,4}, {0x3a39,4}, + {0x15c60,10}, {0x21a59,8}, {0x2476b,7}, {0x2eee,4}, {0x28fdf,2}, {0x1fb6,5}, {0x17f94,5}, {0x12268,6}, + {0xce45,7}, {0xa419,12}, {0x1ab37,9}, {0x133fc,5}, {0x2c06d,5}, {0x12394,9}, {0x2c151,6}, {0x3523,4}, + {0x28883,6}, {0xe7c,2}, {0xc40b,5}, {0x141ee,10}, {0x26978,6}, {0x1267,7}, {0x164b2,9}, {0x1ba8,5}, + {0x1a5bb,9}, {0x202cc,7}, {0x2e3d,5}, {0xccae,11}, {0xb679,5}, {0x9e08,4}, {0x1f120,6}, {0xe55,6}, + {0x17506,6}, {0x2c2fb,6}, {0x299f3,6}, {0xcb2d,10}, {0x1461f,4}, {0xcd56,8}, {0x16f7,9}, {0x29622,2}, + {0x16548,10}, {0x138ac,9}, {0xf344,10}, {0x7858,8}, {0x6bd4,5}, {0x14fb8,6}, {0x10d22,7}, {0xb8d1,5}, + {0x17b0c,4}, {0x8f39,4}, {0xc862,7}, {0x22c13,8}, {0x23427,4}, {0x2dbf,7}, {0x73ac,5}, {0x59da,6}, + {0xda8,4}, {0x20a51,8}, {0x23b83,8}, {0x1d356,9}, {0x33ed,7}, {0x2ad7b,4}, {0xb5af,3}, {0x1253,3}, + {0xf64c,5}, {0x2a4e2,2}, {0x3a29,5}, {0x124c,11}, {0xb87d,6}, {0x2823e,7}, {0x8d81,6}, {0x1a07e,8}, + {0x1c154,9}, {0x13672,8}, {0x169e,3}, {0x12bc4,3}, {0xf7f3,11}, {0x143b0,7}, {0x2f5f4,4}, {0x1e343,5}, + {0x15a1c,7}, {0x77c9,5}, {0x9465,5}, {0x29bf9,4}, {0x1887,4}, {0x2f1c5,2}, {0x1a62,3}, {0x9389,4}, + {0x19ebc,9}, {0x12a1a,7}, {0x1ddc7,9}, {0x38ee,5}, {0x23553,8}, {0xe7aa,11}, {0xc44d,9}, {0x27039,7}, + {0x9593,2}, {0xd9be,11}, {0x21599,6}, {0x45eb,6}, {0x14c70,10}, {0x2897f,7}, {0x6d1f,8}, {0x2f028,4}, + {0x22e03,8}, {0x18748,4}, {0x1e3c1,8}, {0x26f5,4}, {0x53c0,5}, {0xec8b,5}, {0xcbb6,6}, {0x14919,4}, + {0x89e5,12}, {0x16c96,10}, {0x201c0,7}, {0x1d194,6}, {0x46bd,9}, {0x1a843,7}, {0xdb08,7}, {0x6451,5}, + {0x12e0c,8}, {0x21861,7}, {0x18d3b,5}, {0x20d11,8}, {0x320b,6}, {0x19e08,8}, {0x27d4b,7}, {0x50af,10}, + {0xaaf,4}, {0x8505,12}, {0xccb9,7}, {0x313f,10}, {0xa959,12}, {0x85a6,7}, {0x2c05b,6}, {0x2330,11}, + {0x2b533,6}, {0x2a2d3,5}, {0x66c6,11}, {0x195fb,9}, {0x293e,5}, {0x146d,10}, {0x77e3,12}, {0x13118,6}, + {0x2e21d,5}, {0x9a65,11}, {0x2bedb,6}, {0x1c4a2,9}, {0x2247,4}, {0x2cda1,4}, {0x580c,13}, {0x5172,13}, + {0x3cdf,6}, {0x14a4,2}, {0x3257,13}, {0x9b09,4}, {0x428e,5}, {0x4767,3}, {0x1c1d2,8}, {0xca1a,11}, + {0xb42d,5}, {0x4017,6}, {0x2bf1,5}, {0x457,2}, {0x2c631,6}, {0x6234,8}, {0x2b0a,11}, {0x11633,5}, + {0x91b9,6}, {0x14ed2,7}, {0x1cdbf,9}, {0x2cab,3}, {0x1af1,11}, {0x29ed,4}, {0x19829,9}, {0x3cc0,4}, + {0x10831,11}, {0x2c2f5,6}, {0x29b58,7}, {0x258e3,6}, {0x7f90,5}, {0x9904,5}, {0x19385,7}, {0x111f,3}, + {0xec6,4}, {0x48f7,7}, {0x25a9b,8}, {0x11a34,8}, {0x1f402,2}, {0x16ba6,10}, {0x1b710,9}, {0x93e1,8}, + {0x155ee,10}, {0xa3f5,7}, {0x1959,3}, {0x2d9d,6}, {0x221cb,8}, {0xf63b,11}, {0x3a7d,7}, {0x3337,10}, + {0x11284,5}, {0x14126,10}, {0x281a4,7}, {0x22fd3,8}, {0x1eef8,8}, {0x5770,5}, {0x2894,15}, {0x1727,12}, + {0x6ec3,7}, {0x2dc23,6}, {0xb985,4}, {0x1f0de,4}, {0xc195,5}, {0x20799,8}, {0xe336,7}, {0x2f568,5}, + {0x370b,14}, {0x115e1,5}, {0x2a7d2,7}, {0x15a58,6}, {0x21da9,8}, {0x227b3,8}, {0x255b,8}, {0x45a7,3}, + {0xfcd,4}, {0xd173,8}, {0x1e8f,11}, {0x2ee64,4}, {0x22a3,3}, {0x2c289,6}, {0x5eac,6}, {0x26bee,7}, + {0x1897,8}, {0x12f9c,6}, {0x39ff,7}, {0xde0a,11}, {0x4791,2}, {0x1f87f,5}, {0x27b7,6}, {0xa2d5,9}, + {0xac65,6}, {0x82ad,8}, {0x2be65,4}, {0x30dff,4}, {0x2fd03,4}, {0x23163,8}, {0x6a69,5}, {0xef3d,7}, + {0x1afba,5}, {0x6685,9}, {0x24593,6}, {0xb933,3}, {0x256a3,5}, {0x1fc5,5}, {0x736e,5}, {0x2e2f,12}, + {0x116b7,5}, {0x141d4,4}, {0x3957,12}, {0x1f582,5}, {0x1715a,6}, {0xdb34,5}, {0x8049,9}, {0x108b,3}, + {0x17b0f,4}, {0x1bb0,11}, {0x17b16,4}, {0x3e0b,5}, {0x3d47,13}, {0x2c30,4}, {0xcdd7,5}, {0xe99,2}, + {0x20691,8}, {0x492b,6}, {0x65c2,12}, {0x2d2db,6}, {0x230c3,7}, {0x5199,8}, {0x23673,8}, {0x11530,4}, + {0x28a5f,7}, {0x9c75,12}, {0x20d8,11}, {0xbe4d,9}, {0x44a5,2}, {0x141a,5}, {0x1a879,9}, {0x5b48,4}, + {0x2790,5}, {0x11003,7}, {0x11cc8,11}, {0x13938,6}, {0x66fa,8}, {0x20c61,8}, {0x1fd7d,6}, {0x26e21,4}, + {0x6afd,13}, {0xf8cf,11}, {0x952b,5}, {0x22fbb,7}, {0x2f6cd,5}, {0x205f1,8}, {0x239d3,8}, {0x1a132,5}, + {0x60b5,6}, {0x1b92,12}, {0x16b9c,8}, {0x1ed99,6}, {0xe4a8,5}, {0xaa19,12}, {0x6034,5}, {0x20759,8}, + {0x1a25b,6}, {0x32f1,14}, {0x1aec4,9}, {0x135e6,6}, {0x9189,5}, {0x1a27,10}, {0x1113,2}, {0x9115,5}, + {0x3ee5,5}, {0x998d,12}, {0xb001,8}, {0x1b41,6}, {0x1ba8,8}, {0x14b30,10}, {0x18a16,7}, {0x86f1,12}, + {0x20d8,8}, {0x21eab,8}, {0x169b,8}, {0xcf79,10}, {0xefa,6}, {0xaff5,12}, {0x8494,4}, {0xf9f8,10}, + {0x10172,11}, {0xff83,9}, {0x20bf9,8}, {0x2cc57,6}, {0x4599,2}, {0x4d72,3}, {0x1547c,5}, {0x1b7d,3}, + {0x62d0,13}, {0x1554e,10}, {0x16958,6}, {0x1649e,9}, {0x2bfd7,6}, {0x18912,8}, {0x222c3,8}, {0x163b,5}, + {0xb241,10}, {0x2db19,2}, {0xbbad,7}, {0x8c91,7}, {0x1327,2}, {0x1b4e2,8}, {0x6171,9}, {0xe3d7,6}, + {0xa7b5,12}, {0x1db1b,6}, {0x201f4,8}, {0x27970,6}, {0x16ad,7}, {0xd72a,11}, {0xeb3,2}, {0x1290,11}, + {0xae95,4}, {0x14d7,6}, {0x2938b,5}, {0x1d710,9}, {0x1af6f,8}, {0x112c3,6}, {0x85a1,12}, {0x7093,9}, + {0x16598,10}, {0x20cf9,6}, {0xfa2b,4}, {0x15e2c,10}, {0x1d970,4}, {0x1ba31,5}, {0x5242,8}, {0x162c,6}, + {0x3bed,3}, {0xc605,10}, {0x10f32,5}, {0x1e73,3}, {0x1647,16}, {0x2fd12,4}, {0x1adad,9}, {0x15a6f,4}, + {0xe68,2}, {0x29bcf,6}, {0x14efa,10}, {0x232d3,8}, {0x1a6d,3}, {0x22bd,3}, {0x7c24,5}, {0x24623,5}, + {0x175a6,5}, {0x8344,5}, {0x27740,7}, {0x1677,6}, {0x6741,6}, {0xf82a,10}, {0x110be,5}, {0x13c9e,9}, + {0x6da1,8}, {0x5e99,13}, {0xf882,11}, {0x1418a,9}, {0x19523,7}, {0x490c,3}, {0x2512b,6}, {0x17092,5}, + {0x1825a,6}, {0xb865,6}, {0x1fbc4,7}, {0x1c676,6}, {0x23e83,8}, {0x10da6,5}, {0x21e13,8}, {0x8625,8}, + {0x1b263,6}, {0x262d,11}, {0x1a1e6,8}, {0x2476b,8}, {0x591d,7}, {0x183c,4}, {0x28bce,7}, {0x11,2}, + {0x13622,10}, {0x72b5,6}, {0x44a9,8}, {0x860d,7}, {0x11f51,6}, {0xc62a,5}, {0x27166,7}, {0x19e9,4}, + {0x289c5,7}, {0xa881,10}, {0x20cd1,7}, {0x138b6,10}, {0x1cf6f,6}, {0x1f7f,4}, {0x62c3,11}, {0x24ddd,4}, + {0x180f,7}, {0x9a0c,5}, {0x17f7,15}, {0x15332,7}, {0x3faf,14}, {0x1d61d,8}, {0x7d41,3}, {0x2d641,4}, + {0x44a9,7}, {0x95e5,6}, {0x3b09,11}, {0xbe1d,5}, {0x19483,7}, {0x2fc3b,4}, {0x1cfa,15}, {0x45e3,4}, + {0x1d962,7}, {0xd74b,10}, {0xc95a,5}, {0x883a,7}, {0x2a069,5}, {0x18f9a,3}, {0xa1a0,3}, {0x1807,10}, + {0x2ca18,2}, {0x22968,3}, {0xe5c6,9}, {0x12b0a,10}, {0x3317,4}, {0x160a2,10}, {0x21f73,8}, {0x5bb9,4}, + {0x6dae,8}, {0x6005,9}, {0x329f,4}, {0x228db,6}, {0xf210,5}, {0x29430,3}, {0x27bf4,7}, {0x1eee6,8}, + {0x3559,7}, {0x2fbe,5}, {0x6164,13}, {0x4c10,8}, {0xe66,3}, {0x12b82,10}, {0x9a41,5}, {0x13ab4,9}, + {0x60fc,8}, {0x1567,7}, {0x21891,7}, {0x1f11d,9}, {0x8129,4}, {0x30b8f,4}, {0x1dcb7,2}, {0x2deef,4}, + {0x20e61,8}, {0x17b0c,7}, {0x14978,9}, {0x18dce,8}, {0x44f1,3}, {0x75ce,6}, {0x18a34,9}, {0x13604,10}, + {0xfc08,11}, {0x2b6d1,6}, {0xe63f,6}, {0x1f5c1,6}, {0x1def,2}, {0x2c39d,5}, {0x15fbc,7}, {0x4413,5}, + {0x6241,11}, {0x27ec5,7}, {0x1c379,9}, {0x1f8e,7}, {0x29ce7,7}, {0x23793,8}, {0x1b62f,8}, {0x1e0df,9}, + {0xf40a,11}, {0x41b5,11}, {0x1646c,7}, {0x1af78,9}, {0x1a0ab,9}, {0x2de71,3}, {0x79f5,7}, {0x10eda,5}, + {0x22b7b,8}, {0x2c81,6}, {0x13ae6,9}, {0x1d4b5,9}, {0x248ff,3}, {0x11767,5}, {0x2f32,4}, {0x10bee,4}, + {0x23063,8}, {0x2bf1,6}, {0x22a2b,8}, {0x6304,4}, {0x1adda,9}, {0x1ea93,9}, {0x121a7,3}, {0xa953,5}, + {0x1d4fd,8}, {0x1dc9e,9}, {0x5e7a,5}, {0xff2b,7}, {0x26b3f,7}, {0x6c21,3}, {0x2af9a,4}, {0x17d3c,10}, + {0xb9f4,3}, {0xc0f9,5}, {0xee9,3}, {0x5fd1,6}, {0x41cb,6}, {0x307bb,2}, {0x122e0,9}, {0x12fa,3}, + {0xe492,11}, {0x160f,7}, {0x18444,5}, {0x235db,8}, {0x2867,11}, {0x2273b,8}, {0x2a81f,5}, {0x96bd,11}, + {0x5047,12}, {0x6415,10}, {0x6109,8}, {0x9e01,8}, {0x19933,4}, {0x2bf65,6}, {0x13e06,7}, {0x6eee,4}, + {0x17ed6,6}, {0x10203,3}, {0xd270,11}, {0x1559e,10}, {0x1e8b,4}, {0x2cf11,4}, {0x1a71c,4}, {0x1db4,4}, + {0x471f,5}, {0x10e8f,3}, {0x21fa3,8}, {0x23d1,3}, {0x24293,8}, {0xe42f,10}, {0x268d,7}, {0x221eb,8}, + {0x117eb,6}, {0xed1,10}, {0x11e62,5}, {0x18fd4,9}, {0x136d,3}, {0xd3af,8}, {0x1fdd7,5}, {0x5d6e,11}, + {0x2265b,8}, {0x2bc7,9}, {0x8265,7}, {0x13d4b,6}, {0x21a79,7}, {0xcca,2}, {0x13d66,6}, {0xf058,10}, + {0x18774,2}, {0x169b,5}, {0x44b3,3}, {0xc4df,5}, {0x18e8a,6}, {0x759a,8}, {0x9f2d,11}, {0x17a3a,5}, + {0x16fd6,4}, {0x21801,8}, {0x1f729,5}, {0x4773,6}, {0xe395,11}, {0x20380,4}, {0x2e2b,3}, {0x2bd37,6}, + {0x1687,5}, {0x266bb,5}, {0x175ba,6}, {0x30a15,2}, {0x4e18,6}, {0x1b86f,8}, {0x2e276,4}, {0xe09e,8}, + {0x2a2d1,7}, {0x23f5b,8}, {0xdbd9,11}, {0x1c2d7,8}, {0xbb20,4}, {0xd97c,9}, {0x13762,8}, {0x131b8,6}, + {0x4065,9}, {0x13178,3}, {0x2181,3}, {0x233f3,8}, {0x17fb2,5}, {0x18d74,3}, {0x26cd5,7}, {0x51c0,13}, + {0x7219,5}, {0x9628,5}, {0x2a1b2,4}, {0x11894,6}, {0x2cf67,2}, {0x18282,6}, {0x1ef2e,6}, {0x10587,11}, + {0x22c93,8}, {0x2889f,6}, {0x2aa1,9}, {0x16746,10}, {0x18372,5}, {0x28501,7}, {0xc437,9}, {0x240ee,5}, + {0x219f4,4}, {0x2dfad,6}, {0x55d0,12}, {0x244a3,8}, {0xfc08,10}, {0x1cb98,9}, {0x13892,6}, {0x2fcf9,4}, + {0x27d13,7}, {0x23a13,7}, {0xb3a9,5}, {0x25243,8}, {0x4e4c,7}, {0x1f057,5}, {0x8c79,5}, {0x1a666,9}, + {0xa10d,12}, {0xfaa8,10}, {0xd22e,11}, {0xb2d1,10}, {0x1b03e,9}, {0x23a4b,8}, {0x562b,5}, {0x25b45,6}, + {0x2fcfe,4}, {0x1de9f,5}, {0x21041,8}, {0xca9e,11}, {0x22523,6}, {0xf3f,3}, {0x30359,4}, {0x77ea,5}, + {0x308bf,4}, {0x1e53,5}, {0x1d143,7}, {0x30e4d,2}, {0xb397,2}, {0x23be3,8}, {0x1118b,2}, {0xc3e6,4}, + {0x6a88,12}, {0x12fe2,8}, {0x24d63,5}, {0x10b7,3}, {0x2536b,8}, {0x12a83,5}, {0x2412b,6}, {0x17d28,5}, + {0x1a009,9}, {0xcbef,4}, {0x1f5a6,6}, {0x15e86,9}, {0xc1e9,4}, {0x29c0,7}, {0xf4f,2}, {0x16b10,10}, + {0x2b82d,6}, {0x31b49,2}, {0xc6ec,9}, {0x20370,3}, {0x280b6,7}, {0x264db,6}, {0x38b4,4}, {0x2a8ab,6}, + {0x2a65,5}, {0x530b,5}, {0x4b6f,3}, {0x2628b,7}, {0x4669,7}, {0x22d8b,8}, {0x3965,11}, {0x2669,10}, + {0x10612,4}, {0x1d32,4}, {0xc581,6}, {0x19655,7}, {0x20314,6}, {0x1027a,5}, {0xe69,3}, {0x7c41,12}, + {0x451b,3}, {0x150e,6}, {0x2b81,2}, {0x33fb,5}, {0x2036b,2}, {0x17394,7}, {0x2c75,6}, {0x667e,4}, + {0xf95e,11}, {0x2db1b,4}, {0x1058,3}, {0x27032,7}, {0x1e1b,10}, {0x1092,6}, {0x2747d,6}, {0x289a9,7}, + {0x15076,7}, {0x2fcea,4}, {0x1bee,3}, {0x23a43,7}, {0xa839,12}, {0xd0a2,10}, {0x94dd,9}, {0x139f6,10}, + {0x1b9d7,9}, {0x10bb7,4}, {0xa84c,4}, {0x17592,9}, {0x2601b,6}, {0xc9af,4}, {0x1de8,2}, {0x19b9,3}, + {0xda8,6}, {0x11892,8}, {0xc08f,4}, {0x2f50e,4}, {0x6d05,5}, {0xe636,2}, {0x11675,5}, {0x93dc,5}, + {0xf18c,11}, {0x1dede,6}, {0xef66,7}, {0x9e3d,12}, {0x3e6d,8}, {0x2adf,4}, {0x30b57,4}, {0x4a92,4}, + {0x1d641,5}, {0xf51d,10}, {0x11df1,5}, {0x10d64,6}, {0xabd0,5}, {0xf079,9}, {0xa3b1,4}, {0x21279,8}, + {0xc54d,5}, {0x9a49,4}, {0x1b85d,7}, {0x6bef,5}, {0x18c78,6}, {0x13dd4,9}, {0x3c2f,10}, {0x17bac,9}, + {0x1e23e,9}, {0x19586,9}, {0xfc5b,5}, {0x144e,6}, {0x60e2,7}, {0xe844,11}, {0x2a395,6}, {0xc857,10}, + {0x18b56,10}, {0x101f,5}, {0x8ef5,11}, {0x1a237,9}, {0x2e893,5}, {0xa6f5,10}, {0x2abf,6}, {0x684c,13}, + {0x280bd,7}, {0x6068,4}, {0xdf1d,8}, {0x19844,6}, {0x12830,5}, {0x12a1,11}, {0x27e6a,7}, {0x81c4,3}, + {0x2cf91,2}, {0x2de6f,5}, {0xa833,6}, {0x3b48,7}, {0x2a7ec,2}, {0x12b64,9}, {0x191b1,9}, {0x2510b,6}, + {0xef1,3}, {0xfa3,6}, {0x2dcd,13}, {0xdb1e,5}, {0x22a63,8}, {0xba21,6}, {0xb306,5}, {0x1324e,9}, + {0x167f,8}, {0x8c93,4}, {0x2f71,5}, {0xeb2,2}, {0x22423,6}, {0x1c215,2}, {0x2df3b,6}, {0x30d4b,4}, + {0xe4be,11}, {0x2437b,5}, {0x1c0e8,9}, {0x2bbbd,6}, {0x741a,4}, {0x4217,5}, {0x22e23,8}, {0x1f876,5}, + {0xccf0,11}, {0x1e247,8}, {0x1c73c,9}, {0x1a5b,6}, {0x1cd9b,8}, {0x19f3a,9}, {0x19091,8}, {0x1fdd7,4}, + {0x11d0c,3}, {0x2e864,4}, {0x260ef,2}, {0x1a93,5}, {0x280ee,7}, {0x1eb47,5}, {0xcd48,11}, {0x17f9e,5}, + {0x16afc,10}, {0x29e45,5}, {0x1c544,8}, {0x12c22,10}, {0x2fc22,4}, {0x1ab9a,9}, {0x19a9,2}, {0xb5bb,6}, + {0x15e18,10}, {0x142de,6}, {0x9c81,7}, {0x15f08,10}, {0x21561,8}, {0x2b471,2}, {0xdd8,12}, {0x2ea14,2}, + {0x4cb9,5}, {0x129a2,8}, {0x4bef,3}, {0x2f1f4,5}, {0xc463,9}, {0x2bbf3,6}, {0x2cd29,6}, {0x75d0,2}, + {0x23bf3,6}, {0xea96,5}, {0x2de4d,3}, {0xe660,11}, {0x25493,7}, {0x26343,8}, {0x1189f,2}, {0xc295,11}, + {0x1215a,6}, {0x7ec9,11}, {0x10b4,5}, {0xc975,6}, {0x24593,7}, {0x19121,6}, {0x4fb8,4}, {0xad87,4}, + {0x19265,9}, {0x20e31,8}, {0x386e,5}, {0x1d476,9}, {0x28333,7}, {0x1d665,9}, {0x2a2a7,6}, {0x1e520,5}, + {0x196ee,9}, {0xf948,8}, {0x3056,4}, {0x495f,6}, {0xe08b,8}, {0x12092,8}, {0x1111,4}, {0x2d41f,6}, + {0x1a1d4,5}, {0x31b4d,2}, {0xcc3c,4}, {0x1f153,9}, {0x1d96b,9}, {0x8259,12}, {0x2f8c6,5}, {0xb55b,3}, + {0x272cb,7}, {0xf53,4}, {0x8811,7}, {0x185f,7}, {0x281ab,7}, {0x628f,6}, {0x2cc3b,4}, {0x73e0,4}, + {0x17bff,2}, {0x9279,9}, {0x18642,10}, {0x2631b,6}, {0x12a1a,10}, {0x308cb,4}, {0xa1f1,7}, {0x1c08e,9}, + {0x1c2aa,8}, {0x1bf18,5}, {0x1b15e,9}, {0x24c5b,8}, {0x3a8b,13}, {0x7638,3}, {0x640e,5}, {0x1d62f,9}, + {0x1ddb5,7}, {0x2d773,5}, {0x1bec7,5}, {0x1b40a,9}, {0x273b2,7}, {0x30b5b,4}, {0x85b9,12}, {0x3130e,2}, + {0x1aa5f,7}, {0x12bc8,10}, {0x10495,11}, {0x5ddd,5}, {0x4740,4}, {0x1260a,10}, {0x17218,8}, {0x3922,3}, + {0x1977,8}, {0xb745,6}, {0x1c8a,4}, {0x11b47,5}, {0x18930,10}, {0x22a2,3}, {0x7af1,7}, {0x28632,3}, + {0x11ac,3}, {0xcf00,6}, {0x1463a,8}, {0x2e27a,4}, {0x4e3f,5}, {0xccd,2}, {0x17efe,6}, {0x65cf,6}, + {0x30c17,4}, {0x20c29,7}, {0x32ab,9}, {0x45eb,5}, {0x215f,6}, {0x8fbc,4}, {0x21239,6}, {0x4837,7}, + {0xfee4,4}, {0x2416,3}, {0xda58,6}, {0xaa19,11}, {0xbf6d,9}, {0x1f057,9}, {0xb6d9,6}, {0x1c55f,9}, + {0x1bc05,9}, {0xdd2e,7}, {0xead8,7}, {0x19d03,7}, {0x13eec,10}, {0xd848,11}, {0x17f8a,9}, {0xa099,4}, + {0x840c,5}, {0x28444,7}, {0xd0ad,11}, {0x16a7,13}, {0x13a28,9}, {0x9105,11}, {0x1cbce,9}, {0x217f4,5}, + {0x2a78c,6}, {0xfd6,3}, {0x15486,10}, {0x8115,9}, {0xff20,6}, {0x225bb,7}, {0xb69d,7}, {0x20dc1,7}, + {0x2015,4}, {0x2bb2d,6}, {0x105b3,10}, {0x11439,6}, {0x6171,12}, {0x310f,6}, {0xe7e1,8}, {0x20160,4}, + {0x9e9d,11}, {0x1fa7,3}, {0x18022,4}, {0x12b2,8}, {0x7158,2}, {0x7532,6}, {0xa881,12}, {0x2eb35,4}, + {0xed1f,11}, {0x20326,8}, {0x2993,7}, {0x17178,5}, {0x87ed,11}, {0x192fe,6}, {0x1559,3}, {0xe1f,4}, + {0x3e11,2}, {0x811a,4}, {0x1e0a9,8}, {0x2ed26,3}, {0x13f0a,10}, {0x112b,12}, {0x592e,5}, {0x17206,4}, + {0x17f08,5}, {0x232a3,8}, {0xc099,4}, {0x28fbe,4}, {0x983d,8}, {0x8d81,10}, {0x131e0,7}, {0x2dd99,4}, + {0x2b8ff,6}, {0x15d5a,10}, {0x2875d,7}, {0x8ad5,12}, {0x9495,8}, {0x48ca,6}, {0x11e33,7}, {0x200f8,5}, + {0x1245,6}, {0x1657,12}, {0x17f14,4}, {0x11e5f,8}, {0x4b15,4}, {0x29889,3}, {0x1ed7e,5}, {0x19c8e,9}, + {0x2fc4a,4}, {0x315b,9}, {0x551a,13}, {0xe8e9,10}, {0x27d44,6}, {0x7f29,12}, {0x125d,13}, {0x1ab1c,5}, + {0x2bc7,4}, {0x3801,6}, {0x25b83,7}, {0x1662e,8}, {0x1d545,9}, {0x1b9aa,9}, {0xcef5,8}, {0x3b62,4}, + {0x7d3d,9}, {0x2940,3}, {0x2fce0,4}, {0x12830,6}, {0x8de1,12}, {0x1987a,5}, {0x27c10,7}, {0x23e13,7}, + {0xae5d,7}, {0x2293b,5}, {0x1d7d,4}, {0x1c3f7,6}, {0x1380c,10}, {0x5d31,6}, {0x1dcc,8}, {0x1131b,5}, + {0x2fce5,4}, {0x40e3,7}, {0x12c18,10}, {0x94b3,5}, {0x6f27,13}, {0xeac,3}, {0xd336,11}, {0x35a1,2}, + {0x80b0,4}, {0xc962,5}, {0x81c1,5}, {0x30db3,4}, {0x9d7d,7}, {0x1083,5}, {0x12c4a,8}, {0x1ac45,9}, + {0x11179,10}, {0x354b,4}, {0x26a89,7}, {0x2a524,6}, {0x1a58e,9}, {0x17fee,5}, {0x1627,11}, {0x28ca0,4}, + {0xf095,5}, {0x679c,7}, {0xcb1b,4}, {0x171fa,5}, {0x3a45,8}, {0x2277,4}, {0xf3c8,6}, {0x25993,7}, + {0x69c5,12}, {0x7905,2}, {0x1547c,10}, {0x607a,11}, {0x2792a,7}, {0x337d,7}, {0x5e50,2}, {0x9b31,8}, + {0x1fc15,6}, {0x4bf9,4}, {0xc8c5,11}, {0x2e3d,14}, {0x73bb,3}, {0x5c02,8}, {0x1567,10}, {0x1b4d9,7}, + {0x28ce8,4}, {0x23b1b,8}, {0x2dc6,7}, {0x28ef3,7}, {0x28710,7}, {0x1427a,10}, {0x142ca,10}, {0x4fab,6}, + {0x2f9b1,5}, {0x4b05,4}, {0x233f3,7}, {0xde6d,11}, {0x8709,12}, {0x9c99,8}, {0x31d9,6}, {0xb7a5,4}, + {0x1d023,8}, {0x4180,4}, {0x243ab,8}, {0x26b15,6}, {0x14e1a,4}, {0x249e,4}, {0xd601,9}, {0x25103,8}, + {0x34e9,7}, {0xcff2,11}, {0x27f51,6}, {0x1dec0,2}, {0x1f5f9,2}, {0x2501,8}, {0x10d90,8}, {0x19454,7}, + {0x7602,13}, {0xe676,11}, {0x26aeb,7}, {0x88e9,9}, {0xed14,10}, {0x1b8b,7}, {0x1829,3}, {0xd78d,9}, + {0x1c865,9}, {0x2343b,7}, {0x159f4,10}, {0xfed3,11}, {0x2fc8b,4}, {0x225e3,8}, {0xf37b,6}, {0xb185,6}, + {0x20729,8}, {0x36fd,14}, {0x1e869,2}, {0x2d8e1,5}, {0x266cb,8}, {0x1bd13,6}, {0xa6b9,11}, {0x7525,9}, + {0x4979,6}, {0x19462,4}, {0xe27,3}, {0x6678,9}, {0x264db,7}, {0x8781,11}, {0x11440,4}, {0xc949,10}, + {0x23013,8}, {0x24607,2}, {0xf1d9,11}, {0x1cc8d,9}, {0x55ea,11}, {0x6970,4}, {0x948d,3}, {0x6012,6}, + {0xb0ca,3}, {0x9dc7,4}, {0x250ab,5}, {0x7310,8}, {0x4be9,12}, {0x2136,4}, {0x9369,5}, {0x1f03f,3}, + {0x1e4ea,5}, {0x2bb4,3}, {0x10bae,3}, {0xfbe7,11}, {0x1166a,7}, {0x26af9,6}, {0xd1c0,8}, {0xd7f0,11}, + {0x2d395,6}, {0x30d9b,4}, {0x1026f,7}, {0x26f75,7}, {0x2ad7f,5}, {0x100e3,11}, {0x1943e,4}, {0x1f8a8,4}, + {0x22943,8}, {0x2259b,8}, {0x772d,6}, {0x20a31,7}, {0x1e3d,3}, {0x213a9,8}, {0x3337,7}, {0xd1cd,6}, + {0x75e3,5}, {0x496e,3}, {0x19f28,7}, {0x23b9b,8}, {0x2f7c7,4}, {0x7772,5}, {0x146c,5}, {0x1a105,8}, + {0x4458,2}, {0x110c9,7}, {0x15e0e,9}, {0x2df41,6}, {0x1a7b3,9}, {0x54e6,12}, {0x8af9,9}, {0x1297a,10}, + {0x121b4,7}, {0x20509,2}, {0x2a785,7}, {0x15797,5}, {0xcf6,8}, {0x1caf,5}, {0x1875a,8}, {0xf49d,4}, + {0x1b974,6}, {0x94be,4}, {0xab81,12}, {0x8b29,12}, {0x1b2b4,6}, {0xcdf8,5}, {0x1f90f,7}, {0x20e71,7}, + {0x30db7,4}, {0x20cc9,8}, {0x12934,10}, {0x26f05,7}, {0x24a1b,8}, {0x90f3,4}, {0x11b3,16}, {0x2faa6,5}, + {0x2de15,5}, {0x79ad,7}, {0x25d3e,5}, {0x27b3,11}, {0x2f92,5}, {0x5847,6}, {0x8601,12}, {0x2909e,7}, + {0x27b29,7}, {0x1c444,4}, {0x2f33,5}, {0x7795,10}, {0x28c9d,2}, {0x1032a,6}, {0x21d11,7}, {0x618f,5}, + {0x14270,10}, {0x29a4,4}, {0x1fe8,6}, {0x6053,5}, {0x11fe0,5}, {0x3c67,7}, {0x196ca,8}, {0xe101,6}, + {0x10797,11}, {0x1ea9c,7}, {0x21549,7}, {0x1738a,7}, {0x260fb,4}, {0x1e6d0,8}, {0x7378,6}, {0x56b5,5}, + {0xccb,3}, {0x38fe,4}, {0x7d0d,5}, {0x18340,9}, {0x22b16,5}, {0x36bd,7}, {0x235cb,7}, {0x30d97,4}, + {0x2b58d,6}, {0x12588,10}, {0x12aba,9}, {0x14aae,10}, {0x75ce,11}, {0x8175,12}, {0x18408,6}, {0x29ad6,4}, + {0x205d9,8}, {0x29869,6}, {0x316f0,2}, {0x1823c,5}, {0x26be7,7}, {0x2c223,4}, {0x192cb,5}, {0x30a31,2}, + {0x30eb,13}, {0x517f,10}, {0x46af,7}, {0x10a4c,11}, {0x259c3,8}, {0xc4d1,10}, {0x2499b,7}, {0x17a7,8}, + {0x128da,6}, {0x1198f,5}, {0xf9fa,4}, {0x2285b,8}, {0x1007,9}, {0x2c25f,6}, {0x129ca,6}, {0x15670,10}, + {0x11a13,8}, {0x1e0a0,9}, {0x235d,11}, {0xbb24,5}, {0x2af23,4}, {0x6abc,12}, {0x2d3bd,2}, {0x13924,7}, + {0x30d63,4}, {0x2e59,8}, {0x12e7a,6}, {0x165d4,10}, {0x2decb,4}, {0xe80d,7}, {0x107d9,11}, {0x25e73,6}, + {0x1d560,9}, {0x1e997,8}, {0x16c7,12}, {0x13758,10}, {0x78cb,4}, {0x121f0,5}, {0xe0ca,6}, {0x61b9,5}, + {0x24ea3,8}, {0x11b89,7}, {0x1f699,9}, {0x8845,4}, {0x15bc0,10}, {0x9e6d,9}, {0x27024,7}, {0x2b5e7,6}, + {0x3aff,5}, {0xb4f9,9}, {0x2fca9,4}, {0xba39,6}, {0x48dd,11}, {0x227c,5}, {0x48c6,3}, {0x1892,4}, + {0x2b94,3}, {0x27189,7}, {0xb1a1,4}, {0x29e61,7}, {0x2842,4}, {0x1097b,11}, {0xfc2f,4}, {0x2015b,9}, + {0xfd3,4}, {0x1f8be,9}, {0x17664,4}, {0xebf6,7}, {0x1b5c6,5}, {0xe802,6}, {0x10a2b,10}, {0x2b5cf,6}, + {0x9ef1,10}, {0x1c286,9}, {0x28a0b,7}, {0x1a69c,8}, {0x22e5,6}, {0x41b7,3}, {0x4bd6,6}, {0x1d3a,3}, + {0x19040,9}, {0x1f25,7}, {0xb0cd,11}, {0x2f6a5,4}, {0x1c1b7,8}, {0x19c7,14}, {0x174a,4}, {0x1e0e8,6}, + {0x231db,8}, {0x244d,7}, {0xb559,9}, {0x99d5,12}, {0x797f,4}, {0x1ea54,9}, {0x2800e,7}, {0x17adc,3}, + {0xed40,6}, {0x1298e,10}, {0xcbe8,7}, {0x2625b,5}, {0x73e0,5}, {0x14b76,10}, {0x2e23b,5}, {0xadec,5}, + {0x9b4d,8}, {0x71b8,6}, {0x22e63,8}, {0xd46a,11}, {0xaeb1,8}, {0x8b29,11}, {0x239c,7}, {0x12bdc,6}, + {0xf80,9}, {0x17678,7}, {0x2af77,7}, {0x1d7bb,7}, {0xf8ae,11}, {0x50e3,13}, {0x2d4ed,2}, {0xd7ec,4}, + {0x39b2,6}, {0xc0ef,3}, {0xdd46,4}, {0xa3ad,8}, {0x194b3,4}, {0x24d5b,4}, {0x165ca,9}, {0x2b55,5}, + {0x30375,4}, {0x28b2,14}, {0x17f58,6}, {0x225eb,6}, {0x139a6,6}, {0x2c72d,6}, {0x18b10,7}, {0x1378a,10}, + {0xb415,4}, {0x110cb,3}, {0x87f9,12}, {0x24e7,3}, {0x2bd91,6}, {0x780c,3}, {0x21a29,7}, {0x15f48,6}, + {0xd1cb,11}, {0x127b8,7}, {0x2422b,7}, {0xd13c,9}, {0x231d3,8}, {0x6519,8}, {0x151fc,10}, {0x29fb3,7}, + {0x13d7a,6}, {0x41d1,8}, {0x199d0,8}, {0x12159,2}, {0x9969,12}, {0x7858,13}, {0x3a45,6}, {0x15a6c,7}, + {0xce76,6}, {0x24713,5}, {0x36a5,4}, {0x16284,5}, {0x2237,3}, {0x24447,4}, {0x22bd3,7}, {0x24cdb,6}, + {0x1ffe,4}, {0xb601,6}, {0x1742a,10}, {0x2ec04,2}, {0x15764,6}, {0x204f1,4}, {0x20588,3}, {0x140cc,9}, + {0xfff,3}, {0xf3bd,11}, {0x84a5,8}, {0x218f9,8}, {0x2578b,8}, {0x1e786,6}, {0x17f7,16}, {0x27ac0,6}, + {0x5201,7}, {0x1f6f3,8}, {0x27ecc,7}, {0x9609,8}, {0x2b4c1,2}, {0x2dfe9,6}, {0x4829,8}, {0x1ec5,3}, + {0x13abe,10}, {0x1c5d4,8}, {0x181ce,5}, {0x1c96a,9}, {0x14144,9}, {0x1a93a,5}, {0x11520,8}, {0xcd58,5}, + {0x1427,9}, {0x457d,3}, {0x98f1,12}, {0x13e1,3}, {0x7a01,9}, {0x2bb15,4}, {0x77f2,3}, {0x14860,9}, + {0x1a396,9}, {0x3acb,5}, {0x1e0b2,8}, {0x9497,6}, {0x2d6ad,6}, {0x2fcc2,4}, {0x14fec,5}, {0xe11,5}, + {0x1549a,10}, {0x1be45,9}, {0x1a936,9}, {0xb7d5,5}, {0x2f998,5}, {0x15e93,3}, {0x16620,4}, {0x6e44,6}, + {0x2bc1d,6}, {0x2975,6}, {0xef24,8}, {0x4f20,3}, {0x11c44,11}, {0xfaa8,11}, {0x1511,6}, {0x246ab,7}, + {0x426b,13}, {0x76d2,9}, {0x18bf6,6}, {0xd78,6}, {0x6792,4}, {0x7e83,5}, {0x11793,4}, {0x124f2,10}, + {0x2ad98,3}, {0x240eb,8}, {0xe4df,8}, {0x18cdc,10}, {0x1fd62,6}, {0x1f51f,7}, {0x2bb2,3}, {0x23cbb,8}, + {0x20007,7}, {0x11066,11}, {0x1b4b0,3}, {0x98e5,12}, {0x2448,5}, {0x31774,2}, {0xb67b,3}, {0x4539,2}, + {0xcd69,11}, {0xaf89,12}, {0x237bb,7}, {0x1604e,4}, {0x24cb3,5}, {0x2037e,2}, {0x27544,4}, {0x395e,5}, + {0x29678,7}, {0x760f,6}, {0x395d,4}, {0x2cbeb,4}, {0x2fe1,14}, {0x4540,3}, {0x280d9,7}, {0x30373,6}, + {0x1f9c3,5}, {0xec9b,10}, {0x31a4,8}, {0xd66f,11}, {0x1bb1b,6}, {0xe73c,9}, {0x1f27,3}, {0x56ee,8}, + {0x1c760,8}, {0x100e3,9}, {0xc16,3}, {0xce92,10}, {0x1fbc6,5}, {0x2b6ef,6}, {0x650c,13}, {0x14ddd,5}, + {0x21d21,8}, {0x2231,4}, {0x479d,7}, {0x1969d,5}, {0x31b53,2}, {0x7f29,11}, {0x2024,5}, {0x17966,5}, + {0x1a70e,3}, {0xe54d,8}, {0x702b,8}, {0x2c127,6}, {0x4703,7}, {0x1bac1,6}, {0x1692,3}, {0x28b40,2}, + {0xbb4,24}, {0x1992e,9}, {0x3027,9}, {0xc626,9}, {0x213b9,8}, {0x1c2c0,4}, {0x2fcc7,4}, {0x88fa,6}, + {0x2a149,6}, {0x45e7,4}, {0xfe3,7}, {0x1507,7}, {0xd04a,8}, {0x1d827,9}, {0x21399,8}, {0x465d,2}, + {0x18066,9}, {0xe938,9}, {0x2afb2,2}, {0xe8f4,11}, {0x233f,11}, {0xbb8b,2}, {0x451e,4}, {0x6d42,3}, + {0x209c1,8}, {0x61d9,8}, {0xde9b,4}, {0x1e85c,9}, {0x210f1,7}, {0xdb97,11}, {0xc7e9,7}, {0x15ac6,7}, + {0x26d14,6}, {0x146e4,10}, {0x157c4,10}, {0x5998,7}, {0x17ace,2}, {0x253a3,8}, {0x152b0,8}, {0x9a71,7}, + {0xaa79,11}, {0x713c,8}, {0x7913,2}, {0x2caef,6}, {0x27ea,5}, {0x10f5e,8}, {0x3995,8}, {0x58cb,4}, + {0xfacb,3}, {0x109ff,10}, {0x151ca,7}, {0x2df4d,6}, {0xb156,7}, {0x26a27,6}, {0x139a6,7}, {0x10d22,8}, + {0xe516,8}, {0x1da3c,3}, {0x1cb74,9}, {0x2fcc,7}, {0x12e16,7}, {0x20f39,8}, {0x2e949,5}, {0x6b44,4}, + {0x10d3a,4}, {0x15ce7,5}, {0x1c832,5}, {0x2bc59,6}, {0x7378,4}, {0x6a2d,13}, {0x308f,4}, {0x1de7b,6}, + {0xb349,7}, {0x2fc9f,4}, {0x27f82,7}, {0x21639,8}, {0x29d1f,5}, {0x1faa4,6}, {0x1cd02,7}, {0x15a3a,9}, + {0x1f40a,2}, {0x1b047,8}, {0x18b60,6}, {0x2c484,3}, {0x272e0,6}, {0x1347,8}, {0x1303,4}, {0xd286,10}, + {0xeccd,4}, {0x45e3,8}, {0x11e28,5}, {0x2fca4,4}, {0x12f4c,10}, {0x32d5,13}, {0x27357,6}, {0x568e,5}, + {0x1afc0,8}, {0x1ca66,9}, {0xa7e5,12}, {0x1171a,10}, {0x24c3b,7}, {0x24c36,5}, {0x2743e,6}, {0x5283,11}, + {0x27b30,7}, {0x56fe,5}, {0xadb5,5}, {0x18f9,5}, {0x14572,10}, {0x127e0,5}, {0x3e6d,9}, {0x27fe,6}, + {0x87c9,11}, {0x17466,6}, {0x2df32,3}, {0x1e355,6}, {0x536d,13}, {0x13e4c,5}, {0x21859,8}, {0x1c46,6}, + {0x264bb,5}, {0x1ce58,9}, {0x350c,7}, {0x20113,8}, {0x27819,7}, {0x2df47,6}, {0x164b,2}, {0x3cbb,9}, + {0x25703,7}, {0x1597c,9}, {0x2a6dd,6}, {0x26203,5}, {0x2158c,4}, {0x16786,5}, {0x21b09,8}, {0x227cb,7}, + {0x440f,9}, {0xeabd,5}, {0x254b1,2}, {0x1837,9}, {0x71d8,6}, {0x646c,4}, {0xef0,2}, {0xecf8,4}, + {0x1d5b1,7}, {0x171d2,6}, {0x26e1,8}, {0x224db,8}, {0x1f8c0,7}, {0x6de2,8}, {0x97ed,6}, {0x13bc2,9}, + {0x29b0b,5}, {0x22616,5}, {0x1c6c7,9}, {0x20ae9,8}, {0x11195,5}, {0x27adc,7}, {0x17b52,10}, {0x28d0,7}, + {0x1041,3}, {0x1f79e,9}, {0x4003,8}, {0x9fe1,12}, {0x31441,2}, {0x6f68,8}, {0x22a1b,8}, {0x30803,4}, + {0xe43a,5}, {0x2842,7}, {0x27262,7}, {0x26763,4}, {0x14863,3}, {0x153ce,4}, {0x1d72,5}, {0x1c262,9}, + {0x112e9,6}, {0x434b,12}, {0x29082,7}, {0x30c3b,4}, {0x1a61e,8}, {0x21709,8}, {0x1ec16,9}, {0x20883,5}, + {0x3b1b,5}, {0x8cd4,5}, {0xcd61,8}, {0x4db0,12}, {0x12f10,10}, {0xed98,11}, {0x5adf,4}, {0x2ca1,6}, + {0x15df6,4}, {0x11234,5}, {0x23883,8}, {0xcf58,10}, {0x119e2,4}, {0x2579,15}, {0x402d,9}, {0x19052,8}, + {0x22083,8}, {0xb181,10}, {0x17eb8,7}, {0x14de,4}, {0x4b95,6}, {0xde36,11}, {0x28173,6}, {0xfd05,11}, + {0x1f7b0,4}, {0x11916,6}, {0x2364,4}, {0x1cd5c,9}, {0x8128,5}, {0x70e1,6}, {0x17d7,15}, {0x48f7,10}, + {0x5f1b,5}, {0xfd01,4}, {0x77a2,9}, {0x2ab69,7}, {0x26cc7,7}, {0x1a156,9}, {0x1d27e,5}, {0x25763,8}, + {0x1e80,12}, {0x15ec,5}, {0x2d97d,4}, {0x29b1,12}, {0xc16,16}, {0xb64b,3}, {0x6825,9}, {0x130fa,9}, + {0x305b9,2}, {0x1d950,6}, {0xda8,12}, {0xbd0b,3}, {0x1c127,6}, {0x26345,6}, {0x765d,8}, {0x2ba8d,4}, + {0x1b025,5}, {0x13960,8}, {0x16d9f,5}, {0x23e53,5}, {0x1e3e5,9}, {0x20d31,7}, {0x17232,4}, {0x246eb,8}, + {0x2966d,3}, {0x12736,6}, {0x27c87,7}, {0xd709,10}, {0xc045,4}, {0x29ad3,7}, {0x19f97,6}, {0x1287,5}, + {0x131ae,10}, {0xc165,11}, {0x2550b,8}, {0x161e,7}, {0x19b7,6}, {0x46bd,5}, {0x15bf5,6}, {0x10c3b,11}, + {0x54eb,3}, {0x178bc,10}, {0x2ecfc,5}, {0x488b,6}, {0x2dbf,14}, {0x6e7e,8}, {0x2fcd1,4}, {0xb162,3}, + {0x5f01,6}, {0x2bc85,2}, {0x1b299,6}, {0xf0f8,5}, {0x2b51d,6}, {0xe66,2}, {0x42f7,9}, {0x3ba5,4}, + {0x190a3,8}, {0x211c9,8}, {0x180b,3}, {0x423c,5}, {0xc581,9}, {0xfabe,7}, {0x2b6e9,6}, {0xb426,2}, + {0x54b2,11}, {0xd6e8,10}, {0x24a9b,7}, {0x13b40,10}, {0x1766a,3}, {0xf82a,11}, {0x101f6,8}, {0x11873,4}, + {0x4538,4}, {0x1b8a,8}, {0xeb8,2}, {0x31f5,6}, {0x1dce6,6}, {0xfd1,8}, {0x15436,10}, {0x30d9f,4}, + {0x1f8a3,9}, {0x3a0d,12}, {0x18735,4}, {0x2ae22,3}, {0xe61e,10}, {0xd4de,5}, {0x19ca9,7}, {0x186d8,8}, + {0x1da60,5}, {0x9a30,5}, {0x1716e,5}, {0x7e88,5}, {0x9111,9}, {0x4615,13}, {0x1166a,11}, {0x1089f,7}, + {0x735e,5}, {0xc297,3}, {0x4745,4}, {0x8565,12}, {0x12ff6,7}, {0x1d074,7}, {0x11e12,5}, {0x2ad14,7}, + {0x163a4,10}, {0x5eb3,9}, {0x2da3,14}, {0x1256a,9}, {0x15572,4}, {0xa419,11}, {0x25363,6}, {0xbd21,8}, + {0xd8c7,5}, {0x159e,4}, {0x2c6f,6}, {0x238fb,8}, {0x183b,4}, {0x4589,5}, {0xea54,9}, {0x52d9,5}, + {0x11f46,5}, {0x1abeb,7}, {0x6c76,6}, {0xcb17,8}, {0x2d89f,5}, {0x25d3b,8}, {0x266e,5}, {0x594d,4}, + {0x13a1e,10}, {0x16476,6}, {0x1e737,5}, {0x20679,6}, {0x1eda,12}, {0x2fc68,4}, {0x2236,7}, {0xd38e,8}, + {0x15d1,6}, {0x1fb97,7}, {0x9be0,3}, {0x1f2c4,6}, {0x8913,3}, {0xb961,12}, {0x16886,9}, {0x87bd,9}, + {0x21aa,10}, {0x66bc,4}, {0x28d48,7}, {0x8c55,8}, {0x7e5d,12}, {0x2f01,11}, {0xbc91,7}, {0x1182d,6}, + {0x6f75,13}, {0x385b,14}, {0x11b68,8}, {0x22ce3,8}, {0xcf8f,11}, {0x2cd6b,6}, {0x2317b,7}, {0x1ed9b,4}, + {0x60ef,11}, {0x2696,12}, {0xa5a5,7}, {0x17e7,7}, {0x5124,7}, {0x80cd,12}, {0x20e69,8}, {0x2690a,2}, + {0x2afb6,6}, {0x1e2e3,2}, {0x18b74,6}, {0x29a19,2}, {0x4e61,5}, {0x20338,9}, {0x2b4ee,4}, {0x50cd,3}, + {0xc8fc,11}, {0x2af79,5}, {0x898b,6}, {0x196ca,9}, {0x54e6,9}, {0xb3ac,4}, {0x156ed,2}, {0x1ff7,4}, + {0xfba5,11}, {0x1ab1,5}, {0xabf9,5}, {0x1150a,5}, {0x1f78,7}, {0xa086,3}, {0x584d,10}, {0x1fd8f,9}, + {0xb55b,4}, {0x9da7,6}, {0x2914d,7}, {0x1c208,9}, {0x9525,7}, {0xc3d7,5}, {0x13712,10}, {0xf3b,3}, + {0x5d56,3}, {0x21fe0,3}, {0x2ccaf,2}, {0x2d6b,13}, {0x307f,5}, {0x3075,6}, {0x308f3,4}, {0xfb16,5}, + {0x2a0d2,7}, {0x8931,12}, {0x2296b,8}, {0xf6d5,11}, {0x1a6f6,9}, {0x10e98,5}, {0x69a4,4}, {0x48e0,5}, + {0x16110,9}, {0x20f8,4}, {0x6cd1,5}, {0x1b65,11}, {0x2e21f,3}, {0x82c9,6}, {0x145ae,10}, {0x8d15,7}, + {0x27231,7}, {0x3d0f,6}, {0x2cde7,2}, {0x843c,3}, {0xf1d9,10}, {0x3940,4}, {0x1515f,7}, {0x67a3,13}, + {0x15760,10}, {0x18ec,5}, {0x6fff,2}, {0x1db45,3}, {0x2fc9a,4}, {0x751a,5}, {0x2de81,5}, {0x8b5e,7}, + {0x2246,5}, {0xc8ba,11}, {0xe138,11}, {0x3072,5}, {0x28b7,5}, {0x29154,6}, {0x8b59,6}, {0x24143,7}, + {0xe717,4}, {0xca78,5}, {0x16bb,3}, {0xca9e,8}, {0xe030,6}, {0x941d,12}, {0x16ffc,6}, {0x9c99,11}, + {0x34ab,3}, {0x1c70f,9}, {0x1d7df,8}, {0x22eab,7}, {0xabb1,10}, {0x19070,5}, {0x7337,4}, {0xfb11,2}, + {0x1924a,9}, {0x1e772,9}, {0x23bdb,7}, {0xf8e5,7}, {0x6796,12}, {0x97ad,8}, {0x2a47,4}, {0x12b4,4}, + {0xe4c9,11}, {0x264b,10}, {0x21a0,8}, {0x13be0,9}, {0x2fc72,4}, {0x29fcf,7}, {0x16b4c,10}, {0xb7ed,6}, + {0xc2d7,11}, {0x91b9,11}, {0x4e39,5}, {0x185c4,4}, {0xf9fe,4}, {0x1fed3,6}, {0x1a37,16}, {0x1cfa,10}, + {0x25b23,4}, {0x29a22,2}, {0x231c3,8}, {0x2fc63,4}, {0x27c2,10}, {0x9b91,7}, {0x30daf,4}, {0xa89f,6}, + {0x2147,3}, {0x61cc,13}, {0x17e40,6}, {0x2c7d,10}, {0x1f498,9}, {0x3c25,6}, {0x495f,5}, {0x12d30,7}, + {0x1a46e,9}, {0x7cf5,10}, {0x20b69,8}, {0x3f56,5}, {0x1496e,5}, {0x9f4a,3}, {0x3911,7}, {0x1d067,3}, + {0x9051,12}, {0x729b,9}, {0xa3dd,12}, {0x1c311,5}, {0x13532,10}, {0x808c,5}, {0x16839,4}, {0xc373,3}, + {0x1307,4}, {0x17402,7}, {0xb409,6}, {0x1da0f,4}, {0x263fb,8}, {0x2fd3,14}, {0x2446b,7}, {0x2df53,6}, + {0x1bb6,9}, {0x238a3,8}, {0x1f09,3}, {0x2bb57,6}, {0x2f961,4}, {0xb8b9,8}, {0x2d9d1,6}, {0xb3c3,4}, + {0x62a9,13}, {0x1577,5}, {0x1cf1e,6}, {0x7a79,11}, {0x26bcb,7}, {0x8e11,8}, {0xbf49,7}, {0x118ea,6}, + {0xe088,11}, {0x30da3,4}, {0x20bc9,8}, {0x2643b,8}, {0xb175,7}, {0x255ab,6}, {0x17fb2,6}, {0x29513,6}, + {0x810d,4}, {0x2772b,6}, {0x205a5,4}, {0x24c59,2}, {0xda8f,8}, {0x2400b,7}, {0x152a6,8}, {0xdcfc,6}, + {0xecf3,9}, {0x9555,5}, {0x103dc,4}, {0x8ae1,11}, {0x7267,6}, {0x17b73,7}, {0x73c6,6}, {0x7ba0,5}, + {0x1956b,9}, {0x117d7,4}, {0x1edab,6}, {0x2cf87,4}, {0x1c8fe,9}, {0x2bbe1,6}, {0x2d767,4}, {0x27b3,10}, + {0x301,3}, {0xbead,12}, {0x1900a,9}, {0x690f,13}, {0x2ba4f,6}, {0x16152,4}, {0xe1f,6}, {0x3b79,11}, + {0x1fe16,6}, {0x16f5c,10}, {0x2346b,8}, {0x10ae9,6}, {0xafe9,11}, {0x122b8,10}, {0x788c,8}, {0x1dc4d,4}, + {0x40da,3}, {0x23343,7}, {0xe86,3}, {0x3251,5}, {0x10217,8}, {0x1b27e,5}, {0x558f,13}, {0x1622e,4}, + {0x18771,3}, {0x202ac,5}, {0x27f66,7}, {0x16228,10}, {0x4c37,6}, {0x38e7,7}, {0x1a522,6}, {0x19694,6}, + {0x10ae9,8}, {0x2fb7,7}, {0x22d8,8}, {0x24c33,8}, {0x1b56,7}, {0x21c2,6}, {0xc3f0,5}, {0x2cdd7,4}, + {0x278f2,6}, {0x1ce76,5}, {0x7a19,12}, {0x68fd,5}, {0xc36,16}, {0x29601,7}, {0x19121,9}, {0x2094,4}, + {0x2c5cb,6}, {0x21cc1,8}, {0x1e8a4,4}, {0x181b0,5}, {0x311b5,4}, {0x192c8,8}, {0x175c4,10}, {0x1707,16}, + {0x2e67,12}, {0xcb5b,6}, {0x1c061,9}, {0x1e1c0,8}, {0x4c2a,8}, {0x29890,2}, {0xf84,3}, {0x164c,3}, + {0x28813,6}, {0x279d2,7}, {0x140f4,10}, {0x50fd,5}, {0x10e7,16}, {0x8da5,10}, {0x2fc86,4}, {0x6fa9,11}, + {0x1b842,8}, {0x45dd,14}, {0x17600,5}, {0x2ecb3,2}, {0x1c0bb,9}, {0x26e1e,7}, {0xa4e5,12}, {0x1664,3}, + {0xb74,32}, {0x29089,7}, {0xff0a,6}, {0x15918,10}, {0x137d0,10}, {0x4531,3}, {0x30dab,4}, {0x80fd,10}, + {0x1c54d,8}, {0x1120,2}, {0x2aaa8,2}, {0x36ef,12}, {0x8d75,12}, {0x29a7f,7}, {0x2644b,8}, {0x27334,7}, + {0x18390,7}, {0x2b4c3,3}, {0x73d3,5}, {0xd0b8,10}, {0x2cde9,6}, {0xa0a1,7}, {0x1c7d5,7}, {0xc933,5}, + {0x28ec4,5}, {0x1d8ff,9}, {0xb597,3}, {0xebeb,5}, {0x13053,4}, {0x4cb9,8}, {0x74fe,7}, {0x1eea2,2}, + {0x17df4,2}, {0x301b,4}, {0x2d974,2}, {0x18f12,3}, {0x164d0,10}, {0x1a7e9,6}, {0x1a6c0,9}, {0xee8,2}, + {0x1bec,13}, {0x248f6,2}, {0x3d3b,3}, {0x621e,5}, {0x72fa,5}, {0x1e2a1,7}, {0x165a7,5}, {0xb958,9}, + {0x2ba5,4}, {0x2aa25,6}, {0x1a132,8}, {0x2fc81,4}, {0x2fbaa,5}, {0xa9b3,6}, {0x8a0f,6}, {0x112e4,11}, + {0xb3e5,5}, {0x51b3,7}, {0x6def,12}, {0x1fe3a,6}, {0x29674,2}, {0x62f7,9}, {0xed4b,6}, {0x86c6,6}, + {0x52eb,8}, {0x3967,4}, {0x18e7,10}, {0x12de4,7}, {0x7122,5}, {0x5e5e,4}, {0x134ce,7}, {0x1f330,6}, + {0x1d950,9}, {0x7088,3}, {0x10188,6}, {0x3273,8}, {0x1e83,3}, {0x22733,8}, {0x1fde9,6}, {0x18ef6,6}, + {0x199ac,5}, {0x2d6b,14}, {0x1bd25,6}, {0x4f9e,9}, {0xcaf6,11}, {0x3030c,5}, {0xe58f,11}, {0x22a3,4}, + {0x10bb,4}, {0x2816c,7}, {0xff20,5}, {0x2e828,4}, {0x19a18,9}, {0x159f,2}, {0x24e3,9}, {0x254b3,4}, + {0x8661,7}, {0x164b6,6}, {0x17574,9}, {0x9e61,8}, {0x308ef,4}, {0x1f93c,5}, {0x2385b,6}, {0xa2c9,10}, + {0x3146,3}, {0x2ea48,5}, {0x2216b,8}, {0xf35a,11}, {0x19ec5,9}, {0x307f7,2}, {0x2535b,7}, {0x10ddd,11}, + {0x1a2f4,7}, {0x282d8,6}, {0x138fc,10}, {0x12160,4}, {0xc76,16}, {0x1815b,5}, {0x29f74,7}, {0x8409,8}, + {0xabfe,4}, {0x12d4e,10}, {0x433d,7}, {0xb4c9,12}, {0x122e5,5}, {0x2948,15}, {0x189f8,10}, {0x1d5de,9}, + {0xa7c8,5}, {0x1d6b6,7}, {0xeb4,10}, {0x25d2b,8}, {0x1620a,9}, {0x10d64,10}, {0x28a82,7}, {0x77c9,4}, + {0xe592,7}, {0x5172,12}, {0x2bc77,6}, {0x16dcc,9}, {0x132f8,10}, {0x11087,8}, {0x13693,4}, {0xe2f0,10}, + {0x1b947,9}, {0xcd1c,7}, {0x44a4,5}, {0x2eb30,5}, {0xb573,5}, {0x27ff9,7}, {0x305f,13}, {0x16430,9}, + {0x220c3,8}, {0x1b0c5,7}, {0x149be,10}, {0xe72,2}, {0x4295,8}, {0x8ae1,12}, {0x28c14,7}, {0x6ede,8}, + {0x28898,7}, {0x385b,13}, {0x9855,6}, {0x3ad1,14}, {0x1627,14}, {0xcd32,8}, {0x9381,11}, {0x2de83,3}, + {0x168f,5}, {0x1d950,4}, {0x10c67,6}, {0x11f46,6}, {0x1d3a7,8}, {0x818d,8}, {0x125f0,4}, {0x24a25,6}, + {0x2b6c5,6}, {0x14f54,10}, {0xe7e,3}, {0x155ea,4}, {0x1829b,5}, {0x1b6f2,3}, {0x5a14,13}, {0x5b06,5}, + {0x2328b,7}, {0x1428e,8}, {0x2b4d7,3}, {0x20829,8}, {0xe466,6}, {0x12af6,6}, {0xbab1,8}, {0x1f0f9,8}, + {0x1d2d8,9}, {0x57a0,4}, {0x212e9,7}, {0x101bf,6}, {0x8d34,5}, {0xfd47,11}, {0x8cdf,3}, {0x307f4,3}, + {0x24f33,7}, {0xc954,6}, {0xf5a1,11}, {0x227c,6}, {0x22b13,8}, {0xb8df,3}, {0x24deb,8}, {0x2d173,6}, + {0x25fa3,8}, {0x1ce97,9}, {0x2f225,5}, {0x1f1e3,5}, {0x103da,6}, {0x29e76,7}, {0x4143,2}, {0x3019,13}, + {0x15792,10}, {0x18fc5,5}, {0x19f70,8}, {0x7df5,4}, {0x2af0e,4}, {0x22d9b,7}, {0x1c57a,9}, {0x1ba0d,9}, + {0x23233,8}, {0x22103,8}, {0x123ee,5}, {0x8f3a,3}, {0x26183,5}, {0x10658,5}, {0x290c1,7}, {0xd336,10}, + {0x120a0,4}, {0x11541,6}, {0x4d48,10}, {0x7099,3}, {0x1230,5}, {0x2f65b,4}, {0x19751,9}, {0x21ac1,6}, + {0x24e63,7}, {0x27a26,7}, {0x1518e,5}, {0x711b,3}, {0x5e5f,6}, {0xd265,11}, {0x17c7,15}, {0x2acab,7}, + {0x1b2a2,7}, {0x2123,9}, {0x3094b,4}, {0x183f4,8}, {0x2f206,4}, {0xf016,8}, {0xfb79,11}, {0x1526a,9}, + {0xa79d,8}, {0x1e985,5}, {0x6ba8,5}, {0x2f8d,10}, {0x3b74,3}, {0x8f19,8}, {0x24025,3}, {0xef9,5}, + {0x18d36,5}, {0x303a5,4}, {0x30da7,4}, {0x2d143,4}, {0x198c9,2}, {0x1ee71,7}, {0x3aae,7}, {0x2dadf,5}, + {0x8061,11}, {0x1448c,10}, {0x1fca,15}, {0x1f689,2}, {0xffea,7}, {0x16ade,10}, {0x1ed12,9}, {0x129a,7}, + {0x6e64,12}, {0x104d4,3}, {0x29dd1,3}, {0x8bd7,6}, {0x24bc7,2}, {0x399d,11}, {0x3152,8}, {0x21cb9,7}, + {0xfcff,5}, {0x226eb,8}, {0x26e25,6}, {0x1b2cf,7}, {0xe487,7}, {0x21851,8}, {0x2f01,6}, {0xb241,7}, + {0x172a,3}, {0x35d7,13}, {0x2df59,6}, {0x45f1,4}, {0x2cfd5,6}, {0x106ca,4}, {0x30d93,4}, {0xd30a,11}, + {0x190ac,9}, {0x17966,9}, {0x1d9d7,9}, {0x4695,3}, {0x6d1f,11}, {0x1a666,8}, {0x2255b,6}, {0x1ef49,6}, + {0x27381,7}, {0x5d20,13}, {0x16868,7}, {0x212f1,8}, {0x2d2f9,5}, {0x285e1,7}, {0xbbdd,8}, {0x1dce,6}, + {0x12334,4}, {0xd36d,8}, {0x9faa,4}, {0x2371,6}, {0x1c946,9}, {0x178e,3}, {0x1f570,8}, {0x13168,7}, + {0x1be84,6}, {0x30d7b,4}, {0xd7da,11}, {0x354b,5}, {0x214f9,8}, {0x1cc60,8}, {0x31cb,8}, {0x809d,8}, + {0xe01a,5}, {0x1283e,6}, {0x2b036,6}, {0x2959,5}, {0x123f8,7}, {0x9c91,5}, {0xdc68,10}, {0x3115,13}, + {0x5305,11}, {0x21001,8}, {0x2c1f3,6}, {0x2301b,8}, {0x739f,6}, {0x49b4,6}, {0x7995,5}, {0x6c76,8}, + {0x19cfa,9}, {0xe8e9,11}, {0x17fa0,3}, {0x11a9,5}, {0x2a42f,6}, {0x82b3,6}, {0x41bd,6}, {0x1766e,5}, + {0x6fd0,5}, {0x30d8f,4}, {0x103e7,4}, {0x53fc,8}, {0xb7e8,5}, {0x16cf,4}, {0x5eda,5}, {0x275c6,7}, + {0xf18,3}, {0xcffd,11}, {0x143ba,9}, {0xbdf2,3}, {0x11b73,9}, {0xbc93,5}, {0xdd65,11}, {0xe552,5}, + {0x1d584,8}, {0x28f78,5}, {0x2ba8b,6}, {0x1e60a,6}, {0x7e39,6}, {0x1b572,6}, {0xe68,3}, {0xc53f,7}, + {0xc754,5}, {0x12a46,6}, {0x1462,5}, {0x185f,8}, {0x2585b,8}, {0xa749,12}, {0x22623,6}, {0x2341,5}, + {0x18192,10}, {0x1bbcf,9}, {0x288d7,7}, {0x9dca,3}, {0x27040,6}, {0x2019a,7}, {0x5992,13}, {0x789f,6}, + {0x22eab,8}, {0x14d7e,10}, {0x202a8,9}, {0x1344c,5}, {0x4af9,5}, {0x13375,5}, {0x45f1,8}, {0x116a9,3}, + {0x1515c,10}, {0x2d655,2}, {0x104a0,11}, {0x3a0f,5}, {0x24273,8}, {0x6e23,7}, {0x1790,7}, {0x10ae6,11}, + {0x1c82f,7}, {0x2460b,7}, {0x8ea8,5}, {0x16994,10}, {0x2588,15}, {0x9471,12}, {0x9f45,6}, {0x13a73,5}, + {0xfb7,4}, {0x23953,5}, {0xa845,11}, {0x57d1,6}, {0x22c03,8}, {0x1231c,10}, {0xadcd,8}, {0xb5dd,5}, + {0x27e0,8}, {0x24bcb,4}, {0x12470,9}, {0x9669,12}, {0xc17d,5}, {0x2390b,8}, {0x6bd4,6}, {0x2984,12}, + {0x766f,4}, {0xa9ad,12}, {0x1dcb4,3}, {0x155f8,10}, {0x17e18,9}, {0x1891c,10}, {0x1595,2}, {0x850a,7}, + {0x22d2b,8}, {0x2e267,4}, {0x136d6,10}, {0xdd02,9}, {0xbf61,12}, {0x1413a,10}, {0x1657,6}, {0x1371,3}, + {0xaa91,9}, {0x7e75,10}, {0x158aa,10}, {0x16b7,15}, {0x36cd,4}, {0x187a0,5}, {0x1b4e2,9}, {0x1dfda,9}, + {0x1e576,2}, {0x1edb4,6}, {0x17812,5}, {0x3308,5}, {0xa191,12}, {0x3118b,6}, {0x25083,4}, {0x21ff3,6}, + {0xf6a9,10}, {0x2c2dd,6}, {0x28cab,3}, {0x35ce,4}, {0x181ec,6}, {0xacb9,8}, {0xbd1a,4}, {0x1c2e0,9}, + {0x2a56,13}, {0x4703,14}, {0x19cec,4}, {0x29b90,5}, {0x26433,4}, {0x1c33a,9}, {0x20664,5}, {0x16660,7}, + {0x1d18,14}, {0x1bf5c,9}, {0x1a252,8}, {0x9ca5,11}, {0x1f852,8}, {0x29f8,4}, {0x13f7,16}, {0x103b9,11}, + {0x116ae,3}, {0xaf65,12}, {0x111c8,3}, {0x24223,7}, {0x9af,32}, {0x114e9,6}, {0x15ddc,9}, {0x133b6,6}, + {0x10c67,5}, {0x18a5c,7}, {0x29893,4}, {0x2011c,9}, {0x1bda3,9}, {0x16cd2,10}, {0xf5b,2}, {0xb9fd,5}, + {0xacad,12}, {0x5201,10}, {0x251f,6}, {0x13456,7}, {0xfb42,11}, {0x228db,5}, {0x15062,10}, {0x1c7f,3}, + {0x1bb90,9}, {0x7337,5}, {0x11ad,4}, {0x6345,13}, {0xd110,11}, {0x6bc0,13}, {0x2801,3}, {0x5c02,13}, + {0x1b653,9}, {0x1be18,9}, {0x4551,6}, {0x1a72,3}, {0x1d0a1,6}, {0x166ec,10}, {0xbb7d,4}, {0x74fb,2}, + {0x26b15,7}, {0x11f4c,5}, {0x8244,5}, {0x21361,6}, {0x2707,7}, {0x1092e,11}, {0x2d353,6}, {0x119e2,5}, + {0x1045e,10}, {0x2029,3}, {0x22b0,5}, {0xe1a6,6}, {0xf646,11}, {0xec55,4}, {0x4855,2}, {0x2fc54,4}, + {0x12b14,10}, {0x2ed1,6}, {0x16d7,10}, {0x20541,2}, {0x8829,8}, {0x7ad9,6}, {0x12a6a,6}, {0x16950,3}, + {0x140bd,4}, {0x2c38b,6}, {0xed40,5}, {0x36b7,10}, {0x2d83f,5}, {0x2f94d,4}, {0x116db,4}, {0xfb6e,11}, + {0x5763,11}, {0xf604,6}, {0x110f5,8}, {0x45e2,3}, {0x15a76,10}, {0xf38c,3}, {0x3c35,7}, {0x1283a,10}, + {0x260eb,5}, {0x12ace,10}, {0x4fa6,4}, {0x4f29,12}, {0x19c9,4}, {0x2c3bb,6}, {0x20bc,8}, {0x2eea5,4}, + {0x1c35a,4}, {0x1269,5}, {0xf1c3,8}, {0x56e9,5}, {0x7394,3}, {0x2403b,5}, {0x9909,8}, {0x11c65,9}, + {0x9411,12}, {0x236ab,8}, {0x11df6,6}, {0x23987,4}, {0x3aff,3}, {0x1f51f,9}, {0x159a,6}, {0x1e910,5}, + {0x1481c,4}, {0x51da,13}, {0x30de7,4}, {0x7303,6}, {0x1912a,6}, {0x10939,11}, {0x25313,8}, {0x1926e,7}, + {0x19118,9}, {0x21b81,8}, {0xe5d8,4}, {0x17d00,10}, {0xdae7,10}, {0x16f3e,10}, {0x159b8,10}, {0x31280,3}, + {0x1cea9,6}, {0x2f1c2,5}, {0x1cf0c,9}, {0x1bea8,8}, {0x13fb9,5}, {0x11019,4}, {0x18156,10}, {0x19f9,5}, + {0x1f330,9}, {0x8e29,12}, {0x1912a,9}, {0x1b60d,3}, {0x2a2b,5}, {0x59b9,5}, {0x3b4f,9}, {0x1aeb2,8}, + {0x15500,4}, {0x4e3b,4}, {0x2ae27,6}, {0x1661a,10}, {0x2a6f2,7}, {0x8d1f,2}, {0xb955,12}, {0xe61,4}, + {0x37ba,5}, {0x15fe4,10}, {0x17434,7}, {0x2e025,6}, {0x2fc4f,4}, {0x120a,5}, {0x2f27,4}, {0x6b3e,9}, + {0x21a71,8}, {0x1a71a,6}, {0x1b84b,9}, {0x111e7,8}, {0xc54a,8}, {0x1829,4}, {0x14400,10}, {0x2736c,7}, + {0x1803b,3}, {0x4299,5}, {0x2f3f,5}, {0x29f3,5}, {0x8019,12}, {0x2b0f0,6}, {0xf4cb,5}, {0x75b6,2}, + {0x16318,10}, {0x8469,4}, {0x18278,5}, {0x5710,5}, {0x3abd,6}, {0x26473,8}, {0x3144,8}, {0x4,3}, + {0x1749,3}, {0x17808,6}, {0x14ebe,8}, {0x20f21,8}, {0x12312,6}, {0x19918,4}, {0x428c,7}, {0x74ca,5}, + {0x11649,4}, {0xc4cb,6}, {0x1ab1c,8}, {0x6cb7,7}, {0x1a67,6}, {0xd6fe,11}, {0x130f0,9}, {0x1087e,5}, + {0x2de27,4}, {0xc1a1,11}, {0xdafd,11}, {0x3d8d,14}, {0x36a9,8}, {0xb3bb,6}, {0x274d1,7}, {0x2284b,7}, + {0x149c,6}, {0xb499,9}, {0xefcb,5}, {0x1d0a1,5}, {0x2afaf,4}, {0xee95,8}, {0x3957,10}, {0x39bb,3}, + {0xfeb2,8}, {0x207e1,8}, {0x25abb,7}, {0xc570,6}, {0x207e,14}, {0xf533,11}, {0x1ab5b,9}, {0x134b0,9}, + {0x2c4cf,6}, {0x21791,7}, {0x2d095,6}, {0x41e6,7}, {0x1a0d8,7}, {0x1b53c,9}, {0x1aae6,6}, {0x122cc,5}, + {0x8985,12}, {0x8601,8}, {0x157de,4}, {0x11ed3,3}, {0x21439,8}, {0x45eb,14}, {0x290a0,5}, {0x1b131,7}, + {0x14914,9}, {0xef7c,11}, {0x24d83,8}, {0xb481,12}, {0x1f5a6,5}, {0x19fc1,9}, {0x1e874,2}, {0x1d638,9}, + {0x2e487,3}, {0x23ff3,7}, {0x15399,6}, {0x3376,7}, {0x153f0,9}, {0x1cb86,9}, {0x11137,7}, {0x1ce43,3}, + {0x148db,4}, {0x2fc18,4}, {0x7a8a,5}, {0x28093,7}, {0x4bfd,6}, {0x1af5,3}, {0x236c,11}, {0x14c61,4}, + {0x1b401,9}, {0x26d76,7}, {0x26427,4}, {0x164b2,10}, {0x29d7,3}, {0x28d09,7}, {0xd01e,6}, {0xefb3,11}, + {0x10573,4}, {0x1a79b,5}, {0x1f8eb,5}, {0x28efc,5}, {0x12a60,7}, {0x21261,7}, {0x1b790,5}, {0x641a,5}, + {0x1056b,4}, {0xc4d1,11}, {0x44b7,6}, {0x20f91,8}, {0x16a41,5}, {0x11b47,4}, {0x112ad,10}, {0x2218b,8}, + {0x1be7b,9}, {0x6740,7}, {0x7bbd,5}, {0x1e733,9}, {0x1288a,10}, {0x22b23,8}, {0x127d6,10}, {0x26a35,7}, + {0x80c1,12}, {0xabc4,5}, {0x52fe,5}, {0x1b023,9}, {0x2449b,8}, {0x2bf3b,6}, {0x89f5,4}, {0x2d98c,2}, + {0x2df5f,6}, {0x27d6e,7}, {0x20eb1,8}, {0x2aecf,7}, {0x80f1,6}, {0x2fc27,4}, {0xee64,4}, {0x1dce6,9}, + {0x6053,8}, {0xec3,6}, {0x11a55,5}, {0x2844b,7}, {0x1d9f,6}, {0xaeb1,12}, {0x27a50,7}, {0x2016d,8}, + {0x1d506,9}, {0x94b2,4}, {0x1d7fa,9}, {0x228bb,6}, {0x2547b,8}, {0x1f5f7,4}, {0x10aaf,6}, {0x1b5f0,9}, + {0x59b2,5}, {0x4e42,5}, {0xdde5,4}, {0x10ea3,8}, {0x550d,13}, {0x103bb,5}, {0x277c5,6}, {0xaa79,12}, + {0x741a,5}, {0x1a0f3,9}, {0x44ab,6}, {0x21ecb,8}, {0x1240c,10}, {0x12152,2}, {0x1c84a,9}, {0x126e,17}, + {0x17a1c,6}, {0x2f9dc,2}, {0x30d87,4}, {0x24373,5}, {0x27db,5}, {0x1538c,7}, {0x1fe8b,6}, {0xa0bd,3}, + {0x73bb,4}, {0xcd6,4}, {0x9f8d,11}, {0x27c2c,6}, {0x4eef,6}, {0xc899,11}, {0x5749,6}, {0x29a30,2}, + {0x1f996,5}, {0x199e2,9}, {0x17b70,10}, {0x196cd,5}, {0x2f1ef,5}, {0x22323,5}, {0x11e5f,5}, {0x17c92,5}, + {0x1b5c3,8}, {0x1567,14}, {0x2c2e3,6}, {0xb085,12}, {0xbeb9,6}, {0x13460,7}, {0xc021,7}, {0x14e24,4}, + {0x1e373,4}, {0x16246,10}, {0x1ae19,9}, {0x11cac,6}, {0xc702,5}, {0xd588,10}, {0x18390,5}, {0x13186,10}, + {0x1b86f,4}, {0x10d01,6}, {0x2fbff,5}, {0x233f,15}, {0x1fed3,5}, {0x49b5,5}, {0x11375,2}, {0x2745a,7}, + {0x1b30,4}, {0x772d,9}, {0x2e804,8}, {0xbfb5,9}, {0x2ad4,9}, {0xf339,10}, {0x5a21,13}, {0x1d64a,9}, + {0x4ff1,4}, {0x1a26d,6}, {0x2ae9e,7}, {0xbdb1,10}, {0x26f91,7}, {0x1db99,6}, {0x1007,16}, {0xd4b7,11}, + {0x2123d,4}, {0x19895,8}, {0x18fce,6}, {0x2394b,8}, {0x2d40d,6}, {0x4853,7}, {0x1208,5}, {0x1e89b,5}, + {0x2df65,6}, {0x225ad,4}, {0x29f3,9}, {0xbfcf,3}, {0x15de6,10}, {0x30d8b,4}, {0xf7a,3}, {0xcfc6,11}, + {0x79f7,3}, {0x1803e,6}, {0x114de,6}, {0x39d5,6}, {0xa31d,10}, {0xb61b,3}, {0x1e2f5,3}, {0x30347,3}, + {0x2859b,7}, {0xce50,5}, {0x17e40,7}, {0x18a18,5}, {0x2e95d,4}, {0x25b1b,5}, {0x7998,9}, {0x23863,8}, + {0x1765e,2}, {0x3601,14}, {0x1fcc0,8}, {0x2db2a,3}, {0x2e241,5}, {0x19f7d,5}, {0x15443,5}, {0x279a8,6}, + {0x281e,6}, {0xc081,6}, {0x17b1a,6}, {0x2748b,7}, {0x2def5,4}, {0x78f9,4}, {0x93a7,3}, {0xfede,10}, + {0x2776a,7}, {0x1c3ee,6}, {0x1487,6}, {0x1a72c,8}, {0xa0a1,10}, {0x26aba,7}, {0x19832,5}, {0x2696,15}, + {0x316f0,3}, {0x246ab,5}, {0x1c058,9}, {0x1e453,7}, {0x1363b,5}, {0x1de37,5}, {0x187d2,6}, {0x315b,12}, + {0x1c691,9}, {0x33a7,14}, {0xc437,11}, {0x263a3,8}, {0x12394,6}, {0x3559,12}, {0x13e2,4}, {0x3e6d,12}, + {0x20599,2}, {0x1214,5}, {0x2eed7,4}, {0x3f5b,14}, {0x4065,14}, {0x5242,12}, {0xc295,4}, {0x26d4c,5}, + {0x26133,8}, {0x5ea9,4}, {0xbfe5,4}, {0x2ae20,6}, {0x72f6,9}, {0x27bd8,7}, {0x1454a,10}, {0x294b1,6}, + {0x23aa3,7}, {0x30d83,4}, {0x70ee,9}, {0xd383,6}, {0xb481,6}, {0x231e3,8}, {0x7feb,4}, {0x1997,5}, + {0x62dd,13}, {0xb30d,12}, {0x260ed,3}, {0x2bfad,6}, {0x584a,3}, {0x1178a,2}, {0x1159,5}, {0x1e2e6,3}, + {0x2ef95,2}, {0x2f3e5,2}, {0x5946,6}, {0x20a89,8}, {0x431e,3}, {0x101c,3}, {0x28e0c,7}, {0xd924,11}, + {0x5ea9,9}, {0x4669,5}, {0x168ae,5}, {0xfac9,5}, {0x2986b,4}, {0x82a1,11}, {0x2ad94,4}, {0x2de53,3}, + {0x1a3d5,9}, {0x286ed,7}, {0x1587,8}, {0x114a7,8}, {0x64cb,8}, {0xc9d8,11}, {0x6a90,5}, {0x17966,12}, + {0x193c8,5}, {0x416f,14}, {0x4fd2,7}, {0x23453,8}, {0x238c,2}, {0x99da,6}, {0x1553a,9}, {0xd7cb,4}, + {0x255b3,8}, {0x4781,7}, {0x7197,8}, {0x105c9,11}, {0x1203,3}, {0x2105,13}, {0x15620,10}, {0x3fd0,4}, + {0x9225,12}, {0x13d48,9}, {0xff36,11}, {0x2fc36,4}, {0x7423,2}, {0x20e79,8}, {0x1e2d7,5}, {0x26f21,7}, + {0x14e46,9}, {0x206f,6}, {0x11204,3}, {0xc02f,5}, {0x29dce,6}, {0x191d5,9}, {0x18d90,10}, {0x30d77,4}, + {0xd7e5,10}, {0x29e0,3}, {0x16f70,10}, {0x24f93,8}, {0x119e0,7}, {0x1e7b1,9}, {0xc8a0,4}, {0x58a8,6}, + {0xc8f7,5}, {0x8f0d,7}, {0x2b709,4}, {0x935d,12}, {0xb421,5}, {0x9fb1,6}, {0x1a4ec,9}, {0x2d93b,6}, + {0x260d9,2}, {0x14e24,3}, {0x1f50d,6}, {0xb271,7}, {0x3bbf,4}, {0x26ddf,7}, {0x6241,9}, {0x55d0,6}, + {0x21081,8}, {0x168e,2}, {0x11c4,10}, {0x29620,4}, {0xfde,3}, {0x9b49,12}, {0x282ca,7}, {0xc9cd,11}, + {0x72b5,9}, {0x201ac,9}, {0x7918,4}, {0x28475,5}, {0x1196e,5}, {0x18408,10}, {0x10a6d,11}, {0x30d47,4}, + {0x1464e,7}, {0x1b8ff,8}, {0x2b502,7}, {0xfff1,11}, {0x1013b,11}, {0x27a3b,7}, {0x2028d,8}, {0x6ced,5}, + {0xd78,12}, {0x2dd3,7}, {0x287f0,6}, {0x1579,5}, {0x9511,5}, {0x2a3e2,7}, {0x1f7e6,7}, {0x19670,9}, + {0x1236c,6}, {0x30ca3,4}, {0x9cf9,11}, {0xf69,5}, {0xb8a3,4}, {0x125d,7}, {0x5782,6}, {0x173c6,7}, + {0x63ee,13}, {0xb709,12}, {0x1f00f,5}, {0x15f62,10}, {0x2132,14}, {0x12b2,12}, {0x18c0e,4}, {0x88f5,11}, + {0x1a44a,8}, {0x23f8b,5}, {0x2cdaa,3}, {0x10dd2,5}, {0x11654,5}, {0x1bc4,4}, {0x1143,3}, {0x25756,5}, + {0x1a9e1,8}, {0x1977,5}, {0x1ffe,8}, {0x1f9f9,7}, {0x27ef,6}, {0xbb89,7}, {0x18d0e,10}, {0x8edd,12}, + {0x4460,2}, {0x120bc,11}, {0xfd10,9}, {0x175ec,6}, {0x27182,7}, {0x12416,10}, {0xd593,8}, {0x1cfa5,5}, + {0x2731f,7}, {0x1617e,10}, {0xb601,5}, {0x2cd2b,4}, {0x17670,4}, {0x27ac0,7}, {0x1e166,8}, {0x2ced,6}, + {0x1fc0,5}, {0x6d4b,2}, {0x18250,8}, {0x4397,7}, {0x17c06,6}, {0x2f77c,4}, {0x1c019,6}, {0x11ce9,5}, + {0x26d30,7}, {0x53ef,11}, {0x136a,4}, {0x60c2,6}, {0x12a2a,4}, {0xcf2c,8}, {0x2bafd,6}, {0x1c19,11}, + {0x15b8e,10}, {0x22a23,7}, {0x4c85,8}, {0x398f,14}, {0x29a4,3}, {0x308f,3}, {0x1ea2c,4}, {0xec01,8}, + {0x30d6f,4}, {0xee0,4}, {0x136ea,10}, {0x4169,4}, {0xab1,32}, {0x2de57,5}, {0x11bd6,10}, {0x35df,5}, + {0x187c8,6}, {0x1419,6}, {0x15bac,10}, {0x2c6f,12}, {0x228ce,5}, {0x19454,9}, {0x2a47,5}, {0x1787,9}, + {0x8139,12}, {0xb221,8}, {0x13f64,9}, {0x20379,3}, {0xe983,11}, {0x1a3b1,9}, {0xf969,10}, {0x182e,3}, + {0x10679,7}, {0x1e142,7}, {0x1edd8,9}, {0x2510,7}, {0x1137a,4}, {0xbb29,5}, {0x2f9e3,4}, {0x1e80,11}, + {0x2e6a4,2}, {0x132d0,5}, {0x751a,2}, {0x30d7f,4}, {0x1c583,9}, {0xa0e9,12}, {0xa899,12}, {0x28883,7}, + {0xde78,10}, {0x1baee,9}, {0xabd5,12}, {0x30d2d,2}, {0x3bcd,10}, {0x2042,15}, {0xe2b,3}, {0x7995,12}, + {0x294c6,6}, {0xaf4,64}, {0x40f1,12}, {0x359f,12}, {0x2420d,6}, {0x2d95,14}, {0xeb5,3}, {0x9b49,6}, + {0x5b8d,9}, {0x14450,9}, {0x29b4a,7}, {0x14662,8}, {0x1497,11}, {0x1a69c,9}, {0x1997f,6}, {0x2fc2c,4}, + {0x4a15,11}, {0x1557,7}, {0x6386,9}, {0x2766a,4}, {0x2d524,2}, {0x309bb,4}, {0x1c37,9}, {0x7e59,4}, + {0x23d9b,8}, {0x2e973,3}, {0x4a70,8}, {0x2521b,5}, {0xc118,5}, {0x4963,4}, {0x7e55,7}, {0x1da55,9}, + {0x30b91,2}, {0x1c6d0,6}, {0x25ebb,7}, {0xd6fe,10}, {0xc9e3,8}, {0x1dc5f,8}, {0x6239,3}, {0x1443c,10}, + {0xa35e,6}, {0x8b3d,4}, {0x251b,4}, {0x277da,6}, {0x29ed,15}, {0x1a101,4}, {0x15af,8}, {0x28188,7}, + {0x1bfdd,5}, {0x1002,3}, {0x30f4,5}, {0x21241,7}, {0x30e67,4}, {0x2cddd,5}, {0xc3d4,8}, {0x24d16,5}, + {0x282a0,6}, {0x133a2,6}, {0x160ca,10}, {0x58b7,4}, {0x2588,14}, {0xce71,5}, {0x22763,8}, {0xcc56,11}, + {0x7d61,7}, {0xbccf,2}, {0x14478,8}, {0x175,3}, {0x122f4,7}, {0xef2f,9}, {0x10ba7,5}, {0xafee,6}, + {0x351b,6}, {0xbc0d,5}, {0x8d5d,12}, {0x2ee5,7}, {0x18d22,9}, {0x486f,5}, {0x29d1f,7}, {0x2ce67,6}, + {0x3d7f,13}, {0x1a867,9}, {0x4d42,6}, {0x1c7e,4}, {0xf0d,4}, {0x1d33b,9}, {0x22e5b,8}, {0x1c3f7,9}, + {0x2c77b,6}, {0x205a9,3}, {0x31d1,7}, {0x11e71,4}, {0x30c7f,4}, {0x13fe,9}, {0x2fc40,4}, {0xe563,11}, + {0x899d,12}, {0x2f80d,5}, {0x2b54b,6}, {0xcf16,7}, {0x15af1,4}, {0x8b69,4}, {0x4051,3}, {0x6d94,8}, + {0x3043,14}, {0x1f25,5}, {0x2c51d,6}, {0x8d1d,4}, {0x1f435,9}, {0x311d3,4}, {0x2cf90,2}, {0xe941,11}, + {0x14e91,5}, {0x7a9d,9}, {0x106b5,2}, {0x278c8,7}, {0x2759,6}, {0xb301,12}, {0xadcd,5}, {0x1779,3}, + {0x1df41,8}, {0x1225a,4}, {0x14b1c,10}, {0x5bce,12}, {0xd711,3}, {0xb34,32}, {0x26fbb,7}, {0x2b90,4}, + {0x3e6d,14}, {0x3e43,14}, {0x1d19d,9}, {0x2d51d,2}, {0xcf0f,7}, {0x21671,8}, {0x1cf9c,6}, {0x1f876,9}, + {0x1ab,3}, {0x20b49,8}, {0x2ece6,2}, {0x319f1,4}, {0x11df6,4}, {0x2454,7}, {0x7c7d,12}, {0xb901,8}, + {0x2060,15}, {0xd919,11}, {0x7e15,11}, {0x2dc8f,6}, {0x260ab,8}, {0xe794,11}, {0x2b82,2}, {0x10d2,2}, + {0x1f305,4}, {0x2df6b,6}, {0x2da13,6}, {0x154b8,7}, {0x1a510,9}, {0xc27d,4}, {0x9e1c,4}, {0x1f9d,5}, + {0x60ae,13}, {0x1baa,3}, {0x4522,5}, {0x1659,4}, {0x1dc61,6}, {0x30d73,4}, {0x489b,2}, {0x30815,4}, + {0x10ba4,8}, {0x2db9b,4}, {0x223db,8}, {0x111e9,6}, {0x1c28,7}, {0xf59,4}, {0x1ebc,15}, {0x1739e,7}, + {0x18034,6}, {0x206e1,8}, {0xc081,5}, {0x255b,15}, {0xb7e1,6}, {0x1399f,2}, {0x473b,9}, {0x7414,6}, + {0x9849,11}, {0x2267b,8}, {0x19fb8,9}, {0xcb4e,7}, {0x1677,5}, {0x1c45a,6}, {0x7197,5}, {0x14806,5}, + {0x8751,12}, {0x2c565,5}, {0x77af,8}, {0x191e7,9}, {0x1f3a0,5}, {0x60ef,8}, {0x1136a,9}, {0x400a,2}, + {0xecfe,8}, {0x320b,5}, {0x1d57f,5}, {0x1f2a0,5}, {0x33a1,4}, {0x1e544,6}, {0x18dea,10}, {0x1b3c2,6}, + {0x1cfd,3}, {0x1f445,2}, {0x11ca7,11}, {0x21719,8}, {0x12dda,9}, {0x23073,8}, {0x30f75,4}, {0x21591,8}, + {0x2844,4}, {0x20152,7}, {0x2399,15}, {0x2570b,8}, {0x25706,4}, {0x2224b,6}, {0x4535,4}, {0x1bb99,7}, + {0x119d1,6}, {0xc469,5}, {0x25b73,5}, {0x2479b,4}, {0x2fb82,5}, {0x16bce,9}, {0x15cce,8}, {0x10b4,12}, + {0x1947,6}, {0x1490a,6}, {0x34b1,8}, {0x28002,4}, {0x16808,3}, {0x2defb,4}, {0x1e6fd,5}, {0xb721,6}, + {0xef40,5}, {0x1b692,8}, {0x64b1,13}, {0x26d6c,3}, {0x2c18d,6}, {0xfd0a,6}, {0xd01e,11}, {0xbd15,4}, + {0xbd18,5}, {0x22d6,12}, {0x11f46,11}, {0x2a888,7}, {0x1c688,9}, {0xffc5,9}, {0x25083,5}, {0x1f3ff,4}, + {0x2a49f,7}, {0xfc4,5}, {0x31b41,2}, {0xacbf,6}, {0x92d9,7}, {0x28310,7}, {0x243f3,8}, {0x5e24,5}, + {0x3131,6}, {0x1937c,9}, {0x24d33,8}, {0x17cb0,6}, {0x45a7,9}, {0x1f18,3}, {0x5,3}, {0x3294,8}, + {0x17e7,15}, {0x28000,6}, {0x18b74,5}, {0x23ad3,6}, {0x8481,8}, {0x2f2c5,4}, {0x11f27,3}, {0x36b7,13}, + {0x2024,8}, {0x20fe1,8}, {0x1285,3}, {0x3755,3}, {0xffaf,11}, {0x450f,5}, {0x7684,8}, {0x2acdc,7}, + {0xf247,10}, {0x672e,9}, {0x676f,13}, {0x568d,6}, {0x160ac,10}, {0x1857,5}, {0x11916,11}, {0x17b20,9}, + {0x13fe6,10}, {0x1dbd,13}, {0x10351,5}, {0x135dc,10}, {0x10da,3}, {0x1e2ce,9}, {0x1a894,9}, {0x1cda4,9}, + {0x962d,11}, {0x1ef37,9}, {0x2ba6d,6}, {0x20d79,8}, {0x37a5,14}, {0x8ead,12}, {0xfc4,7}, {0xc069,5}, + {0x27a65,7}, {0x2d83f,6}, {0x3a61,9}, {0xea80,11}, {0xf512,6}, {0x32b9,13}, {0x124e,4}, {0x2d44f,6}, + {0x16142,10}, {0x1fa2f,5}, {0x24eed,3}, {0xc2a0,7}, {0x2542b,7}, {0x27d44,7}, {0x1df80,9}, {0x13bf4,10}, + {0xb612,4}, {0x19e62,9}, {0x2f766,2}, {0x1a7fb,9}, {0xec7a,10}, {0x1428e,9}, {0x2b7d,4}, {0xdbad,11}, + {0x2e824,8}, {0x17b16,10}, {0x17396,5}, {0xaf11,12}, {0x16db8,7}, {0xbdf9,5}, {0x1049,3}, {0x5ec0,13}, + {0x1832,5}, {0x1c4ea,8}, {0x17466,10}, {0x1f756,8}, {0x6789,12}, {0x1756c,3}, {0xa0cc,5}, {0x1dba2,5}, + {0xb061,12}, {0x44ab,5}, {0x418b,7}, {0x3a1b,9}, {0x291bd,7}, {0x79d1,10}, {0x1a6d2,6}, {0x10463,6}, + {0x8c06,3}, {0x6cb7,11}, {0x7004,7}, {0xd28a,6}, {0x2de4b,5}, {0x2d7b5,6}, {0x7117,2}, {0x3949,10}, + {0x1230a,4}, {0x11de2,4}, {0xb83d,4}, {0x28f01,7}, {0x12157,2}, {0x1ad53,9}, {0x1e08,14}, {0xcd2b,3}, + {0x11a4a,10}, {0x1f2c,6}, {0x16b6a,10}, {0x4a36,6}, {0x2eec,7}, {0x262eb,8}, {0x1f1a4,6}, {0x19679,6}, + {0x1844e,7}, {0x1d332,7}, {0x1ed7a,4}, {0x17f30,5}, {0x1a195,6}, {0x1e331,7}, {0x7001,3}, {0x1ec94,6}, + {0xad61,12}, {0x25c33,7}, {0x29392,7}, {0x3337,14}, {0x166a6,8}, {0xf26,9}, {0x35e0,4}, {0x2fc45,4}, + {0x392d,6}, {0x13ab4,10}, {0x2f612,5}, {0x1e022,9}, {0x10d17,7}, {0x765d,13}, {0x61dd,4}, {0x12155,2}, + {0x1fa0b,8}, {0x12fb0,5}, {0xfa9,3}, {0x43c9,7}, {0x1f2ff,4}, {0x7ec9,12}, {0x262d,15}, {0x28b42,4}, + {0x3bcd,7}, {0x26791,4}, {0x2146,8}, {0x2233b,8}, {0x17b70,5}, {0x19361,7}, {0x1757,12}, {0x2858,8}, + {0x4328,7}, {0xecd2,6}, {0x23c0b,8}, {0x58f6,7}, {0x2701d,7}, {0xee95,6}, {0x24bc6,2}, {0x30977,4}, + {0x1e9bb,9}, {0x1e961,4}, {0x1afae,9}, {0x2df01,4}, {0x28317,7}, {0xd3eb,6}, {0x2c59,6}, {0x1347,6}, + {0x9b85,5}, {0x15756,10}, {0x1cf1e,8}, {0x7a85,5}, {0xb9c1,8}, {0xaf4,12}, {0x164e4,10}, {0x15436,9}, + {0x23bdb,8}, {0x3080f,4}, {0x17649,4}, {0x754e,2}, {0x107e4,7}, {0xfd4c,5}, {0x1c382,7}, {0x2f18b,5}, + {0x10f8,16}, {0x1e910,9}, {0x1db30,3}, {0x11530,6}, {0x9b31,12}, {0x7119,5}, {0x4cc6,6}, {0x287a3,7}, + {0x25d53,4}, {0x15e7,10}, {0x19768,4}, {0x317be,3}, {0x22f8b,6}, {0xcdf2,5}, {0x14446,10}, {0x57b6,4}, + {0x13582,9}, {0xee74,11}, {0x1052f,5}, {0x30993,4}, {0xe5b6,4}, {0x8a70,5}, {0x130e6,8}, {0xc0bd,12}, + {0x20b81,8}, {0xd832,11}, {0x17f80,7}, {0x2d6dd,6}, {0x127f4,7}, {0xb055,12}, {0xd97c,11}, {0x41a7,8}, + {0x1ead2,8}, {0x25403,5}, {0xe5e7,10}, {0x2f07,5}, {0x22993,8}, {0x19ae7,9}, {0x111a,15}, {0x92fd,6}, + {0x17f44,6}, {0x11f30,6}, {0x1a97,4}, {0x26a43,7}, {0x18cf0,10}, {0x2b6e3,6}, {0x246f3,6}, {0x3126,3}, + {0x43f3,10}, {0x5fc4,7}, {0xf49d,3}, {0x10aa6,5}, {0xbc3d,9}, {0xb385,4}, {0x47c9,3}, {0x1aa29,9}, + {0x13f70,5}, {0x13d2a,10}, {0xe8bd,11}, {0xd131,5}, {0x30e03,4}, {0xa84b,5}, {0x12312,9}, {0x112bb,5}, + {0xd2ff,11}, {0xd643,11}, {0x132c6,9}, {0x2e70c,3}, {0x270f6,7}, {0x1a3b6,4}, {0xa749,9}, {0x6eeb,7}, + {0x4153,7}, {0x22e7b,8}, {0x11331,6}, {0x16458,10}, {0x1dbbd,9}, {0xd903,11}, {0x16f34,10}, {0x75f5,6}, + {0xe445,5}, {0x23cab,8}, {0x1037a,7}, {0x1ea6f,4}, {0x22fb3,8}, {0x4b8e,13}, {0x19964,9}, {0x5be8,7}, + {0x642a,5}, {0x101b,4}, {0xb391,5}, {0x148ec,7}, {0xb841,6}, {0x1475c,5}, {0x678f,6}, {0x5cf9,12}, + {0xac89,11}, {0xcdcc,7}, {0x227cb,8}, {0xff62,6}, {0x2f74c,2}, {0x1a132,9}, {0x165e8,9}, {0x22253,8}, + {0x25c63,8}, {0x1902e,9}, {0x2678e,7}, {0x20382,3}, {0x1a7bc,8}, {0x21bd1,5}, {0x1537,3}, {0x833d,6}, + {0x17bc0,6}, {0x202de,9}, {0xdf5f,6}, {0x1ccc3,9}, {0x2bf9b,6}, {0xf4f,4}, {0x2cf81,4}, {0x10ba,3}, + {0xa3e5,4}, {0x308d5,6}, {0x119dc,11}, {0x10075,11}, {0xedf6,5}, {0x2e8fe,3}, {0xf176,9}, {0x20c7c,5}, + {0x1722,4}, {0x2c7d,14}, {0x24fab,7}, {0x361d,7}, {0x4847,6}, {0x41ed,12}, {0x12f6a,9}, {0x2af54,7}, + {0x1fbb,6}, {0x11793,5}, {0x23823,6}, {0x2307b,8}, {0x2990a,7}, {0x2bb33,6}, {0x17bea,3}, {0x10a8a,4}, + {0x10c46,5}, {0x204e3,6}, {0xc5f3,7}, {0x7193,4}, {0x21f23,8}, {0x1a2a3,8}, {0x10c6d,5}, {0x4145,13}, + {0x18084,9}, {0x445b,3}, {0x27e8d,6}, {0x7645,3}, {0x1a288,9}, {0xe61,6}, {0x24173,8}, {0xbfc9,4}, + {0x19694,8}, {0x21781,8}, {0x29cb6,7}, {0x1af8a,9}, {0x15698,9}, {0x12d1c,6}, {0x2b7fd,6}, {0x27d1a,7}, + {0xcee4,5}, {0x15c06,10}, {0x8dc9,7}, {0x17062,5}, {0x5537,3}, {0x1f405,3}, {0x6b72,9}, {0x17934,10}, + {0x2e28,6}, {0x1e2f2,5}, {0xdd02,10}, {0x133ca,9}, {0x1ce19,9}, {0x8d81,12}, {0x3921,5}, {0x59c0,5}, + {0x24be3,4}, {0x84a5,12}, {0x2346,8}, {0x1e0ac,4}, {0x2a2e6,6}, {0x22e2b,8}, {0x28348,6}, {0xd029,8}, + {0x2e717,2}, {0x14db,3}, {0x21401,7}, {0x9525,11}, {0x8096,6}, {0x2b0a,14}, {0x2482b,8}, {0x7b30,4}, + {0x6b24,6}, {0x330d,7}, {0x13c76,9}, {0x4925,5}, {0x9de9,5}, {0x17b62,4}, {0x23743,6}, {0x1531e,10}, + {0x237d,6}, {0x1e86a,2}, {0x23023,8}, {0x1109,17}, {0x19aba,9}, {0x207a1,7}, {0x2d917,6}, {0x115db,11}, + {0x9255,10}, {0x17e2c,10}, {0x84bd,12}, {0x2f31a,4}, {0xbf91,7}, {0x1968b,5}, {0x2777,5}, {0x4631,5}, + {0xbc79,6}, {0xab99,9}, {0x74f3,4}, {0x1337,2}, {0x179c2,6}, {0x1a47,9}, {0xf68,2}, {0x27755,7}, + {0xf063,8}, {0x1c46c,7}, {0x30e41,2}, {0x20659,6}, {0x17c24,6}, {0x1ad3,6}, {0x106c6,8}, {0xbae1,7}, + {0x9c75,10}, {0x92b7,3}, {0x115e,16}, {0xf88d,11}, {0x28563,7}, {0x11e75,5}, {0x23e15,5}, {0x25323,8}, + {0x9e19,7}, {0x1ca54,9}, {0xfc76,11}, {0x8e22,5}, {0x1c877,9}, {0x24e0b,8}, {0x19a88,5}, {0x11772,10}, + {0x5047,13}, {0xa744,5}, {0x43ad,14}, {0x4c10,6}, {0x1bcef,7}, {0x50d1,5}, {0x2f5bf,3}, {0x1988c,9}, + {0x17d5a,9}, {0x192da,6}, {0x9ad1,5}, {0x7844,4}, {0x21d01,8}, {0x1fdaa,9}, {0xc95f,11}, {0xcddc,4}, + {0x1c961,9}, {0x158be,10}, {0x10e7,17}, {0x57cd,4}, {0x59fa,13}, {0x13668,10}, {0x19493,9}, {0x25ff3,8}, + {0x2a405,7}, {0x1be60,9}, {0x12ede,9}, {0x279fc,7}, {0xb409,9}, {0x4e13,5}, {0x1619c,10}, {0x207b1,8}, + {0x8531,3}, {0x17182,6}, {0x17030,3}, {0x1152b,11}, {0x1761e,6}, {0x65f6,5}, {0x2bc23,6}, {0x18232,7}, + {0x2c265,6}, {0xba99,5}, {0x17ed6,9}, {0x1f6fc,9}, {0x27086,6}, {0x1384,3}, {0xb72d,9}, {0x2c3c4,3}, + {0x16b1a,10}, {0x240d3,8}, {0x12c3,11}, {0x1e17,7}, {0x2b69b,6}, {0x2287b,8}, {0x139ec,7}, {0x2a310,4}, + {0x1143c,8}, {0xf302,7}, {0xe4a8,7}, {0x91f5,5}, {0x1ab0a,9}, {0x1478e,10}, {0xff0a,11}, {0x2d83b,4}, + {0x1ca6,2}, {0x1c463,5}, {0x1611a,10}, {0x1edcc,3}, {0xef3a,10}, {0x14bcb,5}, {0x36c5,10}, {0xdc6e,5}, + {0x7163,7}, {0xa5a5,6}, {0x1b52a,6}, {0xe424,9}, {0x10e4b,5}, {0x4788,3}, {0x8366,7}, {0x94a4,5}, + {0x2c937,6}, {0x241a3,6}, {0xd183,6}, {0x14950,5}, {0x2cbca,3}, {0x1b7cd,9}, {0x425d,8}, {0x3e27,8}, + {0x2f186,4}, {0x1ef0a,5}, {0x25873,8}, {0x11eb3,4}, {0x22503,8}, {0xe7d,4}, {0x1c9df,9}, {0x2420b,8}, + {0x1b49a,6}, {0x228eb,7}, {0x140cc,10}, {0x155f8,9}, {0x156d4,10}, {0xb325,12}, {0x2af25,2}, {0x1574c,10}, + {0x1ad77,8}, {0x2d769,2}, {0x2a620,7}, {0x1721a,6}, {0x177d6,6}, {0x29673,2}, {0x10f48,9}, {0x79bb,4}, + {0x4cff,4}, {0x243e,11}, {0x12ee8,7}, {0x1ee95,5}, {0x6ccc,3}, {0x15cba,9}, {0x92e5,9}, {0xe030,9}, + {0x23c7b,7}, {0x1a264,6}, {0x10ba1,11}, {0x50a2,8}, {0x10a89,5}, {0x16fe8,7}, {0x11e1d,7}, {0xb1d5,12}, + {0x2d5f9,6}, {0x2ae20,7}, {0x1bac1,9}, {0x3885,14}, {0x2917e,6}, {0x599f,13}, {0x227d3,8}, {0x1fdd9,3}, + {0x1c6b5,9}, {0x15652,10}, {0x128ee,10}, {0x21799,8}, {0x201f4,7}, {0x20a4,3}, {0xcf9f,6}, {0x14db,4}, + {0x1ffc6,6}, {0x26ded,7}, {0x44c5,6}, {0x168a4,10}, {0x5150,6}, {0xe9fe,5}, {0x12eb6,10}, {0x2867,14}, + {0x51b3,9}, {0x155b,4}, {0x24145,5}, {0x143ba,10}, {0x750b,5}, {0x3d39,13}, {0x1847,12}, {0x1be21,6}, + {0x17c42,10}, {0x13bae,10}, {0x28fe3,3}, {0x27406,7}, {0x7152,4}, {0xa671,5}, {0xa599,9}, {0x1d7f1,9}, + {0xf4db,11}, {0x24003,5}, {0x1f15c,5}, {0x48d9,4}, {0x14054,10}, {0x12a50,6}, {0x1f59d,9}, {0x2a150,5}, + {0x2637b,7}, {0xadcf,4}, {0x1607,16}, {0x1e30f,3}, {0x1b8a5,9}, {0xe2a,2}, {0x16a9,4}, {0x13244,10}, + {0x94b2,6}, {0x8ccd,9}, {0x4187,4}, {0x2c38d,4}, {0x4073,13}, {0x23293,8}, {0x2c391,6}, {0x288bb,6}, + {0x17e68,8}, {0xd93a,11}, {0x72d1,4}, {0x5d13,13}, {0x8631,12}, {0xa131,11}, {0x18734,5}, {0x168ae,6}, + {0x23e95,3}, {0x10889,11}, {0x2d5e7,6}, {0x11b5,3}, {0x30ce1,2}, {0xb8ad,4}, {0x10e61,9}, {0x2054e,3}, + {0x1cd14,9}, {0x182f,3}, {0x1fbd,4}, {0x2e7c4,6}, {0x10197,4}, {0x874d,4}, {0x165f2,6}, {0x116e3,5}, + {0x2058b,4}, {0x29ea,3}, {0x1535a,7}, {0x3097,7}, {0x2476d,5}, {0x13050,10}, {0x1ffee,5}, {0x3593,4}, + {0xa49d,12}, {0x31a29,4}, {0xb0fd,11}, {0x9bd3,3}, {0x46cb,9}, {0x30dbf,4}, {0x1c721,9}, {0x2ced,9}, + {0xfa3a,9}, {0x17120,3}, {0x1482e,6}, {0x16ac,3}, {0x5bc1,12}, {0x24a3b,8}, {0x1b34d,9}, {0x15b34,9}, + {0x54b7,4}, {0x20bed,4}, {0x2fa38,4}, {0x1ae61,6}, {0x23e7b,7}, {0x20385,4}, {0x18174,5}, {0xc907,10}, + {0x4489,4}, {0x6e71,13}, {0x2a65,15}, {0x2d25,13}, {0x2b863,6}, {0x1d2ab,9}, {0x97d1,7}, {0x156e8,6}, + {0x15c32,6}, {0x12bfa,10}, {0x29ed,5}, {0xdbfa,11}, {0x156ac,10}, {0x1c42d,7}, {0x1cb59,9}, {0x5d2d,7}, + {0x1ca3,3}, {0x13afa,10}, {0x31703,3}, {0x1853e,10}, {0x1597,9}, {0x5ea6,12}, {0x27d67,6}, {0x2c4c3,6}, + {0x12b5a,10}, {0x66c9,3}, {0x376d,7}, {0x2d86f,6}, {0xeead,4}, {0xeece,5}, {0x7351,5}, {0x14a5e,10}, + {0x2ab3f,7}, {0x29441,4}, {0x16d18,8}, {0x3f77,14}, {0x5faa,10}, {0x9ddd,6}, {0x3d17,6}, {0x2a64a,6}, + {0x2fb96,5}, {0x205a2,2}, {0x11414,4}, {0x2cf3f,6}, {0x1d413,8}, {0xe789,11}, {0x1fcb7,9}, {0x27660,7}, + {0x2df77,6}, {0xc8e6,6}, {0xf0d,3}, {0xffaf,10}, {0x83bc,5}, {0x70a3,4}, {0x1501,2}, {0x224db,6}, + {0x27a9d,6}, {0x6707,13}, {0x26af2,7}, {0x5a48,13}, {0x3869,10}, {0x18462,10}, {0x29ddc,4}, {0x1b464,9}, + {0x9b79,5}, {0xa35e,5}, {0x10e21,2}, {0x4c03,13}, {0x303c,7}, {0x56b3,4}, {0xf5e3,11}, {0xe524,8}, + {0x4171,3}, {0xe5e,3}, {0x17dfa,5}, {0x1f219,9}, {0x2aa1,14}, {0x2f9e3,5}, {0x3125a,3}, {0x27365,7}, + {0x25623,8}, {0xbd18,6}, {0x7532,5}, {0x30637,2}, {0x2450b,8}, {0x404e,4}, {0xa305,12}, {0x3eb3,9}, + {0x10ca9,5}, {0x10afc,5}, {0x1f42e,4}, {0x1dd1,3}, {0x1a5b2,8}, {0x14694,10}, {0x12a06,6}, {0x10b01,6}, + {0xce56,4}, {0x1ddb,15}, {0x14fc2,10}, {0x2c37,14}, {0xb00d,8}, {0x23f0f,4}, {0x1f521,7}, {0x1e580,3}, + {0x11f88,6}, {0x2a1a4,5}, {0x6ed9,13}, {0x24669,2}, {0x185d4,5}, {0xb451,10}, {0xe637,4}, {0xf00,7}, + {0x1b92,9}, {0x1353c,9}, {0x9efd,12}, {0x239d3,7}, {0x4bb5,13}, {0x1667e,7}, {0x4743,6}, {0x17ecc,10}, + {0xbded,5}, {0x2fa56,4}, {0x13146,4}, {0x2d4fd,4}, {0x17d3e,4}, {0x119e3,3}, {0x2d0e9,6}, {0x239c7,4}, + {0xd8bc,5}, {0x27993,7}, {0x206ab,5}, {0x250e5,3}, {0x253d,15}, {0x14ac2,10}, {0x20519,2}, {0x7f7d,12}, + {0x1293e,6}, {0x27ba0,6}, {0x6b24,7}, {0x394b,4}, {0x1c130,9}, {0x1622,5}, {0x25b9b,8}, {0x373a,4}, + {0x824d,7}, {0x11d7,3}, {0x55f7,12}, {0x2cae,3}, {0x2acea,7}, {0x9a7,3}, {0x16eb2,7}, {0x31b07,2}, + {0x2eb42,2}, {0x1da18,7}, {0x8409,11}, {0x12151,3}, {0x14bbc,8}, {0x3d49,11}, {0x11368,11}, {0x20400,2}, + {0x1b14,3}, {0x10c04,7}, {0x1a67,5}, {0x1968b,9}, {0x17b5c,6}, {0x87aa,7}, {0x28054,7}, {0x1498c,4}, + {0x66fd,3}, {0x18228,8}, {0x1d320,9}, {0x4adc,4}, {0x9c21,11}, {0x65f6,8}, {0x1f401,2}, {0x949d,3}, + {0x18016,10}, {0x24623,8}, {0x2895c,7}, {0x3125,4}, {0x163f4,10}, {0xfbf2,11}, {0x1396a,6}, {0x3bf7,8}, + {0x12ccc,6}, {0x20b59,7}, {0x11adb,3}, {0x29a2,4}, {0x22d6,15}, {0x2df26,3}, {0x4b08,4}, {0x59c6,13}, + {0x114d,6}, {0x8839,5}, {0x17d9,6}, {0x48db,2}, {0xbf38,4}, {0x53da,4}, {0x1eb23,5}, {0x12470,10}, + {0xbb1d,4}, {0x20a99,8}, {0x1cc02,4}, {0x2a2a0,7}, {0x1fd86,9}, {0x1b133,3}, {0x2d146,3}, {0xc30e,11}, + {0x189b2,7}, {0x293d,6}, {0xcf6e,11}, {0x6519,6}, {0xfdb,4}, {0x101c1,4}, {0x13708,10}, {0x24cc3,5}, + {0x1f58b,6}, {0xfd1,9}, {0x150d2,4}, {0x3de3,3}, {0x1097b,10}, {0x1b194,6}, {0x9ed9,11}, {0x11a3f,10}, + {0x17f00,4}, {0x977d,9}, {0x3e7b,12}, {0x3e19,13}, {0x49b1,7}, {0x1db75,6}, {0xb405,4}, {0x10c67,11}, + {0x243a3,7}, {0x26443,7}, {0x2ca1e,3}, {0x1f528,8}, {0x1402c,10}, {0x2756b,7}, {0x11d8e,5}, {0x90b3,4}, + {0x2e488,2}, {0x11b75,7}, {0x15b5c,10}, {0x6834,7}, {0xc791,11}, {0xeab7,11}, {0x118b3,11}, {0x17a76,6}, + {0xa5d5,11}, {0xcba6,11}, {0xbd19,4}, {0x262fb,8}, {0x24180,3}, {0x23b7,11}, {0x6ea5,7}, {0xffe6,11}, + {0x25fe3,8}, {0x3655,11}, {0x1e328,5}, {0x673b,12}, {0x2c139,6}, {0x24883,8}, {0xf9e8,5}, {0x24901,2}, + {0x253cb,6}, {0x6aa4,6}, {0xb9f6,3}, {0x2e22f,5}, {0x231f6,5}, {0x2d929,6}, {0xb145,11}, {0x1518e,10}, + {0x23d63,8}, {0x18ef,3}, {0x9ac5,12}, {0x15f7,6}, {0x2cddd,6}, {0x2894e,7}, {0xf8b9,11}, {0x26921,3}, + {0x2cfb7,6}, {0x1f52a,6}, {0x49be,4}, {0x6b0f,4}, {0x156ee,4}, {0x8fbc,5}, {0x28c92,4}, {0x1d47f,9}, + {0x86c1,12}, {0x18246,6}, {0x2c8f5,4}, {0xec6a,5}, {0x12f1a,6}, {0x2972e,7}, {0x60f5,5}, {0x22ba3,5}, + {0x1756a,6}, {0x27fe,11}, {0x3a53,5}, {0x39bd,8}, {0x2d1d3,6}, {0x12157,3}, {0x5e93,6}, {0x22f4,15}, + {0x4317,5}, {0x24923,8}, {0x2d62f,5}, {0x131fe,10}, {0x1c676,9}, {0x4f63,7}, {0x2019a,9}, {0x56fb,8}, + {0x2bf4d,6}, {0xe4ab,4}, {0x7a14,5}, {0x189b,12}, {0x1fd9,15}, {0x2e35,6}, {0x1b0ac,6}, {0x6721,12}, + {0xed35,8}, {0x3117,6}, {0xd0e4,11}, {0xc64b,4}, {0x2d10b,2}, {0x5bf5,7}, {0x17236,7}, {0x537a,11}, + {0x19a84,9}, {0x3e51,9}, {0x2bd25,6}, {0x7e51,11}, {0x8469,6}, {0x21311,8}, {0xf339,11}, {0xbc85,12}, + {0x1f0d9,3}, {0x1020c,8}, {0x236bb,8}, {0x23e7d,5}, {0x28f63,5}, {0x110d4,8}, {0x2b983,6}, {0x7525,13}, + {0x121e,2}, {0x1e2ec,2}, {0xd553,4}, {0x2c559,5}, {0x12fd,4}, {0x30e6b,4}, {0x22313,8}, {0x190cc,4}, + {0xd7e5,11}, {0x9b01,12}, {0x15ae4,10}, {0xa485,8}, {0x1d734,9}, {0x10a8,5}, {0x2beb1,6}, {0x24163,5}, + {0x11f93,11}, {0x1db39,4}, {0x22b73,8}, {0x2f3d8,5}, {0xaf2,5}, {0x765d,6}, {0x127e0,7}, {0x1469,8}, + {0x1885e,6}, {0x1fc81,6}, {0xc91d,11}, {0x17ab2,6}, {0x33d1,12}, {0xe571,5}, {0x7bad,4}, {0x3694,5}, + {0xc319,11}, {0xab88,3}, {0x8895,12}, {0x261cb,8}, {0x17718,10}, {0xb424,4}, {0x3b5d,9}, {0x5256,6}, + {0x19a7,7}, {0x2fb7,12}, {0x25f,3}, {0x1a912,8}, {0x83cd,11}, {0x2e061,6}, {0x2dd31,5}, {0x4aa4,13}, + {0x2ed10,5}, {0x9100,4}, {0x29d7a,7}, {0x8427,4}, {0x4dbd,10}, {0x27cfe,7}, {0xf205,5}, {0x2283b,8}, + {0x1ab32,5}, {0xca88,8}, {0x1cbf8,5}, {0x1fbdf,7}, {0xb751,6}, {0x4ce0,12}, {0x9b61,12}, {0x19020,5}, + {0x2b8bd,6}, {0x2c859,6}, {0x1e15d,6}, {0x8745,12}, {0xee8a,6}, {0x3a02,4}, {0x2fecf,5}, {0xe1a2,4}, + {0x19ed7,9}, {0x2fa58,2}, {0x24c73,5}, {0x2aee4,7}, {0x21b19,8}, {0xea6a,7}, {0x1b83,14}, {0x2231,12}, + {0x4a19,7}, {0xeacd,11}, {0x2b090,6}, {0x1b413,8}, {0x73ef,3}, {0x102b,4}, {0x2ebb9,3}, {0x1abb,5}, + {0x11a6,8}, {0xabff,4}, {0x23773,8}, {0x5cc5,11}, {0x10377,10}, {0x1e94c,3}, {0x111f6,4}, {0xcda0,6}, + {0x316fc,3}, {0x13fa0,7}, {0xf54,3}, {0x2251,5}, {0x4225,14}, {0x20661,8}, {0x30e33,4}, {0x8b4d,8}, + {0xd48,12}, {0x1e909,4}, {0x12efc,6}, {0x8edd,11}, {0xfb6e,10}, {0x30354,5}, {0x101e,3}, {0x3a0d,4}, + {0x21469,8}, {0xfb8f,11}, {0x17b0c,9}, {0x135d2,9}, {0x1ba04,9}, {0x112fa,6}, {0x1ec4e,3}, {0x97e9,10}, + {0x25733,8}, {0x96f9,12}, {0xbdb3,3}, {0xdb1e,10}, {0x16c3c,10}, {0x15904,7}, {0x1fc93,9}, {0x1cdad,6}, + {0x2df07,4}, {0xfc55,11}, {0x1a357,9}, {0x4617,3}, {0x2d4e5,6}, {0x8ce5,12}, {0x5699,7}, {0x10cbf,7}, + {0x2dd13,6}, {0x3174d,2}, {0x16c7,10}, {0x69ca,8}, {0xe752,11}, {0x60ef,13}, {0x150a8,7}, {0x12830,9}, + {0x2360b,8}, {0x4af8,3}, {0x2e20b,5}, {0x729d,5}, {0xfbf,12}, {0x3da2,7}, {0x2bd97,5}, {0x9a46,6}, + {0x28f8d,5}, {0x18b7,16}, {0x1fd9,14}, {0x124ac,5}, {0xb895,4}, {0x149b4,10}, {0x17dbe,10}, {0x1d440,8}, + {0xd782,11}, {0xab21,11}, {0x1535a,6}, {0x1e304,9}, {0xee1c,11}, {0x17cd8,10}, {0x851d,11}, {0x174b,4}, + {0x50bc,8}, {0xc400,6}, {0x9399,12}, {0x20544,2}, {0x1024e,5}, {0x5e3e,7}, {0x1918d,9}, {0x21589,7}, + {0x80f3,6}, {0xe0a3,6}, {0x3a8f,4}, {0x12777,5}, {0x2e29f,7}, {0xf0d1,11}, {0x18296,10}, {0x13870,10}, + {0x445d,2}, {0xfaac,7}, {0x12059,6}, {0x28fde,3}, {0x1e5b2,3}, {0x1d011,9}, {0x159e3,4}, {0x4e18,8}, + {0x2eb35,5}, {0x23c23,4}, {0x1cc96,6}, {0xeb88,5}, {0x21871,7}, {0x2409b,8}, {0x29437,3}, {0x5957,4}, + {0x178f,4}, {0x2212f,3}, {0xafd1,11}, {0x19cc7,6}, {0x18fcd,7}, {0x29084,5}, {0x1654b,7}, {0x21eeb,6}, + {0x8b9b,6}, {0x70a0,4}, {0xb867,4}, {0xb9f1,4}, {0x56f0,4}, {0x89fd,12}, {0x6ebf,11}, {0xcb38,11}, + {0x8f55,9}, {0x26943,4}, {0x1ffea,9}, {0x3ed9,4}, {0x1b476,9}, {0x20621,8}, {0x1cfed,9}, {0x151,3}, + {0x12b74,4}, {0x262e3,8}, {0x197f3,6}, {0xbc33,3}, {0xd74b,11}, {0x959d,6}, {0x173da,7}, {0x2bc7,8}, + {0xf8b,2}, {0x2d8e3,3}, {0x4589,4}, {0x56a9,3}, {0x12ede,10}, {0x1d10d,9}, {0x1bf9b,9}, {0x31aed,2}, + {0x1497,16}, {0x2966d,4}, {0x1648a,10}, {0x26be0,7}, {0x691c,6}, {0x300cf,3}, {0x25753,8}, {0x5912,5}, + {0x6338,13}, {0x2446d,5}, {0x1fd9d,4}, {0x2b4cc,3}, {0x1f3d2,8}, {0x7764,4}, {0x1722c,10}, {0x149f,6}, + {0x10e51,5}, {0x26e33,7}, {0x1b413,9}, {0x8230,5}, {0x56c7,13}, {0x7a25,12}, {0x12e2a,7}, {0x1469e,10}, + {0x1ff9,5}, {0x286a5,7}, {0x4287,12}, {0xb5e9,4}, {0x2c217,6}, {0xc01d,4}, {0xaaa9,12}, {0x262ab,7}, + {0x9df5,5}, {0x23a43,8}, {0x445f,2}, {0x12632,8}, {0x66b9,6}, {0x1ae07,8}, {0xa3a1,12}, {0x3cc9,14}, + {0xbe41,12}, {0x19292,9}, {0x48d9,2}, {0x124b1,5}, {0x127ea,7}, {0x222a3,8}, {0x21519,8}, {0x223cb,8}, + {0xaf29,11}, {0x1acf,10}, {0x1edc9,6}, {0x7f95,9}, {0x736b,8}, {0xeab,3}, {0x23613,8}, {0x2710b,7}, + {0x18c52,3}, {0x4d1a,7}, {0x2aaaf,3}, {0x121fa,7}, {0x15eea,6}, {0x9381,12}, {0x264b,15}, {0xbcd9,9}, + {0xb1a5,12}, {0x65dc,7}, {0x1cb8f,9}, {0x17cc4,5}, {0x2575d,6}, {0x308e9,2}, {0x1b086,9}, {0x22a7b,7}, + {0x7172,4}, {0x71a4,9}, {0x1aad4,6}, {0xaeb4,5}, {0xf6cf,6}, {0x21789,8}, {0x4b13,4}, {0x1f3fb,4}, + {0x1c351,4}, {0x1ccde,9}, {0x27f1,3}, {0x7ad9,10}, {0x111f6,7}, {0x1e4cf,9}, {0xe623,6}, {0x5e3e,9}, + {0x8445,11}, {0xda3e,3}, {0x2d10,5}, {0xede,2}, {0x1edfc,5}, {0x1df77,8}, {0x7a79,12}, {0x2dd43,6}, + {0x6127,4}, {0x18ec6,4}, {0x177cc,5}, {0x1fffc,6}, {0x11ab8,6}, {0x20380,5}, {0x403b,13}, {0x12916,9}, + {0x24beb,5}, {0x4ee8,12}, {0x24d63,4}, {0xee53,6}, {0x5d15,6}, {0xf927,11}, {0x206bd,4}, {0x1fe4,3}, + {0x3095b,4}, {0x253b3,8}, {0x1d3e6,9}, {0x15cf,8}, {0x2fe1,12}, {0x2e86e,2}, {0x22e6b,8}, {0xb3a9,4}, + {0x28947,7}, {0x11439,11}, {0x15008,6}, {0x2fa1a,5}, {0x21c71,8}, {0x1349c,10}, {0x3915,4}, {0xc4a5,8}, + {0x1fb7c,6}, {0x28c8b,7}, {0x2507d,2}, {0x1ab1,7}, {0xcf00,9}, {0x1812e,10}, {0xe6f,5}, {0x25d43,5}, + {0x4d6f,13}, {0x9ef1,12}, {0x19d93,7}, {0xade5,12}, {0xfde1,11}, {0xd798,11}, {0x24bd8,3}, {0x210b1,8}, + {0x1007,14}, {0x2fda5,3}, {0x3c21,10}, {0x1711e,6}, {0x1a43b,6}, {0x11326,8}, {0x28ebb,7}, {0x7045,13}, + {0x25ecd,6}, {0x137b,3}, {0x100dd,4}, {0x1667,16}, {0x14a0e,10}, {0x17293,4}, {0x9885,12}, {0x13195,5}, + {0x20df1,8}, {0x23ed3,6}, {0x2e1a,7}, {0x12ac4,10}, {0x15364,6}, {0x2b0b6,4}, {0x1166a,6}, {0x15daa,9}, + {0xc702,10}, {0xbf85,8}, {0x1d5c3,9}, {0x3ecf,14}, {0x5b4c,13}, {0x10cf,7}, {0x7d25,5}, {0xeb42,4}, + {0x22653,8}, {0x11a55,7}, {0x1729a,5}, {0x11e1d,10}, {0x1db87,5}, {0x2ef3,14}, {0x29942,7}, {0x158d2,10}, + {0x31cb,13}, {0x3131,7}, {0x12ab0,10}, {0xaed5,9}, {0x762b,11}, {0x2843d,7}, {0x1e7a8,6}, {0x20ea9,8}, + {0xf974,11}, {0x4edb,8}, {0x1898a,6}, {0xec90,11}, {0x225ce,5}, {0x1db3f,5}, {0x1754e,4}, {0x2b09c,6}, + {0x10a9,2}, {0x28395,7}, {0x2004d,6}, {0x2fa97,4}, {0xa3d1,5}, {0x10151,10}, {0xaa31,12}, {0x164c6,9}, + {0xd14b,2}, {0x8ead,11}, {0x15052,6}, {0x28ed7,7}, {0x24163,8}, {0x2573b,5}, {0x15eb8,10}, {0xf93d,8}, + {0x21bc1,8}, {0x26f6,6}, {0x2be09,6}, {0x1ba5e,7}, {0x2aabe,3}, {0xff7b,5}, {0xb181,11}, {0x21bd1,8}, + {0x207c9,8}, {0x237cb,7}, {0x9555,9}, {0x17fb2,10}, {0x1b58d,8}, {0x1e84c,4}, {0x2769b,4}, {0x22f23,8}, + {0x57be,12}, {0xc3a3,5}, {0x1c274,9}, {0x2c0f1,6}, {0x1cf6f,8}, {0x179d6,7}, {0x4bcf,7}, {0x254b7,3}, + {0x19679,8}, {0xd60c,11}, {0xe11d,4}, {0x5128,3}, {0x18502,10}, {0x18ec6,6}, {0x1c9fa,9}, {0x1ab13,9}, + {0x17df0,5}, {0x5527,13}, {0xc035,4}, {0x11e96,7}, {0x7941,9}, {0x14a81,4}, {0xfd4d,4}, {0x2d773,4}, + {0x1fbb,10}, {0xcf84,11}, {0x28380,6}, {0x17e72,6}, {0x3031b,4}, {0x2d638,2}, {0x8ff1,10}, {0x23953,8}, + {0x2721c,7}, {0x175ba,10}, {0x196d3,5}, {0x31a93,2}, {0x2557b,8}, {0x29895,2}, {0x1c10,4}, {0xd51a,11}, + {0x372d,4}, {0x13c58,8}, {0x1475c,6}, {0xf814,10}, {0xf5d8,11}, {0xa70d,9}, {0x2862e,7}, {0x205a4,5}, + {0x165a2,9}, {0x13b27,5}, {0xbb4f,4}, {0x2ef6f,4}, {0x1ae53,5}, {0x3071,3}, {0x214e9,8}, {0x9baf,6}, + {0x12160,3}, {0x24d5d,3}, {0x7f44,4}, {0xb7e7,6}, {0x15846,10}, {0xba2d,12}, {0xf07f,4}, {0x945f,6}, + {0x20961,8}, {0xbc0d,12}, {0x28f47,7}, {0xaa55,12}, {0x10ca9,4}, {0x8af9,11}, {0x24c43,8}, {0x337d,6}, + {0x2d10,7}, {0x287f0,7}, {0x20b71,8}, {0x52b7,13}, {0x2f2fc,4}, {0x61cc,10}, {0x17132,10}, {0xbb4d,5}, + {0x1b7f,3}, {0x587d,4}, {0x226d3,8}, {0xbba1,5}, {0x1cf3,6}, {0x14496,10}, {0x5611,7}, {0x11208,5}, + {0x24beb,4}, {0x30a63,4}, {0x10b37,7}, {0x2871e,6}, {0x1dec5,6}, {0x6db6,5}, {0xb949,12}, {0x8b89,8}, + {0xd9f5,8}, {0x1047f,11}, {0x9393,6}, {0x147ca,10}, {0x4781,4}, {0x12a34,4}, {0x171be,10}, {0x1685e,7}, + {0x30841,4}, {0x171fa,7}, {0xc78c,5}, {0x3c8b,3}, {0x2a14b,4}, {0x2595b,7}, {0x8a75,10}, {0x1ecb,15}, + {0x289fd,7}, {0x7573,5}, {0x8211,9}, {0x1376c,10}, {0x242cb,7}, {0x2b7a9,6}, {0x1364f,5}, {0x5903,6}, + {0x3aa7,14}, {0x9533,5}, {0x1144,2}, {0x185de,9}, {0xf70f,4}, {0xfd94,8}, {0x1dec3,9}, {0x62ed,4}, + {0x21349,8}, {0x353f,5}, {0x2a2a7,7}, {0xd6cc,3}, {0x1893,4}, {0x18426,5}, {0x6880,13}, {0x225c3,8}, + {0x213d1,8}, {0x54b6,5}, {0x1f045,9}, {0x2cf69,6}, {0x1027a,7}, {0x16818,10}, {0x1cc96,7}, {0xa011,6}, + {0x2995,2}, {0x3e43,13}, {0xdd4f,4}, {0x14784,10}, {0xe03b,11}, {0x1dca7,4}, {0x795f,3}, {0x2c1d5,6}, + {0x2c547,6}, {0x184d2,8}, {0x19473,5}, {0x6040,5}, {0x1e4f3,8}, {0x2964e,7}, {0x141bc,10}, {0x2c2d1,6}, + {0x48a7,14}, {0x2a38,10}, {0x3bcd,14}, {0x9b01,6}, {0xdd2e,10}, {0xf289,11}, {0x260f7,2}, {0x1ea8a,6}, + {0x13988,10}, {0x297ed,4}, {0x1599a,10}, {0x296da,7}, {0x10c7,4}, {0xe3d,10}, {0x19b4a,8}, {0x159d6,10}, + {0x1ba7,6}, {0x1c4c6,9}, {0x29bd1,4}, {0x9579,9}, {0x2f36f,5}, {0x13a96,10}, {0x1333e,7}, {0x20ff1,8}, + {0x257c3,8}, {0x3fe0,4}, {0x11a1e,8}, {0xa4b5,12}, {0xb9a9,5}, {0x2c93,6}, {0x1aea0,9}, {0x6e8f,5}, + {0x20f6,13}, {0x1b5d,8}, {0x1579c,10}, {0x2eaea,4}, {0x1126b,9}, {0x1b6ec,9}, {0x1a8d3,9}, {0x3940,5}, + {0x86bb,6}, {0x21739,8}, {0x1ea27,9}, {0x2c7e7,6}, {0x2774e,7}, {0x1d719,9}, {0x13e3f,3}, {0x2047c,5}, + {0x16340,7}, {0x3371,5}, {0x1625a,9}, {0xf97,4}, {0x2696,7}, {0x2f63,14}, {0x8619,12}, {0x24d03,8}, + {0xe97,5}, {0x71b1,6}, {0x1706a,10}, {0x1f006,6}, {0x1600c,6}, {0x6eea,3}, {0xc8db,10}, {0x31b16,2}, + {0x2d326,2}, {0x1293e,9}, {0x26a20,7}, {0xb8c5,8}, {0xd18,24}, {0x23ec3,8}, {0x7b2f,5}, {0x3b37,10}, + {0x20269,5}, {0x27874,7}, {0xc894,5}, {0x112a2,5}, {0x2d545,6}, {0x1c6e2,9}, {0x6497,7}, {0x6526,11}, + {0x8bd1,12}, {0x2df89,6}, {0x1e74,2}, {0x26909,3}, {0xc5e4,8}, {0x64a7,5}, {0x1badc,9}, {0x2a5cc,4}, + {0x6470,13}, {0x22903,7}, {0x2df7d,6}, {0x2489,15}, {0x2b84,6}, {0x24cc6,3}, {0x164a2,6}, {0x12a1,13}, + {0x1efff,3}, {0xacf5,12}, {0xb843,3}, {0x2debd,6}, {0xdd39,9}, {0x230db,7}, {0x10243,7}, {0xadbc,5}, + {0x17d6e,7}, {0x1e06e,5}, {0x1844e,5}, {0x2af93,7}, {0xb958,6}, {0x2141,13}, {0x9f45,9}, {0xe149,5}, + {0x6008,4}, {0x3d47,10}, {0x1a2fd,8}, {0x1fc81,9}, {0x52f8,11}, {0x1163e,6}, {0x23d73,6}, {0x1dfd,3}, + {0x2f7db,4}, {0x1960d,6}, {0x7f45,5}, {0x11850,9}, {0xbd9b,3}, {0xebbf,11}, {0x2a299,7}, {0x2c1ab,6}, + {0x1c0a,12}, {0x1ea71,2}, {0xcbe,2}, {0x1cee8,9}, {0x24d93,8}, {0x2238b,8}, {0x11005,5}, {0x1de9f,6}, + {0x1e1db,9}, {0x2c343,6}, {0x22e53,7}, {0x23dae,3}, {0x6c42,5}, {0x24e6b,8}, {0x8b7d,12}, {0x1ccd,7}, + {0x2dcdd,4}, {0x1c8f5,7}, {0x1533c,7}, {0x316f9,3}, {0x1bf89,8}, {0x1f2e8,7}, {0x77bc,5}, {0x215b1,5}, + {0x27b3,14}, {0x1133c,6}, {0x20e11,8}, {0x286c8,6}, {0x23643,8}, {0x2c847,6}, {0x42ee,3}, {0x2bf17,6}, + {0x29ccf,3}, {0x11ef0,3}, {0x1dfbf,6}, {0x31b0b,2}, {0x11268,3}, {0x262d3,8}, {0x56c7,6}, {0x2b7af,6}, + {0x28e4b,6}, {0xd8b6,10}, {0x2cdf,5}, {0x17661,3}, {0x3196,3}, {0x4757,7}, {0x23c6b,8}, {0x1cf27,6}, + {0xc7d3,8}, {0x3337,12}, {0x11c77,4}, {0x10ebb,6}, {0xf3f0,4}, {0x36b7,14}, {0x4baf,6}, {0x1381,4}, + {0x2ba01,6}, {0x22613,8}, {0x117c1,7}, {0xe487,9}, {0x3ac3,8}, {0xa04d,7}, {0x182be,7}, {0x2a82d,7}, + {0x176e6,9}, {0x12cae,10}, {0x1c14b,8}, {0x343a,6}, {0x1414e,10}, {0x1a678,9}, {0x113e1,8}, {0xda63,11}, + {0x18bb0,10}, {0x1c718,8}, {0x1ba4c,6}, {0xc023,5}, {0x73d6,3}, {0x31191,6}, {0x19ece,9}, {0x594c,5}, + {0x30800,3}, {0x14dba,6}, {0x10b49,5}, {0x11e54,7}, {0x8a39,12}, {0xe726,11}, {0x2ddb5,6}, {0xe542,11}, + {0x3144a,2}, {0xf6a4,5}, {0x1587,11}, {0x772d,12}, {0x2809a,7}, {0x1cbe,15}, {0x1016f,3}, {0x1e8ad,9}, + {0x23ce5,5}, {0x1d98f,6}, {0x2d935,6}, {0x4f29,8}, {0x15648,9}, {0x2f598,2}, {0x4e59,13}, {0x94ad,11}, + {0x1635e,10}, {0x1ef1c,6}, {0x17f3a,9}, {0x299d0,6}, {0x127c2,9}, {0xe143,11}, {0x1c838,6}, {0x4eb1,3}, + {0x4e3c,3}, {0x13b9a,10}, {0x1d425,6}, {0x29c0,14}, {0x1aadd,5}, {0x20be1,8}, {0xa161,12}, {0x302df,5}, + {0x2cadd,6}, {0x1e4fc,5}, {0x1df89,8}, {0x18ae8,6}, {0x15d50,10}, {0x1d452,9}, {0x15df2,7}, {0x12ea4,5}, + {0x73ed,8}, {0x1aff6,9}, {0x2dbd5,6}, {0x7b15,11}, {0x1ac7,8}, {0x568c,7}, {0x9296,7}, {0x466b,5}, + {0xec4e,7}, {0x201a3,6}, {0x2efdb,2}, {0x5aa3,13}, {0x1f3f6,5}, {0x1f570,5}, {0x1a264,8}, {0xfbb8,2}, + {0xa509,7}, {0x2997f,4}, {0x28c1,6}, {0x2417,6}, {0x1f1bf,6}, {0x8e7d,10}, {0x2eea7,2}, {0x43c0,4}, + {0xa215,7}, {0x10b8b,10}, {0x58cf,5}, {0x2e978,3}, {0x19b0b,9}, {0x27a34,6}, {0xa6ad,12}, {0x12506,9}, + {0x1edab,9}, {0x1d10,4}, {0x2412d,4}, {0x478f,6}, {0x1745c,6}, {0x176a0,7}, {0x15c4c,10}, {0xb5b9,8}, + {0x16ed0,10}, {0x1328a,9}, {0x14130,10}, {0x25a65,5}, {0x11b96,5}, {0xfc97,11}, {0xdd65,4}, {0x12017,8}, + {0x14608,10}, {0x48ef,2}, {0x2c5ad,6}, {0x741a,7}, {0x3176e,3}, {0x2afa8,4}, {0x1f91,4}, {0x20389,4}, + {0x2b46,5}, {0xe36f,4}, {0x29751,6}, {0x29185,7}, {0x25d33,5}, {0x1e96c,3}, {0x77c9,6}, {0x2e8fc,5}, + {0x61d9,12}, {0x9f81,12}, {0x1b3dd,9}, {0x9593,4}, {0x129a2,10}, {0x98a2,7}, {0x68f5,10}, {0xb74,5}, + {0x7498,4}, {0x14db0,10}, {0x2ddb,14}, {0x27e8,4}, {0x2716,7}, {0x2d13d,5}, {0x1bfda,9}, {0x72e2,7}, + {0x71c6,5}, {0x1e985,9}, {0x3479,12}, {0x8d3f,6}, {0x170ec,5}, {0x21529,8}, {0x13233,7}, {0x1ca18,4}, + {0x1bbf,9}, {0xd218,8}, {0x10387,5}, {0x65e9,4}, {0x15d0a,10}, {0x24e5,3}, {0x2dd49,6}, {0x4dca,11}, + {0x1231e,3}, {0x33b5,4}, {0x17d46,8}, {0xdcaa,11}, {0x2a8d5,7}, {0x1c907,7}, {0x17eb8,5}, {0xc015,5}, + {0x18b1,5}, {0x1872a,3}, {0x2a017,3}, {0xa209,12}, {0x2f6fa,5}, {0xf17,2}, {0x17cc9,5}, {0x10188,8}, + {0x200c2,5}, {0x1298,8}, {0x20c41,7}, {0x2cdf,6}, {0x20561,2}, {0x27502,7}, {0x1edc6,9}, {0x88e9,12}, + {0x2b563,6}, {0x395d,6}, {0x13474,5}, {0x1aedf,9}, {0x2e67,14}, {0x2171,3}, {0xdf54,9}, {0x1ff1b,5}, + {0x28571,7}, {0x5994,4}, {0x28ca2,2}, {0x2eeaa,4}, {0x50af,13}, {0x11502,4}, {0x34a3,5}, {0x1af61,5}, + {0x248ce,5}, {0x1db33,3}, {0x1487,11}, {0x39a3,4}, {0xac7d,6}, {0xc14,4}, {0xe16f,11}, {0x7911,7}, + {0xdf07,11}, {0x1388e,10}, {0x1f7e6,8}, {0x207c1,7}, {0x1032a,10}, {0x2716d,7}, {0x1807,15}, {0x111f2,11}, + {0x18a84,6}, {0x12f8,4}, {0x1919,5}, {0x11b8b,3}, {0x26dd1,7}, {0x19628,6}, {0xf44c,11}, {0x19d97,5}, + {0x1e556,6}, {0x29314,5}, {0xce92,11}, {0xf0bb,11}, {0x3aed,13}, {0x15413,5}, {0x2ed0b,4}, {0x4971,8}, + {0x17b94,4}, {0xc171,5}, {0x75db,5}, {0x9309,10}, {0x2f586,4}, {0x1b4c7,8}, {0x1533c,10}, {0x1251,2}, + {0x2833,7}, {0x2ced,12}, {0x317b2,4}, {0xb331,7}, {0x16fea,4}, {0x1145a,11}, {0xce24,11}, {0x260f,15}, + {0x1a909,6}, {0x26435,2}, {0x1d21e,6}, {0x7ef9,7}, {0x158b4,10}, {0x4693,7}, {0x1bf53,9}, {0x1461c,7}, + {0x1941,3}, {0x29066,7}, {0xd551,6}, {0x6393,8}, {0x1b9c,5}, {0x12320,5}, {0x7f59,8}, {0x5903,7}, + {0x1179e,5}, {0x7629,13}, {0x2d971,5}, {0x156d,3}, {0x23c33,7}, {0x3b33,14}, {0xcee3,6}, {0x24e5b,8}, + {0xfca,2}, {0x1379e,10}, {0x27d2f,7}, {0x16d18,9}, {0x2bda3,5}, {0x2503,3}, {0xf49,6}, {0x9a65,12}, + {0x1c28,6}, {0x197cf,8}, {0x1a5df,9}, {0x9e01,11}, {0xf9d7,10}, {0x29dd5,4}, {0x28ef5,5}, {0x23c9b,8}, + {0x11fab,3}, {0x21d39,8}, {0x283fa,4}, {0x1b66e,9}, {0x18516,10}, {0x2a74d,7}, {0x122ba,4}, {0x1b7a2,6}, + {0x2b4ec,6}, {0x12268,10}, {0x4dcf,6}, {0x7860,4}, {0x1b8f6,9}, {0x2c2bf,6}, {0x15116,5}, {0x1ad26,9}, + {0x185fc,5}, {0x48d8,5}, {0x1d54e,5}, {0x7086,10}, {0x2991a,3}, {0xb8d1,7}, {0x16e80,9}, {0x136b,5}, + {0x2892b,7}, {0x16002,10}, {0xfa66,10}, {0x1cc06,9}, {0x1378a,9}, {0xa1a0,8}, {0x20bc1,8}, {0x16a9,3}, + {0x11357,6}, {0x10ee1,4}, {0x244d,10}, {0x24d3b,8}, {0xd4ac,11}, {0x259ab,6}, {0x70a0,8}, {0x10e4b,11}, + {0x2487b,7}, {0x158dc,9}, {0x114de,4}, {0x1fc78,6}, {0x2a5e1,7}, {0x42cd,13}, {0x112ef,6}, {0x9faa,7}, + {0x1aaa7,9}, {0x168cc,6}, {0x2693f,2}, {0x1367,6}, {0x1e2e2,2}, {0x35e5,14}, {0x5568,13}, {0x228cd,6}, + {0x2000e,6}, {0x294f7,6}, {0x19149,5}, {0x27f8,3}, {0x1c18a,9}, {0xbbfc,5}, {0x159c2,5}, {0x2bcfb,5}, + {0x1e2ef,3}, {0x61f3,13}, {0x178b2,7}, {0x2d92f,6}, {0x313f,13}, {0x276fa,7}, {0x28505,3}, {0x2b77,4}, + {0x1be21,8}, {0x11515,4}, {0x27396,7}, {0xe62c,4}, {0x2960f,6}, {0x1503a,7}, {0x18fc7,3}, {0x1bf80,9}, + {0x25193,5}, {0x15c2e,10}, {0x153c8,10}, {0xfc03,5}, {0xb424,7}, {0x2faa1,4}, {0x109f4,11}, {0x2cbee,3}, + {0x1356e,8}, {0x1b8a5,6}, {0x8101,3}, {0xb37c,5}, {0x4bf0,6}, {0xc9c2,11}, {0x1c922,9}, {0x101d5,11}, + {0xaf29,12}, {0xd4b1,6}, {0xc4a0,5}, {0x7ac1,6}, {0x2d24b,5}, {0x1e7ac,5}, {0x1ab8c,5}, {0x195f2,9}, + {0x1c841,9}, {0xe98e,11}, {0x1ae7,3}, {0x16cfa,6}, {0x2af5b,7}, {0x18220,3}, {0x10b8b,8}, {0x1afdb,9}, + {0x2db15,4}, {0xf8e5,11}, {0x11684,4}, {0x25f8,4}, {0xa179,8}, {0x15692,6}, {0x3dc5,7}, {0x1007,10}, + {0xec80,5}, {0x17ce2,9}, {0x10c3b,6}, {0x17c6a,9}, {0x6d07,3}, {0x1e3e7,7}, {0xbac9,9}, {0x11cc4,4}, + {0xb13d,8}, {0x3fe7,14}, {0x76c5,10}, {0x16edf,5}, {0x2bc95,5}, {0xbccd,8}, {0x2f6a5,5}, {0x1e2f,3}, + {0x242b3,8}, {0x8abd,11}, {0x5638,7}, {0x17a1c,10}, {0x176a0,10}, {0x1d54,11}, {0x29977,4}, {0x105f5,11}, + {0xdb1e,6}, {0xae19,4}, {0x39ff,5}, {0x1d46d,7}, {0x613d,12}, {0x5b3f,13}, {0x773a,7}, {0x5ee7,8}, + {0x210a4,5}, {0x209d1,8}, {0x2b55d,6}, {0x713f,5}, {0x956d,6}, {0x216c9,8}, {0x2d245,5}, {0x736b,13}, + {0x2c8cb,4}, {0x4391,13}, {0x29bc8,6}, {0x3100b,6}, {0x18fc5,6}, {0x7e09,8}, {0x2423b,8}, {0x11e4b,3}, + {0x2c6cd,6}, {0x108b5,9}, {0x2cdcb,5}, {0x1c84,4}, {0x1ef8,14}, {0xfef,3}, {0x25643,8}, {0x10e51,4}, + {0xb901,9}, {0x297d6,7}, {0x202ba,9}, {0x24c0b,8}, {0x83a9,9}, {0x1e718,5}, {0x19fe5,8}, {0x16ebc,10}, + {0x2a069,7}, {0x75db,6}, {0x14df6,10}, {0x26994,6}, {0x2590b,8}, {0x13f46,8}, {0x2c1ed,6}, {0x1a747,9}, + {0x101ca,11}, {0x27587,6}, {0xca79,4}, {0x1efbe,6}, {0x818f,6}, {0x1eea3,3}, {0x111c8,5}, {0x1b5f9,5}, + {0x20391,3}, {0x2e229,5}, {0x13b72,9}, {0x72fc,4}, {0x1aed,15}, {0x1a9c9,6}, {0x27d05,6}, {0x884d,7}, + {0x276ad,6}, {0x16826,5}, {0xc597,6}, {0x1f2d6,6}, {0x1637c,10}, {0x10448,11}, {0x2df0d,4}, {0xb7b8,5}, + {0x14934,4}, {0x120d2,11}, {0x163da,6}, {0x9a7d,6}, {0x7385,9}, {0x20619,8}, {0x1bed5,9}, {0xbbb5,4}, + {0x312b6,3}, {0xd5e0,11}, {0x2501,6}, {0x98cd,12}, {0x2cf83,2}, {0x5464,12}, {0x2f275,5}, {0x1131,8}, + {0x240fb,8}, {0x36ce,5}, {0x1f0a8,9}, {0x15c7,6}, {0x229fb,8}, {0x1afc0,9}, {0x221db,8}, {0x1b7fa,9}, + {0x1b8d5,6}, {0x1c7e,3}, {0x4e94,6}, {0x677c,13}, {0x14cec,5}, {0x19c81,4}, {0xb7ad,4}, {0x13910,9}, + {0x11234,6}, {0x18cb4,5}, {0x11b,3}, {0x14e78,9}, {0x1191,8}, {0x168ae,9}, {0xcb2d,11}, {0xb7e1,12}, + {0x2bddf,6}, {0xcd2,3}, {0x2328b,8}, {0x173ee,7}, {0xd41d,11}, {0x5f28,8}, {0x21869,7}, {0xb7bd,8}, + {0x7a49,5}, {0x2cdf,4}, {0x25e13,7}, {0x1e62,15}, {0x88b9,9}, {0x20391,8}, {0xe521,11}, {0x144dc,10}, + {0x1c223,9}, {0x68f5,13}, {0xe6f6,4}, {0x18a5c,10}, {0x27d7c,6}, {0x2c6ca,3}, {0x1f3c9,6}, {0x986d,12}, + {0x1f4e6,3}, {0x2c87d,6}, {0x16052,6}, {0x8ab6,7}, {0x20ab9,8}, {0x1a93f,6}, {0x14450,10}, {0x1c1c0,9}, + {0x271f2,7}, {0x107b8,10}, {0x20649,8}, {0x7747,13}, {0x1ff6e,3}, {0x2cda3,2}, {0x253eb,7}, {0x128b,3}, + {0x141ad,5}, {0x1765a,4}, {0xfe0,3}, {0x10889,10}, {0x2ac11,6}, {0x30e9f,4}, {0x28d4a,5}, {0xf554,11}, + {0x1f3ae,6}, {0xc045,5}, {0x77b2,5}, {0x299d0,5}, {0x30af7,4}, {0xae33,6}, {0x117ca,4}, {0x24873,8}, + {0x9819,12}, {0x2afb8,4}, {0x4142,3}, {0xac59,12}, {0xaebd,6}, {0x1c0a9,9}, {0x2a436,5}, {0x16f3e,9}, + {0xe74,2}, {0x1b6e3,8}, {0x5b66,13}, {0x14856,6}, {0x7bab,6}, {0x48c9,7}, {0x129a2,6}, {0x19748,9}, + {0x12790,6}, {0xcb43,11}, {0x17d14,10}, {0xe670,6}, {0x2df95,6}, {0x57b6,8}, {0x15350,10}, {0x27c02,7}, + {0xeef8,11}, {0x2c7b1,6}, {0x1a5fa,9}, {0x15774,6}, {0x56fb,13}, {0x1392,4}, {0x20af1,7}, {0x222fb,7}, + {0x1ada4,8}, {0x1c3c1,9}, {0x143ec,10}, {0x30f63,4}, {0x82bb,4}, {0x17669,2}, {0x2523b,5}, {0x2df8f,6}, + {0x1436a,10}, {0x2de47,3}, {0xb4f0,5}, {0x53e2,13}, {0x296e8,6}, {0x513e,8}, {0x11d15,6}, {0x17c56,10}, + {0xb271,10}, {0x24a2b,8}, {0x1e178,9}, {0x7d36,4}, {0x2ba4f,4}, {0x18ebc,5}, {0x30e93,4}, {0xde78,11}, + {0x118be,5}, {0x1b059,7}, {0xbc79,5}, {0x6449,12}, {0x1ea71,3}, {0x18284,4}, {0x21c59,6}, {0x2c493,4}, + {0x1c360,5}, {0x1805e,2}, {0x4615,14}, {0x27db4,7}, {0x1edfc,6}, {0x5693,7}, {0x5c95,3}, {0x361d,9}, + {0x11c91,6}, {0x1a6c9,9}, {0x1151,3}, {0x1c58c,9}, {0x22b83,5}, {0x29ff2,7}, {0xb39d,8}, {0x17a30,5}, + {0x7764,6}, {0x254e3,5}, {0x30877,4}, {0xda48,4}, {0x19025,9}, {0x2ca15,5}, {0x1001d,11}, {0x29a94,7}, + {0x229cb,8}, {0x9891,10}, {0x202cc,9}, {0x119b2,3}, {0x1b56,15}, {0x1f3db,9}, {0x249f3,8}, {0x2b50b,4}, + {0x92af,6}, {0x3faf,13}, {0xadf1,8}, {0x2df83,6}, {0x550f,3}, {0xfaf5,11}, {0x266a3,8}, {0x268b5,4}, + {0xa539,11}, {0x1a5cd,8}, {0x2f509,5}, {0x1742,5}, {0x27215,7}, {0xe31c,11}, {0x2024,14}, {0x2a3ad,4}, + {0x28a66,7}, {0xbb35,6}, {0x1465d,5}, {0x1358c,10}, {0x235bb,7}, {0x3c2f,13}, {0x647f,6}, {0x3b79,9}, + {0x4a4e,3}, {0xeb58,4}, {0x1fa53,9}, {0x50cd,6}, {0x3eb3,12}, {0x1b059,8}, {0x177ea,6}, {0x8b54,5}, + {0xf7,3}, {0x2a7eb,3}, {0xfa92,11}, {0x5cab,12}, {0x6200,13}, {0x6136,4}, {0x1d986,4}, {0x14d10,10}, + {0x2f06e,5}, {0x2517,8}, {0x30a25,2}, {0x29f27,7}, {0x2a5f6,4}, {0x2261b,8}, {0x710a,3}, {0x1aaef,5}, + {0x14edf,4}, {0x1f9c3,9}, {0xdc10,11}, {0xad0d,12}, {0x1a78f,4}, {0x8aa5,12}, {0x169f8,10}, {0x1f39c,9}, + {0x16360,5}, {0x3457,6}, {0x1594,3}, {0xb1c9,12}, {0x13d98,10}, {0x11793,6}, {0x17120,4}, {0x1038d,7}, + {0x3117,3}, {0x2466,3}, {0x10a15,8}, {0xa893,6}, {0x233b3,8}, {0xc72e,10}, {0x5756,12}, {0x93a5,7}, + {0x28b7d,4}, {0x268b4,2}, {0x38b4,3}, {0x18dd6,7}, {0x24d13,8}, {0x139ba,10}, {0x37ba,7}, {0x9cbd,7}, + {0x20444,5}, {0x1a2ba,4}, {0x17222,6}, {0x2af56,5}, {0x2f8d5,4}, {0x7518,6}, {0x103ae,9}, {0x17346,4}, + {0x191f0,8}, {0x25bdb,8}, {0xd0be,5}, {0xd412,11}, {0x22de3,8}, {0x43e5,14}, {0x2dc25,4}, {0x28276,7}, + {0x219d1,8}, {0x1bfe3,9}, {0x307f3,4}, {0x643c,12}, {0x22843,7}, {0x27e43,4}, {0x4cc2,4}, {0x116af,6}, + {0x30a99,2}, {0x8859,12}, {0x1c475,6}, {0xdcaa,9}, {0xec6f,9}, {0x1ac0,15}, {0x1d815,9}, {0x1131d,5}, + {0x2ade8,7}, {0x6bad,6}, {0x589f,4}, {0x2c325,6}, {0x12fe,4}, {0x2de51,5}, {0x10da,2}, {0x116d8,6}, + {0x2807e,7}, {0x100b7,9}, {0x19a0f,9}, {0x21b89,8}, {0x1b4a3,6}, {0x1a8af,9}, {0x227de,5}, {0x25a63,7}, + {0x2460b,8}, {0x15398,3}, {0x3345,14}, {0xc1d1,5}, {0x4d6f,12}, {0xb45d,11}, {0x1699e,9}, {0x1ac8d,9}, + {0x11ec4,3}, {0x1708e,4}, {0x1740c,7}, {0x38eb,3}, {0x10458,6}, {0xaa0d,10}, {0x288f3,7}, {0x2c919,6}, + {0x220ab,8}, {0x17314,3}, {0x14112,7}, {0x24fcb,6}, {0x9f75,8}, {0x1dd7f,7}, {0x2507b,4}, {0x25673,6}, + {0x1daca,8}, {0xe7d,6}, {0x16d62,6}, {0x29f51,7}, {0x16674,6}, {0x2fba5,4}, {0x10afc,6}, {0xf2c0,9}, + {0x17088,6}, {0x200a7,5}, {0x248cb,8}, {0x1b031,4}, {0x24193,8}, {0x170a6,6}, {0xc6ae,6}, {0xff7b,4}, + {0x6aaf,8}, {0x134ce,10}, {0x319d5,4}, {0xed4b,11}, {0x1cde3,9}, {0xa3ad,12}, {0x1e6d0,9}, {0x252a3,8}, + {0xe1bc,8}, {0x9795,12}, {0x2af69,5}, {0x293d,3}, {0x287f7,7}, {0x162fa,10}, {0x1133e,3}, {0x1b047,9}, + {0x17a58,10}, {0x15828,10}, {0x53c8,13}, {0xc93e,11}, {0x2e235,5}, {0xeb8d,4}, {0x69f9,12}, {0x2ce0d,6}, + {0x2be9f,6}, {0x2d821,6}, {0x4a08,13}, {0xf512,10}, {0xccb,6}, {0x1e8b6,9}, {0x1e601,9}, {0x13d98,9}, + {0x151fe,8}, {0x6a3a,10}, {0x30bb7,4}, {0x17af8,5}, {0x30c8b,4}, {0x238ab,8}, {0x2bdfd,6}, {0xdb13,11}, + {0x18c20,3}, {0x57cb,12}, {0x2dec3,6}, {0x4d35,5}, {0xcc91,4}, {0x27ccd,6}, {0x28ae4,7}, {0x223d3,7}, + {0x28421,7}, {0x2d843,2}, {0x138b,7}, {0x2d4c1,6}, {0x1c718,9}, {0x1a087,9}, {0x239c3,8}, {0x17e38,4}, + {0xc1ad,7}, {0x2d527,5}, {0x10bf9,4}, {0x238a,5}, {0x16b2e,10}, {0x93e1,6}, {0x12baa,7}, {0x302b2,5}, + {0x24f2d,5}, {0x313f9,3}, {0x1403c,4}, {0x2e335,2}, {0x3cf3,14}, {0xab75,12}, {0xaec9,10}, {0x578c,3}, + {0x161d8,10}, {0x1921d,6}, {0xe235,11}, {0x2fc18,5}, {0x112b8,8}, {0xe12,3}, {0xdc9f,11}, {0x263bb,6}, + {0xa0d6,7}, {0x1290,7}, {0xcc6c,7}, {0x24d56,5}, {0x15f94,9}, {0x15bff,7}, {0x1eb6,6}, {0x29bfd,3}, + {0x1bc32,9}, {0x1aefa,6}, {0x27476,7}, {0x1342e,10}, {0x15058,7}, {0x60fc,11}, {0x2f835,4}, {0x1da43,6}, + {0xe68c,11}, {0x15df5,5}, {0x2f781,4}, {0xa19d,11}, {0x168c2,10}, {0x12498,9}, {0xe020,5}, {0xf932,10}, + {0x19eb7,4}, {0x1f074,7}, {0x4a6a,6}, {0x10b6c,3}, {0x6dd5,12}, {0x28875,6}, {0x62ea,9}, {0xd227,4}, + {0x821f,5}, {0x27f20,7}, {0x1fa34,4}, {0x9861,12}, {0x80e5,12}, {0xae51,12}, {0xaa9d,12}, {0x6b8f,4}, + {0x1f2a,8}, {0x1cb3e,6}, {0x5330,2}, {0x4571,6}, {0x28b65,7}, {0x64f2,13}, {0x8469,10}, {0xadc1,12}, + {0x206a9,8}, {0x488d,3}, {0x28478,4}, {0x31729,2}, {0x2034e,5}, {0x1e3b,7}, {0x9b25,9}, {0xbec5,6}, + {0x1b52a,8}, {0x29b5f,7}, {0x15814,10}, {0x333a,3}, {0x1c550,5}, {0x26cc0,7}, {0x10965,11}, {0x245f3,5}, + {0x1a92d,9}, {0x1c9d6,6}, {0x1766e,10}, {0xd914,4}, {0x848d,8}, {0x9872,7}, {0x122a,8}, {0x1491e,9}, + {0x1ee68,6}, {0x1fd98,9}, {0x69c5,13}, {0x2b46,8}, {0xb8ad,5}, {0x4b40,13}, {0x2e718,3}, {0x6fff,5}, + {0x11c23,10}, {0x5c50,7}, {0x9645,8}, {0x14afe,8}, {0x1e868,2}, {0x9a9a,5}, {0x63e4,4}, {0x1539,4}, + {0x17d52,7}, {0x1afb7,8}, {0x2cab9,6}, {0x2ffd,7}, {0x18c1,6}, {0x2bead,4}, {0x6f41,8}, {0xaaeb,6}, + {0x85b2,7}, {0x27d1,6}, {0x10fc1,8}, {0x1c7ba,9}, {0x2a3fe,5}, {0x9fbd,12}, {0x2afb,14}, {0x1379,3}, + {0x2a56,15}, {0xe54d,11}, {0x4da9,7}, {0x194d2,8}, {0x102a1,2}, {0xe768,8}, {0x12722,7}, {0x212a9,7}, + {0xf7a6,11}, {0x1d74,4}, {0xbf55,8}, {0x2a42f,7}, {0xcaca,6}, {0xd735,11}, {0x1dae,6}, {0x4cff,6}, + {0x79e4,5}, {0x328f,14}, {0x2b84,3}, {0x2bd07,6}, {0x12528,6}, {0x43bb,13}, {0x9c2d,5}, {0x2588d,4}, + {0x17f4e,7}, {0x22875,6}, {0x2b012,6}, {0x6c45,4}, {0x29b5a,5}, {0xd7b9,11}, {0x1f717,5}, {0xab5d,8}, + {0x2396b,8}, {0xc281,6}, {0xf11,4}, {0x2ac73,7}, {0x2ef60,5}, {0x131bc,6}, {0x1ab91,9}, {0x2114,10}, + {0x3d1d,14}, {0x145e,7}, {0x113d6,6}, {0x1db2d,6}, {0x72f6,13}, {0x13ae8,7}, {0xb151,12}, {0xbff1,6}, + {0x2edc4,4}, {0x1317,4}, {0x134e7,5}, {0x8e22,3}, {0x26f7c,7}, {0x21ca9,8}, {0xf7bc,11}, {0x837d,4}, + {0x2e794,4}, {0x28c61,7}, {0x2df13,4}, {0x1223,2}, {0x1cc60,9}, {0x7525,4}, {0x22eeb,8}, {0x11a6,11}, + {0x25d43,8}, {0x18c55,5}, {0xe159,11}, {0xd659,11}, {0x11423,11}, {0x242a3,5}, {0x27ef6,7}, {0x2e253,5}, + {0x205bb,3}, {0xfde,4}, {0x658e,13}, {0x4cd3,13}, {0x2b9,3}, {0x2cc8d,4}, {0x5ddd,6}, {0xd869,11}, + {0xf9b,8}, {0x11c65,11}, {0xf4f1,11}, {0x3089f,6}, {0x149e6,10}, {0xaa3d,12}, {0x5cdf,6}, {0x157ce,10}, + {0x216d9,7}, {0x10a6,3}, {0x74b0,13}, {0x68a1,6}, {0x1803e,5}, {0x2594b,8}, {0x16b24,6}, {0x4e80,13}, + {0x2c6eb,4}, {0xd3eb,5}, {0xfdc,3}, {0x8d15,8}, {0x23446,5}, {0x2b683,5}, {0x302f3,5}, {0x219b1,8}, + {0x20ebb,6}, {0x2540b,5}, {0x1c62e,9}, {0xbe1f,3}, {0x2d83f,4}, {0x300d4,3}, {0x1770,7}, {0x73c8,4}, + {0x21159,8}, {0x1ab7f,8}, {0x21791,8}, {0x1652a,9}, {0x118a8,6}, {0x1081,16}, {0xedda,10}, {0xb229,12}, + {0x19682,7}, {0x12bdc,10}, {0x143f6,7}, {0x168f,8}, {0xf7f,2}, {0x1142e,10}, {0x24f1b,8}, {0x26da7,7}, + {0x2b641,6}, {0x41ed,5}, {0xbb3,7}, {0x2ad3e,7}, {0x20ac1,8}, {0x23cb3,6}, {0x18da4,9}, {0x1e499,9}, + {0x11654,6}, {0xf31,7}, {0xc088,5}, {0x2812,3}, {0x30a3d,2}, {0x4c85,13}, {0x170bc,3}, {0xf58,2}, + {0x161d4,4}, {0xdd9c,11}, {0xe3e2,6}, {0x17196,10}, {0xb421,10}, {0x29b0b,6}, {0xc95f,5}, {0x1c115,9}, + {0x1029d,5}, {0x9204,4}, {0x1327,4}, {0xb319,12}, {0x274c3,7}, {0x1198,3}, {0x223b3,8}, {0x22a03,8}, + {0x1f25,13}, {0x65a3,5}, {0xb7a7,5}, {0x18e26,10}, {0xf15,3}, {0x1099,10}, {0xb925,8}, {0xcf79,11}, + {0x16d18,10}, {0xf9f0,8}, {0x14dd,9}, {0x1933d,7}, {0x1cc21,8}, {0xf6e0,11}, {0xf197,10}, {0x16660,9}, + {0x17e1a,4}, {0x11cb2,9}, {0x201d2,3}, {0x1cbeb,6}, {0xbffd,6}, {0x50d6,12}, {0x2e217,5}, {0x21931,8}, + {0x3ab5,14}, {0xb835,5}, {0x113cb,11}, {0x1522e,7}, {0x20c29,8}, {0x2461,6}, {0x90ed,5}, {0x1a91b,8}, + {0x2cb,3}, {0x25153,7}, {0x6d07,4}, {0x194ed,9}, {0x100ac,7}, {0x1c5ef,6}, {0x75ea,6}, {0x167e6,9}, + {0xe240,11}, {0x175d8,10}, {0x1597,11}, {0x200dd,9}, {0x27eef,7}, {0xd1c0,11}, {0x23a53,7}, {0x4ab1,13}, + {0x6d39,13}, {0x23c56,3}, {0x18310,3}, {0xffdb,7}, {0x4c15,4}, {0x162c,4}, {0x19188,5}, {0x14748,9}, + {0x20779,8}, {0x19bda,9}, {0x18c4b,5}, {0x2adbe,7}, {0x1bc3,3}, {0x9ccf,6}, {0x1b5a2,6}, {0xf277,4}, + {0x17bb6,5}, {0x9435,6}, {0xaf2,6}, {0x9f6b,3}, {0x65b7,3}, {0x1081,8}, {0x191c3,6}, {0x19d93,9}, + {0xf06e,11}, {0x2c475,4}, {0x23d4e,5}, {0xf2ec,6}, {0x6c7f,4}, {0x2a850,7}, {0x20631,8}, {0x1ed14,7}, + {0x1fec1,7}, {0x278af,4}, {0x26503,8}, {0x41a7,10}, {0x1684a,7}, {0x3553,6}, {0x7527,7}, {0x7f95,12}, + {0x797d,7}, {0x2dfb3,6}, {0x1bbea,9}, {0x16d2c,10}, {0x1dd6d,8}, {0xb415,7}, {0x2bf77,6}, {0x1078c,11}, + {0x3579,3}, {0x16106,10}, {0x237b,15}, {0x307ba,3}, {0x276d7,7}, {0xd002,4}, {0x445a,2}, {0xb535,8}, + {0x1c2d7,9}, {0x1c1db,9}, {0x3035e,4}, {0x302ee,5}, {0x2df9b,6}, {0x210f9,8}, {0x12948,10}, {0x18432,4}, + {0x1ac3c,6}, {0x71be,5}, {0x27bae,6}, {0x1bf4a,9}, {0x11fbf,5}, {0x1f12f,6}, {0x3973,6}, {0x1b7c4,8}, + {0x413c,6}, {0x13eba,9}, {0x76db,4}, {0x16df9,5}, {0x6d19,6}, {0x30dc5,2}, {0x1e2e0,4}, {0x3211,7}, + {0xea93,3}, {0x15834,4}, {0x5bdf,9}, {0x2c910,3}, {0xdd76,5}, {0xf0fd,11}, {0x1f891,9}, {0x4e39,6}, + {0x1ba8b,9}, {0x182fd,3}, {0x13b4a,10}, {0x2ecb,5}, {0xf0a5,11}, {0x1f36f,5}, {0x1957d,9}, {0x25933,5}, + {0xf528,7}, {0x124eb,6}, {0x4514,5}, {0xb903,3}, {0x1373a,7}, {0xc576,6}, {0xb145,7}, {0x1e5ef,9}, + {0x14342,8}, {0xbc25,5}, {0xd341,11}, {0xbb7f,3}, {0x1fc15,9}, {0x196e5,8}, {0x1e139,6}, {0x10314,11}, + {0x2b6a7,6}, {0xb27d,12}, {0x17dd2,10}, {0x1a7c5,6}, {0x17bd4,5}, {0xb400,3}, {0x22d03,8}, {0x2f295,2}, + {0x11680,8}, {0x29d8f,7}, {0x3623,3}, {0x7604,3}, {0x9f15,7}, {0x1747,6}, {0x17e40,10}, {0x18479,5}, + {0x22b83,7}, {0x15b02,9}, {0x1fa1d,8}, {0x21111,8}, {0x24b5b,8}, {0x17344,9}, {0x171aa,10}, {0x10f60,6}, + {0x1dd01,5}, {0x284a6,5}, {0x1e4e1,9}, {0x13fb4,7}, {0x1397e,10}, {0x51a6,6}, {0x1275e,10}, {0x2b8db,6}, + {0x4845,14}, {0x5a74,4}, {0x21479,8}, {0x15e22,9}, {0x34f0,7}, {0x367a,5}, {0xa575,12}, {0x9302,6}, + {0xe5b,5}, {0x29d88,7}, {0x346b,6}, {0x2cd5,6}, {0x175e8,4}, {0x24713,7}, {0x20431,6}, {0x1ba16,8}, + {0x19559,9}, {0x1fcdb,9}, {0x1b557,9}, {0x24be3,8}, {0xc9e3,11}, {0xadcf,3}, {0x1747,15}, {0x28395,6}, + {0x1d50f,9}, {0x2a329,3}, {0x2a69e,7}, {0x1af2,8}, {0x8cdf,5}, {0xc382,5}, {0x4789,6}, {0x1c11,2}, + {0x17eea,6}, {0x14964,10}, {0xfb94,6}, {0x1a06c,9}, {0x1316c,6}, {0x2abfc,7}, {0x1b8ed,9}, {0x22203,8}, + {0x4931,6}, {0x1b602,5}, {0x206c9,8}, {0x1e50e,7}, {0xb491,8}, {0xf759,11}, {0x1094,4}, {0x1dfbf,9}, + {0x110b3,7}, {0x91a1,12}, {0x2306b,6}, {0x5756,13}, {0x27e63,7}, {0xe3d7,11}, {0x7f59,12}, {0x3177a,2}, + {0x2ae45,3}, {0x182ca,5}, {0xe164,10}, {0x52b7,12}, {0xf436,11}, {0x1eec2,4}, {0xd7fb,11}, {0x223be,5}, + {0x5fd1,13}, {0x1f7a9,7}, {0x1fd35,6}, {0x1df5c,5}, {0x1beb1,9}, {0x12d62,9}, {0x101eb,8}, {0x1ddf4,5}, + {0x5861,5}, {0x2e79e,6}, {0x3142,4}, {0x1d21b,9}, {0x3075c,6}, {0x7b09,12}, {0x307e4,2}, {0x8499,9}, + {0x11690,4}, {0x174e8,6}, {0x1f2a9,8}, {0x2c73f,6}, {0x18232,8}, {0x30d0f,4}, {0x1e774,7}, {0x11f04,7}, + {0xcaa1,5}, {0x16ccd,4}, {0x3185,14}, {0x2a407,5}, {0x2c9d,7}, {0x16fac,8}, {0x18b06,10}, {0xbba3,5}, + {0x5dc9,13}, {0xd475,8}, {0x13aaa,10}, {0x1e1e4,7}, {0x15738,5}, {0x7c60,5}, {0x1b4f7,6}, {0x110ea,5}, + {0xb991,8}, {0x1fa82,4}, {0x2803,6}, {0x27782,4}, {0xb895,5}, {0x2b204,3}, {0x27caa,7}, {0x1c304,8}, + {0x393b,10}, {0x1676e,10}, {0x346b,8}, {0xe74,6}, {0x14fa,3}, {0x2a428,6}, {0x10de8,11}, {0x2bb09,6}, + {0x8943,6}, {0xb865,10}, {0x751a,3}, {0x19bec,9}, {0x1599a,9}, {0x4767,4}, {0x21599,8}, {0x4fab,10}, + {0x2f27c,2}, {0x2ecc5,4}, {0x2c8b3,6}, {0x3329,12}, {0x29cf,4}, {0x63d4,6}, {0x6956,4}, {0x142a2,5}, + {0x277da,7}, {0xcc5,3}, {0x179b8,6}, {0x2270b,8}, {0x111c,3}, {0x7899,6}, {0x12902,9}, {0x1c64,15}, + {0x15dd2,10}, {0x1d299,9}, {0x7e75,12}, {0x17dc8,10}, {0x237c3,8}, {0xb0a2,7}, {0x2311b,8}, {0x74f5,3}, + {0x1dfb,4}, {0x19e35,9}, {0x74e4,4}, {0x2c061,6}, {0x1d495,5}, {0x39cd,8}, {0x4677,7}, {0x30817,4}, + {0xf4db,10}, {0x25b1b,8}, {0x2a2a0,6}, {0x171e8,3}, {0x1bec,15}, {0x17f30,9}, {0x46bd,4}, {0x2bdcd,6}, + {0x201c7,8}, {0x2a5ef,4}, {0x2957,5}, {0x2bc65,6}, {0xfcfa,10}, {0x7385,13}, {0x2b94,6}, {0x1df77,9}, + {0x10ab5,5}, {0x2571,5}, {0x6791,5}, {0x2ff01,5}, {0x1e50e,9}, {0xd13c,5}, {0x85ee,4}, {0x1199c,2}, + {0x121c,4}, {0x17322,4}, {0x1a0b4,6}, {0x457b,8}, {0xa29b,7}, {0xc3be,8}, {0xfbb8,3}, {0x1fb46,9}, + {0x24573,5}, {0x15f12,10}, {0x1b4f4,9}, {0x13032,6}, {0x7d55,12}, {0x30c9,6}, {0x4eeb,4}, {0x2c997,6}, + {0x238b3,7}, {0x1ae4f,9}, {0x1ee68,7}, {0x160f,3}, {0x28c16,5}, {0x2eec,6}, {0x1c382,9}, {0x2b9c5,6}, + {0xaa85,12}, {0x1c92b,6}, {0x3193,6}, {0x9ecd,11}, {0x118ea,5}, {0x20149,9}, {0x2b2a,6}, {0x310f,4}, + {0x279a8,7}, {0x30e2f,4}, {0x14e4b,5}, {0x5d88,13}, {0x16cdc,10}, {0x2baeb,4}, {0xc76a,6}, {0x4775,4}, + {0x1eb89,3}, {0x141e,5}, {0x10201,11}, {0x188cc,10}, {0x2362b,6}, {0xca30,7}, {0xbded,7}, {0x2d1af,6}, + {0x2b75,3}, {0x3694,7}, {0xd0b8,11}, {0x24d73,5}, {0x10d01,8}, {0x6a61,13}, {0x2b50f,4}, {0x173a8,10}, + {0x10f74,11}, {0x23aef,4}, {0x1bd3c,4}, {0x1ef8,9}, {0x17736,9}, {0x830d,12}, {0x22793,8}, {0x3487,14}, + {0x25ec3,7}, {0x43f3,11}, {0x9bd9,5}, {0x12998,6}, {0x1e331,5}, {0x1a9fc,8}, {0x16084,8}, {0xbf91,11}, + {0x9b99,4}, {0xc0a2,3}, {0x1c892,6}, {0x455f,11}, {0x9bd3,6}, {0x6e3d,13}, {0x56a9,4}, {0x17418,8}, + {0x4295,13}, {0x23e93,4}, {0xabfe,7}, {0x10873,11}, {0x1ab49,9}, {0x1d319,7}, {0x19397,9}, {0x1f0e7,5}, + {0x205a9,4}, {0xa485,12}, {0x294a,13}, {0x601f,13}, {0x204b1,3}, {0xf3ff,11}, {0x2d09,14}, {0x2a9e6,7}, + {0x2bc7,11}, {0x1c37,13}, {0x10991,11}, {0x288a,3}, {0x1daa8,3}, {0x1db3c,2}, {0x116d8,11}, {0xa63a,5}, + {0x29b92,3}, {0x26cdc,7}, {0x17f62,10}, {0x12ce2,5}, {0xbdef,2}, {0x273d5,7}, {0x2691e,3}, {0x5715,13}, + {0x7f19,4}, {0x2a6df,4}, {0x2a4f3,7}, {0xc324,11}, {0xb7bf,4}, {0xe56e,11}, {0x1c7a,6}, {0xc685,4}, + {0x29a2,10}, {0x7ff8,3}, {0xe1ac,5}, {0x2efdd,5}, {0x1dcef,5}, {0x1d4f4,9}, {0x237f3,8}, {0x168e0,8}, + {0x6094,13}, {0xbc01,5}, {0xb24d,11}, {0x604d,6}, {0x10cb6,2}, {0x1d491,9}, {0x10e56,11}, {0xac95,12}, + {0x75c1,10}, {0x2e798,4}, {0xff4c,9}, {0x7119,9}, {0x9b03,6}, {0x2512d,4}, {0x1128c,6}, {0x2a5d6,4}, + {0x21021,7}, {0x61b2,12}, {0x1876e,5}, {0xfcff,6}, {0x1bef9,9}, {0x1a5a0,9}, {0x30875,6}, {0x14f9c,4}, + {0x20a31,8}, {0x160f2,10}, {0xf65,8}, {0x1fbbb,9}, {0xea12,9}, {0x2cdcd,3}, {0x332b,3}, {0x1cd6,6}, + {0x625b,7}, {0x8e89,8}, {0x1d299,8}, {0x20801,8}, {0x15f76,7}, {0xc744,11}, {0xecaa,7}, {0xaab5,12}, + {0x27895,2}, {0x1bd52,9}, {0x6215,5}, {0x30345,5}, {0x2d563,6}, {0x2f2c5,5}, {0x38fe,5}, {0x89a9,9}, + {0x31443,2}, {0x1a9bd,9}, {0x2f7f,6}, {0x2ca39,4}, {0x153c8,9}, {0x56fd,6}, {0x22bab,7}, {0x7b15,12}, + {0x44b1,6}, {0xb7e1,4}, {0x2286e,5}, {0x1aa17,8}, {0x28498,6}, {0x20f59,5}, {0x12448,10}, {0x21499,8}, + {0x199eb,8}, {0x2dbed,6}, {0x18ba2,4}, {0x11a34,4}, {0x3170b,3}, {0x1ac72,6}, {0x1fb73,9}, {0xffe,6}, + {0x11de6,11}, {0x26c81,6}, {0x9549,12}, {0x578a,6}, {0x2843,6}, {0xa389,12}, {0x117d5,5}, {0x19e3e,8}, + {0xb183,3}, {0x244db,8}, {0x20ad9,8}, {0x1706a,9}, {0x3727,9}, {0x183ae,10}, {0x12ca4,8}, {0x1dede,9}, + {0x19fa6,9}, {0x1ffab,6}, {0x2c661,6}, {0x12a06,10}, {0x1224a,10}, {0x1252,4}, {0x1357,4}, {0x7a88,3}, + {0x21809,8}, {0x9585,12}, {0x8841,7}, {0x16a7,4}, {0x16806,4}, {0x1b64a,8}, {0xfee,7}, {0x1fac8,9}, + {0x1807c,6}, {0x18890,9}, {0x1643a,7}, {0x16944,9}, {0x759a,13}, {0xb69d,8}, {0xf478,7}, {0x72dc,13}, + {0xbd69,5}, {0x1893a,7}, {0x13947,2}, {0x14144,10}, {0x33ed,12}, {0x2c561,3}, {0xb64e,7}, {0x2a8ad,4}, + {0x28e05,7}, {0x1099,3}, {0x2e722,3}, {0x24ef3,8}, {0x31e7,8}, {0xb121,8}, {0x2e115,6}, {0x23c3b,5}, + {0x3039f,4}, {0xee58,3}, {0x1504e,10}, {0x9fa5,12}, {0xc765,10}, {0x1b2fc,9}, {0xe75,5}, {0x15cba,10}, + {0x135d2,10}, {0x2c0af,6}, {0x24c03,8}, {0x11a08,10}, {0x19770,5}, {0x4287,7}, {0x9a29,12}, {0x2e293,2}, + {0x88d1,12}, {0x220e3,8}, {0x2efae,2}, {0xf528,8}, {0x12c4a,10}, {0x521b,13}, {0xc954,11}, {0x29ee6,5}, + {0x2737a,7}, {0x2a118,7}, {0x27595,7}, {0x146d0,10}, {0x3735,9}, {0x166c4,7}, {0x127b,4}, {0x2e274,6}, + {0x1d0d7,9}, {0x1943f,3}, {0x1ac9f,6}, {0x2b01e,6}, {0x3443,7}, {0x64d8,13}, {0x161f6,10}, {0x591d,12}, + {0x209c9,8}, {0x29782,7}, {0x2b8f,5}, {0x1d0d,3}, {0x7913,4}, {0x22293,8}, {0x240fb,5}, {0x26c0a,7}, + {0x14bb2,10}, {0x12786,10}, {0x1118a,3}, {0x17e04,10}, {0x3123f,3}, {0xb745,7}, {0x207e,10}, {0x10ca9,8}, + {0xb7a5,5}, {0x16958,9}, {0x24083,8}, {0x26978,7}, {0x19070,6}, {0x233df,4}, {0x18a36,7}, {0x668d,4}, + {0x308a5,6}, {0x20609,8}, {0x2411,12}, {0xcabf,11}, {0x8102,5}, {0x22523,8}, {0x1fdb5,4}, {0x839d,11}, + {0x29cf,5}, {0x67c6,4}, {0xe214,11}, {0x82f5,12}, {0x1e6d2,6}, {0xae09,5}, {0x1d2c6,9}, {0x16016,10}, + {0x2d7a9,5}, {0x795f,6}, {0x7b57,6}, {0x129e8,8}, {0x1419e,9}, {0x8fea,6}, {0x1d2e5,4}, {0x7496,6}, + {0x2998a,7}, {0x8991,12}, {0x11d8e,6}, {0x113ee,3}, {0x1e595,9}, {0x464f,5}, {0x1b866,4}, {0x2a81f,6}, + {0xbf49,11}, {0x17862,10}, {0x1c034,9}, {0x110f9,4}, {0x1f378,6}, {0x2d980,3}, {0x1d11f,6}, {0x1e010,9}, + {0x18479,7}, {0x2337b,8}, {0x22d33,8}, {0x1f90,4}, {0x249c,6}, {0x244d3,6}, {0x221e3,8}, {0x2cc00,3}, + {0xfe02,11}, {0x21819,8}, {0x27303,7}, {0x249d3,8}, {0x2c06d,6}, {0x48d4,2}, {0x1bc83,6}, {0xaf35,12}, + {0x6304,6}, {0x24b83,5}, {0x13c12,10}, {0x1ebc,4}, {0xa3ec,9}, {0x2406b,5}, {0x28e9f,5}, {0x4fca,8}, + {0xf93,4}, {0x21531,8}, {0xe4a8,6}, {0x12d44,9}, {0x8b71,12}, {0x2f32,7}, {0x2e219,3}, {0x26713,8}, + {0x24fc3,7}, {0x1679,3}, {0x7360,4}, {0x3650,5}, {0x30c13,4}, {0x732a,10}, {0x24383,8}, {0x11892,11}, + {0x25bd7,4}, {0x12f0a,6}, {0x7e69,6}, {0x3099b,4}, {0x5c29,13}, {0xbbdd,9}, {0x44c7,3}, {0xb2b3,6}, + {0x22a23,8}, {0x12d80,9}, {0x6b3e,13}, {0x119fd,10}, {0xa914,4}, {0x6ed1,7}, {0x6da6,4}, {0x7905,4}, + {0x1561,6}, {0x3109,3}, {0x1230,4}, {0x7004,13}, {0x1074e,7}, {0x1a738,5}, {0x24c3b,5}, {0x249f5,6}, + {0x217ad,3}, {0x4f5d,13}, {0x8428,4}, {0x2face,5}, {0x259e3,5}, {0x20d99,8}, {0x562b,8}, {0x214d9,8}, + {0x433d,14}, {0x418b,8}, {0x2ed22,2}, {0x383f,7}, {0x25d3,8}, {0x22b1b,8}, {0x10cad,2}, {0x1039e,5}, + {0x25313,5}, {0x26d4c,6}, {0x9609,11}, {0x7db5,12}, {0x2946b,7}, {0x26205,3}, {0x1dcc4,7}, {0x2de2a,3}, + {0x27628,7}, {0xf9cc,7}, {0x1f7d4,6}, {0x2c011,2}, {0x225cb,8}, {0x10764,3}, {0x23703,8}, {0x2bd1f,6}, + {0x24f5b,8}, {0xa2c3,6}, {0x2db63,6}, {0x13078,6}, {0x22cdb,7}, {0x13ae,4}, {0x1ee20,9}, {0xb139,12}, + {0x41ad,3}, {0x131a4,9}, {0xc631,5}, {0x12b1e,10}, {0x1bcf8,9}, {0x30adf,4}, {0x17d23,4}, {0x220a6,5}, + {0x300d2,5}, {0x16340,10}, {0x258fd,6}, {0x15346,6}, {0x1b5d5,9}, {0x39ff,13}, {0x28f4e,7}, {0x1f52,15}, + {0x21fab,8}, {0x11dab,4}, {0xadb5,8}, {0x11894,9}, {0x21299,8}, {0x2832c,7}, {0x1d758,9}, {0x46bf,4}, + {0x1a61e,9}, {0x19ddb,9}, {0x4831,6}, {0x43bd,4}, {0x834c,8}, {0x102fe,11}, {0x2251e,5}, {0x28d79,7}, + {0xbc03,2}, {0x3dd3,13}, {0x7e10,5}, {0x1ff87,9}, {0x11f2a,6}, {0xd291,7}, {0x1cfa5,8}, {0x2aea0,5}, + {0x5d2d,10}, {0x2f6b1,2}, {0xef66,10}, {0x2df19,4}, {0x2d14f,6}, {0xb2e9,12}, {0xe97,6}, {0x23f2b,5}, + {0xa8f9,12}, {0x14e7,7}, {0xb799,6}, {0x1499,3}, {0x145b8,10}, {0x8d51,11}, {0x2fa68,2}, {0x18afc,10}, + {0x1fec1,9}, {0x3e97,14}, {0x2946b,6}, {0x23d2b,8}, {0x17bde,5}, {0x5b18,13}, {0x1933d,5}, {0x1b9bc,8}, + {0x18908,6}, {0x1524e,4}, {0x19ee0,9}, {0xaa61,12}, {0x2f069,4}, {0x23f16,5}, {0xcc82,11}, {0x27285,7}, + {0x8be3,6}, {0x2d5f3,5}, {0x1bdfd,7}, {0xd083,6}, {0x1344c,10}, {0x1c46,8}, {0x10f4a,3}, {0xb2d1,12}, + {0x1d86f,7}, {0x18278,6}, {0x198d4,9}, {0x2768,14}, {0x2fb0f,4}, {0xe50b,11}, {0xfc4a,11}, {0x20839,7}, + {0x317ae,4}, {0x2ba13,6}, {0x30aeb,4}, {0x136a,3}, {0x5770,4}, {0x17f58,7}, {0x1ab88,9}, {0x2e8f7,5}, + {0x13050,6}, {0x19d66,6}, {0xb565,12}, {0x66b9,9}, {0x2ad68,7}, {0x30d67,4}, {0x10bc,9}, {0x10ad3,5}, + {0x1489c,10}, {0x2c5ef,6}, {0x1780,4}, {0x2a0bd,7}, {0x14216,6}, {0x28bd5,7}, {0xdb0a,5}, {0x27ace,7}, + {0x1f08d,8}, {0x2915d,5}, {0x23b73,8}, {0x16a7,11}, {0x118a8,8}, {0x16aca,9}, {0x196f7,9}, {0x7fee,4}, + {0x11f1a,7}, {0xb8b9,5}, {0x1b545,9}, {0x4153,13}, {0x2017,2}, {0x27127,7}, {0x11965,4}, {0x1980e,6}, + {0x18de5,5}, {0x2c9d,10}, {0x10c48,4}, {0x2921f,7}, {0x274bc,6}, {0x1a345,7}, {0x7bb5,5}, {0x1e74e,9}, + {0xeb67,11}, {0x84e1,12}, {0x1eae4,9}, {0x123ee,9}, {0x287e2,7}, {0x2920a,6}, {0xb23c,4}, {0x1c32,2}, + {0x26b69,7}, {0x28db1,4}, {0x28dae,3}, {0x24493,5}, {0x20e89,8}, {0x4016,7}, {0x163d6,10}, {0x2c9f7,6}, + {0x24d9b,8}, {0x22fdb,8}, {0x25843,8}, {0xc7de,6}, {0xe01a,6}, {0x22073,8}, {0x1e343,8}, {0x9bf1,10}, + {0x2a83,5}, {0x17c2e,8}, {0x4ba8,13}, {0x17b66,8}, {0x30302,5}, {0x7414,13}, {0x2c535,6}, {0xe19,6}, + {0x2f527,5}, {0x121f0,6}, {0x220d3,8}, {0x1d584,9}, {0x2d875,5}, {0x2240,7}, {0x2cf45,6}, {0x1a4ad,8}, + {0x1d2cf,9}, {0x10453,11}, {0x284c9,7}, {0x1b167,9}, {0xa661,4}, {0x1516b,5}, {0x271,3}, {0x63ad,8}, + {0x235e3,8}, {0x11df1,11}, {0x22ccb,8}, {0x227e6,5}, {0xe608,11}, {0x34b1,10}, {0xd27b,11}, {0x1909c,7}, + {0x21d19,8}, {0x17556,7}, {0x258fb,8}, {0x10d5f,5}, {0xcf6,16}, {0x23d6b,8}, {0xfa03,6}, {0x1e3b,3}, + {0x233f,8}, {0x25a5b,8}, {0x2f3c,8}, {0x27bdf,7}, {0x26263,6}, {0x214c9,5}, {0x11144,4}, {0x1045e,11}, + {0x39bb,10}, {0x178a8,7}, {0xd62d,11}, {0x1f43,14}, {0x2975f,7}, {0x2cad,3}, {0x6e98,13}, {0x25e7b,8}, + {0x2ad4c,7}, {0x2dfa1,6}, {0x28d51,5}, {0x1e5d,4}, {0xfd3c,11}, {0x76d2,13}, {0x22233,8}, {0x276ad,7}, + {0xbde1,4}, {0x4cac,13}, {0x4dd7,12}, {0x10bd8,11}, {0x14662,10}, {0x6cc7,5}, {0x506e,13}, {0x2fa4c,5}, + {0x2d3fb,6}, {0x154fe,6}, {0x2ac81,6}, {0x13884,9}, {0x2c2b5,4}, {0x1b614,6}, {0x6f34,13}, {0x21169,7}, + {0x30ebf,4}, {0xdc7e,9}, {0x2dafd,4}, {0xcd8a,11}, {0x13686,10}, {0x36a9,14}, {0xe08,3}, {0x2e7a4,6}, + {0x2bae,3}, {0x1333e,10}, {0x1d9e0,7}, {0xa965,12}, {0x3081b,6}, {0xf14a,11}, {0x17cc4,10}, {0x5bf5,9}, + {0x12696,7}, {0x2edd6,2}, {0x122ae,10}, {0x26875,7}, {0x27c2c,7}, {0x18c50,10}, {0xe1f,8}, {0x9ca7,5}, + {0x29ce0,7}, {0x5e31,13}, {0x18d36,10}, {0x2a67,3}, {0x2764b,6}, {0x543d,8}, {0x2dd9,2}, {0x1368a,6}, + {0x22bb3,8}, {0x2d653,4}, {0x1ed7e,6}, {0x54b2,13}, {0x26243,5}, {0x10970,9}, {0x18766,3}, {0x11e6a,5}, + {0x26b62,6}, {0x15904,10}, {0x1b881,8}, {0x159a4,10}, {0x21061,8}, {0x8243,6}, {0x2d521,4}, {0x26f6e,7}, + {0x245c,11}, {0x3a7d,9}, {0x2d81b,5}, {0x28d9c,7}, {0xe072,11}, {0x29cb8,5}, {0x16903,4}, {0x28452,7}, + {0x21feb,8}, {0x1bfb,14}, {0x14e9b,5}, {0x6ebf,8}, {0x8bad,12}, {0x11e82,4}, {0x28f2d,5}, {0xaeb4,9}, + {0x72f6,8}, {0xfe86,7}, {0x1a6f,6}, {0x29e7,4}, {0x518c,12}, {0x11cf6,5}, {0x1c0d6,9}, {0x1be2a,9}, + {0x13a7,8}, {0x2df31,4}, {0x228b,6}, {0x17e7,16}, {0x1b6ad,9}, {0x1a075,9}, {0x206b9,8}, {0x190a3,9}, + {0x2bb9,14}, {0x3da9,14}, {0x1d9b3,9}, {0x19e1a,6}, {0xb200,5}, {0xb9d5,4}, {0x14680,9}, {0x1bc20,6}, + {0xc508,10}, {0x12394,10}, {0xcb52,4}, {0x2c6e5,6}, {0xab09,12}, {0xe6a2,6}, {0xb1f9,6}, {0xd5b4,11}, + {0x101e0,11}, {0x1d935,8}, {0x30320,5}, {0x110c9,11}, {0x175bd,4}, {0x20bb9,8}, {0x1092,15}, {0x15e40,10}, + {0x4bcf,13}, {0x29c95,4}, {0x1da8d,7}, {0x137e,7}, {0x19e7,16}, {0x3b5d,8}, {0x198e6,7}, {0x58f6,9}, + {0x1688b,5}, {0x1de5c,4}, {0x2a1b2,6}, {0xa089,8}, {0x2a17a,7}, {0x203b7,3}, {0x19283,6}, {0x30a4f,4}, + {0x16c05,5}, {0x113aa,10}, {0xd357,8}, {0x10e9a,4}, {0xb9f7,2}, {0x17ca6,6}, {0x7c59,12}, {0x2d3b9,4}, + {0x1417b,5}, {0xf76f,11}, {0x155e,9}, {0x19eaa,8}, {0x103fd,3}, {0x2416b,8}, {0x17358,10}, {0xe634,7}, + {0x1176,8}, {0xc7a7,8}, {0x27521,4}, {0x10ab,3}, {0x2600,10}, {0x16638,10}, {0x2a3aa,7}, {0x1bf3c,5}, + {0x301fb,3}, {0x2cb0d,6}, {0x5f01,9}, {0x234a3,8}, {0x1aed6,9}, {0x2fb14,4}, {0x17f28,4}, {0x2a992,7}, + {0xe0ed,3}, {0x28d64,7}, {0x116b7,6}, {0xa509,9}, {0x24633,5}, {0x1d7fa,8}, {0x1ea75,3}, {0xd1e7,5}, + {0x2f777,5}, {0x12704,6}, {0x1e877,9}, {0x19277,8}, {0x2fa9,14}, {0x951c,4}, {0x27a34,5}, {0x7115,13}, + {0xb87d,11}, {0x8abf,7}, {0x27174,7}, {0x16020,10}, {0x136f8,6}, {0x12f6,11}, {0x23b,3}, {0x1ba1,12}, + {0x21679,6}, {0x1a7b5,4}, {0x2f5bd,5}, {0x18dae,10}, {0x30809,2}, {0x432f,14}, {0x870e,7}, {0xf3d3,7}, + {0x8c01,8}, {0x29d5e,6}, {0x25625,6}, {0x1f10b,5}, {0x6087,13}, {0x23dd3,8}, {0x82c5,10}, {0x17786,6}, + {0x1a65d,9}, {0x1aa83,9}, {0x1451d,5}, {0xfee9,11}, {0x2505b,8}, {0x95a9,7}, {0x13040,5}, {0x47ab,5}, + {0x17006,6}, {0x1cedf,6}, {0x2d62f,4}, {0x1d550,4}, {0x4401,14}, {0x267d0,3}, {0x9c51,12}, {0x2c90d,4}, + {0x2255b,8}, {0xbb41,6}, {0x22343,8}, {0x17621,4}, {0x2f808,4}, {0x1699e,10}, {0x31b27,2}, {0x18c46,10}, + {0x2d2e1,6}, {0x27708,7}, {0x114b2,5}, {0x29f92,5}, {0x20017,6}, {0x14d56,7}, {0x1ede1,9}, {0xe40e,11}, + {0x28aa5,7}, {0x1ec8b,7}, {0x5f35,12}, {0xcb26,7}, {0x624e,8}, {0x9105,12}, {0x1074a,11}, {0xb60d,10}, + {0x13f3f,7}, {0x2dfa7,6}, {0x1ca5d,9}, {0x8379,8}, {0x139a6,9}, {0x11430,8}, {0x1a0cf,9}, {0x1258b,2}, + {0x4295,14}, {0x15bfc,10}, {0x27a7a,7}, {0x319a,7}, {0xe4df,6}, {0x2d2ff,6}, {0xabfe,6}, {0x4a7d,13}, + {0x2eb76,5}, {0x2e3e6,2}, {0x16c28,9}, {0x20671,5}, {0x4ae5,7}, {0xe747,8}, {0x1876e,4}, {0x1830,7}, + {0x26f8a,7}, {0x1eee6,5}, {0x1ef01,4}, {0xe681,11}, {0x46b1,2}, {0x102e8,11}, {0x1156a,3}, {0xb7d0,5}, + {0xc954,10}, {0x2b000,6}, {0x2490b,8}, {0x1b52a,5}, {0x29004,7}, {0x159d8,4}, {0x15a44,7}, {0x2f05,3}, + {0x811a,3}, {0x12f82,4}, {0x299ad,5}, {0x2ebb,7}, {0xd04a,11}, {0x1ca0c,9}, {0x15ed6,10}, {0x6ee6,12}, + {0x1cd8b,7}, {0xd6d2,6}, {0x1d596,9}, {0xe3d2,2}, {0x2c57,8}, {0x18a2a,7}, {0x8bf5,12}, {0x219b,15}, + {0x15440,8}, {0x200c2,6}, {0x1d07d,7}, {0x26ee9,7}, {0x307f9,2}, {0x16980,10}, {0x295b4,6}, {0x1b62f,9}, + {0x30e3b,4}, {0x9b87,5}, {0x219f4,5}, {0x21dd3,8}, {0x1db99,9}, {0x7eb3,4}, {0x13ce1,3}, {0x1dbbf,7}, + {0x2e513,5}, {0x6657,7}, {0x17326,5}, {0x11352,11}, {0x16bc4,10}, {0x1a77d,9}, {0x237d,3}, {0x3454,9}, + {0x1717a,3}, {0x1bd76,9}, {0x2f527,4}, {0x9af,64}, {0x2a922,5}, {0x985b,6}, {0x7d19,6}, {0x2329b,7}, + {0x1e3c3,6}, {0x6581,12}, {0xa7e1,4}, {0x26233,6}, {0xe66b,11}, {0xd38e,11}, {0x125f6,10}, {0x16c1e,5}, + {0x17088,10}, {0x1ac9f,5}, {0x2abaf,7}, {0x251b3,8}, {0xb58f,6}, {0x1eeb0,9}, {0x19c6a,9}, {0x15c56,10}, + {0x2d989,4}, {0x1f107,4}, {0xf9ed,11}, {0xa221,12}, {0x2add7,3}, {0x17a9e,7}, {0x19817,6}, {0x1aed,13}, + {0x4ae5,4}, {0x23ea,4}, {0xaf59,12}, {0x2d9ce,3}, {0x276f3,7}, {0x17daa,10}, {0x2aef2,7}, {0x1de0b,4}, + {0x843f,5}, {0x18674,6}, {0x17524,6}, {0x258f3,7}, {0xb60f,4}, {0x19efb,9}, {0x10f3a,3}, {0x1b3b9,9}, + {0x17ec2,6}, {0x232db,5}, {0x1939,3}, {0x17c00,6}, {0x458b,3}, {0x2ff03,3}, {0x1e6ac,9}, {0x8961,11}, + {0x2c0d,6}, {0x18c7a,4}, {0x17344,10}, {0x29544,7}, {0xbef5,11}, {0x27f3c,5}, {0x28dc6,7}, {0x30664,2}, + {0x32e3,14}, {0x2de9,8}, {0x1f8ac,9}, {0x192c8,9}, {0xf01,3}, {0x20a79,7}, {0x9bd3,4}, {0x6dd5,13}, + {0x13c62,7}, {0x284bb,7}, {0x11f7d,11}, {0x12a6a,10}, {0xe92b,11}, {0x16e8a,10}, {0x419e,8}, {0x3f93,14}, + {0xddb2,7}, {0x1fe1f,9}, {0x18d24,7}, {0x12aa,4}, {0x103b9,5}, {0x1ed63,9}, {0xce50,7}, {0x4161,8}, + {0x1eecb,7}, {0x1ae7f,4}, {0x1f177,9}, {0x10c51,8}, {0xb295,12}, {0x1b38,13}, {0x1e298,7}, {0x29035,7}, + {0x1054a,6}, {0x16be2,10}, {0x11973,3}, {0x214b1,8}, {0xd4f3,6}, {0x49a4,5}, {0x29e7d,7}, {0x25283,6}, + {0x16a66,10}, {0x25e38,3}, {0x3518,3}, {0x1e085,9}, {0x3a02,3}, {0xb40f,5}, {0x227b3,7}, {0x17b0c,10}, + {0x1a17a,6}, {0x11331,5}, {0x95d3,6}, {0x18912,10}, {0x797a,3}, {0x2da57,4}, {0x714b,5}, {0x2563b,8}, + {0x2494b,5}, {0x1e1dd,7}, {0x14536,10}, {0x5cf9,9}, {0x584f,5}, {0x23f0b,8}, {0xbb4,48}, {0x172f4,10}, + {0x2f298,5}, {0x96e1,12}, {0x248d3,8}, {0x9489,12}, {0x2de87,5}, {0x1ddb7,5}, {0x2b683,6}, {0x23d4b,8}, + {0x1252e,6}, {0x17f5a,4}, {0x24b83,7}, {0xdedb,11}, {0x18c5a,6}, {0x2b19,6}, {0x20e71,8}, {0x449d,3}, + {0x28dcd,6}, {0x116a5,2}, {0x185ca,7}, {0x551a,12}, {0x4795,4}, {0x7580,12}, {0x1e575,5}, {0x10a36,6}, + {0x8715,9}, {0x1059d,11}, {0x5b92,7}, {0x4aff,10}, {0x2e870,5}, {0x25207,2}, {0x21a29,8}, {0x6345,12}, + {0x16ab6,7}, {0x21af1,7}, {0x8f9f,8}, {0x21551,8}, {0x3033c,4}, {0x18450,3}, {0x2e745,2}, {0xeb7,4}, + {0x12213,5}, {0x17f00,3}, {0x1892,5}, {0xcc2,3}, {0x2815e,7}, {0x1c997,9}, {0x127cc,7}, {0x131ea,6}, + {0xfc08,9}, {0x2ad40,5}, {0xcb9,8}, {0x1639,4}, {0x1921d,9}, {0x46cd,7}, {0xfcef,11}, {0x1f516,9}, + {0x23f8,7}, {0x15666,10}, {0x3b25,14}, {0x6da9,5}, {0x14e8c,10}, {0x4e8d,13}, {0x49ba,6}, {0x1e0e8,9}, + {0x2d0d1,6}, {0x10ef2,3}, {0x5290,13}, {0x150e,9}, {0xbf40,6}, {0x2209b,7}, {0x11b6a,6}, {0xfa4a,6}, + {0xa041,5}, {0x5ef4,13}, {0xe0f6,6}, {0x1a798,8}, {0x1c19c,9}, {0x113e3,3}, {0xeca6,11}, {0x18476,10}, + {0x13546,10}, {0x12c72,10}, {0x1fa5c,9}, {0x1ef6d,5}, {0xff64,4}, {0x28fc9,3}, {0x132bc,6}, {0x2c56d,2}, + {0x20344,4}, {0x1607e,6}, {0x6c38,3}, {0x55ea,13}, {0xa0fa,7}, {0x70af,4}, {0xb49b,7}, {0x1145c,5}, + {0x12849,5}, {0x21d91,6}, {0x28539,6}, {0x1fe3,4}, {0x13212,10}, {0x18cb4,6}, {0x209c,10}, {0x19508,8}, + {0x2a2a2,5}, {0x1e999,6}, {0x23a33,7}, {0x19f0d,6}, {0x5543,5}, {0xee7f,8}, {0x11b94,5}, {0x2eb0d,5}, + {0x27820,7}, {0x7a5b,3}, {0xe332,11}, {0x2d0e3,6}, {0x6fd0,12}, {0x11bb5,11}, {0xf533,8}, {0x1e77,9}, + {0x2294b,8}, {0x15340,3}, {0x3957,14}, {0x106fd,8}, {0x146f8,10}, {0x1e17,14}, {0x17cce,6}, {0x2a01c,7}, + {0x29bdd,7}, {0x2a75b,7}, {0x15a7,9}, {0x456d,10}, {0x2a023,5}, {0x179c2,5}, {0x1e120,3}, {0x504f,5}, + {0x25dbb,6}, {0x31b05,2}, {0x30e0d,2}, {0x37aa,9}, {0xd4d8,6}, {0x1d74a,5}, {0x217e9,6}, {0x22b8,6}, + {0x161a6,8}, {0xc940,4}, {0x6c35,12}, {0x29c77,5}, {0xd131,7}, {0x2a803,7}, {0x237d3,8}, {0x345f,5}, + {0x1dfc,3}, {0x2a7a8,7}, {0x1c55,5}, {0x2ca1b,4}, {0x16cf0,10}, {0xf2e6,6}, {0x25c4b,8}, {0x1365e,10}, + {0x1f97f,2}, {0x19a3c,8}, {0x2331b,8}, {0x1f81c,6}, {0x1307,8}, {0x3c91,9}, {0x170e2,5}, {0x8919,12}, + {0x1efa3,9}, {0x15f30,9}, {0x2a348,7}, {0x7f65,11}, {0x1a54f,8}, {0x8d71,4}, {0x25da3,7}, {0x24d53,8}, + {0xfe88,5}, {0x3c1c,5}, {0xbf40,9}, {0x1a75,15}, {0xa3fc,5}, {0xe63f,11}, {0x1ca42,9}, {0x11c91,11}, + {0x302cb,5}, {0x258e5,4}, {0x25cd3,6}, {0x2e7ec,6}, {0xd2e2,6}, {0x4c99,6}, {0x11f25,11}, {0x2e259,5}, + {0x1cb35,9}, {0xb0c5,8}, {0x18496,3}, {0x2b1fe,6}, {0xe0e0,10}, {0xfe3,9}, {0x252e3,5}, {0x2579b,5}, + {0x151f,3}, {0x19e08,9}, {0x28ffa,3}, {0x10986,10}, {0x70fd,3}, {0x15a30,7}, {0x200c7,4}, {0x52d1,8}, + {0x77e5,4}, {0x1f92a,9}, {0x140b8,9}, {0x2719e,7}, {0xd58c,5}, {0x228fb,8}, {0x311af,4}, {0x7290,7}, + {0x2e814,8}, {0x26ba8,7}, {0x18796,6}, {0xf77,18}, {0x2f5ef,4}, {0x2c8f2,3}, {0x13b7c,10}, {0xcbdd,7}, + {0x1704c,6}, {0x6dae,10}, {0x2454b,7}, {0x30dfb,4}, {0x1cae4,9}, {0x1142e,5}, {0x4acf,9}, {0x11866,6}, + {0x17542,10}, {0xaac1,11}, {0x2771d,7}, {0x43,3}, {0x1eef8,9}, {0x1c046,6}, {0x19a33,9}, {0x21221,7}, + {0x1d602,9}, {0x731d,13}, {0x14050,4}, {0xb541,6}, {0x2f15e,5}, {0x2dd,3}, {0x18f7,16}, {0x2faa3,2}, + {0xbc7b,2}, {0x11e00,3}, {0x458b,6}, {0x26c5e,6}, {0x89d3,6}, {0x737a,4}, {0x1208,9}, {0x19b02,8}, + {0x1177,9}, {0x464d,6}, {0x5b8d,12}, {0x3031d,2}, {0xe6d4,4}, {0x26f0,12}, {0x28fa9,7}, {0x290ba,7}, + {0x24523,8}, {0x2db51,5}, {0x25123,6}, {0x5ea8,4}, {0x4904,12}, {0x9075,12}, {0x23783,8}, {0x543d,13}, + {0x1b614,8}, {0xa3c5,12}, {0x18868,6}, {0x7344,7}, {0x121e6,7}, {0x1c517,9}, {0x12910,6}, {0x2dfcb,6}, + {0x1bca7,9}, {0x2c457,6}, {0x385f,4}, {0xb843,4}, {0x161e,9}, {0x7378,7}, {0x24c93,8}, {0x3129,7}, + {0x22bc3,8}, {0x12812,10}, {0x16c00,10}, {0xc76,32}, {0x2cdd7,6}, {0x4139,4}, {0x19c34,6}, {0x2ec43,5}, + {0x7788,5}, {0x7d41,5}, {0x104ab,10}, {0x25373,6}, {0x1f36,6}, {0x1b04,4}, {0xa13d,12}, {0x1e3a,3}, + {0x64ff,10}, {0x29c4d,7}, {0xd10a,6}, {0x2e20d,3}, {0x2abb6,7}, {0x2ac34,7}, {0x2638d,3}, {0x1130b,5}, + {0xc815,10}, {0xf8f0,11}, {0x5e5e,7}, {0x2e32,9}, {0x21291,8}, {0x11bb7,9}, {0x4b03,5}, {0x1325a,7}, + {0x8d21,7}, {0x162aa,10}, {0x2b88d,6}, {0x26fd0,7}, {0x16b56,10}, {0x2fed1,3}, {0x2226b,7}, {0x124c,14}, + {0x4be4,4}, {0x1ecf7,9}, {0x23ddb,7}, {0x21371,8}, {0xad55,11}, {0x24d5d,2}, {0x11fca,11}, {0xc928,10}, + {0x9c88,5}, {0x1150d,8}, {0x1b06b,6}, {0x15bf2,9}, {0x5feb,6}, {0x12a4c,10}, {0x1a3f0,8}, {0x24953,8}, + {0x27ba0,7}, {0x2147,7}, {0x10e61,11}, {0x1a291,5}, {0x10ea3,5}, {0x24bab,8}, {0x1edcf,9}, {0x14a1,4}, + {0x124ca,9}, {0x123a8,6}, {0x3032f,4}, {0x174d6,4}, {0x2d10a,3}, {0xc17f,4}, {0x1ea30,5}, {0x23057,4}, + {0x10afc,11}, {0x2330,13}, {0x1b224,9}, {0x1f7f8,6}, {0x202ce,5}, {0x23223,8}, {0x450f,3}, {0x1c0f1,9}, + {0x8cd9,11}, {0x1592c,10}, {0x295bd,5}, {0x111a5,11}, {0x172a4,6}, {0x1e18a,6}, {0x30ac3,4}, {0x307ec,7}, + {0x2fc5,7}, {0xb3e5,4}, {0x15ffc,6}, {0x143d8,10}, {0x1ab8a,6}, {0x25abd,5}, {0x280d2,7}, {0x29019,7}, + {0x113e1,10}, {0xfc81,11}, {0x2c985,5}, {0x18b8b,3}, {0x94be,7}, {0x3176b,3}, {0x1a924,9}, {0x19214,9}, + {0x7d0f,4}, {0x1b14c,8}, {0x90d5,11}, {0x32ab,12}, {0x1e60a,9}, {0x30307,5}, {0x654d,9}, {0x2e796,6}, + {0x22a87,4}, {0x4ed5,6}, {0x1da57,7}, {0x2176,4}, {0x2a7f1,4}, {0x23b4f,4}, {0x6b7f,7}, {0x17de6,5}, + {0x1c826,9}, {0x15940,6}, {0x1e9b2,9}, {0x205,3}, {0x16e58,10}, {0x25b27,4}, {0x83ba,7}, {0x17cf6,7}, + {0x1f4fb,6}, {0x8b1d,12}, {0x19736,9}, {0x29100,7}, {0x24713,8}, {0x4d7c,12}, {0x1eff4,5}, {0x11536,11}, + {0x1b3b0,9}, {0x2ef,3}, {0x2d029,6}, {0x137fe,4}, {0x3473,6}, {0x21251,8}, {0x22e53,8}, {0x794d,11}, + {0x50af,7}, {0xfcea,5}, {0x2d254,3}, {0x5464,13}, {0xdf58,6}, {0x1c7de,9}, {0x239b,3}, {0x2d5ab,6}, + {0x5e3e,12}, {0x14dd8,8}, {0x3f69,14}, {0xcac6,4}, {0x1f543,8}, {0x2ae66,6}, {0x134f6,6}, {0x184d0,6}, + {0x116e3,8}, {0x26163,8}, {0x4003,9}, {0x20c91,8}, {0x4599,4}, {0x175c,7}, {0x23f53,8}, {0x4899,7}, + {0x2dfc5,6}, {0x289d3,5}, {0x16f9,4}, {0x18458,9}, {0x2647b,5}, {0x1bd37,9}, {0x22475,5}, {0x2d227,6}, + {0x24c6b,8}, {0x114b2,10}, {0x12a5,2}, {0x7360,3}, {0x189b2,6}, {0x7dfd,12}, {0x1897,15}, {0x10dc7,5}, + {0x16c0a,9}, {0x1245c,10}, {0x2fc7e,3}, {0x3893,14}, {0x1130a,6}, {0x1c613,9}, {0xc9a1,11}, {0x7201,8}, + {0x124ac,10}, {0x6b3e,5}, {0x26443,8}, {0xef03,11}, {0x222e3,8}, {0x30df5,2}, {0xd3ba,10}, {0x7312,6}, + {0xd971,11}, {0xf814,11}, {0x1180c,7}, {0x77bc,8}, {0x7df1,8}, {0x1227c,7}, {0x5bce,13}, {0x28f86,6}, + {0x1373,3}, {0x27c3a,7}, {0x71c0,2}, {0xe440,5}, {0x23a0b,7}, {0x9c15,12}, {0x1526c,7}, {0x1332a,10}, + {0x1391a,10}, {0x788e,6}, {0x1d371,7}, {0x2758e,7}, {0x1245,3}, {0x139b0,10}, {0x7ba0,3}, {0xc8a4,11}, + {0x2d56,7}, {0x1e1a5,6}, {0x18f05,4}, {0x25ae3,8}, {0x10ddf,9}, {0x1328a,10}, {0x2537b,8}, {0x1dea8,9}, + {0x2f6b9,5}, {0x3080b,4}, {0x2e295,8}, {0x16d0e,10}, {0x29487,7}, {0x17c06,10}, {0x14990,5}, {0x2ea3b,3}, + {0x10d66,5}, {0x3a3d,5}, {0x14cf2,10}, {0x7d4d,4}, {0x2a325,4}, {0x79bf,6}, {0x24653,6}, {0x13780,10}, + {0x12a88,7}, {0x2eb03,5}, {0x1e2e5,4}, {0xfca8,5}, {0x210ce,3}, {0xe83,8}, {0x1b54e,9}, {0x2e247,5}, + {0x2a0e9,5}, {0x8cfd,10}, {0x7095,3}, {0x7d31,9}, {0x23c1b,8}, {0xf9b,7}, {0x1f9de,6}, {0x57d1,4}, + {0x15314,6}, {0x23473,7}, {0x2eb37,2}, {0x18b9c,6}, {0x26de6,7}, {0x169b9,3}, {0x197a2,9}, {0x27d8,3}, + {0x126a4,6}, {0x2941b,3}, {0xb4fb,7}, {0x57ce,3}, {0x1a99,3}, {0x6894,6}, {0x11dc5,6}, {0x23c03,8}, + {0x5d4d,7}, {0x1ff9,4}, {0xc077,3}, {0x26063,8}, {0x2dfb9,6}, {0x7fb9,11}, {0x292c,6}, {0xb4b1,8}, + {0x28f8d,7}, {0x2fb6e,5}, {0x21d51,8}, {0x187d2,10}, {0x62df,3}, {0x2e0d9,6}, {0x23bc3,8}, {0xf2cb,6}, + {0x15530,10}, {0x9934,5}, {0x58bb,7}, {0x3b6f,4}, {0x17330,9}, {0x9831,10}, {0x26d7f,5}, {0x12150,2}, + {0x1e4b,3}, {0x472d,9}, {0x10ffa,3}, {0x152f,8}, {0x2d643,2}, {0x6818,11}, {0x7052,13}, {0x1fbe8,6}, + {0x1a7c5,5}, {0xbbd1,10}, {0x14f86,8}, {0x20296,9}, {0x1a38d,9}, {0x92c1,12}, {0x3487,13}, {0x11382,7}, + {0x15bac,9}, {0x29aa2,5}, {0xbae3,5}, {0x27fe4,6}, {0xb601,7}, {0x1b7df,9}, {0x23f76,5}, {0x2afa3,3}, + {0x13a28,10}, {0xb1b1,12}, {0x6039,12}, {0x29bfc,2}, {0xea5f,11}, {0x7845,3}, {0x109ff,8}, {0x1399c,6}, + {0x2929d,7}, {0xc959,3}, {0xee6c,4}, {0x10432,11}, {0x11e1f,5}, {0x21d29,7}, {0x20d29,8}, {0x2b0b4,6}, + {0x28901,6}, {0x1fff3,5}, {0x2fad8,5}, {0x1ad4a,9}, {0x207eb,5}, {0x2dfbf,6}, {0x20125,9}, {0x22933,8}, + {0x28f73,4}, {0x192d1,9}, {0x1c448,6}, {0x1db75,9}, {0x8b69,5}, {0x1ef4b,4}, {0x4f50,11}, {0x12272,10}, + {0x21243,5}, {0xad85,6}, {0x1109,16}, {0x10e9,9}, {0x1bd49,9}, {0x9537,6}, {0x2f8d,9}, {0x6762,13}, + {0x29012,7}, {0xa79d,9}, {0xbfb7,3}, {0x191de,9}, {0x23de3,8}, {0x68a7,12}, {0x10a2b,7}, {0x1dab8,9}, + {0x1ed99,9}, {0xbb65,5}, {0x1b194,9}, {0x14c0c,10}, {0x405d,7}, {0xc7f4,11}, {0x1fa1d,9}, {0x2802a,7}, + {0x2a5b0,7}, {0x27016,7}, {0x2be75,6}, {0x17abc,6}, {0x2fa06,5}, {0x30177,5}, {0x2e95,2}, {0x6e5e,4}, + {0x2290b,8}, {0x1e4c8,4}, {0x10a99,4}, {0x9566,6}, {0x1aca1,3}, {0x14766,10}, {0x7170,4}, {0x1ed90,6}, + {0xc1a1,12}, {0x20861,8}, {0x19b9,4}, {0x37b9,3}, {0x7310,10}, {0x4847,5}, {0x149fa,10}, {0xa215,6}, + {0x2c97f,6}, {0x27732,4}, {0x25e6b,8}, {0x1c0df,8}, {0x10fd7,5}, {0x57d1,7}, {0x31c7,4}, {0x13e1,6}, + {0x1bb1b,9}, {0x15972,10}, {0x24cb3,8}, {0x6567,7}, {0x9909,11}, {0x2b078,6}, {0xdd91,11}, {0x20a79,8}, + {0x1ffc6,9}, {0xe516,11}, {0xa704,4}, {0x729d,7}, {0x2d96e,3}, {0x257fb,5}, {0x4ec1,12}, {0xfabe,5}, + {0x133c4,6}, {0x25e33,8}, {0x2dfd7,6}, {0x2ca35,4}, {0x7ff5,8}, {0x5693,10}, {0x487d,13}, {0x11a2,15}, + {0xa1e5,12}, {0xb69f,3}, {0x2acff,7}, {0xc836,7}, {0xbf79,11}, {0x456d,14}, {0x243d3,5}, {0x3d7f,14}, + {0xcdd9,3}, {0x11e96,11}, {0x2ae04,7}, {0x1e3f7,9}, {0x258e3,8}, {0x2f830,5}, {0x24c23,7}, {0x6552,4}, + {0x302fd,5}, {0x2cda7,6}, {0x2d503,6}, {0xc5d2,5}, {0x11e28,6}, {0x1bc83,9}, {0x16903,3}, {0x15fc,3}, + {0x10054,11}, {0x136ae,7}, {0x391f,14}, {0x1a912,9}, {0x17f82,4}, {0x27866,5}, {0x7a13,3}, {0x283,3}, + {0xa661,3}, {0x860d,11}, {0x16d7,13}, {0x1c6eb,7}, {0x170ce,6}, {0x1e853,9}, {0x2db9f,6}, {0x1c3b8,9}, + {0xe240,6}, {0x18f9,3}, {0xb805,8}, {0x2654b,8}, {0x2df1f,4}, {0x2daaf,6}, {0x1b332,9}, {0x1b50f,9}, + {0x27e32,7}, {0x307b8,3}, {0x11165,3}, {0x2ca21,5}, {0x29ff4,5}, {0x1293e,10}, {0x1529c,10}, {0x2222,13}, + {0x19fee,9}, {0xa641,9}, {0x1c760,9}, {0x10e2c,2}, {0x13b0e,10}, {0x2754f,7}, {0xe434,6}, {0x263b3,6}, + {0x1e841,5}, {0x1880e,7}, {0x14999,6}, {0x21261,8}, {0x1512e,6}, {0x2d27d,4}, {0x23345,5}, {0x2a1b5,2}, + {0x1de69,9}, {0x18b4c,6}, {0x1649e,10}, {0x58c2,9}, {0x28341,7}, {0x2ab0,15}, {0x14ce8,10}, {0xae92,5}, + {0xaba5,8}, {0x2e07f,6}, {0x1b935,8}, {0x9b98,4}, {0x6b90,7}, {0x1a414,9}, {0x2d3a5,2}, {0x2a188,7}, + {0x2d2bd,5}, {0x14112,5}, {0x1d63,5}, {0xf672,10}, {0x7da9,11}, {0x99d5,11}, {0x16ce6,10}, {0x20aa1,8}, + {0x12871,5}, {0x1727c,5}, {0x1ee17,8}, {0x2312b,8}, {0x1fffc,5}, {0x120dd,5}, {0x27d7,4}, {0x4855,3}, + {0x1ed9b,7}, {0x2e9f3,5}, {0x434b,9}, {0x836d,6}, {0x20c9,11}, {0x2cf6f,4}, {0x40a2,7}, {0x184d,5}, + {0x773a,5}, {0x64a4,11}, {0x68db,13}, {0x1a195,9}, {0x1f81c,9}, {0x19511,6}, {0x472f,7}, {0x4be3,5}, + {0x2e91a,5}, {0x2a7,3}, {0x1452c,10}, {0xd766,6}, {0x24123,5}, {0x1604a,4}, {0xabbd,11}, {0x1527e,9}, + {0x22e65,6}, {0xc5fa,6}, {0x1da67,7}, {0xe676,10}, {0x1ec79,9}, {0x14916,3}, {0x426b,14}, {0x1194d,11}, + {0xa414,5}, {0x5970,7}, {0x893d,12}, {0x1db00,8}, {0x2280,3}, {0x1765c,2}, {0xc5ef,11}, {0x1f6b6,7}, + {0x2aa56,7}, {0x2a5cc,7}, {0xdc8f,5}, {0x1a3a8,9}, {0x14072,10}, {0x223c6,5}, {0x1bf41,9}, {0xf0a,7}, + {0x152a6,10}, {0x53d5,13}, {0xeb88,8}, {0xa0d1,12}, {0x10c5,17}, {0x30d1f,4}, {0xd6c7,5}, {0x1e8da,5}, + {0x776e,9}, {0x25023,5}, {0x18892,8}, {0x1b2a2,9}, {0x220a3,8}, {0x172c2,5}, {0x122ea,10}, {0x2325b,8}, + {0x143c4,7}, {0x1ae6a,7}, {0x9291,12}, {0x1c1ae,9}, {0x131b8,10}, {0x30ddf,4}, {0x17094,3}, {0x2105,15}, + {0x1f168,6}, {0x1ac69,6}, {0x48d2,4}, {0x2fbe6,5}, {0x758d,5}, {0x1191,7}, {0x1e571,9}, {0x1c53b,9}, + {0xdd8,24}, {0x2a2b,6}, {0x60e2,9}, {0x7e21,6}, {0xb60d,5}, {0x2b0a,10}, {0x17bfc,10}, {0x1db4d,4}, + {0x24323,8}, {0x14414,10}, {0x192fe,9}, {0x24dcb,7}, {0x27a81,6}, {0x19ce2,3}, {0x25995,5}, {0x192f5,8}, + {0x69cc,6}, {0x13366,7}, {0x15896,10}, {0x320b,4}, {0x1ddc0,3}, {0x31b09,2}, {0x303ad,2}, {0x1daaf,9}, + {0x2cdad,5}, {0x8241,11}, {0x2ac8f,7}, {0x48a7,12}, {0x2866d,7}, {0x28149,7}, {0x2c775,6}, {0x296b0,7}, + {0x144fa,10}, {0x2de45,5}, {0x7bf5,4}, {0x10d85,6}, {0x271a5,7}, {0xcca3,11}, {0x4765,4}, {0x2d281,6}, + {0x2dffb,6}, {0x1131d,9}, {0x266bb,7}, {0x2347b,8}, {0x647f,3}, {0x16eda,10}, {0x20a71,8}, {0x279ee,7}, + {0x3afb,9}, {0x30dc1,2}, {0x9d4f,8}, {0x2f77c,5}, {0x2f701,2}, {0x2c61f,6}, {0x11d94,5}, {0x2b4be,4}, + {0x3175f,3}, {0x229c3,8}, {0x2f021,2}, {0x2fc04,4}, {0x10f4a,5}, {0x27954,7}, {0x2e7be,4}, {0x253ff,4}, + {0x3567,13}, {0x2cd59,6}, {0x127fe,10}, {0x205a3,2}, {0x1dae5,9}, {0x4669,14}, {0x111c6,10}, {0x17042,10}, + {0x21e73,6}, {0x1c4fc,9}, {0x8061,12}, {0x16728,7}, {0x2b737,6}, {0x2c685,6}, {0x1248e,6}, {0x34cd,14}, + {0x1623e,8}, {0x24a13,8}, {0xb6db,4}, {0xa449,12}, {0x111f4,5}, {0x320d,4}, {0x19361,9}, {0xcfd1,6}, + {0x83db,4}, {0x2a2f4,7}, {0x18a34,6}, {0x16d5e,10}, {0x18fc2,8}, {0x28e83,7}, {0x23f13,4}, {0x83fd,9}, + {0x1e26,10}, {0x9596,7}, {0xa179,11}, {0x2dff5,6}, {0xe327,11}, {0x170ec,6}, {0x11265,6}, {0x2e915,5}, + {0x8163,6}, {0xaccc,5}, {0x196cd,6}, {0x1e06a,9}, {0x2d4e8,2}, {0x4a4e,6}, {0x2b929,6}, {0x974d,12}, + {0x1fdc5,5}, {0xf6c6,4}, {0xc591,6}, {0x2977,4}, {0x205f9,7}, {0x29e68,7}, {0x295,3}, {0x29e30,5}, + {0x248e3,8}, {0x231f3,8}, {0x2fb5a,5}, {0x75b4,5}, {0xbe4f,7}, {0x27ac7,7}, {0x1f849,5}, {0x11166,4}, + {0x16a3a,4}, {0xff83,11}, {0x1775e,10}, {0x7455,7}, {0x23e8d,2}, {0x1c67f,9}, {0x23993,8}, {0x49b1,9}, + {0x17d78,9}, {0x1cab7,9}, {0x1900c,6}, {0x302f8,5}, {0xbb29,11}, {0x4131,6}, {0x230c3,8}, {0x15a08,7}, + {0xab81,11}, {0x22073,7}, {0x1f37a,6}, {0x9279,10}, {0xb51f,3}, {0x2f691,5}, {0x79b9,12}, {0x27207,7}, + {0x18df4,6}, {0x2b77,3}, {0x17af8,8}, {0x21071,8}, {0x1a07e,9}, {0x393b,12}, {0xf231,10}, {0x24363,7}, + {0xc051,5}, {0x12ac,6}, {0xb589,6}, {0x29d50,7}, {0x7e09,11}, {0x2206b,8}, {0x1050e,11}, {0x272c4,7}, + {0x116e3,11}, {0x1dbc6,9}, {0x2d767,6}, {0x1c04f,9}, {0x1e6be,9}, {0x2cd5,10}, {0x2559b,8}, {0x239e3,8}, + {0x1731f,7}, {0x5199,9}, {0x11491,5}, {0x1cf5d,9}, {0x1b2e5,3}, {0x28da7,2}, {0x20f11,8}, {0xe403,11}, + {0x29c62,7}, {0xb409,4}, {0x1b1ca,8}, {0x28aeb,7}, {0x66d3,13}, {0x18020,5}, {0x3e19,14}, {0x18ba6,10}, + {0x98a9,8}, {0x4159,3}, {0x233db,7}, {0x28643,7}, {0x181d0,4}, {0x1eaff,7}, {0x702b,13}, {0x2158c,5}, + {0x1f381,9}, {0x10cb4,5}, {0x1f10d,3}, {0x1556c,6}, {0xda8,24}, {0x21721,8}, {0x181e2,9}, {0x17696,7}, + {0x268b8,2}, {0x2ce81,4}, {0x219b9,8}, {0x12a9c,6}, {0x16b1a,9}, {0x248a3,6}, {0x3170e,3}, {0x9849,12}, + {0xfb37,8}, {0x7ac1,5}, {0x1abeb,9}, {0x1bb0,15}, {0x4fd2,12}, {0x12a7e,7}, {0x1bcb9,8}, {0x216e,6}, + {0x2df25,4}, {0x2ef51,5}, {0x912e,7}, {0x6443,6}, {0x18746,5}, {0x29c07,7}, {0x147e8,10}, {0x2c9bb,6}, + {0x3e27,13}, {0xb097,6}, {0x9594,9}, {0x85ad,12}, {0x218c4,5}, {0x2dfdd,6}, {0x2de89,3}, {0x21c19,5}, + {0x3205,3}, {0x2c9c7,6}, {0x129d4,10}, {0x31c6,5}, {0x2ae53,5}, {0x29640,7}, {0x27484,7}, {0x668c,4}, + {0x11965,6}, {0xb181,12}, {0x10f32,8}, {0x5669,2}, {0x38af,7}, {0x28165,6}, {0x5a55,13}, {0x22ff3,8}, + {0x1e556,9}, {0x1367,9}, {0x21cf9,8}, {0x2486b,8}, {0x655a,7}, {0x3115,14}, {0x1ea42,9}, {0x188e0,10}, + {0x6dc8,7}, {0xe591,8}, {0x29944,5}, {0xb5f5,6}, {0x2d71f,6}, {0x93b1,6}, {0x21b79,8}, {0x30b2b,4}, + {0xe3cc,7}, {0xbf3d,12}, {0x2d1e,7}, {0x26b07,7}, {0x1e3a6,5}, {0x3c9f,9}, {0x31991,4}, {0x19b2f,9}, + {0x1d7a9,7}, {0x8361,12}, {0x19682,8}, {0x2d2ed,6}, {0x7bbd,7}, {0x7fcc,5}, {0xcd6,8}, {0x31a9b,2}, + {0x28c45,7}, {0x5416,7}, {0x11c2e,8}, {0x9351,6}, {0x2a222,7}, {0x2d289,4}, {0x2a58d,7}, {0x6bf6,6}, + {0x2c751,6}, {0x22963,8}, {0x26d06,7}, {0x17538,10}, {0xcb0c,11}, {0x18ef0,6}, {0x59b9,10}, {0xd223,11}, + {0x23d7b,6}, {0x1c81d,9}, {0x18df6,3}, {0xc416,11}, {0x13113,4}, {0x5ae4,13}, {0x142b1,5}, {0x1183e,4}, + {0x1aba3,5}, {0x1754e,7}, {0xbc91,12}, {0x1ce34,9}, {0x4c03,10}, {0x9351,7}, {0x1feca,9}, {0x2429,6}, + {0x1cb9,2}, {0x1dc71,9}, {0x11278,8}, {0x19f79,9}, {0x17258,6}, {0x2d941,6}, {0x18540,8}, {0x18c0e,6}, + {0x29b8b,5}, {0x31721,2}, {0x27548,7}, {0xcbb1,10}, {0x10382,11}, {0xc05d,9}, {0x64a7,10}, {0x2795,7}, + {0x1bbf,13}, {0x1c67b,4}, {0x7a0d,6}, {0x1977,10}, {0xbaa5,7}, {0xb87d,12}, {0x15ffb,4}, {0x15139,5}, + {0x30de9,2}, {0x22aeb,8}, {0x2da9d,6}, {0x166a2,4}, {0x16660,5}, {0x1207a,7}, {0x175a6,6}, {0x15da0,10}, + {0x140fe,10}, {0x14cc0,7}, {0x8ded,12}, {0x31432,3}, {0x17670,7}, {0x34dd,4}, {0xeb04,6}, {0x555b,13}, + {0x308d7,4}, {0x1b8c0,5}, {0x2e24d,5}, {0x2a0e0,7}, {0x17a5e,4}, {0x1dd05,5}, {0xcaeb,11}, {0xd13c,11}, + {0x1f89a,8}, {0x390b,4}, {0xa2f9,9}, {0xbb5f,6}, {0x2e09d,6}, {0x6de2,12}, {0x1ff90,9}, {0x11e2f,4}, + {0x25b3b,6}, {0x143a,3}, {0x1d4c,8}, {0x24d,3}, {0x1d3a,7}, {0x2be81,6}, {0x208d,14}, {0x1c5ef,9}, + {0x271d,14}, {0x1d9d9,7}, {0x4b0f,5}, {0x1658e,9}, {0x213d9,8}, {0x30f93,6}, {0x260e8,3}, {0x19901,9}, + {0xbac9,11}, {0x1d557,9}, {0xc6cb,6}, {0x1c85c,9}, {0x22d9,4}, {0x2ad1e,4}, {0x37d7,5}, {0x111dc,11}, + {0x27a4,15}, {0x2b290,4}, {0x6f4e,8}, {0x1b6fe,9}, {0x317a6,4}, {0x23b33,8}, {0x16318,7}, {0x11e85,6}, + {0x11d2b,9}, {0x2b51f,4}, {0xf72d,8}, {0x12a5,4}, {0x30a67,4}, {0x5471,13}, {0xf70c,5}, {0x17660,3}, + {0x1083c,11}, {0x18522,7}, {0x1df6e,9}, {0xb499,5}, {0x2c8fe,3}, {0x144a0,7}, {0x18b58,3}, {0x1cc45,9}, + {0x120a0,6}, {0x2f0e1,5}, {0x1e211,6}, {0x25f1b,8}, {0x1f87f,6}, {0x8a09,12}, {0x15f94,10}, {0x62ea,12}, + {0x1d359,6}, {0x12af1,5}, {0x2779b,4}, {0x2229b,8}, {0x21af,3}, {0xb453,3}, {0x532e,7}, {0x4a97,10}, + {0x19fdc,8}, {0x17648,3}, {0x18750,10}, {0x8829,11}, {0x16694,4}, {0x2464e,2}, {0x1709c,5}, {0xcf58,11}, + {0x1896c,6}, {0x1ad38,8}, {0x1db24,6}, {0x1bd,3}, {0x15d64,10}, {0xb74,6}, {0x28836,7}, {0x25a5b,5}, + {0x73ac,6}, {0x2e25,4}, {0xb451,4}, {0x1bc9e,6}, {0x22c33,8}, {0x9b85,12}, {0x20b59,8}, {0x30328,2}, + {0x265b3,8}, {0x2f0f5,5}, {0xc928,9}, {0x179cc,10}, {0x114b2,6}, {0x1fcf6,6}, {0x2b75b,6}, {0x3780,9}, + {0x13f1e,10}, {0x79b4,5}, {0x15fb,7}, {0x10427,5}, {0x104e,3}, {0x2332,6}, {0x2513b,5}, {0x1af30,6}, + {0x31a7d,2}, {0x5401,3}, {0x25f8b,7}, {0x17670,6}, {0x18048,10}, {0xdea4,11}, {0x1e879,7}, {0x183f6,4}, + {0x273c7,6}, {0x200fa,3}, {0x4486,6}, {0xf932,11}, {0x2dad9,4}, {0x6eac,5}, {0x1292f,5}, {0x10406,11}, + {0x2769f,7}, {0x9771,8}, {0x15c10,9}, {0x2ee78,5}, {0x2582b,6}, {0x7971,7}, {0x1cbd0,6}, {0x243ce,5}, + {0x164ca,6}, {0xd525,9}, {0xe06b,3}, {0x2c4d1,4}, {0x2d8d,8}, {0x6e64,13}, {0x1e77b,9}, {0x17594,7}, + {0x28348,7}, {0x11664,6}, {0x231fb,8}, {0x27e9b,7}, {0x174fc,5}, {0xc2a0,11}, {0x2dfe3,6}, {0x20a41,8}, + {0x21d71,7}, {0xb9f1,5}, {0xbc49,12}, {0x1aa20,9}, {0x13db6,10}, {0xa6e9,12}, {0x1bc5c,3}, {0x104ab,11}, + {0x1b935,9}, {0x2a929,7}, {0x2f00a,5}, {0xc7bd,11}, {0x1caf6,9}, {0x25583,7}, {0x159cc,7}, {0x14752,10}, + {0x1db36,4}, {0xa085,4}, {0x17ac8,2}, {0x10600,11}, {0xf672,11}, {0x1fc54,9}, {0x15a5c,6}, {0x1aa32,9}, + {0x9189,12}, {0x1e3ee,9}, {0x30a37,4}, {0x2a5f3,3}, {0x1e57f,2}, {0x1e80,14}, {0x24783,7}, {0x18984,6}, + {0x21139,7}, {0x15742,7}, {0x27dde,5}, {0x1520,7}, {0x1dba2,9}, {0xe44a,6}, {0x16c50,7}, {0x4a4e,8}, + {0x11d01,5}, {0x1837,11}, {0x10f2a,3}, {0x2502b,8}, {0xb0e5,12}, {0x2375b,5}, {0x21f23,7}, {0x2cd0b,6}, + {0x294db,7}, {0xc303,11}, {0x1a4b6,9}, {0x1ef8,15}, {0x2a567,3}, {0x24bcd,3}, {0x1e144,5}, {0xfd68,11}, + {0x17092,7}, {0x1577e,9}, {0x62ec,5}, {0x7fa1,12}, {0xcb33,4}, {0x18b9c,10}, {0x2a1c7,7}, {0x1fa1f,6}, + {0x1e57c,3}, {0x16a8e,10}, {0x2dfef,6}, {0xe38f,6}, {0x1b425,9}, {0xee1c,8}, {0x2cc53,4}, {0x1f687,5}, + {0xa641,8}, {0xd55c,11}, {0x2d650,2}, {0x6526,13}, {0x22563,8}, {0x20e99,8}, {0x2e9cb,5}, {0x2a4ad,7}, + {0x20d8,15}, {0xa551,7}, {0x1eaba,6}, {0x293ca,6}, {0x23053,8}, {0xde9e,6}, {0x1b491,6}, {0x20571,4}, + {0xa845,12}, {0x667e,7}, {0x29e7,6}, {0x82d5,8}, {0xfe65,11}, {0x2f99d,4}, {0x1cb28,4}, {0x269d3,7}, + {0xa043,10}, {0x8fb5,10}, {0x285d6,4}, {0x28bc7,7}, {0x11f3e,4}, {0x3c5d,3}, {0x9405,5}, {0x15bf6,4}, + {0x2c229,6}, {0x2dfd1,6}, {0x1f8fd,9}, {0x12376,9}, {0x1e826,6}, {0x1409a,10}, {0x2dcb3,4}, {0x972b,6}, + {0x18313,5}, {0xbf5c,5}, {0x28460,6}, {0x13334,10}, {0x142e8,10}, {0xb58b,2}, {0x5e6b,7}, {0x20951,8}, + {0x18054,5}, {0x255f3,8}, {0x22aeb,7}, {0x21631,8}, {0x16552,10}, {0x174d4,5}, {0x3869,14}, {0x1a9e1,9}, + {0x16322,9}, {0x184bc,5}, {0x13e0,3}, {0x9925,5}, {0x18e50,8}, {0x87b1,12}, {0x1db36,7}, {0x12022,11}, + {0x3d3b,4}, {0xb0a9,11}, {0x71b8,3}, {0x27bb5,7}, {0x26c88,7}, {0x1f2b2,9}, {0x14bc6,10}, {0x100a1,11}, + {0x1b417,4}, {0xaf2,66}, {0x2d347,6}, {0x1f85b,9}, {0x6644,13}, {0xf441,11}, {0xeb67,10}, {0x1fa2f,9}, + {0x37b3,7}, {0x222db,8}, {0x9909,12}, {0x1ceea,6}, {0x17cba,5}, {0x1a09,3}, {0x135aa,10}, {0x298d9,4}, + {0x5e2b,4}, {0x13ae6,10}, {0x1a105,9}, {0x15af1,7}, {0xda33,4}, {0x1898c,7}, {0x3b51,3}, {0x28b7a,7}, + {0x7086,6}, {0x23a9b,5}, {0x139ab,5}, {0x20651,8}, {0x24fd3,7}, {0x12b8f,5}, {0x19c10,8}, {0x262bb,8}, + {0x37dd,14}, {0x24a7b,7}, {0x217,3}, {0x27e0f,7}, {0x1c32,3}, {0x1c53b,8}, {0x27b14,7}, {0x288fa,7}, + {0x12d30,10}, {0x16048,9}, {0x19f0d,9}, {0x27fd6,7}, {0x2246b,8}, {0x1d85d,9}, {0x7d61,12}, {0x10342,4}, + {0x21d49,8}, {0x28325,7}, {0x133d4,6}, {0x9c04,5}, {0x2cdb5,4}, {0x2dc17,4}, {0x1fe3a,9}, {0x2549b,5}, + {0x9651,10}, {0x10012,11}, {0x1ad92,9}, {0xc252,3}, {0x7518,12}, {0x30a1f,4}, {0x11ef3,4}, {0x2ec25,5}, + {0x2c39d,6}, {0x2085,8}, {0x1d9a3,5}, {0x550d,7}, {0xbde4,6}, {0x10aa4,5}, {0xb3f3,3}, {0x217c9,7}, + {0x123a3,5}, {0x2f049,2}, {0x16d0e,9}, {0x58d8,4}, {0x50db,8}, {0x22ec3,5}, {0x10c97,7}, {0xfda,9}, + {0x1256a,10}, {0x28674,7}, {0xf016,11}, {0x1bdd0,8}, {0xe978,11}, {0x21c39,8}, {0x8ba1,9}, {0x1ad26,8}, + {0x229,3}, {0x2470e,4}, {0x2cf2d,6}, {0x83e0,5}, {0x12db5,4}, {0x9eb5,12}, {0x26623,8}, {0x11ef9,7}, + {0x9dc7,5}, {0x147b6,10}, {0x307e0,2}, {0x2ce43,6}, {0x1bf6e,9}, {0x11305,11}, {0x2a327,2}, {0xc647,8}, + {0x2ba2,2}, {0x5770,11}, {0x172d,3}, {0x2b8c,2}, {0x15260,10}, {0x7c65,11}, {0x1c400,9}, {0x2a7ee,7}, + {0x2cf51,6}, {0xcf21,11}, {0x2997c,7}, {0xb3ab,3}, {0x2652b,5}, {0xb9e5,5}, {0xe49,6}, {0x14185,4}, + {0x5f69,8}, {0x12af6,10}, {0x200bc,4}, {0x165a2,10}, {0x2cbf7,6}, {0x1de2a,5}, {0xe6ef,10}, {0x5f0e,13}, + {0x174fc,6}, {0x2ae0b,7}, {0x122e,3}, {0x28813,7}, {0x2034a,9}, {0x1295,4}, {0x20db9,8}, {0x128be,6}, + {0x182d,3}, {0x7a5a,4}, {0xb421,11}, {0x1283a,5}, {0x1449,5}, {0x1cdda,8}, {0x16d74,8}, {0x1c5ce,6}, + {0x12eb1,5}, {0x3b09,14}, {0x914d,11}, {0xa91d,12}, {0x1771a,8}, {0x2e211,5}, {0x2c72f,4}, {0x2fc45,5}, + {0x149b,4}, {0x20341,7}, {0x22a77,4}, {0x1d982,4}, {0x1469,4}, {0x2005f,9}, {0xae69,11}, {0x12452,9}, + {0x1117e,6}, {0x701e,13}, {0x13c9e,10}, {0x7643,6}, {0x1dc4f,2}, {0x2d20f,6}, {0x1dc2,3}, {0xe42f,11}, + {0x2d764,3}, {0xd454,10}, {0x1e0db,4}, {0x2663b,8}, {0x13ffa,10}, {0x83b5,7}, {0x1b2c6,6}, {0x754c,6}, + {0x126e,16}, {0x291a1,7}, {0x1edc3,3}, {0x2c991,6}, {0x19562,7}, {0x25373,8}, {0x16537,5}, {0x6fdd,12}, + {0x18df4,10}, {0x1857,8}, {0x19a7,5}, {0x2889f,7}, {0x14734,10}, {0x980d,12}, {0x2c529,6}, {0x11b8b,5}, + {0x8cfd,6}, {0x1f921,9}, {0x11fd5,8}, {0x21951,6}, {0x2693c,3}, {0x31735,2}, {0xf1a2,11}, {0xdf1d,11}, + {0x3d9b,13}, {0xc46e,7}, {0x2a199,4}, {0x19bd1,8}, {0x175a6,10}, {0xf79,7}, {0x2dc3b,6}, {0xc7ac,6}, + {0x273b9,7}, {0x5f22,6}, {0x17d46,10}, {0x54cc,8}, {0x179d,4}, {0x2cc09,5}, {0x1f50f,4}, {0x6b90,9}, + {0x2b4b0,3}, {0xba45,12}, {0x8a4b,6}, {0x6de7,7}, {0x1e8a6,2}, {0x17150,4}, {0x11ac3,5}, {0x8db7,6}, + {0x19c3d,9}, {0x29d6c,7}, {0x26183,8}, {0x19d0c,9}, {0x299ad,7}, {0xa5d5,12}, {0x11d83,7}, {0x22f5b,8}, + {0x2129b,6}, {0xd7a3,9}, {0x20736,2}, {0x3035b,2}, {0x3113d,6}, {0x4199,14}, {0x2c8ad,6}, {0x1aab9,5}, + {0x2f62d,2}, {0x10130,11}, {0x15012,6}, {0x4c37,13}, {0x1c3d,9}, {0x25e75,4}, {0xb84d,8}, {0x1786e,7}, + {0x9159,8}, {0x1e613,9}, {0x1d72b,6}, {0x24677,4}, {0xb35a,7}, {0x2d7e5,6}, {0xf89,10}, {0x490d,3}, + {0x2ae45,5}, {0x2235,3}, {0x12a29,5}, {0x25ffb,8}, {0x23b43,8}, {0x2d82d,6}, {0x1aad4,8}, {0x30d49,2}, + {0x2eb3a,4}, {0xc961,6}, {0x14e98,4}, {0x115e,10}, {0x1b3c,9}, {0x1f126,9}, {0x29f20,7}, {0x12d,3}, + {0x288e5,7}, {0x3384,7}, {0x1f4e0,9}, {0x237d,9}, {0x1fdce,7}, {0x2cc51,6}, {0x487d,8}, {0x821d,12}, + {0x30adb,4}, {0x2bd7,3}, {0x1736c,9}, {0x2d3a4,2}, {0x1ca27,7}, {0x913b,6}, {0x4111,9}, {0x8b89,12}, + {0xa1a9,12}, {0x1cf,3}, {0x24085,6}, {0xb1da,7}, {0x2daf4,3}, {0xbfc1,6}, {0x1337,4}, {0x38e0,7}, + {0x26523,8}, {0x275d4,6}, {0x4911,13}, {0x4459,3}, {0x2d1c7,5}, {0x26d2,12}, {0xd0c3,11}, {0x1b707,9}, + {0x16854,10}, {0x9fe3,5}, {0x217b9,7}, {0x171aa,7}, {0x14e6e,5}, {0x2798c,7}, {0xfdc5,6}, {0xf722,7}, + {0x2be33,5}, {0x7bb5,8}, {0x1b3c2,9}, {0x31985,4}, {0x4553,4}, {0x4d83,6}, {0xdd44,11}, {0x1d9bc,9}, + {0x240df,4}, {0x1ee29,9}, {0x6fba,5}, {0x139e2,10}, {0x2d2a5,6}, {0x2241b,5}, {0x2a83,10}, {0x1b1ee,9}, + {0x407b,6}, {0x9855,12}, {0x19322,9}, {0x1dde2,5}, {0x191a8,9}, {0x1b4b5,9}, {0xe839,11}, {0x1c73e,6}, + {0xe8b,7}, {0x1a627,9}, {0x1a1ef,6}, {0x1455e,6}, {0x313b7,3}, {0x9ae9,5}, {0x479f,3}, {0x23923,8}, + {0x11c70,8}, {0x381d,6}, {0x21759,8}, {0x1a9fe,4}, {0x30c47,4}, {0x1bc6,8}, {0x9dd1,6}, {0x28caa,3}, + {0x2c691,5}, {0x13dce,6}, {0x2ea2f,5}, {0x162c8,5}, {0x1d9ce,8}, {0x1020e,4}, {0x9a9,3}, {0x20fd9,8}, + {0x11b73,11}, {0xb7e1,5}, {0x1af27,9}, {0x4ee3,4}, {0x13924,6}, {0x286f4,7}, {0x8839,8}, {0x6fd0,13}, + {0x284d7,7}, {0x168d9,7}, {0xee17,5}, {0x1d93e,6}, {0x1ec67,8}, {0x9375,12}, {0x25c6b,8}, {0xde0a,6}, + {0x24143,5}, {0x13910,10}, {0x5d59,5}, {0x6f8f,8}, {0x4cfa,11}, {0x2576b,5}, {0x1cec9,4}, {0x1d24c,4}, + {0x6bed,6}, {0x5840,13}, {0x1b98f,8}, {0x9009,12}, {0x98b5,11}, {0x18be2,6}, {0x1bba2,9}, {0xb079,11}, + {0x1e382,8}, {0x2183,3}, {0x11939,9}, {0x85f9,4}, {0x8fa9,12}, {0xa0f5,12}, {0x28fd3,5}, {0x1b5f9,7}, + {0x2c87f,4}, {0x189ee,10}, {0x1b9f2,9}, {0x2bbf9,6}, {0x2dadf,4}, {0x1c9d6,8}, {0x2ac1,6}, {0x307b,9}, + {0x1af5d,9}, {0x109b2,11}, {0x1f980,3}, {0xdd81,5}, {0x176aa,10}, {0xa2f3,5}, {0x2df2b,4}, {0x16cc8,7}, + {0x28885,4}, {0xc1,3}, {0x33c3,6}, {0x6894,5}, {0x26ede,4}, {0x11680,10}, {0x4bec,10}, {0xd756,8}, + {0x17254,10}, {0x449b,4}, {0x97ad,11}, {0x5be8,9}, {0x23fde,5}, {0x591d,6}, {0x190d9,9}, {0x2a7e7,7}, + {0x2d631,2}, {0x254eb,5}, {0x11db1,4}, {0x4032,4}, {0x31f5,5}, {0x14040,10}, {0x17f64,3}, {0x1243e,9}, + {0x226c3,8}, {0x3d47,14}, {0x43bb,14}, {0x2dc47,6}, {0x177fe,7}, {0xb3e7,3}, {0x22ddb,8}, {0x253fb,4}, + {0x4eb4,13}, {0x23f15,6}, {0x2a746,7}, {0xb7d7,3}, {0x2533d,3}, {0x2adef,5}, {0x8d7d,4}, {0x57cb,13}, + {0x28ea6,6}, {0xed35,6}, {0x2ace,10}, {0x2f6dc,5}, {0x2674b,8}, {0x14cc0,10}, {0x23e8b,4}, {0x11559,5}, + {0x9999,10}, {0xcb8,2}, {0x2e085,6}, {0x1bbed,6}, {0xece1,7}, {0xc9ee,11}, {0x1a152,4}, {0x24983,8}, + {0x27318,6}, {0x2436b,8}, {0x2c1c9,6}, {0x240a3,8}, {0x21f5b,7}, {0x451e,3}, {0x16478,4}, {0x27946,5}, + {0x276de,7}, {0x2d185,6}, {0xea6a,11}, {0x174f2,7}, {0x16976,10}, {0x23ed5,6}, {0x18e1c,7}, {0x9af7,6}, + {0xede5,8}, {0xf7d2,8}, {0x15bc,11}, {0x21d59,8}, {0x31757,2}, {0x21849,8}, {0x1bd4c,6}, {0x5a3b,12}, + {0xa680,6}, {0x2350b,8}, {0x168cc,9}, {0x2bb5,2}, {0x6859,12}, {0x1d614,9}, {0x2406b,7}, {0x302bc,5}, + {0x2df3e,3}, {0x377b,14}, {0xccf,2}, {0xd3f6,5}, {0x11e5f,11}, {0x3bf7,9}, {0xfbf,15}, {0x1be4e,9}, + {0x1567e,5}, {0xc90c,6}, {0x1e8a,4}, {0x1c3e8,6}, {0x19481,9}, {0x28af2,7}, {0x169b,10}, {0xf58,3}, + {0x2009e,6}, {0x6d33,6}, {0x161ec,10}, {0x2d99b,4}, {0x22eeb,7}, {0x333c,3}, {0x20a81,8}, {0x9d80,4}, + {0x2abf,8}, {0xb079,12}, {0x133f2,10}, {0x9d,3}, {0x2967a,5}, {0x2a3a3,7}, {0x8532,3}, {0x92a9,12}, + {0x25613,5}, {0x28299,7}, {0x24e6d,6}, {0x1ea95,6}, {0x24fcb,8}, {0x4aec,4}, {0xef9d,11}, {0x12c0e,6}, + {0x6326,4}, {0x2556b,5}, {0x9e31,10}, {0x629c,13}, {0x20891,8}, {0x123be,4}, {0x2394d,6}, {0x1c7a,8}, + {0xec2,4}, {0x20c71,8}, {0xce03,9}, {0x171f0,10}, {0x28c68,6}, {0x5353,13}, {0x1c6d0,9}, {0xa22d,10}, + {0x17bce,6}, {0x20beb,5}, {0x21e93,8}, {0x6b0a,10}, {0xd827,11}, {0x2c0d,8}, {0x9c91,8}, {0x13bea,10}, + {0x1059,4}, {0x3fd0,9}, {0x147d4,9}, {0x25583,6}, {0x245c3,8}, {0xa79d,12}, {0x2ddeb,5}, {0x2944f,6}, + {0x11260,11}, {0x1bad3,9}, {0x29807,7}, {0x140ec,8}, {0x17b1b,3}, {0x182fa,6}, {0x1bb24,9}, {0xa352,7}, + {0x1c86e,9}, {0x1f2e8,6}, {0x3a3d,8}, {0xe45b,5}, {0x596b,12}, {0xb850,9}, {0x22fa3,7}, {0x12376,10}, + {0xded0,11}, {0xb3c3,7}, {0x14e46,10}, {0x90f9,11}, {0x94e9,7}, {0x122d,8}, {0x7131,4}, {0x60e2,12}, + {0x15b43,5}, {0x2ca7d,6}, {0x16d86,7}, {0xa07d,12}, {0x12c3,17}, {0x2c3ac,3}, {0x10bee,5}, {0x26a74,7}, + {0x2667b,5}, {0x3e35,12}, {0x3b17,9}, {0x2e743,3}, {0x7387,4}, {0x2b7a3,6}, {0x1b7e8,9}, {0x3301,5}, + {0x2b821,6}, {0xb979,5}, {0x8571,10}, {0xa2b6,5}, {0x16bc,6}, {0x27cbf,7}, {0x1c010,9}, {0x2f6f0,5}, + {0x11da4,7}, {0xd45f,11}, {0x2a906,7}, {0x2ac2d,7}, {0xe030,5}, {0x2c1bd,6}, {0x1050,7}, {0x2aeb3,7}, + {0x2f7ea,5}, {0x1db12,9}, {0x1afc9,9}, {0x61ba,4}, {0x1f20c,4}, {0x4829,14}, {0x27858,7}, {0x1157,3}, + {0x2f2d9,5}, {0x4375,14}, {0xecf3,11}, {0x11a20,6}, {0xba11,4}, {0x14d38,7}, {0xc16,32}, {0x18c14,5}, + {0x22b33,7}, {0x150c6,7}, {0xdaf6,7}, {0x1591,2}, {0x23a73,7}, {0x188e,9}, {0x2735e,6}, {0x1c2f,4}, + {0x26106,2}, {0x242f,15}, {0x286cf,6}, {0xb9ea,3}, {0x22ebb,8}, {0x2d76d,6}, {0x3a4d,6}, {0x2cf57,6}, + {0x192da,9}, {0x747c,6}, {0x147de,10}, {0x67d7,12}, {0x208d1,8}, {0x22b0,8}, {0x20a69,8}, {0x86cd,12}, + {0xa35e,7}, {0x9473,5}, {0xc14,5}, {0x8841,8}, {0xe591,4}, {0x22173,8}, {0x8d51,12}, {0x2ea66,5}, + {0x1d574,4}, {0x1732,2}, {0x11486,5}, {0xae8d,12}, {0x138b,10}, {0x30c99,2}, {0x23683,7}, {0x21cf4,4}, + {0xa929,9}, {0xd194,11}, {0x14acc,10}, {0x1d25a,9}, {0x1e43f,8}, {0x1f612,7}, {0xaad9,12}, {0x1b76c,7}, + {0x4ee3,5}, {0xf277,3}, {0x239bb,8}, {0x482b,6}, {0x2f81c,4}, {0x29789,6}, {0x29fac,7}, {0xfa4,2}, + {0xd8c1,11}, {0x2d407,6}, {0xd832,10}, {0xaec9,12}, {0x15030,6}, {0x1cfb2,5}, {0x3a7d,14}, {0x82a1,12}, + {0x5fde,7}, {0x2e77c,3}, {0x2f293,4}, {0x2bb45,5}, {0x1eee0,6}, {0xe0eb,11}, {0xcfbb,11}, {0xf16b,11}, + {0x2d122,3}, {0x2664,5}, {0x4767,2}, {0x6e09,7}, {0x2b9a1,6}, {0x99c9,8}, {0x2f338,5}, {0x198b0,9}, + {0x14c18,7}, {0x13a2,5}, {0xaca1,6}, {0x2bba5,6}, {0x14388,10}, {0x19466,9}, {0x159ae,10}, {0x1116e,11}, + {0x1100e,9}, {0x24933,8}, {0x15e7,4}, {0x11628,8}, {0x6b17,13}, {0x1da7,7}, {0x8025,11}, {0x2333b,7}, + {0x23b63,8}, {0xda0b,11}, {0x12ce0,10}, {0x19f67,9}, {0x1b329,8}, {0x25563,8}, {0x1715c,4}, {0x2e213,3}, + {0x1bfa4,9}, {0x18250,10}, {0x3eb3,14}, {0x2edc9,4}, {0x10bac,8}, {0x247bb,8}, {0x235d3,8}, {0xdce6,6}, + {0x34a3,6}, {0x13a32,10}, {0x16b9c,10}, {0xcd53,10}, {0x27182,6}, {0x19eb3,9}, {0x1c88,7}, {0x1263,7}, + {0xb661,10}, {0x1efb5,5}, {0x401f,14}, {0xb3de,7}, {0x4c32,5}, {0x9c09,11}, {0x2435f,4}, {0x18d2c,7}, + {0x16372,10}, {0xfb3d,3}, {0x2ed6a,4}, {0x16d88,4}, {0x22323,8}, {0x1825c,4}, {0x15c06,8}, {0x22473,8}, + {0x30811,4}, {0x27587,7}, {0x27086,7}, {0x1e65b,9}, {0x27b76,7}, {0x236fb,8}, {0x302e9,5}, {0x5b05,6}, + {0x1a49,3}, {0x24ceb,8}, {0x18cbe,9}, {0x29beb,6}, {0x197fc,9}, {0x11569,4}, {0x26ab3,7}, {0xfa0e,5}, + {0x230f3,7}, {0x293ca,7}, {0x28bea,7}, {0x111a,5}, {0x2be51,6}, {0x11633,9}, {0x110ea,11}, {0xe5b0,10}, + {0x65c2,13}, {0x252bb,5}, {0x2e2f,14}, {0x297ac,7}, {0x486f,11}, {0xca25,9}, {0x302e4,5}, {0x4d55,11}, + {0x18674,9}, {0x1a8a6,9}, {0x1f9b1,9}, {0x3db7,12}, {0x13302,10}, {0x2a7af,7}, {0x2134,7}, {0x14473,5}, + {0x1efbe,9}, {0x23c7d,5}, {0x1dc6a,7}, {0x22163,8}, {0x2f46e,5}, {0x14554,10}, {0xc275,4}, {0x5e93,3}, + {0xa2f9,7}, {0x1bf0b,9}, {0x18c78,10}, {0xb63d,12}, {0x27c09,7}, {0xee4,5}, {0xc928,11}, {0x18752,4}, + {0x2db21,5}, {0x1baf7,6}, {0x29dce,4}, {0x1f3f6,9}, {0x280f5,7}, {0x83f1,7}, {0x279f5,6}, {0xb1e1,11}, + {0x174a2,7}, {0x1927,10}, {0x170d8,5}, {0x1b60b,5}, {0x2463b,8}, {0x1f756,9}, {0x2de39,5}, {0x13528,10}, + {0x257c3,7}, {0x59c6,12}, {0xd6ee,5}, {0x1a5c4,9}, {0x2411b,6}, {0x26113,8}, {0x109d3,11}, {0x2f957,5}, + {0x14c84,10}, {0x11bb5,6}, {0x30865,4}, {0x48d3,3}, {0x2a131,3}, {0xf51d,11}, {0x4fa7,4}, {0x783e,5}, + {0x2f880,4}, {0x2ba5,6}, {0xb3e7,10}, {0x121f,5}, {0x187e6,10}, {0x31aa3,2}, {0x11f88,7}, {0x1ab6,6}, + {0xd567,10}, {0x26013,8}, {0x11328,6}, {0x1e04a,3}, {0xe3ed,11}, {0x12d12,10}, {0x312fe,2}, {0x2a7e0,5}, + {0x6d87,12}, {0x1f74d,9}, {0x1e6fd,8}, {0x2b19,5}, {0x180f2,10}, {0x1e31f,5}, {0x1cd02,9}, {0x22f7b,8}, + {0x1b6c8,9}, {0xa94d,11}, {0x30e47,4}, {0x2439b,8}, {0x1e250,8}, {0x2ecea,3}, {0x301dd,3}, {0x2526b,5}, + {0x595e,13}, {0xe35,6}, {0x8715,8}, {0x27f43,7}, {0x4bbd,5}, {0x1e6b5,5}, {0x1d2e1,8}, {0x4791,5}, + {0x277dc,4}, {0x15878,10}, {0xcd2d,4}, {0x8dd0,5}, {0x181d8,10}, {0x273ea,7}, {0x251bb,7}, {0x798f,6}, + {0x15332,10}, {0x2fbac,3}, {0x273c0,7}, {0x67fe,13}, {0x4ad8,8}, {0x11bcb,10}, {0x11142,5}, {0x227c3,8}, + {0x1fc4b,7}, {0x4de8,2}, {0x2e3d,6}, {0x6e94,4}, {0xaae5,12}, {0x17ee0,8}, {0x2659b,8}, {0x13406,5}, + {0x163,3}, {0x219f1,7}, {0x2ad68,5}, {0x2c6af,5}, {0x1ffab,9}, {0x2a67,5}, {0x13016,5}, {0x45a5,14}, + {0xd685,5}, {0x1797,10}, {0x16c0c,7}, {0x1cb50,9}, {0x2d1c7,6}, {0x2e0e1,3}, {0x31197,6}, {0x20a6d,4}, + {0x12154,6}, {0x2b57b,6}, {0x2426b,8}, {0x1715c,3}, {0x190ca,5}, {0x18767,4}, {0x23ecb,8}, {0x4e4c,9}, + {0x9201,7}, {0x25f3b,8}, {0x1a1b9,8}, {0x2ca7,7}, {0x278b3,5}, {0xb961,6}, {0x22e43,8}, {0x1bc68,6}, + {0x1fe3,5}, {0x190ae,6}, {0x21641,8}, {0x6c0e,13}, {0x3383,3}, {0x3028a,5}, {0x14720,10}, {0x98fd,12}, + {0x2fd3,13}, {0xe962,7}, {0x28ed3,4}, {0x3ad1,13}, {0x26583,8}, {0x5b32,8}, {0x10a3,6}, {0x29621,2}, + {0x34f7,14}, {0x2fa3a,2}, {0x4ece,7}, {0x1d059,9}, {0x123da,8}, {0x152f,4}, {0x113ac,8}, {0x1be33,9}, + {0x20032,6}, {0x1eda,15}, {0x210d1,7}, {0x13262,10}, {0x1dd01,9}, {0x182b4,6}, {0x2657b,8}, {0x2eee1,5}, + {0x2db81,6}, {0x15ef,7}, {0x52aa,13}, {0x77bf,4}, {0x5bdd,11}, {0x1d104,7}, {0x29000,4}, {0x16f84,10}, + {0x20cb9,6}, {0x1e193,7}, {0x22096,5}, {0x230fe,5}, {0x2e8b,6}, {0x115d0,11}, {0xb805,6}, {0x10e9a,9}, + {0x2fcba,3}, {0xb21d,12}, {0x18818,7}, {0x19535,9}, {0x13082,8}, {0x6227,9}, {0x2b509,4}, {0x2a292,7}, + {0x1f94e,5}, {0x31450,3}, {0x17948,10}, {0x227bb,8}, {0x1c5cb,9}, {0x2d581,6}, {0x18be2,8}, {0x243cb,8}, + {0x20889,8}, {0x1b4b,4}, {0x13d34,9}, {0x10ea5,6}, {0x273ab,7}, {0x10a20,8}, {0x2250d,6}, {0x1a5b2,9}, + {0x1d143,9}, {0xb34,3}, {0xeb0f,7}, {0x1849e,10}, {0x30179,3}, {0x11c7b,11}, {0x1840a,4}, {0x2e00d,6}, + {0x16651,5}, {0x2c037,6}, {0x12218,9}, {0x2d0fb,4}, {0x1e8f,15}, {0x29399,7}, {0x28b57,7}, {0x2220b,8}, + {0x785a,2}, {0x1025b,4}, {0x8f0d,10}, {0x394f,8}, {0x1dd5b,9}, {0x7489,5}, {0xefdf,11}, {0x1cdc8,9}, + {0x2755d,7}, {0x21fdb,8}, {0x27aa4,7}, {0x384d,7}, {0x1c142,7}, {0x1419,3}, {0x142d4,8}, {0x29624,5}, + {0x14252,10}, {0xce96,6}, {0x30929,2}, {0x1a4fe,9}, {0x88f5,12}, {0x3353,6}, {0x228cb,5}, {0x2804d,7}, + {0x2a555,7}, {0x1becc,9}, {0x2666b,7}, {0xb54d,9}, {0x1ba94,9}, {0x1f7f,14}, {0x2de17,3}, {0x30b9f,4}, + {0x1c98e,9}, {0xa1df,6}, {0x56e6,6}, {0x208b9,8}, {0xeab,7}, {0x1f5b8,8}, {0x5bf5,13}, {0x7ed5,12}, + {0x12510,9}, {0x1d3dd,8}, {0xabf9,12}, {0x21319,8}, {0x25543,8}, {0x1e53,12}, {0x179d6,10}, {0x231f6,4}, + {0x161ec,9}, {0x24e65,5}, {0x1eee6,4}, {0x2eb3f,4}, {0x12092,9}, {0x28f55,7}, {0x591d,13}, {0x1207a,5}, + {0x22c7,15}, {0x1e9b2,8}, {0x206f9,8}, {0x18ebc,6}, {0x2292b,8}, {0xddff,10}, {0xa1a9,11}, {0x18c28,7}, + {0xdf28,11}, {0x21eb,5}, {0x17ae4,10}, {0x1aab0,9}, {0x2d9e3,6}, {0xd5f9,8}, {0x265d3,8}, {0xa359,11}, + {0x64ff,13}, {0x1e1,3}, {0x2475b,8}, {0x28467,7}, {0x2664,4}, {0xab51,11}, {0x2406b,8}, {0x5896,5}, + {0x2c90,9}, {0x1f060,9}, {0x2bfcb,6}, {0xb99d,7}, {0xb42d,4}, {0x14d38,10}, {0x124ca,10}, {0x26193,8}, + {0x2e007,6}, {0x989d,12}, {0x20ad1,8}, {0xd3db,11}, {0x26ea3,7}, {0x2548b,8}, {0x14f7,8}, {0x1070,7}, + {0x1b30,8}, {0x2afdc,6}, {0x2c481,6}, {0x30363,8}, {0x187c8,10}, {0xeeab,8}, {0x192ad,9}, {0x134b0,10}, + {0x28b67,4}, {0x2edfb,5}, {0xcedf,11}, {0x1bf77,9}, {0x7e15,12}, {0x344a,5}, {0x394d,3}, {0x5e8c,13}, + {0x10868,11}, {0x5930,5}, {0x21be1,8}, {0x48a9,10}, {0x19940,9}, {0x182f0,6}, {0x12e3e,10}, {0x27969,7}, + {0x261a3,8}, {0x231de,5}, {0x13eb0,10}, {0x196af,9}, {0x1747,8}, {0x14932,10}, {0x15544,9}, {0x2ccb7,6}, + {0xaf9d,4}, {0x4a49,13}, {0x3ce0,4}, {0x1263c,10}, {0x1d092,3}, {0x944d,5}, {0x1775e,8}, {0x101b4,10}, + {0x6f8b,4}, {0x23315,5}, {0x1eb86,5}, {0x2c04,3}, {0x5471,12}, {0x27464,4}, {0x13ca8,10}, {0x2583b,6}, + {0x8be9,12}, {0x2e247,6}, {0x308a1,4}, {0x11806,4}, {0x1e097,7}, {0x1855f,7}, {0x2015,15}, {0x30b6f,4}, + {0x67d7,13}, {0xc04a,7}, {0x241f3,7}, {0x30f2d,4}, {0xbf49,12}, {0x179c2,9}, {0x1a83a,9}, {0x269e8,7}, + {0x29f7,4}, {0xe1a6,11}, {0x2a4b4,7}, {0xa8b1,12}, {0x13e42,6}, {0x81c4,5}, {0x65c7,7}, {0x1ae7c,7}, + {0x2bc85,4}, {0x27eb0,7}, {0x33fb,7}, {0x1248e,8}, {0x16c23,5}, {0x9219,10}, {0x20a0c,5}, {0x300cd,5}, + {0x44b9,4}, {0x18f4d,9}, {0x171c8,7}, {0x26d45,6}, {0x26e1,15}, {0x158ba,4}, {0x133fc,6}, {0x9735,12}, + {0x1eab7,9}, {0x2222b,8}, {0x14dba,9}, {0x331b,7}, {0xf3bf,4}, {0xcded,8}, {0x3b41,14}, {0xe21f,10}, + {0x1d7ea,5}, {0x7c89,9}, {0x688d,13}, {0xabf9,11}, {0x11557,10}, {0x19550,9}, {0x17ab2,10}, {0xf47e,5}, + {0x11204,4}, {0x14860,10}, {0x17fe7,4}, {0x15f30,7}, {0x1b2ab,9}, {0x23bab,8}, {0x40d5,14}, {0x14edc,6}, + {0x1019,5}, {0x19289,6}, {0x88ad,12}, {0x1b371,9}, {0xaecb,4}, {0x2e906,5}, {0x11eb9,4}, {0x265e3,8}, + {0x881d,11}, {0x724d,9}, {0x19cc4,8}, {0x8235,12}, {0x2e814,6}, {0x3435,4}, {0x20859,8}, {0x11179,11}, + {0x2bab,6}, {0x1b0b,5}, {0x393b,9}, {0xc36,32}, {0xd6e8,11}, {0x1bdfd,9}, {0x1c2ce,9}, {0x1c6f8,5}, + {0x30a49,2}, {0x2e0df,5}, {0x6e1d,6}, {0x3b5d,13}, {0x14004,10}, {0x2c591,4}, {0x46b1,3}, {0xa93b,6}, + {0x2f8c1,5}, {0x288ec,7}, {0x29f89,7}, {0x30246,3}, {0x2a015,5}, {0x1faca,7}, {0x109bd,11}, {0x1ba4e,4}, + {0x1e84a,9}, {0x124ed,5}, {0x14806,9}, {0xb145,12}, {0xeacd,9}, {0x1f504,9}, {0xcc98,11}, {0xa94d,12}, + {0x126fa,10}, {0x27f35,6}, {0x1fdbc,9}, {0x5158,13}, {0x9711,8}, {0x7cd7,4}, {0x235dd,3}, {0x1e0fa,6}, + {0x219f1,8}, {0x14f72,9}, {0xdccb,7}, {0x6c1b,9}, {0x2a5fd,4}, {0x2ef4c,5}, {0x2547d,6}, {0x27bfb,7}, + {0x691c,13}, {0x26183,7}, {0x29fc,10}, {0x11020,4}, {0x1e91e,4}, {0x29a2f,3}, {0x12bb,7}, {0xf4e6,10}, + {0x21ddb,6}, {0x2ba7f,6}, {0x15738,7}, {0x2d6ef,6}, {0x11e4e,6}, {0x2a9a7,6}, {0x18eb2,5}, {0x299f3,5}, + {0x235e3,7}, {0xa269,9}, {0x10b23,5}, {0x76a0,6}, {0x21599,7}, {0x1e0bb,9}, {0xea49,10}, {0x167e,3}, + {0x2627b,8}, {0x9921,9}, {0x5102,7}, {0x124cf,5}, {0x8835,9}, {0x2fd6e,3}, {0x1f8b5,9}, {0x2c8cd,2}, + {0x10c25,6}, {0x11677,3}, {0x2d8f0,3}, {0xc081,7}, {0x1297e,6}, {0x24813,8}, {0x132c6,10}, {0x1417,12}, + {0xcc0,2}, {0x2aa1,15}, {0x1a990,8}, {0x2821,3}, {0x75db,13}, {0x1c4f3,9}, {0x2234,3}, {0x2b70d,6}, + {0x1899,6}, {0x1e42d,9}, {0x1196e,4}, {0x1d3a7,9}, {0x11fab,6}, {0x6a88,13}, {0x2ea6b,5}, {0x4313,9}, + {0x30e95,2}, {0x71b7,7}, {0xeb7,3}, {0x13e56,10}, {0xa29e,7}, {0x20302,9}, {0x24e7b,8}, {0x7158,5}, + {0x26d29,7}, {0x2f19f,5}, {0x20559,4}, {0x1817,16}, {0x44a9,6}, {0x1f22b,6}, {0x2ca3f,4}, {0xd428,11}, + {0x170f,8}, {0x21731,8}, {0x2a4a6,7}, {0x18770,2}, {0x2d3fd,4}, {0x78a5,6}, {0x18520,9}, {0x15804,6}, + {0x20beb,6}, {0x8439,8}, {0x16766,5}, {0x13b2c,10}, {0x2607d,6}, {0x1f7b4,5}, {0x2966a,7}, {0x16430,7}, + {0x1b7d6,9}, {0x286c,3}, {0x353f,3}, {0x2c477,2}, {0x2c181,6}, {0x1d626,9}, {0xc371,8}, {0x15b6c,4}, + {0x4199,13}, {0x13806,6}, {0xb865,5}, {0x12574,10}, {0xb09d,7}, {0xcbf9,5}, {0x112d9,5}, {0x18bc6,4}, + {0x2d2ab,6}, {0x2a4d3,4}, {0x17394,10}, {0x283b1,6}, {0x194a8,5}, {0x1a522,9}, {0x5fa3,7}, {0x8a81,12}, + {0x4ef5,11}, {0x24ff3,8}, {0x41ca,6}, {0x2e28f,4}, {0x154a4,9}, {0x24393,8}, {0x16921,5}, {0x2498,10}, + {0x2cbe5,5}, {0x19b53,7}, {0x2805b,7}, {0x212b9,7}, {0x10b6f,6}, {0xdc73,10}, {0x680b,9}, {0xcf1a,4}, + {0xdf54,11}, {0xe051,9}, {0x2efd3,4}, {0x77a2,13}, {0xcde2,11}, {0x22bfd,6}, {0x2bf6e,3}, {0x6241,13}, + {0x3082f,4}, {0x2dc1d,6}, {0x2c21,8}, {0xcb1d,5}, {0x7378,5}, {0x1b5b1,9}, {0x2600b,6}, {0x116a7,5}, + {0x48d2,6}, {0x264a3,7}, {0x2232b,8}, {0x18b60,8}, {0x18ed2,4}, {0x30792,4}, {0x1701a,10}, {0x2cef7,6}, + {0x299e5,5}, {0x2986,3}, {0x2cd1,14}, {0x3577,5}, {0x1c910,9}, {0xf16,3}, {0x2f920,5}, {0x1f38,2}, + {0x143b0,10}, {0x27fac,7}, {0x235cb,8}, {0x1b21b,9}, {0x11da4,11}, {0x16cfa,8}, {0x286ed,6}, {0x298fc,7}, + {0x30b4f,4}, {0x1c9b2,9}, {0x9ab9,11}, {0x30a6f,4}, {0x20b09,8}, {0x773a,10}, {0x1b9bc,6}, {0x6651,13}, + {0x130be,10}, {0x29f4a,7}, {0x19895,9}, {0x160de,10}, {0x1887,7}, {0x1e1c0,9}, {0x2e9a3,5}, {0x1252e,8}, + {0xdb3a,5}, {0x6ce0,5}, {0x2e8b1,5}, {0x1ae10,9}, {0x16732,9}, {0x27c1e,7}, {0x95cd,12}, {0x3614,4}, + {0x10672,4}, {0x5d15,9}, {0x29f29,3}, {0x22893,8}, {0x16484,6}, {0x22fbd,5}, {0x1985f,9}, {0x1a267,5}, + {0x30aef,4}, {0x27701,6}, {0xebe7,4}, {0x15ee,4}, {0x29620,3}, {0x1011a,7}, {0x1dbcf,9}, {0x1797c,5}, + {0x1ca03,9}, {0x10f2e,4}, {0x5ee7,13}, {0x1f366,9}, {0x2f8d0,5}, {0x3495,14}, {0x2d4eb,4}, {0x11daf,11}, + {0x2ed0,7}, {0x4e4c,10}, {0x30851,4}, {0x2ab00,7}, {0x8ff3,6}, {0x13a46,9}, {0xe2da,11}, {0x158e6,10}, + {0xf98a,11}, {0xbb73,6}, {0xd954,3}, {0x308eb,4}, {0x2b79d,6}, {0x92ff,4}, {0x13e10,9}, {0x25aeb,7}, + {0x23543,8}, {0x1561,4}, {0x5315,4}, {0x16dd6,9}, {0x116af,8}, {0x11fbf,8}, {0x27c2,15}, {0xb97c,3}, + {0x308e,5}, {0xf34f,7}, {0x4f6a,11}, {0x63ba,6}, {0x2373b,6}, {0x1c181,8}, {0x1164b,5}, {0x25e2,14}, + {0x2d845,6}, {0x195e9,9}, {0x11281,8}, {0x1c0a0,7}, {0x3314,3}, {0x30eb1,2}, {0x11bec,10}, {0x1f609,9}, + {0x302a8,5}, {0x18200,6}, {0xb5dd,11}, {0x1ca5,5}, {0x1d641,9}, {0x2fbe,7}, {0x12f92,10}, {0x2ece8,5}, + {0x19ca0,9}, {0x1edf3,8}, {0x1f155,7}, {0x62df,4}, {0x2499d,5}, {0x2e27d,3}, {0x21629,8}, {0x62fc,4}, + {0x2b935,6}, {0xf65c,11}, {0x4be9,13}, {0x2aa8a,4}, {0x114de,5}, {0x2a89d,7}, {0xc458,11}, {0x36a9,11}, + {0x3097,14}, {0x19e93,5}, {0x12eac,10}, {0x1af4b,9}, {0xd3c5,11}, {0x15f80,10}, {0x1cac,3}, {0xe7c,7}, + {0x1ce9a,5}, {0x10188,5}, {0x20bb5,4}, {0x2a81f,7}, {0xd992,11}, {0x14284,10}, {0x13963,5}, {0x4ee8,13}, + {0x1dfad,9}, {0x1c439,6}, {0x119d1,11}, {0xa54a,7}, {0xc6af,6}, {0x1d2a2,5}, {0xa869,12}, {0x1b179,9}, + {0x2f3f,8}, {0x316ff,3}, {0x1e316,9}, {0x1437,9}, {0x2d70d,6}, {0x12092,7}, {0x61b9,6}, {0x78da,7}, + {0x23d33,8}, {0x1f2cd,9}, {0x1b049,7}, {0x78d0,5}, {0x182e8,8}, {0x214bc,4}, {0x206a1,8}, {0x4d07,10}, + {0xfd31,11}, {0x1baa6,9}, {0x1d8c0,9}, {0x2a532,7}, {0x21549,8}, {0x11937,8}, {0x30160,3}, {0x2f1bd,5}, + {0x1137e,11}, {0x2751e,7}, {0x4bbc,6}, {0x4249,6}, {0xaf71,8}, {0x30d2f,4}, {0x15cf6,10}, {0x4169,6}, + {0x577d,11}, {0x292b9,6}, {0x14ee,9}, {0x15774,10}, {0x14513,5}, {0x13014,10}, {0x2e35b,5}, {0x705f,13}, + {0x89ea,7}, {0x19913,9}, {0xb919,6}, {0x10760,7}, {0x74ca,13}, {0x6b99,6}, {0x613f,4}, {0x8c6d,12}, + {0x1ea78,9}, {0x1c544,9}, {0x1e11e,9}, {0x18f13,4}, {0x9561,12}, {0x118c,2}, {0x291b6,7}, {0x12380,10}, + {0xdfd8,6}, {0x63cb,3}, {0x10d8,3}, {0x18018,3}, {0x25b73,8}, {0x20cd1,8}, {0x16796,6}, {0xec45,5}, + {0xfff,5}, {0x12a42,10}, {0x20068,6}, {0x204d0,2}, {0x569b,3}, {0x19c61,9}, {0xf00,5}, {0x6d94,12}, + {0x25403,7}, {0x11003,10}, {0x25375,4}, {0x22b03,8}, {0x7bbd,10}, {0x30633,2}, {0x2a734,4}, {0x1837,16}, + {0x20e79,7}, {0x18d7,16}, {0x148da,5}, {0x2450d,6}, {0x23b4b,8}, {0x1dbed,6}, {0x22995,6}, {0x2670b,8}, + {0x30c43,4}, {0x80a9,8}, {0xeba,3}, {0x219c5,4}, {0x17f58,10}, {0x14a7c,9}, {0x17dea,6}, {0xbf55,7}, + {0xd90e,9}, {0x7339,2}, {0x2f374,5}, {0x1d1d3,9}, {0x2a28b,7}, {0x176dc,10}, {0x3559,9}, {0x24edb,8}, + {0x15b52,10}, {0x31a35,4}, {0x27f3c,7}, {0x8605,4}, {0x1b76a,9}, {0x30dd,14}, {0x17e13,5}, {0x1db6c,5}, + {0x1848a,6}, {0x28d7b,5}, {0x10bb9,2}, {0x4af9,6}, {0x2941c,2}, {0x255cb,8}, {0x2568b,8}, {0x21fbb,7}, + {0x10f53,8}, {0x25693,6}, {0x1cc4e,9}, {0x195aa,9}, {0xaed5,12}, {0x197b4,8}, {0x29663,7}, {0x2175,4}, + {0x2bdc7,6}, {0xb8e9,9}, {0xd2b2,11}, {0x1927,6}, {0x28c37,7}, {0x24d65,3}, {0x30255,3}, {0x21ed3,8}, + {0x6eac,6}, {0x21ea3,8}, {0x1f3,3}, {0xb16f,4}, {0x3534,3}, {0x2d7a9,6}, {0x10eb,4}, {0xec85,11}, + {0x23ab3,7}, {0x10a3,10}, {0x62c3,13}, {0x4b5a,13}, {0x2a167,5}, {0x150f8,10}, {0x2e6f9,4}, {0x1eb08,9}, + {0x6437,5}, {0xb769,12}, {0x21a09,6}, {0x29ccb,4}, {0x27197,7}, {0x2fa79,5}, {0x10c46,11}, {0x25213,6}, + {0x12c45,4}, {0x116cd,6}, {0x2534b,8}, {0x1679,4}, {0x1c55,7}, {0x13136,10}, {0x37f9,14}, {0x4dca,13}, + {0xcded,10}, {0x17bca,10}, {0x14aa4,9}, {0x2c49f,6}, {0x1848c,4}, {0x23aa3,8}, {0x1e02b,9}, {0xae5d,11}, + {0x12506,10}, {0x1ca5,8}, {0x2237,6}, {0x9b44,5}, {0x21249,7}, {0x1150a,6}, {0x15120,9}, {0xdb37,4}, + {0x1a30f,5}, {0x9021,12}, {0xa8d5,12}, {0x4a50,2}, {0x25093,5}, {0xe94c,11}, {0xbc19,4}, {0x5e5e,2}, + {0x144a0,9}, {0x2911c,7}, {0x17103,4}, {0x196dc,9}, {0x1adb6,6}, {0x2acec,5}, {0x24ba3,6}, {0x20711,8}, + {0x2e9f3,4}, {0x27f8,6}, {0xbaa5,12}, {0xa659,8}, {0x1b1b8,8}, {0x1ec3a,5}, {0x9e9d,12}, {0x2eff1,4}, + {0x11ff6,6}, {0xdeba,11}, {0x15dc8,10}, {0x192da,8}, {0x1787,12}, {0x2a8f8,7}, {0x21679,8}, {0x8e1d,10}, + {0x187,3}, {0x2b809,6}, {0x11a20,4}, {0x18775,3}, {0x17468,4}, {0x2c829,6}, {0x18a7,15}, {0x1dd2e,6}, + {0x5500,13}, {0x194db,9}, {0x8a27,6}, {0x7281,10}, {0x100d8,9}, {0x20db1,7}, {0x2263b,6}, {0x3027,14}, + {0x61ce,6}, {0x1c487,9}, {0x2ccf9,6}, {0x30145,5}, {0x282f4,6}, {0x1a546,9}, {0x8ec5,11}, {0x32f1,13}, + {0x7f11,8}, {0x5ff8,6}, {0x30cab,4}, {0x9537,5}, {0x12a7e,10}, {0x2224b,8}, {0x145fe,9}, {0x720c,6}, + {0x14985,7}, {0x15f8a,10}, {0x5e7f,13}, {0x19724,9}, {0x4dbd,13}, {0x99f9,12}, {0x1ed20,4}, {0x1e874,3}, + {0x513e,11}, {0x126f5,5}, {0x1fa89,6}, {0x16b42,10}, {0x31348,3}, {0x2b4e0,6}, {0x3137e,3}, {0x1557,16}, + {0x3767,6}, {0xffd6,5}, {0x29170,7}, {0x2d65f,6}, {0x17c7e,6}, {0x2050a,2}, {0xb6c1,12}, {0x8d69,8}, + {0x20aa9,8}, {0x2b0b0,4}, {0x12d3a,10}, {0x2a0e7,7}, {0x1a54f,9}, {0x1630e,6}, {0x755b,4}, {0x1839,4}, + {0xd189,10}, {0x1c382,5}, {0x9edf,5}, {0x23663,6}, {0x2e225,3}, {0xb1a0,5}, {0x27938,7}, {0x16868,9}, + {0x1f5ca,6}, {0x2c33,4}, {0x1f0ba,9}, {0x1e6eb,9}, {0x1d5d2,3}, {0x1e41d,7}, {0xb96f,3}, {0x25523,7}, + {0x25b1b,7}, {0xad01,7}, {0x3022d,3}, {0x947d,6}, {0x2cd23,6}, {0xb84d,12}, {0x70b3,7}, {0x18b71,3}, + {0x5b9f,8}, {0x1e9bd,7}, {0x1ce2b,6}, {0x118b5,3}, {0x24bd3,4}, {0x21589,8}, {0x30bd3,4}, {0x1763e,4}, + {0xe6f,11}, {0x127fe,9}, {0x2f99a,3}, {0x125a6,10}, {0x31e7,13}, {0x31a55,2}, {0x2270,4}, {0x14176,10}, + {0x1ad9b,9}, {0xb5f5,5}, {0x297c1,7}, {0xcdf3,4}, {0x20ee1,8}, {0x1c046,9}, {0x4958,7}, {0x3ca4,6}, + {0x2f65f,4}, {0x258eb,8}, {0x1fb8e,5}, {0xdf9b,6}, {0xf809,11}, {0x1f783,9}, {0x2d110,3}, {0x28bd0,5}, + {0x299ec,7}, {0xdf59,5}, {0x5951,8}, {0xacb9,12}, {0x3015e,5}, {0x1731c,10}, {0x25f43,8}, {0x104d7,7}, + {0x57cf,2}, {0x225bb,8}, {0x17c7,16}, {0x28524,7}, {0x2906d,7}, {0x30c77,4}, {0x5978,12}, {0x91d9,4}, + {0xc975,11}, {0x10519,11}, {0x1418a,10}, {0x2a690,7}, {0x5d2d,6}, {0x1e96c,7}, {0x1820a,10}, {0x396a,2}, + {0x2ac7a,7}, {0x23ec5,6}, {0x27e86,7}, {0x2fd6c,5}, {0x2775c,7}, {0x50a2,13}, {0x1e93,3}, {0x20831,7}, + {0x2c5e3,6}, {0x208c1,5}, {0x28a7b,7}, {0x2d401,6}, {0x2f2cf,5}, {0x1d4fd,9}, {0x19eb7,5}, {0x1dbbd,6}, + {0x14ba8,10}, {0x1cf27,8}, {0x2f8bc,5}, {0x1e86,8}, {0x15a7,8}, {0x29154,7}, {0x5daf,13}, {0x129d4,8}, + {0x15a1c,10}, {0x2eac2,5}, {0x2ac1,4}, {0x306d,8}, {0x2c109,6}, {0x133ac,8}, {0x28697,7}, {0x2f9c0,4}, + {0xb1ed,12}, {0x20f69,8}, {0xbd28,4}, {0x2582b,8}, {0x2bc7d,6}, {0x178b4,5}, {0x9f83,4}, {0x187ca,4}, + {0xda42,10}, {0xe808,5}, {0x2991f,5}, {0x15b34,10}, {0x28c94,2}, {0x1141a,4}, {0x310e9,6}, {0x176b4,6}, + {0x5e24,6}, {0x8914,5}, {0x22aab,8}, {0x1f555,6}, {0x19037,9}, {0x4f29,13}, {0x17902,5}, {0x1afff,8}, + {0x22b43,8}, {0x1c8d1,9}, {0x1789e,10}, {0x26233,5}, {0x1ecee,6}, {0x24aeb,8}, {0x4edb,13}, {0x1a024,8}, + {0x16c82,7}, {0x1d746,9}, {0x1c529,6}, {0xfbfd,11}, {0x16bf6,8}, {0x10f27,7}, {0xe71b,11}, {0x6282,13}, + {0x29043,7}, {0x2668b,8}, {0x1ffef,3}, {0x16e80,8}, {0x159f,3}, {0x2d4bb,6}, {0x1c6a3,9}, {0x19e50,9}, + {0x2370b,7}, {0x18772,3}, {0x29d7c,5}, {0x25fbb,6}, {0xab1,3}, {0xe1a6,5}, {0x2808c,6}, {0x13172,9}, + {0x10b6,4}, {0x1a2b5,9}, {0x11a15,6}, {0x141f8,9}, {0x4597,14}, {0x1c34c,9}, {0xe235,10}, {0x21e6,10}, + {0xed14,11}, {0x1487e,10}, {0x18a7,16}, {0x271c8,7}, {0x163ae,10}, {0x1521a,10}, {0x70ad,5}, {0x2d2b7,6}, + {0x2d88d,6}, {0x25b63,8}, {0xc135,12}, {0x9781,5}, {0x180ac,10}, {0x74a3,12}, {0x2d797,4}, {0x1d104,6}, + {0x30b8b,4}, {0x1cfe4,9}, {0x1e8e3,9}, {0x5850,7}, {0x19a02,4}, {0x23e13,8}, {0x2de9b,3}, {0x27d7c,7}, + {0x4f0f,12}, {0x1727,16}, {0x3459,4}, {0xb9d9,12}, {0x193bb,8}, {0x167a0,10}, {0x2308b,8}, {0x10be8,4}, + {0xf4fc,11}, {0x12e7,4}, {0x24c4b,8}, {0x29c7e,7}, {0x2f8d,13}, {0x1db90,9}, {0x1ac8,3}, {0x248b3,5}, + {0xa0dd,12}, {0x2570,3}, {0x8889,5}, {0x13bea,9}, {0x25dbb,8}, {0x1165f,11}, {0x1a345,8}, {0x1b0e0,8}, + {0xe016,4}, {0x4b33,13}, {0x1aefa,5}, {0x1e6f4,6}, {0x106d1,11}, {0x1182d,8}, {0x1211e,10}, {0x2db09,4}, + {0x2e6b2,3}, {0x45df,4}, {0xc4b2,5}, {0x17880,10}, {0x1125a,6}, {0x88b9,12}, {0x29ea7,7}, {0x48d2,11}, + {0x21ef3,8}, {0x3a8b,14}, {0x22afb,8}, {0x19b9,2}, {0xf995,11}, {0x10663,11}, {0xe5f2,7}, {0x24cab,6}, + {0x18606,6}, {0x18e44,10}, {0x17b18,2}, {0x148b,4}, {0x25c43,8}, {0x302da,5}, {0x2d12e,2}, {0x2f75e,4}, + {0x1b7a0,9}, {0x29dd9,3}, {0x19d07,5}, {0x13ed8,7}, {0x59d3,13}, {0xab89,3}, {0x1d8c9,8}, {0x5cb8,11}, + {0xbf85,6}, {0x6a3a,13}, {0x200b9,7}, {0x9309,12}, {0x1404a,10}, {0xb72f,7}, {0x2554b,8}, {0x24053,8}, + {0x291bf,5}, {0x18588,6}, {0x28d80,7}, {0x25a23,8}, {0x241f5,3}, {0xe83,15}, {0x1b91e,5}, {0x1269,4}, + {0x2a90d,5}, {0x1747,16}, {0x1f9f0,9}, {0x30b5f,4}, {0x157ec,10}, {0x4153,5}, {0x2ab70,7}, {0x28a89,6}, + {0x27dd7,7}, {0x1019e,11}, {0x14626,9}, {0x1906d,8}, {0x30b87,4}, {0x25f4b,8}, {0x5c02,12}, {0x2eac7,5}, + {0x450b,6}, {0xd65c,7}, {0x3b5f,5}, {0x1c058,8}, {0x1f327,9}, {0x109,3}, {0x30237,3}, {0xf38,5}, + {0x27aea,6}, {0x7ca8,5}, {0xcc40,7}, {0x23a15,5}, {0x3306,7}, {0x2f790,5}, {0x155e4,10}, {0x17e0e,10}, + {0x28ddb,7}, {0x256f3,8}, {0x1a05e,5}, {0x1063,2}, {0x775c,5}, {0x585a,12}, {0xdc9f,10}, {0x6b8c,13}, + {0x1fe3c,4}, {0xcc35,7}, {0xdd4f,6}, {0xf7fe,11}, {0x2e4dc,5}, {0x1bbf,7}, {0x516b,7}, {0x52f8,13}, + {0x526d,3}, {0x216c5,4}, {0x2ac03,7}, {0xcc91,7}, {0xced4,10}, {0x2993,5}, {0xd50f,11}, {0x1b73d,9}, + {0x2d87,14}, {0xa5ed,8}, {0x636c,13}, {0x153aa,10}, {0x1a634,5}, {0x30264,3}, {0x155c6,10}, {0x15544,10}, + {0x207e9,6}, {0x1980e,8}, {0x5fde,13}, {0x1c007,9}, {0x53c8,12}, {0xf69,14}, {0xe209,7}, {0x2349b,8}, + {0xf9d2,5}, {0x15f70,5}, {0x1c6d9,6}, {0xf596,8}, {0x30ef1,4}, {0x19dc,5}, {0x668d,3}, {0x2ced6,3}, + {0xc3c2,7}, {0x2939,10}, {0x2f7fe,5}, {0x18ed2,6}, {0x2f63f,5}, {0x2cf87,5}, {0x69d2,9}, {0x13262,9}, + {0x6dfc,7}, {0xb38c,3}, {0x29846,7}, {0xad34,3}, {0x1e44,8}, {0x87c9,12}, {0xd806,11}, {0x232ab,8}, + {0x2c69d,6}, {0x198aa,4}, {0x12c36,10}, {0x2d097,4}, {0x1fb7,3}, {0x13c6c,10}, {0x22b33,8}, {0x3175c,3}, + {0x23193,6}, {0x2c361,6}, {0xf9fd,6}, {0x2573b,6}, {0x4209,13}, {0x17052,4}, {0x842d,10}, {0x30ae1,2}, + {0x22153,8}, {0xb7a7,2}, {0x12ade,4}, {0x1273c,4}, {0x1c958,9}, {0x23a2b,8}, {0xc6c0,11}, {0x22536,5}, + {0x311d3,5}, {0x13898,10}, {0xe282,5}, {0xb87f,4}, {0x1e84c,3}, {0x91ad,12}, {0x14ae0,10}, {0xa519,4}, + {0x9bb5,12}, {0x31981,4}, {0x8af9,12}, {0x2e759,3}, {0xef87,11}, {0xd6d8,5}, {0x220db,7}, {0x1fbf,4}, + {0x25bb,4}, {0x150c6,10}, {0x7826,3}, {0x19d54,9}, {0x20811,6}, {0x2ac2f,3}, {0x2709b,6}, {0x138c,3}, + {0x2d749,6}, {0x12b8f,7}, {0x22fcb,8}, {0x1ec5e,6}, {0xf575,11}, {0x26ae4,7}, {0x1be8,3}, {0x17664,5}, + {0x2e804,6}, {0x27b4c,7}, {0x4ccc,7}, {0xe4be,9}, {0x23d5,15}, {0x10658,11}, {0x2f6e3,2}, {0xd3f1,11}, + {0xb7f9,8}, {0x251db,5}, {0x403b,8}, {0x301f,8}, {0x25263,5}, {0x17e3c,4}, {0x6782,7}, {0x121aa,10}, + {0x590a,6}, {0x2dbab,6}, {0x28a3c,7}, {0x25d9,5}, {0x2abe7,6}, {0x1b13,3}, {0x1c5f8,9}, {0xd895,11}, + {0x1b425,5}, {0x300ac,3}, {0x2858,15}, {0xc045,12}, {0x2cdf5,6}, {0x4edb,11}, {0x20137,8}, {0x45cf,12}, + {0x15d1e,10}, {0x3c75,9}, {0x4afa,5}, {0x1073f,7}, {0x5b4e,5}, {0x7788,6}, {0x1de2a,7}, {0xeb1a,11}, + {0x251f,4}, {0xd8ed,11}, {0x17a08,10}, {0x1caed,9}, {0x1220e,10}, {0x1d45b,9}, {0x24ba3,8}, {0x2e864,6}, + {0x3e89,13}, {0x14ec8,10}, {0x26bd2,7}, {0x30845,4}, {0x6cc7,8}, {0x10e63,7}, {0x10a78,8}, {0xcd60,9}, + {0x2ecf7,5}, {0xcb90,11}, {0x2a4c9,4}, {0x1b305,9}, {0x2adf1,5}, {0x17254,6}, {0xa592,4}, {0x1db00,6}, + {0x284de,7}, {0x204b4,5}, {0x2fff8,3}, {0x19f28,9}, {0x13b8c,4}, {0x878d,10}, {0x18b1,6}, {0x1989,3}, + {0x1daca,9}, {0xc933,7}, {0x2df3d,4}, {0x1143b,4}, {0xbca9,12}, {0x17380,6}, {0x170b0,10}, {0x35f3,7}, + {0x413d,8}, {0x1b248,9}, {0x16728,10}, {0xe1b1,11}, {0x246bb,7}, {0xbf19,9}, {0x6cfc,5}, {0x2eb2b,5}, + {0x1e249,6}, {0x59b9,12}, {0x319f9,4}, {0x11a3f,11}, {0x260cf,4}, {0x29cd2,7}, {0x18584,6}, {0x3591,5}, + {0x70fb,8}, {0x1aa71,9}, {0xcf47,4}, {0x11e07,8}, {0x1e03d,7}, {0x24bd5,3}, {0x159c2,9}, {0x12a38,10}, + {0x22b5b,8}, {0x283a3,7}, {0xfcfa,11}, {0x1005f,11}, {0x11871,8}, {0xcbb1,11}, {0x1088,6}, {0x29766,7}, + {0x2323b,8}, {0x21f13,8}, {0x28b54,3}, {0x28d4f,7}, {0x3da9,12}, {0x20719,8}, {0x2522b,7}, {0x288d,7}, + {0x9945,10}, {0x1f38a,9}, {0x25957,4}, {0x1eea7,6}, {0x138c0,9}, {0x3b95,14}, {0x12db6,6}, {0x10d54,5}, + {0x12484,10}, {0x14090,9}, {0x2698f,5}, {0x25483,8}, {0x2dea7,3}, {0x18fc2,9}, {0x1f521,5}, {0x739f,9}, + {0x1f7f,15}, {0x23deb,8}, {0x29a4e,7}, {0x894e,4}, {0x29e3,10}, {0x2d2e1,5}, {0x27851,7}, {0x2fafb,5}, + {0x2e8ca,5}, {0xc484,11}, {0x57b1,13}, {0xe823,8}, {0x1f5dc,6}, {0x30eeb,4}, {0x36e1,14}, {0xd196,6}, + {0x1555a,8}, {0x57f2,13}, {0x9b55,12}, {0x11dc,4}, {0x116fc,8}, {0x15198,10}, {0x123b,7}, {0x1edad,7}, + {0x336f,14}, {0x8bc5,12}, {0xbabd,12}, {0x302d0,5}, {0x218f1,8}, {0x2c5bf,6}, {0x301db,5}, {0x30d5f,4}, + {0x175bc,5}, {0xa0ca,7}, {0x2403d,3}, {0x8fb5,12}, {0x73ae,3}, {0x256db,8}, {0x108d6,6}, {0x1c23e,9}, + {0x302d5,5}, {0x18ec6,8}, {0xe369,10}, {0x2284b,8}, {0xaea7,6}, {0x48d0,13}, {0x24343,6}, {0x2f2c0,5}, + {0x30381,7}, {0x1dbea,9}, {0x2966c,5}, {0x2ba07,5}, {0x20581,4}, {0x2915b,7}, {0x182dc,7}, {0x6d46,13}, + {0xf0f2,11}, {0x6b31,6}, {0x6a06,13}, {0x2f7b3,5}, {0x29fc1,7}, {0xb560,5}, {0x1979,6}, {0x2d794,3}, + {0x5aca,13}, {0x7899,12}, {0x1948a,9}, {0x1f801,9}, {0x17cb2,4}, {0x1eedd,9}, {0x9ddd,8}, {0x19c14,5}, + {0x7d38,4}, {0x2cced,6}, {0x2ad3,3}, {0x111b0,5}, {0x1a93,11}, {0x18a72,4}, {0x8b11,9}, {0xec7a,11}, + {0x80b5,12}, {0x1b626,9}, {0x2f36f,4}, {0x7a9d,8}, {0x2b581,6}, {0x2c633,4}, {0x10b2e,5}, {0xf84b,11}, + {0x16782,9}, {0x1f2fa,5}, {0x1844e,10}, {0x12c40,9}, {0x10f8c,6}, {0x1792a,10}, {0x9135,5}, {0x3318,3}, + {0x2df3d,3}, {0x1bf02,9}, {0x3313,6}, {0x2c65,10}, {0x2a1bd,3}, {0x290c3,5}, {0xcb6f,11}, {0x4fd2,13}, + {0x10be9,5}, {0x25b33,4}, {0x107e4,11}, {0x9302,5}, {0x29f7b,7}, {0x10e9a,3}, {0x2884b,7}, {0x193e1,6}, + {0xb8e3,3}, {0x1a308,4}, {0x1cc33,7}, {0x2a05b,6}, {0x1a1a7,9}, {0x1259c,10}, {0x272a8,6}, {0x21771,6}, + {0x234e,9}, {0xf60a,5}, {0x1f53a,6}, {0x6721,13}, {0x27667,7}, {0x6b58,13}, {0x1da8b,9}, {0x16a16,10}, + {0x2c46f,6}, {0xd588,11}, {0xaee8,5}, {0x11538,4}, {0x9129,12}, {0x1e652,6}, {0x184f8,10}, {0x1482e,9}, + {0x12556,10}, {0x2cebb,6}, {0x29001,3}, {0x299d0,7}, {0x10cb4,6}, {0x12bfc,4}, {0x9b98,5}, {0x3554,5}, + {0xda2c,11}, {0x2fc13,4}, {0x2616b,8}, {0xf8d,3}, {0x10f4a,6}, {0x1fb22,9}, {0x8f19,9}, {0x19ade,9}, + {0x28ed9,5}, {0x2d2bd,6}, {0x29dea,5}, {0x42bf,14}, {0x2507b,5}, {0x238d3,8}, {0x285b0,7}, {0x1ae61,9}, + {0x314d,13}, {0x138c0,10}, {0x2f172,5}, {0x107ad,11}, {0x6187,4}, {0x2447,4}, {0x729b,12}, {0x23dc3,6}, + {0xcdab,7}, {0x1b8ae,8}, {0x1ff43,4}, {0x1fcc0,9}, {0x3a29,7}, {0xf381,3}, {0x2ae06,5}, {0x2bc41,6}, + {0x10b4b,5}, {0x1266e,10}, {0x1a40b,9}, {0x20fe5,4}, {0x20613,5}, {0x1a7bc,9}, {0xb001,11}, {0x14e0d,7}, + {0x29a47,7}, {0x1799a,10}, {0x4aed,5}, {0x2f7f,14}, {0x20ac9,8}, {0x17a3c,3}, {0x75a7,13}, {0x4e3a,5}, + {0x1204e,11}, {0x83fd,12}, {0x1951e,5}, {0x30e3f,4}, {0x492d,4}, {0x423d,4}, {0x10d24,5}, {0x2669,15}, + {0x2a5b0,5}, {0x1fd7f,4}, {0x17534,4}, {0x90fe,3}, {0x2d9cb,6}, {0x12158,3}, {0x30147,3}, {0x10555,3}, + {0x48f0,7}, {0x15d6e,10}, {0x2bca7,5}, {0x2a253,7}, {0x17624,4}, {0x10efd,3}, {0x2bf83,6}, {0x11ec2,6}, + {0x1a882,9}, {0x2eab1,5}, {0x2d809,6}, {0xef8a,7}, {0x2d605,6}, {0x1e9a9,9}, {0x19c07,8}, {0x2b38a,4}, + {0x133de,10}, {0x16fa2,10}, {0x1967,7}, {0xc6fe,4}, {0x1cf9c,8}, {0x7233,8}, {0x1765d,2}, {0x1f5dc,9}, + {0x3074f,4}, {0x10377,8}, {0x1823e,3}, {0x7351,8}, {0x199,3}, {0xd90e,10}, {0x7604,7}, {0xa665,12}, + {0x1fd1c,4}, {0x43f3,14}, {0x1128c,11}, {0x28142,7}, {0x1feaf,7}, {0x27ab9,7}, {0x16502,10}, {0x2ece3,4}, + {0x222b6,5}, {0x305a,4}, {0xc195,12}, {0x436b,5}, {0x2b49d,2}, {0x16519,4}, {0x20bd1,8}, {0x11e80,11}, + {0x21dcb,8}, {0x21255,4}, {0x3142c,3}, {0xfb4d,11}, {0x13a8c,10}, {0x2ee55,5}, {0x1bce6,8}, {0x2c0b5,6}, + {0x1932b,8}, {0x1a22e,9}, {0x17fbc,6}, {0x10325,5}, {0x1ea0,4}, {0x195ce,9}, {0x26f9f,7}, {0x2e9dd,2}, + {0x1d194,9}, {0x175ec,10}, {0x2e8f9,3}, {0x19439,9}, {0x9465,12}, {0x161ab,5}, {0x1d6bf,9}, {0x14a72,10}, + {0xe11d,5}, {0xfd0c,4}, {0xc956,3}, {0x8691,8}, {0xb8d1,8}, {0xafe2,7}, {0x19064,9}, {0x18d68,7}, + {0xc000,6}, {0x10f27,11}, {0x9ca7,4}, {0x205d1,8}, {0x68a7,13}, {0xc035,3}, {0x2a3a,8}, {0x1b680,9}, + {0x41df,14}, {0x18a02,6}, {0x313f,8}, {0x25bd3,4}, {0x2f27a,4}, {0x1949,4}, {0x2cbaf,4}, {0x26ff3,7}, + {0x29e1,4}, {0x29dd2,2}, {0x29ce9,5}, {0x6660,7}, {0xab86,6}, {0x2c001,6}, {0x2e994,5}, {0xe7ec,11}, + {0x83a9,6}, {0x1fe8b,9}, {0x2e001,6}, {0x1a1b9,9}, {0x1a9ea,6}, {0x19997,3}, {0x25c1b,6}, {0x238a,13}, + {0xf129,11}, {0x63d4,7}, {0x37cf,13}, {0x1527,8}, {0xdff9,11}, {0x2655b,8}, {0x48fd,4}, {0x16a41,7}, + {0x121c8,10}, {0x19f5e,9}, {0x1ba43,6}, {0x2fa65,5}, {0x2ef74,4}, {0x20c09,7}, {0x2e013,6}, {0x2231b,6}, + {0x1bffe,9}, {0x25b1e,4}, {0x23243,8}, {0x2a05b,7}, {0x2f69b,4}, {0xb865,8}, {0x1bc9e,9}, {0xaf4,20}, + {0x17f0a,3}, {0x23463,7}, {0x14996,9}, {0x31b19,2}, {0x1ba70,9}, {0x24a33,8}, {0x3ce5,14}, {0x7397,8}, + {0x1ad1d,9}, {0x21d09,8}, {0x473b,14}, {0x16fb6,8}, {0x2076,4}, {0xf2e1,11}, {0x9d11,7}, {0x41d4,5}, + {0x1a735,6}, {0x5f5c,13}, {0x26b4,12}, {0x11599,11}, {0x1ded5,5}, {0x6fb6,9}, {0x143ce,10}, {0xb5dd,12}, + {0x20b91,8}, {0x25b5,10}, {0x8cb5,12}, {0x1a97e,9}, {0x3244,5}, {0x182d,10}, {0x4ac3,4}, {0x2a43d,7}, + {0x2051,15}, {0x260d6,3}, {0x96ed,11}, {0x254ab,5}, {0xeca,4}, {0x13125,7}, {0x1e41b,9}, {0x10f32,11}, + {0xcdcc,8}, {0x30cc3,4}, {0x15468,10}, {0x15eae,7}, {0x1d2b4,6}, {0x19271,4}, {0x17b7a,9}, {0x2f710,3}, + {0x1fcc2,6}, {0x10805,10}, {0x29dc0,7}, {0xd6a6,11}, {0x27107,4}, {0x6abc,13}, {0x10826,11}, {0xa299,12}, + {0x2650b,7}, {0x302c1,5}, {0x13564,10}, {0x1d6c1,7}, {0x19df8,3}, {0x717d,5}, {0x502d,13}, {0x31b29,2}, + {0x2690d,2}, {0x14971,3}, {0x5da2,12}, {0x19078,7}, {0x13f,3}, {0x2e7dc,8}, {0x1ab01,8}, {0x164b8,4}, + {0x102b,6}, {0x1a0c2,4}, {0x2599b,5}, {0x31b2b,2}, {0x8d8d,11}, {0xaac1,12}, {0x1d9a1,7}, {0x12e84,7}, + {0x1d023,9}, {0x1dc68,9}, {0x753f,4}, {0x1b6e3,9}, {0x12151,9}, {0x213c9,7}, {0x3756,4}, {0x28b49,7}, + {0x13208,10}, {0x1b758,7}, {0x30250,3}, {0x25eab,8}, {0x277cc,7}, {0x21839,7}, {0x2f73b,4}, {0x14d9c,10}, + {0x11afa,9}, {0x2d317,6}, {0x27786,7}, {0xf630,11}, {0x71da,4}, {0x75b6,5}, {0x17010,6}, {0x10cca,8}, + {0x1f285,6}, {0x241a5,4}, {0x3b73,4}, {0x21509,8}, {0x2436b,5}, {0x261b3,8}, {0x2e9df,5}, {0x1f92c,7}, + {0xfe4f,11}, {0x640e,7}, {0x354b,13}, {0xee53,11}, {0x229a,6}, {0x3083b,4}, {0x2e9fd,5}, {0xe8ae,3}, + {0x159e2,5}, {0x5937,13}, {0x26a04,7}, {0xa6d1,12}, {0x27d1,10}, {0xbf85,12}, {0x2a5c5,7}, {0x1d3d4,9}, + {0xbbdd,5}, {0x26c3,15}, {0xece3,5}, {0xc081,12}, {0x1034b,11}, {0x2c741,4}, {0xb865,12}, {0x1bb09,9}, + {0x1c442,6}, {0x12b37,5}, {0x26e48,7}, {0x1601,6}, {0x1b9e4,5}, {0x12e7a,10}, {0x2ec61,5}, {0x1587,15}, + {0x16a40,4}, {0x16232,10}, {0x174a2,5}, {0x2a7eb,2}, {0xfbf,14}, {0x13ed8,10}, {0x188ea,10}, {0x5f44,3}, + {0x2ff99,3}, {0x313ae,3}, {0x1b827,9}, {0x2aa5d,7}, {0x75b4,12}, {0x2f73,5}, {0x30e3d,2}, {0x1f878,3}, + {0x6ae3,8}, {0x8585,4}, {0x14c2a,10}, {0x17312,8}, {0x2336b,7}, {0x29de,15}, {0x21981,8}, {0x89b5,12}, + {0x10fcc,6}, {0x27644,7}, {0x5135,6}, {0x22b4b,8}, {0xf67,3}, {0x2f682,5}, {0x30f51,4}, {0x1b30e,5}, + {0x10382,10}, {0x20591,2}, {0x1f46b,9}, {0xc841,6}, {0x348c,4}, {0x2b7c1,6}, {0x30c97,4}, {0x11187,3}, + {0x24493,8}, {0x4434,5}, {0x1be84,9}, {0x1caf,11}, {0x1cb11,6}, {0xffe,9}, {0x142a,6}, {0xd793,4}, + {0x23bfb,8}, {0x2babd,4}, {0x1d8db,9}, {0x7e81,12}, {0x3169,13}, {0x1e2e0,5}, {0xa3ad,5}, {0x21571,8}, + {0xe85a,11}, {0x2c1e7,6}, {0x1459,4}, {0x12156,2}, {0x22acb,8}, {0x16d8a,6}, {0x2ea98,5}, {0x140bd,5}, + {0x1b81e,9}, {0x22f83,8}, {0x1f102,9}, {0x10566,7}, {0xc949,11}, {0xd709,11}, {0x2ad5a,7}, {0x318e9,4}, + {0xaa12,5}, {0x25d83,6}, {0x31702,3}, {0x30dc9,2}, {0x9f75,11}, {0x16c5f,5}, {0x24dbb,6}, {0x14c66,10}, + {0x117d5,7}, {0x64a6,11}, {0x1bb56,4}, {0x17e72,10}, {0x2423d,6}, {0xad20,5}, {0x1b689,9}, {0xa515,8}, + {0x21b49,8}, {0x2d2b3,3}, {0x1ecd3,9}, {0x7f21,8}, {0x31774,3}, {0x223e3,8}, {0x1913c,9}, {0x1e4ec,3}, + {0xb0cd,12}, {0xb3af,6}, {0x14d7,11}, {0xded0,10}, {0x332b,5}, {0x21059,6}, {0x143d,3}, {0x2f05a,5}, + {0x1fe31,6}, {0x281c,15}, {0x2c979,6}, {0x186f6,10}, {0x29671,4}, {0x1f43,15}, {0x12b3c,10}, {0x1565c,9}, + {0x1113,3}, {0x21f53,6}, {0x29058,7}, {0x16912,10}, {0x20de1,8}, {0x2baa3,6}, {0x180b6,10}, {0x11d68,5}, + {0x25233,8}, {0x232db,8}, {0x1218c,10}, {0xbfcf,5}, {0x298f7,3}, {0x15b66,6}, {0x78f9,5}, {0x1614c,10}, + {0x51b3,13}, {0xeae3,10}, {0x76c7,8}, {0x1efe2,9}, {0x277fa,3}, {0x308ed,2}, {0x1f34,11}, {0x7930,5}, + {0x17f44,5}, {0x23d7d,4}, {0x1bc8c,6}, {0x25eeb,8}, {0x17b5c,8}, {0x2be3,14}, {0x1acb1,8}, {0x1f486,9}, + {0x1aa95,6}, {0x1300,7}, {0x13168,10}, {0x1567,4}, {0x2efce,5}, {0x2617b,5}, {0x277e1,7}, {0xf29f,7}, + {0x124fc,10}, {0xc53f,5}, {0x14e72,4}, {0x57d8,13}, {0x2cd5f,5}, {0x9cab,6}, {0x2a1ab,5}, {0x2024a,4}, + {0x26fde,7}, {0x9ff9,10}, {0xb9c1,9}, {0x18ac0,6}, {0xd811,11}, {0x1a276,9}, {0x2e9c8,3}, {0xb925,12}, + {0x2a5ec,3}, {0x71c0,4}, {0xdc94,10}, {0x2ccef,4}, {0xc22b,6}, {0x530a,6}, {0x9d1d,12}, {0x7ebd,9}, + {0x1dc44,9}, {0xe5b6,5}, {0x1f2bb,6}, {0x249c3,8}, {0x20549,3}, {0xcc61,4}, {0x1095a,8}, {0x21259,8}, + {0xce45,6}, {0x2c397,6}, {0x9c92,7}, {0x2fc7c,5}, {0x1e574,2}, {0x29505,7}, {0xdc26,8}, {0x141d,3}, + {0x26403,8}, {0x484e,5}, {0x12704,10}, {0x2c4ff,5}, {0xfa5d,5}, {0xbc87,10}, {0x2f522,5}, {0x22573,8}, + {0x3b9d,6}, {0x2a4d7,5}, {0x1257e,10}, {0x1f2db,4}, {0x1cec4,9}, {0xfdec,11}, {0x12d26,10}, {0x724f,4}, + {0x2464b,4}, {0x2597b,8}, {0x29480,5}, {0x30223,3}, {0x79,3}, {0x2d593,6}, {0x302ad,5}, {0x18e7,15}, + {0x254e3,8}, {0xb1f9,11}, {0x579d,7}, {0x17146,10}, {0x13b5e,8}, {0x784b,13}, {0x11a81,7}, {0xd99d,11}, + {0x209a9,8}, {0x2cc7,10}, {0x17afa,6}, {0x2648b,5}, {0x6151,6}, {0x2699e,4}, {0xf61,3}, {0xb807,5}, + {0x2c571,5}, {0x185c4,6}, {0x11444,6}, {0x16bec,6}, {0x132e4,10}, {0x16160,10}, {0xd829,7}, {0x20d31,8}, + {0x1b1b8,9}, {0xe277,11}, {0x4f79,6}, {0x25d8b,7}, {0x111a5,4}, {0x1dc2,8}, {0xe8ff,8}, {0x293e6,6}, + {0x218b9,8}, {0xff6d,11}, {0x18892,7}, {0x15a08,10}, {0x1aebb,9}, {0x6cc4,11}, {0x20819,6}, {0x1ca5d,8}, + {0x1171a,11}, {0x6665,3}, {0x26b73,4}, {0x302b7,5}, {0xdaf2,11}, {0x80f6,4}, {0x2cc63,6}, {0x69df,12}, + {0x2eba8,5}, {0x200b9,9}, {0x2a3f7,6}, {0x77e5,7}, {0x2f595,5}, {0x116f,17}, {0x10b1d,11}, {0x4460,3}, + {0x15ee0,5}, {0x1cc7b,9}, {0x24aab,6}, {0xfe91,11}, {0x520e,6}, {0x17c92,10}, {0xa5cb,7}, {0x83ae,7}, + {0x17332,7}, {0x538d,7}, {0x78f4,5}, {0x3090b,4}, {0x2860b,7}, {0x20b89,7}, {0x2e159,3}, {0x2b6d1,5}, + {0x8fe5,11}, {0x16519,7}, {0x16f66,10}, {0x90a5,12}, {0x1cd9b,9}, {0x2e9e9,5}, {0x29ab7,7}, {0x2e487,5}, + {0x2b527,6}, {0x16da9,5}, {0x6a13,13}, {0xd83f,4}, {0xb847,4}, {0xca30,6}, {0x565f,6}, {0x1ef49,5}, + {0x2da7f,6}, {0x9fcd,8}, {0x2a6af,4}, {0xcd95,11}, {0x23fdb,8}, {0x2f2ed,5}, {0x27e55,7}, {0x248ff,4}, + {0x10ceb,11}, {0x1e451,9}, {0x572f,12}, {0xc9a5,7}, {0xef2f,11}, {0x15f44,7}, {0x2f83f,4}, {0x15886,3}, + {0x1b088,3}, {0x23fab,8}, {0xd1d6,10}, {0x12cd6,10}, {0x1d90,10}, {0x2a6c8,6}, {0x2231,15}, {0xa149,12}, + {0x16520,10}, {0x17d87,5}, {0x17f6c,6}, {0x9645,12}, {0x2be93,6}, {0x2dc65,6}, {0x2e5f,3}, {0x304c3,4}, + {0x1d4eb,8}, {0x123b,9}, {0x6c90,13}, {0x1ff00,7}, {0x4a5d,5}, {0x2bbc3,6}, {0x1338e,10}, {0x298d9,7}, + {0x182e6,10}, {0x30d43,4}, {0xddd8,6}, {0x3fbd,14}, {0x10edc,8}, {0x18cb4,10}, {0x20b61,8}, {0x23a9b,7}, + {0x33b5,13}, {0xe1df,5}, {0x2cac5,6}, {0x9aa6,7}, {0x170ee,3}, {0x112ce,6}, {0x358a,7}, {0x434b,14}, + {0x1fbe1,5}, {0x2b9d,5}, {0xac2f,6}, {0x27dde,7}, {0x2762f,7}, {0x1d18b,7}, {0xcc6c,4}, {0x13672,10}, + {0x10b40,3}, {0x222fe,5}, {0x3089,10}, {0x26d45,7}, {0x1a44a,9}, {0xfd5d,11}, {0x2e46e,5}, {0x15e7,7}, + {0x11502,8}, {0x1dae,10}, {0x1d7a0,9}, {0x2e88b,3}, {0x194ff,6}, {0x3e51,14}, {0x24bd3,5}, {0x2962b,7}, + {0xaf,3}, {0x21cd4,2}, {0x2457b,5}, {0x4c6b,13}, {0x2e157,5}, {0x1094f,11}, {0x2b66b,6}, {0x532c,13}, + {0x8ca9,12}, {0xe920,11}, {0xe2e5,7}, {0x2df73,4}, {0x2eed,5}, {0xd9c9,11}, {0xcc7c,5}, {0x4871,4}, + {0x12d80,10}, {0x25d0e,5}, {0x368d,14}, {0x18c64,7}, {0x2529b,8}, {0x207e,15}, {0x1ef1c,5}, {0x25933,8}, + {0x1979,3}, {0x5430,11}, {0x524f,13}, {0x27c9c,7}, {0x232b3,8}, {0x1e544,9}, {0x1f3f3,3}, {0x6386,12}, + {0x2f759,5}, {0x41bc,7}, {0x588e,8}, {0x3e0d,3}, {0x26a12,6}, {0x21b64,5}, {0x1d37a,6}, {0x28ead,7}, + {0x12c3,16}, {0x288c9,7}, {0x17ac6,4}, {0x11e49,11}, {0xd3,3}, {0xe28d,11}, {0x243f5,6}, {0xb67b,10}, + {0x2a317,5}, {0x1c3d,7}, {0x2d50d,2}, {0x11d4c,5}, {0x2a865,7}, {0xe6a2,11}, {0x1b5ce,7}, {0x2ce13,6}, + {0x3c9f,11}, {0x24e4b,8}, {0xc5a2,11}, {0x110b3,10}, {0x18f7,11}, {0x1c37,15}, {0x27d0f,4}, {0x270fd,7}, + {0x268c,2}, {0x1015c,5}, {0x23c83,8}, {0x1e370,9}, {0x29c15,5}, {0x25e6b,7}, {0x2219d,6}, {0x2867b,7}, + {0x1cbc5,9}, {0x31739,2}, {0xfc3f,11}, {0x14586,10}, {0x15316,4}, {0x2278b,8}, {0x647d,6}, {0x18200,10}, + {0x20c99,8}, {0x21cbc,5}, {0x1875c,6}, {0xc67a,4}, {0x59ed,13}, {0x8799,7}, {0x27f61,5}, {0x309b7,4}, + {0x602f,7}, {0x3032a,4}, {0x28737,3}, {0x4c05,6}, {0x146d0,8}, {0xdbfa,10}, {0x205b9,5}, {0x98a9,12}, + {0xfa71,10}, {0x870d,4}, {0x24623,6}, {0x2a85e,7}, {0x6f9c,8}, {0x1dee,3}, {0x26b31,7}, {0xc85b,7}, + {0x13078,5}, {0x10a2b,11}, {0x2265,4}, {0x199be,9}, {0x108cb,11}, {0x22333,8}, {0x30a2f,4}, {0x1ca0,13}, + {0x1c370,9}, {0x6991,13}, {0x16624,10}, {0x254eb,8}, {0x11654,11}, {0x194f6,7}, {0x5f42,13}, {0x21f2b,8}, + {0x2532b,8}, {0x2a3d4,7}, {0x1ed1b,9}, {0x28ea6,7}, {0x102b,10}, {0x27d52,7}, {0x11963,11}, {0x2e21d,6}, + {0x2d359,6}, {0x20d61,6}, {0x1a17,7}, {0xbedd,7}, {0x11c46,9}, {0x26d53,6}, {0x241bb,8}, {0x30f5d,4}, + {0xe6ef,11}, {0x18552,7}, {0x14fae,9}, {0x10d22,9}, {0x3b2c,7}, {0x25bbb,8}, {0x1272c,10}, {0x1ccf9,9}, + {0x16480,7}, {0x1f4a1,8}, {0xe195,6}, {0x1027a,10}, {0x12916,10}, {0x2d6df,4}, {0x221c3,8}, {0x2ca17,2}, + {0x2a4d2,3}, {0x2e019,6}, {0x24d68,3}, {0x1dc73,7}, {0x8511,7}, {0x2d041,6}, {0x10a0a,11}, {0x548b,13}, + {0x17b1,3}, {0x1669c,10}, {0x17fd6,4}, {0x10596,4}, {0x112ba,3}, {0x2ce0f,4}, {0x30f6f,4}, {0xa125,12}, + {0x284b4,7}, {0xd83d,11}, {0xf268,11}, {0x179c2,10}, {0xc93e,10}, {0x19e55,4}, {0x1ddeb,5}, {0x2d239,6}, + {0x12b46,10}, {0x4afc,3}, {0x3bd0,4}, {0x2a08c,7}, {0xd5bf,11}, {0x1a762,9}, {0x401f,13}, {0xff6f,5}, + {0x2de8d,5}, {0x1f687,9}, {0x6a8e,4}, {0x1355a,10}, {0x2dcb9,4}, {0x628f,13}, {0x217f9,8}, {0x2a00e,7}, + {0xb1bd,8}, {0x2733b,7}, {0x17df,8}, {0x2c1ff,6}, {0xb115,6}, {0x2f81,5}, {0x1501c,7}, {0x16e3,3}, + {0x239e,4}, {0xc529,11}, {0x1d97d,9}, {0xf9f8,11}, {0x2f907,4}, {0xf5ac,11}, {0x3d71,14}, {0x4e18,13}, + {0x70f1,3}, {0x7a13,6}, {0x249a3,8}, {0x2487b,8}, {0x28fd3,7}, {0xafd1,12}, {0x4c10,9}, {0x137f4,4}, + {0x2c01f,6}, {0x1a489,9}, {0x6e4f,7}, {0xd567,11}, {0x13690,7}, {0x2b19,4}, {0xe38a,11}, {0x1d413,9}, + {0x1745c,9}, {0xeb0f,11}, {0x19e3,3}, {0x67,3}, {0x97e9,12}, {0x14cfc,10}, {0x1d0bc,8}, {0x1f79e,8}, + {0x26940,7}, {0x18778,10}, {0xedd,2}, {0x30fa5,6}, {0xb9c1,6}, {0x15e54,10}, {0x2e734,5}, {0x2ce01,6}, + {0x2d319,2}, {0x21f63,7}, {0x18f83,7}, {0x309b,5}, {0x2d1e,4}, {0x18602,4}, {0x2e84c,8}, {0x200b9,5}, + {0x532c,12}, {0x9591,6}, {0x10d64,11}, {0x17f44,9}, {0x1cb23,9}, {0xb7d5,12}, {0x7de5,9}, {0x14c8e,7}, + {0xfa45,11}, {0x30cdf,4}, {0x2a35d,7}, {0xb7bd,5}, {0x1b9e0,9}, {0x1045a,4}, {0xb8e3,6}, {0x15cc4,10}, + {0x1ab1c,9}, {0x2f6ff,4}, {0x26986,7}, {0x3d49,4}, {0x25ccd,5}, {0x216c1,8}, {0x14518,10}, {0x306e7,4}, + {0xd362,7}, {0x4749,14}, {0x12baa,10}, {0x3b20,5}, {0x2c259,6}, {0x6f1a,12}, {0x307f,10}, {0x2572b,6}, + {0x143f6,10}, {0xdb34,6}, {0x17f3a,10}, {0x28a89,7}, {0x13d7,10}, {0x2acc7,7}, {0xac65,9}, {0x2fea4,3}, + {0xa36a,7}, {0x1e6fd,9}, {0x26dca,7}, {0xbab1,12}, {0x20188,9}, {0x24d23,6}, {0x2b4f6,10}, {0x220db,8}, + {0x2fa01,5}, {0x18804,6}, {0x228e3,8}, {0x1595e,10}, {0xbcdb,7}, {0xc069,10}, {0x24003,8}, {0x965d,8}, + {0x1e60c,4}, {0x2ca48,2}, {0xe3cc,10}, {0x8e41,12}, {0x1d3f8,6}, {0x910b,5}, {0x6cba,4}, {0xbbaf,6}, + {0xaddb,6}, {0x208f,6}, {0x2c83b,6}, {0x28594,7}, {0x11491,6}, {0x1e3d3,9}, {0x3025a,3}, {0x26bb6,7}, + {0x5f69,11}, {0xc84c,11}, {0x2bd5,5}, {0xa521,12}, {0xf5bd,5}, {0xdca2,7}, {0x18c0a,10}, {0x163fe,7}, + {0x27931,7}, {0x2ac96,7}, {0x1767,16}, {0x9339,12}, {0x28f7,6}, {0x8db1,8}, {0xee64,5}, {0x10c0f,10}, + {0x895b,6}, {0x19d7,10}, {0x2d95,6}, {0x55,3}, {0x11ae4,11}, {0xa68f,6}, {0x87bd,12}, {0x23213,8}, + {0x2e223,5}, {0x4a5d,6}, {0x8c01,11}, {0x1ba2b,6}, {0x20e59,8}, {0x2f1a4,5}, {0xe43a,11}, {0x20304,7}, + {0xfdf7,11}, {0x3008e,3}, {0x1c66d,9}, {0x17f52,4}, {0x7b09,11}, {0x2c1db,6}, {0x17f5a,5}, {0x1628c,10}, + {0x20fc1,7}, {0x1b1d3,9}, {0x12a24,10}, {0xc2f8,10}, {0x2f9f7,5}, {0x10edc,3}, {0x28702,7}, {0x257f3,8}, + {0x302a3,5}, {0x2aa9e,7}, {0x2842f,7}, {0x1de57,9}, {0x872d,12}, {0xb199,7}, {0x2e93f,5}, {0x1a793,5}, + {0x79d1,12}, {0x1d991,4}, {0x1bc62,5}, {0xe6a,2}, {0x18a2a,8}, {0x19145,9}, {0x30e2b,4}, {0x14892,10}, + {0x1a21c,8}, {0x11b1b,11}, {0x2d925,4}, {0x1ba4c,7}, {0x238a,4}, {0x27d75,7}, {0x1a1b2,7}, {0x153d2,10}, + {0x1ee5b,4}, {0x29ef,4}, {0xd230,6}, {0x18769,5}, {0x19280,9}, {0xa8e1,7}, {0x20681,8}, {0x2df1,5}, + {0x947d,7}, {0x3123,13}, {0x2e2fa,5}, {0x90f3,6}, {0x1e0d6,6}, {0x155d,3}, {0xed7c,6}, {0x1364a,8}, + {0xda1b,6}, {0x1afe4,8}, {0xc14d,7}, {0x1ecf7,6}, {0x18e30,8}, {0x1a2a3,9}, {0xc723,11}, {0xf2e,2}, + {0xde41,11}, {0xafeb,5}, {0x4847,9}, {0x30262,5}, {0x25633,6}, {0x7f41,7}, {0x2e8ac,5}, {0x172d6,10}, + {0x30a95,2}, {0x1eaa5,6}, {0x2dbe5,2}, {0x2ed9,8}, {0x1c4ea,9}, {0x440f,14}, {0x2148,8}, {0x8343,5}, + {0x21ba1,8}, {0x1855c,10}, {0x96bd,12}, {0x8535,8}, {0x10550,11}, {0x319dd,4}, {0x12e11,4}, {0x6a61,12}, + {0x17b8e,10}, {0x1df14,9}, {0x2e335,3}, {0x10c1a,5}, {0x3bbf,14}, {0xde4c,11}, {0x15850,10}, {0x17c16,4}, + {0xc4c6,11}, {0x10a62,7}, {0x26423,8}, {0x10862,4}, {0x10efb,6}, {0x1a8ea,4}, {0x16d68,10}, {0x15c95,6}, + {0x116f9,11}, {0x289ce,4}, {0x4432,7}, {0x8a99,12}, {0x261c7,4}, {0x2d725,6}, {0x2b70a,3}, {0x2de75,6}, + {0x47bb,4}, {0x26c5e,7}, {0x668b,4}, {0x2cf09,6}, {0x26ce3,7}, {0x26a97,6}, {0x114f4,6}, {0x2b545,6}, + {0x881d,12}, {0x70ad,13}, {0x275b8,7}, {0x1db09,9}, {0x2e1bf,3}, {0x1e274,9}, {0x104a2,6}, {0x2fb55,5}, + {0x2e7a,9}, {0x1dae7,7}, {0x1c809,2}, {0x1a02d,9}, {0x1e2bf,6}, {0x1f1b6,9}, {0x11819,3}, {0x24303,6}, + {0xaf2,34}, {0x2bd04,3}, {0x2ff58,3}, {0x274b5,7}, {0x8409,12}, {0x2f493,3}, {0x27b92,7}, {0x31965,4}, + {0xe0f,3}, {0x2d959,6}, {0x1ab1,11}, {0xcd6,3}, {0x1752a,4}, {0x10545,11}, {0x1c8ec,8}, {0x1bd0a,5}, + {0x1fdce,9}, {0x2882f,7}, {0xbca9,5}, {0xd6d2,11}, {0x38ec,4}, {0x24363,8}, {0x28d72,7}, {0x13459,3}, + {0x2f1e0,5}, {0x22d4b,8}, {0xd34c,11}, {0x47f1,14}, {0x11003,11}, {0x1f167,7}, {0x2b63b,6}, {0x8abd,12}, + {0x257bb,8}, {0x17bf2,10}, {0x295c7,2}, {0x26263,5}, {0x29ac5,7}, {0x13ee,9}, {0x27cd4,7}, {0x152c0,4}, + {0x2de27,6}, {0x16e80,10}, {0x294bf,6}, {0x58e9,13}, {0x2d965,6}, {0xf790,7}, {0x114e9,11}, {0x2e6c,9}, + {0x302c6,5}, {0x16138,10}, {0x1f986,2}, {0x11b5d,8}, {0x3e89,14}, {0x1ffa2,6}, {0x2879c,7}, {0x2d539,6}, + {0x3611,4}, {0x1f474,9}, {0x10193,8}, {0xea2c,7}, {0x1b42e,9}, {0x7aa9,5}, {0x103da,11}, {0x28a3,15}, + {0x26093,8}, {0x8421,10}, {0x2f9d9,5}, {0x66e0,12}, {0x9189,7}, {0x150da,10}, {0x53c1,4}, {0x236c3,7}, + {0x9e61,11}, {0x2c463,6}, {0x2ceaf,6}, {0x2c60d,6}, {0x2f98e,5}, {0x2efb5,4}, {0x2d881,6}, {0x2c3fd,6}, + {0x2aa27,4}, {0x1a5e8,9}, {0x27ba7,6}, {0xb9c3,4}, {0x169c6,6}, {0x11dba,6}, {0x24633,6}, {0x7392,13}, + {0x2f070,3}, {0x2a5e3,5}, {0x255a3,8}, {0x2f4d9,3}, {0x2c6c7,6}, {0xdd18,5}, {0x408f,14}, {0x2f722,5}, + {0x2a8f1,7}, {0x1fea6,6}, {0x167b4,10}, {0x14770,10}, {0x479f,5}, {0x1937,6}, {0xfe5,3}, {0xeae,2}, + {0x17cc4,7}, {0x4c30,4}, {0x2f0fd,2}, {0x4ddb,2}, {0x28fc2,3}, {0x13c9a,4}, {0x1374e,10}, {0x3008c,5}, + {0xe43d,6}, {0xbf38,5}, {0x13de2,6}, {0x1347,5}, {0x214c1,8}, {0xcc9a,4}, {0x4cb9,4}, {0x145cc,10}, + {0x21c8,10}, {0x18716,4}, {0x18176,5}, {0xe64e,7}, {0x29b82,7}, {0x16412,7}, {0x17a9e,10}, {0x12d94,10}, + {0x1ee71,8}, {0x1784e,10}, {0x2a5e8,6}, {0xca5c,11}, {0x14524,7}, {0x2ab4d,7}, {0x271eb,7}, {0xd78,24}, + {0x620d,8}, {0x10755,10}, {0xb7c5,4}, {0x23a0b,8}, {0x201f6,6}, {0x16cc8,9}, {0x2e01f,6}, {0x20056,6}, + {0x1d128,6}, {0x3109b,6}, {0x1dfb6,9}, {0x13938,9}, {0x195e0,9}, {0x18b42,5}, {0x191c3,9}, {0x1101b,2}, + {0x31a9e,2}, {0xcc6,5}, {0x1ebe0,9}, {0x19898,5}, {0x15508,10}, {0x753f,13}, {0x21e16,5}, {0x1b0c5,9}, + {0x12fb0,7}, {0x25c2b,4}, {0x2efda,3}, {0x174b6,9}, {0x944d,8}, {0xe5a5,10}, {0x234bb,8}, {0x250ad,3}, + {0x128b2,10}, {0x25dd3,8}, {0x987b,4}, {0x163e0,7}, {0x3f55,5}, {0x22ba,6}, {0x206a9,6}, {0xd16,8}, + {0x14243,5}, {0xdde3,3}, {0x2ee37,4}, {0x1926e,9}, {0x2ffdf,3}, {0x1947,9}, {0x12902,10}, {0x261fb,8}, + {0x257eb,8}, {0x30baf,4}, {0x2ca7,10}, {0xaacd,11}, {0xb867,8}, {0x177b8,10}, {0x171a0,10}, {0x12017,5}, + {0x29fd8,5}, {0x17362,10}, {0x21b99,8}, {0x1c12,7}, {0x185ea,3}, {0x8325,12}, {0xf59,7}, {0x2b97d,6}, + {0xd4da,4}, {0x13122,10}, {0x1f368,7}, {0x2fa3d,4}, {0x464d,11}, {0xd7a3,11}, {0x245fb,8}, {0x1890a,4}, + {0x1fedc,6}, {0x9921,12}, {0x1ef6d,6}, {0x12524,10}, {0x4757,9}, {0x16962,10}, {0x2f347,5}, {0xa659,12}, + {0x2b7bb,6}, {0x2604b,8}, {0x13280,10}, {0xf7b,5}, {0x1870c,8}, {0x20699,8}, {0x17a26,7}, {0x3d0f,11}, + {0x255fb,8}, {0x1445f,4}, {0x2f55,14}, {0x290cf,7}, {0x2260b,8}, {0x59cb,8}, {0x2e77f,3}, {0x14d88,7}, + {0x2510b,8}, {0xeaa,3}, {0xb51f,4}, {0x2eaf4,5}, {0x2981c,7}, {0x1b287,5}, {0x3911,6}, {0x29d3b,5}, + {0x2cdf1,4}, {0x1b44d,5}, {0x1f425,6}, {0x21229,8}, {0x1cb8f,8}, {0x309e7,4}, {0x2950c,7}, {0x11aad,11}, + {0x1a465,9}, {0x18bba,10}, {0xa420,5}, {0x5a6f,9}, {0x2c33d,6}, {0x7181,6}, {0x52d1,13}, {0x8559,12}, + {0x6789,13}, {0x2f2de,5}, {0x91e3,6}, {0x1e4b8,5}, {0x9f2d,8}, {0x2ba5b,6}, {0x2b8c,3}, {0x18a48,7}, + {0x13b54,9}, {0x20b41,8}, {0x17ac6,5}, {0x1f7a7,9}, {0x10e0b,6}, {0x16935,4}, {0xf969,11}, {0x10ec4,5}, + {0x1467,16}, {0x1ff48,7}, {0x2d155,6}, {0xeda3,7}, {0x26195,5}, {0xa3d1,7}, {0x4d5e,3}, {0x17894,9}, + {0x2491b,6}, {0x2501,11}, {0x23e5b,8}, {0x1abb0,4}, {0x1a9fc,9}, {0x1f2c4,9}, {0x229b3,8}, {0x943a,6}, + {0xc171,12}, {0x2ee8,4}, {0xff78,8}, {0x1101d,7}, {0x12050,9}, {0xfb1,4}, {0x205a4,2}, {0xb23c,5}, + {0x2f0d2,5}, {0x25a33,5}, {0x3018d,3}, {0x1d167,6}, {0x249bb,8}, {0x21cd9,8}, {0x111de,9}, {0x10c9e,11}, + {0x15684,10}, {0x3134e,3}, {0x9e61,12}, {0x20af1,8}, {0x3763,4}, {0x161ba,6}, {0x293f4,6}, {0x31b2d,2}, + {0x279c4,7}, {0x14a7,5}, {0x2625d,3}, {0x86e5,12}, {0x11218,6}, {0x16e62,9}, {0x3acb,6}, {0xb3f1,4}, + {0x15690,7}, {0x471f,10}, {0x27135,7}, {0x8781,12}, {0x203c9,3}, {0xcbf3,11}, {0x1a4da,9}, {0x2b91d,6}, + {0x1c964,6}, {0x1d2fc,5}, {0x21441,7}, {0x8a15,12}, {0x25363,8}, {0x1141,12}, {0x2b499,3}, {0x12f6,5}, + {0x1e8f1,4}, {0x3ac3,13}, {0x14edf,7}, {0xf8da,11}, {0x30235,5}, {0x6d21,3}, {0x23533,8}, {0x17420,7}, + {0x223bb,8}, {0xef2,5}, {0x16692,10}, {0x2996c,7}, {0x2a292,6}, {0x875d,12}, {0x962d,12}, {0x1f0ec,4}, + {0x1cc72,9}, {0x7fee,5}, {0x10a99,7}, {0x9111,12}, {0x3082d,6}, {0x2042,14}, {0x19f16,9}, {0xf65,18}, + {0x3035,14}, {0xe2a3,10}, {0x14803,3}, {0x1b0e0,9}, {0x9ecd,12}, {0x29177,7}, {0x2375b,8}, {0xc862,11}, + {0x1e26,15}, {0x20353,9}, {0xe190,11}, {0x313b1,3}, {0x30a1b,4}, {0x17e36,10}, {0x7a6d,12}, {0x1a76b,9}, + {0x15134,10}, {0x1daf7,9}, {0x2242e,5}, {0x199d0,9}, {0xf37b,7}, {0xfb37,10}, {0x1cc18,9}, {0x9901,8}, + {0x2f2ed,4}, {0xa089,12}, {0x306d3,4}, {0x14cb6,10}, {0xa365,12}, {0x2eba3,5}, {0x25efb,8}, {0x11f1a,11}, + {0x2ecf,2}, {0x1041f,8}, {0x9891,12}, {0x18f05,3}, {0x1c556,5}, {0x1fd3e,6}, {0x28c1,5}, {0x3169,10}, + {0x115f1,9}, {0x30afb,4}, {0x1ffee,3}, {0x15972,9}, {0x66bb,4}, {0x17e50,4}, {0x26373,8}, {0xa461,11}, + {0x76d2,6}, {0xcdfa,5}, {0x81d5,9}, {0x277a2,7}, {0x16728,6}, {0x1099,6}, {0x23e7,4}, {0x10e2f,6}, + {0x237cb,8}, {0x1486a,8}, {0x22d8,4}, {0x26333,8}, {0x16c50,10}, {0x30e37,4}, {0x20c79,8}, {0xde99,11}, + {0x2bc95,6}, {0x80d9,12}, {0x1887,16}, {0x17b4a,3}, {0x1a129,9}, {0x5f06,4}, {0x12cf4,6}, {0x2c067,6}, + {0x10d2d,9}, {0x17f04,4}, {0x30aed,2}, {0x9a9d,4}, {0x2b0ae,6}, {0x41e9,3}, {0x2f2b6,4}, {0x5eb3,13}, + {0x29c88,4}, {0x8b,3}, {0x1268c,5}, {0x1c832,6}, {0x1cb08,8}, {0x5903,13}, {0x14c7a,10}, {0x73ed,13}, + {0x18d4a,9}, {0x19503,4}, {0x299d7,7}, {0x1419e,10}, {0x14482,9}, {0x19cf1,9}, {0x2be8d,6}, {0x607a,13}, + {0x248bb,5}, {0x1653e,7}, {0x3c8a,7}, {0x1ef0c,3}, {0x1ff5a,5}, {0x87e1,12}, {0x25f0b,8}, {0x273dc,7}, + {0x2ca33,6}, {0x29965,7}, {0x2c62b,6}, {0x4145,14}, {0x18ceb,5}, {0x12e56,5}, {0x18b74,10}, {0xad1e,3}, + {0x12ad8,10}, {0xf4a4,10}, {0x21881,8}, {0x24dd3,8}, {0x62a3,6}, {0x17632,6}, {0x13c83,7}, {0x3704,7}, + {0x16296,10}, {0x25d13,8}, {0x1f1e,4}, {0x12e52,7}, {0x16e62,10}, {0x2ec2,7}, {0x110d6,4}, {0x1467,15}, + {0x3251,6}, {0x10f74,10}, {0x21241,8}, {0x137e,9}, {0xe61,14}, {0x194ff,9}, {0x9345,12}, {0x16893,7}, + {0x4d21,13}, {0x4d3b,13}, {0x30d05,2}, {0x4a35,3}, {0x48ea,5}, {0x1607a,10}, {0x8d15,11}, {0x1e3c1,9}, + {0x2edec,5}, {0x2ce5b,6}, {0x29051,7}, {0xb1c9,11}, {0x24993,8}, {0x742e,12}, {0x2247,5}, {0x24123,8}, + {0x8115,12}, {0x3743,14}, {0x240db,8}, {0x221d3,8}, {0x15224,10}, {0xbcc1,8}, {0xe7b5,11}, {0x1479,7}, + {0xd860,5}, {0x2b75b,5}, {0x24a03,8}, {0x121ad,5}, {0x2e75a,3}, {0x2a731,7}, {0x2cfbd,6}, {0x3ebb,2}, + {0x172cf,4}, {0x15594,10}, {0x4326,4}, {0x264eb,8}, {0x1700,6}, {0xdf96,11}, {0x1de33,9}, {0x153f0,10}, + {0xba81,9}, {0xcd11,11}, {0x176fa,10}, {0x2cbaf,5}, {0x170a6,10}, {0x3cd1,6}, {0x4fa6,5}, {0x1567a,9}, + {0x23f37,4}, {0x2d3b5,3}, {0x11725,5}, {0x8805,12}, {0x1da96,4}, {0x1d964,5}, {0x123d0,5}, {0x9294,4}, + {0x2a811,7}, {0x18b74,7}, {0xdfcd,10}, {0x1c451,9}, {0x31afd,2}, {0x1f3ed,5}, {0x24943,6}, {0x5f83,9}, + {0xcd1f,4}, {0x1e9e,15}, {0x16d24,8}, {0x3198,9}, {0x15922,10}, {0x7a0d,11}, {0x2c961,6}, {0x1ad1,3}, + {0x2213,14}, {0x4527,6}, {0x6da1,13}, {0x1162a,6}, {0x2fb7f,3}, {0x2c15,6}, {0x1392,2}, {0x2defc,3}, + {0x10592,7}, {0x1347e,10}, {0x7181,9}, {0x96a5,12}, {0x2efd3,5}, {0x10e30,5}, {0xf3d3,10}, {0x181a1,5}, + {0x29720,7}, {0xae09,12}, {0x311e2,5}, {0x21119,8}, {0x290dd,7}, {0x14036,10}, {0x2a1bc,3}, {0x2ff97,5}, + {0x14d4f,7}, {0x25cab,6}, {0x25fb3,8}, {0x1818f,3}, {0x3025f,3}, {0x5780,4}, {0x309a3,4}, {0x7d01,4}, + {0x6f1f,8}, {0x2610b,8}, {0xd861,4}, {0xfa87,7}, {0x268b5,3}, {0x8f91,12}, {0x5679,13}, {0xb09f,4}, + {0x152ce,10}, {0x31185,6}, {0x2d137,5}, {0x136ec,7}, {0x1549d,7}, {0xd05a,6}, {0x2b8cf,6}, {0x1b437,9}, + {0xb679,11}, {0x25ecb,8}, {0x3020a,3}, {0x19faa,5}, {0x11c25,8}, {0x24b33,8}, {0x26e87,7}, {0x549f,3}, + {0x19e7d,9}, {0x295de,7}, {0x14e0a,10}, {0x31b15,2}, {0xf73,4}, {0x30d03,4}, {0x31871,4}, {0xdb8c,10}, + {0xc17d,9}, {0x1625a,10}, {0x19238,7}, {0x2f3a1,5}, {0x15882,10}, {0xd11b,11}, {0xc67a,3}, {0x17790,10}, + {0x24607,3}, {0xb43b,10}, {0x2aca4,7}, {0x1cf81,9}, {0x240b3,8}, {0x90dd,4}, {0x1b911,9}, {0x217f1,8}, + {0x2b469,2}, {0xcf6,3}, {0xcc1,5}, {0x16836,7}, {0x2511b,8}, {0x7c11,12}, {0x1cc33,9}, {0x1fa65,9}, + {0xf6eb,11}, {0x2753a,7}, {0x1f5b8,9}, {0x21271,7}, {0x18764,10}, {0x27c48,7}, {0x1590e,8}, {0x21349,7}, + {0x193bb,9}, {0x2e238,3}, {0x1f600,4}, {0x18d72,10}, {0x22c73,8}, {0x1371,5}, {0x1fa14,9}, {0x2ecde,4}, + {0x19988,9}, {0x2b378,6}, {0x28c29,6}, {0x2bb1b,6}, {0x2ec02,4}, {0x1f7d4,5}, {0x19976,9}, {0x2269b,6}, + {0xcb9e,4}, {0x1be0f,9}, {0x1bede,9}, {0x2027b,9}, {0x1d12c,5}, {0x2432e,5}, {0x30bff,4}, {0x78f4,4}, + {0x30285,5}, {0x2ba0d,6}, {0x29afd,7}, {0x2d4a3,6}, {0x190e2,7}, {0x2b761,6}, {0xfed,2}, {0x29650,5}, + {0x11a6,5}, {0x2ea39,4}, {0x18520,10}, {0x4e48,3}, {0x13aa0,10}, {0x2d9a,8}, {0xf19,3}, {0x2a07e,7}, + {0x210a1,8}, {0x17f26,5}, {0xfa5e,5}, {0x144e,9}, {0x254c,15}, {0xbbeb,5}, {0x4f93,6}, {0x9a05,12}, + {0x1212,4}, {0x1b2b4,5}, {0x30b3b,4}, {0x6b24,13}, {0xe13a,4}, {0x144be,9}, {0x3751,9}, {0x1e625,9}, + {0x13e06,10}, {0x1f0d5,4}, {0x1f3ff,6}, {0x2b05a,6}, {0x1d9ce,9}, {0x202f5,4}, {0x28cfb,7}, {0x1db43,2}, + {0x2e82c,8}, {0x2aa25,7}, {0x2730a,7}, {0x1d830,8}, {0x6268,13}, {0x268ba,2}, {0x11354,3}, {0x26c8f,7}, + {0x6d2c,13}, {0xb69d,12}, {0x2acde,5}, {0x116f6,3}, {0xf1bd,4}, {0x7b9d,8}, {0x308cf,6}, {0x18afe,4}, + {0xa635,10}, {0x2df43,4}, {0x1ee95,6}, {0x1ceeb,5}, {0x1097,2}, {0x1f021,6}, {0x951c,6}, {0x2da07,6}, + {0x23383,7}, {0x16656,7}, {0x26a19,7}, {0x1d09,6}, {0x112ad,11}, {0x995d,12}, {0x15c42,10}, {0x110b3,5}, + {0x1440a,10}, {0x2659d,6}, {0x418e,5}, {0x10e40,5}, {0x19f04,9}, {0x2bc05,6}, {0x1827,16}, {0x24d4,15}, + {0x21b29,7}, {0x1807a,10}, {0x281dc,7}, {0xd,3}, {0x150ee,10}, {0x2b103,5}, {0x106b4,3}, {0x3ff5,14}, + {0x14e96,10}, {0x58cf,9}, {0x2566b,8}, {0x20f09,8}, {0x2de7b,5}, {0x1b0b,7}, {0x2a3b1,7}, {0x2c049,6}, + {0x1060b,11}, {0x251e3,6}, {0x1602a,10}, {0x1b761,8}, {0x2681b,6}, {0x2af23,7}, {0x1306e,6}, {0x17b4a,8}, + {0x559c,9}, {0x14cca,10}, {0x31205,5}, {0x13154,7}, {0x21a79,8}, {0x185c0,10}, {0x11ff6,11}, {0x1ec04,6}, + {0x29e3e,7}, {0x3196d,4}, {0x2779,4}, {0x266f3,7}, {0x289be,7}, {0x2ebfd,5}, {0x11b5f,3}, {0x1f348,3}, + {0x4d62,8}, {0x202f0,7}, {0x1c298,8}, {0x1493c,9}, {0x2a7f8,4}, {0x2b557,6}, {0x13f28,9}, {0x1f138,9}, + {0x1b0d9,4}, {0xac7d,12}, {0x219f,9}, {0x5b73,12}, {0x1e0b4,7}, {0x2b6b9,5}, {0x169e4,9}, {0x24cb5,3}, + {0x12a92,7}, {0x25fdb,8}, {0x2289b,7}, {0x114ff,11}, {0x8625,12}, {0x110f7,6}, {0x2f118,5}, {0x10dbc,11}, + {0xc95b,4}, {0x7b2d,12}, {0x1ce73,8}, {0x1dbab,9}, {0x24ab3,8}, {0xaca1,10}, {0x2adc0,5}, {0x28103,7}, + {0x2a2bc,6}, {0x2a01c,5}, {0x21619,8}, {0x30665,2}, {0x2727e,7}, {0x1d329,7}, {0xb5e9,5}, {0x31764,2}, + {0x1abe2,9}, {0x1f0e0,2}, {0x20949,8}, {0x13c6c,8}, {0x5f76,13}, {0x28612,6}, {0x2c98b,6}, {0x7ce1,4}, + {0x2ef8d,5}, {0x17f6c,8}, {0x2b9f5,6}, {0x2cd53,5}, {0x27771,7}, {0x12e02,9}, {0x843b,4}, {0x218c9,8}, + {0x2eda6,4}, {0x24d23,8}, {0x18994,10}, {0x24eeb,8}, {0x33ac,8}, {0x1dc8c,6}, {0x14bc1,5}, {0x1fc15,5}, + {0x2bf11,6}, {0x31a21,4}, {0xf000,11}, {0xbe3a,7}, {0x21def,4}, {0x19a4e,9}, {0x2b68f,6}, {0x275f0,6}, + {0x295c9,7}, {0x29b90,7}, {0x28fea,4}, {0x1ef8b,6}, {0x2ee6e,5}, {0xc279,4}, {0xf65,7}, {0x79a7,6}, + {0x270a9,7}, {0xa84c,5}, {0x7c29,12}, {0x18534,10}, {0xc6a6,4}, {0x2de95,3}, {0x9ab9,12}, {0xc980,11}, + {0x27fba,6}, {0xaeb3,10}, {0x192b6,9}, {0x2e83,8}, {0x2febb,5}, {0x186b0,6}, {0xfb63,11}, {0x20509,4}, + {0x1bbc6,9}, {0x30228,3}, {0x2bca1,6}, {0x360f,7}, {0x1db1b,9}, {0x4d2e,12}, {0x2587b,8}, {0x17d96,10}, + {0x171e2,4}, {0x116da,3}, {0x202a,2}, {0xcbc,2}, {0x26cf1,7}, {0x2d791,6}, {0x1c8b6,6}, {0x792f,2}, + {0x2ffe9,3}, {0x8cfd,7}, {0x5da2,13}, {0x11c70,10}, {0x3965,14}, {0x1df4a,9}, {0x155a8,10}, {0x25b7b,5}, + {0x27c6b,7}, {0x5775,8}, {0x1fd3e,9}, {0x1f729,7}, {0x179c4,4}, {0x1e4fc,6}, {0x16f0c,9}, {0xc5ce,5}, + {0x1ca27,8}, {0x6c01,13}, {0x1f8ff,3}, {0x305af,4}, {0xc141,12}, {0x23da3,5}, {0xddf9,6}, {0x14dba,10}, + {0x246a5,3}, {0x23c53,4}, {0x23e63,8}, {0x301b0,3}, {0x17103,7}, {0xf70f,7}, {0x28126,7}, {0x318f,4}, + {0xf948,11}, {0x1db26,4}, {0xa119,11}, {0x1738a,10}, {0xe5c0,6}, {0x19330,4}, {0x1702e,10}, {0x11b75,9}, + {0x11c9c,7}, {0x40f1,14}, {0x23566,5}, {0x1805c,4}, {0xe2c4,11}, {0xf4ba,11}, {0x2dcd,14}, {0x263db,8}, + {0x1538c,10}, {0x98b5,12}, {0xec64,7}, {0x1efff,7}, {0x119e7,11}, {0x264ab,8}, {0x16616,4}, {0x211d9,8}, + {0x6c35,8}, {0x23fd3,8}, {0x207b9,8}, {0x1f3a5,5}, {0x57d1,5}, {0x26994,4}, {0x1c103,9}, {0x114a9,6}, + {0x2a06b,3}, {0x103d,6}, {0x125b0,10}, {0x3005a,5}, {0x31a05,4}, {0xbf1b,7}, {0x2de23,3}, {0x217c1,8}, + {0x14f5e,9}, {0x1296,3}, {0xc49a,11}, {0xfd31,9}, {0xc4b3,8}, {0x743b,13}, {0x141da,10}, {0x2d89f,6}, + {0x1c9bb,9}, {0x17436,5}, {0x1301,2}, {0x2a604,7}, {0x13462,5}, {0x312ba,2}, {0x11d62,11}, {0x2a19d,5}, + {0x19db7,9}, {0x1bc8c,9}, {0xc378,4}, {0x19694,9}, {0x11cf4,5}, {0xcc4,3}, {0x10007,6}, {0x2077,3}, + {0x2fca,9}, {0x28963,7}, {0x86c6,7}, {0x31704,3}, {0x15f7,11}, {0x74f5,4}, {0x6270,5}, {0x20d8,13}, + {0x6a6e,12}, {0x17416,10}, {0x2c835,6}, {0x30241,3}, {0x6755,13}, {0x14d47,5}, {0x14e23,5}, {0xf457,5}, + {0x1d9f2,9}, {0x11fd5,10}, {0x1ffcf,9}, {0xa52d,12}, {0x27804,7}, {0x1d3b9,6}, {0x2d2f3,6}, {0x245c,14}, + {0x15166,10}, {0x30208,5}, {0x30eeb,6}, {0x1289,4}, {0x1b049,6}, {0x51ac,7}, {0x31ac1,2}, {0x10c04,11}, + {0x304c7,4}, {0x68d4,7}, {0x2652b,8}, {0x22b9b,6}, {0x2cd35,6}, {0x19763,9}, {0x77b6,6}, {0x21ec3,8}, + {0x3206,5}, {0x2a149,7}, {0x4de9,8}, {0x26c96,7}, {0x1f584,3}, {0x2ca89,6}, {0x100f9,11}, {0x2e20b,6}, + {0x2c667,6}, {0xf113,8}, {0x1cbbc,9}, {0x1fdfb,6}, {0x2e4b,9}, {0x1abbe,9}, {0x251eb,5}, {0x2c595,6}, + {0x10adb,9}, {0xedb9,11}, {0xdc68,11}, {0x2286b,8}, {0x18336,5}, {0x197b4,9}, {0x267f0,5}, {0x24375,3}, + {0xb75f,8}, {0x2ddcd,6}, {0x25cfb,8}, {0x10285,6}, {0x1c316,9}, {0x2e30e,5}, {0x1bd3c,3}, {0x25b0b,6}, + {0x11df1,6}, {0x25063,6}, {0x1ff00,5}, {0x1d36,6}, {0x1fde9,9}, {0x12fe2,10}, {0x266fb,8}, {0x1dc20,9}, + {0x17c6a,10}, {0x18f0e,5}, {0x241f5,5}, {0xf15,2}, {0x1690,3}, {0x2a619,6}, {0x1656b,5}, {0xd96c,5}, + {0x6275,13}, {0xfe3,8}, {0x2699f,3}, {0x1f663,9}, {0x28b34,7}, {0x10dc7,7}, {0x74e6,3}, {0x1f40c,3}, + {0x30923,4}, {0xbec7,10}, {0xb404,4}, {0x507b,8}, {0x5117,9}, {0x38ee,7}, {0x2bd97,4}, {0x1251a,10}, + {0x12b72,6}, {0x2e18d,6}, {0x1b8ae,9}, {0x1dee7,6}, {0x177c2,7}, {0x1240c,9}, {0x44a9,14}, {0x2ffd5,3}, + {0x296dc,5}, {0x2bd3d,6}, {0x2df49,4}, {0x6dc3,5}, {0x148f6,10}, {0x170e2,9}, {0x20ba1,5}, {0x3027b,5}, + {0xf89,4}, {0x1977,15}, {0x252d3,7}, {0x1cdec,8}, {0x1afe4,9}, {0x13776,8}, {0x261ce,3}, {0x12308,10}, + {0x19b92,9}, {0x71b7,4}, {0xf084,11}, {0x2d521,6}, {0xb4bd,12}, {0xff22,4}, {0x31cb,14}, {0xf2cb,8}, + {0x247e3,8}, {0x29bd6,7}, {0x729b,7}, {0x1f65a,6}, {0x215f,15}, {0xb985,12}, {0x3023c,3}, {0x25b83,8}, + {0x27605,7}, {0x24693,8}, {0x1b88a,9}, {0x1d8d2,9}, {0xb8dd,12}, {0xeec,2}, {0x114bd,6}, {0x1209b,5}, + {0x2de8f,3}, {0xae6c,5}, {0xd223,10}, {0x1d5ba,9}, {0xd59e,11}, {0x2378b,8}, {0xf5a6,6}, {0x36ef,14}, + {0x187a2,5}, {0xd202,11}, {0x4c10,13}, {0xd013,6}, {0x14bbc,10}, {0x1898a,7}, {0xd777,11}, {0x2887c,7}, + {0x26f67,7}, {0x25253,5}, {0x20c11,8}, {0x2fa24,5}, {0xfc30,4}, {0x27bed,7}, {0x2c0cd,6}, {0x59b2,7}, + {0x2ebe4,5}, {0x2409b,7}, {0x2d9bf,6}, {0xec53,6}, {0x28c33,4}, {0x11ce,7}, {0x2d7a9,4}, {0x1e35e,9}, + {0x156b6,10}, {0x473d,5}, {0x87ed,12}, {0x9b9d,12}, {0x6f8a,5}, {0xef45,11}, {0x29acc,7}, {0x11c67,7}, + {0x236d3,8}, {0x2e08b,6}, {0x2288b,8}, {0x1858e,6}, {0x27cb1,6}, {0xfd26,11}, {0x187f0,10}, {0x2e6c6,5}, + {0x278b6,4}, {0x1cf3,7}, {0xb9a9,12}, {0x12f8d,5}, {0xc6d6,11}, {0x2936f,7}, {0x1f9f9,8}, {0x28950,5}, + {0x2275,7}, {0x22fbb,8}, {0xf34f,11}, {0x1b83,8}, {0x20929,8}, {0x55e2,8}, {0x1b5a,7}, {0x30232,3}, + {0x3479,10}, {0x20589,3}, {0x1bc7f,4}, {0x210e9,8}, {0x17904,3}, {0x19d42,9}, {0x222ab,5}, {0x28f3b,5}, + {0x16462,10}, {0x4693,14}, {0x21f1e,5}, {0x6415,13}, {0x6215,4}, {0x21a91,8}, {0x11019,11}, {0x23323,8}, + {0x292a4,7}, {0x2a52b,7}, {0x16f4c,6}, {0x33d1,6}, {0x3839,5}, {0x531a,5}, {0x144a0,10}, {0xe0eb,10}, + {0x1781c,5}, {0x29b43,5}, {0x300ed,3}, {0x55d0,13}, {0x27c56,4}, {0xe2b4,5}, {0x4be3,6}, {0x2dbff,6}, + {0x2251,3}, {0x1c2d9,6}, {0x9b79,7}, {0x16b60,10}, {0x1fb61,9}, {0x1085d,9}, {0x44a3,2}, {0x21369,8}, + {0x24783,6}, {0xdd2e,11}, {0x29727,5}, {0x30280,5}, {0x16e1,4}, {0x24db6,5}, {0xee21,6}, {0x1f7a7,6}, + {0x1b6fe,8}, {0x234b3,8}, {0xc786,11}, {0xbe7d,9}, {0x2e1fb,3}, {0x168b0,4}, {0x827d,12}, {0x8f31,12}, + {0x1f1a4,9}, {0x1b02c,8}, {0x1567,16}, {0x2628d,5}, {0x2a3c6,7}, {0x1f00f,6}, {0x178d0,9}, {0x2ca09,6}, + {0x1deba,4}, {0x17a1,5}, {0x194b7,9}, {0x1174d,4}, {0x1862e,10}, {0x2ecb1,5}, {0x21ca1,7}, {0x15fc6,10}, + {0x373c,3}, {0x1ebd7,9}, {0x4295,9}, {0x23b3b,8}, {0x29911,4}, {0x116a5,7}, {0x27f4a,7}, {0xb60d,12}, + {0x4a1d,3}, {0x15ff,3}, {0x27fb3,7}, {0x146ee,10}, {0x109c8,9}, {0x12d62,10}, {0x25863,6}, {0x6df4,7}, + {0xec17,10}, {0x30f69,6}, {0x179b8,5}, {0x29cee,7}, {0x21f5b,8}, {0x103c4,7}, {0x13f82,10}, {0x1c15d,9}, + {0x2bcd7,6}, {0x2974a,7}, {0x2bf59,6}, {0x2672b,8}, {0x17016,4}, {0x11df3,3}, {0x2f43c,5}, {0x1958f,9}, + {0x13cf1,7}, {0x23626,5}, {0x4615,6}, {0x2ce9,3}, {0x1ea85,5}, {0x2e073,6}, {0xbc01,6}, {0x1009b,6}, + {0x3a68,7}, {0x20520,2}, {0x2edec,4}, {0x19eff,5}, {0xa8ed,11}, {0x2ac0a,6}, {0x11796,5}, {0x2de7d,3}, + {0xae63,3}, {0x56a0,9}, {0x257a3,8}, {0x16386,9}, {0x20068,9}, {0x2ec70,5}, {0x27a34,7}, {0x31969,4}, + {0x2fa3d,5}, {0x285da,6}, {0x1aacb,9}, {0x7d58,8}, {0x1270e,10}, {0x11208,4}, {0x2fe5e,3}, {0x296c5,7}, + {0x1048a,11}, {0x2eb41,2}, {0x301c9,3}, {0x19c34,9}, {0x21871,8}, {0x1772c,10}, {0xce7c,10}, {0x18a98,10}, + {0x24c8e,5}, {0x240fd,6}, {0x17864,8}, {0x30343,2}, {0x2297b,8}, {0x594c,3}, {0x2c57d,6}, {0x8229,12}, + {0x13b5e,10}, {0x11d4c,7}, {0xce94,6}, {0x27b1b,7}, {0xc08f,10}, {0x22143,8}, {0x28532,7}, {0x2c6a9,6}, + {0x4e47,5}, {0x30299,5}, {0xe21,2}, {0x31095,6}, {0x26273,6}, {0x23723,8}, {0x28ee,12}, {0x22d13,8}, + {0x19f77,2}, {0xdf49,11}, {0x2ad53,7}, {0x2af4d,7}, {0xc442,8}, {0x10e09,11}, {0x17c08,4}, {0x18c5f,5}, + {0x29cfc,7}, {0x301a1,3}, {0x1d035,9}, {0xe2a3,11}, {0x1d0f,5}, {0x15b02,7}, {0x21f3b,8}, {0x2cd41,5}, + {0x2b755,6}, {0x2a539,7}, {0xa065,10}, {0x15076,10}, {0x2a085,7}, {0x2435b,8}, {0x1c73,7}, {0x12578,6}, + {0x4f77,11}, {0x12150,10}, {0x2e06d,6}, {0x2437b,8}, {0x2a1e3,7}, {0x16f22,8}, {0x253fb,6}, {0xed61,9}, + {0x1f444,3}, {0xb75d,10}, {0x14b7,12}, {0xac1d,12}, {0x1b49a,9}, {0x2f00f,5}, {0x1243e,10}, {0x1327,8}, + {0x25e63,8}, {0x1226a,4}, {0x21981,6}, {0x5095,13}, {0x40c9,7}, {0xb7bd,12}, {0xe01a,10}, {0x2c02b,6}, + {0x18496,8}, {0x8805,11}, {0x157a6,10}, {0x13320,10}, {0xe1f8,6}, {0x10c93,11}, {0x58dc,12}, {0x33a1,6}, + {0x22843,8}, {0x150bc,10}, {0xd9ea,7}, {0x23d53,8}, {0x6970,7}, {0x2c8b,14}, {0x1fb58,9}, {0x2ea93,5}, + {0x16b74,10}, {0x1e7bf,4}, {0x1f37d,4}, {0x1efd0,9}, {0x26593,8}, {0x6def,13}, {0xa1cd,7}, {0x29a40,7}, + {0x20d89,8}, {0x41e5,2}, {0x11a4a,5}, {0x12984,10}, {0x2fe2c,3}, {0x210f1,8}, {0x7c35,12}, {0x60e2,5}, + {0xfd1,14}, {0xc6f7,7}, {0x39b9,14}, {0x16a98,10}, {0x44b7,14}, {0x25f9b,7}, {0xd874,11}, {0x31a7f,2}, + {0x142ac,10}, {0x5371,5}, {0x2bc91,3}, {0x16a5c,10}, {0x2ce9d,6}, {0x15ce2,10}, {0xb397,3}, {0x1d230,6}, + {0x2610d,6}, {0x17524,10}, {0x22f8b,8}, {0x2a62e,6}, {0x2c915,4}, {0x2f073,5}, {0x74f4,2}, {0x1ab57,4}, + {0x1aca,4}, {0x992d,12}, {0x258bf,4}, {0x17044,8}, {0x82b9,7}, {0x2cd9b,5}, {0x22c87,4}, {0x1cd0,3}, + {0x8d15,12}, {0x28c99,5}, {0x2012e,9}, {0x1df9,8}, {0x13be0,10}, {0xc96a,5}, {0x2c567,3}, {0x22d9b,8}, + {0x1e50e,8}, {0x10c1d,8}, {0x1f14a,6}, {0x264a3,8}, {0xa5b1,10}, {0x211e1,8}, {0x22cb3,8}, {0x301a6,3}, + {0x2aea5,7}, {0x17494,4}, {0x1b263,9}, {0x15fbc,10}, {0x76ec,13}, {0x13144,6}, {0x1db02,3}, {0x25c53,8}, + {0xe5f2,10}, {0x138de,9}, {0x46cd,12}, {0x25c8b,8}, {0x2df55,4}, {0x1e2bc,9}, {0x1ec28,6}, {0x69f3,6}, + {0x2fc1f,2}, {0x179a4,10}, {0x28e59,6}, {0x274fd,4}, {0xb6fd,9}, {0xa318,5}, {0x7498,11}, {0x1b596,8}, + {0x163cf,7}, {0x181a,3}, {0x13d0c,10}, {0xc7e9,10}, {0x2ca53,4}, {0x2382b,8}, {0x7541,4}, {0x7414,4}, + {0x272c6,4}, {0x8b05,12}, {0x238b3,8}, {0x1f342,6}, {0x25f2b,7}, {0x16250,10}, {0x1df3a,6}, {0x9e85,12}, + {0xc2ff,4}, {0x2d17,10}, {0x1c50e,9}, {0x2d6d1,6}, {0x30200,3}, {0x15b3e,10}, {0xe823,11}, {0x9d43,3}, + {0x10b8d,4}, {0xdb5a,6}, {0x25343,7}, {0x1fab8,7}, {0x2488b,8}, {0x19697,5}, {0xbed3,9}, {0xa73d,12}, + {0xead,4}, {0x15eba,4}, {0x9081,12}, {0x1a635,4}, {0xfad,6}, {0x554e,6}, {0x20901,8}, {0x2aff4,6}, + {0x23fbb,7}, {0x253db,5}, {0x100d2,6}, {0xd14a,3}, {0x1295c,10}, {0x1e865,5}, {0x30b77,4}, {0x7831,13}, + {0x29d91,5}, {0x19724,7}, {0x1c802,7}, {0x129f2,10}, {0x1e154,6}, {0xe0e2,3}, {0x1ea30,6}, {0xb27f,7}, + {0x133b6,10}, {0x13c7,16}, {0x2356b,8}, {0x7797,3}, {0x2c31f,5}, {0x23ab3,8}, {0x2ad9f,2}, {0xb571,11}, + {0x7170,5}, {0xd39e,6}, {0x2dce9,6}, {0x19f3c,7}, {0x11b15,6}, {0x86a3,6}, {0x122fe,10}, {0x464f,3}, + {0x798b,4}, {0x262d5,3}, {0x6dc8,13}, {0x176b4,10}, {0x21c79,8}, {0x127ae,9}, {0x12ae2,10}, {0xdab2,2}, + {0x108f7,11}, {0x79af,5}, {0x1bdac,7}, {0x2615,8}, {0x7f71,9}, {0x23c9d,6}, {0x4799,4}, {0xdf28,10}, + {0xe52c,11}, {0x1c216,4}, {0x193b2,9}, {0x8874,5}, {0x1c1aa,4}, {0x1eac3,3}, {0x2cfdb,6}, {0x1d59f,7}, + {0x116c2,11}, {0x2ec1d,3}, {0x3c6b,3}, {0xfeb,3}, {0x30893,6}, {0x20c39,8}, {0x25d2d,6}, {0x631e,13}, + {0x1c5b0,9}, {0x10d17,5}, {0x1189d,5}, {0x2bd73,6}, {0x2ddc7,4}, {0x7b99,12}, {0x11965,8}, {0x5c61,9}, + {0x4f9e,12}, {0x30ab7,4}, {0x23b23,8}, {0x1e760,9}, {0x143c4,10}, {0x239bb,6}, {0x17786,10}, {0x307ff,3}, + {0x418b,9}, {0xffdb,8}, {0xe5,3}, {0x12636,4}, {0x2667b,8}, {0x282fb,6}, {0x2c279,4}, {0x3016a,3}, + {0x2d395,5}, {0xce3a,11}, {0x11ce,4}, {0x222b3,8}, {0x15274,10}, {0x13852,10}, {0xe4d4,11}, {0x8672,7}, + {0x20851,8}, {0x1e2f,4}, {0x1edfe,4}, {0xbb35,9}, {0xb5d1,12}, {0x1eea3,4}, {0x1b560,8}, {0x2f5ea,5}, + {0x7009,3}, {0x2e8e5,3}, {0x2b881,6}, {0x114a7,11}, {0x23a33,8}, {0x2ad81,3}, {0x25f03,7}, {0x17017,3}, + {0xd5ca,11}, {0x17238,5}, {0x308bd,6}, {0x1a291,6}, {0x199f4,8}, {0x106b0,7}, {0xce9d,8}, {0x38f5,10}, + {0x66ed,13}, {0x2583b,8}, {0x2f754,5}, {0x18f9b,3}, {0x4ced,13}, {0xce71,8}, {0x1fc8a,7}, {0x1f1a6,4}, + {0x2bccb,5}, {0xf955,4}, {0xf830,5}, {0x2531b,5}, {0x11b68,10}, {0x1df4c,7}, {0x1603e,7}, {0x2b5a7,4}, + {0x1b437,6}, {0x54f3,13}, {0x1b2bd,9}, {0x26033,8}, {0x2818f,6}, {0x23663,8}, {0x29e6f,7}, {0x2376b,8}, + {0x1857a,10}, {0x87cb,6}, {0xf370,11}, {0x2c2cb,6}, {0x2dc29,6}, {0x7d08,5}, {0x2b0c0,6}, {0x2b76d,6}, + {0xf155,11}, {0xcd43,5}, {0x28c79,4}, {0x8529,11}, {0x81b1,12}, {0x30a7d,2}, {0xe839,10}, {0x15e5e,7}, + {0x1d03e,9}, {0x1292a,10}, {0xe16f,8}, {0x11e6f,6}, {0xd189,7}, {0x1db4d,2}, {0x1a6e,3}, {0x6984,9}, + {0x29bf9,7}, {0x4dd7,13}, {0xbe4f,10}, {0x2dea5,5}, {0xb5e9,6}, {0x2e872,3}, {0x2ada2,7}, {0x30dcf,4}, + {0x301ba,3}, {0x113b5,11}, {0x9519,7}, {0x3dcc,7}, {0x1364a,10}, {0x1dd0a,6}, {0x2cdbf,5}, {0x13b1d,5}, + {0xc8d0,11}, {0x26acf,7}, {0x8dbd,6}, {0x20919,8}, {0x2fd41,3}, {0x18300,4}, {0x1e270,4}, {0x1e880,9}, + {0x199ac,6}, {0x70ba,13}, {0x13fbe,6}, {0xa3e9,12}, {0x2be8d,5}, {0x663a,7}, {0x11213,11}, {0x22423,8}, + {0x145f4,10}, {0x311f1,5}, {0x2cfc3,6}, {0x58d7,3}, {0x11ceb,3}, {0x125c4,10}, {0x28b50,7}, {0x1f08d,9}, + {0x11bd6,11}, {0x30294,5}, {0x24d43,8}, {0x17eb8,10}, {0x301f6,3}, {0xb39d,4}, {0x3102f,6}, {0x13f50,8}, + {0x14b80,10}, {0x31971,4}, {0x4315,7}, {0x10906,4}, {0x310b9,6}, {0x2282,9}, {0x2cdaf,2}, {0x1d998,9}, + {0xcbe3,2}, {0x1ff7e,7}, {0x2e02d,3}, {0x18fe6,9}, {0x6311,13}, {0x1c39d,7}, {0x9111,6}, {0x20bd9,8}, + {0x11817,7}, {0x2921c,3}, {0xda00,11}, {0x17574,10}, {0x2f8ee,5}, {0x717d,13}, {0x183b8,8}, {0x30be3,4}, + {0x12816,4}, {0x5cec,8}, {0x1526a,10}, {0xbbd3,8}, {0xada9,12}, {0x2fa4c,4}, {0x206d1,7}, {0x1de72,9}, + {0xe360,4}, {0x1f840,6}, {0x10dea,9}, {0x22dfb,8}, {0x2f5c2,5}, {0x3909,4}, {0x27a14,4}, {0x1bc68,9}, + {0x22dab,8}, {0x1e640,9}, {0x2647b,8}, {0x2fe2a,5}, {0x2b138,6}, {0x29ca8,7}, {0x11a2d,7}, {0x1fced,9}, + {0x2cc9f,6}, {0x2faec,5}, {0x1ac60,9}, {0x1b89c,6}, {0x2f3fb,4}, {0x2d877,3}, {0xa703,5}, {0x14194,10}, + {0xa005,12}, {0x17e18,10}, {0x2b6a1,6}, {0x1abb5,9}, {0x9e6d,12}, {0x2a181,7}, {0x146d,3}, {0x2e13,14}, + {0x260f3,6}, {0x307f8,2}, {0x18b70,4}, {0x2fd12,5}, {0x1ec04,9}, {0xb60f,7}, {0x1ec55,9}, {0x2251b,8}, + {0x2409d,6}, {0x40cc,4}, {0xb66d,12}, {0x5de3,8}, {0x1cf71,6}, {0x25105,6}, {0x1875a,6}, {0x29a01,5}, + {0x94c5,12}, {0x18ea8,5}, {0x2cca5,4}, {0x199c7,9}, {0xc50b,3}, {0x25386,4}, {0x169d,6}, {0x91f5,7}, + {0x6c42,13}, {0xdee6,8}, {0x173d2,3}, {0x2bdb,4}, {0xb3d9,5}, {0x30a93,4}, {0x8d45,8}, {0x21839,6}, + {0xcd2,4}, {0x1a70,5}, {0x2f7e2,3}, {0x18d4a,10}, {0x20839,8}, {0x1eeac,4}, {0x28df7,7}, {0x2bb75,6}, + {0x16c6e,10}, {0x30435,4}, {0x6183,4}, {0x1de06,9}, {0x27778,5}, {0x12068,3}, {0xdf3e,11}, {0x2458b,8}, + {0x2df4f,4}, {0x2578d,6}, {0x1efc0,3}, {0x30197,3}, {0x19d5d,9}, {0x6463,10}, {0x1ed48,9}, {0x4945,13}, + {0x27346,2}, {0x305df,4}, {0xd756,9}, {0x456d,6}, {0x2534b,7}, {0x28ba4,7}, {0x267cf,5}, {0x236e3,8}, + {0x94bc,3}, {0x30336,3}, {0x284c2,7}, {0x773a,9}, {0x10e2c,3}, {0xfea7,11}, {0x1a063,9}, {0x69a1,4}, + {0x2d782,3}, {0x251a3,8}, {0xdfd8,9}, {0xe025,8}, {0x64e5,8}, {0xf45c,6}, {0x2fe8b,3}, {0x1f408,4}, + {0x1d4ac,7}, {0x109ff,11}, {0x2696a,7}, {0x2c811,6}, {0x22513,7}, {0xb469,9}, {0xc933,10}, {0xb3b7,3}, + {0x30c01,2}, {0x25e73,8}, {0x31adf,2}, {0xda4d,11}, {0x30a81,2}, {0x2b98f,6}, {0x24c7b,8}, {0x4cc6,13}, + {0x14658,10}, {0x2df79,3}, {0x132bc,9}, {0x13ba9,5}, {0x15abc,5}, {0xc43a,6}, {0x1ee8e,4}, {0x2a3b8,7}, + {0xf711,6}, {0x28b3e,4}, {0x22103,5}, {0x8079,12}, {0x2c6d7,2}, {0x29815,7}, {0x24233,6}, {0x11515,11}, + {0x3028f,5}, {0x1b0a1,9}, {0x22393,5}, {0xc80c,5}, {0x338b,10}, {0x1cdad,5}, {0x256cb,7}, {0x209f9,7}, + {0x21c2c,5}, {0x29ccb,7}, {0x2a49,3}, {0x1cbfd,9}, {0x4e32,13}, {0xa1c1,5}, {0x1aecf,7}, {0xe27,6}, + {0x914d,12}, {0xaf4,24}, {0x3012e,3}, {0x28031,7}, {0x29306,7}, {0x71e5,10}, {0x2467b,5}, {0x243e,15}, + {0x1db90,7}, {0xeaf4,5}, {0x27ea9,7}, {0x11d1,3}, {0x180de,10}, {0x23f43,8}, {0x562b,12}, {0x1b602,8}, + {0x7525,5}, {0x180d4,10}, {0x1f732,9}, {0x1b116,8}, {0x1b01a,9}, {0x2ba73,6}, {0x132f0,6}, {0x122d,4}, + {0x6ea5,13}, {0xf257,6}, {0x1f42c,9}, {0x46cb,14}, {0x17ff0,3}, {0x279cb,7}, {0x7207,5}, {0x25b23,8}, + {0x1fa2,6}, {0x1db14,4}, {0xa3e3,6}, {0x588e,13}, {0x220a3,4}, {0x2408d,6}, {0xb631,12}, {0xb0fd,12}, + {0x2f853,5}, {0x5afe,13}, {0x11255,11}, {0x181f6,5}, {0x1198f,11}, {0x301d3,3}, {0x4c44,13}, {0x16c0a,10}, + {0x2dea1,3}, {0x25985,6}, {0x24dab,8}, {0xfe7b,11}, {0x23d83,6}, {0x1aac2,9}, {0x187be,7}, {0x216f1,8}, + {0x2ce49,6}, {0x7011,13}, {0x44fd,14}, {0xed09,11}, {0x6127,5}, {0x21a89,6}, {0x2eb26,5}, {0x11801,5}, + {0x9675,11}, {0x17772,8}, {0x1209b,11}, {0x803d,12}, {0x1802d,4}, {0x22f05,4}, {0x29c80,4}, {0x4f43,9}, + {0x1777,16}, {0x27190,7}, {0x178aa,5}, {0x20da9,6}, {0xe209,11}, {0xa605,12}, {0x3034c,3}, {0x4ec1,13}, + {0x1c784,9}, {0x1878c,6}, {0x23c53,5}, {0x1498c,9}, {0x24c33,5}, {0x20355,7}, {0x14842,6}, {0x10755,11}, + {0x2fa6a,5}, {0x2ae3c,7}, {0x2e091,6}, {0x31af,14}, {0x414b,7}, {0x1d54e,9}, {0x1627c,4}, {0xb625,9}, + {0xd2de,10}, {0xa095,8}, {0x2d257,4}, {0x25ef3,6}, {0x1533e,5}, {0x13dc0,10}, {0x31378,3}, {0x1ba79,9}, + {0x15173,7}, {0x10b33,11}, {0x568e,4}, {0xda9a,11}, {0x11c0d,8}, {0x10aaf,11}, {0x9407,5}, {0x28d25,7}, + {0x2972,3}, {0x28eec,7}, {0x246fb,8}, {0xbd99,12}, {0x30607,4}, {0x12830,10}, {0x1036c,11}, {0x236f5,6}, + {0x109a7,11}, {0x17c60,7}, {0x182a,4}, {0x2c247,6}, {0x2afbd,4}, {0x173b2,10}, {0x2adc5,7}, {0x2f9c2,2}, + {0x206f,9}, {0x18c5a,10}, {0x1ce8e,9}, {0x20ce9,8}, {0x237cd,5}, {0xa36b,6}, {0x248eb,6}, {0x1d98f,9}, + {0x15ac,3}, {0x4685,7}, {0x12089,7}, {0x26643,7}, {0x1f1da,9}, {0x247a3,6}, {0x56e6,3}, {0x16656,10}, + {0xb829,9}, {0x10238,5}, {0x23a73,8}, {0x2ffe4,3}, {0xc3a8,11}, {0x105d4,9}, {0x1041c,11}, {0x308b9,4}, + {0x1e4c6,9}, {0x31dd,3}, {0x2e29b,4}, {0x26ef7,7}, {0x2b73d,6}, {0x24b1b,8}, {0x16a0c,10}, {0x228db,8}, + {0x7a5a,7}, {0x175b0,7}, {0x128d4,6}, {0x2c0df,6}, {0x1adf5,9}, {0x917d,12}, {0x109e9,11}, {0x2d833,6}, + {0x1073f,11}, {0x9b0d,12}, {0x2de93,5}, {0x1e475,9}, {0x31a3,9}, {0x1ef0a,9}, {0x1f6a2,9}, {0x2432b,8}, + {0x2df1a,3}, {0x3bc5,6}, {0x167be,10}, {0x1ea39,5}, {0x16a70,10}, {0x19b65,7}, {0x170d,10}, {0x1261e,10}, + {0x14649,5}, {0x1e115,9}, {0x22d55,6}, {0x615c,8}, {0x240e7,2}, {0x3c5e,9}, {0x1a6e4,9}, {0x24203,8}, + {0x1befb,6}, {0x27f51,7}, {0x22e8,3}, {0x26baf,7}, {0xe447,3}, {0xbee9,8}, {0x6533,13}, {0x301ab,3}, + {0x25363,5}, {0x1c54f,6}, {0x2b535,4}, {0x26a82,7}, {0x2ffee,3}, {0x3f31,14}, {0x2bd55,6}, {0x2c0a3,6}, + {0xab21,12}, {0x3d01,14}, {0x11d6d,11}, {0x2fffd,3}, {0x20879,7}, {0x1678c,7}, {0x3257,14}, {0x1b69,4}, + {0x1223,4}, {0x32cd,8}, {0x2f257,5}, {0x1080a,6}, {0xe6d9,8}, {0x13ee2,6}, {0x18330,4}, {0x20b31,8}, + {0x8119,5}, {0x29c85,7}, {0x7c05,12}, {0x23065,5}, {0x2ae58,7}, {0x18a3e,7}, {0x136b8,10}, {0x6c30,5}, + {0x16dcc,10}, {0x15238,7}, {0x497b,4}, {0x73a1,4}, {0x11cf4,6}, {0x2989a,6}, {0x1bfde,4}, {0x261bb,8}, + {0x1da0d,7}, {0x1ded,3}, {0x137f,6}, {0x3a37,14}, {0x283a,15}, {0x30253,5}, {0x18c20,7}, {0xed3,8}, + {0x166e2,10}, {0xc396,7}, {0x9abf,5}, {0x2ca7,5}, {0x1a9c6,6}, {0x2eb58,5}, {0x17d2a,3}, {0x1e69a,9}, + {0x231bb,8}, {0x6796,13}, {0x2fcb8,5}, {0xa821,12}, {0x117e7,4}, {0x16110,10}, {0x6b7f,9}, {0x30c37,4}, + {0x12402,10}, {0xbcf1,7}, {0x1b5f9,9}, {0xa5a5,12}, {0x7079,12}, {0x294fe,7}, {0x21129,7}, {0x1b773,8}, + {0xe848,7}, {0x22593,8}, {0x194d2,9}, {0x280af,7}, {0xa395,11}, {0x152d8,10}, {0xb2ca,7}, {0x270ef,7}, + {0x1ea9e,5}, {0xfaf,3}, {0x51cd,13}, {0x18b1d,4}, {0x8f01,12}, {0x2a21b,7}, {0x31905,4}, {0x12f24,10}, + {0x1b320,9}, {0x2efbf,5}, {0x24225,5}, {0x9fd5,7}, {0x17f12,10}, {0x2514b,8}, {0x22dc3,7}, {0x241ab,8}, + {0x8427,3}, {0x14f40,10}, {0x2df5b,4}, {0x772f,4}, {0xb271,12}, {0xc0b1,11}, {0x20e41,8}, {0xfabe,11}, + {0xe37f,8}, {0x2d161,5}, {0x13f64,10}, {0x20561,4}, {0x2c6a3,6}, {0x7e69,12}, {0xb40f,6}, {0x3131,14}, + {0x6c85,8}, {0x10361,11}, {0x1ea0,8}, {0xabfb,3}, {0x157e,9}, {0x1e333,5}, {0xd48,24}, {0x1fb7c,9}, + {0x108e1,11}, {0x24a4b,6}, {0x16886,10}, {0x1def9,5}, {0x15526,10}, {0xca5c,10}, {0x4161,14}, {0x255e3,7}, + {0x2825e,3}, {0x24fcd,4}, {0x18d22,10}, {0x2dad,3}, {0xa0c5,12}, {0x1c65b,9}, {0x1db5a,6}, {0x17c84,4}, + {0x26dfe,4}, {0x16462,7}, {0x1941e,9}, {0x17acd,3}, {0x21793,5}, {0x2fff3,3}, {0x2ee28,5}, {0x4d07,13}, + {0x106e7,11}, {0x20f41,7}, {0x15422,10}, {0x66e0,13}, {0x233db,8}, {0x2e079,6}, {0x2e75,6}, {0x2b599,6}, + {0x2591b,8}, {0x1ef88,9}, {0x2d7d9,6}, {0xa355,4}, {0xbf0d,12}, {0x31aa7,2}, {0x94f5,12}, {0x22fc3,8}, + {0x11368,6}, {0x15daa,10}, {0x2fcf6,3}, {0xb867,10}, {0x2552b,8}, {0x25d3,15}, {0x116a8,4}, {0x695d,9}, + {0x189bc,7}, {0x2edd5,2}, {0x259db,8}, {0x1cc1d,4}, {0x214b9,7}, {0xbe4d,12}, {0xef66,11}, {0x2a400,3}, + {0x2be41,3}, {0x301b5,3}, {0x1a735,8}, {0x28f03,5}, {0x15a79,7}, {0x27ee8,6}, {0x123e4,10}, {0x19ee9,9}, + {0xee69,6}, {0x14cac,10}, {0xca67,8}, {0x30f1b,4}, {0xff41,8}, {0xc279,8}, {0x5312,8}, {0x30e4f,4}, + {0x205e1,8}, {0x2d1bb,6}, {0x25a6b,5}, {0x29273,7}, {0x2e72e,2}, {0x130aa,10}, {0x27504,5}, {0x1128c,5}, + {0xb0f1,7}, {0x101b,9}, {0x1f141,9}, {0xaeed,12}, {0x2d2d5,6}, {0xb649,12}, {0x1b383,7}, {0x7989,12}, + {0x181a6,9}, {0x256b3,8}, {0x30d15,2}, {0x146c6,10}, {0x1a090,9}, {0x1e57e,5}, {0x2b90b,6}, {0x17826,10}, + {0x30351,3}, {0x17404,5}, {0x1bae5,9}, {0x10ec4,8}, {0x2437d,3}, {0x1ab20,4}, {0x14982,10}, {0xa911,9}, + {0x17150,5}, {0x95cf,5}, {0x1ca0,15}, {0x1445a,9}, {0xc635,7}, {0xba3b,4}, {0x1a66f,9}, {0x31b1b,2}, + {0x300e3,3}, {0xdac6,8}, {0xdad1,6}, {0xaebd,9}, {0x14ff4,10}, {0xb847,6}, {0x23e4,7}, {0x1ee56,5}, + {0x1f402,3}, {0xaf7d,7}, {0x1a66,7}, {0x1b0b3,9}, {0x56ee,5}, {0x261eb,7}, {0x11184,5}, {0x1ea81,9}, + {0x2d431,5}, {0x9f15,12}, {0x155da,9}, {0x7677,7}, {0x11c4,6}, {0x2ab54,7}, {0x2de2d,6}, {0x14f18,10}, + {0x27e8,7}, {0x1c5e6,6}, {0x2a341,7}, {0x2bf1,13}, {0x2f26b,5}, {0xaf8e,7}, {0x160c0,10}, {0x31b11,2}, + {0x229eb,6}, {0x9aee,7}, {0x1767a,3}, {0x292c7,7}, {0x23fcb,7}, {0x3cad,12}, {0x78b1,12}, {0x55a9,13}, + {0xbd0b,5}, {0xeb5c,11}, {0x2fe68,3}, {0x2eae5,5}, {0x1dd37,9}, {0x2690c,3}, {0x2fb75,3}, {0xcd06,11}, + {0x14fe0,5}, {0x66fa,13}, {0x2e8a9,3}, {0x17396,8}, {0x25403,8}, {0x1c0c,4}, {0xac80,5}, {0x2e1f9,5}, + {0x2b57,3}, {0x31771,2}, {0x71cb,7}, {0x14802,4}, {0x2d3e3,6}, {0x4153,14}, {0x7149,5}, {0x9c84,4}, + {0x29e30,7}, {0x49e1,8}, {0xa817,7}, {0x32b9,14}, {0x16ec6,10}, {0xfdc,5}, {0x20fa1,8}, {0x116a1,11}, + {0x1654a,8}, {0x3b6f,6}, {0x303bd,4}, {0x2d893,5}, {0x20e25,4}, {0x711a,2}, {0x1577e,10}, {0x30b7f,4}, + {0x2b0d8,4}, {0x19106,9}, {0xf31,4}, {0x2e201,3}, {0x7f05,7}, {0x4ff1,8}, {0x27889,7}, {0x30f33,4}, + {0x1346a,10}, {0x270e,15}, {0xdf54,10}, {0xd449,6}, {0xb3e5,6}, {0xb0a9,12}, {0x2405b,5}, {0x3ac3,14}, + {0xfacd,7}, {0x239b,8}, {0xeb25,10}, {0x29d34,7}, {0x1ab1,15}, {0x1a4bf,9}, {0xd079,4}, {0x2995a,4}, + {0x1fdd7,6}, {0x8c91,12}, {0x2403d,6}, {0x6123,9}, {0x1d290,9}, {0x30258,5}, {0xf3c8,11}, {0x16ff4,4}, + {0x1e0d6,9}, {0x2e069,3}, {0x2df20,3}, {0x1ad0d,6}, {0x8775,8}, {0x24db3,8}, {0x30953,4}, {0x857d,11}, + {0x185d4,10}, {0x2f326,3}, {0x2880c,5}, {0x2f9e5,3}, {0x18c96,9}, {0x2ee19,5}, {0x177a4,8}, {0x309ff,4}, + {0x21929,8}, {0x3807,10}, {0xe88,4}, {0x3059f,4}, {0x24ce6,3}, {0x1e85e,7}, {0x19478,5}, {0x308fb,4}, + {0x24d6b,8}, {0x2d94d,6}, {0x34a3,9}, {0x1512a,10}, {0x31a2d,4}, {0x47c7,9}, {0x7de5,12}, {0xa245,12}, + {0x9d41,5}, {0x28c30,7}, {0x1ed80,3}, {0x7159,4}, {0x27342,7}, {0x507b,13}, {0xc74f,10}, {0x30190,5}, + {0x1b29,15}, {0x172fe,10}, {0x9fb5,8}, {0x312f4,2}, {0x1a321,9}, {0x137c6,9}, {0xe45b,11}, {0x2cc3,14}, + {0xd2de,11}, {0x2f6d7,5}, {0x2a738,7}, {0x13f28,10}, {0x2f38d,5}, {0xf2aa,11}, {0x26f3d,7}, {0xab69,11}, + {0x259ad,4}, {0x2bfbf,6}, {0xe093,11}, {0xb5ad,12}, {0x122a4,6}, {0xb85b,5}, {0x22283,8}, {0x1ed41,5}, + {0xf7dd,11}, {0x278f4,4}, {0x41b5,14}, {0x28955,7}, {0x300a7,3}, {0x10d1e,4}, {0x2461b,5}, {0x1f0e7,9}, + {0x18836,10}, {0x301e2,3}, {0x3025d,5}, {0x1697,12}, {0x8e7f,5}, {0x1b5de,9}, {0x290ac,7}, {0xbfe7,3}, + {0x8145,11}, {0x256a5,3}, {0x290a5,7}, {0x30101,3}, {0x2ffda,3}, {0x78a5,12}, {0x2b64,15}, {0x286fb,7}, + {0x13f00,6}, {0x22df6,5}, {0x11918,4}, {0x1662e,10}, {0x1e3f9,6}, {0xe0e0,11}, {0x1fc8a,9}, {0x165ca,10}, + {0x1620a,10}, {0x2393b,7}, {0x7199,6}, {0xf210,6}, {0x280e3,4}, {0xfb4,2}, {0xac00,5}, {0x25a53,8}, + {0x12c90,7}, {0x1a843,9}, {0x27fc8,7}, {0xc33a,11}, {0x1db51,5}, {0x172d1,5}, {0x29fae,5}, {0x24abb,8}, + {0x6cd6,4}, {0x6ecc,12}, {0x1e00b,5}, {0x25c06,5}, {0x4759,5}, {0x307b6,4}, {0x1baaf,9}, {0xaf4,6}, + {0x6fd2,6}, {0x12dd0,10}, {0x16f2a,10}, {0x328f,6}, {0x1d761,9}, {0x17bc2,4}, {0x40b9,10}, {0x1adb6,8}, + {0x2661b,8}, {0x2a49,2}, {0x1e7f9,6}, {0x2f473,5}, {0x16fea,5}, {0x300f2,3}, {0x1b773,6}, {0x2f77,2}, + {0x6553,6}, {0xb8d1,6}, {0x3575,14}, {0x2cdb6,3}, {0x20ce1,8}, {0x2e8de,5}, {0x20380,9}, {0x30205,3}, + {0x8715,12}, {0x2f190,4}, {0x29789,7}, {0x3727,14}, {0x1f5fe,2}, {0x204f1,6}, {0xae9e,6}, {0xb9ec,2}, + {0x1a249,8}, {0x536f,7}, {0x29395,4}, {0x186da,6}, {0x30339,7}, {0x19a60,9}, {0x1238a,10}, {0xe629,11}, + {0x1fe67,7}, {0xc585,7}, {0x1e82,5}, {0xe1f,5}, {0x2cb19,6}, {0x8f55,12}, {0x10bac,11}, {0x9812,6}, + {0x11958,11}, {0x2b48,6}, {0xd3fc,11}, {0x7ee1,12}, {0x15c92,9}, {0xed77,11}, {0x89c1,12}, {0x28bb9,7}, + {0x144dc,9}, {0x65f6,13}, {0x9af,128}, {0x15457,7}, {0x23e2b,6}, {0x29c9a,7}, {0xe26c,10}, {0x2c607,5}, + {0x137f8,10}, {0x2cb25,5}, {0x4dc4,6}, {0x6198,13}, {0x11d7,5}, {0x5f28,13}, {0x2d4cd,6}, {0x1deeb,5}, + {0x1c1b,6}, {0x3957,4}, {0x1f1b8,6}, {0x21bd9,8}, {0x57a6,4}, {0x15b66,9}, {0x2235b,8}, {0x131d1,5}, + {0x220f3,8}, {0x2de15,6}, {0x1f85d,7}, {0x2d0ef,5}, {0x2c54d,5}, {0xe0b,3}, {0x102d6,7}, {0x2538d,3}, + {0x301ea,5}, {0x4765,12}, {0x1aa5a,5}, {0x1e72a,9}, {0x1171,6}, {0x20731,8}, {0x19643,6}, {0x1f404,2}, + {0x227ab,8}, {0x1c30d,9}, {0x1f82,3}, {0x2b07e,6}, {0x1700,7}, {0x24793,5}, {0x3029e,5}, {0x2459b,8}, + {0x1e15d,9}, {0x20761,8}, {0x2b474,6}, {0xfe86,10}, {0x10f21,6}, {0x3089b,4}, {0x102f3,11}, {0xdd18,11}, + {0x2521,6}, {0x94e9,5}, {0x148c4,8}, {0x1a93f,9}, {0x3016f,3}, {0x39cc,9}, {0x2975,12}, {0x1ebd3,4}, + {0x1c8f5,9}, {0xc77b,7}, {0x1ab17,5}, {0x11f5e,2}, {0x9e08,5}, {0xe1c7,10}, {0x17920,10}, {0x20316,4}, + {0x7841,2}, {0x1bef,3}, {0xe9af,11}, {0x16304,10}, {0x759a,10}, {0x25f5b,8}, {0x383f,14}, {0x1760a,5}, + {0x625b,12}, {0x28d95,7}, {0x8f25,7}, {0x9ed9,12}, {0xd158,4}, {0x11087,11}, {0x201fd,8}, {0x5cc5,13}, + {0x1c412,9}, {0x8d2d,7}, {0x24283,8}, {0x19d78,8}, {0x27dec,7}, {0x20233,9}, {0x166d8,10}, {0x2c4b,4}, + {0x14e28,10}, {0x2bd67,5}, {0x22f1b,8}, {0x437c,7}, {0x301ce,3}, {0xaebd,12}, {0x26573,8}, {0xf8f0,10}, + {0x11131,6}, {0xb74,64}, {0x46bd,14}, {0x30075,3}, {0x81c9,7}, {0x1d866,6}, {0x1e16f,9}, {0x2f080,2}, + {0x12baa,8}, {0x2a395,7}, {0xa7a9,12}, {0x1200c,7}, {0x164c6,10}, {0x17487,4}, {0x28a20,7}, {0x2583b,5}, + {0x1b27e,9}, {0x4130,2}, {0x2ecf2,5}, {0xc6ae,7}, {0x4ae5,6}, {0x1659,6}, {0x20639,8}, {0x2dc8,5}, + {0x48a9,12}, {0x231ab,8}, {0x11d5d,4}, {0x1e4bd,8}, {0x1e5c2,6}, {0x4401,12}, {0x29d81,7}, {0x24773,5}, + {0x5bdb,13}, {0x2ed1,4}, {0x193fa,9}, {0x2ba9d,6}, {0x24b4b,8}, {0x14d92,9}, {0x1196e,8}, {0x21243,6}, + {0x7b75,7}, {0x1f717,9}, {0x2e097,6}, {0x2898d,7}, {0x5235,11}, {0x3020f,3}, {0x754c,4}, {0x1bd40,9}, + {0x24e33,8}, {0x3094f,4}, {0x2357,6}, {0x21049,8}, {0x2574b,8}, {0x1b9ce,9}, {0x20af9,8}, {0x7c89,12}, + {0xb7ac,5}, {0x27311,7}, {0x52de,13}, {0x1677,8}, {0x718f,4}, {0x22c3e,4}, {0x20739,8}, {0x2a015,7}, + {0x150b2,10}, {0x24a4d,4}, {0x51e7,13}, {0x2aaeb,7}, {0x621a,9}, {0x3073b,4}, {0x29322,6}, {0xb331,10}, + {0x2f760,2}, {0x285d3,7}, {0x2ed72,2}, {0x1380,3}, {0x26b2a,5}, {0x1ceb,7}, {0x732a,13}, {0x5611,13}, + {0x2c22f,5}, {0xcf0b,11}, {0x1d935,9}, {0x26b70,7}, {0x2af00,7}, {0xad8b,3}, {0x1ae3d,9}, {0x74e4,8}, + {0x29704,7}, {0x18390,10}, {0x1c802,9}, {0x244ab,8}, {0x25623,5}, {0x11208,11}, {0xc047,2}, {0x2e7cc,8}, + {0x2d2f9,6}, {0x27af3,5}, {0x27cdb,7}, {0x20791,5}, {0x14dce,10}, {0x1dfd1,9}, {0x30821,6}, {0x31ef,6}, + {0x3003,4}, {0x25d6f,4}, {0x2462b,8}, {0x71c5,4}, {0x2b5c3,6}, {0x135ba,3}, {0x2af70,7}, {0xbb7f,2}, + {0x2d512,3}, {0x577d,7}, {0xb39d,5}, {0x28ea1,3}, {0x573c,13}, {0x54e6,13}, {0x149dc,10}, {0xd95b,11}, + {0x7079,13}, {0x3022b,5}, {0x1f7c5,6}, {0x2d9c5,6}, {0x27e4,4}, {0x18d9,7}, {0x2a2a2,4}, {0x7d85,12}, + {0x5c07,8}, {0x4ac5,6}, {0x4f9e,13}, {0x256a3,6}, {0x2f74a,4}, {0xc79c,11}, {0x19fe5,9}, {0x2d707,6}, + {0x1e382,9}, {0x30eff,4}, {0x31a89,2}, {0xbbdf,6}, {0x16480,10}, {0x2a4e1,3}, {0xf25d,11}, {0x1154,3}, + {0x2de5d,6}, {0x2efc4,5}, {0x3190d,4}, {0x8951,3}, {0x6a54,13}, {0x3134,4}, {0x2ecb1,4}, {0x10ecf,7}, + {0x2dec5,4}, {0x1ca39,9}, {0x2cf6b,4}, {0x18412,7}, {0x13e01,5}, {0x30192,3}, {0x2d7b,5}, {0xf67d,11}, + {0x1c510,6}, {0x6109,11}, {0x19d1e,9}, {0xa9b9,12}, {0x17682,9}, {0x2ab77,7}, {0x2f58b,5}, {0xb481,5}, + {0xec64,6}, {0x27882,7}, {0x2e195,3}, {0x2afd0,6}, {0x53ae,9}, {0xfca,3}, {0xa941,12}, {0x2aa09,5}, + {0x48ff,3}, {0x2d827,6}, {0x30967,4}, {0xa0ad,12}, {0x593f,5}, {0x225eb,8}, {0xa2f9,12}, {0x24da3,8}, + {0x31059,6}, {0x1edda,7}, {0x301f9,5}, {0x2663d,6}, {0x1fc0,7}, {0x2ce9f,4}, {0x2993b,7}, {0x17fe4,5}, + {0xe5dc,11}, {0x1bb24,8}, {0x2d30b,6}, {0x2316b,8}, {0x15a3a,10}, {0x1e03d,9}, {0x15eea,10}, {0x2576b,8}, + {0xde57,11}, {0x20f29,8}, {0x11373,5}, {0x1d289,7}, {0x266bd,3}, {0x24b9,3}, {0x24495,3}, {0x2c409,6}, + {0x83a4,5}, {0x222ae,4}, {0xe962,11}, {0x2d18b,5}, {0xd173,11}, {0x250d3,6}, {0x6fba,8}, {0xa7cd,12}, + {0x20e91,8}, {0x2536d,4}, {0x11f53,4}, {0x15ed,4}, {0x29fd6,7}, {0x177a4,10}, {0x12844,7}, {0x12e0e,6}, + {0x487f,11}, {0x142a2,10}, {0xf483,11}, {0x1957,7}, {0x2d923,6}, {0x250dd,6}, {0x14a36,7}, {0x1c568,6}, + {0x1407c,10}, {0x17d0a,9}, {0x1b23f,9}, {0x7150,6}, {0x2e685,3}, {0xcda0,7}, {0x1c520,5}, {0x28c06,7}, + {0x2959f,7}, {0x23f8d,3}, {0x17010,10}, {0x2446,7}, {0x14c02,10}, {0xa076,7}, {0x2f186,5}, {0x21a2c,4}, + {0x68a1,5}, {0x284ad,6}, {0x33ab,3}, {0x214a1,8}, {0x1e3b,9}, {0x2a142,7}, {0xc9e3,10}, {0x2c3eb,6}, + {0x186a6,5}, {0x1f97b,5}, {0x23e63,7}, {0x2e1d7,3}, {0xe0f6,11}, {0x23143,7}, {0x23835,3}, {0x11a81,11}, + {0x247a,15}, {0x13faa,10}, {0x1cd38,9}, {0x10bf9,5}, {0x2ff56,5}, {0x3058f,4}, {0x10377,11}, {0x1cac9,9}, + {0x2320b,8}, {0x2bb45,6}, {0x526f,7}, {0x17abc,7}, {0x9a9a,7}, {0x2b60b,6}, {0x2352b,8}, {0x28f0f,7}, + {0x2d545,5}, {0x9def,6}, {0x285da,7}, {0x11a29,11}, {0xa3b9,12}, {0x439f,14}, {0x29e5a,7}, {0xe256,8}, + {0x255cb,6}, {0x1a000,9}, {0x1910f,9}, {0x11656,3}, {0xdc29,5}, {0x4acb,13}, {0x2cd77,6}, {0x2fd3f,5}, + {0x21161,8}, {0x1e4b4,9}, {0x20029,9}, {0x1bc20,9}, {0x14ed2,9}, {0x230eb,8}, {0xf134,11}, {0x29eb8,4}, + {0x951c,9}, {0x17a7c,4}, {0x154ae,10}, {0xb6a9,12}, {0x2d0f5,6}, {0x1899e,7}, {0x1f53a,9}, {0xdd44,5}, + {0xe66f,7}, {0x125e6,6}, {0xaaa2,4}, {0x13cf8,8}, {0x81d5,12}, {0x18386,10}, {0xca67,9}, {0x8ed1,7}, + {0x17b20,10}, {0x31143,6}, {0xccfb,11}, {0x12cdc,4}, {0x3011a,3}, {0x17a76,7}, {0x31420,3}, {0x24b93,8}, + {0x25c93,8}, {0x170f9,7}, {0x4c56,8}, {0x22673,8}, {0x185ca,4}, {0x2b50b,8}, {0xe8ff,11}, {0x23123,8}, + {0xfb2,3}, {0x27269,7}, {0x1680e,9}, {0x1a024,9}, {0x1ee6c,4}, {0xe2f0,11}, {0x2daa9,6}, {0x12059,11}, + {0xde28,3}, {0x1ad02,9}, {0xe802,11}, {0x3014c,3}, {0x1d81,14}, {0x4535,6}, {0x11b59,4}, {0x3eeb,14}, + {0x2b084,6}, {0x10927,7}, {0x1d086,9}, {0x18eb2,7}, {0x1209f,2}, {0x8ef5,12}, {0x2bb21,6}, {0xa761,12}, + {0x30f2,3}, {0xe9db,8}, {0x92fd,11}, {0x10df3,11}, {0x12013,4}, {0x7c95,12}, {0x1b1e5,9}, {0x18a2a,10}, + {0x1f282,3}, {0x1e22c,9}, {0x13410,6}, {0xb936,7}, {0x15472,10}, {0xcf16,6}, {0x5416,13}, {0x1da2b,6}, + {0x7fe9,6}, {0x1b95b,7}, {0x3002,5}, {0x192f0,4}, {0x140c2,10}, {0x2470e,5}, {0x55f7,13}, {0x17542,9}, + {0x1f849,9}, {0x1f291,2}, {0x2f817,5}, {0x2a85,3}, {0xa5bd,12}, {0x25725,5}, {0x29f19,7}, {0x1ccd,12}, + {0xa3f5,12}, {0x14ef0,10}, {0x27388,7}, {0x11f72,6}, {0x11991,3}, {0x1ba1,8}, {0x10f48,11}, {0x11b05,11}, + {0x2aadd,7}, {0x1b12,3}, {0xeaac,11}, {0x184a0,8}, {0x2e7e8,4}, {0xa335,12}, {0x2f400,5}, {0x49cb,9}, + {0x25a0b,8}, {0x2ff35,3}, {0x99bd,12}, {0x1e45a,9}, {0x1fc3b,7}, {0xcc09,11}, {0x12a2e,6}, {0x27a88,7}, + {0x2398b,8}, {0x24cdd,4}, {0x19f43,9}, {0x8889,6}, {0x23443,8}, {0x187a0,10}, {0xc275,12}, {0x10d66,8}, + {0x17ef0,4}, {0x2d90b,6}, {0xb409,12}, {0x8f85,5}, {0x17100,10}, {0x2cdbc,2}, {0x2adea,5}, {0x13898,9}, + {0x1dd88,9}, {0x7953,6}, {0x30f0f,4}, {0xbffd,5}, {0x301ec,3}, {0x131d6,10}, {0xe7cb,11}, {0x11d2b,11}, + {0x1ef2e,9}, {0x2edce,5}, {0xdc10,7}, {0x247c3,8}, {0xddad,5}, {0x1c625,9}, {0x1024,3}, {0x30c93,4}, + {0x13e13,6}, {0x2f8d0,4}, {0x20fa9,8}, {0x30eb,14}, {0x2bcef,6}, {0x22873,8}, {0x12862,6}, {0x17380,10}, + {0x29712,7}, {0x20f59,8}, {0xc99a,4}, {0x24863,7}, {0xb739,8}, {0x2a873,7}, {0x7ee1,11}, {0x8979,12}, + {0x1fcef,6}, {0xe203,6}, {0xc6c0,9}, {0x1d098,9}, {0x138ac,10}, {0x7cf0,5}, {0x8ba1,12}, {0x2eca2,5}, + {0x2dfaf,4}, {0x22a0b,8}, {0x30276,5}, {0xf840,11}, {0x14e7,16}, {0x10217,11}, {0x18b92,6}, {0x1d182,6}, + {0x1e345,3}, {0x25893,8}, {0xe8ae,4}, {0x25f4d,5}, {0x2cabf,6}, {0x7da9,12}, {0x2f2e0,3}, {0x3019f,5}, + {0x306bb,4}, {0x1c1e4,9}, {0xcab4,11}, {0x1e2f4,3}, {0x1aa95,8}, {0x2be33,6}, {0x14924,4}, {0xcb64,11}, + {0x2edf1,5}, {0x2ec9,14}, {0x1fa0d,6}, {0x2ca6b,6}, {0x127cc,10}, {0x5c77,13}, {0x29c1c,6}, {0x26e25,7}, + {0x106f2,11}, {0xf101,6}, {0x8a5d,12}, {0x26023,8}, {0x2386b,8}, {0x5e4d,5}, {0x47ff,14}, {0x2a4c9,5}, + {0x21481,6}, {0x1e3c,6}, {0x113a5,5}, {0x225a3,8}, {0xc581,11}, {0x11635,3}, {0xf11e,11}, {0x17c38,7}, + {0x19c9c,4}, {0x1597c,10}, {0x19d27,9}, {0x2dcc5,4}, {0x140a4,8}, {0x124de,10}, {0x16616,3}, {0x2a4e1,4}, + {0x29234,7}, {0x3011f,3}, {0x2a88a,5}, {0x3249,13}, {0xf1ad,11}, {0x10eb0,6}, {0x1f,3}, {0x26b62,7}, + {0x3108f,6}, {0x29bba,6}, {0x1fbdf,9}, {0x17b7a,7}, {0x2aa87,7}, {0x2d6e3,6}, {0x2fe72,3}, {0x2ec0c,5}, + {0x2800,4}, {0x5bfc,5}, {0x86b5,12}, {0x10fc3,6}, {0x10cca,10}, {0x2f6e8,3}, {0x21379,8}, {0x39b2,7}, + {0x21cb9,8}, {0x9100,5}, {0x236c3,8}, {0xdb7b,6}, {0x27dc2,7}, {0x2eeaf,5}, {0x211fd,4}, {0x2e985,5}, + {0x26533,8}, {0x300f7,3}, {0x12920,10}, {0x26d14,7}, {0x31,3}, {0x1eb59,9}, {0x1f69b,7}, {0x230db,8}, + {0x3735,14}, {0x1d34d,9}, {0x11f04,11}, {0x251dd,3}, {0xc5ad,7}, {0x2cbe,5}, {0x273c7,7}, {0x1deb1,9}, + {0x17f0d,5}, {0x2da31,6}, {0x21c31,8}, {0x4535,5}, {0x6873,13}, {0x1122d,3}, {0x750d,3}, {0x6eb2,9}, + {0x7ea5,7}, {0x28413,7}, {0x1cd3b,3}, {0xced0,4}, {0x2cecd,6}, {0x1268c,4}, {0xb5c5,12}, {0x9b91,12}, + {0x1e965,5}, {0x307f7,4}, {0x12b00,10}, {0x212b9,8}, {0x9141,12}, {0x1897,10}, {0xd134,3}, {0x21f6b,8}, + {0x2c537,4}, {0x1bd5b,5}, {0x6e98,12}, {0x26595,6}, {0x19d4b,8}, {0x23f3,12}, {0x18086,4}, {0x2edd3,4}, + {0x895c,5}, {0x12bbe,9}, {0x5d72,9}, {0x204d9,4}, {0x19202,8}, {0x105f,17}, {0x12fd,10}, {0xbb41,12}, + {0x25365,4}, {0x2d98f,4}, {0x1eb13,6}, {0x2a586,7}, {0x114eb,4}, {0x22c7e,3}, {0x27c5f,5}, {0x30151,3}, + {0x280c4,7}, {0x2cd1d,6}, {0xa671,12}, {0x133ce,6}, {0xba3b,2}, {0x3179e,4}, {0x15206,10}, {0x204a,6}, + {0x272a1,7}, {0x23e0b,8}, {0x21345,4}, {0x8e35,12}, {0xb753,4}, {0x1d27e,9}, {0x1eaa7,3}, {0x2228b,8}, + {0x2ca9b,6}, {0xce57,4}, {0x28b31,10}, {0x23f3b,8}, {0xbd8d,11}, {0x2a2a7,5}, {0x16642,10}, {0x18e96,8}, + {0xb2c5,12}, {0x1522e,10}, {0x30b47,4}, {0x16f75,5}, {0x2bb81,6}, {0x63bd,5}, {0x20599,4}, {0x2df67,4}, + {0x2efc9,5}, {0x269c5,6}, {0x29b61,5}, {0x17990,10}, {0x28db6,2}, {0x24beb,7}, {0x2b45c,6}, {0x12b6,5}, + {0x1af15,9}, {0xefb3,8}, {0x24bed,3}, {0x2e02b,6}, {0x4cc6,9}, {0x7d01,7}, {0x1ad0b,9}, {0x107c3,7}, + {0xd9b3,6}, {0x29e63,5}, {0x22bcb,8}, {0x2361b,8}, {0xdfa1,6}, {0x141d4,6}, {0x235bd,5}, {0x30230,5}, + {0x1940c,9}, {0x1094,5}, {0x2502d,6}, {0xa8e1,9}, {0x178e,4}, {0x30f15,4}, {0x2eaac,5}, {0xa16d,12}, + {0x29de3,7}, {0x2910e,7}, {0x1e2c5,9}, {0x2e7b4,8}, {0x308f7,4}, {0x2c8b9,6}, {0x1f5a6,9}, {0x14928,10}, + {0x1f99f,9}, {0x11e6a,11}, {0x5e3e,13}, {0x6ead,5}, {0x23e53,7}, {0x40ad,7}, {0xa6c5,12}, {0x13d02,10}, + {0x29559,7}, {0x1878c,10}, {0x1507,8}, {0x28356,5}, {0x13b0,4}, {0x12164,6}, {0x238eb,8}, {0x188ec,8}, + {0x117bf,11}, {0x13064,6}, {0x2fc8d,3}, {0x170ee,4}, {0x72fe,4}, {0xf318,6}, {0x2bd6d,6}, {0x1e6c7,9}, + {0xeb6,3}, {0x16a86,7}, {0x7de0,5}, {0x25de3,8}, {0x2c10f,6}, {0x2f89e,5}, {0x1e0cd,9}, {0x25da5,5}, + {0x11607,11}, {0xbc7b,4}, {0x1f90,6}, {0x12aec,9}, {0x2de77,4}, {0x887d,12}, {0xab1,64}, {0xc05f,4}, + {0x11b5,4}, {0x2f984,5}, {0x53bb,10}, {0x94a7,6}, {0x2b6b9,6}, {0x28a19,7}, {0x8bdd,12}, {0xf693,8}, + {0x229c,5}, {0x1ff92,7}, {0x2b80f,6}, {0x17a4e,9}, {0x12bd,2}, {0x61b2,13}, {0x1085d,11}, {0x18e1c,10}, + {0xb211,12}, {0x10f95,11}, {0x2094,8}, {0x111c,5}, {0x25993,8}, {0xeccd,5}, {0x1ba4c,9}, {0xb895,11}, + {0x124e8,9}, {0x152c4,10}, {0xfa5e,8}, {0x10e1,3}, {0x2bacd,6}, {0x20899,8}, {0x2d875,6}, {0x1bb00,9}, + {0x15558,10}, {0x3828,9}, {0x2f19a,5}, {0x145e0,6}, {0x9a41,11}, {0x29e53,7}, {0x1e5a7,8}, {0x21171,7}, + {0x16f4c,4}, {0x18eb6,6}, {0x1d6ec,9}, {0x1413e,5}, {0x12844,10}, {0x24d53,4}, {0x297c8,6}, {0x29ada,7}, + {0x42cd,14}, {0x5951,6}, {0x28a58,7}, {0x6e5c,6}, {0x10033,11}, {0x2c8b,6}, {0x3d39,14}, {0x1de84,9}, + {0x307ff,4}, {0x15c7e,10}, {0x99b1,12}, {0x2564b,8}, {0x25d5f,4}, {0x1f07,14}, {0x9555,12}, {0x2eaea,5}, + {0x99c9,12}, {0x1387,14}, {0x198e6,9}, {0x1f342,9}, {0x359a,5}, {0x2446b,8}, {0x201b5,8}, {0x2af07,7}, + {0x5770,13}, {0x30fb7,6}, {0x25873,5}, {0x6ceb,6}, {0x2f1cc,5}, {0xc371,11}, {0x30ceb,4}, {0xe051,11}, + {0xe579,10}, {0x28b2,15}, {0x24667,4}, {0x40d7,4}, {0x13438,10}, {0x273f1,7}, {0x1de21,8}, {0x5261,6}, + {0xb987,3}, {0x10b8b,5}, {0x30eb3,4}, {0xc907,11}, {0x13618,10}, {0x4871,3}, {0x20579,4}, {0x1f35d,9}, + {0xea54,11}, {0xd0a2,11}, {0x3981,14}, {0x2d127,4}, {0x2268b,8}, {0x162e6,7}, {0xa61d,12}, {0x6574,13}, + {0x2b763,4}, {0xbad5,12}, {0x206d9,8}, {0x2aeb5,5}, {0x3174d,3}, {0x1ffb4,9}, {0x2e76b,3}, {0x223fb,8}, + {0x16093,5}, {0x3024e,5}, {0x1d7c,5}, {0x130d2,10}, {0x2bb9f,6}, {0x2e249,4}, {0xef31,7}, {0x18746,10}, + {0x300b,13}, {0x2f2b,5}, {0xd105,11}, {0x28981,5}, {0x19b3c,4}, {0x7afd,12}, {0x42f7,14}, {0x58d1,5}, + {0x15864,10}, {0x15d32,10}, {0xce50,10}, {0xd7c4,11}, {0x2d6b9,6}, {0xfd47,9}, {0x17592,6}, {0x30226,5}, + {0x77cb,6}, {0x1d15e,8}, {0x3c21,13}, {0x1c298,9}, {0x1e53,15}, {0xf549,11}, {0x2833a,7}, {0x1ad67,7}, + {0xca0f,11}, {0x1a0a4,4}, {0x1758a,8}, {0x23ca3,8}, {0x10703,3}, {0x2e75,14}, {0x11121,11}, {0x1e8c8,9}, + {0x29214,4}, {0x17a44,5}, {0x2e4b9,5}, {0xec59,11}, {0x1f2df,9}, {0x1a939,6}, {0xff9e,4}, {0x120d,3}, + {0x260cb,8}, {0x231ed,5}, {0x12ac,3}, {0x270e8,7}, {0x27b3,7}, {0x16e08,10}, {0x259c5,6}, {0x11a6d,3}, + {0x301d8,3}, {0x2795b,7}, {0x540f,7}, {0x1f560,7}, {0xeca0,4}, {0x7761,6}, {0x262d5,6}, {0x1c62e,8}, + {0x28c76,7}, {0x22e3b,8}, {0x43c9,14}, {0x12ddc,4}, {0x316e,8}, {0x19d03,9}, {0x9759,11}, {0x11824,6}, + {0x1520,5}, {0x1db6c,6}, {0x50c9,13}, {0x1e86b,3}, {0x1fcf6,9}, {0x1cbaa,7}, {0x240bb,7}, {0x17e2e,4}, + {0x12f6c,4}, {0x2f8a3,5}, {0x2bb0b,4}, {0x4705,5}, {0xe12d,11}, {0x1811a,10}, {0x136c2,10}, {0x10550,10}, + {0x16db8,10}, {0xb723,4}, {0x1fa4,3}, {0x74fa,4}, {0x21fa5,6}, {0x21661,8}, {0xbc6d,7}, {0x1233a,10}, + {0x30214,3}, {0x30165,3}, {0x16048,10}, {0x12614,10}, {0x21051,8}, {0x1b200,9}, {0x7a96,2}, {0xd11b,6}, + {0x2a1dc,7}, {0x2b71c,3}, {0x24333,8}, {0x174fc,10}, {0x2988c,5}, {0x4a56,7}, {0x16764,10}, {0x2a2a9,4}, + {0x2af2a,7}, {0x29db9,7}, {0x2a8ab,7}, {0x5be8,13}, {0x1a112,5}, {0x1aca8,9}, {0x1e649,7}, {0x7611,4}, + {0x30c9d,2}, {0x86c1,11}, {0x125fa,6}, {0xfbd1,11}, {0x1ebe9,9}, {0x1f7cb,5}, {0xc5ad,11}, {0x19b89,9}, + {0x2e127,6}, {0x205e9,8}, {0x20ed9,7}, {0x104f8,11}, {0x31a09,4}, {0x102d2,11}, {0x4057,14}, {0x1c0a,15}, + {0x10799,5}, {0x2509b,5}, {0x21f93,8}, {0x18073,7}, {0x236db,8}, {0x2e6f9,3}, {0x29da4,7}, {0x15e22,10}, + {0xa64d,11}, {0xfd7e,11}, {0x31005,6}, {0x2ca3c,2}, {0x3da0,9}, {0x7108,6}, {0xa82d,11}, {0x2150,8}, + {0x2f414,5}, {0xf6a9,11}, {0x14ab0,8}, {0xe61e,11}, {0x1aa7,10}, {0x26779,6}, {0x124d4,10}, {0xb451,12}, + {0xaf2,10}, {0x1f77e,5}, {0x30aff,4}, {0x1b11f,9}, {0x184e4,10}, {0x23f43,5}, {0x17eba,5}, {0x11eb7,5}, + {0x26e79,7}, {0xf1d,5}, {0x25553,8}, {0xe818,11}, {0x25080,3}, {0x24eb3,7}, {0x30766,4}, {0xefc9,5}, + {0xa7d9,12}, {0x2e04f,6}, {0x2fa51,4}, {0xf56e,5}, {0x1ee73,3}, {0x2af69,7}, {0x49ad,13}, {0x20389,8}, + {0x9741,11}, {0x22e5,10}, {0x24af3,5}, {0x1da72,7}, {0x25fc3,7}, {0x2d69b,6}, {0x20149,5}, {0x318f5,4}, + {0x13dd8,6}, {0x1d22d,8}, {0x1c919,9}, {0x3023a,5}, {0x1dc56,9}, {0x1441e,10}, {0x1e4ea,9}, {0x2ce39,4}, + {0x12844,8}, {0x12be6,10}, {0x1c60a,9}, {0xc241,7}, {0x10fe2,11}, {0x1b842,9}, {0x20cf1,6}, {0x3086b,4}, + {0x1a53d,7}, {0x16890,10}, {0x6984,12}, {0x15d3c,8}, {0x304e7,4}, {0x1f1bf,9}, {0xdaff,8}, {0x1c49b,7}, + {0x6cc6,5}, {0x17be8,6}, {0x9a1d,8}, {0x1f8ae,7}, {0x15a12,7}, {0x2c45d,6}, {0x1ed7e,9}, {0x9d14,3}, + {0x1c0fa,8}, {0x2967f,7}, {0x1c215,4}, {0x2287d,4}, {0x20931,8}, {0x28e44,7}, {0x1946f,9}, {0x1b839,9}, + {0x10c1a,11}, {0x13000,7}, {0x2a2b,13}, {0x128e8,5}, {0x26f4b,7}, {0x24633,8}, {0x2036e,5}, {0x20a21,8}, + {0xac0c,5}, {0x2704e,7}, {0x2f11d,5}, {0x2ea43,4}, {0x208b1,8}, {0x20f31,8}, {0x2415b,6}, {0x3361,11}, + {0xa1f1,12}, {0x17c10,6}, {0x1f980,4}, {0x17ddc,9}, {0x537a,12}, {0x30d4f,4}, {0x301bf,3}, {0xbeb9,11}, + {0x16a02,10}, {0x12a5a,6}, {0x2f4aa,5}, {0x2a857,7}, {0x2d4b5,6}, {0x260eb,6}, {0x30704,3}, {0x2f4e1,5}, + {0xa461,12}, {0xaf4,15}, {0x11331,11}, {0xe466,7}, {0x1bd25,9}, {0x3024b,3}, {0x113aa,11}, {0x30ccb,4}, + {0x22ee3,8}, {0x15dd,3}, {0x21139,8}, {0x1c35e,9}, {0x2cb49,6}, {0x50fd,7}, {0x26756,3}, {0x18f3b,6}, + {0x10db1,11}, {0xf2a5,5}, {0x2ed8d,5}, {0x1411c,10}, {0x171d2,5}, {0x86d2,7}, {0x49ff,9}, {0x94b5,4}, + {0x308d1,4}, {0x22c9b,7}, {0xee6,3}, {0x7269,4}, {0x10a78,11}, {0x31901,4}, {0x7797,2}, {0x1d67b,5}, + {0xe43,6}, {0x13942,10}, {0x29d59,3}, {0x3013d,3}, {0x85c5,11}, {0x6af0,13}, {0x1c17c,5}, {0x1a68a,5}, + {0x7f11,11}, {0x1b91a,9}, {0x24af3,8}, {0x18bd8,7}, {0x1a33c,9}, {0x140b8,10}, {0x27e39,7}, {0xa82d,9}, + {0x48d6,3}, {0x809d,12}, {0x2787b,7}, {0x31d1,8}, {0x30267,5}, {0x21971,8}, {0x2037,11}, {0x27047,7}, + {0x291f5,7}, {0x11005,8}, {0x6422,13}, {0x25375,6}, {0x1f6c6,9}, {0x17006,10}, {0x1e3dc,9}, {0x1a798,9}, + {0x234d3,8}, {0x3002a,3}, {0x1c01,9}, {0x1fad1,9}, {0x1d167,9}, {0x2420,9}, {0xa5ed,11}, {0x1d57b,9}, + {0x3063f,4}, {0x12085,11}, {0x2899,10}, {0x292e3,7}, {0x21911,8}, {0x2de39,6}, {0x11c39,11}, {0x128f8,10}, + {0x23f03,4}, {0x2264,7}, {0x2d4af,6}, {0x1896e,4}, {0x30bbb,4}, {0x6f27,12}, {0x2ada9,7}, {0x37b3,14}, + {0x6aaf,13}, {0xada9,6}, {0x17e86,7}, {0x26dc3,7}, {0x15d9,6}, {0x25273,8}, {0x2e844,8}, {0x1b638,9}, + {0x186b2,4}, {0x31408,3}, {0x16534,8}, {0x30156,3}, {0x2f4c3,5}, {0x21c19,8}, {0x26270,3}, {0x28741,7}, + {0xefb5,3}, {0x30133,3}, {0x1f165,5}, {0x1091a,3}, {0x2c6b5,4}, {0x2f559,5}, {0x2e0a3,6}, {0x959d,11}, + {0x182fa,10}, {0x170ba,6}, {0x2f54f,4}, {0xcc6,3}, {0x1f197,4}, {0x621c,4}, {0x4551,14}, {0x1d9f2,6}, + {0xe4b3,11}, {0x27cf2,5}, {0x2e282,7}, {0x117a2,4}, {0x17e74,4}, {0x1f837,6}, {0x191ba,9}, {0x23cb6,5}, + {0x227e5,6}, {0x19088,9}, {0x23f73,8}, {0x19832,9}, {0x5826,13}, {0x2aac8,5}, {0x19b9b,9}, {0x20326,9}, + {0x31011,6}, {0x1f08f,6}, {0xf9ce,5}, {0x16c5a,8}, {0x12c0e,10}, {0xbf31,6}, {0x2c663,4}, {0x197f3,9}, + {0x176b4,5}, {0x14de,3}, {0x1f945,8}, {0x2f1bd,4}, {0x1ed5a,9}, {0x12f8,5}, {0x17c2e,10}, {0xef26,6}, + {0x1d89c,8}, {0x30dc7,4}, {0x19616,9}, {0x15e0e,10}, {0x1bd4b,7}, {0x112fc,4}, {0x33a7,13}, {0x263b3,8}, + {0xf468,4}, {0x2df61,4}, {0x10b86,5}, {0x29934,7}, {0x2d743,6}, {0x805b,6}, {0x1f07b,9}, {0x21511,8}, + {0x26525,6}, {0x119fd,11}, {0x2a30b,5}, {0x5c5d,13}, {0x7941,6}, {0x105f,5}, {0x2d42b,6}, {0x2cb5,14}, + {0x21dbb,7}, {0xfbf,6}, {0x28815,4}, {0x2c8dd,5}, {0x235f3,6}, {0x25633,8}, {0x48dd,4}, {0x21af9,8}, + {0x11310,5}, {0x27ad7,5}, {0x1337a,7}, {0x1b356,6}, {0x11026,9}, {0x20168,5}, {0x1607c,4}, {0x6b65,13}, + {0x26707,4}, {0x24b9b,5}, {0x90ce,7}, {0x18804,10}, {0x2b144,5}, {0x1edf3,9}, {0x11711,5}, {0x9203,5}, + {0xc400,11}, {0xcd3d,11}, {0x27509,7}, {0x2ac50,7}, {0xfc30,3}, {0x17e54,10}, {0x11a57,3}, {0x1ac9f,9}, + {0x1bea8,9}, {0x592a,13}, {0x10125,11}, {0x17eb3,5}, {0x1367,11}, {0xbb11,12}, {0xabf9,7}, {0x1b974,5}, + {0x2a635,7}, {0x1a975,9}, {0x22633,8}, {0x1725e,10}, {0x114a9,9}, {0x2ed8d,4}, {0x2fb32,5}, {0x10d4e,11}, + {0x2c985,6}, {0x2df6d,4}, {0x26233,8}, {0x4111,5}, {0x25a33,8}, {0x1d986,9}, {0x294e2,7}, {0x21421,8}, + {0x344f,7}, {0x102c7,11}, {0xac89,12}, {0x251a5,6}, {0x420b,7}, {0x77cb,3}, {0x8655,7}, {0xd6c7,8}, + {0x2f06c,2}, {0x247a3,7}, {0xb84f,6}, {0xaa5a,7}, {0x4241,10}, {0x209f1,8}, {0x2cdb3,6}, {0x10fd7,7}, + {0x3052f,4}, {0x7534,4}, {0xff20,10}, {0x2fd30,5}, {0x26fc2,7}, {0x10188,11}, {0x20951,7}, {0x9321,9}, + {0x29575,7}, {0x8cab,8}, {0x23aeb,8}, {0x2f181,4}, {0x762b,4}, {0x1e2f5,6}, {0x1c07c,9}, {0xbb59,12}, + {0x2a83b,7}, {0x10b8b,11}, {0x23b7,15}, {0x20c3b,5}, {0x185b6,10}, {0x13d48,5}, {0x15774,8}, {0x2bd5b,6}, + {0x295d0,7}, {0x23a93,8}, {0x27445,7}, {0x2648b,8}, {0x4011,12}, {0xb499,12}, {0x2cbc7,6}, {0x2b0b4,4}, + {0x14e1e,10}, {0x1b5aa,4}, {0x11efb,3}, {0x1ccf0,9}, {0xef9,7}, {0x21f63,8}, {0x27b99,6}, {0x30188,3}, + {0xfe4a,5}, {0x1dd49,9}, {0x1c7e7,9}, {0x130e6,10}, {0x84c9,11}, {0x11f48,3}, {0x1347,7}, {0x9ce1,12}, + {0x18444,7}, {0x8445,12}, {0x2a397,4}, {0x282d1,7}, {0x17560,6}, {0x461d,5}, {0x17c44,8}, {0x12998,10}, + {0x12a01,5}, {0x112fa,11}, {0x457b,14}, {0x1b080,3}, {0x10f8,17}, {0x19700,8}, {0x3e43,6}, {0x301f,7}, + {0x2cf47,4}, {0x2a9a4,3}, {0x307fa,2}, {0x1702a,4}, {0x30ded,2}, {0x15120,10}, {0x5ecf,7}, {0x251cd,6}, + {0x1acb1,9}, {0x115e6,11}, {0x26303,6}, {0x9c81,12}, {0xa6ad,11}, {0x7534,3}, {0x1d209,9}, {0x5eeb,4}, + {0x1305a,7}, {0x1f66c,7}, {0xd740,11}, {0x206d1,8}, {0x7e8d,11}, {0x20e01,8}, {0x1b449,9}, {0x2e6ff,3}, + {0x2f948,5}, {0x18e4e,10}, {0x6610,8}, {0xc119,4}, {0x2f90c,5}, {0x1f4d1,6}, {0x202f0,9}, {0x20113,9}, + {0x2e031,6}, {0x21f8b,8}, {0x22a53,8}, {0x212c9,8}, {0x3023f,5}, {0x1ee9e,4}, {0x138ca,10}, {0x236c,15}, + {0xbccd,12}, {0x12884,4}, {0x50d1,4}, {0x3ec1,14}, {0x1530,3}, {0x177a6,8}, {0x2bf8f,6}, {0xa011,12}, + {0x1ef6d,9}, {0x6393,13}, {0x2476b,5}, {0x287fe,7}, {0x14a86,10}, {0x3156c,3}, {0x17d5c,3}, {0x4fec,13}, + {0x21ebb,8}, {0x2c1b,14}, {0x5026,7}, {0x74cc,3}, {0x24bc3,4}, {0x6250,4}, {0x1513e,9}, {0x31077,6}, + {0x2aa64,7}, {0x21ca1,8}, {0x1112c,6}, {0x16de5,5}, {0x161b0,10}, {0x3a61,4}, {0x9d35,6}, {0x116ac,11}, + {0x1834a,7}, {0x2305d,6}, {0x28f71,7}, {0x284d0,7}, {0x9aad,12}, {0x30124,3}, {0x2fc01,3}, {0xcbd2,8}, + {0x1c37,11}, {0x1ba16,9}, {0x1ff51,9}, {0x21e2b,8}, {0x1f408,5}, {0x2f379,5}, {0x27e08,7}, {0x27dd7,6}, + {0x2c849,4}, {0x15ad,3}, {0x1f7b2,4}, {0x2d03,6}, {0x6ecc,7}, {0x242d3,8}, {0x10b83,8}, {0xba21,12}, + {0x251d3,8}, {0x9d41,11}, {0x309c3,4}, {0x132bc,10}, {0xe19f,3}, {0x1b976,4}, {0x2e049,6}, {0x2634b,5}, + {0x7643,13}, {0x29e8b,7}, {0x300b,14}, {0x2f192,2}, {0x1bfdc,6}, {0xd0ce,11}, {0x168d6,10}, {0x20a59,8}, + {0x1f89c,6}, {0x21a63,6}, {0x28302,7}, {0x7899,24}, {0xb897,5}, {0x3a3d,7}, {0x2d4c7,5}, {0x4dd1,5}, + {0x1c880,6}, {0x3cbb,14}, {0x30597,4}, {0x2f6e6,4}, {0x1e27d,9}, {0x6183,8}, {0x27104,7}, {0x1eea7,9}, + {0x1ce15,4}, {0x1a7ce,6}, {0x248d3,5}, {0x19bbf,9}, {0x255b,7}, {0x18b58,8}, {0x1f5a8,4}, {0x1537,16}, + {0x20831,8}, {0x33c3,9}, {0x2f455,5}, {0x2ec1b,5}, {0x12f6,17}, {0x1e2a,3}, {0x209c,15}, {0x2c3d9,6}, + {0x2febd,3}, {0x2ab6b,5}, {0x2e7ac,8}, {0x1d797,9}, {0x343d,4}, {0x2608,7}, {0x253f3,8}, {0x1f0e1,2}, + {0x27bae,7}, {0x7935,12}, {0x15f30,10}, {0x1ef9a,6}, {0xaa01,12}, {0x1bec3,7}, {0xb349,12}, {0x2f104,4}, + {0x9c5d,12}, {0x11ce9,11}, {0x17e38,6}, {0x2c121,6}, {0x28748,7}, {0x105df,8}, {0x2b0a,15}, {0xe4d4,10}, + {0x11b31,11}, {0x309ef,4}, {0x1b2b8,3}, {0x113aa,6}, {0x21601,8}, {0xf97f,11}, {0x2b749,6}, {0x2ecc0,5}, + {0x265bb,5}, {0x2e02b,5}, {0x3062b,4}, {0x24cb5,6}, {0x29abe,6}, {0x2d533,5}, {0x30b97,4}, {0x2938b,6}, + {0x1a0a2,9}, {0x28bf8,5}, {0xc23a,5}, {0x1c2fb,9}, {0x15116,10}, {0x2675d,3}, {0x310a1,6}, {0x104e,9}, + {0x20b11,7}, {0x453b,5}, {0x6136,7}, {0x2edab,4}, {0x1b506,9}, {0x1490a,5}, {0xc040,3}, {0x592c,7}, + {0x208f1,8}, {0x8d09,12}, {0x2203b,6}, {0x2c7e9,4}, {0x1c28,8}, {0x3353,11}, {0x2330,15}, {0x2b8d5,6}, + {0xd4ee,11}, {0x1f7e8,5}, {0x193cd,9}, {0x10a57,8}, {0x17e7c,10}, {0x1bc56,9}, {0x16d86,10}, {0x7e41,2}, + {0xfadf,11}, {0xbb82,7}, {0x12f3c,6}, {0x2c6b1,3}, {0xf6f6,11}, {0x169bc,8}, {0x2dd31,6}, {0x2e207,3}, + {0x3076e,4}, {0x145d6,10}, {0x5b80,13}, {0x2658b,8}, {0xaaf,5}, {0x1c02b,9}, {0x2d55d,6}, {0x2ba2,9}, + {0x30244,5}, {0xc1d3,3}, {0x111bb,11}, {0x9d0b,4}, {0x28fd,10}, {0x11377,7}, {0x2d1eb,5}, {0x25903,7}, + {0x1d5b1,9}, {0x73a1,3}, {0x3249,14}, {0x1609,6}, {0x1e6d2,7}, {0x2e274,4}, {0x21deb,8}, {0x161ba,10}, + {0xb5f7,3}, {0x5131,13}, {0x6692,13}, {0x537a,13}, {0x2cf93,6}, {0x2ba43,6}, {0x162dc,10}, {0x10a6,7}, + {0x18a0c,10}, {0x1495a,6}, {0x99cd,4}, {0x8c93,5}, {0x2d7ab,3}, {0x29fdd,7}, {0x1329e,10}, {0x1b8de,6}, + {0x1858e,10}, {0x9a46,7}, {0x7a8a,7}, {0x1ab4e,4}, {0x10ae6,5}, {0x22f0b,7}, {0x6f1e,8}, {0x28196,7}, + {0x26615,6}, {0x72a8,9}, {0x74f1,6}, {0x35a1,7}, {0x28e21,7}, {0x10c69,3}, {0x30186,5}, {0x12d44,10}, + {0x6d59,6}, {0x28dbf,7}, {0x7235,6}, {0x4788,6}, {0x2c292,3}, {0x1b45b,9}, {0xeb7d,10}, {0x12b05,5}, + {0x2c40f,6}, {0x277f9,4}, {0x2d4fd,5}, {0x163b8,10}, {0x2a5f1,5}, {0x3015b,3}, {0xd087,4}, {0xfa0e,10}, + {0x10883,6}, {0x12c45,5}, {0x72b7,4}, {0x1057,5}, {0x6950,13}, {0xcdc1,11}, {0x22a33,8}, {0xf1f4,6}, + {0xb55b,7}, {0x1eeb9,5}, {0x7337,10}, {0xbb71,6}, {0x6cde,5}, {0x214b9,8}, {0x2ea52,5}, {0x80a9,11}, + {0x5dd1,2}, {0xb003,5}, {0xb15d,11}, {0x25303,8}, {0x17290,5}, {0x77e3,13}, {0x2b9d,14}, {0x2e81c,8}, + {0x24f83,8}, {0x123f3,5}, {0x2e23b,6}, {0x7872,6}, {0x30129,3}, {0x2a85,8}, {0x18bec,10}, {0x2e0a5,3}, + {0x10ce0,7}, {0x24703,8}, {0xb715,12}, {0x29a08,4}, {0x116f2,4}, {0x15f44,10}, {0xb205,12}, {0x7527,11}, + {0x26821,7}, {0x212d1,8}, {0x312bb,2}, {0x235ab,8}, {0x2930d,7}, {0x43be,6}, {0x30acf,4}, {0x229ab,8}, + {0x5117,13}, {0xdf33,8}, {0x140dc,4}, {0xc555,8}, {0x2d73d,6}, {0xb1ff,6}, {0x2e7bc,6}, {0x2dc5f,6}, + {0x102d2,10}, {0x21c29,8}, {0x300d9,3}, {0x275d4,7}, {0xec90,9}, {0x3a6f,8}, {0x1df65,6}, {0x17326,10}, + {0x221f3,8}, {0x2e067,6}, {0x1da5,9}, {0x25d9,9}, {0x2cc45,6}, {0x30bc7,4}, {0x480d,14}, {0xc980,9}, + {0x2f6e1,5}, {0x566c,7}, {0x5b25,13}, {0x3ebb,6}, {0x37c3,5}, {0x1a1dd,7}, {0x7197,13}, {0x2dfb5,3}, + {0x2eb6c,5}, {0x12e98,10}, {0x2fb46,5}, {0x3a6f,9}, {0xb3c9,4}, {0x228eb,4}, {0x1369a,10}, {0x10d0c,11}, + {0x2f2b1,5}, {0x18ede,4}, {0x28a71,3}, {0x2c48d,6}, {0x2a526,4}, {0x2608b,8}, {0x1b0f2,9}, {0x5d7b,8}, + {0x1f03e,4}, {0x18de0,5}, {0x2691f,2}, {0x7bd9,2}, {0x2ef74,5}, {0x7929,12}, {0x6d96,4}, {0x1d26c,7}, + {0x24c5,15}, {0x260a3,8}, {0x1db99,7}, {0xe2e5,10}, {0x200cb,9}, {0x27ef,9}, {0x30098,3}, {0x59ac,13}, + {0x2cfcf,6}, {0x17dfe,4}, {0x2abe0,7}, {0xf7d2,11}, {0x255c3,8}, {0xc37c,11}, {0x1d476,5}, {0x11068,9}, + {0x3e12,7}, {0x1e71,15}, {0x760f,13}, {0x27b1b,6}, {0x5978,13}, {0x1cfa5,9}, {0xd6c7,7}, {0xea96,7}, + {0x1fe67,9}, {0x19acc,9}, {0x1190b,11}, {0x252eb,6}, {0x2a38,15}, {0x34db,6}, {0x15a58,10}, {0xa1b5,12}, + {0x754c,5}, {0xecfe,6}, {0x102dd,11}, {0x1f285,7}, {0x13cda,7}, {0x30fd5,6}, {0x2de9f,6}, {0x1a831,6}, + {0x1507,16}, {0x79f5,6}, {0x1a816,9}, {0x25703,8}, {0x1f251,7}, {0x30219,3}, {0x29686,7}, {0x2f47,9}, + {0x1417,5}, {0x224a3,8}, {0x117a9,8}, {0x5606,7}, {0x1dae,15}, {0x19805,9}, {0xf596,11}, {0x1572e,10}, + {0x228d3,8}, {0xc32f,11}, {0xa425,12}, {0x2f862,5}, {0x2130b,6}, {0x14b3a,10}, {0x18e3e,6}, {0xc70d,10}, + {0x7ea8,4}, {0x2b4f2,4}, {0x2a17c,5}, {0x243b3,8}, {0x31029,6}, {0x16f2f,5}, {0x95d9,12}, {0x1debd,3}, + {0x27430,6}, {0x1a1fa,3}, {0x30217,5}, {0x1d3ef,9}, {0x25a43,8}, {0x272c1,2}, {0xa6b9,12}, {0x114eb,2}, + {0x2e1dd,3}, {0x24dcd,5}, {0x2401b,8}, {0x1aee8,6}, {0x635f,12}, {0x2a4a1,5}, {0x11c60,5}, {0x26e17,7}, + {0x71f4,8}, {0x2ed0b,5}, {0x2fc20,2}, {0x15b02,10}, {0x2cf57,4}, {0x2a134,7}, {0x2f4dc,5}, {0x484d,4}, + {0x30c5b,4}, {0x30ebb,4}, {0x13d42,6}, {0xc7a7,11}, {0x2d02f,6}, {0xbb37,3}, {0x13406,7}, {0x21c9b,6}, + {0x887f,6}, {0x1a4d1,9}, {0x14b71,5}, {0x31428,2}, {0xf9d9,4}, {0x311dd,5}, {0xc0c9,12}, {0x1a0bd,6}, + {0x1357,8}, {0x21341,8}, {0x2c433,6}, {0x1d128,9}, {0x23ac7,4}, {0x1a5d6,9}, {0x2f8da,5}, {0x214bb,4}, + {0x1312c,10}, {0xc51e,11}, {0x6324,7}, {0xb859,7}, {0xff38,4}, {0x131a8,5}, {0xaf41,12}, {0x1862e,5}, + {0x1b97d,6}, {0x1212,7}, {0x1e4e1,7}, {0x4ade,3}, {0xf688,11}, {0x179ae,5}, {0x2dede,3}, {0x311c4,5}, + {0x2e9c1,5}, {0x1f0bc,7}, {0x2e71b,3}, {0x230fb,8}, {0x29257,7}, {0x25d83,8}, {0x293f4,7}, {0x12ed6,8}, + {0x28cc3,7}, {0x11866,11}, {0x17c81,4}, {0x8091,11}, {0x15f44,6}, {0x2cc15,6}, {0x1e32a,3}, {0x1bb77,7}, + {0x3719,13}, {0x1510c,6}, {0x18e26,9}, {0x2e72c,3}, {0x29dce,7}, {0x31366,3}, {0x2c307,6}, {0x8031,12}, + {0x24cd3,8}, {0x2e037,6}, {0x2962d,5}, {0x2777,14}, {0x16786,6}, {0x3026c,5}, {0xa8ab,6}, {0x1bb63,9}, + {0x11866,7}, {0x3273,14}, {0x18caa,10}, {0x2acd5,7}, {0x9b3d,7}, {0x1a19,2}, {0x2e03d,6}, {0x300c0,3}, + {0x229d,4}, {0x48c6,10}, {0xf97,3}, {0x194a8,6}, {0x3967,3}, {0x2c4ff,6}, {0x1508f,5}, {0x10cbf,8}, + {0x8951,4}, {0x956d,12}, {0x1c642,6}, {0x2c1f9,6}, {0x119dc,5}, {0x11d5a,5}, {0x1e213,4}, {0xc257,11}, + {0x30899,6}, {0x142d4,9}, {0x1897,16}, {0x123c6,5}, {0xf0e7,11}, {0x183e0,10}, {0x2adf1,3}, {0xc040,5}, + {0x2c6b7,4}, {0x1ce85,9}, {0x1a7f5,6}, {0x10c5c,11}, {0x1a81f,6}, {0x1af81,5}, {0x16b24,9}, {0x169ee,10}, + {0x310ad,6}, {0x292b9,7}, {0x30e6d,2}, {0x9525,8}, {0x2efb0,5}, {0x27675,7}, {0x9fc9,12}, {0x2d25,14}, + {0x1ac57,8}, {0x11d0a,6}, {0x1f7a0,4}, {0x24bfb,8}, {0x16fe,3}, {0x1d73d,9}, {0x2407b,8}, {0x12452,10}, + {0x2fcf4,5}, {0x2037d,3}, {0x20d09,8}, {0x1b4a3,9}, {0x332d,3}, {0x13d02,8}, {0x983d,12}, {0x30c0f,4}, + {0x30d27,4}, {0x6d48,10}, {0x6caa,13}, {0x24603,5}, {0x20943,6}, {0x9093,6}, {0x291ee,7}, {0x18ce8,3}, + {0x1118a,5}, {0x2df08,3}, {0x3903,8}, {0x13e10,10}, {0x14fcc,10}, {0x2a4d0,7}, {0x1ff89,7}, {0xc463,11}, + {0x300e1,5}, {0x6007,7}, {0x1dcef,7}, {0xc06b,3}, {0xbc6d,5}, {0x2cf7b,5}, {0x30034,3}, {0x1f207,9}, + {0x2dff1,3}, {0x2f1a9,5}, {0x27001,7}, {0x9615,8}, {0xecb1,6}, {0x25ffb,6}, {0x14c5c,9}, {0x225f3,8}, + {0x3b1d,3}, {0x2024,15}, {0x2614b,8}, {0x15298,4}, {0xbfcf,10}, {0x11607,10}, {0x276b4,6}, {0x19e23,9}, + {0x2c085,6}, {0xc673,11}, {0x30a73,4}, {0x6116,13}, {0x1c463,9}, {0x15382,10}, {0x2e6b8,3}, {0x3171d,3}, + {0x7423,7}, {0xb8e2,2}, {0xb42f,3}, {0x18070,10}, {0xba81,6}, {0x478f,9}, {0x1f7fa,4}, {0x1a18c,9}, + {0x95e5,8}, {0x2f709,5}, {0x2333,2}, {0x3020d,5}, {0xa35c,4}, {0x28c63,3}, {0x724d,12}, {0x17225,4}, + {0x7cdd,7}, {0x2c4a5,5}, {0x2e496,5}, {0x729b,13}, {0x2a0a1,7}, {0xdbc3,11}, {0x1e10c,9}, {0x1c55,13}, + {0x15a8a,10}, {0x654d,13}, {0x140e0,5}, {0x269c7,4}, {0x18054,8}, {0x2e043,6}, {0x30249,5}, {0x2a6d6,7}, + {0x1e9ec,5}, {0x2b132,6}, {0xd601,11}, {0x2d887,6}, {0x18ca0,6}, {0x59e0,13}, {0x30b6b,4}, {0xbcd9,12}, + {0x2797e,6}, {0x252b7,4}, {0x3a45,13}, {0x2d56f,6}, {0x7c35,11}, {0xb903,7}, {0x1e4d8,8}, {0x2c7cf,6}, + {0x1bc6a,3}, {0x38e7,14}, {0x14a9,6}, {0x30d23,4}, {0x6bb3,9}, {0xb24d,12}, {0x1eb3e,9}, {0x7e0b,5}, + {0x9f69,12}, {0xc08d,12}, {0x1d991,7}, {0x207c1,8}, {0x190ff,7}, {0x1a84,4}, {0x1da04,8}, {0x1472a,8}, + {0x174f2,10}, {0x2464f,4}, {0x2afee,6}, {0x2fbaf,5}, {0x496c,13}, {0x2bf41,6}, {0x2f88f,5}, {0x15571,4}, + {0xf3d3,11}, {0x1c19,7}, {0x317b6,4}, {0x13226,10}, {0x17e1a,7}, {0x21f5,10}, {0x12153,2}, {0x2f563,5}, + {0x2a261,6}, {0x21d71,8}, {0x1efae,7}, {0x9e57,3}, {0x16bc,10}, {0x17210,8}, {0x2b4d4,6}, {0x2a1a6,3}, + {0x2e61c,5}, {0x1156,8}, {0xee66,3}, {0x1f9d,11}, {0xa9f5,12}, {0x23fc3,8}, {0x201c7,9}, {0x28ea8,4}, + {0x17eec,4}, {0x126be,7}, {0x2763d,7}, {0x418b,14}, {0x110c0,3}, {0x2801c,7}, {0x264c3,8}, {0x301e7,3}, + {0x2af9a,5}, {0x29911,7}, {0xfeac,4}, {0x22fe3,8}, {0x2c7a,2}, {0x3084d,4}, {0x204b1,8}, {0x15fd0,10}, + {0x273b,15}, {0x155bc,10}, {0x27894,3}, {0x27dad,7}, {0x17d7,16}, {0xf8b,3}, {0x1e3f7,8}, {0x3061b,4}, + {0x291a8,7}, {0x842d,7}, {0x515b,4}, {0x1c745,9}, {0x1c796,9}, {0x1335c,10}, {0x2e9b7,5}, {0x17468,8}, + {0x29425,6}, {0x1f97e,2}, {0x2ebee,5}, {0xcca5,9}, {0x203aa,7}, {0x30138,3}, {0xd853,11}, {0xef24,11}, + {0x1050e,10}, {0x2f59,3}, {0x29a24,7}, {0x22dc7,4}, {0x1a7e0,9}, {0x1131d,3}, {0x5bc1,13}, {0x22d6,6}, + {0xe22,4}, {0x15242,10}, {0x23dab,5}, {0x311af,6}, {0x110fb,5}, {0x18138,7}, {0x1321c,10}, {0x6fb6,13}, + {0x8835,12}, {0x2d4f,14}, {0x21b39,8}, {0x22743,8}, {0x1d13a,9}, {0x52fe,7}, {0xe474,8}, {0x10a83,4}, + {0xc254,3}, {0x1c331,9}, {0x1ebb3,9}, {0x11cbd,5}, {0x45a7,4}, {0x185de,10}, {0x127b8,10}, {0x2469b,5}, + {0x254e3,6}, {0x30f45,6}, {0x2f7a4,5}, {0x20020,9}, {0x1e3f9,7}, {0x1dd91,9}, {0x4952,7}, {0x20392,3}, + {0x151a7,5}, {0x4e48,4}, {0x2280b,7}, {0x2df79,4}, {0x1bd2e,9}, {0xa7f1,12}, {0x1114f,4}, {0x29d5e,7}, + {0x225ed,4}, {0x123ae,4}, {0xf701,11}, {0x2d677,6}, {0x1808e,10}, {0xc560,11}, {0x29bca,4}, {0x22da3,6}, + {0x306d,12}, {0x18822,10}, {0x78cb,5}, {0x1716e,6}, {0x10bf0,2}, {0x3039,10}, {0x13f71,4}, {0x1a7d7,9}, + {0x16741,3}, {0x3b6f,10}, {0x248eb,8}, {0x2d51b,6}, {0x30271,5}, {0x2be87,6}, {0x18f9e,9}, {0x30ca7,4}, + {0x11b3,17}, {0x296e1,5}, {0x15399,7}, {0x16a5c,7}, {0x2ff65,5}, {0x1070a,4}, {0x1268c,10}, {0x5f90,9}, + {0x4f45,5}, {0x4129,14}, {0x8e1d,12}, {0x24575,3}, {0x1f624,8}, {0x74bf,3}, {0x1225e,10}, {0x18d90,8}, + {0x27fca,5}, {0x520e,13}, {0x1e907,9}, {0x167fa,10}, {0x2f1e0,4}, {0xdd7b,11}, {0xe74,5}, {0x30a79,2}, + {0x2dddf,6}, {0x311a9,4}, {0x1afed,9}, {0x6726,3}, {0x24eb3,8}, {0x11b3c,10}, {0x10880,3}, {0x7eb1,10}, + {0x1ef1c,9}, {0x18bce,6}, {0x194ce,4}, {0x8c49,12}, {0x300a2,3}, {0x1cc8f,6}, {0x1b58d,9}, {0x27ca3,7}, + {0x1fc6f,7}, {0x9c24,8}, {0x8ab1,12}, {0xee81,6}, {0x1ff28,5}, {0xbd18,9}, {0x1f98d,9}, {0x24c83,8}, + {0x254b7,4}, {0x45ed,3}, {0xb385,5}, {0x13ff0,10}, {0x9af5,12}, {0xe0b9,3}, {0x12de6,5}, {0xbebb,4}, + {0x20ef9,8}, {0xf61,4}, {0xdb8c,11}, {0x157d8,6}, {0x11daf,10}, {0x12f60,10}, {0x8c9d,12}, {0x25e2b,6}, + {0xf176,6}, {0x240e3,5}, {0x28828,7}, {0xefea,11}, {0x27a42,7}, {0x285a2,7}, {0x44b9,5}, {0xef3a,11}, + {0x2eff1,5}, {0x25223,5}, {0x3fa1,14}, {0x10eb,7}, {0x19c97,9}, {0x30efd,6}, {0x24ecb,8}, {0x195d7,9}, + {0x6f3a,7}, {0x1d332,9}, {0xf22,4}, {0x1d31b,5}, {0x2a3bf,7}, {0xe4f,6}, {0x21811,8}, {0x26d86,5}, + {0xf35a,10}, {0x70f7,4}, {0x2340b,7}, {0xb5b9,11}, {0xb97b,2}, {0x30e73,4}, {0x1c975,7}, {0x24c0d,6}, + {0x300c5,3}, {0xf3de,11}, {0x1d680,9}, {0x2fbbe,4}, {0x42f2,3}, {0x293e6,5}, {0x71f4,11}, {0x2817a,7}, + {0x2b0e4,12}, {0xab1,12}, {0x7165,5}, {0x20519,4}, {0xcded,11}, {0x21829,8}, {0x1d1bb,6}, {0x193a9,9}, + {0x1c2e2,7}, {0x2d67d,6}, {0x6685,10}, {0xf3c,3}, {0x31327,3}, {0x48d5,2}, {0x94ad,7}, {0xfcad,11}, + {0x2db53,3}, {0x14ee6,8}, {0x260e3,8}, {0x1ea1e,9}, {0x25b9d,6}, {0x19b38,8}, {0x2466b,5}, {0x1fe4e,7}, + {0x2eea0,5}, {0x30737,4}, {0xd70f,3}, {0x12a60,10}, {0x2742d,3}, {0x17be3,5}, {0x4a42,5}, {0x1eb35,9}, + {0x23f9b,8}, {0x496e,4}, {0x63e9,5}, {0x2fff6,5}, {0x2e226,3}, {0x1347,16}, {0xd25a,11}, {0x22703,6}, + {0x5a5d,5}, {0xf2a2,4}, {0x1bd64,9}, {0x812d,12}, {0x1d74,8}, {0x1b4fd,9}, {0x2dc7d,6}, {0x12f2e,5}, + {0x247a3,8}, {0x185f2,10}, {0x78f9,6}, {0xb99d,5}, {0x18c6e,7}, {0x2856a,6}, {0xcb9d,6}, {0x24a0b,8}, + {0x2d78d,4}, {0x2f66e,5}, {0x31b23,2}, {0x30142,3}, {0xdab3,4}, {0x20dd9,8}, {0x1a6ae,8}, {0x7eed,12}, + {0x1ee68,8}, {0x29d4,10}, {0x3009d,3}, {0x166e2,8}, {0x8f49,7}, {0x1ba18,6}, {0x21974,4}, {0x1d2fc,6}, + {0x18318,5}, {0x2c753,4}, {0x278ac,5}, {0x26c50,7}, {0xf667,11}, {0x1dea1,4}, {0x2cc5d,4}, {0x1562c,8}, + {0x1e21a,6}, {0xc557,3}, {0x1e2ee,2}, {0x18cbe,10}, {0x2c451,6}, {0xf5ee,11}, {0x16a84,10}, {0x1ce99,6}, + {0xb169,12}, {0x2cbe2,3}, {0x31456,3}, {0x40ab,14}, {0x17538,9}, {0x1eb8f,9}, {0x1557,9}, {0x2f7cc,5}, + {0xcc40,11}, {0x1fc5f,7}, {0x12998,5}, {0x30106,3}, {0x665e,13}, {0x2c4f9,5}, {0x30011,3}, {0x21a21,8}, + {0x23153,8}, {0x2ed7,14}, {0x2c687,4}, {0x2d305,6}, {0x25bc3,8}, {0x1caf8,7}, {0x5f78,5}, {0x205a4,3}, + {0x1abd0,9}, {0x20fd1,7}, {0x1437e,7}, {0x29a8d,6}, {0x1b4eb,9}, {0xf226,7}, {0x112d9,6}, {0x2b746,3}, + {0x2edb5,5}, {0x1176,6}, {0x17506,10}, {0x149aa,6}, {0x1eedd,5}, {0x18db8,10}, {0x2fc0e,5}, {0x1417,16}, + {0x1787,8}, {0x293c3,7}, {0xd5eb,11}, {0x165ac,10}, {0x276bb,7}, {0x1787,15}, {0x406b,8}, {0x1f5ca,9}, + {0x27556,7}, {0xe0bf,11}, {0x15fe4,6}, {0x22b7d,6}, {0x31041,6}, {0x2b569,6}, {0x2aa1e,7}, {0x13b86,10}, + {0x2a707,7}, {0x2bac,5}, {0x5150,3}, {0x14f86,6}, {0x20e29,7}, {0x2f6a0,5}, {0x7351,13}, {0x29265,7}, + {0x21101,8}, {0x17605,5}, {0x1cb2c,9}, {0x1f7c2,9}, {0x2e1fc,3}, {0xde62,11}, {0x1d06d,7}, {0x2a92,11}, + {0x2cb43,6}, {0x17c74,10}, {0x2010a,9}, {0xab15,12}, {0x229e3,8}, {0x294f7,5}, {0x2a9c3,7}, {0x2186,6}, + {0x21ca9,4}, {0x7201,10}, {0x2a27d,7}, {0x2ec57,5}, {0xb74,7}, {0x23b85,5}, {0xcc86,7}, {0x5be8,5}, + {0x29eff,5}, {0x23373,8}, {0xea2d,4}, {0x2eb3f,5}, {0x1ed24,9}, {0x2aa02,5}, {0x30445,4}, {0xe92,4}, + {0x31a1d,4}, {0x2fb61,3}, {0x1f77a,9}, {0x30f99,6}, {0x2d15b,6}, {0x1a2fd,9}, {0x165de,9}, {0x21c19,7}, + {0x244d,14}, {0x19d4b,6}, {0x1bd93,4}, {0xb807,3}, {0x2cf41,4}, {0xf108,11}, {0x2f47,7}, {0x1392e,10}, + {0x15c38,10}, {0xc0e1,12}, {0x13456,9}, {0x1ad82,7}, {0x2ca15,4}, {0x184bc,10}, {0x2595b,8}, {0x6de2,13}, + {0x2df0e,3}, {0x129b9,7}, {0x7a55,12}, {0x247fd,6}, {0x1cdb6,7}, {0x20dc5,4}, {0x7f89,12}, {0x2eebe,5}, + {0x18020,7}, {0x20721,6}, {0x2366d,6}, {0x19b02,9}, {0x10894,11}, {0x30073,5}, {0x13ea6,7}, {0x203d9,6}, + {0x18480,7}, {0x8e43,7}, {0x1ba3a,7}, {0x73e2,3}, {0x2fd14,3}, {0x147a2,10}, {0x2ffbc,3}, {0x23463,8}, + {0x1422a,10}, {0x2f21b,5}, {0x2dbd7,4}, {0x7d64,5}, {0x23d2d,6}, {0x1f018,5}, {0x1f1bf,7}, {0x1b572,9}, + {0x1f03c,6}, {0x20701,8}, {0xc54c,6}, {0x14ad6,9}, {0x7281,13}, {0x25983,8}, {0x1b05,3}, {0x2dc59,6}, + {0xc44d,11}, {0x1ec4,7}, {0x824d,12}, {0x2e121,6}, {0x2ae5f,7}, {0x2c8fb,4}, {0x15148,10}, {0x1adec,9}, + {0x1bbd4,3}, {0x183a4,10}, {0x77af,5}, {0x179f,7}, {0x1aadd,8}, {0x17704,10}, {0x30066,3}, {0xe0ca,11}, + {0x1c3e5,9}, {0x270e1,7}, {0x9bd9,7}, {0xb88f,6}, {0x2a431,5}, {0x1882e,4}, {0x269dc,5}, {0x1a597,9}, + {0x322d,14}, {0x1150c,3}, {0x2f324,5}, {0x111c8,9}, {0x2c6f,14}, {0x5cf9,13}, {0x18392,5}, {0x7905,8}, + {0xca3b,11}, {0x2b851,6}, {0xb1bd,12}, {0x16fb6,10}, {0x24503,8}, {0x1c14b,9}, {0x1ca1e,9}, {0x1284,8}, + {0x29110,5}, {0x2ef9c,5}, {0x33fe,4}, {0x228eb,8}, {0x1e1a1,4}, {0x26e7,9}, {0x24025,6}, {0x1d09,11}, + {0x2f60d,4}, {0x25c9b,5}, {0x26d92,7}, {0x114ce,3}, {0x203e9,8}, {0x1637f,7}, {0x2f44b,5}, {0xc075,12}, + {0x3a37,4}, {0x244f3,8}, {0xd4d8,11}, {0x30a3f,4}, {0x2ab2,8}, {0x1482e,10}, {0x2995,3}, {0x21d79,5}, + {0x22093,6}, {0x140ea,10}, {0x2f08f,2}, {0x2fef,12}, {0xfc7,4}, {0x1bec5,5}, {0x17128,10}, {0x855b,7}, + {0x27e8f,4}, {0x2b46,15}, {0x2d3e9,6}, {0x2302b,8}, {0x18b7e,10}, {0x9358,5}, {0x201ed,7}, {0x2a8c7,7}, + {0x29ee6,7}, {0x290c,15}, {0x162cc,6}, {0x171e6,10}, {0x1168b,6}, {0x16723,5}, {0x113f7,7}, {0x2bd2b,6}, + {0x11612,11}, {0x1e676,9}, {0xb3cf,4}, {0xb34,6}, {0x3021e,3}, {0x2c24d,6}, {0x3c13,14}, {0x23f83,8}, + {0x2ee64,5}, {0x23c93,8}, {0x11e1f,8}, {0x1a954,4}, {0x2f35b,5}, {0x2ebcb,5}, {0x10d90,6}, {0x292ce,7}, + {0x18b1a,8}, {0x2f536,5}, {0x3096f,4}, {0x606d,8}, {0x2e773,3}, {0x2979e,7}, {0x15a28,5}, {0xcbfe,11}, + {0x8ff3,8}, {0x90b6,7}, {0x316ea,3}, {0x4a70,13}, {0x16430,10}, {0x19a9f,9}, {0x2d803,6}, {0x204a,7}, + {0x11ef9,11}, {0x1a68,5}, {0x13bc2,10}, {0x283f7,7}, {0x12466,10}, {0x19660,4}, {0xc2f8,11}, {0x2f2ef,3}, + {0x7004,12}, {0xeaf9,11}, {0x267aa,7}, {0x11cbd,11}, {0x2bac7,6}, {0x1d437,6}, {0xb0e1,4}, {0x279b1,5}, + {0xc26d,20}, {0x12a1a,9}, {0x2c6fa,3}, {0x24feb,8}, {0x1d40a,8}, {0x2f63f,4}, {0xc14,6}, {0x1eee6,9}, + {0x1809,4}, {0x2f783,2}, {0x1a909,9}, {0x26043,8}, {0x29ac5,6}, {0xf391,11}, {0x2c7d5,6}, {0x3169f,3}, + {0xd793,5}, {0x2f774,2}, {0x15e9a,10}, {0x1d7ab,5}, {0x1fe79,9}, {0x25683,8}, {0x2338b,8}, {0x2f39,11}, + {0x107fa,11}, {0x13a46,10}, {0x17b38,6}, {0x6c69,13}, {0x815d,11}, {0xccb9,11}, {0x59db,5}, {0x2d35f,6}, + {0x15b61,5}, {0x1e721,5}, {0x3be9,8}, {0x5f83,13}, {0x294f7,7}, {0x8f66,7}, {0x10af6,6}, {0xb8df,4}, + {0x915f,6}, {0x3176d,2}, {0x3281,14}, {0x17c01,5}, {0x18bc4,7}, {0x14991,4}, {0x6e23,13}, {0x10ecf,11}, + {0x11baa,11}, {0x2cedf,6}, {0x210d1,8}, {0xc7ab,3}, {0x1d200,9}, {0xe0d5,11}, {0x1a369,8}, {0x5e2a,5}, + {0x1f849,7}, {0xb87d,7}, {0x30061,3}, {0x1ad41,8}, {0xcce5,11}, {0x2ce85,6}, {0x185d6,8}, {0x116b9,3}, + {0xeed7,11}, {0x89c1,11}, {0x10c25,11}, {0x39b1,2}, {0x1a13f,5}, {0x943b,6}, {0x25cb3,8}, {0x30163,5}, + {0x61ba,5}, {0x25463,8}, {0x305b3,4}, {0x30b0b,4}, {0x1ed90,5}, {0x122c,4}, {0xbf6d,12}, {0x16f48,10}, + {0x10708,7}, {0x2ff67,3}, {0x27c2,5}, {0x172a4,5}, {0x2eb44,4}, {0x1ce3d,9}, {0xb625,12}, {0x198d0,4}, + {0x27f6d,6}, {0x28875,7}, {0xeb88,11}, {0x16714,10}, {0x1084,4}, {0x10d2d,11}, {0x2,5}, {0x2efbc,3}, + {0x11cd3,11}, {0x2ede7,5}, {0x13ae,9}, {0x1024e,9}, {0x10637,7}, {0x29603,5}, {0x2fa80,3}, {0x31083,6}, + {0x19253,9}, {0x188c2,9}, {0x22483,8}, {0xb7f9,12}, {0xdc9a,5}, {0x2541b,8}, {0x311fb,4}, {0x41d9,6}, + {0x1191,11}, {0x29dea,7}, {0x59d3,5}, {0x1e262,9}, {0x7226,13}, {0x30c4f,4}, {0x41e6,4}, {0x10b80,11}, + {0x2f315,5}, {0x1182d,11}, {0x1e843,3}, {0x30174,3}, {0x16dae,10}, {0x19e7,15}, {0x301fe,5}, {0xee48,11}, + {0x19c07,9}, {0x29c2,5}, {0x4607,14}, {0x2f0c3,5}, {0x6535,6}, {0x25ec5,5}, {0xefdf,7}, {0x1d15e,9}, + {0xd2b4,9}, {0xacb0,9}, {0x1e276,6}, {0x14e00,10}, {0xfb2c,7}, {0x1dcfa,7}, {0x1feaf,9}, {0x30ba3,4}, + {0x2ed7e,4}, {0x1df89,6}, {0x2ee5,14}, {0xb8f5,12}, {0x2d5d,14}, {0x11517,3}, {0x129d4,5}, {0x2e217,6}, + {0x2eedc,5}, {0x27d5,2}, {0x115e,17}, {0x30ae7,4}, {0x12542,10}, {0x1f210,9}, {0x19346,8}, {0xe87b,8}, + {0x24be6,2}, {0x298c4,7}, {0x2d2b1,6}, {0x8421,9}, {0x5d54,10}, {0x1bef0,9}, {0x207ac,5}, {0x4c05,11}, + {0x19ce8,8}, {0x1608e,10}, {0x2132,15}, {0x11e12,8}, {0x1e694,6}, {0x22d8e,5}, {0x27a2d,6}, {0x142f2,10}, + {0x15030,9}, {0x18336,6}, {0xc67e,11}, {0xaf4,14}, {0x23473,8}, {0x2ecca,5}, {0xdcb5,11}, {0x1f273,6}, + {0x1ff36,6}, {0xb121,11}, {0x24f2b,8}, {0x17876,10}, {0x319ad,4}, {0x1f34,5}, {0x29957,7}, {0x3295,5}, + {0x7b24,4}, {0x3f8e,5}, {0x52ef,3}, {0x9c45,12}, {0x27533,7}, {0x618b,7}, {0x10ec4,11}, {0x131a4,10}, + {0x215a9,8}, {0x31811,4}, {0x197c6,9}, {0x2fb1e,5}, {0x2f948,4}, {0x2b689,6}, {0x10f76,8}, {0x25c33,8}, + {0x2fe09,3}, {0x1f67,9}, {0xafb9,11}, {0x25d03,8}, {0xc392,11}, {0xf05c,6}, {0x2be5d,6}, {0x10d19,5}, + {0x4a15,13}, {0xd267,8}, {0x2e999,5}, {0x12222,10}, {0x25e23,8}, {0x876c,4}, {0x2e28b,4}, {0x15cec,10}, + {0x2b240,6}, {0x28658,7}, {0x6f68,13}, {0x48b5,5}, {0x2adef,7}, {0x1fbe,4}, {0x2bc29,6}, {0x70ee,5}, + {0x108a,2}, {0x16dd6,10}, {0x1aeb2,9}, {0x11873,6}, {0x2f79a,5}, {0x30fe7,6}, {0x1c4a4,6}, {0xc7c8,11}, + {0x1753a,8}, {0x725a,10}, {0x20fb1,8}, {0x15df0,10}, {0x2f4d0,2}, {0x1a8ee,9}, {0x4cff,8}, {0xfd5,4}, + {0x9da3,4}, {0x20ba9,7}, {0x242bb,8}, {0x30c3,6}, {0x29480,7}, {0x17bae,7}, {0x2b96b,6}, {0x6a7b,13}, + {0x41ca,7}, {0x24e23,8}, {0x2fc8b,5}, {0x66ac,13}, {0x15abc,10}, {0x30d13,4}, {0x1f998,3}, {0x13442,7}, + {0x81f9,11}, {0x2d4a5,4}, {0x5006,13}, {0x30776,4}, {0x98f6,7}, {0x9438,4}, {0x1a6d2,9}, {0x85bb,8}, + {0x2904a,7}, {0x1eb62,9}, {0xdcfc,4}, {0xeb8b,5}, {0xe468,4}, {0x2bbed,6}, {0xecb,3}, {0xc4e7,8}, + {0x27972,4}, {0x1ff1b,9}, {0x91b9,12}, {0x4233,14}, {0x30093,3}, {0x347f,4}, {0x2bf67,4}, {0x30043,3}, + {0x1976c,9}, {0x168e0,10}, {0x1b3c4,4}, {0x2f2b,11}, {0x11ac3,8}, {0x2dbd5,5}, {0x1493c,10}, {0x200df,7}, + {0x18770,3}, {0xf1c3,11}, {0x31777,3}, {0x11276,11}, {0x318d5,4}, {0x2ed60,5}, {0x42ee,5}, {0x190c7,8}, + {0x276e5,7}, {0x1d263,9}, {0x1951a,9}, {0x29cf5,7}, {0x2705c,7}, {0x21d79,8}, {0x25215,4}, {0x53ef,9}, + {0x2cff3,6}, {0x1ec94,9}, {0xf580,11}, {0x160b6,10}, {0x26603,8}, {0x2913f,7}, {0x20b29,8}, {0x8fb5,11}, + {0x1254c,10}, {0x1d04,5}, {0x31ab1,2}, {0x1121e,11}, {0x27909,5}, {0x65b9,9}, {0x9bcd,12}, {0x74fe,6}, + {0x26f83,7}, {0x18b4c,10}, {0x21079,8}, {0x4527,7}, {0x1a999,9}, {0x10918,8}, {0x2aed6,7}, {0x45c7,4}, + {0x10ad0,8}, {0x1070,6}, {0x30b3,7}, {0x3535,4}, {0x27946,7}, {0x9dbe,4}, {0x13bfe,10}, {0x252fb,8}, + {0x3ae7,6}, {0xf9c1,11}, {0x2227b,8}, {0x283b8,7}, {0x69b8,13}, {0x21649,7}, {0x1b638,8}, {0x2177,6}, + {0x3188d,4}, {0x2cad1,6}, {0x1008b,11}, {0x12ea2,10}, {0x129de,10}, {0x2ba91,6}, {0x13644,6}, {0x17eae,10}, + {0x2e055,6}, {0x2207b,8}, {0x1e127,9}, {0xe47c,11}, {0x122f4,10}, {0x7240,10}, {0x30807,4}, {0x13118,10}, + {0xf528,11}, {0x3941,3}, {0x17738,7}, {0x17f9e,6}, {0x254a3,5}, {0x1c211,5}, {0x118be,9}, {0x30863,6}, + {0x145c2,10}, {0x27698,7}, {0x26f59,7}, {0x1ff7,5}, {0x11024,11}, {0x16a20,10}, {0x17f96,3}, {0x2c703,6}, + {0x1c7d5,9}, {0xe567,2}, {0x29fba,6}, {0x86d9,12}, {0xb88c,4}, {0x71a4,10}, {0x114a0,7}, {0x2da6d,6}, + {0x2b93b,6}, {0x17f6c,10}, {0x1dbf3,9}, {0xaaf1,12}, {0xb38a,5}, {0x17df5,5}, {0x1a2f4,9}, {0x2e826,6}, + {0x2486d,6}, {0x331b,5}, {0x288fa,6}, {0x2d293,6}, {0x1e9b4,6}, {0x2dc0b,6}, {0x31ad7,2}, {0x21611,8}, + {0x119a,4}, {0xee3d,11}, {0x2009e,9}, {0x18fdd,9}, {0xff26,5}, {0x296c0,5}, {0x1e0b2,9}, {0x98ba,6}, + {0x2c85b,4}, {0x1464e,10}, {0x24bfd,6}, {0x25333,8}, {0x50af,8}, {0x1a79c,4}, {0x201f4,9}, {0x20b39,8}, + {0x11f1c,5}, {0x18e46,8}, {0x12c92,5}, {0x11d9e,6}, {0x281c0,7}, {0xb391,4}, {0x30221,5}, {0x18700,10}, + {0x8871,8}, {0x90f2,7}, {0xe51b,6}, {0x3019c,3}, {0x20d91,8}, {0x2fe1d,3}, {0x24893,7}, {0x2d47f,6}, + {0xc1dd,12}, {0xde41,10}, {0x1e1d2,7}, {0x1817,5}, {0x312df,3}, {0x2439d,6}, {0x1189d,8}, {0xbc9d,6}, + {0x25d67,4}, {0x233fb,8}, {0x28fd7,3}, {0xf8a3,11}, {0x102b1,11}, {0x1715a,10}, {0x177a6,6}, {0x17b68,6}, + {0x5191,8}, {0x10ab1,4}, {0x28111,7}, {0x23da3,8}, {0x2233,3}, {0x23ed5,4}, {0x2e21,13}, {0x2c7b7,6}, + {0x1428e,10}, {0x3d0f,14}, {0x2b2c4,6}, {0x10684,11}, {0x28f24,6}, {0x1ea30,9}, {0x28405,7}, {0x442b,4}, + {0x143e2,9}, {0x1db42,3}, {0x1b677,9}, {0x2f5a9,5}, {0x5a35,6}, {0x11d2d,7}, {0x3578,3}, {0x1b59f,9}, + {0x7226,12}, {0x2b677,6}, {0x1e80,15}, {0x2656b,8}, {0xa359,12}, {0x3b17,13}, {0x1180,13}, {0x9dad,11}, + {0x1f6cf,9}, {0x30028,5}, {0x17650,10}, {0x1f5fd,3}, {0x243c3,8}, {0x269a9,7}, {0x2e7a6,4}, {0x12fc,3}, + {0x30e59,2}, {0x5339,12}, {0xf32e,11}, {0x115af,11}, {0x2e11d,3}, {0x840c,8}, {0x24883,6}, {0x13fe8,7}, + {0x5cab,13}, {0x29f76,5}, {0x2c277,6}, {0x2f6e6,5}, {0x20ba1,6}, {0x3f02,5}, {0x48df,3}, {0xe37,6}, + {0x8096,4}, {0x5fbd,7}, {0x18b2e,10}, {0x1b050,9}, {0x104e2,11}, {0x137da,8}, {0x2ad0d,6}, {0x7941,7}, + {0x2501,15}, {0x307d4,4}, {0x2fe81,3}, {0x23a13,8}, {0x12b2,17}, {0x319a9,4}, {0x106b6,3}, {0x14342,10}, + {0x5749,10}, {0x3417,14}, {0x24f7,5}, {0x2b288,5}, {0x26cae,4}, {0x31b45,2}, {0xe5c6,11}, {0x2d02,7}, + {0x530b,7}, {0x1200e,3}, {0x1e26b,9}, {0x2b7d,2}, {0x2a9f4,6}, {0x141d0,10}, {0x2afc6,4}, {0x5f88,4}, + {0x2c211,6}, {0x1580a,8}, {0x2e6c1,5}, {0x2e0c7,6}, {0x87d5,12}, {0x17556,10}, {0x2a700,7}, {0x11c86,6}, + {0x2d37d,6}, {0x17922,8}, {0xede5,6}, {0x12ccc,10}, {0xcf2e,5}, {0x242f3,8}, {0x1e9a3,6}, {0x1459a,6}, + {0x117ed,3}, {0x1e10c,8}, {0x2abc6,3}, {0x7d3d,12}, {0x24125,6}, {0x1a0e1,9}, {0x234fb,8}, {0x103c4,8}, + {0xc0fb,3}, {0x30007,3}, {0xa2bd,12}, {0x2a4de,7}, {0x1577,16}, {0x2c5d1,6}, {0x1c5e6,9}, {0x1749,5}, + {0x242a5,3}, {0x27d28,7}, {0xa9a8,5}, {0xc4fd,10}, {0x1a95a,8}, {0x285b7,6}, {0x16688,7}, {0x217a9,6}, + {0x2d9aa,3}, {0x1fea6,9}, {0xa1c1,12}, {0x167e6,10}, {0x1da16,8}, {0x1c8b6,9}, {0x2ff80,3}, {0x10c3d,9}, + {0x56e7,7}, {0x3291,11}, {0x181fb,5}, {0xf294,11}, {0x2dbe7,6}, {0xd320,9}, {0x1f281,4}, {0x16d88,5}, + {0x130b4,10}, {0x1cf15,8}, {0x1542e,8}, {0x2454d,5}, {0x2422b,8}, {0x2c7e4,3}, {0x2fe18,3}, {0x20288,5}, + {0x19289,9}, {0x1c7d,3}, {0x8b95,12}, {0x25213,8}, {0x308ad,4}, {0x4217,4}, {0x1d9a1,8}, {0x301d1,5}, + {0x25e43,8}, {0x162b4,10}, {0x30f9,14}, {0x1b8ff,9}, {0xdc58,5}, {0x17484,6}, {0x2bbff,6}, {0xc034,3}, + {0x291e0,7}, {0xe00f,11}, {0x25ceb,8}, {0x2878e,7}, {0x175f6,9}, {0x12a31,3}, {0x487d,14}, {0x492f,8}, + {0x1a372,9}, {0x21091,8}, {0x2b527,5}, {0x10e03,6}, {0x11b75,3}, {0x1208,10}, {0x13dde,10}, {0x29897,3}, + {0x185ac,10}, {0x7f41,9}, {0x4b2d,6}, {0x1b52a,9}, {0x1abac,8}, {0xe4a8,11}, {0x3085f,4}, {0x29848,5}, + {0x2d2c3,6}, {0x2f58,4}, {0x31242,3}, {0x135a0,10}, {0x14068,7}, {0xd218,11}, {0x1d98,4}, {0x21939,8}, + {0x1decc,9}, {0x1f26a,9}, {0x19133,6}, {0xb9d1,4}, {0x19657,5}, {0x2ed74,4}, {0x17a67,5}, {0x19712,9}, + {0x17f32,3}, {0x2569b,6}, {0x2c445,6}, {0x25826,5}, {0x3010b,3}, {0x41c3,13}, {0x7983,6}, {0xd9e4,6}, + {0x4b04,4}, {0xb199,12}, {0x2603,4}, {0x21ab9,7}, {0xab69,12}, {0xb42d,8}, {0x2ce91,6}, {0x3d0f,10}, + {0x647d,5}, {0x2e536,5}, {0xacc7,4}, {0x4a91,5}, {0x1d216,5}, {0x1f9c5,3}, {0x2b779,5}, {0x1943,4}, + {0x1c46c,9}, {0x2f6af,4}, {0x1e23e,6}, {0xa785,12}, {0x19dc9,9}, {0x71f2,13}, {0x200f8,6}, {0xb67b,9}, + {0x1ba28,9}, {0x31a19,4}, {0x18994,8}, {0x2b2c2,2}, {0x111a,4}, {0x1e82f,9}, {0x1e4a2,8}, {0x19aa8,8}, + {0x21125,4}, {0x1b02c,9}, {0x1f1ec,6}, {0x24635,3}, {0x31765,3}, {0x16fe8,10}, {0x247ab,8}, {0x26453,8}, + {0x2fcc9,3}, {0xb8af,2}, {0x30aa3,4}, {0x244fb,8}, {0x30ba1,2}, {0x2df7f,4}, {0x22866,5}, {0x13a3c,10}, + {0x7ca1,7}, {0x2294b,7}, {0x18890,10}, {0x10b6a,11}, {0x1756a,10}, {0x2ffcb,3}, {0x4f84,13}, {0x2d6cb,6}, + {0x2f31f,5}, {0x22e73,8}, {0x2a64a,7}, {0x1f050,7}, {0x12e20,6}, {0x1015c,6}, {0xea3e,11}, {0x1bb3f,9}, + {0x20d39,8}, {0x28f24,7}, {0x2c5f8,3}, {0x21ce1,5}, {0x1d2f3,9}, {0x80f1,9}, {0xd433,11}, {0x562b,13}, + {0x17858,10}, {0x2c9f9,4}, {0x57d0,3}, {0x69d2,13}, {0x19c7,16}, {0x28901,7}, {0x22b83,8}, {0x4cc1,4}, + {0xe77e,11}, {0x13a70,8}, {0x2fa83,5}, {0x1e2b5,7}, {0xf1de,6}, {0x1cb3e,9}, {0x1ca27,9}, {0x2c6bb,6}, + {0xc6cf,7}, {0x30203,5}, {0x11fe2,3}, {0x2d317,4}, {0x1f531,9}, {0x1621e,10}, {0xf29f,11}, {0x1317,8}, + {0x1423e,10}, {0x3139c,3}, {0xb0de,3}, {0x2ee3c,5}, {0x721b,3}, {0xf478,10}, {0x243ad,6}, {0x26e3a,7}, + {0x24dc3,8}, {0x15fda,8}, {0x15152,10}, {0x27d0c,7}, {0xabed,12}, {0x21539,8}, {0x10bc2,11}, {0x14f22,10}, + {0x97d1,9}, {0x161ce,10}, {0x1e034,9}, {0x4e3f,9}, {0x2fec2,3}, {0x12b6e,10}, {0x21d11,8}, {0x1733a,6}, + {0x2b875,6}, {0x2f47d,5}, {0x386f,3}, {0x1bbf,15}, {0x29a96,5}, {0x8289,12}, {0x21141,8}, {0x2e2cd,5}, + {0xe87d,5}, {0x30ea5,2}, {0x4313,6}, {0xe9c5,7}, {0x24e4d,6}, {0xb49b,10}, {0x27970,7}, {0x2ea4,9}, + {0xf95,4}, {0x1f36,3}, {0x452e,4}, {0x280a3,5}, {0x18eb2,10}, {0x20981,8}, {0x28000,7}, {0x181ee,4}, + {0x2e707,3}, {0x1427,16}, {0x9d65,7}, {0x27461,7}, {0x18462,6}, {0xbf79,12}, {0x1905b,9}, {0x13cbc,10}, + {0x662a,13}, {0x1afb7,6}, {0x1928b,4}, {0x100ee,11}, {0x22373,8}, {0x229db,8}, {0x28f32,7}, {0x1f76,9}, + {0xec9b,11}, {0xd16,26}, {0x30212,5}, {0x196a6,9}, {0x1a07,6}, {0x189fa,8}, {0x26755,2}, {0x87a5,12}, + {0x20272,7}, {0x2e139,6}, {0x26ac1,7}, {0xaf95,12}, {0xe5d6,6}, {0x26ec6,7}, {0x1f4fb,9}, {0x1ce7c,8}, + {0x20b51,8}, {0x208a3,3}, {0x2b8d5,5}, {0x2b78b,6}, {0x1bff5,9}, {0xdca2,8}, {0x100c2,6}, {0x395d,8}, + {0x176f0,10}, {0x1177d,5}, {0x2b941,6}, {0xe96d,11}, {0x27f04,5}, {0x2fbd9,3}, {0x2d39b,6}, {0x111d1,11}, + {0x12358,10}, {0x1d41c,8}, {0x14d1e,6}, {0x25533,5}, {0x1bd40,8}, {0x2fbe8,3}, {0x15ab2,10}, {0x3885,13}, + {0x29249,7}, {0xf512,7}, {0xaf4,7}, {0x30a27,4}, {0x2bb63,6}, {0x1e357,4}, {0x2e7ec,8}, {0x216a1,7}, + {0x1aca2,6}, {0x9635,4}, {0x26313,6}, {0xa952,6}, {0x209e9,8}, {0x12f88,10}, {0x1de21,9}, {0x409d,14}, + {0x26fec,7}, {0x3018b,5}, {0x1e520,6}, {0x4d48,13}, {0x21db5,4}, {0x1dd9a,9}, {0x1fd64,4}, {0x1fa26,5}, + {0x17a58,9}, {0xfc13,11}, {0x14748,10}, {0x2b7e5,6}, {0x4fa2,8}, {0x2d58d,6}, {0x28b3b,7}, {0x2ffd0,3}, + {0x1b8db,9}, {0x31919,4}, {0x2738f,7}, {0x2d8ed,6}, {0x1b182,9}, {0xdcec,8}, {0x2b94d,6}, {0xc09b,2}, + {0xacc5,11}, {0x30b73,4}, {0x210d9,7}, {0x29dab,7}, {0x10b9,7}, {0x25183,8}, {0x93b1,7}, {0x12fa6,7}, + {0x300fc,3}, {0x1b5e7,9}, {0x18bce,10}, {0x2bcdd,6}, {0x1a7f2,9}, {0x27eda,6}, {0x24443,8}, {0xd1c5,6}, + {0x16070,7}, {0x1066e,8}, {0x1f0d9,5}, {0xbea1,12}, {0x8379,11}, {0x83d9,12}, {0x2a7e0,7}, {0x101cf,6}, + {0x1556c,10}, {0x230e3,8}, {0x8319,12}, {0x15a62,10}, {0x1f7d6,4}, {0x30e15,2}, {0x1aef1,9}, {0xb9c1,12}, + {0x1f2a0,6}, {0x301d6,5}, {0x3f07,14}, {0x33f2,7}, {0xfb21,11}, {0xbbfb,6}, {0x187a0,6}, {0x1fc6f,9}, + {0x2f392,5}, {0x31107,6}, {0x29913,3}, {0x2d99d,4}, {0x1d773,8}, {0x13b24,8}, {0x1999,3}, {0x2813b,7}, + {0x1707e,10}, {0x18414,4}, {0x6ba6,12}, {0x1ba1,15}, {0x2de99,5}, {0x209d9,8}, {0x136ae,9}, {0x175da,7}, + {0x8e35,11}, {0x2c327,4}, {0x194c9,9}, {0x35ed,6}, {0x316e,5}, {0x2dad3,6}, {0x20c33,6}, {0x5fb7,7}, + {0xae5f,5}, {0x23033,7}, {0x28d79,5}, {0x20044,9}, {0x2a4bb,7}, {0x19817,9}, {0x2cbaf,6}, {0x2c85f,6}, + {0x1ef9a,9}, {0x185ca,9}, {0x1fa92,6}, {0xb417,2}, {0x2ce61,6}, {0x1907,11}, {0x1dd6a,3}, {0x11b3c,11}, + {0x172a4,10}, {0x2ec7a,5}, {0x4439,9}, {0xf55f,11}, {0x261d3,8}, {0x31441,3}, {0x28a9e,6}, {0x25cdb,8}, + {0x9525,5}, {0x2a7fc,7}, {0x1d822,5}, {0x136cc,10}, {0x150ee,6}, {0x24e2b,8}, {0x31023,6}, {0xb235,7}, + {0xe256,11}, {0x2029f,7}, {0x16ded,7}, {0xf724,5}, {0x4eea,5}, {0x2a67b,7}, {0xc76,64}, {0x308fd,2}, + {0x10f3d,11}, {0x8271,12}, {0xe8b2,11}, {0x129ac,10}, {0x7911,12}, {0x1bb4,9}, {0x14360,10}, {0x30bf5,2}, + {0xe886,7}, {0x28f7a,3}, {0x1849e,9}, {0x3006b,3}, {0x15f58,6}, {0x23183,7}, {0x2c61,14}, {0x109c8,11}, + {0x29bb3,7}, {0x1f462,9}, {0x299bb,7}, {0x257db,8}, {0x2524b,8}, {0x270c5,7}, {0x255f3,5}, {0x2d599,6}, + {0x3036b,8}, {0x3003e,3}, {0x2f227,3}, {0x2da2b,6}, {0x10ef0,11}, {0x2ded8,3}, {0x63ba,9}, {0x15eae,9}, + {0x181c4,6}, {0x10d54,4}, {0x1112c,11}, {0x1ac72,9}, {0x2d64d,4}, {0x1e9f4,4}, {0x29caf,7}, {0xdb08,11}, + {0x1692,4}, {0xb661,12}, {0x16fd0,4}, {0xb805,12}, {0x22783,8}, {0x24ac3,7}, {0x175ee,4}, {0x2f8a8,5}, + {0x22d23,8}, {0x301c4,3}, {0x17b2a,10}, {0x2dbc9,6}, {0xc640,7}, {0x16234,8}, {0x155d0,10}, {0x1f50d,9}, + {0x31318,3}, {0x29193,5}, {0x2dde5,6}, {0x114cd,6}, {0x23e7b,8}, {0x6311,9}, {0x2876,15}, {0x2e289,4}, + {0x31935,4}, {0x19d3d,5}, {0x121f0,10}, {0x26a3c,7}, {0x2434b,8}, {0x3064,4}, {0x15cd,4}, {0x1f37a,7}, + {0x4ac2,5}, {0x197cf,9}, {0x2cbf9,3}, {0x31a0d,4}, {0x1ed87,9}, {0x25953,8}, {0x17487,3}, {0x86af,6}, + {0x1337a,10}, {0x220fb,8}, {0x16008,4}, {0xaea5,12}, {0x319e5,4}, {0x2cd53,6}, {0x10ad0,5}, {0x10bee,11}, + {0x17952,10}, {0x20591,4}, {0x166b0,9}, {0x1c6ac,8}, {0x1ef1e,4}, {0x275db,7}, {0x10760,11}, {0x27b37,7}, + {0x2847c,5}, {0x2b8c3,6}, {0x1aeeb,5}, {0x242fb,8}, {0x79b5,4}, {0x172b8,10}, {0x10ce,2}, {0x315b,14}, + {0x9b4c,3}, {0x8dbd,12}, {0x25283,8}, {0x299c2,7}, {0x8691,12}, {0x1dde2,9}, {0xb5f8,4}, {0x1fa9b,9}, + {0x27747,7}, {0x301ae,5}, {0x1912d,6}, {0xb20a,7}, {0x2ac81,7}, {0x10ced,9}, {0x22cdb,8}, {0x1cf1e,9}, + {0x2213,15}, {0x8c67,6}, {0x1f40d,4}, {0xbfd9,8}, {0x2e88e,5}, {0x17efe,10}, {0x25333,6}, {0x8799,10}, + {0x25e55,6}, {0x3000c,3}, {0x134ba,10}, {0x18e3a,10}, {0x2f3d3,4}, {0x19e1a,9}, {0x2ea75,5}, {0x31315,3}, + {0x100fb,4}, {0x2a1f1,7}, {0xee5e,11}, {0x2f9f2,5}, {0xf5ba,6}, {0x313f,7}, {0x10b40,9}, {0x24dcb,8}, + {0x27ea,4}, {0x8f0d,12}, {0x6832,13}, {0x2ecfe,3}, {0x1307,16}, {0x25e3b,8}, {0xdaa5,11}, {0x24d55,2}, + {0x20883,6}, {0x15af1,6}, {0x1410c,4}, {0xf856,11}, {0x30c7b,4}, {0x13c1c,10}, {0x19f7,5}, {0x2a24c,7}, + {0x2f122,5}, {0x3085d,6}, {0x119a5,11}, {0x21f05,6}, {0x9d71,7}, {0x66fe,9}, {0x16034,10}, {0x16fcd,7}, + {0x943a,4}, {0xcb85,11}, {0x2f3f1,4}, {0x2b8c9,6}, {0x22af6,4}, {0x79ad,12}, {0x2b46,13}, {0xde57,10}, + {0x5717,9}, {0x2b9b9,6}, {0x1ade3,9}, {0xc471,4}, {0x4b81,13}, {0x2b1e6,6}, {0x1686a,5}, {0x301f4,5}, + {0x301f1,3}, {0xb34,64}, {0x9519,12}, {0x47ad,3}, {0x2f902,5}, {0x12218,10}, {0x20fc1,8}, {0xf70c,11}, + {0x16f7,16}, {0x2cac7,4}, {0x24885,6}, {0x2fe63,3}, {0x2bb72,3}, {0x898a,7}, {0x846d,3}, {0x18160,10}, + {0x26ba1,6}, {0x26123,8}, {0x23a6b,8}, {0x2fdd2,3}, {0xb453,10}, {0x293ed,7}, {0x31a11,4}, {0x12e87,4}, + {0x284a6,7}, {0x1740c,10}, {0x5659,5}, {0x1c1ba,6}, {0x7bb1,12}, {0xc034,5}, {0x2a5e8,7}, {0x1a708,9}, + {0x21e6,15}, {0xf95,6}, {0x2b743,6}, {0x1f636,9}, {0x301c7,5}, {0x1e1ff,8}, {0x2e193,5}, {0x6bee,5}, + {0x24ebb,8}, {0x10642,8}, {0x1c0b2,9}, {0xadd5,4}, {0x17bd4,6}, {0x293d,4}, {0x14358,4}, {0x14e78,10}, + {0xecbc,6}, {0x15b16,10}, {0x173da,10}, {0x24f9b,8}, {0x237eb,8}, {0x1881a,5}, {0xcd6,16}, {0x2c3df,6}, + {0x45d1,4}, {0x2de1b,5}, {0x249e,3}, {0x735e,13}, {0x29d3b,7}, {0x301b8,5}, {0x2f82b,4}, {0x655a,12}, + {0x2c475,6}, {0x1c632,4}, {0x1973f,9}, {0x8301,12}, {0x315a1,3}, {0x10a5,4}, {0x1df9b,9}, {0x1a693,6}, + {0x33df,14}, {0x1e142,9}, {0x1b02c,6}, {0x3172c,3}, {0x27246,7}, {0x9039,12}, {0x1ea44,7}, {0x24a9d,5}, + {0x1edcf,7}, {0x1f545,6}, {0x2af62,7}, {0xbf7b,9}, {0x68b4,13}, {0x2fee0,3}, {0xd714,11}, {0xb541,7}, + {0x1f1b6,8}, {0x30507,4}, {0x1dcb9,6}, {0x22ab3,8}, {0xfb16,10}, {0x26767,3}, {0x16c8f,7}, {0x1c9f5,4}, + {0xcdf4,4}, {0x4d1b,6}, {0x24a43,8}, {0x1a26d,7}, {0x11d57,8}, {0x127f,13}, {0x3815,14}, {0x2ccae,3}, + {0x5715,7}, {0x1fabf,9}, {0x9c09,12}, {0x26ba,4}, {0x1f91a,7}, {0x2df85,4}, {0x22a25,5}, {0x213f9,8}, + {0x1163e,11}, {0x6ba1,2}, {0x1450e,10}, {0x1560c,10}, {0xd2d3,11}, {0x1c4bd,9}, {0x20581,3}, {0x1fbd6,9}, + {0xc36c,5}, {0x18a9a,8}, {0x2be39,6}, {0xef1,4}, {0x16516,10}, {0x15974,8}, {0x15fb2,7}, {0x23eeb,8}, + {0x28db8,7}, {0x1117c,4}, {0x21b61,8}, {0x23c73,5}, {0x2ead,14}, {0x183ea,6}, {0x2ff4e,3}, {0x30c6f,4}, + {0x1eb11,6}, {0x19241,9}, {0x2000e,9}, {0x3002,9}, {0xd16,4}, {0x1689,3}, {0x1d38c,6}, {0x1a9ab,9}, + {0x9fc9,7}, {0x6dfc,13}, {0x112a2,9}, {0xfa6,7}, {0xac65,12}, {0x361d,14}, {0x1fdd7,7}, {0x2c1e3,4}, + {0x2530b,5}, {0x348b,3}, {0x7e09,12}, {0x2ee1e,5}, {0x7713,13}, {0x912b,7}, {0x2dd19,6}, {0x2ed42,5}, + {0x26932,7}, {0x2ec68,2}, {0x2b7d,3}, {0x2704e,5}, {0x1ac7b,9}, {0xddb2,10}, {0x2eee8,3}, {0x949d,4}, + {0x215b9,8}, {0xbc19,5}, {0x5b2c,6}, {0x1b0f,2}, {0x15ee,8}, {0x18450,5}, {0x29b7b,7}, {0x3007f,3}, + {0x301cc,5}, {0x2ef53,3}, {0x310dd,6}, {0x2ff08,3}, {0x23795,6}, {0x26b85,7}, {0x6b38,6}, {0x1e6b5,9}, + {0x14a04,10}, {0x8a75,12}, {0x2fac9,4}, {0x4b10,4}, {0x2bbe7,6}, {0x1160,9}, {0xce71,11}, {0xf205,8}, + {0x2344b,7}, {0xdcfd,3}, {0x2f4d2,5}, {0x11a8c,11}, {0x22623,8}, {0x17669,4}, {0xa85d,12}, {0x117a9,6}, + {0x9af7,3}, {0x148e2,10}, {0x1b10d,9}, {0xb99d,6}, {0x1c0fa,9}, {0x15c88,10}, {0x10561,5}, {0xe7e,2}, + {0x154a4,10}, {0x12d26,7}, {0x8a69,12}, {0x28d33,7}, {0x2a255,5}, {0x2d815,6}, {0x7911,4}, {0x17d46,7}, + {0x2de9f,5}, {0x19d78,9}, {0x16692,7}, {0x254d3,8}, {0x2feae,3}, {0x6a13,10}, {0x2640b,8}, {0x313fc,3}, + {0x23963,8}, {0x6c5c,7}, {0x4e4c,13}, {0xbd75,12}, {0x24b83,8}, {0x5dd6,12}, {0x31a5b,2}, {0x205c9,5}, + {0x2c80b,6}, {0x1cc0f,9}, {0x2b5ed,6}, {0x35f5,7}, {0x12a6e,6}, {0x77e5,9}, {0x14090,10}, {0x1d959,9}, + {0x5025,5}, {0x29bcf,7}, {0x15d00,10}, {0x6bda,7}, {0x2f84e,5}, {0x1fee5,9}, {0x2ab0e,7}, {0x97a1,12}, + {0x25653,8}, {0x256e3,8}, {0xbd15,12}, {0x2a96f,7}, {0x30ea3,4}, {0x8451,12}, {0xb55d,3}, {0x1e1c2,6}, + {0x13125,6}, {0xeda3,11}, {0xf176,11}, {0x1d540,4}, {0x1a3e7,9}, {0x1eb49,3}, {0x22b2b,8}, {0x2edd,3}, + {0x1fa38,6}, {0x13636,10}, {0x3281,10}, {0x27b3,15}, {0x104d7,10}, {0x10271,5}, {0xf037,11}, {0x264bb,8}, + {0x213e1,8}, {0x1697,14}, {0x24893,8}, {0x2a534,5}, {0x1c38b,9}, {0x1eb2c,9}, {0x73bb,6}, {0xae9b,5}, + {0xf651,11}, {0xe5b,20}, {0x133c0,9}, {0x1580a,9}, {0x21271,8}, {0x525c,11}, {0x294aa,7}, {0xcda0,10}, + {0x1c8c3,5}, {0x2f7cf,2}, {0x8db1,12}, {0x2f3b5,5}, {0x47b9,14}, {0x216e3,6}, {0x65b5,13}, {0xf61a,10}, + {0xae15,6}, {0x2f7c7,5}, {0xf231,11}, {0x1ba1f,9}, {0x188d6,10}, {0x31716,2}, {0x19277,9}, {0x22dbb,8}, + {0xf27e,11}, {0x26723,8}, {0x3986,4}, {0x15ecf,7}, {0xab39,9}, {0x12b99,4}, {0xa989,12}, {0x25a6,15}, + {0x2d233,6}, {0xf042,11}, {0x103fb,5}, {0x1e706,7}, {0x15634,10}, {0xc252,5}, {0x28fcf,4}, {0x20257,9}, + {0x1da67,9}, {0x1c11e,9}, {0x31ad9,2}, {0x1527,16}, {0x1aadd,9}, {0x27525,7}, {0x642f,12}, {0xcccf,11}, + {0x177d8,4}, {0x269b0,7}, {0x17218,9}, {0xe9ba,11}, {0x7339,3}, {0x2ae89,7}, {0x2f7d6,5}, {0x1a0d8,9}, + {0xcb73,7}, {0x235d,15}, {0x21e7d,6}, {0x16142,9}, {0x30491,3}, {0x1db6c,9}, {0x2b0c0,12}, {0x18798,3}, + {0x1b560,9}, {0xf688,9}, {0x1d22d,9}, {0x2c439,6}, {0x1f3b7,9}, {0x18d3a,3}, {0x30f9f,6}, {0xe374,11}, + {0x6c37,7}, {0x77e3,5}, {0x1c022,9}, {0x20c4b,6}, {0x26753,4}, {0x116ee,5}, {0x2e23d,4}, {0x18ebc,10}, + {0xca04,8}, {0x2dcb9,6}, {0xda48,5}, {0x28c6f,7}, {0x2fc5,14}, {0x119f2,11}, {0x2c607,6}, {0x2de71,4}, + {0xdf96,10}, {0xf877,11}, {0xcc77,8}, {0x2badf,6}, {0x1ee9e,5}, {0x245d3,8}, {0x193c7,3}, {0xf80,3}, + {0xed21,9}, {0xccda,11}, {0x1219,11}, {0x129ca,10}, {0x14e50,10}, {0x1eaff,9}, {0x25b13,5}, {0x4cc1,5}, + {0x57ff,5}, {0x2dacd,6}, {0x29c77,7}, {0x1ee7a,9}, {0x151f2,10}, {0x13eba,10}, {0x27c33,7}, {0x2a16c,7}, + {0x1337,8}, {0x7e0c,4}, {0x2ed0d,3}, {0x274ae,7}, {0x158c8,6}, {0x21161,7}, {0xcdab,6}, {0x12e66,6}, + {0x2aa79,7}, {0x253eb,8}, {0x7cbf,4}, {0x2c577,4}, {0x1cdc,10}, {0x307b,14}, {0x1585a,10}, {0x25e53,8}, + {0x2d326,3}, {0x25f73,8}, {0x2be2d,5}, {0x2fc5,11}, {0x93ef,10}, {0x30b79,2}, {0xd8cc,11}, {0x2618b,8}, + {0xb903,6}, {0x29bb3,6}, {0x42f1,4}, {0x167c8,10}, {0x31233,3}, {0x31b1d,2}, {0x31c2,9}, {0x2cda1,6}, + {0x29b0b,7}, {0xbeb9,12}, {0x2b99b,6}, {0xe41e,6}, {0x2c9f1,6}, {0x301e0,5}, {0x2a62e,7}, {0xf386,7}, + {0xb427,2}, {0x715e,5}, {0x514d,9}, {0x28501,6}, {0x2fbeb,5}, {0xb379,8}, {0x2d79a,3}, {0x725a,6}, + {0x1dacc,6}, {0x2d191,6}, {0x20164,9}, {0x26f13,7}, {0x1b9e9,9}, {0x17812,10}, {0x27da6,6}, {0x9c39,12}, + {0x1f878,7}, {0x2de5f,4}, {0x89d9,12}, {0x30796,7}, {0x27c41,7}, {0x2c4b1,6}, {0x27900,7}, {0x4367,13}, + {0x1704c,5}, {0x2e1d5,5}, {0xb72a,3}, {0x5c55,8}, {0x2810a,7}, {0x2e0b5,6}, {0x2ba5,2}, {0x1ad38,9}, + {0xcc35,11}, {0x6cd3,4}, {0xa64d,12}, {0x174b1,5}, {0x28e4d,4}, {0x2202b,8}, {0x76c5,13}, {0x24013,8}, + {0x21f1b,8}, {0x2894,13}, {0x22ee3,6}, {0x2567b,8}, {0xfa5b,11}, {0x81bd,12}, {0x318c9,4}, {0x1b64a,9}, + {0xec4e,11}, {0x309af,4}, {0x1a5b,11}, {0x15724,8}, {0x18374,3}, {0x31e7,14}, {0x2ea70,5}, {0x1c211,8}, + {0x17376,10}, {0x4d35,6}, {0x748b,3}, {0x149f,8}, {0x20176,9}, {0x2812d,5}, {0x25b53,8}, {0xddd3,11}, + {0xee56,3}, {0x2b539,6}, {0x15b84,10}, {0x31750,3}, {0x2a9d1,7}, {0x3002f,3}, {0x7219,6}, {0x1df53,9}, + {0x30016,3}, {0x14086,10}, {0x24cf3,8}, {0x24c8b,8}, {0x18ea8,6}, {0x11ecd,6}, {0x3097,12}, {0x1da18,6}, + {0x2d977,4}, {0x9f6c,2}, {0x21ab1,8}, {0x1c085,9}, {0x23916,5}, {0x1e08,15}, {0x2dd37,6}, {0x2bd01,6}, + {0x2ff1c,3}, {0x2ec02,5}, {0x1a201,9}, {0x1ee3b,9}, {0x14d6a,10}, {0x1b607,4}, {0x6159,11}, {0x28d87,7}, + {0x3159a,3}, {0x5088,13}, {0x11f8a,4}, {0x1289e,10}, {0xba99,12}, {0x27e2e,4}, {0x1f614,5}, {0x3d59,10}, + {0x30002,3}, {0x1ab03,4}, {0x18522,8}, {0x30cf7,4}, {0x20115,6}, {0xf499,8}, {0x2693d,2}, {0x12cea,9}, + {0x1fe4,4}, {0x26edb,7}, {0x25405,3}, {0x49d8,9}, {0x4fbc,3}, {0x18e94,10}, {0x14d42,10}, {0x17b22,6}, + {0x24bb,9}, {0x1bb3a,5}, {0x2afa3,4}, {0x24b56,5}, {0x1eecb,6}, {0x180e8,10}, {0x5985,6}, {0x264a3,6}, + {0x295e5,7}, {0x169fa,8}, {0xb74,24}, {0x2a314,3}, {0xe1a6,10}, {0xfb1b,6}, {0x29138,7}, {0x471f,14}, + {0x24ccb,8}, {0x28684,5}, {0x2e8d9,5}, {0x2854e,6}, {0x30f27,4}, {0x30927,4}, {0xbd2d,12}, {0x6c28,13}, + {0x2444,3}, {0x5151,3}, {0xfe39,11}, {0x22773,8}, {0xbb95,7}, {0xff7a,5}, {0x175ec,7}, {0x29eb5,7}, + {0xc400,8}, {0x10e8d,11}, {0x2e1bd,5}, {0x58c8,6}, {0xee6b,6}, {0xf00,10}, {0x1f4a1,6}, {0x24613,6}, + {0x15fb2,6}, {0x4f0f,13}, {0x8d71,3}, {0xc754,6}, {0x29950,7}, {0xe2cf,9}, {0x2fd4b,3}, {0x301b3,5}, + {0x312e2,3}, {0x1657a,10}, {0x167fc,8}, {0x3016d,5}, {0xb398,3}, {0x1e997,9}, {0xc7ac,4}, {0x2ccad,2}, + {0x30039,3}, {0x1fbcd,9}, {0x2863c,7}, {0xcdcc,6}, {0x28e3d,7}, {0x26d22,7}, {0x1527e,10}, {0xefc9,6}, + {0xbf01,12}, {0x309b3,4}, {0x280e0,7}, {0x2cd2f,6}, {0x2ae74,7}, {0x1e855,7}, {0x188d6,9}, {0x34e1,8}, + {0x983f,6}, {0xaf7d,12}, {0x14946,10}, {0x1b6a4,9}, {0x23e2b,8}, {0x212b1,8}, {0x1e9e,9}, {0xc80f,6}, + {0x2feb3,3}, {0xadb7,5}, {0x2321,15}, {0x17df4,3}, {0x75b4,13}, {0x3021c,5}, {0x1c546,6}, {0xec6f,11}, + {0xc117,6}, {0x12290,10}, {0x1f65a,9}, {0x6f82,13}, {0x242db,7}, {0x2c19f,6}, {0x15c74,10}, {0x31239,3}, + {0x4a8a,9}, {0x2fbcd,5}, {0x2c2a1,6}, {0x18782,5}, {0x1af06,6}, {0x2d6f5,6}, {0x1bcc2,9}, {0x14be4,10}, + {0xbcfd,5}, {0x15c7,8}, {0x1f8d9,9}, {0x28b1c,7}, {0x30ff9,6}, {0x2d353,4}, {0x1fa77,6}, {0x165f2,9}, + {0x189e4,7}, {0x2f2b3,3}, {0x4a63,7}, {0x2f531,5}, {0xffba,10}, {0x15bd4,9}, {0x17bac,10}, {0x188b8,10}, + {0x2905f,7}, {0x3af0,2}, {0x3439,4}, {0x11d15,11}, {0xd622,11}, {0xb3c3,8}, {0x18b98,4}, {0x17afa,3}, + {0xc17d,12}, {0x2f3c,11}, {0x713c,13}, {0x262b3,8}, {0xece8,11}, {0x30110,3}, {0x208a1,8}, {0x2a4e5,7}, + {0x4925,6}, {0xedd,3}, {0x1f6e1,8}, {0x2003b,6}, {0xf6bf,11}, {0x25d63,8}, {0x15d3c,10}, {0x2bc2f,6}, + {0x7d01,12}, {0x2d0fb,6}, {0x3f4d,14}, {0x23f7,2}, {0x2317b,8}, {0x449b,8}, {0xb66f,10}, {0x777b,13}, + {0x2e289,6}, {0xa0be,7}, {0x1fd91,7}, {0xe768,11}, {0x29162,7}, {0x471f,7}, {0x11e12,10}, {0x2384d,6}, + {0x1997f,9}, {0x18732,10}, {0x2d200,3}, {0xab8d,12}, {0x228dd,3}, {0x1aa95,9}, {0x2606b,8}, {0x1f3c9,9}, + {0x2efd5,2}, {0x19df6,9}, {0x1e441,6}, {0x9c32,7}, {0x1ca56,4}, {0x10f34,3}, {0xa9dd,12}, {0x5190,3}, + {0x307cd,7}, {0x1dba2,8}, {0x227dd,6}, {0x15c1e,6}, {0xcc61,5}, {0x2145c,5}, {0x33ef,3}, {0x24d25,6}, + {0x2e2ff,5}, {0x1f5dc,8}, {0x6d53,12}, {0x8aed,12}, {0x21ff5,4}, {0x124eb,7}, {0xa37d,12}, {0x24950,3}, + {0x2ffb2,3}, {0x2e05b,6}, {0x21d8b,6}, {0x23093,8}, {0x950f,6}, {0x21991,8}, {0xc631,11}, {0x1afd2,6}, + {0x1a78f,9}, {0x14582,4}, {0x2236b,8}, {0x1c4cf,9}, {0x118ea,11}, {0x2f678,5}, {0x31885,4}, {0xec43,11}, + {0x20fd1,8}, {0x344f,14}, {0xa9c5,9}, {0x1e0ae,4}, {0x3077e,4}, {0x24483,6}, {0x1e59e,5}, {0x6c7e,5}, + {0x17d28,10}, {0xc9b7,11}, {0x22903,8}, {0x29c3f,7}, {0x1e3a6,9}, {0xa2b1,10}, {0x2f54a,5}, {0x2ae4a,7}, + {0x1d4a3,6}, {0x15a0,7}, {0x2ffc1,3}, {0x20c03,6}, {0x3034a,5}, {0x279bd,7}, {0x30ad3,4}, {0x2f989,5}, + {0xffec,5}, {0x29921,3}, {0x1385c,10}, {0x165f4,4}, {0x1d974,8}, {0x130e1,5}, {0x151a2,10}, {0x10b17,6}, + {0x2d93d,4}, {0x1e5a7,6}, {0x1fcf6,8}, {0x2fbb4,5}, {0x30070,3}, {0x2c781,6}, {0x6f4e,13}, {0x1819e,3}, + {0xc702,11}, {0x2dafd,6}, {0x2c949,6}, {0xbc31,11}, {0x244a5,6}, {0x2beed,6}, {0x1a735,5}, {0xef2,3}, + {0x19427,6}, {0x6130,5}, {0x2c75d,6}, {0x108d6,11}, {0x1c30,3}, {0xcfd1,11}, {0x1644e,10}, {0x1f98d,6}, + {0x24385,6}, {0x2200b,8}, {0x16412,10}, {0x2e1c6,3}, {0xad36,4}, {0x30a17,4}, {0xa911,12}, {0x30975,2}, + {0x1da5e,9}, {0x2e0a9,6}, {0xfec,9}, {0xfa82,5}, {0x167f0,7}, {0x17a6c,10}, {0x1649e,6}, {0x2fa92,4}, + {0x1a57,15}, {0x15698,10}, {0x14d8a,3}, {0xcc14,11}, {0x200c2,9}, {0x7997,3}, {0xcd4b,4}, {0x512b,6}, + {0x1e961,9}, {0x250a0,3}, {0x1963a,7}, {0x2ec75,5}, {0x1eac9,5}, {0x28e2f,7}, {0x201b5,5}, {0x10e63,9}, + {0x25883,5}, {0x2df14,3}, {0x23ecd,6}, {0x2aeba,7}, {0xcbea,5}, {0xb6b5,11}, {0x2157b,6}, {0xf6f,2}, + {0x2a6dd,7}, {0x1547,16}, {0x16318,5}, {0x2b2c1,3}, {0x20ea1,8}, {0x317aa,4}, {0x2df8b,4}, {0x20e21,8}, + {0x1802a,8}, {0x21fbb,8}, {0x1bf89,9}, {0x258c3,8}, {0xbacd,4}, {0x1f61,15}, {0x9df5,7}, {0xc2b6,11}, + {0x8db1,6}, {0x10a90,9}, {0xeaa6,6}, {0x2be3f,6}, {0x287d4,7}, {0x2cbc7,5}, {0x179c4,7}, {0x5604,13}, + {0x300e8,3}, {0x4c99,4}, {0x1a95a,9}, {0x2fb84,3}, {0x17f4e,10}, {0x1a6c9,6}, {0x2f3b0,5}, {0x3524,4}, + {0xdc05,11}, {0x25edb,8}, {0x31426,3}, {0x17c95,3}, {0x1ed75,9}, {0x4ad8,11}, {0x1b440,9}, {0x27e2b,7}, + {0x9c99,12}, {0xf07f,5}, {0x1dc5f,9}, {0x149b4,9}, {0x1d6c1,5}, {0x2c777,4}, {0xa275,12}, {0x44c5,7}, + {0x12cc2,10}, {0x175ce,7}, {0x1861a,10}, {0xca51,11}, {0x12019,3}, {0x194ae,8}, {0x2cfb7,5}, {0x16782,10}, + {0x30df1,2}, {0x2984,15}, {0x181ba,8}, {0x1425c,10}, {0x1e1b7,9}, {0x16e26,10}, {0x7eb1,5}, {0x29f82,7}, + {0x2de42,3}, {0x17bd4,10}, {0x2cafb,6}, {0x11661,3}, {0x1320a,5}, {0x90f4,5}, {0x5749,13}, {0x2e259,6}, + {0x12dc8,5}, {0x3128f,3}, {0x1b01,5}, {0x213bb,6}, {0x222b5,6}, {0x2a491,7}, {0x23165,5}, {0x331b,10}, + {0x15d78,7}, {0x10400,6}, {0xd1db,6}, {0x144c8,9}, {0x256fb,8}, {0x2e7be,6}, {0x31119,6}, {0x256d3,8}, + {0xc5fa,11}, {0x28c5a,7}, {0xb265,12}, {0x1cebb,9}, {0x5867,13}, {0x30869,6}, {0x3126f,3}, {0x29d96,7}, + {0x14f60,6}, {0x2b9b3,6}, {0x2487b,5}, {0x201d0,9}, {0x1ef52,5}, {0x13d60,6}, {0x5575,13}, {0x65a8,7}, + {0x127e0,10}, {0x2b99,3}, {0x2c3a3,6}, {0x7118,4}, {0x318a9,4}, {0x2d3bf,4}, {0xfe30,9}, {0x2fba0,4}, + {0x4fec,8}, {0xe35e,11}, {0x1f969,9}, {0x2f8fd,5}, {0x2354b,8}, {0x31312,3}, {0x1a213,9}, {0x2cdad,6}, + {0x2efe2,5}, {0x2ab26,4}, {0x20769,8}, {0x11704,8}, {0x1195a,9}, {0x15ff8,10}, {0x301e5,5}, {0x136fe,10}, + {0x30eb,7}, {0x23b0d,6}, {0x1bb6c,9}, {0x1745c,10}, {0x2cbd9,6}, {0x140ae,10}, {0x306b7,4}, {0x1a34e,9}, + {0x2f2a7,5}, {0x18124,7}, {0x10df3,10}, {0x8d8d,12}, {0xe471,11}, {0xe9d0,7}, {0x24cbb,8}, {0xe808,4}, + {0x2ba67,6}, {0x2eb80,5}, {0xc896,3}, {0x144be,10}, {0x1e2e9,6}, {0xc7e9,11}, {0x21b2c,5}, {0x18bf6,10}, + {0x20598,2}, {0x1990a,9}, {0x1087,2}, {0x11de8,8}, {0x50bc,13}, {0x27d1,14}, {0x2c507,4}, {0x109de,11}, + {0x279aa,4}, {0x1b51a,7}, {0x1e065,5}, {0x1e0bd,7}, {0x12808,10}, {0x1e95,3}, {0x22983,8}, {0x4003,14}, + {0x5c2e,5}, {0x26a0b,7}, {0x241b3,8}, {0x29f45,5}, {0x2f02d,5}, {0x29869,7}, {0x23f33,8}, {0x30b4b,4}, + {0x8349,12}, {0x3083f,6}, {0x579c,8}, {0x27d91,7}, {0x29464,6}, {0x2319b,8}, {0x9296,4}, {0x1e814,9}, + {0xd546,9}, {0x1a067,4}, {0x26653,8}, {0xba0c,5}, {0x1b2d8,9}, {0x27ef,15}, {0x2d3dd,6}, {0x17346,8}, + {0x2538d,6}, {0x6fd3,2}, {0x2b9fb,6}, {0x3ee2,8}, {0x111c6,11}, {0x2638b,8}, {0x2bd43,6}, {0x205c1,8}, + {0x25163,8}, {0x23c53,6}, {0x1fc6f,6}, {0xf2d6,10}, {0x1e43f,9}, {0x5e24,11}, {0x255dd,4}, {0x31047,6}, + {0x31492,3}, {0xf70c,10}, {0x28b9d,7}, {0xbac9,12}, {0xad49,12}, {0xbd81,12}, {0x2fdd0,5}, {0x2f33d,5}, + {0x30e11,2}, {0x31b5d,2}, {0x3552,7}, {0x5013,13}, {0x172b2,6}, {0x19157,9}, {0x260d6,4}, {0x13140,10}, + {0x421d,8}, {0x2c20b,6}, {0x1f852,9}, {0x20b19,8}, {0x1ec4c,9}, {0x30195,5}, {0xa3ad,10}, {0x8595,12}, + {0x3f3f,14}, {0x1325d,4}, {0x2171b,6}, {0x17bde,10}, {0x17002,4}, {0x1f48f,9}, {0x1af4,3}, {0x28725,6}, + {0x2f069,5}, {0x2a97d,7}, {0x25b26,3}, {0x1a3f9,9}, {0x10d24,6}, {0x17e86,10}, {0x15562,10}, {0x266bb,8}, + {0x2df97,4}, {0x1d6fe,9}, {0x11297,11}, {0xde20,10}, {0x22aad,5}, {0x1d72,15}, {0x8e71,11}, {0x9dad,12}, + {0x10be3,5}, {0x19b53,9}, {0x128d0,10}, {0x8f79,10}, {0xedf0,11}, {0x105be,7}, {0x28a90,7}, {0x6664,3}, + {0x1397,11}, {0x250fb,5}, {0x28c29,7}, {0x24563,7}, {0x18a2c,5}, {0x1a57c,9}, {0x14824,9}, {0xb6e5,12}, + {0x77af,6}, {0x545a,4}, {0x13a64,10}, {0x2d113,6}, {0x2fd37,3}, {0x9d05,7}, {0x2f75e,5}, {0x206f,11}, + {0x2d689,6}, {0x2b56f,6}, {0x2d425,6}, {0x28165,7}, {0x2695f,4}, {0xba0c,9}, {0x2d49d,6}, {0x2f939,5}, + {0x517f,13}, {0x5d59,8}, {0x1c21f,4}, {0x6e8f,9}, {0x26088,3}, {0x452f,3}, {0x154ea,9}, {0x445e,5}, + {0x99a5,12}, {0x247b3,8}, {0x18a48,10}, {0x2ab62,7}, {0x110ec,3}, {0x270d7,3}, {0x28d58,5}, {0x255d3,6}, + {0x2e6bd,4}, {0x2b0b4,12}, {0x2af8c,7}, {0x4ad8,13}, {0x2239b,8}, {0x16eee,10}, {0x78f9,3}, {0x1b9bc,9}, + {0x42e9,10}, {0xfeef,5}, {0x2fc5b,3}, {0x1b87c,5}, {0x26b00,7}, {0x1b0b3,8}, {0x15841,5}, {0x1e691,9}, + {0x15a26,10}, {0x301ef,5}, {0x2dac7,6}, {0x1aed,7}, {0x426d,4}, {0x2abf,15}, {0x31277,3}, {0x2e509,5}, + {0x21d69,8}, {0x2f3f1,5}, {0x306b3,3}, {0x26c57,7}, {0x2615f,4}, {0x2c085,5}, {0x29b74,7}, {0xdde3,6}, + {0x1cbd7,9}, {0x9f09,12}, {0x787f,13}, {0x2ec66,4}, {0x1027a,11}, {0x1095a,11}, {0x2cd89,6}, {0x31a63,2}, + {0x1f021,9}, {0x2740d,7}, {0x174c0,7}, {0x20b79,8}, {0x246c6,5}, {0xbbf5,12}, {0x3973,10}, {0xd13f,6}, + {0x492b,12}, {0x316e9,2}, {0x3058b,4}, {0xb72d,12}, {0x31b01,2}, {0x13912,7}, {0x2d82f,4}, {0x47f1,11}, + {0x20c59,5}, {0xc614,7}, {0x2f5e7,3}, {0x1a73e,9}, {0x4081,14}, {0x30564,3}, {0x1b707,8}, {0x1c1ff,9}, + {0xc1d1,12}, {0x241a3,8}, {0x2c45,6}, {0x1de33,8}, {0x10633,4}, {0x285b7,7}, {0xca67,11}, {0x2519b,6}, + {0x2c415,6}, {0xb45f,2}, {0x58fb,4}, {0x13082,6}, {0x11229,6}, {0x27691,7}, {0x16e44,10}, {0x14162,10}, + {0x158b8,6}, {0x2402,14}, {0x2c609,3}, {0x312c9,2}, {0x1501c,10}, {0x29f58,7}, {0x239cb,8}, {0x6b8f,5}, + {0x2a09a,7}, {0xd480,11}, {0x11788,6}, {0xfab3,11}, {0x1b356,9}, {0x16c46,10}, {0x26bf7,5}, {0x1ef81,7}, + {0x28df0,7}, {0x133ca,10}, {0x2392b,6}, {0x20cfb,4}, {0xb91b,4}, {0x29b19,7}, {0x25033,6}, {0x7201,11}, + {0x105c5,4}, {0x190ae,7}, {0x245b3,8}, {0x7af1,12}, {0x2ff3f,3}, {0x14fe,3}, {0x2be99,6}, {0xe7e3,6}, + {0xff8e,11}, {0xe164,7}, {0x1fc42,6}, {0x2c5c5,6}, {0xa34d,10}, {0x14510,5}, {0x2adf6,7}, {0xe8d3,11}, + {0x3735,6}, {0x16b24,10}, {0x1153,4}, {0x281ea,7}, {0x28cbc,7}, {0x2ab07,7}, {0x2ce69,4}, {0x12330,10}, + {0x2eec0,3}, {0x2e1db,5}, {0x1292,5}, {0x13ce0,3}, {0x4df6,8}, {0x114cb,3}, {0x655a,13}, {0x210d9,8}, + {0x285ef,7}, {0x11a36,6}, {0x2355b,8}, {0x2957,15}, {0x2d467,6}, {0x2d32f,4}, {0x2bf95,6}, {0x260ff,4}, + {0x1af69,6}, {0x2e7a4,8}, {0x2cdad,4}, {0x1a183,9}, {0xc241,11}, {0x197e1,5}, {0x138de,10}, {0x2cff9,6}, + {0x23413,7}, {0x2c3d3,6}, {0xb259,12}, {0x26e80,7}, {0x8f8a,7}, {0x2b8e1,6}, {0x2a261,7}, {0x11628,11}, + {0x1e13b,4}, {0x10fe2,5}, {0x127ae,10}, {0xbff1,5}, {0x1d9b5,7}, {0x2272b,8}, {0x1e826,9}, {0x2f3a6,5}, + {0xe0f6,10}, {0x2db03,6}, {0x1848a,5}, {0x2f22a,5}, {0x2dbad,4}, {0x9139,8}, {0x1ecaf,9}, {0xecfe,11}, + {0xe4ea,11}, {0x111c8,8}, {0x1508a,10}, {0x299f3,7}, {0x1f8ed,3}, {0x274fb,7}, {0x942e,7}, {0x1efee,6}, + {0x24d5b,8}, {0x18412,10}, {0x1abc7,9}, {0x1c6be,9}, {0x1e07c,9}, {0x7500,5}, {0xda8,48}, {0x1588c,10}, + {0x11609,9}, {0x2a7d4,5}, {0x2510b,5}, {0xf302,11}, {0x2ad86,7}, {0x1738a,8}, {0xf8bb,6}, {0x2e205,5}, + {0x21e1b,8}, {0x12c9a,10}, {0x3b4f,13}, {0x2def6,3}, {0x17038,7}, {0x226e3,8}, {0x1c6d3,3}, {0x248eb,5}, + {0x2ff33,5}, {0x114d3,11}, {0x6e42,5}, {0x28b5e,6}, {0x18980,10}, {0x16188,10}, {0x180a4,8}, {0x2feea,3}, + {0x12cea,10}, {0x20c69,8}, {0x2dce3,5}, {0x39ab,14}, {0x1f464,6}, {0x1fbbb,6}, {0x30aa7,4}, {0xea9d,4}, + {0xc841,8}, {0xf45b,7}, {0x17ad0,10}, {0x1faec,9}, {0x4d96,13}, {0x301bd,5}, {0xe103,3}, {0x26f0c,7}, + {0x25ea3,6}, {0x85d1,12}, {0x1187c,11}, {0x1537,15}, {0x9e59,8}, {0x16fca,10}, {0xce19,11}, {0x30c27,4}, + {0x300de,3}, {0x10b75,6}, {0x2b629,6}, {0x28ee0,5}, {0x19952,9}, {0x3cad,14}, {0x2e1ff,5}, {0x250a7,4}, + {0x1f28e,7}, {0x26b50,4}, {0x22cfb,7}, {0x1ddf4,9}, {0x132b5,7}, {0x2c99,8}, {0x1e181,9}, {0x2d0dd,6}, + {0x1d7bb,9}, {0x9039,11}, {0x4574,4}, {0x274fe,4}, {0x9165,12}, {0x3065,8}, {0x26ed4,7}, {0x8b95,9}, + {0x24453,7}, {0x288bb,7}, {0x31101,6}, {0x196b8,9}, {0x2b94,9}, {0x14c3e,10}, {0x2312,10}, {0x23cd3,8}, + {0x19b3c,5}, {0x27dc9,6}, {0x2d43d,6}, {0x442e,4}, {0x2c877,6}, {0x15efe,10}, {0x1ffb4,8}, {0x6e16,7}, + {0x26155,6}, {0x2369b,8}, {0x23d0b,8}, {0x30717,4}, {0x8a09,9}, {0x28413,6}, {0x1ef01,7}, {0x27794,5}, + {0x9825,9}, {0xd67a,11}, {0x30963,4}, {0xb9eb,3}, {0x1e872,5}, {0x2dee4,3}, {0x19991,9}, {0x2d995,5}, + {0x1f19b,9}, {0x2f4b4,5}, {0x20073,4}, {0x15dbe,10}, {0xceea,10}, {0x26235,4}, {0x6f27,6}, {0x1695a,7}, + {0x2d4e7,4}, {0x1e951,7}, {0x3019a,5}, {0xd029,11}, {0x1a120,9}, {0x25153,8}, {0x2ed97,5}, {0x6b81,5}, + {0x822f,2}, {0xfea9,6}, {0x48c3,13}, {0x2c345,4}, {0x26cff,7}, {0x2de96,3}, {0x2b0d8,6}, {0x14ca2,10}, + {0x175e2,10}, {0x8c07,4}, {0x21a09,8}, {0x17614,6}, {0x300ca,3}, {0x2d38f,6}, {0x22877,3}, {0x7fc5,12}, + {0x6fb6,12}, {0x16af2,10}, {0x186ec,10}, {0x2aaf2,7}, {0x2e0af,6}, {0xe22a,11}, {0x8f85,4}, {0x2fea2,5}, + {0x2fcd8,3}, {0x17c10,10}, {0x2247b,8}, {0x4c85,7}, {0x30b7b,4}, {0x259d3,8}, {0x2df02,3}, {0x5269,13}, + {0x2b84,8}, {0x18c6e,10}, {0x11e75,8}, {0x194a5,8}, {0x2f07d,5}, {0x18570,7}, {0x75ea,8}, {0x247db,6}, + {0x22a7b,8}, {0x77d8,11}, {0x1c9d6,9}, {0xed9b,8}, {0x4685,10}, {0xc22d,4}, {0x21283,6}, {0xbf6f,7}, + {0xdc6a,8}, {0x27f2e,7}, {0x301a4,5}, {0x1825a,10}, {0x30429,4}, {0x12538,10}, {0x181d0,3}, {0xe83,20}, + {0x5ff1,7}, {0xc6aa,11}, {0xf3e9,11}, {0x6ae3,10}, {0xbc93,10}, {0x30d33,4}, {0x2033,15}, {0x30183,3}, + {0x17740,10}, {0x2cc81,6}, {0x2f56d,5}, {0x2ab8c,7}, {0x364e,7}, {0x2c8bf,6}, {0x4b63,4}, {0x1c843,6}, + {0x9f1a,7}, {0x110a8,6}, {0xe500,6}, {0x696a,13}, {0x16638,9}, {0x12332,6}, {0xf74e,11}, {0x2922d,6}, + {0x33d3,3}, {0x2609e,3}, {0xe6d9,11}, {0x2999c,2}, {0x2cbeb,5}, {0x311fb,5}, {0x9303,6}, {0x27afa,5}, + {0x27492,7}, {0x26924,7}, {0x1737,15}, {0x2438b,8}, {0x141be,8}, {0x15288,10}, {0x2eaec,3}, {0x20c9,14}, + {0x265bb,8}, {0x1360e,6}, {0x10dfe,11}, {0x21621,8}, {0x1ab5,4}, {0x28460,7}, {0x54ab,7}, {0x2dcd7,6}, + {0x1e318,7}, {0xf9cc,11}, {0x2282b,8}, {0x2fe31,3}, {0x2999f,7}, {0x1cf27,5}, {0x21a31,8}, {0x8a51,12}, + {0xefaa,9}, {0xdf8b,11}, {0x30658,3}, {0xd449,9}, {0x18a86,4}, {0x136d,2}, {0x17508,4}, {0x226a3,8}, + {0x17a3a,9}, {0x2d9fb,6}, {0x25c53,6}, {0x85f5,8}, {0x2c43f,6}, {0x18cd5,7}, {0x13d84,10}, {0xced4,11}, + {0x223ab,8}, {0x29eca,5}, {0x295c6,3}, {0x201a5,4}, {0x2e898,5}, {0x2ca39,6}, {0x194e4,6}, {0x243db,5}, + {0xfd52,11}, {0x26fe5,7}, {0xd987,10}, {0x1da4,2}, {0x26bd9,7}, {0x26d3e,7}, {0x199fd,9}, {0x2abe7,7}, + {0x2e87f,5}, {0x18e28,8}, {0x15b98,10}, {0x12038,11}, {0x2c81,10}, {0x75f7,4}, {0xe17a,11}, {0x301a9,5}, + {0xfacd,6}, {0x2dfef,5}, {0x2549b,4}, {0x450f,10}, {0x2a1b6,3}, {0x46bf,3}, {0x3949,14}, {0x40ab,13}, + {0x13960,10}, {0x3a47,4}, {0x21363,4}, {0x75b6,3}, {0x25f8,8}, {0x1c1a5,9}, {0x21b59,8}, {0x2d899,6}, + {0x11f67,11}, {0xa401,11}, {0x20017,9}, {0x10bf9,6}, {0xd55c,8}, {0x27a1f,7}, {0x18ae8,10}, {0x31861,4}, + {0x2cdcb,6}, {0x3bcd,5}, {0x24233,8}, {0x28b96,7}, {0x2eeff,5}, {0x1b2cf,9}, {0x5ad7,13}, {0x110df,7}, + {0x750d,10}, {0x1d26c,9}, {0x15030,10}, {0x25f87,4}, {0x13e58,8}, {0x1468a,10}, {0x24e2b,6}, {0x297ba,7}, + {0x2bc0b,6}, {0x3007a,3}, {0x1c853,9}, {0x1e250,9}, {0x19410,5}, {0x204e1,2}, {0x3fcb,14}, {0x1439f,7}, + {0x1e91,4}, {0x2d389,6}, {0x2bec3,6}, {0x3cd7,14}, {0x16bba,10}, {0x10a5,3}, {0x1139f,7}, {0x2904a,6}, + {0x30115,3}, {0x1d92c,7}, {0x59c0,6}, {0x29a4,2}, {0x70a0,5}, {0x17030,8}, {0x3012c,5}, {0x2c4b7,6}, + {0x2dd4f,6}, {0x9e85,9}, {0x2f3ee,3}, {0x9f99,12}, {0x1dcb5,4}, {0x1c5cf,5}, {0x2f8c8,3}, {0x1e664,6}, + {0x8535,12}, {0xfd52,10}, {0x2dcef,6}, {0x20c9,15}, {0x13ac8,10}, {0x2a4d3,3}, {0x2d7d3,6}, {0x7e6b,7}, + {0x3017e,3}, {0xb6cd,12}, {0x27f8c,4}, {0x10014,7}, {0x1164b,2}, {0x29b3c,7}, {0x23683,8}, {0x2cfd7,3}, + {0x11d1,4}, {0x2c54d,6}, {0x4fb8,5}, {0x222bb,6}, {0x2c3f1,6}, {0x1f70e,9}, {0x1a369,9}, {0x230ab,8}, + {0x247d3,8}, {0x15778,4}, {0x54b7,5}, {0x5638,11}, {0x1e98e,6}, {0xeaf2,3}, {0x1646c,10}, {0x2454,8}, + {0x28240,5}, {0x7788,8}, {0x6567,13}, {0xf2fb,7}, {0xb48d,12}, {0x25a9d,6}, {0x2a508,7}, {0x2ca53,6}, + {0x1ada4,9}, {0x26908,4}, {0x11e7d,3}, {0x1ec5e,5}, {0x2ee50,5}, {0x31569,3}, {0x2a319,3}, {0xb3f1,9}, + {0x17228,4}, {0x1faa6,4}, {0x3186d,4}, {0xec33,5}, {0xdad1,9}, {0x26ef0,7}, {0x8a09,11}, {0xd2a7,11}, + {0x1f4c5,9}, {0x23fbb,8}, {0x18fe6,6}, {0x2ffc9,5}, {0xe8d3,8}, {0x3265,14}, {0x12f81,5}, {0x10fd9,3}, + {0x2e716,5}, {0x7a91,11}, {0x60d5,13}, {0x2e27c,3}, {0x1a4dc,6}, {0x2e6cb,5}, {0x7fef,6}, {0x22cbb,8}, + {0x28a74,7}, {0x346d,4}, {0x8721,12}, {0x618b,13}, {0x1c637,9}, {0xe0ed,5}, {0x1cdf8,6}, {0x190b5,9}, + {0x1ae09,6}, {0x292a,15}, {0x2e40f,5}, {0x262e5,6}, {0x18020,10}, {0x128dc,8}, {0x1e0ea,4}, {0x187be,9}, + {0x2649b,8}, {0x30089,3}, {0x2ff0d,3}, {0xc88e,10}, {0x29203,7}, {0x2b509,10}, {0x21131,8}, {0x2612b,8}, + {0x58fc,3}, {0x2c70b,4}, {0x22a9,15}, {0x164da,6}, {0x31715,2}, {0x156f2,10}, {0x126b4,10}, {0x4e73,13}, + {0x1aab9,9}, {0x30a77,4}, {0x2edba,5}, {0x62fa,6}, {0xc54a,5}, {0x2da91,6}, {0x1ab66,7}, {0xabc9,12}, + {0x10285,9}, {0x31b1a,2}, {0x2bc11,6}, {0x76bf,6}, {0x2dbb1,6}, {0x9335,3}, {0x3171b,2}, {0x11fbf,10}, + {0xd0fa,5}, {0x28fcf,3}, {0x1f14a,9}, {0x466b,12}, {0x16ea8,10}, {0x19c2b,9}, {0xc0bf,10}, {0x18624,10}, + {0xe9a4,9}, {0xb979,7}, {0x2d1e5,6}, {0x27541,7}, {0x2c90d,5}, {0xc0a7,10}, {0x31645,3}, {0x9e04,5}, + {0x6bda,13}, {0x2eda1,4}, {0x1bdbe,9}, {0x48b5,9}, {0xdde9,11}, {0x2e4fa,5}, {0x24823,5}, {0x2400b,8}, + {0x11b47,6}, {0x2b41a,6}, {0x2e9cb,4}, {0x18228,10}, {0x2b899,6}, {0x18aac,10}, {0x26186,4}, {0x1639a,10}, + {0x1350a,10}, {0x3014f,5}, {0x28a97,4}, {0x15e86,10}, {0x139ec,10}, {0x1fcae,9}, {0x1e8e5,7}, {0x150e7,7}, + {0x19216,6}, {0x12db2,6}, {0x155b2,10}, {0x29632,7}, {0xdfac,11}, {0x1fdeb,4}, {0x1a66,4}, {0x17f9e,10}, + {0x1274a,10}, {0x16d7c,10}, {0x18e08,10}, {0x314c4,3}, {0x30bab,4}, {0x29e1b,7}, {0x7ef9,12}, {0x13b90,10}, + {0x17ad2,8}, {0x70e1,13}, {0x200a7,9}, {0x1e60c,7}, {0x2a1b9,5}, {0x1699e,6}, {0x2c673,5}, {0x2d9c7,4}, + {0x2c55b,3}, {0x25723,8}, {0x117ca,5}, {0x18412,5}, {0x1a438,9}, {0x14bee,7}, {0xae3f,6}, {0x55b6,11}, + {0x26c92,4}, {0xc2e2,11}, {0x1e58c,9}, {0x15404,10}, {0x157ce,6}, {0xbbb1,8}, {0x24bd6,5}, {0x2ce73,6}, + {0x2fe77,3}, {0x31342,3}, {0x31a25,4}, {0x123ee,10}, {0x215b1,8}, {0xce03,11}, {0x25583,5}, {0xa185,10}, + {0x2597,15}, {0x1bcb0,9}, {0x9f21,12}, {0xa88d,9}, {0xe185,11}, {0x2fe70,5}, {0x1e47,4}, {0x2275b,8}, + {0x21831,8}, {0x98c1,12}, {0x1a6a5,6}, {0x4225,7}, {0x2d137,6}, {0x113c0,11}, {0x2df91,4}, {0x1f63a,5}, + {0xc6f7,11}, {0xcf6,32}, {0x2902e,7}, {0xc4f2,11}, {0xb1e1,12}, {0x16ed2,8}, {0x184c6,10}, {0x300b6,3}, + {0x1c211,9}, {0x3535,8}, {0x1b7bb,9}, {0x2920c,4}, {0xe79f,11}, {0x28fc5,5}, {0x203a3,6}, {0x221e5,6}, + {0xbf25,12}, {0x2068,7}, {0x2403b,7}, {0x81f9,12}, {0x2d259,2}, {0x2a930,5}, {0x4d50,5}, {0x15dbe,7}, + {0x9759,12}, {0x16c34,8}, {0x74f7,2}, {0x17308,6}, {0xe89c,11}, {0x172ae,10}, {0xc20a,4}, {0x2e766,3}, + {0x22893,7}, {0xaf11,11}, {0xdd8,48}, {0x1f9d5,8}, {0x67f1,13}, {0x10249,5}, {0x2d134,3}, {0x29f3c,7}, + {0x1e55,5}, {0x110f5,11}, {0x1eeef,9}, {0x155a,4}, {0x6d87,13}, {0x1e537,4}, {0x1b7f6,4}, {0x2decc,3}, + {0xb404,5}, {0x2b48,3}, {0x5833,10}, {0x617e,13}, {0x30804,2}, {0x18458,10}, {0x2a5be,7}, {0x1524c,10}, + {0x750d,6}, {0x21e9b,8}, {0x1d8e4,9}, {0x16d04,10}, {0x25256,5}, {0x315a0,3}, {0x269c5,7}, {0x1971b,9}, + {0x18908,9}, {0x13ee2,10}, {0x2b5db,6}, {0x1612e,10}, {0x21e83,8}, {0x163cc,10}, {0x18b38,6}, {0x25853,8}, + {0x103cf,11}, {0x5cec,13}, {0xb54d,7}, {0x20cd9,8}, {0xeee,4}, {0x2cd65,6}, {0x7b94,5}, {0x4c5e,13}, + {0x1f38,7}, {0xb5c7,10}, {0x2d3b3,5}, {0x2d911,5}, {0x647d,13}, {0x294f2,4}, {0x1e1ae,6}, {0xadab,6}, + {0x11a97,11}, {0x25e83,8}, {0x2eafe,5}, {0x8c25,12}, {0x15102,8}, {0x5edc,4}, {0x62b6,4}, {0x30523,4}, + {0x2f9f9,3}, {0x4cfa,13}, {0xc8af,11}, {0x2ff49,3}, {0x4d72,6}, {0x2cd17,5}, {0x1d670,7}, {0x13f32,10}, + {0x2a6cf,7}, {0x30181,5}, {0x2adb0,7}, {0x190e2,9}, {0x15396,9}, {0x188ae,10}, {0x2c1a5,6}, {0x4633,3}, + {0x1149c,11}, {0x312fa,3}, {0x3032f,5}, {0x1bf14,9}, {0x3159e,3}, {0x21ff3,8}, {0x1d7b6,5}, {0x161c4,10}, + {0x16a42,4}, {0xb9d0,5}, {0x1c78d,9}, {0xb9b5,12}, {0x298af,7}, {0x2c4a5,6}, {0x1fcc2,7}, {0x1fcb9,7}, + {0x19820,9}, {0x27a0a,6}, {0x2ee2d,5}, {0x21f5,15}, {0x2f961,5}, {0x2485b,8}, {0x304e3,4}, {0xc564,7}, + {0x1c28,11}, {0x23103,6}, {0x1f5f7,6}, {0x9ca5,12}, {0x1eb25,3}, {0x1206f,6}, {0x1536e,9}, {0x23555,6}, + {0x8e11,12}, {0x18429,7}, {0x1eac9,9}, {0x1e80b,9}, {0x2b0a,7}, {0x1e252,6}, {0xe117,10}, {0x215e1,8}, + {0x2ba07,6}, {0x17902,6}, {0x2fbcf,3}, {0x313a5,3}, {0x5097,10}, {0x24e93,8}, {0x26ff,13}, {0xbd6b,3}, + {0x3399,14}, {0x2fb41,5}, {0x28e6e,7}, {0x23823,8}, {0x1bb2d,9}, {0x6fa4,5}, {0x1eb23,8}, {0x2df9d,4}, + {0xdb76,11}, {0x27cec,3}, {0x17b66,10}, {0x259a0,3}, {0x29394,5}, {0x2669b,8}, {0x7b5d,8}, {0x2eea5,5}, + {0x19cec,5}, {0x5848,5}, {0x23ce3,8}, {0x1c9fe,4}, {0x26c73,7}, {0x29d57,7}, {0x26da0,7}, {0x1eb6b,7}, + {0x2037a,3}, {0x2956e,7}, {0x2768a,7}, {0x2ac3b,7}, {0x2e0c1,6}, {0x362b,14}, {0x2ce1,4}, {0xf457,11}, + {0xe27c,6}, {0x287a5,5}, {0xc0b1,12}, {0x26b3a,5}, {0xce19,10}, {0x303e9,4}, {0xe1a0,6}, {0xceea,11}, + {0x306ff,4}, {0x4315,4}, {0x13316,10}, {0x11d5,17}, {0x2e7c6,6}, {0x14862,4}, {0x1ec06,4}, {0x1eb9b,6}, + {0xcfb5,6}, {0x1e4f5,6}, {0x2d397,4}, {0x78cf,4}, {0x229d3,8}, {0x1cf71,3}, {0x2ded2,3}, {0x26c2d,7}, + {0x25c03,5}, {0x136ee,6}, {0x1f3d2,9}, {0x2fc6a,3}, {0x4bf8,5}, {0x7d66,4}, {0x2fd5a,3}, {0xaaf,7}, + {0x1a134,6}, {0x1c1f6,9}, {0x24903,6}, {0x282a7,7}, {0x12b2,16}, {0x10b33,5}, {0x30d3b,4}, {0xb34,5}, + {0x95c1,7}, {0x28f63,7}, {0xfc60,11}, {0x20152,9}, {0x1d533,9}, {0x3505,14}, {0x2e930,5}, {0x4bc2,13}, + {0x1f3dd,7}, {0x13d66,10}, {0x2cd5b,4}, {0x168ea,10}, {0x22185,6}, {0x1731c,5}, {0x3c67,14}, {0x1a20a,9}, + {0x1db2d,4}, {0xbc21,4}, {0x1f89a,9}, {0x2c30,5}, {0x1597,16}, {0x2869e,7}, {0x173a0,5}, {0x2ed1f,5}, + {0x2e280,9}, {0x30cef,4}, {0x28b10,5}, {0xd291,11}, {0xe6f,13}, {0x21bbc,5}, {0x261eb,8}, {0x2f504,5}, + {0x22693,8}, {0x2fa56,5}, {0x2f7f,13}, {0x1168b,5}, {0x1efb5,4}, {0xcbbc,11}, {0x1d830,9}, {0x21999,8}, + {0x16a3e,10}, {0x296ef,6}, {0x3cc0,9}, {0x2c5cd,4}, {0x18d2c,10}, {0x125ec,7}, {0x1d93e,9}, {0x29102,5}, + {0x6418,7}, {0xaee1,12}, {0xce5b,11}, {0x270a2,7}, {0x7219,13}, {0x2f736,5}, {0x25495,6}, {0x2f5d1,5}, + {0x2b989,6}, {0xcec9,10}, {0x2dbe1,6}, {0x29c8c,7}, {0x235fb,8}, {0x285cc,7}, {0x1b098,6}, {0x19c73,9}, + {0x8e95,9}, {0x669f,13}, {0x4527,11}, {0x11d4c,11}, {0x217f3,6}, {0xeb8b,4}, {0x2fe89,5}, {0x29f6d,7}, + {0x2de65,3}, {0x64e5,13}, {0x12dee,10}, {0x13d20,10}, {0x15256,10}, {0x14b21,5}, {0x15aca,4}, {0x113c0,6}, + {0x274a7,7}, {0x1119a,7}, {0x746f,13}, {0x10180,5}, {0x3141a,3}, {0x129a4,4}, {0x30bf7,4}, {0x2499b,8}, + {0xeb7d,11}, {0xe59a,8}, {0x2dcfb,6}, {0x2ac05,5}, {0x2c337,6}, {0x2d443,5}, {0x2bd19,6}, {0x114de,11}, + {0x9ee5,12}, {0x1ef6a,3}, {0xea8b,11}, {0x14164,7}, {0x14fb8,9}, {0x12312,5}, {0x78d5,12}, {0x78e1,12}, + {0xb145,6}, {0x18bee,8}, {0x14630,10}, {0x17008,4}, {0x2a834,7}, {0x11bd8,8}, {0x29e14,7}, {0x11a13,11}, + {0x1eee9,5}, {0x181ab,5}, {0x2536d,6}, {0xa04d,12}, {0x12526,8}, {0x15ef4,9}, {0x24657,4}, {0x2cbf7,5}, + {0x2f243,5}, {0x666b,11}, {0xadd3,4}, {0xa82d,12}, {0x28470,5}, {0x11feb,5}, {0x179d6,9}, {0x21e35,6}, + {0x1540e,10}, {0x2eb6,4}, {0x8541,12}, {0x19b77,9}, {0x2a9a0,7}, {0x20669,8}, {0x181b2,3}, {0x2954b,7}, + {0x1ca18,6}, {0x254bb,8}, {0x2bae7,4}, {0x199eb,9}, {0x3203,14}, {0x26965,5}, {0x26543,8}, {0x13d68,4}, + {0xafe9,12}, {0x6574,8}, {0x2c84d,6}, {0xe8a7,11}, {0x25d8b,8}, {0x2d18b,6}, {0x21179,8}, {0x1783c,8}, + {0x24763,5}, {0x5cb8,13}, {0x13af2,8}, {0x30d0d,2}, {0x3be9,6}, {0x1fa0b,9}, {0x22113,8}, {0x3a4f,4}, + {0x2acb9,7}, {0x2411b,8}, {0x2f916,5}, {0x30bbd,2}, {0x7575,3}, {0x1c6e2,6}, {0x17ac,4}, {0x2535d,5}, + {0x3287,4}, {0x30e63,4}, {0x26921,4}, {0x1f83c,4}, {0x2ecb8,2}, {0xd1d6,11}, {0xb049,12}, {0x31909,4}, + {0x1c19c,7}, {0x10eb9,11}, {0x716a,6}, {0xd60f,4}, {0x2ff7e,5}, {0x1e8fe,9}, {0x1497,14}, {0x2bfe3,6}, + {0x837d,3}, {0xcdab,11}, {0x13040,6}, {0xe21,6}, {0x22c2d,6}, {0x2d941,5}, {0xcbc7,8}, {0x643c,13}, + {0x13d36,7}, {0x28540,7}, {0x10ea3,11}, {0x2cb1f,6}, {0x6176,7}, {0x13410,10}, {0x2ef38,5}, {0x1c250,9}, + {0x479d,12}, {0x6929,13}, {0x102f3,10}, {0x49c7,13}, {0x2ce1f,6}, {0x2006,15}, {0x2c511,6}, {0x2ef72,2}, + {0x20e51,8}, {0x2b659,6}, {0x78cb,10}, {0x1b1c1,9}, {0x28038,7}, {0x310e3,6}, {0x300b1,3}, {0x30753,4}, + {0xb871,12}, {0xc765,11}, {0x2f6d2,5}, {0x1b062,9}, {0x28c99,7}, {0x30e13,4}, {0x28d56,7}, {0x30c6d,2}, + {0x30e7f,4}, {0xf641,5}, {0x8d21,9}, {0x25aed,5}, {0x21014,5}, {0x1d076,5}, {0x2a352,4}, {0x1eb47,9}, + {0x2d22d,6}, {0x31714,3}, {0x152c7,4}, {0x13a00,10}, {0x236a3,8}, {0x180fc,10}, {0x17a76,10}, {0x2d6c5,6}, + {0xba23,4}, {0x28787,7}, {0x1a1dd,9}, {0x20921,8}, {0x1517a,10}, {0x7636,7}, {0x1c173,5}, {0x1980e,9}, + {0x9ad1,12}, {0x4397,8}, {0x23d3b,8}, {0x10f8a,11}, {0xc878,11}, {0x6859,13}, {0x135be,10}, {0x29bc1,6}, + {0x17678,6}, {0x15c1d,4}, {0x10f7f,11}, {0x7d03,3}, {0x13690,10}, {0x16ef8,10}, {0x2aeeb,7}, {0x18c8c,7}, + {0x191f0,9}, {0xfe5,5}, {0x248c,12}, {0x24afb,8}, {0x13032,10}, {0xcf47,6}, {0x107b8,11}, {0x7552,7}, + {0x24c1f,4}, {0xde20,6}, {0x1e769,9}, {0x2a77e,5}, {0x2d5cf,6}, {0x22e4b,8}, {0x13790,3}, {0x24f6,6}, + {0x25903,8}, {0x188b,4}, {0x2ff3a,3}, {0x1933d,9}, {0x2d8c9,6}, {0x2caad,6}, {0x2f5f9,5}, {0xdab0,7}, + {0x214d1,8}, {0x28f7f,7}, {0x17119,5}, {0x2f687,5}, {0x2bfa1,5}, {0x300ff,5}, {0x1eadb,9}, {0x3737,7}, + {0x28dcd,7}, {0x2c15d,6}, {0x22a1,8}, {0x20095,6}, {0x1671e,10}, {0x27a9d,7}, {0x1bc7a,6}, {0x2ea90,3}, + {0x4de4,13}, {0x2b9d1,6}, {0x12e02,10}, {0x21e5b,8}, {0x30cc7,4}, {0x31442,2}, {0x27bd1,6}, {0x3044d,4}, + {0x15b0c,10}, {0x1d116,9}, {0x8eaa,3}, {0x30fc9,6}, {0x10555,5}, {0xe025,11}, {0x10a99,11}, {0x21391,8}, + {0x44a3,6}, {0x177ce,3}, {0x90ed,12}, {0x1e8a4,9}, {0x290d1,5}, {0xf323,11}, {0x890d,12}, {0x2f0ff,5}, + {0x1b293,6}, {0x2f046,4}, {0x17c9c,10}, {0x1117b,3}, {0xb121,12}, {0x1f612,9}, {0xb10d,6}, {0x10d17,11}, + {0x5699,3}, {0x182e6,7}, {0xf861,11}, {0x1736c,10}, {0x2ce2b,6}, {0x12dd0,9}, {0xa31d,12}, {0x163e4,5}, + {0x1aa2b,6}, {0x1ee8c,9}, {0x311bf,5}, {0x2e0a3,5}, {0x16cbe,6}, {0x85dd,12}, {0x30325,5}, {0x21b41,8}, + {0x221a3,8}, {0x20559,3}, {0x2a070,7}, {0x2b971,6}, {0xd3bf,6}, {0x2f3d0,3}, {0x23e3b,8}, {0x2fe13,3}, + {0x11a81,10}, {0x2e816,4}, {0x162c,9}, {0x13eba,6}, {0x2beff,6}, {0xa80f,6}, {0x1999,4}, {0x223f3,8}, + {0x9621,7}, {0x1ffd8,9}, {0xfa9d,11}, {0x10e2a,11}, {0x2e356,5}, {0x100ac,11}, {0x2723f,7}, {0x1dcab,5}, + {0x3172f,3}, {0x2a460,7}, {0x2f515,3}, {0x12740,7}, {0xc021,12}, {0x23846,5}, {0x1937,8}, {0x10c6a,4}, + {0x16d57,7}, {0x26383,8}, {0x28057,4}, {0xea12,11}, {0x1643a,10}, {0xbccf,6}, {0x1a110,5}, {0x2e450,5}, + {0x453b,8}, {0x1e9f1,9}, {0x1c4e1,9}, {0x2d7af,6}, {0xc099,7}, {0x6921,3}, {0x1bee7,9}, {0x1144a,5}, + {0x2d919,4}, {0x4d2e,8}, {0x14338,10}, {0x1f840,8}, {0x18d68,9}, {0x1e57a,5}, {0x17844,10}, {0x2ab1c,7}, + {0x2b048,6}, {0x1c867,7}, {0x3b4f,14}, {0x17a26,10}, {0x2540b,8}, {0x2bc9b,6}, {0x28b88,5}, {0x19b65,9}, + {0xfe3,18}, {0x2470b,8}, {0x19e25,6}, {0x27a49,7}, {0xbc01,8}, {0x18ade,10}, {0xb9f1,8}, {0x2d981,2}, + {0x153fa,10}, {0x2fe4f,3}, {0x26d53,5}, {0xfec8,11}, {0x2f211,5}, {0x317c9,4}, {0x17576,7}, {0xdc1b,11}, + {0x21d91,8}, {0x8421,12}, {0x486f,14}, {0x20a09,8}, {0x1d41c,9}, {0x62ea,13}, {0x301d,5}, {0x25875,6}, + {0x27dd0,7}, {0x30ed3,4}, {0x4ea7,13}, {0x12c68,10}, {0x21329,8}, {0xf89,18}, {0x1576a,7}, {0x13a00,9}, + {0x25e93,8}, {0x22f4b,8}, {0xb396,3}, {0x31aa9,2}, {0x31473,3}, {0x9113,7}, {0x15ad0,10}, {0x1e517,9}, + {0x737a,5}, {0x3e7b,14}, {0x2c727,6}, {0x2da3d,6}, {0x26dbc,7}, {0x2032f,9}, {0xdc89,11}, {0x30084,3}, + {0xa947,6}, {0x2dcc5,5}, {0xcd55,9}, {0x14202,10}, {0x1eebc,5}, {0x7f9a,5}, {0x2d3bc,3}, {0x9b93,5}, + {0x4241,14}, {0x2ecbd,3}, {0x1807c,7}, {0x1a477,9}, {0x30b0f,4}, {0x6067,3}, {0x268d,3}, {0x5855,5}, + {0x1b74f,7}, {0x24eab,8}, {0x30f09,4}, {0x18232,10}, {0x26285,5}, {0x4287,9}, {0xc099,9}, {0x333c,4}, + {0x2c9a9,6}, {0x3065c,3}, {0xb091,12}, {0x5819,13}, {0x1d52a,9}, {0x17bca,5}, {0x277be,7}, {0x347e,4}, + {0x2ab5b,7}, {0xeb2,12}, {0x5b0b,13}, {0x6818,13}, {0x12a74,10}, {0x7303,10}, {0x18fc7,4}, {0x316ea,2}, + {0xb041,8}, {0x2d0bf,6}, {0x12952,10}, {0xb27f,4}, {0x8f19,12}, {0x2c0d5,4}, {0x2d971,4}, {0x18336,10}, + {0x1597,5}, {0x1a17,10}, {0x6f0d,13}, {0x1e7ba,9}, {0x27e01,7}, {0x6449,13}, {0x577d,13}, {0x245f6,5}, + {0x30517,4}, {0x3143b,3}, {0x2c421,6}, {0x130dc,9}, {0xc75a,7}, {0x11be3,9}, {0x29e16,5}, {0x21e43,8}, + {0x2f33,4}, {0x1ed44,4}, {0x11412,6}, {0xb75d,12}, {0x29b66,7}, {0x21011,8}, {0x1aa01,4}, {0x22463,8}, + {0x4607,13}, {0x11bb7,4}, {0x29cf,6}, {0x6ea5,12}, {0x2952f,7}, {0x1c367,9}, {0xb031,8}, {0x11f0f,11}, + {0x2622b,8}, {0x6497,10}, {0x25a2b,8}, {0x54eb,7}, {0x11b5d,11}, {0x22f8e,5}, {0xf693,11}, {0x237b3,8}, + {0xeff7,7}, {0x2db87,6}, {0x1786c,10}, {0x2d527,6}, {0xc69f,11}, {0x1bbbd,7}, {0x25b33,8}, {0x2dfb3,5}, + {0x3064b,4}, {0x9dc5,12}, {0x23343,8}, {0x240ed,6}, {0x1901c,9}, {0x1be9f,9}, {0xc85b,6}, {0x72f6,12}, + {0x26971,7}, {0x29774,7}, {0x289b0,7}, {0x7011,12}, {0x1f3ae,9}, {0x174ea,4}, {0x10a86,8}, {0x1827a,3}, + {0x263cb,8}, {0x2f388,5}, {0x2ec07,4}, {0x26a5f,6}, {0x3051,6}, {0x2f9bb,4}, {0x2cf21,5}, {0x21b9,15}, + {0x1d425,9}, {0x947d,12}, {0x15b70,10}, {0x20374,3}, {0xffdb,11}, {0x2a44b,7}, {0x10cb6,3}, {0x17a49,5}, + {0x11c18,8}, {0x14919,5}, {0x1af39,6}, {0x23753,8}, {0x2b4c2,4}, {0x1c7c,3}, {0x11dc0,5}, {0x1477d,4}, + {0x2fa65,4}, {0x319b9,4}, {0x13884,10}, {0x15b48,10}, {0x24093,8}, {0x294a3,7}, {0x2fbf5,5}, {0x113c,17}, + {0x198e1,5}, {0x307e8,2}, {0x7b75,12}, {0x28844,7}, {0x1457c,10}, {0x2b67d,6}, {0x17290,8}, {0x212a9,8}, + {0xe3c1,11}, {0x30ba7,4}, {0x2f9b,14}, {0x21221,8}, {0x2687,13}, {0xb001,12}, {0x1eaf0,6}, {0x2e7b,4}, + {0x5bfa,4}, {0x11b12,9}, {0x2cfed,6}, {0xb3fd,7}, {0x1cd68,6}, {0x227c,15}, {0x10e4d,4}, {0x2f23e,5}, + {0x12894,10}, {0x19478,9}, {0x28ce6,7}, {0xd147,8}, {0x17cf6,10}, {0x211f1,8}, {0x7f17,5}, {0x3109,7}, + {0x1ae7c,9}, {0x56da,7}, {0x2c559,6}, {0x2f8e4,5}, {0x121f2,3}, {0x2abcb,7}, {0x29371,5}, {0x2ad9b,5}, + {0x288c,2}, {0x204f9,4}, {0x3034f,5}, {0x2b108,6}, {0x1a17a,9}, {0x1d5a3,5}, {0x2cdeb,4}, {0x296a2,7}, + {0x1eb74,9}, {0x7,5}, {0x2f772,4}, {0x1e3a8,3}, {0x22d93,5}, {0x2fcc4,3}, {0xac35,12}, {0x2574b,5}, + {0x16d54,10}, {0xb691,7}, {0x2a248,4}, {0x1e8ec,7}, {0x24c6b,7}, {0x195a1,9}, {0x258de,5}, {0x23edb,8}, + {0x294c1,4}, {0x14644,10}, {0x29624,7}, {0x2030b,7}, {0xa19d,12}, {0x247cb,8}, {0x2edf6,5}, {0x2f55e,5}, + {0x9ba9,12}, {0x5662,5}, {0x17814,3}, {0x2953d,7}, {0x28e36,7}, {0x24ad3,8}, {0x1dcf8,5}, {0x113e1,11}, + {0x23363,8}, {0x1cf03,6}, {0x68c1,9}, {0x7149,13}, {0x1f4a1,9}, {0x15724,10}, {0x75ce,13}, {0x2f52c,5}, + {0x166ba,10}, {0x849f,6}, {0x1aae6,8}, {0x2c8a1,6}, {0x2d299,6}, {0x1c80e,6}, {0x20221,9}, {0xd3af,11}, + {0x1a27,16}, {0x18c41,5}, {0x1bf1d,9}, {0x2f082,5}, {0x652b,6}, {0x15492,7}, {0x26e9c,7}, {0x2281b,8}, + {0x1a954,6}, {0x300bb,3}, {0xde04,6}, {0x182aa,6}, {0x211f9,8}, {0x23dbb,8}, {0x2e327,5}, {0xb12d,12}, + {0x4cb9,13}, {0x2ee91,5}, {0x854d,12}, {0xf58b,11}, {0x359f,6}, {0x50f0,9}, {0x1658e,10}, {0x1480b,5}, + {0x2e872,2}, {0x66c8,4}, {0x2573d,3}, {0xc59c,6}, {0x3133c,3}, {0x26eb8,7}, {0x6ed0,9}, {0x2b86b,4}, + {0x1a630,9}, {0x40ff,13}, {0x21751,8}, {0x33c3,5}, {0x3d9b,14}, {0x2f907,5}, {0x15b2a,10}, {0x1c523,6}, + {0x2d16d,5}, {0x1a7e9,9}, {0x1a585,9}, {0x9e19,12}, {0x2d077,6}, {0x2f0cd,5}, {0xb58e,2}, {0x21821,8}, + {0x1e889,9}, {0x173bc,6}, {0x17b0e,2}, {0x1f5c3,4}, {0x31abb,2}, {0xd15d,11}, {0x319f5,4}, {0x9e25,12}, + {0x192f5,9}, {0x12736,10}, {0x1dc53,3}, {0x2ceeb,6}, {0x2a8ff,7}, {0x30a39,2}, {0x301c2,5}, {0x1a4c8,9}, + {0xba09,12}, {0xf1ef,11}, {0x7ff5,6}, {0x28372,7}, {0x1a49,7}, {0x4e3f,13}, {0x1af9c,8}, {0x13f52,4}, + {0x2fe0e,3}, {0x2bf5f,5}, {0x97b9,12}, {0x2de6f,6}, {0x88dd,12}, {0x19709,9}, {0x252ab,6}, {0x368d,11}, + {0x185e0,3}, {0x25743,8}, {0x1c42d,9}, {0x19346,9}, {0x218eb,6}, {0x30a8d,2}, {0x1db36,9}, {0xd950,10}, + {0x1e2d1,6}, {0xf5c2,11}, {0x2eb49,4}, {0x23acb,6}, {0xddde,11}, {0x1e058,9}, {0x13096,10}, {0x31979,4}, + {0x2c9d9,6}, {0x149aa,10}, {0x29ca1,7}, {0x136f6,8}, {0x31aab,2}, {0x2abd9,7}, {0x2a52d,5}, {0x281b9,7}, + {0xe641,4}, {0x183d6,9}, {0xc2a0,5}, {0x11751,11}, {0x2f2bb,5}, {0x2e2f5,5}, {0x254ad,3}, {0x310f5,6}, + {0x225ab,8}, {0x267c8,5}, {0xefbe,11}, {0x3c83,7}, {0xa551,12}, {0x30fe1,6}, {0x15800,10}, {0x1241,11}, + {0xe1fe,11}, {0x1c247,9}, {0x642f,13}, {0x5d58,4}, {0x1bf26,7}, {0x10049,6}, {0x216e9,8}, {0x2c841,6}, + {0x5b9e,9}, {0x1e1f6,9}, {0x6eeb,5}, {0x300f5,5}, {0x2359b,8}, {0x4788,7}, {0x16854,7}, {0xb535,6}, + {0x10708,11}, {0xc14d,12}, {0x27277,7}, {0x25803,5}, {0x16c20,2}, {0x11168,6}, {0xcc8d,11}, {0x28d7,6}, + {0xd0d1,8}, {0x77c9,13}, {0x1dcb4,5}, {0x2a7ea,2}, {0x2d5db,6}, {0x464d,14}, {0x2a428,7}, {0x11f88,11}, + {0x6e57,11}, {0x3110d,6}, {0x1bb48,9}, {0x1d464,9}, {0xf181,11}, {0x13271,5}, {0x2def0,3}, {0x29250,7}, + {0xed1,12}, {0x1397,16}, {0xe6f,20}, {0x1bb51,9}, {0xed1,15}, {0xed1,19}, {0xbbdf,3}, {0xb611,5}, + {0x5916,7}, {0x2342b,8}, {0x309fb,4}, {0x2f5e5,5}, {0x16066,10}, {0x309eb,4}, {0x28fb7,7}, {0x17a62,10}, + {0x127bb,4}, {0x2a9df,7}, {0x73e0,13}, {0xd1db,5}, {0x7312,8}, {0x2f0e6,5}, {0xca35,6}, {0x1c45a,9}, + {0x338b,14}, {0x355e,7}, {0x1898a,10}, {0xc66d,6}, {0x29a9b,7}, {0xc8db,11}, {0x5181,8}, {0x22adb,7}, + {0x1c2bc,9}, {0x1d4ac,9}, {0xaaa2,3}, {0xe43c,7}, {0x9f75,12}, {0x246ab,8}, {0xf577,8}, {0x22ea3,8}, + {0x148c4,6}, {0xbde1,9}, {0x19bd1,9}, {0x1ecca,9}, {0x1fd47,9}, {0x14c8e,10}, {0x2ebd5,5}, {0x17cc,3}, + {0x22113,7}, {0xc46e,10}, {0x5d47,13}, {0x10427,11}, {0x119c6,11}, {0x7be1,12}, {0x96a9,8}, {0x28c6f,6}, + {0x30c1,14}, {0x5585,5}, {0x31839,4}, {0x232e3,8}, {0x10b6e,3}, {0x94b9,12}, {0x7407,13}, {0x49f2,9}, + {0x2fd7d,3}, {0x2deea,3}, {0x1b85d,9}, {0x17a80,10}, {0x130c8,10}, {0x17d64,6}, {0x2f293,5}, {0x13d8e,10}, + {0xde38,9}, {0x14f60,7}, {0x193f1,9}, {0x3e37,7}, {0x2ea3e,5}, {0x13f8c,10}, {0x1ac18,8}, {0x5b8d,13}, + {0x30461,4}, {0xbb71,12}, {0x3004d,3}, {0x2db5d,6}, {0x7a7c,4}, {0x1b00,5}, {0x17db4,10}, {0x29bfb,3}, + {0x102f8,6}, {0x728e,13}, {0x31889,4}, {0x30168,5}, {0xe64,2}, {0x2f9a7,5}, {0x17930,3}, {0x13190,10}, + {0x5c0f,13}, {0x29719,7}, {0x10b4,17}, {0x28f40,7}, {0xfada,5}, {0x2b204,6}, {0x28d09,6}, {0x1f28e,9}, + {0x55ed,8}, {0x11939,6}, {0x2f3bf,5}, {0x2138,4}, {0x18782,6}, {0x24c13,5}, {0x26b9a,7}, {0x2d91d,6}, + {0x2d97d,6}, {0x1a3ba,9}, {0x2bae5,5}, {0x247f3,8}, {0x39c7,6}, {0x2e784,8}, {0x100dd,6}, {0x488d,4}, + {0x1c3f0,4}, {0xfb2c,8}, {0x50f0,13}, {0x1ff36,9}, {0x1873c,10}, {0x9825,8}, {0x1edb4,9}, {0x30847,4}, + {0x30048,3}, {0x2d7b1,4}, {0x228a3,7}, {0x3065b,4}, {0x4a97,13}, {0x16e76,10}, {0x2265d,6}, {0x56ad,10}, + {0x150c6,5}, {0x2493e,5}, {0x22df3,8}, {0xbe22,7}, {0x14c5c,8}, {0x2830b,4}, {0x2c0f9,4}, {0x424f,7}, + {0x92b5,7}, {0x26acb,4}, {0x2b3f8,4}, {0x1aab9,7}, {0x73fa,13}, {0x1680e,10}, {0x2da4f,6}, {0xb7e7,5}, + {0x2e563,3}, {0x7233,11}, {0x20821,7}, {0x5346,13}, {0x17ab2,9}, {0x18018,8}, {0x1adfe,6}, {0x1ba31,9}, + {0x30057,3}, {0x111b0,7}, {0x1eaa5,9}, {0x7e1c,5}, {0x28994,7}, {0x2f6f7,3}, {0x26625,6}, {0x1b72b,9}, + {0x30a7b,4}, {0x2cacb,6}, {0x18d5e,10}, {0x12001,11}, {0x1f011,3}, {0xe2fb,11}, {0x2c7a5,6}, {0x2054c,5}, + {0x2744c,7}, {0xb60d,4}, {0x30ca9,2}, {0x713e,6}, {0x1d12a,4}, {0x20c09,8}, {0x14626,10}, {0x295c2,7}, + {0x25233,5}, {0x8cf3,4}, {0x1dd18,4}, {0x29a55,7}, {0x7636,12}, {0x15e68,8}, {0x4d00,7}, {0x29d2d,7}, + {0x12780,5}, {0xe164,11}, {0xc137,10}, {0x11236,3}, {0x9f49,4}, {0x10c30,11}, {0x268de,4}, {0x21ffb,6}, + {0xcee1,5}, {0x15be8,7}, {0x6902,13}, {0x255ad,4}, {0x27e4,3}, {0x1126b,11}, {0x11afa,11}, {0xfa03,11}, + {0x1325a,8}, {0x24715,3}, {0x58c2,13}, {0x14a22,8}, {0x31b17,2}, {0x6ac9,13}, {0x18cd2,10}, {0xad91,12}, + {0x1bdb5,9}, {0x2850f,7}, {0x4765,10}, {0x1a1d4,9}, {0x2db18,3}, {0x19ab1,8}, {0x167d2,9}, {0xcddc,6}, + {0x18eea,6}, {0x186c8,6}, {0x2f04b,4}, {0x30136,5}, {0x1788a,10}, {0x1207a,11}, {0x9621,12}, {0x1070,13}, + {0x30ce7,4}, {0x1333e,9}, {0x2be21,6}, {0x15832,8}, {0x5312,13}, {0x27e47,7}, {0x2f5c7,5}, {0x1eac5,4}, + {0x291cb,7}, {0xcef9,7}, {0x117f1,5}, {0x1f732,8}, {0xe5b,9}, {0x3017c,5}, {0x149c,5}, {0x2ae2e,7}, + {0x24533,8}, {0xc083,3}, {0x14798,10}, {0x10290,7}, {0x2fe54,3}, {0xe613,11}, {0x769e,13}, {0x239ed,6}, + {0x11380,3}, {0x2cca8,3}, {0x1d42e,9}, {0x1743e,10}, {0x1367c,10}, {0x182be,10}, {0x3056b,4}, {0x241e3,8}, + {0x7310,13}, {0x879d,8}, {0x11806,6}, {0x177f7,5}, {0x21691,8}, {0x13f5a,10}, {0x3130c,3}, {0xc928,5}, + {0x10a36,11}, {0x187fa,10}, {0x14e72,3}, {0x2e067,5}, {0x2dec6,3}, {0x1aae6,9}, {0x157fa,6}, {0x30802,2}, + {0x18cfd,2}, {0x9459,12}, {0x1a2c7,9}, {0x1ec36,4}, {0xbb1d,7}, {0xb003,6}, {0xf528,10}, {0x14900,6}, + {0x15ea4,10}, {0x3bf7,13}, {0x271ba,7}, {0xa695,12}, {0x3089,14}, {0x2f2d2,2}, {0x1ea6f,5}, {0x6ad6,13}, + {0x128e4,10}, {0x2fd64,3}, {0x163ea,6}, {0x4855,5}, {0x7f65,12}, {0x20d21,8}, {0x1b3c4,7}, {0x199ac,9}, + {0x1e166,9}, {0x1e144,7}, {0x26e5d,7}, {0x1a09,4}, {0x2464f,3}, {0x2d653,6}, {0x1a051,7}, {0x114f4,5}, + {0x1fb6d,6}, {0xfac9,8}, {0x152e2,10}, {0x196d3,9}, {0x2f082,4}, {0x31414,3}, {0xc5dd,7}, {0x9a73,5}, + {0x1a9b4,9}, {0xbf91,6}, {0x11c60,4}, {0x2a7e9,5}, {0x1fab6,9}, {0x28859,7}, {0x13e24,10}, {0x73ac,10}, + {0x17276,6}, {0x1da94,9}, {0x148d8,10}, {0x10340,6}, {0xcad0,5}, {0x156fc,10}, {0xbb4,96}, {0x30eb5,2}, + {0x1925c,9}, {0xdde9,10}, {0x2e69f,4}, {0x2ae29,4}, {0x23e4,10}, {0xf604,11}, {0x25ec3,8}, {0x18b60,10}, + {0x248a3,8}, {0xdc6d,5}, {0x2c3c1,4}, {0x19c64,6}, {0x2c8af,4}, {0x2ff17,3}, {0x247cb,6}, {0x2f437,5}, + {0x13fcd,4}, {0x9aec,4}, {0x2aa99,5}, {0x1ec1f,9}, {0x2a74,9}, {0x104d2,5}, {0x15e7,15}, {0x12113,6}, + {0x2d2fb,3}, {0x23403,7}, {0x311c9,5}, {0x25b85,5}, {0x842d,12}, {0xa689,12}, {0x2016d,5}, {0xb8af,3}, + {0x4c1d,13}, {0x1457,7}, {0x2ecb6,4}, {0x1828c,10}, {0x3f23,14}, {0x308ab,6}, {0x18c64,10}, {0x2993,15}, + {0x29f2,3}, {0x318b5,4}, {0x3205,6}, {0x1ec67,9}, {0x1770e,10}, {0x2db33,6}, {0x26b54,7}, {0x25033,8}, + {0x148c4,5}, {0x1803e,10}, {0x15184,9}, {0x1e2fb,9}, {0x173c6,10}, {0xb3d9,12}, {0x367f,11}, {0x2e99e,5}, + {0x21c49,8}, {0x1aa05,9}, {0x15002,6}, {0x7bfe,7}, {0x9ca7,9}, {0x20b99,8}, {0x16584,6}, {0x2fc4a,5}, + {0xe29e,5}, {0x2958a,7}, {0x2fc74,3}, {0x2b84,4}, {0xca25,11}, {0x156d,4}, {0xdd02,11}, {0x20849,6}, + {0x2f6e1,4}, {0x2ca21,6}, {0xd5d5,11}, {0xa8aa,4}, {0xe1bc,11}, {0x24353,7}, {0x30419,4}, {0x22023,8}, + {0x14b6c,10}, {0x16ab6,9}, {0x1f5f7,9}, {0x1e688,9}, {0x2ee8c,5}, {0x30eaf,4}, {0x29dde,2}, {0x31336,3}, + {0x9f8d,12}, {0x1ff7e,9}, {0x1ec9d,9}, {0x2aad6,7}, {0x2d24b,6}, {0x9302,7}, {0x1fbe1,7}, {0x1f72b,3}, + {0x31113,6}, {0x72a8,13}, {0x2403d,5}, {0x306d7,4}, {0x311d8,5}, {0x1fce6,7}, {0x2a196,7}, {0x2a689,7}, + {0x9cf9,12}, {0x31351,3}, {0x2abfe,5}, {0xa1fd,12}, {0x2593b,8}, {0x11c2e,11}, {0x6456,13}, {0xb385,10}, + {0x242cb,8}, {0xc4b0,11}, {0xe5b0,11}, {0x25195,3}, {0x2cc5d,6}, {0x13f9b,5}, {0x13e42,10}, {0x3fcb,9}, + {0x213a1,8}, {0x9aa9,4}, {0x21d41,8}, {0x251c3,8}, {0x1a573,6}, {0x5944,13}, {0x2a3e4,5}, {0xe865,11}, + {0x24c53,8}, {0x25b6b,5}, {0x2f586,5}, {0x16bb0,7}, {0xdac6,6}, {0x1b170,9}, {0x3521,14}, {0x93dd,4}, + {0x26a27,7}, {0xc912,11}, {0x243eb,8}, {0x26393,8}, {0x2e7e4,8}, {0xf2ec,11}, {0x2bc8b,4}, {0x13a5a,10}, + {0x4543,14}, {0x24c3b,8}, {0x20969,8}, {0xd4c9,4}, {0xf46d,7}, {0x2f39c,5}, {0x17484,8}, {0x2fe7c,3}, + {0x9771,12}, {0x1d43a,5}, {0x2a945,7}, {0xeba9,10}, {0x76df,13}, {0x13d8e,7}, {0xd19f,11}, {0x2849f,7}, + {0x2e0bb,6}, {0x1dac5,5}, {0x28175,4}, {0x17236,10}, {0x29c11,4}, {0x2cbf9,4}, {0x2d893,6}, {0x3a83,3}, + {0x190eb,9}, {0x167aa,10}, {0x11680,11}, {0x2f78,7}, {0x417d,10}, {0x18a52,10}, {0x2c35b,6}, {0x17afa,8}, + {0x2858d,7}, {0x1a831,9}, {0x24c9b,8}, {0x1aa8c,9}, {0x1bdc7,9}, {0x97dd,12}, {0x285cc,6}, {0x2ffec,5}, + {0x71c3,3}, {0x1e53e,6}, {0x2cfb9,4}, {0x111a,8}, {0x9212,7}, {0x2f317,3}, {0x12768,10}, {0xe8de,8}, + {0x309e3,4}, {0x2f0f2,3}, {0xd2bd,11}, {0xba51,12}, {0x270cc,7}, {0x1afd2,9}, {0x614a,13}, {0x2fed6,3}, + {0x12ca4,10}, {0x2baaf,6}, {0x7124,3}, {0x2351b,7}, {0x8312,5}, {0x8493,6}, {0x12632,10}, {0x21b29,8}, + {0x6b0f,5}, {0xd4e8,6}, {0x2ec9a,3}, {0x1e89b,6}, {0x77d6,13}, {0x199ed,6}, {0x30bf9,2}, {0x29af6,7}, + {0xed56,11}, {0x21bf1,8}, {0x345d,7}, {0x2dfa3,4}, {0x267f0,7}, {0x28f5c,6}, {0x109b,6}, {0x18dfe,10}, + {0x27d98,7}, {0x26363,8}, {0xf420,11}, {0xd9ab,8}, {0x7a3d,12}, {0x12862,9}, {0x24d63,8}, {0x23f4b,8}, + {0xbb4d,12}, {0x22833,7}, {0x20f99,8}, {0x13ee2,9}, {0x13654,7}, {0x2f289,5}, {0x710a,4}, {0x12d8c,5}, + {0x2b671,6}, {0x2a031,6}, {0x168b0,7}, {0x1a654,9}, {0x27739,7}, {0x18192,5}, {0x21e23,8}, {0x237e3,8}, + {0xab99,12}, {0x21909,8}, {0x1afb7,9}, {0x15c6a,10}, {0x84f9,12}, {0x143c4,9}, {0x12236,10}, {0x2dabb,6}, + {0x1726a,8}, {0x4623,14}, {0x559c,13}, {0x2fea9,3}, {0x25e65,6}, {0x18bf8,4}, {0xd4cd,11}, {0x2f6aa,5}, + {0x1d2b4,9}, {0x1a360,9}, {0xdec5,11}, {0x1be06,9}, {0x21889,8}, {0x19e9,6}, {0x935f,7}, {0x1e882,7}, + {0xfc29,11}, {0x28578,7}, {0x26437,4}, {0x28620,7}, {0x7763,4}, {0x473d,6}, {0x28b73,6}, {0x3144a,3}, + {0xb7c9,7}, {0x23c5b,8}, {0x2efba,5}, {0x31747,3}, {0x2dbdb,6}, {0xa69b,6}, {0x30537,4}, {0x5bb9,8}, + {0x2d141,2}, {0x2d857,6}, {0x232cb,8}, {0x132ee,10}, {0x1e4fc,9}, {0x1ff90,5}, {0x472f,12}, {0xe957,11}, + {0x1f1d1,9}, {0x6553,7}, {0x1d81,15}, {0x2443b,8}, {0x1f77,8}, {0xc039,12}, {0x78ce,5}, {0x1182f,4}, + {0x6cfc,4}, {0x286c8,7}, {0x2eec3,5}, {0x257c3,6}, {0x264db,8}, {0x16808,6}, {0xa14b,7}, {0x1a7ce,9}, + {0x1dbe1,7}, {0x2a2ed,7}, {0x1b950,8}, {0x1c47e,9}, {0x28635,7}, {0x2c32b,6}, {0x1b128,9}, {0x2fc60,3}, + {0x2e29f,8}, {0x2fb0f,5}, {0x31a9f,2}, {0x635f,9}, {0x1ec70,6}, {0xb0d9,12}, {0x2cefd,6}, {0x24ef5,6}, + {0x23f03,8}, {0x17894,6}, {0x123d0,10}, {0x28de9,7}, {0xdee6,11}, {0x1c193,9}, {0x1de60,9}, {0x52f8,7}, + {0x1208,8}, {0x10259,11}, {0x1f7ef,5}, {0x218bb,6}, {0x2a73f,7}, {0x107c3,11}, {0x1e0cd,8}, {0x34b3,4}, + {0x90ef,4}, {0xdfe3,11}, {0x1751a,10}, {0x1cdb6,9}, {0x1961f,8}, {0x2628b,8}, {0x31a67,2}, {0x2b84b,6}, + {0x9bc1,7}, {0xccb,11}, {0xcc6,16}, {0xcc1,21}, {0x115f1,11}, {0x1f4ce,9}, {0x90b1,12}, {0xa9b2,4}, + {0x5c6a,13}, {0xcb6,11}, {0xcb6,32}, {0xe68,6}, {0x1f7b9,9}, {0xad39,3}, {0x2f8f0,3}, {0xa251,12}, + {0x1f66c,9}, {0x14158,10}, {0x22863,8}, {0x20a34,4}, {0x28bfa,5}, {0x1f0d5,9}, {0xdb55,11}, {0x23983,8}, + {0x2a10a,5}, {0x11284,4}, {0x181f6,10}, {0x28651,7}, {0x314be,3}, {0x8439,11}, {0x2f234,5}, {0x22f36,5}, + {0x25b4b,8}, {0x34e0,7}, {0x182f0,10}, {0x2e91,14}, {0x11942,11}, {0xbd15,5}, {0xaf4,5}, {0x2764b,7}, + {0x2c47b,6}, {0x25813,6}, {0x11892,5}, {0x2fb28,5}, {0x2397b,8}, {0x28dfe,5}, {0x28860,7}, {0x313cc,3}, + {0x10980,5}, {0x13049,7}, {0x7305,4}, {0x2f85d,5}, {0x2f3b0,4}, {0x14af4,10}, {0x319bd,4}, {0x1ea69,6}, + {0x2694e,7}, {0x209b9,8}, {0x22bd3,8}, {0x21a11,8}, {0x3877,9}, {0x214c9,8}, {0x1f579,9}, {0x272d9,7}, + {0x31b3d,2}, {0x11e2e,5}, {0x1af6f,9}, {0x27db4,5}, {0x2995e,7}, {0x30fb1,6}, {0x22803,8}, {0x1bdd9,9}, + {0x1c43f,9}, {0x1f570,9}, {0x24cfb,8}, {0x1867,16}, {0xde15,4}, {0x30481,4}, {0x1682c,10}, {0x107ce,8}, + {0x30bc9,2}, {0x28436,7}, {0x2efb5,5}, {0x24e9b,8}, {0x178c6,10}, {0xc350,11}, {0xe83,18}, {0x9015,12}, + {0x15bf2,10}, {0xae69,12}, {0x2dfeb,4}, {0x288d0,7}, {0x5d3a,13}, {0x30154,5}, {0xf08f,11}, {0x1f795,9}, + {0x2e11b,6}, {0x2b8ed,6}, {0x57be,13}, {0x2ff12,3}, {0x8e7d,12}, {0x395e,4}, {0x2d761,6}, {0x7ac1,11}, + {0x2b222,6}, {0x2735e,7}, {0x253fb,8}, {0x1fe94,9}, {0x26253,8}, {0x2989a,7}, {0x2e50e,5}, {0x1754e,8}, + {0x2919a,7}, {0x2e11b,5}, {0x2fe40,3}, {0x2fffb,5}, {0xe827,7}, {0x6cb7,5}, {0x28387,7}, {0x5305,13}, + {0x20789,8}, {0x13078,10}, {0x44a5,4}, {0x194e4,9}, {0x2fe90,3}, {0x1dc4d,6}, {0x2f7b8,5}, {0xa502,7}, + {0x8d83,4}, {0x22bdb,8}, {0x1dff5,9}, {0x2e064,3}, {0x8d21,4}, {0xf7b1,10}, {0x1d37a,9}, {0xc4fd,11}, + {0x2b8f,14}, {0x2b46f,5}, {0x30e07,4}, {0x1377,7}, {0x16e3a,10}, {0x1c03d,9}, {0xd29c,11}, {0x25f83,8}, + {0x1f984,5}, {0xa431,9}, {0x2cfd7,4}, {0x21581,8}, {0x22603,8}, {0x2ab31,7}, {0x2fcf1,3}, {0x54a9,3}, + {0x1a8ca,9}, {0x2256b,8}, {0x19c4f,9}, {0x30e57,4}, {0x1ddee,6}, {0x11b96,4}, {0x2cc8f,4}, {0x10c06,3}, + {0x2916b,3}, {0x18b1a,10}, {0x116f3,5}, {0x1d71c,4}, {0x2c0a0,3}, {0xe4df,11}, {0x1e0a9,9}, {0x1846c,10}, + {0x3014a,5}, {0x1301e,6}, {0x1fd11,9}, {0x62ab,8}, {0x1a10e,9}, {0x74fe,8}, {0x689a,13}, {0x22883,8}, + {0xbb89,12}, {0x2dd67,6}, {0x1e7a8,9}, {0x26e09,7}, {0x280fc,7}, {0x176de,8}, {0x26683,8}, {0x7671,4}, + {0x2d529,3}, {0x1507,13}, {0x15576,10}, {0xa9a1,12}, {0x1e79f,5}, {0xc895,4}, {0xa5ed,12}, {0xb603,4}, + {0x1687,16}, {0x240fb,6}, {0x30ff3,6}, {0x71cb,6}, {0xd288,8}, {0x278f2,7}, {0x1208,17}, {0x23ad3,8}, + {0x23e03,8}, {0x2b4a6,4}, {0x2dcd9,4}, {0xfe23,9}, {0x20218,9}, {0x3a29,14}, {0x2fcbf,3}, {0x1aee8,9}, + {0xbe1d,12}, {0x2c625,6}, {0x11725,7}, {0x2eed2,5}, {0xdb1e,11}, {0x2728c,7}, {0x9a4,4}, {0x305fb,4}, + {0x2f7e0,5}, {0xcf5,2}, {0x26353,8}, {0x2fd73,3}, {0x12420,6}, {0x7233,13}, {0x223c3,8}, {0xff15,11}, + {0x2858,10}, {0x7965,12}, {0x292ff,7}, {0x953d,5}, {0x2e8bd,3}, {0x3137b,3}, {0x27711,5}, {0x2ee66,3}, + {0x2fedb,3}, {0x1090d,8}, {0x1659,10}, {0xf07e,4}, {0x2e577,5}, {0x1bc95,9}, {0x2c11b,6}, {0x1f4ac,7}, + {0x12e52,10}, {0x12ba0,10}, {0x164a8,10}, {0x19d4b,9}, {0x28e60,7}, {0x17094,5}, {0x2b174,6}, {0x1439c,10}, + {0x1b395,9}, {0x2b803,5}, {0xe73c,11}, {0x5fc4,10}, {0x174a2,10}, {0x18480,5}, {0x21af,5}, {0x2d1a3,6}, + {0x2a79a,7}, {0x1bb1d,4}, {0x1e9e8,9}, {0x209f9,8}, {0x53ae,13}, {0x10a83,11}, {0x21749,8}, {0x30bed,2}, + {0x2dd45,4}, {0x30311,5}, {0x11a76,10}, {0x1ea8a,9}, {0x23d1b,5}, {0x23f8b,8}, {0x3c5d,2}, {0xa581,12}, + {0x19e86,9}, {0x164ee,10}, {0x1d236,9}, {0x2daf7,4}, {0x181a,4}, {0x2bc97,3}, {0x15e7c,10}, {0x20578,2}, + {0x282b5,7}, {0x1256e,6}, {0x2a6e4,7}, {0x31321,3}, {0x2f330,3}, {0x2a6a5,7}, {0x17ed6,10}, {0x12dd4,5}, + {0x3ba3,6}, {0x31a39,4}, {0x1da1,4}, {0x2f65f,5}, {0x26ff,15}, {0x17182,10}, {0x1e867,3}, {0x2e9ee,5}, + {0x1bfc8,9}, {0xa4f1,12}, {0x4d62,13}, {0x6166,9}, {0x1f0f9,9}, {0x309b5,2}, {0x8a21,12}, {0x73e2,5}, + {0x265eb,8}, {0xc1f4,11}, {0x1b06b,9}, {0x171b4,7}, {0x18ece,4}, {0x24f1d,6}, {0x2542d,4}, {0x1d90,14}, + {0x1057,8}, {0x2d09b,6}, {0x277d3,7}, {0x2fd0f,3}, {0x2e6ba,2}, {0x19da5,9}, {0x2f27a,5}, {0x32ff,6}, + {0x1a7fd,4}, {0x17bf4,8}, {0x2b115,5}, {0x2ba97,6}, {0x2c84d,5}, {0x242cd,5}, {0xe035,4}, {0xb757,6}, + {0x244dd,6}, {0x18304,10}, {0x24a73,8}, {0x142d6,4}, {0xe282,11}, {0x19731,4}, {0x20cb1,8}, {0x1473e,10}, + {0x2d0ad,6}, {0x2a6ac,7}, {0x1c31f,9}, {0x30ab1,2}, {0x281d5,7}, {0x2bb4b,6}, {0x18ff8,9}, {0x25223,6}, + {0x4e32,12}, {0x1aa17,9}, {0x16bec,7}, {0x2f2fc,5}, {0x28aeb,6}, {0x30b67,4}, {0x309c7,4}, {0x101bf,11}, + {0x2558b,8}, {0x1cf2a,5}, {0x2f478,5}, {0xb4a5,12}, {0x1fda1,9}, {0x3c35,8}, {0x2017f,9}, {0x162e6,6}, + {0x7c71,12}, {0x2570,6}, {0x201f6,5}, {0x28867,7}, {0xfc0e,5}, {0x22bf3,8}, {0x1153,11}, {0x23dae,5}, + {0x26605,6}, {0x6519,13}, {0x18f05,9}, {0x1d3a,11}, {0x766a,9}, {0x17671,5}, {0x46bf,7}, {0x17aca,2}, + {0x24d3d,6}, {0x30af9,2}, {0x2cc59,4}, {0x17fd0,10}, {0x7541,11}, {0xaf4d,11}, {0x11092,11}, {0x2d8e1,6}, + {0x30a87,4}, {0x29d1,3}, {0x506e,12}, {0xadc1,6}, {0xb26b,6}, {0x276c9,7}, {0x4a3c,8}, {0x25f6b,8}, + {0x2fa77,2}, {0x25d9b,6}, {0x28838,5}, {0x6936,13}, {0x2e3c9,5}, {0x8be2,7}, {0xe2f,2}, {0x11444,11}, + {0x4323,4}, {0x12db2,7}, {0x48fc,2}, {0xc4bb,7}, {0x3140e,3}, {0x4253,10}, {0x2b456,3}, {0x8bb3,6}, + {0x3959,8}, {0x2d4c3,4}, {0x1f1e5,3}, {0x8511,12}, {0x5b91,8}, {0xb36d,12}, {0x7353,3}, {0x25cbb,8}, + {0x15094,10}, {0x110df,8}, {0x2aa6b,7}, {0x3074b,4}, {0xf0c6,11}, {0x2298b,6}, {0x1d0c5,9}, {0x2959,3}, + {0x54a5,13}, {0x2759,15}, {0x230b3,8}, {0x27e7f,7}, {0x308b1,6}, {0x24743,8}, {0x23ee3,8}, {0x1212c,6}, + {0x2a4c9,7}, {0x29977,5}, {0x10434,4}, {0x14d92,10}, {0xfd9f,11}, {0x23afb,8}, {0x1e1e6,5}, {0x2510,15}, + {0x1af45,6}, {0x772f,7}, {0x9615,12}, {0x10e09,6}, {0xe563,10}, {0x1d7bb,5}, {0xb811,12}, {0x299d2,4}, + {0x251f,15}, {0x72a8,6}, {0x4535,14}, {0xef7f,8}, {0x21021,8}, {0x3c9f,14}, {0x2687,15}, {0x17c1a,10}, + {0x2de9,13}, {0x39bb,12}, {0x13fa0,10}, {0x1f813,9}, {0x29991,7}, {0x16566,10}, {0x18af7,5}, {0x1ddc9,7}, + {0x31471,3}, {0x1de2e,4}, {0x25073,8}, {0x49e1,13}, {0x192f7,6}, {0x170e2,10}, {0x1265,9}, {0x30b07,4}, + {0x1fb85,9}, {0x1381,3}, {0x28249,3}, {0x232a,5}, {0x1eed4,7}, {0x27dc4,5}, {0x10e7c,6}, {0x28ebe,3}, + {0x2c679,6}, {0x279d9,7}, {0x2c2d7,6}, {0x6cfd,8}, {0x2ff53,3}, {0x14218,4}, {0x2c44b,6}, {0x30913,4}, + {0x1e394,6}, {0x14223,7}, {0x312f4,3}, {0x14f9f,5}, {0x30a8b,4}, {0x20679,8}, {0x18624,6}, {0x26d0f,5}, + {0x2f01e,4}, {0xbbad,12}, {0x22913,8}, {0xe634,11}, {0x2eadb,4}, {0x12cfe,10}, {0x1ead4,6}, {0xd079,8}, + {0x2f88a,5}, {0xbacf,5}, {0xe4ea,8}, {0xe9fc,11}, {0x260d3,6}, {0x14068,10}, {0xa8cf,6}, {0x2dc91,4}, + {0x7dd9,12}, {0xc5d2,7}, {0x174bb,5}, {0x17ff8,10}, {0x2fa2,6}, {0xd4c2,10}, {0x2779b,7}, {0x23d1b,8}, + {0x18bda,5}, {0x2620b,6}, {0x315d9,3}, {0x20373,4}, {0x27aea,7}, {0x18e8a,10}, {0x17222,7}, {0x1e556,8}, + {0x71c3,8}, {0x1dfb8,7}, {0x29c64,5}, {0x17ae4,5}, {0x18570,10}, {0x30757,3}, {0x2ee9b,5}, {0x28dc1,5}, + {0x2e9d5,5}, {0x264d3,7}, {0x1cb40,4}, {0x2b81,3}, {0x2f94a,3}, {0x1e706,9}, {0x42dd,11}, {0x24e5d,6}, + {0x30c63,4}, {0x2a58,11}, {0x20250,7}, {0x1e546,4}, {0x3138d,3}, {0x24423,8}, {0x278cf,7}, {0x12109,11}, + {0x1b4b,9}, {0x173c8,5}, {0xaa91,12}, {0x29a7f,6}, {0x25c23,8}, {0x12254,10}, {0x8f85,12}, {0x2db69,6}, + {0x2e9c6,5}, {0x24b6,9}, {0xb679,12}, {0x2f754,4}, {0x1a9ea,9}, {0x13fd2,7}, {0x1366c,6}, {0x2505,7}, + {0xf4af,11}, {0x22c23,8}, {0x1dea1,3}, {0x10bf0,3}, {0x2ed3d,5}, {0x303ed,4}, {0x14e5d,4}, {0x1567,5}, + {0x1d344,9}, {0x1a0bd,9}, {0x15422,7}, {0x30b1b,4}, {0x58e0,4}, {0x20f51,8}, {0x30901,2}, {0x318e5,4}, + {0x30cb3,4}, {0x3639,14}, {0x2ca53,5}, {0x16b7e,10}, {0x2675f,4}, {0x1cc21,9}, {0x2d5f3,6}, {0x1e9df,5}, + {0x1b290,9}, {0x2bd13,6}, {0x198c2,9}, {0xa4c1,12}, {0x1e3b8,9}, {0x295f3,7}, {0x107e6,5}, {0x31522,3}, + {0x2ff44,3}, {0x151c0,5}, {0x1648c,8}, {0x2b739,4}, {0x208a9,6}, {0x1dceb,4}, {0x1db4a,7}, {0x2fd3c,3}, + {0x90da,7}, {0x20791,8}, {0x2c307,5}, {0x170f6,10}, {0x28f86,7}, {0x2f216,5}, {0x30159,5}, {0x24625,4}, + {0x20154,5}, {0x123da,10}, {0x2b575,6}, {0x2cf75,5}, {0x10309,10}, {0x24833,8}, {0x2fc04,5}, {0x2cbdb,4}, + {0x31b33,2}, {0xf7c7,11}, {0x21a55,2}, {0x16750,10}, {0x11f1c,9}, {0x29869,5}, {0x112a2,11}, {0x25473,7}, + {0x114c8,5}, {0x1869c,9}, {0x298e7,7}, {0x84d5,12}, {0x1a1e6,9}, {0x22583,8}, {0x13b80,6}, {0x25f2b,8}, + {0xc220,11}, {0x2a150,7}, {0x12146,10}, {0x151c,11}, {0xb025,12}, {0x2f360,5}, {0x3071b,4}, {0x7a85,10}, + {0x2977b,7}, {0x5a6f,13}, {0x1747a,10}, {0x24453,8}, {0x282ed,7}, {0x2a70e,7}, {0x256ab,8}, {0x6bed,7}, + {0x2fe22,3}, {0x2efc6,3}, {0x2dcdf,2}, {0xcf63,11}, {0x1ed2d,6}, {0x3092b,4}, {0x25ad0,3}, {0x24680,3}, + {0x1fc17,4}, {0x1da0d,9}, {0x17671,6}, {0xe6ad,11}, {0x1c59e,9}, {0x1f82e,9}, {0x30172,5}, {0x1f719,3}, + {0xa97d,12}, {0x9bfd,12}, {0x27f71,3}, {0x1ac69,9}, {0xb769,9}, {0xf49,10}, {0x31417,3}, {0x2ff2b,3}, + {0xf41,18}, {0x8211,12}, {0x15f3a,10}, {0x18036,4}, {0x1a19e,6}, {0xc11d,12}, {0xd7cf,11}, {0x3197d,4}, + {0x1df8b,6}, {0xce5b,10}, {0xdf80,11}, {0x21cc9,8}, {0x41a7,14}, {0x5f53,9}, {0x1ae7,6}, {0x917f,8}, + {0x1196e,10}, {0x2a976,7}, {0x14ad6,10}, {0x987d,8}, {0x2ed6f,5}, {0x2dccb,5}, {0x2c6c7,4}, {0xae24,8}, + {0x2fb9b,5}, {0x4d89,13}, {0x2016f,4}, {0x2c889,6}, {0x2c379,5}, {0x2ded,4}, {0x166b0,10}, {0x8181,12}, + {0x15aa8,10}, {0x7a85,12}, {0xc841,11}, {0x179ce,8}, {0x2aa4f,7}, {0x2a02a,7}, {0xad8a,7}, {0x2ee0f,5}, + {0x1f949,4}, {0x10222,11}, {0x1114d,11}, {0x317a2,4}, {0x1f00f,9}, {0xd0ef,7}, {0x9711,12}, {0x2d6e9,6}, + {0x2bcc5,6}, {0x2d221,6}, {0x14381,7}, {0x200d8,5}, {0x2bfdf,4}, {0x221ad,6}, {0x24e3b,8}, {0x4459,5}, + {0x23f5d,6}, {0x25085,2}, {0x2a8ce,7}, {0xff87,5}, {0x19b26,9}, {0x24bbb,8}, {0xc4cc,5}, {0x1969d,9}, + {0x112c5,4}, {0x24683,4}, {0x2b85f,4}, {0x234db,8}, {0x27ebe,6}, {0x1d935,4}, {0x29275,5}, {0x1995e,5}, + {0xa119,12}, {0xd475,9}, {0x1aea9,9}, {0x2bf1d,6}, {0x1e7c3,9}, {0x10d1,2}, {0x2fd1e,3}, {0x5c9e,13}, + {0x1e39d,6}, {0x1f15c,9}, {0x1f447,9}, {0x2c2ef,6}, {0x30f8d,6}, {0x1673c,10}, {0x1b893,9}, {0x2a046,7}, + {0x2d8b7,6}, {0x1a2d9,9}, {0x78f9,12}, {0x2ee3f,2}, {0x29513,7}, {0x29242,7}, {0x34b1,14}, {0x2826f,7}, + {0x2ffe7,5}, {0x21f85,6}, {0xccda,10}, {0x3001b,3}, {0x310fb,6}, {0x7ad9,12}, {0x16ac0,10}, {0x2d485,6}, + {0x2351b,8}, {0x181ec,10}, {0x3060f,4}, {0x2d9d7,6}, {0x2d05f,6}, {0x1c757,9}, {0x29753,4}, {0x2a770,7}, + {0x31333,3}, {0x4952,13}, {0x38fa,5}, {0xabd7,10}, {0x73d3,7}, {0x2551b,6}, {0x1fa5e,7}, {0x1c3ce,5}, + {0xc5bc,7}, {0x2ff62,3}, {0x2c7ff,6}, {0x1bda5,4}, {0x262cb,5}, {0x23b5b,8}, {0x1e5dd,9}, {0x181ec,9}, + {0x8205,12}, {0x9a52,7}, {0x1724a,10}, {0xf75f,5}, {0x2b024,12}, {0xe99,4}, {0x26245,6}, {0x17268,7}, + {0x19ae9,4}, {0x3dd3,14}, {0x314af,3}, {0x23dd5,6}, {0x186d8,10}, {0x1118f,11}, {0x3052b,4}, {0x1adc8,9}, + {0x2bac1,6}, {0x25003,8}, {0x32c9,12}, {0x551a,9}, {0x12ff0,6}, {0xda42,11}, {0x13f00,10}, {0x268b4,5}, + {0x21449,8}, {0x10309,11}, {0x2d841,4}, {0x2f71,14}, {0x2b0d8,12}, {0x28555,7}, {0x1e8d1,9}, {0x12619,4}, + {0x392d,14}, {0x11e56,5}, {0x21aa9,6}, {0x2e563,5}, {0x305b7,4}, {0xafbe,7}, {0x2c6c7,5}, {0x31abf,2}, + {0x138d4,10}, {0x29bc1,7}, {0x21df3,8}, {0xae5d,12}, {0x81c3,3}, {0x2c4f9,6}, {0x2a0c4,7}, {0x315c7,3}, + {0x18c32,10}, {0x28b45,4}, {0x8f3d,10}, {0x4837,14}, {0x1b803,9}, {0x27fc1,7}, {0x31035,6}, {0x857d,12}, + {0x3a1b,13}, {0x1495c,3}, {0x1e52e,4}, {0x1bd15,4}, {0x1cb62,9}, {0x204e1,8}, {0x30ae3,4}, {0x30be7,4}, + {0xbaa7,4}, {0xa643,4}, {0x2f0b9,5}, {0x2d005,6}, {0x2917e,7}, {0x3013b,5}, {0x250cb,8}, {0x333c,9}, + {0x1b47,8}, {0x1166d,8}, {0x3177,14}, {0x25a8b,8}, {0x2a6dd,5}, {0x121e6,10}, {0x1cfb7,9}, {0x18c82,10}, + {0x205b1,8}, {0xeca,7}, {0x18f7a,9}, {0x25fcb,8}, {0x2f59f,5}, {0x27c17,7}, {0x173ee,10}, {0x1958f,8}, + {0xcfc6,9}, {0x1fd7d,9}, {0x2fda0,3}, {0xc117,4}, {0x26c81,7}, {0x1b773,9}, {0x242c3,8}, {0x1f972,9}, + {0x30657,4}, {0x14298,5}, {0x2f6af,5}, {0x2bb59,4}, {0x1ab7f,9}, {0x754e,3}, {0x14018,10}, {0x248eb,7}, + {0x29472,7}, {0x6f79,9}, {0x14182,6}, {0x20389,3}, {0x2b8f9,6}, {0x1fccb,7}, {0xc88e,11}, {0x29cf0,5}, + {0x2cc3f,5}, {0x31125,6}, {0x21c8,15}, {0x1f837,9}, {0x30762,2}, {0x9999,12}, {0x2371b,8}, {0x2ac0a,7}, + {0x2dbbd,6}, {0x18838,8}, {0x4f6a,13}, {0x2fb70,3}, {0x2280b,8}, {0x1ac8,4}, {0x216e,9}, {0x2518b,5}, + {0x10bac,6}, {0x7e2d,9}, {0x2f83f,5}, {0x17b3e,5}, {0x106d1,10}, {0x1756c,4}, {0x2a077,7}, {0x12ae5,7}, + {0x2e63a,5}, {0x2e929,5}, {0x6ee8,4}, {0x2428b,8}, {0x209b3,6}, {0x15080,10}, {0xedc4,10}, {0x923d,11}, + {0x1e1e4,9}, {0x1e3ca,9}, {0xa01d,12}, {0x25f3d,6}, {0xdd0d,8}, {0x238db,8}, {0x3112b,6}, {0x26f0,9}, + {0x16da4,10}, {0x2e82e,6}, {0x29913,5}, {0xec10,7}, {0x26b0e,7}, {0x2b52d,6}, {0x214e1,8}, {0x2588b,8}, + {0xb979,12}, {0x25533,8}, {0x2bbcf,6}, {0x1f651,9}, {0x2da43,6}, {0x15708,6}, {0x132a8,10}, {0x2ab93,7}, + {0x14238,6}, {0x30caf,4}, {0x12718,7}, {0x2bda3,6}, {0x20188,8}, {0x1de2a,9}, {0x1341a,10}, {0x24eeb,6}, + {0x8001,12}, {0x18f0e,9}, {0x1279a,8}, {0x2e0df,6}, {0x9356,4}, {0x1a07,9}, {0x150e4,10}, {0x42b1,11}, + {0x275f0,7}, {0x1a13b,9}, {0x1daa6,9}, {0x267d0,4}, {0x20c31,8}, {0x220eb,8}, {0x1cd26,9}, {0x1e051,7}, + {0x19bfe,9}, {0xdc57,3}, {0xb51d,8}, {0x2fae2,5}, {0x2ae82,7}, {0x3c59,9}, {0x11817,11}, {0x18552,10}, + {0x1b9b3,8}, {0xb82b,7}, {0x9a7d,12}, {0x16dfe,5}, {0x2aedd,7}, {0x2d3c2,3}, {0x187aa,10}, {0x31659,3}, + {0x27d3d,7}, {0x1e5a7,9}, {0x2d5a5,6}, {0xdbf2,5}, {0x315d3,3}, {0x310cb,6}, {0x248bb,8}, {0xaf4d,7}, + {0x1f720,9}, {0x208d9,6}, {0x2c721,6}, {0x2995,5}, {0x1dd76,9}, {0x2f1d1,5}, {0x2a038,7}, {0x169b7,5}, + {0xa731,11}, {0x2946d,4}, {0x20b01,8}, {0x1d3dd,9}, {0x844a,6}, {0x1503a,10}, {0x229eb,8}, {0x107ad,10}, + {0x30def,4}, {0x6089,4}, {0x2fd28,3}, {0x1fc54,7}, {0x1ddd0,6}, {0x2600,15}, {0x18426,10}, {0xc9a3,6}, + {0x9cbf,4}, {0x1c3e8,5}, {0x29b20,7}, {0x29c1c,7}, {0x1eb01,5}, {0x306c3,4}, {0xd08c,11}, {0x22e8e,5}, + {0x2fe36,3}, {0x2e151,6}, {0xf415,7}, {0x14aea,10}, {0x7aa9,12}, {0x268b4,7}, {0x19e2c,9}, {0x28253,7}, + {0xb39d,6}, {0x140db,5}, {0xad31,9}, {0x2ad94,7}, {0x69ab,13}, {0x30f03,4}, {0x7cd5,8}, {0xa9c5,12}, + {0x154ed,6}, {0x13d48,10}, {0x11845,11}, {0x266b8,3}, {0x9135,12}, {0x17fa8,10}, {0x2631b,7}, {0x191d7,4}, + {0x20a29,8}, {0x1b69b,9}, {0xc009,6}, {0x134f0,6}, {0x315ca,3}, {0x24a8b,8}, {0x2e1b7,6}, {0x13406,10}, + {0x2215b,8}, {0xeb4d,4}, {0xfad,4}, {0x2cd8f,6}, {0x293d1,7}, {0x19f9d,9}, {0x2ac5e,7}, {0x1a9e3,6}, + {0x79a1,9}, {0x21fe3,8}, {0xf452,5}, {0x245e3,8}, {0x2f482,5}, {0x1d6b6,9}, {0xab51,12}, {0x11c4,17}, + {0x162f0,10}, {0x4783,5}, {0x28885,5}, {0x30edf,4}, {0x20080,3}, {0x55dd,13}, {0x4a34,8}, {0x13d34,10}, + {0x22f3b,8}, {0x2df1,3}, {0x7ea5,12}, {0x25dfb,8}, {0x9d05,12}, {0xef0e,11}, {0x30f4b,6}, {0x12198,4}, + {0x1b3d6,7}, {0x1d11f,9}, {0x1ffbd,9}, {0x17286,9}, {0xb991,5}, {0x1f3ff,9}, {0x11a55,11}, {0x18f9a,4}, + {0x1e7e7,9}, {0x1e44,15}, {0x2c799,6}, {0x246ad,3}, {0x18908,10}, {0x5b59,13}, {0x233e3,8}, {0x965d,12}, + {0x10fd7,8}, {0x145fe,10}, {0x6ceb,13}, {0x1ed90,7}, {0x2d065,6}, {0xd9a8,11}, {0x1e211,9}, {0x1e5b9,9}, + {0x31251,3}, {0x1bfa6,3}, {0x282b,15}, {0x2f064,5}, {0xfda,7}, {0xf604,8}, {0x16476,10}, {0x2e28f,6}, + {0xbea3,10}, {0x13802,10}, {0xa58d,9}, {0x166ec,7}, {0x2a6eb,7}, {0x1a27,7}, {0x303b1,4}, {0x2f8d,14}, + {0x300dc,5}, {0xa85f,7}, {0x272f1,4}, {0x314cf,3}, {0x4bfe,5}, {0x1ced9,6}, {0x2e133,6}, {0x1d1e5,9}, + {0x1d7c4,9}, {0x114b4,8}, {0x2fee5,3}, {0x237a3,8}, {0x1fcc9,9}, {0x16ffe,4}, {0xeb3b,7}, {0x187fc,8}, + {0x55a9,10}, {0xc9ac,11}, {0x2266,4}, {0x9d11,12}, {0x1e38b,9}, {0x385d,5}, {0x2f1c9,3}, {0x17ec2,8}, + {0x20531,8}, {0x2150,15}, {0x17ac6,7}, {0x2faa1,5}, {0x2f970,5}, {0x2b839,6}, {0x156a6,6}, {0x11546,2}, + {0x2822b,5}, {0x8343,6}, {0x300a5,5}, {0xec9,4}, {0x2e870,4}, {0x17894,10}, {0x22d7b,8}, {0x4f36,13}, + {0x1ac3c,9}, {0x2e4b,14}, {0xd8a0,11}, {0x137ee,10}, {0x2aa83,4}, {0x2c939,4}, {0x5387,13}, {0x1f7e8,6}, + {0x1da70,8}, {0x3173d,2}, {0x29a19,4}, {0x22043,8}, {0x1fbe8,9}, {0xad38,4}, {0x1e53,14}, {0xa316,7}, + {0x10cf6,8}, {0x1f3f0,6}, {0x2fdb9,3}, {0x171d2,10}, {0x2a023,7}, {0xb987,5}, {0x2ff26,3}, {0x699e,7}, + {0x2ed56,5}, {0x4979,13}, {0x21dbb,8}, {0x2d905,6}, {0xaccb,6}, {0x21af3,5}, {0x15292,10}, {0x6bcd,12}, + {0x2fe86,3}, {0xf93d,11}, {0x1e54d,9}, {0x2495b,8}, {0x205c9,8}, {0x28729,3}, {0x1e9d6,9}, {0x2cc8f,3}, + {0x29a8d,7}, {0x3c05,13}, {0x1a0c6,9}, {0x1558a,10}, {0x10d66,4}, {0xc48f,11}, {0x1c0df,9}, {0x81a5,12}, + {0x290b3,7}, {0x2d8a5,6}, {0x23118,3}, {0x2b468,3}, {0x2ff5d,3}, {0x16322,10}, {0x26d2,15}, {0x29384,7}, + {0x303e5,4}, {0x143d8,7}, {0x6e09,12}, {0x18638,6}, {0x1b58f,6}, {0xd03f,7}, {0x300aa,5}, {0x529d,13}, + {0x19f8b,9}, {0x6d94,13}, {0x2324b,8}, {0x11493,3}, {0x2d74f,6}, {0x15532,4}, {0xda79,11}, {0x25d4b,5}, + {0x218e1,8}, {0x252bb,8}, {0xff41,6}, {0x100cd,6}, {0x1d677,9}, {0x2908b,5}, {0x2b348,6}, {0x11e54,11}, + {0x5957,3}, {0x85f1,4}, {0x30c25,2}, {0x31a7b,2}, {0xb87f,9}, {0x2c7f3,6}, {0x2feef,3}, {0x11704,11}, + {0x295b6,4}, {0xf058,11}, {0x96c4,5}, {0x26563,8}, {0x4bd2,3}, {0x29ad3,5}, {0x2dea5,6}, {0x21c89,8}, + {0xf61a,11}, {0x4773,14}, {0x2461d,3}, {0x2b92f,6}, {0x2dfbc,3}, {0x2501b,6}, {0x1bdac,9}, {0xda8f,11}, + {0x47d5,9}, {0x23467,4}, {0x2851d,6}, {0x31705,3}, {0x19547,9}, {0x27492,6}, {0xa059,12}, {0x7a01,6}, + {0x2bb0f,6}, {0x27ba7,7}, {0x17308,10}, {0x11e28,11}, {0x1b872,6}, {0x19c19,9}, {0x2c7ab,6}, {0x2de93,6}, + {0x2e14b,6}, {0x296fd,7}, {0xc165,7}, {0x2799a,7}, {0x2fe59,3}, {0x26f36,7}, {0x2c331,6}, {0x11491,11}, + {0x25613,8}, {0x1899,3}, {0x24c2b,8}, {0x28a43,7}, {0x2362b,8}, {0x20206,8}, {0x2b150,6}, {0x10e8d,9}, + {0x1bf43,7}, {0x17af8,10}, {0x2aa09,7}, {0x3066b,4}, {0xcf42,11}, {0xa695,11}, {0xc990,6}, {0x31a57,2}, + {0x1afff,9}, {0x2903c,7}, {0x138e8,10}, {0x10d8,10}, {0x2f356,5}, {0x259a3,8}, {0xa5c9,12}, {0x23e93,5}, + {0x11cd8,6}, {0x159cc,10}, {0x4853,14}, {0x128a8,10}, {0x24513,5}, {0x441d,14}, {0x1c5b9,9}, {0x158ff,5}, + {0x288a1,4}, {0x159ba,8}, {0xdd39,11}, {0xe27,4}, {0x53a1,13}, {0x2ea89,5}, {0x1367,7}, {0x19cc4,6}, + {0x9831,12}, {0x1fb07,9}, {0x1fc0c,9}, {0x94b9,6}, {0x1ce7c,9}, {0x203f1,8}, {0x18a2e,5}, {0x14ebe,10}, + {0x3737,12}, {0x731f,11}, {0x2cc0d,2}, {0x151e1,7}, {0x2e595,5}, {0x5582,8}, {0xe8c8,11}, {0x13c58,6}, + {0x2eb5d,5}, {0x21ba9,8}, {0x15e90,6}, {0x2cd9,3}, {0xaf4,11}, {0x2141,8}, {0x479d,14}, {0x29e22,7}, + {0x17dff,5}, {0xe042,4}, {0x19eaa,9}, {0x12069,6}, {0x21449,7}, {0x23853,8}, {0x29f35,7}, {0xa065,12}, + {0x1314a,8}, {0x313a2,3}, {0x1db32,2}, {0x19e8f,7}, {0x2f590,5}, {0x4f84,8}, {0x1a384,9}, {0x94a4,9}, + {0x73e2,2}, {0xcae0,11}, {0x1e247,6}, {0x1e3a6,8}, {0x2f5cc,5}, {0x2aba8,7}, {0x31248,3}, {0xa131,12}, + {0x19b5c,9}, {0x2ecc5,5}, {0x29cc4,6}, {0x688d,12}, {0x42a3,14}, {0x5582,5}, {0x2de21,5}, {0x10580,7}, + {0x2fe1b,5}, {0x2fe45,3}, {0x20e7,15}, {0x29f3,4}, {0x1cdc,15}, {0x2515b,7}, {0x27326,7}, {0xa599,12}, + {0x27d1,15}, {0x24e63,8}, {0x184ee,6}, {0x2cfb,14}, {0x6f1c,5}, {0x1a318,9}, {0x1e2d0,7}, {0x133ac,10}, + {0x2c565,6}, {0x2f32e,5}, {0x8961,12}, {0x14310,10}, {0x2dadf,6}, {0x312d9,3}, {0x263bb,8}, {0xf9ab,11}, + {0x450b,5}, {0x25ac7,4}, {0xef55,6}, {0xb8c5,6}, {0x17b72,8}, {0x215c1,7}, {0x5f83,10}, {0x2f724,3}, + {0xabb5,6}, {0xe91,3}, {0x836d,10}, {0xbc9d,5}, {0x25b23,5}, {0x2d323,4}, {0x11550,7}, {0x21099,8}, + {0x18acf,5}, {0xc7b2,11}, {0x1ad6e,9}, {0x5f01,8}, {0x2f446,5}, {0x11656,9}, {0x62f7,13}, {0x254cb,8}, + {0x31865,4}, {0x18d2c,9}, {0x2e554,5}, {0x1e38f,5}, {0x21a41,6}, {0x2f577,5}, {0x59c8,5}, {0x26ba1,7}, + {0x19cd6,9}, {0x2771f,5}, {0x25765,6}, {0x2d9e9,6}, {0x395a,5}, {0x2ef7e,5}, {0x30e83,4}, {0x2650,8}, + {0xe634,10}, {0x22953,8}, {0xacdd,7}, {0x14b8a,10}, {0x184d2,4}, {0x18430,10}, {0x18584,10}, {0x30829,4}, + {0x21231,8}, {0x150b4,4}, {0x12e5c,8}, {0x2f5f4,5}, {0x10a2d,8}, {0x2af72,5}, {0xbcc3,6}, {0x1aa4f,7}, + {0xfe70,11}, {0x7d1f,6}, {0x5f01,13}, {0x625b,13}, {0x1da82,9}, {0x22783,6}, {0x30d3f,4}, {0x3688,4}, + {0x1cdd1,9}, {0x1efeb,9}, {0x19226,9}, {0x81e1,11}, {0x1f24f,9}, {0x5b32,13}, {0x2673b,8}, {0x5de3,13}, + {0x2102c,5}, {0x315d0,3}, {0x25fab,8}, {0x1929,8}, {0x2bd4f,6}, {0x2fa0b,5}, {0x1f3e4,8}, {0x1f881,3}, + {0x10a41,11}, {0x1de3c,9}, {0x17286,10}, {0x10b5f,6}, {0x1ed3b,4}, {0x2d3a1,6}, {0x2664b,8}, {0xebdb,5}, + {0x318b9,4}, {0x6726,4}, {0x2550d,6}, {0x23023,6}, {0x6109,13}, {0x7163,13}, {0x24e8,3}, {0x1c532,9}, + {0x16200,10}, {0xf277,5}, {0x33b5,14}, {0x14ffe,7}, {0x2d1f1,6}, {0xa28d,12}, {0x3dd5,4}, {0x1ddeb,9}, + {0x2455b,8}, {0x41fb,6}, {0x2c23b,6}, {0x2d80f,6}, {0x1e9fe,4}, {0x2ed7e,5}, {0x1767a,5}, {0x4287,14}, + {0x16e6c,10}, {0x30a69,2}, {0x1f09f,9}, {0x2feb8,3}, {0x197e1,9}, {0x72e9,13}, {0x1fd47,8}, {0x20a49,7}, + {0x245bb,8}, {0x1c7b1,9}, {0xb69f,5}, {0x256a3,8}, {0x2f0fa,4}, {0xc1f4,5}, {0x2f1f6,3}, {0x2e0cd,6}, + {0xa071,12}, {0x24fab,8}, {0x9c8d,12}, {0x25245,6}, {0x2a0d4,5}, {0x148a6,10}, {0x25ae5,6}, {0x1581e,10}, + {0x110be,11}, {0x21249,8}, {0x1717e,4}, {0x1d074,9}, {0xad01,12}, {0x2b4ec,10}, {0x2ab46,7}, {0x271dd,7}, + {0x122a,17}, {0x5e4b,13}, {0x2ed5b,5}, {0x27da,3}, {0x144d2,9}, {0x9f51,12}, {0x2ef6a,5}, {0x1fd02,6}, + {0x2a818,7}, {0x1bb36,9}, {0x2333b,8}, {0x10dd2,7}, {0x2968d,5}, {0xaf4,13}, {0xc3f5,11}, {0x5861,6}, + {0x1a168,9}, {0x28380,7}, {0x1db44,4}, {0x2cdbf,6}, {0x1eca6,9}, {0x2e77f,5}, {0x1d854,9}, {0x1fbb6,5}, + {0x19dd6,5}, {0x10776,11}, {0x6593,8}, {0x219f3,5}, {0x2d62f,6}, {0x251dd,6}, {0xc26f,4}, {0x28f9b,7}, + {0x2ad37,7}, {0xe9db,11}, {0x10cf6,11}, {0x27fe6,4}, {0x2e586,5}, {0x273e3,7}, {0x1f273,9}, {0x33d8,5}, + {0x28852,7}, {0xabfb,10}, {0x23583,8}, {0x2fe27,3}, {0x95e5,12}, {0x26f0,15}, {0x1f1ec,9}, {0x31b0f,2}, + {0x11d78,11}, {0x1a6ed,9}, {0x96a7,8}, {0x8889,7}, {0x14440,6}, {0x2691d,4}, {0x5883,3}, {0xfdb5,11}, + {0x3011d,5}, {0x13140,7}, {0x30fc3,6}, {0x29983,7}, {0x1a38d,8}, {0x1783a,10}, {0x4b0c,10}, {0x27510,7}, + {0x11184,6}, {0xa509,12}, {0x124c,17}, {0x13388,6}, {0xea28,11}, {0x12efc,10}, {0x1d69b,9}, {0x1878c,5}, + {0xe61,13}, {0x2cccf,6}, {0x257e3,8}, {0x5e45,5}, {0x21481,8}, {0x10d87,4}, {0x22b3b,8}, {0x26103,5}, + {0x30052,3}, {0x26abc,5}, {0x4617,6}, {0x1768c,8}, {0x2cca2,2}, {0x31801,4}, {0x21239,8}, {0x2456b,8}, + {0x2fd46,3}, {0x7283,8}, {0x5199,13}, {0xabbd,12}, {0x1818e,4}, {0x210a1,5}, {0x162d6,6}, {0x31525,3}, + {0xb379,12}, {0x1843a,8}, {0x2453b,8}, {0x24583,8}, {0x472d,14}, {0x1764b,5}, {0x30e31,2}, {0x2fff1,5}, + {0x2ca83,6}, {0x2318b,8}, {0x18fcd,5}, {0x1a2c7,7}, {0x5c36,13}, {0x6304,5}, {0x30c1b,4}, {0x11767,6}, + {0x19af9,9}, {0x1032a,11}, {0x2adf8,5}, {0x10afe,4}, {0x5895,4}, {0x2eb8f,5}, {0x2cc33,6}, {0x11281,6}, + {0x3911,8}, {0x40b9,14}, {0x4839,5}, {0x9255,12}, {0x3c05,14}, {0x27e0,15}, {0x2fc27,5}, {0x2c7db,5}, + {0x2f92a,5}, {0x20377,6}, {0x20542,3}, {0x2601b,8}, {0x9f63,6}, {0x21f43,8}, {0x309cb,4}, {0x253bb,8}, + {0x31b03,2}, {0x1029b,11}, {0x673b,13}, {0x14a7,16}, {0x2203b,8}, {0x21adb,6}, {0x27c56,7}, {0x25dcb,8}, + {0x30677,4}, {0x1836b,7}, {0x244ad,6}, {0x1fe33,4}, {0x1816a,10}, {0x2ff8a,3}, {0x21aa9,5}, {0x27af1,7}, + {0xcb01,8}, {0x1107c,11}, {0x31479,3}, {0x2f885,5}, {0x1fa38,9}, {0xf512,11}, {0x11fbf,11}, {0x2ffb0,5}, + {0x29e99,7}, {0x10469,8}, {0xca33,5}, {0x8bf5,11}, {0x22d5b,8}, {0x18b10,6}, {0xcfdc,11}, {0x25dc3,8}, + {0x9571,2}, {0x2a963,5}, {0x11a08,11}, {0x11d99,11}, {0x3098f,4}, {0x18176,3}, {0x2ce6d,6}, {0x6c35,13}, + {0x1d01a,9}, {0x23f45,3}, {0x2ad30,7}, {0x20844,5}, {0x24ddd,3}, {0x1a9ea,8}, {0x2531b,8}, {0x2d671,5}, + {0x1a98,5}, {0x8439,12}, {0x8f85,6}, {0x7337,13}, {0x29bf2,7}, {0x1fdb3,9}, {0x4172,3}, {0x3bfd,5}, + {0x166c6,5}, {0x2b29a,6}, {0x312bf,5}, {0x36c7,12}, {0x29cbd,5}, {0x2a643,7}, {0x12fec,10}, {0x1be72,9}, + {0xe14e,11}, {0x133a6,6}, {0x5951,13}, {0x14464,6}, {0x10a62,11}, {0x240f3,8}, {0x1768c,5}, {0x1c1d2,9}, + {0x879f,6}, {0x201ae,7}, {0x4fab,13}, {0x14a40,10}, {0x16cbe,10}, {0x2d17f,5}, {0x278e4,7}, {0x1bbe1,6}, + {0x1a84,15}, {0xec01,11}, {0x1dd13,9}, {0xe426,5}, {0x11b49,3}, {0x2ce19,6}, {0x26ad6,7}, {0x19682,9}, + {0x4619,4}, {0x1bce,10}, {0x1df38,9}, {0x17990,6}, {0x313c0,3}, {0x1c436,9}, {0x1e7b3,7}, {0x1150a,11}, + {0x267c9,4}, {0x2271b,8}, {0x24ebb,6}, {0xcb33,5}, {0x1b93e,5}, {0x59a2,7}, {0x16df4,10}, {0x2700f,7}, + {0x28604,7}, {0x16c8c,10}, {0x4938,13}, {0x18110,10}, {0x258a3,6}, {0x170b0,9}, {0x4ef9,9}, {0x1ef05,4}, + {0xc610,11}, {0x2e720,5}, {0x27f74,6}, {0x22ceb,8}, {0x1897,11}, {0x5eed,7}, {0x1de7d,7}, {0x1d4c7,9}, + {0x248fb,6}, {0x2b144,6}, {0x12fe2,7}, {0x2ffe2,5}, {0x23ccb,8}, {0x2378b,7}, {0x18db0,8}, {0x30a8f,4}, + {0x16cf,5}, {0x80f1,12}, {0x2efb7,2}, {0x30b7d,2}, {0x316e7,3}, {0x89a9,12}, {0x1d170,9}, {0x30020,3}, + {0x29fc,15}, {0x29887,5}, {0x15032,4}, {0x13e74,10}, {0x71be,13}, {0x3127d,3}, {0x20bb1,8}, {0xbb1d,5}, + {0x5874,13}, {0xec17,11}, {0x2b46,7}, {0x16524,6}, {0x271d6,7}, {0x20659,8}, {0x16a34,10}, {0x1047,4}, + {0x12b64,10}, {0x17dfa,10}, {0x25acf,4}, {0x119d3,4}, {0x261eb,6}, {0xa49d,11}, {0x2cbc9,4}, {0x8581,8}, + {0xff78,11}, {0xc38b,7}, {0x57a9,8}, {0x2a03f,7}, {0x297dd,7}, {0x20819,8}, {0x319e1,4}, {0xcb59,11}, + {0xe8f,4}, {0x26bfc,7}, {0x20da1,8}, {0x18214,10}, {0x80b7,7}, {0x177f4,8}, {0x2ccbd,5}, {0x1019,18}, + {0x272bd,7}, {0x25ce3,8}, {0x25feb,8}, {0x5f28,5}, {0x2003b,9}, {0x15b7,16}, {0x9729,12}, {0xfb37,11}, + {0x10805,11}, {0x2ccf3,6}, {0x1f0da,3}, {0x2e12d,6}, {0x6cf1,2}, {0x155b,5}, {0x2b81b,6}, {0xd097,8}, + {0xeac2,11}, {0x30118,5}, {0x1760d,7}, {0x20548,2}, {0xafd8,5}, {0x89bc,5}, {0x2447b,7}, {0x21701,8}, + {0x1bb87,9}, {0x2a2ca,7}, {0x1d7ea,7}, {0xc051,12}, {0x11f5c,7}, {0x249c6,5}, {0x30853,4}, {0x11f04,6}, + {0x30415,4}, {0x25695,4}, {0x2533b,8}, {0x2c54f,3}, {0x1123a,5}, {0x305a7,4}, {0x3ae3,3}, {0x1ec5e,9}, + {0x2f4ff,4}, {0x82e9,12}, {0x1394c,10}, {0x30340,5}, {0xc439,7}, {0x1d61d,9}, {0x1ceb,8}, {0x14f5e,10}, + {0x14e82,10}, {0x317e9,4}, {0x2f2f7,4}, {0x10b9,12}, {0xafdf,10}, {0xad25,12}, {0x2ebad,5}, {0xe0e3,8}, + {0x2c379,6}, {0x211c1,8}, {0x2b893,6}, {0x21f9b,8}, {0x23263,8}, {0x207f3,6}, {0x13352,10}, {0x17bb8,3}, + {0x6cfc,9}, {0x2e27a,5}, {0x7ce9,8}, {0x289ef,7}, {0x1154c,11}, {0x3152e,3}, {0x22ba3,8}, {0x2fb7,14}, + {0x2d21b,6}, {0x1f9d,15}, {0x5af1,13}, {0x1fe0f,7}, {0x56ad,8}, {0x2c301,6}, {0x2f220,5}, {0x29e68,6}, + {0x5fd3,4}, {0x249fb,8}, {0x2641b,8}, {0x314d6,3}, {0x1e757,9}, {0x2362,6}, {0x2f641,2}, {0x24d83,6}, + {0x18142,10}, {0x1f7dd,9}, {0xdb60,11}, {0x1bfb,11}, {0x12f2e,7}, {0x11071,11}, {0xaed8,4}, {0x2c77d,4}, + {0x21a71,6}, {0x274df,7}, {0x488b,9}, {0x1c7f9,9}, {0x1850c,10}, {0x2670d,6}, {0x1c27d,9}, {0x17808,10}, + {0x14482,10}, {0x2797e,7}, {0x185e8,7}, {0x1e8bf,9}, {0x2277b,7}, {0x1e6a3,7}, {0x2e5a4,5}, {0x1303c,10}, + {0x2c9b5,6}, {0x1ce4f,9}, {0x2c3a9,6}, {0x2eb21,5}, {0x2549d,3}, {0x54ab,6}, {0x24ed3,8}, {0x2a87a,6}, + {0x10621,11}, {0x2fe02,5}, {0x1ad2f,8}, {0x17da0,10}, {0x3cce,9}, {0xfb00,11}, {0xce97,3}, {0xd745,6}, + {0x153b4,10}, {0x10b54,6}, {0x2ec2f,5}, {0x2062b,6}, {0x1a026,6}, {0x1362c,10}, {0x1c2c,4}, {0x16b30,8}, + {0x24bc7,4}, {0xc5f5,4}, {0x2db09,6}, {0x25f93,8}, {0x5b44,8}, {0xb34,24}, {0x2d8a1,3}, {0x191cc,6}, + {0x4dca,12}, {0x7d7f,6}, {0x23893,8}, {0x2f275,4}, {0x833d,7}, {0xc656,7}, {0xd9a8,8}, {0x1a37b,9}, + {0x139d8,10}, {0xcec9,11}, {0x9741,12}, {0x23d5b,8}, {0x1d923,9}, {0x2d25d,6}, {0x1447,16}, {0x229bb,5}, + {0xbbad,5}, {0x2941a,3}, {0x1787,16}, {0x12a15,5}, {0x9525,12}, {0x2c13b,4}, {0xff4c,7}, {0x7a31,8}, + {0x808b,6}, {0x20d01,8}, {0x2739d,7}, {0x2c48f,4}, {0xd78d,10}, {0x2825a,7}, {0x1349e,8}, {0x30ccf,4}, + {0x2970b,7}, {0x2ea8e,5}, {0x28f88,4}, {0x1f8eb,9}, {0x8b11,12}, {0x1c16a,5}, {0x181c4,10}, {0x11c23,11}, + {0x1461,3}, {0x2790e,5}, {0x3126c,3}, {0x29b4a,6}, {0x1f97d,3}, {0x2136,5}, {0x182a4,6}, {0xb3fd,12}, + {0x54a5,12}, {0x24f0b,6}, {0x305ea,3}, {0x92d2,7}, {0x300f0,5}, {0x56a0,13}, {0x244e5,6}, {0x758d,9}, + {0x22687,4}, {0x13962,6}, {0x2465f,4}, {0x1eaed,9}, {0xb537,6}, {0x2da37,6}, {0x24ec5,6}, {0x25053,8}, + {0x2bcad,6}, {0x2c115,6}, {0x10afe,3}, {0x180a,4}, {0x378e,9}, {0x8d45,11}, {0x2504b,8}, {0x30041,5}, + {0xa515,11}, {0x1ec3a,9}, {0x11517,2}, {0x2707f,7}, {0x271d,15}, {0x23cc3,8}, {0x118f5,8}, {0x1efdd,5}, + {0x4c9f,12}, {0xeae3,11}, {0x1189d,6}, {0x23f93,8}, {0x2afb6,7}, {0x35fb,5}, {0x212c1,8}, {0xb8a3,10}, + {0x2fd5f,3}, {0x8481,7}, {0x14f0e,10}, {0x491e,13}, {0x1d36,11}, {0x28689,7}, {0x1277c,9}, {0x12df8,10}, + {0xee74,10}, {0x27120,7}, {0x31648,3}, {0x1a735,9}, {0x5665,7}, {0x632b,13}, {0x1fac,15}, {0x307db,2}, + {0x29515,4}, {0x192f0,5}, {0xd90e,8}, {0x19de4,9}, {0xdc73,11}, {0x2808c,7}, {0xc0fe,7}, {0x18234,3}, + {0x29a21,3}, {0x2e24a,3}, {0x17218,10}, {0x1fd6b,9}, {0x8b4d,12}, {0x11449,3}, {0x159c2,10}, {0x29cc4,7}, + {0x289e8,7}, {0x602c,13}, {0x1e2d7,6}, {0x119a1,4}, {0x2f4f5,5}, {0x810b,6}, {0x1c9a0,6}, {0xe558,11}, + {0x1c8bf,9}, {0x280e7,7}, {0x1dd6f,6}, {0x17c4c,10}, {0x3135d,3}, {0x21f1e,4}, {0x9681,12}, {0x2f023,5}, + {0x3ed5,8}, {0x2016d,9}, {0xf787,9}, {0x21471,8}, {0x228cb,8}, {0x29903,7}, {0x2d38f,5}, {0x5315,5}, + {0x29410,7}, {0x25c73,7}, {0x91c5,12}, {0x19a96,9}, {0x2a3a,13}, {0xfa24,11}, {0x237fb,8}, {0x2ea6d,3}, + {0x91d1,12}, {0x15346,10}, {0x25db3,8}, {0x39e3,14}, {0x312a4,3}, {0x24a6b,8}, {0x2649b,6}, {0x2b402,6}, + {0x2595b,6}, {0xcc71,3}, {0x10993,9}, {0x4cb9,12}, {0x94dd,12}, {0x29854,7}, {0x29800,7}, {0x17b40,3}, + {0x1deba,5}, {0x1991c,6}, {0x17722,10}, {0x232c3,8}, {0x307fb,3}, {0x2a968,7}, {0x2faf1,5}, {0xd9b3,11}, + {0x18e58,10}, {0x2fc5e,5}, {0x127c2,10}, {0x8295,8}, {0x21869,8}, {0x233c3,8}, {0x2dca1,6}, {0x1edbd,9}, + {0x2af85,7}, {0x2b75,8}, {0x69d2,12}, {0xfad,8}, {0x2427b,8}, {0x2e346,4}, {0x1ed0c,5}, {0x1bccb,6}, + {0x280d,8}, {0x1dcd4,8}, {0x48dd,13}, {0x2a173,7}, {0x10aa4,11}, {0x1f24f,8}, {0xc883,11}, {0x270b0,7}, + {0x2eb71,5}, {0x169b,12}, {0x313d2,3}, {0x24beb,8}, {0x1d055,4}, {0xc14d,11}, {0x13bdb,5}, {0x31459,3}, + {0x1538e,5}, {0x3062f,4}, {0x20da9,5}, {0x252ad,2}, {0xd9df,11}, {0x1b38c,9}, {0x234ab,8}, {0x1e247,9}, + {0x2deb1,6}, {0x1fbb,12}, {0x6dbb,13}, {0x112d,12}, {0x28150,7}, {0x12a4,8}, {0x6b99,5}, {0x791d,12}, + {0x9279,12}, {0x9ae9,12}, {0x1864c,10}, {0x2d91,4}, {0x30ea7,4}, {0x9c28,5}, {0x16ad4,10}, {0x11503,4}, + {0x318b1,4}, {0x2fa03,3}, {0x13da2,10}, {0x275a3,7}, {0x3111f,6}, {0x37cf,14}, {0x19cdf,6}, {0x10503,11}, + {0x10c51,11}, {0x2987e,7}, {0x46bf,2}, {0x10abf,6}, {0x1bfec,9}, {0x249ab,8}, {0xf1fa,11}, {0x30c7d,2}, + {0x2739d,6}, {0x18be2,10}, {0x2df1,6}, {0x172cc,10}, {0x2a619,7}, {0x24b7b,8}, {0x2d08f,6}, {0x375f,8}, + {0x27a81,7}, {0x14858,4}, {0x25d56,3}, {0x24e7,5}, {0x233d3,8}, {0x1efd9,9}, {0x315cd,3}, {0x26908,7}, + {0x1edea,9}, {0x1e633,4}, {0x2a11a,5}, {0x220bb,8}, {0x30b03,4}, {0xe592,8}, {0x14306,10}, {0xfd49,8}, + {0x2a55c,7}, {0xe10c,11}, {0xa1cd,12}, {0x28dfe,6}, {0x2414b,8}, {0x24025,5}, {0x18e6c,10}, {0x31aeb,2}, + {0x2bb9b,4}, {0x456d,5}, {0x8a45,12}, {0x7cc9,4}, {0x16b7,16}, {0x25325,6}, {0x297cf,7}, {0x2a245,7}, + {0x3189d,4}, {0x1718c,10}, {0x19a9,5}, {0x2d437,6}, {0x10f76,9}, {0x2791c,7}, {0x18d04,10}, {0x737a,2}, + {0x3903,7}, {0x2b857,6}, {0x23d7b,5}, {0xe7db,6}, {0x1df70,7}, {0x2245b,4}, {0x201db,5}, {0x65e9,13}, + {0x11b89,10}, {0x1ea74,4}, {0x2e780,2}, {0x1ef5b,9}, {0x204f1,8}, {0x24ea5,6}, {0x2a000,7}, {0x1188,4}, + {0xabe1,12}, {0x2bd09,4}, {0x10096,11}, {0x28c53,7}, {0x2eff6,5}, {0x25d33,8}, {0x12bbe,10}, {0x10bfd,3}, + {0xdba2,11}, {0x2b256,3}, {0x48f1,6}, {0x11a60,11}, {0x1823c,6}, {0x2db0f,6}, {0x21891,8}, {0x7f35,12}, + {0x2e9a8,5}, {0x10246,4}, {0x14266,10}, {0x2d8bd,6}, {0x77fd,8}, {0xee53,8}, {0x2afa1,5}, {0x13f0c,7}, + {0x1e94,3}, {0x5339,13}, {0x2875f,5}, {0x307be,3}, {0x28d02,7}, {0x15440,10}, {0x49f3,8}, {0x2c52f,6}, + {0x1123f,9}, {0x2fe04,3}, {0x2db2d,5}, {0x2b482,4}, {0x1eb50,9}, {0x1f6d8,9}, {0x14fd6,10}, {0x16c5c,6}, + {0xcc66,6}, {0x1b3ef,9}, {0x1ca81,9}, {0x4326,9}, {0x31594,3}, {0x90f9,12}, {0x2c6d3,6}, {0x29425,7}, + {0xb9e5,6}, {0x13442,10}, {0x1b878,9}, {0x12294,6}, {0x2d2bf,3}, {0x2e9da,5}, {0x2c511,5}, {0x1ef49,9}, + {0x15c28,6}, {0x9ced,12}, {0x252c6,5}, {0xd189,11}, {0x84b1,8}, {0xe99,3}, {0x1f30c,9}, {0x2fef4,3}, + {0x13d4a,3}, {0x218c,8}, {0x70c7,13}, {0x2bde5,6}, {0x2ce07,6}, {0x2eaef,5}, {0xad6d,9}, {0x30b7,7}, + {0x2494b,8}, {0x16f36,8}, {0x2584b,6}, {0x162b,4}, {0xe999,11}, {0x6254,7}, {0x27ab2,7}, {0x11e3e,7}, + {0x2d421,4}, {0x26303,8}, {0x1315e,10}, {0x84ed,12}, {0x31396,3}, {0x129b6,10}, {0xfdc6,5}, {0x145ea,10}, + {0x8c3d,12}, {0x1acd5,9}, {0x2d631,3}, {0x2c4bd,6}, {0x16084,10}, {0x24145,3}, {0x276af,4}, {0x4529,4}, + {0x65cf,13}, {0x22308,3}, {0x105a8,11}, {0x26d4c,7}, {0x2ec98,5}, {0xb942,7}, {0x24593,8}, {0xa55d,12}, + {0x1e5ef,8}, {0x143c4,6}, {0x5e0a,13}, {0x2f650,3}, {0x2ae12,7}, {0x2507d,3}, {0x28e98,7}, {0x2c187,6}, + {0x1ffe1,9}, {0x31df,8}, {0x23f7b,5}, {0x1d3ef,8}, {0x31699,3}, {0x91f5,9}, {0xb5c5,11}, {0x1ea9c,9}, + {0x2bce3,6}, {0x2929f,5}, {0x19631,9}, {0x12da8,10}, {0x75d0,4}, {0x2f713,5}, {0x1071e,11}, {0x292d0,5}, + {0x20501,8}, {0x1f9e7,9}, {0x230bb,8}, {0x1f11f,7}, {0x145e0,10}, {0x2f57c,5}, {0x1ae2b,9}, {0x12090,6}, + {0xcd2d,5}, {0xfdd6,11}, {0x2fef9,3}, {0x1f642,6}, {0x10fb6,11}, {0x1297,9}, {0x1ff2d,9}, {0x18ca0,10}, + {0x2ffad,3}, {0x27579,7}, {0x23db3,8}, {0x12316,5}, {0x1437e,10}, {0x29639,7}, {0x1ff48,9}, {0x897e,7}, + {0x132d0,10}, {0x20571,3}, {0x18566,10}, {0x28ca7,7}, {0x2ced9,6}, {0x138f2,10}, {0x20245,5}, {0x1860a,6}, + {0x2f96b,5}, {0x7d9d,12}, {0x2880c,7}, {0x103e,3}, {0x1dab1,7}, {0x1a0cb,4}, {0x1d3c2,9}, {0x13122,9}, + {0x26463,8}, {0x25f88,3}, {0x2b0a8,8}, {0x843f,6}, {0xbbaf,5}, {0x6eeb,8}, {0x2a356,7}, {0xa7fd,12}, + {0x17754,10}, {0x262ed,6}, {0x18ece,10}, {0x1284e,10}, {0x30ab3,4}, {0x14da6,10}, {0x2df56,3}, {0x2cf7b,6}, + {0xe9d0,11}, {0x1d49e,5}, {0x1022,3}, {0x28bab,7}, {0x24ca3,8}, {0x1de9f,9}, {0x1c77b,9}, {0x2194,7}, + {0x2deb7,6}, {0x1d6da,9}, {0x29d21,3}, {0x22e83,8}, {0x18af2,10}, {0xdc31,11}, {0x18ec6,18}, {0x2fab5,5}, + {0x2fb57,3}, {0x4a56,13}, {0x154fe,10}, {0x315e7,3}, {0x9958,5}, {0x20260,9}, {0x2e6b7,4}, {0x1ca93,7}, + {0x7e2f,5}, {0x2de33,6}, {0x29ab0,7}, {0x11ef2,4}, {0xc281,8}, {0x50e5,11}, {0x2058b,6}, {0xfd1,12}, + {0x31345,3}, {0xeb8,3}, {0x7489,13}, {0xe68c,10}, {0x29a2b,7}, {0xc36,12}, {0x2afaf,7}, {0x20643,6}, + {0x30973,4}, {0x11e14,3}, {0x2d755,6}, {0xf499,11}, {0xb3e7,2}, {0x156e,4}, {0x240bb,8}, {0x26898,7}, + {0x6aa2,13}, {0x30663,4}, {0x30e9b,4}, {0x3061,7}, {0x556e,7}, {0x24673,8}, {0x9602,7}, {0x24ddb,8}, + {0x10e77,11}, {0x2f581,5}, {0xcb32,5}, {0xffba,11}, {0x2e4f0,5}, {0x2c53b,6}, {0xc5fa,9}, {0x29743,7}, + {0x2cd95,6}, {0xcaa9,9}, {0x863d,12}, {0x2de81,6}, {0x1133c,10}, {0x269fd,7}, {0x2329b,8}, {0x18c28,10}, + {0x16494,10}, {0x2ed06,5}, {0x1f5c1,9}, {0x159e0,10}, {0x2ed47,5}, {0x2973c,7}, {0x4ede,5}, {0x4c9f,13}, + {0x18e44,8}, {0xe8c1,7}, {0x25963,8}, {0x2a54e,7}, {0xbb9c,5}, {0xe419,11}, {0x2b7d9,6}, {0x1bb7e,9}, + {0x2a0d,13}, {0x3173b,3}, {0x10ee5,11}, {0x252b3,8}, {0xa2da,7}, {0x29d7,4}, {0x1d0fb,9}, {0x2ff21,3}, + {0x2c6fd,6}, {0x18c3c,10}, {0x2f94a,2}, {0xbcf8,5}, {0x2efe7,5}, {0x164a8,7}, {0x2473b,5}, {0x403b,14}, + {0x21eeb,8}, {0x1459a,10}, {0x1d7d6,9}, {0xc00f,6}, {0x2fd32,3}, {0xc975,7}, {0xe4ec,6}, {0x30025,3}, + {0xf13f,11}, {0x29810,5}, {0x25d3,10}, {0x29b97,7}, {0x1e409,9}, {0x13c3a,10}, {0x1b212,9}, {0x10d3e,5}, + {0x1df43,6}, {0x25083,6}, {0xbdc9,12}, {0x8d32,4}, {0x1d0a1,9}, {0x14fd,4}, {0x31819,4}, {0xc978,3}, + {0x14680,10}, {0x313de,3}, {0xd53b,11}, {0x9670,5}, {0x2a7b6,7}, {0x1884f,5}, {0x18414,3}, {0x182c8,10}, + {0x304ff,4}, {0x1fc5,4}, {0xda37,11}, {0x1c880,9}, {0x2fd23,3}, {0x2dfb5,4}, {0x1627d,5}, {0x487f,6}, + {0x1ba7,9}, {0x9261,12}, {0x29422,3}, {0x2b90,3}, {0x22cfb,8}, {0x3dc5,14}, {0x181e2,10}, {0x2c3af,4}, + {0x2c14b,6}, {0x5457,13}, {0xef68,5}, {0x3b87,6}, {0x13df2,10}, {0x21bf9,8}, {0x20399,8}, {0x3273,13}, + {0x278dd,7}, {0x1f729,9}, {0x29a0f,7}, {0xb241,12}, {0x31402,3}, {0xc099,12}, {0x3433,10}, {0xab39,12}, + {0x2623b,8}, {0x2cfb1,6}, {0x2993,4}, {0x2a674,7}, {0x9e49,12}, {0x1696c,10}, {0xce5b,7}, {0xb889,9}, + {0x1f49a,7}, {0x253ab,8}, {0x2058a,3}, {0x2ae35,7}, {0x27bd1,7}, {0x2961d,7}, {0x24dc5,6}, {0x310b3,6}, + {0xca30,11}, {0xa701,12}, {0x14612,10}, {0x14d88,10}, {0x1fec1,6}, {0x26663,8}, {0x21461,8}, {0x3305,8}, + {0x1cf54,9}, {0x1d3b0,9}, {0x1e4da,6}, {0x28fe5,3}, {0xbbc5,12}, {0x28ea8,5}, {0x2ffb7,3}, {0x2d5e1,6}, + {0x77a5,4}, {0xcdbc,5}, {0x2a4d0,5}, {0x319a1,4}, {0x2adda,7}, {0x28d2,6}, {0x31467,3}, {0x2bd5,9}, + {0x117d7,5}, {0x1627,7}, {0x12757,7}, {0x1e168,6}, {0x1d722,9}, {0x2dc17,6}, {0x27652,7}, {0xead8,11}, + {0xba75,12}, {0x210c1,8}, {0x2c0bb,6}, {0x2f826,5}, {0x2ff30,3}, {0x286ef,5}, {0x2a26f,7}, {0x29e33,4}, + {0x11ddb,11}, {0x93b3,8}, {0x74e6,2}, {0x5b73,13}, {0x30beb,4}, {0xfd26,10}, {0x12c12,3}, {0x1790c,10}, + {0x22e0b,8}, {0x11cde,11}, {0xacd1,7}, {0x2f630,5}, {0x2d76a,3}, {0x21209,8}, {0x1c71a,6}, {0x2b917,6}, + {0x18a3e,10}, {0x836d,12}, {0xc0a7,9}, {0x4391,14}, {0x2392e,5}, {0x2f826,4}, {0x16aa2,10}, {0x28fb0,7}, + {0x249cb,8}, {0x2c745,6}, {0x2fd19,3}, {0x2617b,8}, {0x13232,8}, {0x258db,8}, {0x1afa5,9}, {0x143a6,10}, + {0x66c6,13}, {0x2d13d,6}, {0x2e21f,4}, {0x31845,4}, {0x2f61c,5}, {0x61e8,3}, {0x1c877,8}, {0x18188,6}, + {0x11795,2}, {0x2ea34,5}, {0x201b7,6}, {0x1f9bc,2}, {0x3128c,3}, {0x1987,16}, {0xef71,11}, {0x11430,3}, + {0x14504,10}, {0x1accc,9}, {0x2ba70,3}, {0x54cf,5}, {0x1178c,7}, {0x20571,8}, {0x19628,9}, {0x28ac8,7}, + {0xe6ce,11}, {0x1497,4}, {0x71cb,12}, {0x1dbf,8}, {0x16688,10}, {0x24603,8}, {0x29e92,7}, {0x19fca,9}, + {0x201fd,9}, {0xaa9d,8}, {0x1ef28,6}, {0x1e6e2,9}, {0xc1a1,8}, {0x17916,10}, {0x30b1f,4}, {0x25583,8}, + {0x86f3,10}, {0x8cea,7}, {0x1caf,15}, {0x1c706,9}, {0xe6a7,6}, {0x2fa92,5}, {0x2a1ff,7}, {0xf34,3}, + {0x18796,9}, {0x2922d,7}, {0x17660,4}, {0x31b1f,2}, {0x2bb3f,6}, {0x15cd8,8}, {0x26996,5}, {0x264bd,3}, + {0x9099,12}, {0x2cc6f,6}, {0x1e522,3}, {0xc5b8,11}, {0x82dd,5}, {0x1a68d,5}, {0x10bfb,2}, {0x2fcbd,5}, + {0x161a6,9}, {0x30a23,4}, {0x2d6f7,4}, {0x10104,11}, {0x4757,13}, {0x18796,10}, {0x1e749,5}, {0x2f335,3}, + {0x3183d,4}, {0x19a21,8}, {0x23af5,6}, {0x25935,3}, {0x296b,3}, {0x28a6d,7}, {0x1faa4,9}, {0x2a6c8,7}, + {0x2b492,6}, {0xda6e,11}, {0x310d1,6}, {0xaf95,11}, {0x3851,10}, {0x3161c,3}, {0x2efd8,5}, {0x2b360,6}, + {0xe453,8}, {0x15d28,10}, {0x781c,5}, {0x12498,10}, {0x236c6,4}, {0x2b6bf,6}, {0x11649,5}, {0x1ca81,8}, + {0x14dc7,7}, {0x224b3,8}, {0xc54a,11}, {0x20521,8}, {0x1162a,9}, {0x30087,5}, {0x58b5,9}, {0x160d4,10}, + {0xbdef,3}, {0x6c5c,8}, {0x2ccab,6}, {0x1a9fe,6}, {0x1f572,3}, {0x2f51d,5}, {0x185ca,10}, {0x2567e,5}, + {0x31476,3}, {0x31753,3}, {0x19bb6,8}, {0x14f68,10}, {0x2d443,6}, {0x30762,4}, {0x28e0e,5}, {0xcfb0,11}, + {0xbff1,8}, {0x2c9af,6}, {0xb99d,12}, {0xcf9c,5}, {0x2d5fb,4}, {0x2fb00,5}, {0x17178,6}, {0x2c496,3}, + {0x1cbeb,8}, {0x2ee69,5}, {0x233eb,8}, {0x14a18,10}, {0x1500,3}, {0x22d23,6}, {0x504d,4}, {0x107d9,8}, + {0xbae1,12}, {0x2faa8,3}, {0x20bb9,6}, {0x21451,8}, {0x1c2e9,9}, {0x9789,12}, {0x2c08b,6}, {0x18e7,16}, + {0x5cd2,13}, {0x2708d,7}, {0xbd09,9}, {0x298b2,4}, {0x2e681,4}, {0x1b86f,9}, {0x2e5c7,5}, {0x2eaf9,5}, + {0x23a5b,5}, {0x22c53,8}, {0x4ef5,13}, {0x3e0b,14}, {0xa9ef,5}, {0x9db9,7}, {0x2a5ef,7}, {0x2edab,5}, + {0x1942,3}, {0x18066,6}, {0x15800,8}, {0x11d83,11}, {0x2933e,7}, {0x1326c,10}, {0xf580,10}, {0x28da6,2}, + {0xcc1f,11}, {0x1f6af,5}, {0x30c45,2}, {0x6d12,13}, {0x16c1e,10}, {0x1d96d,7}, {0xb7a5,12}, {0x101a9,11}, + {0x17074,9}, {0x1745e,4}, {0x1d99a,7}, {0xae99,12}, {0x176e6,10}, {0x1ee71,9}, {0x1ba0f,7}, {0x2fd85,5}, + {0x1a26d,9}, {0x2e74d,5}, {0x2fe48,5}, {0x2ecb3,3}, {0x2ca19,2}, {0x1b5c5,6}, {0x8f13,6}, {0x8c31,12}, + {0xc70d,11}, {0x1821e,6}, {0x4537,2}, {0x2441b,8}, {0x7ae7,3}, {0x2507b,8}, {0x170a8,4}, {0x1c127,9}, + {0x2ea20,5}, {0x1dc0e,9}, {0x1d88a,7}, {0x2f696,5}, {0x2271,4}, {0x2af10,2}, {0x2cec7,6}, {0xf2c0,11}, + {0x259b3,8}, {0x2cce7,6}, {0xb42f,2}, {0x30bb1,2}, {0x2874f,7}, {0x1eec2,5}, {0x2f7e5,5}, {0x24c63,8}, + {0x3117f,6}, {0x29ec3,5}, {0x126dc,10}, {0x2bd0d,6}, {0x2ff85,3}, {0x1b251,9}, {0x2bc83,6}, {0x13c62,10}, + {0xafca,7}, {0x1fa55,7}, {0xd9ea,11}, {0x1b0b,9}, {0x3143e,3}, {0x246d3,8}, {0x1a807,6}, {0x2d0a1,6}, + {0x5734,7}, {0x78c9,12}, {0x2f644,5}, {0x9be0,5}, {0x234e3,8}, {0x3f85,14}, {0x2fab0,5}, {0x1b0ce,9}, + {0x10571,11}, {0x23e65,6}, {0x27923,7}, {0xbdb3,10}, {0x2630b,8}, {0x16aac,10}, {0x2de4d,4}, {0xd81c,11}, + {0x10d90,11}, {0xfc3,3}, {0x3831,14}, {0x2c769,6}, {0x21ac1,8}, {0x1227c,10}, {0x3d68,9}, {0x311a9,6}, + {0x29809,5}, {0x2d7f7,6}, {0xf021,6}, {0x10456,3}, {0x177cc,7}, {0x29751,7}, {0x2f669,5}, {0x7d38,5}, + {0x2be69,6}, {0xf1c3,6}, {0x16c14,10}, {0x31b4b,2}, {0xce82,5}, {0x1ff3f,7}, {0xea28,5}, {0x31a81,2}, + {0x1e965,3}, {0xc89f,5}, {0xfb0b,11}, {0x103c4,11}, {0x1dcef,9}, {0xb679,7}, {0x30bb3,4}, {0xc5c3,11}, + {0x18aca,10}, {0x6b43,4}, {0x1e9a0,9}, {0x1f7d0,4}, {0x281ce,7}, {0x31597,3}, {0x35f3,14}, {0x220d5,6}, + {0x1ec31,9}, {0x1076b,11}, {0x29dc9,5}, {0x18de0,10}, {0x16282,10}, {0x25edb,7}, {0xc543,7}, {0x2cda9,4}, + {0x184b2,10}, {0x2c8fb,5}, {0x31ae3,2}, {0x2927a,7}, {0x29b51,7}, {0x19a57,9}, {0x18818,10}, {0x19186,7}, + {0x1fe74,5}, {0x7cd1,12}, {0x94e9,6}, {0x2eae0,5}, {0x333b,3}, {0x2c219,4}, {0x145b2,6}, {0x1e240,7}, + {0x1761e,10}, {0x4f38,7}, {0xa70d,12}, {0x2c763,6}, {0x695d,13}, {0x30316,5}, {0x13e7,16}, {0x2bb03,6}, + {0x1768c,10}, {0x111b0,11}, {0x249db,8}, {0x6408,11}, {0x2d78b,5}, {0x28087,5}, {0x2d911,6}, {0x7930,3}, + {0xbd69,11}, {0x6c9d,13}, {0x90f2,5}, {0x6ff7,13}, {0x31263,3}, {0x28717,7}, {0x1dc3b,9}, {0x80a9,12}, + {0xbc1e,7}, {0x50cb,8}, {0x1e1ae,9}, {0x13082,10}, {0xf9b6,11}, {0x1db99,5}, {0x2e531,5}, {0x7573,13}, + {0x1a6db,9}, {0x206b5,4}, {0x1434c,10}, {0x1055f,7}, {0x30127,5}, {0x10160,3}, {0x2c1f5,4}, {0x21829,7}, + {0x10c30,6}, {0x2cbd1,2}, {0x27034,4}, {0xedcf,11}, {0x134a6,8}, {0x13e4e,7}, {0xfa7c,11}, {0x19390,5}, + {0x1ceb,15}, {0x1db87,9}, {0x1917,16}, {0x17b22,8}, {0x1bf38,9}, {0x237bb,8}, {0x1b665,9}, {0x1e86,9}, + {0xe3f8,11}, {0x22f9b,8}, {0x1be21,9}, {0x1200c,11}, {0x2a333,7}, {0x15d14,10}, {0x2f718,5}, {0x2c36d,6}, + {0x2b587,6}, {0x27ae3,7}, {0x4f02,6}, {0x12128,10}, {0xed56,9}, {0x293b5,7}, {0x131f4,10}, {0x108b5,11}, + {0x28acf,7}, {0x1a4f5,9}, {0xe101,11}, {0x2b14a,6}, {0x2f7ef,5}, {0x2ffb5,5}, {0x10ee,4}, {0x27437,7}, + {0x2aa97,7}, {0x2ca71,6}, {0x4f24,5}, {0x2fd53,5}, {0x1e17,15}, {0x9c69,6}, {0x2d67f,4}, {0x17473,7}, + {0x23f45,6}, {0x28c4c,7}, {0x24043,8}, {0x260b3,8}, {0x6b41,7}, {0x1a951,9}, {0x9b25,12}, {0x18ef0,12}, + {0x26235,6}, {0x100b7,11}, {0x32be,2}, {0x2fe3b,3}, {0x29998,7}, {0x613d,13}, {0xebb4,11}, {0x168ae,10}, + {0x17c88,10}, {0x1b950,9}, {0x108c0,11}, {0xf66e,4}, {0x1323a,9}, {0xa0d1,9}, {0x2dac1,6}, {0x2bb8d,6}, + {0xac54,5}, {0x2ccc9,6}, {0x28725,7}, {0x1d0e0,9}, {0x1db51,9}, {0x2ffa8,3}, {0x19c10,9}, {0x13cf0,8}, + {0x12bb4,10}, {0x8331,12}, {0x10616,11}, {0x2ffab,5}, {0x11e6,17}, {0x2c8e3,6}, {0xd690,11}, {0x2fcec,3}, + {0xf717,11}, {0x31669,3}, {0x1d80c,9}, {0xdb55,8}, {0xea33,11}, {0x1abd9,9}, {0x1f069,9}, {0x2adfd,7}, + {0x2e667,5}, {0x1e568,9}, {0x2f3a6,4}, {0x1dd2,9}, {0x41d8,7}, {0x1753a,7}, {0x1ae97,9}, {0x2c9c1,6}, + {0xbd8d,12}, {0x296b,2}, {0x21a4b,6}, {0x2df74,3}, {0x17f32,7}, {0x220cb,8}, {0x1e89b,9}, {0x2ff76,3}, + {0x1317,3}, {0x1396a,10}, {0x2e28,7}, {0x26335,6}, {0x2891d,7}, {0x2bfdd,6}, {0x1b7e,4}, {0x9d7f,5}, + {0x5cce,3}, {0xffa4,11}, {0x11801,11}, {0x307fb,4}, {0x30bf3,4}, {0x181ba,10}, {0x2705,4}, {0xa875,12}, + {0x1ee83,6}, {0x75e8,6}, {0x2d12b,6}, {0x1dd0a,9}, {0x48ea,13}, {0x17b34,10}, {0x21411,8}, {0x11265,4}, + {0x19c9,5}, {0xec38,8}, {0x1fcff,9}, {0xd525,11}, {0x2c403,6}, {0x77be,6}, {0x191a2,6}, {0x1943d,5}, + {0x12e52,9}, {0xe487,11}, {0x116e5,4}, {0x8049,12}, {0xda58,11}, {0x2c22f,6}, {0x1e139,9}, {0x291cb,6}, + {0xb745,12}, {0x25173,6}, {0x17424,4}, {0x83c1,6}, {0x12164,10}, {0x8661,12}, {0x307e8,4}, {0xf79b,11}, + {0x30527,4}, {0xd9d4,11}, {0x14806,10}, {0x2340b,8}, {0x25afb,8}, {0x132b4,8}, {0x4f43,13}, {0x3078e,4}, + {0x16dc2,10}, {0x7d0d,12}, {0x1c8ad,9}, {0x2cbed,4}, {0x2cadf,4}, {0x23733,8}, {0x2b6cb,6}, {0x31a65,2}, + {0x48ea,10}, {0x26b1c,7}, {0x1147b,11}, {0x2a3f9,4}, {0xab2d,12}, {0x31684,3}, {0x29fcf,6}, {0x2e5d6,5}, + {0x21751,5}, {0xd3e6,11}, {0x1f297,9}, {0x1c19,15}, {0x27f58,7}, {0x1a810,6}, {0x17eea,10}, {0x1dc2,4}, + {0x1bbbd,9}, {0x250ab,6}, {0x26f93,5}, {0x294e9,7}, {0x19ff7,9}, {0x1a49b,9}, {0xbbb9,12}, {0x311a3,6}, + {0x267bf,5}, {0x212d9,5}, {0x9945,12}, {0x31666,3}, {0x2e7c4,8}, {0x12d58,10}, {0x30cfb,4}, {0xbd2f,10}, + {0x2ff71,3}, {0x2a8ea,7}, {0x2a3fe,7}, {0x2cddf,3}, {0x12c2c,10}, {0x13d75,5}, {0xeb93,11}, {0x2cb13,6}, + {0x1aa44,9}, {0x1d4a3,9}, {0x3329,14}, {0x26af9,7}, {0x1fa41,9}, {0x1c475,9}, {0x1fe31,9}, {0x2a054,7}, + {0xf6e,3}, {0x1d60b,9}, {0x276e0,5}, {0x22553,8}, {0x1759c,10}, {0x4a43,4}, {0x30a5d,2}, {0x2f050,5}, + {0x27cc1,5}, {0xff20,11}, {0x19ded,9}, {0x1b89c,9}, {0xfb8,7}, {0xb691,12}, {0x3bbf,5}, {0x31478,3}, + {0x2d8db,6}, {0x2bb1d,4}, {0x3a45,14}, {0x15b48,9}, {0x2624b,8}, {0x2acc4,3}, {0x30772,4}, {0xe7c0,11}, + {0xbbe9,5}, {0x2be57,6}, {0x23ae3,8}, {0x2ef5b,5}, {0x93d5,12}, {0x725c,8}, {0x1996d,9}, {0x546b,6}, + {0x6a6e,13}, {0x2a7f5,7}, {0x27f27,7}, {0x10ad0,11}, {0x23fcb,8}, {0x27d83,7}, {0x2c853,6}, {0xa089,7}, + {0x2da15,4}, {0x13cf8,10}, {0x291d9,6}, {0x2468b,8}, {0x9e55,12}, {0x2dd91,6}, {0x20989,8}, {0xd9f5,11}, + {0x1ea8c,4}, {0x2d45b,6}, {0x1dbd,15}, {0x30131,5}, {0x3789,14}, {0xbde1,12}, {0x16f98,10}, {0x271e4,7}, + {0xafa1,12}, {0x2fbbe,5}, {0x216fb,6}, {0x22db3,8}, {0x2335b,8}, {0x2ddd9,6}, {0x21c01,8}, {0xa851,8}, + {0x25513,8}, {0x2b9ad,6}, {0x1ebfb,9}, {0x96cb,10}, {0x28db1,5}, {0x294bf,7}, {0x1f10b,9}, {0x2edd3,5}, + {0x17682,10}, {0x15410,8}, {0x2422d,5}, {0x1997,6}, {0x6b7f,12}, {0x11ca9,3}, {0x2b819,2}, {0xd06b,11}, + {0x30b2f,4}, {0x3010e,5}, {0x24bdf,4}, {0x2ced,14}, {0x1df9d,6}, {0x1c985,9}, {0x1cf30,9}, {0x2efb0,4}, + {0xdb20,4}, {0x14b26,10}, {0x23a63,8}, {0x29a4,8}, {0x255ab,8}, {0x94b3,3}, {0x1964c,9}, {0x1de96,9}, + {0x6e4f,8}, {0xff5c,2}, {0x13f96,10}, {0x1dc95,9}, {0xf415,11}, {0x30a2b,4}, {0x24c13,8}, {0x22823,8}, + {0x174b6,10}, {0x2886e,7}, {0xbb95,12}, {0x1d9a3,6}, {0x2b228,6}, {0x2d8e7,6}, {0x30c2d,2}, {0x21b51,8}, + {0x27143,7}, {0x30122,5}, {0x2492b,8}, {0x1112f,6}, {0x26b51,2}, {0x2d6f1,4}, {0x1b7a,6}, {0x9cd5,12}, + {0x2d371,6}, {0xd229,5}, {0x413a,6}, {0x184b2,5}, {0xe6c3,11}, {0x1ce10,9}, {0x29d65,7}, {0x25693,8}, + {0xaf2,18}, {0x9249,12}, {0x317ed,4}, {0x30475,4}, {0x27a4,14}, {0x240c3,8}, {0x1c73,15}, {0x27691,6}, + {0x29a2,15}, {0x5025,8}, {0x297eb,7}, {0x1e73,4}, {0x4af2,13}, {0x158fa,10}, {0x1133c,7}, {0x176f,8}, + {0x178a8,10}, {0x197ea,9}, {0x10a20,11}, {0x7bf9,12}, {0xbee9,12}, {0x63a0,8}, {0x1900c,7}, {0x5394,13}, + {0x17a26,9}, {0x1d6ad,9}, {0x2d11f,6}, {0x31552,3}, {0xbe11,12}, {0xd87f,11}, {0x1ce07,8}, {0x45e6,2}, + {0x305bb,4}, {0xb685,12}, {0x11557,11}, {0x1c3b1,7}, {0xddb8,4}, {0x2520b,8}, {0x1f27c,9}, {0x124c0,5}, + {0x24023,8}, {0x299fa,7}, {0x6f77,11}, {0x18c0f,3}, {0x1766a,4}, {0x1351e,10}, {0x268fa,7}, {0x24943,8}, + {0x11541,11}, {0xd1f7,9}, {0x38d9,14}, {0x2af95,5}, {0x2611b,8}, {0x2605,3}, {0x17d4b,5}, {0xb00f,6}, + {0x11656,4}, {0xf1d3,6}, {0x77cb,2}, {0x17812,7}, {0x317f1,4}, {0x2437b,6}, {0x16bce,10}, {0x2e145,6}, + {0xcebe,11}, {0x2ffbf,5}, {0x63fb,13}, {0x7108,13}, {0x23d8b,8}, {0x3591,9}, {0x3456,5}, {0x27422,7}, + {0xa8ed,12}, {0x2afd0,12}, {0xb9f1,12}, {0xf4f3,9}, {0x20dc1,8}, {0x2e48c,5}, {0x2983f,7}, {0x25c83,8}, + {0x25e9b,8}, {0x2317,4}, {0x2f301,5}, {0x314d1,3}, {0x1203,4}, {0x2e59a,5}, {0x25c9b,8}, {0xb747,3}, + {0x12b32,10}, {0x300e6,5}, {0x525c,13}, {0xf722,11}, {0x2aba1,7}, {0x19ef2,9}, {0x21269,7}, {0x10c7d,8}, + {0x264cb,8}, {0xb421,12}, {0x30b63,4}, {0x15fb2,10}, {0x7457,5}, {0x1f567,9}, {0xc647,11}, {0x1877,15}, + {0xc26d,10}, {0x17cba,10}, {0x2f131,5}, {0x316f2,2}, {0xb435,4}, {0x2d121,3}, {0x2c589,6}, {0xbe35,12}, + {0xe5e7,11}, {0x2f93e,5}, {0xdd7b,8}, {0x14874,7}, {0x3144d,3}, {0x28cd1,7}, {0x268fa,4}, {0x2b48c,6}, + {0x1e53b,9}, {0x2f4be,5}, {0x11522,6}, {0x31280,2}, {0x2d79,14}, {0x145e,9}, {0x141e4,10}, {0x17420,9}, + {0x74d7,13}, {0x2456b,6}, {0x1886a,4}, {0x2b72b,6}, {0x1a2d0,6}, {0x17a78,4}, {0x28627,7}, {0x26313,8}, + {0x1e19c,9}, {0x1ac84,9}, {0x238c3,8}, {0x11b89,11}, {0x15a6c,10}, {0x14e64,8}, {0x12064,11}, {0x3038f,4}, + {0x166fb,5}, {0x1f4bc,9}, {0x26891,7}, {0x12510,10}, {0x21331,8}, {0x157e2,10}, {0x2345b,8}, {0x1765f,2}, + {0x16e30,10}, {0x9557,3}, {0x1d885,5}, {0x10230,8}, {0x188ce,8}, {0x14fe0,10}, {0x2b1d4,6}, {0x1dca7,9}, + {0x252eb,8}, {0x20601,8}, {0x6cc4,13}, {0x306eb,4}, {0x1e649,9}, {0x26e8a,4}, {0x6e18,5}, {0x849e,7}, + {0x19b6e,9}, {0x80af,5}, {0x2709b,7}, {0x313c6,3}, {0x2343b,8}, {0x5e72,13}, {0x6ece,5}, {0x1dd64,6}, + {0x250eb,7}, {0x2dad9,5}, {0x282f4,7}, {0x184da,10}, {0x1f933,9}, {0x8ee9,9}, {0x1ec0d,9}, {0x31489,3}, + {0x25bfb,8}, {0x25b7e,5}, {0x3121d,2}, {0x2f664,5}, {0xbdb1,6}, {0x31289,3}, {0x309d7,4}, {0x1146a,6}, + {0x2e5db,5}, {0x2bf23,6}, {0x1f690,9}, {0x64cb,13}, {0x5f35,13}, {0x20164,5}, {0x30140,5}, {0x2948e,7}, + {0x18660,10}, {0x19bad,9}, {0x1c520,9}, {0x5693,13}, {0x1327,16}, {0x183f6,6}, {0x2a8e3,7}, {0x3130f,3}, + {0x18084,10}, {0x15396,10}, {0x2b49e,6}, {0x28483,7}, {0x17f80,10}, {0x20f49,8}, {0x100d8,11}, {0x2939,15}, + {0xf72d,11}, {0xb74,9}, {0x2e83,13}, {0x30459,4}, {0x300eb,5}, {0x1eb9a,6}, {0xe369,8}, {0x1cf15,9}, + {0xa1d9,12}, {0x2e0d3,6}, {0x3169c,3}, {0x30a9f,4}, {0x222fb,8}, {0x2c7db,6}, {0xc17d,7}, {0x1c6b7,7}, + {0x15eea,9}, {0x2b0a8,12}, {0x9438,9}, {0x205a9,8}, {0x2873a,7}, {0xd40b,6}, {0x21711,8}, {0x30a5,14}, + {0x1447d,5}, {0x1f70,15}, {0x7bd7,6}, {0x6c83,13}, {0x20971,8}, {0x2f333,5}, {0xf5b7,11}, {0x644e,7}, + {0x1efc0,4}, {0x252c3,8}, {0x30f39,4}, {0x7086,13}, {0x44c7,4}, {0x30aa9,2}, {0x13b54,10}, {0xc0a1,3}, + {0x13c5b,5}, {0x106fd,11}, {0x2fb4b,5}, {0x27306,4}, {0x12628,10}, {0x147f2,10}, {0x1675a,10}, {0x1f1c8,9}, + {0x33b5,5}, {0x4b74,13}, {0x3909,8}, {0x6eb2,12}, {0x10a8e,11}, {0x27f6d,7}, {0x191c5,4}, {0x14f8b,4}, + {0x2383b,8}, {0x2f270,5}, {0x1709e,6}, {0x1ab1e,6}, {0x13104,10}, {0x2d4f7,6}, {0x8985,11}, {0x1517a,8}, + {0x19417,7}, {0x2ea02,5}, {0x16fc0,10}, {0x12db2,10}, {0x1bc77,3}, {0xf81f,11}, {0x10f53,5}, {0x29ef6,7}, + {0x83a9,12}, {0x1e286,8}, {0x20674,5}, {0x20ca1,7}, {0x9285,12}, {0x24e03,8}, {0x2c6c9,4}, {0x178d2,7}, + {0x4137,14}, {0xadf6,7}, {0x2a093,7}, {0x2493b,8}, {0x19af0,9}, {0x1da43,9}, {0x28fe8,7}, {0x2e866,4}, + {0x22666,5}, {0x25a6b,8}, {0x25c5b,8}, {0x1c9c4,9}, {0x2f760,3}, {0x186b0,10}, {0x22c8b,8}, {0x151cc,5}, + {0x2782e,6}, {0x2b4e6,6}, {0x2b5d5,6}, {0x26ca7,4}, {0x2fd55,3}, {0xc165,6}, {0xfa3,10}, {0x2e7b4,6}, + {0x25d5d,3}, {0x10923,11}, {0x1ccb1,6}, {0x2da19,6}, {0x244c3,8}, {0xf724,7}, {0x2cd5f,6}, {0xa3d7,6}, + {0xc01b,6}, {0x31725,2}, {0x26aac,7}, {0x27e4e,7}, {0x1faf5,9}, {0x298d2,7}, {0xa2b7,6}, {0x2888a,7}, + {0x11aa2,11}, {0x2204b,8}, {0x17635,4}, {0xea49,11}, {0x4209,14}, {0x2fe6d,3}, {0x1fd55,4}, {0x18f3b,8}, + {0x28c1b,7}, {0x26673,6}, {0x1626e,10}, {0x29a16,7}, {0x180d,3}, {0x2209b,8}, {0x219d,11}, {0xc9ae,5}, + {0x821d,6}, {0x29eca,7}, {0x317ba,4}, {0x10bb,3}, {0x15bde,10}, {0x21219,8}, {0x31ae5,2}, {0x1a30f,9}, + {0x2c823,6}, {0x1fa02,9}, {0x8791,8}, {0x16d36,10}, {0x1db3f,9}, {0x1c4ee,5}, {0x1ff3f,9}, {0x1ccba,9}, + {0xb03d,12}, {0x1729a,6}, {0x2fe95,3}, {0x2a3f7,7}, {0x3000f,5}, {0x1907f,9}, {0x18106,10}, {0x25863,8}, + {0x262ab,8}, {0x117d7,3}, {0x17646,10}, {0x18ce6,10}, {0x296cc,7}, {0x19be3,9}, {0x2f595,4}, {0x1e529,9}, + {0x178a0,8}, {0x182b0,4}, {0x24ce3,4}, {0x1daee,9}, {0xcd0,2}, {0xdda7,8}, {0x1290,17}, {0x2b6d7,6}, + {0x13762,10}, {0x1aad4,9}, {0x16868,10}, {0x281ff,7}, {0x287b8,7}, {0xea96,11}, {0x2c025,6}, {0x223bb,6}, + {0x1053a,8}, {0x3152b,3}, {0x17628,10}, {0x31a15,4}, {0x4abe,9}, {0x24483,8}, {0x83c6,3}, {0x12d1c,10}, + {0x2df44,3}, {0x2f2f2,4}, {0x20e9b,6}, {0xb10d,8}, {0x2d500,3}, {0x21e4b,8}, {0x2a1f8,7}, {0x2f005,5}, + {0x15464,4}, {0x15d82,10}, {0x44c5,14}, {0xa395,12}, {0x959d,12}, {0x2ef2e,5}, {0x29abe,7}, {0x1f572,6}, + {0x13f46,10}, {0x31677,3}, {0xd966,11}, {0x22093,8}, {0x2cb31,6}, {0x28d10,7}, {0x24b3b,8}, {0x29e78,5}, + {0xe27,8}, {0x2bab5,6}, {0x495f,13}, {0x1937,9}, {0x1906d,9}, {0x1adfe,9}, {0x2a126,7}, {0x30d07,4}, + {0x220b3,8}, {0x10d9b,7}, {0xe64a,11}, {0x106c6,11}, {0x29288,7}, {0xc2ab,10}, {0x148b,3}, {0x2b53f,6}, + {0x10fd7,11}, {0x1b866,9}, {0xe424,11}, {0xf53e,11}, {0xe0a1,4}, {0x1a349,4}, {0x24783,8}, {0x24733,8}, + {0x1ef76,6}, {0x73c6,13}, {0x1f19b,6}, {0x27e1d,7}, {0x21bc3,6}, {0x118d4,11}, {0x1461c,10}, {0x1684a,10}, + {0x295b4,7}, {0x2e1cf,6}, {0x121d2,7}, {0x10be3,6}, {0x28e91,7}, {0xf837,9}, {0x14d74,10}, {0x3a66,9}, + {0x47d5,6}, {0x1f54c,6}, {0x2e6f3,5}, {0x1367,15}, {0x185ff,7}, {0x2acc3,4}, {0x1eff7,6}, {0x2ce25,6}, + {0x2f4ff,5}, {0x2daf7,6}, {0x2ec6b,5}, {0x2cf81,6}, {0x74a3,13}, {0x2e05,14}, {0x8c79,12}, {0x10cf6,6}, + {0x2a3a5,5}, {0x1e508,6}, {0x1894e,8}, {0x9cf3,4}, {0x31aaf,2}, {0xdbef,8}, {0x10e6c,11}, {0x2471b,8}, + {0x284ad,7}, {0x1a336,6}, {0x2a7a1,7}, {0x2f554,5}, {0x102bf,8}, {0x1f9ba,5}, {0x2b7b5,6}, {0x5a89,12}, + {0x2ef33,5}, {0x25bf3,8}, {0x11b94,11}, {0x1f2da,5}, {0x606d,13}, {0xf6ca,11}, {0x1fd74,9}, {0x9351,12}, + {0x28e67,7}, {0x2fc13,5}, {0x1a080,6}, {0x1e33a,9}, {0x28b6c,7}, {0x258b3,8}, {0x1d212,9}, {0xb8d3,5}, + {0x1e5f8,9}, {0x1c064,6}, {0x5f90,13}, {0x1fb6a,9}, {0xa847,9}, {0x28e4b,7}, {0x1f2fa,6}, {0x174ac,10}, + {0x1d39e,9}, {0x2e40a,4}, {0x19d9c,9}, {0x712f,13}, {0x317e5,4}, {0x2e7d4,8}, {0x26645,6}, {0x14d60,10}, + {0x1c4ab,9}, {0x2d665,6}, {0x2fd82,3}, {0x212e1,8}, {0x14e14,10}, {0xfad4,11}, {0x2b5e1,6}, {0x2e59,14}, + {0x9408,3}, {0xf6d7,9}, {0x1d72b,7}, {0x1dbbf,4}, {0x1cd1f,7}, {0x308e7,4}, {0x25f9b,8}, {0x300fa,5}, + {0x1429a,3}, {0x55f7,9}, {0x227f3,6}, {0xeeab,11}, {0x2542b,8}, {0x1876e,7}, {0x2d75b,6}, {0xbc9d,12}, + {0x169c,5}, {0x19c38,5}, {0x6714,13}, {0x9369,7}, {0x61bf,13}, {0xb175,5}, {0x15c64,6}, {0x21419,8}, + {0x19196,9}, {0x18b6a,10}, {0x2ed21,2}, {0x2aec1,7}, {0x27200,7}, {0x2e3ce,5}, {0xb3c1,12}, {0xe87,3}, + {0x307c2,7}, {0x30c87,4}, {0x1b56c,6}, {0x20010,4}, {0x2d275,6}, {0x1014b,6}, {0x1f594,9}, {0x18c1e,10}, + {0x20bac,5}, {0xfff7,2}, {0x29c54,7}, {0xc959,5}, {0x61a5,13}, {0x21a89,8}, {0x1c9f1,8}, {0x2e699,5}, + {0xc3be,11}, {0x1659a,5}, {0x13d7,15}, {0x1319a,10}, {0x6bb3,13}, {0xb739,11}, {0x1a81f,9}, {0x8fea,7}, + {0x1a33c,8}, {0x1605c,10}, {0x19a21,9}, {0x2bfa7,6}, {0x24c73,8}, {0x2fcfb,3}, {0x731d,9}, {0x2007a,9}, + {0x2bf0b,6}, {0x17666,3}, {0x8265,12}, {0x1b52f,4}, {0x6c44,8}, {0x1e597,7}, {0x3877,14}, {0xbcf1,12}, + {0x10427,9}, {0x25663,8}, {0x9675,12}, {0x1b35f,9}, {0x2f450,5}, {0x2b86f,6}, {0x1a1f8,9}, {0x2f86c,5}, + {0x2bad9,6}, {0xaaa2,7}, {0x207e9,8}, {0x729d,10}, {0x2f8d7,2}, {0x1803a,4}, {0x6fdd,13}, {0xe306,11}, + {0x1d179,9}, {0x10566,11}, {0x13366,10}, {0x9015,9}, {0x74f5,9}, {0x14950,10}, {0x2fdeb,3}, {0x3070f,4}, + {0x24365,5}, {0x199a3,7}, {0x1df5c,9}, {0x2976d,6}, {0x1b3f8,6}, {0x29ba5,7}, {0x2aa8e,5}, {0x7691,13}, + {0x10c3d,4}, {0x13776,10}, {0x2e2b1,4}, {0x518e,7}, {0x26d68,7}, {0x2442b,8}, {0x15bd4,10}, {0x23d23,8}, + {0x2a196,6}, {0x4217,14}, {0xb5fb,6}, {0x699e,8}, {0x1b8a7,4}, {0x3056,9}, {0x1d89c,9}, {0x20529,8}, + {0xce71,6}, {0xe159,10}, {0x518c,13}, {0x2ccb3,4}, {0x29cbd,7}, {0x2e2b5,4}, {0x2c90d,6}, {0x2642b,8}, + {0x31961,4}, {0x1073,3}, {0x47c7,12}, {0x27c25,7}, {0x8f58,4}, {0x1e637,6}, {0x5020,13}, {0x266b3,8}, + {0x26513,8}, {0x1877,16}, {0x21129,8}, {0x34db,14}, {0x1222c,10}, {0x1f0e7,6}, {0x2d68f,6}, {0x251bd,5}, + {0x1f22b,9}, {0xbc0d,7}, {0x2fd9e,5}, {0x12754,8}, {0x228bb,8}, {0x1cf39,9}, {0x18368,5}, {0x287f2,5}, + {0x227eb,8}, {0x1a8b8,9}, {0x2afc4,6}, {0x4b4d,13}, {0xbed1,11}, {0x12664,10}, {0x1f6f3,9}, {0x2c61b,4}, + {0x30957,4}, {0x24f8b,8}, {0x2db1b,5}, {0x2883d,7}, {0x85c5,12}, {0x17e68,10}, {0x24fcd,6}, {0x26293,8}, + {0xe537,11}, {0x10167,11}, {0x1f557,4}, {0x3a53,14}, {0x18fcb,9}, {0xdec5,8}, {0xb4b1,6}, {0x35cd,6}, + {0x10049,11}, {0x971d,12}, {0xadfd,5}, {0x295ec,7}, {0x315e2,3}, {0x9a35,12}, {0x2fd2d,3}, {0x219c1,8}, + {0x175c,5}, {0x1b614,9}, {0x1817e,10}, {0x1d71b,5}, {0x6991,8}, {0x314fc,3}, {0x29d03,7}, {0x16f02,10}, + {0x2f72c,5}, {0x21211,8}, {0x1141c,3}, {0x8739,8}, {0x27ecc,5}, {0x227a3,8}, {0x31221,3}, {0x1e130,9}, + {0x2d335,6}, {0x2e13f,6}, {0x13d70,10}, {0x303a5,8}, {0x2fd17,5}, {0x1a80d,9}, {0x30113,5}, {0x23d43,8}, + {0x2dda3,6}, {0x2f310,5}, {0x266f3,8}, {0x11d90,3}, {0x386d,6}, {0x29611,4}, {0x79dd,12}, {0x6dae,13}, + {0xace9,12}, {0x29ed8,7}, {0x5dbc,13}, {0x24b53,8}, {0x95a9,12}, {0x10adb,11}, {0x1fece,4}, {0x264bb,7}, + {0x2eaa2,5}, {0x2a56a,7}, {0x1e627,7}, {0x2d059,6}, {0x2a571,7}, {0x135c8,10}, {0x12be6,9}, {0x2ff9e,3}, + {0x2f046,5}, {0x6f8f,13}, {0x2f89b,3}, {0x24753,8}, {0x2706a,7}, {0x289b7,7}, {0x3828,7}, {0x2729a,7}, + {0x143e2,10}, {0x14f9a,10}, {0x135b4,9}, {0x5c91,8}, {0x292c0,7}, {0x2f7a9,5}, {0x18a76,4}, {0xc197,3}, + {0x1db38,5}, {0x29c00,6}, {0x24ade,5}, {0x2fecc,3}, {0xe4a8,10}, {0x6497,13}, {0xddff,11}, {0x27eda,7}, + {0xef89,8}, {0x2f159,5}, {0x715d,6}, {0x1ff00,9}, {0x1a144,9}, {0x2d737,6}, {0x29bba,7}, {0x239b3,8}, + {0x2cf69,5}, {0x2eee,3}, {0x9195,12}, {0x28e85,5}, {0x20909,8}, {0x18692,10}, {0xe450,11}, {0x17a82,8}, + {0x2f4cd,5}, {0x20451,8}, {0x2fde6,3}, {0x28daa,7}, {0xed6,5}, {0x15d8c,10}, {0x2c8da,3}, {0x14c98,10}, + {0x2fb14,5}, {0x2d3ef,6}, {0x1849,4}, {0x359f,14}, {0x24ae3,8}, {0x30c4b,4}, {0x1e4fe,3}, {0x9bc3,4}, + {0x1105b,11}, {0x13000,10}, {0x269ea,5}, {0x1a88d,7}, {0x24a93,8}, {0x27934,4}, {0x313d5,3}, {0x1c8ec,9}, + {0x24b63,8}, {0x10785,7}, {0xdef1,11}, {0x29f2e,7}, {0x9a99,3}, {0x2b977,6}, {0x14eaa,6}, {0x29b12,7}, + {0x647f,8}, {0x1f41a,9}, {0x29aa2,7}, {0x81c9,6}, {0x2c621,4}, {0x2bda9,6}, {0x1670a,10}, {0xf2ba,4}, + {0x208e9,8}, {0x2991b,2}, {0x1b41c,9}, {0x2aaf9,7}, {0xdf79,7}, {0xae21,11}, {0x1f5d3,9}, {0x2b28,15}, + {0x30104,5}, {0x26645,5}, {0x30ecd,4}, {0x18322,6}, {0xdb81,11}, {0x17cf1,5}, {0x6166,4}, {0x2c955,6}, + {0x125ec,10}, {0x2fefe,3}, {0x717d,6}, {0x17aee,8}, {0xa0c5,10}, {0x75ea,3}, {0x215f9,8}, {0x5c08,6}, + {0x129ca,8}, {0x1bd5b,9}, {0x1d4be,9}, {0x31155,6}, {0x2cd25,4}, {0x6cd1,9}, {0x2ca03,6}, {0x15db4,10}, + {0x2ed6a,5}, {0x18444,10}, {0x7cdd,12}, {0x2615,9}, {0x210b9,8}, {0x26273,8}, {0x402d,14}, {0x1fe9d,9}, + {0x1f40e,3}, {0x2fba0,5}, {0x168cf,6}, {0x124e8,10}, {0x22f73,8}, {0xf33f,4}, {0x2c3c1,6}, {0x1310e,10}, + {0x10b54,7}, {0x2d8ab,6}, {0xc281,20}, {0x31b04,2}, {0x14fae,10}, {0x2dc53,6}, {0x126d4,5}, {0x68a0,7}, + {0xccbb,5}, {0x17670,3}, {0x2dd4b,4}, {0x2db75,6}, {0x248f5,3}, {0xcb1c,3}, {0x30ee5,6}, {0x24d7b,8}, + {0x1205b,4}, {0x24fbb,8}, {0x22973,8}, {0x1b96d,7}, {0xed9a,9}, {0x1576a,10}, {0x2322b,8}, {0x1ca9c,9}, + {0x195b3,9}, {0x2ee46,5}, {0x21b8b,5}, {0x24303,8}, {0x1f9de,9}, {0x2af46,7}, {0x1e14b,9}, {0x271c1,7}, + {0x2f56d,4}, {0x2d053,6}, {0x263f3,8}, {0x3125d,3}, {0x208c9,8}, {0xd950,11}, {0x2693c,4}, {0x3031d,3}, + {0x5a62,13}, {0x10b28,11}, {0x22a5e,5}, {0x7ae9,6}, {0x1d395,9}, {0x2d14c,3}, {0x19a74,7}, {0x2a436,7}, + {0xf438,6}, {0x1f40a,3}, {0x2e68a,5}, {0x2b27c,6}, {0x212d9,8}, {0x15a15,4}, {0x28a9e,7}, {0x293a0,7}, + {0x300d7,5}, {0x2da9f,4}, {0x2215b,7}, {0x2b905,6}, {0x1126d,7}, {0x2a007,7}, {0xf205,11}, {0x244d3,8}, + {0x1f246,9}, {0x2e10f,6}, {0x278d6,7}, {0x182fa,5}, {0x304a9,4}, {0x6ebf,13}, {0x2f491,5}, {0xce0e,11}, + {0x23cad,6}, {0x12c7c,10}, {0x3164b,3}, {0x31447,3}, {0x20ca9,8}, {0x410d,13}, {0x191cc,9}, {0x28fda,5}, + {0x307bb,3}, {0x20071,9}, {0x124ec,5}, {0x22beb,8}, {0x59e0,5}, {0x117cc,2}, {0x15a94,10}, {0x3671,14}, + {0x74a5,10}, {0x17b5e,4}, {0x14996,10}, {0x16888,7}, {0xdae7,11}, {0x2c5b3,6}, {0x11d0a,11}, {0x18e1c,9}, + {0x30664,3}, {0x8829,12}, {0x31528,3}, {0x187a2,3}, {0x300b4,5}, {0x233ab,8}, {0x19271,3}, {0x204b9,8}, + {0xcb11,6}, {0x29674,3}, {0x6ba0,3}, {0x2dfa9,4}, {0x1d9bc,8}, {0x161e2,10}, {0x5fbc,8}, {0x681a,11}, + {0x1dde4,3}, {0x296b7,7}, {0x292ab,7}, {0x30032,5}, {0xdf6e,3}, {0x2ec7f,5}, {0xf38,3}, {0x216d9,8}, + {0x31245,3}, {0x95c1,12}, {0x168cc,10}, {0x16c7,16}, {0xda5a,4}, {0x11f2,4}, {0x2e27c,4}, {0xb1f9,12}, + {0xba5d,12}, {0x184fa,7}, {0x2bf71,6}, {0x31598,3}, {0x566e,4}, {0x1f02a,9}, {0x25bcb,6}, {0x258d5,6}, + {0x134f6,10}, {0x14d6a,7}, {0x1f7d6,3}, {0x110cb,9}, {0x12196,10}, {0x1c235,9}, {0x91f5,10}, {0x2fec7,3}, + {0x19c24,7}, {0x3e5f,14}, {0x24f6b,8}, {0x2503b,8}, {0x112af,5}, {0x1811c,8}, {0x24653,7}, {0x2e743,5}, + {0x22a93,8}, {0x1989e,9}, {0xefa8,11}, {0x1a492,9}, {0x20409,5}, {0x3a47,6}, {0x513e,13}, {0x9d0b,6}, + {0xb42d,6}, {0x791f,5}, {0x1f3c0,9}, {0x5409,13}, {0x10734,11}, {0x1797c,10}, {0x2317,8}, {0x2f09b,5}, + {0x21e53,8}, {0x28b7a,5}, {0x295a1,5}, {0x243a5,5}, {0x758f,3}, {0x1f911,5}, {0x1cbe0,7}, {0xb8eb,7}, + {0x2f876,4}, {0x122e0,10}, {0x12d9e,10}, {0x15a30,10}, {0x1d40a,9}, {0x169e4,10}, {0xcee2,7}, {0x10337,5}, + {0x20dc9,8}, {0x2bf7d,6}, {0x1011c,4}, {0x25f9d,5}, {0x1e292,4}, {0x39c7,14}, {0x30e43,4}, {0x257fb,8}, + {0x9af,256}, {0x1099c,11}, {0x1ed80,4}, {0x49ff,7}, {0x2e25b,4}, {0x133a2,10}, {0x58b5,13}, {0xc6ba,6}, + {0x26946,2}, {0x21893,5}, {0xb781,12}, {0x23e93,7}, {0x2e271,9}, {0x1e844,6}, {0x2f1ab,3}, {0x2496b,5}, + {0x5244,3}, {0x2f3c4,5}, {0x307d8,4}, {0x2511b,6}, {0x2eeeb,5}, {0x199b5,9}, {0x5242,13}, {0xdfb7,6}, + {0x1052f,11}, {0x1e379,9}, {0x3a2b,3}, {0xf57,9}, {0x55c3,13}, {0x29314,6}, {0x22f6b,8}, {0x298f5,7}, + {0x11937,11}, {0x2312,15}, {0x7720,13}, {0x10a41,9}, {0x732a,9}, {0x12a1f,5}, {0x2fc68,5}, {0x2a39c,7}, + {0x2aa2c,7}, {0x22813,8}, {0x1e4ab,9}, {0x1f2ab,6}, {0x30d5b,4}, {0x18638,10}, {0x23806,5}, {0x70a2,2}, + {0x1ff24,9}, {0x13e88,10}, {0x420b,4}, {0x14b62,10}, {0x1cf93,9}, {0x2e14e,3}, {0x17a6c,9}, {0x283e9,7}, + {0x28fd,14}, {0x2f019,5}, {0x2e5b8,5}, {0x2e889,5}, {0x6012,13}, {0x2449b,7}, {0x3199d,4}, {0x1d088,7}, + {0x30a0b,4}, {0x1e3f0,7}, {0x330d,12}, {0x1a2d9,6}, {0x20fe9,8}, {0x56e6,8}, {0x2b2d6,6}, {0xf67d,10}, + {0xafb9,12}, {0x5f88,5}, {0x2c06,7}, {0x1ea66,9}, {0x30ef7,6}, {0x91f5,12}, {0x13a2b,6}, {0xdfac,9}, + {0x3797,14}, {0x2d41,14}, {0x51f4,13}, {0xb919,12}, {0x15afa,6}, {0x1317c,10}, {0x82dd,12}, {0xc08d,5}, + {0x18e76,10}, {0x310d7,6}, {0x30613,4}, {0x184c,7}, {0x17768,10}, {0x41d1,14}, {0xa194,9}, {0x2ad29,7}, + {0x2ffc4,5}, {0x123a8,10}, {0x20c46,3}, {0x11ee3,6}, {0x24395,6}, {0x10f53,11}, {0xa57a,7}, {0x1252,8}, + {0x4b6e,6}, {0x157f6,10}, {0x47d5,8}, {0x25793,8}, {0x30fab,6}, {0xe558,10}, {0x2f740,5}, {0x15238,10}, + {0x29aa4,3}, {0x4c51,13}, {0xbad0,5}, {0x4115,6}, {0x23cb5,4}, {0x306ab,4}, {0x2225b,7}, {0x1db7e,9}, + {0x17d6e,8}, {0x2ffd3,5}, {0x2f39,14}, {0x228f6,5}, {0x2cebd,4}, {0x13028,10}, {0xd1ec,11}, {0x253b5,6}, + {0x1d7e3,5}, {0xc16,5}, {0x6daa,4}, {0x869d,7}, {0x49c0,7}, {0x18174,10}, {0x6e76,8}, {0x2e31d,5}, + {0x26095,6}, {0x19202,9}, {0x1c75,3}, {0x6f0d,12}, {0x1083,9}, {0x18a7a,10}, {0x3164e,3}, {0x37b3,12}, + {0x4e25,13}, {0x8d0e,2}, {0x315d6,3}, {0x24303,5}, {0x6540,13}, {0x29768,5}, {0x25af3,8}, {0xdab0,11}, + {0x17fde,6}, {0xc173,3}, {0x3583,14}, {0x1192c,11}, {0x20dc4,4}, {0x1704e,4}, {0x5985,13}, {0x5e17,13}, + {0xaf2,9}, {0xe65,3}, {0x126c8,10}, {0x25a73,8}, {0xbd17,2}, {0x21edb,8}, {0x2efab,4}, {0xc02d,12}, + {0x28134,7}, {0x2e211,6}, {0x3061,4}, {0x316a8,3}, {0x2e405,5}, {0x218c,15}, {0x30499,4}, {0x2d20,3}, + {0x8769,6}, {0x15b20,10}, {0x1477a,10}, {0x1bfb,15}, {0x9d95,9}, {0x22b53,8}, {0x6501,8}, {0xc66c,5}, + {0xc05d,12}, {0xe570,6}, {0x1ab40,9}, {0x2ee4b,5}, {0x27d3,4}, {0x198ef,9}, {0x170ce,9}, {0x1f021,5}, + {0x7788,7}, {0x23dc3,8}, {0xcbe8,11}, {0x104c1,11}, {0x25673,8}, {0x1f80a,6}, {0xc23a,7}, {0x1cad2,9}, + {0xb78d,12}, {0x2f8df,5}, {0x14b78,8}, {0x19160,9}, {0x249a5,6}, {0x9d35,12}, {0x2b018,12}, {0x8649,12}, + {0x21409,8}, {0x2e7ee,4}, {0xb51d,12}, {0x31849,4}, {0x23ddd,5}, {0x20569,8}, {0x9801,11}, {0x287bf,7}, + {0x1dc7a,9}, {0x2e265,6}, {0x2752c,7}, {0x21a51,8}, {0x2ecde,5}, {0x23f13,8}, {0x17614,10}, {0x290f9,7}, + {0x14844,5}, {0x5763,13}, {0x1ae34,9}, {0xe466,10}, {0x14978,10}, {0x1416c,10}, {0x725c,4}, {0x243d3,8}, + {0xa3b1,5}, {0x19bc8,9}, {0x2bdaf,6}, {0x19562,9}, {0xc7ff,7}, {0x12fce,10}, {0x1e1e4,8}, {0x35a3,5}, + {0x2c541,6}, {0x287c6,7}, {0x12961,5}, {0x913a,7}, {0xb603,3}, {0x11005,9}, {0x2ea4a,3}, {0x7ff5,11}, + {0x24655,4}, {0x2e1f9,6}, {0x16471,5}, {0x1b440,8}, {0x170ec,10}, {0x7b55,8}, {0x2d101,6}, {0x31734,2}, + {0xfede,11}, {0x1d64e,5}, {0x2f140,5}, {0x31ab3,2}, {0x2c871,6}, {0x16cb4,10}, {0xf69e,9}, {0x1a56,3}, + {0x63cc,8}, {0x27349,7}, {0x23e0,4}, {0x1168b,8}, {0x2bf5,3}, {0x286c1,7}, {0x24df3,8}, {0x110ec,9}, + {0x2e0e5,6}, {0x2a501,7}, {0x225d6,5}, {0x22bab,8}, {0x11583,11}, {0x17114,10}, {0x30aab,4}, {0x1de18,6}, + {0xcc6c,6}, {0x8889,11}, {0x4aff,13}, {0x11ed3,5}, {0x29673,5}, {0x17f8a,10}, {0x2f2d,5}, {0x2bbdb,6}, + {0x11089,6}, {0x29097,7}, {0xe01a,11}, {0x6e71,6}, {0x321f,14}, {0x2321b,8}, {0x5467,9}, {0x2c59b,6}, + {0x20499,3}, {0x31720,3}, {0x25203,8}, {0xb2a1,12}, {0x147c0,10}, {0x63ad,13}, {0xb8a1,12}, {0x2b00c,12}, + {0x1bdeb,9}, {0x2d2e7,6}, {0xb81d,12}, {0x2b103,4}, {0x130dc,10}, {0x2561b,8}, {0x2d0a9,4}, {0x2417b,8}, + {0x20429,8}, {0x31475,3}, {0x12e3e,6}, {0x3e27,14}, {0xcd2b,7}, {0x2cdf,7}, {0x2d3a7,6}, {0x304f7,4}, + {0x23dab,4}, {0x79c5,12}, {0x11dba,11}, {0x1729d,4}, {0x22a4b,8}, {0x23c2b,5}, {0x28475,7}, {0x8ed5,4}, + {0xffb4,5}, {0x148ec,10}, {0x1ef57,4}, {0x135fc,8}, {0x10b12,11}, {0x2a627,7}, {0x1fdda,3}, {0x27c79,7}, + {0x1e973,9}, {0x6cc4,5}, {0x24cab,8}, {0x25443,8}, {0x133b8,4}, {0x1c82f,9}, {0x22513,8}, {0x146aa,8}, + {0x1ea15,9}, {0x1f43e,9}, {0x2b71f,6}, {0x11685,5}, {0x3154c,3}, {0x28586,7}, {0x1a15f,9}, {0x2212b,8}, + {0xbab3,6}, {0x97ad,12}, {0x22905,5}, {0x1837,4}, {0x1a2e2,9}, {0x1513e,10}, {0x25285,4}, {0x1852a,10}, + {0x2ebc6,5}, {0x2a35f,5}, {0xdcf7,11}, {0x18dc2,10}, {0x27445,6}, {0x17969,6}, {0x21121,8}, {0x23f6b,8}, + {0x2b19e,6}, {0xe441,4}, {0x1d577,4}, {0x2269b,8}, {0x298a8,7}, {0x1fe0d,9}, {0x14c02,7}, {0x99ed,12}, + {0x1d440,9}, {0xfbff,9}, {0x11ae4,8}, {0x28423,4}, {0x2d257,6}, {0x2d569,6}, {0x2f2e3,5}, {0xc7de,11}, + {0xbc61,9}, {0x2bd31,6}, {0x1edfe,3}, {0x2467b,8}, {0x2adcc,7}, {0x20481,4}, {0x2ccb1,6}, {0x6b35,9}, + {0x278ca,5}, {0x1d008,9}, {0x31663,3}, {0x10d6,7}, {0x251e3,8}, {0x2ec39,5}, {0x143c9,5}, {0x14bfd,5}, + {0x1760a,10}, {0x2ffba,5}, {0xb3a9,6}, {0x26e72,7}, {0x255d3,8}, {0x26a9e,7}, {0x1cc98,4}, {0x2c613,6}, + {0x31a83,2}, {0x2249b,8}, {0xed7,2}, {0x1066e,11}, {0x2c709,6}, {0x7566,6}, {0xbf01,8}, {0x2a6f9,7}, + {0x2de1b,6}, {0x1f93c,7}, {0xae19,8}, {0x26a5,15}, {0x2fcb5,3}, {0xa101,12}, {0x2ea2a,5}, {0x223d3,8}, + {0x2f7db,5}, {0x26203,8}, {0x31453,3}, {0x6046,13}, {0x2ef6,4}, {0x1e7f9,9}, {0x17cb0,7}, {0x7d63,6}, + {0x2768,15}, {0x354b,14}, {0x27326,6}, {0x189b2,8}, {0x100d0,5}, {0x6c4f,13}, {0x1866a,10}, {0xbc19,12}, + {0x2602b,8}, {0xaf4,10}, {0x27bbc,6}, {0x15a44,10}, {0x27b06,7}, {0xc0ed,12}, {0x311ec,5}, {0x20ce3,4}, + {0x31303,3}, {0x2d641,5}, {0x17b02,10}, {0x22fb,8}, {0x115fc,11}, {0x2ecd4,5}, {0x1a963,9}, {0x10ff3,5}, + {0xbdfc,6}, {0x2c70f,6}, {0x1871e,10}, {0x28d82,5}, {0x15f26,10}, {0x234e,15}, {0x206f1,8}, {0x2793f,7}, + {0x2e962,5}, {0x224e3,8}, {0x2d971,6}, {0x1db1d,4}, {0x2fa4e,3}, {0x23ff5,5}, {0x283bf,7}, {0x17d23,5}, + {0x1119a,11}, {0x4617,11}, {0x28459,6}, {0x15a7,5}, {0x2f9a5,2}, {0xd399,11}, {0x24863,8}, {0x317d1,4}, + {0x589b,8}, {0x23dab,8}, {0x31558,3}, {0x3039f,6}, {0x17614,5}, {0x1b104,9}, {0x2aa41,7}, {0xb3ae,7}, + {0x28780,7}, {0xe445,11}, {0x117b4,11}, {0xadf1,12}, {0x22deb,8}, {0x30109,5}, {0x30acd,2}, {0xd504,11}, + {0xe2f,6}, {0x288c4,5}, {0x18040,4}, {0x1c814,9}, {0x27d60,7}, {0x22ecb,8}, {0x213c1,8}, {0x252f3,8}, + {0x74e4,13}, {0x11d2d,9}, {0x1139f,11}, {0x204e9,8}, {0x15be8,10}, {0xa0a1,12}, {0x2fc22,5}, {0xce73,3}, + {0x2264,5}, {0x1d866,9}, {0x2f24d,5}, {0x50fd,12}, {0x164da,10}, {0xb829,12}, {0xe4da,5}, {0x17f94,8}, + {0x22abb,8}, {0xf77a,5}, {0x1d9e9,9}, {0x1def0,9}, {0x1293,2}, {0x272e0,7}, {0x205db,6}, {0x2c103,6}, + {0x2a697,7}, {0x297f2,7}, {0x24033,8}, {0xc1ff,4}, {0x2bb1,8}, {0x23cdb,6}, {0x30b93,4}, {0x2fb0a,5}, + {0x2477b,8}, {0x3073f,4}, {0x9a95,12}, {0x313ff,3}, {0x123b2,10}, {0x2dae1,3}, {0x2e3a1,5}, {0x179ae,6}, + {0x7e2d,12}, {0x11e07,6}, {0x2ffa3,3}, {0x15cce,10}, {0x17544,7}, {0x3a61,14}, {0x2d283,4}, {0x624e,13}, + {0x2988f,4}, {0x9f45,12}, {0x2afa8,7}, {0xeb51,11}, {0x29dc7,7}, {0x16a05,4}, {0x11d20,11}, {0x3756,9}, + {0x1d952,2}, {0x28d41,5}, {0x2e22f,6}, {0x13b86,9}, {0x1866a,6}, {0x20d71,8}, {0x2834f,7}, {0x18914,6}, + {0x6b99,9}, {0x295a6,7}, {0x26d61,7}, {0x6685,12}, {0x8d2d,12}, {0x24853,8}, {0x30b27,4}, {0x20101,9}, + {0x3122d,3}, {0x2999b,3}, {0x8095,4}, {0xe7e1,11}, {0x232f3,8}, {0x3072a,2}, {0x2eed4,3}, {0x2eb85,5}, + {0x18408,5}, {0x17a7,11}, {0x1100e,11}, {0x8a1b,6}, {0x120c7,11}, {0x2c5a1,6}, {0x2f849,5}, {0x2901b,5}, + {0x31495,3}, {0x1832c,6}, {0x22983,6}, {0x17b72,3}, {0x3054f,4}, {0x1d63,15}, {0x2e109,6}, {0x1f624,9}, + {0x3059b,4}, {0x15184,10}, {0x2e5cc,5}, {0x2f163,5}, {0x300c8,5}, {0x2ec9d,5}, {0x14d56,10}, {0x296e1,7}, + {0x277a9,7}, {0x1b287,9}, {0x244bb,8}, {0x24f7b,8}, {0x1445a,10}, {0xbed1,12}, {0x17060,10}, {0x2d6bf,6}, + {0x54b5,8}, {0x2db41,4}, {0x26e2c,7}, {0x14fea,10}, {0x28908,7}, {0x2de99,6}, {0xa965,7}, {0x7844,7}, + {0x1e4d1,7}, {0x9b79,12}, {0x28d9e,5}, {0x1586e,10}, {0xbb4f,3}, {0x2424b,8}, {0x71b1,13}, {0x2f36c,3}, + {0x1ebbc,7}, {0x16c20,3}, {0x24963,8}, {0x2c931,6}, {0x1d4a3,8}, {0x31a6b,2}, {0x1152d,3}, {0x271cf,7}, + {0xb63d,8}, {0x20140,9}, {0x165b6,10}, {0x1cfdb,9}, {0x4c92,13}, {0x2fd0d,5}, {0x2c6b1,4}, {0x1dcdd,9}, + {0x1936a,9}, {0x2b9bf,6}, {0x9939,12}, {0x30d6b,4}, {0x4cb9,6}, {0x219d9,8}, {0x2e219,4}, {0xd897,8}, + {0x1f675,9}, {0x34b3,6}, {0x5eac,7}, {0x71d8,13}, {0x8cf1,8}, {0x296f6,7}, {0x11fa9,11}, {0x2f9ac,5}, + {0x2c907,6}, {0x2e392,5}, {0x12880,8}, {0x1a05c,4}, {0x27716,7}, {0x31a31,4}, {0x2eadd,3}, {0x1517a,6}, + {0xafc5,12}, {0x2d3b9,6}, {0x127f6,5}, {0x7235,11}, {0x20991,8}, {0xe1f,16}, {0xe1f,22}, {0xdcec,11}, + {0x15738,10}, {0x208d,11}, {0x29090,7}, {0x175b0,5}, {0x1ff5c,4}, {0x318a1,4}, {0x2f041,5}, {0x17bb6,10}, + {0x2cdb9,6}, {0x17f46,4}, {0x28a51,7}, {0x29dab,6}, {0x11a6b,11}, {0x314ee,3}, {0x13d7,16}, {0x175ce,6}, + {0x278a5,7}, {0x235eb,8}, {0x21063,4}, {0x153c,3}, {0x57a4,7}, {0x1d78e,9}, {0xb445,12}, {0x2c9df,6}, + {0x262a3,8}, {0x2ea5c,5}, {0x75e8,5}, {0x2ff74,5}, {0x45c7,5}, {0x305f,14}, {0x10986,11}, {0x15cf1,5}, + {0x2f2ef,2}, {0x2b9d7,6}, {0x2d4f7,4}, {0x352f,14}, {0x14234,10}, {0xa645,4}, {0x12a74,7}, {0x243bb,8}, + {0x14a9,3}, {0x29fba,7}, {0x2fba5,5}, {0x1c772,9}, {0x2702b,7}, {0x1af3d,4}, {0x30c11,2}, {0x2fae7,5}, + {0xf85,3}, {0x305f7,4}, {0x30987,4}, {0x30cc5,2}, {0x1689a,6}, {0x11eb7,11}, {0x2464b,8}, {0x3068c,3}, + {0x2e51d,5}, {0xa22d,12}, {0x1529e,8}, {0x2ddb7,4}, {0x28612,7}, {0x21c69,8}, {0x2a8dc,7}, {0x2fb87,5}, + {0x8799,12}, {0x3fed,8}, {0xce45,11}, {0x3147f,3}, {0x2ffc6,3}, {0x30a83,4}, {0x67e4,13}, {0x28fcc,7}, + {0x2d883,4}, {0x12d6c,10}, {0x13b7,16}, {0x7fe9,12}, {0x2b499,5}, {0x22f13,8}, {0x19937,9}, {0x2d509,5}, + {0x291e7,7}, {0x9304,5}, {0x271b3,7}, {0x23de5,6}, {0x31651,3}, {0xbda7,10}, {0x1cf2,7}, {0x2c0d,14}, + {0x2e8ed,5}, {0x1a4d1,8}, {0x7c15,8}, {0xf42b,11}, {0x1bbb4,9}, {0x16946,7}, {0xc1ad,12}, {0x23e4b,8}, + {0x2c8cb,6}, {0x19e8f,9}, {0x7a88,4}, {0x83f1,12}, {0x1f50f,7}, {0xd04d,5}, {0x12c59,5}, {0x26b4d,7}, + {0x127d8,8}, {0x1094,3}, {0x9d29,12}, {0x2598e,5}, {0x7ae5,10}, {0x2f83a,5}, {0x2c61f,5}, {0x2d7ab,2}, + {0x194a5,9}, {0x177ea,10}, {0x2d1fd,6}, {0x258d3,8}, {0x21f7b,8}, {0xbc01,12}, {0x7573,11}, {0x13022,6}, + {0x159ea,6}, {0x11fa3,6}, {0x29ddc,7}, {0x45c6,2}, {0x2cd11,6}, {0xb85b,9}, {0x23b53,8}, {0x1fbf1,7}, + {0x8d21,12}, {0x1cca8,9}, {0x2452b,8}, {0x772f,10}, {0x7eb1,12}, {0x1e343,9}, {0x30f27,6}, {0xcb50,5}, + {0xbd21,12}, {0x409f,10}, {0x244f5,6}, {0x29156,4}, {0xf1ad,10}, {0x2768,5}, {0x11fe0,6}, {0x1c571,9}, + {0x25d4b,8}, {0x269c,9}, {0x1d2a2,9}, {0x30cd7,4}, {0x26ecd,7}, {0xdac6,11}, {0x1db2f,2}, {0x246b,15}, + {0x1031f,11}, {0x6d5a,6}, {0x2fd69,3}, {0x16336,7}, {0x7cad,12}, {0x250c3,8}, {0x14edc,7}, {0x1155,3}, + {0x13992,10}, {0x15bca,10}, {0x2eb49,5}, {0x2ec89,5}, {0x239d,3}, {0x157dc,5}, {0x207f9,8}, {0x30eb,6}, + {0x1cf27,9}, {0x26633,8}, {0x19897,6}, {0x142c0,10}, {0xe59a,11}, {0xfca4,9}, {0x25c53,7}, {0x860d,12}, + {0x20019,4}, {0x113f7,11}, {0x1b602,9}, {0x23623,6}, {0x29146,7}, {0x18872,10}, {0x18b92,10}, {0x13456,10}, + {0x6234,13}, {0x17150,10}, {0x38e9,3}, {0x1e6f7,5}, {0x9219,12}, {0x3185d,4}, {0x2aa3a,7}, {0x2b719,6}, + {0x5999,6}, {0x1f167,4}, {0xc662,6}, {0x21501,8}, {0x2d92b,4}, {0x12696,10}, {0x150d0,10}, {0xea07,11}, + {0xb993,6}, {0x1cfae,9}, {0x2f9bb,5}, {0x18cfa,5}, {0x1bb2,11}, {0x1ab2e,9}, {0x1e019,9}, {0x9f2d,12}, + {0x17e68,7}, {0x1590e,10}, {0x11a08,4}, {0xfb5,10}, {0x24bdb,8}, {0x2abee,7}, {0x7817,10}, {0xd407,11}, + {0x30a91,2}, {0x1eea2,3}, {0x21dfb,8}, {0x48f7,13}, {0x9315,12}, {0x117ca,11}, {0x187dc,10}, {0x12017,11}, + {0x2a762,7}, {0x11a55,9}, {0x2c13f,6}, {0x2464,6}, {0x2f4eb,5}, {0x190d0,9}, {0x18f97,7}, {0x25773,8}, + {0x442e,11}, {0x236b6,5}, {0x1547e,4}, {0xd362,11}, {0xeb04,11}, {0x248fb,8}, {0x24aa3,8}, {0x2db7b,6}, + {0x26ac8,7}, {0x12aba,10}, {0x22a73,8}, {0x304cb,4}, {0x2af02,5}, {0x1dc4d,9}, {0x1e735,7}, {0x24345,4}, + {0x11767,7}, {0x18430,5}, {0x93f9,12}, {0x19820,8}, {0x2ed15,5}, {0x1e6f4,9}, {0x17b7a,10}, {0x8109,12}, + {0xfb16,11}, {0x156d,8}, {0x6055,3}, {0x952c,4}, {0x27551,5}, {0x1a3de,9}, {0x8f49,12}, {0x130d4,6}, + {0x12240,5}, {0x6352,13}, {0x1e007,9}, {0x28dfe,7}, {0x25bc3,6}, {0x3157f,3}, {0x1c5a7,9}, {0x2a563,7}, + {0x23e1b,5}, {0x2ef92,5}, {0x884d,12}, {0xa8a5,12}, {0x1ea95,7}, {0x2ff94,3}, {0x1a85e,9}, {0x132be,3}, + {0x11675,7}, {0x1b7cf,7}, {0x2d6b3,6}, {0xe8de,11}, {0x792b,5}, {0x7842,9}, {0x2a787,5}, {0x31b55,2}, + {0x12876,10}, {0x2cdd1,6}, {0x8db1,11}, {0x13924,10}, {0x260bb,8}, {0x30815,6}, {0x30917,4}, {0x10bcd,6}, + {0x259f3,8}, {0x3049d,4}, {0x1fe18,4}, {0x31723,3}, {0x2abe9,4}, {0x189e4,10}, {0x2743,7}, {0x48c9,4}, + {0x9159,12}, {0xdb70,6}, {0x17be8,10}, {0x2d60b,6}, {0x2ea86,2}, {0x2a8a4,7}, {0x2945d,7}, {0x390a,7}, + {0x2631d,4}, {0x126c8,9}, {0x20589,8}, {0x3559,14}, {0x18d86,10}, {0x1eea4,3}, {0x17240,10}, {0x92ae,7}, + {0x2d449,6}, {0x666b,13}, {0x20272,9}, {0x12682,8}, {0x678b,10}, {0x2c0d,7}, {0x83b5,12}, {0x259cb,8}, + {0x10c48,3}, {0x28a27,7}, {0xd131,11}, {0x1e18a,9}, {0x2517b,8}, {0x16390,10}, {0x247e5,6}, {0x19430,9}, + {0x256a,15}, {0xa095,12}, {0x1d97d,8}, {0x2294d,5}, {0x13dca,10}, {0x1c3dc,9}, {0x2c895,6}, {0xc597,11}, + {0x4d2e,13}, {0x30eb7,4}, {0x15300,7}, {0x1cac0,9}, {0xe0b4,11}, {0x1b785,9}, {0x17972,5}, {0x4383,14}, + {0x25803,8}, {0x2f803,4}, {0x1e6c9,7}, {0x1cdad,8}, {0xc1d1,10}, {0x1892b,5}, {0x200c4,4}, {0x5201,8}, + {0x273f8,7}, {0x6c5c,13}, {0x1ea0c,9}, {0x22353,8}, {0x2043b,2}, {0x1caa5,9}, {0x24565,5}, {0xd0fa,9}, + {0x22363,8}, {0x3095f,4}, {0x82b3,4}, {0x24fdb,8}, {0x2cb2b,6}, {0xb83a,7}, {0xc9f9,11}, {0x1e424,9}, + {0x179e0,10}, {0x1b65,15}, {0x11963,5}, {0x1e34c,9}, {0x2d497,6}, {0x299c9,7}, {0x2a94c,7}, {0x2c097,6}, + {0x217bb,5}, {0x2fee8,5}, {0x193d6,9}, {0x31300,3}, {0x8811,10}, {0x2e0eb,6}, {0x2e241,6}, {0x303cd,4}, + {0xa4d9,12}, {0x2b1c8,6}, {0x2d73f,4}, {0x3479,6}, {0x4321,9}, {0xff5,18}, {0x1f528,9}, {0x22d6f,4}, + {0x24e43,8}, {0x1f7e6,9}, {0x596b,13}, {0x25da3,8}, {0x2253b,8}, {0x8096,7}, {0x313f,14}, {0x15b20,8}, + {0x20541,4}, {0x18c64,6}, {0x2480b,8}, {0x20cb9,8}, {0x1eaf6,9}, {0x232a,6}, {0x103f,3}, {0x1c84,11}, + {0x2cbb5,6}, {0x19a45,9}, {0x27580,7}, {0x246db,8}, {0x30edb,4}, {0x2780b,7}, {0x10297,4}, {0x193b,2}, + {0x313d8,3}, {0x5a89,13}, {0x12c54,10}, {0xe261,11}, {0x1c654,7}, {0x2b5c9,6}, {0x27517,7}, {0x3055b,4}, + {0x13726,10}, {0x1dca9,2}, {0x1a52b,9}, {0x1fe16,9}, {0x147cc,8}, {0x1472d,7}, {0x24acb,8}, {0x1ccb1,9}, + {0x1ae7f,3}, {0x1ad55,7}, {0xe49d,11}, {0x11a34,11}, {0xb2ad,12}, {0x7638,10}, {0xe80,3}, {0x1f9e9,7}, + {0x30a03,4}, {0x31623,3}, {0x316a5,3}, {0x9de9,9}, {0x6ba6,13}, {0x2dea8,3}, {0x8769,12}, {0x14590,10}, + {0x2f496,5}, {0x1b89c,8}, {0x1977e,9}, {0x1e77d,7}, {0x126e6,10}, {0x2688a,7}, {0x2c007,6}, {0xd68a,6}, + {0x3c2f,14}, {0x2e229,6}, {0x1938e,7}, {0xdcd6,11}, {0x1e1a5,9}, {0x2ec8e,5}, {0x169b2,10}, {0x112ef,11}, + {0xbf37,6}, {0x28284,4}, {0x3097f,4}, {0x1e0c4,9}, {0x2544b,8}, {0xf14e,7}, {0x41b7,5}, {0x11dfc,5}, + {0x22833,8}, {0x3153c,3}, {0xaaf,19}, {0x1d518,9}, {0x14edc,10}, {0xeee2,11}, {0xa5e1,12}, {0x158b6,8}, + {0x161ce,9}, {0x107ce,11}, {0xcbb1,8}, {0x678f,7}, {0x1d3fa,4}, {0x1d047,9}, {0x80f5,5}, {0x8e9a,4}, + {0x1a9ad,4}, {0x232bd,4}, {0x245d5,6}, {0x2c12d,6}, {0x316c9,3}, {0x1882c,10}, {0x30096,5}, {0x1da9d,9}, + {0x2fc92,3}, {0xdf33,11}, {0x1d08f,9}, {0x2f397,5}, {0x347f,6}, {0x318c1,4}, {0x4c09,4}, {0x47f3,12}, + {0xabb1,12}, {0x72bb,7}, {0x299f5,5}, {0xbd2d,9}, {0x295d7,7}, {0x2217b,8}, {0x4899,14}, {0xe64e,6}, + {0x9a71,12}, {0x6fae,6}, {0x72c4,4}, {0x1882e,5}, {0x12dc6,10}, {0x9c2d,12}, {0x1c4a4,7}, {0x73b9,13}, + {0x30f1b,6}, {0xbbdf,7}, {0x1c838,9}, {0x11b68,11}, {0x26a97,7}, {0x73c6,5}, {0x28aac,7}, {0x2c673,6}, + {0x59b4,5}, {0x2489d,6}, {0x2e568,5}, {0x2d203,6}, {0x1f60b,7}, {0x2352b,7}, {0x29495,7}, {0x2aac8,7}, + {0x2fe9a,3}, {0x1616a,10}, {0x83ad,5}, {0x163b,4}, {0x1e5c2,9}, {0x293ef,5}, {0x1a6d,8}, {0x24a1d,6}, + {0x1b3cb,6}, {0x12ed7,4}, {0x273b5,4}, {0x2f9d4,5}, {0x47ab,14}, {0x1639,7}, {0xbdfb,3}, {0x11f5c,11}, + {0x2a689,6}, {0x307e4,4}, {0x2b8b1,6}, {0x8385,11}, {0x1a1bb,7}, {0x2374b,8}, {0x2326e,5}, {0xfb4,3}, + {0xebeb,11}, {0x16566,8}, {0xc111,12}, {0x6bc2,5}, {0x2bee7,6}, {0x569b,4}, {0x18f5f,9}, {0x2cdef,6}, + {0xc231,5}, {0x2eefc,3}, {0xecb7,5}, {0xd06b,10}, {0x2354b,6}, {0x17e90,10}, {0x2aa02,7}, {0x244b3,8}, + {0x2c58,5}, {0x122e,4}, {0xec64,11}, {0x186c4,10}, {0x3129,8}, {0x1124a,7}, {0xd88a,11}, {0xdcc3,8}, + {0x1c8a4,9}, {0x9b0d,11}, {0x1713c,10}, {0x2c8fb,6}, {0x266bd,5}, {0xf9d7,11}, {0x393b,14}, {0x2f329,5}, + {0x1df41,9}, {0x14108,10}, {0x2521b,8}, {0x1ef40,9}, {0x5f28,6}, {0x1ed6c,9}, {0x17056,10}, {0x17d5a,10}, + {0xd71f,11}, {0x228ab,7}, {0x31a5d,2}, {0x1e65d,7}, {0x2b8ab,6}, {0x10c7d,11}, {0x17d70,5}, {0x216a1,8}, + {0x30d57,4}, {0x5cdf,13}, {0x1b7c4,9}, {0x6811,5}, {0x31a8f,2}, {0x27e16,7}, {0x15aee,10}, {0xfe23,11}, + {0x1aa7c,7}, {0x123d,4}, {0x31a73,2}, {0x23ea3,8}, {0x22c5b,8}, {0x23f7b,8}, {0x7559,13}, {0x7cbe,7}, + {0x19d6f,9}, {0x31531,3}, {0x2fa1f,5}, {0xd982,4}, {0x125d,17}, {0x16400,5}, {0x11116,11}, {0x1f63f,9}, + {0xb57d,12}, {0x2c8ef,5}, {0x2c055,6}, {0x1f62d,9}, {0x2c573,2}, {0x2d131,6}, {0x17e2f,4}, {0x57b4,4}, + {0x119c6,10}, {0x140aa,4}, {0x1e4f3,9}, {0x6060,10}, {0x1f9bf,4}, {0x110d4,7}, {0x1592c,9}, {0x7677,13}, + {0x1dad3,9}, {0x1565c,10}, {0x13276,10}, {0x281f8,7}, {0x6f1a,7}, {0xb75f,10}, {0x2ee14,5}, {0x1748e,10}, + {0x306a7,4}, {0x1463a,10}, {0x2bc35,6}, {0x6fa9,13}, {0x2dc4d,6}, {0x2a896,7}, {0x5381,6}, {0xde8e,11}, + {0x10cd5,11}, {0x2ed51,5}, {0xf18,5}, {0x10da6,8}, {0x1f261,9}, {0x3104d,6}, {0xb75f,4}, {0x28bb2,7}, + {0x1ca15,9}, {0x2a1a4,7}, {0x18301,3}, {0x1d0a3,4}, {0xedae,11}, {0x2d005,5}, {0x2e711,5}, {0x11100,7}, + {0x2e0f7,6}, {0x2cb55,6}, {0xd7dc,9}, {0xd3e6,10}, {0x1dfe,4}, {0x17be2,4}, {0x13294,7}, {0x2f17c,5}, + {0x21521,8}, {0x1cf71,4}, {0x13c4,3}, {0x29546,5}, {0x1f285,5}, {0x6e09,13}, {0x11562,11}, {0x31573,3}, + {0x25f03,8}, {0x1f8db,7}, {0x126e6,9}, {0xd034,11}, {0x2ee05,5}, {0x264b3,8}, {0x2b468,6}, {0x2a93e,7}, + {0x185fc,10}, {0x2a71c,7}, {0x58fe,4}, {0x24fe3,8}, {0x23623,8}, {0x284e5,7}, {0x1d5a8,9}, {0x29329,7}, + {0x2ab15,7}, {0x17d8f,7}, {0x296e8,7}, {0x2303b,8}, {0x2c4ab,6}, {0x1e47e,9}, {0x6ec1,4}, {0x1a5cd,9}, + {0xe9fe,6}, {0x2f60f,2}, {0x20671,8}, {0x1a7a1,9}, {0x145ea,7}, {0x7ba7,3}, {0x24ab5,6}, {0x31732,3}, + {0x19871,9}, {0xc996,11}, {0x1f450,6}, {0x896d,12}, {0xb727,6}, {0x307e0,4}, {0x23c75,3}, {0x2e9f8,5}, + {0x7e0d,4}, {0x83f4,9}, {0x30fbd,6}, {0x1dd7f,9}, {0x2f812,5}, {0x2620b,8}, {0x2c253,6}, {0x185d6,3}, + {0x3148c,3}, {0x2b815,6}, {0x285e8,7}, {0x266d3,8}, {0x269b7,7}, {0x263e3,8}, {0x27f1,5}, {0x2bfa1,6}, + {0x2ef15,5}, {0x31add,2}, {0x2b785,6}, {0x24595,5}, {0x2bcbf,6}, {0x1b758,9}, {0x3195,4}, {0xf60f,11}, + {0xaa0d,12}, {0x2e9ad,5}, {0xd081,11}, {0x2d9b3,6}, {0x8ad7,10}, {0xf0c,3}, {0x8949,9}, {0x2b25e,6}, + {0x20245,9}, {0x27293,7}, {0x51a6,13}, {0x35b1,4}, {0x14dc4,10}, {0x24213,8}, {0x6b41,6}, {0x2fdb7,5}, + {0x27f1b,5}, {0x2cce1,6}, {0x2c9fd,6}, {0x1b1dc,9}, {0x163d8,6}, {0x2c523,6}, {0x2fe16,5}, {0x1ff99,6}, + {0x8fe5,12}, {0x18002,10}, {0x1fca7,7}, {0x2eb67,5}, {0x282d8,7}, {0x2ebb,14}, {0x55f7,7}, {0x1720e,6}, + {0x1f93c,9}, {0x2680c,7}, {0x1ee95,9}, {0x23abb,8}, {0x2a1d5,7}, {0x2c39f,3}, {0x2efb2,3}, {0x2db15,6}, + {0x2bebd,6}, {0x4299,4}, {0x9df5,12}, {0x2cf15,6}, {0x2611b,6}, {0x2cf03,6}, {0x2fe3,10}, {0x11310,11}, + {0x2fa7e,5}, {0x315f1,3}, {0x8e95,12}, {0xddf4,11}, {0x1375a,6}, {0x29eed,9}, {0x1685e,10}, {0x2d7a3,6}, + {0x31ad5,2}, {0x7c65,12}, {0x2433b,8}, {0x1cc3c,9}, {0x5210,5}, {0x1b92,15}, {0xc009,12}, {0x2f0a0,5}, + {0x275fe,7}, {0x22663,8}, {0x1e70f,9}, {0xe240,5}, {0x11208,6}, {0x28bdc,7}, {0x14a7c,10}, {0x21c51,8}, + {0x2a5b7,7}, {0x1f86d,9}, {0x8a40,4}, {0x1d1ee,9}, {0x11d0f,2}, {0x2d823,4}, {0x2f055,5}, {0x4050,4}, + {0x25e73,7}, {0xb841,12}, {0xbb89,6}, {0x2923b,7}, {0x2c343,5}, {0x266c3,8}, {0x1d09,15}, {0x2ce8d,4}, + {0x1b871,6}, {0x24fd3,8}, {0x2920a,7}, {0xdb46,4}, {0x2b33c,6}, {0x19cc4,9}, {0x1eb2,4}, {0x263a5,6}, + {0xee8,3}, {0x2c901,6}, {0x5283,13}, {0x151b,4}, {0x25ccb,8}, {0x2e748,5}, {0x1e603,7}, {0x4cc8,3}, + {0x2d32b,2}, {0x277e8,7}, {0xe7ac,9}, {0xad1f,6}, {0x4158,4}, {0x298e0,7}, {0x1a048,9}, {0x2637b,8}, + {0x272e7,7}, {0x17ce4,7}, {0x117c1,9}, {0x1dd40,9}, {0x25f66,4}, {0xf8f4,7}, {0x64a4,6}, {0x28181,7}, + {0xaaba,7}, {0x182e8,5}, {0x12826,10}, {0x15c10,10}, {0xb391,7}, {0x9904,4}, {0x24f13,5}, {0x1432e,10}, + {0xb559,10}, {0x268d7,7}, {0x1213c,10}, {0xe5d1,11}, {0x22dc3,8}, {0x1f25b,6}, {0x2fa97,5}, {0x249b3,8}, + {0x385b,8}, {0x2a723,7}, {0x30e8f,4}, {0x2c2d,7}, {0x2de9,14}, {0x1ff63,9}, {0x13762,9}, {0x13e31,7}, + {0xd2f4,11}, {0x2e60d,5}, {0xbfe5,12}, {0x2347,7}, {0x111e7,11}, {0x1fc2b,5}, {0x31acd,2}, {0x2c53,12}, + {0x2e8e8,4}, {0x27d67,7}, {0xeed,6}, {0x5a2e,13}, {0x7d85,9}, {0x2af9a,7}, {0x31a3d,4}, {0x25a25,6}, + {0x1c505,9}, {0x2530b,8}, {0x1fa4a,9}, {0x30513,4}, {0x17ea4,10}, {0x2c68b,6}, {0xefc9,11}, {0x23dfb,8}, + {0xb199,6}, {0x9ddd,12}, {0x1fe60,7}, {0x1d5d5,9}, {0xad36,3}, {0x28bbb,5}, {0x18246,10}, {0x156de,10}, + {0x10b96,11}, {0x274f6,5}, {0x117ed,4}, {0x249a3,6}, {0x2e976,5}, {0x30bd7,4}, {0x2918c,7}, {0x115ba,11}, + {0x2e118,3}, {0x1dcc,15}, {0x2d377,6}, {0x11402,11}, {0x2a47,15}, {0x23307,4}, {0x9c21,12}, {0x2f154,5}, + {0x1fc95,7}, {0x239fb,8}, {0x11045,11}, {0x1d7b2,9}, {0x2c193,6}, {0x22a25,6}, {0x313cf,3}, {0xba47,10}, + {0x2ff4c,5}, {0x104cc,11}, {0x2a94,9}, {0x1795c,7}, {0x1799c,8}, {0x683f,13}, {0x121f2,4}, {0x16070,10}, + {0x29f66,7}, {0x93e3,7}, {0x224f,15}, {0x1eab3,4}, {0x18a02,7}, {0x312d3,3}, {0x1ec18,7}, {0x1a47,16}, + {0x31783,3}, {0x2b1e0,6}, {0xd6b1,11}, {0x176d2,10}, {0xf21b,11}, {0x19697,6}, {0x2e16f,6}, {0x2f136,5}, + {0x6b53,5}, {0x171c8,10}, {0x27732,7}, {0x23253,8}, {0xd07c,5}, {0x13640,8}, {0x14b94,10}, {0x1967,16}, + {0x64a9,8}, {0x2010c,7}, {0x2c94f,6}, {0x24fd5,5}, {0x23973,8}, {0x2c904,3}, {0xc590,7}, {0x1024e,7}, + {0x1a39f,9}, {0x2b95f,6}, {0x13194,6}, {0x30787,4}, {0x10713,11}, {0x9a46,5}, {0x18f95,9}, {0x126f0,10}, + {0x2276b,8}, {0x29ebc,7}, {0x25d7b,8}, {0x26753,6}, {0x12e5c,10}, {0x8b65,12}, {0x25b6b,8}, {0x10555,6}, + {0x38b4,7}, {0x2c37f,5}, {0x28ac1,7}, {0x2ecac,5}, {0x149f0,10}, {0x1ba43,9}, {0x2a19d,7}, {0x25085,3}, + {0x2225b,8}, {0x425d,14}, {0x9d0a,7}, {0xffd0,7}, {0x2f92f,5}, {0x240cb,8}, {0x1edd1,7}, {0x1c46c,5}, + {0x2fa38,5}, {0x7d6d,12}, {0x21b89,6}, {0x46cb,7}, {0xdc3c,11}, {0x23b6b,8}, {0x1b2cf,6}, {0x28e7c,7}, + {0x30019,5}, {0x160fc,10}, {0x1215a,10}, {0x3035e,5}, {0x1d14c,9}, {0x20ba1,8}, {0xe2cf,11}, {0x11d36,11}, + {0x30653,4}, {0x24a4d,6}, {0x1a306,9}, {0x299d2,3}, {0x2473b,8}, {0xb2dd,12}, {0x270da,7}, {0x317d9,4}, + {0x156a2,10}, {0x1b0fb,9}, {0x1af54,9}, {0x2a9ca,7}, {0x1fffc,9}, {0x198f8,9}, {0x27eb7,7}, {0x29b2b,3}, + {0x27aab,7}, {0x23d93,8}, {0x30a47,4}, {0xb0c1,12}, {0x23913,8}, {0x29433,7}, {0x2a5a9,7}, {0x2ffdd,5}, + {0x2e66c,5}, {0xc82b,11}, {0x6fc3,13}, {0x274a0,7}, {0xc4e7,11}, {0x1ea03,9}, {0xa905,9}, {0x13fcd,5}, + {0x1cccc,9}, {0x923d,12}, {0x21b73,6}, {0x2f828,3}, {0x23043,8}, {0x2ee5a,5}, {0x1729a,10}, {0x2961d,4}, + {0x2e103,6}, {0x2a4ec,7}, {0x3376,4}, {0x4c1d,9}, {0x217a9,8}, {0x25423,8}, {0x2783c,7}, {0x1002,4}, + {0x2ece0,2}, {0xb9f3,2}, {0x1b26c,9}, {0x2ff8f,3}, {0x236fb,5}, {0x179f4,7}, {0x2d25f,4}, {0x1580a,10}, + {0x298fe,5}, {0x23943,8}, {0x2ff24,5}, {0x24a9b,8}, {0x2fa10,5}, {0x13b36,10}, {0x5ab0,13}, {0x648c,9}, + {0x2bbf9,5}, {0x2f880,5}, {0x8a2d,12}, {0x2d66b,6}, {0xc990,4}, {0xd366,7}, {0x5101,3}, {0x1cce7,9}, + {0x31405,3}, {0x3aed,14}, {0x11649,11}, {0x2569b,5}, {0x2d6af,4}, {0x2fdf0,3}, {0x2dba1,4}, {0x14338,8}, + {0x27b68,7}, {0x2fa2e,5}, {0x3123c,3}, {0x1017f,6}, {0x1840a,8}, {0x806d,12}, {0xeecc,11}, {0x6b24,10}, + {0x2b20a,6}, {0x145e,4}, {0x18958,10}, {0x27ff2,7}, {0x1a150,5}, {0x73d6,4}, {0x1d9a,5}, {0x198dd,9}, + {0x15602,10}, {0x297eb,5}, {0x10b6,3}, {0xcd1c,6}, {0x1b5ba,9}, {0x2e31,4}, {0x1944b,9}, {0x5360,13}, + {0x19a11,7}, {0x117d5,11}, {0xbd23,6}, {0x25ad3,8}, {0x14abd,5}, {0x13348,10}, {0x1c41b,9}, {0x166ee,7}, + {0x1f6e1,9}, {0x31859,4}, {0x22303,8}, {0x2f3ce,5}, {0xe284,4}, {0x23cbd,6}, {0x17268,10}, {0x138b,12}, + {0xdce1,11}, {0xad31,12}, {0x28891,7}, {0x29647,7}, {0x450b,14}, {0x15f47,4}, {0x22003,8}, {0x92a2,7}, + {0x2a8f1,6}, {0x262d3,7}, {0x14eb,4}, {0x1bb12,7}, {0x3009b,5}, {0x2d8f3,6}, {0x209b1,8}, {0x2678,15}, + {0x1af03,9}, {0x9604,5}, {0x5ea6,5}, {0x30b75,2}, {0x73ae,4}, {0x4325,3}, {0x176fc,8}, {0x21951,8}, + {0x2eefa,5}, {0x12312,10}, {0x9435,12}, {0x23f26,3}, {0x1ed36,9}, {0x3153d,3}, {0x21474,5}, {0x25813,8}, + {0x2aaac,6}, {0x77b1,6}, {0x26fb4,7}, {0x18b38,10}, {0x1d02c,9}, {0xd16,50}, {0x1a9fe,7}, {0x21771,8}, + {0x1003e,11}, {0x35b3,8}, {0x23dc5,4}, {0xe1c7,11}, {0x29b4c,5}, {0x2fca1,3}, {0xb019,12}, {0x241c3,8}, + {0x2cd05,6}, {0x2523b,8}, {0x20da9,8}, {0x2ba2b,6}, {0xaf2,7}, {0xb34,7}, {0xba15,12}, {0x1c1c9,9}, + {0x2bb7b,6}, {0x2ea57,5}, {0x12ec0,10}, {0x181bc,6}, {0x30fcf,6}, {0x235f3,8}, {0x14d7,15}, {0x13640,10}, + {0x23cf3,8}, {0x24e0b,6}, {0x8492,7}, {0x103fb,11}, {0x2242b,8}, {0x2faab,5}, {0xec32,6}, {0x20821,8}, + {0x2181b,4}, {0x18350,4}, {0x3106b,6}, {0xddb8,3}, {0x2b653,6}, {0x2c079,6}, {0x6171,4}, {0x2841a,7}, + {0x1960d,9}, {0xf5cd,11}, {0x1fe70,9}, {0x2188b,6}, {0x43b5,6}, {0x2b74f,6}, {0x2c09d,6}, {0xeb3b,11}, + {0x8e2b,10}, {0x103e5,6}, {0x30c83,4}, {0x1bd66,6}, {0xdb6b,11}, {0x25263,8}, {0x1b275,9}, {0x20259,7}, + {0x25b03,8}, {0x2a9f4,7}, {0x2ca45,6}, {0xad9d,12}, {0x31586,3}, {0x1c6ac,9}, {0x3911,14}, {0x30857,6}, + {0x2231b,8}, {0x28070,7}, {0x3409,14}, {0x2747d,7}, {0x1dfec,9}, {0x24e1b,8}, {0x2c013,6}, {0x1a051,9}, + {0x1e505,9}, {0x156e8,10}, {0x2e767,3}, {0x1122f,5}, {0xd060,11}, {0x2c157,6}, {0x2519b,8}, {0x2d611,6}, + {0x159ea,10}, {0x10556,5}, {0xc17f,3}, {0x27fba,7}, {0x261db,8}, {0x2247,8}, {0x725a,12}, {0x10729,11}, + {0x2d431,6}, {0x2592b,4}, {0x10c32,9}, {0x2f1b3,5}, {0xb8e9,12}, {0x1765e,6}, {0x1e62e,9}, {0x1f2a0,9}, + {0x1b8b0,6}, {0xf764,10}, {0x2cf39,6}, {0x30bcf,4}, {0x1c907,9}, {0x1667e,10}, {0x6379,13}, {0x9593,10}, + {0x7b45,12}, {0x11921,11}, {0x30d6d,2}, {0x29fa5,7}, {0x26660,3}, {0x8df9,12}, {0x12436,8}, {0x2e441,5}, + {0x2a86c,7}, {0x14c5c,10}, {0x1e0a0,7}, {0x562e,4}, {0x1f251,6}, {0x2c349,6}, {0x49a4,9}, {0x2521d,6}, + {0x1c55,15}, {0x37eb,14}, {0xa2e1,12}, {0x1aa0e,9}, {0x22dd3,8}, {0x2fc86,5}, {0x387f,4}, {0x17222,10}, + {0x2e5a9,5}, {0x211a9,8}, {0xb423,3}, {0x1e4a4,6}, {0xe5d,3}, {0x1a9f6,4}, {0x23393,8}, {0x245ab,8}, + {0x300c3,5}, {0x21c61,8}, {0x1c259,9}, {0xb1fc,8}, {0x120dd,4}, {0x4bfa,4}, {0x1e654,4}, {0x1f4a3,4}, + {0x214a9,8}, {0x25b13,8}, {0x2a2b5,7}, {0x2671b,8}, {0xd288,9}, {0x2026d,5}, {0x2e93a,5}, {0x21191,8}, + {0x2ac6c,7}, {0x245f3,8}, {0x225b3,8}, {0x2e0fd,6}, {0xf468,5}, {0xd555,3}, {0xfa50,11}, {0x165e8,10}, + {0x1a17,16}, {0x950f,7}, {0x159d8,8}, {0x1abb0,5}, {0xd1aa,11}, {0x2caa7,6}, {0x2ee23,5}, {0x175bc,4}, + {0x1f0cc,6}, {0x6b53,4}, {0x17484,10}, {0x2ffa6,5}, {0x1f854,6}, {0x2313b,8}, {0x305e7,4}, {0x175a8,3}, + {0x1f582,9}, {0x5910,13}, {0x2ef97,5}, {0x2a1ce,7}, {0x21bc9,8}, {0x17ed8,7}, {0x2b84,11}, {0x1fc9c,9}, + {0x30000,5}, {0x1ce73,9}, {0x2c5f5,6}, {0x2b81,14}, {0x1e7cc,9}, {0x312d6,3}, {0x1722e,4}, {0x2393b,8}, + {0x11ed8,11}, {0x307ab,7}, {0x2f03c,5}, {0x2da0d,6}, {0x1637,16}, {0x41fb,14}, {0x25b75,3}, {0x22b9b,8}, + {0xa34d,12}, {0x3e0b,6}, {0x14d06,10}, {0x10d3c,3}, {0x2466d,3}, {0x2ea11,5}, {0xeb8a,6}, {0x20137,9}, + {0x1b20e,4}, {0x314a9,3}, {0x2c92b,6}, {0x2cd0d,4}, {0x1e532,9}, {0x318a5,4}, {0x2e423,4}, {0xb235,12}, + {0x2b1b,4}, {0x19d15,9}, {0x14c52,10}, {0x1d7df,9}, {0x24843,8}, {0x1fb10,9}, {0x2931b,7}, {0x2777f,7}, + {0x25b3b,8}, {0x1d45b,8}, {0x2937d,7}, {0x2abc4,7}, {0x26908,3}, {0x26fd7,7}, {0x21af1,8}, {0x1ae8,3}, + {0x13154,10}, {0x12c90,10}, {0xbe05,12}, {0xd055,11}, {0x90ed,4}, {0x239a3,8}, {0x2ef09,5}, {0x1a66,15}, + {0x2f53b,5}, {0x30354,4}, {0x13294,9}, {0xe7c,5}, {0x276a,5}, {0x2e1f3,6}, {0x113f1,6}, {0x67fe,11}, + {0x1d92c,9}, {0x2ee00,5}, {0x1fc34,5}, {0x2ec0e,2}, {0x5f4f,9}, {0x4abe,13}, {0x23a03,8}, {0x6ecc,13}, + {0x1032c,4}, {0x1fbbd,7}, {0x22ed3,6}, {0x291d2,7}, {0x3e53,5}, {0x17722,8}, {0x2f3f6,5}, {0x11418,11}, + {0x2c45,10}, {0xd2e9,11}, {0x169a8,10}, {0x1ab4,2}, {0xca04,11}, {0x6c1b,13}, {0x2afe2,6}, {0x7b39,12}, + {0x15a4e,10}, {0xebe,8}, {0x17038,10}, {0x2e1d5,6}, {0x5a74,8}, {0x1b63a,6}, {0x2b3fc,6}, {0xd530,11}, + {0x3ba3,7}, {0x1026f,11}, {0x2e235,6}, {0x14a56,8}, {0x232b5,6}, {0x28a35,7}, {0x28b00,7}, {0x2ed83,5}, + {0x31585,3}, {0x1b722,9}, {0x2d517,4}, {0x152b0,10}, {0x28bc0,7}, {0x4837,4}, {0x1141,2}, {0x133e0,3}, + {0x314c2,3}, {0x14e48,7}, {0x2790e,7}, {0x2d719,6}, {0x2f8f3,5}, {0x180ae,8}, {0xf54f,5}, {0x21cd5,4}, + {0xb119,4}, {0x1814c,10}, {0x21961,8}, {0x2bea5,6}, {0x2c0c7,6}, {0x29dd0,4}, {0x1207c,5}, {0x17592,10}, + {0xbfcd,10}, {0x4009,3}, {0x14e5a,8}, {0x29a08,7}, {0x21ddb,8}, {0x179ae,10}, {0x316a2,3}, {0x79e6,3}, + {0x2498b,8}, {0x176cc,6}, {0x1305a,10}, {0x4fdf,7}, {0x6d24,6}, {0xf898,11}, {0xc472,3}, {0x31381,3}, + {0x21efb,8}, {0x7ce9,12}, {0x16930,10}, {0x24103,6}, {0x1cc2c,7}, {0x1db77,7}, {0x1893a,10}, {0xcb4e,11}, + {0x331b,14}, {0x25713,8}, {0x3162f,3}, {0xba39,12}, {0x1d9a1,9}, {0x27b45,7}, {0x1ece5,6}, {0x27468,7}, + {0xdd4f,11}, {0x300a0,5}, {0x306f9,3}, {0x16f18,8}, {0xb974,5}, {0x2a6a0,5}, {0x9e0d,12}, {0x5df0,13}, + {0x15454,10}, {0x1f14a,5}, {0x2c3af,6}, {0x31595,3}, {0x1b4d9,9}, {0x121f,4}, {0x314b6,3}, {0x13ef6,10}, + {0x1fe47,4}, {0xb9ff,3}, {0x23e8b,8}, {0x1f594,8}, {0xcf37,8}, {0x3fde,6}, {0x19d39,7}, {0x259e3,8}, + {0x2f8b7,5}, {0x20c1,6}, {0xd5a9,10}, {0x13e6a,6}, {0x1921f,4}, {0x85b4,5}, {0x2946d,5}, {0xdd5a,11}, + {0x21879,8}, {0x14432,10}, {0x25bd3,8}, {0x1db4a,4}, {0x31869,4}, {0x1c2bc,8}, {0x1848a,10}, {0xcb17,11}, + {0x2f50b,3}, {0xb385,12}, {0x3194d,4}, {0xc8f7,3}, {0x1e575,3}, {0x2dfc1,4}, {0xd638,11}, {0x21839,8}, + {0x218c3,6}, {0x229cb,7}, {0x2b779,4}, {0x204f9,8}, {0x1252e,10}, {0x2208b,8}, {0x2b0a,6}, {0x7f4d,12}, + {0x28924,7}, {0x1a7c5,9}, {0x5579,5}, {0x24bcb,8}, {0x56a6,3}, {0x2b438,6}, {0x2d721,4}, {0x1ec70,9}, + {0x2800,9}, {0x2eddd,5}, {0x289f6,7}, {0x25b1e,5}, {0x31678,3}, {0x22a05,6}, {0x1229a,10}, {0x1da3a,9}, + {0x1d07d,9}, {0x2c56b,6}, {0x36bd,8}, {0x30360,3}, {0x2b731,6}, {0x21b21,8}, {0x9fef,10}, {0x1fdd9,4}, + {0x14bf8,10}, {0xb27d,6}, {0x2a735,3}, {0x306cf,4}, {0x1c328,9}, {0x268ad,7}, {0x21c11,8}, {0xd19f,10}, + {0x1455e,10}, {0x2743e,7}, {0x2ebd0,5}, {0x26787,7}, {0x2b43e,5}, {0xcb22,11}, {0x1d371,9}, {0x300be,5}, + {0x1797,15}, {0x529d,12}, {0x2e53b,5}, {0x7645,4}, {0x1df89,9}, {0x17d16,8}, {0x2cc75,6}, {0x2bf3,4}, + {0x268f4,6}, {0x316bd,3}, {0x13f78,10}, {0x1ce91,6}, {0x1e42f,7}, {0x2c56e,2}, {0x26105,3}, {0x20de9,8}, + {0x1d669,5}, {0x2ac75,5}, {0xc585,5}, {0x6825,13}, {0xacc5,12}, {0x2a31e,7}, {0x2881a,7}, {0x2e854,8}, + {0x3167b,3}, {0x138a2,10}, {0x31017,6}, {0x2c2d,10}, {0x62f7,5}, {0xd772,5}, {0x1af0c,9}, {0x31895,4}, + {0x3160b,3}, {0xcfb0,10}, {0x18e12,7}, {0x30ec3,4}, {0xf6b4,11}, {0x30cff,4}, {0x170e4,3}, {0x1ba82,9}, + {0x158dc,10}, {0x199f4,9}, {0x2248b,8}, {0xb9fd,6}, {0x27de5,7}, {0x2a2ae,7}, {0x8cf7,4}, {0x2b318,6}, + {0x2e2b9,5}, {0x25ad3,6}, {0x30c29,2}, {0x1ba5e,6}, {0x290d6,7}, {0x270d3,7}, {0x272c,15}, {0x1dc46,7}, + {0x4fc5,13}, {0x2941e,7}, {0xa2ed,11}, {0x6977,13}, {0x1b57b,9}, {0x2026b,3}, {0x8e65,12}, {0x9e79,12}, + {0x6cbb,6}, {0x2b312,6}, {0x8d45,12}, {0x17e40,9}, {0x9de9,12}, {0x23083,8}, {0x2c565,4}, {0x29218,7}, + {0x1fb3d,9}, {0x2e626,5}, {0x24925,6}, {0x29d42,7}, {0x1967,9}, {0x20419,8}, {0xccc8,7}, {0x1bd91,5}, + {0x25aab,6}, {0x30e0b,4}, {0x4685,14}, {0xa281,12}, {0x2d851,5}, {0x228b3,7}, {0x1e1d2,5}, {0x24fc3,8}, + {0x22416,5}, {0x2d863,6}, {0x2de3f,6}, {0x12c9a,8}, {0x12dda,10}, {0x2acb6,3}, {0xd6bc,11}, {0x2ca0f,6}, + {0x6cb7,13}, {0x30ecd,6}, {0xcb01,11}, {0x746f,8}, {0x2da5b,6}, {0x286cf,7}, {0x2d491,6}, {0x2eccf,5}, + {0x1c5dd,9}, {0x7009,4}, {0x2e4c3,5}, {0xb901,12}, {0x2aaeb,6}, {0x309ab,4}, {0x10592,11}, {0x2a64c,4}, + {0x25886,5}, {0x29131,7}, {0x29b27,7}, {0x11b05,8}, {0x184aa,8}, {0x10e0b,3}, {0x2dfbb,4}, {0x2dc2f,6}, + {0x306d,14}, {0xfa87,11}, {0x1055b,11}, {0x30ef1,6}, {0x1716e,10}, {0x11e12,6}, {0x25f53,8}, {0x108ec,11}, + {0xcaca,10}, {0x204d1,8}, {0x56ee,13}, {0x2f9de,5}, {0x26e8e,7}, {0x2c787,6}, {0x11a76,11}, {0x2ff6c,3}, + {0x8ac9,12}, {0x21651,8}, {0x14cd4,10}, {0x9c78,9}, {0x1308c,10}, {0x1cd80,9}, {0x4b54,6}, {0x4796,7}, + {0x288bd,4}, {0x2edb0,5}, {0xee58,6}, {0x3a37,5}, {0x5589,4}, {0x31adb,2}, {0x26aa5,7}, {0x1e81d,9}, + {0xf23c,11}, {0x18c8c,10}, {0x14248,10}, {0x2dac,4}, {0x3148f,3}, {0x21d31,8}, {0x244d,15}, {0x20561,8}, + {0x11f9e,11}, {0x24c27,4}, {0x2f3ec,5}, {0x2ce1,3}, {0x88a5,8}, {0x2cbc9,3}, {0x1038d,11}, {0x16444,10}, + {0x177f4,5}, {0x312b0,3}, {0x1267c,6}, {0x216e,15}, {0x305eb,4}, {0x2c3e5,6}, {0xf94,3}, {0x1a6b7,8}, + {0x1aa5f,9}, {0x5641,4}, {0x747c,8}, {0x6089,10}, {0x233cb,8}, {0x19f1f,9}, {0x133ff,5}, {0x5439,4}, + {0x2eb3d,2}, {0x63bd,4}, {0xb655,12}, {0x2db05,4}, {0x1ece1,4}, {0x24d55,6}, {0x2f69d,2}, {0x2bad3,6}, + {0xdaf5,4}, {0x7749,11}, {0x67ca,13}, {0x29694,7}, {0x29f9e,7}, {0x11326,11}, {0x12cf4,10}, {0xf93,3}, + {0x5d31,5}, {0x8d39,12}, {0x23633,8}, {0x151de,10}, {0x77e5,10}, {0x17d6e,10}, {0xb93d,12}, {0x27d4,3}, + {0x1a855,8}, {0x15a9e,10}, {0x1cef1,9}, {0x6cc4,6}, {0x74f1,13}, {0x262bb,5}, {0xd73b,5}, {0x17a8f,5}, + {0x25c4,15}, {0x305cf,4}, {0x16504,8}, {0x297c8,7}, {0x2c52b,4}, {0x27915,7}, {0x1bd01,9}, {0x2de4b,6}, + {0x2fe9f,3}, {0xe33d,11}, {0x295a6,5}, {0x1a29a,9}, {0x14f72,10}, {0x2d9a7,6}, {0x11f8a,5}, {0x2cd17,6}, + {0x7d25,8}, {0x18c64,9}, {0x18d54,10}, {0xc2fa,8}, {0x1ee32,9}, {0x1f371,3}, {0x1b6b8,7}, {0x7ac1,12}, + {0x3051,14}, {0x31654,3}, {0x2dd01,6}, {0x2f49b,5}, {0xbc55,12}, {0x18dd8,5}, {0x2b845,6}, {0x1ace7,9}, + {0xddbd,11}, {0x3567,14}, {0x13f3c,10}, {0x17f44,10}, {0x9ea9,12}, {0x3c21,14}, {0x130f0,10}, {0x4af4,5}, + {0x2380b,8}, {0x2fcea,5}, {0x52d1,10}, {0x9981,12}, {0x3fd9,11}, {0xaaf,67}, {0x1727c,10}, {0x16fde,6}, + {0xe71d,9}, {0x171d4,4}, {0x12722,10}, {0x2a222,6}, {0x2de03,6}, {0x10a85,2}, {0x12eca,10}, {0x2cd4d,6}, + {0x1830e,10}, {0x18748,8}, {0x2a103,7}, {0x30082,5}, {0x2dfc7,4}, {0x25783,8}, {0xf625,8}, {0x1977,16}, + {0x2dc89,6}, {0x61de,8}, {0x1736e,7}, {0x12772,10}, {0x72cf,7}, {0x4a63,13}, {0x12286,10}, {0x1248e,10}, + {0x1b746,9}, {0x230cb,8}, {0x312aa,3}, {0x2de8d,6}, {0x8963,9}, {0x696f,4}, {0xa611,12}, {0x238a,15}, + {0x168fe,7}, {0x2a51d,7}, {0x3121e,3}, {0x3361,14}, {0x1041c,6}, {0x37d6,6}, {0x1ecc1,9}, {0x8355,12}, + {0x2b300,6}, {0x29be4,7}, {0x1277c,10}, {0xe19b,11}, {0x303d9,4}, {0x2a2e8,4}, {0x8423,4}, {0xbedf,5}, + {0x2f821,5}, {0xdadc,7}, {0x24ee3,8}, {0x3006e,5}, {0x28fff,5}, {0x2ac1,13}, {0x1816c,8}, {0xd85e,6}, + {0x274a,15}, {0x11158,11}, {0x18782,10}, {0x30e23,4}, {0x13834,10}, {0x28062,7}, {0x2fde4,5}, {0x26a4c,5}, + {0x718f,8}, {0x1e8da,7}, {0x3132f,2}, {0x205f9,8}, {0x2392b,8}, {0x31b25,2}, {0x2621b,8}, {0x114bd,11}, + {0x1c2aa,9}, {0x702d,9}, {0x293d8,7}, {0x20975,4}, {0x314ec,3}, {0x2db45,6}, {0x2004d,9}, {0xaeda,7}, + {0x28d90,5}, {0x8c55,12}, {0x71a4,13}, {0x30aaf,4}, {0x1a27f,9}, {0x2c163,6}, {0x1ceac,3}, {0xbfc1,8}, + {0x31855,4}, {0x13424,10}, {0x2c0d3,6}, {0x20869,5}, {0x184a8,10}, {0x1eff,8}, {0x2fcf9,5}, {0xda70,6}, + {0x7b5d,12}, {0x15a12,10}, {0x29c2a,7}, {0x111fd,11}, {0x184b2,7}, {0x2a01e,5}, {0xb5f5,12}, {0x17d1e,10}, + {0xb12f,5}, {0x25343,8}, {0xbb1f,2}, {0xd593,11}, {0x28a99,5}, {0x3153a,3}, {0x4a2f,13}, {0x2309b,8}, + {0x24be5,2}, {0x14810,10}, {0x2fe20,5}, {0x203b9,8}, {0x14b08,9}, {0x29a32,7}, {0x31309,3}, {0x1dc05,9}, + {0x1ebbc,9}, {0x2f3fb,5}, {0x2ad76,9}, {0x314e9,3}, {0x1556c,9}, {0x308db,6}, {0x2f261,5}, {0x2a380,7}, + {0x29ef,3}, {0x13fb4,10}, {0x1081,17}, {0x295c6,2}, {0x13488,10}, {0x372c,5}, {0x18df4,4}, {0x1a54b,3}, + {0x1adc8,8}, {0x2f9c0,5}, {0x2dc77,6}, {0x27aa6,5}, {0x1b368,9}, {0x23033,8}, {0xcfff,9}, {0x5579,4}, + {0x11bc0,9}, {0x2e621,5}, {0x52c4,13}, {0x2e7fc,8}, {0x1d974,9}, {0x2aacf,7}, {0x1302a,4}, {0x254ff,4}, + {0x253cd,4}, {0x30091,5}, {0x10e35,11}, {0x3088d,6}, {0x1123f,11}, {0x18188,10}, {0x25593,8}, {0x23acb,8}, + {0x24b43,8}, {0x2d06b,6}, {0x1d182,9}, {0x12420,10}, {0x2f9e8,5}, {0x40ff,14}, {0x3121b,3}, {0x29d52,5}, + {0x1062c,11}, {0x1d023,6}, {0x1a8dc,8}, {0x2f8e9,5}, {0x2fb8c,5}, {0x31939,4}, {0x50cf,7}, {0x16537,7}, + {0x166b2,7}, {0x21989,8}, {0x158a0,10}, {0x112d9,11}, {0x14de2,10}, {0x18967,5}, {0x19598,9}, {0x1fba0,9}, + {0x2dab5,6}, {0x11b55,8}, {0xce50,11}, {0x207d1,8}, {0x5ecd,13}, {0x2ddaf,6}, {0x1c355,9}, {0x154e0,10}, + {0x2a1b2,7}, {0x2d0ef,6}, {0x2a9ae,7}, {0x1c4a5,5}, {0x1fc83,4}, {0x29027,7}, {0x2515b,8}, {0xa48b,6}, + {0x17f6e,6}, {0x22383,8}, {0x10944,10}, {0x2a777,7}, {0x2b450,6}, {0xa83b,10}, {0xf1fa,10}, {0x2cc93,6}, + {0x1949c,9}, {0x26f98,7}, {0x21019,8}, {0x2a50f,7}, {0x2f7c2,5}, {0x6721,9}, {0x16804,10}, {0x313a8,3}, + {0x30c5f,4}, {0xe117,11}, {0x314e6,3}, {0x2f5b8,5}, {0x6581,6}, {0x11520,6}, {0xb5df,3}, {0x1c595,9}, + {0x1f114,6}, {0x2234e,5}, {0x3def,14}, {0x2a372,7}, {0xaf7d,6}, {0x319ed,4}, {0x2e25f,6}, {0x1ad14,9}, + {0x294b3,4}, {0x9bd9,12}, {0x1823c,10}, {0x26433,8}, {0x21209,7}, {0x19a7f,5}, {0x29376,7}, {0x23ac3,8}, + {0x11526,5}, {0x6123,13}, {0x28292,7}, {0x3151b,3}, {0x3131e,3}, {0x2b911,6}, {0x3940,7}, {0x2c355,5}, + {0x2fb37,5}, {0xaf0b,6}, {0x2b43e,6}, {0x1acf,15}, {0x2f9fc,5}, {0x2dcdd,6}, {0xc421,11}, {0x30883,4}, + {0x1e55f,9}, {0x1ef57,2}, {0x11a62,9}, {0x1f47d,9}, {0xa815,12}, {0x24153,8}, {0xc8e6,11}, {0x2d983,6}, + {0x2a23e,7}, {0x367f,14}, {0x31a59,2}, {0x14592,8}, {0xd152,10}, {0x1d4d9,9}, {0xdc52,11}, {0x24db3,5}, + {0xd43e,11}, {0x2ffd8,5}, {0x30547,4}, {0x9d7d,12}, {0x12a92,10}, {0x276a6,7}, {0xe08,2}, {0x1a249,9}, + {0x2a87a,7}, {0x2e27a,6}, {0x6005,13}, {0xf2b5,11}, {0x3167e,3}, {0x31aa8,2}, {0xe87b,11}, {0x28547,7}, + {0x2fc3b,5}, {0x2e36a,5}, {0x2d365,6}, {0x27c17,4}, {0x20ca1,8}, {0x257cb,8}, {0xe35,8}, {0x2dff1,4}, + {0x31999,4}, {0x30411,4}, {0xfb84,11}, {0x1defd,5}, {0x1451,4}, {0x1e652,8}, {0x24cdb,8}, {0x1fc42,9}, + {0x6b9c,3}, {0x23f2b,8}, {0x1e2d7,9}, {0x11234,9}, {0x2b8e7,6}, {0x2aca0,4}, {0x131e0,10}, {0x5dbc,12}, + {0x1c6d9,9}, {0x3c0e,4}, {0x7455,13}, {0x26a5f,7}, {0x17ef4,10}, {0x11f06,5}, {0xdcc0,11}, {0x1e9fe,5}, + {0x1fec3,5}, {0xa4cd,7}, {0x30388,7}, {0x29949,7}, {0x4993,11}, {0x2ead6,5}, {0xadd9,12}, {0xc53f,11}, + {0x13820,10}, {0x22e8b,8}, {0x29608,7}, {0x232bb,8}, {0x29797,7}, {0x5443,7}, {0x312fd,3}, {0x31582,3}, + {0xb40b,2}, {0x2d695,6}, {0x2cb3d,5}, {0x7acd,12}, {0x2edbf,5}, {0x25a7b,8}, {0x5101,4}, {0x956f,3}, + {0x22f93,8}, {0xf515,3}, {0x31292,3}, {0x17c94,3}, {0x2f087,5}, {0xecdd,11}, {0x2ff88,5}, {0x2786,15}, + {0x11ef3,6}, {0x2dfcd,4}, {0x2c367,6}, {0x292f1,7}, {0x2a04d,7}, {0x1072,4}, {0x713e,3}, {0x27ea2,7}, + {0x116cd,11}, {0x245c,15}, {0x1d4d2,7}, {0x2bcfb,6}, {0x10d59,11}, {0x317e1,4}, {0xed40,11}, {0x29e06,7}, + {0xec38,11}, {0x1f2fa,9}, {0x1a6b7,9}, {0x27f90,7}, {0x1dcb9,9}, {0x23e5d,6}, {0x1f6ea,9}, {0x4219,6}, + {0x3155d,3}, {0xdcd6,10}, {0x26263,8}, {0x2f291,2}, {0x57a9,5}, {0x30b33,4}, {0x7b5d,6}, {0x12aec,10}, + {0x18c2a,5}, {0x23eab,8}, {0x1e61c,9}, {0xc069,12}, {0x2ade1,7}, {0x1117b,8}, {0xc652,11}, {0x30937,4}, + {0x2f4f0,5}, {0x1b4c7,9}, {0x17abe,4}, {0xfc34,11}, {0x30bc3,4}, {0x2ad68,6}, {0x20b11,8}, {0x2498,15}, + {0x1ff12,9}, {0x1d1ca,9}, {0x23d73,8}, {0x17cce,10}, {0x1add1,9}, {0x285c5,7}, {0x2dcbf,6}, {0x2e027,4}, + {0x1d653,9}, {0x8469,12}, {0x29790,7}, {0x24683,8}, {0x307c9,2}, {0x2ab41,5}, {0xc7a7,9}, {0x29b1,15}, + {0x152f6,10}, {0x2e5f,4}, {0x1ee44,9}, {0x1a05c,7}, {0x2b1ff,5}, {0x64a4,13}, {0x2d451,4}, {0x30edf,6}, + {0xe6ce,10}, {0x5b9c,4}, {0x2226b,8}, {0x6e4a,13}, {0x191c5,7}, {0x2e0f1,6}, {0x2e680,5}, {0x26e95,7}, + {0x4a5c,3}, {0x16944,10}, {0x62a4,5}, {0x25dab,8}, {0x3819,10}, {0x1b7b2,9}, {0x23c33,8}, {0x73da,6}, + {0x303b5,4}, {0x65eb,6}, {0x15e7,16}, {0x25c7b,8}, {0x31435,3}, {0x10eb0,9}, {0x204cc,5}, {0x3135c,3}, + {0x16d4a,5}, {0x25b8e,5}, {0xf1c5,6}, {0x2fde1,3}, {0xda16,11}, {0x3007d,5}, {0x17772,10}, {0x2e8c5,5}, + {0x2c4f3,6}, {0x30469,4}, {0x1ed2d,9}, {0x264dd,4}, {0x21169,8}, {0x25a1b,8}, {0x7706,8}, {0x2f3dd,5}, + {0x1ecee,9}, {0xc165,5}, {0x3f4d,13}, {0x20e5b,6}, {0x6835,6}, {0x2df50,3}, {0x16368,6}, {0x278ac,7}, + {0x9d73,4}, {0x31472,3}, {0x2ecb6,5}, {0x1571e,6}, {0x2318,3}, {0x1eb59,8}, {0x10da8,3}, {0x280a8,7}, + {0x2479d,2}, {0xc73f,5}, {0x14d7,16}, {0x1802a,10}, {0x117eb,11}, {0x2bd97,6}, {0x17328,8}, {0xf00b,11}, + {0xaece,2}, {0x57ec,5}, {0x10cab,2}, {0x5e24,13}, {0x2f1a1,3}, {0x11c0d,11}, {0x12e0c,10}, {0xe1dd,11}, + {0x258f3,8}, {0x2d023,6}, {0x1eed4,9}, {0x2ff83,5}, {0x21489,8}, {0x22d3b,8}, {0x15f76,10}, {0x17aa,4}, + {0xf5c,3}, {0x2c57,6}, {0x1f12f,9}, {0xdf75,11}, {0x2d3b5,4}, {0x315e4,3}, {0x1498c,10}, {0x16d7,16}, + {0x1b714,5}, {0x2c1c3,6}, {0x2f57,7}, {0x1e82,4}, {0x2fd00,3}, {0x1e802,9}, {0x27119,7}, {0x74fe,13}, + {0x3053b,4}, {0x2ad22,7}, {0x2adab,5}, {0x1c82f,8}, {0x9429,12}, {0x305c3,4}, {0x3bf7,14}, {0x246f3,8}, + {0x21b69,8}, {0x1446e,10}, {0x31161,6}, {0x24463,8}, {0x193a0,9}, {0x1a21e,5}, {0x304b9,4}, {0x22b05,6}, + {0x1c39d,9}, {0x783e,13}, {0x2fd49,5}, {0xe655,11}, {0x2eb62,5}, {0xc051,6}, {0x30397,4}, {0xf8a3,10}, + {0x168b8,10}, {0x28ced,7}, {0x902d,7}, {0x17fbc,10}, {0x2f6be,5}, {0x2b791,6}, {0x25acb,8}, {0x1f79e,5}, + {0x1c4b4,9}, {0x1b6c3,5}, {0x10679,11}, {0x2fa88,5}, {0x31675,3}, {0xb535,9}, {0x6040,6}, {0x11c86,11}, + {0x58e2,6}, {0x19a7,16}, {0x2b210,6}, {0x6911,10}, {0x287aa,7}, {0x2fb50,5}, {0x2ae27,7}, {0x2c393,4}, + {0x453c,3}, {0x18eb7,5}, {0x15e4a,9}, {0x25e7d,6}, {0x15762,7}, {0x15b9d,5}, {0x10add,7}, {0x699e,13}, + {0x3054b,4}, {0x27dfa,7}, {0x1cf9c,9}, {0x2f405,5}, {0xc017,3}, {0x2b7f1,6}, {0x29918,7}, {0x3197,3}, + {0x24b26,5}, {0x10d22,11}, {0x257ab,8}, {0x1839a,10}, {0xb42d,12}, {0x2f03,6}, {0xc73d,3}, {0x10fab,11}, + {0x1e865,6}, {0x1a0b4,9}, {0x12d78,8}, {0x165c0,10}, {0x23e5b,5}, {0x2632b,6}, {0x3433,14}, {0x79d3,4}, + {0x55ab,5}, {0x19ab1,9}, {0x47e3,14}, {0x1e74e,7}, {0x11c9c,5}, {0x8f61,6}, {0x22c9b,8}, {0x30069,5}, + {0x1a036,8}, {0x279e0,7}, {0x27866,6}, {0x26db7,5}, {0x120be,9}, {0x13582,10}, {0x58c2,11}, {0x155da,10}, + {0x25f1,15}, {0x16e9e,10}, {0x52fd,6}, {0x2f8b9,3}, {0x41c3,14}, {0x3591,14}, {0xb931,12}, {0x11a34,5}, + {0x11237,4}, {0x30037,5}, {0x951b,4}, {0x27897,6}, {0x15ba2,10}, {0xd8f8,11}, {0x1a8f7,9}, {0x25c95,6}, + {0x1f435,7}, {0xb7e3,2}, {0x30c65,2}, {0x16822,9}, {0x25d93,8}, {0x18fef,9}, {0x2924,6}, {0x14a86,9}, + {0x217a1,8}, {0x13c30,10}, {0x156c0,10}, {0x24803,8}, {0x1e78d,6}, {0xcf2c,11}, {0x2cd7d,6}, {0x11aba,4}, + {0x28015,7}, {0x22ec3,8}, {0x20365,5}, {0x10bda,9}, {0x27628,6}, {0x2d533,6}, {0x27040,7}, {0x21cf1,8}, + {0x1ea4b,9}, {0x26f28,7}, {0xf790,11}, {0x1e721,9}, {0x1ec82,9}, {0x1dcb4,4}, {0x2af7e,7}, {0x199a3,9}, + {0x1984d,9}, {0x8c61,12}, {0x30a0f,4}, {0x275e,10}, {0x111e7,5}, {0x10153,4}, {0x7b81,12}, {0x2ce6,7}, + {0x23946,4}, {0x144d5,7}, {0x2d931,4}, {0x217c9,8}, {0x1f3a5,9}, {0x25e8b,8}, {0x26213,8}, {0x30c23,4}, + {0x21db5,6}, {0xf4e6,11}, {0x17346,7}, {0x1597,4}, {0x1d449,9}, {0x75b4,9}, {0x28e07,5}, {0x3166c,3}, + {0xfce4,11}, {0x2732f,5}, {0xbe89,12}, {0x1d88a,9}, {0x1bade,7}, {0x1ec67,7}, {0x17fca,3}, {0xbaf9,12}, + {0xfd00,4}, {0x309b,8}, {0x20741,8}, {0x291d9,7}, {0x21eb3,8}, {0x3a53,9}, {0x2d251,5}, {0xce76,4}, + {0xcdf0,7}, {0xfa10,3}, {0x29ea0,7}, {0x1f0fb,6}, {0xb663,8}, {0x2419b,8}, {0x20ed9,8}, {0x28bf8,7}, + {0x2f145,5}, {0x1e0fa,5}, {0x102a6,11}, {0x1cf9f,5}, {0xf02c,11}, {0x6bed,4}, {0x1a3c3,9}, {0x2463,7}, + {0x184a0,7}, {0x12718,10}, {0x225fb,8}, {0x2dff2,3}, {0x680b,13}, {0x2ec4d,5}, {0x1fe94,8}, {0x9d1f,7}, + {0x10b77,4}, {0x29187,5}, {0x26c1f,7}, {0x25d5f,3}, {0x7a1c,9}, {0x267dc,6}, {0x2ac1f,7}, {0x2ff8d,5}, + {0x1d59f,9}, {0x2c37f,6}, {0x30f7b,6}, {0x16312,6}, {0x32ab,5}, {0x9201,6}, {0x22a9b,8}, {0xbc3f,7}, + {0x1b5e1,6}, {0xc03f,2}, {0x1f2e8,9}, {0x3191d,4}, {0x17d50,7}, {0x2573b,8}, {0x1e2e9,9}, {0x1e39d,9}, + {0x4791,4}, {0x28ee,15}, {0x2fcce,3}, {0x17af,4}, {0x308c9,6}, {0x69f9,13}, {0x237db,8}, {0x2672d,6}, + {0x24095,6}, {0x3198d,4}, {0x93b1,12}, {0x70fb,6}, {0xf277,7}, {0x234a5,6}, {0x2bfb9,6}, {0x2e309,5}, + {0x24f95,6}, {0x2e702,5}, {0x797d,12}, {0x2ff47,5}, {0x2e662,5}, {0x12a9c,10}, {0x15364,10}, {0x1109d,10}, + {0x1eba1,9}, {0x89cd,12}, {0x1e5cb,9}, {0x104ed,11}, {0x6053,13}, {0x238f3,8}, {0x2217,4}, {0x127f4,10}, + {0x6f00,13}, {0x1ffa2,9}, {0x242c5,6}, {0x2b65f,6}, {0x1fbfa,9}, {0x1f437,7}, {0x1bd79,4}, {0x2d0eb,4}, + {0x1b645,5}, {0x1ca4b,9}, {0x177a,3}, {0x13fdc,6}, {0x30e75,2}, {0x14d24,10}, {0x17d64,10}, {0x32fa,5}, + {0x12ee8,10}, {0x1f626,7}, {0x11578,11}, {0x20206,9}, {0x211e9,8}, {0x1dbb4,8}, {0x3002d,5}, {0x1c3ca,9}, + {0x1ff5a,9}, {0x315fa,3}, {0x24f03,8}, {0x314c1,3}, {0x195fe,6}, {0x2d7c7,6}, {0x575a,4}, {0x105d4,11}, + {0x12a88,10}, {0x1d27,15}, {0x1a9a2,9}, {0x1a012,9}, {0x5edc,3}, {0x4677,14}, {0xe21,4}, {0x2f0aa,5}, + {0x25063,8}, {0xbaed,12}, {0x1f94e,9}, {0x241cb,8}, {0x1d572,7}, {0x1043,7}, {0x2fa49,3}, {0x20fc9,8}, + {0x2cf9f,6}, {0x18124,10}, {0x1f7d4,9}, {0x154cc,10}, {0x620d,13}, {0x228ed,5}, {0x14aa4,10}, {0xad85,12}, + {0x28b5e,7}, {0x170ba,10}, {0x200f8,9}, {0xe747,11}, {0x9db9,12}, {0x11e98,5}, {0x1223,3}, {0x2da8b,6}, + {0x6c49,6}, {0xfac9,11}, {0x11f30,11}, {0x5133,8}, {0x306fb,4}, {0x16ab6,10}, {0x2b3b4,6}, {0x18950,7}, + {0x27897,7}, {0x14ea4,6}, {0x176a3,4}, {0x2993,8}, {0x2dff8,3}, {0x222ab,8}, {0x3973,14}, {0x2a658,7}, + {0x303ec,3}, {0x15f6c,10}, {0x1ec55,7}, {0x2c79b,4}, {0x274ed,6}, {0x23e13,5}, {0x2b2b8,6}, {0x1857,16}, + {0x7093,13}, {0xb759,4}, {0x17be4,4}, {0x1f579,5}, {0x28f65,3}, {0xd5f6,11}, {0xe3cc,11}, {0xae81,12}, + {0x14a86,8}, {0x2741b,7}, {0x2416d,6}, {0x190dc,3}, {0x21029,8}, {0x28df,15}, {0x118be,6}, {0x6ed0,8}, + {0x18c96,10}, {0x141b2,10}, {0xee6,11}, {0x142de,10}, {0x27223,7}, {0x2d75d,2}, {0x2ab9a,7}, {0x1d8ed,9}, + {0x2ae6d,7}, {0x1451a,8}, {0x2579b,8}, {0x19566,4}, {0x259ab,8}, {0x10b5f,11}, {0x2a3cd,7}, {0x26d8b,7}, + {0x4c8c,6}, {0x29ae8,7}, {0x5ac5,4}, {0x13cd0,10}, {0x2d0cb,6}, {0xd36d,11}, {0x525c,8}, {0x9231,12}, + {0x1e94a,5}, {0x2b0f0,12}, {0xe3ae,4}, {0x65dc,13}, {0xb0b5,11}, {0x2d5ff,6}, {0x16c3e,5}, {0xecc7,10}, + {0x2d6d7,6}, {0x28b8f,7}, {0x2c549,4}, {0xaf1d,12}, {0x1eaf6,7}, {0x20509,8}, {0x10988,8}, {0x1961f,9}, + {0x2f78b,5}, {0x1d74f,9}, {0x2dd2b,6}, {0x11150,5}, {0x1dbb4,9}, {0x16ba,4}, {0x1416c,4}, {0x2f835,5}, + {0x1adb6,9}, {0xd64e,11}, {0x2c4c9,6}, {0x2eaa7,5}, {0xab4b,4}, {0x1df0b,9}, {0xa779,12}, {0x298bd,7}, + {0x2634b,6}, {0x1a360,8}, {0x1bde2,9}, {0x1f189,9}, {0x1f5cc,4}, {0x2a48a,7}, {0x2fb23,5}, {0x2e4f5,5}, + {0x21969,8}, {0xbef5,12}, {0x143bc,7}, {0x26bb,8}, {0xc5e4,11}, {0x26c18,7}, {0x26a99,4}, {0xd0bc,6}, + {0x141f,6}, {0x2a74,15}, {0x2cdbf,4}, {0x481b,14}, {0x18eae,4}, {0x28bff,7}, {0x2a984,7}, {0xc189,12}, + {0x2de57,6}, {0x1eb89,6}, {0x7df5,8}, {0x13906,10}, {0x16570,10}, {0x2d4f3,4}, {0x1f90b,4}, {0x27e8,3}, + {0xcd1c,11}, {0x2eabb,7}, {0xfd10,11}, {0x11d85,5}, {0xfd94,11}, {0x2dd25,6}, {0x2d8f9,6}, {0x450d,4}, + {0x2b7f7,6}, {0x1292,8}, {0x5dfd,13}, {0x2d5c3,6}, {0x2fcd6,5}, {0x278b3,7}, {0x29b2e,7}, {0x2a769,7}, + {0x2fd0a,3}, {0x68c1,13}, {0x184ee,10}, {0x1a453,9}, {0x12326,10}, {0x2ff6f,5}, {0x2b1ce,6}, {0x312e5,3}, + {0x2472b,8}, {0x1c3e5,8}, {0xe796,8}, {0x248f3,8}, {0x487d,6}, {0x2dea2,3}, {0x291fc,7}, {0x3078a,4}, + {0x1c097,9}, {0x2431d,6}, {0x177ae,10}, {0x21069,8}, {0x11e07,11}, {0x174e8,10}, {0x2d785,6}, {0x31588,3}, + {0x17dc0,5}, {0x19e3e,9}, {0x17bc0,10}, {0x307dc,4}, {0x88fb,6}, {0x11a6b,6}, {0x31464,3}, {0x4f77,13}, + {0x23303,8}, {0x2e1c0,3}, {0xd664,11}, {0x1b48b,6}, {0x14992,4}, {0xae45,12}, {0x1c26d,7}, {0x121b4,10}, + {0x2caa1,6}, {0x19bf5,9}, {0x283f0,7}, {0x2d9dd,6}, {0x2fcd3,3}, {0xf063,11}, {0x2cf8d,6}, {0x300af,5}, + {0x2bdc1,6}, {0x28206,7}, {0x1f096,9}, {0x29c31,7}, {0x1b4f1,3}, {0x23f63,8}, {0xf57,14}, {0x1dbfc,9}, + {0x22c3b,7}, {0x22a83,8}, {0x1567a,10}, {0xcea8,8}, {0x298ee,7}, {0x254af,4}, {0x1a534,9}, {0x4455,5}, + {0xb483,4}, {0x1d368,9}, {0x1fb36,7}, {0x22b8,15}, {0xb79b,4}, {0x2501b,8}, {0x22613,5}, {0x18c55,3}, + {0x1c9b4,7}, {0x2ac11,7}, {0x114f4,11}, {0x1f6bf,7}, {0x1ad5c,9}, {0x20441,8}, {0x300b9,5}, {0x9fb1,12}, + {0x25433,8}, {0xc165,12}, {0x2f8a5,3}, {0x26f1a,7}, {0xc36,64}, {0x266ab,8}, {0x30064,5}, {0x20485,4}, + {0x296ea,4}, {0xf53,18}, {0xe466,11}, {0x24aab,8}, {0x6094,8}, {0x1df94,7}, {0x2ae5a,5}, {0xc5d9,11}, + {0x1edd1,5}, {0x447f,14}, {0x1627,16}, {0x6ff0,7}, {0x2e20d,4}, {0x2c03d,6}, {0x11e61,6}, {0x1481a,10}, + {0x18a6b,5}, {0x2667f,4}, {0x112fc,9}, {0x2ff7b,3}, {0x2a38e,7}, {0x21861,8}, {0x186e2,10}, {0x1b78e,9}, + {0x1df26,9}, {0x2f81e,3}, {0x250b3,8}, {0x2625b,8}, {0xa02e,7}, {0x3067b,4}, {0xfcc3,11}, {0x1d2ea,9}, + {0x11822,6}, {0x198cb,8}, {0x92f1,12}, {0x1653e,10}, {0xb9cd,8}, {0x10a9b,2}, {0x442b,14}, {0x2fb3c,5}, + {0x157d8,10}, {0x16a52,10}, {0x2d973,3}, {0x1f7b0,9}, {0x1fafe,9}, {0xbf9d,12}, {0x2d4c7,6}, {0xdfaf,6}, + {0xa4fd,12}, {0x2466b,6}, {0x2fdfa,3}, {0xf462,8}, {0xc75a,11}, {0x1c4d8,9}, {0x242eb,6}, {0x1aca1,7}, + {0x720e,4}, {0x18372,10}, {0x112f1,4}, {0x2c29,14}, {0x293b8,4}, {0x2b456,6}, {0x121e8,5}, {0x1b69,7}, + {0xef0,3}, {0x2aab3,5}, {0x268f3,7}, {0x21321,8}, {0x1bfd1,9}, {0x2cb79,6}, {0x1f8d9,6}, {0x27270,7}, + {0x3edd,13}, {0x2d047,6}, {0xe4e1,6}, {0x314d2,3}, {0x6e4a,12}, {0x28db1,7}, {0x2fce7,3}, {0x10c30,10}, + {0xbb05,7}, {0xac41,12}, {0x3103b,6}, {0x1594a,10}, {0x2fe34,5}, {0x1f258,9}, {0x7f82,7}, {0x2d323,6}, + {0x125ce,10}, {0x88c5,11}, {0x2586b,8}, {0x1f40b,3}, {0xf9e2,11}, {0x24a7b,8}, {0x2bccb,6}, {0x1d8c9,9}, + {0x126be,10}, {0x21269,8}, {0x2d76f,4}, {0x25f8b,8}, {0x202ce,7}, {0x2e028,3}, {0x114d,17}, {0x90bd,12}, + {0x30e7b,4}, {0x110a8,11}, {0x2d54b,6}, {0x23413,8}, {0x2c3c1,5}, {0x1fd1a,9}, {0x1ddc0,7}, {0x272af,7}, + {0x1f021,8}, {0x1141,3}, {0x271f9,7}, {0x2972a,4}, {0x2a229,7}, {0x16156,10}, {0x2e6bc,5}, {0x250d3,5}, + {0x2d28d,6}, {0x5862,4}, {0x2a91b,7}, {0x11a0a,5}, {0x5020,10}, {0x2666b,8}, {0x1cc84,9}, {0x2d85d,6}, + {0x2ace3,7}, {0x312f1,3}, {0x270b7,7}, {0x911d,12}, {0x1a134,3}, {0x6227,13}, {0x2e816,6}, {0x1634a,10}, + {0x2f248,5}, {0x478f,5}, {0x1c91c,5}, {0xbfb7,7}, {0x1f9ba,9}, {0x115b1,9}, {0x8a8d,12}, {0x2d3ad,6}, + {0x2ffa1,5}, {0x8c13,6}, {0x2fce2,3}, {0x1f8c7,9}, {0x1ec47,4}, {0xd03f,11}, {0x2da49,6}, {0xdf0c,6}, + {0xc40b,11}, {0x29f12,5}, {0x84b1,12}, {0x289e1,7}, {0x2ad61,7}, {0x31a49,4}, {0x1cf6f,9}, {0xcad5,11}, + {0x1dfc8,9}, {0x2cfab,6}, {0x2de29,4}, {0xf210,11}, {0x10285,11}, {0x1d2e1,9}, {0x2992d,5}, {0x23a8b,8}, + {0xf065,6}, {0x313e1,3}, {0x2ec1,2}, {0x2e971,5}, {0x115c5,11}, {0xf079,10}, {0xd17e,11}, {0x16aae,8}, + {0x4f25,4}, {0xaeb1,6}, {0x424f,14}, {0x31879,4}, {0x2e694,5}, {0x2fc9c,3}, {0x751a,4}, {0x29616,7}, + {0x17b84,6}, {0x22455,6}, {0x21301,8}, {0x13c82,8}, {0x211a1,8}, {0x11f7,17}, {0x20b04,4}, {0x1eb6b,9}, + {0x1aa56,9}, {0xa3fb,3}, {0x30425,4}, {0x26755,3}, {0x11f72,11}, {0x7629,6}, {0x18ee2,8}, {0x24a43,5}, + {0xfcb8,11}, {0x319b1,4}, {0x1abf4,9}, {0x2f783,3}, {0x31579,3}, {0xedc4,11}, {0x1c649,9}, {0xf95e,10}, + {0x3f31,13}, {0x23203,8}, {0x2ec4a,2}, {0x20d59,8}, {0x20f61,8}, {0x1eac4,4}, {0x2605,5}, {0x1aa2,7}, + {0x2871e,7}, {0x179ea,10}, {0x2599b,8}, {0x7e8d,12}, {0x2e38d,5}, {0x30633,4}, {0x19604,9}, {0x287db,7}, + {0x2ef83,5}, {0x725c,11}, {0x22f63,8}, {0x24473,8}, {0x585a,13}, {0x9609,12}, {0x1b3f8,9}, {0x29aef,7}, + {0x30c2b,4}, {0x2f01,14}, {0x1db48,9}, {0x19403,9}, {0x2c64f,6}, {0x19679,9}, {0x2f87b,5}, {0x23f75,6}, + {0x27b6f,7}, {0x14a22,10}, {0x23573,8}, {0xbb29,12}, {0x2ab70,6}, {0x2675b,8}, {0x2e4cd,5}, {0x19527,5}, + {0x10fad,9}, {0x192ec,9}, {0x2bf35,6}, {0xe5f4,5}, {0x118aa,4}, {0x2e710,3}, {0x186a6,6}, {0x28eee,5}, + {0x18a16,10}, {0x1d32b,5}, {0x30e45,2}, {0x27c4f,7}, {0x2bd07,4}, {0x2d5f,8}, {0x6609,7}, {0x22ac3,8}, + {0x1f0b1,6}, {0x11373,11}, {0x12fa6,9}, {0x2540d,3}, {0x7761,7}, {0x10d6f,7}, {0x718a,13}, {0x30b53,4}, + {0x73ac,13}, {0x31657,3}, {0xf3f4,11}, {0x2d575,6}, {0x2aba8,6}, {0x2dcb5,4}, {0x2596b,8}, {0x1c45c,4}, + {0x1af9c,9}, {0x1a4ad,9}, {0x5abd,9}, {0x284f3,7}, {0xeb4,4}, {0x77a4,7}, {0x1f864,9}, {0x12ea5,3}, + {0x2b186,6}, {0x23533,6}, {0x3005f,5}, {0x2b078,12}, {0x1cfc,9}, {0xfb9a,11}, {0x25e85,6}, {0x1517,16}, + {0x19415,8}, {0x1b2c6,9}, {0xd454,11}, {0x1ad89,9}, {0x18a02,10}, {0x2fabf,5}, {0x25215,6}, {0x13460,10}, + {0x230a3,8}, {0x1dc8c,9}, {0x18fb0,9}, {0x2c99,12}, {0x2cf57,5}, {0xe69,4}, {0xac37,6}, {0x226fd,5}, + {0x2e685,5}, {0x9e01,12}, {0xac71,12}, {0x237f5,6}, {0x12ea5,4}, {0x269d5,5}, {0x2f823,3}, {0x124c0,10}, + {0x3edd,14}, {0x238e3,8}, {0x2d119,6}, {0x70a2,6}, {0xbdfc,9}, {0x206b1,8}, {0x2cf21,6}, {0x2a77e,7}, + {0x1b0be,7}, {0x11640,4}, {0x31687,3}, {0x179c4,3}, {0xb589,12}, {0x314ce,3}, {0x1cdfe,9}, {0xc6b5,11}, + {0x4359,14}, {0x27701,7}, {0x30d1b,4}, {0x20ee9,8}, {0x2cff5,4}, {0x21bb1,8}, {0x1bf2f,9}, {0x181a6,10}, + {0x1205b,9}, {0x167ca,5}, {0x1dea,15}, {0x2ce55,6}, {0x22c83,8}, {0x11a1e,11}, {0x2298b,8}, {0xa269,12}, + {0x11b26,11}, {0x5370,6}, {0x185ca,5}, {0x28382,4}, {0x2524,3}, {0x1c0cd,9}, {0x18818,6}, {0x2dc83,6}, + {0x12f7e,8}, {0x2dae5,6}, {0x9879,12}, {0xa029,12}, {0x11486,11}, {0xd9c0,8}, {0x1dd0,3}, {0x131ea,10}, + {0x2ccd5,6}, {0x16732,10}, {0x766a,13}, {0x198ce,3}, {0x1a05e,3}, {0x18b62,4}, {0x104b6,11}, {0x4fa2,9}, + {0x16d2c,9}, {0x29eae,7}, {0x1aa2,15}, {0x14a4a,10}, {0x305db,4}, {0x2e504,5}, {0x3123,14}, {0xee11,11}, + {0x2ab23,7}, {0x18e62,10}, {0x26743,8}, {0x82c7,5}, {0x2362b,5}, {0x232a0,3}, {0x1539,3}, {0x1dae5,6}, + {0x31a6f,2}, {0x186ba,10}, {0x31477,3}, {0x1156d,11}, {0xc4dc,8}, {0x2d17,14}, {0x2789e,7}, {0x118d4,5}, + {0x1d488,9}, {0x17fe4,10}, {0x2b12c,6}, {0x14540,10}, {0xea65,4}, {0x7797,4}, {0x2ab09,5}, {0x30503,4}, + {0x28cae,7}, {0x2ba31,5}, {0xe122,11}, {0x1f42c,7}, {0x311ba,5}, {0x1c7c3,9}, {0x21124,4}, {0xd1dc,5}, + {0x25753,6}, {0x49a0,13}, {0x17b98,10}, {0x2ff92,5}, {0x1f1c1,4}, {0xd8d7,11}, {0x2e414,5}, {0x27621,7}, + {0x2645b,8}, {0x2c1b7,6}, {0x246bb,6}, {0x1306e,10}, {0x2a7c4,5}, {0x1a21f,5}, {0x1faad,8}, {0x26673,8}, + {0x244c0,3}, {0x20871,8}, {0x2e980,5}, {0x318dd,4}, {0xd719,6}, {0x200d4,9}, {0x2356b,6}, {0x1d1c1,9}, + {0x24773,8}, {0x25abb,8}, {0x176f2,8}, {0x1e1ff,9}, {0x3233,8}, {0x2b2b2,6}, {0x10161,6}, {0x6ef3,13}, + {0x1a749,5}, {0xcd7f,11}, {0x23ebb,8}, {0x11c4f,11}, {0x2e98a,5}, {0x6d7a,13}, {0x10a57,11}, {0x2673b,7}, + {0xce66,11}, {0x2dcb3,6}, {0x137a8,10}, {0x1f555,9}, {0x2cc1b,6}, {0x2496b,8}, {0x8231,4}, {0x970a,7}, + {0xaca1,12}, {0x2cf87,6}, {0x12ba6,4}, {0x29a42,5}, {0xb559,7}, {0x2cb9d,6}, {0x1e2d9,3}, {0x2df4a,3}, + {0x2dcad,6}, {0x1fffe,3}, {0x40c7,7}, {0x2cb97,6}, {0x2d61d,6}, {0xf89,15}, {0x2cb3d,6}, {0xf38,9}, + {0x22f53,8}, {0x2928f,7}, {0x31b4f,2}, {0x1d54,15}, {0x276d0,7}, {0x30c73,4}, {0x23df3,8}, {0x9f5d,12}, + {0x122c4,8}, {0x18f29,5}, {0x240e8,3}, {0x2fddc,3}, {0x18e32,6}, {0x1db24,9}, {0x1b416,5}, {0x29b43,7}, + {0x25b93,8}, {0x4e0b,13}, {0x3807,14}, {0x11326,6}, {0x281e3,7}, {0x3068f,4}, {0x9909,10}, {0x227f3,8}, + {0x1fde0,9}, {0x2560d,6}, {0x2312,13}, {0x319fd,4}, {0xa755,11}, {0xa8c9,12}, {0x12f26,8}, {0x294f9,4}, + {0xb867,6}, {0xa995,12}, {0x2bed7,4}, {0x2b432,4}, {0x118be,11}, {0xe08,7}, {0x282fb,7}, {0x20461,8}, + {0x28261,7}, {0x3003c,5}, {0x1497,7}, {0x2d5f5,3}, {0x29e45,7}, {0x8955,7}, {0x17696,6}, {0x2fac9,5}, + {0x3455,4}, {0x111a,17}, {0x12e7c,4}, {0x2c57,10}, {0x25e4b,8}, {0x28c6a,4}, {0x3168a,3}, {0x2b55,15}, + {0x1f22b,8}, {0x17aee,10}, {0xf2f,9}, {0x53fc,13}, {0x4911,5}, {0x2d1c1,6}, {0x29e9,3}, {0x2e95d,5}, + {0x1ba9d,9}, {0x28be3,7}, {0x43f7,7}, {0x1ca30,9}, {0x10edd,8}, {0x2969b,7}, {0x2cdc5,6}, {0x2a3f0,7}, + {0x2088b,6}, {0xd58c,6}, {0x1bdf4,9}, {0x23523,8}, {0x1a1cb,9}, {0x228d3,5}, {0x1ee68,9}, {0x2565b,8}, + {0x11b7e,11}, {0x7b26,7}, {0x337d,14}, {0x2d3d7,6}, {0x10222,10}, {0x8da5,12}, {0x18868,10}, {0x30647,4}, + {0x149d2,10}, {0xa95b,10}, {0x1f46d,7}, {0x2e8f2,5}, {0x550f,10}, {0x2b75,12}, {0x2a42a,4}, {0x18818,5}, + {0xf1d,9}, {0xf1d,18}, {0x1a89f,7}, {0xf2f,18}, {0x104e,17}, {0xeab,19}, {0x2fa62,3}, {0x7378,13}, + {0x253c3,8}, {0x3146f,3}, {0x30b9b,4}, {0x2e86b,5}, {0x30bad,2}, {0x16426,10}, {0x42e9,13}, {0xbf55,12}, + {0x30078,5}, {0x8391,12}, {0x6f9c,13}, {0x455f,14}, {0x14b9,10}, {0xb3ba,7}, {0x66b9,13}, {0x2f71d,5}, + {0x2a4cb,3}, {0x1a264,9}, {0x118df,11}, {0x8f91,11}, {0xa155,12}, {0x2e5ea,5}, {0x8385,12}, {0x27ee8,7}, + {0xa329,12}, {0x10852,11}, {0x1b4c9,6}, {0x261ed,5}, {0x21e3b,6}, {0x177fe,10}, {0x2f5b3,5}, {0x190a5,6}, + {0x2a05d,5}, {0x1c235,8}, {0x2a9fb,7}, {0x2b1f2,6}, {0xc463,5}, {0x13c26,10}, {0xa629,12}, {0x122c,9}, + {0x8c01,12}, {0x1e0f1,9}, {0xb889,12}, {0x2b162,6}, {0x1a345,9}, {0x18dd6,6}, {0x16860,5}, {0x1738c,5}, + {0x1875a,10}, {0x20e49,8}, {0x1a507,9}, {0x2b73,14}, {0x2d6a7,6}, {0xcb51,4}, {0x181b5,5}, {0x565a,5}, + {0x2f9bd,2}, {0x17ac6,10}, {0xdfdb,4}, {0x2a66d,7}, {0x18ed8,10}, {0x18ed8,18}, {0x192bf,9}, {0x1efb5,9}, + {0x10fcc,11}, {0x17cf8,5}, {0x2a36b,7}, {0x63e6,8}, {0x16098,10}, {0x29a1d,7}, {0x17d0a,10}, {0x1f58b,9}, + {0x16ff2,5}, {0x2a3e9,7}, {0x4c3c,4}, {0x99d7,9}, {0x19358,9}, {0x2d515,6}, {0x2eca7,5}, {0x3578,4}, + {0x28cdf,7}, {0x29068,5}, {0x1a1ef,9}, {0x274ca,7}, {0x226bb,8}, {0x177e0,10}, {0x2ab2a,7}, {0x2c601,5}, + {0x31929,4}, {0x15fe4,5}, {0x31b43,2}, {0x1382a,10}, {0x2f0eb,5}, {0x2ceb5,6}, {0x26cab,7}, {0x1cdec,9}, + {0x1c8da,9}, {0x1ce2b,9}, {0x199fd,8}, {0x2d14f,5}, {0x204a1,8}, {0x2fc9a,5}, {0x3193,14}, {0x1bc4d,9}, + {0x102b,12}, {0x8ab3,10}, {0x110cb,5}, {0x19655,9}, {0x4ea7,12}, {0x2dd79,6}, {0x18d2,2}, {0x16cfa,10}, + {0x16958,10}, {0x1a158,6}, {0xbb59,10}, {0x2646b,8}, {0xe2ae,11}, {0x5a96,13}, {0x31369,3}, {0x17448,8}, + {0xf37b,8}, {0x2dd0d,6}, {0x30055,5}, {0x1f771,9}, {0x25f33,8}, {0x20587,3}, {0x2e97b,5}, {0x70ee,13}, + {0x3072b,4}, {0x163e0,10}, {0x17fca,6}, {0x3054f,3}, {0x1c409,9}, {0x31738,3}, {0x37a7,12}, {0xf5b7,9}, + {0x23e43,8}, {0x25823,8}, {0x2b9dd,6}, {0x45ed,4}, {0x241db,8}, {0x30533,4}, {0xf57,3}, {0x6b31,13}, + {0x16610,10}, {0x2a95a,7}, {0x78ed,7}, {0x62b9,10}, {0x3114f,6}, {0x77b5,3}, {0x9a89,9}, {0x11418,5}, + {0x177c2,10}, {0x2b210,5}, {0x11cb4,7}, {0x1c3ee,9}, {0xa341,12}, {0x1f084,9}, {0x243ff,4}, {0x74bd,8}, + {0x26780,7}, {0x2e331,5}, {0x24ce6,5}, {0x2e187,6}, {0x2dc6b,6}, {0x31555,3}, {0x2368b,8}, {0x258a3,8}, + {0x17df,4}, {0x29583,7}, {0xe6b8,11}, {0x15008,10}, {0x11e8b,11}, {0x10fed,6}, {0x303e1,4}, {0x1b22f,7}, + {0x2a111,7}, {0x2ff1a,5}, {0x15e04,10}, {0x275e9,7}, {0x2bca7,6}, {0x2a4d7,7}, {0xcf1a,7}, {0x1ec28,9}, + {0x1826e,10}, {0x1159b,9}, {0x18192,6}, {0x2fa5b,5}, {0x15d78,10}, {0x33fd,3}, {0x23d9d,6}, {0x112c3,11}, + {0x2d2ed,5}, {0x2430b,8}, {0x2b611,6}, {0x5f69,13}, {0x1e5b0,9}, {0x25923,6}, {0x8415,12}, {0xdc94,11}, + {0x306cb,4}, {0x1fed5,3}, {0x2daeb,6}, {0x1e487,9}, {0x24183,8}, {0x4bf6,13}, {0x1c343,9}, {0x78b1,24}, + {0x1eec2,6}, {0xab47,6}, {0x11100,11}, {0x2eb1c,5}, {0x25df3,8}, {0x5423,13}, {0xa929,12}, {0x1c9e2,6}, + {0xdadc,11}, {0x63c7,13}, {0x1f78c,9}, {0x2e428,5}, {0x2815e,6}, {0x4279,14}, {0xd91c,8}, {0xdbef,11}, + {0x1fe04,9}, {0x26fa6,7}, {0x235c3,8}, {0x25353,8}, {0x18674,10}, {0x2aed1,5}, {0x1b50f,5}, {0x21289,8}, + {0x241eb,8}, {0xbbdd,12}, {0x96bf,9}, {0xb505,12}, {0x2b426,6}, {0x31681,3}, {0x29ff9,7}, {0x2ec20,5}, + {0x142b6,10}, {0x2ced3,4}, {0x201c9,6}, {0x1c80b,9}, {0x5662,4}, {0x1a345,5}, {0x1dccb,9}, {0xd750,5}, + {0x2b0fd,5}, {0x1dbf5,7}, {0x31931,4}, {0x2f45a,5}, {0x10bff,5}, {0xc39d,11}, {0xb9cd,5}, {0x305d7,4}, + {0x20939,8}, {0x27a18,7}, {0xd244,10}, {0x1e934,6}, {0x202b1,9}, {0xc7ff,11}, {0x2dfb0,3}, {0x21761,8}, + {0x20793,3}, {0x22b8e,5}, {0x23313,8}, {0x1f7f8,9}, {0x18d74,8}, {0x1dece,5}, {0x2d461,6}, {0x5672,7}, + {0xc6cb,11}, {0x236b3,8}, {0x2f190,5}, {0x31537,3}, {0x1c7c,6}, {0x16b9,9}, {0x1b425,6}, {0x15c1a,10}, + {0x1f4f2,6}, {0x2d0e5,4}, {0x290eb,7}, {0xf91c,11}, {0x10906,7}, {0x28903,4}, {0x27778,7}, {0x1d1dc,9}, + {0x19949,9}, {0x29a81,5}, {0x2a47c,7}, {0x1fa80,9}, {0x1eac0,5}, {0x2a3f9,5}, {0x1def4,4}, {0x21ac9,8}, + {0x11772,11}, {0x25c03,8}, {0x26413,8}, {0x17bd6,3}, {0x19574,9}, {0x5d2d,13}, {0x2e2e6,5}, {0x2b38a,6}, + {0x2fd91,3}, {0x294f0,7}, {0x27078,6}, {0x1f0cc,9}, {0x12754,10}, {0x2d9cd,4}, {0x14478,10}, {0x28b50,5}, + {0x2a842,7}, {0x2aee,6}, {0x294d4,7}, {0x4dc2,5}, {0x23feb,8}, {0x9566,7}, {0x19093,6}, {0x5d54,13}, + {0x2b2a0,6}, {0x67bd,13}, {0x4a17,9}, {0xc732,7}, {0x2cf27,6}, {0x1f09,5}, {0x2b4da,5}, {0x1697,5}, + {0x57d2,5}, {0x26013,7}, {0x2fdbe,3}, {0x1011a,11}, {0xb535,12}, {0xc660,4}, {0x1ab6d,9}, {0x331b,11}, + {0x2e3c4,5}, {0x12560,6}, {0x1373a,10}, {0x805a,7}, {0x16534,10}, {0x2f8f8,5}, {0x14a90,10}, {0xaf2,8}, + {0x1f9cc,7}, {0x1a25b,9}, {0x23c73,8}, {0x26a51,7}, {0x2b6b3,6}, {0x313ed,3}, {0x2ab7e,6}, {0x30e77,4}, + {0x21549,6}, {0x7865,13}, {0x26ac8,6}, {0x2a1b9,4}, {0x8dc9,12}, {0xb859,12}, {0x1f25,15}, {0x2f1e5,5}, + {0x2f22f,5}, {0x293bc,7}, {0x26c9d,7}, {0xf021,11}, {0x17e7c,6}, {0x2b947,6}, {0x2fb73,5}, {0xbc6f,3}, + {0x10ac5,11}, {0x24133,6}, {0x9aad,11}, {0x7156,13}, {0x37e2,9}, {0x30491,4}, {0x2bbb1,6}, {0x23c3b,8}, + {0xbac9,6}, {0x16336,10}, {0x31200,5}, {0xe9f1,11}, {0x228d0,3}, {0x24c45,6}, {0x9d95,12}, {0x23c8b,8}, + {0x2d1cd,6}, {0x1805c,5}, {0x2d953,6}, {0x1fa31,3}, {0x28573,5}, {0x3166f,3}, {0x97c5,12}, {0x2f7ae,5}, + {0x1f996,9}, {0x16fac,10}, {0x28d1e,7}, {0x2513b,8}, {0x2f6a2,3}, {0x141f8,10}, {0x1c448,9}, {0x2da67,6}, + {0x2dbcf,6}, {0x23e7d,6}, {0x91dd,12}, {0x23693,8}, {0x1e45c,7}, {0x20541,8}, {0x24dfb,8}, {0x2c28f,6}, + {0xc79c,10}, {0x28805,7}, {0x12e2a,10}, {0x12c5,9}, {0x1739e,10}, {0x2fdaa,3}, {0x6463,13}, {0x19f70,9}, + {0x148c4,10}, {0x720c,9}, {0x11838,10}, {0x314d0,3}, {0x3b61,3}, {0x49ba,13}, {0x1cb08,9}, {0x14460,3}, + {0x189a8,10}, {0x2dd5b,6}, {0x1301e,10}, {0x120fe,11}, {0x24bb3,8}, {0x5ba7,13}, {0x1b719,9}, {0x27933,5}, + {0x18034,10}, {0x2e5b3,5}, {0x10c53,6}, {0x2c5b9,5}, {0x2444b,8}, {0x64d0,4}, {0x16554,5}, {0x13d5c,10}, + {0x1de0f,9}, {0x1e1a7,4}, {0x116e5,3}, {0x24c23,5}, {0x1600c,10}, {0x2257d,6}, {0x20f89,8}, {0x27cb1,7}, + {0x17420,5}, {0x18e12,10}, {0x2acf8,7}, {0x6142,3}, {0x196c1,9}, {0x22183,8}, {0x2d551,6}, {0x31486,3}, + {0x8169,12}, {0x19e74,9}, {0x46a1,14}, {0xe13,6}, {0x2dfd9,4}, {0x1a91b,9}, {0x25943,8}, {0x15bae,7}, + {0xbce5,12}, {0x9c3f,5}, {0x11970,3}, {0x144d2,10}, {0x14838,10}, {0x2d1c9,4}, {0x25fbb,8}, {0x22393,8}, + {0x2be0f,6}, {0x1ed09,9}, {0x2a33a,7}, {0x30f39,6}, {0x2b4c2,6}, {0xcc6c,11}, {0x29448,7}, {0x19f50,5}, + {0xe13,12}, {0xe0f,16}, {0xe08,23}, {0x6ae3,13}, {0x1e520,9}, {0x26475,6}, {0x243e3,8}, {0x29479,7}, + {0x2e136,3}, {0x30c0b,4}, {0x79e9,12}, {0x2f7f4,5}, {0x2896c,4}, {0x2d9ef,6}, {0x25ab3,8}, {0x6171,13}, + {0x3165d,3}, {0x23edd,6}, {0x11229,11}, {0x166e4,7}, {0xea1d,11}, {0x1704c,10}, {0x29e4c,7}, {0x30623,4}, + {0x3174a,3}, {0x30887,6}, {0x204c1,8}, {0x2c073,6}, {0x1922f,6}, {0x25193,8}, {0x2372b,8}, {0x31672,3}, + {0x97d1,12}, {0xf2d6,11}, {0x2562b,8}, {0x2907b,7}, {0x29f12,7}, {0x2af64,5}, {0x3171a,3}, {0x572f,13}, + {0x2c655,6}, {0x11614,9}, {0x20380,8}, {0x2e79c,8}, {0x177d6,10}, {0x261d3,7}, {0x2ffce,5}, {0x1f81e,3}, + {0xe9e6,11}, {0x1f7cb,9}, {0x218cb,6}, {0x30b2d,2}, {0xca88,11}, {0x168f4,10}, {0x252cb,8}, {0x2988c,7}, + {0x284af,4}, {0x2d1a9,6}, {0x2d557,6}, {0x27763,7}, {0xd315,11}, {0xfe9,3}, {0x17d53,6}, {0x24763,8}, + {0x286d6,9}, {0x2c31f,6}, {0x2aae4,7}, {0x19202,7}, {0x20f01,8}, {0x15d46,10}, {0xcdfb,8}, {0x15328,10}, + {0x24663,8}, {0x24b65,5}, {0x1b2f3,9}, {0xdafd,6}, {0x1bb99,9}, {0x1669c,7}, {0x82b9,12}, {0x2c73,8}, + {0x1f3ed,9}, {0x61ce,11}, {0x247cd,6}, {0x2f41e,5}, {0x69ec,13}, {0x19511,9}, {0x931b,6}, {0x11dc5,11}, + {0x28f6a,7}, {0x3390,5}, {0x29d21,5}, {0x1e2e2,3}, {0x1a2eb,9}, {0x21429,8}, {0x194f6,9}, {0x29f29,5}, + {0x92b5,12}, {0x40e3,14}, {0x28a12,7}, {0x2a325,7}, {0x2e5ae,5}, {0x11aaf,9}, {0x2a5fd,5}, {0x750b,13}, + {0x2af31,7}, {0x2afc4,12}, {0x18efc,9}, {0x2f3e4,3}, {0x180fc,9}, {0x1f825,9}, {0x316c0,3}, {0x11c70,11}, + {0x22273,8}, {0x31465,3}, {0xf906,11}, {0x2a7c4,7}, {0x1880,7}, {0x169c6,10}, {0x1991c,9}, {0x312ca,3}, + {0x1d1b8,9}, {0x3101d,6}, {0x21959,8}, {0x22fab,8}, {0x27429,7}, {0x11234,11}, {0x2a5da,7}, {0x31815,4}, + {0x17f7b,5}, {0x142fc,10}, {0x9a41,12}, {0x1677,16}, {0x215a3,6}, {0x2b4b0,6}, {0x1f4e9,9}, {0xaf71,12}, + {0xdff9,10}, {0x1d49a,9}, {0x17d8c,10}, {0x194e4,4}, {0xd1b5,11}, {0x22cc3,6}, {0x23183,8}, {0x2c6eb,6}, + {0x2fd80,5}, {0x2ff9c,5}, {0x2d319,4}, {0xf1bc,7}, {0xce9d,11}, {0x24ebe,5}, {0xd761,11}, {0x23a7b,5}, + {0x1de45,9}, {0x314a6,3}, {0x1acc3,9}, {0x2c0c1,6}, {0x1e9f1,8}, {0x21be9,8}, {0x2e4aa,5}, {0x2a7f5,5}, + {0x2fe66,5}, {0x314b9,3}, {0x26643,8}, {0x3077a,4}, {0x1f8a5,7}, {0x3132d,3}, {0x212eb,5}, {0x10e14,11}, + {0x1e0ab,6}, {0x2c03,4}, {0x2fb64,5}, {0x174ca,10}, {0x10781,11}, {0x28d3d,4}, {0x29c69,7}, {0x20519,8}, + {0x659b,13}, {0x2e15d,6}, {0x1ebc5,9}, {0x183b8,10}, {0x16d4f,5}, {0x4bdc,13}, {0x10c25,5}, {0x2d5b1,6}, + {0x2b797,6}, {0x176e6,8}, {0x3185,6}, {0x31615,3}, {0x1cecd,5}, {0x4439,6}, {0x29353,7}, {0x12a56,10}, + {0xb3cd,12}, {0x2d81b,6}, {0x133fc,10}, {0x1d5cc,9}, {0x2a025,3}, {0x60fc,13}, {0x2fa58,3}, {0x1087e,11}, + {0x23ddb,8}, {0xbdef,5}, {0x1b854,9}, {0x115f3,9}, {0x11394,5}, {0x1baca,9}, {0xd4a1,11}, {0x39ff,14}, + {0x18714,10}, {0x11eee,11}, {0x67dd,6}, {0x177f4,10}, {0x25b7b,8}, {0x2b37,15}, {0x2e117,4}, {0x254f3,8}, + {0x1d5b3,5}, {0x2938b,7}, {0x29f04,7}, {0xdfd8,11}, {0x5ff8,13}, {0x2692b,7}, {0x14112,10}, {0x2fc31,5}, + {0xb5eb,2}, {0x19ee9,6}, {0x2a0b,15}, {0x1191,17}, {0x2f091,5}, {0x30d09,2}, {0x1bbe1,9}, {0xf7b1,11}, + {0x1dfe3,9}, {0x2a32c,7}, {0x299de,7}, {0x76c7,11}, {0x2ea61,5}, {0x8f7c,3}, {0x2e581,5}, {0xee06,11}, + {0x117f6,11}, {0x2857f,7}, {0x3518,9}, {0x2a152,3}, {0x205a8,2}, {0x18f56,9}, {0x3147b,3}, {0x17236,6}, + {0x2fbe1,5}, {0x2e73e,5}, {0x2f0f0,5}, {0x910b,6}, {0x2f048,2}, {0x31137,6}, {0x9951,12}, {0x17b54,8}, + {0x3771,5}, {0x1b2e1,9}, {0x26c3b,7}, {0x17ca6,10}, {0x2f441,5}, {0xc1d3,10}, {0x1cf66,9}, {0x211cb,6}, + {0x10432,6}, {0xec2d,11}, {0x29402,7}, {0x45c1,11}, {0x31357,3}, {0x1510c,10}, {0x24403,8}, {0x2d215,6}, + {0x2f5ef,5}, {0x1e9f1,7}, {0x29c15,7}, {0x2d6a1,6}, {0x31167,6}, {0x1debf,4}, {0x1e919,9}, {0x7931,4}, + {0x6d4c,7}, {0x3823,12}, {0x15eae,10}, {0x3154f,3}, {0x189b2,10}, {0xb00d,12}, {0x7650,13}, {0x159fe,10}, + {0x88c5,12}, {0x27b5a,7}, {0xc63c,11}, {0x1816a,9}, {0x1b5a8,9}, {0x449d,2}, {0x1527,10}, {0x2571b,8}, + {0xbedd,12}, {0x11ac3,11}, {0x2e169,6}, {0x12396,4}, {0x25d3d,6}, {0x1ec57,7}, {0xc062,4}, {0x4530,4}, + {0x6d2e,5}, {0x4f60,10}, {0x179c,5}, {0x13e1a,10}, {0x2a379,7}, {0x31131,6}, {0x1a900,9}, {0x2289b,8}, + {0x2d3bf,6}, {0x26725,6}, {0x2fc9f,5}, {0x174a4,5}, {0x2e57c,5}, {0xd0ef,11}, {0x17cec,10}, {0x25ee3,8}, + {0x2e92e,7}, {0x1a11b,5}, {0x1ce10,8}, {0x29314,7}, {0x304df,4}, {0x18fc2,4}, {0x74b2,11}, {0xf764,11}, + {0x2f91b,5}, {0x2cf89,3}, {0xd383,11}, {0x2f45f,5}, {0xdc47,11}, {0x1a03f,9}, {0x17f00,8}, {0x2899b,7}, + {0x1f7ef,6}, {0x19775,9}, {0x21903,6}, {0x306c7,4}, {0x2cee5,6}, {0x2cd67,4}, {0x1617,16}, {0x1c1ed,9}, + {0x28cca,7}, {0x2fcfe,5}, {0xee4,19}, {0x24adb,8}, {0x61d9,13}, {0x2d3b3,6}, {0x3bbf,12}, {0xdf6e,7}, + {0x1bd13,9}, {0x304b1,4}, {0xef92,11}, {0x24f3b,8}, {0xb4b3,4}, {0x2274b,8}, {0x169da,10}, {0x29528,7}, + {0x23843,8}, {0x2ca8f,6}, {0x17e22,10}, {0x25430,2}, {0x384d,14}, {0x2b432,6}, {0x2be6f,6}, {0x18b47,5}, + {0x1687c,10}, {0x2b19,15}, {0x17d3e,8}, {0x35bb,14}, {0x11f41,5}, {0x2a550,5}, {0x3b5d,14}, {0x26c26,7}, + {0x785b,2}, {0x1574e,8}, {0xe298,11}, {0x11b68,6}, {0x14cde,10}, {0x123c6,9}, {0x11ea1,11}, {0x31955,4}, + {0xc034,4}, {0x3cbd,12}, {0x2e49b,4}, {0x25023,8}, {0x2d87b,6}, {0x2aff4,12}, {0x28b67,5}, {0x149f0,7}, + {0x212a1,8}, {0x2c373,6}, {0xdb21,4}, {0x9fce,5}, {0x2aa10,7}, {0x1b885,5}, {0xd0fa,6}, {0x31591,3}, + {0x24d25,4}, {0x9b6d,12}, {0x10776,6}, {0x2fde9,5}, {0xbb35,12}, {0x17e1e,4}, {0x26143,6}, {0x6e30,13}, + {0x10adb,5}, {0x2028d,9}, {0x3c59,14}, {0x16b96,6}, {0x315c0,3}, {0x2e97b,4}, {0x30046,5}, {0xd814,5}, + {0x176a2,5}, {0x2bcf5,6}, {0xb469,12}, {0x4631,14}, {0x2ff79,5}, {0x23ceb,8}, {0x2f37e,5}, {0xcd32,11}, + {0x312c7,3}, {0x1387,16}, {0x1a07,4}, {0x304a5,4}, {0x23cb3,8}, {0x11725,11}, {0x3079d,7}, {0x21da1,8}, + {0x10dc7,11}, {0x2546b,8}, {0x18fa7,4}, {0x2e202,3}, {0xfdbb,5}, {0x2a92b,5}, {0x7b51,12}, {0x1ef25,5}, + {0x4f43,12}, {0x1a72c,9}, {0x1cd6e,9}, {0xb33d,12}, {0x14844,8}, {0x869d,12}, {0x12a2e,10}, {0xd3ba,11}, + {0x2a9bc,7}, {0x1b023,6}, {0xf113,11}, {0x2ed92,5}, {0x31aad,2}, {0x5228,13}, {0x290f2,7}, {0x17600,10}, + {0x294b1,7}, {0x2b9ef,6}, {0x3c75,14}, {0x28c84,7}, {0xbf49,9}, {0x26b4,15}, {0x2632b,8}, {0x2e26b,6}, + {0xbdf2,7}, {0x252e,15}, {0x1b17b,7}, {0x18ad4,10}, {0x1b143,9}, {0x1c21a,9}, {0x24a3d,6}, {0xab45,12}, + {0x72fb,3}, {0x2578b,6}, {0x2fa6f,5}, {0x21a7b,5}, {0x7eb3,5}, {0x2a1b4,4}, {0xfe23,10}, {0x2eb3a,5}, + {0x316ed,3}, {0x1e46c,9}, {0x2f8ad,5}, {0xc1b9,12}, {0x2b7df,6}, {0xd751,4}, {0x2efc1,3}, {0x23493,8}, + {0xb387,2}, {0x17fa0,4}, {0x261cd,6}, {0x25913,8}, {0x2015d,7}, {0x12e16,10}, {0x2f524,3}, {0x25013,8}, + {0x2ff3d,5}, {0x67b0,13}, {0x26d5a,7}, {0x27b3e,7}, {0xe9a4,11}, {0x208d9,8}, {0x2aa17,7}, {0x314d,14}, + {0xb957,10}, {0x2a4fa,7}, {0x123f1,6}, {0x11795,3}, {0x2a578,7}, {0x1e223,6}, {0x26423,5}, {0x1d36,15}, + {0x171d2,7}, {0x2f365,5}, {0x31780,3}, {0x81c4,4}, {0x1eecd,5}, {0x938d,12}, {0x99e1,12}, {0x16c82,10}, + {0x2e6bb,2}, {0x2fc79,3}, {0x12cfe,9}, {0x4e9a,13}, {0x1eda2,9}, {0x2635b,8}, {0x75ce,5}, {0x1f87f,9}, + {0x186c8,5}, {0x1ecdc,9}, {0x1d1af,9}, {0x2f306,5}, {0x2f42d,5}, {0x2f99d,5}, {0x2e2be,5}, {0x26003,8}, + {0x167f0,10}, {0x2aa80,7}, {0x2db35,4}, {0x4e43,5}, {0x17a8f,4}, {0x17896,7}, {0x16ff2,10}, {0x1ded7,3}, + {0x1919,3}, {0x2f48c,5}, {0x29301,5}, {0x26e6b,7}, {0x4fdf,13}, {0x2bf89,6}, {0x2f203,7}, {0x307b4,2}, + {0x30f75,6}, {0x26fbe,4}, {0x286ac,7}, {0x2f096,5}, {0x62df,9}, {0x2fad0,3}, {0x1260e,6}, {0x80c8,5}, + {0x1007,18}, {0x1f26a,6}, {0x17416,7}, {0x190c7,9}, {0xac8f,5}, {0x23193,8}, {0x2d33b,6}, {0x4305,14}, + {0x2db8d,6}, {0x29730,5}, {0x2ebbc,5}, {0x251f3,8}, {0x2ea4d,5}, {0x166a6,10}, {0x10efb,11}, {0x28619,7}, + {0x7cca,7}, {0x181bc,8}, {0x30757,4}, {0x2621,6}, {0x1f77,4}, {0xf649,8}, {0xb398,5}, {0x21339,8}, + {0x1e28f,9}, {0x242fd,6}, {0x6748,13}, {0x10f1c,11}, {0x2dfd3,4}, {0x2785f,7}, {0x1bd88,9}, {0xef50,11}, + {0x27816,3}, {0x1199,4}, {0x3141d,3}, {0x1b344,9}, {0x12f38,10}, {0x2d53f,6}, {0x26d1d,5}, {0x2deae,3}, + {0x2141,15}, {0x2f1ea,5}, {0x7b54,2}, {0x77b5,7}, {0x1f941,4}, {0xc9bb,7}, {0x18962,10}, {0x2f1d,14}, + {0x14afe,10}, {0x2c691,6}, {0x15d8e,5}, {0x2b725,6}, {0x296d3,7}, {0x9369,9}, {0x6581,13}, {0x17259,5}, + {0x2223b,8}, {0x27f7b,7}, {0x2c577,6}, {0x10264,11}, {0x29b04,7}, {0x20411,8}, {0x27dc9,7}, {0x2f4af,5}, + {0x2639e,5}, {0x4589,14}, {0x23b03,8}, {0x1074,9}, {0xb3a9,12}, {0x248b,13}, {0x17f26,10}, {0x49a4,4}, + {0x17c6c,7}, {0x2fc65,3}, {0x2885,15}, {0x2e21,14}, {0x1e235,9}, {0x29165,4}, {0x22595,4}, {0x1d02c,7}, + {0x1ee9e,9}, {0x26c8b,4}, {0x3425,14}, {0x25453,8}, {0x2feb1,5}, {0x7e51,12}, {0x18ac0,10}, {0xfad,18}, + {0x9b49,11}, {0x15e4a,10}, {0x15492,8}, {0x5235,13}, {0x246e3,8}, {0x1ea03,6}, {0x12f06,10}, {0x18a94,4}, + {0x4d55,13}, {0x1f984,9}, {0x2b23a,6}, {0x304ad,4}, {0x30587,4}, {0xc836,11}, {0x1e154,9}, {0x20421,8}, + {0x271ac,7}, {0x30a53,4}, {0x2f80f,3}, {0x2c043,6}, {0x2b551,6}, {0x17533,3}, {0x297b3,7}, {0x2d7df,6}, + {0x17fda,10}, {0x183c2,10}, {0x1ec98,2}, {0x2b35a,6}, {0x23b45,5}, {0x2add,15}, {0x1cecd,9}, {0x28d3a,4}, + {0x1a78,12}, {0xb745,11}, {0x29f35,6}, {0x19e41,6}, {0xad98,5}, {0x24c1b,8}, {0x10be7,5}, {0x5341,4}, + {0x1de18,9}, {0x24b23,8}, {0x2c41b,6}, {0xdd86,11}, {0x1152d,2}, {0xbf31,12}, {0x1fef7,9}, {0x2a7d9,7}, + {0x73d5,3}, {0x2835d,7}, {0xaacd,12}, {0x1061,2}, {0x1fa70,7}, {0x9c69,12}, {0x121fa,10}, {0x1c7f0,9}, + {0x791d,11}, {0x128bc,10}, {0x2db93,6}, {0x1e286,9}, {0x310ef,6}, {0xd087,5}, {0xb192,3}, {0x38af,14}, + {0x2f295,3}, {0x22123,8}, {0x194f8,5}, {0x23b8d,6}, {0x2e2dc,5}, {0x5881,13}, {0x2a98b,6}, {0x18b88,10}, + {0x2aec8,7}, {0x2d8b9,4}, {0xafad,12}, {0x1fae3,9}, {0xc1c5,12}, {0x16934,6}, {0x10b33,6}, {0x2024e,9}, + {0x13492,10}, {0xa569,10}, {0x21649,8}, {0x10918,10}, {0x30fb,5}, {0x14f4a,10}, {0x5782,4}, {0xfe9c,11}, + {0x1c2c0,5}, {0x217e9,8}, {0x16721,4}, {0x24cc5,3}, {0x23fb3,8}, {0xb8c5,12}, {0x27c8e,7}, {0x1d9fb,9}, + {0x19f7,16}, {0xc6da,7}, {0x20999,6}, {0x2725b,7}, {0x32e9,8}, {0x12a8,2}, {0xfcc6,8}, {0x5165,13}, + {0x11cff,11}, {0x2e5fe,5}, {0x6fa9,12}, {0x15af8,10}, {0xb54d,12}, {0x15832,10}, {0x119bb,11}, {0x222eb,8}, + {0x187ca,8}, {0x267b1,7}, {0x2ece3,5}, {0x4270,8}, {0x1645a,8}, {0xbe7d,12}, {0x1e30f,7}, {0x3283,6}, + {0x264f3,8}, {0xf56a,11}, {0x17a8a,10}, {0x2a60b,7}, {0x260d3,8}, {0x1bc0e,9}, {0x27071,7}, {0xdd0d,11}, + {0x2ee41,5}, {0x1709e,8}, {0x1f411,9}, {0x31470,3}, {0x1e93d,6}, {0x286b3,7}, {0x2ced3,6}, {0x2dfdf,4}, + {0x2a9e6,6}, {0x2d9ad,6}, {0x1a577,5}, {0x31dd,4}, {0x2c3cd,6}, {0x25cc3,8}, {0x2c84f,3}, {0x1be57,9}, + {0x2549b,8}, {0xc80a,11}, {0x1a870,9}, {0x2ccdb,6}, {0x2a214,7}, {0x5726,3}, {0x1c529,9}, {0x1f4d7,9}, + {0x25aeb,8}, {0x2f5db,5}, {0x25c3b,8}, {0x30441,4}, {0x2a2a9,5}, {0x1f8d0,9}, {0xeb8c,3}, {0x1569c,6}, + {0x306ac,3}, {0x1564a,7}, {0x287e9,7}, {0x2fb2d,5}, {0x31a8d,2}, {0x1fc83,7}, {0x34a3,14}, {0x2f925,5}, + {0xf7e8,11}, {0x1fc27,9}, {0x83e5,9}, {0x264d3,8}, {0x314a7,3}, {0x2aa48,7}, {0xd572,11}, {0x29345,7}, + {0xe3a0,11}, {0xe579,11}, {0x2c223,6}, {0x2c907,5}, {0x2623,3}, {0x2ce31,6}, {0x153e8,7}, {0x2a2c3,7}, + {0x18342,7}, {0xeff7,9}, {0x30b89,2}, {0x148ce,10}, {0x15f35,5}, {0xe311,11}, {0x2a10a,7}, {0x11cfa,5}, + {0x2245b,5}, {0x1c666,7}, {0x1302,4}, {0x1f008,4}, {0xf0de,9}, {0xfeff,11}, {0x10bb7,11}, {0x2a9d8,7}, + {0x9441,12}, {0x6610,13}, {0x17b84,10}, {0x31260,3}, {0x25925,6}, {0x1a291,9}, {0x12bf2,5}, {0x1486a,10}, + {0x85e9,9}, {0x6cfb,4}, {0x31a76,2}, {0x186b2,8}, {0x306f3,4}, {0x26813,7}, {0x29c8e,5}, {0x30005,5}, + {0x194ae,9}, {0x2035c,9}, {0x224eb,8}, {0x171b4,10}, {0x23103,8}, {0x8c19,12}, {0x1df9,15}, {0x35c9,10}, + {0x2984d,7}, {0x717d,7}, {0x17dfa,6}, {0x30fed,6}, {0xf8e,6}, {0x2402,15}, {0x10340,11}, {0x2d78e,3}, + {0x18cf2,8}, {0x89f1,12}, {0x1d9ce,5}, {0x2f67d,5}, {0x6993,10}, {0x86a9,12}, {0x4783,2}, {0x1035c,5}, + {0x28268,7}, {0x1f5a8,3}, {0x2258b,8}, {0x1a72e,6}, {0x18774,3}, {0x7527,2}, {0x22b63,8}, {0x2c739,6}, + {0x1583c,10}, {0x1d9aa,9}, {0x5d7b,13}, {0x2cb61,6}, {0x1f5e5,9}, {0x596e,4}, {0x1f80a,9}, {0x9227,7}, + {0x1a21c,9}, {0x3053f,4}, {0x1ff09,9}, {0x2b330,6}, {0x10e1f,11}, {0x292f8,7}, {0x2efb7,3}, {0x10d9b,11}, + {0x2ee2f,3}, {0x29893,7}, {0x25eb3,8}, {0x2ef65,5}, {0x11b07,9}, {0x17da0,7}, {0x3302,4}, {0x1aaf8,9}, + {0x15ef4,10}, {0x6177,4}, {0x747c,13}, {0x1e6ac,6}, {0x5faa,13}, {0xfdcb,11}, {0x2930f,5}, {0x255bb,8}, + {0xa314,9}, {0x288a6,7}, {0x29a6a,7}, {0x2be2d,6}, {0x314bf,3}, {0x2e6b1,3}, {0x23273,8}, {0x28516,7}, + {0x2d977,5}, {0x2fef,14}, {0x294c8,4}, {0x2f14a,5}, {0x2a7bd,7}, {0x2c1f,6}, {0x2ae7b,7}, {0x75d0,9}, + {0x1ddfd,9}, {0x319c9,4}, {0x2ba19,6}, {0x134fa,6}, {0x20be9,8}, {0x143f6,9}, {0x2f97f,5}, {0x29ad5,5}, + {0xc8f1,11}, {0x1e6a3,9}, {0x2332,3}, {0x60f1,9}, {0x1e66d,9}, {0x16278,10}, {0x2ac57,7}, {0x137b,12}, + {0x311b5,5}, {0x1b77c,9}, {0x28939,7}, {0x2cf63,6}, {0x2c8d,4}, {0x2913a,5}, {0x7604,11}, {0x1b533,9}, + {0x2dfe5,4}, {0x5276,13}, {0x1d6a4,9}, {0x1ff5a,6}, {0x2d083,6}, {0xd7ea,6}, {0x304d7,4}, {0x1043,11}, + {0x5bdb,12}, {0x28dd4,7}, {0x2ede2,5}, {0x5471,8}, {0xa3ad,9}, {0x210a9,8}, {0x748b,11}, {0x14f86,10}, + {0x2d34d,6}, {0x2e69e,5}, {0x1bc9e,8}, {0x2dc11,6}, {0x12de4,10}, {0x2bec9,6}, {0x20439,8}, {0x1acf,5}, + {0x1759,10}, {0x13ed3,5}, {0x2fce0,5}, {0x30014,5}, {0x8121,12}, {0x306df,4}, {0x10007,11}, {0x2d3f5,6}, + {0x14b9e,10}, {0x2fc59,5}, {0x17470,10}, {0x24c35,6}, {0x294b8,7}, {0x2d779,6}, {0x5b9a,13}, {0x2fe07,5}, + {0x7235,9}, {0x29296,7}, {0x566c,13}, {0x2d4e2,3}, {0x255db,8}, {0x7580,13}, {0x31390,3}, {0x6fd2,3}, + {0x2f192,3}, {0x29dd0,2}, {0x107ef,11}, {0x12a1,17}, {0x2fb19,5}, {0x29552,7}, {0x123c6,10}, {0x2fc36,5}, + {0x2baf7,6}, {0xbd69,12}, {0x1ced6,9}, {0x18be4,6}, {0x1610,3}, {0x2d19d,5}, {0x222d3,8}, {0x2b533,4}, + {0x2cea9,6}, {0xf5b7,10}, {0x565f,13}, {0x30c5d,2}, {0x1242a,10}, {0x1142e,11}, {0x9bd4,5}, {0x13a16,8}, + {0x27238,7}, {0x2ec48,4}, {0x1ca5,3}, {0x2cbb7,4}, {0x1286c,10}, {0x30b3,14}, {0x2850f,6}, {0x2fc63,5}, + {0x2f1c7,4}, {0x31660,3}, {0x315a6,3}, {0x1acaa,7}, {0x315df,3}, {0x12918,7}, {0x242b5,6}, {0x15230,7}, + {0x8b3b,6}, {0x1deba,9}, {0x31149,6}, {0x1839,7}, {0x2c499,6}, {0xc8d5,6}, {0x273a4,7}, {0x208a9,8}, + {0x1b574,4}, {0x2e7f4,8}, {0x19dd2,9}, {0x63e1,13}, {0x2d629,6}, {0x11c30,6}, {0x23b93,8}, {0x9b4b,5}, + {0x11f48,4}, {0x149a0,10}, {0x2411,15}, {0x9d9d,4}, {0x13b68,10}, {0xb4d5,11}, {0x17a3a,10}, {0x2a130,4}, + {0x2ca1b,6}, {0x1bf1,8}, {0x316b4,3}, {0x2eacc,5}, {0x1f033,9}, {0x17986,9}, {0x1ae6a,9}, {0x24153,6}, + {0x263be,5}, {0xb0f1,12}, {0x18932,8}, {0x2856a,7}, {0x2926c,7}, {0x30373,7}, {0x2ef29,5}, {0x260ed,6}, + {0x1f648,9}, {0x1dd25,9}, {0x29ee8,3}, {0x2d55f,4}, {0x318e1,4}, {0x8abf,9}, {0x1e5e6,9}, {0x1e1d2,9}, + {0x1757e,10}, {0x157a,2}, {0x240e3,8}, {0xb543,4}, {0x21189,8}, {0x30d2b,4}, {0x21aa1,5}, {0x28f49,5}, + {0xc820,11}, {0x93bd,12}, {0x2f1ea,4}, {0x14a9,10}, {0x2c7f9,6}, {0x1bcfa,7}, {0x2a017,5}, {0x2f17e,3}, + {0x20e39,8}, {0x2d7eb,6}, {0x2f2b6,5}, {0x2f81c,5}, {0x21e15,5}, {0x3109d,4}, {0x92d9,12}, {0x26860,7}, + {0x38cb,14}, {0x8961,10}, {0x5430,13}, {0x1b1f7,9}, {0x1b941,6}, {0x1fd23,9}, {0x2f904,3}, {0x1c678,7}, + {0x1087e,7}, {0x839d,12}, {0x3de1,14}, {0x2a1ea,7}, {0x103d,17}, {0x2818f,7}, {0x2307,11}, {0xc22b,11}, + {0x1a66,6}, {0x3db7,14}, {0x17968,7}, {0x16561,5}, {0x114c8,11}, {0x18860,4}, {0x2a8b2,7}, {0x12dbc,10}, + {0x1dcfa,3}, {0x1219,17}, {0x257f5,6}, {0x1b596,9}, {0x2f673,5}, {0x25ca3,8}, {0x264e3,8}, {0x1ce07,9}, + {0x5f9d,13}, {0x184f8,9}, {0x1c0c,8}, {0xcee4,4}, {0x2bd5,14}, {0x2299b,8}, {0x21b69,7}, {0x2421b,8}, + {0x30421,4}, {0x27572,7}, {0x1ff99,9}, {0xc159,12}, {0x26795,7}, {0x23c13,8}, {0x11e5f,6}, {0x19f31,9}, + {0x11feb,11}, {0x2fc2c,5}, {0x13b72,10}, {0xfe44,11}, {0x30a5b,4}, {0x2766e,7}, {0xe025,10}, {0x2ff5b,5}, + {0x307be,4}, {0x14f7,16}, {0xb6ff,7}, {0x17466,5}, {0x2d24d,3}, {0x1475c,10}, {0x269c0,5}, {0x1983b,9}, + {0x1ccd,15}, {0x14a7e,7}, {0x2bc7,14}, {0x2e163,6}, {0xaf2,22}, {0x2e4d2,5}, {0xc576,11}, {0xcf9a,11}, + {0xeec1,11}, {0x31aa5,2}, {0x2262b,8}, {0x1664c,10}, {0x2cdf7,4}, {0x7cb9,12}, {0x1f07,15}, {0xa4d9,9}, + {0xae2d,11}, {0x2ebda,5}, {0x1e59e,9}, {0x2f4de,3}, {0x19a9,3}, {0x1b452,8}, {0x25253,8}, {0x15461,7}, + {0x561e,13}, {0x2a13b,7}, {0x1e86e,9}, {0x257d3,8}, {0x2cba9,6}, {0x1161d,11}, {0x2a5a2,7}, {0x25adb,8}, + {0x1a86,6}, {0x1b8b7,9}, {0x1ca8a,9}, {0x2d72b,6}, {0x30f81,6}, {0x62b6,13}, {0x2c00d,6}, {0x2d96b,6}, + {0x2f0c5,3}, {0x2d991,2}, {0x26223,8}, {0x3f55,6}, {0x1e348,4}, {0x8571,12}, {0x2bd85,6}, {0xb5a1,6}, + {0x18f32,9}, {0x26963,7}, {0x4b19,13}, {0xcdd7,11}, {0x7cd5,6}, {0x2201b,8}, {0x31921,4}, {0x1b98f,9}, + {0x188d8,7}, {0x240f3,5}, {0x2637d,5}, {0x8025,12}, {0x21db1,10}, {0x1fe28,9}, {0xa231,6}, {0x2799c,4}, + {0x3bdb,14}, {0x1b797,9}, {0x272b6,7}, {0x25093,6}, {0x2d419,6}, {0x1df79,6}, {0xba83,4}, {0x21779,8}, + {0xe06b,7}, {0x2976d,7}, {0x184dc,8}, {0x2e157,6}, {0x23d5d,4}, {0x2ea4,6}, {0xfd4c,6}, {0x2b62f,6}, + {0x25a63,5}, {0x30cbb,4}, {0x2ddbb,6}, {0x174c0,9}, {0x77fd,13}, {0x2e6df,5}, {0x1e298,9}, {0x2d27,11}, + {0x2cfc9,6}, {0xc7a9,9}, {0x2e400,5}, {0x13578,10}, {0x28c3e,7}, {0x12ef2,10}, {0x2ed9c,5}, {0x66c2,4}, + {0x8f6d,6}, {0x9b3d,12}, {0x244a3,7}, {0x3149b,3}, {0xe5a5,11}, {0x24823,8}, {0x12f7e,10}, {0x15e90,10}, + {0x23d7b,8}, {0x21e65,6}, {0xf15,8}, {0xc58c,11}, {0x1fff3,9}, {0x29d1,2}, {0x25b2b,8}, {0x24c35,3}, + {0x314aa,3}, {0x121be,10}, {0x27a2d,7}, {0x16052,10}, {0x2e8c0,5}, {0xc340,5}, {0x19686,4}, {0x12182,10}, + {0x1f5ee,9}, {0xe5bb,11}, {0x14e6e,10}, {0xc3d6,6}, {0x113a4,5}, {0xca72,11}, {0x1e328,9}, {0x182a0,10}, + {0x30933,4}, {0x2df68,3}, {0xc65d,11}, {0x1cd92,9}, {0xcf16,11}, {0x1e6b7,3}, {0x2a44b,5}, {0x27cc6,7}, + {0xd92f,11}, {0x3001e,5}, {0x24f6,11}, {0x150b,9}, {0x11dc7,4}, {0x31438,2}, {0x16e12,10}, {0x10e7,6}, + {0x3133f,3}, {0x14900,10}, {0x2d03b,6}, {0x22a5b,8}, {0x3155b,3}, {0x7310,9}, {0x9542,2}, {0x2fc97,3}, + {0x1d062,9}, {0x318d9,4}, {0x16c78,10}, {0x127f,17}, {0x2418b,8}, {0x18252,6}, {0x1de4e,9}, {0x30577,4}, + {0x23ea5,6}, {0x2bdbb,6}, {0x15ac6,10}, {0x292dc,7}, {0x254b0,2}, {0x2f30b,5}, {0x2cad7,6}, {0x27026,5}, + {0x929d,12}, {0x599a,5}, {0x2c169,6}, {0x24d75,3}, {0x15d96,10}, {0x2f3c9,5}, {0x2cd3b,6}, {0x1d694,6}, + {0x16a7a,10}, {0x1a1c5,6}, {0x2df7,14}, {0x2d9b9,6}, {0x2fd21,5}, {0x15cec,9}, {0x1e097,9}, {0x319d9,4}, + {0xb90d,12}, {0x1d4b7,7}, {0x29409,7}, {0x29a01,7}, {0x2ad72,4}, {0x17e9a,10}, {0xb5b9,12}, {0x1110b,11}, + {0x73d3,13}, {0x2e17b,6}, {0x17abc,5}, {0x24e83,8}, {0xab48,5}, {0x18fb9,9}, {0x9cb1,12}, {0x171f2,8}, + {0xae75,12}, {0x11788,11}, {0x1d7a2,7}, {0x2c793,6}, {0x74f8,3}, {0x672e,13}, {0x1fedc,9}, {0x1fdad,6}, + {0x2957c,7}, {0x20d2d,4}, {0x13c58,10}, {0x1aae8,6}, {0x19d03,8}, {0x24ffb,8}, {0x30d0b,4}, {0x31642,3}, + {0x1f315,9}, {0x2d9a1,5}, {0x1ff9e,3}, {0x3599,4}, {0x1420c,10}, {0x4471,14}, {0x18610,10}, {0x2e1d2,3}, + {0x1020c,11}, {0x113ac,9}, {0x3107d,6}, {0xa487,7}, {0xee32,11}, {0x106dc,11}, {0x29df8,5}, {0x2e4d7,5}, + {0x1472a,10}, {0x24553,8}, {0x106bb,11}, {0x26c13,5}, {0x22b93,6}, {0x2c74b,6}, {0x2c8e9,6}, {0x18098,10}, + {0x6d1f,13}, {0x170ce,10}, {0x1999a,9}, {0x151ca,10}, {0x1e796,9}, {0xfb2c,11}, {0x31a45,4}, {0x1b3a7,9}, + {0x168fe,10}, {0x1ded8,6}, {0x2a849,7}, {0x1b383,9}, {0x15a9,5}, {0x2b2d0,6}, {0x19e9c,5}, {0x123f8,10}, + {0xceb3,11}, {0x29838,7}, {0x7e93,5}, {0x255a5,6}, {0x2a651,7}, {0xae1a,7}, {0x1d9f,15}, {0x2f195,5}, + {0x977d,12}, {0x31ac7,2}, {0x2ad06,7}, {0x2da61,6}, {0x23483,8}, {0x2c199,6}, {0x6ee6,13}, {0x10eda,11}, + {0x97d1,11}, {0x1185b,8}, {0x2fcdd,3}, {0x3170d,3}, {0x2a8c0,7}, {0x1138e,6}, {0x23c4b,8}, {0xec50,5}, + {0x2c1cb,4}, {0x724d,13}, {0x19cdf,9}, {0x2500b,8}, {0x21a81,8}, {0x2fcae,5}, {0x272a8,7}, {0x1cedf,9}, + {0x18066,10}, {0x1ed90,9}, {0x2d329,4}, {0xeb25,11}, {0x2336b,8}, {0x2f6c8,5}, {0xec6,11}, {0x2234b,4}, + {0x3655,14}, {0x2eb64,3}, {0x17f5a,8}, {0x4a8a,13}, {0x2ac49,7}, {0x114e0,2}, {0x314ac,3}, {0x2adb7,7}, + {0x25d5e,3}, {0x12344,10}, {0x21b01,8}, {0x2fc56,3}, {0xc42c,11}, {0x1de8d,9}, {0x1d48a,7}, {0x21a01,8}, + {0x127f,7}, {0x4016,9}, {0x21b61,6}, {0x20781,8}, {0x14298,10}, {0x2eb9e,5}, {0xe82e,11}, {0x9e33,5}, + {0x2cbf1,6}, {0x318ad,4}, {0x215d1,8}, {0x2cbc1,6}, {0x100cd,11}, {0x1d38e,4}, {0xc2ab,11}, {0x8eb9,12}, + {0x277c5,7}, {0x2fed9,5}, {0x1909,9}, {0x16ad,4}, {0x287cd,7}, {0x1f0cc,7}, {0x19d7,12}, {0x4f43,5}, + {0x1eb1a,9}, {0xaf4f,5}, {0x1e784,9}, {0x14402,8}, {0x920d,12}, {0x13ec4,10}, {0x5722,13}, {0x1a828,9}, + {0x1e04a,5}, {0x10ca9,11}, {0x2cabf,5}, {0x2d4f1,6}, {0xa56e,7}, {0x26b8c,7}, {0x2cc4b,6}, {0x16e66,6}, + {0x8dd5,12}, {0xe12d,8}, {0x13384,10}, {0x2f693,3}, {0x2e2c2,4}, {0x18f29,9}, {0x2217,3}, {0x2503f,3}, + {0x6e8b,13}, {0x10a15,11}, {0x13dac,10}, {0x280d,15}, {0x31375,3}, {0x12fb0,10}, {0xb595,12}, {0x18f14,3}, + {0x2b34e,6}, {0x110d6,6}, {0x845d,12}, {0x277fd,7}, {0x2f1db,5}, {0x2f540,5}, {0xbd39,12}, {0x1f73e,6}, + {0x1499c,4}, {0x2e6e0,4}, {0x30050,5}, {0x2d9d3,4}, {0xbf93,5}, {0x315a3,3}, {0x1df02,9}, {0x2a483,7}, + {0x2dd7f,6}, {0x4743,3}, {0x1dacc,7}, {0x1118b,3}, {0x2fc6f,3}, {0x11746,11}, {0x27b0d,7}, {0x305e3,4}, + {0x8cf1,12}, {0x2cbe5,6}, {0x453a,3}, {0x2b9cb,5}, {0x29dff,7}, {0x11d17,4}, {0xb4b1,12}, {0x13730,10}, + {0x30a13,4}, {0x29322,7}, {0x8295,12}, {0x24223,8}, {0x14ffe,10}, {0xbd5d,11}, {0x25413,8}, {0x1fe82,9}, + {0x2e78e,6}, {0x2cdd4,3}, {0x29a5c,7}, {0x20879,8}, {0x2489b,8}, {0x1967,8}, {0x29c0,15}, {0x8e71,12}, + {0x24723,8}, {0x1e5d4,9}, {0x1acde,9}, {0x1c166,9}, {0x30ac7,4}, {0x18ebc,8}, {0x19523,9}, {0x1d0aa,9}, + {0x2ec63,3}, {0x121dc,10}, {0x58cf,13}, {0x10028,11}, {0x1d81e,9}, {0x246ad,5}, {0x1a29,8}, {0xb619,12}, + {0x1f180,9}, {0x1daba,7}, {0x8aff,5}, {0x98d9,12}, {0xbdf9,12}, {0x21feb,7}, {0x2c7c3,6}, {0x3293,2}, + {0x225d3,8}, {0x16b6c,8}, {0x314ef,3}, {0x1ea5d,9}, {0x2c6b5,6}, {0x1f408,9}, {0x1057c,11}, {0x2fe0c,5}, + {0x59f4,5}, {0x27f04,7}, {0x6408,13}, {0xaba5,12}, {0x23f25,3}, {0x16f52,10}, {0x1f705,9}, {0x404b,7}, + {0x31ae9,2}, {0x53ef,13}, {0x27fcf,7}, {0x21a5b,6}, {0x1290c,10}, {0xd546,6}, {0x2d143,6}, {0x4d14,13}, + {0x130df,4}, {0x127f,16}, {0x25113,8}, {0x7e75,6}, {0x821d,5}, {0x1491e,10}, {0x24b0b,8}, {0x174a,3}, + {0x1a9ea,7}, {0x22f2b,8}, {0xc14,34}, {0xc117,3}, {0x2b1da,6}, {0xb237,3}, {0x10d92,6}, {0x1710f,5}, + {0x2cb0f,4}, {0x2e54a,5}, {0x4ff9,13}, {0x1c1d4,6}, {0xb601,12}, {0x9be5,12}, {0x57ff,13}, {0x2353b,8}, + {0x2d7fd,6}, {0x263d3,8}, {0x3000a,5}, {0x3057b,4}, {0x3065f,4}, {0x2d97f,4}, {0x92fd,12}, {0x1b5c3,5}, + {0x63ba,13}, {0x215f1,8}, {0xfa66,11}, {0x2e081,4}, {0x8ea1,12}, {0x10290,11}, {0x2fed4,5}, {0x12a33,5}, + {0x1e97c,9}, {0x75f5,13}, {0x1681a,8}, {0x2afe8,12}, {0x1da34,6}, {0x293fb,7}, {0x1d540,5}, {0x11c70,6}, + {0x29df4,4}, {0x4111,10}, {0x24f23,8}, {0x16112,7}, {0x314ed,3}, {0x18278,10}, {0x2a1ab,7}, {0x2a452,7}, + {0x20c21,8}, {0xc98b,11}, {0xa035,12}, {0x2b593,6}, {0x23ff3,8}, {0x313ab,3}, {0x1e04f,9}, {0x11633,11}, + {0x1f1e3,9}, {0x8e7d,6}, {0x2205b,8}, {0x9d89,11}, {0x12880,5}, {0x1b4d0,9}, {0x2511d,6}, {0x12718,9}, + {0x2262b,7}, {0x1e4d8,9}, {0x179d8,5}, {0x2ad1b,7}, {0x1fa1f,7}, {0x2399b,8}, {0x1b78,8}, {0x2bff,14}, + {0x3976,4}, {0x20581,8}, {0x28772,7}, {0x6e57,13}, {0x2cf33,6}, {0xa9b2,7}, {0x2a90d,7}, {0x2aaa8,4}, + {0x17e42,5}, {0x2d8ff,6}, {0xbc3d,12}, {0x23f3,15}, {0x1053a,11}, {0x13a23,5}, {0x110df,11}, {0xe1a1,5}, + {0x20269,9}, {0x118ce,6}, {0x1f906,9}, {0x487f,12}, {0x143b2,5}, {0x7e39,12}, {0x1a774,9}, {0x2794d,7}, + {0x1b998,7}, {0x2db1b,6}, {0x7ecb,9}, {0x13df,4}, {0x94b0,8}, {0x229ce,5}, {0x3071f,4}, {0x18d38,3}, + {0x167d,3}, {0x15994,6}, {0x95b5,12}, {0x21263,6}, {0x30d11,2}, {0x137da,10}, {0x27d05,7}, {0x1727c,7}, + {0x2450b,6}, {0xf8b0,9}, {0x2fd50,3}, {0x1e400,9}, {0x19b41,9}, {0x1e6f4,5}, {0x1f2b6,5}, {0x21149,8}, + {0x15580,10}, {0x6a20,13}, {0x12178,10}, {0x14a9a,10}, {0x1d3f8,9}, {0x12af8,7}, {0x4660,9}, {0x346b,14}, + {0x3004b,5}, {0x27019,4}, {0x1c642,7}, {0x3072f,4}, {0x10f06,11}, {0x24f4b,8}, {0xd294,4}, {0x2aa3,12}, + {0x1eb86,9}, {0x8f1f,6}, {0xa63a,7}, {0x294c6,7}, {0x1f393,9}, {0xfd1,18}, {0x1bbab,9}, {0x1cadb,9}, + {0x75c1,13}, {0xec0c,11}, {0x65dc,12}, {0x7303,13}, {0x25e2,15}, {0x26c34,7}, {0x1aa9e,9}, {0x146da,10}, + {0x15742,10}, {0x1ddac,9}, {0x2e388,5}, {0x27552,4}, {0x2e243,4}, {0x28f8f,3}, {0x31792,4}, {0x319c1,4}, + {0x31945,4}, {0x1109d,11}, {0x296b,7}, {0x7f11,12}, {0x13ad4,8}, {0x49fb,13}, {0x19a8d,9}, {0xbcb5,12}, + {0x2c72,9}, {0x79f5,12}, {0x1db9b,4}, {0x9651,12}, {0x22533,8}, {0x11bf7,11}, {0x26fc9,7}, {0xe067,11}, + {0x2beb7,6}, {0xac7d,8}, {0x24e53,7}, {0x2a516,7}, {0x23556,5}, {0x208d,15}, {0x222bb,8}, {0x1e71,7}, + {0x9bf1,12}, {0x2966,12}, {0x2966,15}, {0x23a3b,8}, {0x30845,6}, {0x228b3,8}, {0x17a44,10}, {0x2a1c0,7}, + {0xc626,11}, {0x27499,7}, {0x52d7,4}, {0x2c487,6}, {0x1dc17,9}, {0x214f1,8}, {0x2bbb7,6}, {0x2f97a,5}, + {0x5e46,4}, {0xe6a4,9}, {0x20869,8}, {0x3a99,14}, {0x1e922,9}, {0x2ae9e,6}, {0xce45,10}, {0x5c43,12}, + {0x117a9,11}, {0x130fa,10}, {0x2ce97,6}, {0xb8ad,12}, {0x2346d,6}, {0x2fd96,3}, {0x1c394,9}, {0x11e12,11}, + {0x11799,5}, {0x2c8e9,5}, {0x15868,6}, {0x20fb9,8}, {0x114c0,4}, {0x17972,10}, {0x31363,3}, {0x3be9,14}, + {0x10b49,11}, {0x2f795,5}, {0x19dde,6}, {0x640f,6}, {0x16fd4,10}, {0x10a3,17}, {0x110b3,11}, {0x2c8df,4}, + {0x1bce6,9}, {0x30b23,4}, {0x909b,6}, {0x1470c,10}, {0x2bb5,3}, {0x2ff6a,5}, {0xb18f,7}, {0x1b569,8}, + {0xb3f3,2}, {0x273ce,7}, {0x1bbfc,9}, {0x29337,7}, {0x2d869,5}, {0x2fb9d,3}, {0x1b47f,9}, {0x2aa8e,9}, + {0x27357,7}, {0x1e412,9}, {0x9291,9}, {0xdbe4,11}, {0x21ce1,8}, {0x5797,13}, {0x76ab,13}, {0x10f8c,9}, + {0x1ae8e,9}, {0xa5f9,12}, {0x2925e,7}, {0x2fe7f,5}, {0x3080f,6}, {0x7768,6}, {0x18c66,5}, {0x2fa33,5}, + {0x245d3,6}, {0x15f5e,4}, {0x2295b,8}, {0x24f33,8}, {0x2175b,6}, {0x21d29,8}, {0x2828b,7}, {0x144d5,6}, + {0x30bf1,2}, {0x1f23d,9}, {0x303f9,4}, {0x21559,8}, {0x301b,3}, {0x911d,8}, {0x1b03,8}, {0x142d,4}, + {0x246ed,6}, {0x12646,10}, {0x27aab,6}, {0x44ef,14}, {0x17c7e,8}, {0x1d21d,3}, {0xe3b6,11}, {0x16b44,8}, + {0x2d617,6}, {0x198cb,9}, {0x514b,13}, {0x72c2,6}, {0x2a2d8,7}, {0x2eddf,3}, {0x25f43,6}, {0x3159b,3}, + {0x23875,6}, {0x17ada,4}, {0xf11,12}, {0x1b998,9}, {0x10f55,5}, {0x20c89,8}, {0x1b710,8}, {0x2a41a,7}, + {0x1ac96,5}, {0x1081b,11}, {0x303ad,4}, {0x504e,4}, {0x2f7f9,5}, {0x15706,8}, {0x1c556,9}, {0x2fdf8,5}, + {0x3124e,3}, {0x234cb,8}, {0xf136,9}, {0x1b692,9}, {0x1b6d1,9}, {0x22d6b,8}, {0x2cc21,6}, {0x6fee,9}, + {0x2fdff,3}, {0x1dc83,9}, {0x25c93,6}, {0x1bd6d,9}, {0x1fa26,9}, {0x2abbd,7}, {0x46b1,5}, {0xebd5,11}, + {0x1cfc0,9}, {0x2a21d,5}, {0x30ed3,6}, {0x2572b,8}, {0x2e49b,5}, {0x24255,6}, {0x4527,14}, {0xb9fd,9}, + {0x31474,3}, {0x3bb1,14}, {0x25d5b,8}, {0x2c6d9,6}, {0x29b04,5}, {0x3c43,8}, {0x2dff7,4}, {0x27e71,7}, + {0x7973,5}, {0x4553,12}, {0x2df92,3}, {0x27373,7}, {0x1c1b7,9}, {0x30c6b,4}, {0x2bd8b,6}, {0x1c6eb,9}, + {0x2f104,5}, {0x13dd4,10}, {0x3823,14}, {0x23ffb,8}, {0x28f78,7}, {0x1cd41,9}, {0x9d35,10}, {0x262cb,8}, + {0x2d251,6}, {0x17fb4,4}, {0x25de3,5}, {0xfc9d,5}, {0xbc0f,3}, {0x1b974,9}, {0x2c4d5,6}, {0x10cb4,11}, + {0x1f0c3,9}, {0x2d2e3,3}, {0x2f911,5}, {0x2c1f,10}, {0x1a0db,4}, {0x16a7,16}, {0x126d2,10}, {0x2d2cf,6}, + {0x2e9e4,5}, {0x22eb3,8}, {0xf2f7,11}, {0x1795c,10}, {0x17de6,10}, {0x2d4a9,6}, {0xcdd0,7}, {0x21b71,8}, + {0x2b336,6}, {0xb185,7}, {0xb15d,12}, {0xc718,11}, {0x4049,14}, {0x30bef,4}, {0x2ff42,5}, {0x1835e,9}, + {0x2f738,3}, {0x1f81e,4}, {0x12ce3,4}, {0x2be1b,6}, {0xc019,8}, {0x5638,13}, {0x4199,6}, {0x307c9,4}, + {0x2c0a9,6}, {0xbb95,6}, {0x329d,14}, {0x2474b,8}, {0x7c4d,12}, {0x5fb7,13}, {0x2f4a0,5}, {0x17168,6}, + {0x177fe,6}, {0x2fda3,5}, {0x30839,6}, {0x24fad,5}, {0x47f3,9}, {0x189c6,10}, {0x248db,8}, {0x2ef79,5}, + {0x2a444,7}, {0x2fe3e,5}, {0xb813,10}, {0x25fc5,5}, {0x31a01,4}, {0xd603,7}, {0x530b,4}, {0x7ae5,12}, + {0x2cb85,6}, {0x9699,12}, {0x22af3,8}, {0x2c9d3,6}, {0x1ed80,7}, {0x11e61,3}, {0x2debf,4}, {0x267b8,7}, + {0x1db4c,2}, {0xb39f,6}, {0x10e8f,9}, {0x134ec,10}, {0x13ce4,10}, {0x17a26,6}, {0x1e53f,5}, {0x144ad,5}, + {0xffc5,11}, {0x1ed51,9}, {0x2dccb,6}, {0x10f81,9}, {0xaf2b,9}, {0x45df,12}, {0x2a939,4}, {0x13df2,9}, + {0x5f4f,13}, {0x9e31,12}, {0x70fb,13}, {0x2f40a,5}, {0x18d9a,10}, {0x1fcd,3}, {0x2cbfd,6}, {0x2c76f,6}, + {0x58a4,4}, {0x17986,10}, {0x2f6ff,5}, {0x2fdaf,3}, {0x2939,8}, {0x29d26,7}, {0x3c83,14}, {0x2e739,5}, + {0x2c81d,6}, {0x170bc,4}, {0x21171,8}, {0x2457b,8}, {0x11d8,2}, {0xc2c1,11}, {0x1a117,9}, {0x2ae90,7}, + {0x14d33,5}, {0x26cb2,7}, {0x241f3,5}, {0x24ce3,8}, {0x80ae,6}, {0x257b6,5}, {0x25c55,6}, {0x2dbef,4}, + {0xbb05,12}, {0x20ae1,8}, {0x8fcd,10}, {0x2ba1f,6}, {0x31acf,2}, {0x94e9,12}, {0x11b52,11}, {0x305bf,4}, + {0xe58f,6}, {0x2303,10}, {0x26779,7}, {0x2c95b,6}, {0x2b090,12}, {0xfbdc,11}, {0x3b79,14}, {0x24143,8}, + {0x120a6,11}, {0x19dd4,5}, {0x20d41,8}, {0x162c8,10}, {0x16608,8}, {0x273ff,7}, {0x22193,8}, {0x79e5,3}, + {0x13e38,10}, {0x2c925,6}, {0x7462,12}, {0x2d011,6}, {0x7d07,6}, {0x306ee,2}, {0x133e8,10}, {0x23a9b,8}, + {0x2f38f,3}, {0x297f9,7}, {0x30401,4}, {0x24bed,5}, {0x2420,15}, {0x31a75,2}, {0x260f8,2}, {0x1b47,15}, + {0x2bab,14}, {0x30543,4}, {0x1e987,3}, {0x47d5,14}, {0x288e7,4}, {0x298b6,7}, {0x2a748,5}, {0x303d1,4}, + {0xcfe7,11}, {0x2760c,7}, {0x2bb27,6}, {0xf86c,11}, {0x29a40,6}, {0x2f513,5}, {0x2a0b6,7}, {0x1f4b3,9}, + {0x2847c,7}, {0x2a0c4,6}, {0x1d35f,9}, {0x4711,14}, {0x314eb,3}, {0x311e7,5}, {0x2e6e4,5}, {0x1e583,9}, + {0x18a34,10}, {0xe637,5}, {0x1cb47,9}, {0x26767,4}, {0x250fb,8}, {0x10a83,5}, {0xc403,8}, {0x1e0fc,4}, + {0x9f49,5}, {0x30627,4}, {0x8ccd,12}, {0x190be,9}, {0xba02,4}, {0x89d9,11}, {0x21569,8}, {0x1506c,10}, + {0x22a6b,7}, {0xd4f9,11}, {0x22fa3,8}, {0xc3df,11}, {0x30f0f,6}, {0x150d2,3}, {0x451e,9}, {0xc96a,11}, + {0x306bf,4}, {0x28fc0,5}, {0x2ddf7,6}, {0x2ef04,5}, {0x116b7,11}, {0x250a3,8}, {0x21535,4}, {0x2de63,6}, + {0x2b4aa,6}, {0x256cd,5}, {0x2f177,4}, {0x1e2e,5}, {0x2dc37,4}, {0x250f3,8}, {0x25ed3,8}, {0x7d57,9}, + {0x20cc1,8}, {0x2ff38,5}, {0x2eda1,5}, {0x1c88,9}, {0x710a,11}, {0xbc03,3}, {0x7c1d,12}, {0x2535b,8}, + {0x30d53,4}, {0x26efe,7}, {0xdefc,11}, {0x2c313,6}, {0x25973,8}, {0x31735,3}, {0x2992d,7}, {0x2fff,5}, + {0x90f0,4}, {0x2b354,6}, {0x122d6,10}, {0x24b03,5}, {0x2264,9}, {0x2e617,5}, {0xe05c,11}, {0x28f08,7}, + {0x18980,6}, {0x2f3ab,5}, {0x2379b,8}, {0x85e9,12}, {0x2d151,4}, {0x1a76b,6}, {0x2f934,5}, {0x2bd7f,6}, + {0x2df7a,3}, {0x240ab,8}, {0x1199e,7}, {0x1f8db,4}, {0x20409,8}, {0xbc6d,12}, {0x3a0f,10}, {0x30833,6}, + {0x23c55,2}, {0x33d1,14}, {0x94b2,7}, {0x13e9c,8}, {0x25a93,8}, {0x2d995,6}, {0x2de6c,3}, {0x3120f,3}, + {0x23eb3,8}, {0x13550,10}, {0x306db,4}, {0x7ba9,8}, {0x46f5,14}, {0x1c5d4,9}, {0x28e28,7}, {0x1e1c9,6}, + {0x2a18f,7}, {0x22156,5}, {0xc7d3,11}, {0x283aa,7}, {0x31567,3}, {0x16dfe,10}, {0x905d,12}, {0x23e13,6}, + {0x6fdf,5}, {0x2d84b,6}, {0x112b,17}, {0x178e4,10}, {0x25473,8}, {0x31257,3}, {0x24f13,8}, {0x2c40b,4}, + {0x1c2b3,9}, {0x2982a,7}, {0x2ac83,4}, {0x21ab9,8}, {0x30c3f,4}, {0x20314,9}, {0x2d3cb,6}, {0xa755,12}, + {0x1cf21,5}, {0x81ed,12}, {0x16356,7}, {0x4439,14}, {0x2d197,6}, {0x10c6a,5}, {0x25d23,8}, {0x2dce3,6}, + {0x173f0,5}, {0x169b2,6}, {0x1e0e8,5}, {0x27161,5}, {0x2e304,5}, {0x2b13e,6}, {0x90c9,12}, {0x9aa1,12}, + {0x1d248,9}, {0x1f8ac,8}, {0x2b77f,6}, {0x2c583,6}, {0x1b78,11}, {0x2e6f8,5}, {0x2028f,6}, {0x17c7e,7}, + {0x31a5f,2}, {0x18a66,10}, {0x14114,5}, {0xac7f,4}, {0x19d8a,6}, {0x2466d,5}, {0x2ec5f,2}, {0x28795,7}, + {0x296a9,7}, {0x57a4,13}, {0x189bc,10}, {0x11eac,11}, {0x1a990,9}, {0x2c973,6}, {0x247eb,8}, {0x2516b,8}, + {0x1952c,9}, {0x2a459,7}, {0x268d0,7}, {0xb541,12}, {0x201b5,9}, {0x9a89,12}, {0x2661b,6}, {0x2977,10}, + {0x2c5fb,6}, {0x21aa9,8}, {0x1b209,9}, {0x28d3a,7}, {0x15bf7,5}, {0x255eb,8}, {0x2fe25,5}, {0x30439,4}, + {0x28080,5}, {0x309d3,4}, {0x1a3f0,9}, {0xb2f5,12}, {0x108aa,11}, {0x14f7c,10}, {0x25223,8}, {0x22edb,8}, + {0x3e22,5}, {0xbb2b,3}, {0x1d329,9}, {0x3090f,4}, {0x24a4b,8}, {0x30f3f,6}, {0x3031b,5}, {0x2b17a,6}, + {0xc3d4,11}, {0xb529,12}, {0x26859,7}, {0x24d66,3}, {0x285fd,7}, {0x8379,12}, {0x3126f,2}, {0x37c3,10}, + {0x18237,3}, {0x12fba,10}, {0xfc8c,11}, {0x185a2,10}, {0x25ac3,8}, {0xd593,7}, {0x2ed74,5}, {0x190c9,6}, + {0x2ec34,5}, {0x1f2d6,9}, {0x2277b,8}, {0x9a4d,12}, {0x1db48,6}, {0xebc2,8}, {0x2ed79,5}, {0x2d679,4}, + {0x275cd,7}, {0xfdaa,11}, {0x2c21d,6}, {0x2ec11,5}, {0x30b4d,2}, {0x31726,3}, {0x29817,5}, {0x2fd8f,5}, + {0x29b0d,3}, {0x28b73,7}, {0x2fb91,5}, {0x2697f,7}, {0x13b5e,9}, {0x1cf4b,9}, {0xbfb5,12}, {0x9f77,6}, + {0x2f792,3}, {0x2429b,8}, {0x202a8,5}, {0x8cfd,12}, {0x1cf6f,5}, {0x1c6f4,8}, {0x49ee,13}, {0x1490a,10}, + {0xb974,4}, {0x27b99,7}, {0xb177,5}, {0x2df5c,3}, {0x137c6,10}, {0x1ee5f,9}, {0x1e2a3,5}, {0x1399c,10}, + {0xb721,12}, {0x1e745,9}, {0x2a754,7}, {0x6039,13}, {0x2f9cf,5}, {0x2240b,8}, {0x1d131,9}, {0x2546,6}, + {0x3211,14}, {0x29a71,7}, {0x293df,7}, {0x2ee96,5}, {0x266eb,8}, {0x2b480,6}, {0x306e3,4}, {0x26867,7}, + {0x6089,7}, {0xb39d,12}, {0x2daf1,6}, {0x2aac1,7}, {0x2dfce,3}, {0x2bdd9,6}, {0x25c13,8}, {0x1f34b,6}, + {0x31771,3}, {0x30943,4}, {0x1b994,4}, {0x1709,14}, {0x29926,7}, {0x2b21c,6}, {0x207a9,8}, {0xbe95,12}, + {0x1ff7,15}, {0x10c7,8}, {0x268e5,7}, {0x182f2,4}, {0x8901,12}, {0x28c68,7}, {0x2482b,6}, {0x5feb,13}, + {0x2cf1b,6}, {0x305cb,4}, {0x1535a,10}, {0x2a63c,7}, {0x25a36,4}, {0x778a,4}, {0x6b7f,13}, {0x2f894,5}, + {0x20591,8}, {0x1cefa,9}, {0x2636b,8}, {0x1dece,6}, {0x2f419,5}, {0x3127a,3}, {0x187b4,10}, {0x2e063,4}, + {0x3076a,4}, {0xd357,11}, {0x1da04,9}, {0x25073,7}, {0x2f8b2,5}, {0x50c3,6}, {0x2c76b,4}, {0x315a9,3}, + {0x21f13,7}, {0x2d8c3,6}, {0x1bc5f,9}, {0xf48e,11}, {0x6a47,13}, {0x6d60,13}, {0x10637,11}, {0x14150,8}, + {0x2e9d0,5}, {0x3afb,14}, {0x20235,7}, {0x244cb,8}, {0x2bd61,6}, {0x2e89a,3}, {0x3a6f,14}, {0x23563,8}, + {0x2dba5,6}, {0x26b93,7}, {0x21389,8}, {0x47c9,7}, {0x2fdb4,3}, {0x2eb08,5}, {0x25c85,6}, {0x2e80c,8}, + {0x9321,12}, {0x2e77a,5}, {0x10d22,6}, {0xc053,3}, {0x24a83,8}, {0x800d,12}, {0x15e36,10}, {0x17772,9}, + {0x17fc6,10}, {0xbba1,12}, {0x1c7a8,9}, {0x17434,10}, {0x7e69,5}, {0x1c79f,9}, {0x166c4,10}, {0x1f006,9}, + {0x304db,4}, {0x7172,2}, {0x3146e,3}, {0x1834a,10}, {0x2eadb,5}, {0x2a12d,7}, {0x7a91,12}, {0x23143,8}, + {0x463f,14}, {0x21089,8}, {0x24e53,8}, {0xbb65,12}, {0x16584,10}, {0x14c18,8}, {0x5dd6,13}, {0x2db2d,6}, + {0x990b,6}, {0x2c5f1,4}, {0x29020,7}, {0x2ff51,5}, {0x236fd,4}, {0x2b7d3,6}, {0x30563,4}, {0x127ea,10}, + {0x15026,10}, {0x24de3,8}, {0x1ea29,7}, {0x30743,4}, {0x739f,13}, {0x27ab5,4}, {0x2dffd,4}, {0x23743,8}, + {0x13052,5}, {0x281f1,7}, {0xe3ae,8}, {0x12a56,7}, {0x1e796,7}, {0xe046,11}, {0xb559,12}, {0x3136f,3}, + {0x2c319,6}, {0x2314e,5}, {0x353d,14}, {0x1e1c9,9}, {0x265cb,8}, {0x12132,10}, {0x5292,10}, {0x29862,7}, + {0x1adf5,6}, {0x246c3,8}, {0x2c589,5}, {0x5a3b,13}, {0x2123e,3}, {0x2baf1,6}, {0x3471,8}, {0x1fa0d,7}, + {0x1d6e3,9}, {0xfffc,11}, {0x2bb87,6}, {0x2f252,5}, {0x114b2,11}, {0x222cd,6}, {0x1e2aa,9}, {0xc534,11}, + {0x1c601,9}, {0x2d99b,6}, {0x19bb6,9}, {0x23e53,8}, {0x11050,11}, {0x2b03c,12}, {0x5019,7}, {0x6ba2,3}, + {0x1dce8,7}, {0x2edc4,5}, {0x21853,6}, {0x31515,3}, {0xcdb6,11}, {0x2e76b,5}, {0x13794,10}, {0x2d00b,6}, + {0x2b635,6}, {0x1db2d,9}, {0x10f5e,11}, {0x2e608,5}, {0x28eb4,7}, {0x11852,5}, {0x2497b,8}, {0x17664,6}, + {0x2469b,8}, {0xb9eb,6}, {0x2e5e8,4}, {0x19799,9}, {0x1bd5b,8}, {0x1678c,10}, {0x2f74a,5}, {0xaa1b,9}, + {0x8ee9,12}, {0x2ea1b,5}, {0x17718,7}, {0x1e0fa,9}, {0x220d3,5}, {0x2965c,7}, {0x120f,4}, {0x28069,7}, + {0xb747,5}, {0x5686,11}, {0x1b30e,9}, {0x2f487,5}, {0xabff,5}, {0x1d8f6,9}, {0x269a4,5}, {0x30ddb,4}, + {0x17f82,5}, {0x2d4d3,6}, {0x1f5af,9}, {0x223a7,4}, {0x255e3,8}, {0x2e464,5}, {0x29d8a,5}, {0x13fd2,10}, + {0x2f975,5}, {0x6fff,3}, {0x1168b,11}, {0x14e3c,10}, {0x31768,3}, {0xa479,12}, {0x239db,8}, {0xaa25,11}, + {0x11730,11}, {0x1a41d,9}, {0x241fb,8}, {0x1843a,10}, {0xc3e6,3}, {0x6eea,4}, {0x28b23,7}, {0x1b074,9}, + {0x2a46e,7}, {0x23e95,5}, {0x68f5,8}, {0x254c3,8}, {0x2ca8b,4}, {0x2d3c5,6}, {0x5bef,6}, {0x3075b,7}, + {0x31729,3}, {0x17a94,10}, {0x13eb,4}, {0x31542,3}, {0x2036a,4}, {0x125a0,4}, {0x24b85,5}, {0x70b3,4}, + {0x1ddc7,6}, {0x28fbe,7}, {0x177ea,5}, {0x30646,2}, {0x23cdb,8}, {0x2f383,5}, {0x27f89,7}, {0x64e5,11}, + {0x2e469,5}, {0x2e676,5}, {0x15d96,9}, {0x18f71,9}, {0x1351e,8}, {0x22e5,15}, {0x231b3,8}, {0x2ebdf,5}, + {0x2f653,5}, {0x1e816,7}, {0x29250,6}, {0x1dfa4,9}, {0x246a3,8}, {0x31941,4}, {0x2d69d,4}, {0x2e94e,4}, + {0x8ff1,12}, {0x2eb99,5}, {0xb475,12}, {0x2a612,7}, {0x3146b,3}, {0x1133e,4}, {0x2f2ac,5}, {0xe4f,12}, + {0x27ce2,7}, {0x15648,10}, {0x180fe,8}, {0x23bf3,8}, {0x1947,16}, {0xbd15,6}, {0x59da,3}, {0x18d92,8}, + {0x253db,8}, {0x18be6,6}, {0xb357,10}, {0x266f5,5}, {0x1a9f3,9}, {0x1eae6,7}, {0x28e75,7}, {0x2d947,6}, + {0x319b5,4}, {0x2c6f1,6}, {0x2d5c9,6}, {0x2358b,8}, {0x305a3,4}, {0x8241,12}, {0x2c78d,6}, {0x1b7f1,9}, + {0x2975,15}, {0x2b1f8,6}, {0xb9e5,12}, {0xb245,8}, {0x343a,7}, {0x8fcd,12}, {0x23a8,15}, {0x170ee,8}, + {0x2a319,5}, {0x1a426,9}, {0x16778,10}, {0x2feac,5}, {0x20139,6}, {0xc036,2}, {0x2e590,5}, {0x1713e,8}, + {0x10f69,11}, {0x14eaa,10}, {0x20b01,7}, {0x4792,4}, {0x22c0b,8}, {0x182e6,9}, {0x192f5,5}, {0x2f3e7,5}, + {0x18e0a,7}, {0x23a5b,8}, {0x991a,7}, {0x25235,4}, {0x2f899,5}, {0x2642,9}, {0x1e946,9}, {0x2dda9,6}, + {0x17204,10}, {0x2d943,4}, {0x11633,4}, {0x3ca4,8}, {0x2b6f5,6}, {0x2114,15}, {0x17902,10}, {0x1e892,9}, + {0x23c7b,8}, {0x2bbc9,6}, {0x2db6f,6}, {0x30d17,4}, {0x30881,6}, {0x30de3,4}, {0x30a2d,2}, {0x11a8e,9}, + {0x1d91c,7}, {0x28118,7}, {0x98c6,7}, {0x6c78,4}, {0x13e7e,10}, {0x2c8b5,4}, {0x20721,8}, {0x90ed,10}, + {0x16660,10}, {0xcc61,11}, {0x291c4,7}, {0x13c4e,10}, {0x3fd1,8}, {0x2594d,6}, {0x13214,6}, {0x1c0a,7}, + {0xff0a,5}, {0x2b3d8,6}, {0x30827,6}, {0x1015c,11}, {0xcd35,5}, {0x182b4,10}, {0xdabf,7}, {0x1a6ff,9}, + {0x163c2,10}, {0x59b9,13}, {0x640d,6}, {0x1a480,9}, {0x2609b,8}, {0x147b8,7}, {0x220a3,7}, {0xa4a9,12}, + {0x1932b,9}, {0x3019,5}, {0x10398,11}, {0x7274,13}, {0x2f469,5}, {0x1e909,7}, {0x172c4,3}, {0x30f15,6}, + {0x1324e,10}, {0x14022,10}, {0x104d7,11}, {0x2ce37,6}, {0x173e4,10}, {0x11be1,11}, {0x31805,4}, {0x2cea3,6}, + {0x91dd,8}, {0x3a37,13}, {0xf32,3}, {0x163fe,10}, {0x31975,4}, {0x1eb3,4}, {0x19c46,9}, {0x13cda,10}, + {0x2ef97,4}, {0x2cb5b,6}, {0x20ba9,8}, {0x22ad3,8}, {0x2506b,8}, {0x10cc1,5}, {0x8c0d,12}, {0x31bd,14}, + {0x62e1,3}, {0x2b59f,6}, {0x15c7,15}, {0x1ba5e,9}, {0x10d01,11}, {0x2e36a,4}, {0x18322,10}, {0x2b2f4,6}, + {0x20a11,8}, {0x217f,10}, {0x1f603,3}, {0x1ae87,7}, {0xa555,3}, {0x845d,10}, {0x3165a,3}, {0x1477,16}, + {0x32ab,14}, {0x170d8,10}, {0x4861,14}, {0x10c69,4}, {0x27b8b,7}, {0x17452,10}, {0x226b3,8}, {0x285b9,4}, + {0x1c5c2,9}, {0x2ec04,3}, {0x20ab,15}, {0x2e76d,3}, {0x20df9,8}, {0xae21,12}, {0x17f1c,10}, {0x1ad9b,7}, + {0x283e2,7}, {0x20c8c,5}, {0x2da01,6}, {0x2ff2e,5}, {0x2d9f5,6}, {0x154c2,10}, {0x2c2b9,6}, {0x1899e,10}, + {0x1e30d,9}, {0x1102f,11}, {0x193ea,7}, {0xadd3,6}, {0x142c0,8}, {0x1bc29,9}, {0x1f9ba,4}, {0x3fb4,8}, + {0x461d,4}, {0x15cc,7}, {0x1a2d0,9}, {0x16bd2,5}, {0x11d57,11}, {0x278f9,7}, {0x2e40a,5}, {0x105df,11}, + {0x1b3e6,9}, {0x78ed,12}, {0x2caf5,6}, {0x31b5b,2}, {0xccc4,11}, {0x13e9c,10}, {0x2c175,6}, {0x1d2bd,9}, + {0x2fdfd,5}, {0xdb29,11}, {0x2254b,8}, {0x1804a,8}, {0x16fde,10}, {0x18a5e,5}, {0x27430,7}, {0xa16d,9}, + {0x265ab,8}, {0x3158e,3}, {0xc61b,11}, {0x224f3,8}, {0x16836,10}, {0x2bdeb,6}, {0x2a764,5}, {0x2ae22,4}, + {0x1c46,15}, {0x1869c,10}, {0xb391,12}, {0x140a4,10}, {0x1dbd8,9}, {0x2b15c,6}, {0x5541,12}, {0x2699b,7}, + {0x254fb,8}, {0x19ca9,9}, {0x1509e,10}, {0xfa3a,11}, {0x1010f,11}, {0x309f3,4}, {0x2481b,8}, {0xb7ef,4}, + {0x30ce3,4}, {0xa288,4}, {0x2611,12}, {0x95f1,12}, {0x2361,4}, {0x30ca1,2}, {0x299b4,7}, {0x2a05d,4}, + {0x264dd,5}, {0x1ee4d,9}, {0x120dd,11}, {0x2ae68,4}, {0x13bd6,10}, {0x24a7,15}, {0x28da7,3}, {0x17b5c,10}, + {0x2e3ba,5}, {0x2022a,7}, {0x2e154,3}, {0x1323a,10}, {0x2ed88,5}, {0x1c82,5}, {0x1e259,9}, {0x314e7,3}, + {0x314a1,3}, {0x20511,8}, {0x2baeb,6}, {0x30ba5,2}, {0x218a9,8}, {0x2f3d3,5}, {0x2412e,5}, {0x56ba,13}, + {0x2dc95,6}, {0x19049,9}, {0x189b4,5}, {0x213b1,8}, {0x15b66,10}, {0xbe59,12}, {0x1de23,7}, {0x30cb7,4}, + {0x23956,5}, {0x24a53,8}, {0x7360,11}, {0x1d569,9}, {0x171a2,8}, {0x259bb,8}, {0x1b734,9}, {0x1da7e,4}, + {0x7b69,12}, {0x2f2d4,5}, {0x31053,6}, {0x47c9,10}, {0x1757,10}, {0x24e13,8}, {0x8818,5}, {0x1553e,6}, + {0x1a17a,8}, {0x2b8b7,6}, {0x2255d,4}, {0x20a49,8}, {0x12fc4,10}, {0x2d11f,5}, {0x18c32,5}, {0x2054f,3}, + {0xb75d,6}, {0x2aa72,7}, {0x1a1a9,7}, {0xdf6a,11}, {0x31690,3}, {0x1995b,9}, {0x4a3c,13}, {0x1db00,9}, + {0x1cebd,7}, {0x2bdb5,6}, {0x119b0,11}, {0x30f51,6}, {0x2ff10,5}, {0x29fd1,5}, {0x1d803,9}, {0x1c9a0,9}, + {0x181b0,10}, {0x318ed,4}, {0xc1e9,5}, {0x5faf,5}, {0x3142f,3}, {0x29655,7}, {0x2b06c,12}, {0x2dc1f,4}, + {0x1437,16}, {0x2927a,6}, {0x17f08,10}, {0x3087b,6}, {0x2f177,5}, {0x2cdfb,6}, {0x1fe43,9}, {0x23f27,4}, + {0x3070b,4}, {0x30e6f,4}, {0xd008,11}, {0x24b2b,8}, {0x2f36a,5}, {0x3449,6}, {0x1805c,10}, {0x14d45,3}, + {0x2b204,5}, {0x6685,13}, {0x29d18,7}, {0x154f6,4}, {0xe030,11}, {0x1847,16}, {0x2f432,5}, {0x1b5d7,4}, + {0x2cafd,4}, {0x20f19,8}, {0x24243,8}, {0x18d68,10}, {0x2242,5}, {0x1e2e0,9}, {0x1567,11}, {0x2ebe6,3}, + {0x30023,5}, {0x1c6e4,7}, {0x12790,10}, {0x17cc6,3}, {0x15454,6}, {0x24b9b,8}, {0x20469,8}, {0x2d955,4}, + {0x2e94e,5}, {0x31354,3}, {0xcf37,11}, {0x56ad,13}, {0x2ce7,3}, {0x2d7cd,6}, {0x196cc,6}, {0x396b,8}, + {0x2f5ae,5}, {0x2b030,12}, {0x2e482,5}, {0x163e0,9}, {0x2fdc3,3}, {0x310bf,6}, {0x78c9,5}, {0x217b9,8}, + {0x1d6d1,9}, {0x18eea,18}, {0x118c0,3}, {0x2395b,7}, {0x2fca9,5}, {0xebd7,5}, {0xa215,12}, {0x2fd1c,5}, + {0x2c609,4}, {0x283db,7}, {0x21191,6}, {0x186ec,9}, {0x30449,4}, {0x2836b,7}, {0x30cbf,4}, {0x125c6,8}, + {0x4439,5}, {0x2c3bd,4}, {0x27fe4,7}, {0x2fc90,5}, {0x318bd,4}, {0xd78d,11}, {0x28d17,7}, {0x22213,8}, + {0x27088,4}, {0x1aaef,9}, {0xfa0e,11}, {0x2f963,3}, {0x12fc4,8}, {0x55b6,13}, {0x1b3cb,9}, {0x2d713,6}, + {0x2525b,8}, {0x2555b,8}, {0x2aab3,7}, {0x161be,2}, {0xd7ae,11}, {0x1c6f4,9}, {0x2348b,8}, {0x1ddbe,9}, + {0x2e590,4}, {0x246bd,5}, {0xbdd5,11}, {0xb6b5,12}, {0x29bc8,7}, {0xba99,7}, {0x202c3,9}, {0xfa7f,5}, + {0x203a1,8}, {0x13540,6}, {0x1edb6,4}, {0x28007,7}, {0x23c2b,8}, {0x18c16,3}, {0x1ae58,9}, {0xff2b,11}, + {0x12816,5}, {0x11a57,5}, {0xed8d,8}, {0x188a4,10}, {0x1a404,7}, {0x30bb5,2}, {0x13e6a,10}, {0x22703,8}, + {0x28bf1,7}, {0x2539b,8}, {0x1e652,9}, {0x1f690,5}, {0xc770,11}, {0x313b4,3}, {0xfebd,11}, {0x27c72,7}, + {0x2ec3e,5}, {0x11bc0,11}, {0x2de59,4}, {0xddeb,7}, {0xc129,12}, {0x29560,7}, {0x24e73,8}, {0x1acc9,3}, + {0xd239,11}, {0x1090d,11}, {0x251fb,8}, {0x2a0af,7}, {0x22320,3}, {0x297d8,5}, {0x1a639,9}, {0xe2e5,11}, + {0x9cc9,12}, {0x162a0,10}, {0x1fd50,9}, {0x25315,6}, {0x315dc,3}, {0xf0a,19}, {0x1fffe,4}, {0xcb7a,11}, + {0x1f303,5}, {0x7684,13}, {0x309bf,4}, {0x26553,8}, {0xb99f,5}, {0x29e29,7}, {0x29f53,5}, {0x152ec,10}, + {0x23d65,6}, {0x4f9e,7}, {0x2f82,4}, {0x2959,13}, {0xb837,3}, {0x1064d,11}, {0x18d7c,10}, {0x29b0d,4}, + {0x22a8b,8}, {0x1d155,9}, {0x1867e,10}, {0x15521,5}, {0x1138d,4}, {0xb895,12}, {0x24485,4}, {0x2dbc3,6}, + {0x2e2d7,5}, {0x306ef,4}, {0x2011e,7}, {0x125d8,10}, {0x2aca4,5}, {0x1b29,11}, {0xee27,11}, {0x2577b,8}, + {0x20559,8}, {0x2fd78,3}, {0x2ee3a,2}, {0x2651f,4}, {0x1b58f,7}, {0x5054,13}, {0xe1e8,10}, {0x15968,10}, + {0x29c23,7}, {0x2bc71,6}, {0x97f5,12}, {0x1069c,9}, {0x1bf41,6}, {0x1d373,5}, {0x2413b,8}, {0x2d035,6}, + {0x2675b,5}, {0x14800,6}, {0x2b887,6}, {0x22c7b,8}, {0x25fd3,8}, {0x2e250,3}, {0x21a99,8}, {0x10406,10}, + {0x2d1f7,6}, {0x1fb97,9}, {0x284fa,7}, {0x1d104,9}, {0x2c733,6}, {0x17e4f,5}, {0x31796,4}, {0x86fd,12}, + {0xfe86,11}, {0x2cc8d,6}, {0x1e03f,5}, {0x2e4c8,5}, {0x312b,4}, {0x1eda4,7}, {0x3152c,3}, {0x12aa6,10}, + {0x25cf3,8}, {0x11d90,4}, {0x1af39,9}, {0x2440b,8}, {0x2395b,8}, {0x233ed,6}, {0x17d78,10}, {0xf3a1,6}, + {0x29123,7}, {0x242bb,7}, {0x30ced,2}, {0xcef5,11}, {0x2d5ed,6}, {0x2dd81,4}, {0x32ff,14}, {0x21e03,8}, + {0x2410b,8}, {0x10af4,3}, {0x1bc71,9}, {0x429c,7}, {0x1693a,10}, {0x33fd,4}, {0x2fe52,5}, {0x1beaa,6}, + {0x3061f,4}, {0x27c80,7}, {0x10e50,3}, {0x466b,3}, {0x280db,5}, {0x8925,12}, {0x28942,5}, {0x2c6cf,4}, + {0x1ba9d,6}, {0x28ff,4}, {0x22c43,8}, {0xb7b1,12}, {0x31498,3}, {0x28821,7}, {0x2446d,6}, {0x154d6,10}, + {0x119de,9}, {0x30397,8}, {0x21729,8}, {0x314da,3}, {0x2655b,7}, {0x7180,3}, {0x1835e,10}, {0x2d797,6}, + {0x1c181,9}, {0x15706,6}, {0x2cb37,6}, {0x2f20a,7}, {0x2a38,13}, {0xbfc1,12}, {0x164a0,7}, {0x10d38,11}, + {0x1e0a2,7}, {0xf48e,10}, {0x1e9cd,9}, {0x2dfec,3}, {0x3355,5}, {0x8a03,6}, {0x1407,16}, {0x2b192,6}, + {0x1d25c,7}, {0x14243,4}, {0x52eb,13}, {0x2a302,7}, {0x25c73,8}, {0xbfd9,12}, {0x2689f,7}, {0x262e3,6}, + {0x16c5a,10}, {0x2f63a,5}, {0x2e761,5}, {0x19aa8,9}, {0x1b923,9}, {0x8fd9,12}, {0xbf87,6}, {0x18886,10}, + {0x16ee4,10}, {0x1bd1c,9}, {0x315c4,3}, {0x41ab,4}, {0x2e3a6,5}, {0x13113,5}, {0x1b761,9}, {0x1180,17}, + {0x18a0,3}, {0x1da45,4}, {0x20ab1,8}, {0x21aa,15}, {0x259eb,8}, {0x118b5,9}, {0x103ae,11}, {0x1733a,10}, + {0x30c53,4}, {0x17b68,8}, {0x25aa3,8}, {0xc0c9,8}, {0xf2e3,9}, {0x20e09,8}, {0xdfd8,5}, {0x1c073,9}, + {0x2a821,3}, {0x2edcc,2}, {0x31444,3}, {0x35ad,14}, {0x31899,4}, {0x316d8,3}, {0x2f649,5}, {0x4e41,6}, + {0x13edd,4}, {0x31aef,2}, {0x29347,5}, {0x2cfd1,4}, {0x94ad,12}, {0x40e6,4}, {0x2bee1,6}, {0x265a,14}, + {0x2b10e,6}, {0xebe,19}, {0x2900b,7}, {0x40c7,14}, {0x2e32c,5}, {0x2b44a,6}, {0x21f1d,6}, {0x4180,7}, + {0x1acde,7}, {0x1b33b,9}, {0x29671,7}, {0x260db,8}, {0x2271,11}, {0x20579,8}, {0x1dd6d,7}, {0x293a7,7}, + {0x306e5,3}, {0x314f5,3}, {0x31989,4}, {0xc1e9,11}, {0x17cb0,10}, {0x2b54d,4}, {0x29e3e,6}, {0x12308,5}, + {0x12bf0,10}, {0x46d9,14}, {0x2d8d5,6}, {0x7a0d,12}, {0x2d6fb,6}, {0x1aba3,9}, {0x129c0,10}, {0x28ffd,7}, + {0x11cb2,11}, {0x30b7,10}, {0x148ba,10}, {0x24d8b,8}, {0x19faf,9}, {0x2fbc3,5}, {0x2ff1f,5}, {0x29d6e,5}, + {0x28157,7}, {0x1e7f0,9}, {0x2fd8c,3}, {0x2209,10}, {0x2d95f,6}, {0x24103,8}, {0x2d671,6}, {0x4e11,3}, + {0x6fcb,5}, {0x31618,3}, {0xb739,12}, {0x2f109,5}, {0x2ed15,4}, {0xec5,3}, {0x2e6a3,3}, {0x30617,4}, + {0x3168d,3}, {0x15102,10}, {0x621a,13}, {0xad55,12}, {0x31387,3}, {0x254fb,5}, {0x16d30,6}, {0x2d04d,6}, + {0xdab5,3}, {0x27b61,7}, {0x38f5,14}, {0x2569b,8}, {0x24056,5}, {0x2690f,7}, {0x31835,4}, {0x24715,5}, + {0x887d,6}, {0x2030b,9}, {0x2ff60,5}, {0x179fe,10}, {0x1a269,4}, {0x17e42,4}, {0x1265a,10}, {0x6ba2,4}, + {0x29c00,7}, {0x2d98f,6}, {0x1eb37,7}, {0x13514,10}, {0xe7d6,11}, {0x24e6,3}, {0x31ae1,2}, {0x307a4,7}, + {0xef19,11}, {0x2dcf5,6}, {0x1d8a5,9}, {0x20709,8}, {0x30a57,4}, {0x2cfe7,6}, {0x17b7,16}, {0x20d81,8}, + {0x21fd3,8}, {0x1ad79,6}, {0xe1f3,11}, {0x93e1,12}, {0x2330,6}, {0x260fb,5}, {0x218a1,8}, {0x2d071,6}, + {0x1f9c5,7}, {0x14d8a,5}, {0x2f181,5}, {0x874c,5}, {0xf46d,4}, {0x120c7,5}, {0xa3fb,6}, {0xd8b6,11}, + {0x17164,10}, {0x19508,9}, {0x867b,8}, {0x26575,6}, {0x14934,7}, {0x2c493,6}, {0x25683,7}, {0x25b3d,4}, + {0x11c25,9}, {0x31103,4}, {0x16c28,10}, {0x1df14,6}, {0x17ee0,10}, {0x26772,7}, {0xd147,11}, {0x1913e,7}, + {0x12f76,8}, {0x2e5bd,5}, {0x17930,4}, {0x27e94,7}, {0x26063,7}, {0x2e6b7,5}, {0x1ef18,4}, {0x1dde4,7}, + {0xc576,8}, {0x2e175,6}, {0x24e8b,8}, {0x2644,7}, {0xe829,5}, {0x13fe8,8}, {0x2d647,6}, {0x2287b,5}, + {0xbb1d,12}, {0x4597,12}, {0x2f69b,5}, {0x75f5,12}, {0x10bf9,11}, {0x1ee05,9}, {0x2fca6,3}, {0x151c0,10}, + {0x110d4,11}, {0xaf4,56}, {0x1d8b7,9}, {0x23433,8}, {0x12cae,7}, {0x16822,10}, {0xf4f,3}, {0xaafd,12}, + {0x10dd2,11}, {0x45cf,14}, {0x20c2b,5}, {0x1b131,9}, {0x26e83,2}, {0x16cc8,10}, {0x134e2,10}, {0x17330,10}, + {0x304bd,6}, {0x2e47d,5}, {0xf247,11}, {0xe4c0,9}, {0x20c81,8}, {0x2f0fa,5}, {0x2f29d,5}, {0x25bab,8}, + {0x1e958,9}, {0x30eab,4}, {0xb58b,4}, {0x2fbb9,5}, {0x16cf0,9}, {0x24313,5}, {0x11682,8}, {0x21d7,15}, + {0x31ad3,2}, {0x30c95,2}, {0x259f5,6}, {0x16c8c,5}, {0x276b4,7}, {0x27b41,4}, {0x2cc09,6}, {0x308ff,4}, + {0x16f16,6}, {0x2d4eb,6}, {0x5e2b,6}, {0x21ad1,8}, {0x1c72a,9}, {0x2cd71,6}, {0x1c9fd,5}, {0x1650c,10}, + {0x1fbb2,9}, {0x6943,13}, {0x1c14,3}, {0xd551,8}, {0x3251,4}, {0x12e34,10}, {0xce2f,11}, {0xd761,8}, + {0x1bfbf,9}, {0x1df5e,7}, {0x13d7a,10}, {0x262f3,8}, {0x8841,12}, {0x330d,14}, {0x5c43,13}, {0x2bc91,4}, + {0x3156d,3}, {0x133d4,10}, {0x15ada,10}, {0x465b,14}, {0x1ec28,8}, {0x8ec5,12}, {0x31423,3}, {0x1bdd,15}, + {0x36f3,8}, {0x27e40,7}, {0x8e05,12}, {0x14216,10}, {0x249e3,8}, {0x2556b,8}, {0x230f3,8}, {0x1841e,5}, + {0x1a750,9}, {0x1bd9a,9}, {0x165f2,10}, {0x2cfa5,6}, {0x1f1fe,9}, {0x11918,9}, {0xac05,12}, {0xbba3,3}, + {0x1a723,9}, {0x31875,4}, {0x279f5,7}, {0x27c95,7}, {0x17074,10}, {0x8205,11}, {0x30cb5,2}, {0x4e06,5}, + {0x661d,13}, {0x30f21,4}, {0x305c7,4}, {0x31089,6}, {0x498a,9}, {0x2cc87,6}, {0x173f8,10}, {0x17a1,6}, + {0x29211,7}, {0x10fc1,11}, {0x28c64,4}, {0x2e8bb,5}, {0x20f71,8}, {0x2c69f,4}, {0x2f2f7,5}, {0x1439e,7}, + {0x2c42d,6}, {0x3048d,4}, {0x69d7,7}, {0x2a98b,7}, {0x3150a,3}, {0x12396,7}, {0x315ae,3}, {0x20431,8}, + {0x2cac1,4}, {0x1794a,8}, {0x31af9,2}, {0x27667,6}, {0x2812d,7}, {0x2a83,15}, {0x169d0,10}, {0x2fe2f,5}, + {0x2fb5f,5}, {0x1b9c5,9}, {0x2d301,4}, {0x2dd73,6}, {0x2e2c3,5}, {0x31236,3}, {0x267c6,7}, {0xdfcd,11}, + {0x3a0d,14}, {0xe37f,11}, {0x2b252,6}, {0x4904,13}, {0x225d3,7}, {0x2a715,7}, {0x108a4,6}, {0x2f496,4}, + {0xa851,12}, {0x25bf3,5}, {0x2650b,8}, {0x13a82,10}, {0x14392,10}, {0x2fa42,5}, {0x31561,3}, {0x2234b,8}, + {0x7bfd,8}, {0x7462,13}, {0x27f74,7}, {0x2561f,4}, {0x245db,8}, {0x259e5,3}, {0x7ce1,8}, {0x31372,3}, + {0x2db11,4}, {0x25bbd,6}, {0x1a9c6,9}, {0x185e8,10}, {0x1f2a2,7}, {0x2a1a,15}, {0x266db,8}, {0x23ea,3}, + {0x198a7,9}, {0x3027,7}, {0x12d4,17}, {0x11ecd,11}, {0x22e93,8}, {0x1cbe0,11}, {0x2c133,6}, {0x2ed01,5}, + {0x2f858,5}, {0x316c3,3}, {0x1ac06,9}, {0x3098b,4}, {0x1d881,9}, {0x2e59f,5}, {0x1f758,6}, {0x9405,12}, + {0xc083,4}, {0x1544a,10}, {0x720c,13}, {0x20284,9}, {0x2e336,5}, {0x294cd,7}, {0x10ef0,7}, {0x251eb,8}, + {0x2e4e1,5}, {0x4721,8}, {0x5d06,13}, {0x1e6d9,9}, {0x2b36c,6}, {0x26ebf,7}, {0x2ea07,5}, {0x17240,6}, + {0x38a1,14}, {0xa2ed,12}, {0x70d4,13}, {0x2d52d,6}, {0x30678,3}, {0x7d31,12}, {0x620d,11}, {0x167dc,10}, + {0x1a807,5}, {0x1b604,3}, {0xd945,11}, {0x30666,3}, {0x206c1,8}, {0x2fbfa,5}, {0x90d5,12}, {0x17562,4}, + {0x15c24,10}, {0x1ab91,6}, {0xeb46,11}, {0xfcd,3}, {0xe710,11}, {0xe97,9}, {0x6cd1,13}, {0xf884,9}, + {0x29c5b,7}, {0x120f3,11}, {0x18c00,10}, {0x2218,9}, {0x1940,7}, {0x1fe8d,4}, {0x21e6b,8}, {0x2cd47,6}, + {0x2f052,3}, {0x31173,6}, {0x13f03,7}, {0x20b21,8}, {0x410d,14}, {0x1dd64,9}, {0x2b3de,6}, {0x272d2,7}, + {0x20915,4}, {0x2802c,5}, {0x13cb2,10}, {0x24063,8}, {0x2ac42,7}, {0x248e5,6}, {0x1eb64,7}, {0x6825,12}, + {0x1e487,8}, {0x29a63,7}, {0x182dc,10}, {0x1fbc4,9}, {0x6087,6}, {0xcdf8,11}, {0x1b1a6,7}, {0x22da3,8}, + {0x7267,13}, {0x1f90f,9}, {0x26e64,7}, {0x25705,5}, {0x1a96c,9}, {0x1b6bf,9}, {0x2cab3,6}, {0x2fef7,5}, + {0x15afa,8}, {0x191fb,7}, {0x1b0d7,9}, {0x293ae,7}, {0x2679c,7}, {0x28fc5,7}, {0x159c,3}, {0x31429,3}, + {0x2eced,5}, {0x2d77f,6}, {0x2dd55,6}, {0x120b1,11}, {0x2b294,6}, {0x171ac,5}, {0x19e59,9}, {0x23e23,8}, + {0x21cd1,8}, {0x30997,4}, {0x28ab3,7}, {0x1e436,9}, {0x2ff0b,5}, {0x31639,3}, {0x127e3,7}, {0x2deb4,3}, + {0x1dccb,7}, {0x27ebe,7}, {0x185cc,7}, {0x101b4,11}, {0x18de4,5}, {0x2e196,3}, {0xa4cd,12}, {0x17170,3}, + {0x1be3c,9}, {0x29e0d,7}, {0x1ecb8,9}, {0x2db57,6}, {0x21b91,8}, {0xbe29,12}, {0x2e3fb,5}, {0x2fdf5,3}, + {0x30e0f,4}, {0x2b803,6}, {0x2f1d6,5}, {0x162ac,7}, {0x93c9,12}, {0x2803f,7}, {0x28e59,7}, {0x24bbb,6}, + {0x30ed9,6}, {0x9bc1,12}, {0x1be69,9}, {0x23383,8}, {0x2c697,6}, {0x1e394,9}, {0x178b2,10}, {0xd90e,11}, + {0x1fe8,15}, {0x30acb,4}, {0x2949c,7}, {0x2ce3d,6}, {0x18f3b,9}, {0x13c08,10}, {0x304cf,4}, {0x1781c,10}, + {0x103e5,11}, {0x2d17f,6}, {0x1dd5e,6}, {0x2d07d,6}, {0x75c3,8}, {0x137b2,10}, {0x1c2a1,9}, {0xa731,12}, + {0x15aee,9}, {0x2ce4f,6}, {0x16bf6,10}, {0x8a3e,7}, {0x11efb,5}, {0x30b37,4}, {0x24c75,3}, {0x23dcb,5}, + {0x2445b,8}, {0x1f450,9}, {0x1c1b9,6}, {0x2bcb3,6}, {0x29696,5}, {0x1d401,9}, {0x45c1,14}, {0x178ee,10}, + {0x13344,4}, {0x2a826,7}, {0x1de86,7}, {0x225fb,7}, {0x2c517,6}, {0x2ca95,6}, {0x1f8f4,9}, {0x25ea3,8}, + {0x13294,10}, {0x2e901,5}, {0xbdd5,12}, {0x2b48,13}, {0x2c9eb,6}, {0x31831,4}, {0x2b306,6}, {0x31b3f,2}, + {0x2244b,8}, {0x315f4,3}, {0x1cd65,9}, {0x788c,13}, {0x55ef,6}, {0x22013,8}, {0xb751,12}, {0x2daf9,2}, + {0xe4f5,11}, {0x1fd59,9}, {0xc668,11}, {0x31a6d,2}, {0x2e6ee,5}, {0x30455,4}, {0x162d2,10}, {0x2df86,3}, + {0x2784a,7}, {0x9d4d,12}, {0x2f6f5,5}, {0xa46d,12}, {0xb4f9,12}, {0x2f94d,5}, {0x1b14,6}, {0x2ea13,3}, + {0x13a7,6}, {0x2717b,7}, {0x1cf8a,9}, {0x265ff,4}, {0x173b4,8}, {0x10d43,11}, {0x2d1eb,6}, {0x2acd7,5}, + {0x12880,10}, {0x1f2a9,9}, {0x101cf,4}, {0x2d02b,4}, {0x186b2,6}, {0x30ad7,4}, {0x23ded,6}, {0xe891,11}, + {0x318fd,4}, {0xede5,11}, {0x2c355,4}, {0x2545b,8}, {0x30e97,4}, {0x1126d,9}, {0x3157d,3}, {0x316cc,3}, + {0x2d79d,5}, {0x2f5b0,3}, {0x3160f,3}, {0x706c,13}, {0x23e43,6}, {0xca7d,11}, {0x2cdf,14}, {0x4aea,8}, + {0xbbd1,12}, {0x25a63,8}, {0x2aa05,4}, {0x2e003,4}, {0x1e073,9}, {0x1e4a2,9}, {0x31462,3}, {0x1ed00,9}, + {0x1143b,9}, {0x2e875,5}, {0x4d7c,13}, {0x30a5f,4}, {0x26a0d,5}, {0xf9b,6}, {0x7858,6}, {0xbc9f,3}, + {0x312a1,3}, {0x29180,4}, {0x1eefa,6}, {0xa3d1,12}, {0x4853,11}, {0x2faee,3}, {0x2c2e9,6}, {0x2f60d,5}, + {0x2b390,6}, {0x182d2,10}, {0xeeed,11}, {0x2cc3f,6}, {0x3380,4}, {0x2d76d,5}, {0x2c805,6}, {0x25c0b,8}, + {0x20b63,6}, {0x14ed2,10}, {0xf743,11}, {0x173d0,10}, {0x30c9f,4}, {0x15ec2,10}, {0x12f13,6}, {0x21151,8}, + {0x2ebf8,5}, {0x13178,4}, {0x212e9,8}, {0x21b31,8}, {0x1b236,9}, {0x1f9a8,9}, {0x1bc7c,3}, {0x754c,13}, + {0x2a555,6}, {0x304ef,4}, {0xb74,13}, {0x2acce,7}, {0x1759e,8}, {0x226cb,8}, {0x2326b,8}, {0xc9c6,7}, + {0x151ac,10}, {0x1c2c9,5}, {0xdad1,11}, {0x2767c,7}, {0x26eaa,6}, {0xd4c2,11}, {0x25123,8}, {0x9371,4}, + {0x12650,10}, {0x24353,8}, {0xb6e5,9}, {0x2dd8b,6}, {0xa9ef,6}, {0x3187d,4}, {0x30451,4}, {0x26d37,7}, + {0x27659,7}, {0x2f867,5}, {0x19925,9}, {0x26617,3}, {0x2fcd1,5}, {0x283cd,7}, {0x1e046,9}, {0x201e2,9}, + {0x1236c,10}, {0x2a922,7}, {0x23a23,8}, {0x60f3,9}, {0x2ad7f,7}, {0xb972,7}, {0x29885,7}, {0x17df0,10}, + {0x118c9,11}, {0x1cf0e,7}, {0x30733,4}, {0x19478,8}, {0x30c2f,4}, {0x2abf5,7}, {0x30782,4}, {0x2c99d,6}, + {0x30ec7,6}, {0x1ce46,9}, {0x25c03,6}, {0xbff1,12}, {0x2a994,5}, {0x226db,8}, {0xe3d,12}, {0x2a0a8,7}, + {0x21d81,8}, {0xfa71,11}, {0x18f17,9}, {0x18f44,9}, {0x309cf,4}, {0x56d4,13}, {0x25f23,8}, {0x346f,3}, + {0x292c9,5}, {0x208f9,8}, {0x22753,8}, {0x15f4e,10}, {0x1e9fa,9}, {0x2ff29,5}, {0x2215,5}, {0x2c71b,4}, + {0xcaca,11}, {0x19ba4,9}, {0x10238,11}, {0x10d6,17}, {0x1fd62,9}, {0x286e9,4}, {0x2c51f,4}, {0x15c9c,9}, + {0x30abb,4}, {0x17c9,8}, {0x305f3,4}, {0x28666,7}, {0x1dcd4,9}, {0x171ac,8}, {0x14dec,10}, {0x31a41,4}, + {0xc74f,11}, {0x2fdc8,3}, {0xd320,11}, {0x150a8,10}, {0x17c7e,10}, {0x6386,13}, {0x2ac26,5}, {0x2ff06,5}, + {0x22e9b,8}, {0xfc1e,11}, {0x288b4,7}, {0x27a11,7}, {0x142c4,4}, {0x25883,8}, {0x15c9,4}, {0x27414,7}, + {0x14c48,10}, {0x4bd7,5}, {0x1ab25,9}, {0x1cfc9,9}, {0x2a914,7}, {0x109b,3}, {0x27827,7}, {0x250bb,8}, + {0x29d11,7}, {0x2a793,7}, {0x2afbd,5}, {0x1dec5,3}, {0x316f3,3}, {0x1bdd0,9}, {0x16b9,13}, {0x20479,8}, + {0xa67d,9}, {0x290e4,7}, {0x2ac18,7}, {0x1b452,9}, {0x5e65,13}, {0x27e5c,6}, {0x2f943,5}, {0x2623,7}, + {0x5874,6}, {0x2f284,5}, {0x25445,6}, {0x2a438,3}, {0x278eb,7}, {0xf77a,8}, {0x2dc05,6}, {0x18f83,9}, + {0x89e5,7}, {0x1de7b,9}, {0x17fee,10}, {0xc983,8}, {0x2e3d3,5}, {0x2c4e1,6}, {0x2ad45,7}, {0x2e864,7}, + {0x222f3,8}, {0x2fefc,5}, {0x2c355,6}, {0x1dffe,9}, {0x25e03,8}, {0x25e2b,8}, {0xfbb0,11}, {0x28c92,7}, + {0x18dd,4}, {0xfb3c,5}, {0x2840c,7}, {0x316d2,3}, {0x2d63b,6}, {0x26f5,3}, {0x8589,12}, {0xe43,12}, + {0x1d437,9}, {0x71b3,4}, {0x28508,7}, {0x23c23,8}, {0xfbf,18}, {0x75e8,13}, {0x30e53,4}, {0x26b77,7}, + {0x16b88,10}, {0x2a310,7}, {0x1f31e,9}, {0x22efb,8}, {0x2b048,12}, {0x29fe,8}, {0x2c45,14}, {0x17a5d,5}, + {0x116f3,6}, {0x866d,12}, {0x1880e,10}, {0xa23f,6}, {0x12c08,4}, {0x1ca5f,6}, {0x10524,11}, {0x3c4b,14}, + {0x2bf4,4}, {0x1ca6f,9}, {0x2428d,6}, {0x2951a,7}, {0x21d4b,4}, {0x2e419,5}, {0x213c9,8}, {0x2ec5c,5}, + {0x1ad45,5}, {0x31613,3}, {0x8955,12}, {0x1eecb,9}, {0x3158c,3}, {0x29330,7}, {0x2f13b,5}, {0x126aa,10}, + {0x5498,13}, {0xebe0,11}, {0x151d4,10}, {0x30abf,4}, {0x2509b,8}, {0x239ab,8}, {0x1feb8,9}, {0x41ed,14}, + {0x25cd3,8}, {0x50fd,13}, {0x1bb0e,2}, {0x6166,5}, {0x2aef4,5}, {0x2a0d9,7}, {0x2c53,14}, {0x2c7ed,6}, + {0x79b5,3}, {0x1df92,9}, {0x293cc,5}, {0xa67d,12}, {0x253d3,8}, {0x20a91,8}, {0x1a240,9}, {0xbf91,12}, + {0x21381,8}, {0x22c3b,8}, {0x170c4,10}, {0x28cf4,7}, {0x2c8a7,6}, {0x2666d,5}, {0x2ef42,5}, {0x21769,8}, + {0xcfd4,5}, {0x2fcc2,5}, {0x5ce3,3}, {0x29b84,5}, {0xc366,10}, {0x2da97,6}, {0x2b2e2,6}, {0x123bc,10}, + {0x285f6,7}, {0x1e2f2,9}, {0x1d18b,9}, {0x1fd08,9}, {0x461e,4}, {0x12bfc,5}, {0x8e89,12}, {0x28f5c,7}, + {0x27814,5}, {0x2f1ae,5}, {0x1d4b1,4}, {0x13398,10}, {0x2575,3}, {0x3d2b,14}, {0x31ab9,2}, {0x299d2,5}, + {0xa515,12}, {0x2849,15}, {0x188c2,7}, {0x17638,4}, {0x1a855,9}, {0x2d10d,6}, {0x2ed12,3}, {0x17092,10}, + {0x2483b,8}, {0x14e7,11}, {0x2eeaa,5}, {0x1510c,9}, {0x2dbf9,6}, {0x2fd26,5}, {0x123d0,7}, {0xef5b,11}, + {0x252ab,8}, {0x22853,8}, {0x1ed3f,9}, {0x254a3,8}, {0x8c87,8}, {0x98ba,7}, {0x314f2,3}, {0x27151,7}, + {0x2fee3,5}, {0x9501,12}, {0x16d9a,10}, {0x1202d,11}, {0x2b264,6}, {0x26852,7}, {0x2ecb8,3}, {0x3069f,4}, + {0x2ba55,6}, {0x14bda,10}, {0x16d4a,10}, {0x23bcb,8}, {0x7872,13}, {0x2fa08,3}, {0xd097,11}, {0x1b07d,6}, + {0x18b10,10}, {0x2b6dd,6}, {0x27962,7}, {0x6c76,13}, {0x2d59f,6}, {0xc2ed,11}, {0x25e1b,8}, {0x9591,12}, + {0x1862e,9}, {0x2603b,8}, {0x315a2,3}, {0x91fd,3}, {0x3140b,3}, {0x2af38,7}, {0x21bb9,8}, {0x28b42,7}, + {0x2d479,6}, {0xf1ce,11}, {0x2fc6d,5}, {0x31a5c,2}, {0x25b5b,8}, {0x210e1,8}, {0x165fc,10}, {0x1f0e2,5}, + {0x1e15f,4}, {0x183cc,10}, {0x618b,9}, {0x6bf4,13}, {0x11a83,8}, {0x1972d,9}, {0x1d7bd,5}, {0x2f113,5}, + {0x2020f,9}, {0x419d,2}, {0x31ad1,2}, {0x2e6fd,5}, {0x2f037,5}, {0x2bde1,4}, {0x2c283,6}, {0x2f5fe,5}, + {0x3093f,4}, {0x9069,12}, {0xc105,12}, {0x2c71b,6}, {0x2f76d,5}, {0x2058a,4}, {0x11cca,9}, {0x2029f,9}, + {0x2e322,5}, {0x315f7,3}, {0xeba9,11}, {0x28978,7}, {0x1fca5,9}, {0x2c295,6}, {0x2fe84,5}, {0x191f2,6}, + {0x360f,14}, {0x1bc7a,8}, {0x2fce5,5}, {0x1357,16}, {0x2c385,6}, {0x17ec2,10}, {0x261c3,8}, {0x177ec,4}, + {0x21009,8}, {0x1da28,9}, {0xce87,11}, {0x1356e,10}, {0x3040d,4}, {0x122a4,10}, {0x1b815,9}, {0xf738,11}, + {0x2c553,6}, {0x2d5d5,6}, {0x205e9,5}, {0x28ee5,7}, {0x25386,5}, {0x18dbe,4}, {0x31a85,2}, {0x30723,4}, + {0x31756,3}, {0x2f727,5}, {0x267db,7}, {0x1f062,7}, {0xd475,11}, {0x166f6,10}, {0x2454b,8}, {0x1d3b,3}, + {0x13c76,10}, {0x43d7,14}, {0x142d4,10}, {0x2e559,5}, {0x21fcb,8}, {0x2724d,7}, {0x106b0,11}, {0x1d0f2,9}, + {0x24793,8}, {0x76b8,13}, {0x2e41e,5}, {0x79d8,5}, {0x1c637,8}, {0x188d8,8}, {0x1a804,9}, {0x2be4b,6}, + {0x281c7,7}, {0x314a4,3}, {0x283c6,7}, {0x2e15a,3}, {0x24ac3,8}, {0x11389,11}, {0x21f33,8}, {0x29df8,7}, + {0x1e2e5,3}, {0x197ab,9}, {0x1133c,11}, {0x296a4,5}, {0x2c4ed,6}, {0x1793e,10}, {0xe3d,18}, {0x2abb1,5}, + {0x2de83,4}, {0x1be96,9}, {0x31911,4}, {0x1b116,9}, {0x2af1c,7}, {0x92e5,12}, {0x14b58,10}, {0x23fa3,8}, + {0x2ca5f,6}, {0x149ca,8}, {0x3077b,3}, {0x22cf3,8}, {0x3066f,4}, {0x2377b,8}, {0x17cbc,3}, {0x2364b,8}, + {0x2592b,8}, {0x312ee,3}, {0x2e6da,5}, {0xbaa5,6}, {0x2145b,6}, {0x22d25,4}, {0x20382,6}, {0x1f9cc,9}, + {0x2a78c,7}, {0x102b,18}, {0xd597,7}, {0x305ef,4}, {0x124a2,10}, {0x2fcef,5}, {0x305ab,4}, {0x18248,4}, + {0x120dd,6}, {0x2f349,3}, {0x20bf1,8}, {0x4295,6}, {0x24655,5}, {0x798c,4}, {0x1f02a,7}, {0x1f543,9}, + {0x1975a,9}, {0x2ff15,5}, {0x1300a,10}, {0x24bc3,8}, {0x2d16d,6}, {0x2dbf3,6}, {0x23e1b,8}, {0x10c88,11}, + {0x28428,7}, {0x1d842,9}, {0x2eec8,5}, {0x117d9,5}, {0x137e4,10}, {0x544a,13}, {0x60a1,13}, {0x2c91f,6}, + {0x28d41,7}, {0x29b9e,7}, {0x26753,8}, {0x10bcd,11}, {0x1fed3,9}, {0x288fc,5}, {0x314b0,3}, {0xc605,11}, + {0x4f5d,8}, {0x2d161,6}, {0x8603,6}, {0x3057f,4}, {0x2772b,7}, {0x229a3,8}, {0x11c9e,5}, {0x21689,8}, + {0x2a47c,6}, {0x2613b,8}, {0x21941,8}, {0xb115,5}, {0x29a39,7}, {0x306af,4}, {0x22585,6}, {0x2363b,8}, + {0x17d50,10}, {0x602e,3}, {0x19013,9}, {0x13c94,10}, {0x28c22,7}, {0x2d455,5}, {0x1bb5a,9}, {0x1fe31,8}, + {0x2d149,6}, {0x261e,15}, {0x180ca,10}, {0x25d53,6}, {0x7dcd,12}, {0x2cc7b,6}, {0x194ff,8}, {0x29536,7}, + {0x2fbc8,5}, {0x31708,3}, {0x2c5e9,6}, {0x15058,10}, {0x2c6df,6}, {0x2c6af,6}, {0xbec5,12}, {0x54bf,13}, + {0x27d21,6}, {0x1070,17}, {0x1b854,8}, {0x17c06,5}, {0x2b120,6}, {0x11ec8,5}, {0xb4b3,6}, {0xfeb2,11}, + {0x2512b,8}, {0x2a57f,7}, {0x2f661,2}, {0x1466c,10}, {0x2bc83,4}, {0x28245,7}, {0x2466b,8}, {0xb73,2}, + {0x2e775,5}, {0x1487,16}, {0x4a8a,12}, {0x13c44,10}, {0x2c17b,6}, {0x89f5,5}, {0x1dca0,7}, {0x1ef4b,7}, + {0x2f175,2}, {0x30c1d,2}, {0x7cf7,8}, {0x25f05,5}, {0x6d53,13}, {0x2df62,3}, {0x26f77,5}, {0x1ac21,9}, + {0x29d96,6}, {0x307b2,4}, {0x2fe61,5}, {0x5124,13}, {0x282a0,7}, {0x231cb,8}, {0x2c7c9,6}, {0x11a15,9}, + {0x23e4,15}, {0x29a78,7}, {0x1fc03,9}, {0xac8f,6}, {0x2ae4c,5}, {0xe66b,7}, {0x12204,10}, {0x3037a,7}, + {0x59ed,12}, {0x2cfff,5}, {0x2c93d,6}, {0xa641,12}, {0x29ded,4}, {0x8522,7}, {0x35d7,14}, {0x1cdf5,9}, + {0x2381b,8}, {0x2fa8d,5}, {0xba3b,10}, {0xd8ab,11}, {0x2bfef,6}, {0x3ea5,14}, {0x2714a,7}, {0x2f763,5}, + {0x2feb6,5}, {0x18658,8}, {0x211b1,8}, {0x18a20,10}, {0x20a55,4}, {0x1281c,10}, {0x503a,13}, {0x1e8ec,9}, + {0x2d96b,5}, {0x1630e,10}, {0x8f14,5}, {0x5770,8}, {0x9531,12}, {0x1bec3,9}, {0x1cff6,9}, {0x72ba,3}, + {0x1a88b,9}, {0x90f9,5}, {0x25e0b,8}, {0x18040,3}, {0x8961,7}, {0x10b07,11}, {0x2cb91,6}, {0x2f986,3}, + {0x8145,12}, {0x3b17,14}, {0x1f957,9}, {0x27350,7}, {0x30c57,4}, {0x19ddd,7}, {0x25f57,4}, {0x1d2f3,6}, + {0xc015,12}, {0x19169,9}, {0xf4a4,11}, {0x1f033,8}, {0x2afa1,7}, {0xb4cb,10}, {0x1571a,10}, {0x20481,8}, + {0xed61,11}, {0x9d1d,11}, {0x2c441,4}, {0x2467e,3}, {0x2a062,7}, {0xbc4b,10}, {0x72cf,13}, {0x2f2e8,5}, + {0x2ecd9,5}, {0x1631a,5}, {0x2e653,5}, {0x1cea9,9}, {0x6b43,5}, {0x10cf8,6}, {0x1d9e0,9}, {0x7788,13}, + {0x102b,16}, {0x203c9,8}, {0x2edc9,5}, {0x28709,7}, {0x30fdb,6}, {0xc705,7}, {0x193c4,9}, {0x712f,5}, + {0x18926,10}, {0x16408,10}, {0x2c35b,5}, {0x1e4bd,9}, {0x11e33,11}, {0x28ca0,7}, {0x312f7,3}, {0x2cfe1,6}, + {0x2e172,3}, {0xc694,11}, {0x1b5c6,6}, {0x2b5ff,6}, {0x22ead,5}, {0x21824,5}, {0x2c8d7,6}, {0x141e,7}, + {0xb571,12}, {0x2b2dc,6}, {0x29436,3}, {0x11b6a,8}, {0x27977,7}, {0x30b43,4}, {0x10156,6}, {0x25133,8}, + {0x34e1,5}, {0x81e1,12}, {0x2de21,6}, {0x2b4d9,2}, {0x1dc58,7}, {0x286c4,4}, {0x1092,8}, {0x2c2a7,6}, + {0x7bf1,8}, {0xab5d,12}, {0x2ca65,6}, {0x2d8b1,6}, {0xed82,11}, {0x1d72b,9}, {0x30c41,2}, {0x29634,5}, + {0x2537d,6}, {0x285d,5}, {0x2f6cf,3}, {0x241f3,8}, {0x10da6,11}, {0x1037a,8}, {0x3161b,3}, {0x2efa6,5}, + {0x29cd9,7}, {0x2fec0,5}, {0x29591,7}, {0x19cc6,6}, {0x2db39,6}, {0x2605b,8}, {0x18da6,7}, {0x105ea,11}, + {0x61e8,11}, {0x2e67b,4}, {0x2e5f9,5}, {0x2ba49,6}, {0x2e1cc,3}, {0x27078,7}, {0x1c304,9}, {0x23653,8}, + {0xb175,12}, {0x18ea8,10}, {0x19427,9}, {0x8f25,12}, {0x30bbf,4}, {0x49c1,3}, {0x15c9c,10}, {0x2db51,6}, + {0x2fa51,5}, {0x1742c,8}, {0x31627,3}, {0x14f90,10}, {0x249eb,8}, {0x19ac3,9}, {0x8b41,12}, {0x2c6f7,6}, + {0x1763c,10}, {0x29fb5,5}, {0x2344b,8}, {0x4519,14}, {0xb6fd,12}, {0x2da25,6}, {0x2d325,2}, {0x1b52d,5}, + {0x1e4bf,6}, {0xb9c3,6}, {0x2957,12}, {0x1f423,9}, {0xbe65,12}, {0x1632c,10}, {0x2ef1a,5}, {0x288ad,7}, + {0x20b8b,5}, {0x2e603,5}, {0x51f6,5}, {0x1cf78,9}, {0x29823,7}, {0x2fcb3,5}, {0x13ba4,10}, {0x1df2f,9}, + {0x2b5f3,6}, {0x2330b,8}, {0x24f43,8}, {0x1735a,8}, {0x313ba,3}, {0x1b830,9}, {0x1e637,9}, {0x31272,5}, + {0x13596,10}, {0x2365b,6}, {0x1df65,9}, {0x3195d,4}, {0x11439,7}, {0x17742,8}, {0x79b9,7}, {0x2e1f6,3}, + {0x17ddc,10}, {0xa545,12}, {0x29441,7}, {0x21031,8}, {0xacdd,12}, {0x2e572,5}, {0x175f6,10}, {0x20a39,8}, + {0x12e7,15}, {0x26dfb,7}, {0x70e1,11}, {0x31283,3}, {0x129e8,10}, {0x14e5a,10}, {0x16e7,16}, {0x5724,9}, + {0x1ab1f,3}, {0x1876e,10}, {0x6a2d,12}, {0x2b366,6}, {0x1957,16}, {0x13fdc,10}, {0x2c241,6}, {0x2fda8,5}, + {0xce7c,11}, {0x4589,13}, {0x12a5,9}, {0x2e473,5}, {0x2fdd7,3}, {0xd1e1,11}, {0xab27,6}, {0x1a5a9,8}, + {0x14b08,10}, {0x17de,3}, {0x9171,12}, {0x16124,10}, {0x10847,11}, {0x1a8c1,9}, {0x11793,11}, {0x3096b,4}, + {0x2f8bc,4}, {0x2c693,3}, {0x1ead,9}, {0x2ee0a,5}, {0x22f05,5}, {0x12e84,10}, {0x22543,8}, {0x2d211,4}, + {0x3120a,5}, {0x8250,4}, {0x1e67f,9}, {0x9591,4}, {0x2d19d,6}, {0xed38,4}, {0x7095,4}, {0x2fd7b,5}, + {0xeea0,11}, {0x4757,14}, {0x303dd,4}, {0x2d167,6}, {0xe7f7,11}, {0xefd4,8}, {0x7b8d,12}, {0x11bec,11}, + {0xd0d9,11}, {0xd685,11}, {0x3751,14}, {0x9e91,12}, {0x123b,17}, {0x2e649,5}, {0x16de0,10}, {0x28023,7}, + {0x22a6b,8}, {0x2d64f,2}, {0x12fa6,10}, {0xd4e3,11}, {0xe353,11}, {0x11488,3}, {0x1acba,9}, {0x2eb0b,2}, + {0x1b299,9}, {0x28237,7}, {0x2522b,8}, {0x20341,9}, {0x22d8,10}, {0x2e90b,5}, {0x26fad,7}, {0xe0a9,11}, + {0x1af66,9}, {0x2553b,8}, {0x17420,10}, {0x82d1,9}, {0x24133,8}, {0x18b24,10}, {0x2960f,7}, {0x241dd,6}, + {0x3107,14}, {0x492d,3}, {0x2ebb2,5}, {0x18464,4}, {0x1f36f,6}, {0x4695,5}, {0x2243b,8}, {0x14bca,6}, + {0x30e87,4}, {0x146c0,6}, {0x2b114,6}, {0x25405,5}, {0x260fb,8}, {0x156ed,3}, {0x20491,8}, {0x31513,3}, + {0x2a284,7}, {0x131c2,10}, {0x2f078,5}, {0x30707,4}, {0x2c427,6}, {0x24393,7}, {0x878d,12}, {0x2d1d9,6}, + {0x30e1b,4}, {0x2233b,7}, {0x1c61c,9}, {0x3077,3}, {0x234c3,8}, {0xde43,9}, {0x5fbc,5}, {0x11ee3,7}, + {0x283ac,4}, {0x174fe,8}, {0x1fc71,5}, {0x20979,8}, {0x3441,13}, {0x28539,7}, {0x1d962,9}, {0x11a6,13}, + {0x19fdc,9}, {0xe3d2,3}, {0x6e9a,11}, {0x2bbd5,6}, {0x29281,7}, {0x25bcb,8}, {0xb417,5}, {0x19d8a,9}, + {0x28b73,5}, {0x26c3,14}, {0x2d355,4}, {0x2a524,7}, {0x2fa74,5}, {0x5ea8,10}, {0x158fe,6}, {0x3157a,3}, + {0x2e015,4}, {0x369b,14}, {0x68ce,13}, {0x2cef9,4}, {0x2c7e1,6}, {0xb162,4}, {0x11efb,9}, {0x28077,7}, + {0xa6a1,12}, {0xa965,8}, {0xb3f1,11}, {0x8cc1,12}, {0x227fb,8}, {0x7636,13}, {0x128e4,9}, {0xe886,11}, + {0x15210,10}, {0x1eb23,9}, {0x2fede,5}, {0x2b3a2,6}, {0x2a467,7}, {0x44b0,2}, {0x31540,3}, {0xf46d,11}, + {0x2fa60,5}, {0x2b168,6}, {0x2e8e3,5}, {0x2b773,6}, {0xb4ed,5}, {0x1587,16}, {0xabc9,11}, {0x2687c,7}, + {0x14824,10}, {0x16354,10}, {0x2e752,5}, {0x24513,8}, {0x11399,6}, {0x2b86f,5}, {0x225db,8}, {0x30c8f,4}, + {0x2f7bd,5}, {0x30cf3,4}, {0x18606,10}, {0x2bc55,4}, {0x22923,8}, {0x1b035,9}, {0x29caf,5}, {0x2f9c5,5}, + {0xe6a,5}, {0x22a27,4}, {0x8cdf,6}, {0x3097b,4}, {0x1945d,9}, {0x7d79,12}, {0x17f76,10}, {0x13938,10}, + {0xb091,11}, {0x2dad9,6}, {0x31851,4}, {0xb7d7,10}, {0x76f9,13}, {0x7cc5,12}, {0x22ed3,8}, {0x7496,8}, + {0x1d82b,5}, {0x2d263,6}, {0x1ec96,4}, {0x3903,14}, {0x31254,3}, {0x17b3e,10}, {0x18340,10}, {0x2022a,9}, + {0x2d01d,6}, {0x226d,15}, {0x2c3b5,6}, {0x172ea,10}, {0x2e540,5}, {0x229ff,4}, {0x18cb4,9}, {0x2e009,4}, + {0x2dd21,4}, {0x223a3,8}, {0x163ea,10}, {0x242a3,8}, {0x7122,13}, {0x2a421,7}, {0x2e1ed,6}, {0x500d,6}, + {0x2b396,6}, {0x2a25a,7}, {0x9495,12}, {0x2f6c3,5}, {0x3844,3}, {0x2ca2d,6}, {0xc4d3,8}, {0x2266b,8}, + {0x1c69a,9}, {0x20489,8}, {0x4f02,13}, {0x206e3,6}, {0x53d9,3}, {0x19787,9}, {0x1885e,10}, {0x1797,16}, + {0x2fadd,5}, {0x31a97,2}, {0x30f6f,6}, {0x31af7,2}, {0x1da79,5}, {0x2ac9d,7}, {0x30e5b,4}, {0x2c1b1,6}, + {0x16d40,10}, {0x1faad,9}, {0x19868,9}, {0x1da69,5}, {0x146b2,10}, {0xfe18,11}, {0x316e4,3}, {0x25e13,8}, + {0x2374,7}, {0x1294,4}, {0x1bc44,9}, {0x266a3,6}, {0x137cb,4}, {0x28fd,15}, {0x120e8,11}, {0x4e66,13}, + {0x2bf05,6}, {0x2b1a4,6}, {0x2a540,7}, {0x4b67,13}, {0xe004,11}, {0x254b3,8}, {0x31610,3}, {0x2d245,6}, + {0x2a364,7}, {0xea6a,4}, {0x17936,8}, {0x2fd9b,3}, {0x2cef1,6}, {0x1b1ca,9}, {0x9a71,6}, {0x268ec,7}, + {0x77f0,13}, {0xaf2,11}, {0x2bc4d,6}, {0x2ad9b,7}, {0x1357,3}, {0x1a5f1,9}, {0x21945,4}, {0x1cb6b,9}, + {0x1774a,10}, {0x2fdad,5}, {0x2fa44,3}, {0x28971,7}, {0x25f63,8}, {0x2ddf1,6}, {0x2968d,7}, {0xbd8f,9}, + {0x3b6b,14}, {0x2c55f,6}, {0x2a2fb,7}, {0x2914f,5}, {0x26295,6}, {0x9ec1,12}, {0x117e0,11}, {0x1ea74,3}, + {0xcbc7,11}, {0x1cb7d,9}, {0x2c5d7,6}, {0x2ef24,5}, {0x2b156,6}, {0x4b0c,13}, {0x229bb,8}, {0x31959,4}, + {0x242c3,5}, {0x84c9,12}, {0x158f0,10}, {0x2d5d5,5}, {0x24625,6}, {0x57e5,13}, {0x4a9e,6}, {0x7817,13}, + {0x2e721,3}, {0x29f5f,7}, {0x1ac18,9}, {0x31825,4}, {0xcda2,4}, {0xcebe,9}, {0x15f96,7}, {0x5bb4,13}, + {0xb4f0,9}, {0x3156a,3}, {0x2ec52,5}, {0x264fb,8}, {0x2653b,8}, {0x448d,13}, {0x7416,4}, {0x12b50,10}, + {0x268a6,7}, {0x12362,10}, {0xe38c,8}, {0x24f63,8}, {0x2e43c,5}, {0x2f0af,5}, {0x26955,7}, {0x10c0f,11}, + {0x14bee,10}, {0x2d869,6}, {0x851d,12}, {0x2e02d,4}, {0xb5a1,12}, {0x18298,8}, {0x1a036,9}, {0x177d6,9}, + {0x20056,9}, {0x2dbb7,6}, {0x2ec66,5}, {0x17e5e,10}, {0x2f59a,5}, {0x183f4,10}, {0x6603,13}, {0x2008c,9}, + {0x15170,10}, {0x2eed7,5}, {0x2e0dc,3}, {0x1af81,9}, {0x35c9,14}, {0x1d46d,9}, {0x30637,4}, {0x22d0b,8}, + {0x4313,14}, {0x2415b,8}, {0xe6e4,11}, {0xe80d,11}, {0x6100,7}, {0x2e7d,4}, {0x1ebaa,9}, {0x1f2ea,5}, + {0x3147a,3}, {0x3179a,4}, {0x30e8b,4}, {0x2b000,12}, {0x105be,11}, {0x258bb,8}, {0x315d4,3}, {0x2fe11,5}, + {0x2e205,6}, {0x1c568,9}, {0x2424d,6}, {0x2b953,6}, {0x1db5a,9}, {0x290c8,7}, {0x17c24,10}, {0x29f0b,7}, + {0x31368,2}, {0x4459,10}, {0x16b92,10}, {0x2e3e2,5}, {0x162be,10}, {0x1e8da,9}, {0x24a45,6}, {0x3149e,3}, + {0x1b881,9}, {0xb3ac,6}, {0x1b641,9}, {0x2aafc,4}, {0x376d,14}, {0x23fcd,5}, {0x2071b,6}, {0x2dcd3,4}, + {0x27a57,7}, {0xbf19,12}, {0x269ef,7}, {0x1fec3,7}, {0x166ce,10}, {0x2fccc,5}, {0x5fbe,6}, {0x236d5,6}, + {0x17ac8,3}, {0x2fe7a,5}, {0x2c9cf,4}, {0x147d4,10}, {0x29b35,7}, {0x7f8e,7}, {0x2a7aa,5}, {0x2241b,8}, + {0x2e88,8}, {0x2222b,6}, {0x23c6,15}, {0x23c43,8}, {0x31399,3}, {0x2d3d1,6}, {0xbfa9,12}, {0x10f4a,7}, + {0x1fc8c,5}, {0x1d2fc,8}, {0x11767,11}, {0x30359,5}, {0x2e345,5}, {0x126a0,10}, {0x2b3c6,6}, {0x318d1,4}, + {0x2370b,8}, {0x2f62b,5}, {0x1f54c,9}, {0x9fd5,12}, {0x323b,14}, {0x18f8c,9}, {0x25833,8}, {0x7f1f,10}, + {0x1afc,15}, {0xc4a5,11}, {0x2e83,14}, {0x18fa7,3}, {0x2e9b2,5}, {0x25845,6}, {0x313c9,3}, {0x48b5,13}, + {0x1b953,6}, {0x2d623,6}, {0x282e6,7}, {0x2b2ee,6}, {0x13d3e,10}, {0x2f31a,5}, {0x2a0fc,7}, {0x304f3,4}, + {0x27a0a,7}, {0xe537,10}, {0x6b4b,13}, {0x1ebce,9}, {0x17e18,7}, {0xb155,8}, {0x1da31,9}, {0x8151,12}, + {0x202f9,6}, {0x2c501,3}, {0x258e5,6}, {0xf079,11}, {0x29890,3}, {0x26947,7}, {0x11e35,5}, {0x64a8,4}, + {0x2a4af,5}, {0xaf4,9}, {0x7421,5}, {0x31a4d,4}, {0xdb34,11}, {0x28a2e,7}, {0x312ad,3}, {0x8636,7}, + {0xe35,26}, {0xe35,38}, {0x1acf9,9}, {0x25b0b,8}, {0x1bb12,9}, {0x13f00,5}, {0x1cc9f,9}, {0x2b3f0,6}, + {0x20e19,8}, {0x2ead1,5}, {0x19ceb,5}, {0x58a8,13}, {0x2f876,5}, {0x1729c,3}, {0x26ee2,7}, {0x2a72a,7}, + {0x2ac26,7}, {0x3046d,4}, {0xf420,10}, {0x2e7e6,6}, {0x2145,4}, {0x1fc56,7}, {0x1f73b,9}, {0x1396a,5}, + {0x14eb4,10}, {0x1bbf3,9}, {0x3131b,3}, {0x1c934,9}, {0x1efc0,7}, {0x53d7,7}, {0x1e35,15}, {0x22053,8}, + {0x1d050,9}, {0xb9cd,12}, {0x1b93e,9}, {0xdcf3,2}, {0x1f9fb,5}, {0x6bb3,10}, {0x2ba4,2}, {0x1b491,9}, + {0x1b569,9}, {0x265dd,6}, {0x2d329,6}, {0x1def9,9}, {0x1baf7,9}, {0x2b4ce,6}, {0x7f41,12}, {0xbd09,12}, + {0xa185,12}, {0x2f1b8,5}, {0x74f1,5}, {0x11c02,11}, {0x5645,13}, {0x1cc62,6}, {0x31501,3}, {0xae39,12}, + {0x2fc81,5}, {0x2fd3a,5}, {0x1a1c2,9}, {0x1dc32,9}, {0x2fa47,5}, {0x411b,14}, {0x10ecf,6}, {0x30a85,2}, + {0x2e36f,5}, {0x1171,13}, {0x2bc89,6}, {0x2e181,6}, {0x1abac,9}, {0x15378,10}, {0x11805,3}, {0x21541,8}, + {0x230d3,8}, {0x317f5,4}, {0x140e0,10}, {0x2867,15}, {0x2fea7,5}, {0x4523,4}, {0xb3cd,7}, {0x2f966,5}, + {0x18e30,10}, {0xd6dd,11}, {0x8f72,7}, {0x5201,13}, {0xe5fd,11}, {0x22f43,8}, {0x23adb,8}, {0x296ef,7}, + {0x31925,4}, {0xa065,7}, {0x25ba3,8}, {0x30f57,6}, {0x2e4b4,5}, {0x268de,7}, {0x10ca0,9}, {0x2c669,4}, + {0x22cc6,5}, {0x28b81,7}, {0xa431,12}, {0x10a78,4}, {0x7421,13}, {0xfcd9,11}, {0xb3f1,12}, {0x3093b,4}, + {0x1eef1,7}, {0x1b83,15}, {0x2cbdf,6}, {0x2f3e2,5}, {0x1d77c,9}, {0xdf8b,5}, {0x2bfc5,6}, {0x1177d,11}, + {0x492b,13}, {0x761c,13}, {0x1112,3}, {0x151c3,3}, {0x10469,11}, {0x2d0a7,6}, {0x117a3,6}, {0x279e7,6}, + {0x20401,5}, {0x2b414,6}, {0x2b37e,6}, {0x28af9,7}, {0x1c97c,9}, {0x2d25a,3}, {0x112e6,9}, {0x9d59,12}, + {0x2eb4e,5}, {0xb511,12}, {0x1e934,9}, {0x11944,9}, {0x12286,7}, {0x1f839,4}, {0x2e8a2,5}, {0x15c7,16}, + {0x765f,4}, {0x23d7d,3}, {0xc4bb,11}, {0x1e9c4,9}, {0x1ef01,9}, {0x16cf2,7}, {0x1ff02,5}, {0x2eee6,5}, + {0xa2e6,7}, {0xc20a,11}, {0x2e3ec,5}, {0x21ae1,8}, {0x31915,4}, {0x30593,4}, {0x20849,8}, {0x18dd6,10}, + {0x18068,7}, {0x6130,13}, {0x2efa1,5}, {0x2a849,6}, {0xd77a,5}, {0x22713,8}, {0x15012,10}, {0x1697,16}, + {0x3134b,3}, {0x1914e,9}, {0xd48,48}, {0x224fb,8}, {0x1edf5,6}, {0x1d1a6,9}, {0x2cbdb,3}, {0x118d4,6}, + {0x13e92,10}, {0x70f0,7}, {0x2c247,5}, {0x30b13,4}, {0x13dfc,10}, {0x2e7d6,6}, {0x1e26,13}, {0x2fd08,5}, + {0x31516,3}, {0x31411,3}, {0x31519,3}, {0x154f4,10}, {0x2ca59,6}, {0x207d9,8}, {0x200b0,9}, {0x9825,12}, + {0xbcfd,12}, {0x14e32,10}, {0xc689,11}, {0x2848a,7}, {0x1f234,9}, {0x17295,5}, {0x31580,3}, {0x12966,10}, + {0xeb9e,11}, {0x24a5b,8}, {0x478f,14}, {0x3180d,4}, {0x24dd5,6}, {0x547e,13}, {0x11900,11}, {0x15321,7}, + {0xb9d3,3}, {0x40e5,4}, {0x30703,4}, {0x103a3,11}, {0x23e93,6}, {0x303fd,4}, {0x2cd8b,4}, {0x18d40,10}, + {0x1bcdd,9}, {0x16796,10}, {0x238cb,8}, {0x262c3,8}, {0x15198,6}, {0x2479b,8}, {0x31506,3}, {0x23ba3,8}, + {0x1e92b,9}, {0x3063b,4}, {0x28229,7}, {0x1380,4}, {0x19091,9}, {0x83e5,12}, {0x253fd,2}, {0x18662,8}, + {0x4af2,5}, {0x1fb4f,9}, {0x27812,7}, {0x1d7cd,9}, {0x11dfc,11}, {0xc959,6}, {0xf49e,4}, {0x2acc0,7}, + {0x25cd5,4}, {0x1e9a0,5}, {0x769e,11}, {0x98ea,7}, {0x8ffd,12}, {0x23b4d,6}, {0x15986,10}, {0x1103a,7}, + {0x3182d,4}, {0x1aabc,4}, {0x3116d,6}, {0x17ad,3}, {0x267a3,7}, {0x285a9,7}, {0x2f518,5}, {0x31576,3}, + {0x1f840,9}, {0x2d9a7,5}, {0x8085,12}, {0xd449,11}, {0x2c2ad,6}, {0x17524,7}, {0xccb4,3}, {0xcc77,10}, + {0xb031,11}, {0x2cc27,4}, {0x1896c,10}, {0x172a6,4}, {0x215c9,8}, {0x2ba85,6}, {0x31330,3}, {0x10455,4}, + {0x1495a,5}, {0x2ee37,5}, {0x23803,8}, {0x2d78b,6}, {0x183d6,10}, {0xccc,5}, {0x30bfb,4}, {0x1353c,10}, + {0x28f16,7}, {0x239f3,8}, {0x105b3,11}, {0x247dd,6}, {0x254b6,3}, {0x25735,6}, {0x1fa89,9}, {0x2b054,12}, + {0x1d52d,3}, {0x9abf,6}, {0x2b3ba,6}, {0x180c0,10}, {0x20d84,5}, {0x82ad,12}, {0x216b1,8}, {0x22adb,8}, + {0x15a80,10}, {0x1df82,7}, {0x81c9,12}, {0x17560,10}, {0x27e5c,7}, {0x1d4eb,9}, {0x2cbd9,5}, {0x315eb,3}, + {0x14a36,10}, {0x219f,6}, {0x29037,5}, {0x1ece5,9}, {0x29bae,5}, {0x11bcd,8}, {0x270be,7}, {0x15f1c,10}, + {0xfa9d,10}, {0x2d11b,4}, {0x2f5e0,5}, {0x7761,13}, {0xd8c6,6}, {0x1cbaa,9}, {0x2f73b,5}, {0x13c5a,6}, + {0x1dfc8,8}, {0xf04,6}, {0x1ccd5,9}, {0x2cf5d,6}, {0x1f3e4,9}, {0x20db1,8}, {0x12eae,6}, {0x24e3,15}, + {0x2a9a7,7}, {0x31a51,4}, {0x18c98,7}, {0x28b88,7}, {0x2af0e,7}, {0x264d5,5}, {0x14dd8,10}, {0x2827d,7}, + {0x17f14,8}, {0x4adc,7}, {0x2c469,6}, {0x1f600,6}, {0x1899,13}, {0x2ef6f,5}, {0x2f342,5}, {0xe24b,11}, + {0x2ee73,5}, {0x2fd44,5}, {0x25afd,6}, {0xcea8,11}, {0x263ab,8}, {0x23133,8}, {0x25b23,6}, {0x3091f,4}, + {0xa193,10}, {0x23593,8}, {0xbbdd,6}, {0x11e3e,11}, {0x12c40,10}, {0x85f5,12}, {0x16bb0,10}, {0x12fb,2}, + {0x1fff5,3}, {0x78ca,3}, {0x3dfd,14}, {0x24643,8}, {0x2fdee,5}, {0x303c9,4}, {0x2e4af,5}, {0xfee4,5}, + {0x1dea1,7}, {0x5abd,13}, {0x28364,7}, {0x23b2b,8}, {0x18d18,10}, {0x2f626,5}, {0x10457,4}, {0x3181d,4}, + {0x1adbf,9}, {0x2d7fd,5}, {0x2e374,5}, {0x1af03,8}, {0x5e58,13}, {0x30a9b,4}, {0x776e,13}, {0x2d0c5,6}, + {0x2b2ac,6}, {0xeaf4,4}, {0xc72e,11}, {0x654d,12}, {0x24613,8}, {0xe32b,7}, {0x1652a,10}, {0x10b75,11}, + {0x22a65,6}, {0x2d5b7,6}, {0x2baa9,6}, {0x589b,13}, {0x2b8a5,6}, {0x92cd,12}, {0xa179,12}, {0xa569,12}, + {0x254db,8}, {0x2fe75,5}, {0x16666,4}, {0x16872,10}, {0x2b42c,6}, {0x2e99e,4}, {0x2c601,6}, {0x3382,4}, + {0x4de4,8}, {0x1b37a,9}, {0x2795,15}, {0x2d4fd,6}, {0x2ffd,14}, {0x28cd8,7}, {0x13f50,10}, {0x17cba,7}, + {0x11f30,8}, {0x1886a,8}, {0x2a34f,7}, {0x6639,8}, {0x1ced,4}, {0x2385b,8}, {0x2ab85,7}, {0x2fdda,5}, + {0xcfa5,11}, {0x3129b,3}, {0x1c889,9}, {0x23353,8}, {0xfbe9,9}, {0x24973,8}, {0x6dca,5}, {0x48ea,4}, + {0x139a6,10}, {0x31619,3}, {0x2a276,7}, {0x28046,7}, {0x1c9f1,9}, {0x1cba1,9}, {0x25143,8}, {0x1e441,7}, + {0x24913,8}, {0x218b4,5}, {0x242db,8}, {0x27636,7}, {0x3d63,14}, {0x11b52,6}, {0x10689,6}, {0x10778,4}, + {0x1e912,3}, {0x13e2e,10}, {0x22f15,6}, {0x316e1,3}, {0x2ec16,5}, {0xb715,8}, {0x319cd,4}, {0x2c56,3}, + {0x2e72f,5}, {0x1a063,8}, {0x165e,5}, {0x19442,9}, {0x29b6d,7}, {0x6060,13}, {0x10cca,11}, {0x204c9,8}, + {0x17402,10}, {0xbded,12}, {0x809f,6}, {0x7518,13}, {0xc555,11}, {0x6cde,13}, {0x17ce2,10}, {0x2d0b3,6}, + {0x27b22,7}, {0x2249,4}, {0x2f59c,3}, {0x17024,10}, {0x31cd,4}, {0x24fa3,8}, {0x11887,11}, {0x390a,5}, + {0x31393,3}, {0x9f39,12}, {0x9c78,7}, {0x30583,4}, {0x14fa4,10}, {0x2aec,15}, {0x2bab,4}, {0x20542,4}, + {0x303f5,4}, {0x2b4bc,6}, {0xa58d,12}, {0x23603,8}, {0x17a7,16}, {0x1bccb,9}, {0xf4c0,5}, {0x21ce9,8}, + {0x13d4a,7}, {0x2c463,5}, {0x2425b,8}, {0x2f428,5}, {0x310c5,6}, {0x1ae2,11}, {0x95fd,12}, {0x1fdf2,9}, + {0xabfb,9}, {0x24b03,8}, {0x10c72,11}, {0x24fb3,8}, {0x31600,3}, {0xc3ea,11}, {0x697d,7}, {0x31abd,2}, + {0x273a4,6}, {0x11163,11}, {0x1eb98,9}, {0x2551b,8}, {0x179fa,4}, {0x2310b,8}, {0x2bb51,6}, {0x1d84b,9}, + {0x154b8,10}, {0x29c89,3}, {0x28815,5}, {0xd761,9}, {0xa935,12}, {0x2ae97,7}, {0x9711,11}, {0x2d229,4}, + {0x232fb,8}, {0x2f2b,14}, {0x28379,7}, {0x298a1,7}, {0xc16,12}, {0x287b1,7}, {0x2ab38,7}, {0x3062b,3}, + {0xed35,11}, {0x25a93,7}, {0x20aeb,6}, {0x139ce,10}, {0x554e,13}, {0x29d0a,7}, {0x65e9,5}, {0x1f3f8,3}, + {0x2eab6,5}, {0x2f731,5}, {0x2a59b,7}, {0x30e5f,4}, {0x267bf,7}, {0x29479,6}, {0x23cfe,5}, {0x2c0eb,6}, + {0xb1c9,5}, {0x18b42,10}, {0x785c,3}, {0x2b3a8,6}, {0x30405,4}, {0x1de21,6}, {0x1d839,9}, {0x2e757,5}, + {0x314f3,3}, {0x1f4d1,5}, {0x12386,4}, {0x1180c,11}, {0x18c0a,7}, {0x2fb69,5}, {0x18b08,8}, {0xe3e2,8}, + {0x2c4e7,6}, {0x29e61,5}, {0x24f73,8}, {0x25d1b,8}, {0xb8bb,6}, {0x1f7a0,7}, {0x30903,4}, {0xaaf,35}, + {0x1c28,15}, {0x28986,7}, {0x25d6b,8}, {0x301b,7}, {0x16a48,10}, {0x29831,7}, {0x312dc,3}, {0xe906,4}, + {0x1ed7a,3}, {0x30e1f,4}, {0x23c63,8}, {0x17448,10}, {0x23513,8}, {0x1cd77,9}, {0x2b462,6}, {0x2bcb9,6}, + {0x26d53,7}, {0x261f3,8}, {0x1f2d8,4}, {0x125f,11}, {0x1c89b,9}, {0x30cd3,4}, {0x267e9,7}, {0x2d641,6}, + {0x3ae6,7}, {0x2600b,8}, {0x15fdd,5}, {0x11f48,9}, {0x2e944,5}, {0xbde3,2}, {0x26a12,7}, {0x12e9a,5}, + {0x2b4a4,6}, {0x7ff5,12}, {0x176be,7}, {0x1367,16}, {0x261e3,8}, {0x1c93d,9}, {0x2234d,3}, {0x2e527,5}, + {0x85d1,7}, {0x1c94f,9}, {0x1ef76,9}, {0x138d6,8}, {0x64a6,9}, {0x2d36b,6}, {0x2e4a0,5}, {0x2eb7b,5}, + {0x29e84,7}, {0x18840,10}, {0x313e4,3}, {0x8499,12}, {0x2ed1f,4}, {0x5790,7}, {0x2bf6b,6}, {0x1f888,9}, + {0x23a53,8}, {0x1e7de,9}, {0x22225,6}, {0x230db,6}, {0x2cabb,4}, {0x23403,8}, {0x2a594,7}, {0x1fb2b,9}, + {0x1cfa7,3}, {0xe3e2,11}, {0x17632,10}, {0x2fb7d,5}, {0x2a881,7}, {0x1780a,4}, {0x17f6e,4}, {0x2b3f6,6}, + {0x1484c,10}, {0xecbc,11}, {0x5eda,8}, {0x2b31e,6}, {0x452a,4}, {0x1f395,7}, {0x1431a,10}, {0xa2c9,12}, + {0x448d,14}, {0x11ad9,11}, {0x2c967,6}, {0x319e9,4}, {0x13a7,16}, {0x2c883,6}, {0x1e367,9}, {0x2de0f,6}, + {0x10e4d,3}, {0x1a573,9}, {0x1ebb5,7}, {0xa155,11}, {0x7941,12}, {0xea75,5}, {0xb7ed,12}, {0x275aa,7}, + {0x2c019,6}, {0x1e448,9}, {0x2615b,8}, {0x26b8e,5}, {0x27f89,6}, {0x303d5,4}, {0x2fd9,7}, {0x1be5a,4}, + {0x11f3b,11}, {0x252db,8}, {0x1cee3,3}, {0xdfee,11}, {0x1bc7a,9}, {0x286df,7}, {0x4455,14}, {0x2a413,7}, + {0x2c8fd,4}, {0xd076,11}, {0x23dc3,7}, {0x29169,7}, {0x184e4,8}, {0x2f7d1,5}, {0x2014b,7}, {0x2e958,5}, + {0x20689,8}, {0x2ed29,5}, {0x27a8f,7}, {0x9579,12}, {0x1f2f1,9}, {0x31809,4}, {0xb67b,5}, {0x3147c,3}, + {0x5fc4,13}, {0x1fdc8,4}, {0x27468,6}, {0x11bcb,8}, {0x2e199,6}, {0x2dddb,4}, {0x5f01,5}, {0x2a8b9,7}, + {0x19c87,7}, {0x31af1,2}, {0x31570,3}, {0x2e884,5}, {0x16bb0,6}, {0x29cf,15}, {0x11aef,11}, {0x25ef3,8}, + {0x318cd,4}, {0xf3ac,6}, {0x19334,9}, {0x18480,10}, {0xa74b,10}, {0x170da,3}, {0x1e7aa,4}, {0x12b96,10}, + {0x13974,10}, {0x10387,2}, {0x12e66,10}, {0x11470,11}, {0x30f2d,6}, {0x305d3,4}, {0x2a7e2,3}, {0x1927,16}, + {0x203b1,8}, {0xc183,4}, {0x26939,7}, {0x12f9c,10}, {0x218d1,8}, {0x2639b,8}, {0x1e98e,9}, {0x2a9ed,7}, + {0x7cd7,3}, {0x21c09,8}, {0x1af30,9}, {0xdfc2,11}, {0x7d3f,7}, {0x2e3ab,5}, {0x1ed3b,3}, {0x3a0d,5}, + {0x8f38,5}, {0x11d41,11}, {0x1a64d,7}, {0x1c007,7}, {0x1b8c0,9}, {0x1d0e9,9}, {0x24b8b,8}, {0x1fcd2,9}, + {0xa952,7}, {0x26b46,7}, {0x25ebb,8}, {0x22bbb,8}, {0x2a80a,7}, {0x2dd07,6}, {0x314bc,3}, {0xb34b,5}, + {0x2c50b,6}, {0x2d455,6}, {0x34bf,14}, {0x27e78,7}, {0x178f8,10}, {0x23bf5,4}, {0x4db0,13}, {0x1eec2,9}, + {0x2dd9d,6}, {0xf8c,3}, {0x19fd3,9}, {0x23ef3,8}, {0x2405b,8}, {0x2a237,7}, {0x14464,10}, {0x18cde,8}, + {0x9201,12}, {0x24373,8}, {0x1434f,7}, {0x2a5fd,7}, {0x229c,4}, {0x1e306,7}, {0x2f6b4,5}, {0xedfb,11}, + {0x30dcb,4}, {0x16c82,9}, {0x2755f,5}, {0x1424d,5}, {0x20499,8}, {0x1997,16}, {0x2b270,6}, {0x20cf9,8}, + {0x275f7,7}, {0xaf4d,12}, {0x2ed38,5}, {0x1173b,11}, {0x2c373,5}, {0x2ee82,5}, {0x2864c,5}, {0x63db,6}, + {0x10df5,8}, {0x2ca4b,8}, {0x1934f,9}, {0x208c1,8}, {0x17d82,10}, {0x3184d,4}, {0x2a666,7}, {0x2e0fa,3}, + {0x315fd,3}, {0xd378,11}, {0x1eeb9,9}, {0x31215,3}, {0x27a73,7}, {0x105e2,4}, {0x27d7,8}, {0x2d32f,6}, + {0xc1ff,11}, {0x313f3,3}, {0x2ddc7,6}, {0x16f0c,10}, {0x179f4,10}, {0x6f5b,13}, {0x29417,6}, {0x13b1e,4}, + {0x2e658,5}, {0x19d7,16}, {0x21949,8}, {0x94a1,12}, {0x10918,11}, {0x2ab7e,7}, {0x203d9,8}, {0x18450,8}, + {0x1aa68,9}, {0x2f01e,5}, {0x2cc69,6}, {0x2306b,8}, {0x28e9f,7}, {0x2b2ca,6}, {0x19f55,9}, {0x2cb03,4}, + {0x2fafd,3}, {0x2b500,9}, {0x8091,12}, {0x21a41,8}, {0x71e5,13}, {0x1e7d5,9}, {0x220b3,5}, {0x1e78d,9}, + {0x5582,13}, {0x2fd99,5}, {0x2b102,6}, {0x10a02,4}, {0x3164c,3}, {0xb0b5,12}, {0x304b5,4}, {0x1e5b2,7}, + {0x228a3,8}, {0x2cf99,6}, {0x1337,16}, {0x2c5dd,6}, {0x7240,13}, {0x2f617,5}, {0x312cd,3}, {0x6e80,6}, + {0x1d06b,9}, {0xf953,8}, {0xc883,10}, {0x11696,11}, {0x2392b,7}, {0x19b38,9}, {0x96b1,12}, {0x18e9e,10}, + {0x22405,6}, {0x29f4,3}, {0x9cd5,11}, {0x2bf1,14}, {0x23903,8}, {0x2e340,5}, {0x8f79,12}, {0x29ae1,7}, + {0x2afbd,7}, {0x2e1ab,6}, {0xe09e,11}, {0x29417,7}, {0x2ea90,2}, {0x2f952,5}, {0x1b844,6}, {0x53bb,13}, + {0x2ef6a,4}, {0x2dcd1,6}, {0x62fa,3}, {0x3158b,3}, {0x54f3,7}, {0x11186,3}, {0x315e5,3}, {0x10fa0,11}, + {0x1e718,9}, {0x7f5f,4}, {0x218c1,7}, {0x147ac,10}, {0x23c23,5}, {0x4687,5}, {0x189da,10}, {0x31f8,4}, + {0x2ba25,6}, {0x1b584,9}, {0x200f8,7}, {0x58c2,12}, {0x1e760,8}, {0x1bbec,7}, {0xbd51,12}, {0x2d9a1,6}, + {0x31ab5,2}, {0x30465,4}, {0x229a,15}, {0x261ab,8}, {0x2fbd7,5}, {0x1f40d,3}, {0x1ab01,9}, {0x10af1,11}, + {0x2447b,8}, {0x30b83,4}, {0x1560c,7}, {0x1ef13,9}, {0x22413,8}, {0xda84,11}, {0x2a703,4}, {0xb6b7,9}, + {0x216a9,8}, {0x42b1,14}, {0x1ef25,9}, {0x27564,7}, {0x2d75d,3}, {0x2e00f,4}, {0x2cfff,6}, {0x318c5,4}, + {0x2222d,6}, {0x319d1,4}, {0x228f3,8}, {0x1d0ce,9}, {0x24343,8}, {0x24c23,8}, {0x471f,13}, {0x23ef3,6}, + {0x2f239,5}, {0x11236,4}, {0x2cbeb,6}, {0x30e39,2}, {0x1e57a,9}, {0x209f4,5}, {0x126f3,5}, {0x1940,4}, + {0x1d09,7}, {0x186ce,10}, {0x313db,3}, {0x12d08,10}, {0x6f41,13}, {0x250d3,8}, {0x26493,8}, {0x2264d,6}, + {0xb199,11}, {0x46c2,4}, {0x24675,6}, {0xf911,11}, {0x1f192,9}, {0x1fb7e,4}, {0x2e318,5}, {0x1089f,11}, + {0x313bd,3}, {0x7959,12}, {0x2e96c,5}, {0x2b216,6}, {0x17a17,5}, {0x2b64d,6}, {0x10781,6}, {0x314c8,3}, + {0x29f97,7}, {0x4bc8,7}, {0x165de,10}, {0x178da,10}, {0x11465,11}, {0x2b3ea,6}, {0xb18d,12}, {0x181b,4}, + {0x21699,8}, {0x2293b,8}, {0x1d383,9}, {0x2a229,5}, {0x1fe33,7}, {0x30485,4}, {0xa76d,12}, {0x16aa,4}, + {0x1a0f5,7}, {0x30a6b,4}, {0x15418,10}, {0xf953,11}, {0x10d6f,11}, {0x1f06b,7}, {0x28733,7}, {0x197bd,9}, + {0x1eac0,9}, {0x26c7a,7}, {0x2a65f,7}, {0x1e103,9}, {0x9d11,9}, {0x10fed,11}, {0x2b24c,6}, {0x31a5,3}, + {0x25293,8}, {0x345d,14}, {0x289da,7}, {0x244eb,8}, {0x316ae,3}, {0x2e55e,5}, {0xc215,11}, {0x2b4a5,2}, + {0x144aa,10}, {0x2bff5,6}, {0x787f,8}, {0x14287,7}, {0xcfca,5}, {0x158e0,5}, {0x282bc,7}, {0x47b9,11}, + {0x742e,13}, {0x174d9,2}, {0x31306,3}, {0xae8f,8}, {0x3160c,3}, {0x16840,10}, {0xb6f1,12}, {0xf467,5}, + {0x216b9,8}, {0x252e3,8}, {0x2a6ba,7}, {0x2a7cb,7}, {0x1e880,6}, {0x30a3b,4}, {0x319a5,4}, {0x2e79,2}, + {0x23e73,8}, {0x29598,7}, {0x2a1b9,7}, {0x2d79d,6}, {0x2fdc6,5}, {0x31546,3}, {0x201a3,9}, {0x2325d,6}, + {0x162a0,9}, {0x2eb12,5}, {0x19d81,9}, {0x253e3,8}, {0x28d0,15}, {0x251bb,8}, {0x2f266,5}, {0x10642,11}, + {0x202f9,9}, {0x1d8ed,8}, {0x17968,10}, {0x16b38,10}, {0x176be,10}, {0x29758,7}, {0x257b3,8}, {0x2990c,5}, + {0x272f5,7}, {0x16674,10}, {0xff0d,8}, {0x248b3,8}, {0x20771,8}, {0x1a8dc,9}, {0x2f0b4,5}, {0x2f6eb,5}, + {0xde7a,8}, {0x1360e,10}, {0x2fdf3,5}, {0x18372,6}, {0x2da79,6}, {0x22723,8}, {0x1553a,10}, {0x15314,10}, + {0x2c30d,5}, {0x2da85,6}, {0x1140d,11}, {0x2aaac,7}, {0xdbb8,11}, {0x1a6b1,6}, {0x13848,10}, {0x115fc,7}, + {0x2f9ca,5}, {0x2fe98,5}, {0xbdbd,12}, {0xb027,7}, {0x2fdcd,3}, {0x8529,12}, {0x22f2b,7}, {0x2da1f,6}, + {0x313ea,3}, {0x19238,9}, {0x30b17,4}, {0x2631b,8}, {0x15990,10}, {0x174de,10}, {0x30c03,4}, {0x10b01,4}, + {0x203c1,8}, {0x2add3,7}, {0x17f3c,7}, {0x30851,6}, {0xad6d,12}, {0x1f303,9}, {0x2e2eb,5}, {0x10e42,3}, + {0x2c5a7,6}, {0xa6dd,12}, {0x25f13,8}, {0x233e5,6}, {0x3145f,3}, {0x27866,7}, {0x2f0d7,5}, {0x2f3ba,5}, + {0x31269,3}, {0x200e6,9}, {0x30479,4}, {0x28d66,5}, {0x7e21,4}, {0x28c4c,6}, {0x12792,4}, {0x312e8,3}, + {0x5652,13}, {0x56e1,13}, {0xef7,19}, {0x2404b,8}, {0x30409,4}, {0x2b47a,6}, {0x29427,4}, {0x12a10,10}, + {0x2a2e6,7}, {0x27d9f,7}, {0x15e68,10}, {0x1c16f,9}, {0x2b384,6}, {0x1db32,3}, {0x11cbf,6}, {0x29727,7}, + {0x28d5d,5}, {0x11871,11}, {0xb799,12}, {0x2db0b,3}, {0x12894,8}, {0x1fe55,9}, {0xb96d,12}, {0x317d5,4}, + {0xae2d,12}, {0x2ca15,6}, {0x2dc41,6}, {0xaa6f,10}, {0x2d78d,3}, {0x22f03,8}, {0x1175c,11}, {0x30431,4}, + {0x27094,7}, {0x1c2f2,9}, {0x29735,7}, {0x25c2b,8}, {0x19407,4}, {0x23db,9}, {0x28222,7}, {0x2896a,7}, + {0x316b7,3}, {0x331f,5}, {0x6ca6,4}, {0x215a1,8}, {0x1d2fc,9}, {0x38bd,14}, {0x9dd1,12}, {0xb6d9,12}, + {0x2fc72,5}, {0x131cc,10}, {0x247db,8}, {0x2e1a5,6}, {0x2d9e5,4}, {0x21e73,8}, {0x23c53,8}, {0x242ab,8}, + {0x283fe,7}, {0x8fc1,12}, {0x27d21,7}, {0x1ffea,5}, {0x303b9,4}, {0x1bda3,8}, {0x1c7cc,7}, {0x12678,10}, + {0x2572f,4}, {0x12a62,5}, {0x12fd8,10}, {0x2bc47,6}, {0x24bd3,8}, {0xba8d,12}, {0x27055,7}, {0x13370,10}, + {0x1fdfb,9}, {0x31339,3}, {0x2e64e,5}, {0x30b05,2}, {0x2831e,7}, {0x2f34c,5}, {0x11d8e,11}, {0x253ed,5}, + {0x2feed,5}, {0x1abfd,9}, {0x9c99,7}, {0x24543,8}, {0x2d7f1,6}, {0x2f572,5}, {0x65c4,10}, {0x9a1d,12}, + {0x2619b,8}, {0x314dd,3}, {0x33fb,14}, {0x31841,4}, {0x7bd9,8}, {0x17224,4}, {0x4ece,13}, {0xf386,11}, + {0xa905,12}, {0x14966,8}, {0x25f45,6}, {0xdd23,11}, {0x1e6ff,3}, {0x13816,10}, {0x1df0b,7}, {0x243fb,8}, + {0xb835,12}, {0x310a7,6}, {0x20d49,8}, {0x46af,14}, {0x29877,7}, {0xc1e7,4}, {0x1aca2,5}, {0x9b19,12}, + {0x1240,3}, {0x18536,8}, {0x2e71b,5}, {0x1a29,5}, {0x3178e,4}, {0x1ca93,9}, {0x2e31,10}, {0x125e2,10}, + {0x13474,10}, {0x3c3d,14}, {0xd013,11}, {0x2ea7f,5}, {0x29beb,7}, {0xed6f,8}, {0x2f127,5}, {0x16464,5}, + {0x2eda6,5}, {0x6b40,8}, {0x7795,13}, {0x2caa,2}, {0xf625,11}, {0x1e865,9}, {0x2e5e5,5}, {0x28dc8,5}, + {0x29c2,3}, {0x2434b,6}, {0x2cd41,6}, {0x171dc,10}, {0x2e6e9,5}, {0xe5d,4}, {0x21f4b,8}, {0x2e18a,3}, + {0x153be,10}, {0xf183,8}, {0xb1ef,10}, {0x11822,11}, {0x200ef,9}, {0x2deba,3}, {0x2b7eb,6}, {0x215c1,8}, + {0x18138,10}, {0xc2ab,9}, {0x10510,9}, {0x24fc5,5}, {0x14fb8,10}, {0x263eb,8}, {0x417d,14}, {0x28ec9,7}, + {0x2528b,8}, {0x3138a,3}, {0x1a56a,9}, {0x2bdf1,6}, {0x1a19e,9}, {0x101eb,11}, {0x1fd35,9}, {0x2fd62,5}, + {0x2985b,7}, {0x315be,3}, {0x20ff9,8}, {0x2dd85,6}, {0x1d8dd,4}, {0x1ed65,7}, {0x2a312,5}, {0x1d908,9}, + {0x11267,3}, {0x22bb3,7}, {0x100c2,11}, {0x1a8e5,9}, {0x219f9,8}, {0x2e397,5}, {0x1e193,9}, {0x29456,7}, + {0x29870,7}, {0xc35b,11}, {0x11dd0,9}, {0x2b126,6}, {0x245eb,8}, {0x2651b,8}, {0x1a668,6}, {0x177cc,10}, + {0x24bf3,8}, {0x25fc3,8}, {0x30deb,4}, {0x2e89d,5}, {0x29e7f,5}, {0x1fada,9}, {0x2e3f6,5}, {0x314d7,3}, + {0x315b5,3}, {0x1c019,9}, {0xcd58,6}, {0x12e70,10}, {0x2f844,5}, {0x14ea0,10}, {0x1d098,8}, {0x1f6ab,9}, + {0x2b342,6}, {0xc815,11}, {0x2461b,8}, {0x29567,7}, {0x24903,8}, {0x1edfc,9}, {0x2f803,5}, {0x2c909,3}, + {0x28ffb,2}, {0x25deb,8}, {0x11609,8}, {0x91e9,12}, {0x2a999,7}, {0x2e630,5}, {0x25be3,8}, {0x13ece,10}, + {0x17290,10}, {0x1e664,9}, {0x2521d,3}, {0x2e0a0,3}, {0x31500,3}, {0x2c0e5,6}, {0x1e061,9}, {0xe65,4}, + {0x30322,3}, {0x1e73c,9}, {0x29ec3,7}, {0x12560,10}, {0x4f50,13}, {0x2e91f,5}, {0x2af15,7}, {0x21313,6}, + {0x24f85,6}, {0x15954,10}, {0xaafd,11}, {0x24d1b,8}, {0x2e33b,5}, {0x2cd9b,6}, {0x2af3f,7}, {0x28214,7}, + {0x2ca3f,6}, {0x5fe0,9}, {0x2a930,7}, {0xb5ec,9}, {0x19e6b,9}, {0x22feb,8}, {0xdb3f,11}, {0x257f,9}, + {0x154ec,7}, {0x23e83,6}, {0x11ec2,11}, {0x2be7b,6}, {0x1c26b,9}, {0xf0c,5}, {0x24d35,6}, {0x2bf1,4}, + {0x256cb,8}, {0x20cf1,8}, {0xaf05,12}, {0x7905,12}, {0x1ddb5,9}, {0x1118f,4}, {0x15ddc,10}, {0x1fb8e,9}, + {0x1279a,10}, {0x2b965,6}, {0x1536e,10}, {0x2a3db,7}, {0x2b084,12}, {0x23d03,8}, {0x28cb5,7}, {0x2e1d8,3}, + {0x58dc,13}, {0x12490,6}, {0x2ca17,3}, {0x2ea39,5}, {0x31af5,2}, {0x316de,3}, {0xeb72,11}, {0x21899,8}, + {0x27d59,7}, {0x1e1c0,6}, {0x2a5f6,7}, {0x7d49,12}, {0x6c35,7}, {0x948b,3}, {0x18da4,10}, {0x222eb,6}, + {0xa791,8}, {0x1caff,9}, {0x2821d,5}, {0x11769,3}, {0x2b923,6}, {0x450f,6}, {0x1d521,9}, {0x297a5,7}, + {0x112ce,11}, {0x2abd2,7}, {0x211cc,5}, {0x1f200,7}, {0x2d8cf,6}, {0x19b1f,7}, {0x3cc2,4}, {0x3ef9,14}, + {0x2d983,5}, {0x5725,4}, {0xb4e1,12}, {0x29443,2}, {0x1a2be,9}, {0x1b8e4,9}, {0x1170f,11}, {0x1ef52,9}, + {0x10227,5}, {0x1f7ef,9}, {0x2662b,8}, {0x2f7b5,3}, {0x2ea9d,5}, {0x2c89b,6}, {0x1c9e3,5}, {0x312a7,3}, + {0x2c53d,4}, {0x1b0b,15}, {0x773a,13}, {0x12e19,4}, {0x1d834,4}, {0x1ded5,9}, {0x2002b,7}, {0x315bb,3}, + {0x13fc8,10}, {0x2ba79,6}, {0x2cf0b,4}, {0x1887c,10}, {0x20401,8}, {0x2f808,5}, {0x2e9f,14}, {0x12f1a,10}, + {0x21199,8}, {0x26153,8}, {0x113d6,11}, {0xe1d2,11}, {0x17a4e,10}, {0x1fc30,9}, {0x2eb8a,5}, {0x24653,8}, + {0x1ef91,9}, {0x29fe4,7}, {0x31b21,2}, {0x4209,5}, {0x2ebc1,5}, {0x1c139,9}, {0xee77,7}, {0x8fbd,4}, + {0x2b7c7,6}, {0x1b13c,7}, {0xa491,12}, {0x2cc0f,6}, {0x2ae66,7}, {0xd0fa,11}, {0x27b84,7}, {0xc96a,6}, + {0x2ee32,5}, {0x30559,3}, {0x176c8,10}, {0x11cf4,11}, {0x26753,5}, {0x2c8f,10}, {0x2d659,6}, {0x26083,8}, + {0x3084b,6}, {0x1bc3b,9}, {0x8b5b,4}, {0x25a5d,3}, {0x11979,11}, {0x2b484,3}, {0xf2cb,11}, {0x1fba9,9}, + {0xcd56,7}, {0x156cc,8}, {0xc2c1,8}, {0x133c0,10}, {0xa401,12}, {0x17696,10}, {0x1fb19,9}, {0x12f2e,10}, + {0xa0b9,12}, {0xf30d,11}, {0x179b8,10}, {0x2fac4,5}, {0x2431b,8}, {0x1d0ce,7}, {0x2f0e1,4}, {0x77bc,13}, + {0x2e1e1,6}, {0x25755,6}, {0x2ec48,5}, {0xd24f,11}, {0x21e3b,8}, {0x14568,10}, {0x31829,4}, {0x240fd,3}, + {0x22f33,8}, {0x17830,10}, {0x102b,8}, {0x28d3e,3}, {0x2f765,3}, {0x28764,7}, {0x203ab,6}, {0x1f854,7}, + {0x2782e,7}, {0x1e463,9}, {0x151e,9}, {0x21f23,6}, {0x284ec,7}, {0x2b1aa,6}, {0x5ea6,13}, {0x14902,4}, + {0x5b47,5}, {0x1372,3}, {0x1938e,9}, {0x2fa29,5}, {0x17cbc,5}, {0x31693,3}, {0x178d0,10}, {0x56f0,6}, + {0x14ab8,10}, {0x2faba,5}, {0x2e772,3}, {0x2a9b5,7}, {0x2e45a,5}, {0x2d655,4}, {0xecd2,11}, {0xdfe9,5}, + {0x4033,8}, {0x31b51,2}, {0x3e0d,4}, {0xba81,12}, {0xb119,6}, {0x4561,9}, {0x2d325,4}, {0x1344e,5}, + {0x11c9c,11}, {0x2dc9b,6}, {0x12b4b,4}, {0x2b498,3}, {0x19700,9}, {0x30a07,4}, {0xefd4,11}, {0x2469d,3}, + {0x1ae8e,8}, {0x25d0b,8}, {0xaa66,7}, {0x2e522,5}, {0x2b30c,6}, {0x457d,12}, {0x2f491,4}, {0x248b5,3}, + {0x31d9,14}, {0x2d0b9,6}, {0x2f62b,4}, {0x28d2e,5}, {0x2f1f9,5}, {0x19b14,8}, {0x2d587,6}, {0x2b0fc,6}, + {0x2031d,9}, {0x2b599,5}, {0x1b74,15}, {0x2e9dc,3}, {0x2ab5d,5}, {0x2fbca,3}, {0x188fe,10}, {0x23e6b,8}, + {0x23d95,6}, {0x1b908,9}, {0xb409,5}, {0x1cdad,9}, {0x2c2c5,6}, {0x2e4be,5}, {0x1d8ef,5}, {0x3157c,3}, + {0x2ea43,5}, {0x2bdb5,5}, {0x1a2ac,9}, {0x4959,3}, {0x3139f,3}, {0x926d,12}, {0x289d3,7}, {0x209a1,8}, + {0x21f0b,8}, {0x1f354,9}, {0x25cab,8}, {0x2b51d,10}, {0xdcac,7}, {0x1f62f,7}, {0xdb4a,11}, {0x2eb44,5}, + {0x2cb01,6}, {0x2f4e6,5}, {0x6740,8}, {0x28284,7}, {0x16430,6}, {0x1bb9b,5}, {0x205a1,8}, {0x44d3,14}, + {0x18060,6}, {0x135b4,10}, {0x2ace,15}, {0x2b28e,6}, {0x220a3,5}, {0x9257,8}, {0x1ead,15}, {0x30a9d,2}, + {0x2db1,14}, {0xd496,11}, {0x28aba,7}, {0x1ddd9,9}, {0x18abb,5}, {0x2de7b,6}, {0xc236,11}, {0x2b995,6}, + {0x2f786,5}, {0x2efab,5}, {0x2de9c,3}, {0x2ca27,6}, {0x2fa79,4}, {0x23b15,6}, {0x1e828,4}, {0xc56b,11}, + {0x2ec84,5}, {0x20032,9}, {0x2f0dc,4}, {0x2f40f,5}, {0x25603,8}, {0x2a58,13}, {0x252d3,8}, {0x23fe3,8}, + {0x2cb73,6}, {0x1d7a9,9}, {0x1837c,10}, {0x6c4f,12}, {0x4367,14}, {0x1e93d,9}, {0x2a906,5}, {0x2e34c,5}, + {0x19b14,9}, {0x130a0,10}, {0x2fc1d,5}, {0x2bb6f,6}, {0x4ce0,13}, {0x2e446,5}, {0x175c6,8}, {0xb747,4}, + {0xaf4,48}, {0x2fd2b,5}, {0xc933,11}, {0x2e253,6}, {0x162e6,10}, {0x1ec8b,9}, {0x13159,5}, {0x11142,11}, + {0x222c3,6}, {0x236cb,8}, {0x1dfd1,7}, {0x2f16d,5}, {0x2d209,6}, {0x11d36,8}, {0x312eb,3}, {0x17152,2}, + {0x1fa77,9}, {0x2e786,6}, {0x25955,6}, {0xb3b5,12}, {0x1142,4}, {0x31711,3}, {0x192e3,9}, {0x27835,7}, + {0x45dd,5}, {0x70a0,13}, {0x20539,8}, {0x19f4c,9}, {0x2448b,8}, {0x5e7a,3}, {0x7fdd,12}, {0xd152,11}, + {0x1b92c,9}, {0x2329e,4}, {0x9699,9}, {0x14df6,6}, {0x24b73,8}, {0x2ed03,3}, {0x15ecc,10}, {0x31065,6}, + {0x4edd,3}, {0xef32,8}, {0x4227,12}, {0x8475,12}, {0x3bdb,5}, {0xaba9,4}, {0x28fef,7}, {0xe63f,5}, + {0x1ad2f,9}, {0x25173,8}, {0x30334,5}, {0x992d,9}, {0x8f6d,12}, {0x2c29b,6}, {0x2b22e,6}, {0x3051f,4}, + {0x2e3b9,3}, {0x49d4,13}, {0xcaa9,11}, {0x2c07f,6}, {0x10b54,11}, {0x1309b,5}, {0xcae0,8}, {0x1cb11,9}, + {0xaef9,12}, {0x5287,3}, {0x2ebe9,5}, {0x1f945,9}, {0x1b60b,9}, {0x27f9e,7}, {0xf69e,11}, {0x31218,3}, + {0x2e423,5}, {0x80fd,12}, {0x20f81,8}, {0x2030d,7}, {0x316f6,3}, {0x25083,8}, {0x1a2f7,6}, {0x21c59,8}, + {0x7d25,12}, {0x63a0,13}, {0x2854e,7}, {0x3e38,6}, {0x1d5f0,9}, {0x283d4,7}, {0x1dd2e,9}, {0x2aef9,7}, + {0x275e2,7}, {0x256bb,8}, {0x2eff4,2}, {0x25a8d,6}, {0xde2b,11}, {0x31534,3}, {0x1a735,7}, {0x8949,12}, + {0xd9ea,10}, {0xa41e,5}, {0x29aa9,7}, {0x19b80,9}, {0x4447,14}, {0x9ae1,8}, {0xa3d1,10}, {0x110b,6}, + {0x145a6,8}, {0x37c8,4}, {0x31480,3}, {0x275bf,7}, {0x2bb15,6}, {0x2eef0,5}, {0x2db21,6}, {0x2fe9d,5}, + {0x16368,10}, {0x1fa92,9}, {0xacd1,12}, {0x31a61,2}, {0x6d96,6}, {0x2935a,7}, {0x12ed6,5}, {0x1ac8f,7}, + {0x1df6e,5}, {0x2a5f6,5}, {0x16520,8}, {0x2cba3,6}, {0xa3f7,5}, {0x28ca9,5}, {0x20c51,8}, {0x2004f,4}, + {0xd1f7,11}, {0x1777c,10}, {0x17602,3}, {0x208e1,8}, {0x794d,12}, {0x2403b,8}, {0x1d707,9}, {0xabb3,8}, + {0x1f70,8}, {0x11e9c,5}, {0xa791,12}, {0x17760,6}, {0x31609,3}, {0x24023,7}, {0x27063,7}, {0x21431,8}, + {0x36d3,14}, {0x11100,6}, {0x1c3aa,5}, {0x2faad,3}, {0x24d2b,8}, {0x4fb8,13}, {0x29db2,7}, {0x2e6b2,5}, + {0x17dde,7}, {0x4b9b,13}, {0x1f339,9}, {0xfef4,11}, {0xa894,4}, {0x2ef4e,3}, {0x2dbcf,5}, {0x7d06,4}, + {0x13172,10}, {0x531f,13}, {0x27254,7}, {0x2030b,5}, {0x3163c,3}, {0x19dae,9}, {0x13840,8}, {0x22d83,8}, + {0xc2d1,6}, {0x6e7e,13}, {0x1eaae,9}, {0x1179e,11}, {0x19f9,3}, {0x16d9a,7}, {0x11fb4,11}, {0x2fd94,5}, + {0x22265,5}, {0x26a58,7}, {0x2d341,6}, {0x2a475,7}, {0x263c3,8}, {0x3055f,4}, {0x7ab5,12}, {0x2d2dd,4}, + {0xdfa1,11}, {0x2e52c,5}, {0x23cb5,6}, {0x241d3,8}, {0xee95,11}, {0x2c9a3,6}, {0xac60,5}, {0x16644,8}, + {0x648a,13}, {0x285be,7}, {0xbd5d,12}, {0xdb0a,6}, {0x6f39,8}, {0x2b4b6,6}, {0x7f6b,5}, {0x13963,4}, + {0x2e794,8}, {0x20d69,8}, {0x28690,7}, {0x72b5,13}, {0x2c1d1,4}, {0x2300b,8}, {0x1dd1c,9}, {0x20a61,8}, + {0x22923,6}, {0x2d7bb,6}, {0x2fb05,5}, {0xdd9f,8}, {0x22645,6}, {0x2c963,4}, {0xf252,11}, {0x2c34f,6}, + {0x315b8,3}, {0x2944f,7}, {0x226fb,8}, {0x1dbe1,9}, {0x306f7,4}, {0x17664,9}, {0x31aff,2}, {0x12c5e,10}, + {0xf8c4,11}, {0x16890,5}, {0x2f5d6,5}, {0x228b,15}, {0x157ba,10}, {0x3064f,4}, {0x2af5d,5}, {0x2cca5,6}, + {0x2634b,8}, {0x2e193,6}, {0x1765a,10}, {0x6c1e,6}, {0x31ab7,2}, {0x28e8a,7}, {0x2580b,8}, {0x2b4da,6}, + {0xe9c5,11}, {0xb663,10}, {0x2daa3,6}, {0x266e3,8}, {0x145f,4}, {0x2e545,5}, {0x2bfb3,6}, {0x11ef9,5}, + {0x4011,14}, {0x7fd1,12}, {0x23c63,5}, {0x1b5fb,3}, {0x26844,7}, {0x11ab8,11}, {0x31179,6}, {0x1189f,3}, + {0x1a8f7,6}, {0x1e355,9}, {0x2e2af,6}, {0x24b6,14}, {0x2d0d7,6}, {0x31592,3}, {0x14c34,10}, {0x808a,7}, + {0x14b34,6}, {0x1d9c5,9}, {0x2896,13}, {0x7f71,12}, {0x584d,13}, {0x29d73,7}, {0x2e3bf,5}, {0x31ac3,2}, + {0x11ae6,6}, {0x31720,2}, {0x2508b,8}, {0x1937,16}, {0x24dbb,8}, {0x1f89a,6}, {0x137f1,6}, {0x1eff6,3}, + {0x315c1,3}, {0x29c93,7}, {0x200a9,3}, {0x2465b,8}, {0x1a96,2}, {0x8739,12}, {0xc3c9,11}, {0x2839c,7}, + {0x262ad,5}, {0x3155e,3}, {0x1a66,3}, {0x14b44,10}, {0x27388,5}, {0x8ed1,12}, {0x2fa3f,3}, {0x30a43,4}, + {0x1dee7,9}, {0x2ce8b,6}, {0x2b0cc,6}, {0x4759,7}, {0x10ff8,11}, {0x25a4b,8}, {0x2f79f,5}, {0x2fad3,5}, + {0x31295,3}, {0x27c64,7}, {0xbffd,12}, {0x21669,8}, {0x30dc3,4}, {0x247cd,4}, {0x2695c,7}, {0x1737,16}, + {0x2341b,8}, {0x18cfa,8}, {0x17a50,7}, {0x22ca3,8}, {0x286e6,7}, {0x2f18d,3}, {0x24653,5}, {0x2eeb4,5}, + {0x24b6b,8}, {0x2e935,5}, {0x25503,8}, {0x11b9f,11}, {0x79d7,6}, {0x16d3a,6}, {0x215e9,8}, {0x3105f,6}, + {0x1017d,11}, {0x29074,7}, {0x303c1,4}, {0x23a7b,8}, {0xd987,11}, {0x276c2,7}, {0x19dc0,9}, {0x2fef2,5}, + {0x8ce7,7}, {0xc262,11}, {0x1135d,11}, {0x11ace,11}, {0x1731e,8}, {0x2eb78,3}, {0x3107,4}, {0x267ab,6}, + {0x31621,3}, {0x23003,8}, {0xa725,12}, {0x29d9d,7}, {0x2fddf,5}, {0x1fad3,7}, {0x314d4,3}, {0x1aefa,9}, + {0x13cc6,10}, {0xeb3b,5}, {0x6678,13}, {0xaa33,10}, {0x31324,3}, {0x7ca1,12}, {0x1a711,9}, {0x1819c,10}, + {0x243a3,8}, {0x26143,8}, {0x2c2cb,4}, {0x28fa2,7}, {0x31230,3}, {0x22af5,5}, {0x2a875,5}, {0x20d51,8}, + {0x1d3cb,9}, {0x2991f,7}, {0xe697,11}, {0x6dbb,12}, {0x173bc,10}, {0x29368,7}, {0x2a317,7}, {0x203e1,8}, + {0x21491,8}, {0x164f8,10}, {0x396c,7}, {0x12bd2,10}, {0x2838e,7}, {0x22ffb,8}, {0x299e5,7}, {0xafd6,6}, + {0x34a5,4}, {0x27724,7}, {0x2bb39,6}, {0x2b99,4}, {0x5d63,11}, {0x2b4c8,6}, {0xdfb7,11}, {0xe584,11}, + {0x2a547,7}, {0xa405,7}, {0x7e0f,5}, {0xb7e3,4}, {0x345d,12}, {0x30bdf,4}, {0x265a,15}, {0x2ac88,7}, + {0x20d61,8}, {0x833d,12}, {0xeaa1,11}, {0x145ec,6}, {0x1198f,7}, {0x267d4,7}, {0x2c8bb,4}, {0x251db,8}, + {0x1922f,9}, {0x26d68,6}, {0x31f5,14}, {0x2f53d,3}, {0x1b07d,9}, {0x9b79,11}, {0x6984,13}, {0xa04f,5}, + {0x2691d,7}, {0x1a09,7}, {0x267cd,7}, {0x17814,8}, {0x8655,12}, {0x28d2,5}, {0x2b513,10}, {0x1a333,9}, + {0x2ba61,6}, {0x250ab,8}, {0x7346,5}, {0x25b15,3}, {0x2a031,7}, {0x202e7,9}, {0x188e2,8}, {0xbb37,4}, + {0x17ae4,6}, {0x7706,13}, {0x2aac1,5}, {0x2f9db,3}, {0x21441,8}, {0x18428,3}, {0x1657,16}, {0x31a87,2}, + {0x2f0dc,5}, {0x2c1e1,6}, {0x45f9,14}, {0x4a4e,4}, {0x30983,4}, {0x1f0f0,9}, {0x1fc78,9}, {0x2fc40,5}, + {0xb06d,12}, {0x25d9b,8}, {0x20599,8}, {0x2759c,7}, {0x12486,8}, {0x6cf8,13}, {0x2e54f,5}, {0x15fda,10}, + {0x1821e,10}, {0x1196e,11}, {0x2b46e,6}, {0x2e719,3}, {0xa488,5}, {0x1d23f,9}, {0x1e0b2,6}, {0x101bf,8}, + {0x11e98,9}, {0xe731,11}, {0x2a29b,5}, {0x10ba4,4}, {0x2f772,5}, {0x2b2e8,6}, {0x2a40c,7}, {0x2e2af,10}, + {0xe60,3}, {0x30786,4}, {0x181ce,10}, {0x2123,15}, {0x2a157,7}, {0x299a2,4}, {0x1f893,7}, {0x21ae9,8}, + {0x148b0,10}, {0x2c04f,6}, {0x2e4f5,4}, {0x31a96,2}, {0x9915,12}, {0xb991,12}, {0x1f16e,9}, {0x25f7b,8}, + {0x94b3,6}, {0x26836,7}, {0x2a953,7}, {0x2b1b6,6}, {0x6b99,13}, {0x2b9e3,6}, {0x30c1f,4}, {0x20365,9}, + {0x317c5,4}, {0xb2b9,12}, {0x15bae,8}, {0x2f066,3}, {0x204d9,8}, {0xb8d3,3}, {0x9705,12}, {0x2391b,8}, + {0x1daa6,6}, {0x11984,11}, {0x1f74f,7}, {0x23933,8}, {0x25365,6}, {0x7d19,12}, {0xdef1,10}, {0x18728,10}, + {0x2feca,5}, {0x14574,4}, {0x818d,12}, {0x21c91,8}, {0x3591,4}, {0xea61,7}, {0x20841,8}, {0x65a8,13}, + {0x1d893,9}, {0x2ef47,5}, {0x245fe,5}, {0x28d6b,7}, {0x8e8c,4}, {0xf9b,18}, {0x16a2a,10}, {0x29521,7}, + {0x314db,3}, {0x279b6,7}, {0x31b2f,2}, {0x22683,8}, {0x309db,4}, {0x10f3d,7}, {0x29c0e,7}, {0x13fbe,10}, + {0x27408,5}, {0x1f585,6}, {0x2f47,14}, {0xffd0,11}, {0x313f6,3}, {0x27feb,7}, {0x1c8c8,9}, {0x132c0,3}, + {0x196a9,4}, {0x2402b,8}, {0x2d413,6}, {0x3aef,11}, {0x217d9,8}, {0x1dc29,9}, {0x1efc7,9}, {0x254ab,8}, + {0x2e1ff,6}, {0x31636,3}, {0x1a42f,9}, {0xcda0,11}, {0x2911c,6}, {0x265a3,8}, {0x29c9c,5}, {0x6d05,13}, + {0x42f7,7}, {0xb4ed,12}, {0x2b09c,12}, {0x2e86b,4}, {0x2cb7f,6}, {0x317fd,4}, {0x2986b,5}, {0xe728,9}, + {0x1b80c,9}, {0x2e1db,6}, {0x31212,3}, {0x277f6,7}, {0x1545e,10}, {0x45b3,14}, {0x2e39c,5}, {0x28459,7}, + {0x186a6,10}, {0x13d36,8}, {0x2c96d,6}, {0x4d71,7}, {0x103bb,9}, {0x17510,10}, {0x19b4a,9}, {0x19c7c,9}, + {0x1ab52,9}, {0x24cc3,8}, {0x102f8,5}, {0x22b93,8}, {0x11520,11}, {0x20083,9}, {0x2e9bc,5}, {0x3099f,4}, + {0x9a59,12}, {0x24113,8}, {0x2686e,7}, {0x6866,13}, {0x2eb53,5}, {0xd3a4,11}, {0x124c,8}, {0x313f0,3}, + {0x2f704,5}, {0x9939,10}, {0x2ebbe,3}, {0x31afb,2}, {0x1a93,15}, {0x8cd9,12}, {0x316ba,3}, {0xba69,12}, + {0xff9d,5}, {0xff99,11}, {0x2ced5,4}, {0x2fa15,5}, {0x1387c,8}, {0x28ddd,5}, {0x224bb,8}, {0x1023,3}, + {0x2e635,5}, {0xb8bb,3}, {0xf197,11}, {0x2f351,5}, {0x30573,4}, {0x2f75b,3}, {0xb499,6}, {0x27318,7}, + {0x1d305,9}, {0x298cb,7}, {0x31ac9,2}, {0x34e9,14}, {0xc35b,9}, {0x1a561,9}, {0x22c6b,8}, {0x28f26,5}, + {0x244d5,6}, {0x10d7a,11}, {0x39bb,6}, {0x275b1,7}, {0x27be6,7}, {0xe773,11}, {0x2c619,6}, {0x1f609,8}, + {0x20911,8}, {0x6748,10}, {0x21659,8}, {0x2b2a6,6}, {0x635f,13}, {0x1a68a,9}, {0x3479,14}, {0x247fb,8}, + {0x2ccc3,6}, {0x74bd,13}, {0x2acf1,7}, {0x26901,7}, {0x26e64,6}, {0x2b8f3,6}, {0x9369,12}, {0x5d95,13}, + {0x11b47,11}, {0xbb8b,5}, {0x295ad,7}, {0x2dc35,6}, {0xb453,8}, {0x172e0,10}, {0x1ac96,9}, {0xdebc,5}, + {0x1da3c,7}, {0x269f6,7}, {0x10012,9}, {0x2d50f,6}, {0x2db4b,6}, {0xdabb,11}, {0x2aaa5,7}, {0x31951,4}, + {0x22c1d,6}, {0x7e21,12}, {0x5c50,13}, {0x1dd52,9}, {0x174d4,10}, {0x4837,5}, {0x2c4c5,4}, {0x135f2,8}, + {0x26828,7}, {0x2c99,14}, {0x20bc,11}, {0x2e768,3}, {0x14b12,10}, {0x1c1e,6}, {0xb9ab,3}, {0x1e21a,9}, + {0xb453,2}, {0x213f1,8}, {0x2c5b9,6}, {0x26eb1,7}, {0x2cbf3,4}, {0x2b89f,6}, {0x1827,8}, {0xba39,5}, + {0x3537,3}, {0x19319,9}, {0x2b605,6}, {0x29973,9}, {0x30de1,2}, {0xd76c,11}, {0x31af3,2}, {0x15d7,16}, + {0x2e770,5}, {0xc739,11}, {0xe870,11}, {0x7824,13}, {0xc3f8,8}, {0x2e769,3}, {0x24313,8}, {0x2fc09,5}, + {0x4cae,9}, {0x15a9,7}, {0x2fe93,5}, {0x31881,4}, {0xa635,12}, {0x167d2,10}, {0x15c92,10}, {0x1f2bb,9}, + {0x7ebd,12}, {0x2451b,8}, {0x2f579,3}, {0x14702,10}, {0x29361,7}, {0x2ef0e,7}, {0x1da4c,9}, {0x248ab,8}, + {0x13674,6}, {0x2263b,8}, {0x1f0de,9}, {0x263c,15}, {0x1cbeb,9}, {0x174c0,10}, {0xf70,3}, {0x2b276,6}, + {0x1a53d,9}, {0x217d1,8}, {0x2f9ed,5}, {0x1a065,7}, {0x18eb7,4}, {0x19133,9}, {0x292f1,6}, {0x20459,8}, + {0x10cab,3}, {0x245cb,8}, {0x20a01,8}, {0x11578,10}, {0x4df1,13}, {0x24413,8}, {0x2e351,5}, {0x2b246,6}, + {0x1717f,3}, {0x4c78,13}, {0x24d0b,8}, {0x30f5d,6}, {0x1b4ac,9}, {0x17d32,10}, {0x18a8e,10}, {0x317cd,4}, + {0x2f4d,3}, {0x29d6,4}, {0x2b258,6}, {0x26693,8}, {0x2fd5d,5}, {0x1d18,15}, {0x161ba,9}, {0xff62,11}, + {0x3152f,3}, {0x3c91,14}, {0x2cc27,6}, {0x2030d,5}, {0x1c316,8}, {0xee7,2}, {0x2cbbb,6}, {0x2a6cf,6}, + {0x2f014,5}, {0x26393,7}, {0x1220,3}, {0x24275,6}, {0x9d41,12}, {0x1ebe,8}, {0x1fc4b,9}, {0x1feb1,5}, + {0x14bdc,8}, {0x17ec4,4}, {0xff57,11}, {0x25043,8}, {0x22d63,8}, {0x25a3b,8}, {0x18b95,4}, {0x3056f,4}, + {0x1919f,9}, {0x260c3,8}, {0xaa49,12}, {0x2722a,7}, {0x1a4a4,9}, {0x2879c,6}, {0x2e345,7}, {0x26916,7}, + {0xb963,10}, {0x5c1c,13}, {0x1e6ae,7}, {0x189b4,4}, {0x14716,10}, {0x22a9b,7}, {0x16983,4}, {0x2cad3,4}, + {0xda4d,10}, {0x2f0c8,5}, {0x4da3,13}, {0x16aca,10}, {0x11394,11}, {0x2d107,6}, {0x268bb,7}, {0x1286c,7}, + {0x14676,10}, {0x2e7bc,8}, {0xad3d,12}, {0x10146,11}, {0x2eeb9,5}, {0x2afb,15}, {0x69f1,8}, {0x31a79,2}, + {0x1da06,6}, {0x3162d,3}, {0x1ca78,9}, {0x111a7,9}, {0x21a39,8}, {0x22d73,8}, {0x1f9f9,9}, {0x2e2d2,5}, + {0xbc61,12}, {0x2fdb2,5}, {0x2bcf,6}, {0x26b23,7}, {0x2d4df,6}, {0x31717,3}, {0x8b35,12}, {0x318f1,4}, + {0x217b1,8}, {0x1f75f,9}, {0xfd41,6}, {0x254b8,3}, {0x2f745,5}, {0x3119d,6}, {0x28ad8,5}, {0x2f64e,5}, + {0x2589b,8}, {0x28bd7,5}, {0x31b0d,2}, {0x2c091,6}, {0x2a0cb,7}, {0x20b89,8}, {0x242eb,8}, {0x113ec,11}, + {0x2e5c2,5}, {0x27efd,7}, {0x12ff6,10}, {0x2dcd1,5}, {0x1377,6}, {0x2327b,8}, {0x168cc,8}, {0x1e3af,9}, + {0x31612,3}, {0x1495a,10}, {0x254e5,3}, {0xb9fd,12}, {0x20095,9}, {0x14376,8}, {0x908d,12}, {0x30471,4}, + {0x2e18f,4}, {0x96ed,12}, {0x10902,11}, {0x25923,8}, {0xa08d,8}, {0x37f2,7}, {0x2b647,6}, {0x104d,2}, + {0x26a6d,7}, {0x17fda,7}, {0x1feee,9}, {0x21d63,5}, {0x102bc,11}, {0x242e3,8}, {0x2b1b0,6}, {0x1fcc,8}, + {0x195c5,9}, {0x2f05f,5}, {0x2e6d5,5}, {0x1e3a8,6}, {0x224ab,8}, {0x7108,8}, {0xc6ee,9}, {0x24cc3,7}, + {0x13744,10}, {0xd6c7,11}, {0x60e2,13}, {0x1d1f7,9}, {0x2de63,5}, {0x191d7,7}, {0x134c4,10}, {0x8811,12}, + {0x2fca4,5}, {0x8822,6}, {0x1d292,4}, {0x2633b,8}, {0x1b61d,9}, {0x1967,6}, {0x18d06,8}, {0x158c8,10}, + {0x2f2ca,5}, {0xadfd,12}, {0x26e10,7}, {0x29c38,7}, {0x2dd6d,6}, {0x1cc69,9}, {0x2ccbd,6}, {0x1ffae,6}, + {0x24f2,15}, {0x4765,14}, {0x18548,10}, {0x1400e,10}, {0x314b3,3}, {0x2ba85,5}, {0x29c46,7}, {0x7038,13}, + {0x1e223,9}, {0x28e52,7}, {0x9387,5}, {0x294dd,5}, {0x3353,14}, {0x44e1,14}, {0x2f168,5}, {0x2f74f,5}, + {0x245a3,8}, {0xfdb2,3}, {0x314f9,3}, {0xd5a9,11}, {0x12e48,10}, {0x2fc95,5}, {0x21fb3,8}, {0x417d,13}, + {0x169bc,10}, {0x15760,6}, {0x118f5,11}, {0x2a6c1,7}, {0x125ba,10}, {0x10cd7,9}, {0x18c7,16}, {0x12eea,5}, + {0x14914,10}, {0x30dd7,4}, {0x12db5,7}, {0x8d4b,5}, {0x1e79f,9}, {0x2f028,5}, {0x1ab25,8}, {0x1a07,16}, + {0x2e758,2}, {0x31438,3}, {0x314e3,3}, {0x25efb,7}, {0x1c61c,8}, {0x28779,7}, {0x725a,13}, {0x2f4a5,5}, + {0x315b2,3}, {0xbc79,12}, {0x253cb,8}, {0x9871,8}, {0x2b060,12}, {0x1ae48,7}, {0x17a30,10}, {0x2fe43,5}, + {0x10259,5}, {0xad6f,3}, {0x2faf6,5}, {0x20f6,15}, {0x1717,16}, {0x28fc5,6}, {0x1fa9b,8}, {0x305ff,4}, + {0x26c3b,6}, {0x6dfc,12}, {0x77af,13}, {0x31762,3}, {0x3177d,3}, {0x25a83,5}, {0x1fb8e,6}, {0x179ba,3}, + {0xa479,8}, {0x2a88f,7}, {0x13e60,10}, {0x7344,13}, {0x58d5,7}, {0x22d45,6}, {0x18b4e,4}, {0xc12b,10}, + {0x2c6b8,2}, {0x274d8,7}, {0xaa25,12}, {0x2e93c,3}, {0x24005,3}, {0x968d,12}, {0x18aa2,10}, {0x4986,13}, + {0xe9e8,6}, {0xcd27,11}, {0x21921,8}, {0x15706,10}, {0x1b7a9,9}, {0x2f54f,5}, {0x314fb,3}, {0x15710,10}, + {0x291af,7}, {0x2b444,6}, {0x315ac,3}, {0x1fbb,15}, {0x2fdbc,5}, {0x30c07,4}, {0x2f621,5}, {0xdda7,11}, + {0x2ed33,5}, {0x44b7,5}, {0x274ed,7}, {0x9d71,12}, {0x3fbd,6}, {0x2e846,6}, {0x16b06,10}, {0x2ef88,5}, + {0x2fbdc,5}, {0x2e8e8,5}, {0x292ea,7}, {0x1307a,4}, {0xd27d,9}, {0x17178,10}, {0xe874,5}, {0x15300,10}, + {0x10be3,11}, {0x29ed1,7}, {0x1172b,2}, {0x1537c,6}, {0x20191,9}, {0x22ce5,6}, {0x18a70,10}, {0x2e42d,5}, + {0x2a7e2,5}, {0xff41,11}, {0x1997,11}, {0x116ee,11}, {0x2fc77,5}, {0x1bce,15}, {0x17bd9,5}, {0x8481,12}, + {0x264be,5}, {0xc1a3,9}, {0x316b1,3}, {0x94d1,12}, {0x1d53c,9}, {0x173f8,7}, {0x30747,4}, {0x304eb,4}, + {0x11186,4}, {0x18598,10}, {0xc366,11}, {0x1092,17}, {0x2824c,7}, {0x2036e,9}, {0x15f7,16}, {0x10007,9}, + {0x30f03,6}, {0x26f44,7}, {0x2c943,6}, {0x11a41,8}, {0x1603e,10}, {0x24f53,8}, {0x89e7,10}, {0x2684b,7}, + {0x13654,10}, {0x70c9,11}, {0x1b6f5,9}, {0x2a206,7}, {0x131a8,6}, {0xe71,3}, {0x10cbf,11}, {0x2e67b,5}, + {0x1b949,7}, {0x30947,4}, {0x1c142,9}, {0x2eef5,5}, {0x2e437,5}, {0x13ea6,10}, {0xdf5f,11}, {0x4279,13}, + {0xb361,12}, {0x135e6,10}, {0x10e82,11}, {0xc5e8,7}, {0x2b408,6}, {0x18a40,8}, {0xbb7d,12}, {0x77bc,6}, + {0x202d5,9}, {0x29f8b,5}, {0x2e5d1,5}, {0x18cc8,10}, {0x2fe5c,5}, {0x2e208,3}, {0x2ea16,5}, {0x267f7,7}, + {0x1dd4b,7}, {0x2f603,5}, {0xb567,10}, {0x7a9d,12}, {0x10944,11}, {0x9a43,3}, {0x93a5,12}, {0x29495,6}, + {0x29c70,7}, {0x26173,8}, {0x26103,8}, {0x2e360,5}, {0x19a3c,9}, {0x2e455,5}, {0x2b713,6}, {0x6b0a,13}, + {0x1cf03,9}, {0x31216,2}, {0xbebb,9}, {0x2d977,6}, {0x30727,4}, {0x314f8,3}, {0x3115b,6}, {0xc2cc,11}, + {0x7a49,12}, {0x2113b,5}, {0x272fc,7}, {0x47c7,14}, {0x2e04c,3}, {0x2e8d4,5}, {0x2d1c9,3}, {0x9543,6}, + {0x1551c,10}, {0x2c757,6}, {0x1199a,11}, {0x44ff,12}, {0x1db63,9}, {0x11e2b,4}, {0x31a71,2}, {0x20809,8}, + {0x1c9a9,9}, {0x3453,4}, {0x2e4ff,5}, {0xb4a7,10}, {0x8e4d,12}, {0x1ad77,9}, {0x1a225,9}, {0x2fd35,5}, + {0xdf70,5}, {0xbf7b,10}, {0x1d947,9}, {0x2ef56,5}, {0x3038f,8}, {0x2ec41,2}, {0x1070,15}, {0x3068b,4}, + {0x2d571,4}, {0xbf0f,10}, {0xecb1,11}, {0x1ec43,9}, {0x3ae4,9}, {0x26805,7}, {0x3129e,3}, {0xbf87,4}, + {0x2c715,6}, {0x14856,10}, {0x39f1,14}, {0x4b14,5}, {0x1f58d,4}, {0x1cea0,9}, {0x1144f,11}, {0xfd12,7}, + {0x4f1c,8}, {0x21609,8}, {0x2952b,4}, {0x1d38c,9}, {0x2a230,7}, {0x1807,16}, {0xc6e1,11}, {0x2b26a,6}, + {0x12970,10}, {0x2b198,6}, {0x21a19,8}, {0x21ee3,8}, {0x15bf2,6}, {0x3042d,4}, {0x1b18b,9}, {0x20dd1,8}, + {0x29a86,7}, {0x2dd39,4}, {0x2cb6d,6}, {0xdb76,6}, {0x1841c,7}, {0x2a39f,4}, {0x2ccff,6}, {0x7abb,5}, + {0x16bec,10}, {0x964d,3}, {0x2b32a,6}, {0x31b59,2}, {0x1ff75,9}, {0x2de09,6}, {0x8b0b,6}, {0x2491b,8}, + {0xea79,5}, {0x1b317,9}, {0x2c3f7,6}, {0x1e2eb,4}, {0x20551,8}, {0x21361,8}, {0x1e29,4}, {0x2e4eb,5}, + {0x2b7cd,6}, {0x2afdc,12}, {0x31071,6}, {0xec22,11}, {0x136ae,10}, {0xed8d,11}, {0x2a2bc,7}, {0x2a4c2,7}, + {0xbcab,10}, {0x932d,12}, {0x2c49,4}, {0x2c86b,6}, {0x2cb07,6}, {0x2629b,8}, {0x29fc8,7}, {0x2a5d3,7}, + {0x18688,10}, {0x15a7,16}, {0x1cb1a,9}, {0x2fdd5,5}, {0x8b53,3}, {0x2d7b7,4}, {0x26265,4}, {0x281b2,7}, + {0xcc4b,11}, {0x306b3,4}, {0x1b74f,9}, {0x1f7b0,6}, {0x1bc7a,5}, {0x70e3,11}, {0x2339b,8}, {0x2e6d0,5}, + {0x2cc03,6}, {0x3122a,3}, {0x4b26,13}, {0x1b14c,9}, {0x27d8a,7}, {0xae15,7}, {0x1da60,7}, {0x2303,15}, + {0x1dcf8,6}, {0x2412b,8}, {0x26483,8}, {0x58b0,5}, {0x2ddd3,6}, {0x2b420,6}, {0x33c3,14}, {0x2ad6f,7}, + {0x2ece5,3}, {0x1f059,3}, {0x25e5b,8}, {0x2b0c,5}, {0x79a1,12}, {0x2d48b,6}, {0x2eedf,2}, {0xf5f9,11}, + {0x15dfa,10}, {0x1ac33,9}, {0xf4c5,11}, {0x1f67e,9}, {0xbe71,12}, {0x1757,16}, {0xe264,8}, {0x18bc8,4}, + {0xe500,11}, {0x1563e,10}, {0x258ab,8}, {0x18202,4}, {0x31510,3}, {0xee8a,11}, {0x17d66,4}, {0x2e766,5}, + {0x31543,3}, {0x31b47,2}, {0x103c7,4}, {0x3158f,3}, {0xbd45,12}, {0xc442,11}, {0x1ee17,9}, {0x1f459,9}, + {0x1074,6}, {0xd244,11}, {0x246bb,8}, {0x312bc,3}, {0x1f34,15}, {0x2e81e,6}, {0x24cff,4}, {0x295fa,7}, + {0xaec2,4}, {0xb297,10}, {0xb357,8}, {0x18e80,10}, {0x2de87,6}, {0x1bc62,6}, {0x1330c,10}, {0x1f97b,9}, + {0x1a987,9}, {0x1901e,7}, {0x19f2a,5}, {0x3150d,3}, {0x4073,14}, {0x28ad6,7}, {0x1eb7d,9}, {0x2d40f,4}, + {0x19d39,9}, {0x2d31d,6}, {0x2d383,6}, {0x2e65d,5}, {0x31564,3}, {0x1b25a,9}, {0x16ffc,10}, {0x1f744,9}, + {0x144a,4}, {0x2e8b6,5}, {0x1b38,15}, {0x2ee5f,5}, {0x2c88f,6}, {0xee7f,11}, {0x2a0ee,7}, {0x25b8b,8}, + {0x2023c,9}, {0x22033,8}, {0x15b7a,10}, {0x1149c,5}, {0x7b55,5}, {0x2e06a,3}, {0xe84f,11}, {0x225e,15}, + {0xf273,11}, {0xd18,18}, {0x1a60c,9}, {0x2efad,2}, {0x1a693,9}, {0xa3e9,9}, {0x3446,3}, {0x2edd8,5}, + {0x2c8f5,6}, {0x1fdb5,7}, {0x154ea,10}, {0x2a6ba,6}, {0x2b2be,6}, {0x31532,3}, {0x232eb,8}, {0x2c9cd,6}, + {0x30df3,4}, {0x29c79,3}, {0x315af,3}, {0x2eecd,5}, {0x17a12,10}, {0x1f61b,9}, {0x26283,8}, {0x2acb2,7}, + {0x1800c,10}, {0x2deab,6}, {0x21b2b,6}, {0x14428,10}, {0x1504e,7}, {0x250eb,8}, {0x587c,3}, {0x2460d,5}, + {0x22945,6}, {0x26b2a,7}, {0x2683d,7}, {0x1370,4}, {0x2aee6,5}, {0xc5ce,11}, {0x1022d,11}, {0x25a03,8}, + {0x2c10,2}, {0x24c4d,6}, {0x2e313,5}, {0xa809,12}, {0x172b3,4}, {0xa239,12}, {0x31482,3}, {0xb115,12}, + {0x2f75c,2}, {0x2b3cc,6}, {0x3147d,3}, {0x2cbd3,6}, {0x215d9,8}, {0x1d91a,9}, {0x31603,3}, {0xc513,11}, + {0x2a557,5}, {0x14d2e,10}, {0x23d13,8}, {0x1da94,5}, {0x2f8d5,5}, {0x3163f,3}, {0x7971,12}, {0x6fea,13}, + {0x1be6,6}, {0xae47,7}, {0x17882,8}, {0x2f032,5}, {0x2f2a2,5}, {0x2d2c9,6}, {0x1eff4,9}, {0x2fd76,5}, + {0x1f0b1,9}, {0x24923,6}, {0x1843c,6}, {0xc88e,5}, {0xe5f2,11}, {0x1b986,9}, {0xf4d0,11}, {0x2af15,5}, + {0x2c65b,6}, {0x11137,11}, {0x1d224,9}, {0xe97,20}, {0x18f68,9}, {0x81cd,4}, {0x2e944,4}, {0x2c8ef,6}, + {0xa9d1,12}, {0x2cd83,6}, {0x1ef64,9}, {0x3441,14}, {0x206f,15}, {0x1024e,11}, {0x196a8,7}, {0x56b3,3}, + {0xc702,7}, {0x1a941,4}, {0xb573,9}, {0x30907,4}, {0x1e31f,9}, {0x17f94,10}, {0x2b180,6}, {0x3060b,4}, + {0x31a99,2}, {0x5c91,13}, {0x9cbd,12}, {0x17736,10}, {0x2a20d,7}, {0x13a2a,7}, {0x306a3,4}, {0xc508,11}, + {0x23713,8}, {0x28fda,7}, {0x30c67,4}, {0x18f20,9}, {0x3092f,4}, {0x19cd6,6}, {0xea79,7}, {0x1bcb9,9}, + {0x2912a,7}, {0x2d269,6}, {0x1fa2f,8}, {0xa6f5,12}, {0x2559d,6}, {0xcd74,11}, {0x2bd67,6}, {0x12f0a,4}, + {0x2e1a8,3}, {0x12b28,10}, {0x10243,11}, {0x1652,5}, {0x10193,11}, {0x1a71a,9}, {0x229f3,8}, {0x23aab,8}, + {0x448f,11}, {0x18354,10}, {0x144a,3}, {0x1f285,9}, {0x31606,3}, {0x31b57,2}, {0x4993,13}, {0x149a2,8}, + {0xd02b,6}, {0x19844,9}, {0xae15,12}, {0x2db27,6}, {0x22cc3,8}, {0xadb5,12}, {0x2e5e0,5}, {0x1eee8,2}, + {0x17d48,8}, {0x29464,7}, {0x11f51,11}, {0x2e2f0,5}, {0x1b059,9}, {0x27ccd,7}, {0x1f600,9}, {0x2c3ab,2}, + {0x12d8a,10}, {0x8c85,12}, {0x2b9a7,6}, {0x2448b,7}, {0x1100e,7}, {0x2f82b,5}, {0xeeb6,11}, {0x3067f,4}, + {0x10bee,9}, {0x312b9,3}, {0x21f53,8}, {0x22cd3,8}, {0x12114,10}, {0x19643,9}, {0x2fe39,5}, {0x2e383,5}, + {0x28c47,5}, {0x27890,7}, {0x1710a,10}, {0x318f9,4}, {0xd416,7}, {0x21681,8}, {0x2b18c,6}, {0x10ea5,3}, + {0x2e771,3}, {0x15cd8,10}, {0x256c3,8}, {0x31384,3}, {0x1c733,9}, {0x18bc4,10}, {0x3172e,3}, {0xf13f,9}, + {0x2c205,6}, {0x2fc4f,5}, {0x2e725,5}, {0x1629,5}, {0x3136c,3}, {0x21aa1,8}, {0x1d4e2,9}, {0x19cfc,7}, + {0x1a32a,9}, {0x153a0,10}, {0x1655c,10}, {0x14ad8,6}, {0x1fd2c,9}, {0x11e75,11}, {0x2d5e9,4}, {0x25c55,5}, + {0x1b2b4,9}, {0x1d773,9}, {0x2e3e7,5}, {0x2b234,6}, {0x31286,3}, {0x8719,5}, {0x12682,10}, {0x29115,7}, + {0xb775,12}, {0x2e68f,5}, {0x30d01,2}, {0x1a252,9}, {0x22d93,8}, {0x1f222,9}, {0xf9fa,8}, {0x24d73,8}, + {0x11c5a,11}, {0x303f1,4}, {0x27bda,5}, {0x260f3,8}, {0x30615,3}, {0x27985,7}, {0x16c0c,8}, {0x30cf,14}, + {0x5833,13}, {0xe6fa,11}, {0x1052f,8}, {0x15a3f,5}, {0xa7ae,7}, {0x175ce,10}, {0x5849,3}, {0xb7c9,12}, + {0x2f27f,5}, {0x163a,3}, {0x2e4e6,5}, {0x88a1,12}, {0xcdcc,11}, {0x6be7,13}, {0x129fc,10}, {0x27008,7}, + {0x19702,6}, {0x90e1,12}, {0x24efb,8}, {0x1e642,7}, {0x26d6f,7}, {0x39d5,14}, {0x248c3,8}, {0xc2a3,8}, + {0xd319,7}, {0x103bb,4}, {0x30697,4}, {0x7bbd,12}, {0x71cb,13}, {0x10afe,9}, {0x2dc1,4}, {0x22c4b,8}, + {0x31298,3}, {0x30c9b,4}, {0x28756,7}, {0x3647,14}, {0x2334b,8}, {0x187be,10}, {0x1fc54,6}, {0x2caf,3}, + {0x25beb,8}, {0x2ddc1,6}, {0x2682f,7}, {0x165b,4}, {0x1216e,10}, {0x1bcef,9}, {0x2d7c1,6}, {0x311ce,5}, + {0x1ab0c,7}, {0x1af93,9}, {0xa371,12}, {0x2f635,5}, {0x2fcc7,5}, {0x319c5,4}, {0x1ce87,6}, {0x20f41,8}, + {0x2221b,8}, {0xbd2f,7}, {0x31ae7,2}, {0x11ac5,3}, {0x23e93,8}, {0x2fb1b,3}, {0x2d6b,10}, {0x2527b,8}, + {0x29df1,7}, {0x25d63,5}, {0x2fc83,3}, {0x82d1,12}, {0x1d572,9}, {0x2543b,8}, {0x265db,8}, {0x29632,6}, + {0x2f464,5}, {0x2e1b1,6}, {0x29bd8,5}, {0x316db,3}, {0x17abc,10}, {0x1869e,7}, {0x2e130,3}, {0x1d6f5,9}, + {0x19883,9}, {0x1a84c,9}, {0x283b1,7}, {0x1dd6d,9}, {0x2560b,8}, {0x2a937,7}, {0x11fcc,9}, {0x224cb,8}, + {0x2bfe9,6}, {0x15f58,10}, {0x1752e,10}, {0x115a4,11}, {0x2de69,6}, {0x1d6f0,5}, {0x1ced9,4}, {0x19e47,9}, + {0x14d44,7}, {0x2eeb1,3}, {0x137ee,9}, {0xd7eb,4}, {0x43b6,5}, {0x510a,13}, {0x2626b,8}, {0x7797,8}, + {0x2d125,6}, {0x18976,10}, {0x1a45e,7}, {0xdaf2,7}, {0x230b3,5}, {0x113f7,6}, {0x2eb9b,2}, {0x14a2c,10}, + {0xb415,12}, {0x63d9,3}, {0x210c9,8}, {0x243cb,5}, {0x189d0,10}, {0x30673,4}, {0x1c9e8,9}, {0x2f993,5}, + {0x3ba3,14}, {0x1b98,3}, {0x5534,13}, {0xbc25,12}, {0xc439,4}, {0x18368,10}, {0x1722e,8}, {0x2ca7,14}, + {0xb85b,10}, {0xcbd2,11}, {0x6c56,4}, {0x28fe1,7}, {0x1e615,7}, {0x4f1c,13}, {0x26b5b,7}, {0x28d2c,7}, + {0x315ee,3}, {0x31786,4}, {0x1103a,11}, {0x49a6,4}, {0x2eee3,3}, {0x2c625,5}, {0x317f9,4}, {0x1262d,5}, + {0x217d,15}, {0x1d3b9,9}, {0x279cb,6}, {0x30a7f,4}, {0x2fc54,5}, {0x7e21,5}, {0x13064,10}, {0x63d4,13}, + {0x265c3,8}, {0x2437f,4}, {0x1ddd0,9}, {0x1720e,7}, {0x1ce61,9}, {0x28a04,7}, {0x2f000,5}, {0x11fd5,11}, + {0x26703,8}, {0x223eb,8}, {0x190f4,9}, {0x119d3,9}, {0x8d69,12}, {0x1043d,11}, {0x58e2,5}, {0x449b,14}, + {0x2f4b9,5}, {0x18bd8,10}, {0x2c46f,5}, {0x25a83,8}, {0x31266,3}, {0x2ebf3,5}, {0x2e3b0,5}, {0x312d0,3}, + {0x205b9,8}, {0x1cfa,7}, {0x18854,10}, {0x30495,4}, {0x2e74e,4}, {0x2fab7,3}, {0x1c92b,9}, {0x31a91,2}, + {0x274bc,7}, {0x25093,8}, {0x182aa,10}, {0x2e365,5}, {0x1120a,3}, {0x1ae07,9}, {0x3045d,4}, {0x312b3,3}, + {0x1b008,9}, {0x2681a,7}, {0xa2d5,12}, {0x30f87,6}, {0x196e5,9}, {0x1cc96,9}, {0x10d85,11}, {0x1fd0a,7}, + {0x16b9e,6}, {0x31acb,2}, {0x23423,8}, {0x20e81,8}, {0x2fe8e,5}, {0x23d75,4}, {0x1ee73,5}, {0x22b8b,8}, + {0x237ab,8}, {0x1d07d,6}, {0x1857c,8}, {0x2bcd1,6}, {0x1f4f2,9}, {0x31a8b,2}, {0x147fc,10}, {0x2bf2f,6}, + {0x1068f,11}, {0x11444,9}, {0xc0f9,12}, {0x31891,4}, {0x29d36,5}, {0x2ef1f,5}, {0x1ab7f,6}, {0x17678,10}, + {0x2f04b,5}, {0x46e7,14}, {0x18cfa,10}, {0x1e558,4}, {0x2f8d8,2}, {0x2a263,4}, {0x25dd5,6}, {0xc4dc,11}, + {0x23d0e,5}, {0x246cb,8}, {0x2d80b,4}, {0x315e8,3}, {0x8775,12}, {0x2942c,7}, {0xd756,11}, {0xebf6,11}, + {0x3124b,3}, {0x1c0a0,9}, {0x3069b,4}, {0x1bf26,9}, {0x2f52e,3}, {0x200cd,7}, {0x12e20,10}, {0x2eb94,5}, + {0x2f28e,5}, {0x19f82,9}, {0x33ed,14}, {0x1e2a1,9}, {0x2ee7d,5}, {0x3adf,14}, {0x2e3b5,5}, {0x2ce79,6}, + {0x1ee0e,9}, {0x20343,5}, {0x30a33,4}, {0x28397,5}, {0x2890f,7}, {0x1c6fd,9}, {0x2e612,5}, {0x2f084,2}, + {0x4a22,13}, {0xd126,11}, {0x30a4b,4}, {0xd85e,11}, {0x1bd0a,9}, {0xf3b2,11}, {0x2665b,8}, {0x2df8c,3}, + {0x140d6,10}, {0x22cfb,6}, {0x2ec07,5}, {0x2ee87,5}, {0x1e89d,3}, {0x1ee56,9}, {0x2e6ad,5}, {0x25935,6}, + {0x20451,5}, {0x10ae8,9}, {0x2487d,5}, {0x216d1,8}, {0x23173,8}, {0x1e0a0,6}, {0x1e838,9}, {0x2d1b5,6}, + {0x2dd61,6}, {0x1884a,10}, {0x11bee,8}, {0x17790,9}, {0x4bd7,3}, {0x27683,7}, {0x1158e,11}, {0x11c3b,9}, + {0x6bcd,13}, {0x10a03,6}, {0xb45d,12}, {0x17ba2,10}, {0x183ea,10}, {0x15788,10}, {0xf39c,11}, {0x1c74e,9}, + {0x1f34b,9}, {0x1a9cf,9}, {0x25523,8}, {0xe3fa,5}, {0x2a6eb,6}, {0x2fdc1,5}, {0x3055b,3}, {0x1907,16}, + {0x2e6a3,5}, {0xb74,18}, {0x7d6d,11}, {0x2c82f,6}, {0x252bb,6}, {0x1d239,6}, {0x8871,12}, {0x1317,16}, + {0x11a36,2}, {0x2b889,4}, {0x4599,12}, {0x17ada,10}, {0x10589,8}, {0x2d565,4}, {0x2d701,6}, {0x2f9b6,5}, + {0x2d773,6}, {0x265fb,8}, {0x31b13,2}, {0x231a3,8}, {0x42e9,14}, {0x2e295,10}, {0x31504,3}, {0x2cde3,6}, + {0x2a92,15}, {0x473d,7}, {0x2c8dd,6}, {0x2f959,3}, {0x1a171,9}, {0x6f1a,13}, {0x2676b,7}, {0x21ffb,8}, + {0x25d73,8}, {0x24495,6}, {0x1a948,9}, {0x1c06a,9}, {0x1cdf5,6}, {0x4463,14}, {0xb12d,10}, {0x17312,10}, + {0x3192d,4}, {0x2fbd2,5}, {0xf7df,6}, {0x7b21,12}, {0x2851d,7}, {0x10e2,4}, {0x11afc,7}, {0x2c8c5,6}, + {0x7dc1,12}, {0x202aa,7}, {0x2d179,6}, {0x118a8,11}, {0x130e2,4}, {0x1d689,9}, {0x2f2f2,5}, {0xc377,3}, + {0x28173,7}, {0x12e5,17}, {0x14e64,10}, {0x3e35,14}, {0x2f50e,5}, {0x19d7b,5}, {0x11a2,17}, {0x23376,5}, + {0x12740,10}, {0x2b9cb,6}, {0x57e5,12}, {0x7754,13}, {0x221ed,6}, {0x25c1b,8}, {0x15940,10}, {0x11bcb,11}, + {0x4793,4}, {0x111e9,3}, {0xc479,11}, {0x1cdda,9}, {0x2f1fe,5}, {0x1165f,6}, {0x3b87,14}, {0x28ed0,7}, + {0x1e1ed,9}, {0x2478b,8}, {0x2cb25,6}, {0x3155a,3}, {0x106a5,11}, {0xc0a5,12}, {0x28d5d,7}, {0x31ac5,2}, + {0x30489,4}, {0x12043,11}, {0x1d90,15}, {0x2ec93,5}, {0x2ddfd,6}, {0x2452,5}, {0x2ca6d,4}, {0x2ea0c,5}, + {0x30557,4}, {0x224d3,8}, {0x1dac1,9}, {0x2c66d,6}, {0x203f9,8}, {0x3913,5}, {0x2d731,6}, {0x2fcdb,5}, + {0xb8b9,12}, {0x2d757,4}, {0x2e058,3}, {0x27a03,7}, {0x96d5,12}, {0x2d33,14}, {0xdccb,11}, {0x14ee6,10}, + {0x15e5e,10}, {0x1698a,10}, {0x2e3dd,5}, {0x7d91,12}, {0xb331,12}, {0x183fe,10}, {0xc77b,11}, {0xba21,5}, + {0x7095,5}, {0x2b779,6}, {0x151e8,10}, {0x1f018,9}, {0x6790,5}, {0x28319,5}, {0x17664,10}, {0x2b16e,6}, + {0x1e97,7}, {0x392f,8}, {0x2b372,6}, {0x3159d,3}, {0x144f0,10}, {0x25b23,7}, {0x6e0f,7}, {0x1c97f,6}, + {0x1ab76,9}, {0xddc8,11}, {0x2cb67,6}, {0x2efec,5}, {0x2aa33,7}, {0x260eb,8}, {0x410f,3}, {0x17e45,5}, + {0xa43d,12}, {0x2b498,6}, {0x26733,8}, {0x48d9,3}, {0x27127,6}, {0x29dd5,7}, {0x10a85,4}, {0x19e11,9}, + {0x2cc99,6}, {0x1e98e,5}, {0x1f8e2,9}, {0x834b,9}, {0x12592,10}, {0x26963,3}, {0x4dfe,13}, {0x31468,3}, + {0x2c79,4}, {0x19d66,9}, {0x3513,14}, {0x9da1,12}, {0x2cae9,6}, {0xd0d3,6}, {0x2fdcb,5}, {0x20449,8}, + {0x3177a,3}, {0x122cc,10}, {0x19b7,16}, {0x107a2,11}, {0x19ad5,9}, {0x243db,8}, {0x2ef01,3}, {0x14356,10}, + {0x27954,6}, {0x1cbb3,9}, {0xabed,11}, {0x1cfff,9}, {0x11e1d,11}, {0x1a927,6}, {0x1e331,9}, {0xc3b3,11}, + {0xdd70,11}, {0x5686,13}, {0x1f36f,9}, {0xdcdc,5}, {0x2b486,6}, {0x1d86f,9}, {0x2584b,8}, {0x2e967,5}, + {0x1eea7,5}, {0x10bf0,9}, {0x25c5d,6}, {0x17c38,10}, {0x1a95c,6}, {0x2e56d,5}, {0xc46e,11}, {0x2fec5,5}, + {0x1dfc1,4}, {0x2dca7,6}, {0x1a441,9}, {0x10d85,5}, {0x1367c,9}, {0xf318,11}, {0x268c2,7}, {0x8f61,12}, + {0x13b42,8}, {0x22243,8}, {0x24b13,8}, {0x18318,10}, {0x2c817,6}, {0x2cae3,6}, {0x112b8,11}, {0x2c11,10}, + {0x2b3c0,6}, {0x31a69,2}, {0x15fa8,10}, {0x1204e,6}, {0x2c8d1,6}, {0x2f4c8,5}, {0x2c667,5}, {0x3162a,3}, + {0x316ab,3}, {0x1ba3a,9}, {0x1866c,8}, {0x11c18,11}, {0x2fd67,5}, {0x2b919,4}, {0x2c3c7,6}, {0x2f0be,5}, + {0x28ff6,7}, {0x2e70c,5}, {0x11fe0,11}, {0x3086f,6}, {0x279e7,7}, {0x17498,10}, {0x1904b,7}, {0x23d83,8}, + {0x25a13,8}, {0x4845,5}, {0x17cd0,4}, {0xde20,11}, {0x23f23,8}, {0x835a,6}, {0x18fa7,9}, {0x1a269,3}, + {0x2e45f,5}, {0x19643,8}, {0x16eb2,10}, {0x2d089,6}, {0xb281,5}, {0x293e6,7}, {0x238fd,4}, {0x2d5bd,6}, + {0x25dad,6}, {0x1b9b3,9}, {0x6b72,13}, {0x18174,6}, {0x2afb8,5}, {0x291b,15}, {0x30f63,6}, {0x121d2,10}, + {0x22f0b,8}, {0x22a15,6}, {0x218d9,8}, {0xa9e9,12}, {0x29ea7,6}, {0x156c0,7}, {0x1dadc,9}, {0xd84c,4}, + {0x1f8e,15}, {0x10356,11}, {0x1a5a9,9}, {0x21d61,8}, {0x24d4b,8}, {0x2a2df,7}, {0x2b1c2,6}, {0x1bfb6,9}, + {0x3d55,6}, {0x17aa8,10}, {0x304a1,4}, {0x26cb9,7}, {0x2b3ae,6}, {0x277ef,7}, {0x14f2c,10}, {0x22aa3,8}, + {0x2d017,6}, {0x2a11f,7}, {0x20959,8}, {0x1b290,5}, {0x1e490,9}, {0xff85,7}, {0xb507,10}, {0x30667,4}, + {0x2f6de,3}, {0x1bd91,9}, {0x31821,4}, {0x309df,4}, {0x25aab,8}, {0x2e19f,6}, {0x30693,4}, {0x4f91,13}, + {0x2f768,5}, {0x11dd0,11}, {0x184b4,8}, {0x2b959,6}, {0xf7d2,10}, {0x32c0,6}, {0x2e63f,5}, {0x6d26,4}, + {0x2dd3d,6}, {0x5541,13}, {0x25d26,4}, {0x2e671,5}, {0x29451,4}, {0x26cea,7}, {0x28e1a,7}, {0x314d3,3}, + {0xcf00,11}, {0x2159b,5}, {0xb39f,2}, {0x2bc17,6}, {0x7448,13}, {0x385d,7}, {0x141e,9}, {0xf1b8,11}, + {0x30603,4}, {0x6f1c,4}, {0x2d26f,6}, {0x16ca2,8}, {0x1734e,10}, {0xb799,9}, {0x256eb,8}, {0x20377,9}, + {0x312c4,3}, {0x10e40,11}, {0x30643,4}, {0x19cb2,9}, {0x2e3f1,5}, {0x5a7c,13}, {0x20471,8}, {0x1ade,15}, + {0x1965e,9}, {0x3663,14}, {0x2279b,8}, {0x29193,7}, {0x30f09,6}, {0x20c59,8}, {0x1c8e3,9}, {0x2d079,4}, + {0xff4c,11}, {0x2415b,5}, {0x2a15e,7}, {0xf462,11}, {0x303c5,4}, {0x1496e,10}, {0x2c63d,6}, {0xb13b,4}, + {0x171e8,8}, {0x31589,3}, {0x1405e,10}, {0xe21f,11}, {0xd56b,6}, {0x24695,6}, {0x2e707,5}, {0x1feaf,8}, + {0x48b5,14}, {0x1963a,9}, {0x1a6a5,9}, {0x2a0b,14}, {0x18282,10}, {0x1cfc,8}, {0x2bdcf,4}, {0x31483,3}, + {0x2bc6b,6}, {0x188f4,10}, {0x2263,2}, {0x28491,7}, {0x238bb,8}, {0x15ee0,10}, {0x26b5e,4}, {0x23e9b,8}, + {0x2634d,3}, {0x313e7,3}, {0x28b07,7}, {0x110b5,5}, {0x20549,8}, {0x3151f,3}, {0x15e72,10}, {0x2304b,8}, + {0x29d18,5}, {0x2d1df,6}, {0x6123,12}, {0x29107,7}, {0x2ac65,7}, {0x24563,8}, {0x101f6,11}, {0xd78,48}, + {0x2b3d2,6}, {0x272ee,7}, {0x1b098,9}, {0x2526b,8}, {0x2f12c,5}, {0x106b0,10}, {0x10810,11}, {0x31995,4}, + {0x11281,11}, {0x1f1ad,9}, {0x262db,8}, {0x2e1c9,6}, {0x1cd4,8}, {0x31549,3}, {0x31633,3}, {0x14b4e,10}, + {0x1ba55,9}, {0x2e1bd,6}, {0x30f33,6}, {0x2e35c,4}, {0x2ca7f,4}, {0x19cbb,9}, {0x16b7e,9}, {0x2e491,5}, + {0xcb9b,11}, {0x2ed1a,5}, {0x2d29f,6}, {0x9d89,12}, {0x26fda,4}, {0x2e223,6}, {0x28da3,7}, {0x172c2,10}, + {0x2edb2,3}, {0x31624,3}, {0x4791,3}, {0x31759,3}, {0x2e98f,5}, {0x23113,8}, {0x235a3,8}, {0x32d5,14}, + {0x3132a,3}, {0x578a,13}, {0x151b6,10}, {0x2f871,5}, {0x1b02e,6}, {0x6bb6,4}, {0x58f6,13}, {0x2211b,8}, + {0x26763,8}, {0x2fa9c,5}, {0x2f371,2}, {0x1c941,5}, {0x2ac0c,4}, {0x20811,8}, {0x2ea84,5}, {0x2aaba,7}, + {0x2e1c3,6}, {0x843b,3}, {0xcbdd,11}, {0x27a5e,7}, {0x2f68c,5}, {0x2b11a,6}, {0x2e37e,5}, {0x7bed,12}, + {0xb109,12}, {0x1e8f5,9}, {0x1d45,15}, {0x2ed2e,5}, {0x2715a,5}, {0x2cdcd,4}, {0x1124a,11}, {0x2de0f,5}, + {0x2c5a,4}, {0x1e999,7}, {0x375f,14}, {0x3193d,4}, {0x14f04,10}, {0x494a,8}, {0x2ddeb,6}, {0x15096,8}, + {0x2e75c,5}, {0x12240,10}, {0xe26c,11}, {0x1da79,9}, {0x297e4,7}, {0x2b1bc,6}, {0xd168,11}, {0x8e59,12}, + {0x2e24d,6}, {0x269c7,5}, {0x2a6b3,7}, {0x1377,16}, {0x1987a,9}, {0x22aed,5}, {0x221b3,8}, {0x1d0bc,9}, + {0x2ad8d,6}, {0x1312e,4}, {0xddb2,11}, {0x24433,8}, {0x2da73,6}, {0x18c14,7}, {0x1fd7f,7}, {0x7170,13}, + {0x2934c,7}, {0x2fe4d,5}, {0x2f25c,5}, {0x171fa,10}, {0x2cec1,6}, {0x2e62b,5}, {0x23b85,6}, {0x434d,10}, + {0x2ac91,5}, {0x314e0,3}, {0x24573,8}, {0x30713,4}, {0x2e432,5}, {0x1fb75,7}, {0x2abdb,5}, {0x2373b,8}, + {0x2d989,6}, {0x2e052,3}, {0x7bd5,12}, {0x22d1b,8}, {0x1da5,4}, {0x2e5ef,5}, {0xd551,11}, {0x2349d,6}, + {0x1e869,3}, {0x1e208,9}, {0x2e1e7,6}, {0x95d1,8}, {0x308c3,6}, {0x8d99,12}, {0x257db,7}, {0x1b9e5,4}, + {0xb393,3}, {0x30683,4}, {0x274e6,7}, {0x1d2b6,7}, {0x23f1b,8}, {0x2fd4e,5}, {0x18d10,8}, {0x1914e,6}, + {0x2387b,8}, {0x1ead2,9}, {0x2d311,6}, {0x1b976,3}, {0xc387,11}, {0x1dcb0,9}, {0x19373,9}, {0x956d,8}, + {0x72f8,7}, {0xb9e7,3}, {0x2e1b4,3}, {0x944d,12}, {0x2cf6f,6}, {0x8055,12}, {0xb4d5,12}, {0x1f03c,9}, + {0x2dcc5,6}, {0x2fe57,5}, {0xb031,12}, {0x18264,10}, {0xcc77,11}, {0x2effb,5}, {0x317dd,4}, {0xd324,7}, + {0x1f1fe,5}, {0x30687,4}, {0x2c6c1,6}, {0x27bbc,7}, {0x1b61d,6}, {0x25795,6}, {0x21919,8}, {0x314cb,3}, + {0xcd6,32}, {0x1672a,8}, {0x2214b,8}, {0x2f608,5}, {0x2e478,5}, {0x1f4d9,7}, {0xf37b,11}, {0xf8fb,11}, + {0x566e,3}, {0x3135a,3}, {0x10080,11}, {0x30af3,4}, {0x175b0,10}, {0x2a622,5}, {0x9add,12}, {0x1f9d5,9}, + {0x121e,3}, {0x2fd05,3}, {0x17e4a,10}, {0x203d1,8}, {0x3169,14}, {0x2d835,4}, {0x10d7a,6}, {0x1894e,10}, + {0x26323,8}, {0xcb71,9}, {0x30bdb,4}, {0xbcc1,12}, {0x1e2ee,3}, {0x26c03,7}, {0x14874,10}, {0x24b6,15}, + {0x19966,7}, {0x30553,4}, {0x1740e,5}, {0x29e37,7}, {0x2ad0d,7}, {0x36d3,7}, {0x2f08c,5}, {0x1bfad,9}, + {0xb415,5}, {0x1e08e,9}, {0x17df7,3}, {0x2ee73,4}, {0x1eb11,9}, {0x1e94f,9}, {0x2518b,8}, {0xbc31,12}, + {0x1f059,7}, {0xdc26,11}, {0xa7c1,12}, {0x29bac,7}, {0x128d3,4}, {0x24ded,6}, {0x16174,10}, {0x201d9,6}, + {0xfd89,11}, {0x2cb4f,6}, {0x1e841,9}, {0x2240,15}, {0x2222,15}, {0x22b0b,8}, {0x1c892,9}, {0xb5e9,12}, + {0x1841c,10}, {0x2660b,8}, {0x1727e,3}, {0x204a9,8}, {0x20e29,8}, {0x28908,6}, {0x12cb8,10}, {0x2cf75,6}, + {0x2e3d8,5}, {0xe360,7}, {0x31aa1,2}, {0x2bce9,6}, {0x72c2,13}, {0xc24c,11}, {0x2e518,5}, {0x299a6,7}, + {0x2b1ec,6}, {0x304d3,4}, {0xf199,8}, {0x6b0c,8}, {0x2b48,11}, {0x2a268,7}, {0x23dcb,8}, {0x1ea6f,9}, + {0x2e5f4,5}, {0x244fd,6}, {0x24073,8}, {0x291a3,5}, {0x1ac57,9}, {0x1a14d,9}, {0x10970,11}, {0x17be0,3}, + {0x2f2f9,2}, {0x1db4,9}, {0x2dc49,4}, {0x31630,3}, {0x2f4fa,5}, {0x172f,8}, {0x2cb15,4}, {0x19a06,9}, + {0x24f0b,8}, {0x54e9,9}, {0x1af1e,9}, {0x2b324,6}, {0x2eb17,5}, {0x1189d,11}, {0x2fe6b,5}, {0x14b7,16}, + {0x25383,8}, {0x11675,11}, {0x25c65,6}, {0x25d53,8}, {0x203a9,8}, {0x2d851,6}, {0x2e910,5}, {0x206e9,8}, + {0x28de2,7}, {0x1f960,9}, {0x9a52,6}, {0xfc0a,8}, {0x1f7b3,3}, {0x14324,10}, {0x7ba5,12}, {0x1bd76,7}, + {0x2cbcd,6}, {0x1fdd7,9}, {0x3043d,4}, {0x267fe,7}, {0x2d79f,4}, {0x313c3,3}, {0x186b0,5}, {0x2598b,8}, + {0x4155,4}, {0x316cf,3}, {0x1c2c5,9}, {0x2b0cc,12}, {0x267e2,7}, {0xef1,5}, {0x113d8,4}, {0xeaee,11}, + {0x2a498,7}, {0x69df,13}, {0x1889a,10}, {0x2e2e1,5}, {0x8691,11}, {0x21fc3,8}, {0x3719,14}, {0x29148,5}, + {0x314e4,3}, {0x21a69,8}, {0x1fdc5,9}, {0x10f11,11}, {0x1ee83,9}, {0x2e44b,5}, {0x1b65c,9}, {0x2c571,6}, + {0x2f7ce,3}, {0x1825c,8}, {0x7df1,12}, {0x161a6,10}, {0x3051b,4}, {0x27b5,4}, {0x2e58b,5}, {0x2935a,6}, + {0x1ebf2,9}, {0x2f5a4,5}, {0x7a61,12}, {0xea75,11}, {0xedda,11}, {0x152ba,10}, {0x3047d,4}, {0x13d52,10}, + {0x2c505,6}, {0x815d,12}, {0x2d57b,6}, {0x1011c,5}, {0x2f2e5,3}, {0x1ea39,9}, {0x29feb,7}, {0x2f8cb,5}, + {0x2fd03,5}, {0x9765,12}, {0x1bc17,9}, {0x23cfb,8}, {0x292d5,7}, {0x2ca77,6}, {0x3050b,4}, {0x2ed4c,5}, + {0x2f9a2,5}, {0x31227,3}, {0x10b8d,8}, {0x23e33,8}, {0x2b288,6}, {0x13f6e,10}, {0x112ad,5}, {0xfeb4,6}, + {0x4c2a,13}, {0x1245,7}, {0x8bb9,12}, {0x2341e,4}, {0x24bbe,5}, {0x15454,5}, {0x2b3e4,6}, {0x2f95c,5}, + {0xeb30,11}, {0xa25d,12}, {0xd32d,9}, {0x2b282,6}, {0xc397,4}, {0x12f56,10}, {0x2bbab,6}, {0xebe,7}, + {0x6651,12}, {0x13868,6}, {0x108d8,5}, {0x1e9df,9}, {0x1185b,11}, {0x29d67,5}, {0x2a01e,3}, {0x11ee3,11}, + {0x26a2e,7}, {0x14ae,3}, {0x26cf8,7}, {0x29edf,7}, {0xd36f,6}, {0x1f07d,7}, {0x3161e,3}, {0xf3a7,11}, + {0xadcd,12}, {0x236db,7}, {0x26c42,7}, {0x2aeac,7}, {0x1ffef,4}, {0x2f58,6}, {0x2c91b,4}, {0x2c145,6}, + {0x2d509,6}, {0x2fae9,3}, {0x31a9d,2}, {0xdc7e,11}, {0x1d0b3,9}, {0x295bb,7}, {0x6637,13}, {0x1d251,9}, + {0xa2b1,12}, {0x1dda3,9}, {0x3032a,5}, {0x1cb1,9}, {0x27fbc,4}, {0x2cb8b,6}, {0x25ff5,6}, {0x316d5,3}, + {0x30f21,6}, {0x4ae5,13}, {0x17f30,10}, {0x2c67f,6}, {0x18c14,10}, {0x2d653,5}, {0xac11,12}, {0x2c865,6}, + {0x1e57a,6}, {0x11347,11}, {0x6c37,10}, {0x3a1b,14}, {0x4321,14}, {0x2c4db,6}, {0x2ae19,7}, {0x12600,10}, + {0x1b011,9}, {0xa8e1,12}, {0x59bf,6}, {0x2e6fe,4}, {0x20c41,8}, {0x5f1b,13}, {0x246b3,8}, {0x7532,13}, + {0xa59c,6}, {0x2a9a9,4}, {0x4a0c,9}, {0x28c64,3}, {0x2c79f,6}, {0x2fd71,5}, {0xfd20,6}, {0x2e6a8,5}, + {0x82c5,12}, {0x2fbf0,5}, {0xfd73,11}, {0x31507,3}, {0xb8d1,12}, {0x2e644,5}, {0x24d95,6}, {0x17ed8,4}, + {0x27e8d,7}, {0x2305b,8}, {0x5eda,13}, {0xf77a,11}, {0x772d,13}, {0x2e379,5}, {0x2e4a5,5}, {0x1f37,2}, + {0x17c60,10}, {0x1457,16}, {0xe369,11}, {0x2367b,8}, {0x26883,7}, {0x2e2c8,5}, {0xa556,7}, {0x1f5cc,7}, + {0x1c709,6}, {0x22ae3,8}, {0xff99,10}, {0x28498,7}, {0xecc7,11}, {0x10ce0,11}, {0x2b40e,6}, {0x2315b,8}, + {0x2f423,5}, {0x6e16,13}, {0x23efb,8}, {0x1244c,6}, {0x1b8d4,7}, {0x2cf6f,5}, {0x228ab,8}, {0x1da1f,9}, + {0x27845,5}, {0x2231d,6}, {0x166b2,8}, {0x2ecbb,5}, {0x13956,10}, {0x4781,14}, {0x2fd8a,5}, {0x67d1,6}, + {0x27da6,7}, {0x311f6,5}, {0x12350,8}, {0xa719,12}, {0x18a2c,6}, {0x1cd0b,9}, {0x1239e,10}, {0x2245b,8}, + {0x2cf4b,6}, {0x316c6,3}, {0xa539,12}, {0x2c7bd,6}, {0x2bf5f,6}, {0x188c2,10}, {0x30567,4}, {0x3151c,3}, + {0x8889,12}, {0x2be15,6}, {0x1fc1e,9}, {0x1d65c,9}, {0x2d473,6}, {0x2a682,7}, {0x2dc71,6}, {0x2b2fa,6}, + {0xdc5d,11}, {0x2c27d,6}, {0x1206f,11}, {0x2ef3d,5}, {0x8f3d,12}, {0x1711e,10}, {0x28f94,7}, {0x2f14f,5}, + {0x18a84,10}, {0x20751,8}, {0x1a291,8}, {0x10aba,11}, {0x304fb,4}, {0x2ed65,5}, {0xf478,11}, {0x1cf42,9}, + {0x31696,3}, {0xd20d,11}, {0x144e6,10}, {0x1fc66,9}, {0x2e72a,5}, {0x22ef3,8}, {0x16fc,4}, {0x29435,3}, + {0x265f3,8}, {0x1b1a6,9}, {0x2d4d9,6}, {0xc047,3}, {0x2d64d,6}, {0x11a4a,11}, {0xc345,11}, {0x2a387,7}, + {0x1779a,10}, {0x2204,15}, {0x250e3,8}, {0x258cb,8}, {0x2c9e5,6}, {0x65c7,8}, {0x16386,10}, {0x21059,8}, + {0x9d65,12}, {0x7566,13}, {0x16554,8}, {0x116e6,8}, {0x31360,3}, {0x282df,7}, {0x1a66,2}, {0x282c3,7}, + {0x28503,5}, {0x307ba,4}, {0x146bc,10}, {0x309f7,4}, {0x2e953,5}, {0x28c7d,7}, {0x3050f,4}, {0x2e05e,3}, + {0x1ff6c,9}, {0x22b75,6}, {0x848d,12}, {0x30c19,2}, {0x6304,13}, {0x259fb,8}, {0x8685,12}, {0x217e1,8}, + {0x1689a,10}, {0x6fb6,5}, {0x19e98,9}, {0x16caa,10}, {0x268c9,7}, {0xc2fd,3}, {0x21401,8}, {0x1371c,10}, + {0xa2a5,12}, {0x11a6b,7}, {0x2de45,6}, {0x12c06,7}, {0x1b6da,9}, {0x15730,5}, {0x12862,10}, {0x2d635,6}, + {0xc0d5,12}, {0x1ba18,7}, {0x953d,12}, {0x28b2a,7}, {0x2e040,3}, {0x19667,9}, {0x314fe,3}, {0x21c11,6}, + {0x25b5,15}, {0x11184,11}, {0x2fd58,5}, {0xab1,6}, {0x399d,14}, {0x2a0f5,7}, {0x26053,8}, {0x3178a,4}, + {0x272c,14}, {0x2dd55,5}, {0x2ea7a,5}, {0x2943a,7}, {0xeafd,7}, {0x314c5,3}, {0xe1e8,11}, {0x2876b,7}, + {0x30bcb,4}, {0x2e78c,8}, {0x8739,7}, {0x488b,14}, {0x2b5dd,4}, {0x1a98,4}, {0x7a01,12}, {0x2ad8d,7}, + {0x26eaa,7}, {0x235bb,8}, {0x6eb2,13}, {0x10552,9}, {0x27cf7,7}, {0x24263,8}, {0x2f658,7}, {0x31224,3}, + {0x205a9,5}, {0x1a0ea,9}, {0xa88d,12}, {0x137fd,5}, {0x134b2,7}, {0x292b2,7}, {0x25393,8}, {0x1832c,10}, + {0x22326,5}, {0x1666a,10}, {0x50db,7}, {0xc516,4}, {0x7a31,12}, {0x1314a,10}, {0x83c1,12}, {0x2c1e9,4}, + {0x2f545,5}, {0x6def,7}, {0x3d55,14}, {0x17272,10}, {0x2484b,8}, {0x2de51,6}, {0x26073,8}, {0x1b5c3,9}, + {0x11838,13}, {0x2a627,6}, {0x2cacb,5}, {0x29d49,7}, {0x2581b,8}, {0x1ad41,9}, {0x1fbf1,9}, {0x10151,11}, + {0x251ab,8}, {0x1051,4}, {0x1e384,6}, {0x2365b,8}, {0x1f1f5,9}, {0xa84b,6}, {0x1c91,15}, {0x2ea0c,4}, + {0x2d23f,6}, {0xd546,11}, {0x20ba,15}, {0x31949,4}, {0x3041d,4}, {0x30c21,2}, {0x758d,13}, {0x235f5,4}, + {0x2c7ad,4}, {0x1a6ae,9}, {0x2291b,8}, {0x3b74,5}, {0x2b39c,6}, {0x2986,10}, {0x19ce8,9}, {0x134a6,10}, + {0x3fd9,14}, {0x28f50,5}, {0x314ad,3}, {0x1ba67,9}, {0x15ca6,10}, {0x25573,8}, {0x2afd,10}, {0x30e27,4}, + {0x2e2a7,8}, {0xbeeb,6}, {0x28c1,15}, {0xdffc,8}, {0x86e5,9}, {0x18944,10}, {0x9801,12}, {0x27f35,7}, + {0x9a2,13} +}}; +#endif // GPTJ_TOKENIZER_CONFIG_H_ diff --git a/gpt4all-backend/tokenizer/mpt_tokenizer_config.h b/gpt4all-backend/tokenizer/mpt_tokenizer_config.h new file mode 100644 index 00000000..84e59a36 --- /dev/null +++ b/gpt4all-backend/tokenizer/mpt_tokenizer_config.h @@ -0,0 +1,23175 @@ +// @generated GENERATED BY scripts/gen_tokenizer_include.py DO NOT MODIFY +#ifndef MPT_TOKENIZER_CONFIG_H_ +#define MPT_TOKENIZER_CONFIG_H_ +#include "bpe.h" +// buflen 187398 +constexpr const char mpt_buffer[] = +" <|endoftext|><|padding|>\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0--------" +"--------------------------------------------------------------------------------" +"--------------------------------------------------------------------------------" +"--------------------------------------------------------------------------------" +"--------\xc4\x8a\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0****************" +"************************************************************//------------------" +"----------------------------------------------\xc4\xa0==========================" +"======================================\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc3\x82\xc5" +"\x82\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc3\x82\xc5" +"\x82\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc3\x82\xc5" +"\x82\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc3\x82\xc5" +"\x82\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc3\x82\xc5" +"\x82\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc3\x82\xc5" +"\x82\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc3\x82\xc5\x82////////////" +"////////////////////////////////////////////////////\xc4\x8a\xc4\x8a\xc4\xa0\xc4" +"\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4" +"\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4" +"\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4" +"\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4" +"\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0""0000000000000000000000000000000000\xc4\xa0" +"_________________________________\xc3\x83\xc4\xa5\xc3\x83\xc4\xa4\xc3\x83\xc4\xa5" +"\xc3\x83\xc4\xa4\xc3\x83\xc4\xa5\xc3\x83\xc4\xa4\xc3\x83\xc4\xa5\xc3\x83\xc4\xa4" +"\xc3\x83\xc4\xa5\xc3\x83\xc4\xa4\xc3\x83\xc4\xa5\xc3\x83\xc4\xa4\xc3\x83\xc4\xa5" +"\xc3\x83\xc4\xa4\xc3\x83\xc4\xa5\xc3\x83\xc4\xa4................................" +"################################\xc4\x8d\xc4\x8a\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\x8a" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\x8a\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc3\xa2\xc4\xb6\xc4\xa2\xc3\xa2\xc4\xb6\xc4\xa2" +"\xc3\xa2\xc4\xb6\xc4\xa2\xc3\xa2\xc4\xb6\xc4\xa2\xc3\xa2\xc4\xb6\xc4\xa2\xc3\xa2" +"\xc4\xb6\xc4\xa2\xc3\xa2\xc4\xb6\xc4\xa2\xc3\xa2\xc4\xb6\xc4\xa2\xc3\xa2\xc4\xa2" +"\xc4\xb6\xc3\xa2\xc4\xa2\xc4\xb6\xc3\xa2\xc4\xa2\xc4\xb6\xc3\xa2\xc4\xa2\xc4\xb6" +"\xc3\xa2\xc4\xa2\xc4\xb6\xc3\xa2\xc4\xa2\xc4\xb6\xc3\xa2\xc4\xa2\xc4\xb6\xc3\xa2" +"\xc4\xa2\xc4\xb6\xc3\xa2\xc4\xa2\xc4\xb5\xc3\xa2\xc4\xa2\xc4\xb5\xc3\xa2\xc4\xa2" +"\xc4\xb5\xc3\xa2\xc4\xa2\xc4\xb5\xc3\xa2\xc4\xa2\xc4\xb5\xc3\xa2\xc4\xa2\xc4\xb5" +"\xc3\xa2\xc4\xa2\xc4\xb5\xc3\xa2\xc4\xa2\xc4\xb5\xc4\xa0immunohistochemistry\xc4" +"\xa0\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc4\xa0\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc4" +"\xa0\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc4\xa0\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc4" +"\xa0immunohistochemical=\x22../../../../../../\xc4\xa0telecommunications\xc4\xa0" +"immunofluorescence\xc4\xa0neurodegenerative\xc4\xa0multidisciplinary\xc4\xa0misr" +"epresentation\xc4\xa0indistinguishable\xc4\xa0immunosuppressive\xc4\xa0histopath" +"ological\xc4\xa0""BytePtrFromString\xc4\xa0\xc4\x8a\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0unconstitutional\xc4\xa0responsibilities\xc4\xa0phenomenological" +"\xc4\xa0oligonucleotides\xc4\xa0misunderstanding\xc4\xa0microenvironment\xc4\xa0" +"immunoreactivity\xc4\xa0immunodeficiency\xc4\xa0hypersensitivity\xc4\xa0gastroin" +"testinal\xc4\xa0""echocardiography\xc4\xa0""disproportionate\xc4\xa0""cryptocurr" +"encies\xc4\xa0""constitutionally\xc4\xa0""characterization\xc4\x8a\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\x8a\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0scriptscriptstyleArgumentException\xc4\xa0vulner" +"abilities\xc4\xa0transplantation\xc4\xa0transformations\xc4\xa0transcriptional\xc4" +"\xa0synchronization\xc4\xa0supplementation\xc4\xa0superconducting\xc4\xa0straigh" +"tforward\xc4\xa0retrospectively\xc4\xa0reproducibility\xc4\xa0representatives\xc4" +"\xa0representations\xc4\xa0renormalization\xc4\xa0reconsideration\xc4\xa0recomme" +"ndations\xc4\xa0proinflammatory\xc4\xa0postoperatively\xc4\xa0phosphorylation\xc4" +"\xa0pharmacological\xc4\xa0pharmacokinetic\xc4\xa0pathophysiology\xc4\xa0notwith" +"standing\xc4\xa0methamphetamine\xc4\xa0interpretations\xc4\xa0internationally\xc4" +"\xa0instrumentation\xc4\xa0inconsistencies\xc4\xa0implementations\xc4\xa0hospita" +"lization\xc4\xa0""extraordinarily\xc4\xa0""experimentation\xc4\xa0""epidemiologi" +"cal\xc4\xa0""environmentally\xc4\xa0""electrophoresis\xc4\xa0""electromagnetic\xc4" +"\xa0""electrochemical\xc4\xa0""distinguishable\xc4\xa0""differentiation\xc4\xa0""d" +"ifferentiating\xc4\xa0""crystallization\xc4\xa0""corticosteroids\xc4\xa0""corres" +"pondingly\xc4\xa0""confidentiality\xc4\xa0""computationally\xc4\xa0""classificat" +"ions\xc4\xa0""circumferential\xc4\xa0""characteristics\xc4\xa0""bioavailability\xc4" +"\xa0""atherosclerotic\xc4\xa0""atherosclerosis\xc4\xa0""accomplishments\xc4\xa0R" +"epresentatives\xc4\xa0Redistributions\xc4\xa0MERCHANTABILITY\xc4\xa0""Characteri" +"stics\xc4\x8a\xc4\xa0\xc4\x8a\xc4\xa0\xc4\x8a\xc4\xa0\xc4\x8a\xc4\xa0\xc4\x8a\xc4" +"\xa0\xc4\x8a\xc4\xa0\xc4\x8a\xc4\xa0\xc4\x8a\xc4\xa0~~~~~~~~~~~~~~~~addEventList" +"enerAcknowledgementsAAAAAAAAAAAAAAAA1451450014514500%%%%%%%%%%%%%%%%\xc4\xa0unsa" +"tisfactory\xc4\xa0understandable\xc4\xa0underestimated\xc4\xa0unconventional\xc4" +"\xa0transportation\xc4\xa0systematically\xc4\xa0sustainability\xc4\xa0susceptibi" +"lity\xc4\xa0superintendent\xc4\xa0stratification\xc4\xa0specifications\xc4\xa0sp" +"ecialization\xc4\xa0simultaneously\xc4\xa0scientifically\xc4\xa0responsiveness\xc4" +"\xa0responsibility\xc4\xa0reorganization\xc4\xa0rehabilitation\xc4\xa0regulariza" +"tion\xc4\xa0redistribution\xc4\xa0reconstruction\xc4\xa0reconciliation\xc4\xa0re" +"asonableness\xc4\xa0questionnaires\xc4\xa0quantitatively\xc4\xa0quantification\xc4" +"\xa0qualifications\xc4\xa0professionally\xc4\xa0preferentially\xc4\xa0polymeriza" +"tion\xc4\xa0photosensitive\xc4\xa0phosphorylated\xc4\xa0pharmaceutical\xc4\xa0ov" +"erwhelmingly\xc4\xa0overexpression\xc4\xa0organizational\xc4\xa0municipalities\xc4" +"\xa0multiplicative\xc4\xa0multiplication\xc4\xa0microorganisms\xc4\xa0methodolog" +"ical\xc4\xa0manifestations\xc4\xa0jurisdictional\xc4\xa0investigations\xc4\xa0in" +"traoperative\xc4\xa0interconnected\xc4\xa0initialization\xc4\xa0infrastructure\xc4" +"\xa0individualized\xc4\xa0immunostaining\xc4\xa0immunoglobulin\xc4\xa0identifica" +"tion\xc4\xa0hepatocellular\xc4\xa0generalization\xc4\xa0""experimentally\xc4\xa0" +"""establishments\xc4\xa0""electronically\xc4\xa0""downregulation\xc4\xa0""distin" +"guishing\xc4\xa0""discriminatory\xc4\xa0""discrimination\xc4\xa0""disappointment" +"\xc4\xa0""differentiated\xc4\xa0""differentially\xc4\xa0""differentiable\xc4\xa0" +"""determinations\xc4\xa0""demonstrations\xc4\xa0""cryptocurrency\xc4\xa0""corres" +"pondence\xc4\xa0""conventionally\xc4\xa0""considerations\xc4\xa0""conformational" +"\xc4\xa0""configurations\xc4\xa0""concentrations\xc4\xa0""communications\xc4\xa0" +"""circumstantial\xc4\xa0""chromatography\xc4\xa0""characterizing\xc4\xa0""centri" +"fugation\xc4\xa0""cardiovascular\xc4\xa0""cardiomyopathy\xc4\xa0""carcinogenesis" +"\xc4\xa0""authentication\xc4\xa0""asymptotically\xc4\xa0""archaeological\xc4\xa0" +"""approximations\xc4\xa0""aforementioned\xc4\xa0""advertisements\xc4\xa0""admini" +"strators\xc4\xa0""administrative\xc4\xa0""administration\xc4\xa0""adenocarcinoma" +"\xc4\xa0""acknowledgment\xc4\xa0""accountability\xc4\xa0""accommodations\xc4\xa0" +"Transportation\xc4\xa0Superintendent\xc4\xa0Rehabilitation\xc4\xa0Quantification" +"\xc4\xa0Infrastructure\xc4\xa0Implementation\xc4\xa0Identification\xc4\xa0""Cons" +"titutional\xc4\xa0""Communications\xc4\xa0""Classification\xc4\xa0""Administrati" +"ve\xc4\xa0""Administration\xc4\x8d\xc4\x8a\xc4\x8d\xc4\x8a\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0springframeworkp" +"rintStackTraceOnClickListenerAcknowledgments\xc4\xa0vulnerability\xc4\xa0visuali" +"zation\xc4\xa0unpredictable\xc4\xa0unprecedented\xc4\xa0unnecessarily\xc4\xa0unf" +"ortunately\xc4\xa0understanding\xc4\xa0undergraduate\xc4\xa0unconditional\xc4\xa0" +"uncomfortable\xc4\xa0uncertainties\xc4\xa0tumorigenesis\xc4\xa0triglycerides\xc4" +"\xa0transmissions\xc4\xa0transmembrane\xc4\xa0translocation\xc4\xa0translational" +"\xc4\xa0transcriptome\xc4\xa0traditionally\xc4\xa0thermoplastic\xc4\xa0thermodyn" +"amic\xc4\xa0theoretically\xc4\xa0technological\xc4\xa0supplementary\xc4\xa0super" +"position\xc4\xa0substitutions\xc4\xa0substantially\xc4\xa0strengthening\xc4\xa0s" +"tatistically\xc4\xa0stabilization\xc4\xa0spontaneously\xc4\xa0spectroscopic\xc4\xa0" +"sophisticated\xc4\xa0socioeconomic\xc4\xa0singularities\xc4\xa0significantly\xc4" +"\xa0semiconductor\xc4\xa0schizophrenia\xc4\xa0righteousness\xc4\xa0revolutionary" +"\xc4\xa0restructuring\xc4\xa0relationships\xc4\xa0reinforcement\xc4\xa0reimburse" +"ment\xc4\xa0reconstructed\xc4\xa0recombination\xc4\xa0rearrangement\xc4\xa0rando" +"mization\xc4\xa0qualitatively\xc4\xa0psychologists\xc4\xa0psychological\xc4\xa0p" +"rospectively\xc4\xa0proliferative\xc4\xa0proliferation\xc4\xa0progressively\xc4\xa0" +"professionals\xc4\xa0probabilities\xc4\xa0probabilistic\xc4\xa0presentations\xc4" +"\xa0prescriptions\xc4\xa0preponderance\xc4\xa0predominantly\xc4\xa0predetermined" +"\xc4\xa0precipitation\xc4\xa0practitioners\xc4\xa0possibilities\xc4\xa0polymorph" +"isms\xc4\xa0piezoelectric\xc4\xa0physiological\xc4\xa0photographers\xc4\xa0philo" +"sophical\xc4\xa0perturbations\xc4\xa0personalities\xc4\xa0perpendicular\xc4\xa0p" +"articipation\xc4\xa0participating\xc4\xa0parliamentary\xc4\xa0overexpressed\xc4\xa0" +"organizations\xc4\xa0organisations\xc4\xa0opportunities\xc4\xa0observational\xc4" +"\xa0notifications\xc4\xa0normalization\xc4\xa0neighbourhood\xc4\xa0neighborhoods" +"\xc4\xa0nanoparticles\xc4\xa0morphological\xc4\xa0modifications\xc4\xa0mitochond" +"rial\xc4\xa0misunderstood\xc4\xa0methodologies\xc4\xa0manufacturing\xc4\xa0manuf" +"acturers\xc4\xa0manipulations\xc4\xa0magnification\xc4\xa0magnetization\xc4\xa0k" +"nowledgeable\xc4\xa0justification\xc4\xa0jurisdictions\xc4\xa0investigators\xc4\xa0" +"investigative\xc4\xa0investigating\xc4\xa0intrinsically\xc4\xa0intracellular\xc4" +"\xa0interventions\xc4\xa0intersections\xc4\xa0interrogation\xc4\xa0interpolation" +"\xc4\xa0interpersonal\xc4\xa0intermediates\xc4\xa0intentionally\xc4\xa0intellect" +"uals\xc4\xa0insufficiency\xc4\xa0institutional\xc4\xa0instantaneous\xc4\xa0insta" +"llations\xc4\xa0insignificant\xc4\xa0inhomogeneous\xc4\xa0informational\xc4\xa0i" +"ndispensable\xc4\xa0independently\xc4\xa0incorporation\xc4\xa0incorporating\xc4\xa0" +"inconvenience\xc4\xa0inconsistency\xc4\xa0incarceration\xc4\xa0inappropriate\xc4" +"\xa0inadvertently\xc4\xa0immunotherapy\xc4\xa0immunological\xc4\xa0illustrations" +"\xc4\xa0hybridization\xc4\xa0homosexuality\xc4\xa0heterogeneous\xc4\xa0heterogen" +"eity\xc4\xa0hematopoietic\xc4\xa0gravitational\xc4\xa0grandchildren\xc4\xa0""fun" +"damentally\xc4\xa0""functionality\xc4\xa0""fragmentation\xc4\xa0""fertilization\xc4" +"\xa0""ferromagnetic\xc4\xa0""factorization\xc4\xa0""extraordinary\xc4\xa0""extra" +"cellular\xc4\xa0""exponentially\xc4\xa0""experimenting\xc4\xa0""exceptionally\xc4" +"\xa0""entrepreneurs\xc4\xa0""entertainment\xc4\xa0""enlightenment\xc4\xa0""encou" +"ragement\xc4\xa0""embarrassment\xc4\xa0""electrostatic\xc4\xa0""effectiveness\xc4" +"\xa0""downregulated\xc4\xa0""documentation\xc4\xa0""distributions\xc4\xa0""disti" +"nguishes\xc4\xa0""distinguished\xc4\xa0""dissemination\xc4\xa0""discriminated\xc4" +"\xa0""discretionary\xc4\xa0""discrepancies\xc4\xa0""disappointing\xc4\xa0""disap" +"pearance\xc4\xa0""disadvantages\xc4\xa0""dimensionless\xc4\xa0""dexamethasone\xc4" +"\xa0""developmental\xc4\xa0""deterministic\xc4\xa0""deterioration\xc4\xa0""demon" +"strating\xc4\xa0""dehydrogenase\xc4\xa0""decomposition\xc4\xa0""decentralized\xc4" +"\xa0""correspondent\xc4\xa0""conversations\xc4\xa0""controversial\xc4\xa0""contr" +"ibutions\xc4\xa0""contralateral\xc4\xa0""contradictory\xc4\xa0""contradiction\xc4" +"\xa0""contraception\xc4\xa0""contamination\xc4\xa0""consultations\xc4\xa0""const" +"ructions\xc4\xa0""consolidation\xc4\xa0""conservatives\xc4\xa0""consciousness\xc4" +"\xa0""congressional\xc4\xa0""confrontation\xc4\xa0""concentrating\xc4\xa0""compr" +"ehensive\xc4\xa0""comprehension\xc4\xa0""complimentary\xc4\xa0""complications\xc4" +"\xa0""complementary\xc4\xa0""compatibility\xc4\xa0""compassionate\xc4\xa0""compa" +"ratively\xc4\xa0""comorbidities\xc4\xa0""communicating\xc4\xa0""commissioners\xc4" +"\xa0""combinatorial\xc4\xa0""collaborators\xc4\xa0""collaborative\xc4\xa0""colla" +"boration\xc4\xa0""clarification\xc4\xa0""circumstances\xc4\xa0""circumference\xc4" +"\xa0""characterizes\xc4\xa0""characterized\xc4\xa0""characterised\xc4\xa0""champ" +"ionships\xc4\xa0""certification\xc4\xa0""carbohydrates\xc4\xa0""breastfeeding\xc4" +"\xa0""beneficiaries\xc4\xa0""automatically\xc4\xa0""authorization\xc4\xa0""autho" +"ritative\xc4\xa0""authoritarian\xc4\xa0""assassination\xc4\xa0""architectures\xc4" +"\xa0""architectural\xc4\xa0""approximately\xc4\xa0""appropriately\xc4\xa0""appli" +"cability\xc4\xa0""antimicrobial\xc4\xa0""antibacterial\xc4\xa0""announcements\xc4" +"\xa0""amplification\xc4\xa0""alternatively\xc4\xa0""admissibility\xc4\xa0""admin" +"istering\xc4\xa0""acknowledging\xc4\xa0""accommodating\xc4\xa0""accessibility\xc4" +"\xa0""abnormalities\xc4\xa0Unfortunately\xc4\xa0Understanding\xc4\xa0Supplementa" +"ry\xc4\xa0StringBuilder\xc4\xa0Revolutionary\xc4\xa0Questionnaire\xc4\xa0Psychol" +"ogical\xc4\xa0Mediterranean\xc4\xa0Massachusetts\xc4\xa0Manufacturing\xc4\xa0Inv" +"estigation\xc4\xa0International\xc4\xa0Interestingly\xc4\xa0Institutional\xc4\xa0" +"""Environmental\xc4\xa0""Entertainment\xc4\xa0""Differentiate\xc4\xa0""Determina" +"tion\xc4\xa0""Contributions\xc4\xa0""Conservatives\xc4\xa0""Congressional\xc4\xa0" +"""Configuration\xc4\xa0""Comprehensive\xc4\xa0""Collaboration\xc4\xa0""Champions" +"hips\xc4\xa0""CONSEQUENTIAL\xc4\xa0""Biotechnology\xc4\xa0""Approximately\xc4\xa0" +"""Alternatively\xc4\xa0""Administratoroverrightarrowlongrightarrowleftrightarrow" +"hookrightarrowgetElementByIddisambiguationViewControllerAuthenticationAndroidRun" +"timeActivityThread\xc4\xa0verification\xc4\xa0upregulation\xc4\xa0unsuccessful\xc4" +"\xa0unrestricted\xc4\xa0unreasonable\xc4\xa0universities\xc4\xa0unidentified\xc4" +"\xa0unexpectedly\xc4\xa0unemployment\xc4\xa0undocumented\xc4\xa0uncontrolled\xc4" +"\xa0unbelievable\xc4\xa0unauthorized\xc4\xa0unacceptable\xc4\xa0tuberculosis\xc4" +"\xa0transporting\xc4\xa0transporters\xc4\xa0transplanted\xc4\xa0transparency\xc4" +"\xa0transmitting\xc4\xa0translations\xc4\xa0transitional\xc4\xa0transforming\xc4" +"\xa0transferring\xc4\xa0transfection\xc4\xa0transduction\xc4\xa0transactions\xc4" +"\xa0trajectories\xc4\xa0therapeutics\xc4\xa0testosterone\xc4\xa0temperatures\xc4" +"\xa0technologies\xc4\xa0synchronized\xc4\xa0surveillance\xc4\xa0surroundings\xc4" +"\xa0surprisingly\xc4\xa0supplemented\xc4\xa0supplemental\xc4\xa0supernatural\xc4" +"\xa0supernatants\xc4\xa0superimposed\xc4\xa0sufficiently\xc4\xa0successively\xc4" +"\xa0successfully\xc4\xa0substituting\xc4\xa0subsequently\xc4\xa0subscription\xc4" +"\xa0subcutaneous\xc4\xa0structurally\xc4\xa0strengthened\xc4\xa0straightened\xc4" +"\xa0storytelling\xc4\xa0standardized\xc4\xa0stakeholders\xc4\xa0spokesperson\xc4" +"\xa0spirituality\xc4\xa0spectroscopy\xc4\xa0spectrometry\xc4\xa0spectrometer\xc4" +"\xa0specifically\xc4\xa0similarities\xc4\xa0significance\xc4\xa0shortcomings\xc4" +"\xa0shareholders\xc4\xa0sequentially\xc4\xa0segmentation\xc4\xa0satisfactory\xc4" +"\xa0satisfaction\xc4\xa0resurrection\xc4\xa0restrictions\xc4\xa0respectively\xc4" +"\xa0respectfully\xc4\xa0reservations\xc4\xa0requirements\xc4\xa0reproductive\xc4" +"\xa0reproduction\xc4\xa0reproducible\xc4\xa0representing\xc4\xa0repositories\xc4" +"\xa0replacements\xc4\xa0relativistic\xc4\xa0registration\xc4\xa0regenerative\xc4" +"\xa0regeneration\xc4\xa0refrigerator\xc4\xa0redistribute\xc4\xa0recreational\xc4" +"\xa0recommending\xc4\xa0recollection\xc4\xa0recognizable\xc4\xa0radiotherapy\xc4" +"\xa0radiological\xc4\xa0radiographic\xc4\xa0questionable\xc4\xa0quantization\xc4" +"\xa0purification\xc4\xa0publications\xc4\xa0psychosocial\xc4\xa0psychiatrist\xc4" +"\xa0prostitution\xc4\xa0propositions\xc4\xa0proportional\xc4\xa0prophylactic\xc4" +"\xa0programmable\xc4\xa0progesterone\xc4\xa0productivity\xc4\xa0pretreatment\xc4" +"\xa0presidential\xc4\xa0preservation\xc4\xa0prerequisite\xc4\xa0preparations\xc4" +"\xa0preoperative\xc4\xa0predecessors\xc4\xa0precipitated\xc4\xa0polyethylene\xc4" +"\xa0polarization\xc4\xa0phylogenetic\xc4\xa0photographic\xc4\xa0photographed\xc4" +"\xa0phosphatidyl\xc4\xa0philosophers\xc4\xa0perturbative\xc4\xa0perspectives\xc4" +"\xa0personalized\xc4\xa0permutations\xc4\xa0permeability\xc4\xa0periodically\xc4" +"\xa0performances\xc4\xa0percutaneous\xc4\xa0pathological\xc4\xa0pathogenesis\xc4" +"\xa0partnerships\xc4\xa0partitioning\xc4\xa0particularly\xc4\xa0participates\xc4" +"\xa0participated\xc4\xa0participants\xc4\xa0osteoporosis\xc4\xa0oscillations\xc4" +"\xa0orientations\xc4\xa0optimization\xc4\xa0occupational\xc4\xa0occasionally\xc4" +"\xa0observations\xc4\xa0nevertheless\xc4\xa0neutralizing\xc4\xa0neurological\xc4" +"\xa0neighbouring\xc4\xa0negotiations\xc4\xa0municipality\xc4\xa0multivariate\xc4" +"\xa0multiplicity\xc4\xa0motivational\xc4\xa0mobilization\xc4\xa0missionaries\xc4" +"\xa0minimization\xc4\xa0milliseconds\xc4\xa0metropolitan\xc4\xa0metaphysical\xc4" +"\xa0mechanically\xc4\xa0measurements\xc4\xa0mathematical\xc4\xa0manufactured\xc4" +"\xa0manslaughter\xc4\xa0manipulating\xc4\xa0malnutrition\xc4\xa0malignancies\xc4" +"\xa0longitudinal\xc4\xa0localization\xc4\xa0laparoscopic\xc4\xa0laboratories\xc4" +"\xa0irreversible\xc4\xa0irrespective\xc4\xa0investigated\xc4\xa0introductory\xc4" +"\xa0introduction\xc4\xa0intracranial\xc4\xa0intoxication\xc4\xa0interviewing\xc4" +"\xa0interstitial\xc4\xa0interstellar\xc4\xa0interruption\xc4\xa0interpreting\xc4" +"\xa0intermittent\xc4\xa0interference\xc4\xa0interactions\xc4\xa0intelligence\xc4" +"\xa0insufficient\xc4\xa0instrumental\xc4\xa0instructions\xc4\xa0institutions\xc4" +"\xa0infringement\xc4\xa0inflammatory\xc4\xa0inflammation\xc4\xa0infiltration\xc4" +"\xa0inequalities\xc4\xa0individually\xc4\xa0indifference\xc4\xa0independence\xc4" +"\xa0indefinitely\xc4\xa0increasingly\xc4\xa0incorporates\xc4\xa0incorporated\xc4" +"\xa0inconvenient\xc4\xa0inconsistent\xc4\xa0incompatible\xc4\xa0incarcerated\xc4" +"\xa0inadmissible\xc4\xa0inactivation\xc4\xa0inaccessible\xc4\xa0improvements\xc4" +"\xa0imprisonment\xc4\xa0implications\xc4\xa0implementing\xc4\xa0implantation\xc4" +"\xa0immunoprecip\xc4\xa0immunization\xc4\xa0illustrative\xc4\xa0illustrating\xc4" +"\xa0illumination\xc4\xa0illuminating\xc4\xa0identifiable\xc4\xa0hypothetical\xc4" +"\xa0hypothesized\xc4\xa0hypothalamus\xc4\xa0hypertensive\xc4\xa0hypertension\xc4" +"\xa0hydrodynamic\xc4\xa0hydrocarbons\xc4\xa0humanitarian\xc4\xa0hospitalized\xc4" +"\xa0horizontally\xc4\xa0homomorphism\xc4\xa0historically\xc4\xa0histological\xc4" +"\xa0highlighting\xc4\xa0hierarchical\xc4\xa0heterozygous\xc4\xa0heterosexual\xc4" +"\xa0headquarters\xc4\xa0grandparents\xc4\xa0governmental\xc4\xa0glycoprotein\xc4" +"\xa0geographical\xc4\xa0""functionally\xc4\xa0""formulations\xc4\xa0""formaldehy" +"de\xc4\xa0""fluorescence\xc4\xa0""fluctuations\xc4\xa0""firefighters\xc4\xa0""fi" +"ngerprints\xc4\xa0""findViewById\xc4\xa0""fibrillation\xc4\xa0""fermentation\xc4" +"\xa0""facilitating\xc4\xa0""exploitation\xc4\xa0""explanations\xc4\xa0""experien" +"cing\xc4\xa0""expenditures\xc4\xa0""expectations\xc4\xa0""examinations\xc4\xa0""e" +"volutionary\xc4\xa0""establishing\xc4\xa0""erythrocytes\xc4\xa0""equivalently\xc4" +"\xa0""epidemiology\xc4\xa0""environments\xc4\xa0""enthusiastic\xc4\xa0""entertai" +"ning\xc4\xa0""entanglement\xc4\xa0""enhancements\xc4\xa0""encompassing\xc4\xa0""e" +"ncapsulated\xc4\xa0""embarrassing\xc4\xa0""electrically\xc4\xa0""eigenvectors\xc4" +"\xa0""efficiencies\xc4\xa0""economically\xc4\xa0""dramatically\xc4\xa0""dopamine" +"rgic\xc4\xa0""disturbances\xc4\xa0""distributors\xc4\xa0""distributing\xc4\xa0""d" +"istinctions\xc4\xa0""dissociation\xc4\xa0""dissertation\xc4\xa0""disseminated\xc4" +"\xa0""dispositions\xc4\xa0""displacement\xc4\xa0""discontinued\xc4\xa0""disconne" +"cted\xc4\xa0""disciplinary\xc4\xa0""disappointed\xc4\xa0""disappearing\xc4\xa0""d" +"isagreement\xc4\xa0""disabilities\xc4\xa0""difficulties\xc4\xa0""developments\xc4" +"\xa0""determinants\xc4\xa0""deteriorated\xc4\xa0""destinations\xc4\xa0""descript" +"ions\xc4\xa0""dependencies\xc4\xa0""demonstrates\xc4\xa0""demonstrated\xc4\xa0""d" +"emographics\xc4\xa0""deliberately\xc4\xa0""degenerative\xc4\xa0""degeneration\xc4" +"\xa0""deformations\xc4\xa0""deficiencies\xc4\xa0""declarations\xc4\xa0""cytotoxi" +"city\xc4\xa0""cytoskeleton\xc4\xa0""counterparts\xc4\xa0""counterclaim\xc4\xa0""c" +"osmological\xc4\xa0""corroborated\xc4\xa0""corresponded\xc4\xa0""correlations\xc4" +"\xa0""corporations\xc4\xa0""coordination\xc4\xa0""coordinating\xc4\xa0""convenie" +"ntly\xc4\xa0""contributors\xc4\xa0""contributing\xc4\xa0""contractions\xc4\xa0""c" +"ontinuously\xc4\xa0""continuation\xc4\xa0""contemporary\xc4\xa0""contemplated\xc4" +"\xa0""contaminated\xc4\xa0""contaminants\xc4\xa0""constructive\xc4\xa0""construc" +"ting\xc4\xa0""constitutive\xc4\xa0""constituting\xc4\xa0""constituents\xc4\xa0""c" +"onstituency\xc4\xa0""consolidated\xc4\xa0""consistently\xc4\xa0""considerably\xc4" +"\xa0""considerable\xc4\xa0""conservation\xc4\xa0""consequently\xc4\xa0""conseque" +"nces\xc4\xa0""connectivity\xc4\xa0""congregation\xc4\xa0""confirmation\xc4\xa0""c" +"onductivity\xc4\xa0""conditioning\xc4\xa0""condensation\xc4\xa0""condemnation\xc4" +"\xa0""concurrently\xc4\xa0""concentrated\xc4\xa0""computerized\xc4\xa0""computat" +"ions\xc4\xa0""compromising\xc4\xa0""compositions\xc4\xa0""complexities\xc4\xa0""c" +"ompleteness\xc4\xa0""complemented\xc4\xa0""competitions\xc4\xa0""compensatory\xc4" +"\xa0""compensation\xc4\xa0""compartments\xc4\xa0""communicated\xc4\xa0""commissi" +"oned\xc4\xa0""commercially\xc4\xa0""commentators\xc4\xa0""commencement\xc4\xa0""c" +"ombinations\xc4\xa0""colonization\xc4\xa0""collectively\xc4\xa0""collaborated\xc4" +"\xa0""coefficients\xc4\xa0""civilization\xc4\xa0""chemotherapy\xc4\xa0""certific" +"ates\xc4\xa0""celebrations\xc4\xa0""catastrophic\xc4\xa0""capabilities\xc4\xa0""c" +"ancellation\xc4\xa0""calculations\xc4\xa0""broadcasting\xc4\xa0""breakthrough\xc4" +"\xa0""biosynthesis\xc4\xa0""biologically\xc4\xa0""biodiversity\xc4\xa0""availabi" +"lity\xc4\xa0""automorphism\xc4\xa0""authenticity\xc4\xa0""augmentation\xc4\xa0""a" +"ttributable\xc4\xa0""asynchronous\xc4\xa0""asymptomatic\xc4\xa0""associations\xc4" +"\xa0""assertEquals\xc4\xa0""artificially\xc4\xa0""arrangements\xc4\xa0""approxim" +"ated\xc4\xa0""apprehension\xc4\xa0""appreciation\xc4\xa0""appointments\xc4\xa0""a" +"pplications\xc4\xa0""antioxidants\xc4\xa0""anticipation\xc4\xa0""annihilation\xc4" +"\xa0""angiogenesis\xc4\xa0""anesthetized\xc4\xa0""analytically\xc4\xa0""alternat" +"ives\xc4\xa0""agricultural\xc4\xa0""aggressively\xc4\xa0""affiliations\xc4\xa0""a" +"dvantageous\xc4\xa0""administered\xc4\xa0""adjudication\xc4\xa0""additionally\xc4" +"\xa0""acquisitions\xc4\xa0""acquaintance\xc4\xa0""acknowledges\xc4\xa0""acknowle" +"dged\xc4\xa0""achievements\xc4\xa0""accumulation\xc4\xa0""accumulating\xc4\xa0""a" +"ccomplished\xc4\xa0""accompanying\xc4\xa0""accidentally\xc4\xa0""acceleration\xc4" +"\xa0""accelerating\xc4\xa0Transmission\xc4\xa0Thanksgiving\xc4\xa0Technologies\xc4" +"\xa0Surprisingly\xc4\xa0Supplemental\xc4\xa0Subsequently\xc4\xa0Specifically\xc4" +"\xa0Schr\xc3\x83\xc2\xb6""dinger\xc4\xa0Saskatchewan\xc4\xa0Relationship\xc4\xa0" +"Registration\xc4\xa0Quantitative\xc4\xa0Publications\xc4\xa0Professional\xc4\xa0" +"Presidential\xc4\xa0Philadelphia\xc4\xa0Pennsylvania\xc4\xa0Particularly\xc4\xa0" +"Participants\xc4\xa0Palestinians\xc4\xa0Organization\xc4\xa0Organisation\xc4\xa0" +"Notification\xc4\xa0Northwestern\xc4\xa0Nevertheless\xc4\xa0Metropolitan\xc4\xa0" +"Measurements\xc4\xa0Mathematical\xc4\xa0Laboratories\xc4\xa0Jacksonville\xc4\xa0" +"Introduction\xc4\xa0Intelligence\xc4\xa0Indianapolis\xc4\xa0Independence\xc4\xa0" +"INTRODUCTION\xc4\xa0""Experimental\xc4\xa0""Encyclopedia\xc4\xa0""Distribution\xc4" +"\xa0""Differential\xc4\xa0""Conventional\xc4\xa0""Contemporary\xc4\xa0""Construc" +"tion\xc4\xa0""Conservation\xc4\xa0""Consequently\xc4\xa0""Compensation\xc4\xa0""C" +"ommonwealth\xc4\xa0""Commissioner\xc4\xa0""Christianity\xc4\xa0""CONTRIBUTORS\xc4" +"\xa0""Broadcasting\xc4\xa0""Architecture\xc4\xa0""Applications\xc4\xa0""Agricult" +"ural\xc4\xa0""Additionallyoddsidemarginnanomaterialsmicromachinesdocumentclasscr" +"eateElementPropertyGroupInstanceStateAdvertisementAbbreviationsADVERTISEMENT\xc4" +"\xa0wonderfully\xc4\xa0withholding\xc4\xa0withdrawing\xc4\xa0willingness\xc4\xa0" +"whereabouts\xc4\xa0wavelengths\xc4\xa0volunteered\xc4\xa0voluntarily\xc4\xa0vibr" +"ational\xc4\xa0versatility\xc4\xa0ventricular\xc4\xa0ventilation\xc4\xa0variatio" +"nal\xc4\xa0variability\xc4\xa0vaccination\xc4\xa0utilization\xc4\xa0upregulated\xc4" +"\xa0unsupported\xc4\xa0unspecified\xc4\xa0unsaturated\xc4\xa0unrealistic\xc4\xa0" +"unpublished\xc4\xa0unnecessary\xc4\xa0universally\xc4\xa0unfavorable\xc4\xa0unex" +"plained\xc4\xa0undoubtedly\xc4\xa0undesirable\xc4\xa0undertaking\xc4\xa0understa" +"nds\xc4\xa0underground\xc4\xa0unconscious\xc4\xa0uncertainty\xc4\xa0unavoidable\xc4" +"\xa0unavailable\xc4\xa0unanimously\xc4\xa0unambiguous\xc4\xa0ultraviolet\xc4\xa0" +"trustworthy\xc4\xa0troublesome\xc4\xa0transported\xc4\xa0transparent\xc4\xa0tran" +"smitter\xc4\xa0transmitted\xc4\xa0translating\xc4\xa0transitions\xc4\xa0transist" +"ors\xc4\xa0transgender\xc4\xa0transfusion\xc4\xa0transformer\xc4\xa0transformed\xc4" +"\xa0transferred\xc4\xa0transfected\xc4\xa0transcripts\xc4\xa0transcribed\xc4\xa0" +"trafficking\xc4\xa0tournaments\xc4\xa0topological\xc4\xa0threatening\xc4\xa0theo" +"logical\xc4\xa0territories\xc4\xa0territorial\xc4\xa0terrestrial\xc4\xa0terminol" +"ogy\xc4\xa0termination\xc4\xa0terminating\xc4\xa0temporarily\xc4\xa0temperament\xc4" +"\xa0technicians\xc4\xa0technically\xc4\xa0tablespoons\xc4\xa0synthesized\xc4\xa0" +"synergistic\xc4\xa0synchronous\xc4\xa0symptomatic\xc4\xa0sympathetic\xc4\xa0symm" +"etrical\xc4\xa0sustainable\xc4\xa0suspensions\xc4\xa0susceptible\xc4\xa0surrende" +"red\xc4\xa0suppression\xc4\xa0suppressing\xc4\xa0supplements\xc4\xa0supervisors\xc4" +"\xa0supervision\xc4\xa0supermarket\xc4\xa0superiority\xc4\xa0superficial\xc4\xa0" +"suitability\xc4\xa0suggestions\xc4\xa0sufficiency\xc4\xa0subtraction\xc4\xa0subt" +"racting\xc4\xa0substituted\xc4\xa0substantive\xc4\xa0subscribers\xc4\xa0subordin" +"ate\xc4\xa0submissions\xc4\xa0subdivision\xc4\xa0subcontract\xc4\xa0subcellular\xc4" +"\xa0stipulation\xc4\xa0stimulation\xc4\xa0stimulating\xc4\xa0stereotypes\xc4\xa0" +"stabilizing\xc4\xa0spreadsheet\xc4\xa0sponsorship\xc4\xa0spokeswoman\xc4\xa0spec" +"ulative\xc4\xa0speculation\xc4\xa0spectrophot\xc4\xa0spectacular\xc4\xa0specific" +"ity\xc4\xa0specializes\xc4\xa0specialized\xc4\xa0specialists\xc4\xa0sovereignty\xc4" +"\xa0smartphones\xc4\xa0singularity\xc4\xa0simulations\xc4\xa0seventeenth\xc4\xa0" +"settlements\xc4\xa0seriousness\xc4\xa0sensitivity\xc4\xa0selectivity\xc4\xa0sele" +"ctively\xc4\xa0segregation\xc4\xa0scholarship\xc4\xa0revelations\xc4\xa0retardat" +"ion\xc4\xa0retaliation\xc4\xa0resuspended\xc4\xa0restrictive\xc4\xa0restricting\xc4" +"\xa0restraining\xc4\xa0restoration\xc4\xa0restitution\xc4\xa0restaurants\xc4\xa0" +"responsible\xc4\xa0respondents\xc4\xa0respiratory\xc4\xa0respiration\xc4\xa0resp" +"ectable\xc4\xa0resolutions\xc4\xa0resistivity\xc4\xa0resignation\xc4\xa0resident" +"ial\xc4\xa0resemblance\xc4\xa0researching\xc4\xa0researchers\xc4\xa0reproducing\xc4" +"\xa0represented\xc4\xa0replication\xc4\xa0repetitions\xc4\xa0reperfusion\xc4\xa0" +"reminiscent\xc4\xa0remembering\xc4\xa0reluctantly\xc4\xa0reliability\xc4\xa0rein" +"forcing\xc4\xa0regulations\xc4\xa0registering\xc4\xa0reflections\xc4\xa0referenc" +"ing\xc4\xa0rectangular\xc4\xa0recruitment\xc4\xa0recommended\xc4\xa0recombinant\xc4" +"\xa0recognizing\xc4\xa0recognition\xc4\xa0realization\xc4\xa0radioactive\xc4\xa0" +"questioning\xc4\xa0quarterback\xc4\xa0psychiatric\xc4\xa0provocative\xc4\xa0prov" +"isional\xc4\xa0protections\xc4\xa0protagonist\xc4\xa0prostagland\xc4\xa0prosecut" +"ors\xc4\xa0prosecution\xc4\xa0proprietary\xc4\xa0proportions\xc4\xa0prophylaxis\xc4" +"\xa0propagation\xc4\xa0propagating\xc4\xa0promotional\xc4\xa0prominently\xc4\xa0" +"projections\xc4\xa0prohibition\xc4\xa0prohibiting\xc4\xa0progression\xc4\xa0prog" +"ressing\xc4\xa0programming\xc4\xa0programmers\xc4\xa0progenitors\xc4\xa0professi" +"ons\xc4\xa0productions\xc4\xa0procurement\xc4\xa0proceedings\xc4\xa0problematic\xc4" +"\xa0probability\xc4\xa0principally\xc4\xa0presumption\xc4\xa0prestigious\xc4\xa0" +"prescribing\xc4\xa0preliminary\xc4\xa0prejudicial\xc4\xa0pregnancies\xc4\xa0pref" +"erences\xc4\xa0predictions\xc4\xa0predictable\xc4\xa0preclinical\xc4\xa0precauti" +"ons\xc4\xa0practically\xc4\xa0potentially\xc4\xa0possibility\xc4\xa0possessions\xc4" +"\xa0positioning\xc4\xa0pornography\xc4\xa0populations\xc4\xa0polypeptide\xc4\xa0" +"polynomials\xc4\xa0polymorphic\xc4\xa0politicians\xc4\xa0politically\xc4\xa0plac" +"eholder\xc4\xa0photoresist\xc4\xa0photometric\xc4\xa0photography\xc4\xa0photogra" +"phs\xc4\xa0phosphatase\xc4\xa0petitioners\xc4\xa0personality\xc4\xa0persistence\xc4" +"\xa0persecution\xc4\xa0permissions\xc4\xa0permissible\xc4\xa0permanently\xc4\xa0" +"periodontal\xc4\xa0perceptions\xc4\xa0percentages\xc4\xa0penetration\xc4\xa0pene" +"trating\xc4\xa0pedestrians\xc4\xa0pathologies\xc4\xa0particulate\xc4\xa0parenthe" +"ses\xc4\xa0overwhelmed\xc4\xa0overlooking\xc4\xa0overlapping\xc4\xa0outstanding\xc4" +"\xa0oscillating\xc4\xa0originating\xc4\xa0opportunity\xc4\xa0operational\xc4\xa0" +"occurrences\xc4\xa0occupations\xc4\xa0obstructive\xc4\xa0obstruction\xc4\xa0obse" +"rvables\xc4\xa0obligations\xc4\xa0objectively\xc4\xa0nutritional\xc4\xa0numerica" +"lly\xc4\xa0nucleotides\xc4\xa0nonnegative\xc4\xa0nonetheless\xc4\xa0nominations\xc4" +"\xa0newsletters\xc4\xa0neutrophils\xc4\xa0neighboring\xc4\xa0negotiating\xc4\xa0" +"necessarily\xc4\xa0nationality\xc4\xa0nationalist\xc4\xa0nationalism\xc4\xa0muta" +"genesis\xc4\xa0multiplying\xc4\xa0multiplayer\xc4\xa0motivations\xc4\xa0mononucl" +"ear\xc4\xa0misdemeanor\xc4\xa0mindfulness\xc4\xa0millilitres\xc4\xa0microtubule\xc4" +"\xa0microscopic\xc4\xa0methylation\xc4\xa0methodology\xc4\xa0metallicity\xc4\xa0" +"metabolites\xc4\xa0mesenchymal\xc4\xa0merchandise\xc4\xa0medications\xc4\xa0mech" +"anistic\xc4\xa0meaningless\xc4\xa0mathematics\xc4\xa0masterpiece\xc4\xa0marketpl" +"ace\xc4\xa0manuscripts\xc4\xa0manipulated\xc4\xa0malpractice\xc4\xa0malfunction\xc4" +"\xa0maintenance\xc4\xa0maintaining\xc4\xa0magnificent\xc4\xa0macroscopic\xc4\xa0" +"macrophages\xc4\xa0lymphocytes\xc4\xa0logarithmic\xc4\xa0lipoprotein\xc4\xa0limi" +"tations\xc4\xa0lightweight\xc4\xa0libertarian\xc4\xa0liabilities\xc4\xa0legislat" +"ure\xc4\xa0legislators\xc4\xa0legislative\xc4\xa0legislation\xc4\xa0journalists\xc4" +"\xa0isomorphism\xc4\xa0irreducible\xc4\xa0irradiation\xc4\xa0involvement\xc4\xa0" +"involuntary\xc4\xa0investments\xc4\xa0introducing\xc4\xa0intravenous\xc4\xa0into" +"xicated\xc4\xa0intolerance\xc4\xa0interviewed\xc4\xa0intervening\xc4\xa0interrup" +"ted\xc4\xa0interpreter\xc4\xa0interpreted\xc4\xa0interleukin\xc4\xa0interfering\xc4" +"\xa0interesting\xc4\xa0intercourse\xc4\xa0interchange\xc4\xa0intercepted\xc4\xa0" +"interactive\xc4\xa0interacting\xc4\xa0intensities\xc4\xa0intensified\xc4\xa0inte" +"lligent\xc4\xa0integration\xc4\xa0integrating\xc4\xa0instruments\xc4\xa0instruct" +"ors\xc4\xa0instructive\xc4\xa0installment\xc4\xa0instability\xc4\xa0inspiration\xc4" +"\xa0inspections\xc4\xa0insensitive\xc4\xa0inscription\xc4\xa0inoculation\xc4\xa0" +"innovations\xc4\xa0initiatives\xc4\xa0initialized\xc4\xa0inheritance\xc4\xa0inha" +"bitants\xc4\xa0ingredients\xc4\xa0informative\xc4\xa0influential\xc4\xa0influenc" +"ing\xc4\xa0infertility\xc4\xa0inexpensive\xc4\xa0inefficient\xc4\xa0ineffective\xc4" +"\xa0individuals\xc4\xa0indifferent\xc4\xa0indications\xc4\xa0incremental\xc4\xa0" +"incorrectly\xc4\xa0incompetent\xc4\xa0inclination\xc4\xa0inactivated\xc4\xa0impr" +"essions\xc4\xa0impractical\xc4\xa0importantly\xc4\xa0implemented\xc4\xa0impeachm" +"ent\xc4\xa0impairments\xc4\xa0immobilized\xc4\xa0immigration\xc4\xa0immediately\xc4" +"\xa0imagination\xc4\xa0illustrates\xc4\xa0illustrated\xc4\xa0illuminated\xc4\xa0" +"ideological\xc4\xa0identifying\xc4\xa0identifiers\xc4\xa0identically\xc4\xa0hype" +"rtrophy\xc4\xa0hyperplasia\xc4\xa0hydrophobic\xc4\xa0hydrophilic\xc4\xa0humiliat" +"ion\xc4\xa0hospitality\xc4\xa0homogeneous\xc4\xa0homogeneity\xc4\xa0homeostasis\xc4" +"\xa0holomorphic\xc4\xa0holographic\xc4\xa0hippocampus\xc4\xa0hippocampal\xc4\xa0" +"highlighted\xc4\xa0hereinafter\xc4\xa0hepatocytes\xc4\xa0hemodynamic\xc4\xa0heli" +"copters\xc4\xa0handwriting\xc4\xa0groundwater\xc4\xa0grandmother\xc4\xa0grandfat" +"her\xc4\xa0governments\xc4\xa0glutathione\xc4\xa0glucocortic\xc4\xa0gestational\xc4" +"\xa0germination\xc4\xa0geometrical\xc4\xa0genetically\xc4\xa0generations\xc4\xa0" +"generalized\xc4\xa0""furthermore\xc4\xa0""fundraising\xc4\xa0""functioning\xc4\xa0" +"""fulfillment\xc4\xa0""frustration\xc4\xa0""frustrating\xc4\xa0""frightening\xc4" +"\xa0""friendships\xc4\xa0""frequencies\xc4\xa0""foundations\xc4\xa0""forthcoming" +"\xc4\xa0""forgiveness\xc4\xa0""foreseeable\xc4\xa0""foreclosure\xc4\xa0""footbal" +"lers\xc4\xa0""fluorescent\xc4\xa0""flexibility\xc4\xa0""financially\xc4\xa0""fib" +"roblasts\xc4\xa0""feasibility\xc4\xa0""fashionable\xc4\xa0""fascination\xc4\xa0""f" +"ascinating\xc4\xa0""familiarity\xc4\xa0""facilitates\xc4\xa0""facilitated\xc4\xa0" +"""fabrication\xc4\xa0""extremities\xc4\xa0""extensively\xc4\xa0""expressions\xc4" +"\xa0""exploratory\xc4\xa0""exploration\xc4\xa0""explanatory\xc4\xa0""experiments" +"\xc4\xa0""experiences\xc4\xa0""experienced\xc4\xa0""existential\xc4\xa0""exhibit" +"ions\xc4\xa0""exemplified\xc4\xa0""exclusively\xc4\xa0""excitations\xc4\xa0""exc" +"essively\xc4\xa0""exceedingly\xc4\xa0""exaggerated\xc4\xa0""exacerbated\xc4\xa0""e" +"videntiary\xc4\xa0""evaporation\xc4\xa0""evangelical\xc4\xa0""evaluations\xc4\xa0" +"""europ\xc3\x83\xc2\xa9""enne\xc4\xa0""establishes\xc4\xa0""established\xc4\xa0""e" +"ssentially\xc4\xa0""erroneously\xc4\xa0""equivalents\xc4\xa0""equivalence\xc4\xa0" +"""equilibrium\xc4\xa0""enumeration\xc4\xa0""entitlement\xc4\xa0""enthusiasts\xc4" +"\xa0""entertained\xc4\xa0""enterprises\xc4\xa0""enlightened\xc4\xa0""enlargement" +"\xc4\xa0""engineering\xc4\xa0""enforcement\xc4\xa0""enforceable\xc4\xa0""endothe" +"lium\xc4\xa0""endothelial\xc4\xa0""endorsement\xc4\xa0""endometrial\xc4\xa0""enc" +"ouraging\xc4\xa0""encountered\xc4\xa0""encompasses\xc4\xa0""empowerment\xc4\xa0""e" +"mpirically\xc4\xa0""emphasizing\xc4\xa0""emotionally\xc4\xa0""emergencies\xc4\xa0" +"""embodiments\xc4\xa0""embarrassed\xc4\xa0""elimination\xc4\xa0""eliminating\xc4" +"\xa0""eligibility\xc4\xa0""electrophys\xc4\xa0""electronics\xc4\xa0""electrolyte" +"\xc4\xa0""electricity\xc4\xa0""eigenvalues\xc4\xa0""eigenstates\xc4\xa0""efficie" +"ntly\xc4\xa0""effectively\xc4\xa0""educational\xc4\xa0""earthquakes\xc4\xa0""dys" +"function\xc4\xa0""dynamically\xc4\xa0""duplication\xc4\xa0""drastically\xc4\xa0""d" +"oxorubicin\xc4\xa0""downloading\xc4\xa0""documenting\xc4\xa0""documentary\xc4\xa0" +"""distributed\xc4\xa0""distraction\xc4\xa0""distortions\xc4\xa0""distinctive\xc4" +"\xa0""dissolution\xc4\xa0""dissipation\xc4\xa0""disparities\xc4\xa0""dislocation" +"\xc4\xa0""discussions\xc4\xa0""discrepancy\xc4\xa0""discovering\xc4\xa0""discove" +"ries\xc4\xa0""discouraged\xc4\xa0""disclosures\xc4\xa0""disciplines\xc4\xa0""dis" +"ciplined\xc4\xa0""discharging\xc4\xa0""disappeared\xc4\xa0""directories\xc4\xa0""d" +"irectional\xc4\xa0""diminishing\xc4\xa0""dimensional\xc4\xa0""diffraction\xc4\xa0" +"""differently\xc4\xa0""differences\xc4\xa0""diagnostics\xc4\xa0""devastating\xc4" +"\xa0""detrimental\xc4\xa0""determining\xc4\xa0""destructive\xc4\xa0""destruction" +"\xc4\xa0""desperation\xc4\xa0""desperately\xc4\xa0""designation\xc4\xa0""descrip" +"tors\xc4\xa0""descriptive\xc4\xa0""descendants\xc4\xa0""derivatives\xc4\xa0""dep" +"rivation\xc4\xa0""deportation\xc4\xa0""departments\xc4\xa0""denominator\xc4\xa0""d" +"eleterious\xc4\xa0""dehydration\xc4\xa0""degradation\xc4\xa0""definitions\xc4\xa0" +"""decorations\xc4\xa0""declaratory\xc4\xa0""cytoplasmic\xc4\xa0""cylindrical\xc4" +"\xa0""cultivation\xc4\xa0""crystalline\xc4\xa0""credibility\xc4\xa0""credentials" +"\xc4\xa0""countryside\xc4\xa0""corresponds\xc4\xa0""correctness\xc4\xa0""correct" +"ions\xc4\xa0""coronavirus\xc4\xa0""copyrighted\xc4\xa0""coordinator\xc4\xa0""coo" +"rdinates\xc4\xa0""coordinated\xc4\xa0""cooperative\xc4\xa0""cooperation\xc4\xa0""c" +"onvolution\xc4\xa0""convictions\xc4\xa0""conversions\xc4\xa0""convergence\xc4\xa0" +"""conventions\xc4\xa0""convenience\xc4\xa0""controversy\xc4\xa0""controlling\xc4" +"\xa0""controllers\xc4\xa0""contributes\xc4\xa0""contributed\xc4\xa0""contrasting" +"\xc4\xa0""contradicts\xc4\xa0""contractual\xc4\xa0""contractors\xc4\xa0""contrac" +"ting\xc4\xa0""continuance\xc4\xa0""continually\xc4\xa0""contingency\xc4\xa0""con" +"tinental\xc4\xa0""contentions\xc4\xa0""containment\xc4\xa0""consumption\xc4\xa0""c" +"onsultants\xc4\xa0""constructor\xc4\xa0""constructed\xc4\xa0""constraints\xc4\xa0" +"""constrained\xc4\xa0""constitutes\xc4\xa0""constituted\xc4\xa0""conspicuous\xc4" +"\xa0""consistency\xc4\xa0""considering\xc4\xa0""consecutive\xc4\xa0""consciously" +"\xc4\xa0""connections\xc4\xa0""conjunction\xc4\xa0""conjugation\xc4\xa0""confron" +"ting\xc4\xa0""confounding\xc4\xa0""conflicting\xc4\xa0""confinement\xc4\xa0""con" +"ferences\xc4\xa0""conductance\xc4\xa0""conditioned\xc4\xa0""conditional\xc4\xa0""c" +"oncomitant\xc4\xa0""conclusions\xc4\xa0""concessions\xc4\xa0""conceivable\xc4\xa0" +"""compromised\xc4\xa0""compression\xc4\xa0""complicated\xc4\xa0""complaining\xc4" +"\xa0""complainant\xc4\xa0""compilation\xc4\xa0""competitors\xc4\xa0""competitive" +"\xc4\xa0""compensated\xc4\xa0""comparisons\xc4\xa0""commutative\xc4\xa0""communi" +"ties\xc4\xa0""commonplace\xc4\xa0""commodities\xc4\xa0""commitments\xc4\xa0""com" +"missions\xc4\xa0""commercials\xc4\xa0""comfortably\xc4\xa0""comfortable\xc4\xa0""c" +"ollections\xc4\xa0""coincidence\xc4\xa0""coagulation\xc4\xa0""classifying\xc4\xa0" +"""classifiers\xc4\xa0""citizenship\xc4\xa0""circulation\xc4\xa0""circulating\xc4" +"\xa0""chromosomes\xc4\xa0""chromosomal\xc4\xa0""cholesterol\xc4\xa0""challenging" +"\xc4\xa0""centrifuged\xc4\xa0""centralized\xc4\xa0""centimeters\xc4\xa0""celebri" +"ties\xc4\xa0""celebrating\xc4\xa0""categorized\xc4\xa0""categorical\xc4\xa0""cat" +"astrophe\xc4\xa0""cardinality\xc4\xa0""capacitance\xc4\xa0""campaigning\xc4\xa0""c" +"alibration\xc4\xa0""calculating\xc4\xa0""businessman\xc4\xa0""bureaucracy\xc4\xa0" +"""biochemical\xc4\xa0""billionaire\xc4\xa0""bifurcation\xc4\xa0""beneficiary\xc4" +"\xa0""behavioural\xc4\xa0""beautifully\xc4\xa0""battlefield\xc4\xa0""backgrounds" +"\xc4\xa0""automobiles\xc4\xa0""authorizing\xc4\xa0""authorities\xc4\xa0""attract" +"ions\xc4\xa0""attenuation\xc4\xa0""attachments\xc4\xa0""atmospheric\xc4\xa0""ast" +"onishing\xc4\xa0""assumptions\xc4\xa0""associative\xc4\xa0""assignments\xc4\xa0""a" +"ssessments\xc4\xa0""aspirations\xc4\xa0""ascertained\xc4\xa0""articulated\xc4\xa0" +"""arbitration\xc4\xa0""arbitrarily\xc4\xa0""approaching\xc4\xa0""appreciated\xc4" +"\xa0""appearances\xc4\xa0""apparatuses\xc4\xa0""antidepress\xc4\xa0""anticipated" +"\xc4\xa0""antibiotics\xc4\xa0""antagonists\xc4\xa0""annotations\xc4\xa0""anniver" +"sary\xc4\xa0""anisotropic\xc4\xa0""angiotensin\xc4\xa0""angiography\xc4\xa0""alt" +"ernating\xc4\xa0""alterations\xc4\xa0""allegations\xc4\xa0""agriculture\xc4\xa0""a" +"ggregation\xc4\xa0""aggravating\xc4\xa0""affirmative\xc4\xa0""advertising\xc4\xa0" +"""advertisers\xc4\xa0""adversarial\xc4\xa0""advancement\xc4\xa0""adolescents\xc4" +"\xa0""adolescence\xc4\xa0""adjustments\xc4\xa0""adaptations\xc4\xa0""acupuncture" +"\xc4\xa0""accusations\xc4\xa0""accumulated\xc4\xa0""accountable\xc4\xa0""accordi" +"ngly\xc4\xa0""accompanies\xc4\xa0""accompanied\xc4\xa0""accommodate\xc4\xa0""acc" +"essories\xc4\xa0""accelerator\xc4\xa0""accelerated\xc4\xa0""abstraction\xc4\xa0""a" +"bnormality\xc4\xa0""abbreviated\xc4\xa0""abandonment\xc4\xa0Westminster\xc4\xa0U" +"nderground\xc4\xa0Translation\xc4\xa0Transaction\xc4\xa0Traditional\xc4\xa0Theor" +"etical\xc4\xa0Temperature\xc4\xa0Switzerland\xc4\xa0Statistical\xc4\xa0Springfie" +"ld\xc4\xa0Significant\xc4\xa0Shakespeare\xc4\xa0Sensitivity\xc4\xa0Respondents\xc4" +"\xa0Researchers\xc4\xa0Republicans\xc4\xa0Renaissance\xc4\xa0Regulations\xc4\xa0" +"Proposition\xc4\xa0Progressive\xc4\xa0Programming\xc4\xa0Productions\xc4\xa0Proc" +"eedings\xc4\xa0Preparation\xc4\xa0Preliminary\xc4\xa0PlayStation\xc4\xa0Photogra" +"phy\xc4\xa0Philippines\xc4\xa0Petitioners\xc4\xa0Performance\xc4\xa0Partnership\xc4" +"\xa0Opportunity\xc4\xa0Observatory\xc4\xa0Nonetheless\xc4\xa0Netherlands\xc4\xa0" +"Mississippi\xc4\xa0Minneapolis\xc4\xa0Mathematics\xc4\xa0Maintenance\xc4\xa0Legi" +"slature\xc4\xa0Legislative\xc4\xa0Interactive\xc4\xa0Interaction\xc4\xa0Integrat" +"ion\xc4\xa0Instruments\xc4\xa0Instruction\xc4\xa0Information\xc4\xa0Individuals\xc4" +"\xa0Independent\xc4\xa0Improvement\xc4\xa0Importantly\xc4\xa0Immigration\xc4\xa0" +"Immediately\xc4\xa0IOException\xc4\xa0Hamiltonian\xc4\xa0""Furthermore\xc4\xa0""F" +"ortunately\xc4\xa0""Experiments\xc4\xa0""Examination\xc4\xa0""Essentially\xc4\xa0" +"""Escherichia\xc4\xa0""Enterprises\xc4\xa0""Engineering\xc4\xa0""Enforcement\xc4" +"\xa0""Electronics\xc4\xa0""Educational\xc4\xa0""Distributed\xc4\xa0""Differences" +"\xc4\xa0""Development\xc4\xa0""Description\xc4\xa0""Declaration\xc4\xa0""Correla" +"tion\xc4\xa0""Corporation\xc4\xa0""Continental\xc4\xa0""Considering\xc4\xa0""Con" +"necticut\xc4\xa0""Congressman\xc4\xa0""Confederate\xc4\xa0""Conclusions\xc4\xa0""C" +"ompetition\xc4\xa0""Collections\xc4\xa0""Christopher\xc4\xa0""Certificate\xc4\xa0" +"""Brotherhood\xc4\xa0""Biosciences\xc4\xa0""Australians\xc4\xa0""Association\xc4" +"\xa0""Arabidopsis\xc4\xa0""Agriculture\xc4\xa0""Afghanistan\xc4\xa0""Accordingly" +"\xc3\xa3\xc4\xa3\xc4\xb9\xc3\xa3\xc4\xa3\xc2\xa6\xc3\xa3\xc4\xa3\xc4\xa6\xc3\xa3" +"\xc4\xa4\xc4\xad\xc3\xa3\xc4\xa3\xc2\xa6\xc3\xa3\xc4\xa3\xc4\xa6\xc3\xa3\xc4\xa3" +"\xc2\xbe\xc3\xa3\xc4\xa3\xc4\xbb\xc3\xa3\xc4\xa3\xc2\xa3\xc3\xa3\xc4\xa3\xc2\xa6" +"\xc3\xa3\xc4\xa3\xc4\xa6\xc3\xa3\xc4\xa4\xc4\xad\xc3\xa2\xc4\xb7\xc4\xb2\xc3\xa2" +"\xc4\xb7\xc4\xb2\xc3\xa2\xc4\xb7\xc4\xb2\xc3\xa2\xc4\xb7\xc4\xb2\xc3\xa2\xc4\xa2" +"\xc2\xa6\xc3\xa2\xc4\xa2\xc2\xa6\xc3\xa2\xc4\xa2\xc2\xa6\xc3\xa2\xc4\xa2\xc2\xa6" +"otransferaseotherapeuticoperatornameographicallydisplaystyleculoskeletalbiomolec" +"ulesbibliographyaphylococcusSportspeopleOutputStreamLinearLayoutIllustrationDepe" +"ndenciesBibliographyAvailability\xc4\xa0\xc3\x91\xc4\xa2\xc3\x90\xc2\xb0\xc3\x90" +"\xc2\xb1\xc3\x90\xc2\xbe\xc3\x91\xc4\xa4\xc4\xa0\xc3\x90\xc2\xba\xc3\x90\xc2\xbe" +"\xc3\x91\xc4\xa4\xc3\x90\xc2\xbe\xc3\x91\xc4\xa2\xc4\xa0\xc3\x8e\xc2\xb5\xc3\x8e" +"\xc2\xaf\xc3\x8e\xc2\xbd\xc3\x8e\xc2\xb1\xc3\x8e\xc2\xb9\xc4\xa0\xc3\x83\xc2\xa9" +"galement\xc4\xa0yourselves\xc4\xa0wrongdoing\xc4\xa0worthwhile\xc4\xa0workaround" +"\xc4\xa0witnessing\xc4\xa0withdrawal\xc4\xa0wilderness\xc4\xa0widespread\xc4\xa0" +"wheelchair\xc4\xa0whatsoever\xc4\xa0weaknesses\xc4\xa0wastewater\xc4\xa0vulnerab" +"le\xc4\xa0volunteers\xc4\xa0volatility\xc4\xa0vocational\xc4\xa0vocabulary\xc4\xa0" +"visualized\xc4\xa0visitation\xc4\xa0visibility\xc4\xa0violations\xc4\xa0vigorous" +"ly\xc4\xa0vibrations\xc4\xa0veterinary\xc4\xa0vertically\xc4\xa0vertebrate\xc4\xa0" +"velocities\xc4\xa0vegetation\xc4\xa0vegetarian\xc4\xa0vegetables\xc4\xa0variatio" +"ns\xc4\xa0validation\xc4\xa0vaccinated\xc4\xa0usefulness\xc4\xa0unsuitable\xc4\xa0" +"unresolved\xc4\xa0unreliable\xc4\xa0unpleasant\xc4\xa0unofficial\xc4\xa0universi" +"ty\xc4\xa0univariate\xc4\xa0uniqueness\xc4\xa0unintended\xc4\xa0unilateral\xc4\xa0" +"uniformity\xc4\xa0unfinished\xc4\xa0unfamiliar\xc4\xa0unemployed\xc4\xa0undisput" +"ed\xc4\xa0underwater\xc4\xa0undertaken\xc4\xa0understood\xc4\xa0underneath\xc4\xa0" +"undermined\xc4\xa0underlying\xc4\xa0undergoing\xc4\xa0undercover\xc4\xa0unaffect" +"ed\xc4\xa0ultrasound\xc4\xa0ultrasonic\xc4\xa0ultimately\xc4\xa0ubiquitous\xc4\xa0" +"turbulence\xc4\xa0truncation\xc4\xa0triplicate\xc4\xa0triggering\xc4\xa0triangul" +"ar\xc4\xa0tremendous\xc4\xa0treatments\xc4\xa0travelling\xc4\xa0travellers\xc4\xa0" +"transverse\xc4\xa0translator\xc4\xa0translates\xc4\xa0translated\xc4\xa0transgen" +"ic\xc4\xa0transforms\xc4\xa0transducer\xc4\xa0trajectory\xc4\xa0traditions\xc4\xa0" +"trademarks\xc4\xa0touchdowns\xc4\xa0topography\xc4\xa0tomography\xc4\xa0tighteni" +"ng\xc4\xa0throughput\xc4\xa0throughout\xc4\xa0thrombosis\xc4\xa0thresholds\xc4\xa0" +"threatened\xc4\xa0thoughtful\xc4\xa0thoroughly\xc4\xa0thickening\xc4\xa0thereaft" +"er\xc4\xa0therapists\xc4\xa0themselves\xc4\xa0theatrical\xc4\xa0testifying\xc4\xa0" +"testicular\xc4\xa0terrorists\xc4\xa0terrifying\xc4\xa0terminated\xc4\xa0tenderne" +"ss\xc4\xa0tendencies\xc4\xa0temptation\xc4\xa0television\xc4\xa0telescopes\xc4\xa0" +"technology\xc4\xa0techniques\xc4\xa0synonymous\xc4\xa0symplectic\xc4\xa0symmetri" +"es\xc4\xa0sweetheart\xc4\xa0swallowing\xc4\xa0sustaining\xc4\xa0suspicious\xc4\xa0" +"suspicions\xc4\xa0surrounded\xc4\xa0surjective\xc4\xa0surgically\xc4\xa0surfacta" +"nt\xc4\xa0suppressor\xc4\xa0suppresses\xc4\xa0suppressed\xc4\xa0supposedly\xc4\xa0" +"supportive\xc4\xa0supporting\xc4\xa0supporters\xc4\xa0supervised\xc4\xa0superoxi" +"de\xc4\xa0summarizes\xc4\xa0summarized\xc4\xa0suggestive\xc4\xa0suggesting\xc4\xa0" +"succession\xc4\xa0succeeding\xc4\xa0subtracted\xc4\xa0substrates\xc4\xa0substanc" +"es\xc4\xa0subsidiary\xc4\xa0subsection\xc4\xa0submitting\xc4\xa0subjective\xc4\xa0" +"struggling\xc4\xa0structures\xc4\xa0structured\xc4\xa0stretching\xc4\xa0stratifi" +"ed\xc4\xa0strategies\xc4\xa0stochastic\xc4\xa0stipulated\xc4\xa0stimulates\xc4\xa0" +"stimulated\xc4\xa0statistics\xc4\xa0stationary\xc4\xa0statements\xc4\xa0starvati" +"on\xc4\xa0standpoint\xc4\xa0standalone\xc4\xa0staggering\xc4\xa0stabilized\xc4\xa0" +"speculated\xc4\xa0spectators\xc4\xa0specifying\xc4\xa0spacecraft\xc4\xa0soundtra" +"ck\xc4\xa0solubility\xc4\xa0solidarity\xc4\xa0skepticism\xc4\xa0situations\xc4\xa0" +"simplified\xc4\xa0simplicity\xc4\xa0simplicial\xc4\xa0similarity\xc4\xa0signatur" +"es\xc4\xa0signalling\xc4\xa0shortening\xc4\xa0serialized\xc4\xa0sequencing\xc4\xa0" +"separation\xc4\xa0separating\xc4\xa0separately\xc4\xa0sentiments\xc4\xa0sentenci" +"ng\xc4\xa0sensations\xc4\xa0senescence\xc4\xa0selections\xc4\xa0segregated\xc4\xa0" +"securities\xc4\xa0sculptures\xc4\xa0screenshot\xc4\xa0scratching\xc4\xa0scientis" +"ts\xc4\xa0scheduling\xc4\xa0scattering\xc4\xa0saturation\xc4\xa0satisfying\xc4\xa0" +"satellites\xc4\xa0sanitation\xc4\xa0sandwiches\xc4\xa0sanctioned\xc4\xa0sacrific" +"es\xc4\xa0sacrificed\xc4\xa0rotational\xc4\xa0robustness\xc4\xa0ridiculous\xc4\xa0" +"rheumatoid\xc4\xa0revocation\xc4\xa0reversible\xc4\xa0retrograde\xc4\xa0retrievi" +"ng\xc4\xa0retirement\xc4\xa0restricted\xc4\xa0restraints\xc4\xa0restrained\xc4\xa0" +"responding\xc4\xa0responders\xc4\xa0respecting\xc4\xa0resonances\xc4\xa0resistan" +"ce\xc4\xa0resilience\xc4\xa0reservoirs\xc4\xa0resentment\xc4\xa0resembling\xc4\xa0" +"researched\xc4\xa0requesting\xc4\xa0reputation\xc4\xa0reproduced\xc4\xa0repressi" +"on\xc4\xa0represents\xc4\xa0repository\xc4\xa0reportedly\xc4\xa0replicates\xc4\xa0" +"replicated\xc4\xa0repetitive\xc4\xa0repertoire\xc4\xa0repeatedly\xc4\xa0renovati" +"on\xc4\xa0remodeling\xc4\xa0remembered\xc4\xa0remarkably\xc4\xa0remarkable\xc4\xa0" +"reluctance\xc4\xa0relocation\xc4\xa0relentless\xc4\xa0relaxation\xc4\xa0relativi" +"ty\xc4\xa0relatively\xc4\xa0relational\xc4\xa0reiterated\xc4\xa0reinforced\xc4\xa0" +"regulatory\xc4\xa0regulators\xc4\xa0regulating\xc4\xa0regularity\xc4\xa0regressi" +"on\xc4\xa0registered\xc4\xa0regardless\xc4\xa0refreshing\xc4\xa0refractory\xc4\xa0" +"refractive\xc4\xa0reflective\xc4\xa0reflecting\xc4\xa0refinement\xc4\xa0referend" +"um\xc4\xa0references\xc4\xa0referenced\xc4\xa0redundancy\xc4\xa0reductions\xc4\xa0" +"redemption\xc4\xa0recurrence\xc4\xa0recruiting\xc4\xa0recovering\xc4\xa0recordin" +"gs\xc4\xa0recommends\xc4\xa0recognizes\xc4\xa0recognized\xc4\xa0recognised\xc4\xa0" +"reciprocal\xc4\xa0recipients\xc4\xa0rebuilding\xc4\xa0reassuring\xc4\xa0reasonab" +"ly\xc4\xa0reactivity\xc4\xa0randomized\xc4\xa0randomised\xc4\xa0quotations\xc4\xa0" +"questioned\xc4\xa0quantities\xc4\xa0quantified\xc4\xa0qualifying\xc4\xa0purchasi" +"ng\xc4\xa0punishment\xc4\xa0publishing\xc4\xa0publishers\xc4\xa0psychology\xc4\xa0" +"provisions\xc4\xa0provincial\xc4\xa0protesting\xc4\xa0protesters\xc4\xa0protecti" +"ve\xc4\xa0protecting\xc4\xa0proteasome\xc4\xa0prosthetic\xc4\xa0prosthesis\xc4\xa0" +"prosperous\xc4\xa0prosperity\xc4\xa0prosecuted\xc4\xa0properties\xc4\xa0propensi" +"ty\xc4\xa0propagator\xc4\xa0propagated\xc4\xa0propaganda\xc4\xa0pronounced\xc4\xa0" +"promotions\xc4\xa0prominence\xc4\xa0projective\xc4\xa0projecting\xc4\xa0prohibit" +"ed\xc4\xa0progresses\xc4\xa0progressed\xc4\xa0programmes\xc4\xa0programmed\xc4\xa0" +"prognostic\xc4\xa0profoundly\xc4\xa0profitable\xc4\xa0professors\xc4\xa0producti" +"ve\xc4\xa0proclaimed\xc4\xa0processors\xc4\xa0procession\xc4\xa0processing\xc4\xa0" +"procedures\xc4\xa0procedural\xc4\xa0privileges\xc4\xa0privileged\xc4\xa0prioriti" +"es\xc4\xa0principles\xc4\xa0primordial\xc4\xa0previously\xc4\xa0preventive\xc4\xa0" +"prevention\xc4\xa0preventing\xc4\xa0prevalence\xc4\xa0prevailing\xc4\xa0pretreat" +"ed\xc4\xa0pretending\xc4\xa0presumably\xc4\xa0presidents\xc4\xa0presidente\xc4\xa0" +"presidency\xc4\xa0preserving\xc4\xa0presenting\xc4\xa0prescribed\xc4\xa0prejudic" +"ed\xc4\xa0prefrontal\xc4\xa0preferably\xc4\xa0preferable\xc4\xa0predictors\xc4\xa0" +"predictive\xc4\xa0predicting\xc4\xa0predicated\xc4\xa0predefined\xc4\xa0precurso" +"rs\xc4\xa0precedence\xc4\xa0practicing\xc4\xa0potentials\xc4\xa0postulated\xc4\xa0" +"postseason\xc4\xa0postpartum\xc4\xa0possessing\xc4\xa0positivity\xc4\xa0positive" +"ly\xc4\xa0positioned\xc4\xa0positional\xc4\xa0popularity\xc4\xa0polymerase\xc4\xa0" +"polyclonal\xc4\xa0pollutants\xc4\xa0pneumoniae\xc4\xa0playwright\xc4\xa0playgrou" +"nd\xc4\xa0plasticity\xc4\xa0plantation\xc4\xa0plaintiffs\xc4\xa0pioneering\xc4\xa0" +"physiology\xc4\xa0physicians\xc4\xa0physically\xc4\xa0photometry\xc4\xa0phosphor" +"us\xc4\xa0phospholip\xc4\xa0philosophy\xc4\xa0phenotypic\xc4\xa0phenotypes\xc4\xa0" +"phenomenon\xc4\xa0phenomenal\xc4\xa0pesticides\xc4\xa0pertaining\xc4\xa0persuasi" +"ve\xc4\xa0personally\xc4\xa0persistent\xc4\xa0peroxidase\xc4\xa0permitting\xc4\xa0" +"peritoneal\xc4\xa0peripheral\xc4\xa0performing\xc4\xa0performers\xc4\xa0perfecti" +"on\xc4\xa0percussion\xc4\xa0perceptual\xc4\xa0percentile\xc4\xa0penicillin\xc4\xa0" +"patterning\xc4\xa0pathogenic\xc4\xa0passionate\xc4\xa0passengers\xc4\xa0partitio" +"ns\xc4\xa0parametric\xc4\xa0parameters\xc4\xa0paragraphs\xc4\xa0pancreatic\xc4\xa0" +"palliative\xc4\xa0overweight\xc4\xa0overturned\xc4\xa0overriding\xc4\xa0overlook" +"ed\xc4\xa0overlapped\xc4\xa0overcoming\xc4\xa0outrageous\xc4\xa0outpatient\xc4\xa0" +"osteoclast\xc4\xa0oscillator\xc4\xa0orthogonal\xc4\xa0originates\xc4\xa0originat" +"ed\xc4\xa0originally\xc4\xa0organizing\xc4\xa0organizers\xc4\xa0ordinarily\xc4\xa0" +"optionally\xc4\xa0optimizing\xc4\xa0optimistic\xc4\xa0oppressive\xc4\xa0oppressi" +"on\xc4\xa0opposition\xc4\xa0operations\xc4\xa0officially\xc4\xa0objectives\xc4\xa0" +"objections\xc4\xa0nucleation\xc4\xa0noticeable\xc4\xa0noteworthy\xc4\xa0normaliz" +"ed\xc4\xa0nontrivial\xc4\xa0nineteenth\xc4\xa0newspapers\xc4\xa0neutrality\xc4\xa0" +"neurotrans\xc4\xa0neuropsych\xc4\xa0neuropathy\xc4\xa0networking\xc4\xa0neoplast" +"ic\xc4\xa0neighbours\xc4\xa0negotiated\xc4\xa0negligible\xc4\xa0negligence\xc4\xa0" +"negatively\xc4\xa0navigation\xc4\xa0navigating\xc4\xa0nationwide\xc4\xa0national" +"ly\xc4\xa0narratives\xc4\xa0mysterious\xc4\xa0myocardium\xc4\xa0myocardial\xc4\xa0" +"multiplier\xc4\xa0multiplied\xc4\xa0multimedia\xc4\xa0motorcycle\xc4\xa0mosquito" +"es\xc4\xa0morphology\xc4\xa0monoclonal\xc4\xa0monitoring\xc4\xa0modulation\xc4\xa0" +"modulating\xc4\xa0moderation\xc4\xa0moderately\xc4\xa0modalities\xc4\xa0mitigati" +"on\xc4\xa0mitigating\xc4\xa0mistakenly\xc4\xa0missionary\xc4\xa0misleading\xc4\xa0" +"misconduct\xc4\xa0minorities\xc4\xa0minimizing\xc4\xa0millennium\xc4\xa0midfield" +"er\xc4\xa0microscopy\xc4\xa0microscope\xc4\xa0microphone\xc4\xa0micrograms\xc4\xa0" +"microbiota\xc4\xa0microbiome\xc4\xa0microarray\xc4\xa0methylated\xc4\xa0metastat" +"ic\xc4\xa0metastasis\xc4\xa0metastases\xc4\xa0metabolism\xc4\xa0mentioning\xc4\xa0" +"memorandum\xc4\xa0membership\xc4\xa0melancholy\xc4\xa0meditation\xc4\xa0mechanis" +"ms\xc4\xa0measurable\xc4\xa0meaningful\xc4\xa0maximizing\xc4\xa0maturation\xc4\xa0" +"materially\xc4\xa0marginally\xc4\xa0manifested\xc4\xa0mandibular\xc4\xa0manageme" +"nt\xc4\xa0manageable\xc4\xa0malignancy\xc4\xa0maintained\xc4\xa0mainstream\xc4\xa0" +"magnitudes\xc4\xa0magistrate\xc4\xa0luminosity\xc4\xa0luciferase\xc4\xa0loneline" +"ss\xc4\xa0localities\xc4\xa0livelihood\xc4\xa0litigation\xc4\xa0literature\xc4\xa0" +"linguistic\xc4\xa0linebacker\xc4\xa0likelihood\xc4\xa0lieutenant\xc4\xa0liberati" +"on\xc4\xa0leukocytes\xc4\xa0legitimate\xc4\xa0legitimacy\xc4\xa0leadership\xc4\xa0" +"laundering\xc4\xa0landscapes\xc4\xa0laboratory\xc4\xa0kinematics\xc4\xa0kilometr" +"es\xc4\xa0kilometers\xc4\xa0kidnapping\xc4\xa0journalism\xc4\xa0javascript\xc4\xa0" +"iterations\xc4\xa0isomorphic\xc4\xa0isinstance\xc4\xa0irritation\xc4\xa0irrigati" +"on\xc4\xa0irrelevant\xc4\xa0irrational\xc4\xa0irradiated\xc4\xa0ionization\xc4\xa0" +"invocation\xc4\xa0invitation\xc4\xa0invertible\xc4\xa0inventions\xc4\xa0invarian" +"ts\xc4\xa0invariance\xc4\xa0invariably\xc4\xa0invaluable\xc4\xa0introduces\xc4\xa0" +"introduced\xc4\xa0intriguing\xc4\xa0intimately\xc4\xa0intestinal\xc4\xa0intervie" +"ws\xc4\xa0interstate\xc4\xa0internally\xc4\xa0interferon\xc4\xa0interfaces\xc4\xa0" +"interested\xc4\xa0intentions\xc4\xa0integrates\xc4\xa0integrated\xc4\xa0integrab" +"le\xc4\xa0insulation\xc4\xa0insulating\xc4\xa0instructed\xc4\xa0instituted\xc4\xa0" +"instanceof\xc4\xa0installing\xc4\xa0insistence\xc4\xa0insightful\xc4\xa0insertio" +"ns\xc4\xa0insecurity\xc4\xa0inoculated\xc4\xa0innovative\xc4\xa0injunctive\xc4\xa0" +"injunction\xc4\xa0injections\xc4\xa0initiation\xc4\xa0initiating\xc4\xa0inhibito" +"ry\xc4\xa0inhibitors\xc4\xa0inhibition\xc4\xa0inhibiting\xc4\xa0inherently\xc4\xa0" +"inhalation\xc4\xa0influences\xc4\xa0influenced\xc4\xa0infinitely\xc4\xa0inferenc" +"es\xc4\xa0infectious\xc4\xa0infections\xc4\xa0infarction\xc4\xa0inevitably\xc4\xa0" +"inevitable\xc4\xa0inequality\xc4\xa0industries\xc4\xa0industrial\xc4\xa0indirect" +"ly\xc4\xa0indigenous\xc4\xa0indictment\xc4\xa0indicators\xc4\xa0indicative\xc4\xa0" +"indicating\xc4\xa0incubation\xc4\xa0increments\xc4\xa0incredibly\xc4\xa0incredib" +"le\xc4\xa0incomplete\xc4\xa0inclusions\xc4\xa0incidental\xc4\xa0incentives\xc4\xa0" +"inadequate\xc4\xa0inaccurate\xc4\xa0impurities\xc4\xa0improperly\xc4\xa0imprison" +"ed\xc4\xa0impressive\xc4\xa0impossible\xc4\xa0imposition\xc4\xa0importante\xc4\xa0" +"importance\xc4\xa0implicitly\xc4\xa0implicated\xc4\xa0implements\xc4\xa0imperati" +"ve\xc4\xa0immunoblot\xc4\xa0immigrants\xc4\xa0idiopathic\xc4\xa0identities\xc4\xa0" +"identifies\xc4\xa0identified\xc4\xa0hypothesis\xc4\xa0hypotheses\xc4\xa0hyperbol" +"ic\xc4\xa0hydrolysis\xc4\xa0hydrochlor\xc4\xa0households\xc4\xa0homozygous\xc4\xa0" +"homologous\xc4\xa0homeowners\xc4\xa0historians\xc4\xa0histograms\xc4\xa0highligh" +"ts\xc4\xa0hesitation\xc4\xa0heretofore\xc4\xa0hereditary\xc4\xa0hemorrhage\xc4\xa0" +"hemoglobin\xc4\xa0hemisphere\xc4\xa0heightened\xc4\xa0healthcare\xc4\xa0headphon" +"es\xc4\xa0harvesting\xc4\xa0harassment\xc4\xa0haplotypes\xc4\xa0guidelines\xc4\xa0" +"guarantees\xc4\xa0guaranteed\xc4\xa0grievances\xc4\xa0greenhouse\xc4\xa0grateful" +"ly\xc4\xa0grassroots\xc4\xa0graduation\xc4\xa0graduating\xc4\xa0governance\xc4\xa0" +"glomerular\xc4\xa0girlfriend\xc4\xa0geometries\xc4\xa0genotyping\xc4\xa0generosi" +"ty\xc4\xa0generators\xc4\xa0generating\xc4\xa0generality\xc4\xa0gatherings\xc4\xa0" +"""fulfilling\xc4\xa0""frustrated\xc4\xa0""frightened\xc4\xa0""freshwater\xc4\xa0" +"""frequently\xc4\xa0""fraudulent\xc4\xa0""frameworks\xc4\xa0""fragmented\xc4\xa0" +"""fractional\xc4\xa0""forwarding\xc4\xa0""formulated\xc4\xa0""formidable\xc4\xa0" +"""formatting\xc4\xa0""formations\xc4\xa0""forgetting\xc4\xa0""forfeiture\xc4\xa0" +"""foreigners\xc4\xa0""foreground\xc4\xa0""follicular\xc4\xa0""fingertips\xc4\xa0" +"""filtration\xc4\xa0""filmmakers\xc4\xa0""filesystem\xc4\xa0""fertilizer\xc4\xa0" +"""fellowship\xc4\xa0""favourable\xc4\xa0""fascinated\xc4\xa0""falciparum\xc4\xa0" +"""faithfully\xc4\xa0""facilities\xc4\xa0""fabricated\xc4\xa0""extraction\xc4\xa0" +"""extracting\xc4\xa0""extinction\xc4\xa0""externally\xc4\xa0""extensions\xc4\xa0" +"""expressive\xc4\xa0""expressing\xc4\xa0""exposition\xc4\xa0""explosives\xc4\xa0" +"""explosions\xc4\xa0""exploiting\xc4\xa0""explicitly\xc4\xa0""explaining\xc4\xa0" +"""expiration\xc4\xa0""expedition\xc4\xa0""expectancy\xc4\xa0""expatriate\xc4\xa0" +"""expansions\xc4\xa0""exhibiting\xc4\xa0""exhaustive\xc4\xa0""exhaustion\xc4\xa0" +"""exercising\xc4\xa0""exemptions\xc4\xa0""executives\xc4\xa0""executable\xc4\xa0" +"""excitement\xc4\xa0""excitatory\xc4\xa0""exchanging\xc4\xa0""exceptions\xc4\xa0" +"""excellence\xc4\xa0""everywhere\xc4\xa0""everything\xc4\xa0""eventually\xc4\xa0" +"""evaporated\xc4\xa0""evaluating\xc4\xa0""evacuation\xc4\xa0""eukaryotic\xc4\xa0" +"""estimators\xc4\xa0""estimation\xc4\xa0""estimating\xc4\xa0""especially\xc4\xa0" +"""esophageal\xc4\xa0""epithelium\xc4\xa0""epithelial\xc4\xa0""epigenetic\xc4\xa0" +"""envisioned\xc4\xa0""enumerated\xc4\xa0""enthusiasm\xc4\xa0""enrollment\xc4\xa0" +"""enrichment\xc4\xa0""engineered\xc4\xa0""engagement\xc4\xa0""endoscopic\xc4\xa0" +"""endogenous\xc4\xa0""endangered\xc4\xa0""encryption\xc4\xa0""encourages\xc4\xa0" +"""encouraged\xc4\xa0""encounters\xc4\xa0""employment\xc4\xa0""emphasizes\xc4\xa0" +"""emphasized\xc4\xa0""embeddings\xc4\xa0""elucidated\xc4\xa0""elongation\xc4\xa0" +"""elliptical\xc4\xa0""eliminates\xc4\xa0""eliminated\xc4\xa0""elementary\xc4\xa0" +"""electrodes\xc4\xa0""electorate\xc4\xa0""elasticity\xc4\xa0""elaborated\xc4\xa0" +"""eighteenth\xc4\xa0""efficiency\xc4\xa0""ecosystems\xc4\xa0""economists\xc4\xa0" +"""ecological\xc4\xa0""durability\xc4\xa0""duplicates\xc4\xa0""duplicated\xc4\xa0" +"""downstream\xc4\xa0""downstairs\xc4\xa0""downloaded\xc4\xa0""domination\xc4\xa0" +"""dominating\xc4\xa0""documented\xc4\xa0""divergence\xc4\xa0""disturbing\xc4\xa0" +"""distressed\xc4\xa0""distracted\xc4\xa0""distinctly\xc4\xa0""dissimilar\xc4\xa0" +"""dissenting\xc4\xa0""dissection\xc4\xa0""disruptive\xc4\xa0""disruption\xc4\xa0" +"""disrespect\xc4\xa0""disposable\xc4\xa0""displaying\xc4\xa0""dispersion\xc4\xa0" +"""dispensing\xc4\xa0""dispatched\xc4\xa0""disordered\xc4\xa0""dismissing\xc4\xa0" +"""disgusting\xc4\xa0""discussing\xc4\xa0""discovered\xc4\xa0""discounted\xc4\xa0" +"""discomfort\xc4\xa0""disclaimer\xc4\xa0""discharges\xc4\xa0""discharged\xc4\xa0" +"""disastrous\xc4\xa0""disappears\xc4\xa0""disability\xc4\xa0""directives\xc4\xa0" +"""directions\xc4\xa0""diplomatic\xc4\xa0""diminished\xc4\xa0""dimensions\xc4\xa0" +"""difficulty\xc4\xa0""dielectric\xc4\xa0""dictionary\xc4\xa0""diagnosing\xc4\xa0" +"""deviations\xc4\xa0""developing\xc4\xa0""developers\xc4\xa0""devastated\xc4\xa0" +"""determines\xc4\xa0""determined\xc4\xa0""detectives\xc4\xa0""detectable\xc4\xa0" +"""detachment\xc4\xa0""destroying\xc4\xa0""designated\xc4\xa0""describing\xc4\xa0" +"""descending\xc4\xa0""derivation\xc4\xa0""depressive\xc4\xa0""depression\xc4\xa0" +"""depressing\xc4\xa0""deprecated\xc4\xa0""deposition\xc4\xa0""deployment\xc4\xa0" +"""dependency\xc4\xa0""dependence\xc4\xa0""demolished\xc4\xa0""democratic\xc4\xa0" +"""delivering\xc4\xa0""deliveries\xc4\xa0""delightful\xc4\xa0""delegation\xc4\xa0" +"""degenerate\xc4\xa0""degeneracy\xc4\xa0""deflection\xc4\xa0""definitive\xc4\xa0" +"""definitely\xc4\xa0""deficiency\xc4\xa0""defendants\xc4\xa0""deductions\xc4\xa0" +"""dedication\xc4\xa0""decreasing\xc4\xa0""decorative\xc4\xa0""decomposed\xc4\xa0" +"""dealership\xc4\xa0""cytochrome\xc4\xa0""customized\xc4\xa0""curriculum\xc4\xa0" +"""currencies\xc4\xa0""cumulative\xc4\xa0""cumbersome\xc4\xa0""culturally\xc4\xa0" +"""cultivated\xc4\xa0""criticized\xc4\xa0""criticisms\xc4\xa0""criticised\xc4\xa0" +"""critically\xc4\xa0""creativity\xc4\xa0""creatinine\xc4\xa0""covariates\xc4\xa0" +"""covariance\xc4\xa0""counseling\xc4\xa0""corruption\xc4\xa0""correlates\xc4\xa0" +"""correlated\xc4\xa0""correcting\xc4\xa0""copolymers\xc4\xa0""convincing\xc4\xa0" +"""converting\xc4\xa0""convergent\xc4\xa0""convection\xc4\xa0""controlled\xc4\xa0" +"""contrasted\xc4\xa0""contracted\xc4\xa0""continuity\xc4\xa0""continuing\xc4\xa0" +"""contingent\xc4\xa0""continents\xc4\xa0""contiguous\xc4\xa0""contextual\xc4\xa0" +"""containing\xc4\xa0""containers\xc4\xa0""contacting\xc4\xa0""consulting\xc4\xa0" +"""constructs\xc4\xa0""constantly\xc4\xa0""conspiracy\xc4\xa0""consortium\xc4\xa0" +"""consisting\xc4\xa0""considered\xc4\xa0""conscience\xc4\xa0""connectors\xc4\xa0" +"""connective\xc4\xa0""connecting\xc4\xa0""conjugated\xc4\xa0""conjecture\xc4\xa0" +"""congestion\xc4\xa0""congenital\xc4\xa0""confronted\xc4\xa0""conformity\xc4\xa0" +"""confluence\xc4\xa0""confirming\xc4\xa0""configured\xc4\xa0""confidence\xc4\xa0" +"""confession\xc4\xa0""conductors\xc4\xa0""conductive\xc4\xa0""conduction\xc4\xa0" +"""conducting\xc4\xa0""conditions\xc4\xa0""condensate\xc4\xa0""concurring\xc4\xa0" +"""conclusive\xc4\xa0""concluding\xc4\xa0""concerning\xc4\xa0""conceptual\xc4\xa0" +"""conception\xc4\xa0""compulsory\xc4\xa0""comprising\xc4\xa0""compressor\xc4\xa0" +"""compressed\xc4\xa0""comprehend\xc4\xa0""composites\xc4\xa0""components\xc4\xa0" +"""compliance\xc4\xa0""complexity\xc4\xa0""completion\xc4\xa0""completing\xc4\xa0" +"""completely\xc4\xa0""complaints\xc4\xa0""complained\xc4\xa0""competency\xc4\xa0" +"""competence\xc4\xa0""compelling\xc4\xa0""compatible\xc4\xa0""comparator\xc4\xa0" +"""comparable\xc4\xa0""companions\xc4\xa0""committing\xc4\xa0""committees\xc4\xa0" +"""commenting\xc4\xa0""commentary\xc4\xa0""commanding\xc4\xa0""commanders\xc4\xa0" +"""comforting\xc4\xa0""combustion\xc4\xa0""colorectal\xc4\xa0""collisions\xc4\xa0" +"""collectors\xc4\xa0""collecting\xc4\xa0""colleagues\xc4\xa0""collateral\xc4\xa0" +"""collapsing\xc4\xa0""cohomology\xc4\xa0""clustering\xc4\xa0""clinicians\xc4\xa0" +"""clinically\xc4\xa0""classrooms\xc4\xa0""classmates\xc4\xa0""classified\xc4\xa0" +"""circumvent\xc4\xa0""circulated\xc4\xa0""cigarettes\xc4\xa0""chemically\xc4\xa0" +"""checkpoint\xc4\xa0""charitable\xc4\xa0""characters\xc4\xa0""chancellor\xc4\xa0" +"""challenges\xc4\xa0""challenged\xc4\xa0""cerevisiae\xc4\xa0""ceremonies\xc4\xa0" +"""cerebellum\xc4\xa0""cerebellar\xc4\xa0""censorship\xc4\xa0""celebrates\xc4\xa0" +"""celebrated\xc4\xa0""cautiously\xc4\xa0""categories\xc4\xa0""casualties\xc4\xa0" +"""cartridges\xc4\xa0""caregivers\xc4\xa0""carcinomas\xc4\xa0""capricious\xc4\xa0" +"""capitalist\xc4\xa0""capitalism\xc4\xa0""capacitors\xc4\xa0""capacities\xc4\xa0" +"""capability\xc4\xa0""candidates\xc4\xa0""calibrated\xc4\xa0""calculator\xc4\xa0" +"""calculates\xc4\xa0""calculated\xc4\xa0""businesses\xc4\xa0""broadening\xc4\xa0" +"""broadcasts\xc4\xa0""brightness\xc4\xa0""boundaries\xc4\xa0""borderline\xc4\xa0" +"""blockchain\xc4\xa0""bitterness\xc4\xa0""bipartisan\xc4\xa0""biomedical\xc4\xa0" +"""biomarkers\xc4\xa0""beneficial\xc4\xa0""benchmarks\xc4\xa0""belongings\xc4\xa0" +"""behaviours\xc4\xa0""behavioral\xc4\xa0""beginnings\xc4\xa0""beforehand\xc4\xa0" +"""basketball\xc4\xa0""bargaining\xc4\xa0""bankruptcy\xc4\xa0""autonomous\xc4\xa0" +"""automotive\xc4\xa0""automation\xc4\xa0""autologous\xc4\xa0""autoimmune\xc4\xa0" +"""authorized\xc4\xa0""attributes\xc4\xa0""attributed\xc4\xa0""attractive\xc4\xa0" +"""attracting\xc4\xa0""attenuated\xc4\xa0""attendance\xc4\xa0""attempting\xc4\xa0" +"""attainment\xc4\xa0""atmosphere\xc4\xa0""asymmetric\xc4\xa0""astrocytes\xc4\xa0" +"""astonished\xc4\xa0""assortment\xc4\xa0""associates\xc4\xa0""associated\xc4\xa0" +"""assistants\xc4\xa0""assistance\xc4\xa0""assertions\xc4\xa0""assembling\xc4\xa0" +"""assemblies\xc4\xa0""arithmetic\xc4\xa0""architects\xc4\xa0""arbitrator\xc4\xa0" +"""approaches\xc4\xa0""approached\xc4\xa0""applicants\xc4\xa0""applicable\xc4\xa0" +"""appliances\xc4\xa0""appellants\xc4\xa0""apparently\xc4\xa0""apologized\xc4\xa0" +"""apartments\xc4\xa0""antifungal\xc4\xa0""anticancer\xc4\xa0""antibodies\xc4\xa0" +"""announcing\xc4\xa0""anisotropy\xc4\xa0""animations\xc4\xa0""anesthetic\xc4\xa0" +"""anesthesia\xc4\xa0""anatomical\xc4\xa0""amplitudes\xc4\xa0""ammunition\xc4\xa0" +"""amendments\xc4\xa0""ambassador\xc4\xa0""altogether\xc4\xa0""allocation\xc4\xa0" +"""allegiance\xc4\xa0""alignments\xc4\xa0""algorithms\xc4\xa0""agreements\xc4\xa0" +"""aggression\xc4\xa0""aggregates\xc4\xa0""aggregated\xc4\xa0""aggravated\xc4\xa0" +"""afterwards\xc4\xa0""affordable\xc4\xa0""affiliates\xc4\xa0""affiliated\xc4\xa0" +"""affidavits\xc4\xa0""aesthetics\xc4\xa0""aeruginosa\xc4\xa0""advocating\xc4\xa0" +"""advertised\xc4\xa0""adventures\xc4\xa0""advantages\xc4\xa0""adsorption\xc4\xa0" +"""admittedly\xc4\xa0""admissions\xc4\xa0""admissible\xc4\xa0""admiration\xc4\xa0" +"""adjustable\xc4\xa0""adipocytes\xc4\xa0""adequately\xc4\xa0""addressing\xc4\xa0" +"""activities\xc4\xa0""activation\xc4\xa0""activating\xc4\xa0""actionable\xc4\xa0" +"""acquainted\xc4\xa0""achievable\xc4\xa0""accustomed\xc4\xa0""accurately\xc4\xa0" +"""accredited\xc4\xa0""accounting\xc4\xa0""accountant\xc4\xa0""accordance\xc4\xa0" +"""accessible\xc4\xa0""acceptance\xc4\xa0""acceptable\xc4\xa0""abundances\xc4\xa0" +"""absorption\xc4\xa0""absorbance\xc4\xa0""absolutely\xc4\xa0Williamson\xc4\xa0We" +"llington\xc4\xa0Washington\xc4\xa0WARRANTIES\xc4\xa0Volkswagen\xc4\xa0Vietnamese" +"\xc4\xa0Validation\xc4\xa0University\xc4\xa0Ultimately\xc4\xa0Transition\xc4\xa0" +"Transcript\xc4\xa0Tournament\xc4\xa0Throughout\xc4\xa0Thereafter\xc4\xa0Televisi" +"on\xc4\xa0Technology\xc4\xa0Supporting\xc4\xa0Structural\xc4\xa0Strickland\xc4\xa0" +"Statistics\xc4\xa0Spacewatch\xc4\xa0Settlement\xc4\xa0Sentencing\xc4\xa0Securiti" +"es\xc4\xa0Scientists\xc4\xa0Scientific\xc4\xa0Sacramento\xc4\xa0Riemannian\xc4\xa0" +"Richardson\xc4\xa0Restaurant\xc4\xa0Resolution\xc4\xa0Resistance\xc4\xa0Regardle" +"ss\xc4\xa0References\xc4\xa0Queensland\xc4\xa0Publishing\xc4\xa0Publishers\xc4\xa0" +"Psychology\xc4\xa0Provincial\xc4\xa0Providence\xc4\xa0Protestant\xc4\xa0Protecti" +"on\xc4\xa0Properties\xc4\xa0Processing\xc4\xa0Procedures\xc4\xa0Principles\xc4\xa0" +"Previously\xc4\xa0Prevention\xc4\xa0Presidente\xc4\xa0Portuguese\xc4\xa0Populati" +"on\xc4\xa0Plaintiffs\xc4\xa0Pittsburgh\xc4\xa0Philosophy\xc4\xa0Petersburg\xc4\xa0" +"Personally\xc4\xa0Permission\xc4\xa0Percentage\xc4\xa0Parliament\xc4\xa0Parlamen" +"to\xc4\xa0Parenthood\xc4\xa0Parameters\xc4\xa0PARTICULAR\xc4\xa0Originally\xc4\xa0" +"Opposition\xc4\xa0Operations\xc4\xa0Observable\xc4\xa0Nottingham\xc4\xa0Navigati" +"on\xc4\xa0NEGLIGENCE\xc4\xa0Montgomery\xc4\xa0Monitoring\xc4\xa0Memorandum\xc4\xa0" +"Mechanical\xc4\xa0Manchester\xc4\xa0Management\xc4\xa0Magistrate\xc4\xa0Louisvil" +"le\xc4\xa0Literature\xc4\xa0Lieutenant\xc4\xa0Liberation\xc4\xa0Leadership\xc4\xa0" +"Lagrangian\xc4\xa0Laboratory\xc4\xa0Kubernetes\xc4\xa0Kommission\xc4\xa0Javascri" +"pt\xc4\xa0JavaScript\xc4\xa0Investment\xc4\xa0Interstate\xc4\xa0Integrated\xc4\xa0" +"Institutes\xc4\xa0Innovation\xc4\xa0Initiative\xc4\xa0Initialize\xc4\xa0Inhibiti" +"on\xc4\xa0Industries\xc4\xa0Industrial\xc4\xa0Indonesian\xc4\xa0Indigenous\xc4\xa0" +"Increasing\xc4\xa0Huntington\xc4\xa0Horizontal\xc4\xa0Historical\xc4\xa0Heisenbe" +"rg\xc4\xa0Healthcare\xc4\xa0Guidelines\xc4\xa0Government\xc4\xa0Generation\xc4\xa0" +"""Functional\xc4\xa0""Fourteenth\xc4\xa0""Foundation\xc4\xa0""Fitzgerald\xc4\xa0" +"""Fellowship\xc4\xa0""Federation\xc4\xa0""Expression\xc4\xa0""Experience\xc4\xa0" +"""Excellence\xc4\xa0""Everything\xc4\xa0""Eventually\xc4\xa0""Evaluation\xc4\xa0" +"""Especially\xc4\xa0""Employment\xc4\xa0""Elementary\xc4\xa0""Electrical\xc4\xa0" +"""Discussion\xc4\xa0""Dictionary\xc4\xa0""Diagnostic\xc4\xa0""Depression\xc4\xa0" +"""Department\xc4\xa0""Democratic\xc4\xa0""Definition\xc4\xa0""Defendants\xc4\xa0" +"""Cunningham\xc4\xa0""Correspond\xc4\xa0""Correction\xc4\xa0""Copenhagen\xc4\xa0" +"""Conversely\xc4\xa0""Controller\xc4\xa0""Continuous\xc4\xa0""Constantin\xc4\xa0" +"""Consortium\xc4\xa0""Consistent\xc4\xa0""Connection\xc4\xa0""Conference\xc4\xa0" +"""Conditions\xc4\xa0""Comparison\xc4\xa0""Commercial\xc4\xa0""Cincinnati\xc4\xa0" +"""Christians\xc4\xa0""Charleston\xc4\xa0""Chancellor\xc4\xa0""California\xc4\xa0" +"""CONDITIONS\xc4\xa0""CONCLUSION\xc4\xa0""Bonferroni\xc4\xa0""Blockchain\xc4\xa0" +"""Birmingham\xc4\xa0""Biosystems\xc4\xa0""Biological\xc4\xa0""Basketball\xc4\xa0" +"""Bankruptcy\xc4\xa0""Bangladesh\xc4\xa0""Background\xc4\xa0""BACKGROUND\xc4\xa0" +"""Assumption\xc4\xa0""Associates\xc4\xa0""Associated\xc4\xa0""Assistance\xc4\xa0" +"""Assessment\xc4\xa0""Archbishop\xc4\xa0""Appellants\xc4\xa0""Apparently\xc4\xa0" +"""Ambassador\xc4\xa0""Alexandria\xc4\xa0""Afterwards\xc4\xa0""Affordable\xc4\xa0" +"""Adventures\xc4\xa0""Activities\xc4\xa0""Activation\xc4\xa0""Aboriginal\xc4\x8d" +"\xc4\x8d\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"xrightarrowuminescencetikzpicturesmallmatrixreptococcusratulationsomenclatureome" +"chanicalmedscimonitmarinedrugsinformaticsictionariesgetInstancecolumnwidthappend" +"ChildPreferencesOrientationInputStreamDefinitionsConstructorConstraints---|---|-" +"--\xc4\xa0zebrafish\xc4\xa0yesterday\xc4\xa0xenograft\xc4\xa0wrestling\xc4\xa0wo" +"rthless\xc4\xa0worsening\xc4\xa0worldwide\xc4\xa0workspace\xc4\xa0workshops\xc4\xa0" +"workplace\xc4\xa0workpiece\xc4\xa0workforce\xc4\xa0wondering\xc4\xa0witnesses\xc4" +"\xa0witnessed\xc4\xa0withstand\xc4\xa0withdrawn\xc4\xa0willingly\xc4\xa0wholesal" +"e\xc4\xa0whispered\xc4\xa0whichever\xc4\xa0wellbeing\xc4\xa0welcoming\xc4\xa0wei" +"ghting\xc4\xa0weakening\xc4\xa0waveguide\xc4\xa0watershed\xc4\xa0warranted\xc4\xa0" +"warehouse\xc4\xa0wandering\xc4\xa0voluntary\xc4\xa0viscosity\xc4\xa0virulence\xc4" +"\xa0virtually\xc4\xa0violently\xc4\xa0violating\xc4\xa0villagers\xc4\xa0viewpoin" +"t\xc4\xa0victories\xc4\xa0viability\xc4\xa0vertebral\xc4\xa0versatile\xc4\xa0ver" +"ifying\xc4\xa0ventricle\xc4\xa0vengeance\xc4\xa0varieties\xc4\xa0variances\xc4\xa0" +"variables\xc4\xa0vanishing\xc4\xa0valuation\xc4\xa0validated\xc4\xa0utilizing\xc4" +"\xa0utilities\xc4\xa0usability\xc4\xa0uploading\xc4\xa0upgrading\xc4\xa0unwillin" +"g\xc4\xa0unusually\xc4\xa0untreated\xc4\xa0untouched\xc4\xa0unrelated\xc4\xa0unp" +"opular\xc4\xa0unnatural\xc4\xa0unlimited\xc4\xa0uninsured\xc4\xa0uniformly\xc4\xa0" +"unhealthy\xc4\xa0unfolding\xc4\xa0underwent\xc4\xa0underwear\xc4\xa0undertook\xc4" +"\xa0undergone\xc4\xa0undergoes\xc4\xa0undefined\xc4\xa0uncovered\xc4\xa0unchange" +"d\xc4\xa0unbounded\xc4\xa0umbilical\xc4\xa0ubiquitin\xc4\xa0typically\xc4\xa0twe" +"ntieth\xc4\xa0tutorials\xc4\xa0turbulent\xc4\xa0tunneling\xc4\xa0truncated\xc4\xa0" +"troubling\xc4\xa0trimester\xc4\xa0triggered\xc4\xa0triangles\xc4\xa0trembling\xc4" +"\xa0treasures\xc4\xa0travelled\xc4\xa0traveling\xc4\xa0travelers\xc4\xa0traumati" +"c\xc4\xa0transmits\xc4\xa0transient\xc4\xa0transgene\xc4\xa0transfers\xc4\xa0tra" +"nscend\xc4\xa0tolerated\xc4\xa0tolerance\xc4\xa0timestamp\xc4\xa0timescale\xc4\xa0" +"tightened\xc4\xa0thrilling\xc4\xa0threatens\xc4\xa0thousands\xc4\xa0thickness\xc4" +"\xa0thermally\xc4\xa0therefrom\xc4\xa0therefore\xc4\xa0therapies\xc4\xa0textbook" +"s\xc4\xa0testimony\xc4\xa0testified\xc4\xa0testament\xc4\xa0terrorism\xc4\xa0ter" +"ritory\xc4\xa0terrified\xc4\xa0terminals\xc4\xa0tentative\xc4\xa0temporary\xc4\xa0" +"templates\xc4\xa0telephone\xc4\xa0teenagers\xc4\xa0teaspoons\xc4\xa0teammates\xc4" +"\xa0teachings\xc4\xa0taxpayers\xc4\xa0taxonomic\xc4\xa0targeting\xc4\xa0syntheti" +"c\xc4\xa0synthesis\xc4\xa0syndromes\xc4\xa0switching\xc4\xa0sweetness\xc4\xa0swa" +"llowed\xc4\xa0sustained\xc4\xa0suspended\xc4\xa0suspected\xc4\xa0survivors\xc4\xa0" +"surviving\xc4\xa0surrounds\xc4\xa0surrogate\xc4\xa0surprises\xc4\xa0surprised\xc4" +"\xa0surpassed\xc4\xa0surgeries\xc4\xa0supremacy\xc4\xa0supported\xc4\xa0supplyin" +"g\xc4\xa0suppliers\xc4\xa0superhero\xc4\xa0summation\xc4\xa0suggested\xc4\xa0suf" +"fering\xc4\xa0successor\xc4\xa0successes\xc4\xa0succeeded\xc4\xa0subsystem\xc4\xa0" +"subsidies\xc4\xa0submitted\xc4\xa0submerged\xc4\xa0submarine\xc4\xa0subjected\xc4" +"\xa0subgroups\xc4\xa0struggles\xc4\xa0struggled\xc4\xa0strongest\xc4\xa0strippin" +"g\xc4\xa0stringent\xc4\xa0stretches\xc4\xa0stretched\xc4\xa0stressors\xc4\xa0str" +"essful\xc4\xa0strengths\xc4\xa0streaming\xc4\xa0strategic\xc4\xa0strangers\xc4\xa0" +"strangely\xc4\xa0storyline\xc4\xa0stiffness\xc4\xa0statutory\xc4\xa0stationed\xc4" +"\xa0statewide\xc4\xa0startling\xc4\xa0standards\xc4\xa0staircase\xc4\xa0stainles" +"s\xc4\xa0staggered\xc4\xa0stability\xc4\xa0squeezing\xc4\xa0spreading\xc4\xa0spo" +"tlight\xc4\xa0sponsored\xc4\xa0spokesman\xc4\xa0splitting\xc4\xa0spherical\xc4\xa0" +"spectacle\xc4\xa0specimens\xc4\xa0specifies\xc4\xa0specified\xc4\xa0specifics\xc4" +"\xa0specialty\xc4\xa0specially\xc4\xa0spatially\xc4\xa0sparkling\xc4\xa0spacetim" +"e\xc4\xa0southwest\xc4\xa0southeast\xc4\xa0sophomore\xc4\xa0somewhere\xc4\xa0som" +"etimes\xc4\xa0something\xc4\xa0solutions\xc4\xa0societies\xc4\xa0socialist\xc4\xa0" +"socialism\xc4\xa0smoothing\xc4\xa0slightest\xc4\xa0slaughter\xc4\xa0skeptical\xc4" +"\xa0singleton\xc4\xa0sincerely\xc4\xa0simulator\xc4\xa0simulated\xc4\xa0similarl" +"y\xc4\xa0silencing\xc4\xa0signaling\xc4\xa0shrinking\xc4\xa0shrinkage\xc4\xa0sho" +"ulders\xc4\xa0shortened\xc4\xa0shortages\xc4\xa0shootings\xc4\xa0shipments\xc4\xa0" +"shielding\xc4\xa0shattered\xc4\xa0sexuality\xc4\xa0serotonin\xc4\xa0seriously\xc4" +"\xa0sequences\xc4\xa0sequenced\xc4\xa0separator\xc4\xa0separates\xc4\xa0separate" +"d\xc4\xa0separable\xc4\xa0sentences\xc4\xa0sentenced\xc4\xa0sensitive\xc4\xa0sem" +"antics\xc4\xa0selecting\xc4\xa0segmented\xc4\xa0seemingly\xc4\xa0seedlings\xc4\xa0" +"sedentary\xc4\xa0sectional\xc4\xa0secretory\xc4\xa0secretion\xc4\xa0secretary\xc4" +"\xa0secondary\xc4\xa0searching\xc4\xa0scrolling\xc4\xa0screening\xc4\xa0screamin" +"g\xc4\xa0scratched\xc4\xa0scrambled\xc4\xa0sclerosis\xc4\xa0schooling\xc4\xa0sch" +"olarly\xc4\xa0schematic\xc4\xa0schedules\xc4\xa0scheduled\xc4\xa0scenarios\xc4\xa0" +"scattered\xc4\xa0scaffolds\xc4\xa0saturated\xc4\xa0satisfies\xc4\xa0satisfied\xc4" +"\xa0sanctuary\xc4\xa0sanctions\xc4\xa0salvation\xc4\xa0safeguard\xc4\xa0routinel" +"y\xc4\xa0roughness\xc4\xa0rotations\xc4\xa0ribosomal\xc4\xa0rewritten\xc4\xa0rew" +"arding\xc4\xa0revisions\xc4\xa0reviewing\xc4\xa0reviewers\xc4\xa0reversing\xc4\xa0" +"revealing\xc4\xa0returning\xc4\xa0retrieved\xc4\xa0retrieval\xc4\xa0retreated\xc4" +"\xa0reticulum\xc4\xa0retention\xc4\xa0retaining\xc4\xa0retailers\xc4\xa0resultin" +"g\xc4\xa0resultant\xc4\xa0restricts\xc4\xa0restoring\xc4\xa0responses\xc4\xa0res" +"ponded\xc4\xa0respected\xc4\xa0resources\xc4\xa0resonator\xc4\xa0resolving\xc4\xa0" +"resisting\xc4\xa0resistant\xc4\xa0resilient\xc4\xa0residuals\xc4\xa0residents\xc4" +"\xa0residency\xc4\xa0residence\xc4\xa0resembles\xc4\xa0resembled\xc4\xa0resectio" +"n\xc4\xa0requisite\xc4\xa0requiring\xc4\xa0requested\xc4\xa0repulsive\xc4\xa0rep" +"rinted\xc4\xa0repressed\xc4\xa0reporting\xc4\xa0reporters\xc4\xa0replacing\xc4\xa0" +"repeating\xc4\xa0repairing\xc4\xa0renewable\xc4\xa0rendition\xc4\xa0rendering\xc4" +"\xa0removable\xc4\xa0remission\xc4\xa0reminding\xc4\xa0remembers\xc4\xa0remainin" +"g\xc4\xa0remainder\xc4\xa0relocated\xc4\xa0religious\xc4\xa0religions\xc4\xa0rel" +"evance\xc4\xa0relegated\xc4\xa0releasing\xc4\xa0relatives\xc4\xa0rejection\xc4\xa0" +"rejecting\xc4\xa0rehearing\xc4\xa0regulates\xc4\xa0regulated\xc4\xa0regularly\xc4" +"\xa0registers\xc4\xa0regarding\xc4\xa0reflected\xc4\xa0referring\xc4\xa0redundan" +"t\xc4\xa0reductase\xc4\xa0redshifts\xc4\xa0recycling\xc4\xa0recursive\xc4\xa0rec" +"ursion\xc4\xa0recurring\xc4\xa0recurrent\xc4\xa0rectangle\xc4\xa0recruited\xc4\xa0" +"recovered\xc4\xa0reconcile\xc4\xa0recession\xc4\xa0receptors\xc4\xa0receptive\xc4" +"\xa0reception\xc4\xa0receiving\xc4\xa0receivers\xc4\xa0recalling\xc4\xa0rebellio" +"n\xc4\xa0reasoning\xc4\xa0realizing\xc4\xa0realities\xc4\xa0realistic\xc4\xa0rea" +"diness\xc4\xa0reactions\xc4\xa0rationale\xc4\xa0radically\xc4\xa0radiative\xc4\xa0" +"radiation\xc4\xa0questions\xc4\xa0quenching\xc4\xa0quarterly\xc4\xa0qualities\xc4" +"\xa0qualified\xc4\xa0quadratic\xc4\xa0purported\xc4\xa0purchases\xc4\xa0purchase" +"r\xc4\xa0purchased\xc4\xa0pulmonary\xc4\xa0published\xc4\xa0publicity\xc4\xa0psy" +"chotic\xc4\xa0psychosis\xc4\xa0psoriasis\xc4\xa0proximity\xc4\xa0proximate\xc4\xa0" +"provinces\xc4\xa0providing\xc4\xa0providers\xc4\xa0prototype\xc4\xa0protocols\xc4" +"\xa0protested\xc4\xa0protector\xc4\xa0protected\xc4\xa0proteases\xc4\xa0prospect" +"s\xc4\xa0propriety\xc4\xa0proposing\xc4\xa0proposals\xc4\xa0prompting\xc4\xa0pro" +"moting\xc4\xa0promoters\xc4\xa0promising\xc4\xa0prolonged\xc4\xa0projector\xc4\xa0" +"projected\xc4\xa0prohibits\xc4\xa0prognosis\xc4\xa0profiling\xc4\xa0proffered\xc4" +"\xa0producing\xc4\xa0producers\xc4\xa0processes\xc4\xa0processed\xc4\xa0proceede" +"d\xc4\xa0probative\xc4\xa0probation\xc4\xa0proactive\xc4\xa0privately\xc4\xa0pri" +"soners\xc4\xa0primitive\xc4\xa0primarily\xc4\xa0prevented\xc4\xa0prevalent\xc4\xa0" +"prevailed\xc4\xa0pretended\xc4\xa0pressures\xc4\xa0preserves\xc4\xa0preserved\xc4" +"\xa0presently\xc4\xa0presented\xc4\xa0preseason\xc4\xa0preschool\xc4\xa0preparin" +"g\xc4\xa0premiered\xc4\xa0premature\xc4\xa0pregnancy\xc4\xa0preferred\xc4\xa0pre" +"dicted\xc4\xa0predators\xc4\xa0precludes\xc4\xa0precluded\xc4\xa0precision\xc4\xa0" +"precisely\xc4\xa0preceding\xc4\xa0precedent\xc4\xa0preaching\xc4\xa0pragmatic\xc4" +"\xa0practices\xc4\xa0practiced\xc4\xa0potassium\xc4\xa0postponed\xc4\xa0postnata" +"l\xc4\xa0posterior\xc4\xa0possesses\xc4\xa0possessed\xc4\xa0positives\xc4\xa0pos" +"itions\xc4\xa0portrayed\xc4\xa0portraits\xc4\xa0portfolio\xc4\xa0populated\xc4\xa0" +"pol\xc3\x83\xc5\x83tica\xc4\xa0polymeric\xc4\xa0polyester\xc4\xa0pollution\xc4\xa0" +"politique\xc4\xa0polishing\xc4\xa0policeman\xc4\xa0polarized\xc4\xa0poisoning\xc4" +"\xa0pointless\xc4\xa0plurality\xc4\xa0pleasures\xc4\xa0pleadings\xc4\xa0plausibl" +"e\xc4\xa0platforms\xc4\xa0platelets\xc4\xa0planetary\xc4\xa0placental\xc4\xa0pla" +"cement\xc4\xa0pituitary\xc4\xa0pipelines\xc4\xa0physicist\xc4\xa0phosphate\xc4\xa0" +"petroleum\xc4\xa0petitions\xc4\xa0pervasive\xc4\xa0perturbed\xc4\xa0pertinent\xc4" +"\xa0persuaded\xc4\xa0personnel\xc4\xa0persisted\xc4\xa0perpetual\xc4\xa0permitte" +"d\xc4\xa0periphery\xc4\xa0perimeter\xc4\xa0perfusion\xc4\xa0performed\xc4\xa0per" +"fectly\xc4\xa0perennial\xc4\xa0perceived\xc4\xa0peninsula\xc4\xa0penetrate\xc4\xa0" +"penalties\xc4\xa0pediatric\xc4\xa0patterned\xc4\xa0patriotic\xc4\xa0patriarch\xc4" +"\xa0patiently\xc4\xa0pathology\xc4\xa0pathogens\xc4\xa0passwords\xc4\xa0partnere" +"d\xc4\xa0particles\xc4\xa0partially\xc4\xa0parlament\xc4\xa0parenting\xc4\xa0par" +"chment\xc4\xa0parasitic\xc4\xa0parasites\xc4\xa0paramount\xc4\xa0paralysis\xc4\xa0" +"parallels\xc4\xa0parabolic\xc4\xa0paperwork\xc4\xa0paintings\xc4\xa0painfully\xc4" +"\xa0packaging\xc4\xa0oxidative\xc4\xa0oxidation\xc4\xa0ownership\xc4\xa0overwrit" +"e\xc4\xa0overthrow\xc4\xa0oversight\xc4\xa0overruled\xc4\xa0overnight\xc4\xa0out" +"skirts\xc4\xa0outbreaks\xc4\xa0ourselves\xc4\xa0otherwise\xc4\xa0organized\xc4\xa0" +"organisms\xc4\xa0organised\xc4\xa0ordinance\xc4\xa0orchestra\xc4\xa0optimized\xc4" +"\xa0optically\xc4\xa0oppressed\xc4\xa0opponents\xc4\xa0operators\xc4\xa0operativ" +"e\xc4\xa0operating\xc4\xa0omissions\xc4\xa0olfactory\xc4\xa0offspring\xc4\xa0off" +"season\xc4\xa0officials\xc4\xa0offerings\xc4\xa0offensive\xc4\xa0offending\xc4\xa0" +"offenders\xc4\xa0occurring\xc4\xa0occupying\xc4\xa0occupants\xc4\xa0occupancy\xc4" +"\xa0occlusion\xc4\xa0occasions\xc4\xa0obviously\xc4\xa0obtaining\xc4\xa0obstetri" +"c\xc4\xa0obstacles\xc4\xa0obsession\xc4\xa0observing\xc4\xa0observers\xc4\xa0obl" +"igated\xc4\xa0obedience\xc4\xa0nutrients\xc4\xa0notorious\xc4\xa0notations\xc4\xa0" +"northwest\xc4\xa0northeast\xc4\xa0normative\xc4\xa0nonprofit\xc4\xa0nonlinear\xc4" +"\xa0nominated\xc4\xa0nightmare\xc4\xa0neutrinos\xc4\xa0neoplasms\xc4\xa0neighbor" +"s\xc4\xa0negligent\xc4\xa0neglected\xc4\xa0necessity\xc4\xa0necessary\xc4\xa0nat" +"urally\xc4\xa0nationals\xc4\xa0narrowing\xc4\xa0narcotics\xc4\xa0namespace\xc4\xa0" +"mythology\xc4\xa0mysteries\xc4\xa0mutations\xc4\xa0musicians\xc4\xa0mushrooms\xc4" +"\xa0multitude\xc4\xa0multiplex\xc4\xa0movements\xc4\xa0mountains\xc4\xa0motivate" +"d\xc4\xa0mortgages\xc4\xa0mortality\xc4\xa0morphisms\xc4\xa0morbidity\xc4\xa0moo" +"nlight\xc4\xa0monuments\xc4\xa0monstrous\xc4\xa0monotonic\xc4\xa0monolayer\xc4\xa0" +"monocytes\xc4\xa0monitored\xc4\xa0monastery\xc4\xa0molecules\xc4\xa0molecular\xc4" +"\xa0modulator\xc4\xa0modulates\xc4\xa0modulated\xc4\xa0modifying\xc4\xa0moderato" +"r\xc4\xa0modelling\xc4\xa0misplaced\xc4\xa0miserable\xc4\xa0ministers\xc4\xa0min" +"imizes\xc4\xa0minimized\xc4\xa0minimally\xc4\xa0miniature\xc4\xa0militants\xc4\xa0" +"milestone\xc4\xa0migration\xc4\xa0migrating\xc4\xa0microwave\xc4\xa0microglia\xc4" +"\xa0microbial\xc4\xa0metformin\xc4\xa0metabolic\xc4\xa0messenger\xc4\xa0messagin" +"g\xc4\xa0merchants\xc4\xa0mentioned\xc4\xa0mentality\xc4\xa0menstrual\xc4\xa0mem" +"orable\xc4\xa0membranes\xc4\xa0medicines\xc4\xa0medicinal\xc4\xa0medically\xc4\xa0" +"mediators\xc4\xa0mediation\xc4\xa0mediating\xc4\xa0medalists\xc4\xa0mechanics\xc4" +"\xa0measuring\xc4\xa0meanwhile\xc4\xa0materials\xc4\xa0massively\xc4\xa0masculin" +"e\xc4\xa0marriages\xc4\xa0marketing\xc4\xa0marijuana\xc4\xa0manifolds\xc4\xa0man" +"ifests\xc4\xa0mandatory\xc4\xa0mammalian\xc4\xa0malignant\xc4\xa0malicious\xc4\xa0" +"maintains\xc4\xa0magnesium\xc4\xa0magazines\xc4\xa0machining\xc4\xa0machinery\xc4" +"\xa0lymphatic\xc4\xa0luxurious\xc4\xa0luminance\xc4\xa0lucrative\xc4\xa0longitud" +"e\xc4\xa0longevity\xc4\xa0logistics\xc4\xa0logically\xc4\xa0locations\xc4\xa0loc" +"alized\xc4\xa0localhost\xc4\xa0livestock\xc4\xa0literally\xc4\xa0listening\xc4\xa0" +"listeners\xc4\xa0liquidity\xc4\xa0liposomes\xc4\xa0lingering\xc4\xa0linearity\xc4" +"\xa0limestone\xc4\xa0lightning\xc4\xa0lifestyle\xc4\xa0licensing\xc4\xa0librarie" +"s\xc4\xa0liberties\xc4\xa0liberated\xc4\xa0liability\xc4\xa0legendary\xc4\xa0law" +"makers\xc4\xa0launching\xc4\xa0laterally\xc4\xa0languages\xc4\xa0landmarks\xc4\xa0" +"labelling\xc4\xa0knowingly\xc4\xa0knockdown\xc4\xa0kilograms\xc4\xa0kidnapped\xc4" +"\xa0keyboards\xc4\xa0justified\xc4\xa0junctions\xc4\xa0judiciary\xc4\xa0judgment" +"s\xc4\xa0judgement\xc4\xa0iterative\xc4\xa0isotropic\xc4\xa0isolation\xc4\xa0irr" +"egular\xc4\xa0involving\xc4\xa0invisible\xc4\xa0investors\xc4\xa0investing\xc4\xa0" +"inversion\xc4\xa0inversely\xc4\xa0inventory\xc4\xa0inventors\xc4\xa0intuitive\xc4" +"\xa0intuition\xc4\xa0intrusion\xc4\xa0intrigued\xc4\xa0intricate\xc4\xa0intestin" +"e\xc4\xa0intervene\xc4\xa0intervals\xc4\xa0interplay\xc4\xa0interests\xc4\xa0int" +"eracts\xc4\xa0intensive\xc4\xa0intensity\xc4\xa0intensely\xc4\xa0intending\xc4\xa0" +"integrity\xc4\xa0integrals\xc4\xa0insurance\xc4\xa0insulting\xc4\xa0insulator\xc4" +"\xa0insulated\xc4\xa0instincts\xc4\xa0instantly\xc4\xa0instances\xc4\xa0installe" +"r\xc4\xa0installed\xc4\xa0inspiring\xc4\xa0inspector\xc4\xa0inspected\xc4\xa0ins" +"oluble\xc4\xa0insisting\xc4\xa0inserting\xc4\xa0inquiries\xc4\xa0inpatient\xc4\xa0" +"inorganic\xc4\xa0innocence\xc4\xa0injustice\xc4\xa0injective\xc4\xa0injecting\xc4" +"\xa0initiated\xc4\xa0initially\xc4\xa0inhibited\xc4\xa0inherited\xc4\xa0inhabite" +"d\xc4\xa0ingestion\xc4\xa0informing\xc4\xa0informant\xc4\xa0influenza\xc4\xa0inf" +"licted\xc4\xa0inflation\xc4\xa0infinites\xc4\xa0inductive\xc4\xa0induction\xc4\xa0" +"inducible\xc4\xa0indicates\xc4\xa0indicated\xc4\xa0incumbent\xc4\xa0incubated\xc4" +"\xa0increases\xc4\xa0increased\xc4\xa0inclusive\xc4\xa0including\xc4\xa0incident" +"s\xc4\xa0incidence\xc4\xa0inception\xc4\xa0incapable\xc4\xa0inaugural\xc4\xa0ina" +"bility\xc4\xa0improving\xc4\xa0impressed\xc4\xa0importing\xc4\xa0implanted\xc4\xa0" +"imperfect\xc4\xa0impending\xc4\xa0impedance\xc4\xa0impatient\xc4\xa0impartial\xc4" +"\xa0impacting\xc4\xa0immunized\xc4\xa0immersion\xc4\xa0immensely\xc4\xa0imitatio" +"n\xc4\xa0imbalance\xc4\xa0imagining\xc4\xa0imaginary\xc4\xa0illnesses\xc4\xa0ill" +"egally\xc4\xa0ignorance\xc4\xa0hydroxide\xc4\xa0hydraulic\xc4\xa0hydration\xc4\xa0" +"hurricane\xc4\xa0hostility\xc4\xa0hospitals\xc4\xa0hopefully\xc4\xa0honorable\xc4" +"\xa0homestead\xc4\xa0histories\xc4\xa0histology\xc4\xa0hilarious\xc4\xa0hierarch" +"y\xc4\xa0heuristic\xc4\xa0hesitated\xc4\xa0hereafter\xc4\xa0hepatitis\xc4\xa0hea" +"rtbeat\xc4\xa0healthier\xc4\xa0headlines\xc4\xa0headaches\xc4\xa0hazardous\xc4\xa0" +"harvested\xc4\xa0harboring\xc4\xa0happiness\xc4\xa0happening\xc4\xa0guitarist\xc4" +"\xa0guardians\xc4\xa0greatness\xc4\xa0gratitude\xc4\xa0graphical\xc4\xa0graduate" +"s\xc4\xa0graduated\xc4\xa0gradually\xc4\xa0gradients\xc4\xa0governors\xc4\xa0gov" +"erning\xc4\xa0glutamate\xc4\xa0geography\xc4\xa0genuinely\xc4\xa0gentlemen\xc4\xa0" +"gentleman\xc4\xa0genotypes\xc4\xa0generates\xc4\xa0generated\xc4\xa0generally\xc4" +"\xa0gardening\xc4\xa0galleries\xc4\xa0""furniture\xc4\xa0""furnished\xc4\xa0""fu" +"nctions\xc4\xa0""fulfilled\xc4\xa0""frivolous\xc4\xa0""frequency\xc4\xa0""freela" +"nce\xc4\xa0""franchise\xc4\xa0""fragrance\xc4\xa0""fragments\xc4\xa0""fractures\xc4" +"\xa0""fractured\xc4\xa0""fractions\xc4\xa0""forwarded\xc4\xa0""fortunate\xc4\xa0" +"""fortified\xc4\xa0""formatted\xc4\xa0""formalism\xc4\xa0""forgotten\xc4\xa0""fo" +"regoing\xc4\xa0""forefront\xc4\xa0""forecasts\xc4\xa0""forbidden\xc4\xa0""footst" +"eps\xc4\xa0""footprint\xc4\xa0""following\xc4\xa0""followers\xc4\xa0""follicles\xc4" +"\xa0""flowering\xc4\xa0""flattened\xc4\xa0""fishermen\xc4\xa0""fireworks\xc4\xa0" +"""fireplace\xc4\xa0""finishing\xc4\xa0""financing\xc4\xa0""filtering\xc4\xa0""fi" +"laments\xc4\xa0""fiduciary\xc4\xa0""fictional\xc4\xa0""festivals\xc4\xa0""fertil" +"ity\xc4\xa0""featuring\xc4\xa0""favourite\xc4\xa0""favorites\xc4\xa0""favorably\xc4" +"\xa0""favorable\xc4\xa0""fashioned\xc4\xa0""fantastic\xc4\xa0""fantasies\xc4\xa0" +"""factories\xc4\xa0""extrusion\xc4\xa0""extrinsic\xc4\xa0""extremity\xc4\xa0""ex" +"tremely\xc4\xa0""extracted\xc4\xa0""extending\xc4\xa0""exquisite\xc4\xa0""expres" +"sly\xc4\xa0""expresses\xc4\xa0""expressed\xc4\xa0""exposures\xc4\xa0""exponents\xc4" +"\xa0""exploring\xc4\xa0""exploited\xc4\xa0""explained\xc4\xa0""expertise\xc4\xa0" +"""expensive\xc4\xa0""expecting\xc4\xa0""expansive\xc4\xa0""expanding\xc4\xa0""ex" +"ogenous\xc4\xa0""existence\xc4\xa0""exhibited\xc4\xa0""exhausted\xc4\xa0""exerci" +"ses\xc4\xa0""exercised\xc4\xa0""exemplary\xc4\xa0""execution\xc4\xa0""executing\xc4" +"\xa0""excretion\xc4\xa0""exclusion\xc4\xa0""excluding\xc4\xa0""exclaimed\xc4\xa0" +"""exchanges\xc4\xa0""exchanger\xc4\xa0""exchanged\xc4\xa0""excellent\xc4\xa0""ex" +"amining\xc4\xa0""evidently\xc4\xa0""evidenced\xc4\xa0""everybody\xc4\xa0""evalua" +"tes\xc4\xa0""evaluated\xc4\xa0""evacuated\xc4\xa0""ethnicity\xc4\xa0""estimates\xc4" +"\xa0""estimated\xc4\xa0""equitable\xc4\xa0""equipment\xc4\xa0""equations\xc4\xa0" +"""epidermis\xc4\xa0""epidermal\xc4\xa0""enzymatic\xc4\xa0""envelopes\xc4\xa0""en" +"trusted\xc4\xa0""entangled\xc4\xa0""ensembles\xc4\xa0""enjoyment\xc4\xa0""enjoya" +"ble\xc4\xa0""enhancing\xc4\xa0""engineers\xc4\xa0""enforcing\xc4\xa0""energetic\xc4" +"\xa0""endurance\xc4\xa0""endpoints\xc4\xa0""endocrine\xc4\xa0""encrypted\xc4\xa0" +"""enclosure\xc4\xa0""enactment\xc4\xa0""empowered\xc4\xa0""employing\xc4\xa0""em" +"ployers\xc4\xa0""employees\xc4\xa0""emissions\xc4\xa0""emergency\xc4\xa0""emerge" +"nce\xc4\xa0""embryonic\xc4\xa0""embracing\xc4\xa0""elsewhere\xc4\xa0""elongated\xc4" +"\xa0""elevation\xc4\xa0""elephants\xc4\xa0""elemental\xc4\xa0""electrons\xc4\xa0" +"""electoral\xc4\xa0""elections\xc4\xa0""educators\xc4\xa0""editorial\xc4\xa0""ec" +"onomies\xc4\xa0""economics\xc4\xa0""eccentric\xc4\xa0""dysplasia\xc4\xa0""durati" +"ons\xc4\xa0""drawbacks\xc4\xa0""downloads\xc4\xa0""doubtless\xc4\xa0""donations\xc4" +"\xa0""dominates\xc4\xa0""dominated\xc4\xa0""dominance\xc4\xa0""documents\xc4\xa0" +"""doctrines\xc4\xa0""divisions\xc4\xa0""dividends\xc4\xa0""diversity\xc4\xa0""di" +"version\xc4\xa0""divergent\xc4\xa0""disulfide\xc4\xa0""disturbed\xc4\xa0""distri" +"cts\xc4\xa0""distorted\xc4\xa0""distilled\xc4\xa0""distances\xc4\xa0""dissolved\xc4" +"\xa0""dissected\xc4\xa0""disrupted\xc4\xa0""disregard\xc4\xa0""displayed\xc4\xa0" +"""displaced\xc4\xa0""dispersed\xc4\xa0""dispersal\xc4\xa0""disparity\xc4\xa0""di" +"sparate\xc4\xa0""disorders\xc4\xa0""dismissed\xc4\xa0""dismissal\xc4\xa0""disgui" +"sed\xc4\xa0""discusses\xc4\xa0""discussed\xc4\xa0""discovery\xc4\xa0""discovers\xc4" +"\xa0""discourse\xc4\xa0""discounts\xc4\xa0""discloses\xc4\xa0""disclosed\xc4\xa0" +"""disciples\xc4\xa0""discarded\xc4\xa0""disbelief\xc4\xa0""disasters\xc4\xa0""di" +"sagreed\xc4\xa0""disabling\xc4\xa0""directory\xc4\xa0""directors\xc4\xa0""direct" +"ing\xc4\xa0""diplomats\xc4\xa0""diplomacy\xc4\xa0""diligence\xc4\xa0""digitally\xc4" +"\xa0""digestive\xc4\xa0""digestion\xc4\xa0""diffusion\xc4\xa0""differing\xc4\xa0" +"""dictators\xc4\xa0""diastolic\xc4\xa0""diaphragm\xc4\xa0""diameters\xc4\xa0""di" +"agnosis\xc4\xa0""diagnoses\xc4\xa0""diagnosed\xc4\xa0""developed\xc4\xa0""deterg" +"ent\xc4\xa0""detention\xc4\xa0""detectors\xc4\xa0""detection\xc4\xa0""detecting\xc4" +"\xa0""detainees\xc4\xa0""detailing\xc4\xa0""destroyed\xc4\xa0""desirable\xc4\xa0" +"""designing\xc4\xa0""designers\xc4\xa0""describes\xc4\xa0""described\xc4\xa0""de" +"scended\xc4\xa0""desarroll\xc4\xa0""depressed\xc4\xa0""deposited\xc4\xa0""deploy" +"ing\xc4\xa0""depletion\xc4\xa0""depiction\xc4\xa0""depicting\xc4\xa0""depending\xc4" +"\xa0""dependent\xc4\xa0""departure\xc4\xa0""departing\xc4\xa0""densities\xc4\xa0" +"""denounced\xc4\xa0""dendritic\xc4\xa0""democracy\xc4\xa0""demanding\xc4\xa0""de" +"livered\xc4\xa0""delighted\xc4\xa0""delicious\xc4\xa0""deletions\xc4\xa0""delega" +"tes\xc4\xa0""deficient\xc4\xa0""deference\xc4\xa0""defensive\xc4\xa0""defending\xc4" +"\xa0""defenders\xc4\xa0""defective\xc4\xa0""defeating\xc4\xa0""dedicated\xc4\xa0" +"""decreases\xc4\xa0""decreased\xc4\xa0""decorated\xc4\xa0""declining\xc4\xa0""de" +"claring\xc4\xa0""decisions\xc4\xa0""decidedly\xc4\xa0""deceptive\xc4\xa0""decept" +"ion\xc4\xa0""debugging\xc4\xa0""deadlines\xc4\xa0""daughters\xc4\xa0""databases\xc4" +"\xa0""dashboard\xc4\xa0""dangerous\xc4\xa0""cytosolic\xc4\xa0""cytometry\xc4\xa0" +"""cytokines\xc4\xa0""cylinders\xc4\xa0""cutaneous\xc4\xa0""customers\xc4\xa0""cu" +"stomary\xc4\xa0""curvature\xc4\xa0""currently\xc4\xa0""curiosity\xc4\xa0""cultiv" +"ars\xc4\xa0""crossover\xc4\xa0""crossings\xc4\xa0""criterion\xc4\xa0""criminals\xc4" +"\xa0""creditors\xc4\xa0""creatures\xc4\xa0""creations\xc4\xa0""coworkers\xc4\xa0" +"""covariant\xc4\xa0""courtyard\xc4\xa0""courtroom\xc4\xa0""couplings\xc4\xa0""co" +"untries\xc4\xa0""countless\xc4\xa0""countable\xc4\xa0""counselor\xc4\xa0""cosmol" +"ogy\xc4\xa0""corrupted\xc4\xa0""corrosion\xc4\xa0""corridors\xc4\xa0""correctly\xc4" +"\xa0""corrected\xc4\xa0""corporate\xc4\xa0""corollary\xc4\xa0""cooperate\xc4\xa0" +"""convinced\xc4\xa0""convicted\xc4\xa0""conveying\xc4\xa0""converter\xc4\xa0""co" +"nverted\xc4\xa0""converges\xc4\xa0""contrasts\xc4\xa0""contracts\xc4\xa0""contin" +"uum\xc4\xa0""continues\xc4\xa0""continued\xc4\xa0""contested\xc4\xa0""contender\xc4" +"\xa0""contended\xc4\xa0""contained\xc4\xa0""contacted\xc4\xa0""consuming\xc4\xa0" +"""consumers\xc4\xa0""consulted\xc4\xa0""construed\xc4\xa0""constexpr\xc4\xa0""co" +"nstants\xc4\xa0""consisted\xc4\xa0""considers\xc4\xa0""conserved\xc4\xa0""consen" +"ted\xc4\xa0""consensus\xc4\xa0""conscient\xc4\xa0""conquered\xc4\xa0""connected\xc4" +"\xa0""confusion\xc4\xa0""confusing\xc4\xa0""conformal\xc4\xa0""conflicts\xc4\xa0" +"""confirmed\xc4\xa0""confessed\xc4\xa0""conferred\xc4\xa0""conducted\xc4\xa0""co" +"ndensed\xc4\xa0""condemned\xc4\xa0""concludes\xc4\xa0""concluded\xc4\xa0""concer" +"ned\xc4\xa0""conceived\xc4\xa0""concealed\xc4\xa0""computing\xc4\xa0""computers\xc4" +"\xa0""comprises\xc4\xa0""comprised\xc4\xa0""compounds\xc4\xa0""composing\xc4\xa0" +"""composers\xc4\xa0""compliant\xc4\xa0""complexes\xc4\xa0""completes\xc4\xa0""co" +"mpleted\xc4\xa0""complains\xc4\xa0""compiling\xc4\xa0""competing\xc4\xa0""compet" +"ent\xc4\xa0""compelled\xc4\xa0""comparing\xc4\xa0""companies\xc4\xa0""commuting\xc4" +"\xa0""community\xc4\xa0""communist\xc4\xa0""communism\xc4\xa0""commodity\xc4\xa0" +"""committed\xc4\xa0""commented\xc4\xa0""commenced\xc4\xa0""commanded\xc4\xa0""co" +"mbining\xc4\xa0""columnist\xc4\xa0""collected\xc4\xa0""collapsed\xc4\xa0""coinci" +"des\xc4\xa0""coherence\xc4\xa0""cognitive\xc4\xa0""cognition\xc4\xa0""coalition\xc4" +"\xa0""clustered\xc4\xa0""clearance\xc4\xa0""cleansing\xc4\xa0""classical\xc4\xa0" +"""className\xc4\xa0""clarified\xc4\xa0""claimants\xc4\xa0""civilized\xc4\xa0""ci" +"vilians\xc4\xa0""citations\xc4\xa0""cisplatin\xc4\xa0""cirrhosis\xc4\xa0""circui" +"try\xc4\xa0""circadian\xc4\xa0""chromatin\xc4\xa0""chocolate\xc4\xa0""childhood\xc4" +"\xa0""chemokine\xc4\xa0""chemistry\xc4\xa0""chemicals\xc4\xa0""checklist\xc4\xa0" +"""charities\xc4\xa0""champagne\xc4\xa0""cessation\xc4\xa0""certified\xc4\xa0""ce" +"rtainty\xc4\xa0""certainly\xc4\xa0""centuries\xc4\xa0""centrally\xc4\xa0""cellul" +"ose\xc4\xa0""celebrity\xc4\xa0""causative\xc4\xa0""causation\xc4\xa0""causality\xc4" +"\xa0""cathedral\xc4\xa0""catalytic\xc4\xa0""catalysts\xc4\xa0""catalogue\xc4\xa0" +"""cartilage\xc4\xa0""carefully\xc4\xa0""cardboard\xc4\xa0""carbonate\xc4\xa0""ca" +"pturing\xc4\xa0""capillary\xc4\xa0""canonical\xc4\xa0""cancelled\xc4\xa0""campai" +"gns\xc4\xa0""butterfly\xc4\xa0""buildings\xc4\xa0""brutality\xc4\xa0""bronchial\xc4" +"\xa0""broadband\xc4\xa0""brilliant\xc4\xa0""brightest\xc4\xa0""breathing\xc4\xa0" +"""breakfast\xc4\xa0""breakdown\xc4\xa0""branching\xc4\xa0""boyfriend\xc4\xa0""bo" +"urgeois\xc4\xa0""borrowing\xc4\xa0""bootstrap\xc4\xa0""blindness\xc4\xa0""blessi" +"ngs\xc4\xa0""bipartite\xc4\xa0""biography\xc4\xa0""biodegrad\xc4\xa0""bioactive\xc4" +"\xa0""bilateral\xc4\xa0""bijection\xc4\xa0""beverages\xc4\xa0""benefited\xc4\xa0" +"""believing\xc4\xa0""believers\xc4\xa0""behaviors\xc4\xa0""batteries\xc4\xa0""ba" +"ttalion\xc4\xa0""bathrooms\xc4\xa0""basically\xc4\xa0""bandwidth\xc4\xa0""ballis" +"tic\xc4\xa0""balancing\xc4\xa0""bacterium\xc4\xa0""bacterial\xc4\xa0""backwards\xc4" +"\xa0""awareness\xc4\xa0""awakening\xc4\xa0""avoidance\xc4\xa0""averaging\xc4\xa0" +"""available\xc4\xa0""auxiliary\xc4\xa0""autosomal\xc4\xa0""autophagy\xc4\xa0""au" +"tonomic\xc4\xa0""automated\xc4\xa0""authority\xc4\xa0""augmented\xc4\xa0""audien" +"ces\xc4\xa0""attracted\xc4\xa0""attorneys\xc4\xa0""attitudes\xc4\xa0""attention\xc4" +"\xa0""attending\xc4\xa0""attendees\xc4\xa0""attendant\xc4\xa0""attempted\xc4\xa0" +"""attacking\xc4\xa0""attackers\xc4\xa0""attaching\xc4\xa0""asymmetry\xc4\xa0""as" +"trophys\xc4\xa0""astronomy\xc4\xa0""astronaut\xc4\xa0""assurance\xc4\xa0""assist" +"ing\xc4\xa0""assigning\xc4\xa0""assessing\xc4\xa0""asserting\xc4\xa0""assembled\xc4" +"\xa0""assaulted\xc4\xa0""ascending\xc4\xa0""artillery\xc4\xa0""artifacts\xc4\xa0" +"""arthritis\xc4\xa0""arresting\xc4\xa0""arranging\xc4\xa0""arguments\xc4\xa0""ar" +"bitrary\xc4\xa0""approving\xc4\xa0""appraisal\xc4\xa0""appointed\xc4\xa0""appell" +"ees\xc4\xa0""appellate\xc4\xa0""appearing\xc4\xa0""appealing\xc4\xa0""apoptotic\xc4" +"\xa0""apoptosis\xc4\xa0""apologies\xc4\xa0""antiviral\xc4\xa0""antitumor\xc4\xa0" +"""antitrust\xc4\xa0""antisense\xc4\xa0""antipsych\xc4\xa0""answering\xc4\xa0""an" +"onymous\xc4\xa0""anonymity\xc4\xa0""anomalous\xc4\xa0""anomalies\xc4\xa0""annoya" +"nce\xc4\xa0""announces\xc4\xa0""announced\xc4\xa0""annotated\xc4\xa0""annealing\xc4" +"\xa0""ancestral\xc4\xa0""ancestors\xc4\xa0""analyzing\xc4\xa0""analytics\xc4\xa0" +"""analogues\xc4\xa0""analogous\xc4\xa0""analgesic\xc4\xa0""anaerobic\xc4\xa0""am" +"usement\xc4\xa0""amplifier\xc4\xa0""amplified\xc4\xa0""amorphous\xc4\xa0""amenit" +"ies\xc4\xa0""ambulance\xc4\xa0""ambitious\xc4\xa0""ambitions\xc4\xa0""ambiguous\xc4" +"\xa0""ambiguity\xc4\xa0""aluminium\xc4\xa0""alternate\xc4\xa0""alongside\xc4\xa0" +"""allowance\xc4\xa0""allocated\xc4\xa0""alleviate\xc4\xa0""allergies\xc4\xa0""al" +"legedly\xc4\xa0""algebraic\xc4\xa0""alcoholic\xc4\xa0""agitation\xc4\xa0""aftern" +"oon\xc4\xa0""aftermath\xc4\xa0""affirming\xc4\xa0""affective\xc4\xa0""affection\xc4" +"\xa0""affecting\xc4\xa0""advocates\xc4\xa0""advocated\xc4\xa0""adversely\xc4\xa0" +"""adversary\xc4\xa0""advancing\xc4\xa0""adulthood\xc4\xa0""admitting\xc4\xa0""ad" +"mirable\xc4\xa0""adjusting\xc4\xa0""adjoining\xc4\xa0""adiabatic\xc4\xa0""adhere" +"nce\xc4\xa0""adenosine\xc4\xa0""addresses\xc4\xa0""addressed\xc4\xa0""additives\xc4" +"\xa0""additions\xc4\xa0""addictive\xc4\xa0""addiction\xc4\xa0""actresses\xc4\xa0" +"""activists\xc4\xa0""activator\xc4\xa0""activates\xc4\xa0""activated\xc4\xa0""ac" +"quittal\xc4\xa0""acquiring\xc4\xa0""achieving\xc4\xa0""accretion\xc4\xa0""accoun" +"ted\xc4\xa0""acclaimed\xc4\xa0""accidents\xc4\xa0""accessory\xc4\xa0""accession\xc4" +"\xa0""accessing\xc4\xa0""accepting\xc4\xa0""academics\xc4\xa0""absorbing\xc4\xa0" +"""abortions\xc4\xa0""abolition\xc4\xa0""abolished\xc4\xa0""abilities\xc4\xa0""ab" +"dominal\xc4\xa0""abandoned\xc4\xa0Yorkshire\xc4\xa0Wrestling\xc4\xa0WordPress\xc4" +"\xa0Worcester\xc4\xa0Wisconsin\xc4\xa0Wikipedia\xc4\xa0Weinstein\xc4\xa0Wednesda" +"y\xc4\xa0Victorian\xc4\xa0Venezuela\xc4\xa0Variables\xc4\xa0Vancouver\xc4\xa0Val" +"entine\xc4\xa0Universal\xc4\xa0Ukrainian\xc4\xa0Typically\xc4\xa0Treatment\xc4\xa0" +"Transform\xc4\xa0Therefore\xc4\xa0Testament\xc4\xa0Territory\xc4\xa0Tennessee\xc4" +"\xa0Telescope\xc4\xa0Telegraph\xc4\xa0Technical\xc4\xa0Synthesis\xc4\xa0Symposiu" +"m\xc4\xa0Submitted\xc4\xa0Structure\xc4\xa0Strategic\xc4\xa0Stockholm\xc4\xa0Ste" +"venson\xc4\xa0Stephanie\xc4\xa0Statement\xc4\xa0Starbucks\xc4\xa0Standards\xc4\xa0" +"Southwest\xc4\xa0Southeast\xc4\xa0Sometimes\xc4\xa0Something\xc4\xa0Solutions\xc4" +"\xa0Socialist\xc4\xa0Singapore\xc4\xa0Similarly\xc4\xa0Signature\xc4\xa0Signalin" +"g\xc4\xa0Sheffield\xc4\xa0Seriously\xc4\xa0September\xc4\xa0Selection\xc4\xa0Sec" +"retary\xc4\xa0Secondary\xc4\xa0Sebastian\xc4\xa0Scripture\xc4\xa0Schneider\xc4\xa0" +"Schematic\xc4\xa0Roosevelt\xc4\xa0Rodriguez\xc4\xa0Rochester\xc4\xa0Robertson\xc4" +"\xa0Resources\xc4\xa0Reporting\xc4\xa0Religious\xc4\xa0Regarding\xc4\xa0Reductio" +"n\xc4\xa0Recommend\xc4\xa0Questions\xc4\xa0Published\xc4\xa0Programme\xc4\xa0Pro" +"fessor\xc4\xa0Principal\xc4\xa0Princeton\xc4\xa0Potential\xc4\xa0Political\xc4\xa0" +"Poincar\xc3\x83\xc2\xa9\xc4\xa0Pinterest\xc4\xa0Photoshop\xc4\xa0Peninsula\xc4\xa0" +"Pediatric\xc4\xa0Patterson\xc4\xa0Parlement\xc4\xa0Parkinson\xc4\xa0Palestine\xc4" +"\xa0Pakistani\xc4\xa0Otherwise\xc4\xa0Orchestra\xc4\xa0Operating\xc4\xa0Obviousl" +"y\xc4\xa0Objective\xc4\xa0Obamacare\xc4\xa0OTHERWISE\xc4\xa0Nutrition\xc4\xa0Nor" +"wegian\xc4\xa0Northeast\xc4\xa0Nietzsche\xc4\xa0Newcastle\xc4\xa0Netanyahu\xc4\xa0" +"Naturally\xc4\xa0Nashville\xc4\xa0Municipal\xc4\xa0Mountains\xc4\xa0Molecular\xc4" +"\xa0Minnesota\xc4\xa0Milwaukee\xc4\xa0Migration\xc4\xa0Microsoft\xc4\xa0Methodis" +"t\xc4\xa0Messenger\xc4\xa0Melbourne\xc4\xa0Meanwhile\xc4\xa0McConnell\xc4\xa0Mat" +"erials\xc4\xa0Marketing\xc4\xa0Manhattan\xc4\xa0Malaysian\xc4\xa0Louisiana\xc4\xa0" +"Liverpool\xc4\xa0Lipschitz\xc4\xa0Lightning\xc4\xa0Leicester\xc4\xa0Lancaster\xc4" +"\xa0Lafayette\xc4\xa0LIABILITY\xc4\xa0Knowledge\xc4\xa0Kavanaugh\xc4\xa0Katherin" +"e\xc4\xa0Judiciary\xc4\xa0Jerusalem\xc4\xa0Jefferson\xc4\xa0Inventory\xc4\xa0Inv" +"ention\xc4\xa0Interview\xc4\xa0Interrupt\xc4\xa0Interpret\xc4\xa0Interface\xc4\xa0" +"Interests\xc4\xa0Insurance\xc4\xa0Instagram\xc4\xa0Inspector\xc4\xa0Initially\xc4" +"\xa0Increased\xc4\xa0INCLUDING\xc4\xa0Hurricane\xc4\xa0Hungarian\xc4\xa0Hopefull" +"y\xc4\xa0Honorable\xc4\xa0Holocaust\xc4\xa0Hollywood\xc4\xa0Hernandez\xc4\xa0Hen" +"derson\xc4\xa0Heidegger\xc4\xa0Hampshire\xc4\xa0Halloween\xc4\xa0Guatemala\xc4\xa0" +"Generated\xc4\xa0Generally\xc4\xa0GENERATED\xc4\xa0""Functions\xc4\xa0""Friedric" +"h\xc4\xa0""Frequency\xc4\xa0""Frederick\xc4\xa0""Fran\xc3\x83\xc2\xa7ois\xc4\xa0" +"""Frankfurt\xc4\xa0""Francisco\xc4\xa0""Framework\xc4\xa0""Formation\xc4\xa0""Fo" +"llowing\xc4\xa0""Financial\xc4\xa0""Ferdinand\xc4\xa0""Extension\xc4\xa0""Execut" +"ive\xc4\xa0""Exception\xc4\xa0""Excellent\xc4\xa0""Evolution\xc4\xa0""Everybody\xc4" +"\xa0""Europeans\xc4\xa0""Euclidean\xc4\xa0""Equipment\xc4\xa0""Equations\xc4\xa0" +"""Engineers\xc4\xa0""Employees\xc4\xa0""Emergency\xc4\xa0""Elizabeth\xc4\xa0""Ef" +"fective\xc4\xa0""Edinburgh\xc4\xa0""Economics\xc4\xa0""Dominican\xc4\xa0""Docume" +"nts\xc4\xa0""Disorders\xc4\xa0""Discovery\xc4\xa0""Dirichlet\xc4\xa0""Directory\xc4" +"\xa0""Directors\xc4\xa0""Dickinson\xc4\xa0""Diagnosis\xc4\xa0""Developer\xc4\xa0" +"""Determine\xc4\xa0""Detective\xc4\xa0""Detection\xc4\xa0""Depending\xc4\xa0""De" +"mocrats\xc4\xa0""Democracy\xc4\xa0""Customers\xc4\xa0""Currently\xc4\xa0""Corpor" +"ate\xc4\xa0""Corollary\xc4\xa0""Copyright\xc4\xa0""Container\xc4\xa0""Computing\xc4" +"\xa0""Component\xc4\xa0""Complaint\xc4\xa0""Comparing\xc4\xa0""Companies\xc4\xa0" +"""Community\xc4\xa0""Communist\xc4\xa0""Committee\xc4\xa0""Commissie\xc4\xa0""Co" +"mmander\xc4\xa0""Comiss\xc3\x83\xc2\xa3o\xc4\xa0""Comisi\xc3\x83\xc2\xb3n\xc4\xa0" +"""Combining\xc4\xa0""Cognitive\xc4\xa0""Coalition\xc4\xa0""Cleveland\xc4\xa0""Cl" +"assical\xc4\xa0""Churchill\xc4\xa0""Chronicle\xc4\xa0""Christmas\xc4\xa0""Christ" +"ine\xc4\xa0""Christina\xc4\xa0""Chocolate\xc4\xa0""Chevrolet\xc4\xa0""Chemistry\xc4" +"\xa0""Charlotte\xc4\xa0""Challenge\xc4\xa0""Certainly\xc4\xa0""Caucasian\xc4\xa0" +"""Catholics\xc4\xa0""Catherine\xc4\xa0""Cathedral\xc4\xa0""Carpenter\xc4\xa0""Ca" +"ribbean\xc4\xa0""Cardinals\xc4\xa0""Canadians\xc4\xa0""Cambridge\xc4\xa0""Calcul" +"ate\xc4\xa0""COPYRIGHT\xc4\xa0""Byzantine\xc4\xa0""Brunswick\xc4\xa0""Breakfast\xc4" +"\xa0""Brazilian\xc4\xa0""Boulevard\xc4\xa0""Bootstrap\xc4\xa0""Boltzmann\xc4\xa0" +"""Bluetooth\xc4\xa0""Bloomberg\xc4\xa0""Billboard\xc4\xa0""Bernstein\xc4\xa0""Be" +"ginning\xc4\xa0""Beautiful\xc4\xa0""Battalion\xc4\xa0""Basically\xc4\xa0""Barcel" +"ona\xc4\xa0""Baltimore\xc4\xa0""Available\xc4\xa0""Automatic\xc4\xa0""Authority\xc4" +"\xa0""Augustine\xc4\xa0""Attribute\xc4\xa0""Attorneys\xc4\xa0""Athletics\xc4\xa0" +"""Astrophys\xc4\xa0""Astronomy\xc4\xa0""Assistant\xc4\xa0""ArrayList\xc4\xa0""Ar" +"mstrong\xc4\xa0""Arlington\xc4\xa0""Aristotle\xc4\xa0""Argentine\xc4\xa0""Argent" +"ina\xc4\xa0""Appellees\xc4\xa0""Appellate\xc4\xa0""Antarctic\xc4\xa0""Anonymous\xc4" +"\xa0""Animation\xc4\xa0""Analytics\xc4\xa0""Amsterdam\xc4\xa0""Americans\xc4\xa0" +"""Amendment\xc4\xa0""Alzheimer\xc4\xa0""Algorithm\xc4\xa0""Alexander\xc4\xa0""Ag" +"reement\xc4\xa0""Addiction\xc4\x8a\xc4\x8a\xc4\x8a\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc4\xa0\xc4\x8a\xc4\x89\xc4\x89\xc4\x89\xc4\x89\xc4\x89\xc4\x89" +"\xc4\x89\xc4\x89\xc4\x89\xc3\x91\xc4\xa3\xc3\x91\xc4\xa4\xc3\x90\xc2\xb2\xc3\x90" +"\xc2\xb5\xc3\x90\xc2\xbd\xc3\x90\xc2\xbe\xc3\x90\xc2\xbb\xc3\x91\xc4\xae\xc3\x90" +"\xc2\xba\xc3\x90\xc2\xbe\xc3\x90\xc2\xbe\xc3\x90\xc2\xb2\xc3\x90\xc2\xb0\xc3\x91" +"\xc4\xa4\xc3\x91\xc4\xae\xc3\x90\xc2\xb8\xc3\x91\xc4\xa9\xc3\x90\xc2\xb5\xc3\x91" +"\xc4\xa3\xc3\x90\xc2\xba\xc3\x90\xc2\xb8\xc3\x91\xc4\xa4\xc3\x90\xc2\xb5\xc3\x90" +"\xc2\xbb\xc3\x91\xc4\xaevarepsilonusepackageuscitationunreadableunnumberedunderb" +"racetextnormalstylesheetscriptsizeroelectricreditationopathologyomorphismsobacte" +"riumoarthritisnewcommandmenopausalmathchoicekubernetesgoogleapisensuremathdatepi" +"ckerboldsymbolartifactIdacrylamideaceuticalsaccharidesVisibilityUnexpectedSerial" +"izerSalmonellaRightarrowRepositoryReflectionInvitrogenIdentifierIRQHandlerExtens" +"ionsEnumerableDrosophilaDispatcherDisclaimerDescriptorDeprecatedDependencyDataSo" +"urceDISCUSSIONComponentsCompletionCategoriesAttributesAnnotationAbsolutely\xc4\xa0" +"\xc3\x90\xc2\xbf\xc3\x91\xc4\xa2\xc3\x90\xc2\xb5\xc3\x90\xc2\xb4\xc4\xa0\xc3\x90" +"\xc2\xbf\xc3\x91\xc4\xa2\xc3\x90\xc2\xb0\xc3\x90\xc2\xb2\xc4\xa0\xc3\x90\xc2\xb4" +"\xc3\x91\xc4\xa2\xc3\x91\xc4\xa5\xc3\x90\xc2\xb3\xc4\xa0\xc3\x8f\xc4\xa5\xc3\x8f" +"\xc4\xa6\xc3\x8e\xc2\xb7\xc3\x8e\xc2\xbd\xc4\xa0youthful\xc4\xa0yourself\xc4\xa0" +"youngest\xc4\xa0yielding\xc4\xa0wrongful\xc4\xa0writings\xc4\xa0wretched\xc4\xa0" +"wrapping\xc4\xa0worrying\xc4\xa0workload\xc4\xa0workflow\xc4\xa0wondered\xc4\xa0" +"withheld\xc4\xa0withdrew\xc4\xa0wireless\xc4\xa0wildlife\xc4\xa0widening\xc4\xa0" +"whispers\xc4\xa0wherever\xc4\xa0whenever\xc4\xa0whatever\xc4\xa0wellness\xc4\xa0" +"welcomed\xc4\xa0weighted\xc4\xa0weighing\xc4\xa0weekends\xc4\xa0weddings\xc4\xa0" +"websites\xc4\xa0weakened\xc4\xa0waveform\xc4\xa0watching\xc4\xa0warriors\xc4\xa0" +"warranty\xc4\xa0warrants\xc4\xa0warnings\xc4\xa0wardrobe\xc4\xa0wandered\xc4\xa0" +"vomiting\xc4\xa0voltages\xc4\xa0volcanic\xc4\xa0volatile\xc4\xa0vitamins\xc4\xa0" +"vitality\xc4\xa0visually\xc4\xa0visitors\xc4\xa0visiting\xc4\xa0visceral\xc4\xa0" +"violence\xc4\xa0violates\xc4\xa0violated\xc4\xa0villages\xc4\xa0vicinity\xc4\xa0" +"veterans\xc4\xa0vesicles\xc4\xa0vertices\xc4\xa0versions\xc4\xa0verified\xc4\xa0" +"ventures\xc4\xa0ventured\xc4\xa0velocity\xc4\xa0vehicles\xc4\xa0vascular\xc4\xa0" +"variants\xc4\xa0vanishes\xc4\xa0vanished\xc4\xa0valuable\xc4\xa0validity\xc4\xa0" +"vaccines\xc4\xa0vacation\xc4\xa0utilizes\xc4\xa0utilized\xc4\xa0username\xc4\xa0" +"urgently\xc4\xa0upstream\xc4\xa0upstairs\xc4\xa0uprising\xc4\xa0uploaded\xc4\xa0" +"upgrades\xc4\xa0upgraded\xc4\xa0updating\xc4\xa0upcoming\xc4\xa0unwanted\xc4\xa0" +"unveiled\xc4\xa0untimely\xc4\xa0unstable\xc4\xa0unsigned\xc4\xa0unpaired\xc4\xa0" +"unmistak\xc4\xa0unlocked\xc4\xa0unlikely\xc4\xa0unlawful\xc4\xa0universe\xc4\xa0" +"uniquely\xc4\xa0uniforms\xc4\xa0unfolded\xc4\xa0undetect\xc4\xa0underway\xc4\xa0" +"uncommon\xc4\xa0unbiased\xc4\xa0umbrella\xc4\xa0tyrosine\xc4\xa0typename\xc4\xa0" +"twisting\xc4\xa0turnover\xc4\xa0turbines\xc4\xa0trusting\xc4\xa0trustees\xc4\xa0" +"trousers\xc4\xa0troubled\xc4\xa0tropical\xc4\xa0trillion\xc4\xa0triggers\xc4\xa0" +"tribunal\xc4\xa0trenches\xc4\xa0treating\xc4\xa0treaties\xc4\xa0treacher\xc4\xa0" +"traverse\xc4\xa0traveled\xc4\xa0trapping\xc4\xa0training\xc4\xa0trainers\xc4\xa0" +"trainees\xc4\xa0trailing\xc4\xa0trailers\xc4\xa0traction\xc4\xa0tracking\xc4\xa0" +"toxicity\xc4\xa0township\xc4\xa0tourists\xc4\xa0toujours\xc4\xa0touching\xc4\xa0" +"totality\xc4\xa0tortured\xc4\xa0topology\xc4\xa0tomorrow\xc4\xa0tomatoes\xc4\xa0" +"tolerant\xc4\xa0together\xc4\xa0titanium\xc4\xa0timeline\xc4\xa0throwing\xc4\xa0" +"throttle\xc4\xa0thriving\xc4\xa0thriller\xc4\xa0thrilled\xc4\xa0threaded\xc4\xa0" +"thoughts\xc4\xa0thoracic\xc4\xa0thirteen\xc4\xa0thinking\xc4\xa0thinkers\xc4\xa0" +"theories\xc4\xa0theorems\xc4\xa0theology\xc4\xa0theaters\xc4\xa0thankful\xc4\xa0" +"textures\xc4\xa0tertiary\xc4\xa0terrific\xc4\xa0terribly\xc4\xa0terrible\xc4\xa0" +"terminus\xc4\xa0tensions\xc4\xa0tendency\xc4\xa0tempting\xc4\xa0temporal\xc4\xa0" +"telomere\xc4\xa0teachers\xc4\xa0taxation\xc4\xa0targeted\xc4\xa0tangible\xc4\xa0" +"tambi\xc3\x83\xc2\xa9n\xc4\xa0talented\xc4\xa0takeover\xc4\xa0tailored\xc4\xa0ta" +"ctical\xc4\xa0tackling\xc4\xa0systolic\xc4\xa0systemic\xc4\xa0synthase\xc4\xa0sy" +"naptic\xc4\xa0synapses\xc4\xa0symptoms\xc4\xa0sympathy\xc4\xa0symmetry\xc4\xa0sy" +"mbolic\xc4\xa0switches\xc4\xa0switched\xc4\xa0swinging\xc4\xa0swimming\xc4\xa0sw" +"elling\xc4\xa0sweeping\xc4\xa0sweating\xc4\xa0suspects\xc4\xa0survives\xc4\xa0su" +"rvived\xc4\xa0survival\xc4\xa0surveyed\xc4\xa0surgeons\xc4\xa0surfaces\xc4\xa0su" +"rfaced\xc4\xa0supports\xc4\xa0supplies\xc4\xa0supplied\xc4\xa0sunshine\xc4\xa0su" +"nlight\xc4\xa0summoned\xc4\xa0suitcase\xc4\xa0suitably\xc4\xa0suitable\xc4\xa0su" +"icidal\xc4\xa0suggests\xc4\xa0suffices\xc4\xa0suffered\xc4\xa0suddenly\xc4\xa0su" +"cceeds\xc4\xa0suburban\xc4\xa0subunits\xc4\xa0subtypes\xc4\xa0subspace\xc4\xa0su" +"bpoena\xc4\xa0subjects\xc4\xa0subclass\xc4\xa0stunning\xc4\xa0stumbled\xc4\xa0st" +"udying\xc4\xa0students\xc4\xa0stubborn\xc4\xa0strongly\xc4\xa0stronger\xc4\xa0st" +"riving\xc4\xa0stripped\xc4\xa0striking\xc4\xa0strictly\xc4\xa0striatum\xc4\xa0st" +"resses\xc4\xa0stressed\xc4\xa0strategy\xc4\xa0stranded\xc4\xa0strained\xc4\xa0st" +"opping\xc4\xa0stitches\xc4\xa0stirring\xc4\xa0stimulus\xc4\xa0sticking\xc4\xa0st" +"eroids\xc4\xa0stepping\xc4\xa0stenosis\xc4\xa0stemming\xc4\xa0steering\xc4\xa0st" +"ealing\xc4\xa0steadily\xc4\xa0statutes\xc4\xa0stations\xc4\xa0starving\xc4\xa0st" +"artups\xc4\xa0startled\xc4\xa0starting\xc4\xa0starters\xc4\xa0starring\xc4\xa0st" +"anding\xc4\xa0staining\xc4\xa0stacking\xc4\xa0squeezed\xc4\xa0squarely\xc4\xa0sq" +"uamous\xc4\xa0squadron\xc4\xa0spurious\xc4\xa0sprinkle\xc4\xa0spraying\xc4\xa0sp" +"orting\xc4\xa0sporadic\xc4\xa0splicing\xc4\xa0splendid\xc4\xa0spinning\xc4\xa0sp" +"ending\xc4\xa0spelling\xc4\xa0speeding\xc4\xa0speeches\xc4\xa0spectrum\xc4\xa0sp" +"ectral\xc4\xa0speaking\xc4\xa0speakers\xc4\xa0spanning\xc4\xa0spacious\xc4\xa0so" +"uthern\xc4\xa0sounding\xc4\xa0soothing\xc4\xa0somewhat\xc4\xa0somebody\xc4\xa0so" +"lvents\xc4\xa0solitary\xc4\xa0soldiers\xc4\xa0software\xc4\xa0softened\xc4\xa0so" +"cietal\xc4\xa0socially\xc4\xa0snatched\xc4\xa0snapshot\xc4\xa0smoothly\xc4\xa0sm" +"oothed\xc4\xa0smallest\xc4\xa0slipping\xc4\xa0slippery\xc4\xa0slightly\xc4\xa0sl" +"eeping\xc4\xa0skipping\xc4\xa0sketches\xc4\xa0skeleton\xc4\xa0skeletal\xc4\xa0si" +"tuated\xc4\xa0sinister\xc4\xa0simplify\xc4\xa0simplest\xc4\xa0silicone\xc4\xa0si" +"lently\xc4\xa0silenced\xc4\xa0signaled\xc4\xa0sideways\xc4\xa0sidewalk\xc4\xa0si" +"ckness\xc4\xa0siblings\xc4\xa0shutting\xc4\xa0shutdown\xc4\xa0shrugged\xc4\xa0sh" +"redded\xc4\xa0showcase\xc4\xa0shouting\xc4\xa0shortest\xc4\xa0shortcut\xc4\xa0sh" +"opping\xc4\xa0shoppers\xc4\xa0shocking\xc4\xa0shipping\xc4\xa0shifting\xc4\xa0sh" +"elters\xc4\xa0shedding\xc4\xa0sexually\xc4\xa0severity\xc4\xa0severely\xc4\xa0se" +"ttling\xc4\xa0settlers\xc4\xa0settings\xc4\xa0sessions\xc4\xa0services\xc4\xa0se" +"rvants\xc4\xa0sergeant\xc4\xa0sensible\xc4\xa0senators\xc4\xa0semester\xc4\xa0se" +"lenium\xc4\xa0selector\xc4\xa0selected\xc4\xa0seizures\xc4\xa0segments\xc4\xa0se" +"diment\xc4\xa0security\xc4\xa0securing\xc4\xa0securely\xc4\xa0sections\xc4\xa0se" +"cretly\xc4\xa0secreted\xc4\xa0seasoned\xc4\xa0seasonal\xc4\xa0searches\xc4\xa0se" +"arched\xc4\xa0seamless\xc4\xa0scrutiny\xc4\xa0screened\xc4\xa0screamed\xc4\xa0sc" +"raping\xc4\xa0sciences\xc4\xa0scarcely\xc4\xa0scanning\xc4\xa0scalable\xc4\xa0sa" +"ucepan\xc4\xa0sampling\xc4\xa0salivary\xc4\xa0salaries\xc4\xa0ruthless\xc4\xa0ro" +"utines\xc4\xa0rounding\xc4\xa0rotating\xc4\xa0romantic\xc4\xa0rigorous\xc4\xa0ri" +"gidity\xc4\xa0richness\xc4\xa0rhetoric\xc4\xa0rewarded\xc4\xa0reviewed\xc4\xa0re" +"versed\xc4\xa0reversal\xc4\xa0revenues\xc4\xa0revealed\xc4\xa0returned\xc4\xa0re" +"tiring\xc4\xa0retarded\xc4\xa0retained\xc4\xa0resulted\xc4\xa0restored\xc4\xa0re" +"stless\xc4\xa0responds\xc4\xa0respects\xc4\xa0resonant\xc4\xa0resolved\xc4\xa0re" +"sistor\xc4\xa0resisted\xc4\xa0resigned\xc4\xa0residues\xc4\xa0residing\xc4\xa0re" +"serves\xc4\xa0reserved\xc4\xa0requires\xc4\xa0required\xc4\xa0requests\xc4\xa0re" +"public\xc4\xa0replaces\xc4\xa0replaced\xc4\xa0repaired\xc4\xa0renowned\xc4\xa0re" +"ndered\xc4\xa0removing\xc4\xa0remotely\xc4\xa0remnants\xc4\xa0reminder\xc4\xa0re" +"minded\xc4\xa0remedies\xc4\xa0remarked\xc4\xa0remanded\xc4\xa0remained\xc4\xa0re" +"lieved\xc4\xa0reliance\xc4\xa0reliably\xc4\xa0reliable\xc4\xa0relevant\xc4\xa0re" +"leases\xc4\xa0released\xc4\xa0relaxing\xc4\xa0relating\xc4\xa0rejected\xc4\xa0re" +"gistry\xc4\xa0regional\xc4\xa0regiment\xc4\xa0regimens\xc4\xa0regarded\xc4\xa0re" +"gained\xc4\xa0refusing\xc4\xa0refugees\xc4\xa0reflects\xc4\xa0referred\xc4\xa0re" +"ferral\xc4\xa0reducing\xc4\xa0redirect\xc4\xa0redesign\xc4\xa0recycled\xc4\xa0re" +"cruits\xc4\xa0recreate\xc4\xa0recovery\xc4\xa0recorder\xc4\xa0recorded\xc4\xa0re" +"ckless\xc4\xa0recharge\xc4\xa0recently\xc4\xa0receives\xc4\xa0received\xc4\xa0re" +"ceipts\xc4\xa0recalled\xc4\xa0rebounds\xc4\xa0reasoned\xc4\xa0realizes\xc4\xa0re" +"alized\xc4\xa0realised\xc4\xa0reagents\xc4\xa0readonly\xc4\xa0readings\xc4\xa0re" +"adable\xc4\xa0reactors\xc4\xa0reactive\xc4\xa0reacting\xc4\xa0reaching\xc4\xa0ra" +"nkings\xc4\xa0randomly\xc4\xa0rainfall\xc4\xa0railroad\xc4\xa0radicals\xc4\xa0ra" +"dially\xc4\xa0quotient\xc4\xa0quelques\xc4\xa0quarters\xc4\xa0quantity\xc4\xa0qu" +"antify\xc4\xa0quadrant\xc4\xa0putative\xc4\xa0pursuing\xc4\xa0pursuant\xc4\xa0pu" +"rposes\xc4\xa0purified\xc4\xa0punitive\xc4\xa0punished\xc4\xa0puncture\xc4\xa0pu" +"blicly\xc4\xa0proximal\xc4\xa0provoked\xc4\xa0provides\xc4\xa0provided\xc4\xa0pr" +"otests\xc4\xa0proteins\xc4\xa0protects\xc4\xa0prostate\xc4\xa0proposes\xc4\xa0pr" +"oposed\xc4\xa0prophets\xc4\xa0prophecy\xc4\xa0property\xc4\xa0properly\xc4\xa0pr" +"omptly\xc4\xa0prompted\xc4\xa0promotes\xc4\xa0promoted\xc4\xa0promises\xc4\xa0pr" +"omised\xc4\xa0prolific\xc4\xa0projects\xc4\xa0programs\xc4\xa0profiles\xc4\xa0pr" +"oducts\xc4\xa0produces\xc4\xa0produced\xc4\xa0proceeds\xc4\xa0problems\xc4\xa0pr" +"obably\xc4\xa0probable\xc4\xa0pristine\xc4\xa0priority\xc4\xa0printing\xc4\xa0pr" +"inters\xc4\xa0princess\xc4\xa0primates\xc4\xa0prevents\xc4\xa0pretrial\xc4\xa0pr" +"esumed\xc4\xa0prestige\xc4\xa0pressing\xc4\xa0presents\xc4\xa0presence\xc4\xa0pr" +"epares\xc4\xa0prepared\xc4\xa0prenatal\xc4\xa0premiums\xc4\xa0premises\xc4\xa0pr" +"egnant\xc4\xa0predicts\xc4\xa0precious\xc4\xa0preceded\xc4\xa0preacher\xc4\xa0po" +"werful\xc4\xa0powdered\xc4\xa0pounding\xc4\xa0potatoes\xc4\xa0possibly\xc4\xa0po" +"ssible\xc4\xa0portions\xc4\xa0portable\xc4\xa0polymers\xc4\xa0politics\xc4\xa0po" +"litely\xc4\xa0polished\xc4\xa0policing\xc4\xa0policies\xc4\xa0polarity\xc4\xa0po" +"isoned\xc4\xa0pointing\xc4\xa0pointers\xc4\xa0plumbing\xc4\xa0plotting\xc4\xa0pl" +"ethora\xc4\xa0pleasing\xc4\xa0pleasant\xc4\xa0playoffs\xc4\xa0playback\xc4\xa0pl" +"atinum\xc4\xa0plastics\xc4\xa0plasmids\xc4\xa0planting\xc4\xa0planning\xc4\xa0pi" +"tching\xc4\xa0pitchers\xc4\xa0pinpoint\xc4\xa0piercing\xc4\xa0pictures\xc4\xa0pi" +"ctured\xc4\xa0philanth\xc4\xa0phenolic\xc4\xa0pharmacy\xc4\xa0pertains\xc4\xa0pe" +"rsonas\xc4\xa0persists\xc4\xa0peroxide\xc4\xa0performs\xc4\xa0peptides\xc4\xa0pe" +"nsions\xc4\xa0peculiar\xc4\xa0peasants\xc4\xa0peaceful\xc4\xa0payments\xc4\xa0pa" +"vement\xc4\xa0patterns\xc4\xa0patients\xc4\xa0patience\xc4\xa0pathways\xc4\xa0pa" +"thetic\xc4\xa0paternal\xc4\xa0patented\xc4\xa0passport\xc4\xa0passions\xc4\xa0pa" +"ssages\xc4\xa0partisan\xc4\xa0parietal\xc4\xa0parental\xc4\xa0paranoid\xc4\xa0pa" +"raffin\xc4\xa0paradise\xc4\xa0paradigm\xc4\xa0pandemic\xc4\xa0pancreas\xc4\xa0pa" +"irwise\xc4\xa0painters\xc4\xa0packages\xc4\xa0packaged\xc4\xa0oxidized\xc4\xa0ov" +"erview\xc4\xa0overtime\xc4\xa0overseas\xc4\xa0override\xc4\xa0overload\xc4\xa0ov" +"erlaps\xc4\xa0overhead\xc4\xa0overhaul\xc4\xa0overflow\xc4\xa0overdose\xc4\xa0ov" +"ercome\xc4\xa0outright\xc4\xa0outreach\xc4\xa0outlines\xc4\xa0outlined\xc4\xa0ou" +"tliers\xc4\xa0outgoing\xc4\xa0outdoors\xc4\xa0outdated\xc4\xa0outcomes\xc4\xa0or" +"tholog\xc4\xa0ornament\xc4\xa0oriented\xc4\xa0ordinary\xc4\xa0ordering\xc4\xa0or" +"dained\xc4\xa0orbitals\xc4\xa0optimism\xc4\xa0opposite\xc4\xa0opposing\xc4\xa0op" +"inions\xc4\xa0operates\xc4\xa0operated\xc4\xa0openness\xc4\xa0openings\xc4\xa0on" +"tology\xc4\xa0onCreate\xc4\xa0offshore\xc4\xa0officers\xc4\xa0offenses\xc4\xa0of" +"fended\xc4\xa0occurred\xc4\xa0occupies\xc4\xa0occupied\xc4\xa0obtained\xc4\xa0ob" +"solete\xc4\xa0obsessed\xc4\xa0observes\xc4\xa0observed\xc4\xa0obscured\xc4\xa0ob" +"jected\xc4\xa0numerous\xc4\xa0numbered\xc4\xa0nuisance\xc4\xa0nowadays\xc4\xa0no" +"velist\xc4\xa0notified\xc4\xa0noticing\xc4\xa0notebook\xc4\xa0northern\xc4\xa0no" +"rmally\xc4\xa0nonsense\xc4\xa0nobility\xc4\xa0nitrogen\xc4\xa0nicotine\xc4\xa0ni" +"ckname\xc4\xa0newborns\xc4\xa0neuronal\xc4\xa0networks\xc4\xa0neonates\xc4\xa0ne" +"onatal\xc4\xa0necrosis\xc4\xa0necklace\xc4\xa0navigate\xc4\xa0narrowly\xc4\xa0na" +"rrower\xc4\xa0narrowed\xc4\xa0narrator\xc4\xa0nacional\xc4\xa0mystical\xc4\xa0mu" +"tually\xc4\xa0muttered\xc4\xa0muscular\xc4\xa0murmured\xc4\xa0murderer\xc4\xa0mu" +"rdered\xc4\xa0mourning\xc4\xa0mounting\xc4\xa0motility\xc4\xa0morphine\xc4\xa0mo" +"rnings\xc4\xa0moreover\xc4\xa0morality\xc4\xa0monsters\xc4\xa0monotone\xc4\xa0mo" +"nopoly\xc4\xa0monomers\xc4\xa0monitors\xc4\xa0monetary\xc4\xa0momentum\xc4\xa0mo" +"isture\xc4\xa0modifier\xc4\xa0modified\xc4\xa0modelled\xc4\xa0modeling\xc4\xa0mo" +"dality\xc4\xa0mobility\xc4\xa0mixtures\xc4\xa0mitigate\xc4\xa0mistrial\xc4\xa0mi" +"stress\xc4\xa0mistakes\xc4\xa0missions\xc4\xa0missiles\xc4\xa0mismatch\xc4\xa0mi" +"racles\xc4\xa0minority\xc4\xa0ministry\xc4\xa0minerals\xc4\xa0millions\xc4\xa0mi" +"litary\xc4\xa0migrated\xc4\xa0migrants\xc4\xa0migraine\xc4\xa0midnight\xc4\xa0mi" +"crobes\xc4\xa0methanol\xc4\xa0metaphor\xc4\xa0metadata\xc4\xa0messages\xc4\xa0me" +"ntions\xc4\xa0mentally\xc4\xa0memories\xc4\xa0memorial\xc4\xa0mellitus\xc4\xa0me" +"lanoma\xc4\xa0meetings\xc4\xa0medieval\xc4\xa0mediates\xc4\xa0mediated\xc4\xa0me" +"asures\xc4\xa0measured\xc4\xa0meantime\xc4\xa0meanings\xc4\xa0maximize\xc4\xa0ma" +"turity\xc4\xa0mattress\xc4\xa0mattered\xc4\xa0matrices\xc4\xa0maternal\xc4\xa0ma" +"tching\xc4\xa0massless\xc4\xa0massacre\xc4\xa0marrying\xc4\xa0markings\xc4\xa0ma" +"rketed\xc4\xa0markedly\xc4\xa0maritime\xc4\xa0marching\xc4\xa0marathon\xc4\xa0ma" +"ppings\xc4\xa0manually\xc4\xa0maneuver\xc4\xa0mandates\xc4\xa0mandated\xc4\xa0ma" +"naging\xc4\xa0managers\xc4\xa0majority\xc4\xa0mainland\xc4\xa0magnetic\xc4\xa0ma" +"chines\xc4\xa0lymphoma\xc4\xa0lymphoid\xc4\xa0luminous\xc4\xa0lowering\xc4\xa0lo" +"ngtime\xc4\xa0locating\xc4\xa0locality\xc4\xa0lobbying\xc4\xa0literary\xc4\xa0li" +"teracy\xc4\xa0listings\xc4\xa0listened\xc4\xa0linearly\xc4\xa0lineages\xc4\xa0li" +"miting\xc4\xa0likewise\xc4\xa0lighting\xc4\xa0ligation\xc4\xa0ligament\xc4\xa0li" +"fetime\xc4\xa0lifespan\xc4\xa0lifelong\xc4\xa0lifeless\xc4\xa0licenses\xc4\xa0li" +"censed\xc4\xa0liberals\xc4\xa0leverage\xc4\xa0leukemia\xc4\xa0lectures\xc4\xa0le" +"arning\xc4\xa0learners\xc4\xa0lawsuits\xc4\xa0launches\xc4\xa0launched\xc4\xa0la" +"ughter\xc4\xa0laughing\xc4\xa0lattices\xc4\xa0latitude\xc4\xa0landlord\xc4\xa0la" +"belled\xc4\xa0labeling\xc4\xa0knockout\xc4\xa0knocking\xc4\xa0knitting\xc4\xa0ki" +"netics\xc4\xa0kindness\xc4\xa0killings\xc4\xa0keywords\xc4\xa0juvenile\xc4\xa0ju" +"stices\xc4\xa0judicial\xc4\xa0judicata\xc4\xa0journeys\xc4\xa0journals\xc4\xa0je" +"opardy\xc4\xa0jealousy\xc4\xa0iterator\xc4\xa0issuance\xc4\xa0isolates\xc4\xa0is" +"olated\xc4\xa0isoforms\xc4\xa0ischemic\xc4\xa0ischemia\xc4\xa0involves\xc4\xa0in" +"volved\xc4\xa0invoking\xc4\xa0inviting\xc4\xa0invested\xc4\xa0inverted\xc4\xa0in" +"vented\xc4\xa0invasive\xc4\xa0invasion\xc4\xa0invading\xc4\xa0intimacy\xc4\xa0in" +"ternet\xc4\xa0interloc\xc4\xa0interior\xc4\xa0intended\xc4\xa0integrin\xc4\xa0in" +"tegers\xc4\xa0insurers\xc4\xa0inspired\xc4\xa0insomnia\xc4\xa0insisted\xc4\xa0in" +"sights\xc4\xa0inserted\xc4\xa0insecure\xc4\xa0insanity\xc4\xa0inquired\xc4\xa0in" +"nocent\xc4\xa0injuries\xc4\xa0injected\xc4\xa0initWith\xc4\xa0inhibits\xc4\xa0in" +"fusion\xc4\xa0infrared\xc4\xa0informed\xc4\xa0informal\xc4\xa0inflated\xc4\xa0in" +"finity\xc4\xa0inferred\xc4\xa0inferior\xc4\xa0infected\xc4\xa0infantry\xc4\xa0in" +"famous\xc4\xa0inertial\xc4\xa0industry\xc4\xa0inducing\xc4\xa0indicted\xc4\xa0in" +"dexing\xc4\xa0indeterm\xc4\xa0indebted\xc4\xa0incurred\xc4\xa0incontin\xc4\xa0in" +"coming\xc4\xa0includes\xc4\xa0included\xc4\xa0inclined\xc4\xa0incision\xc4\xa0in" +"active\xc4\xa0impurity\xc4\xa0impulses\xc4\xa0improves\xc4\xa0improved\xc4\xa0im" +"posing\xc4\xa0imported\xc4\xa0implying\xc4\xa0implants\xc4\xa0imperial\xc4\xa0im" +"paired\xc4\xa0impacted\xc4\xa0immunity\xc4\xa0immortal\xc4\xa0imminent\xc4\xa0im" +"mersed\xc4\xa0immature\xc4\xa0imagined\xc4\xa0illusion\xc4\xa0ignoring\xc4\xa0ig" +"norant\xc4\xa0ignition\xc4\xa0ideology\xc4\xa0identity\xc4\xa0hypergly\xc4\xa0hy" +"droxyl\xc4\xa0hydrogen\xc4\xa0hydrogel\xc4\xa0husbands\xc4\xa0hundreds\xc4\xa0hu" +"mility\xc4\xa0humidity\xc4\xa0humanity\xc4\xa0hovering\xc4\xa0horrific\xc4\xa0ho" +"rrible\xc4\xa0hormones\xc4\xa0hormonal\xc4\xa0hopeless\xc4\xa0honestly\xc4\xa0ho" +"motopy\xc4\xa0homology\xc4\xa0homicide\xc4\xa0homework\xc4\xa0hometown\xc4\xa0ho" +"mepage\xc4\xa0homemade\xc4\xa0homeless\xc4\xa0homeland\xc4\xa0holistic\xc4\xa0ho" +"lidays\xc4\xa0holdings\xc4\xa0hitherto\xc4\xa0highways\xc4\xa0heterocy\xc4\xa0he" +"ritage\xc4\xa0helpless\xc4\xa0heavenly\xc4\xa0hearings\xc4\xa0harmonic\xc4\xa0ha" +"rmless\xc4\xa0hardware\xc4\xa0hardship\xc4\xa0hardness\xc4\xa0hardened\xc4\xa0ha" +"rdcore\xc4\xa0happened\xc4\xa0handsome\xc4\xa0handling\xc4\xa0handlers\xc4\xa0ha" +"ndheld\xc4\xa0hampered\xc4\xa0hallmark\xc4\xa0hadronic\xc4\xa0habitual\xc4\xa0ha" +"bitats\xc4\xa0guidance\xc4\xa0guessing\xc4\xa0grouping\xc4\xa0grounded\xc4\xa0gr" +"ipping\xc4\xa0grinding\xc4\xa0greeting\xc4\xa0greatest\xc4\xa0grasping\xc4\xa0gr" +"aphite\xc4\xa0graphics\xc4\xa0graphene\xc4\xa0granules\xc4\xa0granular\xc4\xa0gr" +"anting\xc4\xa0grandson\xc4\xa0grafting\xc4\xa0gracious\xc4\xa0graceful\xc4\xa0gr" +"abbing\xc4\xa0governed\xc4\xa0gorgeous\xc4\xa0goodness\xc4\xa0glycogen\xc4\xa0gl" +"ycerol\xc4\xa0glorious\xc4\xa0globally\xc4\xa0glaucoma\xc4\xa0glancing\xc4\xa0gi" +"gantic\xc4\xa0gestures\xc4\xa0geometry\xc4\xa0geodesic\xc4\xa0genocide\xc4\xa0ge" +"netics\xc4\xa0generous\xc4\xa0generals\xc4\xa0gathered\xc4\xa0gasoline\xc4\xa0ga" +"rrison\xc4\xa0garments\xc4\xa0gameplay\xc4\xa0gambling\xc4\xa0galaxies\xc4\xa0ga" +"lactic\xc4\xa0""fruitful\xc4\xa0""frontier\xc4\xa0""friendly\xc4\xa0""friction\xc4" +"\xa0""freshman\xc4\xa0""freezing\xc4\xa0""freedoms\xc4\xa0""fourteen\xc4\xa0""fo" +"untain\xc4\xa0""founding\xc4\xa0""founders\xc4\xa0""forwards\xc4\xa0""fortunes\xc4" +"\xa0""fortress\xc4\xa0""formulas\xc4\xa0""formulae\xc4\xa0""formerly\xc4\xa0""fo" +"rmally\xc4\xa0""formalin\xc4\xa0""forensic\xc4\xa0""foremost\xc4\xa0""forehead\xc4" +"\xa0""forcibly\xc4\xa0""foraging\xc4\xa0""footnote\xc4\xa0""fonction\xc4\xa0""fo" +"llowed\xc4\xa0""focusing\xc4\xa0""fluoride\xc4\xa0""flourish\xc4\xa0""flooding\xc4" +"\xa0""floating\xc4\xa0""flipping\xc4\xa0""flexible\xc4\xa0""flashing\xc4\xa0""fl" +"anking\xc4\xa0""flagship\xc4\xa0""fixtures\xc4\xa0""fixation\xc4\xa0""firmware\xc4" +"\xa0""firewall\xc4\xa0""firearms\xc4\xa0""finitely\xc4\xa0""finishes\xc4\xa0""fi" +"nished\xc4\xa0""findings\xc4\xa0""finances\xc4\xa0""financed\xc4\xa0""filtered\xc4" +"\xa0""filename\xc4\xa0""figuring\xc4\xa0""fighting\xc4\xa0""fighters\xc4\xa0""fi" +"ercely\xc4\xa0""fidelity\xc4\xa0""fibrosis\xc4\xa0""fermions\xc4\xa0""feminist\xc4" +"\xa0""feminism\xc4\xa0""feminine\xc4\xa0""feelings\xc4\xa0""feedback\xc4\xa0""fe" +"atures\xc4\xa0""featured\xc4\xa0""feathers\xc4\xa0""feasible\xc4\xa0""favoured\xc4" +"\xa0""favoring\xc4\xa0""fastened\xc4\xa0""farewell\xc4\xa0""famously\xc4\xa0""fa" +"milies\xc4\xa0""familial\xc4\xa0""fairness\xc4\xa0""failures\xc4\xa0""factions\xc4" +"\xa0""facility\xc4\xa0""facebook\xc4\xa0""fabulous\xc4\xa0""eyebrows\xc4\xa0""ex" +"tremes\xc4\xa0""extravag\xc4\xa0""extracts\xc4\xa0""exterior\xc4\xa0""extended\xc4" +"\xa0""exposing\xc4\xa0""exported\xc4\xa0""explores\xc4\xa0""explorer\xc4\xa0""ex" +"plored\xc4\xa0""exploits\xc4\xa0""exploded\xc4\xa0""explains\xc4\xa0""expenses\xc4" +"\xa0""expended\xc4\xa0""expelled\xc4\xa0""expected\xc4\xa0""expanded\xc4\xa0""ex" +"osomes\xc4\xa0""existing\xc4\xa0""exhibits\xc4\xa0""executes\xc4\xa0""executed\xc4" +"\xa0""excludes\xc4\xa0""excluded\xc4\xa0""exciting\xc4\xa0""excision\xc4\xa0""ex" +"ceeded\xc4\xa0""examples\xc4\xa0""examines\xc4\xa0""examiner\xc4\xa0""examined\xc4" +"\xa0""evolving\xc4\xa0""everyone\xc4\xa0""everyday\xc4\xa0""evenings\xc4\xa0""et" +"iology\xc4\xa0""ethylene\xc4\xa0""eternity\xc4\xa0""estrogen\xc4\xa0""estoppel\xc4" +"\xa0""escorted\xc4\xa0""escaping\xc4\xa0""eruption\xc4\xa0""errnoErr\xc4\xa0""eq" +"uipped\xc4\xa0""equality\xc4\xa0""epitopes\xc4\xa0""episodes\xc4\xa0""epilepsy\xc4" +"\xa0""epidemic\xc4\xa0""entrance\xc4\xa0""entitled\xc4\xa0""entities\xc4\xa0""en" +"tirety\xc4\xa0""entirely\xc4\xa0""entering\xc4\xa0""ensuring\xc4\xa0""enrolled\xc4" +"\xa0""enriched\xc4\xa0""enormous\xc4\xa0""enlisted\xc4\xa0""enlarged\xc4\xa0""en" +"joying\xc4\xa0""enhances\xc4\xa0""enhancer\xc4\xa0""enhanced\xc4\xa0""engaging\xc4" +"\xa0""enforced\xc4\xa0""energies\xc4\xa0""enduring\xc4\xa0""endorsed\xc4\xa0""en" +"deavor\xc4\xa0""encoding\xc4\xa0""enclosed\xc4\xa0""encephal\xc4\xa0""enabling\xc4" +"\xa0""emulsion\xc4\xa0""employed\xc4\xa0""emphasis\xc4\xa0""emotions\xc4\xa0""em" +"itting\xc4\xa0""emerging\xc4\xa0""emergent\xc4\xa0""embraced\xc4\xa0""embodied\xc4" +"\xa0""embedded\xc4\xa0""embarked\xc4\xa0""eligible\xc4\xa0""elicited\xc4\xa0""el" +"evator\xc4\xa0""elevated\xc4\xa0""elements\xc4\xa0""elective\xc4\xa0""ejection\xc4" +"\xa0""efficacy\xc4\xa0""effector\xc4\xa0""effected\xc4\xa0""educated\xc4\xa0""ed" +"itions\xc4\xa0""earnings\xc4\xa0""earliest\xc4\xa0""dynamics\xc4\xa0""dwelling\xc4" +"\xa0""drowning\xc4\xa0""dropping\xc4\xa0""droplets\xc4\xa0""dropdown\xc4\xa0""dr" +"iveway\xc4\xa0""dripping\xc4\xa0""drinking\xc4\xa0""drilling\xc4\xa0""drifting\xc4" +"\xa0""dressing\xc4\xa0""dreaming\xc4\xa0""dreadful\xc4\xa0""drawings\xc4\xa0""dr" +"aining\xc4\xa0""drainage\xc4\xa0""dragging\xc4\xa0""drafting\xc4\xa0""downward\xc4" +"\xa0""downtown\xc4\xa0""downside\xc4\xa0""downhill\xc4\xa0""doubtful\xc4\xa0""do" +"ubling\xc4\xa0""dominant\xc4\xa0""domestic\xc4\xa0""divorced\xc4\xa0""dividing\xc4" +"\xa0""distrust\xc4\xa0""disputes\xc4\xa0""disputed\xc4\xa0""disposed\xc4\xa0""di" +"sposal\xc4\xa0""displays\xc4\xa0""dispense\xc4\xa0""disjoint\xc4\xa0""disgrace\xc4" +"\xa0""diseases\xc4\xa0""diseased\xc4\xa0""discrete\xc4\xa0""discreet\xc4\xa0""di" +"sappro\xc4\xa0""disabled\xc4\xa0""directly\xc4\xa0""directed\xc4\xa0""dimethyl\xc4" +"\xa0""dilution\xc4\xa0""dilation\xc4\xa0""digested\xc4\xa0""differed\xc4\xa0""di" +"ctates\xc4\xa0""dictated\xc4\xa0""diarrhea\xc4\xa0""diamonds\xc4\xa0""dialysis\xc4" +"\xa0""dialogue\xc4\xa0""diagrams\xc4\xa0""diagonal\xc4\xa0""diabetic\xc4\xa0""di" +"abetes\xc4\xa0""devotion\xc4\xa0""develops\xc4\xa0""detected\xc4\xa0""detained\xc4" +"\xa0""detailed\xc4\xa0""detached\xc4\xa0""destroys\xc4\xa0""destined\xc4\xa0""de" +"stabil\xc4\xa0""despu\xc3\x83\xc2\xa9s\xc4\xa0""designed\xc4\xa0""deserves\xc4\xa0" +"""deserved\xc4\xa0""deserted\xc4\xa0""deriving\xc4\xa0""deputies\xc4\xa0""depriv" +"ed\xc4\xa0""deposits\xc4\xa0""deported\xc4\xa0""deployed\xc4\xa0""depleted\xc4\xa0" +"""depicted\xc4\xa0""depended\xc4\xa0""departed\xc4\xa0""dementia\xc4\xa0""demand" +"ed\xc4\xa0""delivery\xc4\xa0""delivers\xc4\xa0""delicate\xc4\xa0""deleting\xc4\xa0" +"""delaying\xc4\xa0""degraded\xc4\xa0""deformed\xc4\xa0""defining\xc4\xa0""defici" +"ts\xc4\xa0""deferred\xc4\xa0""defenses\xc4\xa0""defended\xc4\xa0""defeated\xc4\xa0" +"""defaults\xc4\xa0""decoding\xc4\xa0""declines\xc4\xa0""declined\xc4\xa0""declar" +"es\xc4\xa0""declared\xc4\xa0""decisive\xc4\xa0""deciding\xc4\xa0""decedent\xc4\xa0" +"""deceased\xc4\xa0""decaying\xc4\xa0""dealings\xc4\xa0""daylight\xc4\xa0""daunti" +"ng\xc4\xa0""datetime\xc4\xa0""datasets\xc4\xa0""darkness\xc4\xa0""darkened\xc4\xa0" +"""damaging\xc4\xa0""cysteine\xc4\xa0""cyclists\xc4\xa0""curtains\xc4\xa0""curren" +"ts\xc4\xa0""currency\xc4\xa0""curative\xc4\xa0""cultures\xc4\xa0""cultured\xc4\xa0" +"""culinary\xc4\xa0""crystals\xc4\xa0""crushing\xc4\xa0""critique\xc4\xa0""criter" +"ia\xc4\xa0""creeping\xc4\xa0""credited\xc4\xa0""credible\xc4\xa0""creators\xc4\xa0" +"""creative\xc4\xa0""creating\xc4\xa0""crawling\xc4\xa0""crashing\xc4\xa0""crafti" +"ng\xc4\xa0""cracking\xc4\xa0""covering\xc4\xa0""coverage\xc4\xa0""covenant\xc4\xa0" +"""courtesy\xc4\xa0""counting\xc4\xa0""counties\xc4\xa0""counters\xc4\xa0""counci" +"ls\xc4\xa0""councill\xc4\xa0""costumes\xc4\xa0""cosmetic\xc4\xa0""cortisol\xc4\xa0" +"""cortical\xc4\xa0""coronary\xc4\xa0""conveyor\xc4\xa0""conveyed\xc4\xa0""conver" +"ts\xc4\xa0""converse\xc4\xa0""controls\xc4\xa0""contrary\xc4\xa0""contours\xc4\xa0" +"""contexts\xc4\xa0""contests\xc4\xa0""contents\xc4\xa0""contends\xc4\xa0""contem" +"pt\xc4\xa0""contains\xc4\xa0""contacts\xc4\xa0""consumed\xc4\xa0""consoles\xc4\xa0" +"""consists\xc4\xa0""conquest\xc4\xa0""connects\xc4\xa0""confused\xc4\xa0""confoc" +"al\xc4\xa0""confirms\xc4\xa0""confined\xc4\xa0""concrete\xc4\xa0""concerts\xc4\xa0" +"""concerns\xc4\xa0""concepts\xc4\xa0""concedes\xc4\xa0""conceded\xc4\xa0""concat" +"en\xc4\xa0""comrades\xc4\xa0""computes\xc4\xa0""computed\xc4\xa0""composed\xc4\xa0" +"""complied\xc4\xa0""compiler\xc4\xa0""compiled\xc4\xa0""competed\xc4\xa0""compar" +"es\xc4\xa0""compared\xc4\xa0""communal\xc4\xa0""commonly\xc4\xa0""commerce\xc4\xa0" +"""comments\xc4\xa0""commemor\xc4\xa0""commands\xc4\xa0""comedian\xc4\xa0""comeba" +"ck\xc4\xa0""combines\xc4\xa0""combined\xc4\xa0""coloured\xc4\xa0""coloring\xc4\xa0" +"""colorful\xc4\xa0""colonies\xc4\xa0""colonial\xc4\xa0""colleges\xc4\xa0""collec" +"ts\xc4\xa0""collagen\xc4\xa0""coherent\xc4\xa0""coercion\xc4\xa0""cocktail\xc4\xa0" +"""coatings\xc4\xa0""coaching\xc4\xa0""clusters\xc4\xa0""clothing\xc4\xa0""closur" +"es\xc4\xa0""clinging\xc4\xa0""climbing\xc4\xa0""clicking\xc4\xa0""clenched\xc4\xa0" +"""cleavage\xc4\xa0""clearing\xc4\xa0""cleaning\xc4\xa0""classics\xc4\xa0""clampi" +"ng\xc4\xa0""claiming\xc4\xa0""circular\xc4\xa0""circuits\xc4\xa0""cinnamon\xc4\xa0" +"""churches\xc4\xa0""chuckled\xc4\xa0""chromium\xc4\xa0""choosing\xc4\xa0""chlori" +"ne\xc4\xa0""chloride\xc4\xa0""chitosan\xc4\xa0""chilling\xc4\xa0""children\xc4\xa0" +"""chickens\xc4\xa0""cheering\xc4\xa0""cheerful\xc4\xa0""checkout\xc4\xa0""checki" +"ng\xc4\xa0""checkbox\xc4\xa0""cheating\xc4\xa0""cheapest\xc4\xa0""chatting\xc4\xa0" +"""charming\xc4\xa0""charging\xc4\xa0""charcoal\xc4\xa0""chapters\xc4\xa0""channe" +"ls\xc4\xa0""changing\xc4\xa0""chambers\xc4\xa0""chairman\xc4\xa0""cervical\xc4\xa0" +"""ceremony\xc4\xa0""cerebral\xc4\xa0""centered\xc4\xa0""cemetery\xc4\xa0""cellul" +"ar\xc4\xa0""cavities\xc4\xa0""cationic\xc4\xa0""catheter\xc4\xa0""category\xc4\xa0" +"""catching\xc4\xa0""cataract\xc4\xa0""casually\xc4\xa0""cassette\xc4\xa0""carryi" +"ng\xc4\xa0""carriers\xc4\xa0""carriage\xc4\xa0""careless\xc4\xa0""captures\xc4\xa0" +"""captured\xc4\xa0""capsules\xc4\xa0""capacity\xc4\xa0""cannabis\xc4\xa0""cancel" +"ed\xc4\xa0""campuses\xc4\xa0""calories\xc4\xa0""callback\xc4\xa0""calendar\xc4\xa0" +"""calculus\xc4\xa0""caffeine\xc4\xa0""cabinets\xc4\xa0""bursting\xc4\xa0""burgla" +"ry\xc4\xa0""bullying\xc4\xa0""bullshit\xc4\xa0""builders\xc4\xa0""buffered\xc4\xa0" +"""brushing\xc4\xa0""browsing\xc4\xa0""browsers\xc4\xa0""brothers\xc4\xa0""bringi" +"ng\xc4\xa0""brightly\xc4\xa0""brighter\xc4\xa0""briefing\xc4\xa0""bridging\xc4\xa0" +"""brethren\xc4\xa0""breeding\xc4\xa0""breathed\xc4\xa0""breaking\xc4\xa0""breach" +"es\xc4\xa0""breached\xc4\xa0""branding\xc4\xa0""branches\xc4\xa0""branched\xc4\xa0" +"""brackets\xc4\xa0""bounding\xc4\xa0""boundary\xc4\xa0""bouncing\xc4\xa0""bother" +"ed\xc4\xa0""borrowed\xc4\xa0""boosting\xc4\xa0""boarding\xc4\xa0""blotting\xc4\xa0" +"""blogging\xc4\xa0""bloggers\xc4\xa0""blocking\xc4\xa0""blockers\xc4\xa0""blocka" +"de\xc4\xa0""blinding\xc4\xa0""blending\xc4\xa0""bleeding\xc4\xa0""blankets\xc4\xa0" +"""bitterly\xc4\xa0""birthday\xc4\xa0""biopsies\xc4\xa0""binomial\xc4\xa0""bindin" +"gs\xc4\xa0""binaries\xc4\xa0""billions\xc4\xa0""biblical\xc4\xa0""betrayed\xc4\xa0" +"""betrayal\xc4\xa0""benefits\xc4\xa0""belonged\xc4\xa0""believes\xc4\xa0""believ" +"ed\xc4\xa0""behaving\xc4\xa0""beginner\xc4\xa0""bedrooms\xc4\xa0""becoming\xc4\xa0" +"""bearings\xc4\xa0""battling\xc4\xa0""battered\xc4\xa0""basement\xc4\xa0""baseli" +"ne\xc4\xa0""baseball\xc4\xa0""barriers\xc4\xa0""barbecue\xc4\xa0""balloons\xc4\xa0" +"""balances\xc4\xa0""balanced\xc4\xa0""backyard\xc4\xa0""backpack\xc4\xa0""backla" +"sh\xc4\xa0""backdrop\xc4\xa0""backbone\xc4\xa0""bachelor\xc4\xa0""awarding\xc4\xa0" +"""awakened\xc4\xa0""awaiting\xc4\xa0""avoiding\xc4\xa0""aviation\xc4\xa0""averag" +"es\xc4\xa0""averaged\xc4\xa0""autonomy\xc4\xa0""authored\xc4\xa0""auditory\xc4\xa0" +"""audition\xc4\xa0""atypical\xc4\xa0""attracts\xc4\xa0""attended\xc4\xa0""attemp" +"ts\xc4\xa0""attained\xc4\xa0""attacked\xc4\xa0""attached\xc4\xa0""athletic\xc4\xa0" +"""athletes\xc4\xa0""asteroid\xc4\xa0""assuming\xc4\xa0""assisted\xc4\xa0""assign" +"ed\xc4\xa0""assessed\xc4\xa0""asserted\xc4\xa0""assembly\xc4\xa0""assaults\xc4\xa0" +"""ascribed\xc4\xa0""asbestos\xc4\xa0""artistic\xc4\xa0""articles\xc4\xa0""arteri" +"es\xc4\xa0""arterial\xc4\xa0""arrogant\xc4\xa0""arriving\xc4\xa0""arrhythm\xc4\xa0" +"""arrested\xc4\xa0""arranged\xc4\xa0""aromatic\xc4\xa0""arguably\xc4\xa0""argini" +"ne\xc4\xa0""archives\xc4\xa0""approved\xc4\xa0""approval\xc4\xa0""applying\xc4\xa0" +"""applause\xc4\xa0""appetite\xc4\xa0""appendix\xc4\xa0""appended\xc4\xa0""appear" +"ed\xc4\xa0""appealed\xc4\xa0""aperture\xc4\xa0""anywhere\xc4\xa0""anything\xc4\xa0" +"""antigens\xc4\xa0""antibody\xc4\xa0""anterior\xc4\xa0""antennas\xc4\xa0""answer" +"ed\xc4\xa0""annually\xc4\xa0""annoying\xc4\xa0""animated\xc4\xa0""aneurysm\xc4\xa0" +"""androgen\xc4\xa0""anchored\xc4\xa0""ancestry\xc4\xa0""analyzer\xc4\xa0""analyz" +"ed\xc4\xa0""analysts\xc4\xa0""analysis\xc4\xa0""analyses\xc4\xa0""analysed\xc4\xa0" +"""amygdala\xc4\xa0""amounted\xc4\xa0""ammonium\xc4\xa0""amenable\xc4\xa0""alveol" +"ar\xc4\xa0""aluminum\xc4\xa0""altitude\xc4\xa0""although\xc4\xa0""altering\xc4\xa0" +"""alphabet\xc4\xa0""allowing\xc4\xa0""alliance\xc4\xa0""allergic\xc4\xa0""allegi" +"ng\xc4\xa0""alkaline\xc4\xa0""algebras\xc4\xa0""albicans\xc4\xa0""alarming\xc4\xa0" +"""airports\xc4\xa0""airplane\xc4\xa0""airlines\xc4\xa0""aircraft\xc4\xa0""airbor" +"ne\xc4\xa0""agreeing\xc4\xa0""agonists\xc4\xa0""agitated\xc4\xa0""agencies\xc4\xa0" +"""afforded\xc4\xa0""affirmed\xc4\xa0""affinity\xc4\xa0""afferent\xc4\xa0""affect" +"ed\xc4\xa0""advocacy\xc4\xa0""advisory\xc4\xa0""advisors\xc4\xa0""advising\xc4\xa0" +"""advisers\xc4\xa0""advances\xc4\xa0""advanced\xc4\xa0""adsorbed\xc4\xa0""adorab" +"le\xc4\xa0""adoption\xc4\xa0""adopting\xc4\xa0""adjuvant\xc4\xa0""adjusted\xc4\xa0" +"""adjacent\xc4\xa0""adhesive\xc4\xa0""adhesion\xc4\xa0""adherent\xc4\xa0""adequa" +"cy\xc4\xa0""addicted\xc4\xa0""adaptive\xc4\xa0""adapting\xc4\xa0""actuator\xc4\xa0" +"""actually\xc4\xa0""activity\xc4\xa0""activism\xc4\xa0""actively\xc4\xa0""acquir" +"ed\xc4\xa0""acoustic\xc4\xa0""achieves\xc4\xa0""achieved\xc4\xa0""accusing\xc4\xa0" +"""accuracy\xc4\xa0""accounts\xc4\xa0""accorded\xc4\xa0""accessed\xc4\xa0""accept" +"or\xc4\xa0""accepted\xc4\xa0""abundant\xc4\xa0""absorbed\xc4\xa0""abruptly\xc4\xa0" +"""ablation\xc4\xa0""aberrant\xc4\xa0Zimbabwe\xc4\xa0Yugoslav\xc4\xa0Workshop\xc4" +"\xa0Wireless\xc4\xa0Winnipeg\xc4\xa0Wildlife\xc4\xa0Wilcoxon\xc4\xa0Whenever\xc4" +"\xa0Whatever\xc4\xa0Warriors\xc4\xa0WARRANTY\xc4\xa0Vladimir\xc4\xa0Virginia\xc4" +"\xa0Violence\xc4\xa0Veterans\xc4\xa0Vertical\xc4\xa0Valencia\xc4\xa0Universe\xc4" +"\xa0Trustees\xc4\xa0Tribunal\xc4\xa0Treasury\xc4\xa0Treasure\xc4\xa0Transfer\xc4" +"\xa0Training\xc4\xa0Township\xc4\xa0Tomorrow\xc4\xa0Together\xc4\xa0Thursday\xc4" +"\xa0Thornton\xc4\xa0Thompson\xc4\xa0Thinking\xc4\xa0Theodore\xc4\xa0Thailand\xc4" +"\xa0Terminal\xc4\xa0Template\xc4\xa0Teaching\xc4\xa0Teachers\xc4\xa0Tanzania\xc4" +"\xa0Syracuse\xc4\xa0Syndrome\xc4\xa0Symphony\xc4\xa0Survival\xc4\xa0Surgical\xc4" +"\xa0Superman\xc4\xa0Superior\xc4\xa0Sullivan\xc4\xa0Suddenly\xc4\xa0Subjects\xc4" +"\xa0Students\xc4\xa0Strategy\xc4\xa0Sterling\xc4\xa0Stephens\xc4\xa0Steelers\xc4" +"\xa0Statutes\xc4\xa0Starting\xc4\xa0Stanford\xc4\xa0Standing\xc4\xa0Stafford\xc4" +"\xa0Squadron\xc4\xa0Springer\xc4\xa0Spectrum\xc4\xa0Spearman\xc4\xa0Speaking\xc4" +"\xa0Southern\xc4\xa0Somerset\xc4\xa0Software\xc4\xa0Socrates\xc4\xa0Sinclair\xc4" +"\xa0Shipping\xc4\xa0Shepherd\xc4\xa0Shanghai\xc4\xa0Settings\xc4\xa0Sessions\xc4" +"\xa0Services\xc4\xa0Sergeant\xc4\xa0Sequence\xc4\xa0Senators\xc4\xa0Selected\xc4" +"\xa0Security\xc4\xa0Sections\xc4\xa0Secondly\xc4\xa0Scottish\xc4\xa0Scotland\xc4" +"\xa0Sciences\xc4\xa0Schwartz\xc4\xa0Scholars\xc4\xa0Schedule\xc4\xa0Saturday\xc4" +"\xa0Santiago\xc4\xa0Sanskrit\xc4\xa0Salvador\xc4\xa0SOFTWARE\xc4\xa0SERVICES\xc4" +"\xa0Russians\xc4\xa0Rousseau\xc4\xa0Romanian\xc4\xa0Robinson\xc4\xa0Richmond\xc4" +"\xa0Reynolds\xc4\xa0Reverend\xc4\xa0Response\xc4\xa0Reserved\xc4\xa0Required\xc4" +"\xa0Reporter\xc4\xa0Remember\xc4\xa0Religion\xc4\xa0Relative\xc4\xa0Registry\xc4" +"\xa0Register\xc4\xa0Regional\xc4\xa0Regiment\xc4\xa0Recovery\xc4\xa0Recently\xc4" +"\xa0Reaction\xc4\xa0Randolph\xc4\xa0Railroad\xc4\xa0Pursuant\xc4\xa0Purchase\xc4" +"\xa0Province\xc4\xa0Provider\xc4\xa0Protocol\xc4\xa0Proteins\xc4\xa0Prospect\xc4" +"\xa0Property\xc4\xa0Projects\xc4\xa0Programs\xc4\xa0Products\xc4\xa0Problems\xc4" +"\xa0Probably\xc4\xa0Priority\xc4\xa0Princess\xc4\xa0Pressure\xc4\xa0Practice\xc4" +"\xa0Possible\xc4\xa0Positive\xc4\xa0Position\xc4\xa0Portugal\xc4\xa0Portland\xc4" +"\xa0Politics\xc4\xa0Pok\xc3\x83\xc2\xa9mon\xc4\xa0Plymouth\xc4\xa0Platform\xc4\xa0" +"Planning\xc4\xa0Pictures\xc4\xa0Physical\xc4\xa0Phillips\xc4\xa0Philippe\xc4\xa0" +"Peterson\xc4\xa0Pentagon\xc4\xa0Patriots\xc4\xa0Patricia\xc4\xa0Patients\xc4\xa0" +"Password\xc4\xa0Paradise\xc4\xa0Panthers\xc4\xa0PROVIDED\xc4\xa0Overview\xc4\xa0" +"Outcomes\xc4\xa0Orthodox\xc4\xa0Oriental\xc4\xa0Optional\xc4\xa0Operator\xc4\xa0" +"Olympics\xc4\xa0Oklahoma\xc4\xa0Official\xc4\xa0Officers\xc4\xa0Observer\xc4\xa0" +"Numerous\xc4\xa0November\xc4\xa0Northern\xc4\xa0Normally\xc4\xa0Nintendo\xc4\xa0" +"Nigerian\xc4\xa0Nicholas\xc4\xa0Networks\xc4\xa0Negative\xc4\xa0Nebraska\xc4\xa0" +"National\xc4\xa0Napoleon\xc4\xa0Nacional\xc4\xa0NSString\xc4\xa0Multiple\xc4\xa0" +"Muhammad\xc4\xa0Movement\xc4\xa0Mortgage\xc4\xa0Morrison\xc4\xa0Moreover\xc4\xa0" +"Montreal\xc4\xa0Monsieur\xc4\xa0Mohammed\xc4\xa0Modified\xc4\xa0Mitchell\xc4\xa0" +"Missouri\xc4\xa0Ministry\xc4\xa0Minister\xc4\xa0Military\xc4\xa0Michigan\xc4\xa0" +"Michelle\xc4\xa0Mercedes\xc4\xa0Menschen\xc4\xa0Memorial\xc4\xa0Medicine\xc4\xa0" +"Medicare\xc4\xa0Medicaid\xc4\xa0McDonald\xc4\xa0McCarthy\xc4\xa0Matthews\xc4\xa0" +"Maryland\xc4\xa0Martinez\xc4\xa0Marshall\xc4\xa0Marriage\xc4\xa0Margaret\xc4\xa0" +"Marathon\xc4\xa0Managing\xc4\xa0Majority\xc4\xa0Magnetic\xc4\xa0Magazine\xc4\xa0" +"Location\xc4\xa0LinkedIn\xc4\xa0Likewise\xc4\xa0Licensed\xc4\xa0Liberals\xc4\xa0" +"Lebanese\xc4\xa0Learning\xc4\xa0Lawrence\xc4\xa0Language\xc4\xa0Kingston\xc4\xa0" +"Kentucky\xc4\xa0Kathleen\xc4\xa0Judicial\xc4\xa0Judgment\xc4\xa0Jonathan\xc4\xa0" +"Johnston\xc4\xa0Johannes\xc4\xa0Jennings\xc4\xa0Jennifer\xc4\xa0Japanese\xc4\xa0" +"Istanbul\xc4\xa0Israelis\xc4\xa0Islamist\xc4\xa0Internet\xc4\xa0Internal\xc4\xa0" +"Interior\xc4\xa0Infantry\xc4\xa0Industry\xc4\xa0Imperial\xc4\xa0Illumina\xc4\xa0" +"Illinois\xc4\xa0Identity\xc4\xa0INDIRECT\xc4\xa0INCIDENT\xc4\xa0Hospital\xc4\xa0" +"Homeland\xc4\xa0Holdings\xc4\xa0Hispanic\xc4\xa0Heritage\xc4\xa0Hercules\xc4\xa0" +"Helsinki\xc4\xa0Hawaiian\xc4\xa0Hastings\xc4\xa0Hartford\xc4\xa0Harrison\xc4\xa0" +"Handbook\xc4\xa0Guardian\xc4\xa0Griffith\xc4\xa0Graphics\xc4\xa0Graduate\xc4\xa0" +"Governor\xc4\xa0Gonzalez\xc4\xa0Gonzales\xc4\xa0Goldberg\xc4\xa0Giovanni\xc4\xa0" +"Geometry\xc4\xa0Geoffrey\xc4\xa0Gaussian\xc4\xa0Galactic\xc4\xa0""Frontier\xc4\xa0" +"""Friedman\xc4\xa0""Franklin\xc4\xa0""Fragment\xc4\xa0""Football\xc4\xa0""Floren" +"ce\xc4\xa0""Fletcher\xc4\xa0""Findings\xc4\xa0""Fighting\xc4\xa0""Festival\xc4\xa0" +"""Fernando\xc4\xa0""Ferguson\xc4\xa0""February\xc4\xa0""Features\xc4\xa0""Famili" +"es\xc4\xa0""Facility\xc4\xa0""Facebook\xc4\xa0""External\xc4\xa0""Extended\xc4\xa0" +"""Exposure\xc4\xa0""Explorer\xc4\xa0""Exercise\xc4\xa0""Exchange\xc4\xa0""Exampl" +"es\xc4\xa0""Evidence\xc4\xa0""Everyone\xc4\xa0""Europese\xc4\xa0""Euroopan\xc4\xa0" +"""Ethiopia\xc4\xa0""Ethernet\xc4\xa0""Ethereum\xc4\xa0""Emmanuel\xc4\xa0""Emirat" +"es\xc4\xa0""Eleventh\xc4\xa0""Elements\xc4\xa0""Election\xc4\xa0""Einstein\xc4\xa0" +"""Egyptian\xc4\xa0""Edmonton\xc4\xa0""Dynamics\xc4\xa0""Duration\xc4\xa0""Downto" +"wn\xc4\xa0""Download\xc4\xa0""Domestic\xc4\xa0""Division\xc4\xa0""District\xc4\xa0" +"""Distance\xc4\xa0""Diseases\xc4\xa0""Diabetes\xc4\xa0""Deutsche\xc4\xa0""Detail" +"ed\xc4\xa0""Delivery\xc4\xa0""Delaware\xc4\xa0""Defender\xc4\xa0""Decision\xc4\xa0" +"""December\xc4\xa0""Davidson\xc4\xa0""DateTime\xc4\xa0""Database\xc4\xa0""Damasc" +"us\xc4\xa0""DISTRICT\xc4\xa0""DISCLAIM\xc4\xa0""Cultural\xc4\xa0""Critical\xc4\xa0" +"""Criteria\xc4\xa0""Criminal\xc4\xa0""Creative\xc4\xa0""Creation\xc4\xa0""Creati" +"ng\xc4\xa0""Crawford\xc4\xa0""Cornwall\xc4\xa0""Controls\xc4\xa0""Contrary\xc4\xa0" +"""Contract\xc4\xa0""Continue\xc4\xa0""Contents\xc4\xa0""Consumer\xc4\xa0""Confli" +"ct\xc4\xa0""Computer\xc4\xa0""Compound\xc4\xa0""Complete\xc4\xa0""Compared\xc4\xa0" +"""Commerce\xc4\xa0""Comments\xc4\xa0""Combined\xc4\xa0""Columbus\xc4\xa0""Columb" +"ia\xc4\xa0""Colorado\xc4\xa0""Colonial\xc4\xa0""Colombia\xc4\xa0""Cochrane\xc4\xa0" +"""Clinical\xc4\xa0""Clifford\xc4\xa0""Citizens\xc4\xa0""Chrysler\xc4\xa0""Christ" +"ie\xc4\xa0""Children\xc4\xa0""Cherokee\xc4\xa0""Chemical\xc4\xa0""Changing\xc4\xa0" +"""Chandler\xc4\xa0""Chambers\xc4\xa0""Chairman\xc4\xa0""Cemetery\xc4\xa0""Cellul" +"ar\xc4\xa0""Category\xc4\xa0""Caroline\xc4\xa0""Carolina\xc4\xa0""Carnegie\xc4\xa0" +"""Campbell\xc4\xa0""Campaign\xc4\xa0""Cambodia\xc4\xa0""Calendar\xc4\xa0""CONTRA" +"CT\xc4\xa0""Business\xc4\xa0""Bulletin\xc4\xa0""Bulgaria\xc4\xa0""Building\xc4\xa0" +"""Buddhist\xc4\xa0""Buddhism\xc4\xa0""Budapest\xc4\xa0""Brussels\xc4\xa0""Browni" +"an\xc4\xa0""Brothers\xc4\xa0""Brooklyn\xc4\xa0""Broadway\xc4\xa0""Brisbane\xc4\xa0" +"""Brighton\xc4\xa0""Breaking\xc4\xa0""Bradford\xc4\xa0""Berkeley\xc4\xa0""Benjam" +"in\xc4\xa0""Benefits\xc4\xa0""Benedict\xc4\xa0""Behavior\xc4\xa0""Bayesian\xc4\xa0" +"""Baseline\xc4\xa0""Baseball\xc4\xa0""Bachelor\xc4\xa0""BUSINESS\xc4\xa0""Aviati" +"on\xc4\xa0""Avengers\xc4\xa0""Austrian\xc4\xa0""Augustus\xc4\xa0""Auckland\xc4\xa0" +"""Atlantic\xc4\xa0""Assuming\xc4\xa0""Assembly\xc4\xa0""Articles\xc4\xa0""Armeni" +"an\xc4\xa0""Arkansas\xc4\xa0""Argument\xc4\xa0""Archives\xc4\xa0""Approach\xc4\xa0" +"""Applying\xc4\xa0""Appendix\xc4\xa0""Anything\xc4\xa0""Anglican\xc4\xa0""Anders" +"on\xc4\xa0""Analysis\xc4\xa0""Analyses\xc4\xa0""Americas\xc4\xa0""Although\xc4\xa0" +"""Alliance\xc4\xa0""Airlines\xc4\xa0""Aircraft\xc4\xa0""Africans\xc4\xa0""Adviso" +"ry\xc4\xa0""Advanced\xc4\xa0""Adelaide\xc4\xa0""Actually\xc4\xa0""Activity\xc4\xa0" +"""Academic\xc4\xa0""Abstract\xc4\xa0""Absolute\xc4\xa0""Abdullah\xc4\xa0""AFFIRM" +"ED\xc4\x8a\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\x8a\xc4\xa0\xc4\xa0\xc4\xa0\xc4\x8a" +"\xc4\xa0\xc4\xa0\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc3\x82\xc5\x82\xc3\xa3\xc4\xa3" +"\xc4\xb9\xc3\xa3\xc4\xa3\xc2\xbe\xc3\xa3\xc4\xa3\xc4\xbb\xc3\xa3\xc4\xa3\xc4\xb7" +"\xc3\xa3\xc4\xa4\xc4\xae\xc3\xa3\xc4\xa3\xc5\x81\xc3\xa3\xc4\xa3\xc4\xb5\xc3\xa3" +"\xc4\xa3\xc2\xa8\xc3\xa3\xc4\xa3\xc4\xae\xc3\xa3\xc4\xa3\xc2\xbe\xc3\xa3\xc4\xa3" +"\xc4\xbd\xc3\xa3\xc4\xa4\xc4\xb5\xc3\xa3\xc4\xa3\xc2\xbe\xc3\xa3\xc4\xa3\xc4\xb9" +"\xc3\xa3\xc4\xa3\xc5\x81\xc3\xa3\xc4\xa3\xc2\xa8\xc3\xa3\xc4\xa3\xc4\xb9\xc3\xa3" +"\xc4\xa3\xc2\xa6\xc3\xa3\xc4\xa3\xc2\xa8\xc3\xa3\xc4\xa3\xc4\xa6\xc3\xa3\xc4\xa3" +"\xc4\xa8\xc3\xa3\xc4\xa3\xc2\xa6\xc3\xa3\xc4\xa3\xc4\xa6\xc3\xa3\xc4\xa3\xc5\x81" +"\xc3\xa2\xc4\xa2\xc4\xa5\xc3\xa2\xc4\xa2\xc4\xa5\xc3\xa2\xc4\xa2\xc4\xa5xfffffff" +"fwordpresswikipediawidetildeunderlineunciationumberlandtextwidthtextstylesubstri" +"ngstringifysmallcapssetlengthpropyleneoproteinsophysicalomitemptyolinergicokinet" +"icsographiesogenicityodynamicsocompleteoblastomaobacteriaobacillusnonatomicmicro" +"softlipidemialinewidthleftarrowlaunchpadizabilityivariableitivenessinnerHTMLicul" +"ouslyhibernategetStringformatterfasterxmlellaneousdownarrowclamationblockListbac" +"kslashatizationantically^\xc3\xa2\xc4\xaa\xc4\xb4/\xc3\xa2\xc4\xaa\xc4\xb4^Yeste" +"rdayWriteLineViewModelValidatorUnmarshalUndecidedTimestampThresholdTextFieldSupp" +"ortedSubscribeRearrangeProcessorPopulatedPartitionPLICATIONNamespaceItemGroupIma" +"geViewITERATIONHighlightGroupNameGeographyGeneratorFormatterFORMATIONExpansionEx" +"ecutionEventArgsETHERTYPEDirectionConverterConstantsCompletedCompetingClassNameC" +"lCompileBiographyArgumentsAlignmentASHINGTON\xc4\xa0\xc3\x8e\xc2\xba\xc3\x8e\xc2" +"\xb1\xc3\xa1\xc2\xbd\xc2\xb6\xc4\xa0youtube\xc4\xa0younger\xc4\xa0yielded\xc4\xa0" +"yelling\xc4\xa0wrought\xc4\xa0wrongly\xc4\xa0written\xc4\xa0writers\xc4\xa0wrapp" +"er\xc4\xa0wrapped\xc4\xa0wounded\xc4\xa0worship\xc4\xa0worries\xc4\xa0worried\xc4" +"\xa0workout\xc4\xa0working\xc4\xa0workers\xc4\xa0wording\xc4\xa0wonders\xc4\xa0w" +"ithout\xc4\xa0wishing\xc4\xa0winning\xc4\xa0winners\xc4\xa0windows\xc4\xa0windin" +"g\xc4\xa0willful\xc4\xa0widened\xc4\xa0whoever\xc4\xa0whistle\xc4\xa0whiskey\xc4" +"\xa0whipped\xc4\xa0whether\xc4\xa0wherein\xc4\xa0whereby\xc4\xa0whereas\xc4\xa0w" +"estern\xc4\xa0welfare\xc4\xa0welding\xc4\xa0weights\xc4\xa0weighed\xc4\xa0weepin" +"g\xc4\xa0webpage\xc4\xa0weaving\xc4\xa0weather\xc4\xa0wearing\xc4\xa0weapons\xc4" +"\xa0wealthy\xc4\xa0watches\xc4\xa0watched\xc4\xa0wasting\xc4\xa0washing\xc4\xa0w" +"artime\xc4\xa0warming\xc4\xa0warfare\xc4\xa0wanting\xc4\xa0walking\xc4\xa0waitin" +"g\xc4\xa0volumes\xc4\xa0volcano\xc4\xa0visited\xc4\xa0visions\xc4\xa0visibly\xc4" +"\xa0visible\xc4\xa0viscous\xc4\xa0viruses\xc4\xa0virtues\xc4\xa0vintage\xc4\xa0v" +"inegar\xc4\xa0villain\xc4\xa0viewing\xc4\xa0viewers\xc4\xa0victory\xc4\xa0victim" +"s\xc4\xa0vicious\xc4\xa0vibrant\xc4\xa0vessels\xc4\xa0verdict\xc4\xa0verbose\xc4" +"\xa0ventral\xc4\xa0vendors\xc4\xa0vectors\xc4\xa0varying\xc4\xa0various\xc4\xa0v" +"ariety\xc4\xa0varchar\xc4\xa0vanilla\xc4\xa0vampire\xc4\xa0valleys\xc4\xa0valenc" +"e\xc4\xa0vaguely\xc4\xa0vaginal\xc4\xa0vacated\xc4\xa0vacancy\xc4\xa0utterly\xc4" +"\xa0uttered\xc4\xa0utility\xc4\xa0uterine\xc4\xa0usually\xc4\xa0useless\xc4\xa0u" +"rinary\xc4\xa0urgency\xc4\xa0uranium\xc4\xa0upwards\xc4\xa0upright\xc4\xa0update" +"s\xc4\xa0updated\xc4\xa0unravel\xc4\xa0unnamed\xc4\xa0unknown\xc4\xa0unitary\xc4" +"\xa0unified\xc4\xa0unicode\xc4\xa0unhappy\xc4\xa0unequiv\xc4\xa0unequal\xc4\xa0u" +"nclear\xc4\xa0unaware\xc4\xa0uintptr\xc4\xa0tyranny\xc4\xa0typedef\xc4\xa0twitte" +"r\xc4\xa0twisted\xc4\xa0tweeted\xc4\xa0turnout\xc4\xa0turning\xc4\xa0turmoil\xc4" +"\xa0tunnels\xc4\xa0tumours\xc4\xa0tuition\xc4\xa0tubular\xc4\xa0trypsin\xc4\xa0t" +"rusted\xc4\xa0trivial\xc4\xa0triumph\xc4\xa0triplet\xc4\xa0trimmed\xc4\xa0trilog" +"y\xc4\xa0tribute\xc4\xa0treated\xc4\xa0treason\xc4\xa0travels\xc4\xa0travail\xc4" +"\xa0trapped\xc4\xa0traitor\xc4\xa0trained\xc4\xa0tragedy\xc4\xa0trading\xc4\xa0t" +"raders\xc4\xa0tractor\xc4\xa0tracker\xc4\xa0tracked\xc4\xa0tracing\xc4\xa0toward" +"s\xc4\xa0tourism\xc4\xa0touring\xc4\xa0tougher\xc4\xa0touches\xc4\xa0touched\xc4" +"\xa0totally\xc4\xa0tossing\xc4\xa0torsion\xc4\xa0torrent\xc4\xa0tornado\xc4\xa0t" +"orment\xc4\xa0topical\xc4\xa0toolbar\xc4\xa0tonight\xc4\xa0tongues\xc4\xa0toddle" +"r\xc4\xa0tobacco\xc4\xa0toasted\xc4\xa0tissues\xc4\xa0timeout\xc4\xa0tightly\xc4" +"\xa0tighter\xc4\xa0tickets\xc4\xa0thyroid\xc4\xa0thunder\xc4\xa0threats\xc4\xa0t" +"hreads\xc4\xa0thinner\xc4\xa0thieves\xc4\xa0thicker\xc4\xa0thereto\xc4\xa0thereo" +"n\xc4\xa0thereof\xc4\xa0therein\xc4\xa0thereby\xc4\xa0therapy\xc4\xa0theatre\xc4" +"\xa0thanked\xc4\xa0textual\xc4\xa0textile\xc4\xa0testing\xc4\xa0terrain\xc4\xa0t" +"errace\xc4\xa0tensors\xc4\xa0tensile\xc4\xa0tending\xc4\xa0tenants\xc4\xa0tempte" +"d\xc4\xa0temples\xc4\xa0telling\xc4\xa0tedious\xc4\xa0tearing\xc4\xa0teaches\xc4" +"\xa0taxable\xc4\xa0tasting\xc4\xa0tariffs\xc4\xa0targets\xc4\xa0tapping\xc4\xa0t" +"angled\xc4\xa0tangent\xc4\xa0tamb\xc3\x83\xc2\xa9m\xc4\xa0talking\xc4\xa0talents" +"\xc4\xa0tagging\xc4\xa0tactics\xc4\xa0tackles\xc4\xa0tablets\xc4\xa0systems\xc4\xa0" +"syscall\xc4\xa0syringe\xc4\xa0symbols\xc4\xa0swollen\xc4\xa0swiftly\xc4\xa0sweat" +"er\xc4\xa0surveys\xc4\xa0surreal\xc4\xa0surplus\xc4\xa0surname\xc4\xa0surgery\xc4" +"\xa0surfing\xc4\xa0supreme\xc4\xa0summons\xc4\xa0summing\xc4\xa0summary\xc4\xa0s" +"ulfate\xc4\xa0suicide\xc4\xa0suffers\xc4\xa0suction\xc4\xa0sucrose\xc4\xa0suckin" +"g\xc4\xa0suburbs\xc4\xa0subsets\xc4\xa0stylish\xc4\xa0styling\xc4\xa0stunned\xc4" +"\xa0stuffed\xc4\xa0studios\xc4\xa0studies\xc4\xa0studied\xc4\xa0stromal\xc4\xa0s" +"trokes\xc4\xa0stripes\xc4\xa0strings\xc4\xa0strikes\xc4\xa0striker\xc4\xa0stride" +"s\xc4\xa0streets\xc4\xa0streams\xc4\xa0strands\xc4\xa0strains\xc4\xa0storing\xc4" +"\xa0stories\xc4\xa0storage\xc4\xa0stopped\xc4\xa0stomach\xc4\xa0stirred\xc4\xa0s" +"timuli\xc4\xa0steward\xc4\xa0sterile\xc4\xa0stepped\xc4\xa0stellar\xc4\xa0stealt" +"h\xc4\xa0staying\xc4\xa0stature\xc4\xa0statues\xc4\xa0stating\xc4\xa0started\xc4" +"\xa0starred\xc4\xa0staring\xc4\xa0stamped\xc4\xa0stalled\xc4\xa0stained\xc4\xa0s" +"taging\xc4\xa0stadium\xc4\xa0stacked\xc4\xa0stabbed\xc4\xa0squares\xc4\xa0square" +"d\xc4\xa0springs\xc4\xa0sprayed\xc4\xa0spouses\xc4\xa0spotted\xc4\xa0spoiled\xc4" +"\xa0spirits\xc4\xa0spindle\xc4\xa0spinach\xc4\xa0spilled\xc4\xa0spiders\xc4\xa0s" +"pheres\xc4\xa0spermat\xc4\xa0spelled\xc4\xa0species\xc4\xa0sparked\xc4\xa0sparin" +"g\xc4\xa0spanned\xc4\xa0spacing\xc4\xa0soybean\xc4\xa0sources\xc4\xa0sourced\xc4" +"\xa0sounded\xc4\xa0sorting\xc4\xa0someone\xc4\xa0somehow\xc4\xa0someday\xc4\xa0s" +"omatic\xc4\xa0solving\xc4\xa0soluble\xc4\xa0solicit\xc4\xa0sockets\xc4\xa0societ" +"y\xc4\xa0snippet\xc4\xa0snapped\xc4\xa0smoking\xc4\xa0smokers\xc4\xa0smiling\xc4" +"\xa0smelled\xc4\xa0smashed\xc4\xa0smarter\xc4\xa0smaller\xc4\xa0slowing\xc4\xa0s" +"lipped\xc4\xa0sliding\xc4\xa0slender\xc4\xa0sleeves\xc4\xa0slavery\xc4\xa0slappe" +"d\xc4\xa0slammed\xc4\xa0skipped\xc4\xa0skillet\xc4\xa0skilled\xc4\xa0skating\xc4" +"\xa0sixteen\xc4\xa0sitting\xc4\xa0sisters\xc4\xa0sistema\xc4\xa0sinking\xc4\xa0s" +"ingles\xc4\xa0singing\xc4\xa0singers\xc4\xa0simplex\xc4\xa0simpler\xc4\xa0signin" +"g\xc4\xa0signals\xc4\xa0siempre\xc4\xa0sidebar\xc4\xa0shuttle\xc4\xa0shutter\xc4" +"\xa0shuffle\xc4\xa0showing\xc4\xa0showers\xc4\xa0shouted\xc4\xa0shouldn\xc4\xa0s" +"hotgun\xc4\xa0shortly\xc4\xa0shorter\xc4\xa0shooter\xc4\xa0shocked\xc4\xa0shippe" +"d\xc4\xa0shining\xc4\xa0shifted\xc4\xa0shields\xc4\xa0sheriff\xc4\xa0shelves\xc4" +"\xa0sharply\xc4\xa0sharing\xc4\xa0shaping\xc4\xa0shallow\xc4\xa0shaking\xc4\xa0s" +"hadows\xc4\xa0severed\xc4\xa0several\xc4\xa0seventy\xc4\xa0seventh\xc4\xa0settle" +"d\xc4\xa0serving\xc4\xa0servers\xc4\xa0serpent\xc4\xa0sequest\xc4\xa0sentido\xc4" +"\xa0sensory\xc4\xa0sensors\xc4\xa0sensing\xc4\xa0seniors\xc4\xa0sending\xc4\xa0s" +"eminar\xc4\xa0seminal\xc4\xa0selling\xc4\xa0sellers\xc4\xa0selfish\xc4\xa0select" +"s\xc4\xa0seismic\xc4\xa0segundo\xc4\xa0seeking\xc4\xa0seekers\xc4\xa0secured\xc4" +"\xa0secular\xc4\xa0sectors\xc4\xa0secrets\xc4\xa0secrecy\xc4\xa0seconds\xc4\xa0s" +"eating\xc4\xa0seasons\xc4\xa0sealing\xc4\xa0seafood\xc4\xa0screwed\xc4\xa0scream" +"s\xc4\xa0scoring\xc4\xa0schools\xc4\xa0schemes\xc4\xa0scenery\xc4\xa0scanner\xc4" +"\xa0scanned\xc4\xa0scandal\xc4\xa0scaling\xc4\xa0savings\xc4\xa0sausage\xc4\xa0s" +"arcoma\xc4\xa0samples\xc4\xa0sampled\xc4\xa0salvage\xc4\xa0salient\xc4\xa0sailor" +"s\xc4\xa0sailing\xc4\xa0sadness\xc4\xa0rushing\xc4\xa0rupture\xc4\xa0runtime\xc4" +"\xa0running\xc4\xa0runners\xc4\xa0rulings\xc4\xa0rubbish\xc4\xa0rubbing\xc4\xa0r" +"oyalty\xc4\xa0routing\xc4\xa0rounded\xc4\xa0roughly\xc4\xa0rotates\xc4\xa0rotate" +"d\xc4\xa0romance\xc4\xa0rolling\xc4\xa0rollers\xc4\xa0rodents\xc4\xa0rocking\xc4" +"\xa0rockets\xc4\xa0robotic\xc4\xa0robbery\xc4\xa0roasted\xc4\xa0roadway\xc4\xa0r" +"ivalry\xc4\xa0rituals\xc4\xa0ringing\xc4\xa0rightly\xc4\xa0richest\xc4\xa0rhythm" +"s\xc4\xa0rewrite\xc4\xa0rewards\xc4\xa0revoked\xc4\xa0revived\xc4\xa0revival\xc4" +"\xa0revisit\xc4\xa0revised\xc4\xa0reviews\xc4\xa0revenge\xc4\xa0reveals\xc4\xa0r" +"eunion\xc4\xa0returns\xc4\xa0retired\xc4\xa0retinal\xc4\xa0retains\xc4\xa0resume" +"d\xc4\xa0results\xc4\xa0resting\xc4\xa0restart\xc4\xa0resorts\xc4\xa0resides\xc4" +"\xa0resided\xc4\xa0rescued\xc4\xa0repr\xc3\x83\xc2\xa9s\xc4\xa0reports\xc4\xa0re" +"plies\xc4\xa0replied\xc4\xa0repeats\xc4\xa0repairs\xc4\xa0rentals\xc4\xa0renewed" +"\xc4\xa0renewal\xc4\xa0renders\xc4\xa0renamed\xc4\xa0removes\xc4\xa0removed\xc4\xa0" +"removal\xc4\xa0remorse\xc4\xa0reminds\xc4\xa0remarks\xc4\xa0remains\xc4\xa0relyi" +"ng\xc4\xa0relinqu\xc4\xa0relaxed\xc4\xa0relates\xc4\xa0related\xc4\xa0relapse\xc4" +"\xa0rejects\xc4\xa0rehears\xc4\xa0regions\xc4\xa0regimes\xc4\xa0regards\xc4\xa0r" +"efuses\xc4\xa0refused\xc4\xa0refusal\xc4\xa0refrain\xc4\xa0reforms\xc4\xa0refine" +"d\xc4\xa0referee\xc4\xa0reduces\xc4\xa0reduced\xc4\xa0recount\xc4\xa0records\xc4" +"\xa0recited\xc4\xa0recipes\xc4\xa0recalls\xc4\xa0rebuilt\xc4\xa0reasons\xc4\xa0r" +"eality\xc4\xa0realism\xc4\xa0readout\xc4\xa0readily\xc4\xa0readers\xc4\xa0reacte" +"d\xc4\xa0reaches\xc4\xa0reached\xc4\xa0ratings\xc4\xa0rapport\xc4\xa0rapidly\xc4" +"\xa0ranging\xc4\xa0rallies\xc4\xa0raising\xc4\xa0rainbow\xc4\xa0railway\xc4\xa0r" +"adiant\xc4\xa0rabbits\xc4\xa0quoting\xc4\xa0quietly\xc4\xa0quickly\xc4\xa0quicke" +"r\xc4\xa0queries\xc4\xa0quatern\xc4\xa0quarrel\xc4\xa0quarant\xc4\xa0quantum\xc4" +"\xa0quality\xc4\xa0quadrup\xc4\xa0p\xc3\x83\xc2\xba""blic\xc4\xa0pyramid\xc4\xa0" +"puzzles\xc4\xa0puzzled\xc4\xa0putting\xc4\xa0pushing\xc4\xa0pursuit\xc4\xa0pursu" +"ed\xc4\xa0punches\xc4\xa0punched\xc4\xa0pumpkin\xc4\xa0pumping\xc4\xa0pulling\xc4" +"\xa0pudding\xc4\xa0psychic\xc4\xa0prudent\xc4\xa0proving\xc4\xa0proudly\xc4\xa0p" +"rotons\xc4\xa0prompts\xc4\xa0progeny\xc4\xa0profits\xc4\xa0probing\xc4\xa0privac" +"y\xc4\xa0prisons\xc4\xa0printed\xc4\xa0priming\xc4\xa0primers\xc4\xa0primary\xc4" +"\xa0priests\xc4\xa0pricing\xc4\xa0preview\xc4\xa0pretext\xc4\xa0preterm\xc4\xa0p" +"resses\xc4\xa0pressed\xc4\xa0prefers\xc4\xa0preempt\xc4\xa0praying\xc4\xa0prayer" +"s\xc4\xa0praised\xc4\xa0powered\xc4\xa0powders\xc4\xa0poverty\xc4\xa0pouring\xc4" +"\xa0poultry\xc4\xa0potency\xc4\xa0posture\xc4\xa0posting\xc4\xa0posters\xc4\xa0p" +"orcine\xc4\xa0popping\xc4\xa0poorest\xc4\xa0pooling\xc4\xa0polygon\xc4\xa0pollin" +"g\xc4\xa0policym\xc4\xa0pointed\xc4\xa0podcast\xc4\xa0pockets\xc4\xa0plunged\xc4" +"\xa0plugins\xc4\xa0plugged\xc4\xa0plotted\xc4\xa0pleural\xc4\xa0pledged\xc4\xa0p" +"leased\xc4\xa0pleaded\xc4\xa0playing\xc4\xa0playful\xc4\xa0players\xc4\xa0platin" +"g\xc4\xa0plateau\xc4\xa0plaster\xc4\xa0plasmon\xc4\xa0plaques\xc4\xa0planted\xc4" +"\xa0planned\xc4\xa0planets\xc4\xa0plainly\xc4\xa0plagued\xc4\xa0placing\xc4\xa0p" +"lacebo\xc4\xa0pivotal\xc4\xa0pitches\xc4\xa0pitched\xc4\xa0pirates\xc4\xa0pillar" +"s\xc4\xa0pigment\xc4\xa0picking\xc4\xa0physics\xc4\xa0phrases\xc4\xa0photons\xc4" +"\xa0phantom\xc4\xa0pessoas\xc4\xa0persons\xc4\xa0perplex\xc4\xa0permits\xc4\xa0p" +"eriods\xc4\xa0perhaps\xc4\xa0perfume\xc4\xa0peppers\xc4\xa0peoples\xc4\xa0pendin" +"g\xc4\xa0pendant\xc4\xa0penalty\xc4\xa0pellets\xc4\xa0pa\xc3\x83\xc5\x83ses\xc4\xa0" +"payroll\xc4\xa0payload\xc4\xa0payable\xc4\xa0patrons\xc4\xa0patents\xc4\xa0patch" +"es\xc4\xa0pasture\xc4\xa0passive\xc4\xa0passing\xc4\xa0parties\xc4\xa0parsley\xc4" +"\xa0parsing\xc4\xa0parking\xc4\xa0parents\xc4\xa0parench\xc4\xa0paradox\xc4\xa0p" +"alette\xc4\xa0pairing\xc4\xa0painted\xc4\xa0padding\xc4\xa0packing\xc4\xa0packet" +"s\xc4\xa0oxidase\xc4\xa0oversee\xc4\xa0overlay\xc4\xa0overest\xc4\xa0overall\xc4" +"\xa0ovarian\xc4\xa0outward\xc4\xa0outside\xc4\xa0outputs\xc4\xa0outlook\xc4\xa0o" +"utlets\xc4\xa0outflow\xc4\xa0outfits\xc4\xa0origins\xc4\xa0organic\xc4\xa0ordina" +"l\xc4\xa0orderly\xc4\xa0ordered\xc4\xa0options\xc4\xa0optimum\xc4\xa0optimal\xc4" +"\xa0opposed\xc4\xa0opioids\xc4\xa0ophthal\xc4\xa0opacity\xc4\xa0oocytes\xc4\xa0o" +"nwards\xc4\xa0ongoing\xc4\xa0oneself\xc4\xa0onclick\xc4\xa0onboard\xc4\xa0onClic" +"k\xc4\xa0omitted\xc4\xa0offsets\xc4\xa0offline\xc4\xa0offices\xc4\xa0offered\xc4" +"\xa0offence\xc4\xa0obtains\xc4\xa0obliter\xc4\xa0oblique\xc4\xa0obliged\xc4\xa0o" +"bjects\xc4\xa0obesity\xc4\xa0nursing\xc4\xa0nursery\xc4\xa0numbers\xc4\xa0nullpt" +"r\xc4\xa0nucleus\xc4\xa0nucleon\xc4\xa0nucleic\xc4\xa0nuclear\xc4\xa0nowhere\xc4" +"\xa0novelty\xc4\xa0nouveau\xc4\xa0notions\xc4\xa0notices\xc4\xa0noticed\xc4\xa0n" +"othing\xc4\xa0notably\xc4\xa0notable\xc4\xa0noodles\xc4\xa0nonzero\xc4\xa0nomine" +"e\xc4\xa0nominal\xc4\xa0nodules\xc4\xa0nodding\xc4\xa0nitride\xc4\xa0nitrate\xc4" +"\xa0neutron\xc4\xa0neurons\xc4\xa0nesting\xc4\xa0nervous\xc4\xa0neither\xc4\xa0n" +"eedles\xc4\xa0needing\xc4\xa0nearest\xc4\xa0natives\xc4\xa0nations\xc4\xa0narcis" +"s\xc4\xa0mystery\xc4\xa0myeloid\xc4\xa0mutated\xc4\xa0mutants\xc4\xa0mustard\xc4" +"\xa0musical\xc4\xa0museums\xc4\xa0muscles\xc4\xa0murders\xc4\xa0mundane\xc4\xa0m" +"ucosal\xc4\xa0movable\xc4\xa0mounted\xc4\xa0motives\xc4\xa0motions\xc4\xa0mother" +"s\xc4\xa0morally\xc4\xa0monthly\xc4\xa0monkeys\xc4\xa0monarch\xc4\xa0moments\xc4" +"\xa0momento\xc4\xa0momenta\xc4\xa0molding\xc4\xa0modulus\xc4\xa0modules\xc4\xa0m" +"odular\xc4\xa0modeled\xc4\xa0mocking\xc4\xa0mitotic\xc4\xa0missing\xc4\xa0mirror" +"s\xc4\xa0minutes\xc4\xa0minimum\xc4\xa0mindset\xc4\xa0milling\xc4\xa0militia\xc4" +"\xa0metrics\xc4\xa0methods\xc4\xa0methane\xc4\xa0merging\xc4\xa0mergers\xc4\xa0m" +"ercury\xc4\xa0melting\xc4\xa0measles\xc4\xa0maximum\xc4\xa0maximal\xc4\xa0matter" +"s\xc4\xa0matches\xc4\xa0matched\xc4\xa0mastery\xc4\xa0masters\xc4\xa0massage\xc4" +"\xa0masking\xc4\xa0martial\xc4\xa0married\xc4\xa0markets\xc4\xa0markers\xc4\xa0m" +"arital\xc4\xa0margins\xc4\xa0marched\xc4\xa0mansion\xc4\xa0manners\xc4\xa0mankin" +"d\xc4\xa0manages\xc4\xa0managed\xc4\xa0mammary\xc4\xa0mammals\xc4\xa0malware\xc4" +"\xa0malaria\xc4\xa0mailing\xc4\xa0magnets\xc4\xa0magical\xc4\xa0madness\xc4\xa0l" +"ysates\xc4\xa0lumines\xc4\xa0luminal\xc4\xa0luggage\xc4\xa0loyalty\xc4\xa0lowere" +"d\xc4\xa0lottery\xc4\xa0loosely\xc4\xa0looming\xc4\xa0looking\xc4\xa0longing\xc4" +"\xa0longest\xc4\xa0logging\xc4\xa0locking\xc4\xa0located\xc4\xa0locally\xc4\xa0l" +"oading\xc4\xa0lncRNAs\xc4\xa0lithium\xc4\xa0liquids\xc4\xa0linking\xc4\xa0linkag" +"e\xc4\xa0limited\xc4\xa0lightly\xc4\xa0lighter\xc4\xa0ligands\xc4\xa0lifting\xc4" +"\xa0licence\xc4\xa0library\xc4\xa0liberty\xc4\xa0lettuce\xc4\xa0letting\xc4\xa0l" +"etters\xc4\xa0lessons\xc4\xa0lesions\xc4\xa0lesbian\xc4\xa0lengthy\xc4\xa0length" +"s\xc4\xa0lending\xc4\xa0lenders\xc4\xa0leisure\xc4\xa0legends\xc4\xa0legally\xc4" +"\xa0leaving\xc4\xa0leather\xc4\xa0learned\xc4\xa0leaning\xc4\xa0leaking\xc4\xa0l" +"eakage\xc4\xa0leagues\xc4\xa0leading\xc4\xa0layouts\xc4\xa0layered\xc4\xa0lawyer" +"s\xc4\xa0laundry\xc4\xa0laughed\xc4\xa0latency\xc4\xa0lasting\xc4\xa0largest\xc4" +"\xa0largely\xc4\xa0laptops\xc4\xa0lantern\xc4\xa0landing\xc4\xa0lactate\xc4\xa0l" +"acking\xc4\xa0labeled\xc4\xa0k\xc3\x83\xc2\xb6nnen\xc4\xa0knocked\xc4\xa0knights" +"\xc4\xa0kitchen\xc4\xa0kissing\xc4\xa0kingdom\xc4\xa0kinases\xc4\xa0killers\xc4\xa0" +"kidneys\xc4\xa0kidding\xc4\xa0kicking\xc4\xa0kernels\xc4\xa0keratin\xc4\xa0keepi" +"ng\xc4\xa0justify\xc4\xa0jumping\xc4\xa0judging\xc4\xa0jointly\xc4\xa0joining\xc4" +"\xa0jewelry\xc4\xa0iterate\xc4\xa0issuing\xc4\xa0isotope\xc4\xa0islands\xc4\xa0i" +"onized\xc4\xa0invoked\xc4\xa0invoice\xc4\xa0invites\xc4\xa0invited\xc4\xa0invali" +"d\xc4\xa0invaded\xc4\xa0intimid\xc4\xa0intertw\xc4\xa0interim\xc4\xa0intends\xc4" +"\xa0insured\xc4\xa0insults\xc4\xa0insulin\xc4\xa0instead\xc4\xa0insofar\xc4\xa0i" +"nsists\xc4\xa0insider\xc4\xa0inserts\xc4\xa0insects\xc4\xa0inquiry\xc4\xa0inning" +"s\xc4\xa0inmates\xc4\xa0injured\xc4\xa0inhaled\xc4\xa0infused\xc4\xa0informs\xc4" +"\xa0infants\xc4\xa0infancy\xc4\xa0indulge\xc4\xa0induces\xc4\xa0induced\xc4\xa0i" +"ndoors\xc4\xa0indices\xc4\xa0indexes\xc4\xa0indexed\xc4\xa0incomes\xc4\xa0imprin" +"t\xc4\xa0impregn\xc4\xa0impover\xc4\xa0imposes\xc4\xa0imposed\xc4\xa0imports\xc4" +"\xa0implies\xc4\xa0implied\xc4\xa0impacts\xc4\xa0imaging\xc4\xa0imagery\xc4\xa0i" +"llicit\xc4\xa0ignores\xc4\xa0ignored\xc4\xa0ideally\xc4\xa0hypoxic\xc4\xa0hypoxi" +"a\xc4\xa0hypogly\xc4\xa0hygiene\xc4\xa0hybrids\xc4\xa0hurting\xc4\xa0hurried\xc4" +"\xa0hunting\xc4\xa0hunters\xc4\xa0however\xc4\xa0housing\xc4\xa0hottest\xc4\xa0h" +"osting\xc4\xa0hostile\xc4\xa0hostage\xc4\xa0horrors\xc4\xa0hopping\xc4\xa0honore" +"d\xc4\xa0honesty\xc4\xa0holders\xc4\xa0hitting\xc4\xa0history\xc4\xa0histone\xc4" +"\xa0himself\xc4\xa0highest\xc4\xa0herself\xc4\xa0hepatic\xc4\xa0heparin\xc4\xa0h" +"elping\xc4\xa0helpful\xc4\xa0helical\xc4\xa0heights\xc4\xa0heavily\xc4\xa0heavie" +"r\xc4\xa0heavens\xc4\xa0heating\xc4\xa0hearsay\xc4\xa0healthy\xc4\xa0healing\xc4" +"\xa0headset\xc4\xa0heading\xc4\xa0headers\xc4\xa0hazards\xc4\xa0haunted\xc4\xa0h" +"astily\xc4\xa0harness\xc4\xa0harmony\xc4\xa0harmful\xc4\xa0hardest\xc4\xa0harbou" +"r\xc4\xa0happily\xc4\xa0happier\xc4\xa0happens\xc4\xa0hanging\xc4\xa0handles\xc4" +"\xa0handled\xc4\xa0handing\xc4\xa0handgun\xc4\xa0handful\xc4\xa0halogen\xc4\xa0h" +"allway\xc4\xa0halfway\xc4\xa0hacking\xc4\xa0hackers\xc4\xa0guitars\xc4\xa0guidin" +"g\xc4\xa0guessed\xc4\xa0guarded\xc4\xa0growled\xc4\xa0growing\xc4\xa0grouped\xc4" +"\xa0grounds\xc4\xa0grooves\xc4\xa0grocery\xc4\xa0groaned\xc4\xa0gripped\xc4\xa0g" +"rinned\xc4\xa0grilled\xc4\xa0greeted\xc4\xa0greatly\xc4\xa0greater\xc4\xa0grazin" +"g\xc4\xa0gravity\xc4\xa0grating\xc4\xa0grasped\xc4\xa0granted\xc4\xa0granite\xc4" +"\xa0grandes\xc4\xa0grammat\xc4\xa0grammar\xc4\xa0grading\xc4\xa0grabbed\xc4\xa0g" +"overns\xc4\xa0goodbye\xc4\xa0goddess\xc4\xa0goddamn\xc4\xa0glycine\xc4\xa0glucos" +"e\xc4\xa0glowing\xc4\xa0glitter\xc4\xa0glimpse\xc4\xa0glasses\xc4\xa0glaring\xc4" +"\xa0glances\xc4\xa0glanced\xc4\xa0getting\xc4\xa0genomic\xc4\xa0genomes\xc4\xa0g" +"enital\xc4\xa0generic\xc4\xa0gelatin\xc4\xa0gateway\xc4\xa0gastric\xc4\xa0gaseou" +"s\xc4\xa0gardens\xc4\xa0garbage\xc4\xa0ganglia\xc4\xa0gallons\xc4\xa0gallery\xc4" +"\xa0gaining\xc4\xa0""futures\xc4\xa0""furnace\xc4\xa0""furious\xc4\xa0""funeral\xc4" +"\xa0""funding\xc4\xa0""functor\xc4\xa0""funcion\xc4\xa0""fucking\xc4\xa0""frowne" +"d\xc4\xa0""frontal\xc4\xa0""freshly\xc4\xa0""freight\xc4\xa0""freezer\xc4\xa0""f" +"rankly\xc4\xa0""framing\xc4\xa0""fragile\xc4\xa0""fprintf\xc4\xa0""founded\xc4\xa0" +"""forming\xc4\xa0""formats\xc4\xa0""forever\xc4\xa0""forests\xc4\xa0""forearm\xc4" +"\xa0""foreach\xc4\xa0""forcing\xc4\xa0""footing\xc4\xa0""footage\xc4\xa0""foolis" +"h\xc4\xa0""follows\xc4\xa0""foliage\xc4\xa0""folding\xc4\xa0""folders\xc4\xa0""f" +"ocuses\xc4\xa0""focused\xc4\xa0""flushed\xc4\xa0""flowing\xc4\xa0""flowers\xc4\xa0" +"""flooded\xc4\xa0""floated\xc4\xa0""flipped\xc4\xa0""flights\xc4\xa0""flexion\xc4" +"\xa0""fleeing\xc4\xa0""flavour\xc4\xa0""flavors\xc4\xa0""flashes\xc4\xa0""flashe" +"d\xc4\xa0""fitting\xc4\xa0""fitness\xc4\xa0""fistula\xc4\xa0""fission\xc4\xa0""f" +"ishing\xc4\xa0""firstly\xc4\xa0""firefox\xc4\xa0""fingers\xc4\xa0""finally\xc4\xa0" +"""filters\xc4\xa0""filming\xc4\xa0""filling\xc4\xa0""filings\xc4\xa0""figures\xc4" +"\xa0""figured\xc4\xa0""fifteen\xc4\xa0""fibrous\xc4\xa0""fertile\xc4\xa0""femora" +"l\xc4\xa0""females\xc4\xa0""feeding\xc4\xa0""federal\xc4\xa0""fearful\xc4\xa0""f" +"avored\xc4\xa0""fatigue\xc4\xa0""fathers\xc4\xa0""fasting\xc4\xa0""fastest\xc4\xa0" +"""farther\xc4\xa0""farming\xc4\xa0""farmers\xc4\xa0""fantasy\xc4\xa0""falsely\xc4" +"\xa0""falling\xc4\xa0""failing\xc4\xa0""faculty\xc4\xa0""factual\xc4\xa0""factor" +"y\xc4\xa0""factors\xc4\xa0""fabrics\xc4\xa0""extends\xc4\xa0""exposes\xc4\xa0""e" +"xposed\xc4\xa0""exports\xc4\xa0""expires\xc4\xa0""expired\xc4\xa0""experts\xc4\xa0" +"""expects\xc4\xa0""expands\xc4\xa0""exiting\xc4\xa0""existed\xc4\xa0""exerted\xc4" +"\xa0""excuses\xc4\xa0""excused\xc4\xa0""excited\xc4\xa0""excised\xc4\xa0""excerp" +"t\xc4\xa0""exceeds\xc4\xa0""exactly\xc4\xa0""evolves\xc4\xa0""evolved\xc4\xa0""e" +"uropea\xc4\xa0""ethical\xc4\xa0""ethanol\xc4\xa0""eternal\xc4\xa0""etching\xc4\xa0" +"""estates\xc4\xa0""essence\xc4\xa0""escapes\xc4\xa0""escaped\xc4\xa0""erupted\xc4" +"\xa0""erosion\xc4\xa0""erected\xc4\xa0""equally\xc4\xa0""epistem\xc4\xa0""enzyme" +"s\xc4\xa0""entropy\xc4\xa0""entries\xc4\xa0""entered\xc4\xa0""entails\xc4\xa0""e" +"nsures\xc4\xa0""ensured\xc4\xa0""ensuing\xc4\xa0""enjoyed\xc4\xa0""english\xc4\xa0" +"""engines\xc4\xa0""engages\xc4\xa0""engaged\xc4\xa0""enemies\xc4\xa0""endured\xc4" +"\xa0""endowed\xc4\xa0""endless\xc4\xa0""endings\xc4\xa0""endemic\xc4\xa0""encont" +"r\xc4\xa0""encodes\xc4\xa0""encoder\xc4\xa0""encoded\xc4\xa0""enacted\xc4\xa0""e" +"nables\xc4\xa0""enabled\xc4\xa0""employs\xc4\xa0""emperor\xc4\xa0""empathy\xc4\xa0" +"""emitter\xc4\xa0""emitted\xc4\xa0""eminent\xc4\xa0""emerges\xc4\xa0""emerged\xc4" +"\xa0""embryos\xc4\xa0""embassy\xc4\xa0""embargo\xc4\xa0""emailed\xc4\xa0""elusiv" +"e\xc4\xa0""elegant\xc4\xa0""elegans\xc4\xa0""elected\xc4\xa0""elderly\xc4\xa0""e" +"lapsed\xc4\xa0""ejemplo\xc4\xa0""ejected\xc4\xa0""efforts\xc4\xa0""effects\xc4\xa0" +"""editors\xc4\xa0""editing\xc4\xa0""ectopic\xc4\xa0""economy\xc4\xa0""ecology\xc4" +"\xa0""eclipse\xc4\xa0""eastern\xc4\xa0""easiest\xc4\xa0""earnest\xc4\xa0""earlie" +"r\xc4\xa0""eagerly\xc4\xa0""dynasty\xc4\xa0""durante\xc4\xa0""durable\xc4\xa0""d" +"umping\xc4\xa0""dubious\xc4\xa0""duality\xc4\xa0""drunken\xc4\xa0""drummer\xc4\xa0" +"""drowned\xc4\xa0""drought\xc4\xa0""dropped\xc4\xa0""driving\xc4\xa0""drivers\xc4" +"\xa0""drilled\xc4\xa0""drifted\xc4\xa0""dresses\xc4\xa0""dressed\xc4\xa0""dreame" +"d\xc4\xa0""drained\xc4\xa0""dragons\xc4\xa0""dragged\xc4\xa0""drafted\xc4\xa0""d" +"oubted\xc4\xa0""doubles\xc4\xa0""doubled\xc4\xa0""dormant\xc4\xa0""doorway\xc4\xa0" +"""donated\xc4\xa0""domains\xc4\xa0""dollars\xc4\xa0""doctors\xc4\xa0""docking\xc4" +"\xa0""divisor\xc4\xa0""divides\xc4\xa0""divided\xc4\xa0""diverse\xc4\xa0""distan" +"t\xc4\xa0""disqual\xc4\xa0""dismant\xc4\xa0""dislike\xc4\xa0""disdain\xc4\xa0""d" +"iscord\xc4\xa0""discern\xc4\xa0""directs\xc4\xa0""dioxide\xc4\xa0""diluted\xc4\xa0" +"""dilemma\xc4\xa0""dilated\xc4\xa0""dignity\xc4\xa0""digging\xc4\xa0""diffuse\xc4" +"\xa0""differs\xc4\xa0""diferen\xc4\xa0""dietary\xc4\xa0""dialect\xc4\xa0""devote" +"d\xc4\xa0""devised\xc4\xa0""devices\xc4\xa0""detects\xc4\xa0""details\xc4\xa0""d" +"estiny\xc4\xa0""dessert\xc4\xa0""despite\xc4\xa0""despair\xc4\xa0""desktop\xc4\xa0" +"""desires\xc4\xa0""desired\xc4\xa0""designs\xc4\xa0""descent\xc4\xa0""derives\xc4" +"\xa0""derived\xc4\xa0""depolar\xc4\xa0""depicts\xc4\xa0""depends\xc4\xa0""denyin" +"g\xc4\xa0""dentist\xc4\xa0""density\xc4\xa0""densely\xc4\xa0""denotes\xc4\xa0""d" +"enoted\xc4\xa0""demands\xc4\xa0""delinqu\xc4\xa0""deleted\xc4\xa0""delayed\xc4\xa0" +"""degrees\xc4\xa0""defines\xc4\xa0""defined\xc4\xa0""defence\xc4\xa0""defects\xc4" +"\xa0""defeats\xc4\xa0""deepest\xc4\xa0""deduced\xc4\xa0""decoder\xc4\xa0""decode" +"d\xc4\xa0""decimal\xc4\xa0""decides\xc4\xa0""deceive\xc4\xa0""decades\xc4\xa0""d" +"ebuted\xc4\xa0""debtors\xc4\xa0""debates\xc4\xa0""debated\xc4\xa0""daytime\xc4\xa0" +"""darling\xc4\xa0""dangers\xc4\xa0""dancing\xc4\xa0""dancers\xc4\xa0""damping\xc4" +"\xa0""damages\xc4\xa0""damaged\xc4\xa0""cynical\xc4\xa0""cycling\xc4\xa0""cuttin" +"g\xc4\xa0""customs\xc4\xa0""custody\xc4\xa0""cushion\xc4\xa0""curious\xc4\xa0""c" +"unning\xc4\xa0""culprit\xc4\xa0""cuisine\xc4\xa0""crushed\xc4\xa0""cruiser\xc4\xa0" +"""cruelty\xc4\xa0""crucial\xc4\xa0""crowned\xc4\xa0""crowded\xc4\xa0""crosses\xc4" +"\xa0""crossed\xc4\xa0""critics\xc4\xa0""cricket\xc4\xa0""credits\xc4\xa0""create" +"s\xc4\xa0""created\xc4\xa0""crawled\xc4\xa0""craving\xc4\xa0""crashes\xc4\xa0""c" +"rashed\xc4\xa0""cranial\xc4\xa0""crafted\xc4\xa0""cracked\xc4\xa0""covered\xc4\xa0" +"""cousins\xc4\xa0""courses\xc4\xa0""courage\xc4\xa0""coupons\xc4\xa0""couples\xc4" +"\xa0""coupled\xc4\xa0""counted\xc4\xa0""cottage\xc4\xa0""costing\xc4\xa0""corona" +"l\xc4\xa0""corners\xc4\xa0""corneal\xc4\xa0""copying\xc4\xa0""cooling\xc4\xa0""c" +"ooking\xc4\xa0""cookies\xc4\xa0""consegu\xc4\xa0""conical\xc4\xa0""congrat\xc4\xa0" +"""confisc\xc4\xa0""conduit\xc4\xa0""concord\xc4\xa0""concise\xc4\xa0""concave\xc4" +"\xa0""compost\xc4\xa0""comport\xc4\xa0""company\xc4\xa0""compact\xc4\xa0""commut" +"e\xc4\xa0""commune\xc4\xa0""commits\xc4\xa0""commens\xc4\xa0""commend\xc4\xa0""c" +"olumns\xc4\xa0""colspan\xc4\xa0""colours\xc4\xa0""colored\xc4\xa0""colonic\xc4\xa0" +"""colonel\xc4\xa0""colloqu\xc4\xa0""colitis\xc4\xa0""cohorts\xc4\xa0""coconut\xc4" +"\xa0""cockpit\xc4\xa0""cocaine\xc4\xa0""coastal\xc4\xa0""coaches\xc4\xa0""coache" +"d\xc4\xa0""clothes\xc4\xa0""closing\xc4\xa0""closest\xc4\xa0""closely\xc4\xa0""c" +"loning\xc4\xa0""clinics\xc4\xa0""climbed\xc4\xa0""climate\xc4\xa0""clients\xc4\xa0" +"""clicked\xc4\xa0""cleaved\xc4\xa0""clearly\xc4\xa0""clearer\xc4\xa0""cleared\xc4" +"\xa0""cleanup\xc4\xa0""cleaner\xc4\xa0""cleaned\xc4\xa0""clauses\xc4\xa0""classe" +"s\xc4\xa0""clashes\xc4\xa0""clarity\xc4\xa0""clarify\xc4\xa0""claimed\xc4\xa0""c" +"itrate\xc4\xa0""circles\xc4\xa0""chronic\xc4\xa0""chopped\xc4\xa0""chooses\xc4\xa0" +"""choices\xc4\xa0""chilled\xc4\xa0""chiefly\xc4\xa0""chewing\xc4\xa0""checked\xc4" +"\xa0""cheaper\xc4\xa0""chatter\xc4\xa0""chassis\xc4\xa0""chasing\xc4\xa0""charte" +"r\xc4\xa0""charset\xc4\xa0""charity\xc4\xa0""charges\xc4\xa0""charged\xc4\xa0""c" +"haotic\xc4\xa0""changes\xc4\xa0""changed\xc4\xa0""chances\xc4\xa0""cerebro\xc4\xa0" +"""ceramic\xc4\xa0""century\xc4\xa0""centres\xc4\xa0""centers\xc4\xa0""ceiling\xc4" +"\xa0""cavalry\xc4\xa0""caution\xc4\xa0""causing\xc4\xa0""cations\xc4\xa0""cathod" +"e\xc4\xa0""catches\xc4\xa0""casting\xc4\xa0""caspase\xc4\xa0""cascade\xc4\xa0""c" +"artoon\xc4\xa0""carrots\xc4\xa0""carries\xc4\xa0""carried\xc4\xa0""carotid\xc4\xa0" +"""careers\xc4\xa0""cardiac\xc4\xa0""caramel\xc4\xa0""captive\xc4\xa0""caption\xc4" +"\xa0""captain\xc4\xa0""capable\xc4\xa0""candles\xc4\xa0""cancers\xc4\xa0""campin" +"g\xc4\xa0""cameras\xc4\xa0""calling\xc4\xa0""caliber\xc4\xa0""calcium\xc4\xa0""c" +"aching\xc4\xa0""cabbage\xc4\xa0""buttons\xc4\xa0""butcher\xc4\xa0""burning\xc4\xa0" +"""burgers\xc4\xa0""burdens\xc4\xa0""bundles\xc4\xa0""bundled\xc4\xa0""bullets\xc4" +"\xa0""buffers\xc4\xa0""budgets\xc4\xa0""budding\xc4\xa0""buckets\xc4\xa0""bubble" +"s\xc4\xa0""brushes\xc4\xa0""brushed\xc4\xa0""brought\xc4\xa0""bromide\xc4\xa0""b" +"rokers\xc4\xa0""broadly\xc4\xa0""broader\xc4\xa0""brigade\xc4\xa0""briefly\xc4\xa0" +"""bridges\xc4\xa0""brewing\xc4\xa0""brewery\xc4\xa0""breasts\xc4\xa0""breadth\xc4" +"\xa0""branded\xc4\xa0""braking\xc4\xa0""boycott\xc4\xa0""bowling\xc4\xa0""bounde" +"d\xc4\xa0""bounced\xc4\xa0""bottles\xc4\xa0""borough\xc4\xa0""borders\xc4\xa0""b" +"ooster\xc4\xa0""boosted\xc4\xa0""boolean\xc4\xa0""booking\xc4\xa0""bonuses\xc4\xa0" +"""bonding\xc4\xa0""bombing\xc4\xa0""bombers\xc4\xa0""bombard\xc4\xa0""bolster\xc4" +"\xa0""boiling\xc4\xa0""boarded\xc4\xa0""blurred\xc4\xa0""blowing\xc4\xa0""blocke" +"d\xc4\xa0""blinked\xc4\xa0""blinded\xc4\xa0""blessed\xc4\xa0""blender\xc4\xa0""b" +"lended\xc4\xa0""blasted\xc4\xa0""blaming\xc4\xa0""bladder\xc4\xa0""bizarre\xc4\xa0" +"""bitcoin\xc4\xa0""bishops\xc4\xa0""bipolar\xc4\xa0""biomass\xc4\xa0""biology\xc4" +"\xa0""biofilm\xc4\xa0""billing\xc4\xa0""biliary\xc4\xa0""bilayer\xc4\xa0""bigges" +"t\xc4\xa0""bidding\xc4\xa0""bicycle\xc4\xa0""bgcolor\xc4\xa0""between\xc4\xa0""b" +"etting\xc4\xa0""besides\xc4\xa0""berries\xc4\xa0""beneath\xc4\xa0""bending\xc4\xa0" +"""beloved\xc4\xa0""belongs\xc4\xa0""beliefs\xc4\xa0""behaves\xc4\xa0""behaved\xc4" +"\xa0""begging\xc4\xa0""bedside\xc4\xa0""becomes\xc4\xa0""because\xc4\xa0""beatin" +"g\xc4\xa0""beaches\xc4\xa0""battles\xc4\xa0""batting\xc4\xa0""battery\xc4\xa0""b" +"athing\xc4\xa0""batches\xc4\xa0""bastard\xc4\xa0""barrels\xc4\xa0""banning\xc4\xa0" +"""banking\xc4\xa0""bankers\xc4\xa0""ballots\xc4\xa0""balcony\xc4\xa0""baggage\xc4" +"\xa0""backing\xc4\xa0""backend\xc4\xa0""azimuth\xc4\xa0""awkward\xc4\xa0""awesom" +"e\xc4\xa0""awarded\xc4\xa0""awaited\xc4\xa0""avoided\xc4\xa0""avenues\xc4\xa0""a" +"utopsy\xc4\xa0""authors\xc4\xa0""audible\xc4\xa0""auction\xc4\xa0""attacks\xc4\xa0" +"""atrophy\xc4\xa0""atheist\xc4\xa0""assured\xc4\xa0""assumes\xc4\xa0""assumed\xc4" +"\xa0""assists\xc4\xa0""assigns\xc4\xa0""asshole\xc4\xa0""asserts\xc4\xa0""assaye" +"d\xc4\xa0""aspirin\xc4\xa0""aspects\xc4\xa0""ashamed\xc4\xa0""artwork\xc4\xa0""a" +"rtists\xc4\xa0""arsenic\xc4\xa0""arsenal\xc4\xa0""arrives\xc4\xa0""arrived\xc4\xa0" +"""arrival\xc4\xa0""arrests\xc4\xa0""aroused\xc4\xa0""arousal\xc4\xa0""arising\xc4" +"\xa0""arguing\xc4\xa0""aqueous\xc4\xa0""aquatic\xc4\xa0""apprent\xc4\xa0""applie" +"s\xc4\xa0""applied\xc4\xa0""applaud\xc4\xa0""appears\xc4\xa0""appeals\xc4\xa0""a" +"pology\xc4\xa0""anytime\xc4\xa0""anymore\xc4\xa0""anybody\xc4\xa0""anxious\xc4\xa0" +"""anxiety\xc4\xa0""antique\xc4\xa0""antifer\xc4\xa0""anthrop\xc4\xa0""answers\xc4" +"\xa0""another\xc4\xa0""anomaly\xc4\xa0""annulus\xc4\xa0""annular\xc4\xa0""annoye" +"d\xc4\xa0""animals\xc4\xa0""angular\xc4\xa0""anguish\xc4\xa0""angrily\xc4\xa0""a" +"ndroid\xc4\xa0""ancient\xc4\xa0""anchors\xc4\xa0""anatomy\xc4\xa0""anastom\xc4\xa0" +"""analogy\xc4\xa0""analogs\xc4\xa0""amyloid\xc4\xa0""amusing\xc4\xa0""amplify\xc4" +"\xa0""amounts\xc4\xa0""amongst\xc4\xa0""ammonia\xc4\xa0""amended\xc4\xa0""amelio" +"r\xc4\xa0""ambient\xc4\xa0""amazing\xc4\xa0""amateur\xc4\xa0""altered\xc4\xa0""a" +"lright\xc4\xa0""already\xc4\xa0""allowed\xc4\xa0""allergy\xc4\xa0""alleles\xc4\xa0" +"""alleges\xc4\xa0""aliment\xc4\xa0""aligned\xc4\xa0""alerted\xc4\xa0""albumin\xc4" +"\xa0""alarmed\xc4\xa0""alanine\xc4\xa0""agarose\xc4\xa0""against\xc4\xa0""afflic" +"t\xc4\xa0""affects\xc4\xa0""affairs\xc4\xa0""aerosol\xc4\xa0""aerobic\xc4\xa0""a" +"dvised\xc4\xa0""adrenal\xc4\xa0""adopted\xc4\xa0""admired\xc4\xa0""adjunct\xc4\xa0" +"""adjoint\xc4\xa0""adipose\xc4\xa0""adhered\xc4\xa0""adapter\xc4\xa0""adapted\xc4" +"\xa0""actions\xc4\xa0""acrylic\xc4\xa0""acetone\xc4\xa0""acetate\xc4\xa0""accuse" +"d\xc4\xa0""accrued\xc4\xa0""accepts\xc4\xa0""academy\xc4\xa0""abusive\xc4\xa0""a" +"bsence\xc4\xa0""abscess\xc4\xa0""ability\xc4\xa0""abelian\xc4\xa0""abdomen\xc4\xa0" +"Zealand\xc4\xa0Youtube\xc4\xa0YouTube\xc4\xa0Yankees\xc4\xa0Wyoming\xc4\xa0Writt" +"en\xc4\xa0Writing\xc4\xa0Writers\xc4\xa0Working\xc4\xa0Workers\xc4\xa0Witness\xc4" +"\xa0Without\xc4\xa0Winston\xc4\xa0Windsor\xc4\xa0Windows\xc4\xa0Wilhelm\xc4\xa0W" +"hitney\xc4\xa0Whether\xc4\xa0Whereas\xc4\xa0Wheeler\xc4\xa0Western\xc4\xa0Welfar" +"e\xc4\xa0Welcome\xc4\xa0Wedding\xc4\xa0Webster\xc4\xa0Website\xc4\xa0Weather\xc4" +"\xa0Watkins\xc4\xa0Warning\xc4\xa0Walmart\xc4\xa0Wallace\xc4\xa0Walking\xc4\xa0W" +"ITHOUT\xc4\xa0WHETHER\xc4\xa0Volunte\xc4\xa0Vitamin\xc4\xa0Virtual\xc4\xa0Vincen" +"t\xc4\xa0Village\xc4\xa0Vikings\xc4\xa0Victory\xc4\xa0Version\xc4\xa0Vermont\xc4" +"\xa0Verizon\xc4\xa0Vehicle\xc4\xa0Vatican\xc4\xa0Various\xc4\xa0VARCHAR\xc4\xa0U" +"tility\xc4\xa0Usually\xc4\xa0Updated\xc4\xa0Unknown\xc4\xa0Uniform\xc4\xa0Unicod" +"e\xc4\xa0Ukraine\xc4\xa0Twitter\xc4\xa0Turning\xc4\xa0Turkish\xc4\xa0Tuesday\xc4" +"\xa0Trudeau\xc4\xa0Trinity\xc4\xa0Tribune\xc4\xa0Traffic\xc4\xa0Trading\xc4\xa0T" +"oronto\xc4\xa0Tonight\xc4\xa0Tobacco\xc4\xa0Timothy\xc4\xa0Tickets\xc4\xa0Tibeta" +"n\xc4\xa0Thunder\xc4\xa0Thought\xc4\xa0Thomson\xc4\xa0Theresa\xc4\xa0Therapy\xc4" +"\xa0Theorem\xc4\xa0Theatre\xc4\xa0Theater\xc4\xa0Testing\xc4\xa0Taliban\xc4\xa0S" +"ystems\xc4\xa0Syscall\xc4\xa0Swedish\xc4\xa0Surgery\xc4\xa0Surface\xc4\xa0Suprem" +"e\xc4\xa0Suppose\xc4\xa0Sundays\xc4\xa0Summary\xc4\xa0Success\xc4\xa0Studios\xc4" +"\xa0Studies\xc4\xa0Strange\xc4\xa0Stories\xc4\xa0Storage\xc4\xa0Stewart\xc4\xa0S" +"tation\xc4\xa0Stanton\xc4\xa0Stanley\xc4\xa0Stadium\xc4\xa0Springs\xc4\xa0Spence" +"r\xc4\xa0Species\xc4\xa0Special\xc4\xa0Speaker\xc4\xa0Spanish\xc4\xa0Sources\xc4" +"\xa0Someone\xc4\xa0Somehow\xc4\xa0Somalia\xc4\xa0Solomon\xc4\xa0Socorro\xc4\xa0S" +"ociety\xc4\xa0Snowden\xc4\xa0Sisters\xc4\xa0Simpson\xc4\xa0Simmons\xc4\xa0Silico" +"n\xc4\xa0Shortly\xc4\xa0Shirley\xc4\xa0Sherman\xc4\xa0Sheriff\xc4\xa0Shapiro\xc4" +"\xa0Shannon\xc4\xa0Several\xc4\xa0Seventh\xc4\xa0Serbian\xc4\xa0Seattle\xc4\xa0S" +"chwarz\xc4\xa0Schools\xc4\xa0Schmidt\xc4\xa0Scandin\xc4\xa0Savings\xc4\xa0Sander" +"s\xc4\xa0Sanchez\xc4\xa0Samsung\xc4\xa0Samples\xc4\xa0SUMMARY\xc4\xa0SPECIAL\xc4" +"\xa0Russell\xc4\xa0Runtime\xc4\xa0Running\xc4\xa0Rolling\xc4\xa0Rodgers\xc4\xa0R" +"oberto\xc4\xa0Revised\xc4\xa0Reviews\xc4\xa0Reverse\xc4\xa0Revenue\xc4\xa0Reuter" +"s\xc4\xa0Returns\xc4\xa0Results\xc4\xa0Request\xc4\xa0Reports\xc4\xa0Replace\xc4" +"\xa0Release\xc4\xa0Related\xc4\xa0Regular\xc4\xa0Records\xc4\xa0Rebecca\xc4\xa0R" +"eality\xc4\xa0Reading\xc4\xa0Raymond\xc4\xa0Rangers\xc4\xa0Randall\xc4\xa0Ramire" +"z\xc4\xa0Raleigh\xc4\xa0Rainbow\xc4\xa0Railway\xc4\xa0Raiders\xc4\xa0Quarter\xc4" +"\xa0Quantum\xc4\xa0Quality\xc4\xa0QString\xc4\xa0Purpose\xc4\xa0Prophet\xc4\xa0P" +"romise\xc4\xa0Profile\xc4\xa0Private\xc4\xa0Privacy\xc4\xa0Primary\xc4\xa0Presto" +"n\xc4\xa0Present\xc4\xa0Premium\xc4\xa0Premier\xc4\xa0Predict\xc4\xa0Pradesh\xc4" +"\xa0Popular\xc4\xa0Polymer\xc4\xa0Pokemon\xc4\xa0Poisson\xc4\xa0Pointer\xc4\xa0P" +"laying\xc4\xa0Players\xc4\xa0Planned\xc4\xa0Pirates\xc4\xa0Physics\xc4\xa0Phoeni" +"x\xc4\xa0Pharmac\xc4\xa0Persian\xc4\xa0Perkins\xc4\xa0Perhaps\xc4\xa0Perfect\xc4" +"\xa0Penguin\xc4\xa0Pearson\xc4\xa0Payment\xc4\xa0Pattern\xc4\xa0Patrick\xc4\xa0P" +"arties\xc4\xa0Partial\xc4\xa0Parents\xc4\xa0Packers\xc4\xa0Package\xc4\xa0Pacifi" +"c\xc4\xa0PURPOSE\xc4\xa0PROFITS\xc4\xa0Overall\xc4\xa0Outside\xc4\xa0Outlook\xc4" +"\xa0Ottoman\xc4\xa0Orleans\xc4\xa0Orlando\xc4\xa0Organic\xc4\xa0Options\xc4\xa0O" +"ptical\xc4\xa0Opinion\xc4\xa0Opening\xc4\xa0Ontario\xc4\xa0October\xc4\xa0Object" +"s\xc4\xa0Oakland\xc4\xa0ORDERED\xc4\xa0OPINION\xc4\xa0Nursing\xc4\xa0Numbers\xc4" +"\xa0Nuclear\xc4\xa0Nothing\xc4\xa0Notably\xc4\xa0Norfolk\xc4\xa0Nielsen\xc4\xa0N" +"icolas\xc4\xa0Nichols\xc4\xa0Newport\xc4\xa0Neumann\xc4\xa0Netflix\xc4\xa0Neithe" +"r\xc4\xa0Nations\xc4\xa0Natalie\xc4\xa0M\xc3\x83\xc2\xbcller\xc4\xa0Mystery\xc4\xa0" +"Myanmar\xc4\xa0Muslims\xc4\xa0Mueller\xc4\xa0Mozilla\xc4\xa0Morocco\xc4\xa0Morni" +"ng\xc4\xa0Monthly\xc4\xa0Montana\xc4\xa0Monster\xc4\xa0Mission\xc4\xa0Missing\xc4" +"\xa0Miranda\xc4\xa0Minutes\xc4\xa0Minimum\xc4\xa0Million\xc4\xa0Millenn\xc4\xa0M" +"idwest\xc4\xa0Michael\xc4\xa0Mexican\xc4\xa0Methods\xc4\xa0Message\xc4\xa0Mercur" +"y\xc4\xa0Memphis\xc4\xa0Members\xc4\xa0Melissa\xc4\xa0Meeting\xc4\xa0Medical\xc4" +"\xa0Meaning\xc4\xa0Maxwell\xc4\xa0Maximum\xc4\xa0Maurice\xc4\xa0Masters\xc4\xa0M" +"arxist\xc4\xa0Markets\xc4\xa0Marines\xc4\xa0Manning\xc4\xa0Manager\xc4\xa0Malcol" +"m\xc4\xa0Majesty\xc4\xa0Madison\xc4\xa0Machine\xc4\xa0METHODS\xc4\xa0Luckily\xc4" +"\xa0Lorenzo\xc4\xa0Lorentz\xc4\xa0Looking\xc4\xa0Loading\xc4\xa0Lithuan\xc4\xa0L" +"indsey\xc4\xa0Lindsay\xc4\xa0Lincoln\xc4\xa0Limited\xc4\xa0Library\xc4\xa0Libert" +"y\xc4\xa0Letters\xc4\xa0Leonard\xc4\xa0Lecture\xc4\xa0Lebanon\xc4\xa0Laurent\xc4" +"\xa0Laplace\xc4\xa0Lambert\xc4\xa0LIMITED\xc4\xa0LICENSE\xc4\xa0Kurdish\xc4\xa0K" +"remlin\xc4\xa0Knowing\xc4\xa0Knights\xc4\xa0Kitchen\xc4\xa0Kingdom\xc4\xa0Killin" +"g\xc4\xa0Kenneth\xc4\xa0Kennedy\xc4\xa0Keeping\xc4\xa0Kashmir\xc4\xa0Justice\xc4" +"\xa0Jupiter\xc4\xa0Judaism\xc4\xa0Journey\xc4\xa0Journal\xc4\xa0Johnson\xc4\xa0J" +"essica\xc4\xa0Jenkins\xc4\xa0Jeffrey\xc4\xa0January\xc4\xa0Janeiro\xc4\xa0Jamaic" +"a\xc4\xa0Jacques\xc4\xa0Italian\xc4\xa0Islands\xc4\xa0Islamic\xc4\xa0Ireland\xc4" +"\xa0Iranian\xc4\xa0Invoice\xc4\xa0Invalid\xc4\xa0Integer\xc4\xa0Instead\xc4\xa0I" +"nstant\xc4\xa0Install\xc4\xa0Indians\xc4\xa0Include\xc4\xa0Imaging\xc4\xa0Imagin" +"e\xc4\xa0Illustr\xc4\xa0Illegal\xc4\xa0Ideally\xc4\xa0Iceland\xc4\xa0INTEGER\xc4" +"\xa0IMPLIED\xc4\xa0Hussein\xc4\xa0Husband\xc4\xa0Hungary\xc4\xa0Hundred\xc4\xa0H" +"ubbard\xc4\xa0However\xc4\xa0Houston\xc4\xa0Housing\xc4\xa0Hopkins\xc4\xa0Hollan" +"d\xc4\xa0Holiday\xc4\xa0Hoffman\xc4\xa0History\xc4\xa0Himself\xc4\xa0Hillary\xc4" +"\xa0Hilbert\xc4\xa0Highway\xc4\xa0Herbert\xc4\xa0Heights\xc4\xa0Heather\xc4\xa0H" +"earing\xc4\xa0Healthy\xc4\xa0Hawkins\xc4\xa0Haskell\xc4\xa0HashMap\xc4\xa0Harvar" +"d\xc4\xa0Handler\xc4\xa0Hampton\xc4\xa0Hammond\xc4\xa0Hamburg\xc4\xa0HOWEVER\xc4" +"\xa0HOLDERS\xc4\xa0Guarant\xc4\xa0Griffin\xc4\xa0Gregory\xc4\xa0Greater\xc4\xa0G" +"oodman\xc4\xa0Goldman\xc4\xa0Glasgow\xc4\xa0Gilbert\xc4\xa0Getting\xc4\xa0German" +"y\xc4\xa0Germans\xc4\xa0Georgia\xc4\xa0Genetic\xc4\xa0Genesis\xc4\xa0Generic\xc4" +"\xa0Gateway\xc4\xa0Garrett\xc4\xa0Gardner\xc4\xa0Gardens\xc4\xa0Gallery\xc4\xa0G" +"abriel\xc4\xa0""Funding\xc4\xa0""Friends\xc4\xa0""Freeman\xc4\xa0""Freedom\xc4\xa0" +"""Freddie\xc4\xa0""Frances\xc4\xa0""Fourier\xc4\xa0""Forward\xc4\xa0""Fortune\xc4" +"\xa0""Forrest\xc4\xa0""Formula\xc4\xa0""Foreign\xc4\xa0""Flowers\xc4\xa0""Florid" +"a\xc4\xa0""Fleming\xc4\xa0""Fischer\xc4\xa0""Firstly\xc4\xa0""Firefox\xc4\xa0""F" +"innish\xc4\xa0""Finland\xc4\xa0""Finance\xc4\xa0""Finally\xc4\xa0""Figures\xc4\xa0" +"""Fighter\xc4\xa0""Fiction\xc4\xa0""Ferrari\xc4\xa0""Federal\xc4\xa0""Fashion\xc4" +"\xa0""Farmers\xc4\xa0""Fantasy\xc4\xa0""Failure\xc4\xa0""Faculty\xc4\xa0""Factor" +"y\xc4\xa0""Factors\xc4\xa0""FITNESS\xc4\xa0""Extract\xc4\xa0""Exhibit\xc4\xa0""E" +"vening\xc4\xa0""Evangel\xc4\xa0""Ethical\xc4\xa0""Estados\xc4\xa0""Epstein\xc4\xa0" +"""Episode\xc4\xa0""English\xc4\xa0""England\xc4\xa0""Emperor\xc4\xa0""Emerson\xc4" +"\xa0""Embassy\xc4\xa0""Elliott\xc4\xa0""Eleanor\xc4\xa0""Effects\xc4\xa0""Edward" +"s\xc4\xa0""Edition\xc4\xa0""Ecuador\xc4\xa0""Economy\xc4\xa0""Eclipse\xc4\xa0""E" +"astern\xc4\xa0""Earlier\xc4\xa0""EXPRESS\xc4\xa0""Duchess\xc4\xa0""Dragons\xc4\xa0" +"""Douglas\xc4\xa0""Dorothy\xc4\xa0""Doppler\xc4\xa0""Donovan\xc4\xa0""Dodgers\xc4" +"\xa0""Doctors\xc4\xa0""Display\xc4\xa0""Dismiss\xc4\xa0""Digital\xc4\xa0""Diamon" +"d\xc4\xa0""Devices\xc4\xa0""Detroit\xc4\xa0""Details\xc4\xa0""Despite\xc4\xa0""D" +"esktop\xc4\xa0""Denmark\xc4\xa0""Defense\xc4\xa0""Defence\xc4\xa0""Default\xc4\xa0" +"""Debtors\xc4\xa0""Deborah\xc4\xa0""Daniels\xc4\xa0""DEFAULT\xc4\xa0""DAMAGES\xc4" +"\xa0""Customs\xc4\xa0""Culture\xc4\xa0""Crystal\xc4\xa0""Croatia\xc4\xa0""Cricke" +"t\xc4\xa0""Creator\xc4\xa0""Creates\xc4\xa0""Created\xc4\xa0""Cowboys\xc4\xa0""C" +"ountry\xc4\xa0""Counter\xc4\xa0""Counsel\xc4\xa0""Council\xc4\xa0""Coulomb\xc4\xa0" +"""Cornell\xc4\xa0""Corinth\xc4\xa0""Cookies\xc4\xa0""Convert\xc4\xa0""Context\xc4" +"\xa0""Contest\xc4\xa0""Contact\xc4\xa0""Consult\xc4\xa0""Console\xc4\xa0""Conduc" +"t\xc4\xa0""Concord\xc4\xa0""Concert\xc4\xa0""Concept\xc4\xa0""Compton\xc4\xa0""C" +"omplex\xc4\xa0""Company\xc4\xa0""Commons\xc4\xa0""Colonel\xc4\xa0""Collins\xc4\xa0" +"""College\xc4\xa0""Coleman\xc4\xa0""Cluster\xc4\xa0""Clinton\xc4\xa0""Climate\xc4" +"\xa0""Clement\xc4\xa0""Clearly\xc4\xa0""Clayton\xc4\xa0""Classes\xc4\xa0""Circui" +"t\xc4\xa0""Chinese\xc4\xa0""Chicken\xc4\xa0""Chicago\xc4\xa0""Chester\xc4\xa0""C" +"helsea\xc4\xa0""Charter\xc4\xa0""Charlie\xc4\xa0""Chapter\xc4\xa0""Chapman\xc4\xa0" +"""Channel\xc4\xa0""Changes\xc4\xa0""Century\xc4\xa0""Central\xc4\xa0""Centers\xc4" +"\xa0""Catalog\xc4\xa0""Carroll\xc4\xa0""Caption\xc4\xa0""Captain\xc4\xa0""Capito" +"l\xc4\xa0""Capital\xc4\xa0""Cameron\xc4\xa0""Calgary\xc4\xa0""Cabinet\xc4\xa0""C" +"OMPANY\xc4\xa0""COMMAND\xc4\xa0""CIRCUIT\xc4\xa0""CHAPTER\xc4\xa0""Builder\xc4\xa0" +"""Buffalo\xc4\xa0""Browser\xc4\xa0""Broncos\xc4\xa0""British\xc4\xa0""Britain\xc4" +"\xa0""Bristol\xc4\xa0""Brigade\xc4\xa0""Briefly\xc4\xa0""Brewing\xc4\xa0""Brenna" +"n\xc4\xa0""Brandon\xc4\xa0""Bradley\xc4\xa0""Borough\xc4\xa0""Boolean\xc4\xa0""B" +"itcoin\xc4\xa0""Biology\xc4\xa0""Binding\xc4\xa0""Beverly\xc4\xa0""Between\xc4\xa0" +"""Besides\xc4\xa0""Bernard\xc4\xa0""Bennett\xc4\xa0""Believe\xc4\xa0""Belgium\xc4" +"\xa0""Belgian\xc4\xa0""Belfast\xc4\xa0""Beijing\xc4\xa0""Bedford\xc4\xa0""Becaus" +"e\xc4\xa0""Beatles\xc4\xa0""Battery\xc4\xa0""Barrett\xc4\xa0""Barbara\xc4\xa0""B" +"aptist\xc4\xa0""Bangkok\xc4\xa0""Baldwin\xc4\xa0""Balance\xc4\xa0""Baghdad\xc4\xa0" +"""Babylon\xc4\xa0""BGCOLOR\xc4\xa0""Awesome\xc4\xa0""Average\xc4\xa0""Authors\xc4" +"\xa0""Attempt\xc4\xa0""Atlanta\xc4\xa0""Artists\xc4\xa0""Arsenal\xc4\xa0""Arizon" +"a\xc4\xa0""Arabian\xc4\xa0""Applied\xc4\xa0""Appeals\xc4\xa0""Antonio\xc4\xa0""A" +"nthrop\xc4\xa0""Anthony\xc4\xa0""Another\xc4\xa0""Animals\xc4\xa0""Angular\xc4\xa0" +"""Angeles\xc4\xa0""Android\xc4\xa0""Andrews\xc4\xa0""Andreas\xc4\xa0""Ancient\xc4" +"\xa0""Amended\xc4\xa0""Amazing\xc4\xa0""Already\xc4\xa0""Allison\xc4\xa0""Algebr" +"a\xc4\xa0""Alcohol\xc4\xa0""Alberta\xc4\xa0""Alabama\xc4\xa0""Airport\xc4\xa0""A" +"gainst\xc4\xa0""Affairs\xc4\xa0""Admiral\xc4\xa0""Address\xc4\xa0""Actions\xc4\xa0" +"""Account\xc4\xa0""Academy\xc4\xa0""Abraham\xc4\xa0""ARISING\xc4\xa0""APPEALS\xc4" +"\xa0""AMERICA\xc4\xa0""1000000\xc4\x8a\xc4\x8c\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4" +"\xa0\xc4\xa0\xc4\x8a\xc4\x8a\xc4\x8a\xc4\x8a\xc4\x8a\xc4\x8a\xc4\x8a\xc4\x8a\xc3" +"\x91\xc4\xa3\xc3\x91\xc4\xa4\xc3\x90\xc2\xb2\xc3\x90\xc2\xbe\xc3\x91\xc4\xa3\xc3" +"\x91\xc4\xa4\xc3\x90\xc2\xb2\xc3\x90\xc2\xb0\xc3\x91\xc4\xa3\xc3\x91\xc4\xa4\xc3" +"\x90\xc2\xb0\xc3\x90\xc2\xb2\xc3\x90\xc2\xbe\xc3\x90\xc2\xbb\xc3\x91\xc4\xae\xc3" +"\x90\xc2\xb7\xc3\x90\xc2\xbe\xc3\x90\xc2\xb3\xc3\x90\xc2\xb4\xc3\x90\xc2\xb0\xc3" +"\x90\xc2\xbe\xc3\x90\xc2\xb2\xc3\x90\xc2\xbe\xc3\x91\xc4\xa2\xc3\x90\xc2\xbe\xc3" +"\x90\xc2\xb2\xc3\x90\xc2\xb0\xc3\x90\xc2\xbd\xc3\x90\xc2\xbd\xc3\x90\xc2\xbe\xc3" +"\x91\xc4\xa3\xc3\x91\xc4\xa4\xc3\x90\xc2\xbd\xc3\x90\xc2\xbe\xc3\x90\xc2\xb3\xc3" +"\x90\xc2\xbe\xc3\x90\xc2\xb5\xc3\x91\xc4\xa4\xc3\x91\xc4\xa3\xc3\x91\xc4\xb1\xc3" +"\x90\xc2\xb5\xc3\x90\xc2\xbd\xc3\x90\xc2\xb8\xc3\x91\xc4\xb1\xc3\x90\xc2\xb5\xc3" +"\x90\xc2\xbd\xc3\x90\xc2\xb8\xc3\x90\xc2\xb5\xc3\x90\xc2\xb0\xc3\x91\xc4\xa4\xc3" +"\x90\xc2\xb5\xc3\x90\xc2\xbb\xc3\x8e\xc2\xbf\xc3\x8f\xc4\xa7\xc3\x8e\xc2\xbc\xc3" +"\x8e\xc2\xb5\xc3\x83\xc2\xa9sident\xc3\x83\xc2\xa9ration\xc3\x83\xc2\xa4sidentxy" +"matrixxxxxxxxxvphantomvarthetautteringusterityundersetuitivelytoStringtextareasu" +"bstacksubseteqstackrelsetminusraiseboxractablequartileprotobufoverlineoucesterot" +"ypicalottenhamotrophicothermalosarcomaoriouslyorgetownopicallyonitrileoliberalol" +"ateralocytosisocyanateocalypseoblasticnonumbernolimitsmathrsfsmathfrakmarkdownle" +"ssnessleqslantkerchiefjsfiddleiza\xc3\x83\xc2\xa7\xc3\x83\xc2\xa3oizaci\xc3\x83\xc2" +"\xb3nilingualidelbergheasterngetValuegeqslantgensteinemptysetdrawabledoctoraldat" +"abindclesiastcjwatsonchrotroncatalinacarbonylcadherinbyterianbrainsciboldmathblo" +"gspotbigoplusaternityassadorsaspberryaryngealamsfontsampolineaddClassacyclineacr" +"ylateaceuticsableViewaaaaaaaa\x5c!\x5c!\x5c!\x5c!UsernameToStringTextViewTestCas" +"eSomebodySnapshotSimplifySelectorRotationRevisionReviewerResolverRendererRedirec" +"tReceiverReceivedQuantityPipelineOverrideOverflowNullableNotFoundMultiplyMetadat" +"aMessagesMenuItemListViewIteratorIntervalInflaterGridViewGradientFootnoteFilenam" +"eFileTypeFilePathFileNameFUNCTIONFFFFFFFFExpectedExecutorEvaluateEndpointEncodin" +"gEmphasisDisabledDelegateDefaultsContainsCompilerCitationCapacityCallbackCRIPTIO" +"NAffirmedAccessor999999991111111100000001...\x5c...\x5c\x2b\x2b\x2b\x2b\x2b\x2b\x2b" +"\x2b!!!!!!!!\xc4\xa0\xc3\x98\xc2\xa7\xc3\x99\xc4\xa6\xc3\x99\xc4\xa7\xc4\xa0\xc3" +"\x98\xc2\xa7\xc3\x99\xc4\xa6\xc3\x98\xc2\xaa\xc4\xa0\xc3\x98\xc2\xa7\xc3\x99\xc4" +"\xa6\xc3\x98\xc2\xa3\xc4\xa0\xc3\x91\xc4\xaf\xc3\x91\xc4\xa4\xc3\x90\xc2\xbe\xc4" +"\xa0\xc3\x91\xc4\xa9\xc3\x91\xc4\xa4\xc3\x90\xc2\xbe\xc4\xa0\xc3\x91\xc4\xa4\xc3" +"\x90\xc2\xb0\xc3\x90\xc2\xba\xc4\xa0\xc3\x91\xc4\xa3\xc3\x90\xc2\xb0\xc3\x90\xc2" +"\xbc\xc4\xa0\xc3\x91\xc4\xa2\xc3\x90\xc2\xb0\xc3\x90\xc2\xb7\xc4\xa0\xc3\x90\xc2" +"\xbf\xc3\x91\xc4\xa2\xc3\x90\xc2\xbe\xc4\xa0\xc3\x90\xc2\xbf\xc3\x91\xc4\xa2\xc3" +"\x90\xc2\xb8\xc4\xa0\xc3\x90\xc2\xbf\xc3\x90\xc2\xbe\xc3\x91\xc4\xa4\xc4\xa0\xc3" +"\x90\xc2\xbf\xc3\x90\xc2\xbe\xc3\x91\xc4\xa3\xc4\xa0\xc3\x90\xc2\xbf\xc3\x90\xc2" +"\xbe\xc3\x90\xc2\xbb\xc4\xa0\xc3\x90\xc2\xbf\xc3\x90\xc2\xbe\xc3\x90\xc2\xb4\xc4" +"\xa0\xc3\x90\xc2\xbf\xc3\x90\xc2\xb5\xc3\x91\xc4\xa2\xc4\xa0\xc3\x90\xc2\xbf\xc3" +"\x90\xc2\xb0\xc3\x91\xc4\xa2\xc4\xa0\xc3\x90\xc2\xbd\xc3\x90\xc2\xb0\xc3\x90\xc2" +"\xbf\xc4\xa0\xc3\x90\xc2\xbc\xc3\x90\xc2\xbe\xc3\x90\xc2\xb6\xc4\xa0\xc3\x90\xc2" +"\xba\xc3\x90\xc2\xbe\xc3\x90\xc2\xbd\xc4\xa0\xc3\x90\xc2\xba\xc3\x90\xc2\xbe\xc3" +"\x90\xc2\xbc\xc4\xa0\xc3\x90\xc2\xba\xc3\x90\xc2\xb0\xc3\x90\xc2\xba\xc4\xa0\xc3" +"\x90\xc2\xb8\xc3\x91\xc4\xa3\xc3\x90\xc2\xbf\xc4\xa0\xc3\x90\xc2\xb8\xc3\x90\xc2" +"\xbb\xc3\x90\xc2\xb8\xc4\xa0\xc3\x90\xc2\xb7\xc3\x90\xc2\xb0\xc3\x90\xc2\xbf\xc4" +"\xa0\xc3\x90\xc2\xb5\xc3\x90\xc2\xb3\xc3\x90\xc2\xbe\xc4\xa0\xc3\x90\xc2\xb4\xc3" +"\x90\xc2\xbb\xc3\x91\xc4\xb1\xc4\xa0\xc3\x90\xc2\xb3\xc3\x90\xc2\xbe\xc3\x90\xc2" +"\xb4\xc4\xa0\xc3\x90\xc2\xb2\xc3\x91\xc4\xa3\xc3\x90\xc2\xb5\xc4\xa0\xc3\x90\xc2" +"\xb1\xc3\x91\xc4\xa5\xc3\x90\xc2\xb4\xc4\xa0\xc3\x8f\xc4\xae\xc3\x8f\xc4\xa6\xc3" +"\x8e\xc2\xb9\xc4\xa0\xc3\x8f\xc4\xa6\xc3\x8f\xc4\xab\xc3\x8e\xc2\xbd\xc4\xa0\xc3" +"\x8f\xc4\xa6\xc3\x8e\xc2\xbf\xc3\x8f\xc4\xa7\xc4\xa0\xc3\x8f\xc4\xa6\xc3\x8e\xc2" +"\xb9\xc3\x8f\xc4\xa4\xc4\xa0\xc3\x8f\xc4\xa6\xc3\x8e\xc2\xb7\xc3\x8f\xc4\xa4\xc4" +"\xa0\xc3\x8f\xc4\xa6\xc3\x8e\xc2\xb7\xc3\x8e\xc2\xbd\xc4\xa0\xc3\x8f\xc4\xa5\xc3" +"\x8f\xc4\xa7\xc3\x8e\xc2\xbd\xc4\xa0\xc3\x8f\xc4\xa5\xc3\x8f\xc4\xa6\xc3\x8e\xc2" +"\xbf\xc4\xa0\xc3\x8f\xc4\xa2\xc3\x8f\xc4\xa3\xc3\x8e\xc2\xbf\xc4\xa0\xc3\x8f\xc4" +"\xa2\xc3\x8e\xc2\xbf\xc3\x8f\xc4\xa7\xc4\xa0\xc3\x8f\xc4\xa2\xc3\x8e\xc2\xbf\xc3" +"\x8e\xc2\xbb\xc4\xa0\xc3\x8e\xc2\xba\xc3\x8e\xc2\xb1\xc3\x8e\xc2\xb9\xc4\xa0\xc3" +"\x8e\xc2\xb5\xc3\x8f\xc4\xa2\xc3\x8e\xc2\xb9\xc4\xa0\xc3\x8e\xc2\xb4\xc3\x8e\xc2" +"\xb9\xc3\x8e\xc2\xb1\xc4\xa0\xc3\x8e\xc2\xb4\xc3\x8e\xc2\xb5\xc3\x8e\xc2\xbd\xc4" +"\xa0\xc3\x8e\xc2\xb3\xc3\x8e\xc2\xb9\xc3\x8e\xc2\xb1\xc4\xa0\xc3\x8e\xc2\xb1\xc3" +"\x8f\xc4\xa7\xc3\x8f\xc4\xa6\xc4\xa0\xc3\x8e\xc2\xb1\xc3\x8f\xc4\xa2\xc3\x8f\xc4" +"\xae\xc4\xa0\xc3\x8e\xc2\xb1\xc3\x8f\xc4\xa2\xc3\x8e\xc2\xbf\xc4\xa0\xc3\x83\xc2" +"\xa9tait\xc4\xa0zoning\xc4\xa0zombie\xc4\xa0youths\xc4\xa0yogurt\xc4\xa0yields\xc4" +"\xa0yellow\xc4\xa0yelled\xc4\xa0yearly\xc4\xa0writes\xc4\xa0wrists\xc4\xa0wounds" +"\xc4\xa0wouldn\xc4\xa0worthy\xc4\xa0worlds\xc4\xa0worked\xc4\xa0worden\xc4\xa0wo" +"oden\xc4\xa0wolves\xc4\xa0wizard\xc4\xa0within\xc4\xa0wishes\xc4\xa0wished\xc4\xa0" +"wisely\xc4\xa0wisdom\xc4\xa0wiring\xc4\xa0wiping\xc4\xa0winter\xc4\xa0wildly\xc4" +"\xa0wieder\xc4\xa0widths\xc4\xa0widget\xc4\xa0widely\xc4\xa0wicked\xc4\xa0wholly" +"\xc4\xa0whites\xc4\xa0whilst\xc4\xa0whence\xc4\xa0wheels\xc4\xa0whales\xc4\xa0we" +"rden\xc4\xa0weighs\xc4\xa0weekly\xc4\xa0weakly\xc4\xa0weaker\xc4\xa0waving\xc4\xa0" +"waterm\xc4\xa0wastes\xc4\xa0wasted\xc4\xa0washed\xc4\xa0warned\xc4\xa0warmth\xc4" +"\xa0warmer\xc4\xa0warmed\xc4\xa0wanted\xc4\xa0wallet\xc4\xa0walked\xc4\xa0waking" +"\xc4\xa0waiver\xc4\xa0waived\xc4\xa0waiter\xc4\xa0waited\xc4\xa0wafers\xc4\xa0vu" +"lgar\xc4\xa0voyage\xc4\xa0voting\xc4\xa0voters\xc4\xa0vortex\xc4\xa0volley\xc4\xa0" +"voices\xc4\xa0voiced\xc4\xa0vocals\xc4\xa0visits\xc4\xa0virgin\xc4\xa0violin\xc4" +"\xa0violet\xc4\xa0viewed\xc4\xa0videot\xc4\xa0videos\xc4\xa0viable\xc4\xa0vested" +"\xc4\xa0vertex\xc4\xa0versus\xc4\xa0verses\xc4\xa0versch\xc4\xa0verbal\xc4\xa0ve" +"nues\xc4\xa0venous\xc4\xa0velvet\xc4\xa0vastly\xc4\xa0varies\xc4\xa0varied\xc4\xa0" +"vanity\xc4\xa0valves\xc4\xa0values\xc4\xa0valued\xc4\xa0valign\xc4\xa0vacuum\xc4" +"\xa0vacant\xc4\xa0utmost\xc4\xa0uterus\xc4\xa0usable\xc4\xa0urging\xc4\xa0uptake" +"\xc4\xa0upside\xc4\xa0uphold\xc4\xa0upheld\xc4\xa0unused\xc4\xa0unsure\xc4\xa0un" +"sett\xc4\xa0unseen\xc4\xa0unsafe\xc4\xa0unpaid\xc4\xa0unpack\xc4\xa0unless\xc4\xa0" +"unjust\xc4\xa0united\xc4\xa0unions\xc4\xa0unfair\xc4\xa0uneven\xc4\xa0uneasy\xc4" +"\xa0uncomp\xc4\xa0unable\xc4\xa0ulcers\xc4\xa0ubuntu\xc4\xa0typing\xc4\xa0typeof" +"\xc4\xa0twists\xc4\xa0twenty\xc4\xa0twelve\xc4\xa0tweets\xc4\xa0turtle\xc4\xa0tu" +"rned\xc4\xa0turkey\xc4\xa0tuning\xc4\xa0tumors\xc4\xa0tucked\xc4\xa0tubing\xc4\xa0" +"trying\xc4\xa0truths\xc4\xa0trusts\xc4\xa0trucks\xc4\xa0trough\xc4\xa0trophy\xc4" +"\xa0troops\xc4\xa0tricky\xc4\xa0tricks\xc4\xa0tribes\xc4\xa0tribal\xc4\xa0trials" +"\xc4\xa0trends\xc4\xa0treaty\xc4\xa0treats\xc4\xa0tranqu\xc4\xa0traits\xc4\xa0tr" +"ains\xc4\xa0trails\xc4\xa0tragic\xc4\xa0trades\xc4\xa0traded\xc4\xa0tracts\xc4\xa0" +"tracks\xc4\xa0trache\xc4\xa0traces\xc4\xa0tracer\xc4\xa0traced\xc4\xa0trabal\xc4" +"\xa0toxins\xc4\xa0towers\xc4\xa0towels\xc4\xa0toutes\xc4\xa0tossed\xc4\xa0torque" +"\xc4\xa0torped\xc4\xa0topped\xc4\xa0topics\xc4\xa0tonnes\xc4\xa0tokens\xc4\xa0to" +"ilet\xc4\xa0toggle\xc4\xa0titles\xc4\xa0titled\xc4\xa0titers\xc4\xa0tipped\xc4\xa0" +"timing\xc4\xa0timely\xc4\xa0timber\xc4\xa0tilted\xc4\xa0tiempo\xc4\xa0tibial\xc4" +"\xa0thwart\xc4\xa0thumbs\xc4\xa0thrust\xc4\xa0throws\xc4\xa0thrown\xc4\xa0throne" +"\xc4\xa0throat\xc4\xa0thrive\xc4\xa0thirty\xc4\xa0thirst\xc4\xa0thinly\xc4\xa0th" +"inks\xc4\xa0things\xc4\xa0thighs\xc4\xa0thesis\xc4\xa0theory\xc4\xa0themes\xc4\xa0" +"theirs\xc4\xa0thanks\xc4\xa0testis\xc4\xa0tester\xc4\xa0tested\xc4\xa0termed\xc4" +"\xa0tenure\xc4\xa0tennis\xc4\xa0tendon\xc4\xa0tended\xc4\xa0taught\xc4\xa0tattoo" +"\xc4\xa0tastes\xc4\xa0tasted\xc4\xa0tasked\xc4\xa0tapped\xc4\xa0tandem\xc4\xa0ta" +"ller\xc4\xa0talked\xc4\xa0taking\xc4\xa0tagged\xc4\xa0syntax\xc4\xa0swords\xc4\xa0" +"swings\xc4\xa0suture\xc4\xa0surely\xc4\xa0supper\xc4\xa0supers\xc4\xa0superb\xc4" +"\xa0sunset\xc4\xa0summit\xc4\xa0summer\xc4\xa0summed\xc4\xa0sulfur\xc4\xa0suites" +"\xc4\xa0suited\xc4\xa0sugars\xc4\xa0suffix\xc4\xa0sucked\xc4\xa0subway\xc4\xa0su" +"btle\xc4\xa0styles\xc4\xa0styled\xc4\xa0sturdy\xc4\xa0stupid\xc4\xa0struck\xc4\xa0" +"stroll\xc4\xa0strlen\xc4\xa0strive\xc4\xa0strips\xc4\xa0strept\xc4\xa0streak\xc4" +"\xa0strata\xc4\xa0straps\xc4\xa0storms\xc4\xa0stores\xc4\xa0stored\xc4\xa0stones" +"\xc4\xa0stolen\xc4\xa0stocks\xc4\xa0stigma\xc4\xa0sticky\xc4\xa0sticks\xc4\xa0st" +"eady\xc4\xa0stayed\xc4\xa0status\xc4\xa0stator\xc4\xa0static\xc4\xa0states\xc4\xa0" +"stated\xc4\xa0starts\xc4\xa0stared\xc4\xa0starch\xc4\xa0staple\xc4\xa0stands\xc4" +"\xa0stance\xc4\xa0stamps\xc4\xa0stalls\xc4\xa0stakes\xc4\xa0stairs\xc4\xa0stains" +"\xc4\xa0stages\xc4\xa0staged\xc4\xa0stacks\xc4\xa0stably\xc4\xa0stable\xc4\xa0sq" +"uash\xc4\xa0sqlite\xc4\xa0spying\xc4\xa0sprite\xc4\xa0sprint\xc4\xa0sprang\xc4\xa0" +"sports\xc4\xa0spores\xc4\xa0sponge\xc4\xa0spoken\xc4\xa0splits\xc4\xa0splice\xc4" +"\xa0spleen\xc4\xa0splash\xc4\xa0spiral\xc4\xa0spines\xc4\xa0spinal\xc4\xa0spikes" +"\xc4\xa0spiked\xc4\xa0spices\xc4\xa0spends\xc4\xa0spells\xc4\xa0speedy\xc4\xa0sp" +"eeds\xc4\xa0speaks\xc4\xa0sparse\xc4\xa0spared\xc4\xa0spaces\xc4\xa0spacer\xc4\xa0" +"spaced\xc4\xa0sounds\xc4\xa0sought\xc4\xa0sorted\xc4\xa0sorrow\xc4\xa0sooner\xc4" +"\xa0solves\xc4\xa0solver\xc4\xa0solved\xc4\xa0solids\xc4\xa0solemn\xc4\xa0solely" +"\xc4\xa0solder\xc4\xa0softly\xc4\xa0softer\xc4\xa0sodium\xc4\xa0soccer\xc4\xa0so" +"aked\xc4\xa0snakes\xc4\xa0snacks\xc4\xa0smoked\xc4\xa0smiles\xc4\xa0smiled\xc4\xa0" +"smells\xc4\xa0slurry\xc4\xa0sludge\xc4\xa0slowly\xc4\xa0slower\xc4\xa0slowed\xc4" +"\xa0slopes\xc4\xa0slogan\xc4\xa0slides\xc4\xa0slider\xc4\xa0slices\xc4\xa0sliced" +"\xc4\xa0sleepy\xc4\xa0slaves\xc4\xa0slated\xc4\xa0skulle\xc4\xa0skirts\xc4\xa0sk" +"inny\xc4\xa0skills\xc4\xa0skiing\xc4\xa0skewed\xc4\xa0sizeof\xc4\xa0simply\xc4\xa0" +"simmer\xc4\xa0silver\xc4\xa0silica\xc4\xa0silhou\xc4\xa0signed\xc4\xa0sights\xc4" +"\xa0sighed\xc4\xa0shroud\xc4\xa0shrine\xc4\xa0shrimp\xc4\xa0showed\xc4\xa0shovel" +"\xc4\xa0shoved\xc4\xa0shouts\xc4\xa0shorts\xc4\xa0shorth\xc4\xa0shores\xc4\xa0sh" +"oots\xc4\xa0shocks\xc4\xa0shirts\xc4\xa0shifts\xc4\xa0shells\xc4\xa0sheets\xc4\xa0" +"sheath\xc4\xa0sharks\xc4\xa0shares\xc4\xa0shared\xc4\xa0shapes\xc4\xa0shaped\xc4" +"\xa0shakes\xc4\xa0shaken\xc4\xa0shades\xc4\xa0shader\xc4\xa0shaded\xc4\xa0sewing" +"\xc4\xa0sewage\xc4\xa0serves\xc4\xa0served\xc4\xa0sermon\xc4\xa0serine\xc4\xa0se" +"ries\xc4\xa0sequel\xc4\xa0septic\xc4\xa0sepsis\xc4\xa0senses\xc4\xa0sensed\xc4\xa0" +"sender\xc4\xa0sempre\xc4\xa0seldom\xc4\xa0seized\xc4\xa0seemed\xc4\xa0seeing\xc4" +"\xa0seeded\xc4\xa0seated\xc4\xa0sealed\xc4\xa0screws\xc4\xa0scrape\xc4\xa0scores" +"\xc4\xa0scored\xc4\xa0scenic\xc4\xa0scenes\xc4\xa0scared\xc4\xa0scales\xc4\xa0sc" +"aled\xc4\xa0scalar\xc4\xa0saying\xc4\xa0savage\xc4\xa0sanity\xc4\xa0salmon\xc4\xa0" +"saline\xc4\xa0salary\xc4\xa0saints\xc4\xa0sailed\xc4\xa0safety\xc4\xa0safely\xc4" +"\xa0saddle\xc4\xa0sacred\xc4\xa0rushed\xc4\xa0runway\xc4\xa0rumors\xc4\xa0rulers" +"\xc4\xa0ruined\xc4\xa0rugged\xc4\xa0rubber\xc4\xa0rubbed\xc4\xa0routes\xc4\xa0ro" +"uter\xc4\xa0routed\xc4\xa0rounds\xc4\xa0rotten\xc4\xa0rotary\xc4\xa0roster\xc4\xa0" +"rooted\xc4\xa0rookie\xc4\xa0rolled\xc4\xa0robots\xc4\xa0robbed\xc4\xa0roared\xc4" +"\xa0rivers\xc4\xa0rivals\xc4\xa0rising\xc4\xa0ripped\xc4\xa0rinsed\xc4\xa0rights" +"\xc4\xa0rifles\xc4\xa0riding\xc4\xa0riders\xc4\xa0richer\xc4\xa0ribbon\xc4\xa0re" +"volt\xc4\xa0revert\xc4\xa0rested\xc4\xa0resize\xc4\xa0resins\xc4\xa0rescal\xc4\xa0" +"replen\xc4\xa0replay\xc4\xa0repent\xc4\xa0repeal\xc4\xa0reopen\xc4\xa0rented\xc4" +"\xa0remedy\xc4\xa0remake\xc4\xa0reload\xc4\xa0relies\xc4\xa0relief\xc4\xa0relied" +"\xc4\xa0reinst\xc4\xa0regret\xc4\xa0refund\xc4\xa0reflux\xc4\xa0reflex\xc4\xa0re" +"fers\xc4\xa0redeem\xc4\xa0rectal\xc4\xa0reckon\xc4\xa0recapt\xc4\xa0reboot\xc4\xa0" +"rebels\xc4\xa0reappe\xc4\xa0really\xc4\xa0reacts\xc4\xa0ratios\xc4\xa0rather\xc4" +"\xa0rarely\xc4\xa0rapper\xc4\xa0ransom\xc4\xa0ranked\xc4\xa0ranges\xc4\xa0ranged" +"\xc4\xa0raison\xc4\xa0raises\xc4\xa0raised\xc4\xa0raging\xc4\xa0ragged\xc4\xa0ra" +"dius\xc4\xa0radios\xc4\xa0racket\xc4\xa0racist\xc4\xa0racism\xc4\xa0racing\xc4\xa0" +"racial\xc4\xa0quotes\xc4\xa0quoted\xc4\xa0questo\xc4\xa0questa\xc4\xa0qubits\xc4" +"\xa0quartz\xc4\xa0quarks\xc4\xa0quanto\xc4\xa0quando\xc4\xa0python\xc4\xa0pylori" +"\xc4\xa0pushes\xc4\xa0pushed\xc4\xa0purple\xc4\xa0purity\xc4\xa0purely\xc4\xa0pu" +"ppet\xc4\xa0pupils\xc4\xa0pumped\xc4\xa0pulses\xc4\xa0pulsed\xc4\xa0pulled\xc4\xa0" +"pseudo\xc4\xa0proves\xc4\xa0proven\xc4\xa0proved\xc4\xa0proofs\xc4\xa0promul\xc4" +"\xa0prodig\xc4\xa0probes\xc4\xa0probed\xc4\xa0prizes\xc4\xa0prints\xc4\xa0printf" +"\xc4\xa0primes\xc4\xa0prices\xc4\xa0priced\xc4\xa0pretty\xc4\xa0prefix\xc4\xa0pr" +"edis\xc4\xa0prayed\xc4\xa0powers\xc4\xa0poured\xc4\xa0pounds\xc4\xa0posted\xc4\xa0" +"postal\xc4\xa0posing\xc4\xa0portal\xc4\xa0porque\xc4\xa0porous\xc4\xa0popped\xc4" +"\xa0poorly\xc4\xa0poorer\xc4\xa0pooled\xc4\xa0ponder\xc4\xa0pollen\xc4\xa0poised" +"\xc4\xa0points\xc4\xa0poetry\xc4\xa0poetic\xc4\xa0podium\xc4\xa0plight\xc4\xa0pl" +"enty\xc4\xa0played\xc4\xa0plates\xc4\xa0plated\xc4\xa0plasma\xc4\xa0plants\xc4\xa0" +"planes\xc4\xa0planar\xc4\xa0plains\xc4\xa0places\xc4\xa0placed\xc4\xa0pixels\xc4" +"\xa0piston\xc4\xa0pistol\xc4\xa0pissed\xc4\xa0pinned\xc4\xa0pilots\xc4\xa0pillow" +"\xc4\xa0pieces\xc4\xa0picnic\xc4\xa0pickup\xc4\xa0picked\xc4\xa0photoc\xc4\xa0ph" +"onon\xc4\xa0phones\xc4\xa0phenyl\xc4\xa0phases\xc4\xa0pessim\xc4\xa0percol\xc4\xa0" +"pentru\xc4\xa0pencil\xc4\xa0pelvis\xc4\xa0pelvic\xc4\xa0peered\xc4\xa0peeled\xc4" +"\xa0peanut\xc4\xa0peaked\xc4\xa0paying\xc4\xa0paused\xc4\xa0patrol\xc4\xa0pastry" +"\xc4\xa0pastor\xc4\xa0passes\xc4\xa0passer\xc4\xa0passed\xc4\xa0partly\xc4\xa0pa" +"rtir\xc4\xa0parted\xc4\xa0parser\xc4\xa0parsed\xc4\xa0parole\xc4\xa0parked\xc4\xa0" +"parity\xc4\xa0parish\xc4\xa0parece\xc4\xa0pardon\xc4\xa0parcel\xc4\xa0params\xc4" +"\xa0parade\xc4\xa0parach\xc4\xa0papill\xc4\xa0papers\xc4\xa0panels\xc4\xa0pandas" +"\xc4\xa0palate\xc4\xa0palace\xc4\xa0paired\xc4\xa0paints\xc4\xa0paddle\xc4\xa0pa" +"cked\xc4\xa0pacing\xc4\xa0oxygen\xc4\xa0oxides\xc4\xa0owning\xc4\xa0overly\xc4\xa0" +"outset\xc4\xa0outper\xc4\xa0outlaw\xc4\xa0ounces\xc4\xa0others\xc4\xa0orthon\xc4" +"\xa0orphan\xc4\xa0orgasm\xc4\xa0organs\xc4\xa0orders\xc4\xa0orbits\xc4\xa0orange" +"\xc4\xa0orally\xc4\xa0oracle\xc4\xa0optics\xc4\xa0openly\xc4\xa0opener\xc4\xa0op" +"ened\xc4\xa0opaque\xc4\xa0online\xc4\xa0onions\xc4\xa0oldest\xc4\xa0offers\xc4\xa0" +"ocular\xc4\xa0ocks\xc3\x83\xc2\xa5\xc4\xa0oceans\xc4\xa0occurs\xc4\xa0occult\xc4" +"\xa0n\xc3\x83\xc2\xbamer\xc4\xa0nvidia\xc4\xa0nurses\xc4\xa0nozzle\xc4\xa0novels" +"\xc4\xa0noting\xc4\xa0notify\xc4\xa0nombre\xc4\xa0noises\xc4\xa0nodded\xc4\xa0no" +"body\xc4\xa0nitric\xc4\xa0ninety\xc4\xa0nights\xc4\xa0nickel\xc4\xa0nicely\xc4\xa0" +"newest\xc4\xa0newcom\xc4\xa0neurom\xc4\xa0neural\xc4\xa0nested\xc4\xa0nerves\xc4" +"\xa0nephew\xc4\xa0needed\xc4\xa0neatly\xc4\xa0nearly\xc4\xa0nearer\xc4\xa0nearby" +"\xc4\xa0na\xc3\x83\xc2\xafve\xc4\xa0nausea\xc4\xa0naught\xc4\xa0nature\xc4\xa0na" +"nost\xc4\xa0naming\xc4\xa0namely\xc4\xa0m\xc3\x83\xc2\xa5ste\xc4\xa0myself\xc4\xa0" +"myriad\xc4\xa0myosin\xc4\xa0mycket\xc4\xa0murine\xc4\xa0multin\xc4\xa0multil\xc4" +"\xa0multif\xc4\xa0multic\xc4\xa0moving\xc4\xa0movies\xc4\xa0mouths\xc4\xa0mounts" +"\xc4\xa0motors\xc4\xa0motifs\xc4\xa0mostly\xc4\xa0mosque\xc4\xa0mosaic\xc4\xa0mo" +"rtar\xc4\xa0morale\xc4\xa0months\xc4\xa0molten\xc4\xa0molded\xc4\xa0moiety\xc4\xa0" +"moeten\xc4\xa0modulo\xc4\xa0moduli\xc4\xa0modest\xc4\xa0modern\xc4\xa0models\xc4" +"\xa0mobile\xc4\xa0mixing\xc4\xa0mitral\xc4\xa0misuse\xc4\xa0misses\xc4\xa0missed" +"\xc4\xa0misery\xc4\xa0miscar\xc4\xa0minors\xc4\xa0mining\xc4\xa0miners\xc4\xa0mi" +"nded\xc4\xa0minced\xc4\xa0mimics\xc4\xa0millig\xc4\xa0milieu\xc4\xa0mildly\xc4\xa0" +"mighty\xc4\xa0middle\xc4\xa0micron\xc4\xa0microm\xc4\xa0microl\xc4\xa0microM\xc4" +"\xa0miRNAs\xc4\xa0metres\xc4\xa0meters\xc4\xa0meteor\xc4\xa0metals\xc4\xa0messed" +"\xc4\xa0merits\xc4\xa0merged\xc4\xa0merely\xc4\xa0mentor\xc4\xa0mening\xc4\xa0me" +"mory\xc4\xa0memoir\xc4\xa0melted\xc4\xa0melody\xc4\xa0medium\xc4\xa0median\xc4\xa0" +"medial\xc4\xa0medals\xc4\xa0mature\xc4\xa0matrix\xc4\xa0mating\xc4\xa0masses\xc4" +"\xa0masked\xc4\xa0marvel\xc4\xa0marrow\xc4\xa0markup\xc4\xa0marine\xc4\xa0marble" +"\xc4\xa0mapped\xc4\xa0mantle\xc4\xa0malloc\xc4\xa0malice\xc4\xa0making\xc4\xa0ma" +"keup\xc4\xa0makers\xc4\xa0majors\xc4\xa0mainly\xc4\xa0mailed\xc4\xa0maiden\xc4\xa0" +"macrom\xc4\xa0lysine\xc4\xa0lyrics\xc4\xa0luxury\xc4\xa0lumber\xc4\xa0lumbar\xc4" +"\xa0lubric\xc4\xa0lowest\xc4\xa0lowers\xc4\xa0loving\xc4\xa0lovers\xc4\xa0lovely" +"\xc4\xa0lounge\xc4\xa0loudly\xc4\xa0louder\xc4\xa0losses\xc4\xa0losing\xc4\xa0lo" +"okup\xc4\xa0looked\xc4\xa0longer\xc4\xa0lonely\xc4\xa0logger\xc4\xa0logged\xc4\xa0" +"lodged\xc4\xa0locker\xc4\xa0locked\xc4\xa0locals\xc4\xa0locale\xc4\xa0loader\xc4" +"\xa0loaded\xc4\xa0living\xc4\xa0lively\xc4\xa0little\xc4\xa0litter\xc4\xa0litres" +"\xc4\xa0listed\xc4\xa0liquor\xc4\xa0lipids\xc4\xa0linker\xc4\xa0linked\xc4\xa0li" +"ning\xc4\xa0lineup\xc4\xa0limits\xc4\xa0liking\xc4\xa0likely\xc4\xa0lights\xc4\xa0" +"lifted\xc4\xa0liable\xc4\xa0levels\xc4\xa0lethal\xc4\xa0lesser\xc4\xa0lepton\xc4" +"\xa0leptin\xc4\xa0lenses\xc4\xa0legacy\xc4\xa0leaves\xc4\xa0leases\xc4\xa0leased" +"\xc4\xa0learnt\xc4\xa0learns\xc4\xa0leaned\xc4\xa0leaked\xc4\xa0laying\xc4\xa0la" +"yers\xc4\xa0lawful\xc4\xa0laughs\xc4\xa0latter\xc4\xa0latest\xc4\xa0latent\xc4\xa0" +"lately\xc4\xa0lasted\xc4\xa0lasers\xc4\xa0larval\xc4\xa0larvae\xc4\xa0larger\xc4" +"\xa0landed\xc4\xa0lament\xc4\xa0lambda\xc4\xa0ladies\xc4\xa0ladder\xc4\xa0lacked" +"\xc4\xa0labour\xc4\xa0labels\xc4\xa0kunnen\xc4\xa0kommer\xc4\xa0knives\xc4\xa0ki" +"sses\xc4\xa0kissed\xc4\xa0kindly\xc4\xa0kinder\xc4\xa0killed\xc4\xa0kicked\xc4\xa0" +"keeper\xc4\xa0j\xc3\x83\xc2\xa4sen\xc4\xa0jurors\xc4\xa0junior\xc4\xa0jungle\xc4" +"\xa0jumped\xc4\xa0juices\xc4\xa0judges\xc4\xa0judged\xc4\xa0jquery\xc4\xa0joking" +"\xc4\xa0joints\xc4\xa0joined\xc4\xa0jewels\xc4\xa0jersey\xc4\xa0jerked\xc4\xa0ja" +"mais\xc4\xa0jacket\xc4\xa0jQuery\xc4\xa0itself\xc4\xa0itiner\xc4\xa0issues\xc4\xa0" +"issued\xc4\xa0islets\xc4\xa0ironic\xc4\xa0iodine\xc4\xa0inward\xc4\xa0intron\xc4" +"\xa0intram\xc4\xa0intake\xc4\xa0intact\xc4\xa0insurg\xc4\xa0insane\xc4\xa0inputs" +"\xc4\xa0innate\xc4\xa0inline\xc4\xa0inland\xc4\xa0injury\xc4\xa0influx\xc4\xa0in" +"flow\xc4\xa0indign\xc4\xa0indent\xc4\xa0indemn\xc4\xa0indeed\xc4\xa0inches\xc4\xa0" +"incarn\xc4\xa0immune\xc4\xa0images\xc4\xa0imaged\xc4\xa0ideals\xc4\xa0iconic\xc4" +"\xa0iTunes\xc4\xa0iPhone\xc4\xa0hyster\xc4\xa0hypocr\xc4\xa0hypnot\xc4\xa0hunted" +"\xc4\xa0hungry\xc4\xa0hunger\xc4\xa0humour\xc4\xa0humble\xc4\xa0humans\xc4\xa0hu" +"gged\xc4\xa0hugely\xc4\xa0houses\xc4\xa0housed\xc4\xa0hourly\xc4\xa0hotels\xc4\xa0" +"hosted\xc4\xa0horses\xc4\xa0hoping\xc4\xa0hooked\xc4\xa0honour\xc4\xa0honors\xc4" +"\xa0homage\xc4\xa0hollow\xc4\xa0hockey\xc4\xa0hiring\xc4\xa0hinted\xc4\xa0hinder" +"\xc4\xa0hiking\xc4\xa0highly\xc4\xa0higher\xc4\xa0hiding\xc4\xa0hidden\xc4\xa0he" +"rpes\xc4\xa0heroin\xc4\xa0heroic\xc4\xa0heroes\xc4\xa0hereby\xc4\xa0herbal\xc4\xa0" +"helper\xc4\xa0helped\xc4\xa0helmet\xc4\xa0helium\xc4\xa0hebben\xc4\xa0heater\xc4" +"\xa0heated\xc4\xa0hearty\xc4\xa0hearts\xc4\xa0healed\xc4\xa0headed\xc4\xa0having" +"\xc4\xa0hauled\xc4\xa0hatred\xc4\xa0hassle\xc4\xa0harmed\xc4\xa0hardly\xc4\xa0ha" +"rder\xc4\xa0handic\xc4\xa0handed\xc4\xa0hammer\xc4\xa0halves\xc4\xa0halted\xc4\xa0" +"halluc\xc4\xa0hailed\xc4\xa0haemat\xc4\xa0hacked\xc4\xa0hab\xc3\x83\xc5\x83""a\xc4" +"\xa0habits\xc4\xa0habeas\xc4\xa0g\xc3\x83\xc2\xa9n\xc3\x83\xc2\xa9\xc4\xa0guinea" +"\xc4\xa0guilty\xc4\xa0guides\xc4\xa0guided\xc4\xa0guests\xc4\xa0guerra\xc4\xa0gu" +"ards\xc4\xa0growth\xc4\xa0groups\xc4\xa0greens\xc4\xa0greedy\xc4\xa0grease\xc4\xa0" +"graves\xc4\xa0gravel\xc4\xa0grated\xc4\xa0graphs\xc4\xa0grapes\xc4\xa0grants\xc4" +"\xa0grains\xc4\xa0grafts\xc4\xa0grades\xc4\xa0graded\xc4\xa0gotten\xc4\xa0gossip" +"\xc4\xa0gospel\xc4\xa0google\xc4\xa0golden\xc4\xa0glycos\xc4\xa0glycol\xc4\xa0gl" +"uten\xc4\xa0gloves\xc4\xa0glioma\xc4\xa0glared\xc4\xa0glands\xc4\xa0gladly\xc4\xa0" +"giving\xc4\xa0github\xc4\xa0ginger\xc4\xa0gifted\xc4\xa0giants\xc4\xa0ghosts\xc4" +"\xa0gently\xc4\xa0genres\xc4\xa0genius\xc4\xa0geneal\xc4\xa0gender\xc4\xa0geared" +"\xc4\xa0gazing\xc4\xa0gasped\xc4\xa0garlic\xc4\xa0garant\xc4\xa0garage\xc4\xa0ga" +"ming\xc4\xa0gamers\xc4\xa0galaxy\xc4\xa0gained\xc4\xa0""futuro\xc4\xa0""futile\xc4" +"\xa0""fusion\xc4\xa0""funnel\xc4\xa0""fungus\xc4\xa0""fungal\xc4\xa0""funded\xc4" +"\xa0""fueled\xc4\xa0""fucked\xc4\xa0""frying\xc4\xa0""fruits\xc4\xa0""frozen\xc4" +"\xa0""fronts\xc4\xa0""fringe\xc4\xa0""fridge\xc4\xa0""freely\xc4\xa0""frames\xc4" +"\xa0""framed\xc4\xa0""fourth\xc4\xa0""fought\xc4\xa0""foster\xc4\xa0""fossil\xc4" +"\xa0""forums\xc4\xa0""formed\xc4\xa0""forged\xc4\xa0""forces\xc4\xa0""forced\xc4" +"\xa0""footer\xc4\xa0""folded\xc4\xa0""flying\xc4\xa0""fluxes\xc4\xa0""fluids\xc4" +"\xa0""flowed\xc4\xa0""floral\xc4\xa0""floors\xc4\xa0""floods\xc4\xa0""floats\xc4" +"\xa0""flawed\xc4\xa0""flavon\xc4\xa0""flares\xc4\xa0""flange\xc4\xa0""flames\xc4" +"\xa0""flakes\xc4\xa0""fixing\xc4\xa0""fitted\xc4\xa0""fishes\xc4\xa0""fiscal\xc4" +"\xa0""firmly\xc4\xa0""firing\xc4\xa0""finest\xc4\xa0""finely\xc4\xa0""finder\xc4" +"\xa0""finals\xc4\xa0""finale\xc4\xa0""filthy\xc4\xa0""filmed\xc4\xa0""filler\xc4" +"\xa0""filled\xc4\xa0""fights\xc4\xa0""fields\xc4\xa0""fiddle\xc4\xa0""fibrin\xc4" +"\xa0""fibres\xc4\xa0""fibers\xc4\xa0""felony\xc4\xa0""feeder\xc4\xa0""feared\xc4" +"\xa0""favors\xc4\xa0""faulty\xc4\xa0""faults\xc4\xa0""faster\xc4\xa0""famine\xc4" +"\xa0""family\xc4\xa0""fallen\xc4\xa0""fairly\xc4\xa0""failed\xc4\xa0""fading\xc4" +"\xa0""facing\xc4\xa0""facial\xc4\xa0""facets\xc4\xa0""extras\xc4\xa0""extrap\xc4" +"\xa0""extrad\xc4\xa0""extent\xc4\xa0""extant\xc4\xa0""exotic\xc4\xa0""exited\xc4" +"\xa0""exists\xc4\xa0""exerts\xc4\xa0""excurs\xc4\xa0""evoked\xc4\xa0""events\xc4" +"\xa0""evenly\xc4\xa0""euthan\xc4\xa0""ethics\xc4\xa0""etched\xc4\xa0""est\xc3\x83" +"\xc2\xa1n\xc4\xa0""esters\xc4\xa0""estado\xc4\xa0""estaba\xc4\xa0""essere\xc4\xa0" +"""essays\xc4\xa0""erythe\xc4\xa0""errors\xc4\xa0""erotic\xc4\xa0""erased\xc4\xa0" +"""equity\xc4\xa0""equals\xc4\xa0""epochs\xc4\xa0""entity\xc4\xa0""enters\xc4\xa0" +"""entend\xc4\xa0""ensued\xc4\xa0""enough\xc4\xa0""enjoys\xc4\xa0""engulf\xc4\xa0" +"""energy\xc4\xa0""encore\xc4\xa0""enamel\xc4\xa0""empres\xc4\xa0""empire\xc4\xa0" +"""emails\xc4\xa0""eluted\xc4\xa0""elites\xc4\xa0""eleven\xc4\xa0""eldest\xc4\xa0" +"""elders\xc4\xa0""elbows\xc4\xa0""either\xc4\xa0""eighty\xc4\xa0""eighth\xc4\xa0" +"""efflux\xc4\xa0""edited\xc4\xa0""edible\xc4\xa0""econ\xc3\x83\xc2\xb3\xc4\xa0""e" +"choes\xc4\xa0""echoed\xc4\xa0""eating\xc4\xa0""easily\xc4\xa0""easier\xc4\xa0""e" +"arned\xc4\xa0""d\xc3\x83\xc2\xa9j\xc3\x83\xc5\x82\xc4\xa0""dwarfs\xc4\xa0""dutie" +"s\xc4\xa0""during\xc4\xa0""duplex\xc4\xa0""dumped\xc4\xa0""dubbed\xc4\xa0""dryin" +"g\xc4\xa0""drones\xc4\xa0""drives\xc4\xa0""driven\xc4\xa0""drinks\xc4\xa0""drill" +"s\xc4\xa0""dreams\xc4\xa0""drawer\xc4\xa0""drafts\xc4\xa0""dozens\xc4\xa0""doubt" +"s\xc4\xa0""doubly\xc4\xa0""dotted\xc4\xa0""dosing\xc4\xa0""dosage\xc4\xa0""dorsa" +"l\xc4\xa0""doping\xc4\xa0""doomed\xc4\xa0""donors\xc4\xa0""donkey\xc4\xa0""doesn" +"t\xc4\xa0""docket\xc4\xa0""docker\xc4\xa0""django\xc4\xa0""diving\xc4\xa0""divin" +"e\xc4\xa0""divert\xc4\xa0""distal\xc4\xa0""disple\xc4\xa0""dismay\xc4\xa0""disho" +"n\xc4\xa0""dishes\xc4\xa0""diseng\xc4\xa0""dipped\xc4\xa0""dipole\xc4\xa0""diode" +"s\xc4\xa0""dinner\xc4\xa0""dining\xc4\xa0""digits\xc4\xa0""diff\xc3\x83\xc2\xa9\xc4" +"\xa0""dieser\xc4\xa0""diesel\xc4\xa0""devoid\xc4\xa0""dermat\xc4\xa0""dermal\xc4" +"\xa0""deputy\xc4\xa0""depuis\xc4\xa0""depths\xc4\xa0""dentro\xc4\xa0""dental\xc4" +"\xa0""denies\xc4\xa0""denied\xc4\xa0""denial\xc4\xa0""dengue\xc4\xa0""demise\xc4" +"\xa0""deline\xc4\xa0""delays\xc4\xa0""deeply\xc4\xa0""deeper\xc4\xa0""deemed\xc4" +"\xa0""decree\xc4\xa0""deceit\xc4\xa0""decays\xc4\xa0""debris\xc4\xa0""debian\xc4" +"\xa0""deaths\xc4\xa0""deadly\xc4\xa0""dating\xc4\xa0""dashed\xc4\xa0""darker\xc4" +"\xa0""daring\xc4\xa0""dances\xc4\xa0""danced\xc4\xa0""damned\xc4\xa0""dagger\xc4" +"\xa0""cystic\xc4\xa0""cyclic\xc4\xa0""cycles\xc4\xa0""cutter\xc4\xa0""cutoff\xc4" +"\xa0""curves\xc4\xa0""curved\xc4\xa0""cursor\xc4\xa0""cursed\xc4\xa0""curled\xc4" +"\xa0""curing\xc4\xa0""curiam\xc4\xa0""culmin\xc4\xa0""cuando\xc4\xa0""crying\xc4" +"\xa0""crunch\xc4\xa0""crowds\xc4\xa0""crisis\xc4\xa0""crises\xc4\xa0""crimes\xc4" +"\xa0""creepy\xc4\xa0""creamy\xc4\xa0""crater\xc4\xa0""crafts\xc4\xa0""cracks\xc4" +"\xa0""coward\xc4\xa0""covert\xc4\xa0""covers\xc4\xa0""courts\xc4\xa0""county\xc4" +"\xa0""counts\xc4\xa0""couldn\xc4\xa0""cotton\xc4\xa0""costly\xc4\xa0""cosmic\xc4" +"\xa0""cortex\xc4\xa0""corpus\xc4\xa0""corpse\xc4\xa0""copper\xc4\xa0""coping\xc4" +"\xa0""copies\xc4\xa0""copied\xc4\xa0""cooler\xc4\xa0""cooled\xc4\xa0""cooker\xc4" +"\xa0""cooked\xc4\xa0""convoy\xc4\xa0""convex\xc4\xa0""contre\xc4\xa0""contag\xc4" +"\xa0""congru\xc4\xa0""condom\xc4\xa0""comply\xc4\xa0""coming\xc4\xa0""comics\xc4" +"\xa0""comedy\xc4\xa0""combat\xc4\xa0""colors\xc4\xa0""colony\xc4\xa0""collar\xc4" +"\xa0""coined\xc4\xa0""coffin\xc4\xa0""coffee\xc4\xa0""coding\xc4\xa0""cochle\xc4" +"\xa0""cobalt\xc4\xa0""coated\xc4\xa0""coarse\xc4\xa0""coales\xc4\xa0""clutch\xc4" +"\xa0""cloves\xc4\xa0""clouds\xc4\xa0""closet\xc4\xa0""closer\xc4\xa0""closed\xc4" +"\xa0""clones\xc4\xa0""cloned\xc4\xa0""clonal\xc4\xa0""clocks\xc4\xa0""climax\xc4" +"\xa0""cliffs\xc4\xa0""clicks\xc4\xa0""clever\xc4\xa0""clergy\xc4\xa0""claims\xc4" +"\xa0""ciudad\xc4\xa0""citrus\xc4\xa0""citing\xc4\xa0""cities\xc4\xa0""circus\xc4" +"\xa0""cipher\xc4\xa0""cinema\xc4\xa0""chunks\xc4\xa0""chrome\xc4\xa0""christ\xc4" +"\xa0""chosen\xc4\xa0""chorus\xc4\xa0""choked\xc4\xa0""chiral\xc4\xa0""chiefs\xc4" +"\xa0""chicks\xc4\xa0""cherry\xc4\xa0""cheese\xc4\xa0""cheeks\xc4\xa0""checks\xc4" +"\xa0""chased\xc4\xa0""charts\xc4\xa0""chaper\xc4\xa0""chapel\xc4\xa0""chairs\xc4" +"\xa0""chains\xc4\xa0""cereal\xc4\xa0""cephal\xc4\xa0""census\xc4\xa0""cement\xc4" +"\xa0""cellar\xc4\xa0""celery\xc4\xa0""ceased\xc4\xa0""cavity\xc4\xa0""cavern\xc4" +"\xa0""causes\xc4\xa0""caused\xc4\xa0""caught\xc4\xa0""cattle\xc4\xa0""castle\xc4" +"\xa0""casino\xc4\xa0""casing\xc4\xa0""carved\xc4\xa0""carpet\xc4\xa0""caring\xc4" +"\xa0""caries\xc4\xa0""carbox\xc4\xa0""capped\xc4\xa0""canvas\xc4\xa0""canopy\xc4" +"\xa0""cannot\xc4\xa0""cannon\xc4\xa0""canned\xc4\xa0""canine\xc4\xa0""canals\xc4" +"\xa0""calves\xc4\xa0""calmly\xc4\xa0""caller\xc4\xa0""called\xc4\xa0""cached\xc4" +"\xa0""cables\xc4\xa0""bypass\xc4\xa0""buying\xc4\xa0""buyers\xc4\xa0""bushes\xc4" +"\xa0""bursts\xc4\xa0""burner\xc4\xa0""burned\xc4\xa0""buried\xc4\xa0""burial\xc4" +"\xa0""builds\xc4\xa0""bronze\xc4\xa0""broken\xc4\xa0""brings\xc4\xa0""briefs\xc4" +"\xa0""bricks\xc4\xa0""breeze\xc4\xa0""breeds\xc4\xa0""breaks\xc4\xa0""brands\xc4" +"\xa0""brakes\xc4\xa0""brains\xc4\xa0""boxing\xc4\xa0""bovine\xc4\xa0""bounty\xc4" +"\xa0""bounds\xc4\xa0""bought\xc4\xa0""bottom\xc4\xa0""bosses\xc4\xa0""bosons\xc4" +"\xa0""boring\xc4\xa0""booked\xc4\xa0""bonded\xc4\xa0""boiler\xc4\xa0""boiled\xc4" +"\xa0""bodily\xc4\xa0""bodies\xc4\xa0""boasts\xc4\xa0""boards\xc4\xa0""bloody\xc4" +"\xa0""blonde\xc4\xa0""blocks\xc4\xa0""blends\xc4\xa0""blamed\xc4\xa0""blades\xc4" +"\xa0""blacks\xc4\xa0""bitmap\xc4\xa0""biting\xc4\xa0""births\xc4\xa0""biopsy\xc4" +"\xa0""binder\xc4\xa0""binary\xc4\xa0""billed\xc4\xa0""bigger\xc4\xa0""biases\xc4" +"\xa0""biased\xc4\xa0""beyond\xc4\xa0""better\xc4\xa0""benign\xc4\xa0""bellow\xc4" +"\xa0""belang\xc4\xa0""beings\xc4\xa0""behold\xc4\xa0""behind\xc4\xa0""behalf\xc4" +"\xa0""begins\xc4\xa0""begged\xc4\xa0""became\xc4\xa0""beauty\xc4\xa0""beaten\xc4" +"\xa0""beasts\xc4\xa0""beacon\xc4\xa0""basics\xc4\xa0""baryon\xc4\xa0""barred\xc4" +"\xa0""barley\xc4\xa0""barely\xc4\xa0""barbar\xc4\xa0""banner\xc4\xa0""banned\xc4" +"\xa0""banana\xc4\xa0""bamboo\xc4\xa0""ballet\xc4\xa0""baking\xc4\xa0""backup\xc4" +"\xa0""backed\xc4\xa0""babies\xc4\xa0""axonal\xc4\xa0""awhile\xc4\xa0""awards\xc4" +"\xa0""avoids\xc4\xa0""avatar\xc4\xa0""autumn\xc4\xa0""autres\xc4\xa0""autore\xc4" +"\xa0""autobi\xc4\xa0""autism\xc4\xa0""aureus\xc4\xa0""aument\xc4\xa0""atrial\xc4" +"\xa0""atomic\xc4\xa0""asylum\xc4\xa0""asthma\xc4\xa0""assets\xc4\xa0""assays\xc4" +"\xa0""assail\xc4\xa0""aspart\xc4\xa0""asleep\xc4\xa0""asking\xc4\xa0""ascent\xc4" +"\xa0""arthro\xc4\xa0""artery\xc4\xa0""arrows\xc4\xa0""arrays\xc4\xa0""around\xc4" +"\xa0""armour\xc4\xa0""armies\xc4\xa0""arises\xc4\xa0""arisen\xc4\xa0""argues\xc4" +"\xa0""argued\xc4\xa0""arches\xc4\xa0""apr\xc3\x83\xc2\xa8s\xc4\xa0""apples\xc4\xa0" +"""apical\xc4\xa0""apenas\xc4\xa0""apache\xc4\xa0""aortic\xc4\xa0""anyway\xc4\xa0" +"""anyone\xc4\xa0""antico\xc4\xa0""anthem\xc4\xa0""ankles\xc4\xa0""anhydr\xc4\xa0" +"""angles\xc4\xa0""angels\xc4\xa0""anemia\xc4\xa0""andere\xc4\xa0""anarch\xc4\xa0" +"""anaest\xc4\xa0""amused\xc4\xa0""amplic\xc4\xa0""amphib\xc4\xa0""amidst\xc4\xa0" +"""americ\xc4\xa0""amazed\xc4\xa0""always\xc4\xa0""alumni\xc4\xa0""alters\xc4\xa0" +"""almost\xc4\xa0""almond\xc4\xa0""alloys\xc4\xa0""allows\xc4\xa0""allies\xc4\xa0" +"""allied\xc4\xa0""aliens\xc4\xa0""alerts\xc4\xa0""albums\xc4\xa0""albeit\xc4\xa0" +"""alarms\xc4\xa0""airway\xc4\xa0""aiming\xc4\xa0""aiding\xc4\xa0""agrees\xc4\xa0" +"""agreed\xc4\xa0""agents\xc4\xa0""agenda\xc4\xa0""agency\xc4\xa0""ageing\xc4\xa0" +"""afraid\xc4\xa0""affine\xc4\xa0""aerial\xc4\xa0""advice\xc4\xa0""adults\xc4\xa0" +"""adopts\xc4\xa0""admits\xc4\xa0""adduct\xc4\xa0""adding\xc4\xa0""acuity\xc4\xa0" +"""actors\xc4\xa0""acting\xc4\xa0""across\xc4\xa0""acidic\xc4\xa0""acetyl\xc4\xa0" +"""acetic\xc4\xa0""accent\xc4\xa0""abuses\xc4\xa0""abused\xc4\xa0""absurd\xc4\xa0" +"""absent\xc4\xa0""abroad\xc4\xa0""aboard\xc4\xa0\x5c*\x5c*\x5c*\xc4\xa0[****,\xc4" +"\xa0Yorker\xc4\xa0Yellow\xc4\xa0Xavier\xc4\xa0Wright\xc4\xa0Wonder\xc4\xa0Wizard" +"\xc4\xa0Within\xc4\xa0Winter\xc4\xa0Wilson\xc4\xa0Willis\xc4\xa0Willie\xc4\xa0Wi" +"lder\xc4\xa0Whilst\xc4\xa0Wesley\xc4\xa0Werner\xc4\xa0Weight\xc4\xa0Weekly\xc4\xa0" +"Weaver\xc4\xa0Watson\xc4\xa0Waters\xc4\xa0Warsaw\xc4\xa0Warren\xc4\xa0Warner\xc4" +"\xa0Walton\xc4\xa0Walter\xc4\xa0Walker\xc4\xa0Wagner\xc4\xa0Volume\xc4\xa0Visual" +"\xc4\xa0Vision\xc4\xa0Violet\xc4\xa0Vienna\xc4\xa0Videos\xc4\xa0Vernon\xc4\xa0Ve" +"nice\xc4\xa0Vector\xc4\xa0Vander\xc4\xa0Values\xc4\xa0Valley\xc4\xa0VALUES\xc4\xa0" +"Unlike\xc4\xa0Unless\xc4\xa0United\xc4\xa0Unique\xc4\xa0Unable\xc4\xa0Uganda\xc4" +"\xa0Ubuntu\xc4\xa0UPDATE\xc4\xa0UNITED\xc4\xa0Twenty\xc4\xa0Twelve\xc4\xa0Turner" +"\xc4\xa0Turkey\xc4\xa0Tucker\xc4\xa0Trying\xc4\xa0Truman\xc4\xa0Trophy\xc4\xa0Tr" +"iton\xc4\xa0Triple\xc4\xa0Trials\xc4\xa0Trevor\xc4\xa0Treaty\xc4\xa0Travis\xc4\xa0" +"Travel\xc4\xa0Toyota\xc4\xa0Torres\xc4\xa0Titans\xc4\xa0Tissue\xc4\xa0Tigers\xc4" +"\xa0Threat\xc4\xa0Thread\xc4\xa0Thomas\xc4\xa0Thirty\xc4\xa0Things\xc4\xa0Thermo" +"\xc4\xa0Theory\xc4\xa0Thames\xc4\xa0Texans\xc4\xa0Terror\xc4\xa0Teresa\xc4\xa0Te" +"nsor\xc4\xa0Temple\xc4\xa0Tehran\xc4\xa0Taylor\xc4\xa0Target\xc4\xa0Taking\xc4\xa0" +"Taiwan\xc4\xa0Tables\xc4\xa0THEORY\xc4\xa0Syrian\xc4\xa0Symbol\xc4\xa0Sydney\xc4" +"\xa0Switch\xc4\xa0Sweden\xc4\xa0Suzuki\xc4\xa0Sutton\xc4\xa0Sussex\xc4\xa0Survey" +"\xc4\xa0Surely\xc4\xa0Supply\xc4\xa0Summit\xc4\xa0Summer\xc4\xa0Sultan\xc4\xa0St" +"uart\xc4\xa0Strong\xc4\xa0Strike\xc4\xa0Stress\xc4\xa0Street\xc4\xa0Stream\xc4\xa0" +"Stores\xc4\xa0Stokes\xc4\xa0Stefan\xc4\xa0Status\xc4\xa0Static\xc4\xa0States\xc4" +"\xa0Stalin\xc4\xa0Square\xc4\xa0Sprint\xc4\xa0Spread\xc4\xa0Sports\xc4\xa0Spirit" +"\xc4\xa0Spider\xc4\xa0Speech\xc4\xa0Soviet\xc4\xa0Sounds\xc4\xa0Sophie\xc4\xa0So" +"ccer\xc4\xa0Snyder\xc4\xa0Sloven\xc4\xa0Skills\xc4\xa0Single\xc4\xa0Singer\xc4\xa0" +"Simply\xc4\xa0Simple\xc4\xa0Silver\xc4\xa0Sierra\xc4\xa0Sidney\xc4\xa0Should\xc4" +"\xa0Shield\xc4\xa0Shelby\xc4\xa0Sheets\xc4\xa0Sharon\xc4\xa0Shared\xc4\xa0Shadow" +"\xc4\xa0Sexual\xc4\xa0Severe\xc4\xa0Server\xc4\xa0Series\xc4\xa0Serial\xc4\xa0Se" +"nior\xc4\xa0Senate\xc4\xa0Seeing\xc4\xa0Secure\xc4\xa0Sector\xc4\xa0Season\xc4\xa0" +"Search\xc4\xa0Scroll\xc4\xa0Screen\xc4\xa0Scotia\xc4\xa0Scheme\xc4\xa0Savage\xc4" +"\xa0Saturn\xc4\xa0Santos\xc4\xa0Sandra\xc4\xa0Samuel\xc4\xa0Saints\xc4\xa0Safety" +"\xc4\xa0Safari\xc4\xa0Saddam\xc4\xa0Sacred\xc4\xa0SYSTEM\xc4\xa0STRICT\xc4\xa0ST" +"ATES\xc4\xa0SELECT\xc4\xa0Ronald\xc4\xa0Romney\xc4\xa0Romans\xc4\xa0Roland\xc4\xa0" +"Rogers\xc4\xa0Rivers\xc4\xa0Rivera\xc4\xa0Rising\xc4\xa0Rights\xc4\xa0Rhodes\xc4" +"\xa0Retail\xc4\xa0Resort\xc4\xa0Rescue\xc4\xa0Repeat\xc4\xa0Remove\xc4\xa0Remote" +"\xc4\xa0Remark\xc4\xa0Relief\xc4\xa0Refuge\xc4\xa0Reform\xc4\xa0Reddit\xc4\xa0Re" +"call\xc4\xa0Reason\xc4\xa0Really\xc4\xa0Reagan\xc4\xa0Reader\xc4\xa0Ravens\xc4\xa0" +"Rating\xc4\xa0Rather\xc4\xa0Rapids\xc4\xa0Random\xc4\xa0Ramsey\xc4\xa0Rafael\xc4" +"\xa0Racing\xc4\xa0Rachel\xc4\xa0Rabbit\xc4\xa0REALLY\xc4\xa0Quebec\xc4\xa0Python" +"\xc4\xa0Purple\xc4\xa0Punjab\xc4\xa0Puerto\xc4\xa0PubMed\xc4\xa0Prosec\xc4\xa0Pr" +"ison\xc4\xa0Primer\xc4\xa0Priest\xc4\xa0Pretty\xc4\xa0Prayer\xc4\xa0Prague\xc4\xa0" +"Powers\xc4\xa0Powell\xc4\xa0Potter\xc4\xa0Posted\xc4\xa0Postal\xc4\xa0Porter\xc4" +"\xa0Portal\xc4\xa0Polish\xc4\xa0Policy\xc4\xa0Police\xc4\xa0Poland\xc4\xa0Points" +"\xc4\xa0Poetry\xc4\xa0Plugin\xc4\xa0Please\xc4\xa0Plasma\xc4\xa0Plants\xc4\xa0Pl" +"anet\xc4\xa0Planck\xc4\xa0Plains\xc4\xa0Places\xc4\xa0Pierre\xc4\xa0Pierce\xc4\xa0" +"Phosph\xc4\xa0Period\xc4\xa0Pepper\xc4\xa0People\xc4\xa0Pelosi\xc4\xa0PayPal\xc4" +"\xa0Patrol\xc4\xa0Patent\xc4\xa0Parker\xc4\xa0Parish\xc4\xa0Papers\xc4\xa0Panama" +"\xc4\xa0Palmer\xc4\xa0Palace\xc4\xa0Packet\xc4\xa0PUBLIC\xc4\xa0PEOPLE\xc4\xa0Ox" +"ford\xc4\xa0Output\xc4\xa0Ottawa\xc4\xa0Others\xc4\xa0Oregon\xc4\xa0Orders\xc4\xa0" +"Orange\xc4\xa0Oracle\xc4\xa0Online\xc4\xa0Olivia\xc4\xa0Oliver\xc4\xa0Offset\xc4" +"\xa0Notice\xc4\xa0Norway\xc4\xa0Norton\xc4\xa0Norris\xc4\xa0Norman\xc4\xa0Nobody" +"\xc4\xa0Nissan\xc4\xa0Nicole\xc4\xa0Nguyen\xc4\xa0Newton\xc4\xa0Newman\xc4\xa0Ne" +"wark\xc4\xa0Nevada\xc4\xa0Neural\xc4\xa0Nelson\xc4\xa0Nearly\xc4\xa0Nature\xc4\xa0" +"Native\xc4\xa0Nathan\xc4\xa0Naples\xc4\xa0Namely\xc4\xa0NOTICE\xc4\xa0Mutual\xc4" +"\xa0Museum\xc4\xa0Murray\xc4\xa0Murphy\xc4\xa0Murder\xc4\xa0Munich\xc4\xa0Mumbai" +"\xc4\xa0Moving\xc4\xa0Motors\xc4\xa0Motion\xc4\xa0Mother\xc4\xa0Moscow\xc4\xa0Mo" +"rton\xc4\xa0Mormon\xc4\xa0Morgan\xc4\xa0Monroe\xc4\xa0Monica\xc4\xa0Monday\xc4\xa0" +"Moment\xc4\xa0Module\xc4\xa0Modern\xc4\xa0Models\xc4\xa0Mobile\xc4\xa0Mirror\xc4" +"\xa0Mining\xc4\xa0Milton\xc4\xa0Miller\xc4\xa0Miguel\xc4\xa0Middle\xc4\xa0Mickey" +"\xc4\xa0Mexico\xc4\xa0Merkel\xc4\xa0Mental\xc4\xa0Memory\xc4\xa0Medium\xc4\xa0Me" +"dian\xc4\xa0McCain\xc4\xa0Matter\xc4\xa0Matrix\xc4\xa0Marvin\xc4\xa0Marvel\xc4\xa0" +"Martha\xc4\xa0Markov\xc4\xa0Marion\xc4\xa0Marina\xc4\xa0Marian\xc4\xa0Marcus\xc4" +"\xa0Marcel\xc4\xa0Manuel\xc4\xa0Manual\xc4\xa0Manila\xc4\xa0Making\xc4\xa0Maggie" +"\xc4\xa0Madrid\xc4\xa0Madame\xc4\xa0Luther\xc4\xa0Ludwig\xc4\xa0Louise\xc4\xa0Lo" +"ndon\xc4\xa0Logger\xc4\xa0Living\xc4\xa0Little\xc4\xa0Listen\xc4\xa0Lisbon\xc4\xa0" +"Liquid\xc4\xa0Linear\xc4\xa0Lights\xc4\xa0Levels\xc4\xa0Lesser\xc4\xa0Leslie\xc4" +"\xa0Length\xc4\xa0Lemmon\xc4\xa0Legion\xc4\xa0Legend\xc4\xa0Legacy\xc4\xa0League" +"\xc4\xa0Layout\xc4\xa0Lawson\xc4\xa0Launch\xc4\xa0Latino\xc4\xa0Lastly\xc4\xa0La" +"ndau\xc4\xa0Lakers\xc4\xa0Ladies\xc4\xa0Labour\xc4\xa0LINEAR\xc4\xa0LIABLE\xc4\xa0" +"LETTER\xc4\xa0Kuwait\xc4\xa0Kosovo\xc4\xa0Korean\xc4\xa0Kindle\xc4\xa0Kimber\xc4" +"\xa0Kerala\xc4\xa0Kepler\xc4\xa0Kelley\xc4\xa0Keller\xc4\xa0Kazakh\xc4\xa0Kaplan" +"\xc4\xa0Kansas\xc4\xa0Kaiser\xc4\xa0Justin\xc4\xa0Junior\xc4\xa0Julius\xc4\xa0Ju" +"liet\xc4\xa0Julian\xc4\xa0Judith\xc4\xa0Judges\xc4\xa0Joshua\xc4\xa0Joseph\xc4\xa0" +"Jordan\xc4\xa0Johnny\xc4\xa0Jewish\xc4\xa0Jersey\xc4\xa0Jerome\xc4\xa0Jeremy\xc4" +"\xa0Jensen\xc4\xa0Jacobs\xc4\xa0Jackie\xc4\xa0Issues\xc4\xa0Isaiah\xc4\xa0Isabel" +"\xc4\xa0Irving\xc4\xa0Intent\xc4\xa0Inside\xc4\xa0Insert\xc4\xa0Injury\xc4\xa0In" +"fect\xc4\xa0Indies\xc4\xa0Indeed\xc4\xa0Income\xc4\xa0Impact\xc4\xa0Images\xc4\xa0" +"INSERT\xc4\xa0Hybrid\xc4\xa0Hunter\xc4\xa0Humans\xc4\xa0Hughes\xc4\xa0Hudson\xc4" +"\xa0Hubble\xc4\xa0Howard\xc4\xa0Hoover\xc4\xa0Holmes\xc4\xa0Hollow\xc4\xa0Holder" +"\xc4\xa0Hockey\xc4\xa0Hitler\xc4\xa0Hilton\xc4\xa0Higher\xc4\xa0Hidden\xc4\xa0He" +"roes\xc4\xa0Herman\xc4\xa0Herald\xc4\xa0Hebrew\xc4\xa0Heaven\xc4\xa0Header\xc4\xa0" +"Having\xc4\xa0Hassan\xc4\xa0Harvey\xc4\xa0Harper\xc4\xa0Harold\xc4\xa0Harbor\xc4" +"\xa0Hansen\xc4\xa0Hannah\xc4\xa0Hammer\xc4\xa0Guinea\xc4\xa0Guards\xc4\xa0Growth" +"\xc4\xa0Groups\xc4\xa0Ground\xc4\xa0Greens\xc4\xa0Greene\xc4\xa0Greeks\xc4\xa0Gr" +"eece\xc4\xa0Graves\xc4\xa0Grande\xc4\xa0Graham\xc4\xa0Gothic\xc4\xa0Gospel\xc4\xa0" +"Gordon\xc4\xa0Google\xc4\xa0Golden\xc4\xa0Gloria\xc4\xa0Global\xc4\xa0GitHub\xc4" +"\xa0Gideon\xc4\xa0Gibson\xc4\xa0Giants\xc4\xa0Gerald\xc4\xa0George\xc4\xa0Genome" +"\xc4\xa0Geneva\xc4\xa0Gender\xc4\xa0Garcia\xc4\xa0Gandhi\xc4\xa0Gaming\xc4\xa0Ga" +"lois\xc4\xa0Galile\xc4\xa0Galaxy\xc4\xa0GOOGLE\xc4\xa0""Future\xc4\xa0""Fusion\xc4" +"\xa0""Fuller\xc4\xa0""Friday\xc4\xa0""French\xc4\xa0""Fraser\xc4\xa0""Franco\xc4" +"\xa0""Fowler\xc4\xa0""Fourth\xc4\xa0""Foster\xc4\xa0""Former\xc4\xa0""Forest\xc4" +"\xa0""Forces\xc4\xa0""Forbes\xc4\xa0""Flying\xc4\xa0""Flores\xc4\xa0""Flight\xc4" +"\xa0""Fisher\xc4\xa0""Finals\xc4\xa0""Filter\xc4\xa0""Fields\xc4\xa0""Female\xc4" +"\xa0""Father\xc4\xa0""Family\xc4\xa0""Falcon\xc4\xa0""Failed\xc4\xa0""Export\xc4" +"\xa0""Expert\xc4\xa0""Expect\xc4\xa0""Events\xc4\xa0""Europa\xc4\xa0""Eugene\xc4" +"\xa0""Ethics\xc4\xa0""Esther\xc4\xa0""Estate\xc4\xa0""Establ\xc4\xa0""Essays\xc4" +"\xa0""Ernest\xc4\xa0""Epidem\xc4\xa0""Entity\xc4\xa0""Energy\xc4\xa0""Enable\xc4" +"\xa0""Empire\xc4\xa0""Elaine\xc4\xa0""Either\xc4\xa0""Eighth\xc4\xa0""Edmund\xc4" +"\xa0""Editor\xc4\xa0""Edited\xc4\xa0""Edison\xc4\xa0""Eating\xc4\xa0""Eagles\xc4" +"\xa0""EXPECT\xc4\xa0""During\xc4\xa0""Durham\xc4\xa0""Duncan\xc4\xa0""Dublin\xc4" +"\xa0""Driver\xc4\xa0""Dreams\xc4\xa0""Double\xc4\xa0""Donald\xc4\xa0""Domain\xc4" +"\xa0""Dollar\xc4\xa0""Docket\xc4\xa0""Docker\xc4\xa0""Django\xc4\xa0""Divine\xc4" +"\xa0""Disney\xc4\xa0""Dillon\xc4\xa0""Dialog\xc4\xa0""Design\xc4\xa0""Desert\xc4" +"\xa0""Deputy\xc4\xa0""Denver\xc4\xa0""Dental\xc4\xa0""Denote\xc4\xa0""Dennis\xc4" +"\xa0""Delete\xc4\xa0""Degree\xc4\xa0""Define\xc4\xa0""Debian\xc4\xa0""Dayton\xc4" +"\xa0""Dawson\xc4\xa0""Davies\xc4\xa0""Darwin\xc4\xa0""Danish\xc4\xa0""Danger\xc4" +"\xa0""Damage\xc4\xa0""Dalton\xc4\xa0""Dallas\xc4\xa0""Dakota\xc4\xa0""DIRECT\xc4" +"\xa0""Cyprus\xc4\xa0""Curtis\xc4\xa0""Cruise\xc4\xa0""Crisis\xc4\xa0""Credit\xc4" +"\xa0""Courts\xc4\xa0""Course\xc4\xa0""County\xc4\xa0""Counts\xc4\xa0""Cotton\xc4" +"\xa0""Corner\xc4\xa0""Corbyn\xc4\xa0""Cooper\xc4\xa0""Conway\xc4\xa0""Conrad\xc4" +"\xa0""Connor\xc4\xa0""Connie\xc4\xa0""Commod\xc4\xa0""Coming\xc4\xa0""Comics\xc4" +"\xa0""Comedy\xc4\xa0""Combat\xc4\xa0""Column\xc4\xa0""Coffee\xc4\xa0""Client\xc4" +"\xa0""Clause\xc4\xa0""Claude\xc4\xa0""Clarke\xc4\xa0""Claire\xc4\xa0""Claims\xc4" +"\xa0""Cities\xc4\xa0""Circle\xc4\xa0""Cinema\xc4\xa0""Chrome\xc4\xa0""Choose\xc4" +"\xa0""Choice\xc4\xa0""Chiefs\xc4\xa0""Cherry\xc4\xa0""Cheese\xc4\xa0""Charge\xc4" +"\xa0""Chapel\xc4\xa0""Centre\xc4\xa0""Census\xc4\xa0""Celtic\xc4\xa0""Celebr\xc4" +"\xa0""Cauchy\xc4\xa0""Casual\xc4\xa0""Castro\xc4\xa0""Castle\xc4\xa0""Cassie\xc4" +"\xa0""Casino\xc4\xa0""Carter\xc4\xa0""Carson\xc4\xa0""Carrie\xc4\xa0""Carlos\xc4" +"\xa0""Career\xc4\xa0""Carbon\xc4\xa0""Canyon\xc4\xa0""Cannot\xc4\xa0""Cannon\xc4" +"\xa0""Cancer\xc4\xa0""Canada\xc4\xa0""Campus\xc4\xa0""Camera\xc4\xa0""Calvin\xc4" +"\xa0""Called\xc4\xa0""Calder\xc4\xa0""Caesar\xc4\xa0""CURIAM\xc4\xa0""CRISPR\xc4" +"\xa0""COUNTY\xc4\xa0""CONFIG\xc4\xa0""Button\xc4\xa0""Butter\xc4\xa0""Butler\xc4" +"\xa0""Burton\xc4\xa0""Burger\xc4\xa0""Bureau\xc4\xa0""Bundle\xc4\xa0""Bundes\xc4" +"\xa0""Buffer\xc4\xa0""Buenos\xc4\xa0""Budget\xc4\xa0""Buddha\xc4\xa0""Bryant\xc4" +"\xa0""Browns\xc4\xa0""Brooks\xc4\xa0""Bronze\xc4\xa0""Bridge\xc4\xa0""Brexit\xc4" +"\xa0""Breast\xc4\xa0""Brasil\xc4\xa0""Branch\xc4\xa0""Bottom\xc4\xa0""Boston\xc4" +"\xa0""Bosnia\xc4\xa0""Border\xc4\xa0""Booker\xc4\xa0""Bolton\xc4\xa0""Boeing\xc4" +"\xa0""Bitmap\xc4\xa0""Bishop\xc4\xa0""Biomed\xc4\xa0""Binary\xc4\xa0""Beyond\xc4" +"\xa0""Better\xc4\xa0""Bernie\xc4\xa0""Berlin\xc4\xa0""Berger\xc4\xa0""Benson\xc4" +"\xa0""Bengal\xc4\xa0""Behind\xc4\xa0""Before\xc4\xa0""Becker\xc4\xa0""Beauty\xc4" +"\xa0""Baxter\xc4\xa0""Battle\xc4\xa0""Batman\xc4\xa0""Barton\xc4\xa0""Barnes\xc4" +"\xa0""Barker\xc4\xa0""Barber\xc4\xa0""Barack\xc4\xa0""Banach\xc4\xa0""Baltic\xc4" +"\xa0""Bailey\xc4\xa0""Azerba\xc4\xa0""Awards\xc4\xa0""Avenue\xc4\xa0""Austin\xc4" +"\xa0""Aurora\xc4\xa0""Auburn\xc4\xa0""Attack\xc4\xa0""Atomic\xc4\xa0""Athens\xc4" +"\xa0""Assume\xc4\xa0""Assert\xc4\xa0""Ashley\xc4\xa0""Arthur\xc4\xa0""Around\xc4" +"\xa0""Arnold\xc4\xa0""Arctic\xc4\xa0""Archer\xc4\xa0""Archae\xc4\xa0""Arabic\xc4" +"\xa0""Apollo\xc4\xa0""Apache\xc4\xa0""Anyway\xc4\xa0""Anyone\xc4\xa0""Answer\xc4" +"\xa0""Annual\xc4\xa0""Angels\xc4\xa0""Angela\xc4\xa0""Andr\xc3\x83\xc2\xa9\xc4\xa0" +"""Analog\xc4\xa0""Amazon\xc4\xa0""Amanda\xc4\xa0""Always\xc4\xa0""Almost\xc4\xa0" +"""Allies\xc4\xa0""Allied\xc4\xa0""Alfred\xc4\xa0""Albany\xc4\xa0""Alaska\xc4\xa0" +"""Agents\xc4\xa0""Agency\xc4\xa0""Adrian\xc4\xa0""Adjust\xc4\xa0""Adding\xc4\xa0" +"""Active\xc4\xa0""Acting\xc4\xa0""Across\xc4\xa0""Access\xc4\xa0""Accept\xc4\xa0" +"""Abrams\xc4\xa0""Abbott\xc4\xa0""AUTHOR\xc4\xa0""ASSERT\xc4\xa0""ACTION\xc4\xa0" +"../../\xc4\x8d\xc4\x8a\xc4\x89\xc4\x89\xc4\x89\xc4\x89\xc4\x89\xc4\x8a\xc4\x89\xc4" +"\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\xa0\xc4\x8a\xc4\x89\xc4\x89\xc4\x89\xc4\xa0\xc4" +"\xa0\xc4\xa0zbollahwidgetswidehatwebpackwasysymvalueOfutivelyurancesupsilonuploa" +"dsupgreekuparrowunnableumetricumblingulsionsufflingtooltipterburysetTextservlets" +"chemasructoseroviralropolisromycinroidismrogenicringtonricanesrenchedrectomyprin" +"tlnpmatrixplacianpatrickoversetourcingoughtonostreamostatinositiesosidaseosecond" +"opropylopoulosoplastyoplasmaophosphophobiaophiliaophagusopensslonectinomethylome" +"raseolphinsolithicodonticocompatococcalnoreplymozillamissivemathscrmathcalmathbb" +"mmanshiplitaxellesssimlanderskubuntukeepersjacksonittingsismaticisexualiscopalis" +"EmptyipotentiphaticinklinginitiesindexOfimientoimetricilinearigraphyidenoteidenc" +"esidazoleicarbonhtakingheartedgroupIdgetTextgetNameforEachfectureestoneservillee" +"redithensiblydoibasedirnamecommonscholinecatenincastersbreakerbmatrixa\xc3\x83\xc2" +"\xa7\xc3\x83\xc2\xb5""esaughlinatoriumatenessatationanglingamssymbamsmathamiento" +"agulantacionesWrapperWARNINGVisitorVisibleVariantVERSIONUpsilonTypeDefTriggerTra" +"ckerTimeoutTextureTextBoxTEXTURESuggestStringsSprintfServletSegmentSecondsSahara" +"nSUPPORTSUCCESSSTITUTESESSIONRiddellRewriteRefreshRESULTSREQUESTRELEASEPreviewPh" +"ysRevPayloadPaddingORANDUMNotableNotNullMutableMetricsMatcherMappingManagedMESSA" +"GELiteralIPPROTOINVALIDINSTALLINCLUDEIBILITYHeadersExecuteExactlyEntriesEncoderE" +"nabledDrawingDonnellDestroyDerivedDecoderDecimalDecidedDOCTYPEDECLAREConfirmColu" +"mnsCheckedChangedCaptureCURRENTCONTROLCHANNELAtIndexAlrightAldrichAdapterATIONAL" +"ADDRESS.\xc3\xa2\xc4\xa2\xc4\xbb\xc3\xa2\xc4\xa2\xc4\xbf\xc4\xa0\xc3\x83\xc2\xbc" +"""ber\xc4\xa0\xc3\x83\xc2\xb6ver\xc4\xa0\xc3\x83\xc2\xaatre\xc4\xa0\xc3\x83\xc2\xa9" +"t\xc3\x83\xc2\xa9\xc4\xa0zones\xc4\xa0zeros\xc4\xa0yeast\xc4\xa0years\xc4\xa0yar" +"ds\xc4\xa0yacht\xc4\xa0xmlns\xc4\xa0wurde\xc4\xa0wrote\xc4\xa0wreck\xc4\xa0wrath" +"\xc4\xa0wraps\xc4\xa0woven\xc4\xa0worst\xc4\xa0worms\xc4\xa0wordt\xc4\xa0words\xc4" +"\xa0woods\xc4\xa0women\xc4\xa0woman\xc4\xa0wives\xc4\xa0witch\xc4\xa0wires\xc4\xa0" +"wired\xc4\xa0wiped\xc4\xa0wings\xc4\xa0wines\xc4\xa0winds\xc4\xa0wield\xc4\xa0wi" +"dow\xc4\xa0wider\xc4\xa0whose\xc4\xa0whirl\xc4\xa0while\xc4\xa0wheat\xc4\xa0were" +"n\xc4\xa0wells\xc4\xa0weird\xc4\xa0weeks\xc4\xa0weeds\xc4\xa0wedge\xc4\xa0weary\xc4" +"\xa0wears\xc4\xa0waves\xc4\xa0waved\xc4\xa0warns\xc4\xa0wards\xc4\xa0wants\xc4\xa0" +"wanna\xc4\xa0walls\xc4\xa0walks\xc4\xa0waits\xc4\xa0waist\xc4\xa0wagon\xc4\xa0wa" +"ges\xc4\xa0v\xc3\x83\xc2\xa6re\xc4\xa0voxel\xc4\xa0vowed\xc4\xa0votre\xc4\xa0vot" +"es\xc4\xa0voted\xc4\xa0vodka\xc4\xa0voc\xc3\x83\xc2\xaa\xc4\xa0vivid\xc4\xa0vitr" +"o\xc4\xa0vista\xc4\xa0visas\xc4\xa0viral\xc4\xa0vinyl\xc4\xa0ville\xc4\xa0vigil\xc4" +"\xa0views\xc4\xa0verge\xc4\xa0verbs\xc4\xa0venom\xc4\xa0vener\xc4\xa0veins\xc4\xa0" +"vegan\xc4\xa0vault\xc4\xa0vapor\xc4\xa0valor\xc4\xa0using\xc4\xa0users\xc4\xa0us" +"age\xc4\xa0urine\xc4\xa0urges\xc4\xa0urged\xc4\xa0ureth\xc4\xa0urban\xc4\xa0upse" +"t\xc4\xa0upper\xc4\xa0until\xc4\xa0unter\xc4\xa0unity\xc4\xa0units\xc4\xa0undue\xc4" +"\xa0unden\xc4\xa0uncor\xc4\xa0unatt\xc4\xa0types\xc4\xa0tying\xc4\xa0twins\xc4\xa0" +"twice\xc4\xa0tweak\xc4\xa0tutti\xc4\xa0turns\xc4\xa0turbo\xc4\xa0tuple\xc4\xa0tu" +"nes\xc4\xa0tuned\xc4\xa0tubes\xc4\xa0tr\xc3\x83\xc2\xa8s\xc4\xa0trypt\xc4\xa0tru" +"nk\xc4\xa0trump\xc4\xa0truly\xc4\xa0trout\xc4\xa0troll\xc4\xa0trois\xc4\xa0trips" +"\xc4\xa0tries\xc4\xa0trier\xc4\xa0tried\xc4\xa0trich\xc4\xa0tresp\xc4\xa0trees\xc4" +"\xa0tread\xc4\xa0trash\xc4\xa0traps\xc4\xa0tours\xc4\xa0torus\xc4\xa0torso\xc4\xa0" +"torch\xc4\xa0tooth\xc4\xa0tools\xc4\xa0tones\xc4\xa0toner\xc4\xa0todos\xc4\xa0to" +"day\xc4\xa0todas\xc4\xa0tires\xc4\xa0tired\xc4\xa0timer\xc4\xa0timed\xc4\xa0tile" +"s\xc4\xa0tiger\xc4\xa0tiene\xc4\xa0tidal\xc4\xa0ticks\xc4\xa0threw\xc4\xa0three\xc4" +"\xa0those\xc4\xa0third\xc4\xa0thief\xc4\xa0theta\xc4\xa0these\xc4\xa0theft\xc4\xa0" +"thats\xc4\xa0texts\xc4\xa0tetra\xc4\xa0tests\xc4\xa0terms\xc4\xa0tents\xc4\xa0te" +"nth\xc4\xa0tense\xc4\xa0tener\xc4\xa0tends\xc4\xa0temps\xc4\xa0tells\xc4\xa0teet" +"h\xc4\xa0teens\xc4\xa0tears\xc4\xa0teams\xc4\xa0taxes\xc4\xa0taxed\xc4\xa0tasty\xc4" +"\xa0tasks\xc4\xa0tapes\xc4\xa0taper\xc4\xa0tanto\xc4\xa0tanks\xc4\xa0tally\xc4\xa0" +"talks\xc4\xa0tales\xc4\xa0takes\xc4\xa0taken\xc4\xa0tails\xc4\xa0tachy\xc4\xa0s\xc3" +"\x83\xc2\xb3lo\xc4\xa0syrup\xc4\xa0swung\xc4\xa0sworn\xc4\xa0swore\xc4\xa0swine\xc4" +"\xa0swept\xc4\xa0swear\xc4\xa0swarm\xc4\xa0swamp\xc4\xa0supra\xc4\xa0sunny\xc4\xa0" +"sulph\xc4\xa0suits\xc4\xa0sucks\xc4\xa0subdu\xc4\xa0stunt\xc4\xa0stump\xc4\xa0st" +"uck\xc4\xa0stray\xc4\xa0straw\xc4\xa0stove\xc4\xa0stout\xc4\xa0stops\xc4\xa0stoo" +"l\xc4\xa0stood\xc4\xa0stint\xc4\xa0sting\xc4\xa0still\xc4\xa0stern\xc4\xa0steps\xc4" +"\xa0stent\xc4\xa0stems\xc4\xa0steep\xc4\xa0steel\xc4\xa0steam\xc4\xa0steak\xc4\xa0" +"stays\xc4\xa0stats\xc4\xa0stars\xc4\xa0stark\xc4\xa0stalk\xc4\xa0stale\xc4\xa0st" +"agn\xc4\xa0staff\xc4\xa0squir\xc4\xa0squat\xc4\xa0spraw\xc4\xa0spots\xc4\xa0spoo" +"n\xc4\xa0spite\xc4\xa0spins\xc4\xa0spies\xc4\xa0spicy\xc4\xa0spent\xc4\xa0specs\xc4" +"\xa0speck\xc4\xa0spear\xc4\xa0spawn\xc4\xa0spans\xc4\xa0souls\xc4\xa0sorts\xc4\xa0" +"sorry\xc4\xa0songs\xc4\xa0solar\xc4\xa0soils\xc4\xa0socks\xc4\xa0sobre\xc4\xa0so" +"ber\xc4\xa0sniff\xc4\xa0sneak\xc4\xa0smear\xc4\xa0slows\xc4\xa0slots\xc4\xa0slip" +"s\xc4\xa0slick\xc4\xa0slept\xc4\xa0sleek\xc4\xa0slash\xc4\xa0slain\xc4\xa0slack\xc4" +"\xa0skins\xc4\xa0skies\xc4\xa0skate\xc4\xa0sizes\xc4\xa0sized\xc4\xa0sixty\xc4\xa0" +"sixth\xc4\xa0sites\xc4\xa0sinus\xc4\xa0sinks\xc4\xa0sings\xc4\xa0silly\xc4\xa0si" +"gns\xc4\xa0sigma\xc4\xa0siege\xc4\xa0sides\xc4\xa0siRNA\xc4\xa0shrew\xc4\xa0show" +"s\xc4\xa0shown\xc4\xa0shots\xc4\xa0shops\xc4\xa0shook\xc4\xa0shone\xc4\xa0shoes\xc4" +"\xa0ships\xc4\xa0shiny\xc4\xa0shine\xc4\xa0shelf\xc4\xa0sheer\xc4\xa0sheep\xc4\xa0" +"shear\xc4\xa0sheaf\xc4\xa0shame\xc4\xa0shaft\xc4\xa0shack\xc4\xa0shRNA\xc4\xa0se" +"xes\xc4\xa0sewer\xc4\xa0setup\xc4\xa0ser\xc3\x83\xc2\xa1\xc4\xa0servo\xc4\xa0ser" +"um\xc4\xa0serop\xc4\xa0sends\xc4\xa0semis\xc4\xa0semif\xc4\xa0semen\xc4\xa0sells" +"\xc4\xa0seems\xc4\xa0seeks\xc4\xa0seeds\xc4\xa0sedan\xc4\xa0seats\xc4\xa0seals\xc4" +"\xa0scrub\xc4\xa0scrib\xc4\xa0scout\xc4\xa0scorn\xc4\xa0scope\xc4\xa0scoop\xc4\xa0" +"scint\xc4\xa0scept\xc4\xa0scent\xc4\xa0scary\xc4\xa0scars\xc4\xa0scarf\xc4\xa0sc" +"ant\xc4\xa0scans\xc4\xa0scalp\xc4\xa0scall\xc4\xa0saves\xc4\xa0saved\xc4\xa0sand" +"y\xc4\xa0salts\xc4\xa0salon\xc4\xa0sales\xc4\xa0salad\xc4\xa0sails\xc4\xa0safer\xc4" +"\xa0sadly\xc4\xa0sacks\xc4\xa0sabot\xc4\xa0saber\xc4\xa0rural\xc4\xa0rules\xc4\xa0" +"ruled\xc4\xa0ruins\xc4\xa0rugby\xc4\xa0rotor\xc4\xa0roses\xc4\xa0ropes\xc4\xa0ro" +"ots\xc4\xa0rooms\xc4\xa0rooft\xc4\xa0roofs\xc4\xa0rolls\xc4\xa0roles\xc4\xa0rogu" +"e\xc4\xa0rocky\xc4\xa0rocks\xc4\xa0robes\xc4\xa0roads\xc4\xa0risky\xc4\xa0risks\xc4" +"\xa0rises\xc4\xa0risen\xc4\xa0riots\xc4\xa0rings\xc4\xa0ridge\xc4\xa0rides\xc4\xa0" +"reuse\xc4\xa0retry\xc4\xa0rests\xc4\xa0reset\xc4\xa0reply\xc4\xa0repay\xc4\xa0re" +"nts\xc4\xa0renal\xc4\xa0relic\xc4\xa0relay\xc4\xa0reign\xc4\xa0regex\xc4\xa0redo" +"x\xc4\xa0rebut\xc4\xa0realm\xc4\xa0ready\xc4\xa0reads\xc4\xa0razor\xc4\xa0rates\xc4" +"\xa0rated\xc4\xa0raped\xc4\xa0ranks\xc4\xa0ranch\xc4\xa0rally\xc4\xa0rainy\xc4\xa0" +"rains\xc4\xa0rails\xc4\xa0raids\xc4\xa0radii\xc4\xa0radar\xc4\xa0races\xc4\xa0ra" +"ced\xc4\xa0quite\xc4\xa0quint\xc4\xa0quilt\xc4\xa0quies\xc4\xa0quien\xc4\xa0queu" +"e\xc4\xa0query\xc4\xa0queer\xc4\xa0queen\xc4\xa0quasi\xc4\xa0pussy\xc4\xa0purse\xc4" +"\xa0purge\xc4\xa0puppy\xc4\xa0punto\xc4\xa0pumps\xc4\xa0pulls\xc4\xa0puede\xc4\xa0" +"pr\xc3\x83\xc2\xa9s\xc4\xa0proxy\xc4\xa0protr\xc4\xa0props\xc4\xa0prong\xc4\xa0p" +"rone\xc4\xa0prism\xc4\xa0pride\xc4\xa0prick\xc4\xa0pouch\xc4\xa0poses\xc4\xa0pos" +"ed\xc4\xa0ports\xc4\xa0pores\xc4\xa0porch\xc4\xa0popup\xc4\xa0pools\xc4\xa0polys" +"\xc4\xa0polls\xc4\xa0poles\xc4\xa0poker\xc4\xa0poets\xc4\xa0poems\xc4\xa0poder\xc4" +"\xa0plugs\xc4\xa0plots\xc4\xa0plays\xc4\xa0plans\xc4\xa0pizza\xc4\xa0pipes\xc4\xa0" +"pinch\xc4\xa0pills\xc4\xa0pilgr\xc4\xa0piles\xc4\xa0piled\xc4\xa0picks\xc4\xa0pi" +"ano\xc4\xa0phage\xc4\xa0petty\xc4\xa0perin\xc4\xa0peril\xc4\xa0peric\xc4\xa0penn" +"y\xc4\xa0penis\xc4\xa0peers\xc4\xa0pedig\xc4\xa0pedal\xc4\xa0peaks\xc4\xa0paved\xc4" +"\xa0patio\xc4\xa0paths\xc4\xa0paste\xc4\xa0pasta\xc4\xa0party\xc4\xa0parts\xc4\xa0" +"parks\xc4\xa0parap\xc4\xa0pants\xc4\xa0panor\xc4\xa0panic\xc4\xa0pamph\xc4\xa0pa" +"lms\xc4\xa0pairs\xc4\xa0pains\xc4\xa0pages\xc4\xa0pagan\xc4\xa0packs\xc4\xa0ozon" +"e\xc4\xa0owned\xc4\xa0owing\xc4\xa0ovary\xc4\xa0outwe\xc4\xa0outer\xc4\xa0ought\xc4" +"\xa0otros\xc4\xa0opted\xc4\xa0opens\xc4\xa0onset\xc4\xa0onder\xc4\xa0omega\xc4\xa0" +"olive\xc4\xa0older\xc4\xa0ogs\xc3\x83\xc2\xa5\xc4\xa0often\xc4\xa0oddly\xc4\xa0o" +"bliv\xc4\xa0objet\xc4\xa0obese\xc4\xa0nylon\xc4\xa0numpy\xc4\xa0nuest\xc4\xa0not" +"re\xc4\xa0notes\xc4\xa0noted\xc4\xa0notch\xc4\xa0norms\xc4\xa0nonex\xc4\xa0noisy" +"\xc4\xa0nodes\xc4\xa0nodal\xc4\xa0noble\xc4\xa0ninth\xc4\xa0niece\xc4\xa0nicht\xc4" +"\xa0niche\xc4\xa0nicer\xc4\xa0newly\xc4\xa0newer\xc4\xa0nests\xc4\xa0nemat\xc4\xa0" +"nella\xc4\xa0needs\xc4\xa0naval\xc4\xa0nasty\xc4\xa0nasal\xc4\xa0nanow\xc4\xa0na" +"not\xc4\xa0nanoc\xc4\xa0named\xc4\xa0naked\xc4\xa0naive\xc4\xa0nails\xc4\xa0m\xc3" +"\x83\xc2\xaame\xc4\xa0my\xc3\x83\xc2\xb6s\xc4\xa0myths\xc4\xa0mysql\xc4\xa0mundo" +"\xc4\xa0muito\xc4\xa0muddy\xc4\xa0mucus\xc4\xa0mucho\xc4\xa0mtDNA\xc4\xa0msgid\xc4" +"\xa0moves\xc4\xa0moved\xc4\xa0mouse\xc4\xa0mound\xc4\xa0mould\xc4\xa0motto\xc4\xa0" +"motel\xc4\xa0monks\xc4\xa0money\xc4\xa0monde\xc4\xa0molar\xc4\xa0moins\xc4\xa0mo" +"dem\xc4\xa0mixes\xc4\xa0mixer\xc4\xa0mixed\xc4\xa0mismo\xc4\xa0minus\xc4\xa0mine" +"s\xc4\xa0mills\xc4\xa0midst\xc4\xa0metam\xc4\xa0messy\xc4\xa0meson\xc4\xa0mesmo\xc4" +"\xa0merry\xc4\xa0mercy\xc4\xa0menus\xc4\xa0menos\xc4\xa0mejor\xc4\xa0meets\xc4\xa0" +"meats\xc4\xa0means\xc4\xa0meals\xc4\xa0mayor\xc4\xa0maybe\xc4\xa0mates\xc4\xa0ma" +"sks\xc4\xa0marsh\xc4\xa0marks\xc4\xa0maple\xc4\xa0manic\xc4\xa0manga\xc4\xa0male" +"s\xc4\xa0makes\xc4\xa0maize\xc4\xa0mRNAs\xc4\xa0lysis\xc4\xa0lysed\xc4\xa0lying\xc4" +"\xa0lupus\xc4\xa0lungs\xc4\xa0lunch\xc4\xa0lunar\xc4\xa0lumen\xc4\xa0lugar\xc4\xa0" +"lucky\xc4\xa0loves\xc4\xa0loved\xc4\xa0loses\xc4\xa0loser\xc4\xa0lords\xc4\xa0lo" +"ops\xc4\xa0looks\xc4\xa0logos\xc4\xa0login\xc4\xa0locus\xc4\xa0locom\xc4\xa0lock" +"s\xc4\xa0lobes\xc4\xa0loans\xc4\xa0loads\xc4\xa0liver\xc4\xa0lived\xc4\xa0lists\xc4" +"\xa0lions\xc4\xa0linux\xc4\xa0links\xc4\xa0lines\xc4\xa0liner\xc4\xa0linen\xc4\xa0" +"lined\xc4\xa0limbs\xc4\xa0likes\xc4\xa0liked\xc4\xa0lifts\xc4\xa0leurs\xc4\xa0le" +"mon\xc4\xa0lemma\xc4\xa0least\xc4\xa0leaks\xc4\xa0leads\xc4\xa0latex\xc4\xa0latc" +"h\xc4\xa0lasts\xc4\xa0lapse\xc4\xa0lanes\xc4\xa0lamps\xc4\xa0lamin\xc4\xa0lakes\xc4" +"\xa0lacks\xc4\xa0knows\xc4\xa0known\xc4\xa0knots\xc4\xa0knife\xc4\xa0knelt\xc4\xa0" +"knees\xc4\xa0kings\xc4\xa0kinds\xc4\xa0kinda\xc4\xa0kills\xc4\xa0kicks\xc4\xa0ke" +"ine\xc4\xa0keeps\xc4\xa0jumps\xc4\xa0jokes\xc4\xa0joins\xc4\xa0jihad\xc4\xa0jell" +"y\xc4\xa0jeans\xc4\xa0javax\xc4\xa0items\xc4\xa0irony\xc4\xa0ionic\xc4\xa0inset\xc4" +"\xa0inode\xc4\xa0inner\xc4\xa0inlet\xc4\xa0ingen\xc4\xa0indie\xc4\xa0inbox\xc4\xa0" +"igual\xc4\xa0idiot\xc4\xa0ideas\xc4\xa0icons\xc4\xa0hurts\xc4\xa0hurry\xc4\xa0hu" +"mor\xc4\xa0https\xc4\xa0hours\xc4\xa0hosts\xc4\xa0horns\xc4\xa0hopes\xc4\xa0hope" +"d\xc4\xa0hooks\xc4\xa0honey\xc4\xa0holes\xc4\xa0holds\xc4\xa0hobby\xc4\xa0hitch\xc4" +"\xa0hired\xc4\xa0hints\xc4\xa0hinge\xc4\xa0hills\xc4\xa0hides\xc4\xa0herds\xc4\xa0" +"herbs\xc4\xa0hence\xc4\xa0helps\xc4\xa0hello\xc4\xa0helix\xc4\xa0heirs\xc4\xa0he" +"els\xc4\xa0heeft\xc4\xa0hedge\xc4\xa0hecho\xc4\xa0heavy\xc4\xa0heard\xc4\xa0have" +"n\xc4\xa0hatte\xc4\xa0hates\xc4\xa0hated\xc4\xa0hatch\xc4\xa0haste\xc4\xa0hasta\xc4" +"\xa0hasht\xc4\xa0harsh\xc4\xa0happy\xc4\xa0hanno\xc4\xa0hangs\xc4\xa0handy\xc4\xa0" +"handc\xc4\xa0halls\xc4\xa0hairs\xc4\xa0hacia\xc4\xa0hacer\xc4\xa0haben\xc4\xa0gy" +"rus\xc4\xa0guild\xc4\xa0grows\xc4\xa0grown\xc4\xa0gross\xc4\xa0groom\xc4\xa0grie" +"f\xc4\xa0grids\xc4\xa0grapp\xc4\xa0grams\xc4\xa0grabs\xc4\xa0gotta\xc4\xa0goose\xc4" +"\xa0goods\xc4\xa0gonna\xc4\xa0gonad\xc4\xa0going\xc4\xa0goats\xc4\xa0goals\xc4\xa0" +"gnome\xc4\xa0glyph\xc4\xa0gluon\xc4\xa0gloss\xc4\xa0glory\xc4\xa0gloom\xc4\xa0gl" +"obe\xc4\xa0glial\xc4\xa0gives\xc4\xa0given\xc4\xa0girls\xc4\xa0gifts\xc4\xa0genu" +"s\xc4\xa0gente\xc4\xa0genes\xc4\xa0gegen\xc4\xa0gears\xc4\xa0gazed\xc4\xa0gauge\xc4" +"\xa0gates\xc4\xa0gases\xc4\xa0gangs\xc4\xa0gamma\xc4\xa0games\xc4\xa0gains\xc4\xa0" +"""f\xc3\x83\xc2\xb6rs\xc4\xa0""fuzzy\xc4\xa0""fused\xc4\xa0""funny\xc4\xa0""fung" +"i\xc4\xa0""funds\xc4\xa0""fully\xc4\xa0""fuels\xc4\xa0""fr\xc3\x83\xc2\xa5n\xc4\xa0" +"""frost\xc4\xa0""fried\xc4\xa0""freak\xc4\xa0""forty\xc4\xa0""forts\xc4\xa0""for" +"ms\xc4\xa0""fools\xc4\xa0""foods\xc4\xa0""fonts\xc4\xa0""folks\xc4\xa0""folds\xc4" +"\xa0""focal\xc4\xa0""flung\xc4\xa0""flows\xc4\xa0""flown\xc4\xa0""flock\xc4\xa0""f" +"lies\xc4\xa0""flick\xc4\xa0""flesh\xc4\xa0""fleet\xc4\xa0""flaws\xc4\xa0""flats\xc4" +"\xa0""flask\xc4\xa0""flaps\xc4\xa0""fixes\xc4\xa0""fixed\xc4\xa0""fists\xc4\xa0""f" +"irms\xc4\xa0""fires\xc4\xa0""fired\xc4\xa0""finer\xc4\xa0""fined\xc4\xa0""finds\xc4" +"\xa0""filos\xc4\xa0""films\xc4\xa0""fills\xc4\xa0""filed\xc4\xa0""fifty\xc4\xa0""f" +"ifth\xc4\xa0""fiery\xc4\xa0""fewer\xc4\xa0""fever\xc4\xa0""fetus\xc4\xa0""fetch\xc4" +"\xa0""fetal\xc4\xa0""ferry\xc4\xa0""fence\xc4\xa0""femur\xc4\xa0""feels\xc4\xa0""f" +"eeds\xc4\xa0""feces\xc4\xa0""fecal\xc4\xa0""feast\xc4\xa0""fears\xc4\xa0""fazer\xc4" +"\xa0""fatty\xc4\xa0""fatal\xc4\xa0""farms\xc4\xa0""fancy\xc4\xa0""famed\xc4\xa0""f" +"alls\xc4\xa0""fairy\xc4\xa0""faire\xc4\xa0""faint\xc4\xa0""fails\xc4\xa0""faded\xc4" +"\xa0""facts\xc4\xa0""facie\xc4\xa0""faces\xc4\xa0""faced\xc4\xa0""exons\xc4\xa0""e" +"xits\xc4\xa0""exile\xc4\xa0""excav\xc4\xa0""exams\xc4\xa0""evade\xc4\xa0""euros\xc4" +"\xa0""ett\xc3\x83\xc2\xa4\xc4\xa0""ether\xc4\xa0""estud\xc4\xa0""estos\xc4\xa0""e" +"stas\xc4\xa0""estar\xc4\xa0""esper\xc4\xa0""escal\xc4\xa0""erred\xc4\xa0""epoxy\xc4" +"\xa0""eosin\xc4\xa0""entry\xc4\xa0""engra\xc4\xa0""enemy\xc4\xa0""endif\xc4\xa0""e" +"nded\xc4\xa0""empty\xc4\xa0""embro\xc4\xa0""embol\xc4\xa0""eloqu\xc4\xa0""ellos\xc4" +"\xa0""eller\xc4\xa0""eines\xc4\xa0""einer\xc4\xa0""einen\xc4\xa0""einem\xc4\xa0""e" +"fter\xc4\xa0""efect\xc4\xa0""edges\xc4\xa0""edema\xc4\xa0""eaten\xc4\xa0""eased\xc4" +"\xa0""early\xc4\xa0""eagle\xc4\xa0""dying\xc4\xa0""dusty\xc4\xa0""durch\xc4\xa0""d" +"unge\xc4\xa0""dummy\xc4\xa0""ducks\xc4\xa0""dtype\xc4\xa0""drums\xc4\xa0""drugs\xc4" +"\xa0""drove\xc4\xa0""drops\xc4\xa0""dried\xc4\xa0""draws\xc4\xa0""drawn\xc4\xa0""d" +"rank\xc4\xa0""dough\xc4\xa0""doses\xc4\xa0""doped\xc4\xa0""doors\xc4\xa0""donde\xc4" +"\xa0""doing\xc4\xa0""ditch\xc4\xa0""disob\xc4\xa0""disks\xc4\xa0""discs\xc4\xa0""d" +"irty\xc4\xa0""dimer\xc4\xa0""diets\xc4\xa0""didnt\xc4\xa0""diced\xc4\xa0""diary\xc4" +"\xa0""devil\xc4\xa0""dette\xc4\xa0""detta\xc4\xa0""detox\xc4\xa0""deton\xc4\xa0""d" +"esde\xc4\xa0""delta\xc4\xa0""delle\xc4\xa0""della\xc4\xa0""delir\xc4\xa0""delim\xc4" +"\xa0""deity\xc4\xa0""degli\xc4\xa0""deeds\xc4\xa0""decou\xc4\xa0""decks\xc4\xa0""d" +"ecir\xc4\xa0""debts\xc4\xa0""debit\xc4\xa0""dealt\xc4\xa0""deals\xc4\xa0""dates\xc4" +"\xa0""dated\xc4\xa0""dared\xc4\xa0""dalla\xc4\xa0""dairy\xc4\xa0""daily\xc4\xa0""d" +"addy\xc4\xa0""cysts\xc4\xa0""cyclo\xc4\xa0""cyber\xc4\xa0""curry\xc4\xa0""curly\xc4" +"\xa0""cured\xc4\xa0""cubic\xc4\xa0""cubes\xc4\xa0""crust\xc4\xa0""crude\xc4\xa0""c" +"rore\xc4\xa0""crops\xc4\xa0""crisp\xc4\xa0""cripp\xc4\xa0""cries\xc4\xa0""cried\xc4" +"\xa0""crews\xc4\xa0""crest\xc4\xa0""crept\xc4\xa0""creek\xc4\xa0""crazy\xc4\xa0""c" +"rank\xc4\xa0""cough\xc4\xa0""couch\xc4\xa0""costs\xc4\xa0""cores\xc4\xa0""cords\xc4" +"\xa0""coral\xc4\xa0""cooks\xc4\xa0""conoc\xc4\xa0""cones\xc4\xa0""comun\xc4\xa0""c" +"omet\xc4\xa0""comes\xc4\xa0""combo\xc4\xa0""coins\xc4\xa0""coils\xc4\xa0""cohes\xc4" +"\xa0""codon\xc4\xa0""codes\xc4\xa0""coded\xc4\xa0""codec\xc4\xa0""cocoa\xc4\xa0""c" +"oats\xc4\xa0""clums\xc4\xa0""clues\xc4\xa0""clubs\xc4\xa0""clown\xc4\xa0""cloak\xc4" +"\xa0""clips\xc4\xa0""clerk\xc4\xa0""cleft\xc4\xa0""claws\xc4\xa0""clasp\xc4\xa0""c" +"lade\xc4\xa0""civic\xc4\xa0""cites\xc4\xa0""cited\xc4\xa0""churn\xc4\xa0""chore\xc4" +"\xa0""chord\xc4\xa0""chond\xc4\xa0""choir\xc4\xa0""chips\xc4\xa0""chili\xc4\xa0""c" +"hest\xc4\xa0""chess\xc4\xa0""chefs\xc4\xa0""chast\xc4\xa0""chaos\xc4\xa0""chant\xc4" +"\xa0""chalk\xc4\xa0""cette\xc4\xa0""cents\xc4\xa0""cells\xc4\xa0""caves\xc4\xa0""c" +"ater\xc4\xa0""casts\xc4\xa0""caste\xc4\xa0""cases\xc4\xa0""cargo\xc4\xa0""caret\xc4" +"\xa0""cares\xc4\xa0""cared\xc4\xa0""cards\xc4\xa0""canoe\xc4\xa0""candy\xc4\xa0""c" +"amps\xc4\xa0""camel\xc4\xa0""calls\xc4\xa0""cakes\xc4\xa0""cages\xc4\xa0""caf\xc3" +"\x83\xc2\xa9\xc4\xa0""bytes\xc4\xa0""buses\xc4\xa0""burnt\xc4\xa0""burns\xc4\xa0" +"""bunch\xc4\xa0""bumps\xc4\xa0""bulky\xc4\xa0""bulge\xc4\xa0""bulbs\xc4\xa0""bui" +"lt\xc4\xa0""buddy\xc4\xa0""bucks\xc4\xa0""brute\xc4\xa0""brown\xc4\xa0""broch\xc4" +"\xa0""brisk\xc4\xa0""bride\xc4\xa0""brave\xc4\xa0""brass\xc4\xa0""brane\xc4\xa0""b" +"race\xc4\xa0""boxes\xc4\xa0""bowls\xc4\xa0""bowel\xc4\xa0""bowed\xc4\xa0""botan\xc4" +"\xa0""borne\xc4\xa0""bored\xc4\xa0""booth\xc4\xa0""books\xc4\xa0""bones\xc4\xa0""b" +"onds\xc4\xa0""bombs\xc4\xa0""bolts\xc4\xa0""boats\xc4\xa0""blunt\xc4\xa0""blues\xc4" +"\xa0""blows\xc4\xa0""blown\xc4\xa0""blots\xc4\xa0""bloss\xc4\xa0""bloom\xc4\xa0""b" +"logs\xc4\xa0""bliss\xc4\xa0""bleak\xc4\xa0""bland\xc4\xa0""bites\xc4\xa0""bitch\xc4" +"\xa0""birds\xc4\xa0""binds\xc4\xa0""bills\xc4\xa0""bikes\xc4\xa0""belts\xc4\xa0""b" +"elow\xc4\xa0""belly\xc4\xa0""bells\xc4\xa0""begun\xc4\xa0""began\xc4\xa0""beers\xc4" +"\xa0""beats\xc4\xa0""bears\xc4\xa0""beard\xc4\xa0""beans\xc4\xa0""beams\xc4\xa0""b" +"eads\xc4\xa0""baths\xc4\xa0""basis\xc4\xa0""basin\xc4\xa0""basil\xc4\xa0""bases\xc4" +"\xa0""based\xc4\xa0""basal\xc4\xa0""banks\xc4\xa0""bands\xc4\xa0""balls\xc4\xa0""b" +"aked\xc4\xa0""badly\xc4\xa0""badge\xc4\xa0""bacon\xc4\xa0""backs\xc4\xa0""a\xc3\x83" +"\xc2\xb1os\xc4\xa0""axons\xc4\xa0""axial\xc4\xa0""awful\xc4\xa0""avons\xc4\xa0""a" +"voir\xc4\xa0""avian\xc4\xa0""avant\xc4\xa0""avait\xc4\xa0""autoc\xc4\xa0""aussi\xc4" +"\xa0""audio\xc4\xa0""attic\xc4\xa0""atroc\xc4\xa0""atoms\xc4\xa0""assim\xc4\xa0""a" +"sked\xc4\xa0""aside\xc4\xa0""ashes\xc4\xa0""arose\xc4\xa0""armor\xc4\xa0""armed\xc4" +"\xa0""arist\xc4\xa0""arena\xc4\xa0""areas\xc4\xa0""arXiv\xc4\xa0""aqu\xc3\x83\xc5" +"\x83\xc4\xa0""apost\xc4\xa0""aplic\xc4\xa0""aorta\xc4\xa0""antes\xc4\xa0""anode\xc4" +"\xa0""annex\xc4\xa0""anion\xc4\xa0""anime\xc4\xa0""angry\xc4\xa0""anger\xc4\xa0""a" +"necd\xc4\xa0""andra\xc4\xa0""anche\xc4\xa0""ample\xc4\xa0""amino\xc4\xa0""amine\xc4" +"\xa0""amalg\xc4\xa0""altar\xc4\xa0""aloud\xc4\xa0""alors\xc4\xa0""alone\xc4\xa0""a" +"lley\xc4\xa0""alkyl\xc4\xa0""alive\xc4\xa0""aliqu\xc4\xa0""alike\xc4\xa0""alias\xc4" +"\xa0""algun\xc4\xa0""algae\xc4\xa0""aisle\xc4\xa0""airst\xc4\xa0""aired\xc4\xa0""a" +"insi\xc4\xa0""ainda\xc4\xa0""aimed\xc4\xa0""aides\xc4\xa0""aided\xc4\xa0""ahora\xc4" +"\xa0""ahead\xc4\xa0""agony\xc4\xa0""aging\xc4\xa0""admon\xc4\xa0""added\xc4\xa0""a" +"cute\xc4\xa0""acted\xc4\xa0""acres\xc4\xa0""acids\xc4\xa0""abrog\xc4\xa0""abras\xc4" +"\xa0""above\xc4\xa0""about\xc4\xa0""abide\xc4\xa0\x5c*\x5c**\xc4\xa0[\xc3\xa2\xc4" +"\xa2\xc2\xa6]\xc4\xa0[...]\xc4\xa0Zhang\xc4\xa0Youth\xc4\xa0Young\xc4\xa0Yemen\xc4" +"\xa0Years\xc4\xa0Yahoo\xc4\xa0Wrote\xc4\xa0Wrong\xc4\xa0Would\xc4\xa0Worth\xc4\xa0" +"World\xc4\xa0Words\xc4\xa0Woods\xc4\xa0Women\xc4\xa0Woman\xc4\xa0Witch\xc4\xa0Wi" +"ngs\xc4\xa0Wiley\xc4\xa0Width\xc4\xa0Whole\xc4\xa0White\xc4\xa0While\xc4\xa0Whic" +"h\xc4\xa0Wheat\xc4\xa0Whats\xc4\xa0Wendy\xc4\xa0Welsh\xc4\xa0Wells\xc4\xa0Welch\xc4" +"\xa0Weiss\xc4\xa0Weber\xc4\xa0Wayne\xc4\xa0Watts\xc4\xa0Watch\xc4\xa0Waste\xc4\xa0" +"Walsh\xc4\xa0Wales\xc4\xa0WHERE\xc4\xa0Voice\xc4\xa0Vista\xc4\xa0Visit\xc4\xa0Vi" +"rus\xc4\xa0Views\xc4\xa0Venus\xc4\xa0Venet\xc4\xa0Veget\xc4\xa0Vegas\xc4\xa0Vaug" +"h\xc4\xa0Using\xc4\xa0Users\xc4\xa0Usage\xc4\xa0Urban\xc4\xa0Upper\xc4\xa0Until\xc4" +"\xa0Unter\xc4\xa0Unity\xc4\xa0Units\xc4\xa0Union\xc4\xa0Uncle\xc4\xa0Ultra\xc4\xa0" +"Tyson\xc4\xa0Types\xc4\xa0Tyler\xc4\xa0Turks\xc4\xa0Tumor\xc4\xa0Tukey\xc4\xa0Tr" +"uth\xc4\xa0Trump\xc4\xa0Truck\xc4\xa0Tribe\xc4\xa0Trent\xc4\xa0Trail\xc4\xa0Trad" +"e\xc4\xa0Tracy\xc4\xa0Track\xc4\xa0Trace\xc4\xa0Tower\xc4\xa0Tours\xc4\xa0Touch\xc4" +"\xa0Total\xc4\xa0Torah\xc4\xa0Tools\xc4\xa0Tommy\xc4\xa0Tokyo\xc4\xa0Token\xc4\xa0" +"Today\xc4\xa0Toast\xc4\xa0Title\xc4\xa0Times\xc4\xa0Timer\xc4\xa0Throw\xc4\xa0Th" +"ree\xc4\xa0Those\xc4\xa0Third\xc4\xa0These\xc4\xa0Theme\xc4\xa0Their\xc4\xa0Texa" +"s\xc4\xa0Tests\xc4\xa0Tesla\xc4\xa0Terry\xc4\xa0Terms\xc4\xa0Tenth\xc4\xa0Teddy\xc4" +"\xa0Teams\xc4\xa0Tampa\xc4\xa0Tamil\xc4\xa0Tales\xc4\xa0Taken\xc4\xa0TODAY\xc4\xa0" +"THREE\xc4\xa0THERE\xc4\xa0TEXAS\xc4\xa0TABLE\xc4\xa0Sympt\xc4\xa0Sword\xc4\xa0Sw" +"iss\xc4\xa0Swift\xc4\xa0Sweet\xc4\xa0Susan\xc4\xa0Sunny\xc4\xa0Sunni\xc4\xa0Suit" +"e\xc4\xa0Sugar\xc4\xa0Sudan\xc4\xa0Style\xc4\xa0Study\xc4\xa0Strip\xc4\xa0Story\xc4" +"\xa0Storm\xc4\xa0Stone\xc4\xa0Still\xc4\xa0Stick\xc4\xa0Stern\xc4\xa0Steps\xc4\xa0" +"Stein\xc4\xa0Steam\xc4\xa0Stats\xc4\xa0Stars\xc4\xa0Stark\xc4\xa0Stage\xc4\xa0St" +"ack\xc4\xa0Spons\xc4\xa0Split\xc4\xa0Spiel\xc4\xa0Speed\xc4\xa0Spart\xc4\xa0Spar" +"k\xc4\xa0Spain\xc4\xa0Sorry\xc4\xa0Songs\xc4\xa0Solve\xc4\xa0Solid\xc4\xa0Solar\xc4" +"\xa0Smith\xc4\xa0Smart\xc4\xa0Small\xc4\xa0Sleep\xc4\xa0Skype\xc4\xa0Sixty\xc4\xa0" +"Sixth\xc4\xa0Sites\xc4\xa0Singh\xc4\xa0Since\xc4\xa0Simon\xc4\xa0Silva\xc4\xa0Si" +"gma\xc4\xa0Siber\xc4\xa0Shore\xc4\xa0Shock\xc4\xa0Shift\xc4\xa0Shell\xc4\xa0Shaw" +"n\xc4\xa0Sharp\xc4\xa0Shape\xc4\xa0Shane\xc4\xa0Shall\xc4\xa0Setup\xc4\xa0Serum\xc4" +"\xa0Seoul\xc4\xa0Sense\xc4\xa0Seems\xc4\xa0Sears\xc4\xa0Scout\xc4\xa0Scots\xc4\xa0" +"Score\xc4\xa0Schwe\xc4\xa0Schul\xc4\xa0Scene\xc4\xa0Scale\xc4\xa0Saudi\xc4\xa0Sa" +"uce\xc4\xa0Satan\xc4\xa0Sarah\xc4\xa0Santa\xc4\xa0Sandy\xc4\xa0Sanct\xc4\xa0Sall" +"y\xc4\xa0Sales\xc4\xa0Salem\xc4\xa0Salad\xc4\xa0Sadly\xc4\xa0Sachs\xc4\xa0START\xc4" +"\xa0SMALL\xc4\xa0SHALL\xc4\xa0Rural\xc4\xa0Rules\xc4\xa0Rugby\xc4\xa0Rubio\xc4\xa0" +"Royal\xc4\xa0Route\xc4\xa0Round\xc4\xa0Rough\xc4\xa0Rouge\xc4\xa0Rosie\xc4\xa0Ro" +"sen\xc4\xa0Rocky\xc4\xa0Rings\xc4\xa0Riley\xc4\xa0Ridge\xc4\xa0Ricky\xc4\xa0Ricc" +"i\xc4\xa0Revel\xc4\xa0Reset\xc4\xa0Reply\xc4\xa0Renew\xc4\xa0Reich\xc4\xa0Ready\xc4" +"\xa0Ratio\xc4\xa0Rates\xc4\xa0Randy\xc4\xa0Ranch\xc4\xa0Ramos\xc4\xa0Raman\xc4\xa0" +"Ralph\xc4\xa0Rails\xc4\xa0Radio\xc4\xa0RNase\xc4\xa0RIGHT\xc4\xa0Quran\xc4\xa0Qu" +"ite\xc4\xa0Quint\xc4\xa0Quinn\xc4\xa0Quick\xc4\xa0Query\xc4\xa0Qatar\xc4\xa0Qaed" +"a\xc4\xa0Putin\xc4\xa0Pseud\xc4\xa0Pruss\xc4\xa0Proof\xc4\xa0Prize\xc4\xa0Prism\xc4" +"\xa0Print\xc4\xa0Pride\xc4\xa0Price\xc4\xa0Posts\xc4\xa0Pompe\xc4\xa0Polar\xc4\xa0" +"Plaza\xc4\xa0Plato\xc4\xa0Plate\xc4\xa0Plans\xc4\xa0Pizza\xc4\xa0Pixel\xc4\xa0Pi" +"one\xc4\xa0Pilot\xc4\xa0Phone\xc4\xa0Phase\xc4\xa0Perth\xc4\xa0Perry\xc4\xa0Pere" +"z\xc4\xa0Penny\xc4\xa0Pence\xc4\xa0Penal\xc4\xa0Peggy\xc4\xa0Pedro\xc4\xa0Pearl\xc4" +"\xa0Peace\xc4\xa0Payne\xc4\xa0Paulo\xc4\xa0Pauli\xc4\xa0Paula\xc4\xa0Patch\xc4\xa0" +"Party\xc4\xa0Parts\xc4\xa0Parse\xc4\xa0Parks\xc4\xa0Panel\xc4\xa0Palin\xc4\xa0Pa" +"int\xc4\xa0Pages\xc4\xa0Pablo\xc4\xa0Owner\xc4\xa0Owens\xc4\xa0Oscar\xc4\xa0Ordi" +"n\xc4\xa0Optim\xc4\xa0Omega\xc4\xa0Omaha\xc4\xa0Olson\xc4\xa0Often\xc4\xa0Offer\xc4" +"\xa0Ocean\xc4\xa0Occup\xc4\xa0Nurse\xc4\xa0Novel\xc4\xa0Notre\xc4\xa0Notes\xc4\xa0" +"Notch\xc4\xa0Nolan\xc4\xa0Nokia\xc4\xa0Noble\xc4\xa0Nobel\xc4\xa0Nixon\xc4\xa0Ni" +"nth\xc4\xa0Night\xc4\xa0Nexus\xc4\xa0Newsp\xc4\xa0Neuro\xc4\xa0Nepal\xc4\xa0Negr" +"o\xc4\xa0Nazis\xc4\xa0Naval\xc4\xa0Nancy\xc4\xa0Names\xc4\xa0NSCLC\xc4\xa0NEVER\xc4" +"\xa0Myers\xc4\xa0MySQL\xc4\xa0Music\xc4\xa0Movie\xc4\xa0Mouse\xc4\xa0Moses\xc4\xa0" +"Morse\xc4\xa0Morph\xc4\xa0Moran\xc4\xa0Moore\xc4\xa0Moody\xc4\xa0Monte\xc4\xa0Mo" +"ngo\xc4\xa0Money\xc4\xa0Molly\xc4\xa0Mixed\xc4\xa0Minor\xc4\xa0Mills\xc4\xa0Milk" +"y\xc4\xa0Miles\xc4\xa0Milan\xc4\xa0Might\xc4\xa0Miami\xc4\xa0Meyer\xc4\xa0Metal\xc4" +"\xa0Megan\xc4\xa0Medal\xc4\xa0Means\xc4\xa0McKin\xc4\xa0McCoy\xc4\xa0Mayor\xc4\xa0" +"Mayer\xc4\xa0Maybe\xc4\xa0Match\xc4\xa0Mason\xc4\xa0Marty\xc4\xa0Marks\xc4\xa0Ma" +"rie\xc4\xa0Marco\xc4\xa0March\xc4\xa0Maple\xc4\xa0Manor\xc4\xa0Manit\xc4\xa0Malt" +"a\xc4\xa0Makes\xc4\xa0Maker\xc4\xa0Maine\xc4\xa0Magic\xc4\xa0Maced\xc4\xa0MNRAS\xc4" +"\xa0Lynch\xc4\xa0Lymph\xc4\xa0Luxem\xc4\xa0Lucky\xc4\xa0Lucia\xc4\xa0Lucas\xc4\xa0" +"Lower\xc4\xa0Lords\xc4\xa0Lopez\xc4\xa0Looks\xc4\xa0Login\xc4\xa0Logic\xc4\xa0Lo" +"gan\xc4\xa0Lodge\xc4\xa0Locke\xc4\xa0Local\xc4\xa0Lloyd\xc4\xa0Lives\xc4\xa0Lion" +"s\xc4\xa0Linux\xc4\xa0Links\xc4\xa0Lines\xc4\xa0Linda\xc4\xa0Lilly\xc4\xa0Libya\xc4" +"\xa0Lewis\xc4\xa0Levin\xc4\xa0Leone\xc4\xa0Lenin\xc4\xa0Lemon\xc4\xa0Lemma\xc4\xa0" +"Leigh\xc4\xa0Legal\xc4\xa0Leeds\xc4\xa0Leave\xc4\xa0Layer\xc4\xa0Laura\xc4\xa0La" +"ter\xc4\xa0Laser\xc4\xa0Larry\xc4\xa0Large\xc4\xa0Lanka\xc4\xa0Lange\xc4\xa0Land" +"s\xc4\xa0Lance\xc4\xa0Lakes\xc4\xa0Laden\xc4\xa0Label\xc4\xa0Kyoto\xc4\xa0Kumar\xc4" +"\xa0Krist\xc4\xa0Krish\xc4\xa0Known\xc4\xa0Knock\xc4\xa0Klein\xc4\xa0Kitty\xc4\xa0" +"Kirby\xc4\xa0Kevin\xc4\xa0Kerry\xc4\xa0Kenya\xc4\xa0Kenny\xc4\xa0Kelly\xc4\xa0Ke" +"ith\xc4\xa0Katie\xc4\xa0Kathy\xc4\xa0Karen\xc4\xa0Judah\xc4\xa0Joyce\xc4\xa0Jos\xc3" +"\x83\xc2\xa9\xc4\xa0Jorge\xc4\xa0Jones\xc4\xa0Joint\xc4\xa0Jimmy\xc4\xa0Jiang\xc4" +"\xa0Jesus\xc4\xa0Jesse\xc4\xa0Jerry\xc4\xa0Jenny\xc4\xa0Jason\xc4\xa0Jared\xc4\xa0" +"Janet\xc4\xa0Jamie\xc4\xa0James\xc4\xa0Items\xc4\xa0Italy\xc4\xa0Isaac\xc4\xa0Ir" +"ish\xc4\xa0Irene\xc4\xa0Iraqi\xc4\xa0Intra\xc4\xa0Input\xc4\xa0Inner\xc4\xa0Infl" +"u\xc4\xa0Index\xc4\xa0Immun\xc4\xa0Ideas\xc4\xa0Idaho\xc4\xa0INTER\xc4\xa0Hyper\xc4" +"\xa0Hydro\xc4\xa0Hutch\xc4\xa0Humph\xc4\xa0Huang\xc4\xa0House\xc4\xa0Hours\xc4\xa0" +"Hotel\xc4\xa0Horse\xc4\xa0Honey\xc4\xa0Honda\xc4\xa0Homes\xc4\xa0Homer\xc4\xa0Ho" +"gan\xc4\xa0Hodge\xc4\xa0Hitch\xc4\xa0Hindu\xc4\xa0Himal\xc4\xa0Hills\xc4\xa0Higg" +"s\xc4\xa0Hicks\xc4\xa0Heter\xc4\xa0Henry\xc4\xa0Henri\xc4\xa0Hence\xc4\xa0Hello\xc4" +"\xa0Helen\xc4\xa0Hegel\xc4\xa0Heavy\xc4\xa0Heart\xc4\xa0Hayes\xc4\xa0Hawks\xc4\xa0" +"Haven\xc4\xa0Harry\xc4\xa0Hardy\xc4\xa0Happy\xc4\xa0Hands\xc4\xa0Hamas\xc4\xa0Ha" +"iti\xc4\xa0Guild\xc4\xa0Guest\xc4\xa0Guang\xc4\xa0Grove\xc4\xa0Gross\xc4\xa0Gras" +"s\xc4\xa0Grant\xc4\xa0Grade\xc4\xa0Grace\xc4\xa0Gould\xc4\xa0Gomez\xc4\xa0Golgi\xc4" +"\xa0Going\xc4\xa0Globe\xc4\xa0Glenn\xc4\xa0Glass\xc4\xa0Given\xc4\xa0Girls\xc4\xa0" +"Gibbs\xc4\xa0Ghost\xc4\xa0Ghana\xc4\xa0Getty\xc4\xa0Gesch\xc4\xa0Gavin\xc4\xa0Ga" +"tes\xc4\xa0Gamma\xc4\xa0Games\xc4\xa0GROUP\xc4\xa0GRANT\xc4\xa0GOODS\xc4\xa0GAPD" +"H\xc4\xa0""Funds\xc4\xa0""Fruit\xc4\xa0""Frost\xc4\xa0""Fritz\xc4\xa0""Freud\xc4" +"\xa0""Fresh\xc4\xa0""Franz\xc4\xa0""Forum\xc4\xa0""Forty\xc4\xa0""Forms\xc4\xa0""F" +"oods\xc4\xa0""Focus\xc4\xa0""Flynn\xc4\xa0""Fluor\xc4\xa0""Floyd\xc4\xa0""Floor\xc4" +"\xa0""Flood\xc4\xa0""Float\xc4\xa0""Flint\xc4\xa0""Fleet\xc4\xa0""Flash\xc4\xa0""F" +"ixed\xc4\xa0""Films\xc4\xa0""Filip\xc4\xa0""Files\xc4\xa0""Filed\xc4\xa0""Fifty\xc4" +"\xa0""Fifth\xc4\xa0""Fiber\xc4\xa0""Fermi\xc4\xa0""Felix\xc4\xa0""Fargo\xc4\xa0""F" +"alse\xc4\xa0""Falls\xc4\xa0""Faith\xc4\xa0""Facts\xc4\xa0""FIRST\xc4\xa0""FALSE\xc4" +"\xa0""Exped\xc4\xa0""Evans\xc4\xa0""Euler\xc4\xa0""Ethan\xc4\xa0""Eston\xc4\xa0""E" +"ssex\xc4\xa0""Error\xc4\xa0""Ernst\xc4\xa0""Equal\xc4\xa0""Entry\xc4\xa0""Enron\xc4" +"\xa0""Enjoy\xc4\xa0""Empty\xc4\xa0""Emily\xc4\xa0""Email\xc4\xa0""Elvis\xc4\xa0""E" +"llis\xc4\xa0""Ellen\xc4\xa0""Elite\xc4\xa0""Eliot\xc4\xa0""Elena\xc4\xa0""Elder\xc4" +"\xa0""Eisen\xc4\xa0""Eigen\xc4\xa0""Edwin\xc4\xa0""Edith\xc4\xa0""Edgar\xc4\xa0""E" +"ddie\xc4\xa0""Ebola\xc4\xa0""Earth\xc4\xa0""Early\xc4\xa0""EVERY\xc4\xa0""EVENT\xc4" +"\xa0""ERROR\xc4\xa0""ERISA\xc4\xa0""ELISA\xc4\xa0""EIGEN\xc4\xa0""Dylan\xc4\xa0""D" +"utch\xc4\xa0""Dubai\xc4\xa0""Drugs\xc4\xa0""Dress\xc4\xa0""Drama\xc4\xa0""Drake\xc4" +"\xa0""Drain\xc4\xa0""Draft\xc4\xa0""Doyle\xc4\xa0""Dover\xc4\xa0""Donna\xc4\xa0""D" +"oing\xc4\xa0""Doesn\xc4\xa0""Dixon\xc4\xa0""Dirac\xc4\xa0""Diego\xc4\xa0""Diane\xc4" +"\xa0""Diana\xc4\xa0""Devon\xc4\xa0""Devil\xc4\xa0""Derek\xc4\xa0""Derby\xc4\xa0""D" +"enis\xc4\xa0""Delta\xc4\xa0""Delhi\xc4\xa0""Decre\xc4\xa0""Debug\xc4\xa0""Death\xc4" +"\xa0""Davis\xc4\xa0""Dante\xc4\xa0""Danny\xc4\xa0""Dance\xc4\xa0""Daisy\xc4\xa0""D" +"aily\xc4\xa0""Daddy\xc4\xa0""DWORD\xc4\xa0""DEBUG\xc4\xa0""Czech\xc4\xa0""Cycle\xc4" +"\xa0""Cyber\xc4\xa0""Curry\xc4\xa0""Cuban\xc4\xa0""Crypt\xc4\xa0""Crown\xc4\xa0""C" +"ross\xc4\xa0""Crist\xc4\xa0""Crime\xc4\xa0""Creek\xc4\xa0""Cream\xc4\xa0""Craig\xc4" +"\xa0""Craft\xc4\xa0""Cover\xc4\xa0""Could\xc4\xa0""Costs\xc4\xa0""Costa\xc4\xa0""C" +"orps\xc4\xa0""Coron\xc4\xa0""Coord\xc4\xa0""Consc\xc4\xa0""Congo\xc4\xa0""Comey\xc4" +"\xa0""Colin\xc4\xa0""Cohen\xc4\xa0""Coast\xc4\xa0""Coach\xc4\xa0""Cloud\xc4\xa0""C" +"lose\xc4\xa0""Clock\xc4\xa0""Click\xc4\xa0""Clerk\xc4\xa0""Clean\xc4\xa0""Clare\xc4" +"\xa0""Clara\xc4\xa0""Civil\xc4\xa0""Cisco\xc4\xa0""Chuck\xc4\xa0""Chloe\xc4\xa0""C" +"hina\xc4\xa0""Chile\xc4\xa0""Chern\xc4\xa0""Cheng\xc4\xa0""Check\xc4\xa0""Chase\xc4" +"\xa0""Chaos\xc4\xa0""Chain\xc4\xa0""Cells\xc4\xa0""Cecil\xc4\xa0""Cause\xc4\xa0""C" +"asey\xc4\xa0""Cases\xc4\xa0""Carls\xc4\xa0""Carey\xc4\xa0""Cards\xc4\xa0""Canon\xc4" +"\xa0""Canal\xc4\xa0""Cairo\xc4\xa0""Cache\xc4\xa0""Cable\xc4\xa0""COVID\xc4\xa0""C" +"OURT\xc4\xa0""CONNE\xc4\xa0""CLASS\xc4\xa0""CLAIM\xc4\xa0""CHECK\xc4\xa0""Byron\xc4" +"\xa0""Burns\xc4\xa0""Burke\xc4\xa0""Bulls\xc4\xa0""Built\xc4\xa0""Bruno\xc4\xa0""B" +"ruce\xc4\xa0""Bronx\xc4\xa0""Brock\xc4\xa0""Britt\xc4\xa0""Bring\xc4\xa0""Brian\xc4" +"\xa0""Brett\xc4\xa0""Brent\xc4\xa0""Breit\xc4\xa0""Bread\xc4\xa0""Braun\xc4\xa0""B" +"rain\xc4\xa0""Brady\xc4\xa0""Bound\xc4\xa0""Boris\xc4\xa0""Borel\xc4\xa0""Booth\xc4" +"\xa0""Boost\xc4\xa0""Books\xc4\xa0""Bobby\xc4\xa0""Board\xc4\xa0""Blues\xc4\xa0""B" +"lood\xc4\xa0""Blind\xc4\xa0""Bless\xc4\xa0""Blank\xc4\xa0""Blake\xc4\xa0""Blair\xc4" +"\xa0""Black\xc4\xa0""Birth\xc4\xa0""Birds\xc4\xa0""Billy\xc4\xa0""Bills\xc4\xa0""B" +"iden\xc4\xa0""Bible\xc4\xa0""Betty\xc4\xa0""Berry\xc4\xa0""Bench\xc4\xa0""Below\xc4" +"\xa0""Belle\xc4\xa0""Bella\xc4\xa0""Being\xc4\xa0""Beast\xc4\xa0""Bears\xc4\xa0""B" +"each\xc4\xa0""Bates\xc4\xa0""Basin\xc4\xa0""Basil\xc4\xa0""Based\xc4\xa0""Barry\xc4" +"\xa0""Baron\xc4\xa0""Banks\xc4\xa0""Baker\xc4\xa0""Bacon\xc4\xa0""BOOST\xc4\xa0""B" +"LOCK\xc4\xa0""BLAST\xc4\xa0""BASIS\xc4\xa0""Azure\xc4\xa0""Avoid\xc4\xa0""Audio\xc4" +"\xa0""Atlas\xc4\xa0""Async\xc4\xa0""Aster\xc4\xa0""Asset\xc4\xa0""Assay\xc4\xa0""A" +"ssad\xc4\xa0""Aside\xc4\xa0""Asian\xc4\xa0""Arrow\xc4\xa0""Armed\xc4\xa0""Arena\xc4" +"\xa0""Areas\xc4\xa0""Arbit\xc4\xa0""Arabs\xc4\xa0""April\xc4\xa0""Apple\xc4\xa0""A" +"post\xc4\xa0""Apart\xc4\xa0""Antib\xc4\xa0""Annie\xc4\xa0""Annex\xc4\xa0""Anglo\xc4" +"\xa0""Among\xc4\xa0""Amber\xc4\xa0""Alpha\xc4\xa0""Along\xc4\xa0""Allow\xc4\xa0""A" +"llen\xc4\xa0""Alleg\xc4\xa0""Allan\xc4\xa0""Allah\xc4\xa0""Alien\xc4\xa0""Alice\xc4" +"\xa0""Alger\xc4\xa0""Alert\xc4\xa0""Album\xc4\xa0""Aires\xc4\xa0""Ahmed\xc4\xa0""A" +"hmad\xc4\xa0""Adult\xc4\xa0""Adobe\xc4\xa0""Added\xc4\xa0""Adapt\xc4\xa0""Adams\xc4" +"\xa0""Acute\xc4\xa0""Actor\xc4\xa0""Achie\xc4\xa0""Abuse\xc4\xa0""Above\xc4\xa0""A" +"bout\xc4\xa0""Abbey\xc4\xa0""Abbas\xc4\xa0""Aaron\xc4\xa0""ASCII\xc4\xa0""ANOVA\xc4" +"\xa0""AFTER\xc4\xa0""ADVIS\xc4\xa0""ABOUT\xc4\xa0----,\xc4\xa0****,\xc4\xa0()]{}" +"\xc4\xa0()](\x5c\xc4\xa0${{{\x5c\xc4\x8a\xc4\xa0\xc4\xa0\xc3\xa2\xc4\xa2\xc4\xa5" +"\xc4\x8a\xc4\x8a\xc4\x89\xc4\x89\xc4\x89\xc4\x89\xc4\x8a\xc4\x89\xc4\x89\xc4\xa0" +"\xc4\xa0\xc4\xa0\xc3\xaf\xc2\xbf\xc2\xbd\xc3\xaf\xc2\xbf\xc2\xbd\xc3\xab\xc4\xad" +"\xc4\xaa\xc3\xab\xc4\xad\xc2\xa4\xc3\xa9\xc4\xbe\xc4\xa2\xc3\xa8\xc2\xa6\xc4\xa3" +"\xc3\xa6\xc4\xb9\xc2\xa5\xc3\xa6\xc4\xbe\xc2\xac\xc3\xa6\xc4\xb8\xc4\xa9\xc3\xa4" +"\xc2\xbb\xc2\xb6\xc3\xa6\xc4\xb8\xc2\xb9\xc3\xa6\xc2\xb3\xc4\xb7\xc3\xa6\xc4\xb7" +"\xc2\xb0\xc3\xa6\xc4\xaf\xc2\xae\xc3\xa6\xc4\xaa\xc4\xb3\xc3\xa4\xc2\xbb\xc2\xac" +"\xc3\xa5\xc4\xb1\xc2\xaf\xc3\xa8\xc4\xa5\xc2\xbd\xc3\xa5\xc4\xb1\xc2\xaf\xc3\xa4" +"\xc2\xbb\xc2\xa5\xc3\xa5\xc2\xa6\xc4\xa4\xc3\xa6\xc5\x80\xc4\xbe\xc3\xa4\xc2\xbd" +"\xc2\xbf\xc3\xa7\xc4\xb6\xc2\xa8\xc3\xa4\xc2\xb8\xc4\xa2\xc3\xa4\xc2\xb8\xc2\xaa" +"\xc3\xa3\xc4\xa5\xc4\xa5\xc3\xa3\xc4\xa5\xc4\xaa\xc3\xa3\xc4\xa5\xc4\xa5\xc3\xa3" +"\xc4\xa4\xc2\xaf\xc3\xa3\xc4\xa5\xc2\xbc\xc3\xa3\xc4\xa5\xc4\xab\xc3\xa3\xc4\xa5" +"\xc2\xbc\xc3\xa3\xc4\xa5\xc4\xaa\xc3\xa3\xc4\xa5\xc2\xbc\xc3\xa3\xc4\xa5\xc2\xab" +"\xc3\xa3\xc4\xa5\xc2\xbc\xc3\xa3\xc4\xa4\xc2\xb8\xc3\xa3\xc4\xa5\xc2\xb3\xc3\xa3" +"\xc4\xa5\xc4\xaa\xc3\xa3\xc4\xa4\xc4\xad\xc3\xa3\xc4\xa3\xc2\xa8\xc3\xa3\xc4\xa4" +"\xc4\xab\xc3\xa3\xc4\xa4\xc4\xae\xc3\xa3\xc4\xa4\xc4\xaa\xc3\xa3\xc4\xa3\xc4\xa8" +"\xc3\xa3\xc4\xa4\xc4\xa4\xc3\xa3\xc4\xa3\xc2\xae\xc3\xa3\xc4\xa4\xc2\xbf\xc3\xa3" +"\xc4\xa5\xc2\xbc\xc3\xa3\xc4\xa4\xc2\xb9\xc3\xa3\xc4\xa5\xc4\xaa\xc3\xa3\xc4\xa4" +"\xc2\xa4\xc3\xa3\xc4\xa5\xc2\xb3\xc3\xa3\xc4\xa3\xc5\x81\xc3\xa3\xc4\xa4\xc4\xa3" +"\xc3\xa3\xc4\xa3\xc4\xbf\xc3\xa3\xc4\xa4\xc4\xae\xc3\xa3\xc4\xa3\xc4\xbf\xc3\xa3" +"\xc4\xa3\xc4\xa8\xc3\xa3\xc4\xa3\xc4\xbf\xc3\xa3\xc4\xa3\xc2\xae\xc3\xa3\xc4\xa3" +"\xc4\xbb\xc3\xa3\xc4\xa4\xc4\xad\xc3\xa3\xc4\xa3\xc4\xb9\xc3\xa3\xc4\xa3\xc4\xa6" +"\xc3\xa3\xc4\xa3\xc4\xb7\xc3\xa3\xc4\xa4\xc4\xb5\xc3\xa3\xc4\xa3\xc4\xb5\xc3\xa3" +"\xc4\xa4\xc4\xae\xc3\xa3\xc4\xa3\xc4\xb5\xc3\xa3\xc4\xa3\xc2\xae\xc3\xa3\xc4\xa3" +"\xc4\xad\xc3\xa3\xc4\xa4\xc4\xab\xc3\xa3\xc4\xa3\xc4\xa6\xc3\xa3\xc4\xa3\xc2\xa6" +"\xc3\xa3\xc4\xa3\xc4\xa4\xc3\xa3\xc4\xa4\xc4\xad\xc3\xa3\xc4\xa3\xc4\xa4\xc3\xa3" +"\xc4\xa4\xc4\xac\xc3\xa3\xc4\xa3\xc2\xae\xc3\xa3\xc4\xa3\xc2\xa7\xc3\xa3\xc4\xa3" +"\xc2\xab\xc3\xa3\xc4\xa4\xc4\xaa\xc3\xa3\xc4\xa3\xc2\xab\xc3\xa3\xc4\xa3\xc2\xaf" +"\xc3\xa3\xc4\xa3\xc2\xab\xc3\xa3\xc4\xa3\xc2\xaa\xc3\xa3\xc4\xa3\xc2\xaa\xc3\xa3" +"\xc4\xa3\xc4\xb1\xc3\xa3\xc4\xa3\xc2\xaa\xc3\xa3\xc4\xa3\xc4\xa6\xc3\xa3\xc4\xa3" +"\xc2\xaa\xc3\xa3\xc4\xa3\xc2\xa9\xc3\xa3\xc4\xa3\xc2\xa7\xc3\xa3\xc4\xa4\xc4\xa4" +"\xc3\xa3\xc4\xa3\xc2\xa7\xc3\xa3\xc4\xa3\xc4\xbb\xc3\xa3\xc4\xa3\xc2\xa7\xc3\xa3" +"\xc4\xa3\xc4\xaf\xc3\xa3\xc4\xa3\xc2\xa7\xc3\xa3\xc4\xa3\xc2\xaf\xc3\xa3\xc4\xa3" +"\xc2\xa3\xc3\xa3\xc4\xa3\xc5\x81\xc3\xa3\xc4\xa2\xc4\xa2\xc3\xa3\xc4\xa2\xc4\xa2" +"\xc3\xa2\xc4\xb8\xc4\xaa\xc3\xa2\xc4\xb8\xc4\xaa\xc3\xa2\xc4\xaa\xc4\xb9\xc3\xa2" +"\xc4\xaa\xc4\xb9\xc3\xa2\xc4\xa4\xc2\xac\xc3\xa2\xc4\xa6\xc2\xa2\xc3\xa2\xc4\xa2" +"\xc4\xbf\xc3\xa2\xc4\xa2\xc4\xb6\xc3\xa2\xc4\xa2\xc2\xa6\xc3\xa2\xc4\xa2\xc4\xbf" +"\xc3\xa0\xc2\xb8\xc2\xb5\xc3\xa0\xc2\xb9\xc4\xaa\xc3\x91\xc4\xa8\xc3\x90\xc2\xb8" +"\xc3\x91\xc4\xb1\xc3\x91\xc4\xa8\xc3\x90\xc2\xb8\xc3\x90\xc2\xb8\xc3\x91\xc4\xa7" +"\xc3\x90\xc2\xbe\xc3\x90\xc2\xb4\xc3\x91\xc4\xa4\xc3\x90\xc2\xb5\xc3\x91\xc4\xa2" +"\xc3\x91\xc4\xa3\xc3\x91\xc4\xa4\xc3\x91\xc4\xae\xc3\x91\xc4\xa3\xc3\x90\xc2\xbb" +"\xc3\x90\xc2\xb8\xc3\x91\xc4\xa2\xc3\x90\xc2\xbe\xc3\x91\xc4\xa3\xc3\x91\xc4\xa2" +"\xc3\x90\xc2\xb5\xc3\x90\xc2\xbc\xc3\x91\xc4\xa2\xc3\x90\xc2\xb0\xc3\x90\xc2\xbd" +"\xc3\x90\xc2\xbe\xc3\x91\xc4\xa3\xc3\x91\xc4\xa3\xc3\x90\xc2\xbe\xc3\x91\xc4\xa2" +"\xc3\x90\xc2\xbc\xc3\x90\xc2\xbe\xc3\x90\xc2\xbc\xc3\x91\xc4\xa5\xc3\x90\xc2\xbe" +"\xc3\x90\xc2\xb1\xc3\x91\xc4\xad\xc3\x90\xc2\xbd\xc3\x91\xc4\xad\xc3\x91\xc4\xa7" +"\xc3\x90\xc2\xbd\xc3\x91\xc4\xad\xc3\x90\xc2\xbc\xc3\x90\xc2\xbd\xc3\x91\xc4\xad" +"\xc3\x90\xc2\xb9\xc3\x90\xc2\xbd\xc3\x91\xc4\xad\xc3\x90\xc2\xb5\xc3\x90\xc2\xbd" +"\xc3\x90\xc2\xbe\xc3\x90\xc2\xb9\xc3\x90\xc2\xbd\xc3\x90\xc2\xbe\xc3\x90\xc2\xb5" +"\xc3\x90\xc2\xbd\xc3\x90\xc2\xbe\xc3\x90\xc2\xb2\xc3\x90\xc2\xbd\xc3\x90\xc2\xb8" +"\xc3\x90\xc2\xba\xc3\x90\xc2\xbd\xc3\x90\xc2\xb0\xc3\x91\xc4\xb1\xc3\x90\xc2\xbd" +"\xc3\x90\xc2\xb0\xc3\x91\xc4\xa9\xc3\x90\xc2\xbb\xc3\x91\xc4\xb0\xc3\x91\xc4\xa9" +"\xc3\x90\xc2\xbb\xc3\x90\xc2\xb5\xc3\x90\xc2\xbd\xc3\x90\xc2\xbb\xc3\x90\xc2\xb5" +"\xc3\x90\xc2\xbc\xc3\x90\xc2\xbb\xc3\x90\xc2\xb5\xc3\x90\xc2\xb4\xc3\x90\xc2\xb8" +"\xc3\x91\xc4\xa4\xc3\x91\xc4\xae\xc3\x90\xc2\xb8\xc3\x91\xc4\xa3\xc3\x91\xc4\xa4" +"\xc3\x90\xc2\xb8\xc3\x90\xc2\xbd\xc3\x90\xc2\xb0\xc3\x90\xc2\xb5\xc3\x91\xc4\xa4" +"\xc3\x90\xc2\xb5\xc3\x90\xc2\xb5\xc3\x91\xc4\xa3\xc3\x91\xc4\xa4\xc3\x90\xc2\xb5" +"\xc3\x90\xc2\xbd\xc3\x91\xc4\xae\xc3\x90\xc2\xb5\xc3\x90\xc2\xbd\xc3\x91\xc4\xa4" +"\xc3\x90\xc2\xb5\xc3\x90\xc2\xba\xc3\x91\xc4\xa4\xc3\x90\xc2\xb4\xc3\x90\xc2\xb5" +"\xc3\x90\xc2\xbb\xc3\x90\xc2\xb2\xc3\x90\xc2\xb5\xc3\x91\xc4\xa4\xc3\x90\xc2\xb2" +"\xc3\x90\xc2\xb5\xc3\x91\xc4\xa2\xc3\x90\xc2\xb0\xc3\x91\xc4\xa4\xc3\x90\xc2\xb0" +"\xc3\x90\xc2\xb0\xc3\x91\xc4\xa3\xc3\x91\xc4\xa3\xc3\x90\xc2\xb0\xc3\x90\xc2\xbd" +"\xc3\x90\xc2\xb5\xc3\x90\xc2\xb0\xc3\x90\xc2\xbd\xc3\x90\xc2\xb4\xc3\x90\xc2\xb0" +"\xc3\x90\xc2\xbc\xc3\x90\xc2\xb8\xc3\x90\xc2\xb0\xc3\x90\xc2\xbb\xc3\x91\xc4\xae" +"\xc3\x90\xc2\xb0\xc3\x90\xc2\xbb\xc3\x90\xc2\xb8\xc3\x90\xc2\xb0\xc3\x90\xc2\xbb" +"\xc3\x90\xc2\xb0\xc3\x8f\xc4\xa6\xc3\x8e\xc2\xb9\xc3\x8e\xc2\xba\xc3\x8f\xc4\xa6" +"\xc3\x8e\xc2\xb1\xc3\x8e\xc2\xb9\xc3\x8f\xc4\xa5\xc3\x8e\xc2\xb7\xc3\x8f\xc4\xa4" +"\xc3\x8f\xc4\xa5\xc3\x8e\xc2\xb5\xc3\x8e\xc2\xb9\xc3\x8f\xc4\xa2\xc3\x8e\xc2\xb5" +"\xc3\x8e\xc2\xb9\xc3\x8e\xc2\xbf\xc3\x8f\xc4\xa7\xc3\x8f\xc4\xa4\xc3\x8e\xc2\xbf" +"\xc3\x8f\xc4\xa7\xc3\x8e\xc2\xbd\xc3\x8e\xc2\xaf\xc3\x8e\xc2\xb1\xc3\x8f\xc4\xa4" +"\xc3\x83\xc4\xb2\xc3\x82\xc2\xb5\xc3\x83\xc4\xb3\xc3\x83\xc4\xb2\xc3\x82\xc2\xb5" +"\xc3\x83\xc4\xb2\xc3\x83\xc2\xbcssen\xc3\x83\xc2\xaancia\xc3\x83\xc2\xa9ment\xc3" +"\x83\xc2\xa4nder\xc3\x83\xc2\xa4hler\xc3\x82\xc2\xb7\xc3\x82\xc2\xb7\xc3\x82\xc2" +"\xb7}}}_{\x5c}}}({\x5c}}_{{\x5c}}^{{\x5c}}({{\x5czitteryrinthxspacewebkitwalkerv" +"estervarrhovarphiuximabushimaurizeduncherumblesullaryuitiesuffleduddleducklesuci" +"\xc3\x83\xc2\xb3nubottuthousethirdstextuptexttttextsftextsctextrmtextittextbftai" +"entsworthsupsetsunamistr\xc3\x83\xc2\xb6mstdoutstdlibstderrschildruvaterologyrog" +"ensringesrfloorretvalrendrerendanrbrackrangleraiserquetteproptoprintkphrineperin" +"goxylinoxifenoxfordoxacinovirusoughedotypedotoxinotimesostomyossierospaceosaurso" +"rscheorbentopteraopolysophyllopeniaopedicopauseomycesomonasomericolyticologiaode" +"nalocyticociousobbseeningerningennavbarmspacemsgstrmortemmeticsmemcpymathttmaths" +"fmathrmmathopmathitmathdsmathbfmapstolichenlfloorletonslesslyleneckleggedlbrackl" +"bracelanglekwargskowskijavasei\xc3\x83\xc2\xa7\xc3\x83\xc2\xa3oizzardizumabizion" +"eizardsivirusittestissorsisitesisestiischenirubinirlingiquityippetsippersiorarii" +"onineionageinklesinkledinitisingaleinchedinbergimetryimentoillardilightilevelije" +"rphigroupiframeifndefiffanyiewiczierungientosientesienciaidiousidadesicoloricker" +"sici\xc3\x83\xc2\xb3nichlorhspaceheriesherchehedronhairedhadoopgtrsimgradlegolan" +"ggartenforallfluorofileIDfefefeevilleethoxyetheusestialesteemerralsermostermanne" +"rcaseentiesenthalencialenburgemakercliffecci\xc3\x83\xc2\xb3nbrancebrahimblowerb" +"igcupbergerazioniazioneawningaucoupatosisatoninatinibateursatableasmuchasmineari" +"ansanktonandalsancockamycinamsbsyampsiaamenteamazonalianaagogueadoresaceousacenc" +"yabellaabbath]{}]{}]{}\x5c_[]{}\x5c^[\x5c])]{}[\x5c*](#WidgetVertexVerlagUploadU" +"nlockToggleTHREADTARGETSyntaxSocketShaderSetterSenderScalarSYMBOLSTRINGSTREAMSTA" +"TUSSTATICSOURCESERVERRunnerRouterRecognRadiusRETURNQiagenPrefixPrefabPickerParse" +"rParamsPREFIXOUTPUTOFFSETOBJECTNotifyNavBarNUMBERMarkerMapperMODULELookupLocaleL" +"oaderLoadedLambdaLabelsLENGTHKernelKERNELInvokeIgnoreINLINEIImageHelperHEADERHAN" +"DLEFramesForgetFolderFinishFILTERExpandExistsExcuseErrorsErrorfEXPORTEXCEPTENABL" +"EEINVALDivideDEVICEDELETEDEFINECursorCompatClosedCanvasCancelCTIONSCREATEBucketB" +"oundsBlocksBUFFERAssignArguedAnchorAmountATIONSACCESS:**]{}.\xc3\xa2\xc4\xa2\xc4" +"\xbf)..^\x5c[[@..\x5c..\x5c.*]{},.**]{}**]{},**--**))/((-))**(-\x22}**).\xc4\xa0" +"\xc3\xb0\xc5\x81\xc4\xbb\xc4\xa4\xc4\xa0\xc3\xa2\xc4\xbb\xc2\xaa\x22\xc4\xa0\xc3" +"\xa2\xc4\xa2\xc4\xbe[\xc4\xa0\xc3\xa2\xc4\xa2\xc4\xb5,\xc4\xa0\xc3\x99\xc4\xa7\xc3" +"\x99\xc4\xa8\xc4\xa0\xc3\x99\xc4\xa3\xc3\x99\xc4\xac\xc4\xa0\xc3\x98\xc2\xa3\xc3" +"\x99\xc4\xa8\xc4\xa0\xc3\x91\xc4\xa4\xc3\x91\xc4\xa2\xc4\xa0\xc3\x91\xc4\xa4\xc3" +"\x90\xc2\xbe\xc4\xa0\xc3\x91\xc4\xa3\xc3\x91\xc4\xac\xc4\xa0\xc3\x91\xc4\xa3\xc3" +"\x91\xc4\xa4\xc4\xa0\xc3\x91\xc4\xa3\xc3\x90\xc2\xbf\xc4\xa0\xc3\x91\xc4\xa3\xc3" +"\x90\xc2\xbe\xc4\xa0\xc3\x91\xc4\xa3\xc3\x90\xc2\xbc\xc4\xa0\xc3\x91\xc4\xa3\xc3" +"\x90\xc2\xbb\xc4\xa0\xc3\x91\xc4\xa3\xc3\x90\xc2\xba\xc4\xa0\xc3\x91\xc4\xa3\xc3" +"\x90\xc2\xb5\xc4\xa0\xc3\x91\xc4\xa3\xc3\x90\xc2\xb2\xc4\xa0\xc3\x90\xc2\xbe\xc3" +"\x91\xc4\xa4\xc4\xa0\xc3\x90\xc2\xbe\xc3\x91\xc4\xa3\xc4\xa0\xc3\x90\xc2\xbe\xc3" +"\x90\xc2\xbf\xc4\xa0\xc3\x90\xc2\xbe\xc3\x90\xc2\xbd\xc4\xa0\xc3\x90\xc2\xbe\xc3" +"\x90\xc2\xb4\xc4\xa0\xc3\x90\xc2\xbe\xc3\x90\xc2\xb1\xc4\xa0\xc3\x90\xc2\xbd\xc3" +"\x90\xc2\xbe\xc4\xa0\xc3\x90\xc2\xbd\xc3\x90\xc2\xb5\xc4\xa0\xc3\x90\xc2\xbb\xc3" +"\x91\xc4\xb0\xc4\xa0\xc3\x90\xc2\xb8\xc3\x90\xc2\xbd\xc4\xa0\xc3\x90\xc2\xb8\xc3" +"\x90\xc2\xbc\xc4\xa0\xc3\x90\xc2\xb8\xc3\x90\xc2\xb7\xc4\xa0\xc3\x90\xc2\xb4\xc3" +"\x90\xc2\xbe\xc4\xa0\xc3\x90\xc2\xb4\xc3\x90\xc2\xb0\xc4\xa0\xc3\x90\xc2\xb2\xc3" +"\x91\xc4\xad\xc4\xa0\xc3\x90\xc2\xb2\xc3\x90\xc2\xbe\xc4\xa0\xc3\x90\xc2\xb1\xc3" +"\x91\xc4\xad\xc4\xa0\xc3\x8f\xc4\xa6\xc3\x8e\xc2\xb1\xc4\xa0\xc3\x8f\xc4\xa5\xc3" +"\x8e\xc2\xb5\xc4\xa0\xc3\x8f\xc4\xa2\xc3\x8e\xc2\xb5\xc4\xa0\xc3\x8f\xc4\xa2\xc3" +"\x8e\xc2\xb1\xc4\xa0\xc3\x8e\xc2\xbd\xc3\x8e\xc2\xb1\xc4\xa0\xc3\x8e\xc2\xbc\xc3" +"\x8e\xc5\x83\xc4\xa0\xc3\x8e\xc2\xbc\xc3\x8e\xc2\xb5\xc4\xa0\xc3\x8e\xc2\xb8\xc3" +"\x8e\xc2\xb1\xc4\xa0\xc3\x8e\xc2\xb5\xc3\x8e\xc2\xbd\xc4\xa0\xc3\x8e\xc2\xb1\xc3" +"\x8e\xc2\xbd\xc4\xa0\xc3\x83\xc2\xbalt\xc4\xa0\xc3\x83\xc2\xaent\xc4\xa0\xc3\x82" +"\xc2\xb6\xc3\x82\xc2\xb6\xc4\xa0\xc3\x82\xc2\xa7\xc3\x82\xc2\xa7\xc4\xa0\xc3\x82" +"\xc2\xa7\x5c[\xc4\xa0{{{\x5c\xc4\xa0zoom\xc4\xa0zinc\xc4\xa0zijn\xc4\xa0zich\xc4" +"\xa0zeal\xc4\xa0yoga\xc4\xa0yeah\xc4\xa0yarn\xc4\xa0yang\xc4\xa0yaml\xc4\xa0xcex" +"\xc4\xa0worn\xc4\xa0wore\xc4\xa0wool\xc4\xa0wont\xc4\xa0womb\xc4\xa0wolf\xc4\xa0" +"woke\xc4\xa0wird\xc4\xa0wins\xc4\xa0wink\xc4\xa0wiki\xc4\xa0wifi\xc4\xa0wife\xc4" +"\xa0whom\xc4\xa0whim\xc4\xa0went\xc4\xa0wenn\xc4\xa0ways\xc4\xa0wasn\xc4\xa0wary" +"\xc4\xa0wars\xc4\xa0warp\xc4\xa0wake\xc4\xa0waar\xc4\xa0v\xc3\x83\xc2\xa4l\xc4\xa0" +"vous\xc4\xa0voor\xc4\xa0vols\xc4\xa0voir\xc4\xa0void\xc4\xa0vivo\xc4\xa0vind\xc4" +"\xa0viel\xc4\xa0vida\xc4\xa0vice\xc4\xa0vibe\xc4\xa0veto\xc4\xa0very\xc4\xa0veil" +"\xc4\xa0vegg\xc4\xa0vars\xc4\xa0vara\xc4\xa0vain\xc4\xa0uses\xc4\xa0used\xc4\xa0" +"urea\xc4\xa0upon\xc4\xa0unim\xc4\xa0ugly\xc4\xa0typh\xc4\xa0turf\xc4\xa0tung\xc4" +"\xa0true\xc4\xa0trio\xc4\xa0trek\xc4\xa0tray\xc4\xa0trat\xc4\xa0tram\xc4\xa0toys" +"\xc4\xa0tous\xc4\xa0tore\xc4\xa0tops\xc4\xa0took\xc4\xa0tons\xc4\xa0tomb\xc4\xa0" +"toll\xc4\xa0told\xc4\xa0toim\xc4\xa0toes\xc4\xa0tips\xc4\xa0tipo\xc4\xa0tiny\xc4" +"\xa0ting\xc4\xa0till\xc4\xa0ties\xc4\xa0tier\xc4\xa0tied\xc4\xa0tidy\xc4\xa0tide" +"\xc4\xa0th\xc3\x83\xc2\xa9\xc4\xa0thym\xc4\xa0thus\xc4\xa0this\xc4\xa0they\xc4\xa0" +"then\xc4\xa0thee\xc4\xa0thal\xc4\xa0tern\xc4\xa0tbsp\xc4\xa0taxi\xc4\xa0taut\xc4" +"\xa0tart\xc4\xa0tard\xc4\xa0taps\xc4\xa0tamp\xc4\xa0tame\xc4\xa0tags\xc4\xa0tabs" +"\xc4\xa0tRNA\xc4\xa0s\xc3\x83\xc2\xa3o\xc4\xa0syll\xc4\xa0sway\xc4\xa0swap\xc4\xa0" +"sunt\xc4\xa0sunk\xc4\xa0sung\xc4\xa0sums\xc4\xa0suis\xc4\xa0sued\xc4\xa0sudo\xc4" +"\xa0such\xc4\xa0subl\xc4\xa0sqrt\xc4\xa0spun\xc4\xa0spam\xc4\xa0sous\xc4\xa0soup" +"\xc4\xa0sore\xc4\xa0sont\xc4\xa0sons\xc4\xa0sono\xc4\xa0solo\xc4\xa0soll\xc4\xa0" +"soit\xc4\xa0sofa\xc4\xa0soda\xc4\xa0soap\xc4\xa0snow\xc4\xa0snar\xc4\xa0smug\xc4" +"\xa0slut\xc4\xa0slug\xc4\xa0slit\xc4\xa0slim\xc4\xa0slew\xc4\xa0slab\xc4\xa0skim" +"\xc4\xa0skal\xc4\xa0si\xc3\x84\xc4\xbb\xc4\xa0sits\xc4\xa0sins\xc4\xa0sino\xc4\xa0" +"sine\xc4\xa0sind\xc4\xa0silk\xc4\xa0sido\xc4\xa0sich\xc4\xa0sial\xc4\xa0shud\xc4" +"\xa0shit\xc4\xa0se\xc3\x83\xc2\xb1\xc4\xa0sexy\xc4\xa0sets\xc4\xa0sera\xc4\xa0se" +"ja\xc4\xa0sein\xc4\xa0sehr\xc4\xa0sees\xc4\xa0seen\xc4\xa0seaw\xc4\xa0scav\xc4\xa0" +"scam\xc4\xa0says\xc4\xa0sans\xc4\xa0sank\xc4\xa0sang\xc4\xa0sane\xc4\xa0same\xc4" +"\xa0sake\xc4\xa0said\xc4\xa0sage\xc4\xa0saga\xc4\xa0r\xc3\x83\xc2\xa9s\xc4\xa0r\xc3" +"\x83\xc2\xa9p\xc4\xa0r\xc3\x83\xc2\xa9g\xc4\xa0rust\xc4\xa0runs\xc4\xa0rude\xc4\xa0" +"ruby\xc4\xa0rows\xc4\xa0rods\xc4\xa0ripe\xc4\xa0rien\xc4\xa0rice\xc4\xa0ribs\xc4" +"\xa0rgba\xc4\xa0resh\xc4\xa0rept\xc4\xa0reps\xc4\xa0rejo\xc4\xa0reel\xc4\xa0reef" +"\xc4\xa0redd\xc4\xa0recl\xc4\xa0rays\xc4\xa0ratt\xc4\xa0rats\xc4\xa0rash\xc4\xa0" +"rapt\xc4\xa0ramp\xc4\xa0rage\xc4\xa0raft\xc4\xa0rRNA\xc4\xa0qu\xc3\x83\xc2\xa9\xc4" +"\xa0quiz\xc4\xa0quir\xc4\xa0qPCR\xc4\xa0pyro\xc4\xa0puts\xc4\xa0punk\xc4\xa0pulp" +"\xc4\xa0puis\xc4\xa0puff\xc4\xa0puck\xc4\xa0pr\xc3\x83\xc2\xb3\xc4\xa0pr\xc3\x83" +"\xc2\xa1\xc4\xa0prow\xc4\xa0prey\xc4\xa0pots\xc4\xa0pork\xc4\xa0pops\xc4\xa0pope" +"\xc4\xa0pony\xc4\xa0pont\xc4\xa0pods\xc4\xa0poco\xc4\xa0plut\xc4\xa0plus\xc4\xa0" +"plex\xc4\xa0pi\xc3\x83\xc2\xb9\xc4\xa0pity\xc4\xa0pits\xc4\xa0pint\xc4\xa0pins\xc4" +"\xa0pink\xc4\xa0ping\xc4\xa0pine\xc4\xa0pigs\xc4\xa0pics\xc4\xa0phyt\xc4\xa0peut" +"\xc4\xa0pets\xc4\xa0peng\xc4\xa0pelo\xc4\xa0pela\xc4\xa0peek\xc4\xa0pear\xc4\xa0" +"pays\xc4\xa0pawn\xc4\xa0pans\xc4\xa0pals\xc4\xa0palp\xc4\xa0paid\xc4\xa0pads\xc4" +"\xa0pact\xc4\xa0pace\xc4\xa0owns\xc4\xa0owes\xc4\xa0owed\xc4\xa0oven\xc4\xa0ovat" +"\xc4\xa0oval\xc4\xa0otra\xc4\xa0opts\xc4\xa0only\xc4\xa0once\xc4\xa0omin\xc4\xa0" +"okay\xc4\xa0oils\xc4\xa0odor\xc4\xa0oder\xc4\xa0odds\xc4\xa0obey\xc4\xa0oath\xc4" +"\xa0n\xc3\x83\xc2\xa4r\xc4\xa0n\xc3\x83\xc2\xa3o\xc4\xa0nuts\xc4\xa0nurt\xc4\xa0" +"nude\xc4\xa0novo\xc4\xa0nous\xc4\xa0nour\xc4\xa0noun\xc4\xa0nost\xc4\xa0nose\xc4" +"\xa0noon\xc4\xa0nond\xc4\xa0nome\xc4\xa0nods\xc4\xa0noct\xc4\xa0noch\xc4\xa0nmol" +"\xc4\xa0ning\xc4\xa0niet\xc4\xa0next\xc4\xa0nets\xc4\xa0navy\xc4\xa0nada\xc4\xa0" +"nach\xc4\xa0naar\xc4\xa0m\xc3\x83\xc2\xa9t\xc4\xa0m\xc3\x83\xc2\xa9""d\xc4\xa0m\xc3" +"\x83\xc2\xa1s\xc4\xa0mute\xc4\xa0muss\xc4\xa0muff\xc4\xa0moss\xc4\xa0moot\xc4\xa0" +"mood\xc4\xa0mong\xc4\xa0moll\xc4\xa0modo\xc4\xa0mmol\xc4\xa0mmHg\xc4\xa0mitt\xc4" +"\xa0mish\xc4\xa0misf\xc4\xa0mint\xc4\xa0mins\xc4\xa0ming\xc4\xa0milk\xc4\xa0mich" +"\xc4\xa0mice\xc4\xa0mesh\xc4\xa0mehr\xc4\xa0mega\xc4\xa0meer\xc4\xa0maze\xc4\xa0" +"mash\xc4\xa0mare\xc4\xa0maps\xc4\xa0many\xc4\xa0malt\xc4\xa0mais\xc4\xa0made\xc4" +"\xa0maar\xc4\xa0mTOR\xc4\xa0lute\xc4\xa0lust\xc4\xa0lush\xc4\xa0lure\xc4\xa0lump" +"\xc4\xa0lots\xc4\xa0lost\xc4\xa0lors\xc4\xa0loro\xc4\xa0loot\xc4\xa0logs\xc4\xa0" +"loci\xc4\xa0loaf\xc4\xa0lleg\xc4\xa0llam\xc4\xa0lips\xc4\xa0limp\xc4\xa0lign\xc4" +"\xa0lies\xc4\xa0lien\xc4\xa0lied\xc4\xa0libc\xc4\xa0liar\xc4\xa0leuc\xc4\xa0lets" +"\xc4\xa0lest\xc4\xa0lent\xc4\xa0legs\xc4\xa0left\xc4\xa0leap\xc4\xa0leaf\xc4\xa0" +"lazy\xc4\xa0lays\xc4\xa0lawn\xc4\xa0lava\xc4\xa0laid\xc4\xa0lady\xc4\xa0lado\xc4" +"\xa0lace\xc4\xa0labs\xc4\xa0kt\xc3\x83\xc2\xb3\xc4\xa0ktor\xc4\xa0kont\xc4\xa0kn" +"ob\xc4\xa0knew\xc4\xa0kits\xc4\xa0kins\xc4\xa0kids\xc4\xa0keys\xc4\xa0kept\xc4\xa0" +"keen\xc4\xa0kans\xc4\xa0kann\xc4\xa0juxt\xc4\xa0jury\xc4\xa0junk\xc4\xa0json\xc4" +"\xa0jobs\xc4\xa0jets\xc4\xa0jest\xc4\xa0jazz\xc4\xa0jaws\xc4\xa0jars\xc4\xa0jail" +"\xc4\xa0ital\xc4\xa0isso\xc4\xa0ions\xc4\xa0ikke\xc4\xa0idol\xc4\xa0idle\xc4\xa0" +"ibid\xc4\xa0iPod\xc4\xa0iPad\xc4\xa0h\xc3\x83\xc2\xa4r\xc4\xa0h\xc3\x83\xc2\xa4n" +"\xc4\xa0hust\xc4\xa0hull\xc4\xa0html\xc4\xa0href\xc4\xa0hose\xc4\xa0hops\xc4\xa0" +"hood\xc4\xa0holy\xc4\xa0hogy\xc4\xa0hits\xc4\xa0hips\xc4\xa0hike\xc4\xa0hens\xc4" +"\xa0hemp\xc4\xa0heme\xc4\xa0held\xc4\xa0heed\xc4\xa0hect\xc4\xa0heck\xc4\xa0heap" +"\xc4\xa0hats\xc4\xa0hath\xc4\xa0hasn\xc4\xa0hadn\xc4\xa0hade\xc4\xa0habl\xc4\xa0" +"gymn\xc4\xa0guys\xc4\xa0guts\xc4\xa0gust\xc4\xa0guns\xc4\xa0grup\xc4\xa0grub\xc4" +"\xa0grim\xc4\xa0grey\xc4\xa0grew\xc4\xa0grep\xc4\xa0gren\xc4\xa0gray\xc4\xa0gown" +"\xc4\xa0gour\xc4\xa0goto\xc4\xa0gone\xc4\xa0gond\xc4\xa0golf\xc4\xa0goes\xc4\xa0" +"gods\xc4\xa0glue\xc4\xa0glam\xc4\xa0glac\xc4\xa0gigg\xc4\xa0gibt\xc4\xa0gets\xc4" +"\xa0gems\xc4\xa0gels\xc4\xa0geen\xc4\xa0gave\xc4\xa0garn\xc4\xa0gaps\xc4\xa0gait" +"\xc4\xa0""f\xc3\x83\xc2\xbcr\xc4\xa0""fuss\xc4\xa0""fury\xc4\xa0""fuer\xc4\xa0""f" +"rom\xc4\xa0""frog\xc4\xa0""fret\xc4\xa0""fren\xc4\xa0""foul\xc4\xa0""fors\xc4\xa0" +"""fork\xc4\xa0""fond\xc4\xa0""fois\xc4\xa0""foil\xc4\xa0""foci\xc4\xa0""foam\xc4" +"\xa0""flew\xc4\xa0""fled\xc4\xa0""five\xc4\xa0""fits\xc4\xa0""fins\xc4\xa0""feud" +"\xc4\xa0""ferv\xc4\xa0""felt\xc4\xa0""feet\xc4\xa0""fees\xc4\xa0""fa\xc3\x83\xc2" +"\xa7\xc4\xa0""faut\xc4\xa0""fats\xc4\xa0""fate\xc4\xa0""fans\xc4\xa0""fake\xc4\xa0" +"""fMRI\xc4\xa0""eyew\xc4\xa0""eyes\xc4\xa0""eyel\xc4\xa0""eyed\xc4\xa0""evil\xc4" +"\xa0""erad\xc4\xa0""epic\xc4\xa0""envy\xc4\xa0""enqu\xc4\xa0""ends\xc4\xa0""emig" +"\xc4\xa0""eman\xc4\xa0""ella\xc4\xa0""elif\xc4\xa0""eggs\xc4\xa0""eats\xc4\xa0""e" +"asy\xc4\xa0""ears\xc4\xa0""each\xc4\xa0""eBay\xc4\xa0""d\xc3\x83\xc5\x83""a\xc4\xa0" +"""d\xc3\x83\xc2\xa9s\xc4\xa0""d\xc3\x83\xc2\xa9""f\xc4\xa0""d\xc3\x83\xc2\xa9""c" +"\xc4\xa0""d\xc3\x83\xc2\xa4r\xc4\xa0""dyst\xc4\xa0""dyes\xc4\xa0""duty\xc4\xa0""d" +"usk\xc4\xa0""dumb\xc4\xa0""duly\xc4\xa0""dull\xc4\xa0""duke\xc4\xa0""dude\xc4\xa0" +"""duct\xc4\xa0""drew\xc4\xa0""drap\xc4\xa0""dove\xc4\xa0""dots\xc4\xa0""dont\xc4" +"\xa0""done\xc4\xa0""donc\xc4\xa0""doit\xc4\xa0""dogs\xc4\xa0""docs\xc4\xa0""dizz" +"\xc4\xa0""ding\xc4\xa0""died\xc4\xa0""dick\xc4\xa0""dich\xc4\xa0""deze\xc4\xa0""d" +"ext\xc4\xa0""deux\xc4\xa0""deut\xc4\xa0""dere\xc4\xa0""deer\xc4\xa0""debe\xc4\xa0" +"""dear\xc4\xa0""deaf\xc4\xa0""da\xc3\x83\xc5\x81\xc4\xa0""dazz\xc4\xa0""days\xc4" +"\xa0""dawn\xc4\xa0""dass\xc4\xa0""dart\xc4\xa0""dans\xc4\xa0""dann\xc4\xa0""dams" +"\xc4\xa0""daar\xc4\xa0""cyan\xc4\xa0""cuts\xc4\xa0""cute\xc4\xa0""curb\xc4\xa0""c" +"ups\xc4\xa0""cuff\xc4\xa0""cues\xc4\xa0""cual\xc4\xa0""ctrl\xc4\xa0""cron\xc4\xa0" +"""cref\xc4\xa0""crap\xc4\xa0""crad\xc4\xa0""crab\xc4\xa0""cozy\xc4\xa0""cows\xc4" +"\xa0""cout\xc4\xa0""cosa\xc4\xa0""cops\xc4\xa0""cope\xc4\xa0""coma\xc4\xa0""cold" +"\xc4\xa0""clog\xc4\xa0""clay\xc4\xa0""clan\xc4\xa0""city\xc4\xa0""chin\xc4\xa0""c" +"him\xc4\xa0""chez\xc4\xa0""cela\xc4\xa0""caud\xc4\xa0""cauc\xc4\xa0""cats\xc4\xa0" +"""caso\xc4\xa0""cash\xc4\xa0""casa\xc4\xa0""cars\xc4\xa0""carn\xc4\xa0""cant\xc4" +"\xa0""cans\xc4\xa0""cane\xc4\xa0""camb\xc4\xa0""calf\xc4\xa0""cafe\xc4\xa0""cada" +"\xc4\xa0""cDNA\xc4\xa0""cAMP\xc4\xa0""buzz\xc4\xa0""buys\xc4\xa0""busy\xc4\xa0""b" +"ust\xc4\xa0""bury\xc4\xa0""buoy\xc4\xa0""bunk\xc4\xa0""bugs\xc4\xa0""buds\xc4\xa0" +"""brib\xc4\xa0""bred\xc4\xa0""boys\xc4\xa0""bout\xc4\xa0""boom\xc4\xa0""bony\xc4" +"\xa0""bona\xc4\xa0""bold\xc4\xa0""body\xc4\xa0""blob\xc4\xa0""blew\xc4\xa0""blat" +"\xc4\xa0""blah\xc4\xa0""bits\xc4\xa0""bisc\xc4\xa0""bins\xc4\xa0""bile\xc4\xa0""b" +"ien\xc4\xa0""bids\xc4\xa0""bets\xc4\xa0""beta\xc4\xa0""best\xc4\xa0""bere\xc4\xa0" +"""benz\xc4\xa0""bent\xc4\xa0""beet\xc4\xa0""bees\xc4\xa0""been\xc4\xa0""beef\xc4" +"\xa0""bats\xc4\xa0""bass\xc4\xa0""bash\xc4\xa0""bart\xc4\xa0""bars\xc4\xa0""barn" +"\xc4\xa0""bark\xc4\xa0""bara\xc4\xa0""bapt\xc4\xa0""bans\xc4\xa0""bang\xc4\xa0""b" +"anc\xc4\xa0""bald\xc4\xa0""bait\xc4\xa0""bail\xc4\xa0""bags\xc4\xa0""baff\xc4\xa0" +"""baby\xc4\xa0""axle\xc4\xa0""axis\xc4\xa0""axes\xc4\xa0""away\xc4\xa0""avid\xc4" +"\xa0""avec\xc4\xa0""aval\xc4\xa0""aust\xc4\xa0""aura\xc4\xa0""aunt\xc4\xa0""auch" +"\xc4\xa0""at\xc3\x83\xc2\xa9\xc4\xa0""atop\xc4\xa0""as\xc3\x83\xc5\x83\xc4\xa0""a" +"sks\xc4\xa0""aryl\xc4\xa0""arts\xc4\xa0""army\xc4\xa0""arms\xc4\xa0""aria\xc4\xa0" +"""argv\xc4\xa0""args\xc4\xa0""argc\xc4\xa0""arcs\xc4\xa0""arbe\xc4\xa0""apro\xc4" +"\xa0""apps\xc4\xa0""apex\xc4\xa0""ants\xc4\xa0""anos\xc4\xa0""also\xc4\xa0""alot" +"\xc4\xa0""ally\xc4\xa0""alla\xc4\xa0""akin\xc4\xa0""ajax\xc4\xa0""aims\xc4\xa0""a" +"ids\xc4\xa0""ages\xc4\xa0""aged\xc4\xa0""adds\xc4\xa0""adam\xc4\xa0""acyl\xc4\xa0" +"""acts\xc4\xa0""acne\xc4\xa0""ache\xc4\xa0""able\xc4\xa0___,\xc4\xa0\x5c|_{\xc4\xa0" +"\x5c[[@\xc4\xa0[(\x5c[\xc4\xa0Zone\xc4\xa0Zion\xc4\xa0Zimm\xc4\xa0Zhou\xc4\xa0Zh" +"ao\xc4\xa0Zero\xc4\xa0Zend\xc4\xa0Zeit\xc4\xa0Zach\xc4\xa0Yuan\xc4\xa0Your\xc4\xa0" +"Yosh\xc4\xa0Yoga\xc4\xa0Yeah\xc4\xa0Yard\xc4\xa0Yang\xc4\xa0Yale\xc4\xa0YOUR\xc4" +"\xa0YORK\xc4\xa0Xbox\xc4\xa0XIII\xc4\xa0Wool\xc4\xa0Wong\xc4\xa0Wolf\xc4\xa0Witt" +"\xc4\xa0Wish\xc4\xa0Wise\xc4\xa0Wine\xc4\xa0Wife\xc4\xa0Wien\xc4\xa0Wide\xc4\xa0" +"Wick\xc4\xa0WiFi\xc4\xa0Weyl\xc4\xa0Were\xc4\xa0Went\xc4\xa0Welt\xc4\xa0Webb\xc4" +"\xa0Weak\xc4\xa0Ways\xc4\xa0Wave\xc4\xa0Warm\xc4\xa0Ware\xc4\xa0Ward\xc4\xa0Want" +"\xc4\xa0Wang\xc4\xa0Wald\xc4\xa0Wake\xc4\xa0Wait\xc4\xa0Wade\xc4\xa0WORK\xc4\xa0" +"WILL\xc4\xa0WHEN\xc4\xa0WHAT\xc4\xa0WARN\xc4\xa0WANT\xc4\xa0Vote\xc4\xa0Voor\xc4" +"\xa0Void\xc4\xa0Vine\xc4\xa0Vice\xc4\xa0Very\xc4\xa0Vera\xc4\xa0Vent\xc4\xa0Vamp" +"\xc4\xa0Vacc\xc4\xa0VIII\xc4\xa0VERY\xc4\xa0VEGF\xc4\xa0Utah\xc4\xa0Used\xc4\xa0" +"Upon\xc4\xa0Unix\xc4\xa0Uber\xc4\xa0USSR\xc4\xa0USDA\xc4\xa0URLs\xc4\xa0UINT\xc4" +"\xa0UCLA\xc4\xa0Twin\xc4\xa0True\xc4\xa0Troy\xc4\xa0Tris\xc4\xa0Trek\xc4\xa0Treg" +"\xc4\xa0Tree\xc4\xa0Tory\xc4\xa0Tort\xc4\xa0Tony\xc4\xa0Tong\xc4\xa0Todd\xc4\xa0" +"Tips\xc4\xa0Tiny\xc4\xa0Tina\xc4\xa0Till\xc4\xa0Tier\xc4\xa0Tian\xc4\xa0Thus\xc4" +"\xa0This\xc4\xa0They\xc4\xa0Then\xc4\xa0That\xc4\xa0Text\xc4\xa0Tess\xc4\xa0Tell" +"\xc4\xa0Teen\xc4\xa0Tate\xc4\xa0Task\xc4\xa0Tank\xc4\xa0Tang\xc4\xa0Tall\xc4\xa0" +"Talk\xc4\xa0TYPE\xc4\xa0TRUE\xc4\xa0TRAN\xc4\xa0TORT\xc4\xa0TODO\xc4\xa0TIME\xc4" +"\xa0THIS\xc4\xa0THEY\xc4\xa0THEN\xc4\xa0THEM\xc4\xa0THAT\xc4\xa0TEXT\xc4\xa0TEST" +"\xc4\xa0S\xc3\x83\xc2\xa3o\xc4\xa0Swan\xc4\xa0Suff\xc4\xa0Such\xc4\xa0Stur\xc4\xa0" +"Stop\xc4\xa0Stir\xc4\xa0Stim\xc4\xa0Stay\xc4\xa0Spot\xc4\xa0Spin\xc4\xa0Soup\xc4" +"\xa0Soul\xc4\xa0Sort\xc4\xa0Soon\xc4\xa0Sony\xc4\xa0Sons\xc4\xa0Sold\xc4\xa0Snap" +"\xc4\xa0Slow\xc4\xa0Slav\xc4\xa0Skip\xc4\xa0Skin\xc4\xa0Size\xc4\xa0Siem\xc4\xa0" +"Side\xc4\xa0Shut\xc4\xa0Show\xc4\xa0Shot\xc4\xa0Shop\xc4\xa0Shin\xc4\xa0Shim\xc4" +"\xa0Shen\xc4\xa0Sham\xc4\xa0Shah\xc4\xa0Sets\xc4\xa0Seth\xc4\xa0Send\xc4\xa0Semi" +"\xc4\xa0Self\xc4\xa0Seed\xc4\xa0Sean\xc4\xa0Seah\xc4\xa0Scul\xc4\xa0Schl\xc4\xa0" +"Scha\xc4\xa0Scar\xc4\xa0Says\xc4\xa0Save\xc4\xa0Saul\xc4\xa0Sart\xc4\xa0Sang\xc4" +"\xa0Same\xc4\xa0Salt\xc4\xa0Said\xc4\xa0SUCH\xc4\xa0STEM\xc4\xa0SPSS\xc4\xa0SOME" +"\xc4\xa0SNPs\xc4\xa0SIZE\xc4\xa0SDSS\xc4\xa0SARS\xc4\xa0SAME\xc4\xa0Ryan\xc4\xa0" +"Ruth\xc4\xa0Rust\xc4\xa0Rush\xc4\xa0Ruby\xc4\xa0Rptr\xc4\xa0Roth\xc4\xa0Ross\xc4" +"\xa0Rosa\xc4\xa0Root\xc4\xa0Room\xc4\xa0Rome\xc4\xa0Role\xc4\xa0Road\xc4\xa0Rita" +"\xc4\xa0Risk\xc4\xa0Rise\xc4\xa0Ride\xc4\xa0Rico\xc4\xa0Rice\xc4\xa0Rica\xc4\xa0" +"Rent\xc4\xa0Rein\xc4\xa0Reid\xc4\xa0Refs\xc4\xa0Reed\xc4\xa0Reds\xc4\xa0Rect\xc4" +"\xa0Rash\xc4\xa0Rare\xc4\xa0Rapt\xc4\xa0Rank\xc4\xa0Race\xc4\xa0RPMI\xc4\xa0RNAs" +"\xc4\xa0RNAi\xc4\xa0REST\xc4\xa0READ\xc4\xa0Qu\xc3\x83\xc2\xa9\xc4\xa0Quad\xc4\xa0" +"Qing\xc4\xa0Push\xc4\xa0Pure\xc4\xa0Pump\xc4\xa0Pull\xc4\xa0Prol\xc4\xa0Prix\xc4" +"\xa0Pref\xc4\xa0Prec\xc4\xa0Pour\xc4\xa0Pope\xc4\xa0Poor\xc4\xa0Pool\xc4\xa0Pont" +"\xc4\xa0Poll\xc4\xa0Pole\xc4\xa0Plus\xc4\xa0Plot\xc4\xa0Pink\xc4\xa0Pine\xc4\xa0" +"Pill\xc4\xa0Piet\xc4\xa0Pick\xc4\xa0Phen\xc4\xa0Peru\xc4\xa0Pero\xc4\xa0Perl\xc4" +"\xa0Peer\xc4\xa0Peak\xc4\xa0Path\xc4\xa0Past\xc4\xa0Paso\xc4\xa0Parm\xc4\xa0Papa" +"\xc4\xa0Pand\xc4\xa0Panc\xc4\xa0Pall\xc4\xa0Pair\xc4\xa0PTSD\xc4\xa0PROP\xc4\xa0" +"PROC\xc4\xa0PRES\xc4\xa0PPAR\xc4\xa0POST\xc4\xa0POSS\xc4\xa0PORT\xc4\xa0PLAY\xc4" +"\xa0PATH\xc4\xa0PAGE\xc4\xa0Oval\xc4\xa0Oste\xc4\xa0Oslo\xc4\xa0Oral\xc4\xa0Only" +"\xc4\xa0Once\xc4\xa0Omar\xc4\xa0Okay\xc4\xa0Ohio\xc4\xa0Odys\xc4\xa0Ober\xc4\xa0" +"OVER\xc4\xa0OPEN\xc4\xa0ONLY\xc4\xa0Null\xc4\xa0Nova\xc4\xa0Nous\xc4\xa0Nord\xc4" +"\xa0Node\xc4\xa0Noah\xc4\xa0Nine\xc4\xa0Nina\xc4\xa0Nile\xc4\xa0Nike\xc4\xa0Nick" +"\xc4\xa0Nice\xc4\xa0Next\xc4\xa0Neut\xc4\xa0Nest\xc4\xa0Nell\xc4\xa0Neil\xc4\xa0" +"Need\xc4\xa0Neal\xc4\xa0Navy\xc4\xa0Nate\xc4\xa0Nass\xc4\xa0Nano\xc4\xa0Nach\xc4" +"\xa0NaCl\xc4\xa0NULL\xc4\xa0NOTE\xc4\xa0NEWS\xc4\xa0NEED\xc4\xa0NCBI\xc4\xa0NCAA" +"\xc4\xa0NATO\xc4\xa0NASA\xc4\xa0NAME\xc4\xa0Myth\xc4\xa0Must\xc4\xa0Musk\xc4\xa0" +"Mush\xc4\xa0Mull\xc4\xa0Much\xc4\xa0Most\xc4\xa0Moss\xc4\xa0Moon\xc4\xa0Mono\xc4" +"\xa0Mold\xc4\xa0Mock\xc4\xa0Mitt\xc4\xa0Mist\xc4\xa0Mint\xc4\xa0Mink\xc4\xa0Ming" +"\xc4\xa0Mine\xc4\xa0Mind\xc4\xa0Mild\xc4\xa0Mike\xc4\xa0Mice\xc4\xa0MgCl\xc4\xa0" +"Mets\xc4\xa0Merr\xc4\xa0Menu\xc4\xa0Mend\xc4\xa0Mell\xc4\xa0Meat\xc4\xa0Mead\xc4" +"\xa0McCl\xc4\xa0Maya\xc4\xa0Mats\xc4\xa0Mask\xc4\xa0Marl\xc4\xa0Maps\xc4\xa0Many" +"\xc4\xa0Mant\xc4\xa0Mans\xc4\xa0Mang\xc4\xa0Mand\xc4\xa0Mama\xc4\xa0Mall\xc4\xa0" +"Male\xc4\xa0Mais\xc4\xa0Mail\xc4\xa0Mage\xc4\xa0Made\xc4\xa0Madd\xc4\xa0Mack\xc4" +"\xa0MUST\xc4\xa0MSCs\xc4\xa0MRSA\xc4\xa0MORE\xc4\xa0MARK\xc4\xa0MAPK\xc4\xa0MAKE" +"\xc4\xa0Lyon\xc4\xa0Lynn\xc4\xa0Lung\xc4\xa0Lund\xc4\xa0Luna\xc4\xa0Luke\xc4\xa0" +"Luis\xc4\xa0Lucy\xc4\xa0Love\xc4\xa0Lots\xc4\xa0Lost\xc4\xa0Loss\xc4\xa0Loop\xc4" +"\xa0Long\xc4\xa0Lomb\xc4\xa0Loan\xc4\xa0Lisa\xc4\xa0Ling\xc4\xa0Lily\xc4\xa0Life" +"\xc4\xa0Liam\xc4\xa0Levy\xc4\xa0Lenn\xc4\xa0Leib\xc4\xa0Left\xc4\xa0Leah\xc4\xa0" +"Leaf\xc4\xa0Lars\xc4\xa0Lans\xc4\xa0Lane\xc4\xa0Laid\xc4\xa0Lady\xc4\xa0Lack\xc4" +"\xa0Labs\xc4\xa0LOVE\xc4\xa0LOSS\xc4\xa0LORD\xc4\xa0LONG\xc4\xa0LIKE\xc4\xa0LIFE" +"\xc4\xa0LGBT\xc4\xa0LEFT\xc4\xa0LEDs\xc4\xa0Kyle\xc4\xa0Kush\xc4\xa0Kurt\xc4\xa0" +"Kong\xc4\xa0Koch\xc4\xa0Knox\xc4\xa0Kiss\xc4\xa0Kirk\xc4\xa0Kids\xc4\xa0Kick\xc4" +"\xa0Khan\xc4\xa0Khal\xc4\xa0Keys\xc4\xa0Kend\xc4\xa0Katz\xc4\xa0Kate\xc4\xa0Karn" +"\xc4\xa0Karl\xc4\xa0Kant\xc4\xa0Kang\xc4\xa0Kane\xc4\xa0Kamp\xc4\xa0KNOW\xc4\xa0" +"KIND\xc4\xa0Jury\xc4\xa0Jung\xc4\xa0June\xc4\xa0Jump\xc4\xa0July\xc4\xa0Judy\xc4" +"\xa0Jude\xc4\xa0Juan\xc4\xa0Json\xc4\xa0Jong\xc4\xa0Joey\xc4\xa0Joel\xc4\xa0Jobs" +"\xc4\xa0Joan\xc4\xa0Jill\xc4\xa0Jews\xc4\xa0Jets\xc4\xa0Jedi\xc4\xa0Jean\xc4\xa0" +"Jazz\xc4\xa0Jake\xc4\xa0Jail\xc4\xa0Jagu\xc4\xa0JUST\xc4\xa0JSON\xc4\xa0JOIN\xc4" +"\xa0JOHN\xc4\xa0JHEP\xc4\xa0Ivan\xc4\xa0Iter\xc4\xa0Isle\xc4\xa0Iron\xc4\xa0Iowa" +"\xc4\xa0Into\xc4\xa0Indy\xc4\xa0Icon\xc4\xa0Ibid\xc4\xa0ISIS\xc4\xa0INTO\xc4\xa0" +"INFO\xc4\xa0IEEE\xc4\xa0Hyde\xc4\xa0Hume\xc4\xa0Hull\xc4\xa0Hugo\xc4\xa0Huff\xc4" +"\xa0Http\xc4\xa0Host\xc4\xa0Horn\xc4\xa0Hopf\xc4\xa0Hook\xc4\xa0Hood\xc4\xa0Hong" +"\xc4\xa0Holy\xc4\xa0Holt\xc4\xa0Hole\xc4\xa0Hiro\xc4\xa0Hipp\xc4\xa0Hier\xc4\xa0" +"Hide\xc4\xa0Hess\xc4\xa0Herz\xc4\xa0Hert\xc4\xa0Hers\xc4\xa0Herr\xc4\xa0Here\xc4" +"\xa0HepG\xc4\xa0Help\xc4\xa0Hein\xc4\xa0Heck\xc4\xa0HeLa\xc4\xa0Haus\xc4\xa0Harm" +"\xc4\xa0Hank\xc4\xa0Hang\xc4\xa0Halo\xc4\xa0Half\xc4\xa0Hale\xc4\xa0Hair\xc4\xa0" +"Hack\xc4\xa0HTTP\xc4\xa0HTML\xc4\xa0HREF\xc4\xa0HPLC\xc4\xa0HOME\xc4\xa0HERE\xc4" +"\xa0HEAD\xc4\xa0HDAC\xc4\xa0HAVE\xc4\xa0HAND\xc4\xa0Gust\xc4\xa0Gunn\xc4\xa0Gulf" +"\xc4\xa0Grid\xc4\xa0Grey\xc4\xa0Gren\xc4\xa0Gray\xc4\xa0Gram\xc4\xa0Grab\xc4\xa0" +"Gott\xc4\xa0Gore\xc4\xa0Golf\xc4\xa0Gods\xc4\xa0GmbH\xc4\xa0Glad\xc4\xa0Giul\xc4" +"\xa0Gill\xc4\xa0Gift\xc4\xa0Gets\xc4\xa0Gest\xc4\xa0Gert\xc4\xa0Gent\xc4\xa0Gear" +"\xc4\xa0Gaza\xc4\xa0Gary\xc4\xa0Garn\xc4\xa0Gang\xc4\xa0Gamb\xc4\xa0GPIO\xc4\xa0" +"GABA\xc4\xa0""Furn\xc4\xa0""Funk\xc4\xa0""Fuel\xc4\xa0""Fuck\xc4\xa0""From\xc4\xa0" +"""Fraz\xc4\xa0""Fors\xc4\xa0""Ford\xc4\xa0""Font\xc4\xa0""Folk\xc4\xa0""Fold\xc4" +"\xa0""Flex\xc4\xa0""Flat\xc4\xa0""Flag\xc4\xa0""Five\xc4\xa0""Firm\xc4\xa0""Fine" +"\xc4\xa0""Fill\xc4\xa0""Figs\xc4\xa0""Feng\xc4\xa0""Feld\xc4\xa0""Feel\xc4\xa0""F" +"eed\xc4\xa0""Fear\xc4\xa0""Fast\xc4\xa0""Fasc\xc4\xa0""Fans\xc4\xa0""Fang\xc4\xa0" +"""Fame\xc4\xa0""Falk\xc4\xa0""Fair\xc4\xa0""FROM\xc4\xa0""FREE\xc4\xa0""FOUR\xc4" +"\xa0""FLAG\xc4\xa0""FISH\xc4\xa0""FILE\xc4\xa0""FIGS\xc4\xa0""FIFA\xc4\xa0""FAIL" +"\xc4\xa0""FACS\xc4\xa0""Eyes\xc4\xa0""Exit\xc4\xa0""Evil\xc4\xa0""Erin\xc4\xa0""E" +"rik\xc4\xa0""Eric\xc4\xa0""Epic\xc4\xa0""Enum\xc4\xa0""Else\xc4\xa0""Elsa\xc4\xa0" +"""Edge\xc4\xa0""Eden\xc4\xa0""Echo\xc4\xa0""Easy\xc4\xa0""Each\xc4\xa0""ESPN\xc4" +"\xa0""ELSE\xc4\xa0""EGFR\xc4\xa0""EEOC\xc4\xa0""EDTA\xc4\xa0""EDIT\xc4\xa0""Duty" +"\xc4\xa0""Dust\xc4\xa0""Dunn\xc4\xa0""Duke\xc4\xa0""Duck\xc4\xa0""Dual\xc4\xa0""D" +"rum\xc4\xa0""Drop\xc4\xa0""Drew\xc4\xa0""Draw\xc4\xa0""Dors\xc4\xa0""Door\xc4\xa0" +"""Dong\xc4\xa0""Done\xc4\xa0""Dogs\xc4\xa0""Diss\xc4\xa0""Disk\xc4\xa0""Dipl\xc4" +"\xa0""Dios\xc4\xa0""Dion\xc4\xa0""Diet\xc4\xa0""Dies\xc4\xa0""Didn\xc4\xa0""Diaz" +"\xc4\xa0""Dest\xc4\xa0""Dept\xc4\xa0""Dell\xc4\xa0""Deep\xc4\xa0""Dear\xc4\xa0""D" +"ean\xc4\xa0""Deal\xc4\xa0""Deaf\xc4\xa0""Dead\xc4\xa0""Days\xc4\xa0""Dawn\xc4\xa0" +"""Dave\xc4\xa0""Dash\xc4\xa0""Dart\xc4\xa0""Dark\xc4\xa0""Dans\xc4\xa0""Dana\xc4" +"\xa0""Dame\xc4\xa0""Dale\xc4\xa0""DRAM\xc4\xa0""DOWN\xc4\xa0""DMSO\xc4\xa0""DMEM" +"\xc4\xa0""DEGs\xc4\xa0""DEAL\xc4\xa0""DATE\xc4\xa0""DATA\xc4\xa0""DAPI\xc4\xa0""C" +"umm\xc4\xa0""Cubs\xc4\xa0""Ctrl\xc4\xa0""Cruz\xc4\xa0""Crus\xc4\xa0""Cron\xc4\xa0" +"""Crom\xc4\xa0""Crew\xc4\xa0""Cres\xc4\xa0""Cran\xc4\xa0""Cous\xc4\xa0""Cory\xc4" +"\xa0""Cort\xc4\xa0""Cors\xc4\xa0""Cork\xc4\xa0""Core\xc4\xa0""Cord\xc4\xa0""Cool" +"\xc4\xa0""Cold\xc4\xa0""Coin\xc4\xa0""Cody\xc4\xa0""Code\xc4\xa0""Cock\xc4\xa0""C" +"oca\xc4\xa0""Cobb\xc4\xa0""Club\xc4\xa0""City\xc4\xa0""Chow\xc4\xa0""Chip\xc4\xa0" +"""Chef\xc4\xa0""Chat\xc4\xa0""Chad\xc4\xa0""ChIP\xc4\xa0""Cave\xc4\xa0""Cash\xc4" +"\xa0""Cary\xc4\xa0""Carm\xc4\xa0""Cape\xc4\xa0""Cant\xc4\xa0""Cand\xc4\xa0""Cake" +"\xc4\xa0""Cain\xc4\xa0""Cafe\xc4\xa0""CXCR\xc4\xa0""CXCL\xc4\xa0""CURL\xc4\xa0""C" +"OPD\xc4\xa0""CODE\xc4\xa0""CMOS\xc4\xa0""CITY\xc4\xa0""CHAR\xc4\xa0""CASE\xc4\xa0" +"""CALL\xc4\xa0""Buzz\xc4\xa0""Bush\xc4\xa0""Buck\xc4\xa0""Buch\xc4\xa0""Bros\xc4" +"\xa0""Brom\xc4\xa0""Boys\xc4\xa0""Boyd\xc4\xa0""Bowl\xc4\xa0""Bour\xc4\xa0""Both" +"\xc4\xa0""Boss\xc4\xa0""Bose\xc4\xa0""Born\xc4\xa0""Borg\xc4\xa0""Bone\xc4\xa0""B" +"ond\xc4\xa0""Bomb\xc4\xa0""Bold\xc4\xa0""Boeh\xc4\xa0""Body\xc4\xa0""Boat\xc4\xa0" +"""Blog\xc4\xa0""Bing\xc4\xa0""Bian\xc4\xa0""Beth\xc4\xa0""Beta\xc4\xa0""Best\xc4" +"\xa0""Bess\xc4\xa0""Bert\xc4\xa0""Bent\xc4\xa0""Bend\xc4\xa0""Belt\xc4\xa0""Beer" +"\xc4\xa0""Bean\xc4\xa0""Bath\xc4\xa0""Bast\xc4\xa0""Bass\xc4\xa0""Bash\xc4\xa0""B" +"ars\xc4\xa0""Bard\xc4\xa0""Band\xc4\xa0""Ball\xc4\xa0""Balk\xc4\xa0""BRCA\xc4\xa0" +"""BOOL\xc4\xa0""Away\xc4\xa0""Aviv\xc4\xa0""Auss\xc4\xa0""Aunt\xc4\xa0""Atty\xc4" +"\xa0""Asst\xc4\xa0""Arts\xc4\xa0""Army\xc4\xa0""Apps\xc4\xa0""Anna\xc4\xa0""Andy" +"\xc4\xa0""Ampl\xc4\xa0""Amin\xc4\xa0""Alto\xc4\xa0""Also\xc4\xa0""Alan\xc4\xa0""A" +"jax\xc4\xa0""Ages\xc4\xa0""Acts\xc4\xa0""Acid\xc4\xa0""Aber\xc4\xa0""Abel\xc4\xa0" +"""ATCC\xc4\xa0""APIs\xc4\xa0""AMPK\xc4\xa0""AIDS\xc4\xa0""ADHD\xc4\xa0\xc4\xa0-*-\xc4\xa0,$$\xc4\xa0\x2b/-\xc4\xa0*/,\xc4\xa0**" +"_\xc4\xa0**[\xc4\xa0**(\xc4\xa0*);\xc4\xa0(\xc3\x82\xc2\xb1\xc4\xa0(\xc3\x82\xc2" +"\xa7\xc4\xa0(\xc3\x82\xc2\xa3\xc4\xa0({\x5c\xc4\xa0(__\xc4\xa0(\x5c~\xc4\xa0(\x5c" +"[\xc4\xa0(\x5c>\xc4\xa0(\x5c<\xc4\xa0(\x5c#\xc4\xa0([@\xc4\xa0(\x2b)\xc4\xa0(**\xc4" +"\xa0();\xc4\xa0().\xc4\xa0(),\xc4\xa0((-\xc4\xa0(((\xc4\xa0(%)\xc4\xa0($\x5c\xc4" +"\xa0($(\xc4\xa0(\x22[\xc4\xa0(!(\xc4\xa0\x27%\xc4\xa0" +"$|\x5c\xc4\xa0${\x5c\xc4\xa0$^{\xc4\xa0$[\x5c\xc4\xa0$<$\xc4\xa0$-\x5c\xc4\xa0$-" +"$\xc4\xa0$(\x5c\xc4\xa0$(-\xc4\xa0$$|\xc4\xa0$$\x5c\xc4\xa0$$(\xc4\xa0\x22\x5c\x5c" +"\xc4\xa0\x22>>>=\xc3\xa2\xc4" +"\xa2\xc4\xbf=-=-=\x22{{=\x22@\x2b=\x22${=\x22$(=\x22\x22>;\x5c;\x5c;;;;;\x22><::" +":::$$\x5c:\x22){8859808075546789666660005555333328002222211021001471137113011177" +"11031101103810161008100710061005100410020200012501230115010101000090008000750070" +"00650060005900500045004400400039003800370036003500340033003200310030002900280027" +"0026002500240023002100190018001700160015001300110010/\xc3\xa2\xc4\xa2\xc4\xad.\xc3" +"\xa2\xc4\xa2\xc4\xbe.\xc3\xa2\xc4\xa2\xc4\xad.^[@.]{}...\x27.(\x5c[.\x22,\x22.\x22" +");.\x22)..\x22\x22\x22-\xc3\xa2\xc4\xa4\xc2\xac-\x5c-\x5c,\xc3\xa2\xc4\xa2\xc4\xbf" +",{{\x5c,^[@,\x5c,\x5c\x2b-\x2b-\x2b\x2b){*\xc3\xa2\xc4\xa2\xc4\xb2**),)\xc3\xa2\xc4" +"\xaa\xc4\xb4)\xc3\xa2\xc4\xa2\xc4\xb6)}}\x5c)}{\x5c)}=\x5c)}/\x5c)},\x5c)}(\x5c)" +"}$.)}$,)}$$)|$()_{\x5c)^[@)](#)\x5c].)\x5c,\x5c)={\x5c):=\x5c).]()...),$$)*(-))*" +"-))).))))))$.))$,()());()).()),()\x22>(\x27./(\x27\x27,\x27][\x27\x27]);\x27" +"]))\x27)->\x27));&=&\x5c$\xc3\xa2\xc4\xa2\xc4\xbb$\xc3\xa2\xc4\xa2\xc4\xb5$_{\x5c" +"$^{\x5c$^{-\x22\xc3\xa2\xc4\xa2\xc4\xb6\x22});\x22}).\x22}),\x22>\xc4\xa0\x5c<\xc4\xa0\x5c;" +"\xc4\xa0\x5c:\xc4\xa0\x5c-\xc4\xa0\x5c\x2b\xc4\xa0\x5c(\xc4\xa0\x5c\x27\xc4\xa0\x5c" +"%\xc4\xa0\x5c$\xc4\xa0\x5c#\xc4\xa0\x5c\x22\xc4\xa0\x5c!\xc4\xa0[{\xc4\xa0[`\xc4" +"\xa0[_\xc4\xa0[^\xc4\xa0[\x5c\xc4\xa0[@\xc4\xa0[<\xc4\xa0[-\xc4\xa0[\x27\xc4\xa0" +"[#\xc4\xa0[\x22\xc4\xa0Xu\xc4\xa0XY\xc4\xa0XV\xc4\xa0XP\xc4\xa0XL\xc4\xa0Wu\xc4\xa0" +"WT\xc4\xa0WS\xc4\xa0WR\xc4\xa0WP\xc4\xa0WM\xc4\xa0WL\xc4\xa0WE\xc4\xa0WD\xc4\xa0" +"WC\xc4\xa0WB\xc4\xa0VT\xc4\xa0VS\xc4\xa0VR\xc4\xa0VO\xc4\xa0VM\xc4\xa0VL\xc4\xa0" +"VC\xc4\xa0VB\xc4\xa0Um\xc4\xa0Uh\xc4\xa0UV\xc4\xa0UM\xc4\xa0UL\xc4\xa0UK\xc4\xa0" +"UE\xc4\xa0Ts\xc4\xa0Tg\xc4\xa0Tb\xc4\xa0TX\xc4\xa0TV\xc4\xa0TT\xc4\xa0TS\xc4\xa0" +"TP\xc4\xa0TM\xc4\xa0TK\xc4\xa0TD\xc4\xa0Sz\xc4\xa0SW\xc4\xa0SR\xc4\xa0SK\xc4\xa0" +"SG\xc4\xa0Rx\xc4\xa0Rs\xc4\xa0Rd\xc4\xa0RX\xc4\xa0RV\xc4\xa0RR\xc4\xa0RL\xc4\xa0" +"RH\xc4\xa0RD\xc4\xa0Qt\xc4\xa0QR\xc4\xa0QB\xc4\xa0Pt\xc4\xa0Pf\xc4\xa0Pd\xc4\xa0" +"Pb\xc4\xa0PW\xc4\xa0PV\xc4\xa0PM\xc4\xa0Oz\xc4\xa0Og\xc4\xa0OW\xc4\xa0OS\xc4\xa0" +"OM\xc4\xa0OL\xc4\xa0OK\xc4\xa0OH\xc4\xa0OD\xc4\xa0OB\xc4\xa0OA\xc4\xa0Ny\xc4\xa0" +"NZ\xc4\xa0NW\xc4\xa0NV\xc4\xa0NT\xc4\xa0NN\xc4\xa0NK\xc4\xa0NJ\xc4\xa0ND\xc4\xa0" +"Mt\xc4\xa0Ms\xc4\xa0Mn\xc4\xa0Md\xc4\xa0Mb\xc4\xa0MY\xc4\xa0MX\xc4\xa0MW\xc4\xa0" +"MK\xc4\xa0MG\xc4\xa0MF\xc4\xa0MB\xc4\xa0LW\xc4\xa0LV\xc4\xa0LU\xc4\xa0LR\xc4\xa0" +"LN\xc4\xa0LM\xc4\xa0LF\xc4\xa0LB\xc4\xa0Kw\xc4\xa0KY\xc4\xa0KS\xc4\xa0KR\xc4\xa0" +"KP\xc4\xa0KO\xc4\xa0KL\xc4\xa0KK\xc4\xa0KB\xc4\xa0Jr\xc4\xa0JR\xc4\xa0JP\xc4\xa0" +"JJ\xc4\xa0JE\xc4\xa0JD\xc4\xa0JA\xc4\xa0Iz\xc4\xa0Ik\xc4\xa0If\xc4\xa0IX\xc4\xa0" +"IV\xc4\xa0IU\xc4\xa0IQ\xc4\xa0IL\xc4\xa0IJ\xc4\xa0IA\xc4\xa0Hz\xc4\xa0Hg\xc4\xa0" +"HY\xc4\xa0HW\xc4\xa0HV\xc4\xa0HU\xc4\xa0HQ\xc4\xa0HN\xc4\xa0HM\xc4\xa0HK\xc4\xa0" +"HH\xc4\xa0HG\xc4\xa0Gn\xc4\xa0GW\xc4\xa0GV\xc4\xa0GL\xc4\xa0GI\xc4\xa0GG\xc4\xa0" +"""Fc\xc4\xa0""FY\xc4\xa0""FX\xc4\xa0""FW\xc4\xa0""FT\xc4\xa0""FS\xc4\xa0""FP\xc4" +"\xa0""FN\xc4\xa0""FM\xc4\xa0""FK\xc4\xa0""FH\xc4\xa0""FF\xc4\xa0""Ez\xc4\xa0""Ek" +"\xc4\xa0""Eh\xc4\xa0""EW\xc4\xa0""EQ\xc4\xa0""EF\xc4\xa0""EA\xc4\xa0""Dw\xc4\xa0" +"""Dh\xc4\xa0""Db\xc4\xa0""DX\xc4\xa0""DU\xc4\xa0""DT\xc4\xa0""DQ\xc4\xa0""DJ\xc4" +"\xa0""DG\xc4\xa0""DB\xc4\xa0""Cx\xc4\xa0""Cs\xc4\xa0""Cf\xc4\xa0""Cd\xc4\xa0""CW" +"\xc4\xa0""CG\xc4\xa0""Bj\xc4\xa0""Bh\xc4\xa0""Bd\xc4\xa0""BY\xc4\xa0""BX\xc4\xa0" +"""BW\xc4\xa0""BV\xc4\xa0""BP\xc4\xa0""BN\xc4\xa0""BH\xc4\xa0""BF\xc4\xa0""BD\xc4" +"\xa0""Ay\xc4\xa0""Ax\xc4\xa0""AZ\xc4\xa0""AX\xc4\xa0""AV\xc4\xa0""AO\xc4\xa0""AJ" +"\xc4\xa0""AH\xc4\xa0@@\xc4\xa0@\x22\xc4\xa0\x3f\x3f\xc4\xa0\x3f>\xc4\xa0\x3f\x22" +"\xc4\xa0>=\xc4\xa0=\x5c\xc4\xa0=>\xc4\xa0=&\xc4\xa0<\x3f\xc4\xa0<>\xc4\xa0<=\xc4" +"\xa0<<\xc4\xa0\xc4\xa0-=\xc4\xa0-.\xc4\xa0-,\xc4\xa0-(\xc4\xa0,\x5c\xc4\xa0,\x22" +"\xc4\xa0\x2b\x5c\xc4\xa0\x2b=\xc4\xa0\x2b\x2b\xc4\xa0*_\xc4\xa0*[\xc4\xa0*=\xc4\xa0" +"*.\xc4\xa0*,\xc4\xa0*(\xc4\xa0*\x22\xc4\xa0){\xc4\xa0)\x5c\xc4\xa0);\xc4\xa0):\xc4" +"\xa0).\xc4\xa0),\xc4\xa0))\xc4\xa0)$\xc4\xa0)\x22\xc4\xa0(`\xc4\xa0(@\xc4\xa0(>\xc4" +"\xa0(=\xc4\xa0(<\xc4\xa0(;\xc4\xa0(:\xc4\xa0(/\xc4\xa0(.\xc4\xa0(-\xc4\xa0(,\xc4" +"\xa0(\x27\xc4\xa0(&\xc4\xa0(#\xc4\xa0\x27{\xc4\xa0\x27_\xc4\xa0\x27\x5c\xc4\xa0\x27" +"[\xc4\xa0\x27@\xc4\xa0\x27:\xc4\xa0\x27/\xc4\xa0\x27-\xc4\xa0\x27,\xc4\xa0\x27\x2b" +"\xc4\xa0\x27*\xc4\xa0\x27)\xc4\xa0\x27%\xc4\xa0\x27$\xc4\xa0\x27#\xc4\xa0\x27\x22" +"\xc4\xa0&\x5c\xc4\xa0&&\xc4\xa0&$\xc4\xa0&#\xc4\xa0%}\xc4\xa0%{\xc4\xa0%.\xc4\xa0" +"%)\xc4\xa0%%\xc4\xa0$_\xc4\xa0$@\xc4\xa0$.\xc4\xa0$,\xc4\xa0$\x2b\xc4\xa0$%\xc4\xa0" +"#{\xc4\xa0##\xc4\xa0#\x22\xc4\xa0\x22~\xc4\xa0\x22{\xc4\xa0\x22`\xc4\xa0\x22_\xc4" +"\xa0\x22^\xc4\xa0\x22[\xc4\xa0\x22@\xc4\xa0\x22>\xc4\xa0\x22;\xc4\xa0\x22:\xc4\xa0" +"\x22/\xc4\xa0\x22\x2b\xc4\xa0\x22*\xc4\xa0\x22(\xc4\xa0\x22\x27\xc4\xa0\x22%\xc4" +"\xa0\x22#\xc4\xa0!\x22\xc4\xa0!!\xc3\xaf\xc2\xbd\xc2\xa1\xc3\xaf\xc2\xbc\xc5\x81" +"\xc3\xaf\xc2\xbc\xc4\xbc\xc3\xaf\xc2\xbc\xc4\xb3\xc3\xaf\xc2\xbc\xc4\xae\xc3\xaf" +"\xc2\xbc\xc4\xab\xc3\xaf\xc2\xbc\xc4\xaa\xc3\xaf\xc2\xbc\xc4\xa3\xc3\xad\xc4\xb7" +"\xc4\xbe\xc3\xad\xc4\xb7\xc4\xba\xc3\xad\xc4\xb7\xc2\xb4\xc3\xac\xc4\xbf\xc4\xba" +"\xc3\xac\xc4\xbf\xc4\xa6\xc3\xac\xc4\xbf\xc4\xa2\xc3\xac\xc4\xbc\xc4\xb6\xc3\xac" +"\xc4\xb9\xc4\xb2\xc3\xac\xc4\xb8\xc2\xb4\xc3\xac\xc4\xa6\xc4\xbe\xc3\xac\xc2\xa7" +"\xc4\xa2\xc3\xab\xc4\xb1\xc4\xa6\xc3\xab\xc4\xac\xc4\xb6\xc3\xab\xc2\xa6\xc2\xac" +"\xc3\xab\xc2\xa5\xc2\xbc\xc3\xab\xc2\xa1\xc4\xbe\xc3\xaa\xc2\xb8\xc2\xb0\xc3\xaa" +"\xc2\xb3\xc5\x82\xc3\xaa\xc2\xb0\xc4\xa2\xc3\xa9\xc4\xbf\xc5\x80\xc3\xa9\xc4\xbf" +"\xc2\xa2\xc3\xa9\xc4\xbd\xc4\xa8\xc3\xa9\xc4\xbb\xc4\xb2\xc3\xa9\xc4\xbb\xc2\xa4" +"\xc3\xa9\xc4\xb9\xc2\xb4\xc3\xa9\xc4\xb9\xc2\xae\xc3\xa9\xc4\xb8\xc4\xb5\xc3\xa9" +"\xc4\xb8\xc4\xad\xc3\xa9\xc4\xb8\xc2\xa2\xc3\xa9\xc4\xb7\xc2\xb7\xc3\xa9\xc4\xa9" +"\xc4\xb3\xc3\xa9\xc4\xa9\xc4\xb1\xc3\xa9\xc4\xa9\xc4\xaf\xc3\xa9\xc4\xa9\xc4\xae" +"\xc3\xa9\xc4\xa7\xc4\xaf\xc3\xa9\xc4\xa5\xc2\xbd\xc3\xa9\xc4\xa5\xc2\xa8\xc3\xa9" +"\xc4\xa4\xc2\xa3\xc3\xa9\xc4\xa3\xc4\xb5\xc3\xa9\xc4\xa2\xc4\xbc\xc3\xa9\xc4\xa2" +"\xc4\xab\xc3\xa9\xc2\xab\xc4\xba\xc3\xa8\xc4\xab\xc2\xb2\xc3\xa8\xc4\xa9\xc2\xaa" +"\xc3\xa8\xc4\xa2\xc4\xae\xc3\xa8\xc4\xa2\xc4\xa7\xc3\xa8\xc4\xa2\xc4\xa5\xc3\xa8" +"\xc2\xbf\xc4\xbd\xc3\xa8\xc2\xbf\xc4\xbb\xc3\xa8\xc2\xbf\xc4\xb6\xc3\xa8\xc2\xbf" +"\xc4\xa9\xc3\xa8\xc2\xba\xc2\xab\xc3\xa8\xc2\xb7\xc2\xaf\xc3\xa8\xc2\xb5\xc2\xb7" +"\xc3\xa8\xc2\xb1\xc2\xa1\xc3\xa8\xc2\xaf\xc2\xb7\xc3\xa8\xc2\xaf\xc2\xb4\xc3\xa8" +"\xc2\xae\xc2\xbe\xc3\xa8\xc2\xa8\xc4\xba\xc3\xa8\xc2\xa8\xc4\xa2\xc3\xa8\xc2\xa7" +"\xc2\xa3\xc3\xa8\xc2\xa6\xc4\xad\xc3\xa8\xc2\xa2\xc2\xab\xc3\xa8\xc2\xa1\xc4\xae" +"\xc3\xa8\xc2\xa1\xc2\xa8\xc3\xa7\xc5\x83\xc4\xab\xc3\xa7\xc5\x82\xc4\xa3\xc3\xa7" +"\xc5\x81\xc2\xa5\xc3\xa7\xc4\xbf\xc4\xa2\xc3\xa7\xc4\xbe\xc5\x81\xc3\xa7\xc4\xbe" +"\xc4\xad\xc3\xa7\xc4\xbd\xc2\xb8\xc3\xa7\xc4\xbd\xc2\xb4\xc3\xa7\xc4\xbd\xc2\xae" +"\xc3\xa7\xc4\xbc\xc4\xa6\xc3\xa7\xc4\xbb\xc2\xba\xc3\xa7\xc4\xb7\xc4\xae\xc3\xa7" +"\xc4\xb6\xc5\x81\xc3\xa7\xc4\xb6\xc2\xbb\xc3\xa7\xc4\xb6\xc2\xb1\xc3\xa7\xc4\xb2" +"\xc4\xa8\xc3\xa7\xc4\xb1\xc2\xbe\xc3\xa7\xc4\xb0\xc2\xb0\xc3\xa7\xc4\xac\xc2\xb6" +"\xc3\xa7\xc4\xab\xc2\xb9\xc3\xa7\xc4\xab\xc2\xa9\xc3\xa7\xc4\xa6\xc2\xb6\xc3\xa7" +"\xc4\xa6\xc2\xa1\xc3\xa7\xc4\xa4\xc2\xb9\xc3\xa7\xc2\xbd\xc2\xae\xc3\xa7\xc2\xbb" +"\xc4\xb5\xc3\xa7\xc2\xbb\xc4\xb1\xc3\xa7\xc2\xbb\xc4\xa6\xc3\xa7\xc2\xb4\xc5\x82" +"\xc3\xa7\xc2\xb3\xc2\xbb\xc3\xa7\xc2\xb1\xc2\xbb\xc3\xa7\xc2\xae\xc4\xb9\xc3\xa7" +"\xc2\xae\xc2\xa1\xc3\xa7\xc2\xac\xc2\xac\xc3\xa7\xc2\xab\xc4\xad\xc3\xa7\xc2\xa9" +"\xc2\xba\xc3\xa7\xc2\xa8\xc4\xad\xc3\xa7\xc2\xa7\xc4\xaf\xc3\xa7\xc2\xa7\xc4\xa3" +"\xc3\xa7\xc2\xa4\xc2\xbe\xc3\xa7\xc2\xa4\xc2\xba\xc3\xa6\xc5\x83\xc2\xa4\xc3\xa6" +"\xc5\x83\xc2\xa3\xc3\xa6\xc5\x82\xc4\xa9\xc3\xa6\xc5\x82\xc2\xbc\xc3\xa6\xc5\x82" +"\xc2\xb7\xc3\xa6\xc5\x81\xc2\xa5\xc3\xa6\xc4\xbf\xc2\xa5\xc3\xa6\xc4\xbf\xc2\xa1" +"\xc3\xa6\xc4\xbe\xc5\x81\xc3\xa6\xc4\xbe\xc4\xaf\xc3\xa6\xc4\xbe\xc4\xab\xc3\xa6" +"\xc4\xbe\xc4\xaa\xc3\xa6\xc4\xbe\xc4\xa2\xc3\xa6\xc4\xbd\xc2\xb8\xc3\xa6\xc4\xbd" +"\xc2\xb4\xc3\xa6\xc4\xbb\xc4\xa4\xc3\xa6\xc4\xba\xc4\xb0\xc3\xa6\xc4\xba\xc2\xaf" +"\xc3\xa6\xc4\xb9\xc5\x82\xc3\xa6\xc4\xb9\xc2\xb6\xc3\xa6\xc4\xb8\xc2\xb0\xc3\xa6" +"\xc4\xb7\xc4\xbb\xc3\xa6\xc4\xb6\xc2\xbf\xc3\xa6\xc4\xb6\xc2\xbe\xc3\xa6\xc4\xb6" +"\xc2\xb9\xc3\xa6\xc4\xb6\xc2\xaf\xc3\xa6\xc4\xb1\xc4\xb2\xc3\xa6\xc4\xb0\xc2\xa5" +"\xc3\xa6\xc4\xae\xc4\xa9\xc3\xa6\xc4\xae\xc4\xa3\xc3\xa6\xc4\xab\xc4\xad\xc3\xa6" +"\xc4\xab\xc4\xa2\xc3\xa6\xc4\xaa\xc4\xb8\xc3\xa6\xc4\xaa\xc4\xb2\xc3\xa6\xc4\xaa" +"\xc2\xb7\xc3\xa6\xc4\xa6\xc5\x81\xc3\xa6\xc4\xa6\xc4\xb1\xc3\xa6\xc4\xa5\xc4\xa7" +"\xc3\xa6\xc4\xa5\xc2\xb3\xc3\xa6\xc4\xa3\xc2\xaf\xc3\xa6\xc4\xa2\xc4\xbf\xc3\xa6" +"\xc4\xa2\xc2\xa7\xc3\xa6\xc2\xb5\xc4\xa3\xc3\xa6\xc2\xb4\xc2\xbb\xc3\xa6\xc2\xb3" +"\xc2\xa8\xc3\xa6\xc2\xb2\xc2\xa1\xc3\xa6\xc2\xb1\xc4\xa4\xc3\xa6\xc2\xb0\xc4\xb9" +"\xc3\xa6\xc2\xb0\xc4\xb3\xc3\xa6\xc2\xb0\xc4\xb1\xc3\xa6\xc2\xb0\xc2\xb4\xc3\xa6" +"\xc2\xaf\xc4\xb6\xc3\xa6\xc2\xac\xc2\xa1\xc3\xa6\xc2\xa9\xc5\x81\xc3\xa6\xc2\xa8" +"\xc2\xa1\xc3\xa6\xc2\xa5\xc5\x83\xc3\xa5\xc5\x83\xc4\xba\xc3\xa5\xc5\x83\xc4\xb9" +"\xc3\xa5\xc5\x83\xc4\xb2\xc3\xa5\xc5\x83\xc2\xa6\xc3\xa5\xc5\x82\xc2\xb4\xc3\xa5" +"\xc5\x82\xc2\xb1\xc3\xa5\xc5\x81\xc2\xba\xc3\xa5\xc5\x80\xc4\xad\xc3\xa5\xc4\xbe" +"\xc2\xb0\xc3\xa5\xc4\xbe\xc2\xa8\xc3\xa5\xc4\xbd\xc5\x82\xc3\xa5\xc4\xbd\xc5\x80" +"\xc3\xa5\xc4\xbd\xc2\xbe\xc3\xa5\xc4\xbd\xc2\xbd\xc3\xa5\xc4\xbb\xc2\xa8\xc3\xa5" +"\xc4\xb7\xc4\xb1\xc3\xa5\xc4\xb5\xc4\xa3\xc3\xa5\xc4\xb4\xc4\xae\xc3\xa5\xc4\xb2" +"\xc4\xb3\xc3\xa5\xc4\xb2\xc4\xb0\xc3\xa5\xc4\xb2\xc4\xaf\xc3\xa5\xc4\xb2\xc4\xae" +"\xc3\xa5\xc4\xb2\xc4\xaa\xc3\xa5\xc4\xb1\xc4\xba\xc3\xa5\xc4\xb1\xc4\xb9\xc3\xa5" +"\xc4\xb1\xc4\xb8\xc3\xa5\xc4\xb1\xc4\xb3\xc3\xa5\xc4\xb1\xc4\xac\xc3\xa5\xc4\xb1" +"\xc4\xa4\xc3\xa5\xc4\xb1\xc2\xb7\xc3\xa5\xc4\xb1\xc2\xaa\xc3\xa5\xc4\xb1\xc2\xa3" +"\xc3\xa5\xc4\xb0\xc5\x81\xc3\xa5\xc4\xb0\xc2\xbb\xc3\xa5\xc4\xaf\xc4\xb7\xc3\xa5" +"\xc4\xaf\xc4\xa3\xc3\xa5\xc4\xae\xc4\xb8\xc3\xa5\xc4\xad\xc4\xb7\xc3\xa5\xc4\xac" +"\xc5\x82\xc3\xa5\xc4\xac\xc4\xbd\xc3\xa5\xc4\xac\xc2\xa8\xc3\xa5\xc4\xac\xc2\xa1" +"\xc3\xa5\xc4\xab\xc4\xaf\xc3\xa5\xc4\xaa\xc4\xbf\xc3\xa5\xc4\xaa\xc4\xb9\xc3\xa5" +"\xc4\xaa\xc4\xa8\xc3\xa5\xc4\xaa\xc2\xb6\xc3\xa5\xc4\xaa\xc2\xb0\xc3\xa5\xc4\xaa" +"\xc2\xa9\xc3\xa5\xc4\xa9\xc2\xba\xc3\xa5\xc4\xa8\xc4\xaf\xc3\xa5\xc4\xa8\xc4\xa7" +"\xc3\xa5\xc4\xa7\xc4\xaa\xc3\xa5\xc4\xa7\xc4\xa5\xc3\xa5\xc4\xa7\xc2\xb6\xc3\xa5" +"\xc4\xa7\xc2\xb3\xc3\xa5\xc4\xa7\xc2\xac\xc3\xa5\xc4\xa7\xc2\xa8\xc3\xa5\xc4\xa7" +"\xc2\xa5\xc3\xa5\xc4\xa5\xc4\xb1\xc3\xa5\xc4\xa2\xc4\xad\xc3\xa5\xc4\xa2\xc2\xbc" +"\xc3\xa5\xc2\xbf\xc4\xa7\xc3\xa5\xc2\xbf\xc4\xa5\xc3\xa5\xc2\xbe\xc4\xb9\xc3\xa5" +"\xc2\xbe\xc4\xae\xc3\xa5\xc2\xbe\xc4\xaa\xc3\xa5\xc2\xbd\xc4\xb5\xc3\xa5\xc2\xbc" +"\xc4\xb7\xc3\xa5\xc2\xbc\xc4\xb1\xc3\xa5\xc2\xbc\xc4\xa2\xc3\xa5\xc2\xbb\xc2\xba" +"\xc3\xa5\xc2\xba\xc4\xb6\xc3\xa5\xc2\xba\xc4\xb1\xc3\xa5\xc2\xba\xc2\xa6\xc3\xa5" +"\xc2\xb9\xc2\xb6\xc3\xa5\xc2\xb9\xc2\xb4\xc3\xa5\xc2\xb9\xc2\xb3\xc3\xa5\xc2\xb8" +"\xc4\xa4\xc3\xa5\xc2\xb8\xc2\xb8\xc3\xa5\xc2\xb7\xc2\xb2\xc3\xa5\xc2\xb7\xc2\xa5" +"\xc3\xa5\xc2\xb0\xc4\xb3\xc3\xa5\xc2\xb0\xc4\xb1\xc3\xa5\xc2\xb0\xc4\xa8\xc3\xa5" +"\xc2\xb0\xc2\xb1\xc3\xa5\xc2\xaf\xc2\xbe\xc3\xa5\xc2\xaf\xc2\xb9\xc3\xa5\xc2\xae" +"\xc5\x81\xc3\xa5\xc2\xae\xc5\x80\xc3\xa5\xc2\xae\xc4\xbc\xc3\xa5\xc2\xae\xc4\xae" +"\xc3\xa5\xc2\xae\xc4\xab\xc3\xa5\xc2\xae\xc4\xa5\xc3\xa5\xc2\xae\xc2\xb9\xc3\xa5" +"\xc2\xae\xc2\xb6\xc3\xa5\xc2\xa7\xc4\xad\xc3\xa5\xc2\xa5\xc2\xbd\xc3\xa5\xc2\xa5" +"\xc2\xb3\xc3\xa5\xc2\xa4\xc4\xbc\xc3\xa5\xc2\xa4\xc4\xb8\xc3\xa5\xc2\xa4\xc4\xab" +"\xc3\xa5\xc2\xa4\xc2\xa9\xc3\xa5\xc2\xa4\xc2\xa7\xc3\xa4\xc2\xbf\xc4\xbf\xc3\xa4" +"\xc2\xbf\xc2\xa1\xc3\xa4\xc2\xbe\xc4\xbd\xc3\xa4\xc2\xbe\xc4\xad\xc3\xa4\xc2\xbd" +"\xc5\x82\xc3\xa4\xc2\xbd\xc4\xbe\xc3\xa4\xc2\xbd\xc4\xb7\xc3\xa4\xc2\xbd\xc4\xb5" +"\xc3\xa4\xc2\xbd\xc4\xaf\xc3\xa4\xc2\xbd\xc4\xa8\xc3\xa4\xc2\xbc\xc4\xbc\xc3\xa4" +"\xc2\xbb\xc4\xb8\xc3\xa4\xc2\xbb\xc4\xac\xc3\xa4\xc2\xbb\xc2\xbb\xc3\xa4\xc2\xbb" +"\xc2\xa3\xc3\xa4\xc2\xba\xc4\xbd\xc3\xa4\xc2\xba\xc4\xb0\xc3\xa4\xc2\xba\xc4\xae" +"\xc3\xa4\xc2\xba\xc4\xad\xc3\xa4\xc2\xba\xc4\xa8\xc3\xa4\xc2\xba\xc2\xba\xc3\xa4" +"\xc2\xba\xc2\xa4\xc3\xa4\xc2\xb9\xc5\x81\xc3\xa4\xc2\xb9\xc4\xad\xc3\xa4\xc2\xb9" +"\xc4\xaa\xc3\xa4\xc2\xb8\xc5\x83\xc3\xa4\xc2\xb8\xc4\xb8\xc3\xa4\xc2\xb8\xc4\xb0" +"\xc3\xa4\xc2\xb8\xc4\xaf\xc3\xa4\xc2\xb8\xc4\xad\xc3\xa4\xc2\xb8\xc4\xac\xc3\xa4" +"\xc2\xb8\xc4\xab\xc3\xa4\xc2\xb8\xc2\xbb\xc3\xa4\xc2\xb8\xc2\xba\xc3\xa3\xc4\xa5" +"\xc5\x83\xc3\xa3\xc4\xa5\xc5\x82\xc3\xa3\xc4\xa5\xc5\x81\xc3\xa3\xc4\xa5\xc5\x80" +"\xc3\xa3\xc4\xa5\xc4\xb9\xc3\xa3\xc4\xa5\xc4\xb8\xc3\xa3\xc4\xa5\xc4\xb5\xc3\xa3" +"\xc4\xa5\xc4\xb3\xc3\xa3\xc4\xa5\xc4\xb2\xc3\xa3\xc4\xa5\xc4\xad\xc3\xa3\xc4\xa5" +"\xc4\xac\xc3\xa3\xc4\xa5\xc4\xa9\xc3\xa3\xc4\xa5\xc4\xa8\xc3\xa3\xc4\xa5\xc4\xa3" +"\xc3\xa3\xc4\xa5\xc2\xbb\xc3\xa3\xc4\xa5\xc2\xac\xc3\xa3\xc4\xa5\xc2\xaa\xc3\xa3" +"\xc4\xa5\xc2\xa9\xc3\xa3\xc4\xa5\xc2\xa5\xc3\xa3\xc4\xa5\xc2\xa3\xc3\xa3\xc4\xa5" +"\xc2\xa2\xc3\xa3\xc4\xa5\xc2\xa1\xc3\xa3\xc4\xa4\xc5\x83\xc3\xa3\xc4\xa4\xc4\xb4" +"\xc3\xa3\xc4\xa4\xc4\xb1\xc3\xa3\xc4\xa4\xc4\xaf\xc3\xa3\xc4\xa4\xc4\xa9\xc3\xa3" +"\xc4\xa4\xc4\xa6\xc3\xa3\xc4\xa4\xc4\xa5\xc3\xa3\xc4\xa4\xc2\xbb\xc3\xa3\xc4\xa4" +"\xc2\xba\xc3\xa3\xc4\xa4\xc2\xb5\xc3\xa3\xc4\xa4\xc2\xb3\xc3\xa3\xc4\xa4\xc2\xb1" +"\xc3\xa3\xc4\xa4\xc2\xb0\xc3\xa3\xc4\xa4\xc2\xab\xc3\xa3\xc4\xa4\xc2\xaa\xc3\xa3" +"\xc4\xa4\xc2\xa8\xc3\xa3\xc4\xa4\xc2\xa7\xc3\xa3\xc4\xa4\xc2\xa6\xc3\xa3\xc4\xa4" +"\xc2\xa3\xc3\xa3\xc4\xa4\xc2\xa2\xc3\xa3\xc4\xa3\xc5\x83\xc3\xa3\xc4\xa3\xc5\x82" +"\xc3\xa3\xc4\xa3\xc4\xbc\xc3\xa3\xc4\xa3\xc4\xba\xc3\xa3\xc4\xa3\xc4\xb6\xc3\xa3" +"\xc4\xa3\xc4\xb4\xc3\xa3\xc4\xa3\xc4\xb3\xc3\xa3\xc4\xa3\xc4\xac\xc3\xa3\xc4\xa3" +"\xc4\xaa\xc3\xa3\xc4\xa3\xc2\xbf\xc3\xa3\xc4\xa3\xc2\xbb\xc3\xa3\xc4\xa3\xc2\xb9" +"\xc3\xa3\xc4\xa3\xc2\xb3\xc3\xa3\xc4\xa3\xc2\xb0\xc3\xa3\xc4\xa3\xc2\xa4\xc3\xa3" +"\xc4\xa3\xc2\xa1\xc3\xa3\xc4\xa2\xc4\xb1\xc3\xa3\xc4\xa2\xc4\xb0\xc3\xa3\xc4\xa2" +"\xc4\xaf\xc3\xa3\xc4\xa2\xc4\xae\xc3\xa3\xc4\xa2\xc4\xa4\xc3\xa3\xc4\xa2\xc4\xa3" +"\xc3\xa2\xc4\xba\xc4\xa7\xc3\xa2\xc4\xb9\xc4\xb1\xc3\xa2\xc4\xb8\xc2\xaa\xc3\xa2" +"\xc4\xad\xc2\xaf\xc3\xa2\xc4\xaa\xc2\xb6\xc3\xa2\xc4\xa3\xc4\xa6\xc3\xa2\xc4\xa2" +"\xc5\x81\xc3\xa2\xc4\xa2\xc4\xb3\xc3\xa2\xc4\xa2\xc4\xae\xc3\xa2\xc4\xa2\xc4\xac" +"\xc3\xa2\xc4\xa2\xc4\xa7\xc3\xa2\xc4\xa2\xc4\xa4\xc3\xa2\xc4\xa2\xc2\xb3\xc3\xa2" +"\xc4\xa2\xc2\xaf\xc3\xa2\xc4\xa2\xc2\xa8\xc3\xa2\xc4\xa2\xc2\xa1\xc3\xa1\xc4\xa2" +"\xc4\xb2\xc3\xa1\xc4\xa2\xc4\xa2\xc3\xa1\xc4\xa2\xc2\xba\xc3\xa1\xc4\xa2\xc2\xb8" +"\xc3\xa1\xc4\xa2\xc2\xaf\xc3\xa1\xc4\xa2\xc2\xac\xc3\xa1\xc2\xbf\xc4\xb8\xc3\xa1" +"\xc2\xbf\xc2\xa6\xc3\xa1\xc2\xbd\xc4\xb2\xc3\xa1\xc2\xbd\xc2\xb8\xc3\xa1\xc2\xbd" +"\xc2\xb2\xc3\xa1\xc2\xbd\xc2\xb0\xc3\xa1\xc2\xbb\xc4\xbb\xc3\xa1\xc2\xbb\xc4\xb3" +"\xc3\xa1\xc2\xbb\xc4\xa9\xc3\xa1\xc2\xbb\xc4\xa5\xc3\xa1\xc2\xbb\xc4\xa3\xc3\xa1" +"\xc2\xba\xc2\xbf\xc3\xa1\xc2\xba\xc2\xa5\xc3\xa1\xc2\xba\xc2\xa3\xc3\xa1\xc2\xba" +"\xc2\xa1\xc3\xa0\xc2\xb9\xc4\xab\xc3\xa0\xc2\xb9\xc4\xa6\xc3\xa0\xc2\xb9\xc4\xa3" +"\xc3\xa0\xc2\xb8\xc5\x83\xc3\xa0\xc2\xb8\xc4\xbc\xc3\xa0\xc2\xb8\xc4\xbb\xc3\xa0" +"\xc2\xb8\xc4\xb9\xc3\xa0\xc2\xb8\xc4\xb7\xc3\xa0\xc2\xb8\xc4\xb6\xc3\xa0\xc2\xb8" +"\xc4\xaa\xc3\xa0\xc2\xb8\xc4\xa9\xc3\xa0\xc2\xb8\xc4\xa6\xc3\xa0\xc2\xb8\xc4\xa3" +"\xc3\xa0\xc2\xb8\xc2\xb4\xc3\xa0\xc2\xb8\xc2\xb1\xc3\xa0\xc2\xb8\xc2\xb0\xc3\xa0" +"\xc2\xb8\xc2\xab\xc3\xa0\xc2\xb8\xc2\xaa\xc3\xa0\xc2\xb8\xc2\xa7\xc3\xa0\xc2\xb8" +"\xc2\xa5\xc3\xa0\xc2\xb8\xc2\xa3\xc3\xa0\xc2\xb8\xc2\xa2\xc3\xa0\xc2\xb8\xc2\xa1" +"\xc3\xa0\xc2\xb5\xc4\xaf\xc3\xa0\xc2\xb1\xc4\xaf\xc3\xa0\xc2\xb1\xc4\xa3\xc3\xa0" +"\xc2\xb0\xc2\xbf\xc3\xa0\xc2\xaf\xc4\xaf\xc3\xa0\xc2\xaf\xc4\xa3\xc3\xa0\xc2\xae" +"\xc4\xb7\xc3\xa0\xc2\xae\xc2\xbf\xc3\xa0\xc2\xae\xc2\xa4\xc3\xa0\xc2\xab\xc4\xa9" +"\xc3\xa0\xc2\xaa\xc2\xbe\xc3\xa0\xc2\xa7\xc4\xaf\xc3\xa0\xc2\xa7\xc4\xa9\xc3\xa0" +"\xc2\xa6\xc2\xbf\xc3\xa0\xc2\xa6\xc2\xbe\xc3\xa0\xc2\xa6\xc2\xb0\xc3\xa0\xc2\xa5" +"\xc4\xaf\xc3\xa0\xc2\xa5\xc4\xad\xc3\xa0\xc2\xa5\xc4\xaa\xc3\xa0\xc2\xa5\xc4\xa9" +"\xc3\xa0\xc2\xa5\xc4\xa3\xc3\xa0\xc2\xa5\xc4\xa2\xc3\xa0\xc2\xa4\xc4\xb9\xc3\xa0" +"\xc2\xa4\xc4\xa4\xc3\xa0\xc2\xa4\xc2\xbf\xc3\xa0\xc2\xa4\xc2\xbe\xc3\xa0\xc2\xa4" +"\xc2\xb5\xc3\xa0\xc2\xa4\xc2\xb2\xc3\xa0\xc2\xa4\xc2\xb0\xc3\xa0\xc2\xa4\xc2\xaf" +"\xc3\xa0\xc2\xa4\xc2\xa8\xc3\xa0\xc2\xa4\xc2\xa6\xc3\xa0\xc2\xa4\xc2\xa4\xc3\x95" +"\xc2\xa1\xc3\x95\xc3\x8e\xc2\xba""B\xc3\x88\xc4\xbdi\xc3\x85\xc4\xa4y\xc3\x85\xc4" +"\xa4o\xc3\x85\xc4\xa4""a\xc3\x85\xc2\xa3i\xc3\x84\xc4\xa3s\xc3\x84\xc4\xa3r\xc3\x84" +"\xc4\xa3n\xc3\x84\xc4\xa3m\xc3\x84\xc2\xb1z\xc3\x84\xc2\xb1r\xc3\x84\xc2\xb1n\xc3" +"\x84\xc2\xb1m\xc3\x84\xc2\xb1k\xc3\x83\xc5\x83o\xc3\x83\xc5\x83n\xc3\x83\xc5\x83" +"m\xc3\x83\xc5\x83""f\xc3\x83\xc5\x83""c\xc3\x83\xc2\xbdm\xc3\x83\xc2\xbct\xc3\x83" +"\xc2\xbck\xc3\x83\xc2\xbch\xc3\x83\xc2\xb6t\xc3\x83\xc2\xb6l\xc3\x83\xc2\xb6k\xc3" +"\x83\xc2\xb4t\xc3\x83\xc2\xb3w\xc3\x83\xc2\xb3s\xc3\x83\xc2\xb3g\xc3\x83\xc2\xaa" +"s\xc3\x83\xc2\xa1z\xc3\x83\xc2\xa1t\xc3\x83\xc2\xa1m\xc3\x83\xc2\xa1l\xc3\x83\xc2" +"\xa1k\xc3\x83\xc2\xa1g\xc3\x83\xc2\xa1""d\xc3\x83\xc2\xa1""c\xc3\x82\xc2\xb0,~\x5c" +"]~).~),}}|}}[}}/}}\x27}|^}|\x5c}{|}{-}^\x2b}^*}]$}\x5c|}\x5c{}\x5c;}\x5c!}=(};\x5c" +"}.\x5c})-})\x2b}))})(}(-}&\x5c}$\x5c}$;}$:}\x22,|{\x5c|^{|$.{}{{|\x5c{$\x5cz\xc3" +"\x84\xc4\xa7zzizykzosziazezzelzekzagyttyrsymlxyzxslxsdxmmxFFwynweyvuevndvimvikvi" +"iveeutzukuuksujetsdtlstgztfnsvgskbsdlsdkrssrpcrirraxpmbpltpllpeipcmpciovyouxouko" +"koohloghobyn\xc3\x84\xc4\xbdnlmneknejmuxmmrmmcl\xc3\x84\xc2\xb1l\xc3\x83\xc2\xa9" +"kteksijspjpgjosjonjenjekjeejayi\xc3\x84\xc4\xa9iyairqinzikuiktikhijoiekiejhuihpp" +"gpugnuftpfebelneaxdtddrvdbgc\xc3\x83\xc2\xa9""cppcntcmsclscgiceqcdnbysbukbpsblrb" +"lkbazawtavgapkamdakyakuakkajiahnahlagtafxaeaacsacmabc`,`_{|_{[_{\x2b_{*__>__.__)" +"__(_.\x22_->_**_);^{[^--^-$^\x2b_^\x2b^^\x2b\x5c^\x2b(^\x2b$^*_^*\x5c^*,^**^).^)" +",]}\x5c]}$]{\x5c]{.]_{]^.]^,]]>]];]],]\x5c\x5c][^][@].\x5c]->],\x5c]):]$.]$,]$$]" +"\x22,\x5c}\x5c\x5c](\x5c,$\x5c*,\x5c%$\x5c\x22:\x5c\x22,[{\x5c[])[\x5c#YepYLEWKH" +"WHMVOLUrlUnsUTRUSYUSPUSHUMPUIDUICUCKTeXStdSrcSTDSRCSIDRSPRPCROWPsiPRLPIDPHYPHAPE" +"SPCMPADOpsOWSOUSOTTORNOOKOMAOIDODYNOSNEYNAPMsgMTPMSGMOVMIXLRQLEYLEXKESKENImgIdxI" +"dsITTISMIRTIRDIQRIPVIPSIPEIORINOIMOILYIFYIFFIERIDAICsICKICHIANHPPGTTGTCGRPGMPGIS" +"GGTGCTGATGANGALGAGGACGAAFLDFETESHEOFENVENNEMAELYEEPECsECDDTDDRVDLTDIGDEPDBGCoVCo" +"ACmdCfgCXXCTXCTTCTSCRACPPCMCCLKCFGByeBtnBbbBURBPFBOXBIOBINBADAyeApiAVAAUXAUDATSA" +"SMARPAPSAPHANSANKANAALKAGTADS\x3f**\x3f).\x3f\x22,>{{>).>\x27;>\x22;>\x22,=\x5c{" +"=\x5c\x22==\x27=(\x5c=${=$(=\x22_=\x22\x5c=\x22/=\x22-;{\x5c;./-//\x22>.\x5c\x22.[^.[@.(*/**.,*.**-***:*(**(()}\x2b)|^)|\x5c){\x5c){#" +")_\x5c)^\x5c)];)].)],)\x5c\x5c)\x5c[)\x5c<)\x5c*)[@)[()[$)=-)=()/\x5c).\x5c).[)-" +"\x5c)--)-()\x2b\x5c)\x2b()){))^))\x5c))\x3f))=)):)(\x5c)\x27,)$\x5c)$;)$-)$))\x22" +",([]([\x27(@\x22(\x3f:(-\x5c(){()`():(\x27<(\x27/($_(\x22\x5c(\x22<(\x22/(\x22.(" +"\x22%\x27}\x5c\x27},\x27}(\x27}$\x27ve\x27re\x27ll\x27_{\x27];\x27].\x27],\x27\x3f" +"\x22\x27=>\x27:\x27\x27.\x22\x27,\x5c\x27)\x5c\x27);\x27):\x27).\x27),\x27)$\x27" +"(\x5c\x27\x27(\x27\x27$\x27$.\x27$,\x27\x22>&=\x5c&&\x5c%--%);%).%),%\x22}#{$\x22" +"}^\x22};\x22}:\x22}.\x22},\x22];\x22].\x22],\x22])\x22\x3f>\x22\x3f\x22\x22>\x22" +"\x22/>\x22)]\x22),![(!).!),\xc4\xaa\xc4\xba\xc4\xa0\xc4\x8d\xc4\xa0\xc4\x89\xc4\xa0" +"\xc3\xad\xc4\xa0\xc3\x95\xc4\x9b[\xc4\x91\xc4\x83\xc4\x8f\xc4\x83\xc3\xaf\xc2\xac" +"\xc3\xac\xc4\xbe\xc3\xac\xc4\xad\xc3\xac\xc4\xac\xc3\xab\xc5\x82\xc3\xab\xc4\xb5" +"\xc3\xab\xc4\xa4\xc3\xab\xc2\xa9\xc3\xa9\xc5\x82\xc3\xa9\xc5\x81\xc3\xa9\xc4\xbc" +"\xc3\xa9\xc4\xba\xc3\xa9\xc4\xb6\xc3\xa9\xc2\xbb\xc3\xa9\xc2\xaa\xc3\xa9\xc2\xa6" +"\xc3\xa9\xc2\xa3\xc3\xa9\xc2\xa2\xc3\xa9\xc2\xa1\xc3\xa8\xc5\x83\xc3\xa8\xc4\xbb" +"\xc3\xa8\xc4\xb0\xc3\xa8\xc4\xad\xc3\xa8\xc4\xac\xc3\xa8\xc4\xaa\xc3\xa8\xc4\xa6" +"\xc3\xa8\xc4\xa4\xc3\xa8\xc4\xa3\xc3\xa8\xc2\xbe\xc3\xa8\xc2\xbd\xc3\xa8\xc2\xbc" +"\xc3\xa8\xc2\xbb\xc3\xa8\xc2\xb6\xc3\xa8\xc2\xb4\xc3\xa8\xc2\xb3\xc3\xa8\xc2\xb2" +"\xc3\xa8\xc2\xb0\xc3\xa8\xc2\xab\xc3\xa8\xc2\xaa\xc3\xa8\xc2\xa9\xc3\xa8\xc2\xa3" +"\xc3\xa7\xc4\xb9\xc3\xa7\xc4\xb8\xc3\xa7\xc4\xaa\xc3\xa7\xc4\xa3\xc3\xa7\xc2\xbe" +"\xc3\xa7\xc2\xbc\xc3\xa7\xc2\xba\xc3\xa7\xc2\xb7\xc3\xa7\xc2\xb6\xc3\xa7\xc2\xb5" +"\xc3\xa7\xc2\xb2\xc3\xa7\xc2\xa6\xc3\xa7\xc2\xa5\xc3\xa7\xc2\xa2\xc3\xa7\xc2\xa1" +"\xc3\xa6\xc4\xb5\xc3\xa6\xc4\xb4\xc3\xa6\xc4\xad\xc3\xa6\xc4\xac\xc3\xa6\xc4\xa7" +"\xc3\xa6\xc4\xa4\xc3\xa6\xc2\xbc\xc3\xa6\xc2\xba\xc3\xa6\xc2\xb8\xc3\xa6\xc2\xb7" +"\xc3\xa6\xc2\xb6\xc3\xa6\xc2\xae\xc3\xa6\xc2\xa7\xc3\xa6\xc2\xa3\xc3\xa6\xc2\xa1" +"\xc3\xa5\xc4\xbf\xc3\xa5\xc4\xb8\xc3\xa5\xc4\xb3\xc3\xa5\xc4\xa6\xc3\xa5\xc4\xa4" +"\xc3\xa5\xc4\xa3\xc3\xa5\xc2\xb1\xc3\xa5\xc2\xa3\xc3\xa5\xc2\xa2\xc3\xa1\xc5\x81" +"\xc3\xa1\xc5\x80\xc3\xa1\xc2\xbe\xc3\xa1\xc2\xb9\xc3\xa1\xc2\xb8\xc3\xa0\xc2\xbd" +"\xc3\xa0\xc2\xba\xc3\xa0\xc2\xb3\xc3\xa0\xc2\xac\xc3\xa0\xc2\xa9\xc3\xa0\xc2\xa8" +"\xc3\x9b\xc4\xb7\xc3\x9a\xc2\xaf\xc3\x99\xc4\xb0\xc3\x99\xc4\xad\xc3\x99\xc2\xbe" +"\xc3\x98\xc4\xae\xc3\x98\xc2\xba\xc3\x98\xc2\xb8\xc3\x98\xc2\xb7\xc3\x98\xc2\xb6" +"\xc3\x98\xc2\xb5\xc3\x98\xc2\xb2\xc3\x98\xc2\xb0\xc3\x98\xc2\xab\xc3\x97\xc5\x82" +"\xc3\x97\xc4\xbd\xc3\x97\xc4\xb9\xc3\x97\xc4\xb5\xc3\x97\xc2\xa8\xc3\x97\xc2\xa7" +"\xc3\x97\xc2\xa4\xc3\x97\xc2\xa2\xc3\x97\xc2\xa1\xc3\x96\xc4\xa2\xc3\x95\xc2\xb8" +"\xc3\x95\xc2\xa5\xc3\x91\xc4\xba\xc3\x91\xc4\xb9\xc3\x91\xc4\xb6\xc3\x91\xc4\xb3" +"\xc3\x90\xc4\xb9\xc3\x8f\xc4\xb7\xc3\x8f\xc4\xaa\xc3\x8e\xc2\xbe\xc3\x8e\xc2\xb6" +"\xc3\x89\xc4\xbb\xc3\x86\xc2\xa1\xc3\x85\xc4\xb5\xc3\x85\xc4\xb3\xc3\x85\xc4\xaf" +"\xc3\x85\xc4\xaa\xc3\x85\xc4\xa8\xc3\x85\xc4\xa6\xc3\x85\xc2\xb3\xc3\x85\xc2\xb1" +"\xc3\x85\xc2\xaf\xc3\x85\xc2\xab\xc3\x85\xc2\xa5\xc3\x84\xc5\x81\xc3\x84\xc4\xb9" +"\xc3\x84\xc4\xb5\xc3\x84\xc4\xa2\xc3\x84\xc2\xbe\xc3\x84\xc2\xab\xc3\x83\xc4\xbd" +"\xc3\x83\xc4\xb1\xc3\x83\xc2\xbb\xc3\x83\xc2\xb2\xc3\x83\xc2\xb0\xc3\x82\xc5\x81" +"\xc3\x82\xc5\x80\xc3\x82\xc4\xbf\xc3\x82\xc4\xbe\xc3\x82\xc4\xbd\xc3\x82\xc4\xbb" +"\xc3\x82\xc4\xb8\xc3\x82\xc4\xb7\xc3\x82\xc4\xb6\xc3\x82\xc4\xb4\xc3\x82\xc4\xb2" +"\xc3\x82\xc4\xb1\xc3\x82\xc4\xb0\xc3\x82\xc4\xae\xc3\x82\xc4\xad\xc3\x82\xc4\xac" +"\xc3\x82\xc4\xab\xc3\x82\xc4\xa9\xc3\x82\xc4\xa8\xc3\x82\xc4\xa7\xc3\x82\xc4\xa5" +"\xc3\x82\xc4\xa3\xc3\x82\xc2\xbe\xc3\x82\xc2\xb9\xc3\x82\xc2\xb4\xc3\x82\xc2\xb3" +"\xc3\x82\xc2\xb2\xc3\x82\xc2\xac\xc3\x82\xc2\xaa\xc3\x82\xc2\xa8\xc3\x82\xc2\xa6" +"\xc3\x82\xc2\xa4\xc3\x82\xc2\xa2\xc2\xb7\xc2\xb8~^~=~:~/~.~-}~}\x3f}>}%|`>\x5c>[>/>->,>$=`=[=/=.=%=#<_<\x5c;|;/;,:.:&:%:#/_/[/@/\x3f/\x2b/)/\x27/%/$/#" +".|.;.\x2b.&-\x27,_,,,\x2b,&,#\x2b|\x2b\x22*{*\x2b)~)>)&)!(|\x27t\x27s\x27m\x27""d" +"\x27^\x27>&\x2b%\x5c%;%,%(#,#\x27\x22|!_!/!.!,!\x27\xc4\xa1\xc4\x9f\xc4\x9e\xc4\x9d" +"\xc4\x9c\xc4\x9a\xc4\x99\xc4\x98\xc4\x97\xc4\x96\xc4\x95\xc4\x94\xc4\x93\xc4\x92" +"\xc4\x90\xc4\x8e\xc4\x8b\xc4\x88\xc4\x87\xc4\x86\xc4\x85\xc4\x84\xc4\x82\xc4\x81" +"\xc4\x80\xc3\xb4\xc3\xb3\xc3\xb2\xc3\xb1\xc3\xae\xc3\x9f\xc3\x9e\xc3\x9d\xc3\x9c" +"\xc3\x94\xc3\x93\xc3\x92\xc3\x8d\xc3\x8c\xc3\x8b\xc3\x8a\xc3\x87"; +constexpr std::array mpt_additional_vocab = {{ + {.id = 0, .content={0x18,13}, .special=true}, + {.id = 1, .content={0x25,11}, .special=true}, + {.id = 50254, .content={0x0,24}, .special=false}, + {.id = 50255, .content={0x0,23}, .special=false}, + {.id = 50256, .content={0x0,22}, .special=false}, + {.id = 50257, .content={0x0,21}, .special=false}, + {.id = 50258, .content={0x0,20}, .special=false}, + {.id = 50259, .content={0x0,19}, .special=false}, + {.id = 50260, .content={0x0,18}, .special=false}, + {.id = 50261, .content={0x0,17}, .special=false}, + {.id = 50262, .content={0x0,16}, .special=false}, + {.id = 50263, .content={0x0,15}, .special=false}, + {.id = 50264, .content={0x0,14}, .special=false}, + {.id = 50265, .content={0x0,13}, .special=false}, + {.id = 50266, .content={0x0,12}, .special=false}, + {.id = 50267, .content={0x0,11}, .special=false}, + {.id = 50268, .content={0x0,10}, .special=false}, + {.id = 50269, .content={0x0,9}, .special=false}, + {.id = 50270, .content={0x0,8}, .special=false}, + {.id = 50271, .content={0x0,7}, .special=false}, + {.id = 50272, .content={0x0,6}, .special=false}, + {.id = 50273, .content={0x0,5}, .special=false}, + {.id = 50274, .content={0x0,4}, .special=false}, + {.id = 50275, .content={0x0,3}, .special=false}, + {.id = 50276, .content={0x0,2}, .special=false} +}}; + +constexpr std::array, 50009> mpt_merges = {{ + {{0x30,2},{0x30,2}}, {{0x30,2},{0x1f,1}}, {{0x30,2},{0x28,1}}, {{0xae5,1},{0x1a,1}}, + {{0x2b,1},{0x1b,1}}, {{0xaf1,1},{0x1a,1}}, {{0x1d,1},{0x1b,1}}, {{0x30,4},{0x30,4}}, + {{0xb44,3},{0xaeb,2}}, {{0x1a,1},{0xaf1,1}}, {{0x28,1},{0x1f,1}}, {{0x30,2},{0xae7,1}}, + {{0x1a,1},{0x1b,1}}, {{0x30,2},{0x1d,1}}, {{0x30,2},{0xde9,1}}, {{0x30,2},{0xaea,1}}, + {{0x2b,1},{0xae7,1}}, {{0x2b,1},{0x1f,1}}, {{0x1d,1},{0xaf1,1}}, {{0x1a,1},{0x1c,1}}, + {{0x1a,1},{0xae7,1}}, {{0x28,1},{0x1b,1}}, {{0x28,1},{0xb2f,1}}, {{0x30,2},{0x27,1}}, + {{0x30,2},{0x1e,1}}, {{0x30,2},{0xbb5,1}}, {{0x1095,3},{0x1b,1}}, {{0x2b,2},{0x2d,1}}, + {{0xc49,3},{0x1e,1}}, {{0x28,1},{0xaf1,1}}, {{0x30,2},{0x2b,2}}, {{0x1d,1},{0xae2,1}}, + {{0x30,2},{0x1c,1}}, {{0x30,2},{0xae0,1}}, {{0x2b,1},{0xb55,2}}, {{0x2b,1},{0xaea,1}}, + {{0xb44,3},{0x1d,1}}, {{0xb2f,1},{0x1a,1}}, {{0x432,1},{0x432,1}}, {{0x28,1},{0xae7,1}}, + {{0x261f,4},{0x1c,1}}, {{0x30,8},{0x30,8}}, {{0xaf1,1},{0x1d,1}}, {{0x30,2},{0xae5,1}}, + {{0xb44,3},{0xae5,1}}, {{0x1a,2},{0x1f,1}}, {{0xaea,1},{0x1f,1}}, {{0x1a,1},{0x1f,1}}, + {{0x1a,1},{0xb2f,1}}, {{0x30,2},{0xb64,2}}, {{0x30,2},{0x1b,1}}, {{0xae7,1},{0x1f,1}}, + {{0x1d,1},{0xae0,1}}, {{0x30,2},{0xb2f,1}}, {{0x30,2},{0x1a,1}}, {{0x2b,1},{0xb2f,1}}, + {{0x2b,1},{0x1c,1}}, {{0x1d,1},{0x1f,1}}, {{0x2b,1},{0xae0,1}}, {{0x2b,1},{0x2d,1}}, + {{0x30,2},{0x2d,1}}, {{0xb7d,1},{0x1a,1}}, {{0xae2,1},{0x1f,1}}, {{0x30,2},{0x10f3,1}}, + {{0x30,2},{0x10f6,1}}, {{0x30,2},{0xae6,2}}, {{0x1d,1},{0xb2f,1}}, {{0x28,1},{0xae0,1}}, + {{0x30,2},{0x2445e,1}}, {{0xb2f,1},{0xaf2,1}}, {{0x432,2},{0x432,2}}, {{0xae2,1},{0xae7,1}}, + {{0x28,1},{0xaea,1}}, {{0xb52,2},{0xb54,3}}, {{0x1d,1},{0xde9,1}}, {{0x1084,3},{0x1a,1}}, + {{0xae2,1},{0xaf1,1}}, {{0x30,2},{0xbeb,1}}, {{0x20bb,3},{0xb63,2}}, {{0x28,1},{0x1c,1}}, + {{0xa4d,2},{0xa51,2}}, {{0x19b3,4},{0xb52,2}}, {{0x30,2},{0xb55,2}}, {{0xae2,1},{0x1b,1}}, + {{0x30,2},{0xd54,1}}, {{0x30,2},{0x10ef,1}}, {{0xd41,3},{0x1f,1}}, {{0xb7d,1},{0xb78,2}}, + {{0x28,1},{0xaf2,1}}, {{0xc1c,2},{0xae5,1}}, {{0xae2,1},{0xb2f,1}}, {{0xaea,1},{0x1a,1}}, + {{0x30,2},{0x116c,1}}, {{0x2b,1},{0x1e,1}}, {{0xae7,1},{0x1a,1}}, {{0x30,2},{0xaf2,1}}, + {{0x30,4},{0x30,2}}, {{0x441c,3},{0xed0,3}}, {{0x2b,1},{0xaf1,1}}, {{0x30,2},{0xaeb,2}}, + {{0xceb,3},{0xb55,2}}, {{0x30,2},{0xb31,1}}, {{0x1095,3},{0xae7,1}}, {{0xaea,1},{0xae5,1}}, + {{0x30,16},{0x30,16}}, {{0x1f,1},{0xb78,2}}, {{0x1d,1},{0x1c,1}}, {{0x30,2},{0xc1c,2}}, + {{0x30,2},{0x10ec,1}}, {{0xc37,3},{0xb71,2}}, {{0x1095,3},{0xb2f,1}}, {{0x28,1},{0x2d,1}}, + {{0x28,1},{0xbb5,1}}, {{0x1a,1},{0xae0,1}}, {{0x441c,3},{0x1a,1}}, {{0xae2,1},{0xae0,1}}, + {{0x924,1},{0x924,1}}, {{0x30,2},{0xb7d,1}}, {{0xaf1,1},{0x2b,1}}, {{0x441c,3},{0xae5,1}}, + {{0x27,1},{0x1a,1}}, {{0xb52,2},{0x1a,1}}, {{0x30,2},{0xbe4,1}}, {{0x70ea,3},{0x1257,2}}, + {{0x441c,3},{0xcb8,2}}, {{0x30,2},{0x2446c,1}}, {{0x12fe,1},{0xae2,1}}, {{0xcd9,3},{0x1a,1}}, + {{0xb64,2},{0xae7,1}}, {{0x30,2},{0x278af,1}}, {{0x1d,1},{0xae7,1}}, {{0xaf1,1},{0x28,1}}, + {{0x27,1},{0x27,1}}, {{0x30,2},{0xbe0,1}}, {{0xaeb,2},{0xaf1,1}}, {{0x177c,3},{0xaeb,2}}, + {{0x7c4,1},{0x7c4,1}}, {{0xae6,2},{0x1f,1}}, {{0xb65,2},{0x1f,1}}, {{0xae5,1},{0x1f,1}}, + {{0xcc7,3},{0x21,1}}, {{0xc67,2},{0x1f,1}}, {{0x1095,3},{0x1f,1}}, {{0x30,2},{0x10f0,1}}, + {{0xceb,3},{0xb4b,2}}, {{0xc49,3},{0xaf1,1}}, {{0x30,2},{0xaf1,1}}, {{0xb2f,1},{0x1c,1}}, + {{0x30,2},{0x1b4e3,1}}, {{0x1f,1},{0xae5,1}}, {{0xc67,2},{0x1c,1}}, {{0xd41,3},{0x1a,1}}, + {{0x432,4},{0x432,4}}, {{0xb78,2},{0xae7,1}}, {{0x30,2},{0x27b6,1}}, {{0x2b,1},{0xb7d,1}}, + {{0x30,2},{0xbe7,1}}, {{0xd41,3},{0xae2,1}}, {{0x1095,3},{0xb64,2}}, {{0x28,1},{0x2b,2}}, + {{0xb65,2},{0xae7,1}}, {{0x1d,1},{0xaea,1}}, {{0x1084,3},{0xaf2,1}}, {{0xc30,2},{0xb2f,1}}, + {{0xb71,2},{0xae0,1}}, {{0x1d,1},{0xb64,2}}, {{0x30,2},{0x6ac5,1}}, {{0x1d,1},{0x27,1}}, + {{0xeb2,1},{0x1a,1}}, {{0xc1c,2},{0xaf2,1}}, {{0x1257,2},{0x1b,1}}, {{0x30,2},{0x10ca,1}}, + {{0xb6c,3},{0xc55,2}}, {{0x30,2},{0x10f7,1}}, {{0xbcb,3},{0x28,1}}, {{0xae0,1},{0xb9d,3}}, + {{0xc8a,2},{0xb54,3}}, {{0x2b,1},{0xb7d,2}}, {{0x1a,2},{0x1c,1}}, {{0x734,1},{0x734,1}}, + {{0xb6c,3},{0x1a,1}}, {{0x30,2},{0x7c4,1}}, {{0x30,2},{0x10f2,1}}, {{0x30,2},{0x432,1}}, + {{0xc4d,2},{0xde4,2}}, {{0xb63,2},{0x1f,1}}, {{0x27,1},{0x1f,1}}, {{0x20bb,3},{0xbe8,3}}, + {{0xb64,2},{0x1c,1}}, {{0x27cea,1},{0xae7,1}}, {{0xb8f,2},{0x1f,1}}, {{0x19b3,4},{0xae6,2}}, + {{0xb47,2},{0xb2f,1}}, {{0xae2,1},{0x1c,1}}, {{0xd41,3},{0xae5,1}}, {{0x30,2},{0xae2,2}}, + {{0x30,2},{0x11ef,2}}, {{0x1f,1},{0x1a,1}}, {{0x30,2},{0x43e3,1}}, {{0x30,2},{0xd5c,1}}, + {{0xb64,2},{0x1b,1}}, {{0x27,1},{0xb2f,1}}, {{0x2b,1},{0xb65,2}}, {{0xceb,3},{0xae5,1}}, + {{0x9a9,1},{0xb31,1}}, {{0x1257,2},{0x20b6,2}}, {{0x2b,1},{0xb2e,2}}, {{0x5949,4},{0xb7d,2}}, + {{0x1e,1},{0x1a,1}}, {{0x1257,2},{0xaf1,1}}, {{0xb2e,2},{0xb2f,1}}, {{0xb52,2},{0x10dc,2}}, + {{0xa7d,4},{0x6f90,2}}, {{0x30,2},{0xb48,2}}, {{0xae2,1},{0xb64,2}}, {{0x2b,2},{0x1a,1}}, + {{0xae2,1},{0xae7,2}}, {{0x1d,1},{0x2d,1}}, {{0x2d,1},{0x1a,1}}, {{0x24461,1},{0x1b4e3,1}}, + {{0x30,2},{0xeb2,1}}, {{0x2b,1},{0x1a,1}}, {{0x30,8},{0x30,6}}, {{0x27,1},{0xb78,2}}, + {{0xb2c,2},{0xae5,1}}, {{0x30,2},{0x924,1}}, {{0xc89,2},{0xeb2,1}}, {{0xb8f,2},{0x1c,1}}, + {{0x30,2},{0x1878,1}}, {{0xb2c,2},{0xb2e,2}}, {{0x30,2},{0x734,1}}, {{0xceb,3},{0xc67,2}}, + {{0x532,2},{0x30,6}}, {{0x2b,1},{0xd1b,1}}, {{0xb7f,3},{0x1a,1}}, {{0x30,2},{0x142e,1}}, + {{0x2445f,1},{0x9a9,1}}, {{0xe6d,2},{0x1a,1}}, {{0x1257,2},{0x1f,1}}, {{0xae2,1},{0x27,1}}, + {{0xb4b,2},{0x1a,1}}, {{0xfb1,2},{0x1a,1}}, {{0x2b,1},{0xbb5,1}}, {{0x441c,3},{0xaeb,2}}, + {{0xae2,1},{0x1a,1}}, {{0x1095,3},{0xbb5,1}}, {{0x1c,1},{0xb78,2}}, {{0xb44,3},{0xaf1,1}}, + {{0x1d,1},{0xae7,2}}, {{0xbb4,2},{0xb48,2}}, {{0x30,2},{0x278a9,1}}, {{0x17bc,3},{0x1b,1}}, + {{0x7162,4},{0xb64,2}}, {{0xaea,1},{0xb2f,1}}, {{0xc37,3},{0xb2f,1}}, {{0x30,2},{0x423e,1}}, + {{0xc25,4},{0xae7,1}}, {{0xceb,3},{0xb2f,1}}, {{0xb82,2},{0x1f,1}}, {{0xb85,2},{0x1a,1}}, + {{0xcb8,2},{0x1f,1}}, {{0xb52,2},{0xae5,1}}, {{0xc67,2},{0xae7,1}}, {{0x1f,1},{0x1099,3}}, + {{0x1040,5},{0x27,1}}, {{0x10f3,1},{0xaeb,2}}, {{0xcb8,2},{0x1a,1}}, {{0x265b,4},{0xb2f,1}}, + {{0xcd9,3},{0x1d,1}}, {{0x28,1},{0xc8a,2}}, {{0xcb8,2},{0xae7,1}}, {{0x30,2},{0xadf,2}}, + {{0x1761,3},{0x1c,1}}, {{0x28,1},{0xeb2,1}}, {{0x1095,3},{0x1c,1}}, {{0x924,1},{0x116c,1}}, + {{0xbcb,3},{0xae6,2}}, {{0x28,1},{0x27,1}}, {{0xcfd,5},{0x1f,1}}, {{0x7c4,2},{0x7c4,2}}, + {{0xc4d,2},{0x1b,1}}, {{0xb63,2},{0xae0,1}}, {{0x2b,2},{0x1c,1}}, {{0x1257,2},{0xae7,1}}, + {{0x1257,2},{0x2d,1}}, {{0x30,2},{0x26c6,1}}, {{0xb55,2},{0x1a,1}}, {{0x2b,1},{0x27,1}}, + {{0x1084,3},{0xc1e,2}}, {{0x4450,4},{0x6dd7,3}}, {{0x532,2},{0x532,2}}, {{0x1d,1},{0xeb2,1}}, + {{0x9a9,1},{0x9a9,1}}, {{0xae2,1},{0xbb5,1}}, {{0xc1c,2},{0xb54,3}}, {{0xba5,4},{0x1f,1}}, + {{0x30,2},{0xa7d,4}}, {{0x30,32},{0x30,32}}, {{0xb55,2},{0x2d,1}}, {{0x30,2},{0x1ed53,1}}, + {{0x27,1},{0xae5,1}}, {{0x30,2},{0x1a,2}}, {{0xb2c,2},{0x1a,1}}, {{0x441c,3},{0xb63,2}}, + {{0x1095,3},{0xaf1,1}}, {{0xaea,1},{0xaea,1}}, {{0x30,2},{0x24461,1}}, {{0xb8f,2},{0xaf2,1}}, + {{0xadf,2},{0x1a,1}}, {{0x1a,1},{0x27,1}}, {{0x1f,1},{0xaf2,1}}, {{0xbcb,3},{0xcb8,2}}, + {{0xcd9,3},{0xae6,2}}, {{0x2445f,1},{0x28634,1}}, {{0x30,2},{0x1b6cb,1}}, {{0xb64,3},{0xae7,1}}, + {{0x1a,2},{0xae7,1}}, {{0xc49,3},{0xc1e,2}}, {{0x1c,1},{0xae2,1}}, {{0xcb5,3},{0x1d,1}}, + {{0x2b,2},{0x1f,1}}, {{0x1a,2},{0xb67,2}}, {{0x1e,1},{0x1e,1}}, {{0x7c4,1},{0xb31,1}}, + {{0xb52,5},{0xae7,1}}, {{0x1b,1},{0x1a,1}}, {{0x2b,1},{0x28,1}}, {{0x30,2},{0x12fe,2}}, + {{0x432,8},{0x432,8}}, {{0xbcb,3},{0x28,2}}, {{0x804,2},{0x806,2}}, {{0x532,2},{0x30,16}}, + {{0x30,2},{0x116d,1}}, {{0x948,1},{0x24461,1}}, {{0xaf1,1},{0xae2,1}}, {{0x28,1},{0xb7d,1}}, + {{0x11ba8,4},{0x1a,1}}, {{0x2445f,1},{0x1ed58,1}}, {{0x1d,1},{0xb9c,2}}, {{0xc89,2},{0x1a,1}}, + {{0xaea,1},{0xb55,2}}, {{0x532,2},{0x30,2}}, {{0x2b,1},{0xb48,2}}, {{0x441c,3},{0x2045,3}}, + {{0xbb5,1},{0xb78,2}}, {{0xb63,2},{0xaf2,1}}, {{0xc37,3},{0xb78,2}}, {{0xb9d,3},{0xae7,1}}, + {{0xc67,2},{0xb67,2}}, {{0xd41,3},{0x1d,1}}, {{0xb2e,2},{0xd0d,2}}, {{0x177c,3},{0xae5,1}}, + {{0x19b3,5},{0xaf2,1}}, {{0x30,2},{0xbc1,2}}, {{0x24462,1},{0x24462,1}}, {{0xb47,2},{0xaf2,1}}, + {{0xae7,1},{0x1d,1}}, {{0x3e2a,3},{0xae5,1}}, {{0x2b,1},{0xb64,2}}, {{0x30,2},{0xfdd,2}}, + {{0x780,1},{0x780,1}}, {{0xc67,2},{0x2d,1}}, {{0xc89,2},{0xae5,1}}, {{0x30,2},{0x116e,1}}, + {{0x28,1},{0xb64,2}}, {{0xaf1,1},{0xaf2,1}}, {{0x30,2},{0xab9c,1}}, {{0xcc7,3},{0xb7d,1}}, + {{0x1a,1},{0xb8f,2}}, {{0xc1c,2},{0x1a,1}}, {{0x1c,1},{0x1a,1}}, {{0x19b3,5},{0xc77,2}}, + {{0x14cc,4},{0xaf1,1}}, {{0xd41,3},{0x28,1}}, {{0xb7f,3},{0xaf2,1}}, {{0xb2f,1},{0xb2f,1}}, + {{0xb54,3},{0xae7,1}}, {{0x1095,3},{0xbc2,2}}, {{0xfed2,2},{0xfed2,2}}, {{0xcf6,3},{0x1f,1}}, + {{0xb7f,3},{0xb63,3}}, {{0x27cea,1},{0x1f,1}}, {{0x19b3,5},{0xb64,2}}, {{0x1150,2},{0x1b,1}}, + {{0xc37,3},{0x1cef,3}}, {{0x1e,1},{0xd8f,3}}, {{0x27,1},{0xce2,3}}, {{0x3234,3},{0x2b,1}}, + {{0x21,1},{0x1f,1}}, {{0x70ea,5},{0xaf1,1}}, {{0x139f,3},{0xaf2,1}}, {{0xb63,2},{0x1c,1}}, + {{0xb7f,3},{0xc67,2}}, {{0xc37,3},{0xb64,2}}, {{0x1095,3},{0x2d,1}}, {{0x28,1},{0x2bfd,2}}, + {{0xb63,2},{0xae7,1}}, {{0xb6c,3},{0x1d,1}}, {{0xc49,3},{0x1098,4}}, {{0x257a,4},{0x1a,2}}, + {{0x1d,1},{0xeb1,2}}, {{0x1a,1},{0xc8a,2}}, {{0x28,1},{0xc30,2}}, {{0x532,2},{0x30,14}}, + {{0x1e,1},{0x1f,1}}, {{0xcb5,3},{0xaf1,1}}, {{0x441c,3},{0xbb2a,4}}, {{0xb7d,1},{0xb47,2}}, + {{0xd41,3},{0x27,1}}, {{0x30,2},{0x18,1}}, {{0x1b13e,3},{0x1b6ab,1}}, {{0xaf2,1},{0xae7,1}}, + {{0x30,2},{0x28da,1}}, {{0xb64,2},{0x1a,1}}, {{0x178c,3},{0x1f,1}}, {{0xd41,3},{0xaea,1}}, + {{0xeb2,1},{0xae7,1}}, {{0xb70,2},{0x1b,1}}, {{0xb2f,1},{0xb2c,2}}, {{0xde9,1},{0x1a,1}}, + {{0x4450,4},{0x1d,1}}, {{0x28,1},{0x11ef,2}}, {{0x261f,4},{0xaf2,1}}, {{0xa7d,4},{0x20b23,2}}, + {{0x2446a,3},{0x1b4e3,1}}, {{0x26b5,4},{0x4459,3}}, {{0x265b,4},{0x12f1,2}}, {{0x4450,5},{0x1b,1}}, + {{0xb44,3},{0xf6a,3}}, {{0x30,8},{0x30,2}}, {{0xb64,2},{0xb52,2}}, {{0xb2f,1},{0x1150,2}}, + {{0xb78,2},{0xb7d,1}}, {{0xdf0,2},{0xae5,1}}, {{0xae0,1},{0xbd3,3}}, {{0xde9,1},{0x1d,1}}, + {{0xaea,1},{0xb4b,2}}, {{0xb52,2},{0x28,1}}, {{0x1ed53,1},{0x251df,1}}, {{0xb52,2},{0xb65,2}}, + {{0x19b3,4},{0xc67,2}}, {{0x30,2},{0x27cea,1}}, {{0x30,2},{0xb71,2}}, {{0x10f6,1},{0x1b,1}}, + {{0xc49,3},{0x139f,3}}, {{0xd41,3},{0xc3d,3}}, {{0xc49,3},{0xbb5,1}}, {{0xfdd,2},{0xb2c,2}}, + {{0xb78,2},{0xae0,1}}, {{0x1e45,3},{0x1b,1}}, {{0xaf1,1},{0xb2c,2}}, {{0x1b4e3,1},{0x22cf8,1}}, + {{0x8b06,4},{0xae7,1}}, {{0x5277,2},{0xae7,1}}, {{0x1e,1},{0xd17,3}}, {{0xae5,1},{0xb52,2}}, + {{0x1084,3},{0xdf0,2}}, {{0x1761,3},{0x1f,1}}, {{0xd41,3},{0xaeb,2}}, {{0x20bb,3},{0x1a,1}}, + {{0xd41,3},{0xca7,2}}, {{0x1d,1},{0xbb5,1}}, {{0xaea,1},{0xb65,2}}, {{0x30,2},{0x2a948,1}}, + {{0xb64,2},{0x1e,1}}, {{0x1d,1},{0xb7d,2}}, {{0xcd9,3},{0xb65,2}}, {{0xc77,2},{0xae7,2}}, + {{0x27,1},{0xb48,2}}, {{0x30,2},{0x10fa,1}}, {{0xeec,5},{0x1d,1}}, {{0xb44,3},{0x1a,1}}, + {{0x1095,3},{0xae0,1}}, {{0x16bc,4},{0xae7,1}}, {{0xaea,1},{0xb64,2}}, {{0x142e,1},{0xdf6,3}}, + {{0x30,2},{0x278dc,1}}, {{0xcd9,3},{0xfdd,2}}, {{0x2b,3},{0xae7,1}}, {{0x24462,1},{0x2446c,1}}, + {{0xbed,2},{0xbb5,1}}, {{0xd41,3},{0xaf2,1}}, {{0xb52,2},{0xb78,2}}, {{0x2b,1},{0x10dc,2}}, + {{0x1d,1},{0xb7d,1}}, {{0xcb5,3},{0x1a,2}}, {{0x19b3,5},{0xae0,1}}, {{0xb48,2},{0xc8a,2}}, + {{0x17bc,3},{0x1f,1}}, {{0xba5,4},{0xd17,3}}, {{0x139f,3},{0xae7,1}}, {{0xb71,2},{0xde9,1}}, + {{0x2d,1},{0xaf1,1}}, {{0xfdf,2},{0xc8a,2}}, {{0xae6,2},{0xae7,1}}, {{0x116c,1},{0x924,1}}, + {{0xc52,2},{0x323c,2}}, {{0xaeb,2},{0x1c,1}}, {{0x181c,3},{0x1b,1}}, {{0xbd6,2},{0x1c,1}}, + {{0x85de,4},{0x1e,1}}, {{0x116c,1},{0x1b6ab,1}}, {{0xb6c,4},{0xde9,1}}, {{0x30,2},{0x24462,1}}, + {{0xdba,4},{0xbb5,1}}, {{0x2b,2},{0xeb2,1}}, {{0x5401,4},{0x2bfd,2}}, {{0x4450,4},{0xb52,2}}, + {{0x2cae,4},{0xb85,2}}, {{0x6d81,3},{0x1a,1}}, {{0xcb5,3},{0xdf0,2}}, {{0x1095,3},{0x10ba,2}}, + {{0x2b,1},{0xc67,2}}, {{0xaea,1},{0x10dc,2}}, {{0xc37,3},{0x1a,1}}, {{0x11ba8,4},{0xd0d,2}}, + {{0xc25,4},{0xaea,1}}, {{0xc13,4},{0xc62,3}}, {{0xae6,2},{0xae5,1}}, {{0x1040,5},{0xae0,1}}, + {{0x6f62,2},{0x6f64,2}}, {{0x9423,3},{0x1a,1}}, {{0xb44,3},{0x1865,2}}, {{0x159c8,1},{0x24461,1}}, + {{0x1095,3},{0xc8a,2}}, {{0xc1c,2},{0x1f,1}}, {{0xb7f,3},{0xb72,2}}, {{0xcfd,5},{0xae7,1}}, + {{0x24475,6},{0x244af,2}}, {{0xc25,4},{0xb2f,1}}, {{0x10fb,3},{0xae5,1}}, {{0xc49,3},{0xb70,2}}, + {{0xaea,1},{0xeb2,1}}, {{0xb7f,3},{0x5277,2}}, {{0xbcb,3},{0xadf,2}}, {{0xae2,1},{0xb2e,2}}, + {{0xb2c,2},{0xeb2,1}}, {{0xb8f,2},{0xeb2,1}}, {{0x1f,1},{0xaeb,2}}, {{0x2b,1},{0x1257,3}}, + {{0xae0,1},{0x28,1}}, {{0xc30,2},{0x1c,1}}, {{0x1084,3},{0xb2f,1}}, {{0x2d,1},{0xdf0,2}}, + {{0x7102,5},{0xeb2,1}}, {{0xb55,2},{0xae7,1}}, {{0x257a,4},{0xaea,1}}, {{0xb82,2},{0xb8f,2}}, + {{0x27,1},{0xae7,1}}, {{0x20bb,3},{0xae2,2}}, {{0x30,2},{0x948,1}}, {{0x28,2},{0x1a,1}}, + {{0xb78,2},{0x1f,1}}, {{0xc4d,2},{0xae5,1}}, {{0xddc,4},{0x323c,2}}, {{0xb52,2},{0xb7c,3}}, + {{0xba5,4},{0x1c,1}}, {{0xcc7,3},{0xae0,1}}, {{0xc37,3},{0xbbf,2}}, {{0xaf1,1},{0x2b,3}}, + {{0x116c,1},{0x278af,1}}, {{0x20bb,3},{0x1843f,4}}, {{0x70ea,3},{0x1b4b,3}}, {{0xca7,2},{0xc8a,2}}, + {{0x159c,4},{0x1e,1}}, {{0xc25,4},{0x2d,1}}, {{0xd76,4},{0xd7a,3}}, {{0xceb,3},{0xbb2a,4}}, + {{0xb47,2},{0x1e,1}}, {{0xae2,1},{0x2d,1}}, {{0xc37,3},{0xae5,1}}, {{0x142c,3},{0x11ef,3}}, + {{0x9c9,1},{0x9c9,1}}, {{0x30,2},{0x278d6,1}}, {{0xc37,3},{0xaf1,1}}, {{0xceb,3},{0x1d,1}}, + {{0xd65,3},{0xb2e,2}}, {{0x7c4,4},{0x7c4,4}}, {{0x16fc,4},{0x1c,1}}, {{0xdba,4},{0xaea,2}}, + {{0xae9,2},{0xeb2,1}}, {{0x3234,3},{0x28,1}}, {{0xc34,2},{0xde9,1}}, {{0xba5,4},{0xb7d,1}}, + {{0xaea,1},{0xbc5,3}}, {{0x3678,5},{0xae0,1}}, {{0x40b2,4},{0xae6,2}}, {{0x1a,1},{0x1e,1}}, + {{0xcb8,2},{0x10dc,2}}, {{0xb55,2},{0x1f,1}}, {{0x4450,5},{0xb64,2}}, {{0x1d,1},{0xb72,2}}, + {{0xc55,2},{0xae5,1}}, {{0xc37,3},{0xb64,3}}, {{0xb52,2},{0x2b,3}}, {{0x19b3,5},{0x1b,1}}, + {{0x19b3,5},{0xb9c,2}}, {{0x1d,1},{0xcbd,3}}, {{0xcd9,3},{0xdf0,2}}, {{0x6ac3,3},{0x1a,1}}, + {{0xfda,5},{0xfdf,2}}, {{0x1095,3},{0x591e,4}}, {{0xceb,3},{0xbd6,2}}, {{0x278ad,3},{0x1173,2}}, + {{0xbcb,3},{0x1150,2}}, {{0x2b,1},{0xb9d,3}}, {{0xc25,4},{0x1f,1}}, {{0xae7,2},{0xaec,2}}, + {{0xb72,2},{0x1a,1}}, {{0x30,2},{0x27897,1}}, {{0x41ef,2},{0x1a,2}}, {{0x27,1},{0xb71,2}}, + {{0xb55,2},{0x1c,1}}, {{0xcd9,3},{0xb85,2}}, {{0xae7,1},{0xae7,1}}, {{0x969,2},{0x5c78,2}}, + {{0xd41,3},{0x1aa6,3}}, {{0xbd6,2},{0xbd8,2}}, {{0x1095,4},{0x1f,1}}, {{0xaeb,2},{0x1b,1}}, + {{0x2864c,1},{0xb31,1}}, {{0xf52,4},{0x27,1}}, {{0xc25,4},{0xae0,1}}, {{0xb2f,1},{0xb65,2}}, + {{0xc37,3},{0xb52,2}}, {{0x18,1},{0x780,1}}, {{0x1e45,4},{0x1150,2}}, {{0xe64,5},{0xb7d,1}}, + {{0xd41,3},{0xdf0,2}}, {{0xc30,2},{0xc8e,3}}, {{0x13ed2,5},{0xf8a3,4}}, {{0x948,1},{0x948,1}}, + {{0xc37,3},{0xbd6,2}}, {{0xb6c,4},{0x10dc,2}}, {{0xbd1,2},{0xb48,2}}, {{0x22cf8,1},{0x2445e,1}}, + {{0xc8f,2},{0xca7,2}}, {{0xb2c,2},{0x1f,1}}, {{0x116c,1},{0x116c,1}}, {{0x1b13e,3},{0x924,1}}, + {{0xae6,2},{0x1a,1}}, {{0x1a,1},{0xaea,1}}, {{0x1e,1},{0x21be,4}}, {{0xb85,2},{0xb9d,3}}, + {{0x24462,1},{0x1b4e3,1}}, {{0xc1e,2},{0xb54,3}}, {{0x30,2},{0x2b,1}}, {{0x20bb,3},{0xb2f,1}}, + {{0x1f,1},{0x28,1}}, {{0xceb,3},{0x14d5,3}}, {{0x2b,1},{0x21,1}}, {{0x1084,3},{0x174e,3}}, + {{0x7276,4},{0x1a,1}}, {{0x30,2},{0x1b6ab,1}}, {{0x1d,1},{0xaf2,1}}, {{0x2b,1},{0x1d,1}}, + {{0xbd6,2},{0x763c,3}}, {{0xaf1,1},{0xc1c,2}}, {{0xaf1,1},{0x3e2a,4}}, {{0x9a9,1},{0x1ed58,1}}, + {{0x1ed49,3},{0x1ed53,1}}, {{0xc25,5},{0xb82,3}}, {{0xd1a,2},{0x1a,1}}, {{0x7276,4},{0x10dc,2}}, + {{0x1a,1},{0x2d,1}}, {{0x2445f,1},{0x24461,1}}, {{0x1a,1},{0x21,1}}, {{0xc67,2},{0xb75,2}}, + {{0x1095,3},{0xaea,1}}, {{0x26c4,3},{0x1b,1}}, {{0xdba,4},{0xbc2,2}}, {{0xb67,2},{0xcf0,2}}, + {{0xc2e,2},{0xb48,2}}, {{0xaf1,1},{0xde2,4}}, {{0xd41,3},{0xb70,2}}, {{0x1b,1},{0x2b,3}}, + {{0x2c76,4},{0x1150,2}}, {{0x1e,1},{0xb63,3}}, {{0x1ab2,4},{0x1a,1}}, {{0xd41,3},{0xae0,1}}, + {{0x1e,1},{0xaf1,1}}, {{0x1e,1},{0xc4d,2}}, {{0xba5,4},{0x9e37,4}}, {{0x2b,1},{0xb47,2}}, + {{0x30,2},{0x70a0,2}}, {{0xb6c,3},{0xd57,2}}, {{0xd17,3},{0x1b,1}}, {{0xb2e,2},{0xae7,1}}, + {{0x924,2},{0x924,1}}, {{0xbb5,1},{0xb48,2}}, {{0x532,18},{0x30,6}}, {{0x1f,1},{0x1d,1}}, + {{0x1ed58,1},{0xb31,1}}, {{0x278af,1},{0x924,1}}, {{0xde9,1},{0x1b,1}}, {{0xcd9,3},{0xae6,3}}, + {{0xcd9,3},{0x2b3c,3}}, {{0xc7b,4},{0xae7,1}}, {{0x2c76,4},{0xbb2a,4}}, {{0xceb,3},{0xb63,2}}, + {{0xd65,3},{0xb8f,2}}, {{0x122c,5},{0xaea,1}}, {{0xd5c,1},{0x10ca,1}}, {{0xd41,3},{0xadf,2}}, + {{0x19b3,4},{0x3e29,5}}, {{0x1d8a,3},{0x1f,1}}, {{0xaea,1},{0xaf2,1}}, {{0x1cbf,4},{0x704e,4}}, + {{0xc1c,2},{0xae7,1}}, {{0xb7f,3},{0xe78,3}}, {{0xae2,1},{0xb65,2}}, {{0x20bb,3},{0xd8b0,5}}, + {{0xf14,2},{0xc8a,2}}, {{0x20bb,3},{0xc89,3}}, {{0xc1c,2},{0x10dc,2}}, {{0x12d7,5},{0xae7,1}}, + {{0xae0,1},{0xb78,2}}, {{0xb82,2},{0xb2f,1}}, {{0xb44,3},{0xaf2,1}}, {{0x30,2},{0x9a9,1}}, + {{0xb2f,1},{0x2b,1}}, {{0x1051,4},{0x1055,3}}, {{0x2b,2},{0x10dc,2}}, {{0x2b,2},{0xae7,1}}, + {{0x3f9a,4},{0x11f2,3}}, {{0x7276,4},{0x2b,3}}, {{0x441c,3},{0xd7f,3}}, {{0x1a,1},{0x139f,3}}, + {{0x441c,3},{0x14d5,3}}, {{0xb79,2},{0xc8a,2}}, {{0x1a10,2},{0x13e4,3}}, {{0xae2,1},{0xaea,2}}, + {{0xc55,2},{0x1099,3}}, {{0xba5,4},{0xae7,2}}, {{0x30,8},{0x30,4}}, {{0xae2,1},{0xb64,3}}, + {{0xb70,2},{0x2b,3}}, {{0xb2c,2},{0xae7,1}}, {{0xae0,1},{0xae7,1}}, {{0x13f2c,5},{0x141b2,4}}, + {{0xda9,4},{0x11e0,4}}, {{0xb31,1},{0x24462,1}}, {{0xc25,3},{0xde2,4}}, {{0x532,2},{0xfed2,4}}, + {{0x2b,2},{0xb2e,2}}, {{0x30,2},{0x1a,3}}, {{0x28,1},{0x21,1}}, {{0xce8,3},{0x2d,1}}, + {{0x27,1},{0xbbf,2}}, {{0x30,2},{0xb9d,3}}, {{0xb31,1},{0x1ed58,1}}, {{0x532,2},{0xfed2,2}}, + {{0xc25,4},{0x12fe,2}}, {{0xbeb,1},{0x1f,1}}, {{0x1a,1},{0xde9,1}}, {{0xb78,2},{0xaf1,1}}, + {{0x67a6,3},{0x1c,1}}, {{0xe64,5},{0xdd5,2}}, {{0xaec,2},{0xb9d,3}}, {{0x1d,1},{0x21,1}}, + {{0xc1c,2},{0xc34,3}}, {{0x14dc,5},{0xb78,2}}, {{0x3234,3},{0x28b1,3}}, {{0x1ed51,3},{0x251df,1}}, + {{0x2445f,1},{0x2446c,1}}, {{0x116c,1},{0x116e,1}}, {{0x1257,2},{0x27,1}}, {{0x116c,1},{0x278a9,1}}, + {{0x432,16},{0x432,16}}, {{0x3758,4},{0x1a,2}}, {{0x532,18},{0x30,14}}, {{0xcc7,3},{0x2742,3}}, + {{0x1150,2},{0xb78,2}}, {{0xd0f,4},{0xb8f,2}}, {{0x22cf8,1},{0x24461,1}}, {{0x1e,1},{0xb82,2}}, + {{0xf52,4},{0x1f,1}}, {{0xadf,2},{0xb65,2}}, {{0x178c,3},{0x1a,1}}, {{0xb6c,3},{0x1150,2}}, + {{0xd1a,2},{0x10dc,2}}, {{0xae7,1},{0xaea,1}}, {{0xfda,7},{0xfe1,4}}, {{0xae2,1},{0xaea,1}}, + {{0xbcb,3},{0xde2,3}}, {{0xcfd,5},{0xae7,2}}, {{0xc30,2},{0xaf2,1}}, {{0xb8f,2},{0xae7,1}}, + {{0xae7,1},{0x27,1}}, {{0xde9,1},{0xcce,3}}, {{0x2445e,1},{0x1b4e3,1}}, {{0x116c,1},{0x278dc,1}}, + {{0xb2c,4},{0xd0d,2}}, {{0xc17,3},{0x1c,1}}, {{0x441c,3},{0x5277,2}}, {{0x30,2},{0x19,1}}, + {{0xaeb,2},{0xae7,1}}, {{0x10f6,1},{0x10f2,1}}, {{0x532,2},{0x30,10}}, {{0x10f3,1},{0xae5,1}}, + {{0x30,2},{0xb47,2}}, {{0xcc7,3},{0x94a5,4}}, {{0x116c,1},{0x116d,1}}, {{0x3234,3},{0x23d9,3}}, + {{0x1095,3},{0x27,1}}, {{0xb52,5},{0xb2e,2}}, {{0x9a9,2},{0x9a9,1}}, {{0x278ad,3},{0x924,2}}, + {{0xcd9,3},{0xb55,2}}, {{0xb7f,3},{0x2b,2}}, {{0xcc7,3},{0x21bd,5}}, {{0xb7f,3},{0x2bfc,3}}, + {{0x151c,4},{0xb65,2}}, {{0x30,2},{0x2bfd,2}}, {{0xb48,2},{0x1f,1}}, {{0x14cc,4},{0xb64,2}}, + {{0xc37,3},{0xb8f,2}}, {{0x1d,1},{0xbd6,2}}, {{0x2d,1},{0xb78,2}}, {{0xb63,2},{0xeb2,1}}, + {{0x27,1},{0xc1e,2}}, {{0xcd9,3},{0x151f,3}}, {{0xceb,3},{0xd0b,3}}, {{0x70a0,2},{0x6f8a,2}}, + {{0xbed,2},{0xb7d,1}}, {{0xb2f,1},{0x10dc,2}}, {{0xb44,3},{0xcc0,3}}, {{0xd41,3},{0x1862,3}}, + {{0xcd9,3},{0x2b,1}}, {{0xfdd,2},{0x1a,1}}, {{0xb9d,3},{0xb54,3}}, {{0x1f,1},{0x2b,3}}, + {{0x30,2},{0x94a5,4}}, {{0x257a,4},{0x16ef,4}}, {{0xb2e,2},{0x1a,1}}, {{0xb52,2},{0xb63,2}}, + {{0x1084,3},{0xae2,1}}, {{0x2445e,1},{0x2445f,1}}, {{0xceb,3},{0x22e3,3}}, {{0x24467,2},{0x9c9,1}}, + {{0x30,64},{0x30,64}}, {{0x159c,4},{0xaea,1}}, {{0x27,1},{0xaf1,1}}, {{0xb64,2},{0x28,2}}, + {{0x20bb,3},{0xba7,3}}, {{0x2b,2},{0xb67,2}}, {{0xded,5},{0x46f8,3}}, {{0x22cf8,1},{0x1ed58,1}}, + {{0x116c,1},{0x27897,1}}, {{0x28,1},{0xc77,2}}, {{0xceb,3},{0xb70,2}}, {{0x28,1},{0x12be,3}}, + {{0x1084,3},{0x202c,3}}, {{0xddc,4},{0xb52,2}}, {{0x278af,1},{0x116e,1}}, {{0x2b,2},{0xb65,2}}, + {{0xba5,4},{0x1f,2}}, {{0xb71,2},{0xb2f,1}}, {{0xd7f,3},{0xae7,1}}, {{0x2b,1},{0x10c4,4}}, + {{0xaf2,1},{0xae0,1}}, {{0xde9,1},{0x5277,2}}, {{0x1b9bd,6},{0xae7,1}}, {{0x24475,6},{0xab1,2}}, + {{0xaf1,1},{0xae0,1}}, {{0x19b3,4},{0x1372,3}}, {{0xb7f,3},{0xb52,2}}, {{0x1084,3},{0xb47,2}}, + {{0xceb,3},{0xb8f,2}}, {{0xb7f,3},{0xb55,2}}, {{0x261f,4},{0xb2e,2}}, {{0xb8f,2},{0xaea,2}}, + {{0x1cec,6},{0xb2c,2}}, {{0xae9,2},{0x2b,1}}, {{0x20bb,3},{0x2af4,4}}, {{0xb64,2},{0xae7,2}}, + {{0xc49,3},{0x27,1}}, {{0xbed,2},{0xcf0,2}}, {{0x28,1},{0xb7d,2}}, {{0x1480,2},{0xc89,2}}, + {{0x1095,3},{0xc1e,2}}, {{0x948,1},{0x2446f,2}}, {{0xc37,3},{0xcbc,4}}, {{0xa7d,4},{0xa4f,2}}, + {{0xb7f,3},{0x10dc,2}}, {{0xede,3},{0xb72,2}}, {{0xfb1,2},{0xb65,2}}, {{0x4fbd,4},{0x5277,2}}, + {{0xbcb,3},{0xc67,3}}, {{0x734,2},{0x734,2}}, {{0xae2,1},{0xbc2,2}}, {{0xc67,2},{0x1b,1}}, + {{0xc1e,2},{0x1a,1}}, {{0xb31,1},{0x24,1}}, {{0x1878,1},{0x10f2,1}}, {{0xb44,3},{0xb79,2}}, + {{0xba5,4},{0x2237,3}}, {{0x141c,5},{0xaf2,1}}, {{0x11f2,3},{0x1f,1}}, {{0x30,2},{0xcc0,3}}, + {{0xd54,1},{0x1b,1}}, {{0x257a,4},{0x2b,3}}, {{0x10f6,1},{0x1f,1}}, {{0x27,1},{0xb8f,2}}, + {{0xcb5,3},{0xae2,1}}, {{0x3234,3},{0xae9,2}}, {{0xd41,3},{0xb78,2}}, {{0x70a0,2},{0x70a2,2}}, + {{0xc37,3},{0xc63,3}}, {{0xaea,1},{0xb9d,3}}, {{0xdfa,3},{0xbd1,2}}, {{0x1f,2},{0x21,2}}, + {{0x30,2},{0x1ed58,1}}, {{0x19b3,4},{0xbb15,3}}, {{0x20bb,5},{0x12d7,5}}, {{0xb7f,3},{0x173e,3}}, + {{0xceb,3},{0xaeb,2}}, {{0x30,2},{0xdf0,2}}, {{0x30,2},{0x251cb,1}}, {{0xc67,2},{0xeb2,1}}, + {{0x30,2},{0x17ae,1}}, {{0x116c,1},{0x278d6,1}}, {{0xb7f,3},{0xaec,2}}, {{0x432,1},{0x24,1}}, + {{0xcb8,2},{0xb65,2}}, {{0x2bfc,2},{0x2b,3}}, {{0x1d,1},{0x1e,1}}, {{0xf52,4},{0xca7,3}}, + {{0x1a,1},{0xb7d,1}}, {{0xf52,4},{0xe6d,2}}, {{0x3640,4},{0xb72,2}}, {{0x10fb,3},{0xb4b,2}}, + {{0xb52,2},{0x1489,3}}, {{0xae7,1},{0xdf0,2}}, {{0xaea,1},{0xb2e,2}}, {{0x51ab,5},{0x29da,3}}, + {{0x24460,2},{0x24462,1}}, {{0x30,2},{0xd1b,1}}, {{0xc25,5},{0x27,1}}, {{0x22cf8,1},{0x24f91,2}}, + {{0xcd9,3},{0x1308,3}}, {{0xa7d,4},{0x1b887,2}}, {{0xcb8,2},{0xb55,2}}, {{0x532,2},{0x30,32}}, + {{0x1d,1},{0x139f,3}}, {{0xaf2,1},{0xb2f,1}}, {{0x30,2},{0x804,2}}, {{0x16dc,5},{0xb71,2}}, + {{0x20bb,3},{0xc30,2}}, {{0xd54,1},{0x10f3,1}}, {{0xb44,3},{0xbed,2}}, {{0xcf6,3},{0xb67,2}}, + {{0xb72,2},{0xaf2,1}}, {{0x6d8e,3},{0xb63,2}}, {{0xb7f,3},{0x74ba,3}}, {{0xae7,1},{0xae5,1}}, + {{0x1c,1},{0x5277,2}}, {{0x2446c,1},{0x1b4e3,1}}, {{0x14cc,4},{0xb2f,1}}, {{0xae6,2},{0xae0,1}}, + {{0x1a,2},{0x2d,1}}, {{0x1f,1},{0xaf1,1}}, {{0x70a0,2},{0x70ca,2}}, {{0xb7d,1},{0xb2e,2}}, + {{0xaea,1},{0xb78,2}}, {{0xba5,4},{0xae7,1}}, {{0xc49,3},{0x1520,2}}, {{0x28,1},{0xbc2,2}}, + {{0xddc,4},{0xaf1,1}}, {{0x30,2},{0x251df,1}}, {{0x1a,2},{0xb9c,2}}, {{0x1b,1},{0xb78,2}}, + {{0x24462,1},{0x24461,1}}, {{0x30,2},{0xb79,2}}, {{0x181c,3},{0xb2f,1}}, {{0xd41,3},{0xbd6,2}}, + {{0xb64,2},{0x1f,1}}, {{0xae0,1},{0x2b,2}}, {{0x4450,4},{0x67c0,3}}, {{0x3e2a,3},{0xde4,2}}, + {{0xcb8,2},{0xae5,1}}, {{0xb52,2},{0x1099,3}}, {{0x30,2},{0x780,1}}, {{0x2445f,1},{0x2445f,1}}, + {{0x278a9,1},{0x924,1}}, {{0xae2,1},{0xd0b,4}}, {{0x6ac5,1},{0x1a,1}}, {{0xe64,5},{0x18d8,4}}, + {{0xe64,5},{0x1f,2}}, {{0xc25,4},{0x27,1}}, {{0x116e,1},{0x924,1}}, {{0x3234,3},{0xb8f,2}}, + {{0x278a9,1},{0x278af,1}}, {{0x1d,1},{0xb85,2}}, {{0xc25,4},{0x28,2}}, {{0x28,1},{0xae5,1}}, + {{0xb47,2},{0xae7,1}}, {{0xb7c,2},{0xdfb,3}}, {{0x11f2,3},{0x10dc,2}}, {{0xfe38,4},{0x1c,1}}, + {{0xfdd,2},{0x2971,3}}, {{0x1bfc,6},{0xb9d,3}}, {{0x2d,1},{0xc67,2}}, {{0xd8e,4},{0xb52,5}}, + {{0x1b13e,3},{0x278af,1}}, {{0x2b,1},{0x12be,3}}, {{0x1b,1},{0x2d,1}}, {{0x278af,1},{0x1173,2}}, + {{0xa7d,4},{0xab1,2}}, {{0x26583,4},{0x251de,2}}, {{0x1b,1},{0xbc5,3}}, {{0xbc4,4},{0xb54,3}}, + {{0xbb5,1},{0x1a,1}}, {{0x1e,1},{0xb2f,1}}, {{0xcb5,3},{0xb7c,2}}, {{0xd41,3},{0xb4b,2}}, + {{0xb7d,1},{0x1a,2}}, {{0xcd9,5},{0xaea,1}}, {{0x10a78,6},{0xaf2,1}}, {{0x19b3,4},{0x392d,3}}, + {{0xddc,4},{0x1cef,3}}, {{0x2d,1},{0x2d,1}}, {{0xbeb,1},{0x10f3,1}}, {{0x5442,4},{0xdfa,3}}, + {{0x30,2},{0x21,1}}, {{0xcb5,3},{0x2dcb,4}}, {{0xb2c,2},{0xb65,2}}, {{0xb7d,1},{0x10dc,2}}, + {{0x1ab2,4},{0xdd2,4}}, {{0xb48,2},{0x1e,2}}, {{0xc25,4},{0x1e,1}}, {{0x6ac5,1},{0x2f9b,3}}, + {{0xd54,1},{0x10ca,1}}, {{0xb2e,2},{0xeb2,1}}, {{0xc67,2},{0xaf2,1}}, {{0x66d0,4},{0xe72,3}}, + {{0x422e,3},{0xdf0,2}}, {{0xb2f,1},{0xeb3,3}}, {{0x1b13e,3},{0x27897,1}}, {{0x181c,3},{0xae7,1}}, + {{0xb8f,2},{0xd0d,2}}, {{0xae7,1},{0x101b3,3}}, {{0x159c,4},{0x229f,5}}, {{0xbb5,1},{0xaf1,1}}, + {{0xcb5,3},{0xb2f,1}}, {{0xe75,5},{0xae7,1}}, {{0xaea,1},{0xb82,2}}, {{0xbde,3},{0xc1e,2}}, + {{0x4429,6},{0x4459,3}}, {{0x271e,3},{0xb71,2}}, {{0xb2e,2},{0xbd4,2}}, {{0xd41,3},{0x1d5a,3}}, + {{0xae6,2},{0xb54,3}}, {{0xcc7,3},{0x12fe,2}}, {{0x1f,1},{0xb55,2}}, {{0x1aa6,3},{0x10dc,2}}, + {{0xe6d,2},{0x27,1}}, {{0xceb,3},{0xacd5,4}}, {{0xd57,2},{0xb9d,3}}, {{0xc25,4},{0xce1,4}}, + {{0x159c,4},{0x27,1}}, {{0x1d,1},{0xb48,2}}, {{0xb44,3},{0x15a1,3}}, {{0x1084,3},{0xaf1,1}}, + {{0xcd9,3},{0x1af8,5}}, {{0x17bc,3},{0x1e,1}}, {{0x10ef,1},{0x10ca,1}}, {{0x1257,2},{0xb9c,2}}, + {{0xb7f,3},{0xdf0,2}}, {{0xae0,1},{0x10dc,2}}, {{0x20bb,3},{0xaf1,1}}, {{0x11ef,2},{0xae7,1}}, + {{0xe6d,2},{0xae7,1}}, {{0x725e,5},{0x12ff,2}}, {{0xb2e,2},{0xc8e,3}}, {{0xd1a,2},{0xb52,5}}, + {{0x2b,1},{0xb78,2}}, {{0x10f2,1},{0xd54,1}}, {{0x1095,3},{0xb7d,1}}, {{0x31e2,4},{0xbb5,1}}, + {{0x30,2},{0x969,2}}, {{0xb78,2},{0x2d,1}}, {{0xb6c,3},{0xb55,2}}, {{0x10f0,1},{0x1a,1}}, + {{0xdba,6},{0xce2,3}}, {{0xfde,2},{0xb2c,2}}, {{0x261f,4},{0x1f,1}}, {{0xb7f,3},{0x140f,5}}, + {{0xd41,3},{0x5277,2}}, {{0xb85,2},{0xb78,2}}, {{0xddc,4},{0x2045,3}}, {{0xd17,3},{0xae7,1}}, + {{0x1ed58,1},{0x1b4e3,1}}, {{0xb48,2},{0xc7b,4}}, {{0x5442,4},{0x1f,1}}, {{0x13bc,4},{0xc62,3}}, + {{0xe964,6},{0xae7,1}}, {{0xae0,1},{0xc67,2}}, {{0x1f,1},{0xc30,2}}, {{0xae7,2},{0xaf1,1}}, + {{0xc37,3},{0x2e55,5}}, {{0xae6,3},{0xae7,1}}, {{0x1cbf,5},{0xd8e,4}}, {{0x278af,1},{0x116d,1}}, + {{0xc37,3},{0x28,1}}, {{0xb71,2},{0xbc6,2}}, {{0xc67,2},{0x1a,1}}, {{0x2446c,1},{0x9a9,1}}, + {{0x27cea,1},{0xae0,1}}, {{0xb79,2},{0xc39,2}}, {{0x4a27,4},{0xd0b,3}}, {{0xb85,2},{0x10dc,2}}, + {{0x6f62,2},{0x96f,2}}, {{0x251cb,1},{0x780,2}}, {{0x6d81,3},{0x1150,2}}, {{0x1c,1},{0x1916,5}}, + {{0x593c,5},{0x27,1}}, {{0xaf2,1},{0x1b,1}}, {{0xeb9,5},{0x3d9d,5}}, {{0xb7f,3},{0x11ef,3}}, + {{0x103a,3},{0xd0d,2}}, {{0x2446c,1},{0x1ed58,1}}, {{0x709c,2},{0x96f,2}}, {{0x1d,1},{0xae5,1}}, + {{0xe6d,2},{0xbb5,1}}, {{0x28,1},{0xd1b,1}}, {{0x1a,2},{0xca1,2}}, {{0x1878,1},{0x10ca,1}}, + {{0xb2f,1},{0xc67,3}}, {{0xb7d,1},{0x28db,3}}, {{0xddc,4},{0xce8,3}}, {{0x1d,1},{0x28,2}}, + {{0xc67,2},{0xaea,1}}, {{0xaf1,1},{0x1f,1}}, {{0xb44,3},{0x2bfc,3}}, {{0x30,2},{0x780,2}}, + {{0xb31,1},{0x251cb,1}}, {{0xb7d,1},{0x2b,3}}, {{0x27cea,1},{0x1ed58,1}}, {{0x278ad,3},{0x924,1}}, + {{0xceb,3},{0x1761,4}}, {{0x3234,3},{0xeb3,3}}, {{0x209d,4},{0x43e5,3}}, {{0xcd9,3},{0x5277,2}}, + {{0x70a0,2},{0xff22,2}}, {{0x3234,3},{0xcb8,3}}, {{0xceb,3},{0xb48,2}}, {{0x969,2},{0x1b25d,2}}, + {{0x16dc,4},{0xca7,2}}, {{0x10fa,1},{0x1257,2}}, {{0xadd,4},{0xce1,4}}, {{0xa6c6,5},{0xb7c,2}}, + {{0x1c,1},{0xae7,1}}, {{0x397a,5},{0xaea,1}}, {{0xceb,3},{0xb9d,3}}, {{0xd5c,1},{0x10f2,1}}, + {{0x30,2},{0x734,2}}, {{0xaf1,1},{0x5277,2}}, {{0x28,1},{0xde9,1}}, {{0x134c,5},{0xb7d,1}}, + {{0xae0,1},{0x1a,1}}, {{0xaf1,1},{0xb55,2}}, {{0x30,2},{0x10dc,2}}, {{0xc25,3},{0xae2,2}}, + {{0xe64,5},{0xbb5,3}}, {{0xd5c,1},{0xbeb,1}}, {{0x1995d,7},{0xae7,2}}, {{0x1d,1},{0xc55,2}}, + {{0x10ef,1},{0x13c05,7}}, {{0xf52,4},{0xb8b,2}}, {{0x1aa3,6},{0x1058,4}}, {{0xb6c,3},{0x1862,3}}, + {{0xb2f,1},{0xbc5,3}}, {{0x924,2},{0x924,2}}, {{0xfdd,2},{0xaf2,1}}, {{0xb52,2},{0xb2c,2}}, + {{0x5442,4},{0x28,2}}, {{0xf212,3},{0x1257,2}}, {{0x278af,1},{0x278af,1}}, {{0xceb,3},{0xb64,2}}, + {{0x9a9,1},{0x20b1f,6}}, {{0xc77,2},{0xaea,1}}, {{0xb82,2},{0xb52,5}}, {{0xae6,2},{0x2211,3}}, + {{0xd0f,4},{0x20b5,3}}, {{0xbb4,2},{0xe0a,5}}, {{0x20bb,3},{0xe6d,2}}, {{0x28,1},{0x142e,1}}, + {{0x10f6,1},{0x10f3,1}}, {{0xc89,3},{0xb78,2}}, {{0xb85,2},{0xb68,4}}, {{0x1cce,6},{0xb55,2}}, + {{0x12fc,4},{0xcc0,3}}, {{0x27897,1},{0x924,1}}, {{0x1b,1},{0xc55,2}}, {{0x1f,1},{0x1f,1}}, + {{0x1a,1},{0xeb2,1}}, {{0x20bb,3},{0x2b,2}}, {{0xe6d,2},{0xb65,2}}, {{0xc49,3},{0xca7,3}}, + {{0x16cc,4},{0x1f,1}}, {{0x1362,3},{0xb2c,2}}, {{0x1b4e3,1},{0x1ed53,1}}, {{0xcd9,3},{0xb47,2}}, + {{0x116d,1},{0x924,1}}, {{0x251cb,1},{0x251cb,1}}, {{0xaea,2},{0x1b,1}}, {{0x12fe,2},{0x1a,1}}, + {{0x2322,6},{0x1ba5,3}}, {{0x30,2},{0x70c8,2}}, {{0x1a,1},{0x28,2}}, {{0xae5,1},{0xb8a,2}}, + {{0x41da,3},{0x1864,2}}, {{0x1b13e,3},{0x116e,1}}, {{0x44b8,5},{0x2b,1}}, {{0xc37,3},{0xb70,2}}, + {{0xcfd,5},{0x1e,1}}, {{0xddc,4},{0xc67,3}}, {{0xe64,5},{0xca7,3}}, {{0xdf0,2},{0x28,1}}, + {{0xbcb,3},{0xaf2,1}}, {{0x10f7,1},{0xdf0,2}}, {{0x1c8f,3},{0x1f,1}}, {{0x28,1},{0xadf,2}}, + {{0x3640,4},{0x2b,3}}, {{0xbe7,1},{0xc4d,2}}, {{0xcd9,3},{0xaec,2}}, {{0x27cea,1},{0xb64,2}}, + {{0x1c,1},{0x28,1}}, {{0x159c,4},{0xb7d,1}}, {{0x16cc,4},{0x2af4,4}}, {{0x1b4e4,1},{0xb31,1}}, + {{0xde9,1},{0xde9,1}}, {{0xc49,3},{0xcf0,2}}, {{0x2b,1},{0xeb2,1}}, {{0x600c,6},{0xc8a,2}}, + {{0x14cc,4},{0x28,2}}, {{0x2b,1},{0xb68,4}}, {{0xc1c,2},{0xb7c,3}}, {{0x30,2},{0xae2,1}}, + {{0xba5,4},{0xaea,1}}, {{0x30,2},{0x1ee0,3}}, {{0xb85,2},{0xb65,2}}, {{0x441c,3},{0xaf1,1}}, + {{0xb70,2},{0x1098,4}}, {{0x2445e,1},{0x432,1}}, {{0xba5,4},{0xd8e,9}}, {{0xbb4,2},{0xb47,2}}, + {{0xec2,2},{0xae6,2}}, {{0xc39,2},{0x28,1}}, {{0x3234,3},{0x1421,3}}, {{0x532,2},{0x532,8}}, + {{0xbd6,4},{0xaf2,1}}, {{0xae7,1},{0x1d5a,3}}, {{0xd41,3},{0xb2f,1}}, {{0x178c,3},{0xaeb,2}}, + {{0xc37,3},{0xe78,3}}, {{0xc55,2},{0xae7,1}}, {{0x30,2},{0x145a0,1}}, {{0xae2,2},{0x1c,1}}, + {{0x1d8a,3},{0xb67,2}}, {{0xb52,2},{0xaea,2}}, {{0xdf0,2},{0xae7,1}}, {{0x278af,1},{0x278a9,1}}, + {{0xc37,3},{0x1055,3}}, {{0xedb,4},{0xcb8,2}}, {{0xb493,4},{0xca7,2}}, {{0x46f4,4},{0x1d,1}}, + {{0xb8f,2},{0xae0,1}}, {{0x2b,1},{0xd57,2}}, {{0x2b,2},{0xb52,5}}, {{0xcc7,3},{0xf99,4}}, + {{0x1084,3},{0xb64,2}}, {{0x278af,1},{0x924,2}}, {{0xc55,2},{0x1f,1}}, {{0xae2,1},{0x12be,3}}, + {{0x5483,4},{0xae7,1}}, {{0x2a24,3},{0xb48,2}}, {{0xb52,2},{0xdfb,3}}, {{0xc25,4},{0xb2e,2}}, + {{0x1b6ab,1},{0x1b6ab,1}}, {{0xede,3},{0x2b,3}}, {{0x1d46,4},{0x1a,2}}, {{0x2b,1},{0xb63,2}}, + {{0x261f,4},{0x202c,5}}, {{0xfb1,2},{0x1b,1}}, {{0xceb,3},{0xaf1,1}}, {{0x432,2},{0x432,1}}, + {{0x7102,5},{0x20b6,2}}, {{0x1aa3,10},{0xd7f,3}}, {{0x177c,3},{0xaf1,1}}, {{0x6ac3,3},{0xae5,1}}, + {{0xb7f,3},{0xde2,4}}, {{0x1961,3},{0xb54,3}}, {{0xd54,1},{0x10f2,1}}, {{0x278dc,1},{0x116d,1}}, + {{0x2d,1},{0x1a,2}}, {{0x1e,1},{0xb63,2}}, {{0xbe33,8},{0xae7,1}}, {{0xaf1,1},{0xb2e,2}}, + {{0xb73,2},{0x1e,1}}, {{0xb70,2},{0xb2e,2}}, {{0xbcb,3},{0xd57,2}}, {{0x30,2},{0x1035,5}}, + {{0x278dc,1},{0x924,1}}, {{0x11f2,3},{0xae7,1}}, {{0xc25,4},{0xae7,2}}, {{0x290c,2},{0xae6,2}}, + {{0xca7,2},{0xaea,1}}, {{0xb7f,3},{0xb82,3}}, {{0xb44,3},{0x2dcb,4}}, {{0xd54,1},{0x10f7,1}}, + {{0xceb,3},{0x2a16,3}}, {{0x2322,6},{0x2b,2}}, {{0xbb5,1},{0xb2f,1}}, {{0xb78,2},{0xb2e,2}}, + {{0x4429,6},{0x2b,2}}, {{0xc1c,2},{0xb2e,2}}, {{0xd8ad,8},{0x2b,3}}, {{0x2b,1},{0x2318,4}}, + {{0xb44,3},{0xaec,2}}, {{0x1dbe,5},{0xb47,2}}, {{0xb7c,2},{0x10dc,2}}, {{0xaeb,2},{0xb64,2}}, + {{0x3250,4},{0xde9,1}}, {{0x22cf8,1},{0x9a9,1}}, {{0x159c,5},{0x15a1,3}}, {{0x2445f,1},{0x1b4e3,1}}, + {{0xf59,3},{0x2b,3}}, {{0xb9d,3},{0xd0d,2}}, {{0xb63,2},{0x1b,1}}, {{0xde9,1},{0x700f,3}}, + {{0xddc,4},{0x12d5,4}}, {{0x30,2},{0xb65,2}}, {{0x3234,3},{0xadf,2}}, {{0xd41,3},{0x8ec8,4}}, + {{0x6957,5},{0x1150,2}}, {{0x2bfc,2},{0xb65,2}}, {{0x6b04,5},{0xaf2,1}}, {{0xc55,2},{0x1a,1}}, + {{0x2349,4},{0x103a,3}}, {{0xdd5,2},{0xc8a,2}}, {{0x2445e,1},{0xb31,1}}, {{0x31e2,4},{0xb2d,3}}, + {{0xaf1,1},{0xb52,5}}, {{0x1b,1},{0x1862,3}}, {{0xb48,2},{0x21,1}}, {{0x1e,1},{0xb78,2}}, + {{0xb54,3},{0xb2e,2}}, {{0x30,2},{0x1aaed,1}}, {{0xb52,2},{0x1f,1}}, {{0xb8f,2},{0x1b,1}}, + {{0xbd4,2},{0x2b,3}}, {{0xbb4,2},{0xd0d,2}}, {{0xedb,4},{0xc67,2}}, {{0xeec,6},{0x11b2,4}}, + {{0xde9,1},{0x1866,3}}, {{0x257a,4},{0xae5,1}}, {{0x24462,1},{0x2445e,1}}, {{0x16fc,4},{0xb7d,1}}, + {{0x27b4,3},{0x1a,1}}, {{0x441c,3},{0xb4b,2}}, {{0xadd,4},{0x27,1}}, {{0x178c,3},{0xae5,1}}, + {{0xc49,3},{0x10ba,2}}, {{0x278a9,1},{0x278a9,1}}, {{0xd76,4},{0xaf2,1}}, {{0xc37,3},{0x5dbb,4}}, + {{0x181c,3},{0x51af,5}}, {{0xb44,3},{0x46f8,3}}, {{0xbb5,1},{0xaf2,1}}, {{0xb7f,3},{0x4882,3}}, + {{0xcfd,5},{0x1915,6}}, {{0x3234,3},{0xae6,3}}, {{0x278af,1},{0x27897,1}}, {{0xb6c,4},{0x139f,3}}, + {{0x41da,3},{0x1d,1}}, {{0xc1c,2},{0x1099,3}}, {{0x41be,3},{0x1b,1}}, {{0xb9d,3},{0x103a,3}}, + {{0xd41,3},{0x2b,3}}, {{0xb70,2},{0xaf2,1}}, {{0x174e,3},{0x2195,3}}, {{0xa7d,4},{0x244af,2}}, + {{0xd41,3},{0xeb2,1}}, {{0x278af,1},{0x278d6,1}}, {{0xb64,3},{0xb9d,3}}, {{0x2b,2},{0xbc5,3}}, + {{0xba4a,5},{0xba65,6}}, {{0xb7d,1},{0xb65,2}}, {{0x3fee,5},{0x1916,5}}, {{0x30,32},{0x30,16}}, + {{0xb2e,2},{0xe99,3}}, {{0x1b13e,3},{0x116d,1}}, {{0x10fb,3},{0xb2f,1}}, {{0x70a0,2},{0x70d2,2}}, + {{0x1f,1},{0xae7,1}}, {{0x16bc,4},{0xeb2,1}}, {{0x20e8,4},{0xde9,1}}, {{0xb7c,2},{0xb65,2}}, + {{0xc25,4},{0xb67,2}}, {{0x1ab2,4},{0xaec,2}}, {{0x10ef,1},{0x10f3,1}}, {{0xfdd,2},{0x1e,1}}, + {{0xd65,3},{0xae6,2}}, {{0x374a,6},{0xdbf,3}}, {{0xaea,2},{0xbcc2,3}}, {{0x3234,3},{0x1d448,5}}, + {{0xbb5,1},{0xc63,3}}, {{0x5949,4},{0xbc2,2}}, {{0x9b1a,5},{0xfe1,4}}, {{0x2841e,3},{0x9a9,1}}, + {{0xae2,1},{0xb48,2}}, {{0xb71,2},{0x27,1}}, {{0x4fbd,4},{0x1393,3}}, {{0xc25,4},{0xdd5,2}}, + {{0xb64,2},{0xb2f,1}}, {{0xb8f,2},{0x2d,1}}, {{0xc25,4},{0xd0b,4}}, {{0x1e,1},{0x1393,3}}, + {{0xae7,1},{0xb55,2}}, {{0x1084,3},{0xcb8,2}}, {{0xb8b,2},{0x298a,2}}, {{0x1b13e,3},{0x278dc,1}}, + {{0x5442,4},{0x1e,2}}, {{0x30,2},{0xb7d,2}}, {{0x278a9,1},{0x116e,1}}, {{0xd5c,1},{0x21,1}}, + {{0x20bb,3},{0x67a6,4}}, {{0x709c,2},{0x6f64,2}}, {{0xc25,5},{0xdf5,4}}, {{0xae7,2},{0xc67,3}}, + {{0x1db15,5},{0x1a,2}}, {{0x1c,1},{0x1c,1}}, {{0x3234,3},{0xbc5,3}}, {{0x17bc,3},{0xae7,1}}, + {{0x162c,6},{0xae2,2}}, {{0x1084,3},{0xcc0,3}}, {{0xd0f,4},{0x1b4f,3}}, {{0xc37,3},{0xbd1,2}}, + {{0x1084,3},{0x11ef,2}}, {{0xae0,1},{0xb2f,1}}, {{0xaea,1},{0xd45,4}}, {{0xae5,1},{0xb63,2}}, + {{0xae5,1},{0x1d,1}}, {{0xd461,8},{0x2b,3}}, {{0xc37,3},{0xc1e,2}}, {{0xaf2,1},{0xca7,2}}, + {{0xc25,4},{0xb48,2}}, {{0xcb5,3},{0xc55,2}}, {{0x1701,3},{0x11f2,3}}, {{0xde4,2},{0x1f,1}}, + {{0x709c,2},{0xa51,2}}, {{0x3234,3},{0x1150,2}}, {{0x2b,2},{0x2b,3}}, {{0xbbf,2},{0x10dc,2}}, + {{0xae6,2},{0x10dc,2}}, {{0x7c4,8},{0x7c4,8}}, {{0xd5c,1},{0x27b6,1}}, {{0xb9c,2},{0xaea,1}}, + {{0x1040,5},{0x1a,1}}, {{0x278a9,1},{0x116d,1}}, {{0x6b04,5},{0xb64,2}}, {{0x3234,3},{0xde2,4}}, + {{0x25c5,5},{0x1a88,3}}, {{0xcd3,2},{0xe6d,2}}, {{0xc49,3},{0x20b6,2}}, {{0x253fb,3},{0x9c9,1}}, + {{0x948,2},{0x948,2}}, {{0x1d,1},{0xca7,2}}, {{0xdf0,2},{0xb78,2}}, {{0x10fb,3},{0xb55,2}}, + {{0x278af,1},{0x1b6ab,1}}, {{0x143c,5},{0xcc0,3}}, {{0xd54,1},{0xbeb,1}}, {{0x10c8,3},{0x1a,1}}, + {{0xc37,3},{0xc55,2}}, {{0x1b13e,3},{0x278d6,1}}, {{0x1a730,5},{0x30f5,4}}, {{0xceb,3},{0xb2e,2}}, + {{0xbcb,3},{0xc4d,2}}, {{0x3640,4},{0x139f,3}}, {{0x1a,3},{0xae7,1}}, {{0xbcb,3},{0xc3d,3}}, + {{0xceb,3},{0xcd5,2}}, {{0xbbf,2},{0xae7,1}}, {{0x278af,1},{0x278dc,1}}, {{0xb44,4},{0x19e4,3}}, + {{0xb7f,3},{0xc55,2}}, {{0xdf0,2},{0xaf2,1}}, {{0xb6c,4},{0x21,2}}, {{0x16cc,4},{0x2d,1}}, + {{0x6ac3,3},{0x2f9b,3}}, {{0x732,3},{0x780,1}}, {{0x28,1},{0xcf0,2}}, {{0x20bb,3},{0x1d8a,3}}, + {{0xb7c,2},{0xb85,2}}, {{0xe64,5},{0xbb5,1}}, {{0x159c8,1},{0x2446f,2}}, {{0x8c4,4},{0x30,2}}, + {{0xb493,4},{0x27,1}}, {{0x1a30,3},{0xbd4,2}}, {{0xb64,2},{0x2d,1}}, {{0x139f,3},{0x1f,1}}, + {{0x2793d,4},{0x1b6ab,1}}, {{0x1051,4},{0x3a57,3}}, {{0x1a,2},{0x1a,1}}, {{0xbb4,2},{0xb2f,1}}, + {{0x12fc,4},{0x1a,1}}, {{0x1084,3},{0xc25a,4}}, {{0x46f4,4},{0x27,1}}, {{0xcb5,3},{0x2891,3}}, + {{0x969,2},{0x1dec4,2}}, {{0x2b,2},{0x28,1}}, {{0x1d55,4},{0x1d59,4}}, {{0x532,2},{0x30,8}}, + {{0xb79,2},{0x27,1}}, {{0x924,1},{0x116e,1}}, {{0x2b,2},{0xaea,1}}, {{0x2446a,3},{0x27cf6,2}}, + {{0xd57,2},{0x27,1}}, {{0x1084,3},{0x1d,1}}, {{0xaf2,1},{0x1f,1}}, {{0xbb5,1},{0xae7,1}}, + {{0x6f62,2},{0x96b,2}}, {{0x5288,5},{0xbd4,2}}, {{0xb78,2},{0xaf2,1}}, {{0x532,2},{0x30,4}}, + {{0x10ef,1},{0xb55,2}}, {{0x579c,8},{0xd7f,3}}, {{0xd41,3},{0xe6d,2}}, {{0x11f2,3},{0x2b,3}}, + {{0x271e,3},{0xae5,1}}, {{0xba5,5},{0xb2c,2}}, {{0x10ef,1},{0xae5,1}}, {{0x181c,3},{0xaf1,1}}, + {{0x17b3a,5},{0xb75,2}}, {{0x10e1,3},{0xc1e,2}}, {{0x3f7e,6},{0x8fee,4}}, {{0xcd9,3},{0xb78,2}}, + {{0x10ca,1},{0x1a,1}}, {{0x14cc,4},{0x4326,4}}, {{0x278a9,1},{0x278d6,1}}, {{0xb48,2},{0x12d7,5}}, + {{0x1d55,4},{0x2a91,4}}, {{0xd41,3},{0xc1c,2}}, {{0x5442,4},{0x2d,1}}, {{0xb8f,2},{0x2b,1}}, + {{0xfdf,2},{0x250c,5}}, {{0x1084,3},{0x2b,1}}, {{0x1084,3},{0xb71,2}}, {{0x1a,1},{0x1a,1}}, + {{0x278af,1},{0x116c,1}}, {{0x1cec,8},{0x12b1,4}}, {{0x16dc,5},{0x13e4,3}}, {{0x3988,6},{0x10e1,3}}, + {{0xe64,5},{0x1e,1}}, {{0xa29a,5},{0xc34,2}}, {{0xdba,4},{0x3fab,2}}, {{0x48ae,6},{0xcc0,3}}, + {{0x13ed2,5},{0xd17,3}}, {{0x1ed58,1},{0x20b1f,6}}, {{0xae2,1},{0x114d,2}}, {{0xb78,2},{0x1b,1}}, + {{0x3640,7},{0x1b,1}}, {{0x178c,3},{0xaea,1}}, {{0xb71,2},{0xd0c,2}}, {{0x278a9,1},{0x278dc,1}}, + {{0xb2c,2},{0xb71,2}}, {{0xae0,1},{0xbb5,1}}, {{0xae0,1},{0xae2,2}}, {{0xb8f,2},{0x28be,3}}, + {{0xc77,2},{0x1c,1}}, {{0xd0f,4},{0x1b4f,4}}, {{0x70a8,4},{0x70a0,2}}, {{0xb64,2},{0x1a,2}}, + {{0xb7f,3},{0x1a,2}}, {{0xae2,1},{0xb71,2}}, {{0x1d55,4},{0x1f,1}}, {{0x441c,3},{0x2349,4}}, + {{0xcd5,2},{0xae7,1}}, {{0xb6e,2},{0xde9,1}}, {{0x30,2},{0xc57,3}}, {{0x10ba,2},{0xbc5,3}}, + {{0xae9,2},{0xd57,5}}, {{0x10f6,1},{0xbeb,1}}, {{0x27,1},{0xb63,2}}, {{0xb52,2},{0xae7,1}}, + {{0x27cea,1},{0xd0c,2}}, {{0x1a,3},{0x10dc,2}}, {{0x9c9,2},{0x9c9,2}}, {{0x28cf,3},{0xe5d,2}}, + {{0xcd9,3},{0xaf1,1}}, {{0x10f6,1},{0x27b6,1}}, {{0x278a9,1},{0x27897,1}}, {{0x26b5,4},{0x139e,3}}, + {{0x19b3,4},{0x2af8,4}}, {{0xcc7,3},{0xcb8,2}}, {{0x10f7,1},{0xd5c,1}}, {{0xb64,2},{0x12fe,2}}, + {{0xbe4,1},{0xb71,2}}, {{0x162c,6},{0xb55,2}}, {{0x271e,3},{0xb2f,1}}, {{0x10ca,1},{0xd5c,1}}, + {{0x27cea,1},{0xb7d,2}}, {{0xcd9,3},{0x1a,2}}, {{0xb48,2},{0x2d,1}}, {{0x30,2},{0x9c9,1}}, + {{0xa4d,2},{0x159cb,2}}, {{0xc37,3},{0xbd3,3}}, {{0xb7f,3},{0x139e,2}}, {{0xae5,1},{0xc2e,2}}, + {{0x116d,1},{0x116e,1}}, {{0xc30,2},{0xb8f,2}}, {{0xd65,3},{0x28db,3}}, {{0xb8b,2},{0xb2c,2}}, + {{0xe6d,2},{0xd91,2}}, {{0xb47,2},{0xb9f,2}}, {{0xd41,3},{0xde9,1}}, {{0x10f6,1},{0x10ef,1}}, + {{0xcfd,5},{0xb6e,2}}, {{0x1f,1},{0x1a,2}}, {{0x278a9,1},{0x1b6ab,1}}, {{0xb8b,2},{0xb65,2}}, + {{0x19b3,4},{0x7526,5}}, {{0xc8a,2},{0xb63,2}}, {{0x27cea,1},{0x1c,1}}, {{0xbcb,3},{0xae6,3}}, + {{0x20bb,3},{0x67c0,3}}, {{0x2445e,1},{0x28633,2}}, {{0xb8f,2},{0x2b,3}}, {{0x181c,3},{0xd0c,2}}, + {{0x1058,4},{0xb52,5}}, {{0x5442,4},{0xcb8,3}}, {{0x6d8e,3},{0xaf1,1}}, {{0x4450,5},{0x1098,4}}, + {{0xd41,3},{0x101b3,3}}, {{0xbc2,2},{0x10dc,2}}, {{0xb64,2},{0xe6d,2}}, {{0x278a7,3},{0x924,1}}, + {{0x2ed0,7},{0xc8a,2}}, {{0xae6,2},{0xeb2,1}}, {{0x1d,1},{0xb63,2}}, {{0x30,2},{0x2318,4}}, + {{0x2796,3},{0x21,1}}, {{0x2446c,1},{0x2446c,1}}, {{0x20bb,3},{0x108b,3}}, {{0xbcb,3},{0xcce,3}}, + {{0x178c,3},{0x1d,1}}, {{0xd0f,6},{0xd15,5}}, {{0x4e6b,8},{0xae0,1}}, {{0x1c65,6},{0x2d44,4}}, + {{0xcd9,3},{0x700f,3}}, {{0x28f6,2},{0x1c,1}}, {{0xe75,5},{0x1916,5}}, {{0x265b,4},{0x10e20,4}}, + {{0x143c,5},{0xbd6,2}}, {{0xf52,4},{0xdf5,4}}, {{0x1b13e,3},{0x116c,1}}, {{0x22525,5},{0x1b,1}}, + {{0x24475,6},{0xa4f,2}}, {{0xae0,1},{0xae2,1}}, {{0x5949,4},{0x40bc,4}}, {{0xcfd,6},{0xe4a,4}}, + {{0xd54,1},{0xae7,1}}, {{0xb55,2},{0xb9c,2}}, {{0x28,2},{0x1c,1}}, {{0x441c,3},{0xb55,2}}, + {{0x28,1},{0x12d7,5}}, {{0x2b,1},{0x1a,2}}, {{0xaea,1},{0xb70,2}}, {{0x177c,3},{0x1d,1}}, + {{0x1ab2,4},{0x139f,3}}, {{0xcb5,3},{0xb7c,3}}, {{0xc13,4},{0x20ed,3}}, {{0x28,1},{0xc1e,2}}, + {{0xc25,4},{0x12f0,4}}, {{0x10f0,1},{0xd5c,1}}, {{0x28,1},{0xb82,3}}, {{0xe42,5},{0xf59,3}}, + {{0x13cac,6},{0x10dc,2}}, {{0x30,2},{0x2446f,2}}, {{0xc25,4},{0xb9c,2}}, {{0x20e8,4},{0xb47,2}}, + {{0x1e45,4},{0x151f,3}}, {{0xd41,3},{0xc57,3}}, {{0x46f4,4},{0x1f,1}}, {{0x30,16},{0x30,6}}, + {{0x2445f,1},{0x780,1}}, {{0xd54,1},{0x10ef,1}}, {{0xde9,1},{0x2a16,3}}, {{0xd65,3},{0xbd6,2}}, + {{0xc49,3},{0xbc2,2}}, {{0xbd1,2},{0xaf2,1}}, {{0xd8f,3},{0xb2e,2}}, {{0xaea,1},{0x1d,1}}, + {{0x3758,4},{0x6604,6}}, {{0x28,1},{0xc1c,2}}, {{0x1084,3},{0xc4d,2}}, {{0x2b,1},{0x142e,1}}, + {{0xcb8,2},{0xeb2,1}}, {{0x1a,3},{0x2b,3}}, {{0xae2,2},{0x2d,1}}, {{0xb7f,3},{0x11ef,2}}, + {{0xb79,2},{0x2b,2}}, {{0x969,2},{0xc601,2}}, {{0xc89,2},{0xb65,2}}, {{0x28,1},{0xae2,1}}, + {{0x12fc,7},{0xb54,3}}, {{0x969,2},{0xfb8b,2}}, {{0xcd9,3},{0x12ff,2}}, {{0xb74,2},{0x2b,2}}, + {{0xdfe,5},{0xb9a,6}}, {{0x1491,4},{0x132f,3}}, {{0x20bb,3},{0x392d,3}}, {{0xceb,3},{0x1d8a,3}}, + {{0x3e58,4},{0x108b,3}}, {{0xaea,1},{0xaeb,2}}, {{0x13bc,4},{0x1292,3}}, {{0xe64,5},{0xae0,1}}, + {{0xadd,4},{0xcde,3}}, {{0x3598,5},{0xc67,2}}, {{0x278d6,1},{0x924,1}}, {{0xb2f,1},{0xd0c8,4}}, + {{0x30,2},{0x432,2}}, {{0x2b,1},{0xb72,2}}, {{0x741a,7},{0xc7b,4}}, {{0xc67,2},{0x18d8,3}}, + {{0x6735,4},{0x20b5,3}}, {{0xc89,2},{0xaf2,1}}, {{0xbd6,4},{0xb2c,4}}, {{0x278d6,1},{0x116e,1}}, + {{0x1095,3},{0x10569,3}}, {{0xd0fc,4},{0xb98,2}}, {{0xd41,3},{0x1498,3}}, {{0x3242,5},{0xb2e,2}}, + {{0xb2f,1},{0x2b,3}}, {{0x26c4,3},{0xbeb,1}}, {{0xadf,2},{0xb2e,2}}, {{0x1084,3},{0x28b1,3}}, + {{0xc25,3},{0x28,2}}, {{0x26c4,4},{0x7fda,4}}, {{0xc17,3},{0x1f,1}}, {{0xae6,2},{0xb55,2}}, + {{0xbe0,1},{0xc1e,2}}, {{0x24462,1},{0x24a41,2}}, {{0x1b46f,5},{0xbb5,1}}, {{0x10f3,1},{0x1d,1}}, + {{0xb8b,2},{0x5277,2}}, {{0xae5,1},{0xaf2,1}}, {{0x2a90,2},{0xb63,2}}, {{0x3234,3},{0x2349,4}}, + {{0xaca2,3},{0xaf1,1}}, {{0xcf6,3},{0x18d8,3}}, {{0xdf0,2},{0xb2c,2}}, {{0x24462,1},{0x948,1}}, + {{0x1257,2},{0xbd4,2}}, {{0xc77,2},{0xb55,2}}, {{0x27,1},{0x1cef,3}}, {{0xbd4,2},{0x3e2a,4}}, + {{0xc4d,2},{0xd91,2}}, {{0x181c,3},{0x1c,1}}, {{0x20bb,3},{0x59f5,6}}, {{0xb98,2},{0x1a,3}}, + {{0xbb5,1},{0xb8f,2}}, {{0xf96,4},{0xb9c,2}}, {{0x2c76,4},{0x151f,3}}, {{0xba5,4},{0xc1c,2}}, + {{0xb64,2},{0xae0,1}}, {{0x1a94,6},{0xb48,2}}, {{0x734,4},{0x734,4}}, {{0xb85,2},{0x1c,1}}, + {{0xcd9,3},{0xb7c,2}}, {{0xb2e,2},{0xb9c,2}}, {{0x10ef,1},{0xb2f,1}}, {{0xd41,3},{0xd57,2}}, + {{0x5b1d,5},{0xf60,3}}, {{0xb7f,3},{0x11f2,3}}, {{0x24462,1},{0x1ed58,1}}, {{0xb2c,2},{0xb48,2}}, + {{0xd5c,1},{0x10f3,1}}, {{0x24462,1},{0x24a30,2}}, {{0xae5,1},{0x2b,3}}, {{0xb44,3},{0x14d5,3}}, + {{0x7c4,1},{0x1b4e3,1}}, {{0x278ad,3},{0x116e,1}}, {{0x116d,1},{0x116d,1}}, {{0xd76,4},{0x12ff,2}}, + {{0x2788f,3},{0x780,1}}, {{0xae7,1},{0xb47,2}}, {{0x11ef,2},{0xb54,3}}, {{0xb6c,3},{0xdf0,2}}, + {{0xaec,2},{0x29da,3}}, {{0x290e,4},{0xaf2,1}}, {{0x85de,5},{0xb2c,2}}, {{0xb79,2},{0xde9,1}}, + {{0x27,1},{0x16f8,3}}, {{0x10f6,1},{0x1e,1}}, {{0xbb5,1},{0xa2c1,4}}, {{0xb7d,1},{0xb8f,2}}, + {{0x80ce,6},{0x23ce,4}}, {{0xcc7,3},{0xaf2,1}}, {{0xbd8,2},{0xcd4,4}}, {{0xf63,5},{0x13b5,7}}, + {{0x1040,5},{0xbb5,1}}, {{0x2b,2},{0x1e,1}}, {{0x181c,3},{0xbc2,2}}, {{0xaea,1},{0xbd6,2}}, + {{0x6b04,5},{0xb9c,2}}, {{0x20bb,3},{0xbed,2}}, {{0x27897,1},{0x27897,1}}, {{0xae0,1},{0xb52,2}}, + {{0xcc7,3},{0x127a9,5}}, {{0x181c,3},{0x1f,1}}, {{0x27,1},{0x2b,1}}, {{0xba5,5},{0x1491,7}}, + {{0xb63,2},{0x2d,1}}, {{0x13bc,4},{0xc4d,2}}, {{0xc37,3},{0x12be,3}}, {{0x40b2,4},{0xb52,2}}, + {{0x10fb,3},{0xbd6,2}}, {{0xae2,1},{0xfde,2}}, {{0x10ee2,7},{0xb2e,2}}, {{0x1a,1},{0x21,2}}, + {{0xb44,3},{0xb4e4,4}}, {{0x422e,3},{0x1a,1}}, {{0xbde,3},{0xb2f,1}}, {{0x1b,1},{0x28,1}}, + {{0x2445e,1},{0x27cea,1}}, {{0x124c,5},{0x2c5f,4}}, {{0xc37,3},{0x5277,2}}, {{0xb64,3},{0x27,1}}, + {{0x26f1,4},{0x1f13,4}}, {{0x5401,4},{0xeb2,1}}, {{0xbc4,4},{0x10dc,2}}, {{0x20bb,3},{0xb8f,2}}, + {{0xc1c,2},{0xb63,2}}, {{0x278dc,1},{0x116e,1}}, {{0x1a,2},{0xaea,1}}, {{0xae2,2},{0x1f,1}}, + {{0x4d19,6},{0xc57,3}}, {{0xe64,5},{0x2eb9,4}}, {{0x14dc,7},{0xb2e,2}}, {{0xd54,1},{0xbe4,1}}, + {{0x11ef,2},{0xb98,2}}, {{0x278dc,1},{0x1b6ab,1}}, {{0x6ac3,3},{0xc3a,3}}, {{0xadf,2},{0xb9d,3}}, + {{0xd0f,4},{0x1d,1}}, {{0xfdd,2},{0x1f,1}}, {{0x295c,5},{0xc8e,3}}, {{0x119c,7},{0xc65,5}}, + {{0xedb,4},{0xd7a,3}}, {{0x4fbd,4},{0xc67,2}}, {{0xff52,4},{0xff56,6}}, {{0xceb,3},{0x1065,3}}, + {{0x178c,3},{0x27,1}}, {{0x17bc,4},{0x1c,1}}, {{0xb2e,2},{0x1e,1}}, {{0x26b5,4},{0xb48,2}}, + {{0xceb,3},{0xe78,3}}, {{0x159c9,4},{0x159cd,2}}, {{0xae2,1},{0x10dc,2}}, {{0x1d8a,3},{0xae7,1}}, + {{0x1b,1},{0x1c,1}}, {{0x1b,1},{0xb2e,2}}, {{0x10fb,3},{0xacd5,4}}, {{0x265b,4},{0x23d9,3}}, + {{0xb8a,2},{0xb48,2}}, {{0x2bfc,2},{0x1a,2}}, {{0x10ef,1},{0xb4b,2}}, {{0xae4,2},{0x1b,1}}, + {{0x26b5,4},{0xae7,1}}, {{0xb7f,3},{0x139e,3}}, {{0xdba,4},{0xb64,2}}, {{0x20bb,3},{0x2b76,3}}, + {{0x1257,2},{0x1b0a,2}}, {{0x1a,1},{0x12be,3}}, {{0xd57,2},{0x1a,1}}, {{0x1904,3},{0xaf2,1}}, + {{0x924,1},{0x116d,1}}, {{0x219c,4},{0x2988,4}}, {{0xceb,3},{0xb72,3}}, {{0x142c,3},{0x323c,2}}, + {{0x7162,4},{0xfffb,2}}, {{0x3e58,7},{0xbb4,4}}, {{0xae6,2},{0xd17,3}}, {{0xb2e,2},{0x104f9,5}}, + {{0x1084,3},{0x19c9,3}}, {{0x1b4f,3},{0xb48,2}}, {{0xbb5,1},{0x174e,3}}, {{0x6735,5},{0x673a,5}}, + {{0x441c,3},{0xb8f,2}}, {{0x27e1c,2},{0x2446c,1}}, {{0x4450,4},{0xaf2,1}}, {{0xae7,1},{0xde9,1}}, + {{0x70c8,2},{0x70a6,2}}, {{0xae9,2},{0x103a,3}}, {{0xd41,3},{0xbcc0,5}}, {{0xb7f,3},{0x43ac,7}}, + {{0x1b13e,3},{0x278a9,1}}, {{0xb2f,1},{0xb78,2}}, {{0xaea,1},{0x2211,3}}, {{0xaea,1},{0xb48,2}}, + {{0xb63,3},{0x1c,1}}, {{0xc37,4},{0xec2,2}}, {{0xe8d5,7},{0xcf6,3}}, {{0xae7,1},{0xb78,2}}, + {{0x16f8,3},{0xaf2,1}}, {{0x1c,1},{0xb7c,2}}, {{0x6f62,2},{0xa51,2}}, {{0xb63,2},{0xbd4,2}}, + {{0xba5,4},{0xb60,2}}, {{0xb78,2},{0x2b,3}}, {{0x2c76,4},{0xce2,3}}, {{0x1ab2,4},{0x12fe,2}}, + {{0xbbf,2},{0x27,1}}, {{0xc39,2},{0x2b,1}}, {{0xae0,1},{0xb55,2}}, {{0x278ad,3},{0x116d,1}}, + {{0xcb5,3},{0x1862,3}}, {{0x2a24,3},{0x10dc,2}}, {{0x19b3,4},{0x3e2a,4}}, {{0x265b,4},{0x198f5,5}}, + {{0x35ec,5},{0x1099,3}}, {{0x22b5e,5},{0x28,1}}, {{0xfda,5},{0x1e,1}}, {{0xaf2,1},{0xb48,2}}, + {{0x122c,6},{0x1058,4}}, {{0xba7,3},{0x1150,2}}, {{0x10a78,6},{0xc34,3}}, {{0xceb,3},{0x1931,6}}, + {{0xd65,3},{0x2b,1}}, {{0xbd1,2},{0x1f,1}}, {{0xb7c,2},{0x2b,3}}, {{0x1cbf,5},{0x2ffb,3}}, + {{0x19b3,4},{0x2b,3}}, {{0xae6,2},{0x2b,3}}, {{0x46f4,4},{0x20b6,2}}, {{0x2d,1},{0x1d,1}}, + {{0x1878,1},{0x26c6,1}}, {{0xbcb,3},{0x2c00,3}}, {{0xaec,2},{0xcf0,2}}, {{0xae0,1},{0xae0,1}}, + {{0xae7,1},{0xc57,3}}, {{0x264c,4},{0x23d9,3}}, {{0xb6e,2},{0xaf2,1}}, {{0xba5,4},{0x1e,1}}, + {{0x725e,5},{0x12ff,3}}, {{0x22cf8,1},{0x28634,1}}, {{0x30,2},{0x1b4e4,1}}, {{0xcce,3},{0xae7,1}}, + {{0xd41,3},{0xb9d,3}}, {{0xaf1,1},{0xae6,3}}, {{0xe64,5},{0x2a91,4}}, {{0xbed,2},{0x10dc,2}}, + {{0xb7f,3},{0x120d3,4}}, {{0xb85,2},{0xbd4,2}}, {{0x1c,1},{0x2b3c,3}}, {{0xae7,1},{0xd57,2}}, + {{0xb48,2},{0xaf2,1}}, {{0xd41,3},{0xb52,2}}, {{0x41be,3},{0xaf1,1}}, {{0x3640,8},{0xc7b,4}}, + {{0xf85,4},{0x2d,1}}, {{0xceb,3},{0x1862,3}}, {{0xbd1,2},{0xb78,2}}, {{0x2045,3},{0xb54,3}}, + {{0x10c8,3},{0xb65,2}}, {{0xbe7,1},{0xb63,2}}, {{0xcd9,5},{0x1a,1}}, {{0x397a,5},{0x1aa6,3}}, + {{0xf85,4},{0x3e2a,4}}, {{0xcd9,3},{0x16f8,3}}, {{0xceb,3},{0x88ce,4}}, {{0x2920,4},{0xb55,2}}, + {{0xdba,4},{0xca7,3}}, {{0x1b6ab,1},{0x116e,1}}, {{0x85de,4},{0xf29,3}}, {{0x1b,1},{0xae7,1}}, + {{0xae0,1},{0xc1c,2}}, {{0xf52,4},{0xae6,3}}, {{0x27897,1},{0x116e,1}}, {{0x5ca5,5},{0xb63,2}}, + {{0x11ef,3},{0xb4b,2}}, {{0xae0,1},{0x1961,6}}, {{0xf99,4},{0x10dc,2}}, {{0xcc7,3},{0xb48,2}}, + {{0x1b13e,3},{0x924,2}}, {{0xd0fc,4},{0xaf2,1}}, {{0xc37,3},{0xbed,2}}, {{0x1cec,5},{0xe6d,2}}, + {{0xcb8,2},{0xd17,3}}, {{0x1e45,3},{0xba7,3}}, {{0x30,2},{0x24,1}}, {{0x1084,3},{0x1a,2}}, + {{0xbd6,2},{0xc1e,5}}, {{0x3234,3},{0x5277,2}}, {{0xb7f,3},{0xb4b,2}}, {{0xb70,2},{0xae7,1}}, + {{0xc37,3},{0xce2,3}}, {{0xbed,2},{0xb65,2}}, {{0xe6d,2},{0xb9d,3}}, {{0xe64,4},{0xadf,2}}, + {{0x432,1},{0x1b4e3,1}}, {{0x1095,3},{0x12d7,5}}, {{0x278dc,1},{0x278d6,1}}, {{0xae0,1},{0xe78,3}}, + {{0x948,1},{0x1b4e3,1}}, {{0xb7d,1},{0xb9d,3}}, {{0x20bc9,5},{0x1a,2}}, {{0x1a0d,5},{0x2a91,4}}, + {{0x3234,3},{0xc55,2}}, {{0xceb,3},{0x1761,3}}, {{0x28,1},{0xca7,2}}, {{0xb2f,1},{0x1d5b0,5}}, + {{0x2af4,4},{0xae7,1}}, {{0x2445f,1},{0x251cb,1}}, {{0x10fb,3},{0xb2e,2}}, {{0x106ca,5},{0xb2e,2}}, + {{0xb98,2},{0xae7,1}}, {{0xddc,5},{0x23d9,3}}, {{0x10f6,1},{0x10f6,1}}, {{0xceb,3},{0x1a9d,3}}, + {{0xb78,2},{0xaea,1}}, {{0x1b6ab,1},{0x924,1}}, {{0x2b,1},{0x12fe,3}}, {{0xbb4,2},{0x1dac,3}}, + {{0x20bb,3},{0xb63,3}}, {{0x12fe,1},{0xce3,2}}, {{0x1a,1},{0xbb5,1}}, {{0x1f3b,4},{0x1260,4}}, + {{0x1878,1},{0x10ec,1}}, {{0xc25,4},{0x32d5,4}}, {{0xc1e,2},{0xb65,2}}, {{0xb7f,3},{0x1055,3}}, + {{0xc25,3},{0xce8,3}}, {{0xe3fa,6},{0xb9c,2}}, {{0xc37,3},{0xd14,4}}, {{0x28,1},{0x2b,1}}, + {{0xb44,4},{0xe6d,2}}, {{0x30,16},{0x30,2}}, {{0xc67,3},{0xae7,1}}, {{0xd41,3},{0xcab,3}}, + {{0x10b7,5},{0xbc5,3}}, {{0x10f3,1},{0xaf1,1}}, {{0xaea,2},{0xc67,2}}, {{0x1a10,2},{0xb2f,1}}, + {{0x10f7,1},{0x10f7,1}}, {{0xc37,3},{0x6107,3}}, {{0x30,2},{0x7c4,2}}, {{0xd41,3},{0x700f,3}}, + {{0xb6c,4},{0x2d,1}}, {{0xb7f,3},{0xb63,2}}, {{0x17e81,5},{0x30f5,4}}, {{0xd54,1},{0x10ec,1}}, + {{0xb7f,3},{0xc30,2}}, {{0x10f2,1},{0x1d,1}}, {{0xb44,3},{0xb6d2,5}}, {{0xb7f,3},{0xb8f,2}}, + {{0x10ea,3},{0xaf1,1}}, {{0x24462,1},{0x159c8,1}}, {{0xae0,1},{0xb72,2}}, {{0x1d4c5,7},{0xae7,1}}, + {{0xdef,3},{0x46f8,3}}, {{0xae2,1},{0x21,1}}, {{0x24462,1},{0x2445f,1}}, {{0xb44,3},{0x10e2b,3}}, + {{0x116c,1},{0x924,2}}, {{0x135c,5},{0xc1c,2}}, {{0xc37,3},{0xbc4,4}}, {{0x7a6e,4},{0xb4b,2}}, + {{0x122c,4},{0x1393,3}}, {{0xc37,3},{0xb48,2}}, {{0x153c,6},{0x5f90,3}}, {{0x28,1},{0x1e,1}}, + {{0x28,1},{0x1675,2}}, {{0xc2e,2},{0xe0a,5}}, {{0xdba,4},{0x26a9,5}}, {{0x1d,1},{0xb64,3}}, + {{0xbde,3},{0x1a,1}}, {{0x1ab2,4},{0x1a,2}}, {{0x11ef,2},{0x1a,1}}, {{0xcd9,3},{0xb4b,2}}, + {{0x1095,3},{0xc77,2}}, {{0x3eba,8},{0x11b8,4}}, {{0xbd8,2},{0x1b,1}}, {{0x194a,5},{0xb2e,2}}, + {{0x141c,5},{0xfb1,2}}, {{0xceb,3},{0x9423,3}}, {{0x46f4,4},{0xeb1,2}}, {{0x30,2},{0x139f,3}}, + {{0x1e,1},{0xae2,2}}, {{0xae2,1},{0xc1c,2}}, {{0xb2e,2},{0xb65,2}}, {{0x143c,8},{0xc4d,2}}, + {{0xf85,4},{0x19908,4}}, {{0x39f8,5},{0x1a,3}}, {{0x3234,3},{0x1d,1}}, {{0x20bb,3},{0xc89,2}}, + {{0x11ef,2},{0xae5,1}}, {{0xb9c,2},{0x12fe,2}}, {{0x10f0,1},{0x1150,2}}, {{0x1a,2},{0x10dc,2}}, + {{0xf85,4},{0xaea,1}}, {{0xd54,1},{0x27b6,1}}, {{0xb7c,2},{0xc8e,3}}, {{0xb85,2},{0xae7,1}}, + {{0x257a,4},{0x2d,1}}, {{0xbeb,1},{0xd5c,1}}, {{0xcb8,2},{0x2b,3}}, {{0xc8a,2},{0x10dc,2}}, + {{0x278d6,1},{0x278d6,1}}, {{0x278dc,1},{0x27897,1}}, {{0xc37,4},{0xc55,2}}, {{0xb6c,3},{0xde2,4}}, + {{0x7bbe,8},{0x10dc,2}}, {{0x3758,4},{0xb9d,3}}, {{0x1095,3},{0xb75,2}}, {{0x2bfd,2},{0xaf2,1}}, + {{0x28be,3},{0x1099,3}}, {{0x46f4,4},{0xa564,6}}, {{0x2446a,3},{0x2446f,2}}, {{0xae2,1},{0xb52,5}}, + {{0x1b,1},{0x1d,1}}, {{0xb63,2},{0xc34,3}}, {{0xf14,2},{0x2d,1}}, {{0x1084,3},{0xc1c,2}}, + {{0x2b,1},{0x139f,3}}, {{0x1878,1},{0x1b,1}}, {{0xae2,1},{0x1e,1}}, {{0xae7,2},{0xc1c,2}}, + {{0xae7,1},{0x1a10,2}}, {{0x11ba8,4},{0xb67,2}}, {{0x9e9,2},{0x532,2}}, {{0xc25,6},{0x23bb,4}}, + {{0x969,2},{0x410e,2}}, {{0x10e1,3},{0xc1e,5}}, {{0xbb5,1},{0xc2e,2}}, {{0xbc1,3},{0x1372,3}}, + {{0x116d,1},{0x27897,1}}, {{0x24461,1},{0x2446f,2}}, {{0x30,2},{0x2445f,1}}, {{0x2b,2},{0xd17,3}}, + {{0x3234,3},{0x139e,3}}, {{0x209d,4},{0xb857,4}}, {{0x9a9,2},{0x9a9,2}}, {{0xb52,2},{0x1719,3}}, + {{0xcc7,3},{0x3062,4}}, {{0x139f,3},{0x2195,3}}, {{0x10b7,5},{0x1761,4}}, {{0xc17,3},{0xb4b,2}}, + {{0xc25,4},{0xb8b,2}}, {{0x10ea,3},{0xb8f,2}}, {{0xbb5,1},{0x1d,1}}, {{0x2d,1},{0x10dc,2}}, + {{0xb7c,2},{0xb2e,2}}, {{0x10f2,1},{0x1862,3}}, {{0xb7f,3},{0x4590,5}}, {{0xc1c,2},{0xb48,2}}, + {{0x278a9,1},{0x116c,1}}, {{0x3234,3},{0x5dbb,4}}, {{0x1b46f,5},{0x1e,1}}, {{0x264c,4},{0x1761,4}}, + {{0xd5e,4},{0xb54,3}}, {{0xcfd,5},{0xb7d,1}}, {{0xb7d,1},{0xc77,4}}, {{0x3234,3},{0xbd8,2}}, + {{0x21e8a,3},{0x27,1}}, {{0x2237,3},{0x1f,1}}, {{0x1878,1},{0x10f3,1}}, {{0x441c,3},{0x1a9d,3}}, + {{0x116e,1},{0x116e,1}}, {{0x26f1,4},{0xce8,3}}, {{0xbcb,3},{0x9001,4}}, {{0x1f,1},{0xbb4,4}}, + {{0xb55,2},{0xaf2,1}}, {{0xd54,1},{0xb2f,1}}, {{0xae9,2},{0x11ef,2}}, {{0x2d10,6},{0x10504,4}}, + {{0xa6c6,7},{0xc8e,3}}, {{0x474f,6},{0xae7,1}}, {{0x441c,3},{0xb9d,3}}, {{0xaea,1},{0x1c,1}}, + {{0x1040,6},{0x6008,4}}, {{0x2d10,6},{0x1308,3}}, {{0x10f6,1},{0x43e3,1}}, {{0xd65,3},{0xc77,2}}, + {{0xbbf,2},{0xae6,2}}, {{0x10fb,3},{0x1d,1}}, {{0x1b4f,3},{0xae2,1}}, {{0xb6c,4},{0x18d8,4}}, + {{0xc52,2},{0x1055,3}}, {{0x1095,3},{0xfde,2}}, {{0x10b7,4},{0xe39a,4}}, {{0x229b,9},{0xc7b,4}}, + {{0x1a,1},{0x12d7,5}}, {{0x4f2e,5},{0x1037,6}}, {{0xcd9,3},{0x1257,2}}, {{0x710e,6},{0x2b,3}}, + {{0x9e37,4},{0x1a,1}}, {{0xd54,1},{0xd54,1}}, {{0x26c6,1},{0x1b,1}}, {{0xfe6f,8},{0xc67,2}}, + {{0x10f6,1},{0x283e,2}}, {{0xba5,4},{0x142e,1}}, {{0x3db0,5},{0x114d,2}}, {{0xcab,3},{0xb54,3}}, + {{0xceb,3},{0xb82,3}}, {{0x20bb,3},{0x1393,3}}, {{0xcc7,3},{0x139f,3}}, {{0x2789b,3},{0x924,1}}, + {{0x20bb,3},{0xcc3,4}}, {{0x2b,1},{0xd7a,3}}, {{0x261f,4},{0x1b,1}}, {{0xadd,4},{0x2195,3}}, + {{0xbb5,1},{0xee5,3}}, {{0x30,2},{0x117c,1}}, {{0x532,18},{0x30,2}}, {{0x9a9,1},{0x27cea,1}}, + {{0xb73,2},{0x21,1}}, {{0xb71,2},{0xdd5,2}}, {{0x70a0,4},{0x70a0,2}}, {{0xaf2,1},{0x11e0,4}}, + {{0xc37,3},{0xcb8,3}}, {{0x2445c,3},{0x1ed53,1}}, {{0x159c,4},{0xbd3,3}}, {{0xcc7,3},{0xb8f,2}}, + {{0xb52,2},{0xe72,3}}, {{0x1434,3},{0xb54,3}}, {{0x1040,6},{0xc1e,2}}, {{0xcf0,2},{0xb54,3}}, + {{0x1a,2},{0x1b,1}}, {{0xb52,2},{0x25df,4}}, {{0x2445c,3},{0x251de,2}}, {{0xae0,1},{0x29da,3}}, + {{0x1934,4},{0xfdd,3}}, {{0xbc5,3},{0x2195,3}}, {{0x2474d,2},{0x1b25d,2}}, {{0xde9,1},{0xae5,1}}, + {{0x2d,1},{0x28,1}}, {{0xd461,8},{0x1a,1}}, {{0xb55,2},{0xb65,2}}, {{0x16ac,5},{0xe8d,3}}, + {{0x13f2c,5},{0xc3d,3}}, {{0x30,2},{0x532,2}}, {{0xc25,3},{0x1b4f,4}}, {{0x2b,1},{0xb52,5}}, + {{0x1afd,5},{0xb52,6}}, {{0xb7f,3},{0xc70,4}}, {{0xc25,3},{0x15c61,3}}, {{0x323c,2},{0x1a,1}}, + {{0x24a41,2},{0x432,1}}, {{0x22cf8,1},{0x251d8,2}}, {{0x26c4,4},{0x3e50,8}}, {{0xb44,3},{0xde9,1}}, + {{0xb8f,2},{0x2891,3}}, {{0xc25,4},{0x1c,1}}, {{0xae0,1},{0x27,1}}, {{0x116d,1},{0x278d6,1}}, + {{0xb44,4},{0x21,2}}, {{0x1e105,6},{0x1b,1}}, {{0xf52,4},{0xaea,1}}, {{0x159c,5},{0x108b,3}}, + {{0x151c,4},{0x2b,3}}, {{0x2d,1},{0xb65,2}}, {{0x27897,1},{0x1b6ab,1}}, {{0x6b06,3},{0xb64,2}}, + {{0x10f6,1},{0xae7,1}}, {{0x1f0f,3},{0x2b,1}}, {{0x3c36,11},{0xae7,1}}, {{0x423c,3},{0x14eb3,3}}, + {{0xae2,2},{0x1a,1}}, {{0x432,32},{0x432,32}}, {{0x804,4},{0x804,4}}, {{0xbd4,2},{0xae6,2}}, + {{0xdf0,2},{0xc63,3}}, {{0xaeb,2},{0x28,2}}, {{0x12332,5},{0x12ff,2}}, {{0xc30,2},{0xb55,2}}, + {{0xedb,4},{0xdf0,2}}, {{0x278dc,1},{0x278dc,1}}, {{0xb48,2},{0x1f,2}}, {{0x14fc,5},{0xbb4,3}}, + {{0x999a,9},{0x10dc,2}}, {{0x4d19,6},{0xe2c0,4}}, {{0xae6,3},{0xb2c,2}}, {{0xc1e,2},{0x1489,3}}, + {{0x1ab2,4},{0x1cee,3}}, {{0x1084,3},{0xb8f,2}}, {{0x1040,6},{0x3a39,3}}, {{0x2520a,2},{0x251d8,2}}, + {{0x116d,1},{0x1b6ab,1}}, {{0x21ba,8},{0xae7,1}}, {{0xc25,6},{0xb55,3}}, {{0x1d55,8},{0x10dc,2}}, + {{0xc27,4},{0xdd3,3}}, {{0xadf,2},{0xce8,3}}, {{0xedb,4},{0x31c8,4}}, {{0x13b8a,7},{0xb65,2}}, + {{0x2796,3},{0x2c,2}}, {{0x1eaa7,5},{0x10dc,2}}, {{0x1d8a,3},{0x18d8,3}}, {{0x10f3,1},{0xca6,3}}, + {{0x20bb,3},{0x2d12,4}}, {{0x3df6,5},{0xecc,3}}, {{0xc29,2},{0xc67,2}}, {{0x10ea,3},{0x5277,2}}, + {{0x2ae0,5},{0x8c45,4}}, {{0x7a6e,4},{0xb48,2}}, {{0xbd6,2},{0xb2f,1}}, {{0x10b7,5},{0x6a39,6}}, + {{0x31d2,6},{0x1489,3}}, {{0x1cbf,5},{0x1621,4}}, {{0x3402,7},{0xc25a,4}}, {{0xc2e,2},{0xaf1,1}}, + {{0x2d02,6},{0x16ce,4}}, {{0xc1c,2},{0xb78,2}}, {{0xcc7,3},{0x27,1}}, {{0xb7f,3},{0xba7,3}}, + {{0xceb,3},{0x1257,2}}, {{0x1f,1},{0xcc0,3}}, {{0x1040,6},{0x4074,3}}, {{0x70ea,3},{0xdf0,2}}, + {{0xb52,2},{0xd17,3}}, {{0x1040,6},{0x3cba,3}}, {{0xc956,7},{0xae7,1}}, {{0x3402,7},{0x22e3,3}}, + {{0x27b6,1},{0xd5c,1}}, {{0x1a,1},{0x12fe,1}}, {{0xc89,2},{0x10dc,2}}, {{0xb2c,2},{0xaf2,1}}, + {{0xae0,1},{0xaf2,1}}, {{0xb44,3},{0xb64,2}}, {{0x10f1e,6},{0x5396,3}}, {{0x532,34},{0x30,6}}, + {{0xc25,3},{0x1097,5}}, {{0x1b4e3,1},{0x948,1}}, {{0xb7f,3},{0x21afd,4}}, {{0x46f4,4},{0xde9,4}}, + {{0xb47,2},{0x1f,1}}, {{0x3a3e,7},{0xaf1,2}}, {{0xc77,2},{0xb2f,1}}, {{0xaca2,3},{0x1a,2}}, + {{0xcfd,5},{0xdd5,4}}, {{0xe830,5},{0xb8f,2}}, {{0x2045,3},{0x10dc,2}}, {{0xae7,1},{0x1c1d9,4}}, + {{0x1ab2,4},{0x12d7,5}}, {{0x6b5f,4},{0x1a,1}}, {{0xcd3,2},{0x2af4,4}}, {{0x41be,3},{0xb6e,2}}, + {{0x27897,1},{0x278d6,1}}, {{0xbeb,1},{0x1d,1}}, {{0x10192,2},{0x6f72,2}}, {{0x2322,6},{0xb9d,3}}, + {{0x4d33,7},{0x2b,2}}, {{0x1a76,4},{0x1e,2}}, {{0xd41,3},{0xbe85,5}}, {{0x271e,3},{0xaf1,1}}, + {{0x2bb2,8},{0x1489,3}}, {{0x1f,1},{0xf6a,3}}, {{0x1772f,7},{0xae7,1}}, {{0x7276,4},{0xb78,2}}, + {{0xae7,1},{0x256ec,3}}, {{0x2b,2},{0x1d,1}}, {{0x1cec,8},{0xb8a,2}}, {{0xbb5,1},{0x1f,1}}, + {{0x1084,3},{0x22e3,3}}, {{0xa246,4},{0x1d8e,3}}, {{0x10fb,3},{0xc67,2}}, {{0x2106,6},{0x1719,3}}, + {{0x27,1},{0xae0,1}}, {{0x10f6,1},{0x1c,1}}, {{0xc37,3},{0x187c,3}}, {{0x20bb,3},{0xb7c,3}}, + {{0xb63,2},{0xc62,3}}, {{0xb6c,3},{0xe36,5}}, {{0x1089,2},{0x28,1}}, {{0xceb,3},{0xc1e,2}}, + {{0x1aa3,6},{0xb2e,2}}, {{0x19b3,4},{0x20c52,3}}, {{0xc51,2},{0xb48,2}}, {{0x142c,3},{0x14b6,2}}, + {{0x2bea,7},{0xcce,3}}, {{0x1040,6},{0xb55,2}}, {{0xb71,2},{0xb85,2}}, {{0x10ca,1},{0xb65,2}}, + {{0xbed,2},{0x21,1}}, {{0x30,2},{0x2b2ff,1}}, {{0x6b04,5},{0x1b,1}}, {{0xceb,3},{0x1a,1}}, + {{0x4284,2},{0x43e3,1}}, {{0xb67,2},{0x10dc,2}}, {{0x10fb,3},{0xb8f,2}}, {{0x924,1},{0x278af,1}}, + {{0xbe4,1},{0xae5,1}}, {{0xcd9,3},{0xbed,2}}, {{0x100d,5},{0xb64,2}}, {{0xb1f4,5},{0xb48,2}}, + {{0xceb,3},{0xaf2,1}}, {{0xbd8,2},{0x1a,2}}, {{0x31e0,5},{0xd17,3}}, {{0x10ef,1},{0x10ef,1}}, + {{0x1b,1},{0x1f,1}}, {{0x112c,1},{0x112c,1}}, {{0xb82,2},{0xb65,2}}, {{0xbde,3},{0xaf1,1}}, + {{0x1a,1},{0xaf2,1}}, {{0x30,2},{0xb85,2}}, {{0x1a,1},{0x12fe,2}}, {{0xaca2,3},{0xb72,2}}, + {{0xfed0,6},{0xfed2,2}}, {{0xb066,2},{0x10dc,2}}, {{0x3234,3},{0xc67,3}}, {{0x2ab6,5},{0xca7,3}}, + {{0x3e04,5},{0x1687,3}}, {{0x1fb2,5},{0xb9d,3}}, {{0xb64,2},{0xde9,1}}, {{0xfed0,6},{0xfed2,4}}, + {{0xce2,3},{0xae2,2}}, {{0x1b,1},{0x1150,2}}, {{0x6d8e,3},{0xc4d,2}}, {{0xb44,3},{0x734a,4}}, + {{0x3f9a,4},{0xb64,2}}, {{0xd41,3},{0x25da,3}}, {{0xc76,5},{0xc7b,4}}, {{0x1d,1},{0x29da,3}}, + {{0x117c,1},{0x2445f,1}}, {{0x30,16},{0x30,4}}, {{0xd41,3},{0x2e69,5}}, {{0xaf1,1},{0xaf1,1}}, + {{0x12fc,4},{0xd7f,3}}, {{0x10fb,3},{0x1761,3}}, {{0xc89,2},{0xaeb,2}}, {{0xee8,3},{0xae6,3}}, + {{0x1051,4},{0x2b,2}}, {{0xc1c,2},{0xaea,2}}, {{0xc77,2},{0xae0,1}}, {{0x3004,9},{0x10dc,2}}, + {{0x20bb,3},{0x763c,3}}, {{0xa6c6,5},{0x33d3,5}}, {{0xcd9,3},{0xe6d,2}}, {{0x1cef,3},{0xc7b,4}}, + {{0xbd1,2},{0xae5,1}}, {{0x31e2,4},{0xd90,2}}, {{0x27897,1},{0x278dc,1}}, {{0x10e6a,6},{0x10dc,2}}, + {{0x924,1},{0x1b6ab,1}}, {{0xb79,2},{0x1e,2}}, {{0xbd1,2},{0xae7,1}}, {{0xd54,1},{0x43e3,1}}, + {{0x1878,1},{0xbeb,1}}, {{0x9a9,1},{0x2445f,1}}, {{0x28,1},{0xfe1,4}}, {{0x288cf,2},{0xde9,1}}, + {{0x540e,5},{0xc1c,2}}, {{0xb2c,2},{0xb82,3}}, {{0xae7,2},{0xbed,4}}, {{0x24462,1},{0x2446f,2}}, + {{0xf14,2},{0x12d7,5}}, {{0xaea,1},{0x2202,3}}, {{0x8c4,4},{0x30,14}}, {{0xa29a,5},{0x1150,2}}, + {{0xb7f,6},{0x80bd,4}}, {{0x44b8,5},{0x23ce,4}}, {{0xb2e,2},{0x1f,1}}, {{0x141f2,5},{0x94b5,5}}, + {{0xbb5,1},{0xc1c,2}}, {{0x122c,6},{0x103a,3}}, {{0x4491,6},{0xb54,3}}, {{0xbcb,3},{0x539c,3}}, + {{0xeca,5},{0x1538,4}}, {{0x11dc,8},{0xae7,1}}, {{0x10c8,3},{0xb98,2}}, {{0x4e85,5},{0xb63,2}}, + {{0xd1b,1},{0x1a,1}}, {{0x10e6a,6},{0xae7,1}}, {{0x100d,5},{0x1023,7}}, {{0x6783,5},{0x1089,2}}, + {{0x15ac,5},{0xb55,2}}, {{0x6ac3,3},{0xed0,3}}, {{0x1d,1},{0xfde,2}}, {{0x132f0,6},{0x22e3,3}}, + {{0xc89,2},{0x2211,3}}, {{0x24,1},{0x18,1}}, {{0x2b,1},{0xb64,3}}, {{0x181c,3},{0x591e,4}}, + {{0x2d,1},{0xe6d,4}}, {{0x1051,4},{0xbbf,2}}, {{0xbb4,2},{0xb63,2}}, {{0x159c,5},{0xdf6,3}}, + {{0xb70,3},{0xca7,2}}, {{0xbc5,3},{0xb54,3}}, {{0x20bb,3},{0x1d8e,3}}, {{0x256b,5},{0x2bfc,2}}, + {{0xcab,3},{0xc8e,3}}, {{0xb70,2},{0xb52,5}}, {{0x12ac,5},{0xcce,3}}, {{0xc57,3},{0x12be,3}}, + {{0x177c,3},{0x1a,1}}, {{0x16dc,7},{0x2742,3}}, {{0x2d,1},{0xc7b,4}}, {{0x2d10,6},{0xcc0,3}}, + {{0xe64,5},{0xe77,3}}, {{0x257a,5},{0xc9a,2}}, {{0xadf,2},{0xd57,2}}, {{0x10ea,3},{0xaf2,1}}, + {{0xda9,4},{0x1b,1}}, {{0x1c,1},{0xce8,3}}, {{0xb4b,2},{0xdf0,2}}, {{0x8c4,4},{0x532,2}}, + {{0x18a5,4},{0xbd6,2}}, {{0x88ea,5},{0x4905,4}}, {{0x27897,1},{0x116d,1}}, {{0xbb5,1},{0xc4d,2}}, + {{0x265b,4},{0x12b26,4}}, {{0xe75,5},{0x1377,5}}, {{0x30,128},{0x30,128}}, {{0xd57,2},{0x29da,3}}, + {{0x10f7,1},{0xae6,3}}, {{0x1b6cb,1},{0x1b4e3,1}}, {{0x2b,2},{0xb8f,3}}, {{0x969,2},{0x1cf1d,2}}, + {{0x2445f,1},{0x2445e,1}}, {{0x20bb,3},{0x12b69,4}}, {{0xb78,2},{0x1d,1}}, {{0xaea,1},{0x12b1,4}}, + {{0x10f3,1},{0x2f9b,3}}, {{0x11e28,5},{0xb9d,3}}, {{0x10ef,1},{0x10f0,1}}, {{0xbeb,2},{0xbed,4}}, + {{0x3758,4},{0xb2e,2}}, {{0xc34,2},{0x1e,1}}, {{0x8a46,5},{0xdfb,3}}, {{0x30,2},{0xc1e,2}}, + {{0xb7f,3},{0x4d97,2}}, {{0xcfd,5},{0x1930,3}}, {{0xcfd,6},{0x9d18,6}}, {{0xbc2,2},{0x2b,3}}, + {{0x2bb3e,3},{0x19,1}}, {{0xcfd,5},{0x1621,4}}, {{0x278d6,1},{0x1b6ab,1}}, {{0xae2,1},{0xeb2,1}}, + {{0xb7f,3},{0x5eb6,4}}, {{0x271e,3},{0xb52,2}}, {{0x5365,6},{0xdf0,2}}, {{0xc65f,7},{0xae7,1}}, + {{0xf63,7},{0x1fe4,5}}, {{0x61c6,5},{0xce8,3}}, {{0x1878,1},{0xbe4,1}}, {{0x2445c,3},{0x734,1}}, + {{0xca95,5},{0x4569,5}}, {{0x14cc,4},{0x1cef,3}}, {{0xb2f,1},{0x3e16,3}}, {{0xd41,3},{0xb066,2}}, + {{0x7162,4},{0xde2,4}}, {{0x24475,6},{0x27d99,2}}, {{0x2106,6},{0xb63,2}}, {{0x2b,1},{0x2bfd,2}}, + {{0x30,2},{0x12fe,1}}, {{0xa246,4},{0x174e,3}}, {{0xb31,1},{0x2445f,1}}, {{0xb2f,1},{0xbd8,2}}, + {{0xbeb,1},{0xae5,1}}, {{0x1051,4},{0x1372,3}}, {{0xde9,1},{0x4453,4}}, {{0x122c,5},{0xc8a,2}}, + {{0x229b,5},{0x5396,3}}, {{0xb55,2},{0xb2e,2}}, {{0xb2f,1},{0xadf,2}}, {{0xf212,3},{0x1866,3}}, + {{0xd41,3},{0x11ef,2}}, {{0x1095,3},{0x21bd,5}}, {{0x17981,6},{0x2b,3}}, {{0x15fea,5},{0x2b,3}}, + {{0xb85,2},{0x2b,3}}, {{0xb6c,4},{0xb8f,2}}, {{0xb4a,3},{0xae0,1}}, {{0xb8a,2},{0xae7,1}}, + {{0x1ab2,4},{0x21,1}}, {{0x30c8,5},{0xb70,2}}, {{0x30,2},{0xb78,2}}, {{0x10fb,4},{0x107d,4}}, + {{0xb44,3},{0xbb4,4}}, {{0xd41,3},{0xc30,2}}, {{0xceb,3},{0xe39a,4}}, {{0xbcb,3},{0x2748,2}}, + {{0xceb,3},{0x2dcb,4}}, {{0xfda,6},{0x3948,5}}, {{0x2a24,3},{0x2b,3}}, {{0xcd9,3},{0xc4d,2}}, + {{0x15ac,7},{0xaef,3}}, {{0x28da,1},{0xb2e,2}}, {{0xc25,3},{0xb52,2}}, {{0xceb,3},{0x9b11,5}}, + {{0x150ba,3},{0x1489,3}}, {{0xc57,3},{0x1d,1}}, {{0x28,1},{0xfde,2}}, {{0xaea,1},{0x2b,3}}, + {{0xb64,2},{0xaea,1}}, {{0xceb,3},{0xc8e,3}}, {{0xceb,3},{0x141b2,4}}, {{0x4c90,4},{0x2195,3}}, + {{0xb7f,3},{0xfb1,3}}, {{0x159c8,1},{0x1b4e3,1}}, {{0x1f,1},{0x1c,1}}, {{0x20bb,3},{0x1826b,5}}, + {{0x30,2},{0x2045,3}}, {{0xcd9,3},{0x77a2,3}}, {{0xae7,2},{0x12d5,4}}, {{0xcd9,3},{0xb52,2}}, + {{0x30,16},{0x30,14}}, {{0xbb5,1},{0xc1e,2}}, {{0xaf1,1},{0xbd5,2}}, {{0xbcb,3},{0xb4b,2}}, + {{0x10ef,1},{0x1a5c,3}}, {{0x2160,5},{0x1308,3}}, {{0x70c8,2},{0x1015e,2}}, {{0x159c,4},{0x2237,3}}, + {{0xae6,2},{0xaea,1}}, {{0xa7d,4},{0x6f6c,2}}, {{0x7f5a,8},{0xc8f,2}}, {{0xeb3d,7},{0xb7d,2}}, + {{0x2474d,2},{0xff22,2}}, {{0xddc,4},{0x1a,1}}, {{0xfef0,4},{0x70a0,2}}, {{0x70ea,5},{0x2c,2}}, + {{0xb7f,3},{0xc1e,2}}, {{0x924,2},{0x116c,1}}, {{0xb63,2},{0x20b6,2}}, {{0xddc,4},{0xbed,4}}, + {{0x3788,3},{0x12ff,2}}, {{0xc30,2},{0x1f,1}}, {{0x3fee,5},{0x10dc,2}}, {{0x2b,1},{0xdf0,2}}, + {{0x27,1},{0xd0d,2}}, {{0xcfd,6},{0xae6,3}}, {{0x20bb,3},{0x1089,2}}, {{0x6d8e,3},{0xb2f,1}}, + {{0xeb9,4},{0xfe1,4}}, {{0x2b,1},{0x2b,1}}, {{0xb9c,2},{0x1a,1}}, {{0x2445f,1},{0x734,1}}, + {{0xb6c,3},{0xb52,2}}, {{0x1f,1},{0xc34,3}}, {{0xb44,3},{0x4d97,2}}, {{0xbcb,6},{0xe72,3}}, + {{0xf01,4},{0xb2e,2}}, {{0x10f6,1},{0x10ec,1}}, {{0xcc7,3},{0x1a8d,5}}, {{0xbde,3},{0xaf2,1}}, + {{0x261f,4},{0x2d,1}}, {{0x2610,8},{0xb52,5}}, {{0xeec,6},{0xcd3,2}}, {{0x78b2,5},{0xc1e,5}}, + {{0xd76,4},{0x28,2}}, {{0xe6d,2},{0x28,1}}, {{0x181c,3},{0xbc6,2}}, {{0x924,1},{0x27897,1}}, + {{0x1afd,5},{0x11b8,4}}, {{0xd54,1},{0xaf1,1}}, {{0xb82,2},{0x11b8,4}}, {{0xd461,8},{0x10dc,2}}, + {{0x318c,5},{0x62ed,4}}, {{0xbb5,1},{0xd0b,3}}, {{0x2446c,1},{0x432,1}}, {{0x432,8},{0x432,4}}, + {{0xaf2,1},{0x1b4b,3}}, {{0x20d9,4},{0x1a5c,3}}, {{0xbb5,1},{0x19c9,3}}, {{0x2322,6},{0xaf1,1}}, + {{0x780,2},{0x780,2}}, {{0x14cc,4},{0x20b6,2}}, {{0x12ac,5},{0xb54,3}}, {{0x2939,3},{0xd0d,2}}, + {{0xb71,2},{0xae7,1}}, {{0x924,1},{0x278d6,1}}, {{0x3df6,5},{0x1930,3}}, {{0x2891,3},{0x1b,1}}, + {{0xd54,1},{0xbe0,1}}, {{0xddc,4},{0xe72,3}}, {{0x12d6e,4},{0xb65,2}}, {{0x261f,4},{0x49ac,2}}, + {{0xeb9,4},{0xca7,3}}, {{0xdf0,2},{0x1916,5}}, {{0x39f8,5},{0x1c43,4}}, {{0x10fb,3},{0xb9d,3}}, + {{0x181c,3},{0x10f2,1}}, {{0x14bc,5},{0x28,1}}, {{0xb64,3},{0xae5,1}}, {{0x30,2},{0xb70,2}}, + {{0x2a24,3},{0x1a,2}}, {{0x3694,4},{0xae2,1}}, {{0x25c5,5},{0xbc5,3}}, {{0x441c,3},{0x10e2b,3}}, + {{0x924,1},{0x278a9,1}}, {{0xaea,2},{0xc34,2}}, {{0xd0d,2},{0x2b,3}}, {{0x159c,4},{0xc52,2}}, + {{0x116d,1},{0x278af,1}}, {{0xd54,1},{0xbc2,2}}, {{0x28e8e,2},{0x251de,2}}, {{0xadf,2},{0xce1,4}}, + {{0x17bc,3},{0x10f2,1}}, {{0x116d,1},{0x278dc,1}}, {{0x178c,3},{0x1f,2}}, {{0x1ab2,4},{0x12f0,4}}, + {{0x3fee,5},{0xbc4,4}}, {{0x1afd,11},{0x1b08,3}}, {{0xaeb,2},{0xb2f,1}}, {{0x271e,3},{0xb8f,2}}, + {{0x3234,3},{0x1c68,3}}, {{0xc37,3},{0x2e55,3}}, {{0xc12a,6},{0xc7b0,4}}, {{0x28,2},{0x28,1}}, + {{0xfb1,2},{0x10dc,2}}, {{0x4a68,5},{0xc34,3}}, {{0xc37,3},{0x1d,1}}, {{0x709c,2},{0x96b,2}}, + {{0x20bb,3},{0xd0b,3}}, {{0x2b,2},{0x1b,1}}, {{0xaf1,1},{0xae7,1}}, {{0x159c,4},{0xb2e,2}}, + {{0x124c,5},{0xdbf,3}}, {{0x181e1,5},{0xbac,4}}, {{0xae7,2},{0xb78,2}}, {{0xa246,4},{0xa24a,3}}, + {{0x10ef,1},{0xbd6,2}}, {{0xde4,2},{0xb401,2}}, {{0x2ce6,9},{0xdf9,5}}, {{0xc67,3},{0xb4b,2}}, + {{0xfb1,2},{0x2b,3}}, {{0x3234,3},{0x1a30,5}}, {{0x1a,2},{0x18d8,3}}, {{0x1a,2},{0x2b,3}}, + {{0x21,1},{0x2b,1}}, {{0xb7f,3},{0x1934,4}}, {{0x3e90,5},{0x174e,3}}, {{0xadd,4},{0xae1,3}}, + {{0xb7f,3},{0x1961,3}}, {{0xceb,3},{0xee1,3}}, {{0x7102,5},{0x40b8,2}}, {{0xae2,1},{0xd0d,2}}, + {{0x70c8,2},{0x70da,2}}, {{0x8686,5},{0x1865,4}}, {{0xd65,3},{0x101a,3}}, {{0x734,1},{0x1ed58,1}}, + {{0xbeb,1},{0xaeb,2}}, {{0x17eff,5},{0x101b2,4}}, {{0x1257,2},{0x1c,1}}, {{0xc1c,2},{0x2b,3}}, + {{0x10b7,4},{0xd5e,4}}, {{0xdf5,3},{0x1357,5}}, {{0x16dc,5},{0xb2f,1}}, {{0x7102,5},{0x101c,2}}, + {{0x7c2,3},{0x24,1}}, {{0x1c,1},{0xb71,2}}, {{0x177c,3},{0xf5f6,2}}, {{0xae0,1},{0x4653,5}}, + {{0x1c,1},{0x22567,4}}, {{0xd1a,2},{0x2b,3}}, {{0x24b7,5},{0xb2f,1}}, {{0x2b,1},{0x12fe,2}}, + {{0x1152,3},{0xb75,2}}, {{0x10ea,3},{0xb63,3}}, {{0x116e,1},{0x278d6,1}}, {{0x1aa3,13},{0xd0d,2}}, + {{0xae6,2},{0xb65,2}}, {{0x27,1},{0x1372,3}}, {{0xaf3,4},{0xf907,2}}, {{0x26c6,1},{0xbeb,1}}, + {{0xbd6,2},{0xae7,1}}, {{0xdbf,3},{0xc7b,4}}, {{0x2446a,3},{0x2445e,1}}, {{0xde9,1},{0x1704,3}}, + {{0x19b3,4},{0x11ef,2}}, {{0xb8c,2},{0x2bfd,2}}, {{0x1b,1},{0xae2,1}}, {{0x1b,1},{0xdf0,2}}, + {{0x139f,3},{0xb9c,2}}, {{0xbb5,1},{0x10dc,2}}, {{0x10f6,1},{0x10ca,1}}, {{0x1f,1},{0xb2c,2}}, + {{0x39f8,5},{0x2b,2}}, {{0xaec,2},{0xae7,1}}, {{0x278c9,2},{0x1b6ab,1}}, {{0x6d81,3},{0xae6,2}}, + {{0x1084,3},{0x2af4,4}}, {{0xb44,3},{0xd57,2}}, {{0x2796,3},{0x1b,1}}, {{0x20bb,3},{0xc4d,2}}, + {{0x5442,4},{0x102f9,3}}, {{0xbcb,3},{0x5575,4}}, {{0x6ac5,1},{0xc3a,3}}, {{0xb48,2},{0x12fe,1}}, + {{0xb7f,3},{0x675f,6}}, {{0xae6,2},{0x1e,1}}, {{0x9a9,2},{0x780,1}}, {{0x10ea,3},{0xaea,1}}, + {{0x3004,9},{0x1c25,4}}, {{0x116e,1},{0x1b6ab,1}}, {{0x2cae,4},{0xde9,1}}, {{0x3234,3},{0xbb15,3}}, + {{0x4a84,3},{0xe1d,3}}, {{0x10ea,3},{0x10dc,2}}, {{0x14b6,2},{0xb2e,2}}, {{0x181c,3},{0xae0,1}}, + {{0xb92c,7},{0x10dc,2}}, {{0xddc,4},{0x1f13,4}}, {{0x8092,6},{0xce8,3}}, {{0xb4b,2},{0xae7,1}}, + {{0x2322,6},{0xc89,3}}, {{0x17660,6},{0x10dc,2}}, {{0x30,16},{0x30,8}}, {{0x2796,3},{0xf99e,5}}, + {{0x22e6,5},{0x4875,5}}, {{0xae0,1},{0xb63,3}}, {{0x46f4,4},{0xb141,3}}, {{0xfda,7},{0x250c,5}}, + {{0xfdf,2},{0x4ee7,6}}, {{0xd65,3},{0xfe5,2}}, {{0x16fc,4},{0x142e,1}}, {{0xd57,2},{0x1b,1}}, + {{0x804,2},{0x70a6,2}}, {{0x2d,1},{0x392d,3}}, {{0x924,1},{0x278dc,1}}, {{0x4f6f,5},{0x1525,7}}, + {{0x24,1},{0x27c9b,2}}, {{0xd54,1},{0xd0c,2}}, {{0xc37,3},{0x11f2,3}}, {{0x1084,3},{0x28,2}}, + {{0x10f6,1},{0x10f7,1}}, {{0x15d3e,6},{0x10dc,2}}, {{0x116d,1},{0x278a9,1}}, {{0x24a2d,2},{0x1b4e3,1}}, + {{0x3fee,10},{0xb2e,2}}, {{0x140c,8},{0xae7,1}}, {{0x10ea,3},{0xc67,2}}, {{0xba5,4},{0x4de1,3}}, + {{0x92b6,5},{0xae0,1}}, {{0xc67,2},{0x18ca,3}}, {{0xba7,3},{0x2b,3}}, {{0x1c,1},{0x1d,1}}, + {{0xd0f,4},{0xd0b,3}}, {{0x969,2},{0x1a328,2}}, {{0x2c76,4},{0xd0b,3}}, {{0xeec,5},{0xe03,4}}, + {{0xc30,2},{0x2b,1}}, {{0x10fb,3},{0xb63,2}}, {{0xba4a,6},{0x16f8,3}}, {{0xaca2,3},{0x1a,1}}, + {{0xc1e,2},{0xae5,1}}, {{0xcc7,3},{0xfde,2}}, {{0xae0,1},{0x1961,3}}, {{0xae9,2},{0xb2e,2}}, + {{0xb7f,3},{0x202c,5}}, {{0xeb9,5},{0xf01,4}}, {{0x7546,7},{0x16ef,4}}, {{0x3234,3},{0x43bd,4}}, + {{0x41da,3},{0xc55,2}}, {{0x2b,2},{0x40b8,2}}, {{0xc67,2},{0x40b8,2}}, {{0x3392,6},{0xae2,1}}, + {{0x1a,3},{0xb78,2}}, {{0xeb9,5},{0x1260,4}}, {{0x139e,3},{0x12be,3}}, {{0x25c5,5},{0xd57,2}}, + {{0xde9,1},{0xed0,3}}, {{0x162c,8},{0xc8e,3}}, {{0xb9f,2},{0xae2,1}}, {{0x18094,6},{0xbd4,2}}, + {{0x2445f,1},{0x24462,1}}, {{0xb4a,3},{0x27,1}}, {{0xae6,3},{0x1c25,4}}, {{0xceb,3},{0xcce,3}}, + {{0x278d6,1},{0x278dc,1}}, {{0x780,1},{0x734,1}}, {{0x10f6,1},{0xbe4,1}}, {{0x1098,3},{0xb9f,2}}, + {{0x10f3,1},{0x10ca,1}}, {{0xf85,4},{0xc76,9}}, {{0x278ad,3},{0x116c,1}}, {{0x1cec,6},{0xaf2,1}}, + {{0x2d,1},{0xb2f,1}}, {{0x271e,3},{0xbd6,2}}, {{0xae9,2},{0xaf1,1}}, {{0xba5,4},{0xdd5,2}}, + {{0xbc18,6},{0xae7,1}}, {{0xcab,3},{0xb7c,3}}, {{0xa2be,5},{0x2b,2}}, {{0x1d,1},{0x2bfd,2}}, + {{0x1040,5},{0xb8b,2}}, {{0x1b4e4,1},{0x1ed53,1}}, {{0x1d6bf,5},{0x101b3,3}}, {{0x1e,1},{0x67c0,3}}, + {{0x278d6,1},{0x27897,1}}, {{0x1b6dd,2},{0xf907,2}}, {{0x1095,3},{0x4037,4}}, {{0xb52,2},{0x11ef,2}}, + {{0x28da,1},{0x28db,3}}, {{0xb52,2},{0xdf9,5}}, {{0x70c8,2},{0x70d2,2}}, {{0xcd9,5},{0x5275,4}}, + {{0x139e,2},{0x10dc,2}}, {{0xcd9,3},{0xc34,2}}, {{0xc3d,3},{0xcb7,2}}, {{0x6ac5,1},{0xae5,1}}, + {{0x3234,3},{0xb7c,3}}, {{0xcd9,3},{0xcc0,3}}, {{0xaf2,1},{0xaea,2}}, {{0x116d,1},{0x116c,1}}, + {{0x348e,7},{0xb7d,2}}, {{0x12fc,4},{0x187c,3}}, {{0x7102,5},{0x1c,1}}, {{0xb64,2},{0xdf0,2}}, + {{0x2d,1},{0xbc4,4}}, {{0x181c,3},{0xc8a,2}}, {{0xe6d,2},{0x10dc,2}}, {{0x1bde,6},{0x3bc2,4}}, + {{0xb52,2},{0xb2e,2}}, {{0x27b4,3},{0x1d,1}}, {{0xbcb,3},{0xe78,3}}, {{0x4450,4},{0x25da,3}}, + {{0xbb5,1},{0xc25a,4}}, {{0xaf2,1},{0x27,1}}, {{0x2045,3},{0xae7,1}}, {{0xd5c,1},{0x10ec,1}}, + {{0x17bc,3},{0xae0,1}}, {{0x20bb,3},{0x5aab,3}}, {{0xbe4,1},{0x10ca,1}}, {{0x68ae,6},{0xb8f,2}}, + {{0x3e90,5},{0x75cd,4}}, {{0xb8f,2},{0xaea,1}}, {{0xb7d,1},{0xd7f,3}}, {{0xb72,2},{0xb65,2}}, + {{0x1f,1},{0xb4e4,4}}, {{0xc99,3},{0xeb3,3}}, {{0xe42,5},{0x2df5,3}}, {{0xaf2,1},{0x2b,3}}, + {{0xf0e,6},{0x290f,3}}, {{0x1ab2,4},{0x16ce,4}}, {{0x20bb,5},{0x1c,1}}, {{0xaea,1},{0xc3d,3}}, + {{0x10ea,3},{0x1a,1}}, {{0xdac,2},{0xe6d,2}}, {{0xc30,2},{0xc32,5}}, {{0xb44,3},{0x4590,5}}, + {{0x24495,2},{0x1a328,2}}, {{0x1a,1},{0x40b8,2}}, {{0xc25,4},{0xb7d,2}}, {{0x27b4,3},{0xaf1,1}}, + {{0x11ef,2},{0x10dc,2}}, {{0x17660,6},{0xae7,1}}, {{0xc37,3},{0xc67,2}}, {{0x3162,5},{0xb54,3}}, + {{0xb70,2},{0xaea,2}}, {{0x1ed49,3},{0x1b4e3,1}}, {{0x30,16},{0x30,10}}, {{0xae2,2},{0xaea,2}}, + {{0xc30,2},{0xb65,2}}, {{0x54aa,7},{0x7297,3}}, {{0x10ef,1},{0x10f7,1}}, {{0x116e,1},{0x278dc,1}}, + {{0xd892,3},{0xb48,2}}, {{0x1dbe,5},{0xc8a3,3}}, {{0xaea,1},{0xb72,3}}, {{0x6783,5},{0xba7,3}}, + {{0xddc,4},{0xb98,2}}, {{0x1cee,4},{0x103a,3}}, {{0x134c,5},{0x1f,1}}, {{0x209d,4},{0x2af4,4}}, + {{0xb4a,3},{0xb65,2}}, {{0x244cb,2},{0xff22,2}}, {{0x2d,1},{0xcc0,3}}, {{0x10ec,1},{0xaf2,1}}, + {{0x20bb,3},{0x18532,4}}, {{0xd57,2},{0x10c4,4}}, {{0xae7,2},{0xd7f,3}}, {{0x10dc,2},{0x14e1,4}}, + {{0x27,1},{0xbed,2}}, {{0xcb5,3},{0x9169,3}}, {{0xae5,1},{0x28,1}}, {{0x10fb,3},{0xc8e,3}}, + {{0x1c,1},{0xb65,2}}, {{0xc67,2},{0x28,1}}, {{0x1878,1},{0x10ef,1}}, {{0x16fc,4},{0x1710,6}}, + {{0x27b6,1},{0x2b3c,3}}, {{0x948,4},{0x948,4}}, {{0x10f3,1},{0xbb4,4}}, {{0x511c,6},{0xcc3,4}}, + {{0x4e6b,8},{0x140a,2}}, {{0x10f1e,6},{0x7a5e,4}}, {{0xc37,3},{0x2195,3}}, {{0x12fc,4},{0x25da,3}}, + {{0xae7,2},{0x1a,1}}, {{0xf52,4},{0xc89,3}}, {{0xb2f,1},{0xde2,4}}, {{0xf52,4},{0xb49,2}}, + {{0x27897,1},{0x278a9,1}}, {{0xbe4,1},{0xd5c,1}}, {{0xbd6,2},{0xb7d,2}}, {{0xb65,2},{0x1a,1}}, + {{0x1040,5},{0xb65,2}}, {{0xa7d,4},{0x6fae,2}}, {{0xbeb,1},{0x1a,1}}, {{0x10f6,1},{0x28da,1}}, + {{0x94a2,7},{0x94b5,5}}, {{0xc1c,2},{0xb65,2}}, {{0x9a9,2},{0x27cc5,2}}, {{0xb2e,2},{0x10dc,2}}, + {{0x9aae,8},{0xd7f,3}}, {{0xcb8,3},{0xb2c,2}}, {{0xe69,3},{0xc8f,2}}, {{0x1e45,3},{0x51ee,3}}, + {{0x17981,6},{0x10dc,2}}, {{0xaca2,3},{0xae2,1}}, {{0x532,2},{0x30,64}}, {{0x373c,8},{0x10dc,2}}, + {{0x30,2},{0xbc5,3}}, {{0x21,1},{0xadf,2}}, {{0x10fb,3},{0x1a5c,3}}, {{0xfc9,6},{0x10e1,8}}, + {{0xbe7,1},{0xbe7,1}}, {{0x261f,5},{0x2b,1}}, {{0x1878,1},{0x10f7,1}}, {{0x804,2},{0x70a2,2}}, + {{0xd65,3},{0x1d,1}}, {{0xb49,2},{0x141b2,4}}, {{0x2ed0,7},{0x12d7,5}}, {{0x2ab6,8},{0x2abe,5}}, + {{0x17ac,3},{0xae2,1}}, {{0xb2c,2},{0xd256,4}}, {{0xaf3,4},{0x70a6,2}}, {{0xba5,4},{0x1045,3}}, + {{0xae7,1},{0x1498,3}}, {{0xd41,3},{0xd256,4}}, {{0x1c29,6},{0x1434,3}}, {{0xcc7,3},{0xdc0,6}}, + {{0x278ad,3},{0x1b6ab,1}}, {{0xfc9,6},{0x2944,4}}, {{0xb31,1},{0x28633,2}}, {{0x1d,1},{0x1d,1}}, + {{0x20bb,3},{0x1308,3}}, {{0x12fc,4},{0x103b,5}}, {{0x22cf8,1},{0x2445f,1}}, {{0x1089,2},{0x2b,3}}, + {{0x3234,3},{0xb65,2}}, {{0x1040,6},{0xb8f,2}}, {{0x24b7,5},{0xb63,2}}, {{0xaeb,2},{0xae0,1}}, + {{0xddc,4},{0x5277,2}}, {{0xb8f,2},{0xaf1,1}}, {{0xbe4,1},{0xbeb,1}}, {{0xd41,3},{0xaec,2}}, + {{0x3234,3},{0x3e16,3}}, {{0x146c,6},{0x103a,3}}, {{0x27e1c,2},{0x1ed58,1}}, {{0xf0e,5},{0xc57,3}}, + {{0xbb5,1},{0x28b1,3}}, {{0x1c,1},{0x21db,7}}, {{0x278ad,3},{0x278af,1}}, {{0x40b2,4},{0x11ef,2}}, + {{0x5220,8},{0xb8f,3}}, {{0x2322,6},{0xd14,4}}, {{0x14fc,5},{0xadf,2}}, {{0x969,2},{0x6f96,2}}, + {{0x41da,3},{0xf05,7}}, {{0x969,2},{0xf907,2}}, {{0x27b4,3},{0xb98,2}}, {{0xba5,5},{0x11ef,3}}, + {{0xcd9,3},{0xadf,2}}, {{0x2446a,3},{0x2446c,1}}, {{0xae7,1},{0xeb2,1}}, {{0x14dc,5},{0x1a,1}}, + {{0xe77,3},{0x1916,5}}, {{0x26c6,1},{0x10ca,1}}, {{0xaca2,3},{0x15a1,3}}, {{0x1084,3},{0xbed,4}}, + {{0xb6c,3},{0xc51,4}}, {{0xb71,2},{0x1f,2}}, {{0x271e,3},{0xb64,3}}, {{0xb78,2},{0xb52,5}}, + {{0x26c6,1},{0x10f3,1}}, {{0x441c,3},{0x2b,2}}, {{0x5a40,5},{0x1a,3}}, {{0xe42,5},{0xb9d,3}}, + {{0x9a9,1},{0x948,1}}, {{0xf0e,6},{0xd0b,3}}, {{0x1c,1},{0xb4b,2}}, {{0x5ea0,4},{0xc51,2}}, + {{0x10e1,3},{0x2dc3,3}}, {{0x10ec,1},{0xbeb,1}}, {{0xb82,2},{0xb52,6}}, {{0x14fc,4},{0x951e,8}}, + {{0x2b,2},{0xd0b,4}}, {{0xbb5,1},{0x1e,1}}, {{0x441c,3},{0x9319,3}}, {{0x423c,3},{0xc67,2}}, + {{0x5102,5},{0xe49,4}}, {{0x30,2},{0x9a9,3}}, {{0xd41,3},{0xb55,2}}, {{0x28,1},{0x1a,1}}, + {{0x278ad,3},{0x27897,1}}, {{0x1084,3},{0xc77,2}}, {{0x10f6,1},{0xae0,1}}, {{0xe64,5},{0x18ca,3}}, + {{0x1b4e3,1},{0x1b4e3,1}}, {{0x1c,1},{0x1a,2}}, {{0x28,2},{0xb65,2}}, {{0x3234,6},{0xb78,2}}, + {{0x116e,1},{0x278a9,1}}, {{0xaf1,1},{0xe6d,2}}, {{0xadd,4},{0xdbf,7}}, {{0xc1e,2},{0xb54,4}}, + {{0x1bfc,6},{0xb68,4}}, {{0x12fe,2},{0x28,2}}, {{0x27e1c,2},{0x9a9,1}}, {{0xbb5,1},{0x16e2,2}}, + {{0x124c,5},{0x5268,3}}, {{0x27b4,3},{0xc9a,2}}, {{0x1cce,8},{0xb2e,2}}, {{0xf63,7},{0xf6a,5}}, + {{0x151c,4},{0xb63,2}}, {{0x2045,3},{0x2b,1}}, {{0x142c,3},{0x1d,1}}, {{0xb2f,1},{0xc4d,2}}, + {{0xaf1,1},{0xaea,1}}, {{0x12332,5},{0x12ff,3}}, {{0xb44,3},{0x1961,3}}, {{0xc37,3},{0xc34,2}}, + {{0x28,2},{0x1d,1}}, {{0x6ac5,1},{0xed0,3}}, {{0xe64,4},{0xcbd,3}}, {{0x30,16},{0x30,12}}, + {{0xbb5,1},{0xb64,2}}, {{0xa02a,6},{0xb2c,4}}, {{0x2445c,3},{0x432,1}}, {{0x30,2},{0xa4d,2}}, + {{0xb79,2},{0xb7d,1}}, {{0x20e8,4},{0x2abe,6}}, {{0x278a1,3},{0x924,1}}, {{0x1095,3},{0xeb2b,6}}, + {{0xcd9,3},{0x21db,7}}, {{0x2d,1},{0x2b,3}}, {{0xb7d,1},{0x23ce,4}}, {{0x20bb,3},{0x1097,5}}, + {{0x70c8,2},{0x70ca,2}}, {{0x3758,4},{0x10c4,4}}, {{0x13f2c,5},{0x1862,3}}, {{0xc1c,2},{0x89ca,3}}, + {{0xae6,3},{0x1081,3}}, {{0x1099,3},{0xae7,1}}, {{0xbb5,1},{0xb63,2}}, {{0x4d19,6},{0xc57,4}}, + {{0x27cea,1},{0x2445f,1}}, {{0x441c,3},{0xd0b,3}}, {{0xceb,3},{0x69f7,3}}, {{0xd54,1},{0x1f,1}}, + {{0xddc,4},{0xb79,2}}, {{0xcd4,3},{0xaf2,1}}, {{0x257a,4},{0x1292,3}}, {{0xc37,4},{0x22e3,3}}, + {{0xae7,2},{0xce8,3}}, {{0x1105e,5},{0xdbf,3}}, {{0x100d,5},{0x1aff,3}}, {{0xbb5,1},{0x2a91,4}}, + {{0x159c,8},{0x1c43,4}}, {{0x4a5b,5},{0x1f,1}}, {{0x70a0,2},{0xfefe,2}}, {{0x20bc9,5},{0xc67,2}}, + {{0x122c,6},{0xc34,3}}, {{0xde9,1},{0xf59,3}}, {{0x181c,3},{0x2d,1}}, {{0x5324,5},{0xfe5,2}}, + {{0x10ba,2},{0x6a39,6}}, {{0xbd6,2},{0xb2c,2}}, {{0x1e,1},{0x67a6,4}}, {{0x1b6cb,1},{0x1b6cb,1}}, + {{0x2c92,6},{0xb68,4}}, {{0x1040,6},{0x3cc8,4}}, {{0x20bb,3},{0xaec,2}}, {{0xaf1,1},{0xadf,2}}, + {{0xde9,1},{0xb0d2,4}}, {{0x70f6,4},{0x23d9,3}}, {{0x1c,1},{0xae6,2}}, {{0x2ae0,5},{0xb7d,1}}, + {{0xae7,1},{0xb2f,1}}, {{0x21ba,5},{0xce2,3}}, {{0x278ad,3},{0x278d6,1}}, {{0x278ad,3},{0x278dc,1}}, + {{0x10fb,3},{0x27b6,1}}, {{0x3678,6},{0xb78,2}}, {{0x116e,1},{0x116d,1}}, {{0xcc00,5},{0xb2c,2}}, + {{0xb8f,2},{0xf60,3}}, {{0x27b6,1},{0x22567,4}}, {{0xcd9,3},{0xae2,1}}, {{0xc52,2},{0x4694,5}}, + {{0x1361,2},{0xbb5,1}}, {{0xb31,1},{0x9a9,1}}, {{0x134f,3},{0xb63,3}}, {{0x3234,3},{0xd0b2,7}}, + {{0x2cae,5},{0x1193,3}}, {{0xbbf,2},{0x1916,5}}, {{0x101e,7},{0xc8a,2}}, {{0xbde,3},{0x1d,1}}, + {{0x5102,5},{0x1045,3}}, {{0xae0,1},{0xb8f,3}}, {{0x24460,3},{0x1ed58,1}}, {{0x27,1},{0xb64,2}}, + {{0xcd9,4},{0xfb1,3}}, {{0x1b4e3,1},{0x734,1}}, {{0xd44,5},{0xb54,3}}, {{0xb79,2},{0x12d7,5}}, + {{0x162c,8},{0xb2c,2}}, {{0xc78,3},{0xb2c,2}}, {{0xbe0,1},{0xaf2,1}}, {{0x4c15,5},{0x11f2,3}}, + {{0x1089,2},{0xb65,2}}, {{0xb73,2},{0x12be,3}}, {{0xae7,1},{0xae2,1}}, {{0xd41,3},{0x763c,3}}, + {{0x3996,5},{0x1a,3}}, {{0x20bb,5},{0x1e6c,6}}, {{0xcb5,3},{0x1a,1}}, {{0xae2,1},{0x1257,3}}, + {{0xc46e,7},{0x1489,3}}, {{0xc17,3},{0xae7,2}}, {{0xc49,3},{0x21,1}}, {{0x27c97,3},{0x734,1}}, + {{0x18898,5},{0xaf2,1}}, {{0xb7f,3},{0x4606,3}}, {{0x10ca,1},{0x179cf,2}}, {{0x3234,3},{0x174e,3}}, + {{0x41be,3},{0xbe7,1}}, {{0x4fbd,4},{0x82ee,7}}, {{0xddc,5},{0x66d0,4}}, {{0x10a78,6},{0x10c4,4}}, + {{0x14d5,3},{0x2b,3}}, {{0xf30,5},{0xc89,3}}, {{0x1c,1},{0x151f,3}}, {{0x135c,5},{0xaf2,1}}, + {{0x2844,2},{0x10f3,1}}, {{0x3678,5},{0xb67,2}}, {{0xceb,3},{0x2c2d,3}}, {{0xd65,3},{0x582d,4}}, + {{0xbe4,1},{0xb2f,1}}, {{0xdf3,3},{0xf47,4}}, {{0x278ad,3},{0x278a9,1}}, {{0x30,2},{0xc77,2}}, + {{0x441c,3},{0x15c2a,5}}, {{0x27,1},{0x21,1}}, {{0xbcb,3},{0xb63,2}}, {{0xca3,4},{0x27,1}}, + {{0xceb,3},{0xaf1,2}}, {{0x2c00,3},{0xae7,1}}, {{0x159c8,1},{0x734,1}}, {{0x709c,2},{0x1b205,2}}, + {{0xe64,4},{0xf21,3}}, {{0x181c,3},{0xbb5,1}}, {{0x27897,1},{0x278af,1}}, {{0x1d,1},{0xb55,2}}, + {{0x134c,5},{0xaea,1}}, {{0xb493,5},{0xb65,2}}, {{0xbcb,3},{0xc55,2}}, {{0x271e,3},{0x1cef,3}}, + {{0x135c,5},{0x5396,3}}, {{0x1307,3},{0xae7,1}}, {{0x16ac9,5},{0x14a8,4}}, {{0xc1c,2},{0xb8f,3}}, + {{0x1a76,4},{0xb55,2}}, {{0x28,1},{0x1e6c,6}}, {{0x1878,1},{0x27b6,1}}, {{0x1c92,6},{0xb2c,4}}, + {{0xddc,4},{0xbed,2}}, {{0xcd9,3},{0xce8,3}}, {{0xddc,4},{0xbd1,2}}, {{0xbcb,3},{0xe7b,3}}, + {{0xb78,2},{0x28,1}}, {{0xb85,2},{0xb75,2}}, {{0x10b7,4},{0xb85,2}}, {{0xbeb,1},{0xbeb,1}}, + {{0xbd4,2},{0xb52,2}}, {{0x1105e,5},{0x80be,4}}, {{0x105a8,6},{0x10dc,2}}, {{0x41da,3},{0x1a,1}}, + {{0x12fc,7},{0xb54,4}}, {{0xcb5,3},{0x4460,3}}, {{0xc1c,2},{0xb52,5}}, {{0x263f,3},{0xb47,2}}, + {{0x3f7e,6},{0xaf2,1}}, {{0x6103,5},{0xb7c,2}}, {{0x969,2},{0x157a4,2}}, {{0xd76,4},{0x174e,3}}, + {{0x88ea,5},{0xe72,3}}, {{0x70f6,4},{0x331c,5}}, {{0x20bb,3},{0xf482,3}}, {{0xfb1,2},{0xae7,1}}, + {{0x271e,3},{0xb78,2}}, {{0xd5c,1},{0x1b,1}}, {{0x278d6,1},{0x278af,1}}, {{0x5483,4},{0x1b,1}}, + {{0xae7,1},{0xadf,2}}, {{0xb2f,1},{0xae6,3}}, {{0x1040,5},{0x2b,3}}, {{0xceb,3},{0x12be,3}}, + {{0x5442,4},{0x4460,3}}, {{0x3db0,5},{0xae0,1}}, {{0x10c8,3},{0x1ae2,2}}, {{0xae5,1},{0x37f7,3}}, + {{0xb2c,2},{0xb55,2}}, {{0x88ea,5},{0x29da,3}}, {{0x1bfc,9},{0x10dc,2}}, {{0xd8ad,8},{0x10dc,2}}, + {{0xd57,2},{0xbb5,1}}, {{0x61c6,5},{0x11b8,4}}, {{0x3234,3},{0xce8,3}}, {{0x5949,6},{0xae7,1}}, + {{0x85de,7},{0x103a,3}}, {{0x278d6,1},{0x116d,1}}, {{0x10e1,5},{0x10dc,2}}, {{0x9e9,2},{0x532,8}}, + {{0x4fa3,7},{0xb2c,4}}, {{0x1ad0,7},{0xae7,1}}, {{0x278dc,1},{0x278a9,1}}, {{0x28871,3},{0x1ed58,1}}, + {{0x14cc,4},{0x1089,2}}, {{0xd41,3},{0xb48,2}}, {{0x1cee,3},{0xe6d,2}}, {{0x21ba,8},{0xb7c,3}}, + {{0x19,1},{0x1b4e3,1}}, {{0xb44,3},{0x1a,2}}, {{0x3678,5},{0xde9,4}}, {{0x2ed0,9},{0xae7,1}}, + {{0xbd8,2},{0xb48,2}}, {{0x20ed,3},{0xb73,2}}, {{0x116e,1},{0x278af,1}}, {{0xc37,3},{0x174e,3}}, + {{0xc25,4},{0xb7d,1}}, {{0x271e,3},{0x1a,1}}, {{0x600c,8},{0xd0d,2}}, {{0x725e,5},{0xb85,2}}, + {{0x716e,5},{0x1b,1}}, {{0xd41,3},{0x2af4,4}}, {{0xaea,1},{0xae0,1}}, {{0xdf0,2},{0x1f,1}}, + {{0x27897,1},{0x116c,1}}, {{0x43e3,1},{0xaf1,1}}, {{0x5c62,6},{0xae2,1}}, {{0xcfd,5},{0x1611,3}}, + {{0x194a,5},{0x10dc,2}}, {{0xcfd,7},{0xc1c,2}}, {{0x2796,3},{0xb2f,1}}, {{0x1084,3},{0xb70,2}}, + {{0xd41,4},{0x79d6,4}}, {{0x8482,7},{0x66ae,5}}, {{0xf96,5},{0x10c3,5}}, {{0xb74,2},{0x28,1}}, + {{0xba5,4},{0x228e,3}}, {{0x1f,2},{0x12be,3}}, {{0x7f5a,8},{0xc33,4}}, {{0x14dc,5},{0xb65,2}}, + {{0x1ab2,4},{0xf99,4}}, {{0xae7,1},{0xae0,1}}, {{0xfb1,2},{0x12ff,2}}, {{0xeb2,1},{0x1a,2}}, + {{0x27d39,3},{0x7c4,1}}, {{0x21e8a,3},{0x1b0a,2}}, {{0xaea,2},{0xb8f,2}}, {{0xbde,3},{0x1a9d,3}}, + {{0xaca2,3},{0x1d,1}}, {{0x7162,4},{0x1e5fc,3}}, {{0x2796,3},{0x1c,1}}, {{0xb73,2},{0xb7d,1}}, + {{0xb48,2},{0x22e3,3}}, {{0x3f9a,4},{0x1d,1}}, {{0xb8c,2},{0xb78,2}}, {{0xbed,2},{0xc9a,2}}, + {{0x80c2,6},{0xb8f,3}}, {{0x522d,5},{0x25ee,4}}, {{0xb82,2},{0x28,1}}, {{0xb82,3},{0xae7,1}}, + {{0x3402,7},{0x3409,5}}, {{0x70f6,4},{0x25da,3}}, {{0x17fc,5},{0x27,1}}, {{0xc25,3},{0x1b5a,5}}, + {{0x43e3,1},{0xdf0,2}}, {{0xcfd,5},{0x1f,4}}, {{0xb6c,3},{0x2b76,3}}, {{0x14bc,7},{0x296f,5}}, + {{0xd8ad,8},{0xae7,1}}, {{0xcfd,7},{0xd7f,3}}, {{0xae5,1},{0x1d8e,3}}, {{0x1e45,6},{0x1152,5}}, + {{0xb7f,3},{0x2b,1}}, {{0xb2f,1},{0x2b,2}}, {{0x271e,3},{0x28,1}}, {{0xcd9,3},{0x4882,3}}, + {{0x6ac3,3},{0xb173,4}}, {{0x135c,5},{0x1712f,3}}, {{0xbb1,3},{0x2b,3}}, {{0x10b7,5},{0xb4b,2}}, + {{0xc89,2},{0xaea,1}}, {{0x10f2,1},{0xc55,2}}, {{0xcfd,6},{0xd57,2}}, {{0xea35,7},{0x2b,3}}, + {{0x159c,8},{0xeb3,3}}, {{0x265b,4},{0x5444,3}}, {{0x278d6,1},{0x278a9,1}}, {{0x27b4,3},{0xae6,3}}, + {{0x80ce,6},{0xb9d,3}}, {{0xaec,2},{0x10c4,4}}, {{0x27,1},{0xcbc,4}}, {{0x6ac3,3},{0xb8f,2}}, + {{0x2322,6},{0x28e2,4}}, {{0xee4a,6},{0xb78,2}}, {{0x3234,3},{0xe78,3}}, {{0xb31,1},{0x28634,1}}, + {{0x20d9,4},{0x1862,3}}, {{0x27b4,3},{0xb65,2}}, {{0x10c8,3},{0xb74,2}}, {{0x51ec,5},{0xae7,1}}, + {{0xc2e,2},{0xb78,2}}, {{0xadd,4},{0x1f0f,4}}, {{0x1e,1},{0xae7,1}}, {{0x22b5e,5},{0xcb8,2}}, + {{0x1084,3},{0xaad1,3}}, {{0xb7f,3},{0x2742,3}}, {{0xaf0,2},{0xd7a,3}}, {{0x159c,4},{0xb98,2}}, + {{0x278d6,1},{0x116c,1}}, {{0xcb5,3},{0xcb8,2}}, {{0xc52,2},{0x11ef,2}}, {{0x116e,1},{0x27897,1}}, + {{0xe6d,2},{0xae0,1}}, {{0xcd5,2},{0xc67,2}}, {{0xc30,2},{0xae7,1}}, {{0x178c,3},{0xba2c,4}}, + {{0xfb7c,4},{0x1d,1}}, {{0xd41,3},{0xce2,3}}, {{0xd6be,7},{0xb78,2}}, {{0x143c,5},{0x11c4,6}}, + {{0x10ea,3},{0x2b,2}}, {{0x17bc,4},{0xaea,1}}, {{0xb4b,2},{0x28,1}}, {{0x4450,4},{0x1372,3}}, + {{0x3e58,4},{0x101a,3}}, {{0x10d20,6},{0xb264,4}}, {{0xdc0,6},{0xb8f,3}}, {{0xeb2,1},{0x1b,1}}, + {{0x178c,3},{0xaea,2}}, {{0x441c,3},{0x411c,4}}, {{0x1687,3},{0xce8,3}}, {{0xd76,7},{0xfdf,3}}, + {{0x20bd,3},{0x12d7,5}}, {{0xae2,1},{0xb8f,3}}, {{0x1d,1},{0x1a,1}}, {{0x734,8},{0x734,8}}, + {{0xc37,3},{0x1434,3}}, {{0x30,2},{0x28634,1}}, {{0xf52,4},{0xd5e,4}}, {{0x1a3a,6},{0x11ef,2}}, + {{0x2b,2},{0xc50d,5}}, {{0x540e,5},{0x7fda,4}}, {{0xb7f,3},{0xcd5,2}}, {{0x116e,1},{0x116c,1}}, + {{0x24462,1},{0x24468,2}}, {{0xc37,3},{0xae7,1}}, {{0x229b,9},{0x10dc,2}}, {{0xfdf,2},{0x12d7,5}}, + {{0x10ef,1},{0x27b6,1}}, {{0x92f2,5},{0xb63,2}}, {{0x17bc,3},{0x10f6,1}}, {{0xa2d6,5},{0xae6,2}}, + {{0x70a0,2},{0x70b4,2}}, {{0x1084,3},{0x10dc,2}}, {{0x181c,3},{0x1e,1}}, {{0xbe4,1},{0xae7,1}}, + {{0x22cf8,1},{0x159c8,1}}, {{0x6b06,3},{0xaf2,1}}, {{0x7c5a,6},{0x22e3,3}}, {{0xb8f,2},{0x889f,3}}, + {{0x41da,3},{0x41eb,4}}, {{0x2daa,5},{0xb78,2}}, {{0xb7f,3},{0xae6,2}}, {{0x2610,6},{0x2971,3}}, + {{0xd76,5},{0x14a7,5}}, {{0x10c8,3},{0x5f90,3}}, {{0x14cc,4},{0xcce,3}}, {{0x30,2},{0x2864c,1}}, + {{0xb2c,2},{0x28,1}}, {{0x265b,4},{0x7524,6}}, {{0x5324,5},{0xb2c,4}}, {{0xddc,4},{0xd51,3}}, + {{0xb2c,2},{0x1dac,3}}, {{0xb2f,1},{0xbb1,3}}, {{0xcb8,2},{0xb55,3}}, {{0x20bb,3},{0xb82,2}}, + {{0x26b5,4},{0xe0a,5}}, {{0x755e,6},{0x70f0,6}}, {{0x181c,3},{0x1675,2}}, {{0xb7f,3},{0x11c4,6}}, + {{0x17bc,4},{0xf01,4}}, {{0x2b,1},{0x11ef,2}}, {{0x1b4f,3},{0xb78,2}}, {{0x181c,3},{0x11ef,3}}, + {{0xb6c,3},{0x2abe,5}}, {{0xb7f,3},{0x5396,3}}, {{0xcf6,3},{0x2d,1}}, {{0xcd2,6},{0xaf2,1}}, + {{0x2d,1},{0x1b,1}}, {{0xcd5,2},{0xd17,3}}, {{0x178c,3},{0xadf,2}}, {{0xbed,2},{0xb2e,2}}, + {{0x31e0,5},{0xaea,2}}, {{0x19b3,5},{0xe72,3}}, {{0x278dc,1},{0x278af,1}}, {{0xb7d,2},{0xb64,2}}, + {{0x134c,5},{0x27,1}}, {{0x1099,3},{0x1b,1}}, {{0xae0,1},{0x1a,2}}, {{0x1095,3},{0xde9,1}}, + {{0x1ab2,4},{0xcf3,3}}, {{0x1d,1},{0xaea,2}}, {{0x423c,3},{0x11ef,3}}, {{0x16ac,5},{0xb4b,2}}, + {{0x82ba,6},{0xc63,3}}, {{0x178c,3},{0xae0,1}}, {{0x1ee0,3},{0xb63,2}}, {{0x70b0,4},{0x1015e,2}}, + {{0x7d6e,6},{0x18ca,3}}, {{0x177c,4},{0x4e98,3}}, {{0xd41,3},{0xb2e,2}}, {{0x141f2,5},{0x16f8,3}}, + {{0x16cc,4},{0x889f,3}}, {{0x3058,12},{0xd0d,2}}, {{0x2b,1},{0xbbf,2}}, {{0x27,1},{0x25da,3}}, + {{0xc37,3},{0x2b76,3}}, {{0x80ce,10},{0xd0d,2}}, {{0xf14,2},{0xcf0,2}}, {{0x10ec,1},{0xd54,1}}, + {{0xb8b,2},{0xce8,3}}, {{0xc25,3},{0x2af4,4}}, {{0x1d46,5},{0x18e6,5}}, {{0xb48,2},{0xb75,2}}, + {{0x2912,4},{0xae5,1}}, {{0xc25,6},{0xdd3,3}}, {{0x1040,6},{0xc67,2}}, {{0xc63,3},{0xb55,2}}, + {{0xd461,8},{0xb65,2}}, {{0x7276,4},{0x33d3,5}}, {{0xaf1,1},{0x37cd,5}}, {{0xfb1,2},{0xb78,2}}, + {{0x10f6,1},{0xbe7,1}}, {{0xd41,3},{0x1b,1}}, {{0xbc2,2},{0xb78,2}}, {{0x1e,1},{0xb79,2}}, + {{0x209d,4},{0x28,2}}, {{0xc25,4},{0x250a,7}}, {{0xc13,4},{0x1c,1}}, {{0x178c,3},{0xc3d,3}}, + {{0x20bb,3},{0xcb8,3}}, {{0xd5c,1},{0xcf5,2}}, {{0x3234,3},{0x40bb,5}}, {{0xcd9,3},{0x443d,3}}, + {{0x6b04,5},{0xb5f8,6}}, {{0xae2,1},{0xb47,2}}, {{0x265b,4},{0x16f8,3}}, {{0xc25,4},{0x1b,1}}, + {{0x1084,3},{0x16e2,2}}, {{0xc25,4},{0xb4a,4}}, {{0x20bb,3},{0xde2,4}}, {{0x1095,3},{0x323c,2}}, + {{0x41be,3},{0xc8a,2}}, {{0x27e2b,2},{0x9a9,1}}, {{0xb7c,2},{0xc30,2}}, {{0x41be,3},{0xb70,2}}, + {{0xadf,2},{0x10c4,4}}, {{0x27b4,3},{0x1089,2}}, {{0x14d5,3},{0x1150,2}}, {{0x17afb,5},{0xb78,2}}, + {{0x7162,4},{0x1a11,2}}, {{0x22bc7,2},{0xc55,2}}, {{0x2322,6},{0x11f2,3}}, {{0x278dc,1},{0x116c,1}}, + {{0xb2f,1},{0xb63,2}}, {{0x5af9,3},{0x2b,3}}, {{0xcfd,4},{0x139f,3}}, {{0xae6,2},{0xb54,4}}, + {{0xd54,1},{0x1c,1}}, {{0xb71,2},{0xc39,2}}, {{0x14dc,7},{0xd0b,4}}, {{0x6d8e,3},{0x59f5,6}}, + {{0xbd6,2},{0xb65,2}}, {{0xc25,4},{0xca7,2}}, {{0x29e87,3},{0x7c4,1}}, {{0xc89,2},{0x2202,3}}, + {{0xb99,2},{0xcbd,3}}, {{0x159c,4},{0x28,2}}, {{0xd1b,1},{0xaf2,1}}, {{0x27b6,1},{0x1a,1}}, + {{0x1b4b,3},{0xaea,2}}, {{0xfdf,2},{0x12be,3}}, {{0x24f91,2},{0x2445f,1}}, {{0xaf1,1},{0x25da,3}}, + {{0x734,1},{0x112c,1}}, {{0x178c,3},{0x76bd,6}}, {{0xc4d,2},{0x1a,2}}, {{0xac8a,4},{0xb64,2}}, + {{0x2a946,3},{0x2a948,1}}, {{0x5a40,5},{0x5a52,4}}, {{0xbe4,1},{0x10f7,1}}, {{0xbcb,3},{0x134f,3}}, + {{0xe64,5},{0x1f,1}}, {{0x3e12,5},{0x28,2}}, {{0x2e52,6},{0x220f,5}}, {{0x17ae,1},{0xae2,1}}, + {{0x261f,4},{0xadf,2}}, {{0xb66,2},{0xd45,4}}, {{0x2045,3},{0x2b,3}}, {{0x10192,2},{0x96b,2}}, + {{0xb63,2},{0x40b8,2}}, {{0xb7c,2},{0x1a,2}}, {{0xbeb,1},{0x27b6,1}}, {{0xb6c,3},{0xf05,7}}, + {{0xb99,2},{0xc30,2}}, {{0x46f4,4},{0x1520,2}}, {{0xc55,2},{0xb2c,2}}, {{0xfb89,4},{0x1b,1}}, + {{0xeca,5},{0x1a,1}}, {{0x27,1},{0x1a,2}}, {{0x6783,7},{0x22c0,3}}, {{0xcd9,3},{0x6107,3}}, + {{0x142e,1},{0x298a,2}}, {{0x27b4,3},{0x179cf,2}}, {{0xd11d,5},{0x1757,5}}, {{0x600c,6},{0x12d7,5}}, + {{0x122c,5},{0x10dc,2}}, {{0x10f3,1},{0x10f0,1}}, {{0xd5c,1},{0x10f7,1}}, {{0xadd,4},{0x2279,4}}, + {{0xd65,3},{0xc67,2}}, {{0xf63,5},{0xbc4,4}}, {{0x2445c,3},{0x251dc,2}}, {{0x2d,1},{0xb63,2}}, + {{0x532,2},{0x30,12}}, {{0x2c76,4},{0x2a16,3}}, {{0xbbf,2},{0xc39,2}}, {{0xd41,3},{0x12fe,2}}, + {{0x3234,3},{0xbbf,2}}, {{0xadd,4},{0xb8b,2}}, {{0xae0,1},{0xdf0,2}}, {{0x145e4,4},{0x67c0,3}}, + {{0x2b,2},{0x11b8,4}}, {{0xa7f4,3},{0x12ff,2}}, {{0xc67,2},{0xaea,2}}, {{0x51ab,5},{0x4905,4}}, + {{0x422e,3},{0x28,1}}, {{0x85de,5},{0x5396,3}}, {{0xba5,5},{0x1fb2,8}}, {{0x1a3a,6},{0xdc1,5}}, + {{0x11ba8,4},{0x5fe0,4}}, {{0xfda,7},{0x4ee7,6}}, {{0x1d46,4},{0x2b,2}}, {{0xb44,3},{0x1257,2}}, + {{0xc89,2},{0xdc1,5}}, {{0x2445e,1},{0x2446c,1}}, {{0x178c,3},{0x10f3,1}}, {{0xe867,7},{0xae7,1}}, + {{0x6f62,4},{0x244e7,2}}, {{0x416a,6},{0x1035,5}}, {{0x10ea,3},{0x16ce,4}}, {{0x3203,3},{0xae5,1}}, + {{0x1ed51,3},{0x734,1}}, {{0xb70,2},{0x2d,1}}, {{0x162c,6},{0xc67,3}}, {{0xddc,4},{0x2195,3}}, + {{0x29f18,3},{0x924,1}}, {{0xcd9,3},{0xb71,2}}, {{0xb8f,2},{0xc34,3}}, {{0x1ac2e,6},{0xc8f,2}}, + {{0x3ed6,5},{0x1daa,4}}, {{0xa7d,4},{0x96b,2}}, {{0xae6,2},{0x140a,2}}, {{0x178c,3},{0x8ec8,4}}, + {{0x10b7,5},{0xb70,2}}, {{0xbbf,2},{0x1489,3}}, {{0xb7f,3},{0x11f57,6}}, {{0xb44,3},{0x5eb6,4}}, + {{0xae0,1},{0x3c13,3}}, {{0xae2,2},{0xeb2,1}}, {{0xa6c6,5},{0xb7c,3}}, {{0xceb,3},{0xc67,3}}, + {{0x1257,2},{0xb2f,1}}, {{0xb7d,2},{0xaf2,1}}, {{0xc13,4},{0xc1c,2}}, {{0x21e88,5},{0x27,1}}, + {{0xd17,3},{0xae0,1}}, {{0x1c56,7},{0x5396,3}}, {{0x1040,6},{0xdf0,2}}, {{0x5d34,5},{0xeb3,3}}, + {{0xd65,3},{0x1434,3}}, {{0xb9d,3},{0xb2e,2}}, {{0x159c8,1},{0x251de,2}}, {{0x10192,2},{0x6f64,2}}, + {{0x1b6ab,1},{0x116d,1}}, {{0x41da,3},{0x1150,2}}, {{0x70c8,2},{0x1a328,2}}, {{0x1f,1},{0xbd1,2}}, + {{0xaeb,2},{0xae7,2}}, {{0xcb5,3},{0xa7ed,4}}, {{0x85de,5},{0xb78,2}}, {{0x265b,4},{0xf01,4}}, + {{0x1084,3},{0xc67,3}}, {{0x1cbf,5},{0x21be,4}}, {{0x12ac,5},{0x12b1,4}}, {{0xae5,1},{0xe6d,2}}, + {{0x2ede,6},{0xc8f,2}}, {{0xdba4,4},{0xaea,1}}, {{0x27,1},{0xbd3,3}}, {{0xfe6f,8},{0x28,1}}, + {{0x101e,12},{0x2b,3}}, {{0xcd9,3},{0x19cb,4}}, {{0x7a6e,4},{0x28,2}}, {{0x6d81,3},{0xb8f,2}}, + {{0x6d8e,3},{0x1843f,4}}, {{0x30,2},{0x5c76,4}}, {{0x181c,3},{0xce3,2}}, {{0x10fb,4},{0xb8f,2}}, + {{0x3234,3},{0x10dc,2}}, {{0x423c,3},{0x2976,3}}, {{0xbe0,1},{0x10ef,1}}, {{0x1878,1},{0xaf1,1}}, + {{0x1c705,5},{0x2b,3}}, {{0x256b,4},{0x7526,5}}, {{0x1a,1},{0xf63c,2}}, {{0x122c,5},{0x2bfc,2}}, + {{0xb2f,1},{0x1a30,5}}, {{0xc25,4},{0x2742,3}}, {{0xae0,1},{0x2b,3}}, {{0x79ba,7},{0xc8e,3}}, + {{0xcfd,7},{0x12d5,4}}, {{0x30,2},{0x532,32}}, {{0x16dc,7},{0x185b,3}}, {{0xaea,1},{0x14d5,3}}, + {{0xb52,2},{0xe1c,4}}, {{0xf85,4},{0xae7,1}}, {{0x6d81,3},{0x9001,4}}, {{0xd5c,1},{0x1c,1}}, + {{0x20e8,4},{0x10dc,2}}, {{0x1084,3},{0x4b0a,4}}, {{0xb73,2},{0x10dc,2}}, {{0x7a6e,4},{0x1f,1}}, + {{0xc60,3},{0x12be,3}}, {{0xc30,2},{0xb48,2}}, {{0xb78,2},{0xb7d,2}}, {{0xb2f,1},{0xb52,5}}, + {{0x6b5f,4},{0xcf0,2}}, {{0xbb5,1},{0xb55,2}}, {{0x1bfc,6},{0x1035,5}}, {{0xaea,1},{0xcb8,3}}, + {{0xa7da,3},{0xb2e,2}}, {{0x2445f,1},{0x7c4,1}}, {{0xaf1,1},{0xc67,2}}, {{0xb52,2},{0xd8e,4}}, + {{0x1878,1},{0xae5,1}}, {{0xb44,4},{0xb48,2}}, {{0x10f7,1},{0x1a,1}}, {{0x312a,5},{0xb7a,5}}, + {{0x4d33,7},{0xc8a,2}}, {{0x24a2d,2},{0x2446c,1}}, {{0xd1b,1},{0x28,1}}, {{0x16dc,7},{0x16e3,3}}, + {{0xddd5,5},{0xbb5,3}}, {{0x278c5,5},{0x278dc,1}}, {{0x1084,3},{0xd0b,3}}, {{0x2b,2},{0xce8,3}}, + {{0x27,1},{0xdef,3}}, {{0xb8f,2},{0x14a8,4}}, {{0x2445f,1},{0x28633,2}}, {{0x101d4,6},{0x2b,3}}, + {{0x27,1},{0xc67,2}}, {{0x20bb,3},{0xeb3,3}}, {{0x17bc,3},{0x1c,1}}, {{0xae7,1},{0xbc1,3}}, + {{0xbde,3},{0xb8f,2}}, {{0xb4b,2},{0x1a,2}}, {{0x3af4,8},{0x12ff,2}}, {{0x13bc,4},{0x1c,1}}, + {{0x26c6,1},{0x10f2,1}}, {{0xcd9,3},{0x7f6c,6}}, {{0xaea,2},{0x1d,1}}, {{0xede,3},{0xd51,2}}, + {{0x1878,1},{0xb6e,2}}, {{0x261f,5},{0xc2e,2}}, {{0x1d8a,3},{0xc22,3}}, {{0xca95,5},{0x11f2,3}}, + {{0x27b6,1},{0x1d,1}}, {{0x3e92,3},{0xb48,2}}, {{0x423c,3},{0x14edb,4}}, {{0xb63,2},{0xc39,2}}, + {{0xceb,3},{0xe6d,2}}, {{0x278c5,5},{0x278af,1}}, {{0xaca2,3},{0xb2f,1}}, {{0xb2e,2},{0x2b,3}}, + {{0xb7d,1},{0x11c4,6}}, {{0x30,2},{0xb82,3}}, {{0x166c,6},{0xb78,2}}, {{0xddc,4},{0x1a2f,4}}, + {{0x70dc,4},{0x806,2}}, {{0x6d81,3},{0xb78,2}}, {{0x278c5,5},{0x116d,1}}, {{0xb44,3},{0x5ceb,4}}, + {{0xbeb,1},{0x10ef,1}}, {{0x19a4,6},{0x1916,5}}, {{0xb70,2},{0xbb5,1}}, {{0x1e,1},{0xbe8,3}}, + {{0xaea,1},{0xd0b,3}}, {{0x27,1},{0xb52,2}}, {{0x17b3a,5},{0x2db1,3}}, {{0x36dd,3},{0xb8f,3}}, + {{0xc1c,2},{0xd17,3}}, {{0xbcb,3},{0xb55,2}}, {{0x5277,2},{0xb78,2}}, {{0x278c5,5},{0x278a9,1}}, + {{0xddc,4},{0xbc4,4}}, {{0x1dff,2},{0xc89,3}}, {{0xf85,4},{0xae5,1}}, {{0xe830,5},{0xc67,2}}, + {{0x16cc,4},{0xaf1,1}}, {{0x1a88,3},{0xc32c,3}}, {{0xae2,1},{0xb75,2}}, {{0x31d2,6},{0x31f8,4}}, + {{0x2e8a,8},{0x10dc,2}}, {{0x10fb,3},{0xc77,2}}, {{0x36be,5},{0x1c25,3}}, {{0xae2,1},{0x20b5,3}}, + {{0xc9a,2},{0xb82,2}}, {{0xc25,3},{0x52c6,3}}, {{0x1257,3},{0xd0d,2}}, {{0x441c,3},{0x700f,3}}, + {{0x14cc,4},{0xb8f,2}}, {{0xd91,2},{0x21,1}}, {{0xaf2,1},{0xdd3,3}}, {{0x4a68,5},{0x23ce,4}}, + {{0xae7,1},{0x2b,3}}, {{0xb65,2},{0xf01,4}}, {{0x229b,5},{0x7a5e,4}}, {{0x2e44,5},{0x2b4b,4}}, + {{0x181c,3},{0xbe4,1}}, {{0x209d,4},{0xd7f,3}}, {{0xcf6,3},{0xaea,2}}, {{0x66d3,3},{0xed0,3}}, + {{0xca3,4},{0x22dd,3}}, {{0xe42,5},{0x1fb7,5}}, {{0x1afd,5},{0xb7a,5}}, {{0x278c5,5},{0x116e,1}}, + {{0xc37,3},{0x1402,3}}, {{0xc9a,2},{0xb63,3}}, {{0x20bb,3},{0xb64,2}}, {{0xb9d,3},{0xaf2,1}}, + {{0xb44,3},{0xb78,2}}, {{0x17bc,3},{0xbeb,1}}, {{0x4178,4},{0xec2,2}}, {{0x78d6,5},{0x28d4,6}}, + {{0xae2,1},{0x2b,1}}, {{0x67aa,6},{0x45a9,6}}, {{0xb47,2},{0xeb3,3}}, {{0x3e90,5},{0x11c4,6}}, + {{0x1ed58,1},{0x27cea,1}}, {{0x9c9,2},{0x9c9,1}}, {{0x532,34},{0x30,14}}, {{0x10ec,1},{0xb72,2}}, + {{0xae9,2},{0x40b8,2}}, {{0x35ec,6},{0xd0d,2}}, {{0xb2f,1},{0x28,1}}, {{0xce1,4},{0xae7,1}}, + {{0x10f2,1},{0x1150,2}}, {{0x28,1},{0x1aa6,3}}, {{0x740e,5},{0x11b8,4}}, {{0x1308,3},{0xc8a,2}}, + {{0x2868,4},{0x7524,6}}, {{0x94a2,7},{0x16f8,3}}, {{0x1daf,5},{0x14a8,4}}, {{0x10ec,1},{0x10f7,1}}, + {{0x3234,3},{0x2732,4}}, {{0x10192,2},{0xa51,2}}, {{0x10fb,4},{0xb8d,3}}, {{0xef9f,7},{0x10dc,2}}, + {{0x178c,3},{0xae2,1}}, {{0x25c5,5},{0x1701,3}}, {{0x1d5a,3},{0x5396,3}}, {{0xbeb,1},{0x76bd,6}}, + {{0x709c,2},{0x6f78,2}}, {{0xc25,3},{0x1f13,4}}, {{0x18a5,5},{0xc1c,2}}, {{0x1b0a,2},{0x2b,1}}, + {{0x41be,3},{0x10ca,1}}, {{0x178c,3},{0xae2,2}}, {{0x2e44,5},{0xaea,2}}, {{0x1b6ab,1},{0x278d6,1}}, + {{0x2318,4},{0xb54,3}}, {{0x30,2},{0x159c9,6}}, {{0xba5,4},{0xd8e,4}}, {{0xbb5,1},{0xc67,3}}, + {{0x1878,1},{0x21945,4}}, {{0xed8f,5},{0xd57,5}}, {{0x178c,3},{0x11df,5}}, {{0x364e,4},{0x1299e,4}}, + {{0xae7,1},{0xdf5,3}}, {{0x397a,5},{0x104f9,5}}, {{0x441c,3},{0x3656,4}}, {{0x1b,1},{0xb55,2}}, + {{0x43e3,1},{0xbe7,1}}, {{0x181c,3},{0x2431d,4}}, {{0x423c,3},{0x20e7a,3}}, {{0x30,2},{0xc30,2}}, + {{0x178c,3},{0xb78,2}}, {{0xc49,3},{0xc30,2}}, {{0x14d5,3},{0xd7f,3}}, {{0xaea,2},{0x1b4f,4}}, + {{0x709c,2},{0xff02,2}}, {{0x108b,3},{0xaf2,1}}, {{0x10b7,4},{0x12fe,2}}, {{0x30,2},{0xbed,2}}, + {{0xb2c,2},{0x1d,1}}, {{0x1e,1},{0x1b,1}}, {{0xae0,1},{0xb8f,2}}, {{0xdba,4},{0xc1c,2}}, + {{0xddc,4},{0xb8f,2}}, {{0xc25,5},{0xb85,2}}, {{0xd0f,6},{0xb75,2}}, {{0x133c,6},{0xbc5,3}}, + {{0xfc9,6},{0x1c25,4}}, {{0xb4b,2},{0xaf2,1}}, {{0x70a0,2},{0xfeee,2}}, {{0xeec,7},{0x1b,1}}, + {{0x1b6ab,1},{0x27897,1}}, {{0x5483,4},{0xbd6,2}}, {{0xb82,2},{0xce8,3}}, {{0xc37,3},{0xc3a,3}}, + {{0x30,2},{0xfee4,4}}, {{0xb64,2},{0xc3e,2}}, {{0x257a,4},{0x16ae,3}}, {{0x3de8,5},{0xc89,2}}, + {{0xbb5,1},{0x2b,1}}, {{0x7a6e,4},{0xde9,1}}, {{0x20bb,3},{0x28,1}}, {{0x1b6ab,1},{0x278dc,1}}, + {{0x2ed0,7},{0x18ca,3}}, {{0xe64,5},{0x27,1}}, {{0xdd3,3},{0xb55,2}}, {{0x10ea,3},{0xb55,2}}, + {{0x13e8c,5},{0xbd4,2}}, {{0xb4a,3},{0x2b,3}}, {{0x24462,1},{0x7c4,1}}, {{0xcd9,3},{0x28,1}}, + {{0xb7f,3},{0x1761,4}}, {{0xc30,2},{0x10dc,2}}, {{0x24f91,2},{0x9a9,1}}, {{0xc1c,2},{0x1278,4}}, + {{0xdba,4},{0x2b54,8}}, {{0xae5,1},{0x1719,3}}, {{0xd41,3},{0x2c00,3}}, {{0x7276,4},{0xc63,3}}, + {{0xb2f,1},{0x1d,1}}, {{0xacba,5},{0x14e1,4}}, {{0x2b,1},{0x11b8,4}}, {{0xcb5,3},{0xcd4,4}}, + {{0x7276,4},{0x727a,4}}, {{0x10ef,1},{0xb2e,2}}, {{0xd1a,2},{0xb65,2}}, {{0x43e3,1},{0xe6d,4}}, + {{0xbe4,1},{0xb8f,2}}, {{0x16cc,4},{0xaea,2}}, {{0xfd93,5},{0x11ef,3}}, {{0xae0,1},{0xcf0,2}}, + {{0xc55,2},{0x10dc,2}}, {{0x924,4},{0x924,4}}, {{0xf0e,6},{0x1c25,4}}, {{0x1a3a,6},{0xb2c,2}}, + {{0x20bb,3},{0x21b2e,4}}, {{0xbcb,3},{0xb8f,2}}, {{0xb7f,3},{0xfb1,2}}, {{0x14fc,8},{0x220f,5}}, + {{0x2d,1},{0xaf2,1}}, {{0xc89,2},{0x2b,3}}, {{0x178c,3},{0xde9,1}}, {{0x1ab2,4},{0xc095,6}}, + {{0xd5c,1},{0x1aaed,1}}, {{0xde9,1},{0xcb8,2}}, {{0x27,1},{0xb85,2}}, {{0x278c5,5},{0x278d6,1}}, + {{0x1878,1},{0x5194,5}}, {{0x12d3c,6},{0x10dc,2}}, {{0x1cec,6},{0xae7,1}}, {{0x27e2b,2},{0x1ed58,1}}, + {{0x1db15,5},{0xb65,2}}, {{0xb67,2},{0x4c28,4}}, {{0x1a622,5},{0xbd3d,4}}, {{0x159c,4},{0x392c,4}}, + {{0xc63,3},{0x1b08,3}}, {{0x14cc,4},{0xb52,2}}, {{0xae0,1},{0xcd5,2}}, {{0x14b6,2},{0x67c0,3}}, + {{0x2b5b9,2},{0x9c9,1}}, {{0x5136,6},{0xb52,5}}, {{0x6ac3,3},{0xcc0,3}}, {{0x9e9,2},{0x532,4}}, + {{0x10f2,1},{0x1864,2}}, {{0xba4a,5},{0xdf0,2}}, {{0xd89f,3},{0xff4e,4}}, {{0xb7f,3},{0xb85,2}}, + {{0xc77,2},{0x2b,3}}, {{0xe64,5},{0x4e63,4}}, {{0xb63,2},{0x2b,3}}, {{0xf85,4},{0xdc37,3}}, + {{0x25789,2},{0x96b,2}}, {{0x8716,4},{0x101b2,4}}, {{0x278c5,5},{0x924,1}}, {{0x423c,3},{0x323c,2}}, + {{0xe97a,6},{0x10dc,2}}, {{0x6735,4},{0x33b3,3}}, {{0x14bc,7},{0x583f,3}}, {{0x974e,5},{0xe2c0,4}}, + {{0x1084,3},{0xb2e,2}}, {{0x159c,4},{0xbb5,1}}, {{0x166c,6},{0x14e2,3}}, {{0x181c,3},{0x27,1}}, + {{0x1b0a,2},{0xff4e,4}}, {{0xe0e2,8},{0xae7,1}}, {{0x1ab2,4},{0x2237,4}}, {{0x10ef,1},{0xd54,1}}, + {{0x27b4,3},{0xaec,2}}, {{0x441c,5},{0xc62,3}}, {{0x8a8e,6},{0x2b,3}}, {{0x39f8,5},{0xed47,4}}, + {{0xb7f,3},{0xb78,2}}, {{0xbb4,2},{0x22e3,3}}, {{0x1ad2,5},{0x288f,5}}, {{0xd76,5},{0xdfa,3}}, + {{0xbcb,3},{0x126c3,6}}, {{0x1878,1},{0x6ac5,1}}, {{0x2b,2},{0xc8a,2}}, {{0x148c,12},{0xae7,1}}, + {{0xadd,4},{0xae0,1}}, {{0x5a5a,7},{0xc9f,4}}, {{0x9eaa,8},{0x10c4,4}}, {{0x2ae0,5},{0xb99,2}}, + {{0x2d,1},{0xae2,1}}, {{0xf63,7},{0xc9e,3}}, {{0x1ed51,3},{0x734,2}}, {{0x263d,5},{0x1761,3}}, + {{0x139e,3},{0x4c28,4}}, {{0x19e0,7},{0xec5,5}}, {{0xb9d,3},{0x1357,5}}, {{0x114e,2},{0x151f,3}}, + {{0x142e,1},{0xae7,1}}, {{0xc67,2},{0xca1,2}}, {{0x710e,6},{0x10dc,2}}, {{0xddc,4},{0xadf,2}}, + {{0x6103,7},{0xb7a,5}}, {{0x1084,3},{0x40b6,3}}, {{0xd41,4},{0x3789,3}}, {{0x10f3,1},{0x20,3}}, + {{0xc1c4,5},{0xb54,2}}, {{0xcc7,3},{0xde2,4}}, {{0x31e0,5},{0xb065,3}}, {{0xbeb,1},{0xaea,1}}, + {{0x1a,1},{0xb65,2}}, {{0x446a,4},{0x5396,3}}, {{0x43a2,3},{0x2b,2}}, {{0x5442,5},{0xb2e,2}}, + {{0x5ead,5},{0x8742,4}}, {{0x19b3,4},{0x2dcb,4}}, {{0x8986,7},{0xdc1,5}}, {{0x4d33,7},{0xf10,3}}, + {{0x6d8e,3},{0xbe8,3}}, {{0x1a0d,5},{0x1644,5}}, {{0x6672,5},{0x5396,3}}, {{0x3242,5},{0xb52,5}}, + {{0x3234,3},{0xb52,2}}, {{0x1a,2},{0xb78,2}}, {{0xc37,3},{0x1a,2}}, {{0x278c5,5},{0x116c,1}}, + {{0x30,32},{0x30,6}}, {{0xb7d,1},{0x2a16,3}}, {{0xe64,4},{0xf6a,3}}, {{0x3cc2,9},{0xdfb,3}}, + {{0xd1b,1},{0x10dc,2}}, {{0x1a10,2},{0x1a,1}}, {{0x10ef,1},{0xd5c,1}}, {{0x24705,4},{0x96f,2}}, + {{0xae9,2},{0xb52,5}}, {{0x36cc,6},{0x2af8,4}}, {{0x3a3e,7},{0x2585,4}}, {{0x20bb,3},{0x1307,3}}, + {{0xa59a,6},{0xdc1,5}}, {{0xae2,2},{0x12d7,5}}, {{0x20,2},{0x27,1}}, {{0xb2f,1},{0xa24a,3}}, + {{0xb52,2},{0xaeb,2}}, {{0xbeb,1},{0xbe4,1}}, {{0xeb2,1},{0x2b,3}}, {{0xbcb,3},{0xc1c,2}}, + {{0xb7d,1},{0x101a,3}}, {{0x18898,5},{0xf60,3}}, {{0xb85,2},{0x28,1}}, {{0x30,32},{0x30,2}}, + {{0x780,1},{0x24,1}}, {{0x3234,3},{0xcb8,2}}, {{0x1051,4},{0x11ef,3}}, {{0xc2e,2},{0xd0d,2}}, + {{0xc1ae,6},{0x2b,3}}, {{0xb63,3},{0xae0,1}}, {{0xde9,1},{0xc57,3}}, {{0x2b,1},{0xc9f,4}}, + {{0xd41,3},{0x41ef,2}}, {{0xeca,5},{0x5396,3}}, {{0x92b6,5},{0xb65,2}}, {{0xae9,2},{0xbd6,2}}, + {{0x1b75,4},{0x1b79,3}}, {{0xcd9,3},{0xbd8,2}}, {{0x1e,1},{0xce2,3}}, {{0x30,2},{0x432,16}}, + {{0xca3,4},{0xca7,3}}, {{0x10fa,1},{0xb65,2}}, {{0x78d6,5},{0xb65,2}}, {{0xe64,4},{0x5396,3}}, + {{0xab9a,3},{0x2b,3}}, {{0x10ea,3},{0x6dd7,3}}, {{0x1e,1},{0xf59,3}}, {{0xde2,4},{0xae7,1}}, + {{0xb6c,4},{0xde2,3}}, {{0x1040,8},{0xb78,2}}, {{0x6de9,5},{0x10bf,4}}, {{0x7162,4},{0xbb5,1}}, + {{0x1040,5},{0xc7b,4}}, {{0x41be,3},{0xbb5,1}}, {{0x27,1},{0x2e55,5}}, {{0x1095,3},{0xadf,2}}, + {{0x2cae,4},{0x1e,1}}, {{0xe376,9},{0xd0d,2}}, {{0x13b8a,7},{0x10dc,2}}, {{0x177c,3},{0x10f0,1}}, + {{0xb9c,2},{0x1971,2}}, {{0x11ba8,4},{0xb65,2}}, {{0xcc2c,5},{0x10dc,2}}, {{0xd1b,1},{0xd1b,1}}, + {{0xf422,6},{0x4c27,5}}, {{0x1ed49,3},{0x18,1}}, {{0xcd3,2},{0x43e5,3}}, {{0x20bb,3},{0x184cf,6}}, + {{0x141c,5},{0x1dff,5}}, {{0xe7b,4},{0xe70,4}}, {{0xb8b,2},{0xc1c,2}}, {{0x160b0,8},{0xae7,1}}, + {{0xb70,2},{0x1f,1}}, {{0x219c,4},{0x1904,3}}, {{0x70b0,4},{0xfeee,2}}, {{0x1615b,6},{0x12ff,2}}, + {{0x7102,5},{0xbd4,2}}, {{0x10c8,3},{0x10dc,2}}, {{0x28,1},{0xb70,2}}, {{0x42ac,6},{0x2944,4}}, + {{0x9f52,8},{0xc34,3}}, {{0x948,1},{0x9a9,1}}, {{0xb47,2},{0xb48,2}}, {{0x6d8e,3},{0x3dd1,2}}, + {{0xceb,3},{0x28b1,3}}, {{0x70b0,4},{0x70d2,2}}, {{0x2d10,6},{0x1308,4}}, {{0x28,1},{0xb64,3}}, + {{0xaea,1},{0xcd5,2}}, {{0x102b0,6},{0x25da,3}}, {{0xb63,2},{0x2195,3}}, {{0xfde,2},{0xb78,2}}, + {{0x22e6,5},{0xe2c0,4}}, {{0x12fc,4},{0xb2e,2}}, {{0xaf1,1},{0xce8,3}}, {{0x2322,6},{0x89b9,4}}, + {{0x19b3,4},{0x1257,3}}, {{0x16cc,4},{0xae0,1}}, {{0x1916,5},{0xae7,1}}, {{0xc25,4},{0xd5e,4}}, + {{0x12d3c,6},{0x1489,3}}, {{0x1257,2},{0xbb5,3}}, {{0x709c,2},{0xff26,2}}, {{0xd41,4},{0xaeb,2}}, + {{0x1a26f,5},{0xf49e,4}}, {{0x1dbe,5},{0x1a,1}}, {{0x7c5a,6},{0xc25a,4}}, {{0xadd,4},{0xfb1,2}}, + {{0x3242,5},{0x11b8,4}}, {{0xb72,2},{0x2b,3}}, {{0x219c,4},{0xbb5,1}}, {{0x4fbd,4},{0xd7f,3}}, + {{0x9eaa,8},{0xb9d,3}}, {{0x131b0,5},{0xb7d,2}}, {{0x3678,6},{0x10dc,2}}, {{0xaf1,1},{0xae6,2}}, + {{0xbe0,1},{0xbeb,1}}, {{0xa22e,4},{0xcce,3}}, {{0xc13,4},{0x72da,4}}, {{0xfdd,2},{0x11e6,6}}, + {{0x17981,6},{0xae7,1}}, {{0xb6c,3},{0xa7ed,4}}, {{0xbc18,6},{0x10dc,2}}, {{0x4c15,5},{0x4c27,5}}, + {{0x257a,4},{0x1e90b,4}}, {{0x17bc,4},{0x1f,1}}, {{0x167c,5},{0xaf1,2}}, {{0xeca,4},{0xdfa,3}}, + {{0xb71,2},{0xb4b,2}}, {{0xae2,2},{0x1b,1}}, {{0xaea,1},{0xc30,2}}, {{0x2445e,1},{0x2445e,1}}, + {{0xf52,5},{0xb79,2}}, {{0x61ac,6},{0x1489,3}}, {{0x1b6e1,2},{0x6f72,2}}, {{0x9e3e,8},{0x1b,1}}, + {{0xf63,5},{0x1d22,6}}, {{0xba5,4},{0x1b,1}}, {{0xb7f,6},{0x2b,1}}, {{0x26f1,4},{0x323c,2}}, + {{0xcfd,5},{0xd5e,4}}, {{0xc37,3},{0xb63,2}}, {{0x441c,3},{0x1421,3}}, {{0x27b6,1},{0xb65,2}}, + {{0x16ac,5},{0x1964a,4}}, {{0x2b,2},{0xc1c,2}}, {{0x1b4e3,1},{0x27cea,1}}, {{0x177c,4},{0xd7a,3}}, + {{0xc37,4},{0x16f8,3}}, {{0xbb5,1},{0xbb5,1}}, {{0xef9f,7},{0xae7,1}}, {{0xcfd,4},{0xbd6,2}}, + {{0x432,4},{0x432,2}}, {{0xbd6,2},{0xc62,3}}, {{0xadaa,5},{0x3d0e,7}}, {{0xbd1,2},{0xb2f,1}}, + {{0x6735,4},{0xaf2,1}}, {{0x10f3,1},{0x10f3,1}}, {{0x8e12,8},{0xaf1,2}}, {{0xb2f,1},{0xbb15,3}}, + {{0x1062,6},{0xd57,2}}, {{0x3988,6},{0xd45,4}}, {{0x533e,6},{0x2b,3}}, {{0xc675,5},{0x22e3,3}}, + {{0x6ac5,1},{0x14d5,3}}, {{0xd41,3},{0x23d9,3}}, {{0x2322,7},{0xcb8,3}}, {{0x30ba,5},{0xb54,3}}, + {{0x2b,1},{0xfb89,5}}, {{0x193b,5},{0xb63,2}}, {{0x3782,5},{0xb2e,2}}, {{0xc77,2},{0x1f0f,3}}, + {{0xbe7,1},{0x67c0,3}}, {{0xf52,4},{0xdd0,3}}, {{0xc89,3},{0xb7c,3}}, {{0x2322,6},{0x14a6,6}}, + {{0xbe7,1},{0xbe8,3}}, {{0x134c,5},{0xfdf,3}}, {{0x27,1},{0x1393,3}}, {{0xbaa2,4},{0xde2,4}}, + {{0x2b,1},{0xce8,3}}, {{0x162c,6},{0xc1c,2}}, {{0xde9,4},{0xae7,1}}, {{0x76c6,9},{0x10dc,2}}, + {{0xd76,4},{0x11ef,3}}, {{0xe830,5},{0x3062,4}}, {{0xff48,4},{0xff4c,6}}, {{0x51ab,5},{0xb78,2}}, + {{0xc55,2},{0x2202,3}}, {{0xb44,3},{0xadf,2}}, {{0x26c6,1},{0x1f3ee,2}}, {{0xae2,2},{0xc62,3}}, + {{0xc1e,2},{0x10dc,2}}, {{0x159c8,1},{0x1b6cb,1}}, {{0x1878,1},{0x1e,1}}, {{0x1c,1},{0xadf,2}}, + {{0x1b6ab,1},{0x278af,1}}, {{0xeb2,1},{0x28,1}}, {{0xbeb,1},{0xdf0,2}}, {{0x1f,2},{0x1a,1}}, + {{0x7a6e,4},{0xd0c,2}}, {{0xb7d,1},{0xae6,2}}, {{0x314d,3},{0x1a7a,3}}, {{0xba55,7},{0xb4e4,4}}, + {{0x11ef,2},{0xb78,2}}, {{0xbeb,1},{0xb49,2}}, {{0xae2,2},{0xae7,1}}, {{0xcd9,5},{0xc52,2}}, + {{0x16edf,7},{0xd0d,2}}, {{0xcb8,2},{0xae0,1}}, {{0xb6c,3},{0xb63,2}}, {{0x670e,6},{0x6714,4}}, + {{0x16fc,5},{0xd7f,3}}, {{0x82ba,6},{0x10dc,2}}, {{0xbbf,2},{0x25da,3}}, {{0x10ec,1},{0xbe4,1}}, + {{0x68ae,6},{0xb2e,2}}, {{0xb72,2},{0xc34,3}}, {{0x3203,3},{0xde4,2}}, {{0xfdd,2},{0xb82,2}}, + {{0xd54,1},{0x591e,4}}, {{0xceb,3},{0xbe1,2}}, {{0x18619,7},{0xd0d,2}}, {{0x734,1},{0x9a9,1}}, + {{0x12fe,2},{0xcc0,3}}, {{0x4c15,5},{0x89b9,4}}, {{0x10ea,3},{0xb72,2}}, {{0x36cc,6},{0x2b,3}}, + {{0x14dc,7},{0x11b8,4}}, {{0x278a7,3},{0x116c,1}}, {{0x10fb,3},{0xb55,3}}, {{0x3a3e,5},{0xdbf,3}}, + {{0x27c3,4},{0x15292,6}}, {{0x3640,4},{0xb65,2}}, {{0x278a7,3},{0x278af,1}}, {{0x10c8,3},{0xb49,2}}, + {{0x2601,10},{0xce8,3}}, {{0xca7,3},{0xc8f,2}}, {{0x1e3b7,7},{0x1b,1}}, {{0xeec,7},{0x32d5,4}}, + {{0x1762,3},{0xae2,1}}, {{0x139e,4},{0x1b,1}}, {{0x3fe0,5},{0x11ef,3}}, {{0xbeb,1},{0xd54,1}}, + {{0x10d70,7},{0xb78,2}}, {{0x7c4,16},{0x7c4,16}}, {{0x219c,4},{0x108b,3}}, {{0xc77,2},{0x1f,1}}, + {{0x1051,4},{0x2b4c,4}}, {{0x16cc,4},{0x6107,3}}, {{0x139c,6},{0xd0b,3}}, {{0x2bfc,2},{0xb78,2}}, + {{0x35ec,5},{0xab28,4}}, {{0xbed,2},{0xb78,2}}, {{0x2445f,1},{0x432,1}}, {{0xa6c6,5},{0x132f,3}}, + {{0x1095,3},{0x21,1}}, {{0x1b6ab,1},{0x278a9,1}}, {{0x423c,3},{0x1a,1}}, {{0xd692,6},{0x2bca,4}}, + {{0xcc7,3},{0x1f3b,4}}, {{0x6f48,4},{0x1c8f,3}}, {{0xb8f,2},{0x28,1}}, {{0x41da,3},{0x14c33,7}}, + {{0x27b4,3},{0xdf0,2}}, {{0xb32,3},{0xb32,3}}, {{0xfdd,2},{0x4f65,3}}, {{0x10d98,5},{0xb98,2}}, + {{0xb68,3},{0xc34,3}}, {{0x3bfe,7},{0x12d7,5}}, {{0xbb5,1},{0xd57,2}}, {{0xbe7,1},{0xaf1,1}}, + {{0x26f1,4},{0xbed,4}}, {{0xc25,4},{0x169ec,5}}, {{0x1afd,5},{0xc4d,2}}, {{0xae5,1},{0xc67,3}}, + {{0x13a2,2},{0x6dd7,3}}, {{0x30ba,5},{0xb54,4}}, {{0xb52,2},{0x1d,1}}, {{0x27b6,1},{0xc9a,2}}, + {{0xa1c2,6},{0xb85,2}}, {{0xaf1,1},{0x28,2}}, {{0x1b4e3,1},{0x1ed58,1}}, {{0xd76,7},{0xce1,4}}, + {{0xadd,4},{0xe77,3}}, {{0x441c,3},{0xc57,3}}, {{0x9b62,6},{0xb2c,4}}, {{0x68ae,6},{0x4ab0,3}}, + {{0xc77,2},{0xc1c,2}}, {{0x734,1},{0x24460,3}}, {{0x7c5a,6},{0x2275,4}}, {{0x72da,3},{0xb65,2}}, + {{0xd5c,1},{0x10ef,1}}, {{0x1b4f,3},{0x10dc,2}}, {{0x30,2},{0xbc1,3}}, {{0xb70,2},{0x1c25,4}}, + {{0xeb2,1},{0x5277,2}}, {{0xddc,4},{0xf14,2}}, {{0x28,1},{0xae6,2}}, {{0xd65,3},{0xae7,1}}, + {{0x4f6f,5},{0x12b1,4}}, {{0x1d,1},{0x94a5,4}}, {{0xaea,2},{0x2b,1}}, {{0xe6d,2},{0xdbf,3}}, + {{0x422e,3},{0x121e1,6}}, {{0xaf1,1},{0xd57,2}}, {{0xbe7,1},{0x10f7,1}}, {{0xf96,7},{0xb71,2}}, + {{0x26c6,1},{0x10f7,1}}, {{0xb7d,2},{0xaea,1}}, {{0x30,32},{0x30,4}}, {{0x446a,5},{0xd57,3}}, + {{0x10e6a,6},{0x2b,3}}, {{0x5324,5},{0x5cd6,3}}, {{0x16dc,5},{0xd0d,2}}, {{0x7276,4},{0xb65,2}}, + {{0x265b,4},{0xa592,6}}, {{0xaf1,1},{0x2af4,4}}, {{0x50ce,8},{0xae7,1}}, {{0xb63,2},{0xb75,2}}, + {{0x271e,3},{0x10ca,1}}, {{0x70c6,4},{0x1a328,2}}, {{0x13e4,3},{0xeb2,1}}, {{0x1aee,6},{0x2944,4}}, + {{0xddc,4},{0xb63,3}}, {{0xb2f,1},{0xc2e,2}}, {{0xae7,2},{0x11e4,4}}, {{0xddc,4},{0xb52,5}}, + {{0x10fb,3},{0xaeb,2}}, {{0x1c8f,3},{0xeb2,1}}, {{0xba7,3},{0x20,2}}, {{0xa7c5,6},{0x3a3b,3}}, + {{0xeec,7},{0xef3,4}}, {{0xb6c,3},{0xb72,3}}, {{0xc37,3},{0x1307,3}}, {{0x319a,5},{0x9071,5}}, + {{0x20e8,4},{0xdf0,2}}, {{0x2b,1},{0xc63,3}}, {{0xb2c,2},{0xb8a,2}}, {{0x1b4e4,1},{0x1b4e4,1}}, + {{0x178c,3},{0x1a,2}}, {{0xb9c,2},{0x12d7,5}}, {{0xbcb,3},{0xf44,7}}, {{0x1cec,6},{0xc34,3}}, + {{0x12c4c,5},{0x1489,3}}, {{0xbe0,1},{0x1a,1}}, {{0xf63,7},{0x5ba6,6}}, {{0x1077e,7},{0x2b,3}}, + {{0x9a9,1},{0x1ed53,1}}, {{0xb7f,3},{0xb70,2}}, {{0x41be,3},{0x1e,1}}, {{0x3bfe,7},{0xc8a,2}}, + {{0x119c,12},{0x2b,3}}, {{0x9e37,4},{0x10dc,2}}, {{0x10c8,5},{0x2e55,5}}, {{0x20bb,3},{0xb52,2}}, + {{0x24462,1},{0x24a30,3}}, {{0xb79,2},{0xb47,2}}, {{0xb7f,3},{0xb2e,2}}, {{0xc67,2},{0x1d,1}}, + {{0x422e,3},{0x1f87c,5}}, {{0xb7d,1},{0x4875,5}}, {{0x27901,5},{0x27897,1}}, {{0x28,1},{0xb47,2}}, + {{0x1d89,2},{0xcce,3}}, {{0xae0,1},{0x4882,3}}, {{0x924,2},{0x278af,1}}, {{0x9a9,1},{0x27d20,2}}, + {{0xf14,2},{0xb8f,3}}, {{0x3678,6},{0xb52,5}}, {{0x1a,2},{0xb75,2}}, {{0xc1ae,6},{0xaf2,1}}, + {{0xb85,2},{0x5277,2}}, {{0x1ab2,4},{0xaea,1}}, {{0x5949,4},{0xc77,2}}, {{0x10ca,1},{0x10f3,1}}, + {{0x20bb,3},{0x1b4b,3}}, {{0x19b3,4},{0x2891,3}}, {{0x2ed0,7},{0xb67,2}}, {{0xa6c6,7},{0xc32,5}}, + {{0x1b4e3,1},{0x18,1}}, {{0xde9,1},{0x14d5,3}}, {{0x5442,4},{0x102f9,6}}, {{0x6d81,3},{0xbd6,2}}, + {{0xd54,1},{0x29,2}}, {{0x24462,1},{0x28634,1}}, {{0x161c,9},{0xe4d,6}}, {{0x36be,5},{0xd0b,4}}, + {{0xae6,3},{0xaf1,2}}, {{0x5560,10},{0x2b,3}}, {{0x13612,5},{0x2195,3}}, {{0x92b6,5},{0x10dc,2}}, + {{0x27c97,3},{0x24,1}}, {{0x178c,3},{0xbcc0,5}}, {{0xbeb,1},{0xbc1,3}}, {{0x1a0d,5},{0x2b8d,4}}, + {{0xaecf,5},{0xfe5,2}}, {{0x5ea0,6},{0xb52,5}}, {{0x10fb,3},{0x23d9,3}}, {{0xb28e,5},{0x1f,1}}, + {{0x10192,2},{0x96f,2}}, {{0xc37,3},{0xb82,2}}, {{0x20e8,4},{0x2abe,5}}, {{0x3640,4},{0xb2e,2}}, + {{0xe64,5},{0x1d,2}}, {{0x7c4,4},{0x7c4,2}}, {{0x1b6ab,1},{0x116c,1}}, {{0xcb8,2},{0x1f,2}}, + {{0x1878,1},{0x28da,1}}, {{0xeb2,1},{0xaf2,1}}, {{0x11b76,6},{0xb54,3}}, {{0x10ea,3},{0x4882,3}}, + {{0x57ea,8},{0x18eb,5}}, {{0x24705,4},{0x6f64,2}}, {{0x667f,7},{0x1a30,3}}, {{0x27901,5},{0x1b6ab,1}}, + {{0xbeb,1},{0xadf,2}}, {{0xddc,4},{0x3fb8,3}}, {{0x5a19,5},{0xd0d,2}}, {{0xaea,1},{0xbbf,2}}, + {{0x8956,10},{0xae7,1}}, {{0x70ea,3},{0xb65,2}}, {{0x1d55,4},{0x80d3,5}}, {{0x12f37,3},{0xb63,2}}, + {{0x1a2b,8},{0xbd4,2}}, {{0x4a5b,5},{0xbac,4}}, {{0xcb5,3},{0x79d6,4}}, {{0x82ba,6},{0xb78,2}}, + {{0xc63,3},{0xb54,3}}, {{0xb64,2},{0x27,1}}, {{0xc12a,6},{0xb7c,3}}, {{0x8482,7},{0x159f,4}}, + {{0x278c5,5},{0x27897,1}}, {{0xb7f,3},{0x1b3c0,5}}, {{0xddc,4},{0x11b8,4}}, {{0x74e6,9},{0x4459,3}}, + {{0x10f3,1},{0xf6a,3}}, {{0xc13,3},{0xcbd,3}}, {{0x4a68,5},{0x139f,3}}, {{0x946,3},{0x948,1}}, + {{0xcf0,2},{0xaf1,1}}, {{0xd8e,3},{0xb67,2}}, {{0xac8a,4},{0x4326,4}}, {{0xbcb,3},{0xbb4,2}}, + {{0xae7,2},{0x24fd,5}}, {{0x44b8,6},{0xbb4,4}}, {{0x10ec,1},{0xc67,2}}, {{0xe64,5},{0x1bc5,5}}, + {{0xb2e,2},{0xb48,2}}, {{0x1ae77,6},{0xbb1,3}}, {{0xcb5,3},{0x16f8,3}}, {{0xb7f,3},{0xc1c,2}}, + {{0xbe4,1},{0xbe4,1}}, {{0x1e,1},{0x1d,1}}, {{0xc55,2},{0xb65,2}}, {{0x28,2},{0xaec,2}}, + {{0x27,1},{0xaf2,1}}, {{0x10029,3},{0xbd6,2}}, {{0x278a7,3},{0x116e,1}}, {{0xae7,2},{0x1c25,4}}, + {{0xbb5,1},{0x22e3,3}}, {{0x181c,3},{0x6a37,8}}, {{0xbe33,8},{0x2b,3}}, {{0x7d6e,6},{0xb67,2}}, + {{0xa246,4},{0x12ff,2}}, {{0x6f14,6},{0x14e2,3}}, {{0x24462,1},{0x27e43,3}}, {{0x2445f,1},{0x159c8,1}}, + {{0xb63,2},{0xec6d,3}}, {{0x3bfe,7},{0x1468,4}}, {{0xc25,3},{0x702a,4}}, {{0x11f9a,6},{0x2b,3}}, + {{0xbb5,1},{0x2b,2}}, {{0xddc,4},{0x1d,1}}, {{0x17be,2},{0x1f,1}}, {{0x78ca,4},{0x2b,2}}, + {{0x16bc,4},{0xdf5,4}}, {{0x6ac3,3},{0x319d,4}}, {{0x12ac,5},{0xb54,4}}, {{0xeec,7},{0xc22,3}}, + {{0xf52,4},{0x4de1,3}}, {{0xab9c,1},{0xd0ff,2}}, {{0x1375c,6},{0xae7,1}}, {{0x2445c,3},{0x2446c,1}}, + {{0x845e,6},{0x10dc,2}}, {{0x27,1},{0xbd6,2}}, {{0xbde,3},{0xb71,2}}, {{0x6ff2,8},{0x46fa,4}}, + {{0x3af4,8},{0x38eb,3}}, {{0x24b7,5},{0xf99,4}}, {{0xcfd,5},{0x2b8d,4}}, {{0x167c,5},{0xf8e1,4}}, + {{0x2796,3},{0xae0,1}}, {{0xae7,2},{0xd51,3}}, {{0x10f3,1},{0x10ed,2}}, {{0x3a3e,6},{0xd17,3}}, + {{0xb6c,4},{0x3062,4}}, {{0x11ba8,4},{0xae8,2}}, {{0x15ac,5},{0xc67,3}}, {{0x5acf,8},{0x103a,3}}, + {{0x56cc,7},{0xb68,4}}, {{0x70ea,6},{0x101b2,4}}, {{0xc1c,2},{0xaec,2}}, {{0xb44,3},{0x4119,3}}, + {{0xc30,2},{0x2b,3}}, {{0x924,2},{0x278a9,1}}, {{0xd0f,4},{0x1c25,4}}, {{0xb7f,3},{0xbc5,3}}, + {{0xb2f,1},{0x37cd,5}}, {{0x734,1},{0x432,1}}, {{0xcb8,2},{0xaea,1}}, {{0xce8,3},{0x139f,3}}, + {{0x4fbd,4},{0xcd30,4}}, {{0x2445f,1},{0x734,2}}, {{0x6a8f,5},{0xbd6,2}}, {{0x7a6e,4},{0xbb5,1}}, + {{0x24b7,5},{0x2de9,7}}, {{0x181e1,5},{0xae7,1}}, {{0xceb,3},{0xc1c,2}}, {{0x3234,3},{0xe1c,4}}, + {{0x39f8,5},{0xeb3,3}}, {{0x14cc,4},{0x3921,5}}, {{0x6d81,3},{0xde2,3}}, {{0x140a,2},{0x2d,1}}, + {{0x17a3e,5},{0xd17,3}}, {{0x794e,7},{0xce8,3}}, {{0x3234,3},{0x1bfc9,4}}, {{0x5734,7},{0x11b8,4}}, + {{0x1c,1},{0x10dc,2}}, {{0x139e,4},{0x5fe0,4}}, {{0xbbf,2},{0xb65,2}}, {{0x1084,3},{0x13d63,4}}, + {{0x1084,3},{0xbfc4,6}}, {{0xcc2c,6},{0xc7b,4}}, {{0x177c,3},{0xde9,1}}, {{0xd41,4},{0xb63,3}}, + {{0x893e,5},{0x17476,4}}, {{0x8056,9},{0xb65,2}}, {{0x441c,3},{0xb0d2,4}}, {{0x8a3a,6},{0xb8f,2}}, + {{0x10ca,1},{0x10f6,1}}, {{0x5401,4},{0x12fe,2}}, {{0x1d,1},{0xb52,2}}, {{0x17a3e,5},{0x1ed0,4}}, + {{0x27b6,1},{0xd54,1}}, {{0x10ea,3},{0x11ef,2}}, {{0xeca,5},{0x10dc,2}}, {{0x9a9,1},{0x1b4e3,1}}, + {{0xc55,2},{0x1d,1}}, {{0x82ba,6},{0x2b,3}}, {{0x10f2,1},{0xbeb,1}}, {{0xc25,4},{0x2a85,6}}, + {{0x2a16,3},{0xae7,2}}, {{0xcc2c,5},{0x2b,3}}, {{0x2daa,5},{0xf99,4}}, {{0x9e9,4},{0x9e9,2}}, + {{0x24432,4},{0x27b6,1}}, {{0x27d24,3},{0xb31,1}}, {{0x78b2,5},{0xb85,2}}, {{0xb44,3},{0x1d8a,3}}, + {{0x2610,8},{0xb52,6}}, {{0xb4b,2},{0xbb5,1}}, {{0xbddb,8},{0x10dc,2}}, {{0xde9,1},{0x9216,4}}, + {{0xe9f,3},{0xb63,2}}, {{0x14cc,4},{0xde2,4}}, {{0xbe4,1},{0xd54,1}}, {{0x30,2},{0x1aa6,3}}, + {{0x2160,5},{0xb78,2}}, {{0x1d,1},{0x202c,3}}, {{0x44b8,6},{0x47ad,5}}, {{0x27,1},{0x28,1}}, + {{0xc1c,2},{0xb71,2}}, {{0xb8b,2},{0x2b,3}}, {{0xb6c,3},{0x1101e,4}}, {{0xf52,5},{0xd14,4}}, + {{0x1e,1},{0x1a5c,3}}, {{0x1dd95,7},{0xae7,1}}, {{0xdf5,4},{0xb7c,3}}, {{0x5324,5},{0xb2c,2}}, + {{0x271e,3},{0x4882,3}}, {{0xcb8,2},{0xae6,2}}, {{0x181c,3},{0x10f3,1}}, {{0x257a,4},{0x11b0d,5}}, + {{0x70ea,3},{0x67a6,4}}, {{0x19b3,5},{0x2030,4}}, {{0x1aff,3},{0x11b8,4}}, {{0xb7f,3},{0xce2,3}}, + {{0xb4b,2},{0xcb8,2}}, {{0x10ea,3},{0xb63,2}}, {{0xbde,3},{0x1955e,6}}, {{0x1e,1},{0x392d,3}}, + {{0xc25,4},{0xa469,5}}, {{0xb71,2},{0xaf2,1}}, {{0xd41,3},{0x2b,1}}, {{0x30,2},{0x532,4}}, + {{0x3e12,5},{0x1098,4}}, {{0xcb8,2},{0xb54,3}}, {{0x1cbf,5},{0x172b2,4}}, {{0x24a41,2},{0x2445e,1}}, + {{0x1db15,5},{0x2b,3}}, {{0xd0fc,4},{0xcf0,2}}, {{0x24a2d,2},{0x2445e,1}}, {{0x209d,4},{0xc67,3}}, + {{0xda9,4},{0x16c1,3}}, {{0xcb8,2},{0x27,1}}, {{0x1687,3},{0xb65,2}}, {{0x2b,3},{0xb78,2}}, + {{0x10ca,2},{0x4ee5,8}}, {{0x1afd,5},{0xe7f,7}}, {{0xac8c,2},{0xb64,2}}, {{0x20bb,3},{0xc1c,2}}, + {{0x532,18},{0x30,10}}, {{0xbb5,1},{0xb79,2}}, {{0x180e,2},{0x1055,3}}, {{0x3678,6},{0xae7,1}}, + {{0xae5,1},{0x2c00,3}}, {{0x4ab6,6},{0xe695,4}}, {{0xddc,6},{0xde2,4}}, {{0x2796,3},{0x1140,3}}, + {{0xb52,2},{0xb70,2}}, {{0x30,2},{0x1b6dd,2}}, {{0x13bc,4},{0x2d,1}}, {{0x441c,3},{0x20b5,3}}, + {{0x8b06,4},{0x7562,3}}, {{0x103fa,5},{0x1daa,4}}, {{0x14260,5},{0x1019,4}}, {{0xfdd,2},{0xd8f,3}}, + {{0xf52,4},{0x1b80,4}}, {{0xcd9,3},{0x2971,3}}, {{0xae7,2},{0x705a,4}}, {{0xbcb,3},{0x1d8a,3}}, + {{0xfe38,4},{0x2d,1}}, {{0xf8cf,2},{0xd5c,1}}, {{0x6ac5,1},{0xca5,2}}, {{0x46f4,4},{0xbd6,2}}, + {{0xf0e,6},{0xc1c,2}}, {{0xd41,4},{0x1260,4}}, {{0xcd3,2},{0x28,2}}, {{0x2912,4},{0x1197,4}}, + {{0xd41,3},{0xbe85,6}}, {{0x178c,3},{0x1a10,2}}, {{0x8d16,5},{0x1425b,3}}, {{0x27b6,1},{0x10ca,1}}, + {{0xc55,2},{0xaeb,2}}, {{0x29da,3},{0x2d,1}}, {{0xd76,7},{0xd8e,4}}, {{0x1dbe,5},{0xf02,3}}, + {{0x44df,4},{0xc30,2}}, {{0x2520a,2},{0x1ed58,1}}, {{0xb92c,7},{0x2b,3}}, {{0x142c,3},{0x1425b,3}}, + {{0x1878,1},{0x1878,1}}, {{0xb4b,2},{0xb2c,2}}, {{0xbcb,3},{0x1257,3}}, {{0xe6d,2},{0x2b,2}}, + {{0x1c,1},{0x1e,1}}, {{0xae0,1},{0x43ac,7}}, {{0xaf1,1},{0xd7f,3}}, {{0x70c8,2},{0x1019c,2}}, + {{0x20bb,3},{0xb066,2}}, {{0x1d5a,3},{0x10dc,2}}, {{0xc1e,2},{0xb7c,3}}, {{0xeec,5},{0xaf1,1}}, + {{0x20bd,3},{0xaea,1}}, {{0xb4b,2},{0xc67,2}}, {{0x2cae,4},{0xfdf,2}}, {{0x24a2d,2},{0x948,1}}, + {{0x7cf6,8},{0x2b,3}}, {{0xaeca,5},{0xaecf,7}}, {{0x178c,3},{0xc67,2}}, {{0x19375,6},{0xb4b,2}}, + {{0xc52,2},{0xb65,2}}, {{0x1084,3},{0x298a,2}}, {{0xd41,3},{0x1a,3}}, {{0x15dc,6},{0x11c4,6}}, + {{0xb52,2},{0x2b,2}}, {{0xc956,7},{0xc95d,4}}, {{0xc55,2},{0xb54,3}}, {{0x7bbe,8},{0xae7,1}}, + {{0x1ed53,1},{0x27cea,1}}, {{0x1cec,10},{0x2b3e,4}}, {{0x162e0,6},{0x2b,3}}, {{0xeec,7},{0x2a85,6}}, + {{0xddc,4},{0x1f3a,3}}, {{0xddc,4},{0xd89f,3}}, {{0x24a8,6},{0x1555,7}}, {{0x120d0,7},{0xc8e,3}}, + {{0x14d5,3},{0x28,1}}, {{0x969,2},{0x96b,2}}, {{0x2445e,1},{0x251d8,2}}, {{0x5ea0,4},{0xb75,2}}, + {{0xb2f,1},{0x1a,2}}, {{0x19b3,4},{0x187c,3}}, {{0x2322,6},{0x10e1,5}}, {{0x972a,5},{0x11f2,3}}, + {{0x2445f,1},{0x251d8,2}}, {{0xc37,3},{0x1150,2}}, {{0xfee4,4},{0x70ac,4}}, {{0x30,2},{0x22cf8,1}}, + {{0xb2c,2},{0xc1c,2}}, {{0xb78,2},{0xce8,3}}, {{0xbeb,1},{0x2574,2}}, {{0x1a,1},{0xaea,2}}, + {{0x27b4,3},{0xb55,2}}, {{0x5277,2},{0x4459,3}}, {{0xd54,1},{0xbb5,1}}, {{0xc17,3},{0xae7,1}}, + {{0x6ac3,3},{0xa7c5,9}}, {{0x30,2},{0x159c8,1}}, {{0x4fbd,4},{0x11ef,2}}, {{0xa2d6,5},{0xb2c,2}}, + {{0xaea,1},{0x22e3,3}}, {{0x21bb0,5},{0x257c,2}}, {{0xcf6,3},{0x1c,1}}, {{0xd0f,4},{0x13b84,5}}, + {{0x1062,6},{0x48a4,3}}, {{0xf1f,5},{0xb63,2}}, {{0xb70,2},{0xc8e,3}}, {{0xc25,5},{0x7b33,7}}, + {{0x4fbd,4},{0x8c46,4}}, {{0x3838,8},{0xb2c,2}}, {{0x17253,6},{0x10dc,2}}, {{0xb2f,1},{0x23d9,3}}, + {{0xaca2,3},{0xdf0,2}}, {{0xb12e,3},{0x1018,3}}, {{0xcd3,2},{0x887b,3}}, {{0xcab,3},{0xb65,2}}, + {{0xc13,4},{0xae7,1}}, {{0x30,2},{0x112c,1}}, {{0xbb4,2},{0x1152,3}}, {{0x24,1},{0x24,1}}, + {{0x17fe,3},{0x27,1}}, {{0xba5,4},{0x2a69,7}}, {{0x3a3e,6},{0x4a84,3}}, {{0xa2be,7},{0x14a8,4}}, + {{0x5c76,4},{0xae7,1}}, {{0xb8b,2},{0x1393,3}}, {{0x884,4},{0x884,4}}, {{0x10ec,1},{0x1a,1}}, + {{0x1e,1},{0xc30,2}}, {{0xa4fe,6},{0x1bdb,3}}, {{0x7162,4},{0x2bfc,2}}, {{0x14ce4,6},{0x139e,4}}, + {{0xbe4,1},{0x10ef,1}}, {{0x161c,9},{0xaf1,1}}, {{0xceb,3},{0x3da5,4}}, {{0x150e0,5},{0x150e5,5}}, + {{0x2445c,3},{0x1b4e3,1}}, {{0x1b9dd,7},{0x1b,1}}, {{0xd76,4},{0x16af,3}}, {{0x24b7,5},{0xb0ce,3}}, + {{0xc13,4},{0xa60f,3}}, {{0xb7f,3},{0x3789,3}}, {{0xeb9,4},{0xb85,2}}, {{0x177e,2},{0x12ff,2}}, + {{0x10f3,1},{0xcc0,3}}, {{0xb75,2},{0x12fe,1}}, {{0x29e8c,3},{0x924,1}}, {{0xaea,1},{0xc67,2}}, + {{0x1ab2,4},{0x1140,3}}, {{0x2445c,3},{0x734,2}}, {{0x1ed49,3},{0x1ed58,1}}, {{0x27895,3},{0x924,1}}, + {{0xeb1,2},{0x1a,2}}, {{0x193ab,6},{0xae7,1}}, {{0x142c,3},{0xb70,2}}, {{0x14fc,8},{0xbb1,3}}, + {{0xd41,3},{0xae2,2}}, {{0x28,2},{0xaf2,1}}, {{0x2c76,4},{0xc55,2}}, {{0x2b,2},{0xaf2,1}}, + {{0x30,2},{0xede,3}}, {{0x2674b,4},{0xd54,1}}, {{0x1d46,10},{0xc8e,3}}, {{0xd692,6},{0x1a,2}}, + {{0xc1c,2},{0x1719,3}}, {{0xc5ce,6},{0xb54,3}}, {{0x30,2},{0xd57,2}}, {{0x6d8e,3},{0x1060f,5}}, + {{0x5191,8},{0xae7,1}}, {{0xae7,1},{0xae6,2}}, {{0x4034,7},{0xb7d,2}}, {{0x1a,2},{0x1862,3}}, + {{0x10192,2},{0x1b23d,2}}, {{0x3e04,8},{0x11b8,4}}, {{0x15298,5},{0xb85,2}}, {{0xb55,2},{0xb2c,2}}, + {{0x30,32},{0x30,8}}, {{0x31c4,8},{0x1408,3}}, {{0x11ef,2},{0xb65,2}}, {{0xc37,4},{0xe8a,4}}, + {{0x48ae,9},{0x10dc,2}}, {{0xfef0,4},{0xfef4,4}}, {{0x3f7e,6},{0xec2,2}}, {{0x27b4,3},{0x2b3c,3}}, + {{0x70a0,2},{0x1016a,2}}, {{0x12d6e,4},{0x1a,1}}, {{0x41be,3},{0x1098,4}}, {{0xda9,5},{0x1098,3}}, + {{0x141c,5},{0xb77,3}}, {{0x1b,1},{0xaf2,1}}, {{0x3234,3},{0xc2e,2}}, {{0x251cb,1},{0xb31,1}}, + {{0x27cea,1},{0x28633,2}}, {{0x2451f,2},{0x2ae5b,2}}, {{0x142c,3},{0x1a,1}}, {{0xcfd,7},{0x12d5,7}}, + {{0x7d6e,6},{0x12d7,5}}, {{0x1f,1},{0xaec,2}}, {{0x14ee2,4},{0x14ef0,4}}, {{0x30,32},{0x30,10}}, + {{0xcf44,6},{0xeb3,3}}, {{0x9c9,4},{0x9c9,2}}, {{0x4fbd,4},{0xc69a,6}}, {{0xedb,5},{0xb2e,2}}, + {{0x441c,3},{0x4460,3}}, {{0x3782,5},{0xb52,5}}, {{0x6f62,4},{0x6f72,2}}, {{0x1084,3},{0xb82,2}}, + {{0xbcb,6},{0xb63,2}}, {{0xfb1,2},{0xb55,2}}, {{0x2b,1},{0x1c25,4}}, {{0xa24a,3},{0xdf0,2}}, + {{0xc1a,4},{0x2dc3,3}}, {{0x2db1,3},{0xaf2,1}}, {{0x1e45,3},{0x2045,3}}, {{0x70a0,2},{0x1a328,2}}, + {{0xceb,3},{0xb63,3}}, {{0x8056,9},{0x2b,3}}, {{0xb63,2},{0xaf1,2}}, {{0x20ca,10},{0xb2e,2}}, + {{0x16dc,5},{0x363a,5}}, {{0x10ef,1},{0xbeb,1}}, {{0x11ec,5},{0x27,1}}, {{0x1c,1},{0x2b,1}}, + {{0xb78,2},{0xfe5,2}}, {{0x20dc5,5},{0xb78,2}}, {{0x4194,4},{0xb82,2}}, {{0x441c,3},{0x28,1}}, + {{0x142e,1},{0x1a,1}}, {{0xc55,2},{0xca6,3}}, {{0x2aa8,6},{0x2b,3}}, {{0x4c15,5},{0x125cc,4}}, + {{0x1040,5},{0x13e3,4}}, {{0xbe0,1},{0xc4d,2}}, {{0xb8f,2},{0xd17,3}}, {{0x1ed53,1},{0x159c8,1}}, + {{0x46f4,5},{0xaea,2}}, {{0xbed,2},{0x28,1}}, {{0x15ac,10},{0x11b8,4}}, {{0xbcb,3},{0xbd1,2}}, + {{0x3baa,9},{0xb9d,3}}, {{0x969,2},{0x6fae,2}}, {{0x43bd,4},{0x1a,1}}, {{0x3234,3},{0xbb4,2}}, + {{0x995e,8},{0x10dc,2}}, {{0x2b2ff,1},{0x2b2ff,1}}, {{0x2b,3},{0xae2,1}}, {{0x181c,3},{0xaea,1}}, + {{0xd65,3},{0x2045,3}}, {{0x3f9a,4},{0x392d,3}}, {{0x122c,4},{0x290e,4}}, {{0x3c28,9},{0x10dc,2}}, + {{0x1adc3,6},{0xb78,2}}, {{0xedb,5},{0xbb4,2}}, {{0x807a,8},{0x1489,3}}, {{0xb2f,1},{0xae7,1}}, + {{0x27b4,3},{0xae6,2}}, {{0xb44,3},{0x392d,3}}, {{0x3234,3},{0xd0c8,4}}, {{0x430,3},{0x24,1}}, + {{0xb6c,4},{0xc1e,2}}, {{0x6672,5},{0x1372,3}}, {{0x4450,4},{0xb4b,2}}, {{0x181c,3},{0x10ec,1}}, + {{0x2d,1},{0xb8f,2}}, {{0x1b,1},{0xb65,2}}, {{0xd692,6},{0xaf2,1}}, {{0x1e27,6},{0xeb5,4}}, + {{0xefd,8},{0xf05,7}}, {{0x10ca,1},{0xd54,1}}, {{0x27901,5},{0x278d6,1}}, {{0x2aa8,6},{0xae7,1}}, + {{0x3782,5},{0x3787,4}}, {{0x22cf8,1},{0x251cb,1}}, {{0x145e4,4},{0x25da,3}}, {{0x2868,4},{0x12f1,2}}, + {{0xae9,2},{0xbe1,2}}, {{0xb6c,3},{0xd8f,3}}, {{0x16fc,4},{0x69f7,3}}, {{0x5734,7},{0xce8,3}}, + {{0x2c51e,4},{0x6f72,2}}, {{0x271e,3},{0xb2e,2}}, {{0x1a3a,6},{0xae6,3}}, {{0xd1b,1},{0x1361,2}}, + {{0x10ef,1},{0x1f,1}}, {{0x7a6e,4},{0xc55,2}}, {{0x1095,3},{0x1e6c,6}}, {{0xbe7,1},{0xd8f,3}}, + {{0x1b57,4},{0xf77,3}}, {{0x762a,4},{0xb6ff,4}}, {{0x44b8,6},{0xc32c,3}}, {{0x10f6,1},{0xd54,1}}, + {{0xbcb,3},{0xe9b,3}}, {{0x6b5f,4},{0x12d7,5}}, {{0x4a5b,5},{0xae7,1}}, {{0xb4b,2},{0x2b,2}}, + {{0x1cbf,4},{0x2bfc,2}}, {{0xb2e,2},{0xaf2,1}}, {{0x3234,3},{0xfdd,2}}, {{0x3203,4},{0xd17,3}}, + {{0xcfd,4},{0xf59,3}}, {{0x21,1},{0xaf2,1}}, {{0xb2f,1},{0xe6d,2}}, {{0xceb,3},{0xcb8,3}}, + {{0xa162,6},{0xb78,2}}, {{0x2742,3},{0x2b,3}}, {{0xb48,2},{0xdfa,3}}, {{0xbd57,5},{0xc32c,3}}, + {{0x364e,4},{0x1055,3}}, {{0x3694,4},{0x1402,3}}, {{0x177c,3},{0x20,2}}, {{0x1c,1},{0xc55,2}}, + {{0xb44,3},{0x1a,3}}, {{0xc13,4},{0xaea,1}}, {{0x271e,3},{0x2e55,5}}, {{0x21,1},{0x21,1}}, + {{0x441c,3},{0xb85,2}}, {{0x122c,4},{0xb9d,3}}, {{0x16cc,4},{0x11b2,4}}, {{0x2862e,2},{0x18,1}}, + {{0x2b,1},{0xbc2,2}}, {{0xc37,3},{0x3ce4,7}}, {{0x1c,1},{0xaf1,1}}, {{0x1051,4},{0x1260,4}}, + {{0xb44,3},{0xb2e,2}}, {{0x177c,3},{0xbb4,4}}, {{0x181c,3},{0xc1e,2}}, {{0x12ec,8},{0xbb4,4}}, + {{0x4bb1,4},{0xd0d,2}}, {{0x17bc,3},{0x10f7,1}}, {{0xb6c,4},{0x17676,5}}, {{0xe64,5},{0xb7d,2}}, + {{0x4d19,6},{0x84dd,5}}, {{0x1480,3},{0xeb2,1}}, {{0x1878,1},{0x139f,3}}, {{0xbb4,2},{0xc30,2}}, + {{0x2c76,4},{0x2aa0,3}}, {{0xd1b,1},{0x1a,2}}, {{0x16fc,4},{0x30bc,3}}, {{0xf99b,8},{0xc67,2}}, + {{0xc8a,2},{0x1719,3}}, {{0x170c,10},{0xe4d,6}}, {{0x88ea,5},{0x1972,2}}, {{0x10ec,1},{0xd5c,1}}, + {{0x2bb2,8},{0x25df,4}}, {{0x24f91,2},{0x1ed58,1}}, {{0x2788f,3},{0x18,1}}, {{0xb64,2},{0xaf2,1}}, + {{0xb6c,3},{0x16f8,3}}, {{0x117c,1},{0x1ed58,1}}, {{0x27cea,1},{0x251cb,1}}, {{0xb6c,3},{0xc30,2}}, + {{0xaea,1},{0x2b,1}}, {{0x1f,1},{0xb65,2}}, {{0x3234,3},{0x24bd,4}}, {{0xc25,5},{0xbe85,6}}, + {{0x246c,8},{0x34a2,4}}, {{0x11ef,2},{0x2b,3}}, {{0xd41,3},{0x1a,2}}, {{0x18a5,5},{0x132f,3}}, + {{0x10ef,1},{0xbe4,1}}, {{0xceb,3},{0x1701,3}}, {{0x278ad,3},{0x924,3}}, {{0x1865,2},{0xb72,2}}, + {{0x142e,1},{0x1d,1}}, {{0x2c76,4},{0x5aab,3}}, {{0xa246,4},{0xbd8,2}}, {{0xcd9,3},{0x225f3,4}}, + {{0x1c83,5},{0xb67,2}}, {{0xb64,2},{0xd0d,2}}, {{0xb7f,3},{0xc89,2}}, {{0xaea,1},{0x1099,3}}, + {{0x150b8,5},{0x1489,3}}, {{0xb55,2},{0xb9d,3}}, {{0xd0f,11},{0x107e,6}}, {{0xf52,5},{0x16f1,3}}, + {{0x2cae,4},{0xb7d,2}}, {{0xb6c,3},{0x5396,3}}, {{0xd08e,5},{0xae7,1}}, {{0x10f0,1},{0x10f3,1}}, + {{0x29e8c,3},{0x116e,1}}, {{0x4c15,5},{0x139e,2}}, {{0x14d5,3},{0xc4d,2}}, {{0xcb5,3},{0x2c00,3}}, + {{0x278a1,3},{0x116e,1}}, {{0xd5c,2},{0xd5e,7}}, {{0x166c,6},{0x1425b,3}}, {{0x423c,3},{0x174e,3}}, + {{0x2c76,4},{0xc0c3,3}}, {{0x1040,6},{0xaf1,1}}, {{0xb79,2},{0xcbd,3}}, {{0xbd6,2},{0x7297,3}}, + {{0x11ef,3},{0xaf1,1}}, {{0x2b,2},{0xb77,3}}, {{0x1e45,3},{0xd7c1,5}}, {{0x4fbd,4},{0xce8,3}}, + {{0xc55,2},{0x2b,3}}, {{0x142e,1},{0x1ed4,6}}, {{0x12c92,5},{0x3789,3}}, {{0xdf5,4},{0x10dc,2}}, + {{0x278a7,3},{0x278d6,1}}, {{0x70c8,2},{0xfeee,2}}, {{0x3de8,5},{0xf47,4}}, {{0xc30,2},{0xc34,3}}, + {{0x30,2},{0x28633,2}}, {{0x6701,7},{0xc8e,3}}, {{0x108b,3},{0xae7,1}}, {{0x20bb,3},{0x750e,4}}, + {{0x28,1},{0x323c,2}}, {{0xcab,3},{0xb54,4}}, {{0x734,1},{0x2445e,1}}, {{0x2b,3},{0xd0d,2}}, + {{0x41da,3},{0xdf0,2}}, {{0xcab,3},{0x1489,3}}, {{0xc55,2},{0xb2e,2}}, {{0x181c,3},{0xd90,2}}, + {{0x1c,1},{0x2b,3}}, {{0xd41,4},{0x1a,2}}, {{0xbb2,2},{0xb8a,2}}, {{0xadc2,5},{0x9a2f,3}}, + {{0x271e,3},{0x10ec,1}}, {{0x1084,3},{0xbb4,2}}, {{0x27,1},{0x1d,1}}, {{0x5bc6,7},{0x2b,3}}, + {{0xc13,4},{0x1e,1}}, {{0x84a6,5},{0xb47,2}}, {{0xde9,1},{0x2f9b,3}}, {{0xb52,2},{0x11e6,6}}, + {{0x257a,7},{0xa60f,3}}, {{0xe69,3},{0x1d,1}}, {{0xbb4,2},{0xae7,1}}, {{0x17bc,4},{0xae7,2}}, + {{0xbe7,1},{0xd54,1}}, {{0x27,1},{0xc77,2}}, {{0xc1a,4},{0xc1e,5}}, {{0x1257,2},{0x1f,2}}, + {{0x441c,3},{0xb52,2}}, {{0x8b06,4},{0xaec,2}}, {{0x17bc,4},{0xd17,3}}, {{0xb7f,3},{0xae6,3}}, + {{0xceb,3},{0xf14,2}}, {{0x4c15,5},{0x139e,3}}, {{0xcd9,3},{0xc1e,2}}, {{0x116e,1},{0x924,2}}, + {{0x6790,7},{0x6797,4}}, {{0x1a0d,5},{0xaef,3}}, {{0x2b,2},{0x2b,1}}, {{0xde9,1},{0xb85,2}}, + {{0x88de,9},{0x10dc,2}}, {{0xd892,3},{0x1a,2}}, {{0x1c8f,3},{0xb65,2}}, {{0x4266,5},{0x25c2,3}}, + {{0xc17,3},{0x1611,3}}, {{0x134c,5},{0xae0,1}}, {{0x17fc,5},{0x1960,7}}, {{0x265b,4},{0x1993d,3}}, + {{0xb8f,2},{0xbd4,2}}, {{0xf212,3},{0x1d8a,3}}, {{0x27901,5},{0x278dc,1}}, {{0x13e4,3},{0x1f,1}}, + {{0x422e,3},{0x443e,2}}, {{0x118b0,6},{0x1489,3}}, {{0x2d64,6},{0x2d6a,7}}, {{0xcd9,5},{0xae7,1}}, + {{0xd57,2},{0xc67,2}}, {{0xb7d,1},{0xcc0,3}}, {{0x583f,3},{0x2b,3}}, {{0xceb,3},{0x2c00,3}}, + {{0x2841e,3},{0x1ed58,1}}, {{0xbe4,1},{0x27b6,1}}, {{0x3af4,8},{0x3afc,4}}, {{0xdc28,5},{0x1489,3}}, + {{0x17bc,3},{0x27b6,1}}, {{0xaefa,4},{0x174e,3}}, {{0xc37,3},{0xae2,2}}, {{0x68ae,6},{0x6008,4}}, + {{0x10a78,6},{0x2971,3}}, {{0xcab,3},{0xc20,5}}, {{0x2b,2},{0x1045,3}}, {{0xbcb,3},{0x11ef,2}}, + {{0xfdd,2},{0x35fd,3}}, {{0x616b,7},{0x1916,5}}, {{0x4266,5},{0xfe5,2}}, {{0x10f3,1},{0xd5c,1}}, + {{0x8c4,4},{0x8c4,4}}, {{0xae5,1},{0x1150,2}}, {{0xb493,5},{0x11e6,6}}, {{0xc1c,2},{0xd1b,1}}, + {{0x12ac,5},{0xb82,2}}, {{0xcd9,3},{0x95c7,5}}, {{0xceb,4},{0xadf,2}}, {{0x1561,3},{0x2b,3}}, + {{0x969,2},{0x1b6f5,2}}, {{0x1ab2,4},{0x2de9,7}}, {{0x1b57,4},{0x253a,4}}, {{0xceb,3},{0xbd1,2}}, + {{0x2106,6},{0xae7,1}}, {{0x263f,3},{0x10dc,2}}, {{0xbeb,2},{0xce8,3}}, {{0x6f62,4},{0x2456b,2}}, + {{0xf63,5},{0x5aa3,5}}, {{0x181c,3},{0x27b6,1}}, {{0xe2fd,5},{0xe302,5}}, {{0x441c,3},{0xba7,3}}, + {{0x1e,1},{0x763c,3}}, {{0xbe8,3},{0x1a,1}}, {{0x1084,3},{0x46f8,3}}, {{0x9e9,2},{0x532,16}}, + {{0x1051,4},{0x1a10,2}}, {{0xd76,4},{0x173e,3}}, {{0xbe4,1},{0xbd3,3}}, {{0x1ed53,1},{0x22cf8,1}}, + {{0x264c,4},{0xb8b,2}}, {{0xbbf,2},{0x1a,2}}, {{0x3402,7},{0x88ce,4}}, {{0x1ab2,4},{0x13af,4}}, + {{0x19b3,5},{0xd90,2}}, {{0xb9c,2},{0xaf2,1}}, {{0xc30,2},{0xbbf,2}}, {{0xdf0,2},{0x1f,2}}, + {{0xae5,1},{0xe78,3}}, {{0x178c,3},{0xb49,2}}, {{0x25c5,5},{0xd57,3}}, {{0xc89,3},{0xc63,3}}, + {{0x5f8a,9},{0x10dc,2}}, {{0x1c,1},{0xbb5,1}}, {{0x12cb0,6},{0x2b,3}}, {{0x10f6,1},{0xbe0,1}}, + {{0x7c4,1},{0x27cea,1}}, {{0xcd9,3},{0xae9,2}}, {{0x15a70,2},{0xaec,2}}, {{0x90e2,4},{0xbc5,3}}, + {{0xfb1,2},{0x1d,1}}, {{0xae7,2},{0x1cef,3}}, {{0xa7d8,2},{0xbeb,1}}, {{0x1c1a,6},{0x6008,4}}, + {{0x159c,5},{0x1ed4,6}}, {{0x78b2,5},{0x10e4,6}}, {{0x1a,3},{0xd7f,3}}, {{0x3846,4},{0xbb15,3}}, + {{0x11b94,6},{0x10dc,2}}, {{0xedb,4},{0xd7f,3}}, {{0xb2d0,6},{0xadf,2}}, {{0x6d8e,9},{0x59fb,4}}, + {{0x6b6c,5},{0x4bbf,5}}, {{0x423c,3},{0xa7ed,4}}, {{0xb2c,2},{0x10dc,2}}, {{0xc25,3},{0x1393,3}}, + {{0xae7,2},{0xb55,2}}, {{0x244cb,2},{0x70b4,2}}, {{0x2b,1},{0xca7,2}}, {{0xbeb,1},{0x1498,3}}, + {{0xb7f,3},{0x1d,1}}, {{0x27b6,1},{0xb55,2}}, {{0xb7f,3},{0x2045,3}}, {{0xceb,3},{0xbc1,2}}, + {{0xc17,3},{0xb6e,2}}, {{0xd76,7},{0x1916,5}}, {{0xc55,2},{0x28,1}}, {{0xae2,1},{0x18ca,3}}, + {{0x6f21,5},{0x1a88,3}}, {{0xc25,9},{0x2d44,4}}, {{0x969,2},{0x6f6c,2}}, {{0x122c,4},{0x2b,2}}, + {{0x15c2a,5},{0xae7,1}}, {{0x3250,4},{0x1675,2}}, {{0x162c,10},{0xb52,5}}, {{0x16dc,10},{0x18eb,5}}, + {{0x3704,6},{0x11f2,3}}, {{0xcd9,3},{0x10dc,2}}, {{0x10c8,3},{0xf49e,4}}, {{0x6d81,3},{0xe6d,2}}, + {{0x441c,3},{0x711d,6}}, {{0xbe7,1},{0x10f3,1}}, {{0xb2c,2},{0x40b8,2}}, {{0x348e,7},{0x7297,3}}, + {{0xb63,2},{0xd17,3}}, {{0xc37,3},{0xff56,6}}, {{0x924,2},{0x116e,1}}, {{0x1084,3},{0x323c,2}}, + {{0x924,2},{0x116d,1}}, {{0xaf1,1},{0xb2c,4}}, {{0xf14,2},{0xc1c,2}}, {{0xaea,1},{0xb63,2}}, + {{0x26c6,1},{0x10ec,1}}, {{0x12f1,2},{0x1e,2}}, {{0x41be,3},{0xae5,1}}, {{0x1051,4},{0x187c,3}}, + {{0x1084,3},{0xdd3,3}}, {{0x441c,3},{0x1d8e,3}}, {{0x2920,4},{0x1c,1}}, {{0x127d8,6},{0xaf2,1}}, + {{0xb68,3},{0x2b,3}}, {{0xc4d,2},{0xb52,5}}, {{0x10010,6},{0x31e2,4}}, {{0x278a7,3},{0x278dc,1}}, + {{0x3234,3},{0xb8a,2}}, {{0xddc,4},{0x705a,4}}, {{0x10f1,2},{0x27b6,1}}, {{0x3704,6},{0x4569,5}}, + {{0xddd5,5},{0x4575,2}}, {{0xaea,1},{0xb8f,2}}, {{0x2b5e,9},{0x2939,3}}, {{0x24462,1},{0x28e7a,2}}, + {{0xb6c,3},{0x28,1}}, {{0x2445c,3},{0xb31,1}}, {{0xcde,3},{0xdd5,2}}, {{0x422e,3},{0xae6,3}}, + {{0x2dfe,5},{0xb54,2}}, {{0x2864c,1},{0x27cea,1}}, {{0xbbf,2},{0x2b,3}}, {{0x30ba,5},{0xadf,2}}, + {{0xc25,3},{0x4459,3}}, {{0xcfff,6},{0xb85,2}}, {{0xacae,4},{0x10008,4}}, {{0xaea,1},{0x1761,4}}, + {{0x7a6e,4},{0x114d,2}}, {{0x804,8},{0x804,8}}, {{0xb7f,3},{0xc4d,2}}, {{0x1f,1},{0x5ceb,4}}, + {{0x1084,3},{0xd15,5}}, {{0x41be,3},{0xfde,2}}, {{0xae6,3},{0xd7f,3}}, {{0xbb5,1},{0xc67,2}}, + {{0x3234,3},{0xa24a,3}}, {{0x3f9a,4},{0xb9d,3}}, {{0x29ecd,3},{0x924,1}}, {{0x5136,6},{0xe70,4}}, + {{0x30c8,5},{0xbc1,2}}, {{0xaea,1},{0x1065,3}}, {{0x6957,7},{0x10dc,2}}, {{0xcd2,6},{0xb2c,2}}, + {{0x31e2,4},{0x1b399,4}}, {{0x271e,3},{0x10ef,1}}, {{0x177c,3},{0x28da,1}}, {{0xd41,3},{0x14d5,3}}, + {{0xc39,2},{0x27,1}}, {{0xae5,1},{0xc67,2}}, {{0xe53,8},{0x1a,3}}, {{0x780,1},{0x25202,2}}, + {{0xfb1,2},{0xdc1,5}}, {{0x1cec,5},{0x28,1}}, {{0x178c,3},{0xdf5,3}}, {{0x25789,2},{0x70a6,2}}, + {{0x20b6,2},{0x9133,3}}, {{0xae5,1},{0xb2e,2}}, {{0x26c4,3},{0xab9c,1}}, {{0x162c,6},{0xdd0,3}}, + {{0x31d2,6},{0x25df,4}}, {{0x142e,1},{0x1089,3}}, {{0x10ea,3},{0xe78,3}}, {{0x1561,3},{0x28,1}}, + {{0xcd9,5},{0x1960,4}}, {{0x27,1},{0x363a,5}}, {{0x90e2,4},{0xaf2,1}}, {{0xd76,7},{0xb2f,1}}, + {{0x134c,5},{0x1cee,3}}, {{0x10ea,3},{0xc89,2}}, {{0xc37,3},{0x4882,3}}, {{0xe938,9},{0xd0d,2}}, + {{0x15d3e,6},{0xae7,1}}, {{0x3758,4},{0x1ae4,7}}, {{0xd5c,1},{0xd5c,1}}, {{0x10f1e,6},{0x10dc,2}}, + {{0x19e0,7},{0x7601,5}}, {{0x1b4f,3},{0x2b,3}}, {{0x3296,9},{0x18ca,3}}, {{0x10c8,3},{0x6dd7,3}}, + {{0x30,2},{0x10196,4}}, {{0xcb8,2},{0xd91,2}}, {{0xbb73,5},{0x132f,3}}, {{0xb48,2},{0xae0,1}}, + {{0x25789,2},{0x6f64,2}}, {{0x27cea,1},{0x28634,1}}, {{0x178c,3},{0xaf2,1}}, {{0xaea,1},{0x2b,2}}, + {{0x3678,5},{0x18d8,3}}, {{0xbe0,1},{0xb2f,1}}, {{0xbeb,1},{0x1a10,2}}, {{0x780,1},{0x2445e,1}}, + {{0x2769,8},{0xf05,7}}, {{0x2848,2},{0x10f7,1}}, {{0x734,1},{0x2445f,1}}, {{0x10fb,4},{0x1ad64,5}}, + {{0xb8f,2},{0xb54,2}}, {{0xaf1,1},{0xc57,3}}, {{0xaca2,3},{0x3643,5}}, {{0xadf,2},{0x760b,3}}, + {{0x423c,3},{0xb78,2}}, {{0x5442,5},{0xae6,2}}, {{0x2796,3},{0xb7d,1}}, {{0xcfd,5},{0x2318,4}}, + {{0xf96,7},{0x1c8f,3}}, {{0x9a9,4},{0x9a9,4}}, {{0x5a8e,6},{0x1aa6,3}}, {{0x30,32},{0x30,14}}, + {{0xc29,2},{0x1393,3}}, {{0x10fb,3},{0x10f0,1}}, {{0x1f,1},{0xb64,2}}, {{0x8a8e,6},{0xae7,1}}, + {{0xf63,5},{0xc67,3}}, {{0x1a10,2},{0x1bd61,4}}, {{0xb31,1},{0x27c99,2}}, {{0xbeb,1},{0x10f0,1}}, + {{0x257a,7},{0xc1c,2}}, {{0xb70,2},{0x28,1}}, {{0xbed,2},{0xc67,2}}, {{0xfdf,2},{0xfe1,4}}, + {{0xbe7,1},{0x18532,4}}, {{0xcb5,3},{0xae2,2}}, {{0xbb5,1},{0x7512,4}}, {{0x10f1,2},{0x10f3,1}}, + {{0x46f4,4},{0xc2ea,3}}, {{0xaf2,1},{0x1257,2}}, {{0xe64,5},{0x8879,5}}, {{0xb2c,2},{0x103a,3}}, + {{0xf63,12},{0xb2e,2}}, {{0x1cefd,5},{0xb78,2}}, {{0xa29a,5},{0x23d9,3}}, {{0x10024,5},{0x10029,5}}, + {{0x2ae0,5},{0x2af3,5}}, {{0x1a,2},{0x18ca,3}}, {{0x5c98,5},{0x1037,6}}, {{0x1b,1},{0xbb5,1}}, + {{0xf0e,5},{0x1701,3}}, {{0xcb8,2},{0x1687,5}}, {{0x25da,3},{0xc8a,2}}, {{0xaf0,2},{0x12ff,2}}, + {{0xeec,7},{0x8c45,4}}, {{0xb6c,3},{0xb52,5}}, {{0x18094,6},{0x2b,3}}, {{0x70c8,2},{0x70b4,2}}, + {{0x1878,1},{0xc1e,2}}, {{0x24a8,6},{0x1c43,4}}, {{0x423c,3},{0x1864,2}}, {{0x1084,3},{0x9813,5}}, + {{0xc4e,2},{0x2b,3}}, {{0x27b4,3},{0xc67,2}}, {{0x26c6,1},{0x27,1}}, {{0x39f8,5},{0xd256,4}}, + {{0x1a874,6},{0xc67,2}}, {{0x1084,3},{0x4f65,3}}, {{0x271e,3},{0xbc4,4}}, {{0x13e4,3},{0xb52,5}}, + {{0x10c8,3},{0xd5c,1}}, {{0x244cb,2},{0xfefe,2}}, {{0x667f,7},{0x8470,4}}, {{0xbed,2},{0xb9d,3}}, + {{0x278a1,3},{0x27897,1}}, {{0x3162,5},{0xb63,2}}, {{0xadf,2},{0x2195,3}}, {{0x10f7,1},{0xd54,1}}, + {{0x14bc,5},{0xcb8,2}}, {{0xd65,3},{0xb9d,3}}, {{0xbcb,3},{0x6695,3}}, {{0x77da,9},{0xaf2,1}}, + {{0x1040,5},{0x10c3,5}}, {{0x133c,9},{0xc20,5}}, {{0x10ca,1},{0x290f,3}}, {{0xdf0,2},{0xaf1,2}}, + {{0x7792,9},{0xae7,1}}, {{0x181c,3},{0x2748,2}}, {{0x10ef,1},{0x283e,2}}, {{0x1e45,3},{0x2b,2}}, + {{0x1ed53,1},{0x1b4e3,1}}, {{0xb85,2},{0xaec,2}}, {{0xb7d,1},{0x1d,1}}, {{0x10c8,3},{0xb47,2}}, + {{0x20bb,3},{0xc2e,2}}, {{0xc1c,2},{0xc8c,5}}, {{0x2445e,1},{0x27d8b,2}}, {{0x2445e,1},{0x2446f,2}}, + {{0x107ba,6},{0xeb2,1}}, {{0xddc,4},{0x164af,5}}, {{0xae0,1},{0x108b,3}}, {{0x26f1,4},{0x128d5,4}}, + {{0x6d8e,3},{0x1a,1}}, {{0x1095,3},{0xde9,4}}, {{0xb6c,4},{0xb70,2}}, {{0x5288,5},{0x2d5d,4}}, + {{0xb63,2},{0x2891,3}}, {{0x27,1},{0xc63,3}}, {{0x4450,7},{0xcb8,2}}, {{0x24b7,5},{0xc095,6}}, + {{0x271e,3},{0xb64,2}}, {{0x441c,3},{0xbb1,3}}, {{0x2920,4},{0x3ba5,4}}, {{0xb70,2},{0xfe1,4}}, + {{0x181c,3},{0x29,2}}, {{0xc13,4},{0x2288,4}}, {{0xb85,2},{0xb47,2}}, {{0xbe4,1},{0x10f3,1}}, + {{0x734,2},{0x2445f,1}}, {{0xae2,1},{0x28,1}}, {{0xddc,4},{0xa24a,3}}, {{0x3988,10},{0xb54,3}}, + {{0xc1c,2},{0x28,1}}, {{0x122c,6},{0x1264,8}}, {{0xa6c6,7},{0xb52,5}}, {{0xb79,2},{0xd1b,1}}, + {{0xd41,3},{0x1089,2}}, {{0xb8f,2},{0xd7f,3}}, {{0x397a,5},{0x18af8,4}}, {{0x30ba,5},{0xb2c,4}}, + {{0x27d24,3},{0x1ed53,1}}, {{0x3fc4,8},{0x2195,3}}, {{0xeb2,1},{0x1f,1}}, {{0x4a68,5},{0xb7d,2}}, + {{0x1e45,3},{0x101b,3}}, {{0xe64,4},{0x34a2,4}}, {{0xb2c,2},{0xc8e,3}}, {{0xaea,1},{0xc3a,3}}, + {{0xa7d1,2},{0x10f3,1}}, {{0xbd1,2},{0x1a,2}}, {{0x27f0,6},{0xbc4,4}}, {{0x62ca,9},{0xae7,1}}, + {{0x177c,3},{0x1865,2}}, {{0x2aa8,6},{0x10dc,2}}, {{0x9436,7},{0x1704,3}}, {{0x10f7,1},{0x1d5b0,5}}, + {{0x30,2},{0x1700,4}}, {{0x219c,4},{0xcf0,2}}, {{0x10ea,3},{0x1961,3}}, {{0x7702,5},{0x1362,3}}, + {{0x178c,3},{0xe6d,2}}, {{0xb7f,3},{0x2d,1}}, {{0x10c8,3},{0x179cf,2}}, {{0x1e45,3},{0xb85,2}}, + {{0xb82,2},{0x1e,1}}, {{0x9a9,1},{0x24467,2}}, {{0x202c,3},{0x2b,3}}, {{0x70c8,2},{0xfefe,2}}, + {{0xbaa2,8},{0xd0d,2}}, {{0x39ce,5},{0x5277,2}}, {{0x271e,3},{0xe78,3}}, {{0x4c15,5},{0x14a6,6}}, + {{0x28,1},{0x28,1}}, {{0xe64,5},{0xce1,4}}, {{0x102f,6},{0xe626,5}}, {{0xaf1,1},{0x1c,1}}, + {{0x10ca,1},{0xb74,2}}, {{0xc55,2},{0xb4e4,4}}, {{0xccd1,6},{0x1687,5}}, {{0x2ae0,6},{0x3787,4}}, + {{0x251ff,2},{0x25202,2}}, {{0xfef8,6},{0xfeee,2}}, {{0x2796,3},{0xcb8,3}}, {{0xb2f,1},{0x1f,1}}, + {{0x3db0,6},{0xb2c,4}}, {{0x10ea,3},{0x1cef,3}}, {{0x265b,8},{0xb7a,5}}, {{0xc37,3},{0xb2e,2}}, + {{0x10dc,2},{0xae7,1}}, {{0xceb,3},{0xb52,2}}, {{0xfc9,6},{0x3892,4}}, {{0xae6,2},{0x1c,1}}, + {{0xae5,1},{0x2b,1}}, {{0x8e12,6},{0x18ca,3}}, {{0x41da,3},{0xf5f4,2}}, {{0x10ef,1},{0xc67,2}}, + {{0xb8a,2},{0xc7b,4}}, {{0x92b6,5},{0xd17,3}}, {{0xd41,3},{0xaea,2}}, {{0x30,32},{0x30,12}}, + {{0xd65,3},{0xc89,2}}, {{0xd0f,6},{0xa0b4,6}}, {{0x1150,2},{0xae7,1}}, {{0x41da,3},{0x26d04,3}}, + {{0x20bb,3},{0xfdd,2}}, {{0x8c4,4},{0x30,10}}, {{0x2796,3},{0x2742,3}}, {{0x317e,6},{0x2b,3}}, + {{0xa7d,4},{0x24733,2}}, {{0xc25,3},{0x2b,3}}, {{0x10fb,3},{0x1065,3}}, {{0x710e,6},{0xc63,3}}, + {{0xa59a,6},{0x10dc,2}}, {{0x70b0,4},{0xff22,2}}, {{0xb7f,3},{0xae0,1}}, {{0xbeb,1},{0x10f6,1}}, + {{0xb6c,3},{0xc1e,2}}, {{0x27901,5},{0x116e,1}}, {{0x4fbd,4},{0xd7a,3}}, {{0xd65,3},{0xb47,2}}, + {{0xbbf,2},{0xaea,1}}, {{0xbb5,1},{0x28,1}}, {{0x924,2},{0x1173,2}}, {{0x6f74,4},{0x6f78,2}}, + {{0x2421,7},{0x1934,4}}, {{0xceb,3},{0x411c,4}}, {{0x22499,6},{0xae7,1}}, {{0x10fb,3},{0x283e,2}}, + {{0xae6,2},{0xb52,5}}, {{0x41da,3},{0x284e,3}}, {{0x143c,10},{0xb52,5}}, {{0xeb2,1},{0x2d,1}}, + {{0x13cac,6},{0xae7,1}}, {{0x5aa8,6},{0x5aae,4}}, {{0x1b6e1,2},{0x1b23d,2}}, {{0xbb5,1},{0xae0,1}}, + {{0xae2,1},{0x2b,3}}, {{0x1b6e1,2},{0x157f2,2}}, {{0xe64,5},{0xae7,1}}, {{0x12fe,1},{0xb2f,1}}, + {{0xcb8,2},{0x1489,3}}, {{0xaecc,3},{0x50c8,6}}, {{0xd54,1},{0x28da,1}}, {{0xb85,2},{0xc63,3}}, + {{0x19e0,7},{0x72da,4}}, {{0x6de9,5},{0x4d56,4}}, {{0x7162,4},{0xcd5,2}}, {{0x17ee,3},{0x1f,4}}, + {{0x2160,5},{0xaf1,2}}, {{0x27,1},{0x1055,3}}, {{0xd41,4},{0x1fe4,5}}, {{0xb55,2},{0xb8e,2}}, + {{0x7db6,8},{0xae7,1}}, {{0x6a8f,5},{0xb63,2}}, {{0x26c4,3},{0x27,1}}, {{0x3eba,8},{0xb52,5}}, + {{0xe011,5},{0xf47,4}}, {{0x5143,7},{0x12be,3}}, {{0x3f7e,7},{0x1499,3}}, {{0x6137,5},{0x2971,3}}, + {{0x2ae0,5},{0x1637e,4}}, {{0x5b1d,5},{0x12d23,5}}, {{0x5136,6},{0xb52,6}}, {{0x6b06,3},{0x1b,1}}, + {{0x29,2},{0x1a,2}}, {{0x6ac3,3},{0xc30,2}}, {{0x90a6,8},{0xaf2,1}}, {{0xf018,8},{0x10dc,2}}, + {{0x1279c,6},{0x2b,3}}, {{0xb7f,3},{0xb066,2}}, {{0xfed2,4},{0xfed2,4}}, {{0x3a22,4},{0xc52,3}}, + {{0x10dc,2},{0xb4b,2}}, {{0x20bb,3},{0x3c20,3}}, {{0x10ef,1},{0x10ec,1}}, {{0x318c,5},{0xb63,2}}, + {{0xc25,3},{0xb82,2}}, {{0x1afd,5},{0xb52,5}}, {{0x178c,3},{0xbc1,2}}, {{0x218d,5},{0x1d8a,3}}, + {{0x1040,6},{0x1a06,7}}, {{0x441c,3},{0xe9b,3}}, {{0x6f62,4},{0x6f66,2}}, {{0xd5c,2},{0x27,1}}, + {{0x261f,4},{0xcd65,4}}, {{0xd1b,1},{0xb55,2}}, {{0xc1c,2},{0xae6,2}}, {{0xbed,2},{0x2195,3}}, + {{0x2ab6,5},{0xce1,3}}, {{0x70c6,4},{0x70a6,2}}, {{0x19a4,11},{0xb2e,2}}, {{0x167c,6},{0x2b,1}}, + {{0x14ff0,4},{0x43e5,3}}, {{0x27,1},{0xaea,1}}, {{0xaea,3},{0x114d,2}}, {{0xd1a,2},{0xb52,6}}, + {{0xaea,1},{0xae4,2}}, {{0xc89,3},{0xb63,2}}, {{0x85de,4},{0xc3b9,5}}, {{0x85de,7},{0xb78,2}}, + {{0x11b94,6},{0x2b,3}}, {{0x278a7,3},{0x116d,1}}, {{0x14d5,3},{0x10dc,2}}, {{0x1bde,6},{0x108e,7}}, + {{0x4450,4},{0x1026e,6}}, {{0xeb2,1},{0x2b,2}}, {{0x10ef,1},{0x1878,1}}, {{0xb8f,2},{0x27,1}}, + {{0x47de,7},{0xa04b,3}}, {{0xcb5,3},{0xb2e,2}}, {{0xcc7,3},{0x2b54,8}}, {{0x20d9,4},{0xfb1,2}}, + {{0x3a84,8},{0xb52,5}}, {{0x278a7,3},{0x278a9,1}}, {{0xf0e,6},{0xaf1,1}}, {{0xc1c,2},{0x1152,3}}, + {{0x21be,4},{0x10dc,2}}, {{0xcd9,3},{0xcdf,3}}, {{0x318c,5},{0x17476,4}}, {{0x6a8f,5},{0xb68,4}}, + {{0x9a9,1},{0x734,1}}, {{0x1aa6,3},{0xc7b,4}}, {{0xd0f,4},{0x11f2,3}}, {{0x24a2d,2},{0x24461,1}}, + {{0xa58e,10},{0xae0,1}}, {{0xae6,3},{0xe72,3}}, {{0x177c,3},{0x1878,1}}, {{0x48ae,9},{0xae7,1}}, + {{0xd0f,4},{0xbe8,3}}, {{0x126b6,5},{0x6ab9,4}}, {{0xfc9,6},{0x5f28,7}}, {{0xc13,4},{0x28,1}}, + {{0x244f5,2},{0x1b205,2}}, {{0x27b6,1},{0xbeb,1}}, {{0x2d,1},{0xae7,1}}, {{0x100d,5},{0xce1,3}}, + {{0xc67,3},{0xb78,2}}, {{0x2b,1},{0xb52,2}}, {{0xceb,3},{0xc77,2}}, {{0xd41,3},{0x166af,6}}, + {{0xd5c,1},{0x1140,4}}, {{0x7db6,8},{0x10dc,2}}, {{0xd76,4},{0xc4d,2}}, {{0x6d8e,3},{0x2af4,4}}, + {{0x2b,2},{0xc8e,3}}, {{0xd7f,3},{0xd0d,2}}, {{0x5f8a,9},{0xb54,3}}, {{0x1040,5},{0x18e5,4}}, + {{0xb64,3},{0x10c4,4}}, {{0xc25,3},{0x40b6,3}}, {{0x244b9,2},{0x244af,2}}, {{0x24462,1},{0x432,1}}, + {{0x1084,3},{0x16f8,3}}, {{0x194b9,5},{0x2ec7,4}}, {{0xd11d,5},{0xb75,2}}, {{0xbe4,1},{0x1878,1}}, + {{0xbcb,3},{0xbd6,2}}, {{0x2160,5},{0x3fdc,4}}, {{0xae5,1},{0x9001,4}}, {{0x122c,4},{0x2c18,4}}, + {{0xaf1,1},{0x6dd7,3}}, {{0xbd6,4},{0xc34,3}}, {{0x1051,7},{0xb65,2}}, {{0x5915,5},{0x101b2,4}}, + {{0xaf2,1},{0x28,1}}, {{0x10a78,6},{0xb9d,3}}, {{0xcfd,5},{0x139f,3}}, {{0x278a1,3},{0x278af,1}}, + {{0x2a948,1},{0x1b4e3,1}}, {{0x14dc,7},{0xb52,5}}, {{0x10ea,3},{0xb2e,2}}, {{0x30,64},{0x30,48}}, + {{0x3678,6},{0xb52,2}}, {{0xdba,4},{0xd893,4}}, {{0x27cea,1},{0x9a9,1}}, {{0x5aaf,4},{0xb2f,1}}, + {{0xeb2,1},{0x2b,1}}, {{0xaeee,4},{0xcce,3}}, {{0x21e88,5},{0x1b0a,2}}, {{0x256b,5},{0xcb8,3}}, + {{0x1062,8},{0x24fb,7}}, {{0x43e3,1},{0x10f7,1}}, {{0x969,2},{0x806,2}}, {{0x1c,1},{0xdf0,2}}, + {{0xbe0,1},{0x10f7,1}}, {{0xb99,2},{0xf6a,3}}, {{0xda9,4},{0x1971,2}}, {{0x27,1},{0xe78,3}}, + {{0xe97a,6},{0xb65,2}}, {{0x94f6,7},{0x11b8,4}}, {{0x78d6,5},{0xae2,1}}, {{0x2796,3},{0x94a5,4}}, + {{0xd41,4},{0xd45,4}}, {{0x1d,1},{0xd1b,1}}, {{0x13bc,7},{0xd1a,7}}, {{0x177c,3},{0xcc0,3}}, + {{0x20bb,3},{0xb79,2}}, {{0x159c8,1},{0x159c9,6}}, {{0x1084,3},{0x2045,3}}, {{0xcc7,3},{0xb52,2}}, + {{0x2106,4},{0xed0,3}}, {{0x7702,5},{0xe367,4}}, {{0x1361,2},{0xc39,2}}, {{0x6103,5},{0xc7b0,4}}, + {{0xe77,3},{0xb65,2}}, {{0xd54,1},{0xc8a,2}}, {{0x4bfb,6},{0x11b8,4}}, {{0x5949,6},{0xb48,2}}, + {{0xb9c,2},{0xae0,1}}, {{0xab9a,3},{0x1a,1}}, {{0x9a9,1},{0x734,2}}, {{0x2445e,2},{0x28633,2}}, + {{0xf1f,5},{0xc3d,3}}, {{0xbde,3},{0x40b6,3}}, {{0x178c,3},{0xbc1,3}}, {{0xf52,4},{0x8c2a,6}}, + {{0xb2e,2},{0x8fee,4}}, {{0x1084,3},{0x1150,2}}, {{0x969,2},{0x6f66,2}}, {{0x26c6,1},{0xd5c,1}}, + {{0xbde,3},{0x1a,2}}, {{0x1f3a,3},{0xb78,2}}, {{0x18850,8},{0xae7,1}}, {{0x4a27,4},{0xba9b,4}}, + {{0xbd4,2},{0xb55,2}}, {{0xeec,5},{0x4ae5,5}}, {{0xb54,3},{0x1a,1}}, {{0x142c,3},{0xcbc,4}}, + {{0x181c,3},{0xc77,2}}, {{0x27cea,1},{0x22cf8,1}}, {{0x10fb,3},{0xe6d,2}}, {{0x1a0f,3},{0x2746,3}}, + {{0x15dc,12},{0xb2e,2}}, {{0xc55,2},{0xca6,2}}, {{0x6c08,4},{0x82ee,7}}, {{0x446a,5},{0x1f,1}}, + {{0xaf1,1},{0xb63,2}}, {{0xeca,4},{0x1704,3}}, {{0x10fb,3},{0x28,1}}, {{0x2445c,3},{0x2445e,1}}, + {{0x145e4,4},{0xaf2,1}}, {{0x13a2,2},{0x67c0,3}}, {{0x2b,1},{0xbb4,4}}, {{0xbe4,1},{0xb78,2}}, + {{0x178c,4},{0xca7,3}}, {{0xc25,3},{0x1704,3}}, {{0x4d33,7},{0x12d7,5}}, {{0x4d56,4},{0xae7,1}}, + {{0x1e45,6},{0xae7,1}}, {{0x2d,1},{0x2b,2}}, {{0xd57,2},{0x2b,2}}, {{0x17be,2},{0x228e,3}}, + {{0x41be,3},{0x139f,3}}, {{0xbd6,2},{0xb8f,2}}, {{0xceb,5},{0xae7,2}}, {{0xc25,5},{0x1ae4,7}}, + {{0x417a,2},{0x2b,1}}, {{0x8c4,4},{0x30,22}}, {{0x1878,1},{0xb70,2}}, {{0x90e2,4},{0xec2,2}}, + {{0x51b8,7},{0xb8f,2}}, {{0xf52,5},{0xb9d,3}}, {{0x2324,4},{0xb9d,3}}, {{0x10ef,1},{0xae7,1}}, + {{0xb7c,2},{0x1d,1}}, {{0x17be,2},{0xd8e,2}}, {{0xbeb,1},{0xb78,2}}, {{0x166c,4},{0xb48,2}}, + {{0x2045,3},{0x28,1}}, {{0x30,2},{0x287e7,2}}, {{0xcd9,3},{0xaf1,2}}, {{0xbeb,1},{0xc3d,3}}, + {{0xd1a,2},{0xb78,2}}, {{0x14b6,2},{0x2a91,4}}, {{0x3f9a,4},{0x10c4,4}}, {{0x114d,2},{0x114f,3}}, + {{0xf85,4},{0xdc00,3}}, {{0xacba,4},{0x9271,4}}, {{0x1b4e3,1},{0x19,1}}, {{0x6f62,4},{0x157a4,2}}, + {{0x6ac3,3},{0x14d5,3}}, {{0xb65,2},{0xae6,2}}, {{0xae7,1},{0x1e,1}}, {{0x24a2d,2},{0x24462,1}}, + {{0x11ef,2},{0x2211,3}}, {{0x6783,7},{0x2b,1}}, {{0x2d10,9},{0x10c3,5}}, {{0x2c76,4},{0x6008,4}}, + {{0xa7d,4},{0xfeee,2}}, {{0x251cb,1},{0x734,2}}, {{0x70b0,4},{0x6f8a,2}}, {{0x422e,3},{0x1257,2}}, + {{0xfe38,4},{0xaf2,1}}, {{0x178c,3},{0x74ba,3}}, {{0x2bb2,6},{0x3fab,2}}, {{0xbeb,1},{0x27,1}}, + {{0xd0f,4},{0x7e91,4}}, {{0x2b,1},{0x94a5,4}}, {{0xceb,3},{0x9844,6}}, {{0x5442,4},{0x13f13,5}}, + {{0xb7f,3},{0x67be,5}}, {{0x5560,10},{0x10dc,2}}, {{0xc77,2},{0xc8f,2}}, {{0x1efc1,5},{0xcb8,2}}, + {{0xaea,1},{0xae7,1}}, {{0xddc,4},{0x4ab0,3}}, {{0xaca2,3},{0x79d6,4}}, {{0x10ca,1},{0xb49,2}}, + {{0x10ed,2},{0xbeb,1}}, {{0x1b,1},{0xc63,3}}, {{0x1e45,3},{0xc1c,2}}, {{0x6067,7},{0x10b3,4}}, + {{0xbb5,1},{0x7681,3}}, {{0xcd9,3},{0x3203,7}}, {{0x2474d,2},{0x1cf1d,2}}, {{0x10ef,1},{0xb72,3}}, + {{0xdfe,5},{0x7bab,7}}, {{0xddc,4},{0xb64,2}}, {{0x8446,9},{0xae7,1}}, {{0xc25,9},{0xb65,2}}, + {{0x27b4,3},{0x2b,1}}, {{0x2d,1},{0x12ae,3}}, {{0x85de,5},{0xc63,3}}, {{0xcc7,3},{0x2de9,7}}, + {{0xc30,2},{0xc1c,2}}, {{0xb47,2},{0xbc5,3}}, {{0xcd9,3},{0x24ba,3}}, {{0xae6,3},{0x10dc,2}}, + {{0x9ad2,7},{0xc25a,4}}, {{0x263d,8},{0x18ca,3}}, {{0xadd,4},{0x13e3,4}}, {{0xbe4,1},{0xaf1,1}}, + {{0x27c9d,4},{0x780,1}}, {{0xc25,4},{0xbb5,1}}, {{0xcd5,2},{0xc63,3}}, {{0xfc8b,5},{0x6164,3}}, + {{0x1393,3},{0xb60f,4}}, {{0xb6c,3},{0x41eb,4}}, {{0xaf2,1},{0xaf1,1}}, {{0xb7d,1},{0xc67,2}}, + {{0x5ead,5},{0xbd4,2}}, {{0x1ab2,4},{0x28,1}}, {{0xb64,2},{0xb65,2}}, {{0x61c6,6},{0xc1c,2}}, + {{0x9b92,7},{0x2b,3}}, {{0x432,32},{0x432,16}}, {{0x17ee,3},{0x1611,3}}, {{0xb7d,1},{0x28,1}}, + {{0x27901,5},{0x116d,1}}, {{0x3234,3},{0x7a06,5}}, {{0xbe0,1},{0x10f6,1}}, {{0xdf4,4},{0x1058,4}}, + {{0xcfd,4},{0x1a,1}}, {{0x271e,3},{0xce2,3}}, {{0xaea,1},{0x40b8,2}}, {{0x261f,4},{0xaea,1}}, + {{0xeb2,1},{0x68bd,4}}, {{0x26c4,4},{0xc62,3}}, {{0x12ac,5},{0xae6,3}}, {{0xaeb,2},{0x1f,1}}, + {{0xb7d,1},{0x4246,4}}, {{0x1b,1},{0xde2,4}}, {{0x95fe,8},{0x90f7,3}}, {{0xbb5,2},{0xa24a,3}}, + {{0x1f,2},{0x11b2,4}}, {{0x16cc,4},{0x140a,2}}, {{0x145e6,2},{0x67c0,3}}, {{0x1a874,6},{0x4074,3}}, + {{0x2445f,1},{0x2864c,1}}, {{0x151c,4},{0xb9c,2}}, {{0x15d50,6},{0x2b,3}}, {{0xbe7,1},{0x67a6,4}}, + {{0xf8de,4},{0x1c25,4}}, {{0xb79,2},{0xca7,2}}, {{0x141c,5},{0xfdd,2}}, {{0x151c,6},{0x5f01,4}}, + {{0xae0,1},{0xb2c,2}}, {{0xdba,6},{0xd0d,2}}, {{0x969,2},{0x70b4,2}}, {{0x1d,1},{0xb4b,2}}, + {{0x177e,2},{0xd7a,3}}, {{0x1971,2},{0x16e2,2}}, {{0xb7f,3},{0xb65,2}}, {{0x17bc,3},{0xd0c,2}}, + {{0xbde,3},{0xb78,2}}, {{0xd76,5},{0x2b,2}}, {{0x3234,3},{0xc1c,2}}, {{0xcd9,4},{0xdf0,2}}, + {{0x7972,6},{0xb68,4}}, {{0xc39,2},{0x16f8,3}}, {{0xbeb,1},{0x1c1d9,4}}, {{0xd41,4},{0xb76,3}}, + {{0x178c,3},{0xb70,2}}, {{0x27b4,3},{0xd5c,1}}, {{0x422e,3},{0xf59,3}}, {{0xb2f,1},{0x28b1,3}}, + {{0x70ac,4},{0x70a8,4}}, {{0x2aa8,6},{0xb61a,5}}, {{0xceb,3},{0x2891,3}}, {{0xb7f,3},{0xba2c,4}}, + {{0xae7,1},{0xcab,3}}, {{0x441c,3},{0xb47,2}}, {{0x6631,5},{0xd1a,2}}, {{0x23136,4},{0xed0,3}}, + {{0x2c38,4},{0xaf1,2}}, {{0xdf0,2},{0xb65,2}}, {{0x2c76,4},{0xb8a,2}}, {{0xb8b,2},{0x10dc,2}}, + {{0x43e3,1},{0x10ca,1}}, {{0x6f62,4},{0x15798,2}}, {{0x1b,1},{0xb72,3}}, {{0x1fbc,7},{0xce1,3}}, + {{0x2322,6},{0x4569,5}}, {{0x133c,6},{0x67c0,3}}, {{0x112c,2},{0x112c,1}}, {{0xd41,3},{0x41b3,4}}, + {{0xddc,4},{0x1d8e,3}}, {{0xaea,1},{0xb47,2}}, {{0xc30,2},{0xb73,2}}, {{0x2b,2},{0xc62,3}}, + {{0x10ec,1},{0x10f3,1}}, {{0xaf1,1},{0xcb8,2}}, {{0x2b,1},{0xd7f,3}}, {{0xd7a,3},{0xb54,3}}, + {{0xcc7,3},{0x102f9,3}}, {{0x804,2},{0xfefe,2}}, {{0x10c8,3},{0xaec,2}}, {{0xb82,2},{0x2b,2}}, + {{0xdba,4},{0xfde,2}}, {{0x2c338,4},{0xff02,2}}, {{0x8a22,7},{0x2abe,5}}, {{0x3fee,5},{0x2b,3}}, + {{0xc30,2},{0x3062,4}}, {{0x5bc6,7},{0xb68,4}}, {{0xcd5,2},{0xca7,2}}, {{0x4fbd,4},{0x2b3e,4}}, + {{0xe6d,2},{0x159f,4}}, {{0x10fb,3},{0x10ca,1}}, {{0x278c5,5},{0x1b6ab,1}}, {{0xda9,4},{0xae0,2}}, + {{0xdba,4},{0xae7,2}}, {{0xa7d,4},{0x24673,2}}, {{0x85de,7},{0xc63,3}}, {{0xb44,4},{0xc89,2}}, + {{0x17b3a,5},{0x2ec7,4}}, {{0x131b0,5},{0x139f,3}}, {{0xb7f,3},{0xf8f,5}}, {{0x804,2},{0x1019c,2}}, + {{0x734,2},{0x251e8,4}}, {{0x27b4,3},{0x5277,2}}, {{0xcf3,3},{0xfe1,4}}, {{0x14292,8},{0xb65,2}}, + {{0x6f62,4},{0x6f6c,2}}, {{0x14fc,4},{0xaea,1}}, {{0x24a30,2},{0x2446f,2}}, {{0x3d32,9},{0x103a,3}}, + {{0x2598,8},{0xc8e,3}}, {{0x999a,9},{0x1a,1}}, {{0x27cea,1},{0x27cea,1}}, {{0xddc,4},{0x1c,1}}, + {{0x17fc,5},{0xae1,3}}, {{0x177c,3},{0xb4b,2}}, {{0x30,2},{0x432,8}}, {{0x181c,3},{0xb64,2}}, + {{0xd65,3},{0x284e,3}}, {{0x51c7,3},{0x9b41,5}}, {{0xb2f,1},{0xcb8,3}}, {{0x131b0,6},{0x2b,3}}, + {{0x14d48,6},{0x14ef1,3}}, {{0xb96e,5},{0x2a16,3}}, {{0xf212,3},{0xb65,2}}, {{0x30,2},{0x2878d,4}}, + {{0xddc,4},{0x2a95,5}}, {{0x41be,3},{0xc1e,2}}, {{0x7f5a,8},{0xd0d,2}}, {{0x5560,10},{0xae7,1}}, + {{0xae5,1},{0xaf1,1}}, {{0xae7,1},{0x2d44,4}}, {{0x3234,4},{0xbd1,2}}, {{0x10f0,1},{0xc67,3}}, + {{0x4c7d,7},{0x12be,3}}, {{0x1084,3},{0xb65,2}}, {{0x29da,3},{0x1f,1}}, {{0x1b,1},{0xe6d,2}}, + {{0x19b3,4},{0x290e,4}}, {{0x2c76,4},{0xc1e,2}}, {{0xbde,3},{0x202c,3}}, {{0xba5,4},{0x1d783,4}}, + {{0x31c4,8},{0x1408,4}}, {{0x1aa3,6},{0x1bdb,3}}, {{0x161c,10},{0xb52,6}}, {{0x423e,1},{0x11ef,3}}, + {{0x1480,2},{0x1862,3}}, {{0x286a6,2},{0xb31,1}}, {{0xb7f,3},{0x535b,5}}, {{0x27b4,3},{0xb47,2}}, + {{0x20bb,3},{0xbd6,2}}, {{0x2bea,7},{0x2b,3}}, {{0x10fb,3},{0xb72,3}}, {{0x122c,4},{0xc55,2}}, + {{0x142e,1},{0x11ef,3}}, {{0xceb,3},{0xc593,4}}, {{0x1221a,7},{0x10dc,2}}, {{0x3cc2,9},{0x10dc,2}}, + {{0xc37,3},{0x1489,3}}, {{0xf74,4},{0xae6,2}}, {{0x167c,5},{0x3594,3}}, {{0xae7,2},{0xd14,4}}, + {{0xf629,5},{0xae7,1}}, {{0x130c,7},{0xd57,2}}, {{0x804,2},{0xc601,2}}, {{0x1b,1},{0xe36,5}}, + {{0xaf1,1},{0xae2,2}}, {{0xd76,7},{0x1960,7}}, {{0xd0a4,5},{0xcc0,3}}, {{0xaf1,1},{0x1b4f,4}}, + {{0x223e3,6},{0xaf2,1}}, {{0xdba,6},{0x2b4c,4}}, {{0xbe0,1},{0xd54,1}}, {{0x10fa,1},{0xbeb,1}}, + {{0x10ec,1},{0x1878,1}}, {{0x1cbf,4},{0x1393,3}}, {{0x2bdc,5},{0x84f6,4}}, {{0x5ca5,5},{0x1719,3}}, + {{0x1dbe,5},{0x52c6,3}}, {{0x9a9,1},{0x251de,2}}, {{0x3234,3},{0x17a2f,6}}, {{0xc5ff,4},{0x28,1}}, + {{0xc25,3},{0xc67,2}}, {{0x85de,10},{0xae7,1}}, {{0xf28,3},{0x2b,2}}, {{0xae2,1},{0xce8,3}}, + {{0x31d2,9},{0x10c3,5}}, {{0x1480,2},{0x1a5c,3}}, {{0xde9,1},{0xc905,4}}, {{0x6f62,4},{0xf907,2}}, + {{0x256b,5},{0xbd3,3}}, {{0x1d82,7},{0x1d98,3}}, {{0x6b5f,4},{0xdd2,4}}, {{0xbb4,3},{0x28,1}}, + {{0x579c,8},{0x1c25,4}}, {{0x17ae,1},{0x10f7,1}}, {{0xcb5,3},{0x11f2,3}}, {{0xbd6,2},{0x1e,1}}, + {{0x1cec,8},{0x1dac,3}}, {{0x2796,3},{0x12fe,1}}, {{0xeec,7},{0x2a85,7}}, {{0x2b,1},{0xae5,1}}, + {{0xaea,1},{0x28,1}}, {{0x2b,1},{0xcb8,2}}, {{0x6ac3,3},{0x41f0,6}}, {{0x4459,3},{0x10cd6,4}}, + {{0xbd1,2},{0xb2c,2}}, {{0x142e,1},{0x28,1}}, {{0xc37,3},{0xbcc2,3}}, {{0x1b4b,3},{0xae7,1}}, + {{0x10ea,3},{0xdf0,2}}, {{0x10ed,2},{0x10f3,1}}, {{0xba7,3},{0x7b96,4}}, {{0x10dc,2},{0xaf2,1}}, + {{0x10f2,1},{0x10f3,1}}, {{0x1b,1},{0xd57,2}}, {{0x441c,3},{0x1308,3}}, {{0xcf0,2},{0xb54,4}}, + {{0x16dc,5},{0xe44,3}}, {{0xf96,4},{0xadf,2}}, {{0xb71,2},{0x2d,1}}, {{0x4c15,5},{0x4569,5}}, + {{0x27,1},{0x2195,3}}, {{0x2e44,5},{0x11509,5}}, {{0x9ad2,7},{0x22e3,3}}, {{0x14dc,5},{0xeb5,4}}, + {{0xba5,4},{0xc29,2}}, {{0x135c,5},{0xb2c,2}}, {{0x9b0e,8},{0xc63,3}}, {{0xce26,7},{0x1254,3}}, + {{0xb7f,3},{0xc77,2}}, {{0x1095,3},{0x3626,4}}, {{0x1c65,6},{0xe08,7}}, {{0x54aa,7},{0xb7d,2}}, + {{0x20bb,3},{0xe9b,3}}, {{0x2b,1},{0x84f6,4}}, {{0x6735,4},{0xfde,4}}, {{0x10fb,3},{0x1878,1}}, + {{0x10ea,3},{0xb8f,3}}, {{0x24461,1},{0x24461,1}}, {{0x2445e,1},{0x2a948,1}}, {{0x142c,5},{0x1431,3}}, + {{0x10ea,3},{0xb52,2}}, {{0x26c4,4},{0xb54,3}}, {{0xb6c,3},{0xc67,2}}, {{0x3234,3},{0xa4c9,3}}, + {{0x27c97,3},{0x734,2}}, {{0x10ec,1},{0x10f6,1}}, {{0x22b5e,5},{0x1b,1}}, {{0xe6d,2},{0xf60,3}}, + {{0xcfd,6},{0x1d5a,3}}, {{0xddc,4},{0x128d5,4}}, {{0xbe7,1},{0x1843f,4}}, {{0x27b4,3},{0x1af8,5}}, + {{0xea2a,5},{0x3a3b,3}}, {{0xf5e,3},{0xd7f,3}}, {{0x16dc,5},{0xb8f,2}}, {{0x10fb,4},{0x7e91,4}}, + {{0x178c,5},{0x16f1,4}}, {{0xbfd5,8},{0xc62,3}}, {{0x4fbd,4},{0x1254,3}}, {{0x4338,8},{0x25c2,3}}, + {{0x28e2,4},{0xb78,2}}, {{0x6f62,4},{0x70ce,2}}, {{0xae6,2},{0x2202,3}}, {{0xd41,3},{0xba2c,4}}, + {{0x1c,1},{0xaf2,1}}, {{0x1175c,7},{0x2939,3}}, {{0x600c,8},{0xb63,2}}, {{0xe3b8,6},{0xcc3,4}}, + {{0x3782,9},{0xb9d,3}}, {{0xeb2,1},{0xb78,2}}, {{0x3e90,5},{0xd14,4}}, {{0x7c4,8},{0x7c4,2}}, + {{0xb7f,3},{0x28,1}}, {{0x2c92,6},{0x3bf9,5}}, {{0xf52,4},{0x5581,6}}, {{0xbe4,1},{0x1a,1}}, + {{0xb2c,2},{0x41ba,4}}, {{0xb70,2},{0xb2f,1}}, {{0x43e3,1},{0x43e3,1}}, {{0x1a732,3},{0x30f5,4}}, + {{0xc135,8},{0xb63,2}}, {{0x28,1},{0x591e,4}}, {{0x40c0,4},{0x19e4,3}}, {{0xcc2c,5},{0xc34,2}}, + {{0xae0,1},{0xaec,2}}, {{0x271e,3},{0x27b6,1}}, {{0xaea,1},{0xb63,3}}, {{0x16cc,4},{0x4de3,3}}, + {{0x423c,3},{0xb65,2}}, {{0x30,2},{0x2b,3}}, {{0xc13,4},{0x72fe,5}}, {{0xbb5,1},{0x4f65,3}}, + {{0x6f74,4},{0x159cd,2}}, {{0x70c8,2},{0x70ce,2}}, {{0xc67,2},{0x2b,1}}, {{0xcfd,5},{0x64d7,7}}, + {{0x10ca,1},{0xbeb,1}}, {{0x5102,5},{0x10283,4}}, {{0xcfd,5},{0x1700,4}}, {{0x1ac2e,6},{0x12e3,3}}, + {{0x969,2},{0x24733,2}}, {{0xb2f,1},{0xfdd,2}}, {{0xd6be,7},{0xcc0,3}}, {{0x1275,4},{0xbc5,3}}, + {{0xdd3,3},{0x5277,2}}, {{0x298a,2},{0xb2e,2}}, {{0x1b6e1,2},{0x24673,2}}, {{0xb63,2},{0x28,1}}, + {{0xb70,2},{0xc34,3}}, {{0xaea,1},{0xb68,4}}, {{0x70b0,4},{0x70b4,2}}, {{0x5949,4},{0x1140,3}}, + {{0x27901,5},{0x278a9,1}}, {{0x178c,3},{0xb2e,2}}, {{0xb64,2},{0xc8a,2}}, {{0xe6d,2},{0x2b,3}}, + {{0x1254,3},{0x1257,3}}, {{0xddc,4},{0xbb4,4}}, {{0x28,2},{0xb78,2}}, {{0x1b4e3,1},{0x1b4e4,1}}, + {{0xf14,2},{0x1e6c,6}}, {{0xf96,5},{0xb7d,1}}, {{0x1084,3},{0x2891,3}}, {{0x278a7,3},{0x27897,1}}, + {{0xde9,1},{0x2b,2}}, {{0xca3,5},{0x3549,5}}, {{0xceb,3},{0xcb8,2}}, {{0xd7f,3},{0xb2c,2}}, + {{0xf63,7},{0x1f,1}}, {{0x36be,5},{0x25da,3}}, {{0x280e,6},{0x4074,3}}, {{0xf96,7},{0xc78,3}}, + {{0x14bc,7},{0xc8e,3}}, {{0x17bc,3},{0x24430,2}}, {{0x4186,4},{0x704e,4}}, {{0x5734,7},{0x1f13,4}}, + {{0x4dcf,9},{0xae7,1}}, {{0x1084,3},{0x675f,6}}, {{0xaca2,3},{0x2dcb,4}}, {{0xd54,1},{0x51af,5}}, + {{0x20bb,3},{0x14d5,3}}, {{0x5136,6},{0xff7,5}}, {{0x2a91,4},{0x10dc,2}}, {{0x3782,5},{0xbb56,6}}, + {{0xcb5,3},{0x1304,4}}, {{0xf85,4},{0xaec,2}}, {{0xf0e,5},{0xd282,6}}, {{0x17be,2},{0xd17,3}}, + {{0x5442,4},{0x19533,4}}, {{0x10fa,1},{0x25428,3}}, {{0x3694,4},{0xb52,2}}, {{0xf52,5},{0x4ae5,5}}, + {{0xceb,3},{0x66d0,4}}, {{0x511c,6},{0x2b,2}}, {{0x1e,1},{0x8c46,4}}, {{0xbde,3},{0xb47,2}}, + {{0x1084,3},{0xb79,2}}, {{0x3694,5},{0xb85,2}}, {{0x26f1,4},{0xb52,2}}, {{0x17bc,4},{0x48e7,7}}, + {{0xf52,4},{0xd5e,7}}, {{0x127ce,6},{0x10dc,2}}, {{0x122c,5},{0xcc9,3}}, {{0x20bb,3},{0x3cba,3}}, + {{0xb7f,3},{0x9001,4}}, {{0x2445c,3},{0x1b4e4,1}}, {{0xbc18,5},{0x2b,3}}, {{0x94ba,7},{0x33d3,5}}, + {{0x1b4f,3},{0xb65,2}}, {{0x1b,1},{0x1458c,4}}, {{0x10f6,1},{0x1878,1}}, {{0x181c,4},{0x1915,6}}, + {{0x11f2,3},{0x1a,1}}, {{0x8c4,4},{0x30,12}}, {{0xc37,3},{0x1d8a,3}}, {{0x4fbd,4},{0x1cc21,4}}, + {{0xfb1,2},{0x1a,2}}, {{0x1b6e1,2},{0x159cb,2}}, {{0xae0,1},{0x1c,1}}, {{0xcd9,3},{0xb79,2}}, + {{0x62ca,10},{0x10dc,2}}, {{0x12f1,2},{0xb48,2}}, {{0x181c,3},{0x3cba,3}}, {{0xc21,4},{0x1c,1}}, + {{0xab9c,1},{0xd5c,1}}, {{0xd54,2},{0x889f,3}}, {{0xee1,3},{0xb54,4}}, {{0x16dc,5},{0xcbc,4}}, + {{0xae7,2},{0x1d8e,3}}, {{0x219c,4},{0xc55,2}}, {{0x9e37,4},{0x2b,3}}, {{0xbddb,8},{0xae7,1}}, + {{0xb64,2},{0xb2e,2}}, {{0x180c,4},{0x1055,3}}, {{0xb6c,4},{0xb70,3}}, {{0x2151,5},{0x14d5,3}}, + {{0x1c,1},{0x443d,3}}, {{0xb64,2},{0xaf1,1}}, {{0xb78,2},{0xb2c,2}}, {{0x1279c,6},{0xae7,1}}, + {{0x30,2},{0x432,12}}, {{0x53a6,7},{0x11f2,3}}, {{0xaea,1},{0x10e1,3}}, {{0x10f2,1},{0x1a,1}}, + {{0xbc65,8},{0xb8f,3}}, {{0xcd9,4},{0xbb4,2}}, {{0xb6c,3},{0x1089,2}}, {{0x70b0,4},{0x1016a,2}}, + {{0xf59,3},{0xae7,1}}, {{0xeb3d,7},{0x7297,3}}, {{0x1ed58,1},{0x432,1}}, {{0x670e,5},{0xb78,3}}, + {{0xd692,6},{0xcab,3}}, {{0xf8cf,2},{0x428d,3}}, {{0x1d0d5,6},{0xd0d,2}}, {{0x177c,3},{0xb79,2}}, + {{0x281f,3},{0xb63,2}}, {{0x319a,5},{0xb65,2}}, {{0xc67,3},{0x1d,1}}, {{0x68bb,7},{0x68c2,4}}, + {{0x10f2,1},{0x27b6,1}}, {{0x132f0,6},{0x88ce,4}}, {{0xcb8,2},{0x40b8,2}}, {{0x24462,1},{0x27e2b,2}}, + {{0xb28e,5},{0x11ef,2}}, {{0x10fb,3},{0xd54,1}}, {{0x102f,6},{0x3c20,3}}, {{0xb7d,1},{0x2b,1}}, + {{0x27901,5},{0x116c,1}}, {{0x17ce,2},{0x2195,3}}, {{0x10ca,1},{0x10f7,1}}, {{0xab9a,3},{0xb63,3}}, + {{0x181c,3},{0x10f7,1}}, {{0x92b6,5},{0x140a,2}}, {{0x1b,1},{0xb67,2}}, {{0x410c,4},{0xaf1,1}}, + {{0x3678,5},{0xbd4,2}}, {{0x28,2},{0xae7,1}}, {{0xbed,2},{0x1a,1}}, {{0x532,34},{0x30,22}}, + {{0xc67,2},{0xb65,2}}, {{0x20b1f,6},{0x9a9,1}}, {{0xc70,4},{0xf69e,4}}, {{0x1095,3},{0xb264,4}}, + {{0xd54,1},{0x2748,2}}, {{0x780,1},{0x1b4e3,1}}, {{0x10f2,1},{0xd5c,1}}, {{0x5476,4},{0x2b,2}}, + {{0x7756,8},{0xce8,3}}, {{0xbed,2},{0xb7d,2}}, {{0xe0f,11},{0x10dc,2}}, {{0x2c2d,3},{0x1ad2,5}}, + {{0xf59,3},{0xc63,3}}, {{0x6d8e,3},{0x8560,6}}, {{0xc8f,2},{0x27,1}}, {{0xc25,4},{0x103b,5}}, + {{0x16ac9,5},{0xae7,1}}, {{0x1dcf,3},{0x4471,3}}, {{0x3dcc,6},{0x1972,2}}, {{0xcc00,5},{0xc52,3}}, + {{0xceb,4},{0xf6a,3}}, {{0x178c,3},{0xdf0,2}}, {{0x1afd,5},{0xdfab,3}}, {{0x278c7,3},{0x116e,1}}, + {{0x969,2},{0x70a6,2}}, {{0x278c7,3},{0x278a9,1}}, {{0xbe7,1},{0xb2f,1}}, {{0xb31,1},{0x2a9a8,2}}, + {{0x10c8,3},{0x14b6,2}}, {{0x2045,3},{0xb78,2}}, {{0x1084,3},{0x1ad2,5}}, {{0xae7,1},{0xb65,2}}, + {{0xbcbd,8},{0xae7,1}}, {{0x2ae0,5},{0xe4c5,3}}, {{0x178c,3},{0x10f21,6}}, {{0x134c,5},{0xfb2,2}}, + {{0xb64,2},{0xce8,3}}, {{0x30c8,5},{0x1b22,3}}, {{0x14dc,7},{0xce8,3}}, {{0xd0f,6},{0x4031,3}}, + {{0x1a67,7},{0xf14,3}}, {{0x21,2},{0x1489,3}}, {{0x3a39,3},{0xae7,1}}, {{0x41da,3},{0xbeb,1}}, + {{0x7222,5},{0xae9,2}}, {{0x14fc,5},{0x11b6,5}}, {{0x24462,1},{0x1b6cb,1}}, {{0xb8b,2},{0x583f,3}}, + {{0x1a3a,6},{0x2dc3,3}}, {{0x14d5,3},{0x1d,1}}, {{0x181c,3},{0x10ca,1}}, {{0x10ec,1},{0xcd5,2}}, + {{0x2445e,2},{0x2445f,1}}, {{0xb75,2},{0x1972,3}}, {{0x6d8e,3},{0x4351,2}}, {{0x3234,3},{0x139e,2}}, + {{0x28,1},{0xca7,3}}, {{0xeb95,5},{0x1c25,4}}, {{0xcc0,3},{0xae7,1}}, {{0xb8f,2},{0x25c2,3}}, + {{0x8a8e,6},{0xb78,2}}, {{0x4a68,5},{0xd57,2}}, {{0x948,8},{0x948,8}}, {{0x22cf8,1},{0x27d8b,2}}, + {{0x160c,8},{0x1614,7}}, {{0x20bb,6},{0x1d11,5}}, {{0xbe4,1},{0x10f0,1}}, {{0xce2,3},{0x10cd6,4}}, + {{0xdac,2},{0xaea,1}}, {{0xed0,3},{0x1a10,2}}, {{0x374a,6},{0x80be,4}}, {{0xc30,3},{0xb8f,2}}, + {{0x10f3,1},{0x10ef,1}}, {{0xe011,5},{0xc1c,2}}, {{0xb44,4},{0x887b,3}}, {{0xaea,1},{0x2a16,3}}, + {{0xb7f,3},{0xb47,2}}, {{0xd91,3},{0xb065,3}}, {{0x9c9,4},{0x9c9,4}}, {{0x10ea,3},{0x4074,3}}, + {{0xb2f,1},{0x1b,1}}, {{0xae7,1},{0x28,1}}, {{0xbd8,2},{0xb76,3}}, {{0x1084,3},{0x67a0,5}}, + {{0xae0,1},{0xcb8,2}}, {{0xcd5,2},{0x2b,1}}, {{0xaf2,1},{0x1a,1}}, {{0x229b,9},{0x2b,3}}, + {{0x5b51,8},{0xdfb,3}}, {{0x6f62,4},{0x1b6f5,2}}, {{0xcd9,4},{0xfb1,2}}, {{0xae6,3},{0xb9d,3}}, + {{0xae7,1},{0xaeb,2}}, {{0x103a,3},{0xbd8,2}}, {{0x10ea,3},{0x20,2}}, {{0x14ed8,7},{0xb9b,3}}, + {{0x28f6,2},{0xaf2,1}}, {{0xa7da,3},{0xc77,2}}, {{0x1daf,5},{0xc39,2}}, {{0x6d81,3},{0xd0b,3}}, + {{0xc89,3},{0xe72,3}}, {{0x142c,3},{0x5479,6}}, {{0x36be,5},{0x220f,5}}, {{0x10ea,3},{0xaec,2}}, + {{0x107ba,6},{0x40b8,2}}, {{0xcce,3},{0x1a,2}}, {{0xba5,4},{0xb77,3}}, {{0x1aa3,6},{0x10dc,2}}, + {{0x29f18,3},{0x116d,1}}, {{0x1095,3},{0x1e,1}}, {{0x10c8,3},{0x290f,3}}, {{0xc1c,2},{0xe72,3}}, + {{0xae6,3},{0xb63,2}}, {{0xe6d,2},{0xd91,3}}, {{0xae9,2},{0xaf2,1}}, {{0x41ef,2},{0xde2,4}}, + {{0x2237,3},{0x1f,2}}, {{0xf52,4},{0x18d8,4}}, {{0x709c,2},{0x1b23d,2}}, {{0xc1c,2},{0xb7a,5}}, + {{0xd54,1},{0xbc6,2}}, {{0x1031e,6},{0x2195,3}}, {{0xb47,2},{0xb65,2}}, {{0xbb4,2},{0xc30,7}}, + {{0x27b6,1},{0x10f7,1}}, {{0xd0f,4},{0x1513,5}}, {{0xd54,1},{0xb64,2}}, {{0x10c8,3},{0xdf0,2}}, + {{0x178c,3},{0xd5c,1}}, {{0x3678,5},{0x18ca,3}}, {{0xb44,3},{0xb71,2}}, {{0x5401,4},{0x139f,3}}, + {{0x6c63,4},{0x384a,3}}, {{0x374a,6},{0x1c43,4}}, {{0xc30,2},{0xb78,2}}, {{0x29af,2},{0xc29,2}}, + {{0x382a,7},{0xc9e,5}}, {{0x2445c,3},{0x2445f,1}}, {{0x159c,4},{0x4575,2}}, {{0x1a,2},{0x28,1}}, + {{0xb4b,2},{0x1c7b,4}}, {{0x2c76,4},{0x1d,1}}, {{0xbe7,1},{0x10ef,1}}, {{0xd41,3},{0xdd1,2}}, + {{0xc30,2},{0xc62,3}}, {{0x39ce,5},{0x134e1,5}}, {{0xf8de,4},{0x1c25,3}}, {{0x27b6,1},{0xae6,2}}, + {{0x6d8e,3},{0x12d5d,7}}, {{0xcb5,3},{0xb8f,2}}, {{0xb6c,4},{0x127a9,5}}, {{0x28,2},{0x2b,3}}, + {{0x30,2},{0x5396,3}}, {{0x2862e,2},{0x27c9b,2}}, {{0xe64,5},{0x1ed3,3}}, {{0x27901,5},{0x278af,1}}, + {{0x16ac,5},{0x1d,1}}, {{0x70a0,4},{0xfef4,4}}, {{0x278c7,3},{0x278af,1}}, {{0xae7,1},{0xbe85,5}}, + {{0x3f9a,4},{0xc9f,4}}, {{0x145e4,4},{0x6dd7,3}}, {{0x278c7,3},{0x116d,1}}, {{0x5c62,7},{0x11b8,4}}, + {{0x18e6,5},{0x18eb,5}}, {{0xaeca,5},{0x50c8,6}}, {{0xb5c7,7},{0x459e,4}}, {{0xbe7,1},{0x10ca,1}}, + {{0x244f5,2},{0x159cb,2}}, {{0xbe7,1},{0x10f6,1}}, {{0x7140,3},{0xdf0,2}}, {{0x1c,1},{0x9133,3}}, + {{0x24b7,5},{0xb55,2}}, {{0xb2e,2},{0x25c2,3}}, {{0xe6d,2},{0xeb3,3}}, {{0x1561,3},{0xb71,2}}, + {{0x20bb,3},{0xbb1,3}}, {{0x2b88,9},{0xb9d,3}}, {{0x6107,3},{0xce8,3}}, {{0x3a22,4},{0xc52,2}}, + {{0xd0f,4},{0x1372,4}}, {{0x4178,4},{0xc30,2}}, {{0xe0f,11},{0xb52,5}}, {{0x35ec,6},{0x2182,5}}, + {{0x430,4},{0x24,1}}, {{0x16fc,4},{0xb82,3}}, {{0x2789b,3},{0x924,2}}, {{0x10ec,1},{0x10ca,1}}, + {{0xadf,2},{0xbb5,1}}, {{0x4034,7},{0x7297,3}}, {{0x1058,4},{0xb52,6}}, {{0xb31,1},{0x251d8,2}}, + {{0x13cac,6},{0x2b,3}}, {{0xb2f,1},{0x3245,4}}, {{0x10ec,1},{0x5277,2}}, {{0xb64,2},{0xc3a,3}}, + {{0xc25,3},{0x6dd7,3}}, {{0xf8de,4},{0x12797,4}}, {{0x1409,2},{0xd0b,3}}, {{0x15833,5},{0x26fb,4}}, + {{0x159c,4},{0x2d,1}}, {{0xf77e,5},{0xb75,2}}, {{0x397a,5},{0x10504,4}}, {{0x10f7,1},{0xbd8,2}}, + {{0x265b,4},{0xa014,3}}, {{0x10ca,1},{0xb98,2}}, {{0x6846,8},{0xc7b,4}}, {{0xb7f,3},{0x21b2e,4}}, + {{0x16cc,6},{0x25da,5}}, {{0x70dc,4},{0x6f66,2}}, {{0xacde,7},{0xb52,5}}, {{0x12332,5},{0x38eb,3}}, + {{0xb44,3},{0xfb1,2}}, {{0x30,2},{0x2aacb,2}}, {{0x1f,1},{0x2b,1}}, {{0xbeb,1},{0x1f,2}}, + {{0x10ea,3},{0xfb1,2}}, {{0x31d2,9},{0xc7b,4}}, {{0xb6c,3},{0xb2c,2}}, {{0x1c25,3},{0x2b,3}}, + {{0x1ad57,6},{0x48a4,3}}, {{0xb49e,4},{0x168df,4}}, {{0xb4b,2},{0xb65,2}}, {{0x1c,1},{0x1fb2,8}}, + {{0xd41,3},{0xb8b,2}}, {{0x281d,5},{0x8099,4}}, {{0x5af9,3},{0xb54,3}}, {{0x28871,3},{0x28633,2}}, + {{0x10ca,2},{0x12fe,5}}, {{0x43e3,1},{0x1d,1}}, {{0x294ca,4},{0xae7,1}}, {{0x600c,8},{0x10dc,2}}, + {{0x15b52,2},{0xfefe,2}}, {{0x1c65,6},{0x8e92,4}}, {{0x24b7,5},{0x8099,4}}, {{0x1a1c,10},{0x103a,3}}, + {{0x1dfa,10},{0x1489,3}}, {{0x3e90,5},{0xec6b,5}}, {{0xeec,5},{0x3343,5}}, {{0xbd6,2},{0x28,1}}, + {{0xaea,1},{0xbc1,2}}, {{0x9166,6},{0xae7,1}}, {{0x2b,2},{0xae7,2}}, {{0x2bfc,2},{0x10dc,2}}, + {{0x1b25b,4},{0x1b,1}}, {{0x750e,4},{0x2c00,3}}, {{0x3704,6},{0x315d,4}}, {{0x2445f,1},{0xb31,1}}, + {{0xa7da,3},{0xbd6,2}}, {{0x432,4},{0x432,3}}, {{0x46f4,4},{0x21,1}}, {{0xc37,3},{0x1934,4}}, + {{0xb2c5,6},{0xae7,1}}, {{0xae6,2},{0x1099,3}}, {{0xfdf,2},{0x1a,1}}, {{0x27b4,3},{0xb7c,2}}, + {{0xdf0,2},{0x1c8f,3}}, {{0xc1e,2},{0xb63,2}}, {{0x1e,1},{0x28,1}}, {{0xeb1,2},{0x2b,3}}, + {{0xb2c,2},{0x11b8,4}}, {{0x1e9f7,5},{0xaf2,1}}, {{0xbbf,2},{0x28,1}}, {{0xeec,5},{0xb9d,3}}, + {{0x264c,4},{0xbb5,1}}, {{0x734,2},{0x25202,2}}, {{0xb44,3},{0xde2,4}}, {{0x3996,5},{0xbd4,2}}, + {{0x177c,3},{0xf6a,3}}, {{0x9b62,6},{0x2638,4}}, {{0xb493,5},{0xb2c,4}}, {{0xd41,3},{0x2b,2}}, + {{0x10ef,1},{0x1d,1}}, {{0xb64,3},{0xb82,3}}, {{0x30,2},{0xc77,4}}, {{0x6b06,3},{0xb9c,2}}, + {{0x1aaed,1},{0x1aaed,1}}, {{0xd41,3},{0x1342,6}}, {{0x4106,4},{0x1fe4,5}}, {{0xb2c,2},{0x25c2,3}}, + {{0x7c4,6},{0x7c4,1}}, {{0x10ef,1},{0x1761,4}}, {{0x29ecd,3},{0x116e,1}}, {{0xf52,5},{0x2282,6}}, + {{0x142e,1},{0x323c,2}}, {{0xcfd,5},{0x1c,1}}, {{0xc12a,6},{0x40bb,5}}, {{0x6cbe,4},{0x9ff5,4}}, + {{0x4d33,7},{0x1468,4}}, {{0x8c4,4},{0xfed2,2}}, {{0x4f55,10},{0xae7,1}}, {{0x153c,6},{0x9844,6}}, + {{0xd65,3},{0xb8f,3}}, {{0x13b8a,7},{0x2b,3}}, {{0xb6c,3},{0x288f,5}}, {{0x10ef,1},{0xaeb,2}}, + {{0xf8de,4},{0x40b6,3}}, {{0xb8a,2},{0x1099,3}}, {{0x14cc,4},{0xd17,3}}, {{0x27,1},{0x174e,3}}, + {{0x41da,3},{0x28,1}}, {{0x20bb,3},{0xd7c1,5}}, {{0x6b04,5},{0x16f0,4}}, {{0x1b6dd,2},{0x70a6,2}}, + {{0x10f3,1},{0xbeb,1}}, {{0xbed,2},{0x1a,3}}, {{0x116c,1},{0x1173,2}}, {{0x2445f,1},{0x1ed53,1}}, + {{0x10f6,1},{0x152c4,2}}, {{0x19b3,4},{0x2b,2}}, {{0x3f62,5},{0xb48,2}}, {{0x10ea,3},{0xd54,1}}, + {{0x397a,6},{0x9988,3}}, {{0x10f2,1},{0xb72,3}}, {{0xf49b,7},{0x1f,1}}, {{0xbde,3},{0x5277,2}}, + {{0xb6c,3},{0xb72,2}}, {{0x278af,1},{0x924,3}}, {{0x26c4,3},{0x1a96,4}}, {{0x244f5,2},{0x244e7,2}}, + {{0xae0,1},{0x1f,1}}, {{0xaf2,1},{0xb75,3}}, {{0x20bb,3},{0x3336,7}}, {{0x43e3,1},{0xbe0,1}}, + {{0x1b4e3,1},{0x24461,1}}, {{0x24a2d,2},{0x24a30,2}}, {{0x142c,3},{0x4e98,3}}, {{0xc65,5},{0x2b,3}}, + {{0x1cbf,5},{0x1f,1}}, {{0x19d7a,5},{0xb141,3}}, {{0x18898,5},{0x35fd,3}}, {{0x8686,5},{0x9215,5}}, + {{0xc89,2},{0xb48,2}}, {{0x780,1},{0x734,2}}, {{0x278a7,3},{0x1b6ab,1}}, {{0xe78,3},{0xb2c,2}}, + {{0x1f,2},{0x1a,2}}, {{0xbbf,2},{0xae5,1}}, {{0x422e,3},{0xaec,2}}, {{0x78ca,4},{0x1c4d9,4}}, + {{0xb2f,1},{0x443e,2}}, {{0xf85,13},{0xb2e,2}}, {{0x10ea,3},{0xc30,2}}, {{0x3234,3},{0xc7b0,4}}, + {{0xef9f,7},{0x2b,3}}, {{0x10ec,1},{0x140f,5}}, {{0xbde,3},{0x2b,1}}, {{0x119c,7},{0x5269,5}}, + {{0x265b,4},{0x1f,1}}, {{0x3234,3},{0x53ea,4}}, {{0x122c,4},{0x1a,3}}, {{0xcb8,2},{0x2211,3}}, + {{0x143c,10},{0x11b8,4}}, {{0x28,1},{0xcf6,3}}, {{0xd0f,4},{0x1307,3}}, {{0xae0,1},{0xb65,2}}, + {{0x2237,3},{0xce8,3}}, {{0x377c,4},{0xb65,2}}, {{0xbeb,1},{0x10ec,1}}, {{0x10ea,3},{0x1d,1}}, + {{0x6f62,4},{0xff02,2}}, {{0x27b6,1},{0xce8,3}}, {{0x251ff,2},{0x2445e,1}}, {{0x13bc,4},{0x4834,5}}, + {{0x278c7,3},{0x278dc,1}}, {{0xbc0,4},{0x19f5,9}}, {{0x1e45,3},{0x2b,3}}, {{0xdd5,2},{0xaea,1}}, + {{0x1561,3},{0x10dc,2}}, {{0x2c76,4},{0xa24a,3}}, {{0x227f,3},{0x6038,8}}, {{0xae2,1},{0xae5,1}}, + {{0x20bb,3},{0xbb4,2}}, {{0x9b1a,5},{0xb7d,2}}, {{0xbeb,1},{0x26c6,1}}, {{0xae0,1},{0x1d,1}}, + {{0x5102,5},{0x11b0d,5}}, {{0x79f6,6},{0xc3e,2}}, {{0x422e,3},{0x8a49,3}}, {{0x6f14,9},{0xfe5,2}}, + {{0xae2,1},{0xb67,2}}, {{0xc13,4},{0x295c,5}}, {{0xadd,4},{0x5d97,5}}, {{0x4e85,7},{0xb8a,2}}, + {{0x25c5,5},{0x5277,2}}, {{0x3838,8},{0xaf2,1}}, {{0xe42,5},{0xd0b,3}}, {{0x10ea,3},{0x28,2}}, + {{0xb44,3},{0x1a10,2}}, {{0xc99,3},{0xed47,4}}, {{0xc13,4},{0x1a,1}}, {{0xc1c,2},{0xdfb,3}}, + {{0x26c6,1},{0x1d59,3}}, {{0x265b,4},{0xd17,3}}, {{0xb67,2},{0xc7b0,4}}, {{0xaf1,1},{0xb85,2}}, + {{0xa6c6,5},{0xae7,1}}, {{0x135c,5},{0xb8f,2}}, {{0x17bc,4},{0xae7,1}}, {{0x24531,4},{0x1a328,2}}, + {{0x1095,3},{0x114d,5}}, {{0x43e3,2},{0x43e5,3}}, {{0x2446c,1},{0x2445e,1}}, {{0xe0e2,8},{0x10dc,2}}, + {{0x264c,4},{0xcf3e,2}}, {{0x12a9e,6},{0xbd4,2}}, {{0xaea,2},{0x20b5,3}}, {{0x1eaa7,5},{0x2b,3}}, + {{0xc49,3},{0xae0,1}}, {{0x1040,6},{0x67b2,5}}, {{0xeec,6},{0x2db1,3}}, {{0xd5c,1},{0x12fe,2}}, + {{0x271e,3},{0x1a,2}}, {{0x2446c,1},{0x27cf6,2}}, {{0xd154,6},{0x11b8,4}}, {{0x16dc,7},{0x7297,3}}, + {{0x219c,4},{0xc39,2}}, {{0xf905,4},{0xfb7c,5}}, {{0xd0f,4},{0xdfab,3}}, {{0xd41,3},{0x101f5,4}}, + {{0x318c,5},{0x2dc3,3}}, {{0xdba,4},{0x27,1}}, {{0xb49e,4},{0x5396,3}}, {{0xb44,3},{0xb55,2}}, + {{0x4194,6},{0xaf2,1}}, {{0x10dc,2},{0x2b,3}}, {{0x2abe,4},{0xb141,3}}, {{0x3996,5},{0x5a52,4}}, + {{0x1434,3},{0x10dc,2}}, {{0xadd,7},{0x1a,1}}, {{0x3234,3},{0xc34,2}}, {{0x5365,5},{0xf8e1,4}}, + {{0xfef0,4},{0x709c,4}}, {{0xe6d,5},{0xe72,3}}, {{0xcfd,4},{0xeb2b,6}}, {{0x3de8,5},{0xbb4,4}}, + {{0x1afd,5},{0x1f13,4}}, {{0xd54,1},{0xc1e,2}}, {{0x17ac,3},{0x12ff,2}}, {{0xcfd,5},{0xaea,1}}, + {{0x1040,6},{0xcab,3}}, {{0x8a8e,6},{0xc63,3}}, {{0x17fc,5},{0x9f6f,6}}, {{0x432,4},{0x432,1}}, + {{0xc52,2},{0x3a57,3}}, {{0x14d5,3},{0xae7,1}}, {{0xd41,3},{0x265d,3}}, {{0xd41,3},{0xc89,2}}, + {{0xd76,7},{0xd44,5}}, {{0x122c,4},{0xb52,2}}, {{0xbe7,1},{0xc30,2}}, {{0x16dc,5},{0xa497,6}}, + {{0xb44,3},{0x187c,3}}, {{0xd5c,1},{0xdc0,6}}, {{0xf96,7},{0x1513,5}}, {{0xb871,8},{0xd0d,2}}, + {{0x1e,1},{0x1843f,4}}, {{0x256d,3},{0x2bfc,2}}, {{0x177c,3},{0xb70,2}}, {{0x244f5,2},{0x1b23d,2}}, + {{0x10ea,3},{0x28,1}}, {{0x10f3,1},{0x1878,1}}, {{0x263f,3},{0xc8a3,3}}, {{0x4a27,4},{0x1cef,3}}, + {{0x6d81,3},{0x2045,3}}, {{0xd65,3},{0x10b9,3}}, {{0xd41,3},{0x2a24,6}}, {{0x1c,1},{0x1f,1}}, + {{0x70a0,4},{0x70ac,4}}, {{0x6ac3,4},{0xbb5,1}}, {{0xc1c,2},{0x1d,1}}, {{0x2b,2},{0xb78,2}}, + {{0x178c,3},{0xd57,2}}, {{0x2b,1},{0xb8b,2}}, {{0x159c,4},{0x21be,4}}, {{0x70c8,2},{0xfb8b,2}}, + {{0xbe7,1},{0xbe4,1}}, {{0x1084,3},{0x7a06,5}}, {{0xb44,3},{0x7591,5}}, {{0xae0,1},{0xc67,3}}, + {{0xcb8,2},{0xaf2,1}}, {{0x432,64},{0x432,64}}, {{0x2a891,3},{0x7c4,1}}, {{0xb2e,2},{0x28,1}}, + {{0x1c65,6},{0xbc5,3}}, {{0x22cf8,1},{0x1ed53,1}}, {{0xaea,1},{0xaf1,1}}, {{0xbeb,1},{0x10f7,1}}, + {{0x14cc,4},{0xd0c,2}}, {{0x22cf8,1},{0x432,2}}, {{0x41da,3},{0xb63,2}}, {{0xaca2,3},{0x1d8e,3}}, + {{0x22e6,5},{0x7ed0,6}}, {{0x25789,2},{0x1b709,2}}, {{0x95fe,8},{0x10dc,2}}, {{0xf30,11},{0xb52,5}}, + {{0x10fa,1},{0x1d8a,3}}, {{0x12f94,8},{0xd0d,2}}, {{0xeb1,2},{0xb65,2}}, {{0x21,1},{0x1a,1}}, + {{0x2b,2},{0xb52,6}}, {{0xcb5,3},{0xb79,2}}, {{0x6d81,3},{0x1a,2}}, {{0x27,1},{0xbc4,4}}, + {{0x5365,6},{0x10dc,2}}, {{0x90e2,4},{0xc57,3}}, {{0x5c62,6},{0x28d4,6}}, {{0x14d0e,3},{0xb47,2}}, + {{0xe7b,4},{0xb7a,5}}, {{0x12b66,7},{0x10dc,2}}, {{0x12fc,4},{0x2098,3}}, {{0xfe6f,8},{0xd7a,3}}, + {{0x1f,2},{0x21,1}}, {{0xae5,1},{0xcb8,2}}, {{0x244cb,2},{0x70d2,2}}, {{0xb85,2},{0x1d,1}}, + {{0xcd9,3},{0x5c76,4}}, {{0xb44,3},{0xcab,3}}, {{0x6f21,8},{0xb52,5}}, {{0xc1c,2},{0xbb4,4}}, + {{0xcfe9,6},{0x10dc,2}}, {{0x1ab2,4},{0x1e6c,6}}, {{0xf1f,5},{0x1035,5}}, {{0x4fbd,4},{0x700f,3}}, + {{0x10c8,3},{0x295c,4}}, {{0xcb5,3},{0xb72,2}}, {{0xd41,3},{0xc57,4}}, {{0x364e,4},{0xc51,2}}, + {{0xed8f,5},{0x55f6,6}}, {{0x9496,8},{0xb9d,3}}, {{0x278a1,3},{0x116d,1}}, {{0xc1c,2},{0x323c,2}}, + {{0x2520a,2},{0x9a9,1}}, {{0xd54,1},{0x6a37,8}}, {{0x12ff,3},{0xb141,3}}, {{0x278c7,3},{0x278d6,1}}, + {{0xeec,5},{0x7f6c,6}}, {{0x153c,6},{0xf69,3}}, {{0xb9c,2},{0xf99,4}}, {{0x10192,2},{0xff02,2}}, + {{0xd76,5},{0x1f3b,4}}, {{0x256b,4},{0xc67,3}}, {{0x740e,5},{0xb65,2}}, {{0xceb,3},{0x13c05,7}}, + {{0xddc,4},{0xb996,4}}, {{0x10ef,1},{0x10f6,1}}, {{0x1e03d,5},{0xaf2,1}}, {{0xcb5,3},{0xd0d,2}}, + {{0x100d,5},{0xb77,3}}, {{0x10ef,1},{0x187b,4}}, {{0x4491,6},{0x11ef,2}}, {{0x3704,6},{0xc67,2}}, + {{0x6f62,4},{0x6f90,2}}, {{0x12fc,4},{0x362c,5}}, {{0xeb2,1},{0xdf0,2}}, {{0x1c,1},{0xae9,2}}, + {{0x422e,3},{0xb74,2}}, {{0x3e12,5},{0x734b,3}}, {{0x5080,9},{0x2195,3}}, {{0xcd9,3},{0x705a,4}}, + {{0xae2,2},{0xaea,1}}, {{0x10b7,5},{0xf59,3}}, {{0x9aae,8},{0x2b3e,4}}, {{0x6b04,5},{0xc77,2}}, + {{0x6ac5,1},{0x4453,4}}, {{0x102f,6},{0x6604,6}}, {{0xb6c,3},{0xb4b,2}}, {{0x1b57,4},{0x1704,3}}, + {{0x24462,1},{0x9a9,1}}, {{0x142c,3},{0xae2,1}}, {{0x178c,3},{0x10f2,1}}, {{0x3234,3},{0x1372,3}}, + {{0x12922,7},{0x10dc,2}}, {{0x16fc,5},{0x1c25,4}}, {{0x257a,4},{0xb52,2}}, {{0xb72,2},{0x5277,2}}, + {{0x2b,1},{0xc55,2}}, {{0x924,2},{0x278dc,1}}, {{0x3678,5},{0x2d,1}}, {{0x10f8,2},{0x10f0,1}}, + {{0x21d8,5},{0x55f6,6}}, {{0xeb9,6},{0x10569,3}}, {{0x70a0,2},{0x1015e,2}}, {{0xb44,3},{0x47ad,5}}, + {{0x1d55,4},{0x1d59,3}}, {{0x2445f,1},{0x2aea3,2}}, {{0x15b52,2},{0xa51,2}}, {{0xde9,1},{0x10dc,2}}, + {{0x5a5a,5},{0x1c2d,4}}, {{0x2d,1},{0x13b5,7}}, {{0xbb5,1},{0xb2e,2}}, {{0xa7da,3},{0xb78,2}}, + {{0xf1f,5},{0x1a10,2}}, {{0xaea,1},{0x103a,3}}, {{0x6d8e,3},{0xd8f,3}}, {{0x119c,7},{0x1de6,5}}, + {{0x108b,3},{0x10dc,2}}, {{0x53a6,6},{0xd0d,2}}, {{0x40b2,4},{0xa176,4}}, {{0x2a946,3},{0x7c4,1}}, + {{0x7102,5},{0xb9c,2}}, {{0x6d8e,3},{0x2b,2}}, {{0x278c7,3},{0x924,1}}, {{0xa71a,7},{0x674c,3}}, + {{0x2446a,3},{0x2446e,3}}, {{0xc13,4},{0x15f28,5}}, {{0x122c,4},{0xbed,4}}, {{0x142c,3},{0x1d8a,3}}, + {{0x8986,7},{0xb78,2}}, {{0x1d55,4},{0xc4c,3}}, {{0xc37,4},{0x1cb4,4}}, {{0x5a5a,7},{0x1fb7,5}}, + {{0x392d,3},{0xeb2,1}}, {{0x3788,3},{0xb85,2}}, {{0xeca,5},{0xb65,2}}, {{0x3678,6},{0x12b1,3}}, + {{0x6ac3,3},{0x10dc,2}}, {{0x1a266,4},{0xd0d,2}}, {{0xfb1,2},{0x2db1,3}}, {{0x10ea,3},{0x1f734,5}}, + {{0x71da,6},{0xb68,4}}, {{0x52fd,7},{0xbd6,2}}, {{0x82de,6},{0x14a8,4}}, {{0x2796,3},{0x10ca,1}}, + {{0x318c,5},{0xadf,2}}, {{0xc37,3},{0xcb8,2}}, {{0xc37,3},{0x2279,4}}, {{0x2446a,3},{0x24461,1}}, + {{0xbde,3},{0x28b1,3}}, {{0x15b52,2},{0x96b,2}}, {{0xc25,3},{0x3e2a,4}}, {{0xb82,2},{0xae7,1}}, + {{0x21,1},{0xb401,2}}, {{0x1509a,4},{0xb63,2}}, {{0xbff6,7},{0x23ce,4}}, {{0xeb2,1},{0xf10,3}}, + {{0xbde,3},{0x1318b,4}}, {{0x1a3a,6},{0x1156,6}}, {{0x30,2},{0xb54,3}}, {{0x20bb,3},{0xf27c,3}}, + {{0x94ba,6},{0x2b,3}}, {{0xcc7,3},{0x3fab,2}}, {{0xc37,3},{0xaf2,1}}, {{0x28,2},{0x1150,2}}, + {{0x4d33,6},{0xc2e8,4}}, {{0x26b5,4},{0x2745,3}}, {{0x1a266,4},{0xb67,2}}, {{0x1413e,7},{0x10dc,2}}, + {{0x6ac3,3},{0x10f0,1}}, {{0x115c,2},{0x115c,2}}, {{0x14940,6},{0x25c2,3}}, {{0x12ac,5},{0x1525,7}}, + {{0x244f5,2},{0x1b25d,2}}, {{0xcc0,3},{0x10dc,2}}, {{0x29f18,3},{0x116e,1}}, {{0xa7aa,7},{0xe6d,2}}, + {{0xbc65,8},{0xae7,1}}, {{0x28423,3},{0x251de,2}}, {{0x170c,10},{0xaf1,1}}, {{0x969,2},{0xff22,2}}, + {{0x39ce,5},{0x295c,4}}, {{0x43e3,1},{0x10ef,1}}, {{0x807a,8},{0x25df,4}}, {{0xd0f,6},{0x227a,3}}, + {{0xeb2,1},{0xb2f,1}}, {{0xb63,3},{0x1f,1}}, {{0xb44,3},{0xb63,2}}, {{0x90e2,4},{0x90f2,5}}, + {{0xae0,1},{0x11f2,3}}, {{0xc37,3},{0x27,1}}, {{0x12fe,2},{0x3776,3}}, {{0xeec,7},{0x11c3,7}}, + {{0x16fc,5},{0x12c33,5}}, {{0xceb,3},{0x3203,5}}, {{0xb47,2},{0xb9c,2}}, {{0xe6d,2},{0x29da,3}}, + {{0x26c6,1},{0x27b6,1}}, {{0x16dc,7},{0xa45d,5}}, {{0x46f4,4},{0xae0,1}}, {{0x2d,1},{0xc63,3}}, + {{0x1040,6},{0x2a16,3}}, {{0x37d6,5},{0x1c25,4}}, {{0xcfd,6},{0xb82,3}}, {{0x2d,1},{0x1db20,5}}, + {{0xceb,3},{0x1cef,3}}, {{0xbe0,1},{0xbe4,1}}, {{0x43e3,1},{0xd54,1}}, {{0xaca2,3},{0x2c00,3}}, + {{0x1d46,5},{0x9ea4,5}}, {{0x68ae,8},{0x1c25,4}}, {{0x1a,3},{0xfdd,2}}, {{0x2789b,3},{0x116e,1}}, + {{0xd41,3},{0x3789,3}}, {{0x1140,3},{0x12ff,2}}, {{0x9b62,6},{0xb2c,2}}, {{0xb71,2},{0x2bfd,2}}, + {{0x3996,5},{0x2ddc,6}}, {{0x24a2d,2},{0x159c8,1}}, {{0xacae,8},{0xc7b,4}}, {{0x15ec,10},{0x2b,3}}, + {{0x2451f,2},{0xa4f,2}}, {{0xb2c,2},{0x4d46,3}}, {{0xbb5,1},{0xb85,2}}, {{0xd7f,3},{0x28,1}}, + {{0x1084,3},{0xbcc2,3}}, {{0xc8f3,5},{0xb78,2}}, {{0x8986,7},{0x10dc,2}}, {{0xbeb,1},{0x54af,4}}, + {{0x174e,3},{0xae7,1}}, {{0x10fb,3},{0xaf1,1}}, {{0x804,2},{0x410e,2}}, {{0xfed0,10},{0xfed2,2}}, + {{0x10fb,3},{0x10f6,1}}, {{0xaf62,2},{0x10f3,1}}, {{0x2d,1},{0x2b,1}}, {{0x7276,4},{0x132f,3}}, + {{0x1d55,8},{0xb52,6}}, {{0x16fc,4},{0x1700,4}}, {{0xb44,6},{0x4874,6}}, {{0x12fc,4},{0x3776,3}}, + {{0xaea,1},{0xc1e,2}}, {{0xceb,3},{0x28,1}}, {{0x1ab2,4},{0xb52,2}}, {{0x16f9e,6},{0x10dc,2}}, + {{0x1dbe,5},{0x296f,5}}, {{0x2d,1},{0xb9d,3}}, {{0xceb,3},{0xce2,3}}, {{0x1040,6},{0x3ce4,7}}, + {{0xadf,2},{0x18eb,5}}, {{0x287e7,2},{0x1dec4,2}}, {{0x6d8e,3},{0x67a6,4}}, {{0x4957,6},{0xb82,2}}, + {{0xf63,5},{0x2b4c,4}}, {{0x278c7,3},{0x116c,1}}, {{0x1095,3},{0xae2,1}}, {{0x2d,1},{0x1f,1}}, + {{0xae7,1},{0xb63,2}}, {{0xe77,3},{0x10dc,2}}, {{0x178c,3},{0xb2f,1}}, {{0x2769,8},{0xdf0,2}}, + {{0xe78,3},{0xb78,2}}, {{0xb9c,2},{0xc8a,2}}, {{0x2043,5},{0x2048,4}}, {{0x4a75,6},{0xcae,7}}, + {{0x1c,1},{0xc77,2}}, {{0x3640,4},{0x1bdb,3}}, {{0x10b7,5},{0x1035,5}}, {{0x102f,6},{0x647d,4}}, + {{0x151c,4},{0x1197,4}}, {{0x1b13e,3},{0x278b5,2}}, {{0xd65,3},{0xbc5,3}}, {{0xc1e,2},{0xdfb,3}}, + {{0xceb,3},{0xbbf,2}}, {{0x9e3e,8},{0xb56,2}}, {{0x1084,3},{0xfb1,2}}, {{0xae2,1},{0xaf2,1}}, + {{0x762a,5},{0xdf0,2}}, {{0xcfd,6},{0xaea,1}}, {{0xe42,5},{0xdf51,5}}, {{0xddc,4},{0x187c,3}}, + {{0xb44,3},{0x2045,3}}, {{0x10b7,5},{0xd57,2}}, {{0xfe38,4},{0x1b,1}}, {{0xc37,3},{0xb72,2}}, + {{0xc25,3},{0xae6,2}}, {{0xd41,4},{0xaf1,1}}, {{0xd41,4},{0xb63,4}}, {{0x540e,7},{0xb52,6}}, + {{0xba5,5},{0x1fb2,5}}, {{0x10dc,2},{0xfe5,2}}, {{0x857e,5},{0xc63,3}}, {{0xa01e,7},{0xb78,2}}, + {{0xbe33,8},{0x10dc,2}}, {{0x3f7e,6},{0xbd8,2}}, {{0x145e6,2},{0x6dd7,3}}, {{0xddc,4},{0x4b0a,4}}, + {{0xae0,1},{0x2b,1}}, {{0x265b,4},{0xb48,2}}, {{0x25da3,5},{0xae7,1}}, {{0x1b22,3},{0xb141,3}}, + {{0xfc9,6},{0xbad,4}}, {{0x4443,6},{0x2b,3}}, {{0x26c4,3},{0x10f2,1}}, {{0x2bfc,2},{0xc63,3}}, + {{0xeb2,1},{0x1d,1}}, {{0xaad1,3},{0x1a,2}}, {{0x14d5,3},{0x12b1,4}}, {{0x681f,7},{0x2b,3}}, + {{0xb9d,3},{0xae5,1}}, {{0x10ef,1},{0xbe7,1}}, {{0x1084,3},{0xb48,2}}, {{0x178c,3},{0x27b6,1}}, + {{0xcc0,3},{0xb2c,2}}, {{0xbb5,1},{0x1d8a,3}}, {{0xbd6,2},{0x1f,1}}, {{0xcc7,3},{0xcca,3}}, + {{0xc25,3},{0xc89,2}}, {{0xcb5,3},{0xce8,3}}, {{0x6ac3,3},{0x2045,3}}, {{0x4351,2},{0x10f3,1}}, + {{0xb63,2},{0x1292,3}}, {{0x2445f,1},{0x24f87,2}}, {{0xae6,3},{0xc67,2}}, {{0x10f8,2},{0x10fa,1}}, + {{0x2237,4},{0xb54,3}}, {{0x5d5b,5},{0x10dc,2}}, {{0x10fb,3},{0x10f3,1}}, {{0xcde,3},{0x18d8,4}}, + {{0x28634,1},{0x1b4e3,1}}, {{0xab46,5},{0xae6,2}}, {{0x3720,10},{0x18ca,3}}, {{0x194a,5},{0x27,1}}, + {{0x143c,10},{0xce8,3}}, {{0xcfd,9},{0xc1e,5}}, {{0xc77,2},{0xb2e,2}}, {{0x181c,3},{0xbeb,1}}, + {{0xfdd,2},{0xfdf,6}}, {{0x10ec,1},{0x27b6,1}}, {{0x2445f,1},{0x24a41,2}}, {{0x5476,4},{0x1c43,4}}, + {{0xbed,2},{0x27,1}}, {{0x51ab,7},{0x1257,3}}, {{0x16dc,4},{0x1cef,3}}, {{0xbe4,1},{0xb64,2}}, + {{0x30,256},{0x30,256}}, {{0x14940,6},{0xfe5,2}}, {{0xbcb,3},{0xd0b,3}}, {{0x3782,5},{0xb52,6}}, + {{0xcd9,3},{0xc30,2}}, {{0x5bf1,4},{0xb7c,3}}, {{0x1b6dd,4},{0x1b6e1,4}}, {{0x15d47,6},{0x10dc,2}}, + {{0x2160,5},{0x12f85,5}}, {{0xaf1,2},{0xcf0,2}}, {{0xa1c2,8},{0xce8,3}}, {{0xae7,1},{0x2b,2}}, + {{0x2cf0d,2},{0x159c8,1}}, {{0xc37,6},{0xc3d,4}}, {{0x20bb,3},{0xf38f,3}}, {{0xaeb,2},{0xde2,4}}, + {{0x1c83,5},{0x18d8,3}}, {{0xadf,2},{0xb78,2}}, {{0x2a9f,4},{0xc1e,2}}, {{0x2d02,6},{0x169f,3}}, + {{0x159c,8},{0x1555,7}}, {{0xc49,3},{0x30af,5}}, {{0xc30,2},{0xc8f,2}}, {{0x734,2},{0x24460,3}}, + {{0x14bc,5},{0xb2e,2}}, {{0xc25,4},{0x13e3,4}}, {{0xc67,3},{0x28,1}}, {{0x780,1},{0x432,1}}, + {{0x30,2},{0x924,2}}, {{0xc37,3},{0xcc0e,3}}, {{0x4606,3},{0xc67,2}}, {{0x6d81,3},{0x28522,2}}, + {{0x1aee,6},{0x4b31,3}}, {{0x14c08,5},{0x5396,3}}, {{0x257c,2},{0x12be,3}}, {{0xbeb,1},{0x10f21,6}}, + {{0xb6c,3},{0xeb3,3}}, {{0x20bb,3},{0xd7a,3}}, {{0xb72,2},{0x10dc,2}}, {{0x12fc,4},{0x2b,1}}, + {{0x1098,3},{0x1b,1}}, {{0xcb5,3},{0x20a0,3}}, {{0x16cc,4},{0xd17,3}}, {{0x6ac3,3},{0x15c2a,6}}, + {{0x2bea,7},{0xa5de,4}}, {{0xf63,5},{0x940b,6}}, {{0xcd9,3},{0x1614,7}}, {{0x11ef,2},{0xd44,5}}, + {{0x278a7,3},{0x924,2}}, {{0x48a1,6},{0xbb4,4}}, {{0x7e8e,7},{0x22e3,3}}, {{0x5c62,7},{0xce8,3}}, + {{0x3678,6},{0xb2e,2}}, {{0x10ec,1},{0x11f57,6}}, {{0x43e3,1},{0x1a,2}}, {{0x2349,4},{0xb2e,2}}, + {{0xb7f,3},{0xeb3,3}}, {{0x2df0,8},{0x1498,4}}, {{0x8f1a,7},{0x3275,5}}, {{0x2c38,4},{0x1c8f,3}}, + {{0x948,1},{0x1ed58,1}}, {{0xcd9,3},{0x78a2,4}}, {{0xb55,2},{0xd0d,2}}, {{0x4fbd,4},{0xc55,2}}, + {{0x1a,3},{0xc7b,4}}, {{0x1015a,6},{0x709c,4}}, {{0x102ce,7},{0x2b,3}}, {{0x134c,5},{0x3788,3}}, + {{0x41be,3},{0x1ce2,3}}, {{0x10192,2},{0x1b887,2}}, {{0x1084,3},{0x5aab,3}}, {{0x14cc,4},{0xae0,1}}, + {{0x4106,4},{0xaad1,3}}, {{0xcd9,5},{0xb8b,2}}, {{0xc8dd,4},{0xb85,2}}, {{0x90e2,4},{0xcce,3}}, + {{0x3598,5},{0xd7a,3}}, {{0x10ca,1},{0x1ae2,2}}, {{0x6d8e,3},{0x10ca,1}}, {{0x177c,3},{0x10ca,1}}, + {{0xb257,5},{0x4b33,4}}, {{0x1278,3},{0xb141,3}}, {{0xb299,6},{0x132f,3}}, {{0xd5c,2},{0x8c2a,6}}, + {{0x1084,3},{0x1675,2}}, {{0x2445e,1},{0x24461,1}}, {{0xb4a,3},{0xdbf,3}}, {{0xfef0,4},{0x70ac,4}}, + {{0xcde,3},{0xdd5,4}}, {{0xbe7,1},{0x1a,1}}, {{0x422e,3},{0xae2,1}}, {{0x136c,6},{0x1d,1}}, + {{0xb8c,2},{0xeb2,1}}, {{0x9e3e,9},{0x10dc,2}}, {{0x6846,8},{0x10dc,2}}, {{0x3234,3},{0xf38f,3}}, + {{0xb7f,3},{0x1961,6}}, {{0x6d81,3},{0xb47,2}}, {{0x10ef,1},{0xab9c,1}}, {{0x1b57,4},{0xb64,2}}, + {{0x20b1f,6},{0x1ed58,1}}, {{0x20bb,3},{0x2045,3}}, {{0xde9,1},{0xb8f,2}}, {{0x253fb,3},{0x2446f,2}}, + {{0xcfd,5},{0xc50d,5}}, {{0xc67,2},{0x14a8,4}}, {{0xb66,2},{0x3789,3}}, {{0xbde,3},{0xb64,2}}, + {{0x1cec,5},{0xc8a0,5}}, {{0x1675,2},{0x2b,2}}, {{0x156e4,7},{0x28,1}}, {{0x10ea,3},{0x1055,3}}, + {{0x4a5b,6},{0x2af8,4}}, {{0x1084,4},{0xbd6,8}}, {{0x16fc,5},{0x5396,3}}, {{0xbe0,1},{0x16e2,2}}, + {{0xd41,3},{0xc67,3}}, {{0x43e3,1},{0xd5c,1}}, {{0xaf3,4},{0x2456b,2}}, {{0x2b,1},{0x80be,4}}, + {{0xc67,3},{0xb55,2}}, {{0xbeb,1},{0x8ec8,4}}, {{0x278a1,3},{0x278d6,1}}, {{0x2793d,4},{0x1b6ab,2}}, + {{0xc9e,3},{0x18d8,3}}, {{0xb82,3},{0x1489,3}}, {{0x2520a,2},{0x2445f,1}}, {{0xa22e,7},{0xb8f,3}}, + {{0xcf6,3},{0xca1,2}}, {{0xceb,4},{0xae6,2}}, {{0xce2,3},{0x10dc,2}}, {{0x257a,4},{0x2c7d,6}}, + {{0x1f,1},{0xde9,1}}, {{0x278a9,1},{0x924,2}}, {{0x1c,1},{0xb47,2}}, {{0xb2c,2},{0x23ce,4}}, + {{0x10f7,1},{0xeb3,3}}, {{0xe867,7},{0x10dc,2}}, {{0x43e3,1},{0x1a,1}}, {{0x122c,4},{0x2c0a,3}}, + {{0x713e,5},{0xdfb,3}}, {{0x17bf9,6},{0x2b,3}}, {{0x1929d,5},{0x28be,3}}, {{0xbb5,1},{0x1a,2}}, + {{0x2796,3},{0x5eb0,4}}, {{0x11f2,3},{0xb78,2}}, {{0x10c8,3},{0xc9a,2}}, {{0x15ac,10},{0xce8,3}}, + {{0x1e45,4},{0xa24a,3}}, {{0x4284,2},{0xd5c,1}}, {{0x142c,8},{0x1434,6}}, {{0x1e,1},{0xbc5,3}}, + {{0x10f3,1},{0x1a,1}}, {{0x3678,5},{0x1f,1}}, {{0xbe4,1},{0x26c6,1}}, {{0x10b7,7},{0xb8b,2}}, + {{0x28,2},{0x25c2,3}}, {{0xcfd,6},{0xb9d,3}}, {{0x4c15,5},{0x4882,3}}, {{0xd5c,1},{0xb9e,2}}, + {{0xcfd,5},{0x1140,3}}, {{0x16ae,3},{0xe8d,3}}, {{0xd973,7},{0x25da,3}}, {{0x278a1,3},{0x1b6ab,1}}, + {{0x41ef,2},{0xbb5,1}}, {{0xd41,3},{0x2680,5}}, {{0x194a,5},{0x1bdb,3}}, {{0xe6d,2},{0x2b,1}}, + {{0x142e,1},{0xae2,1}}, {{0xc37,3},{0xdf0,2}}, {{0xc13,4},{0xbb4,4}}, {{0xcd9,5},{0xeb2,1}}, + {{0x178c,3},{0x54af,4}}, {{0xb6e,2},{0x139f,3}}, {{0xd78f,5},{0x4d97,2}}, {{0xd76,4},{0x461b,5}}, + {{0xd1b,1},{0xee5,3}}, {{0xc25,4},{0xe02,5}}, {{0x16fc,4},{0xae0,1}}, {{0xc25,3},{0x715a,3}}, + {{0x791e,8},{0x2b,3}}, {{0x7222,7},{0xc8e,3}}, {{0x1089,2},{0x1a,2}}, {{0x1f,1},{0xb79,2}}, + {{0x1a3a,9},{0xb2c,4}}, {{0x11ef,2},{0x673a,5}}, {{0xa762,8},{0x10dc,2}}, {{0x177c,3},{0xb63,2}}, + {{0x278a1,3},{0x116c,1}}, {{0xcedb,2},{0x140a,2}}, {{0xbeb,1},{0x10ca,1}}, {{0x10ea,3},{0xb78,2}}, + {{0x14cc,4},{0xb69,3}}, {{0xae7,1},{0xdd1,2}}, {{0x5b1d,5},{0x5b22,5}}, {{0x122c,6},{0x296f,5}}, + {{0x22e6,5},{0xc57,3}}, {{0xfc6a,5},{0xbd6,2}}, {{0xcd9,3},{0xbc4,4}}, {{0xff20,4},{0x70ac,4}}, + {{0xe2fd,5},{0xcb8,2}}, {{0xc25,3},{0x16821,4}}, {{0xb6c,4},{0x114d,2}}, {{0x7546,7},{0x12143,2}}, + {{0x4f6f,5},{0x1e1f,8}}, {{0x142c,3},{0x1089,3}}, {{0x35b4,5},{0xd1a,2}}, {{0x24462,1},{0x2aea3,2}}, + {{0x44b8,6},{0xb52,5}}, {{0x972a,5},{0x2b,2}}, {{0x734,16},{0x734,16}}, {{0xb6c,3},{0x967e,4}}, + {{0x532,18},{0x30,4}}, {{0xbde,3},{0xb70,2}}, {{0x19b3,4},{0xaf1,1}}, {{0x3234,3},{0x125cc,4}}, + {{0x5d5b,5},{0xae7,1}}, {{0xbe4,1},{0xbd6,2}}, {{0xb7c,2},{0xb52,5}}, {{0xd57,2},{0xae7,1}}, + {{0xbde,3},{0x2045,3}}, {{0xdba,6},{0xb2f,1}}, {{0x30,48},{0x30,2}}, {{0xcd9,5},{0x27,1}}, + {{0x1773,3},{0xb47,2}}, {{0x2ab6,5},{0x3b26,5}}, {{0x10f7,1},{0x28,1}}, {{0x6d8e,3},{0x392d,3}}, + {{0xb7f,3},{0xc67,3}}, {{0x2859,4},{0xca7,2}}, {{0x41da,3},{0x1878,1}}, {{0x278a1,3},{0x278a9,1}}, + {{0x1cbf,4},{0xcf0,2}}, {{0xddc,4},{0x2944,4}}, {{0xaad1,3},{0x10dc,2}}, {{0x10f3,1},{0xd54,1}}, + {{0xf3ed,3},{0x10de3,5}}, {{0xcfd,7},{0x63c8,5}}, {{0x27b4,3},{0xb49,2}}, {{0x3e90,5},{0xa469,5}}, + {{0xc25,4},{0x2318,4}}, {{0xe03,4},{0x12d7,5}}, {{0xe42,5},{0x6a39,6}}, {{0x7102,5},{0xaf1,2}}, + {{0xefe1,7},{0xbd6,2}}, {{0xf02,3},{0xb47,2}}, {{0xaca2,3},{0xb2e,2}}, {{0x54aa,7},{0x40bc,4}}, + {{0x1abd9,2},{0xd5c,1}}, {{0x1a607,5},{0x11ef,2}}, {{0x6d8e,3},{0x184cf,6}}, {{0x25205,2},{0x2445e,1}}, + {{0x10ec,1},{0xb63,3}}, {{0xceb,3},{0xbb4,2}}, {{0xb2f,1},{0xae2,1}}, {{0x10ca,1},{0xc9a,2}}, + {{0xddc,4},{0xdef,3}}, {{0x5c76,4},{0x1a,1}}, {{0x287e7,2},{0x96f,2}}, {{0x2322,6},{0x10e1,8}}, + {{0x19e0,7},{0xb2c,4}}, {{0x27b4,3},{0x1a,2}}, {{0x229f,5},{0xc7b,4}}, {{0xc49,3},{0xae7,1}}, + {{0x5444,3},{0xb2e,2}}, {{0x90e6,4},{0x43bd,4}}, {{0xc49,3},{0x1c,1}}, {{0x1afd,14},{0xae7,1}}, + {{0xd5c,1},{0x1b,2}}, {{0xc37,3},{0x10dc,2}}, {{0xcfd,4},{0x1e,1}}, {{0xc25,3},{0x1a10,2}}, + {{0xaea,1},{0x27,1}}, {{0xb8f,2},{0xb2f,1}}, {{0xaea,2},{0x2b,3}}, {{0x27,1},{0x23bb,4}}, + {{0x1a,2},{0x1c25,4}}, {{0xcd3,2},{0x173e,3}}, {{0xd41,3},{0xc67,2}}, {{0xbb5,1},{0x1675,2}}, + {{0x11d88,5},{0xc62,3}}, {{0x218d,5},{0x1761,3}}, {{0xbc18,5},{0xeb2,1}}, {{0xb71,2},{0x28,2}}, + {{0x6d8e,3},{0xaaec,2}}, {{0xde9,1},{0x2b,3}}, {{0x14d5,3},{0xb78,2}}, {{0x295c,4},{0xb9c,2}}, + {{0xceb,3},{0x2df5,3}}, {{0x10ec,1},{0xaf1,1}}, {{0x10fa,1},{0x15ae3,2}}, {{0x178c,3},{0x2b,3}}, + {{0xbe1,2},{0xb2c,2}}, {{0x141c,5},{0x5377,7}}, {{0x20bb,3},{0x92e9,5}}, {{0x10f2,1},{0x1878,1}}, + {{0x177c,3},{0xb4e4,4}}, {{0x22bc7,2},{0x9133,3}}, {{0x244f5,2},{0x6fae,2}}, {{0xdf6,3},{0xb63,2}}, + {{0x2864c,1},{0x20b1f,6}}, {{0x10ec,1},{0x10ef,1}}, {{0xcd9,3},{0xd7a,3}}, {{0x178c,3},{0x1d5a,3}}, + {{0x1e45,3},{0xb6e,2}}, {{0xeec,7},{0x3788,3}}, {{0xa8fa,6},{0xcce,3}}, {{0x1459e,3},{0x1a,1}}, + {{0x593c,5},{0x1b0a,2}}, {{0x162c,6},{0x4653,5}}, {{0x9b0e,8},{0xb78,2}}, {{0x1cce,6},{0xb55,3}}, + {{0x6ac3,3},{0x1866,3}}, {{0x28871,3},{0x28634,1}}, {{0x26b5,4},{0xc60,3}}, {{0x16a4,4},{0xb2c,2}}, + {{0xc3a,3},{0xeb6,3}}, {{0x48ae,9},{0x2b,3}}, {{0x117c,1},{0x9a9,1}}, {{0x3678,5},{0x28be,3}}, + {{0xc25,5},{0xbe85,5}}, {{0x2dfe,5},{0xfe5,6}}, {{0x6b5f,4},{0x2237,4}}, {{0x6595,8},{0xd0d,2}}, + {{0x10f7,1},{0x28b1,3}}, {{0x16272,6},{0x2b,3}}, {{0x16fc,4},{0x13564,4}}, {{0x24468,2},{0x1ed53,1}}, + {{0x116c,1},{0x1b140,2}}, {{0x1e,1},{0x18532,4}}, {{0x17bc,3},{0xd79,3}}, {{0xae7,2},{0xae7,1}}, + {{0xcb5,3},{0xb71,2}}, {{0x10c8,3},{0x28,2}}, {{0x24b7,5},{0xb48,2}}, {{0x348e,9},{0xc7b,4}}, + {{0x6d81,3},{0xb68,4}}, {{0x1509a,6},{0x23b1,3}}, {{0x39dc,5},{0x18bbe,4}}, {{0xcd5,2},{0x10dc,2}}, + {{0xbeb,1},{0x11df,5}}, {{0x70a0,2},{0x1019c,2}}, {{0x2610,8},{0xbb4,4}}, {{0x271e,3},{0x112b0,5}}, + {{0xd41,3},{0xbb2a,3}}, {{0x1dec2,4},{0xae7,1}}, {{0xf85,4},{0x1b12,5}}, {{0xc8dd,4},{0x1ce39,4}}, + {{0xc99,3},{0x1c43,4}}, {{0x7c4,8},{0x7c4,4}}, {{0x20bb,3},{0xb48,2}}, {{0x2474d,2},{0x70da,2}}, + {{0xb2ba,6},{0x2195,3}}, {{0x3ed6,5},{0x1daa,5}}, {{0x30,2},{0x286bd,2}}, {{0xae9,2},{0xaeb,3}}, + {{0xd76,4},{0x20e7a,3}}, {{0xd11,4},{0xb75,2}}, {{0xde9,1},{0x2349,4}}, {{0x24a2d,2},{0x2446f,2}}, + {{0xbeb,1},{0xbe85,5}}, {{0xb7c,3},{0x12be,3}}, {{0x1b13e,3},{0x1171,2}}, {{0x1f,1},{0xfb1,2}}, + {{0x4194,5},{0xae6,2}}, {{0x30,2},{0x709c,2}}, {{0x540e,5},{0xa60f,3}}, {{0x3af4,8},{0x12ff,3}}, + {{0x256b,4},{0x8907,4}}, {{0xfdd,2},{0xc34,3}}, {{0x15b0,3},{0xbd4,2}}, {{0x920e,7},{0x1865,4}}, + {{0xbcb,3},{0x4606,3}}, {{0x196cc,8},{0xae7,1}}, {{0x2b,2},{0xdf0,2}}, {{0x16bc,4},{0x140e8,6}}, + {{0x5bf1,4},{0xb54,4}}, {{0x278c7,3},{0x27897,1}}, {{0xd41,3},{0x7526,5}}, {{0xc37,4},{0xe9b,3}}, + {{0xbd4,2},{0xae0,1}}, {{0xb92,4},{0x107c8,5}}, {{0x804,2},{0xf907,2}}, {{0x10c8,3},{0x52c6,3}}, + {{0x202c,4},{0x2030,4}}, {{0x27,1},{0xc3a,3}}, {{0x1972,2},{0xb85,2}}, {{0x16706,6},{0xd0d,2}}, + {{0x5734,7},{0xff7,5}}, {{0x15b3f,2},{0xbeb,1}}, {{0x3996,5},{0x3d0e,7}}, {{0x10ea,3},{0x1a5c,3}}, + {{0x422e,3},{0x1421,3}}, {{0x178c,3},{0x14907,7}}, {{0x6631,7},{0xcab,3}}, {{0xdf0,2},{0xf6a,3}}, + {{0xbe0,1},{0x26c6,1}}, {{0x12d5,4},{0x1489,3}}, {{0x105a8,6},{0xae7,1}}, {{0x2787,6},{0x290f,3}}, + {{0x2b,2},{0xb7d,1}}, {{0xbd3,3},{0xaf2,1}}, {{0xc63e,7},{0xc34,3}}, {{0x15d47,6},{0x2b,3}}, + {{0x16fc,4},{0x2b8e,3}}, {{0x4f2e,5},{0x1354,8}}, {{0x2313,9},{0xb52,5}}, {{0x30,48},{0x30,4}}, + {{0xe3fa,7},{0xae7,1}}, {{0x11946,5},{0xc7b,4}}, {{0x1f,1},{0xb6d2,5}}, {{0x1cec,6},{0xb77,3}}, + {{0x532,18},{0x30,8}}, {{0xbe4,1},{0x1cef,3}}, {{0xd41,3},{0x67b2,5}}, {{0xaea,1},{0x1e,1}}, + {{0xc89,2},{0xb9d,3}}, {{0xb4b,2},{0xb2e,2}}, {{0xc30,2},{0x3a3b,3}}, {{0x178c,3},{0x10f0,1}}, + {{0xcf3e,2},{0xeb3,3}}, {{0xe964,6},{0x12b1,4}}, {{0xb63,2},{0xb52,5}}, {{0x1e9ff,4},{0xae6,2}}, + {{0xbe4,1},{0x112b0,5}}, {{0x1095,3},{0xae7,2}}, {{0x117c,1},{0x117c,1}}, {{0x3fb6,5},{0xf59,3}}, + {{0x11ef,2},{0x1538,4}}, {{0x1a646,4},{0xae7,1}}, {{0xdf0,2},{0x1099,3}}, {{0x10ea,3},{0xbeb,1}}, + {{0xaeb,2},{0xfe1,4}}, {{0x17bc,3},{0xaf1,1}}, {{0x2b,1},{0xb8f,3}}, {{0xbcb,3},{0xb52,2}}, + {{0x27903,3},{0x1b6ab,1}}, {{0x10f7,1},{0xbeb,1}}, {{0x2aa8,6},{0x296f,5}}, {{0xc89,2},{0xfb88,6}}, + {{0xc37,3},{0xc30,2}}, {{0xcfd,5},{0x142e,1}}, {{0xceaa,6},{0xb7c,3}}, {{0xbe7,1},{0xbeb,1}}, + {{0x10ef,1},{0xd0b,3}}, {{0xb92c,7},{0xae7,1}}, {{0x1cbf,5},{0x141e,3}}, {{0xbd1,2},{0xca5,2}}, + {{0xfef8,6},{0xfefe,2}}, {{0x5ec7,7},{0xb2c,2}}, {{0x1aa3,6},{0xae7,1}}, {{0x30bc,3},{0xb54,3}}, + {{0xae7,2},{0xb8f,2}}, {{0x6d8e,3},{0x1d8a,3}}, {{0x5365,5},{0xcec5,5}}, {{0xb47,2},{0x2b,1}}, + {{0x227d,5},{0x2282,6}}, {{0xfe71,6},{0xc67,2}}, {{0x19c5a,4},{0x4646,5}}, {{0xa79e,7},{0x2dc3,3}}, + {{0x667f,10},{0xb65,2}}, {{0xddc,4},{0x108e,7}}, {{0x6ac5,1},{0xbd5,2}}, {{0x2446c,1},{0x2445f,1}}, + {{0xaf2,1},{0xb78,2}}, {{0x1b,1},{0xa7ed,4}}, {{0x19b3,4},{0x750e,7}}, {{0x162c,8},{0xc32,5}}, + {{0x178c,3},{0xc67,3}}, {{0x26c4,3},{0xb9c,2}}, {{0xcc4d,6},{0x103b,5}}, {{0xceb,3},{0xae0,1}}, + {{0xae0,1},{0xb85,2}}, {{0x4ab0,3},{0xae5,1}}, {{0x79ba,5},{0x1489,3}}, {{0xb47,2},{0x28,1}}, + {{0x261f,4},{0xae7,1}}, {{0x1cec,6},{0x103a,3}}, {{0xa71a,7},{0xce8,3}}, {{0x6ac3,3},{0x4453,4}}, + {{0x2793d,5},{0x924,1}}, {{0x14eb0,6},{0x12f1,3}}, {{0x10ea,3},{0x4d97,2}}, {{0x278a1,3},{0x278dc,1}}, + {{0xbcb,3},{0xb2e,2}}, {{0x7522,9},{0xae7,1}}, {{0x3996,5},{0x1cef,3}}, {{0x3694,4},{0xfb1,2}}, + {{0xb63,2},{0xb2e,2}}, {{0x10f3,1},{0x1865,2}}, {{0xc37,3},{0x12017,5}}, {{0xbe0,1},{0xb8f,2}}, + {{0xae0,1},{0x2d,1}}, {{0xeec,11},{0xb52,5}}, {{0xcd9,3},{0xec2,2}}, {{0xb2f,1},{0x7065,5}}, + {{0x28,2},{0x10dc,2}}, {{0xaca2,3},{0xb7c,3}}, {{0xb493,5},{0x10599,5}}, {{0xaf1,1},{0xeb3,3}}, + {{0x1afd,5},{0x4d97,2}}, {{0x25c5,5},{0x104f9,5}}, {{0x135c,6},{0x1362,3}}, {{0x423c,3},{0x1372,3}}, + {{0xb6c,3},{0xb7a,5}}, {{0xe42,5},{0xb8a,2}}, {{0x13a3,3},{0x103a,3}}, {{0x10b7,4},{0x2dc3,3}}, + {{0xbcb,3},{0xb70,2}}, {{0xd57,2},{0xb56,2}}, {{0x924,2},{0x278d6,1}}, {{0x2d64,6},{0xcd30,4}}, + {{0x5220,8},{0xf5e,5}}, {{0x1a76,4},{0xb48,2}}, {{0xf0e,7},{0xd57,5}}, {{0x20bb,11},{0xb2e,2}}, + {{0x323c,2},{0x1c,1}}, {{0x20bb,3},{0x535b,5}}, {{0x179e4,6},{0x10dc,2}}, {{0xcd9,4},{0x2318,4}}, + {{0xbe0,1},{0x10ca,1}}, {{0xceb,3},{0x5af9,3}}, {{0xd0f,11},{0x1498,4}}, {{0x1615b,6},{0x12ff,3}}, + {{0xcfd,5},{0xc518,6}}, {{0x13bc,4},{0xb2e,2}}, {{0xbed,2},{0xb63,2}}, {{0x177c,3},{0x19c78,6}}, + {{0x178c,3},{0xc30,2}}, {{0x17b3a,5},{0x2d,1}}, {{0x9e9,2},{0xfed0,4}}, {{0x1051,4},{0x11b6,5}}, + {{0x27b4,3},{0x1878,1}}, {{0x20bb,3},{0x1d,1}}, {{0x1c,1},{0xb98,2}}, {{0x10fb,3},{0xd5c,1}}, + {{0x1e,1},{0xcb8,3}}, {{0xae2,1},{0xd1b,1}}, {{0xb7f,3},{0x179ce,3}}, {{0xedb,4},{0xbad5,4}}, + {{0xd7f,3},{0x1a,1}}, {{0x26f1,4},{0xaf1,1}}, {{0x136c,6},{0xbbf,2}}, {{0x616b,7},{0x33fd,5}}, + {{0x159c,4},{0xfdf,2}}, {{0x3694,5},{0xb63,4}}, {{0xbde,3},{0xc4d,2}}, {{0x118b0,6},{0x25df,4}}, + {{0xb8f,2},{0x40b8,2}}, {{0x263d,5},{0x132f,3}}, {{0x2106,5},{0xc30,4}}, {{0xc6d,7},{0xb66,2}}, + {{0xbb5,1},{0x26fa,4}}, {{0x969,2},{0x96f,2}}, {{0x20bb,3},{0x2c00,3}}, {{0x3996,8},{0xb9d,3}}, + {{0x6742,5},{0x1036,3}}, {{0xadd,5},{0xc4d,2}}, {{0xda9,4},{0x1b,2}}, {{0xf917,7},{0xae6,2}}, + {{0x3234,3},{0x121e1,6}}, {{0xedb,5},{0x1c8f,3}}, {{0xb55,2},{0x1361,2}}, {{0x4362,4},{0xaea,2}}, + {{0x18a5,5},{0x2d44,4}}, {{0xaeb,2},{0x1098,4}}, {{0xe64,5},{0x1331,3}}, {{0x10f7,1},{0x10ef,1}}, + {{0x20bb,3},{0xc67,2}}, {{0xd41,4},{0xe7b,3}}, {{0xd65,3},{0x1009f,4}}, {{0xd5c,1},{0x21,2}}, + {{0x271e,3},{0x159f,4}}, {{0x28da,1},{0x1701,3}}, {{0x6d8e,3},{0xb63,3}}, {{0x4a75,6},{0x1377,5}}, + {{0xf0e,6},{0x23a1,8}}, {{0x27d24,3},{0x2445e,1}}, {{0x4284,2},{0x10f3,1}}, {{0x10b7,5},{0xb47,2}}, + {{0x24f91,2},{0x251d8,2}}, {{0x1b,1},{0x1089,2}}, {{0x13a18,6},{0xb78,2}}, {{0x10d70,7},{0xcc0,3}}, + {{0xe64,5},{0xcbf,4}}, {{0xb9d,3},{0x10dc,2}}, {{0x22e6,5},{0xaf49,4}}, {{0xeec,7},{0xc89,3}}, + {{0xdd5,2},{0xb48,2}}, {{0x271e,3},{0xd54,1}}, {{0x159c8,1},{0x432,1}}, {{0x27903,3},{0x27897,1}}, + {{0x4fbd,4},{0x19bd,5}}, {{0xb5c7,7},{0xc67,3}}, {{0x10ed,2},{0x10ca,1}}, {{0x10f2,1},{0xbe7,1}}, + {{0x17bc,3},{0x10f3,1}}, {{0xf30,6},{0xc34,3}}, {{0x17bc,3},{0x28da,1}}, {{0x142e,1},{0x2b,1}}, + {{0x2796,3},{0x1aaed,1}}, {{0xbe4,1},{0x10f6,1}}, {{0xcd5,2},{0xb9c,2}}, {{0x2796,3},{0xaf1,1}}, + {{0x681f,7},{0x10dc,2}}, {{0x2789b,3},{0x278dc,1}}, {{0x3250,4},{0xb469,4}}, {{0xcfe9,6},{0x1a,2}}, + {{0x10e1,5},{0xb65,2}}, {{0xcb5,3},{0xb9d,3}}, {{0xddc,4},{0x174e,3}}, {{0xadf,2},{0x28,1}}, + {{0x14ee2,4},{0xe6c,3}}, {{0xceb,3},{0xb79,2}}, {{0xfe38,4},{0x202c,5}}, {{0xbb5,2},{0x2b,3}}, + {{0xcb5,3},{0xcd5,2}}, {{0x1f62,9},{0x10dc,2}}, {{0x8ffe,6},{0x2b,3}}, {{0x10fb,3},{0xcd5,2}}, + {{0x3e90,5},{0x1a,3}}, {{0xc65f,7},{0x10dc,2}}, {{0x3694,4},{0x1089,2}}, {{0x30,48},{0x30,6}}, + {{0x1ae2,2},{0xb9d,3}}, {{0xf85,4},{0xbb4,4}}, {{0xc4d,2},{0xb78,2}}, {{0x251cb,1},{0x1b4e3,1}}, + {{0x415c,5},{0x2a91,4}}, {{0x1084,3},{0x2a16,3}}, {{0x2542,7},{0x1b08,3}}, {{0x28,3},{0x2b,3}}, + {{0x17ae,2},{0x3776,3}}, {{0xc60,3},{0xb48,2}}, {{0x2af4,4},{0x10dc,2}}, {{0xb4b,2},{0xb78,2}}, + {{0x422e,3},{0x23d9,3}}, {{0x4d19,6},{0x10dc,2}}, {{0xcfd,5},{0x250a,7}}, {{0x10e3,3},{0x3a3b,3}}, + {{0x290c,2},{0x40b6,4}}, {{0x5ec7,7},{0x1081,3}}, {{0x4e85,7},{0x80bd,4}}, {{0x20bb,5},{0x101c,2}}, + {{0x2793d,5},{0x27897,1}}, {{0xc37,3},{0xb066,2}}, {{0x5b44,5},{0x1c8f,3}}, {{0x10fb,4},{0x1ad76,5}}, + {{0x21ba,8},{0xdf9,5}}, {{0xb2c,2},{0x12b1,4}}, {{0xc25,4},{0xc89,3}}, {{0x2796,3},{0x1b,2}}, + {{0x2789b,3},{0x278af,1}}, {{0xae0,1},{0xdf3,3}}, {{0x103a,3},{0xae7,1}}, {{0xaea,1},{0xb52,2}}, + {{0x124c,5},{0xb8b,2}}, {{0x177c,3},{0xca6,3}}, {{0x17bc,4},{0x1d783,4}}, {{0x14cc,4},{0xb71,2}}, + {{0x271e,3},{0x1d,1}}, {{0x2474d,2},{0x6f6c,2}}, {{0xc13,4},{0xb54,3}}, {{0xd41,3},{0x256ec,3}}, + {{0xd41,3},{0xa532,4}}, {{0x687a,7},{0xaf1,1}}, {{0x1b57,4},{0xc30,2}}, {{0x251dc,2},{0x251de,2}}, + {{0x1e,1},{0x2c00,3}}, {{0x17afb,5},{0xc63,3}}, {{0x1cec,8},{0xb48,2}}, {{0x262e,7},{0x19c9,3}}, + {{0xbeb,2},{0x705a,4}}, {{0xccd1,6},{0x7029,5}}, {{0x30,2},{0x1b8e3,4}}, {{0xd54,1},{0xae0,1}}, + {{0xd65,3},{0x1a,2}}, {{0x1a,2},{0xbc5,3}}, {{0x1bb35,6},{0xae7,1}}, {{0xaf5d,2},{0xab9c,1}}, + {{0x1b,1},{0xb47,2}}, {{0x1c,1},{0x1434,3}}, {{0x5191,8},{0xb7c,3}}, {{0xecb3,8},{0xae7,1}}, + {{0xb44,3},{0x108b,3}}, {{0x90e2,4},{0x1da09,4}}, {{0xc25,4},{0x7445,5}}, {{0xb8b,2},{0x3e16,3}}, + {{0x76c6,9},{0x2b,3}}, {{0xd65,3},{0xc55,2}}, {{0x2891,3},{0xae7,1}}, {{0x2844,2},{0x27b6,1}}, + {{0xd65,3},{0x4875,5}}, {{0x2a948,1},{0x7c4,1}}, {{0xb7f,3},{0x37f7,3}}, {{0xbe0,1},{0x174e,3}}, + {{0x70a0,6},{0xfefe,2}}, {{0x156e4,7},{0xc67,2}}, {{0x162c,6},{0x1961,6}}, {{0x30c8,5},{0x30db,5}}, + {{0x5ea0,4},{0x2d5d,4}}, {{0xbc4,4},{0xb7c,3}}, {{0xd0f,4},{0x13b84,6}}, {{0xd8e,4},{0xb52,2}}, + {{0xb8f,2},{0xfe5,2}}, {{0xcfd,4},{0xae5,1}}, {{0x17b3a,6},{0xdfb,3}}, {{0x20e8,4},{0xb65,2}}, + {{0x30,2},{0x532,8}}, {{0x77da,9},{0xc34,3}}, {{0x4eed,9},{0x10dc,2}}, {{0xc25,3},{0xc4d,2}}, + {{0x114e6,5},{0xbac,4}}, {{0x30,2},{0x70ac,4}}, {{0x10ec4,5},{0xd0c,2}}, {{0x845e,6},{0x2b,3}}, + {{0x14bc,7},{0x1058,9}}, {{0x716e,5},{0x1f,2}}, {{0x24475,6},{0x6f6c,2}}, {{0x23ce,4},{0xd0d,2}}, + {{0x26f1,4},{0xb8f,2}}, {{0x20bb,3},{0x5af9,6}}, {{0x1cbf,5},{0xae0,1}}, {{0x178c,3},{0xbd6,2}}, + {{0x1b4e4,1},{0x432,2}}, {{0xc25,5},{0xb55,2}}, {{0x10ed,2},{0xd5c,1}}, {{0x10fb,3},{0xb48,2}}, + {{0x143c,8},{0xc7b,4}}, {{0x46f4,4},{0x109f,3}}, {{0x20e8,4},{0xb52,2}}, {{0x1308,3},{0x1197,4}}, + {{0x17bc,3},{0xbe4,1}}, {{0xbcb,3},{0xae2,2}}, {{0x1c,1},{0xae6,3}}, {{0x4cd8,6},{0x1498,4}}, + {{0xaf3,4},{0x6f96,2}}, {{0x1084,3},{0xbd3,3}}, {{0x27,1},{0x2d,1}}, {{0x41be,3},{0x10f2,1}}, + {{0x10f0,1},{0xd1b,1}}, {{0x2322,6},{0x2dc0,6}}, {{0xeb1,2},{0x10dc,2}}, {{0xf0e,6},{0xd7f,3}}, + {{0xd8b0,5},{0x2b,3}}, {{0x17b31,5},{0xb78,2}}, {{0xadce,5},{0x60fc,6}}, {{0x1ed51,3},{0x22cf8,1}}, + {{0xcdd9,6},{0x2279,4}}, {{0x1adc3,6},{0x14e2,3}}, {{0x2d64,6},{0x1393,3}}, {{0x5fe0,4},{0xb8f,2}}, + {{0x9e9,2},{0x532,24}}, {{0x423c,3},{0x1d,1}}, {{0xaad1,3},{0xb4b,2}}, {{0x16fc,4},{0x4652,6}}, + {{0xae2,1},{0xcdf,3}}, {{0x6ac3,3},{0xb2e,2}}, {{0x1e,2},{0xb264,4}}, {{0x15ec,10},{0xb52,5}}, + {{0x1b6dd,2},{0x1b6f5,2}}, {{0x422e,3},{0x2b,1}}, {{0x95fe,8},{0x2574,2}}, {{0xd41,3},{0xde2,4}}, + {{0xcbd,3},{0xb55,2}}, {{0xb8b,2},{0xd7f,3}}, {{0x29ecd,3},{0x278af,1}}, {{0x2dfe,5},{0x2b,1}}, + {{0x1097,4},{0x12be,3}}, {{0x2324,4},{0x2b,2}}, {{0x1f8f,8},{0x10dc,2}}, {{0x422e,3},{0xbd8,2}}, + {{0x278f3,2},{0x924,1}}, {{0xd41,4},{0x2211,3}}, {{0x28f6,2},{0x202c,5}}, {{0x278f3,2},{0x27897,1}}, + {{0x94f6,7},{0x1f13,4}}, {{0xf74,4},{0xc1c,2}}, {{0xd5c,1},{0x28da,1}}, {{0x734,2},{0x1ed58,1}}, + {{0x2b,1},{0x50fd,5}}, {{0xaf2,1},{0xc67,2}}, {{0x2322,6},{0xaec,2}}, {{0x709c,2},{0x24873,2}}, + {{0x2e44,5},{0xbc0,2}}, {{0xb2f,1},{0x1421,3}}, {{0x17be,2},{0x1c,1}}, {{0xeec,5},{0x11c4,6}}, + {{0xbe7,1},{0xaaec,2}}, {{0x2793d,5},{0x278d6,1}}, {{0xdf0,2},{0x2b,3}}, {{0x1040,6},{0x9ea4,5}}, + {{0x31e0,5},{0x1ed0,4}}, {{0xf63,5},{0x240c,6}}, {{0x2796,3},{0x26c6,1}}, {{0x40b2,4},{0x146b0,6}}, + {{0x2859,5},{0xb48,2}}, {{0xf99,4},{0x1c8f,3}}, {{0xed8f,5},{0x12ff,3}}, {{0x2864c,1},{0x2864c,1}}, + {{0x41da,3},{0x1089,2}}, {{0xc9a,2},{0x21be,4}}, {{0x1ab2,4},{0x1757,5}}, {{0x274d,3},{0xb2c0,4}}, + {{0xb44,3},{0xc1c,2}}, {{0x1a5c,3},{0xb2e,2}}, {{0xdba,4},{0xaea,1}}, {{0x18094,6},{0x1b,1}}, + {{0x178c,3},{0xeb2,1}}, {{0x1084,3},{0x763c,3}}, {{0x13188,5},{0x84f6,4}}, {{0xb12e,3},{0x16f8,3}}, + {{0x2a9f,6},{0xb2c,2}}, {{0x2b,2},{0x25da,3}}, {{0x1761,3},{0x2d,1}}, {{0x1f0f,3},{0xfe5,2}}, + {{0x14616,5},{0x2693,3}}, {{0xceb,3},{0xc32,5}}, {{0x9a9,1},{0x27c9b,2}}, {{0x10fb,3},{0x1761,4}}, + {{0xaea,2},{0xc78,3}}, {{0x4351,2},{0x27b6,1}}, {{0xae7,1},{0x1a,2}}, {{0x13a18,6},{0xdfb,3}}, + {{0xa2d6,5},{0x89f7,5}}, {{0x415c,5},{0x2eb9,4}}, {{0xbde,3},{0x174e,3}}, {{0x1084,3},{0xa4e1,5}}, + {{0x125c,8},{0x1058,4}}, {{0xc52,3},{0xb8f,2}}, {{0x7162,4},{0xb8f,2}}, {{0xbeb,2},{0x1cef,3}}, + {{0x3694,4},{0x12b92,3}}, {{0x1051,4},{0xb8f,2}}, {{0x2789b,3},{0x116d,1}}, {{0x41da,3},{0x16f8,3}}, + {{0x124c,5},{0xb82,3}}, {{0x16a4,4},{0xfa3,4}}, {{0xc17,3},{0x1e,1}}, {{0xd1b,1},{0xb78,2}}, + {{0xc49,3},{0x25aa0,3}}, {{0xac8c,2},{0xaf2,1}}, {{0xb82,2},{0x10dc,2}}, {{0x20bb,3},{0xdf0,2}}, + {{0xb6e,2},{0x2d,1}}, {{0x20bb,3},{0x1a5c,3}}, {{0xd5c,1},{0x94a5,4}}, {{0xf52,4},{0x4e63,4}}, + {{0x5442,7},{0xb2f,1}}, {{0xb9c,2},{0x323c,2}}, {{0x1055,3},{0x1701,3}}, {{0x1254,3},{0x1257,5}}, + {{0x178c,3},{0x166af,6}}, {{0xd5d7,5},{0xcc0,3}}, {{0x2b8e,3},{0xb7c,2}}, {{0x441c,3},{0x102f9,3}}, + {{0x70b0,4},{0x1a328,2}}, {{0xcd9,5},{0x1045,3}}, {{0xbed,2},{0x1ae2,2}}, {{0x441c,3},{0x288cf,2}}, + {{0x1ad0,4},{0x139f,3}}, {{0x10f0,1},{0xbeb,1}}, {{0x10fb,3},{0x6224,8}}, {{0x2d10,9},{0xc7b,4}}, + {{0x16bc,4},{0x1361,2}}, {{0x428b,2},{0x428d,3}}, {{0xb82,2},{0xff7,5}}, {{0x122c,5},{0x4590,5}}, + {{0xae7,1},{0x1c,1}}, {{0xa22e,4},{0xec2,2}}, {{0x1ed58,1},{0x948,1}}, {{0xca7,3},{0x1f,1}}, + {{0x1a5d1,6},{0x5396,3}}, {{0xc25,9},{0xe08,7}}, {{0x219c,4},{0x1961,6}}, {{0x24430,2},{0x10f6,1}}, + {{0x2b,2},{0x1f,2}}, {{0x1972,2},{0xa15d,4}}, {{0x1098,3},{0x2288,4}}, {{0x174e,3},{0xdf0,2}}, + {{0xbeb,1},{0x283e,2}}, {{0x423c,3},{0x4a30,4}}, {{0x10e1,5},{0xb54,4}}, {{0x14fc,5},{0xce8,3}}, + {{0x6d81,3},{0xaf2,1}}, {{0xaf1,1},{0xc89,2}}, {{0x126c0,9},{0xae7,1}}, {{0x6c97,5},{0x2680,5}}, + {{0x1a,2},{0xae2,1}}, {{0x1d55,8},{0xb52,5}}, {{0x1b,1},{0x2b,1}}, {{0xe313,8},{0x1257,3}}, + {{0x804,2},{0x70d2,2}}, {{0xc25,3},{0xb85,2}}, {{0x39f8,5},{0xb2c,2}}, {{0xae0,1},{0x10f7,1}}, + {{0x24b7,6},{0x24bd,4}}, {{0x6f90,2},{0x1b6f5,2}}, {{0x2789b,3},{0x116c,1}}, {{0x116d,1},{0x924,2}}, + {{0xcd9,5},{0x2264,4}}, {{0x142c4,8},{0xae7,1}}, {{0x15c27,8},{0xae7,1}}, {{0x415e,3},{0x43de,5}}, + {{0x257a,4},{0xe6d,2}}, {{0xd0f,4},{0x1cef,3}}, {{0x397a,5},{0x1308,3}}, {{0xae6,2},{0x1ed0,4}}, + {{0xd57,2},{0xb78,2}}, {{0xf25f,5},{0xf264,6}}, {{0x1960,4},{0xb54,4}}, {{0x4d19,6},{0x4875,5}}, + {{0x1c56,7},{0x7a5e,4}}, {{0xd41,3},{0x187c,3}}, {{0x10ec4,5},{0xdf0,2}}, {{0xa246,4},{0x1c1d1,4}}, + {{0x27,1},{0xdf0,2}}, {{0x3704,6},{0xb63,3}}, {{0x17bc,4},{0xd8e,9}}, {{0xbb5,1},{0x1dff,2}}, + {{0x82ea,11},{0xae7,1}}, {{0x4fbd,4},{0x11f2,3}}, {{0xae2,1},{0xd57,2}}, {{0xeca,5},{0x7a6a,4}}, + {{0x1b4a6,4},{0xae7,1}}, {{0x5102,5},{0xb78,2}}, {{0x10fb,4},{0x20b5,3}}, {{0x70c8,2},{0x244c3,2}}, + {{0x4459,3},{0xae7,1}}, {{0x2bb2,8},{0x25ee,4}}, {{0x474f,6},{0xcc3,4}}, {{0x10ea,3},{0x1761,4}}, + {{0x638d,8},{0xd60,5}}, {{0x27b6,1},{0x179cf,2}}, {{0xfef4,4},{0x70a8,4}}, {{0x2589,7},{0x11e4,8}}, + {{0x1ab2,4},{0x10dc,2}}, {{0xde9,1},{0xb78,2}}, {{0x10ea,3},{0xb47,2}}, {{0x2796,3},{0x27b6,1}}, + {{0x70c6,4},{0xfeee,2}}, {{0x20bb,6},{0x2b,3}}, {{0xc49,3},{0xaea,2}}, {{0xceb,3},{0xa5de,4}}, + {{0x4362,4},{0xbb4,2}}, {{0x139c,6},{0xb2f,1}}, {{0x271e,3},{0x10f0,1}}, {{0x374a,6},{0x1555,7}}, + {{0x30,128},{0x30,64}}, {{0x10c8,3},{0x49ae,4}}, {{0x10b7,4},{0x74ae,4}}, {{0x10f7,1},{0x1878,1}}, + {{0xbde,3},{0xcb8,2}}, {{0x3234,3},{0xb2c,2}}, {{0xb31,1},{0x27d8b,2}}, {{0xeec,5},{0xb79,2}}, + {{0x6d8e,3},{0xb64,2}}, {{0x10ea,3},{0x140f,5}}, {{0x2b5e,9},{0x2b75,5}}, {{0x10ef,1},{0xc3d,3}}, + {{0x804,2},{0x96f,2}}, {{0xbb5,1},{0xb47,2}}, {{0x5997,6},{0x1372,3}}, {{0xb6e,2},{0x21,2}}, + {{0x25c5,5},{0x7b33,7}}, {{0x1e45,3},{0x187c,3}}, {{0xbde,3},{0xdf0,2}}, {{0x20bb,3},{0xb78,2}}, + {{0x10f0,1},{0xae6,2}}, {{0x1a,1},{0xca7,3}}, {{0x2409,5},{0xae7,1}}, {{0x3846,5},{0x1520,2}}, + {{0xc37,3},{0xc4d,2}}, {{0x2e98,9},{0xb54,3}}, {{0x24462,1},{0x2867e,2}}, {{0xae3,2},{0xb55,2}}, + {{0x27b4,3},{0x1ae2,2}}, {{0x290c,2},{0x40b6,3}}, {{0x85de,5},{0xd256,4}}, {{0xae7,2},{0x1c,1}}, + {{0x133c2,6},{0xaba2,4}}, {{0xee8,3},{0xcd65,4}}, {{0xae7,1},{0xbc1,2}}, {{0x178c,3},{0x2e69,5}}, + {{0x3234,3},{0xc4d,2}}, {{0x101d4,6},{0xb78,2}}, {{0x28,1},{0xfdf,2}}, {{0x312a,5},{0xc55,2}}, + {{0x85de,5},{0x2746,3}}, {{0x95fe,8},{0xc7b,4}}, {{0x71da,6},{0xb52,5}}, {{0xb86,3},{0x5275,4}}, + {{0xd41,3},{0x2bfd,2}}, {{0xcfd,6},{0x1b80,4}}, {{0x78b2,5},{0xb7d,2}}, {{0x36be,5},{0xbb1,3}}, + {{0xbe0,1},{0x10ec,1}}, {{0xcd5,2},{0xa45d,4}}, {{0x26f1,4},{0xc67,3}}, {{0xae0,1},{0x263f,3}}, + {{0xb72,2},{0x101c,2}}, {{0x432,1},{0x2445e,1}}, {{0x10a0a,8},{0xd0d,2}}, {{0xddc,4},{0xaec,2}}, + {{0xb66,2},{0x10e1,3}}, {{0x1e54,6},{0x5396,3}}, {{0xd65,3},{0xb743,3}}, {{0xadf,2},{0x2d,1}}, + {{0xc37,3},{0xae2,1}}, {{0x286a,2},{0x7524,6}}, {{0x9e9,2},{0x532,12}}, {{0xc77,2},{0x28,1}}, + {{0xae7,1},{0x2d,1}}, {{0x5671,5},{0x139e,2}}, {{0xaf1,1},{0xb2f,1}}, {{0x134c,5},{0x18ca,3}}, + {{0x1b13e,3},{0x1173,2}}, {{0x423c,3},{0xadf,2}}, {{0x2700,5},{0x28db,3}}, {{0xb55,2},{0x28,1}}, + {{0x2793d,5},{0x278dc,1}}, {{0x12c4c,5},{0x25df,4}}, {{0x3ee4,5},{0x1b4f,3}}, {{0x10fb,6},{0x1dac,3}}, + {{0xbc18,5},{0x4591,4}}, {{0xec50,5},{0x1fe4,5}}, {{0x10f2,1},{0x9b41,5}}, {{0x10e1,3},{0xb48,2}}, + {{0xd65,3},{0xb55,2}}, {{0x3720,10},{0x18d8,3}}, {{0x14ee2,4},{0x4d56,4}}, {{0x145e4,4},{0x1d,1}}, + {{0x1aa3,10},{0x1c25,4}}, {{0x30,2},{0x24a30,2}}, {{0x10ca,1},{0xde2,4}}, {{0x142e,1},{0x12f1,3}}, + {{0xbe0,1},{0x1955e,6}}, {{0xceb,3},{0x4ab0,3}}, {{0xb7f,3},{0x43a2,5}}, {{0xc25,4},{0xd8e,4}}, + {{0x135c,5},{0xb2f,1}}, {{0x271e,3},{0xaf2,1}}, {{0x319a,5},{0xeb2,1}}, {{0x2796,3},{0xae7,2}}, + {{0xa7d,6},{0xa7d,6}}, {{0x2912,4},{0x28be,3}}, {{0x78ca,4},{0xaf2,1}}, {{0x4a75,6},{0xb63,2}}, + {{0x43e3,1},{0xae2,1}}, {{0x122c,4},{0x8c46,4}}, {{0x1e,1},{0x5a50,5}}, {{0x3234,3},{0x1a,2}}, + {{0x219c,4},{0x46e4,3}}, {{0x4a75,5},{0x22c0,3}}, {{0x2b,2},{0x1f13,4}}, {{0x1f,1},{0xbb4,2}}, + {{0x271e,3},{0x1b693,2}}, {{0xbe0,1},{0xaf1,1}}, {{0xe97a,6},{0x2b,3}}, {{0x734,1},{0x780,1}}, + {{0x14ff0,4},{0xc67,3}}, {{0x1a0d,5},{0x1f,1}}, {{0xc37,3},{0xc1c,2}}, {{0x26c6,1},{0xae7,1}}, + {{0xd65,3},{0xcb8,3}}, {{0x27b6,1},{0xdf0,2}}, {{0xc37,3},{0x10f0,1}}, {{0x3234,3},{0xc0c3,3}}, + {{0xba4a,6},{0x7158,4}}, {{0x6d8e,3},{0x67c0,3}}, {{0x1e,1},{0xc1c,2}}, {{0x1084,4},{0xcb8,2}}, + {{0x7d6e,6},{0x372a,4}}, {{0x10ca,1},{0xaec,2}}, {{0x265b,4},{0x1aa6,3}}, {{0xfef8,6},{0x1a328,2}}, + {{0x10f2,1},{0x284e,3}}, {{0xb7d,1},{0x2b,2}}, {{0xdba,6},{0xdc0,6}}, {{0x28,1},{0x1d,1}}, + {{0xb60,2},{0xae2,1}}, {{0x27b4,3},{0xae2,1}}, {{0x24a2d,2},{0x1ed58,1}}, {{0x10f2,1},{0x10f2,1}}, + {{0xa49e,10},{0xd0d,2}}, {{0xd54,1},{0x10fa,1}}, {{0xb6c,3},{0x1d5a,3}}, {{0x1040,6},{0x2af4,4}}, + {{0x6f62,4},{0x6f8a,2}}, {{0xde9,1},{0x1a9d,3}}, {{0xbcb,3},{0x1d,1}}, {{0xb6c,6},{0xb55,3}}, + {{0xbcb,3},{0x59f5,3}}, {{0xceb,3},{0xae2,1}}, {{0xfdd,2},{0xd48,2}}, {{0x1084,3},{0x1318b,4}}, + {{0xcde,3},{0x1f,2}}, {{0xb2c,2},{0xb52,5}}, {{0x2324,4},{0x1ba5,3}}, {{0x1b237,4},{0x1b23b,4}}, + {{0xe53,8},{0x4ae5,5}}, {{0xae2,2},{0xc1c,2}}, {{0x146c,6},{0x1357,5}}, {{0x10ea,3},{0xb70,2}}, + {{0x76c6,9},{0xae7,1}}, {{0x1089,2},{0xb47,2}}, {{0x55d5,8},{0x11b8,4}}, {{0x28da,1},{0x27b6,1}}, + {{0x6d8e,3},{0x10dc,2}}, {{0x5b1d,5},{0x1257,3}}, {{0xae2,1},{0xcbd,3}}, {{0xde2,3},{0xd17,3}}, + {{0x8c4,4},{0x30,64}}, {{0xa6c6,5},{0x2b,3}}, {{0xde9,1},{0xcc0,3}}, {{0xcab,3},{0x11ef,2}}, + {{0xd1b,1},{0x2b,3}}, {{0xb78,2},{0x22c0,3}}, {{0x27cea,1},{0x251d8,2}}, {{0x13612,5},{0x2279,4}}, + {{0xc4d,2},{0xc67,2}}, {{0x1c56,7},{0xb2c,4}}, {{0xdd5,4},{0xb63,2}}, {{0x16cc,4},{0x1694,2}}, + {{0xf96,7},{0x35d7,5}}, {{0xbeb,1},{0xdf5,3}}, {{0x11e1,3},{0x3b26,5}}, {{0x1051,4},{0x3d9d,5}}, + {{0x39ce,5},{0xe1ef,6}}, {{0xb7c,2},{0x11b8,4}}, {{0x924,4},{0x924,2}}, {{0xb87,3},{0x5f90,3}}, + {{0x175c,9},{0xae7,1}}, {{0xd65,3},{0xb82,2}}, {{0xb7f,3},{0xb2c,2}}, {{0x1095,4},{0x6809,4}}, + {{0xc37,3},{0x971a,4}}, {{0x80c2,6},{0xf5e,5}}, {{0xae0,1},{0x11f57,6}}, {{0xcde,3},{0x27,1}}, + {{0xbe0,1},{0x27b6,1}}, {{0x2b335,2},{0x9a9,1}}, {{0x159c,4},{0xe77,3}}, {{0x57f7,6},{0xeb3,3}}, + {{0x422e,3},{0xc67,3}}, {{0x1040,6},{0xc89,3}}, {{0x27,1},{0x2c,2}}, {{0x969,2},{0x244ed,2}}, + {{0x20bb,3},{0x2b,3}}, {{0xbfa9,7},{0xb2e,2}}, {{0xb6cf,8},{0xae7,1}}, {{0xb70,2},{0xd0b,4}}, + {{0xeec,7},{0xeb4,3}}, {{0x1e4a7,5},{0x2573,3}}, {{0x1878,1},{0x10f0,1}}, {{0x17b9f,5},{0x14d6c,4}}, + {{0x105a8,6},{0x2b,3}}, {{0x1a0d,5},{0x2746,3}}, {{0x2445f,1},{0x19,1}}, {{0x4a27,4},{0x67c0,3}}, + {{0xae7,2},{0x68c2,4}}, {{0x177c,3},{0xaec,2}}, {{0xeb2,1},{0xb65,2}}, {{0xae2,1},{0xbb4,4}}, + {{0x28,2},{0xbbf,2}}, {{0xb72,2},{0xb78,2}}, {{0x244b9,2},{0x244c7,2}}, {{0x7162,4},{0x1097,5}}, + {{0x24462,1},{0x19,1}}, {{0x27d4,4},{0xb9d,3}}, {{0x4db5,6},{0x284e,3}}, {{0x15a1,3},{0xc67,2}}, + {{0x3242,5},{0xb52,6}}, {{0x14b6,2},{0x1a,1}}, {{0x423c,3},{0x1089,3}}, {{0x1095,3},{0xb85,2}}, + {{0x397a,5},{0xeb2,1}}, {{0x178c,3},{0xca7,2}}, {{0x16272,6},{0xae7,1}}, {{0xe31,5},{0xc62,3}}, + {{0xb71,2},{0x1f,1}}, {{0x27903,3},{0x278d6,1}}, {{0x27903,3},{0x278dc,1}}, {{0x21da,8},{0x1053,5}}, + {{0x1ed51,3},{0x1ed53,1}}, {{0x1e,1},{0xba7,3}}, {{0x4bba,9},{0x1cac,4}}, {{0x1c,1},{0xb52,2}}, + {{0x19b3,7},{0xb2e,2}}, {{0x10fb,3},{0x1ae32,2}}, {{0xa4b,4},{0x1b887,2}}, {{0xe0f,11},{0xb7a,5}}, + {{0x1f0f,4},{0xce8,3}}, {{0x17e93,5},{0xb47,2}}, {{0x12c56,7},{0x2b,3}}, {{0x2720,2},{0x2b,1}}, + {{0x1434,3},{0xb63,2}}, {{0xdba,4},{0x53f8,3}}, {{0xaf1,1},{0xfdd,2}}, {{0x43e3,1},{0x1d8e,3}}, + {{0xae5,1},{0xbb4,2}}, {{0x2ae0,5},{0x2d,1}}, {{0xb2e,2},{0x1aa6,3}}, {{0x4e85,9},{0xb2e,2}}, + {{0xb7d,1},{0xbd6,2}}, {{0x2446c,1},{0x24461,1}}, {{0xec2,2},{0x1361,2}}, {{0xfd9e,4},{0xb2f,1}}, + {{0x1b,1},{0x2b76,3}}, {{0x3694,4},{0xde2,4}}, {{0x999a,9},{0xb65,2}}, {{0xb73,2},{0xaea,1}}, + {{0x24f87,2},{0x1ed58,1}}, {{0x9a9,1},{0x432,1}}, {{0x28,1},{0x1e,2}}, {{0xd1b,1},{0x1d,1}}, + {{0xcd9,5},{0x2237,7}}, {{0x8d52,7},{0x1916,5}}, {{0xbe0,1},{0xa2cd,5}}, {{0x1773,3},{0x52c6,3}}, + {{0x2e8a,6},{0xfb1,2}}, {{0x13a18,6},{0xcc0,3}}, {{0x10ec,1},{0x10ec,1}}, {{0x198cd,6},{0x2b,3}}, + {{0xcb5,3},{0x4687,5}}, {{0xb52,2},{0x25ee,4}}, {{0x10fb,3},{0xee1,3}}, {{0xbb3,2},{0x11ef,3}}, + {{0x14cc,4},{0x1f,1}}, {{0x244b9,2},{0x159cb,2}}, {{0x31c4,8},{0xb2c,4}}, {{0x422e,3},{0x2574,2}}, + {{0x97de,9},{0x10dc,2}}, {{0x30ba,5},{0xcd65,4}}, {{0x37d6,5},{0x12c33,5}}, {{0xae5,1},{0xde2,3}}, + {{0xb52,2},{0x2b,1}}, {{0xb66,2},{0xaf1,1}}, {{0x1f,1},{0x10dc,2}}, {{0xcd9,3},{0x11ef,3}}, + {{0xddc,4},{0x2279,4}}, {{0x10fd,2},{0xb8f,2}}, {{0xfdeb,5},{0xaf2,1}}, {{0x9e3e,8},{0x14a8,4}}, + {{0x1878,1},{0x1098,4}}, {{0x4606,3},{0x7029,5}}, {{0x878e,9},{0x2b,3}}, {{0x1cce,6},{0xdf5,7}}, + {{0x10c8,3},{0x3e16,3}}, {{0xc37,3},{0x4e98,3}}, {{0x14454,7},{0x10dc,2}}, {{0x4fa3,7},{0x1081,3}}, + {{0x2b,1},{0xbd6,8}}, {{0xd41,3},{0xc77,2}}, {{0x532,2},{0x1b149,2}}, {{0x2789b,3},{0x278a9,1}}, + {{0xd5c,1},{0xb2f,1}}, {{0x8a49,2},{0x2b,1}}, {{0xbde,3},{0x14b6,2}}, {{0x12cba,6},{0x4d08,4}}, + {{0x17bc,3},{0xbe7,1}}, {{0xbe4,1},{0xcbc,4}}, {{0xbeb,1},{0x1878,1}}, {{0x10ea,3},{0xbd3,3}}, + {{0x3774,4},{0x28,1}}, {{0x1084,3},{0x7526,5}}, {{0x54aa,7},{0xe1d,3}}, {{0x29e8c,3},{0x1b6ab,1}}, + {{0x122c,4},{0xaf1,1}}, {{0xcfd,4},{0x2742,3}}, {{0x20bb,3},{0xd7f,3}}, {{0x147c,5},{0x1d,1}}, + {{0x10f7,1},{0xcb8,3}}, {{0x415c,5},{0x1f,2}}, {{0x10f2,1},{0xdf0,2}}, {{0x3234,3},{0xc34,3}}, + {{0x265b,4},{0xefda,5}}, {{0x14dc0,6},{0x2b,2}}, {{0x27e20,2},{0x432,1}}, {{0xb2f,1},{0x1b4f,3}}, + {{0xae5,1},{0xae6,2}}, {{0xf212,3},{0xaf62,2}}, {{0x734,2},{0x2445e,1}}, {{0x2aee,10},{0x2b,3}}, + {{0xb67,2},{0xc67,2}}, {{0xdfe,5},{0x1307,3}}, {{0xce2,3},{0xae7,1}}, {{0x13bc,7},{0xb2c,2}}, + {{0xddc,6},{0xf10,3}}, {{0x272d,5},{0xb2c,4}}, {{0x3846,4},{0xe6d,2}}, {{0x1b,1},{0xc1e,2}}, + {{0x1b7bb,6},{0x70a0,4}}, {{0x178c,3},{0x1aa6,3}}, {{0x12878,5},{0x1b,1}}, {{0xb9c,2},{0x16ce,4}}, + {{0x178c,3},{0x1878,1}}, {{0xc49,3},{0xeb2,1}}, {{0xb75,3},{0xb78,2}}, {{0x10f7,1},{0x10ca,1}}, + {{0x2796,3},{0x12fe,2}}, {{0x141c,5},{0x2195,3}}, {{0x318c,5},{0xcd65,4}}, {{0xca5,2},{0x22dd,3}}, + {{0xf52,5},{0x5a52,4}}, {{0x6d8e,3},{0x1308,3}}, {{0xae6,3},{0x28,1}}, {{0xbde,3},{0xd5c,1}}, + {{0x142c,3},{0x28,1}}, {{0x1ed4b,2},{0x1ed4b,2}}, {{0x2746,3},{0x4463,6}}, {{0x423e,1},{0x14eb3,3}}, + {{0x1040,5},{0x1d,1}}, {{0xd0f,4},{0x187c,3}}, {{0xe78,3},{0xb55,2}}, {{0x41ef,2},{0x12be,3}}, + {{0xb2f,1},{0x43bd,4}}, {{0x15ac,5},{0x9a2f,3}}, {{0x14d5,3},{0xb8f,2}}, {{0x262e,7},{0xa4e1,5}}, + {{0x10c8,3},{0x1d,1}}, {{0x422e,3},{0xbbf,2}}, {{0x24,1},{0x2445e,1}}, {{0x2445f,1},{0x1b6cb,1}}, + {{0x159c,4},{0x2988,4}}, {{0xcd9,3},{0x132f,3}}, {{0x392c,4},{0xeb2,1}}, {{0x3250,4},{0xae2,2}}, + {{0x12ac,5},{0x2680,5}}, {{0x194b9,5},{0x2db1,3}}, {{0xcaa,4},{0x1719,3}}, {{0x7140,4},{0x2f9b,3}}, + {{0x1ab2,4},{0x2d,1}}, {{0xde9,1},{0x28,1}}, {{0x1f8e1,5},{0xd91,2}}, {{0xc25,4},{0xc17,3}}, + {{0xa7aa,7},{0x887b,3}}, {{0x41da,3},{0xb55,2}}, {{0x2237,3},{0x1a,2}}, {{0x4db5,6},{0xc55,2}}, + {{0x133c,6},{0x1342,6}}, {{0xd41,3},{0x114f,3}}, {{0xbcb,3},{0xd892,5}}, {{0x441c,3},{0x10dc,2}}, + {{0x2bfc,2},{0xae7,1}}, {{0xae7,2},{0xb52,2}}, {{0xc13,5},{0x1931,6}}, {{0xbe7,1},{0x1878,1}}, + {{0x734,1},{0x159c8,1}}, {{0x6783,8},{0x1d8a,3}}, {{0xf6ce,4},{0x10ef,1}}, {{0x441c,3},{0xce3,2}}, + {{0x12f12,5},{0x2aa0,3}}, {{0x4e97,3},{0xe367,4}}, {{0x41ef,2},{0xdf0,2}}, {{0x1ab2,4},{0x1197,4}}, + {{0xbc1,2},{0xae7,1}}, {{0x20bb,3},{0xd0d,2}}, {{0x2b,2},{0xff7,5}}, {{0xc52,2},{0x1260,4}}, + {{0x6380,9},{0xb78,2}}, {{0xb8c,2},{0x1d11,5}}, {{0x3234,3},{0x9133,3}}, {{0x181c,3},{0xb7d,1}}, + {{0x13c34,7},{0x2b,3}}, {{0x6b86,10},{0xc67,2}}, {{0x70a0,2},{0x70a6,2}}, {{0x7162,4},{0x4326,4}}, + {{0x3a3e,5},{0xe415,5}}, {{0x1a0d,5},{0xae7,1}}, {{0x141f2,5},{0x10569,3}}, {{0xb4b,2},{0xba65,6}}, + {{0x70b0,4},{0x1019c,2}}, {{0xb6c,3},{0xae2,1}}, {{0x22cf8,1},{0x2446c,1}}, {{0x2e44,5},{0xae7,1}}, + {{0x1a340,5},{0x2427,3}}, {{0x887b,3},{0x31e2,4}}, {{0x6ac3,3},{0xd0b,3}}, {{0x257a,4},{0xb8f,2}}, + {{0x6d81,3},{0x359b,4}}, {{0x26c4,3},{0xae7,1}}, {{0x12882,5},{0xc1c,2}}, {{0xfef8,6},{0x1016a,2}}, + {{0xddc,4},{0x16f8,3}}, {{0xdba,4},{0x1e,1}}, {{0xc30,2},{0x28,1}}, {{0xae2,2},{0x1f,2}}, + {{0xe6d,2},{0xbc6,2}}, {{0x2b,2},{0xcf68,2}}, {{0x4ba0,7},{0x10c4,4}}, {{0x159c,4},{0x3a39,3}}, + {{0x3712,8},{0xb52,5}}, {{0x24a40,3},{0x2445e,1}}, {{0x35b4,5},{0xb9c,2}}, {{0xbe4,1},{0x1d,1}}, + {{0x1a,3},{0x2b3e,4}}, {{0x239a,11},{0x10dc,2}}, {{0xde9,1},{0xae7,1}}, {{0xba08,6},{0x103a,3}}, + {{0xcab,3},{0x10dc,2}}, {{0x208cc,4},{0x10029,3}}, {{0x1a11,2},{0xaf2,1}}, {{0x1a326,4},{0xaf1,1}}, + {{0x1a76,4},{0xc30,2}}, {{0xae7,1},{0xc3d,3}}, {{0xc64,2},{0x82f4,2}}, {{0x31e2,4},{0x1b391,4}}, + {{0x8d16,5},{0x1ed4,6}}, {{0x2322,6},{0xb71,2}}, {{0x17bc,3},{0xb79,2}}, {{0xfde,2},{0xfde,2}}, + {{0x12143,2},{0x1f,2}}, {{0x887b,3},{0x1b4a6,5}}, {{0x6ac5,1},{0x10f0,1}}, {{0x4188,2},{0x704e,4}}, + {{0x193b,5},{0x1719,3}}, {{0x53a6,7},{0x4569,5}}, {{0xa79e,7},{0xa7a5,5}}, {{0x12116,5},{0xcc0,3}}, + {{0x244b9,2},{0x27d99,2}}, {{0x10fb,3},{0xbd3,3}}, {{0x51ec,5},{0xc29,2}}, {{0x887b,3},{0xb812,3}}, + {{0xc25,4},{0xb9e,2}}, {{0x17ae,1},{0x26c6,1}}, {{0xd0f,11},{0x107e,5}}, {{0x1f44,8},{0xc1e,5}}, + {{0x1029c,6},{0x1a,3}}, {{0x2445e,1},{0x1ed53,1}}, {{0xd65,3},{0xc57,3}}, {{0xcfd,4},{0xcb8,3}}, + {{0x41be,3},{0x1f3b,4}}, {{0x43a2,3},{0xae7,1}}, {{0xb47,2},{0x2b,3}}, {{0xbed,2},{0xc63,3}}, + {{0xd0f,4},{0x13b7a,5}}, {{0x3788,3},{0x12ff,3}}, {{0x82de,6},{0xdf0,2}}, {{0x7170,3},{0x205b4,4}}, + {{0xbc1,2},{0x205dd,5}}, {{0x70ea,3},{0x92e9,5}}, {{0x8c4,4},{0xfebc,6}}, {{0xc25,3},{0xae2,1}}, + {{0xf78,4},{0x43a2,5}}, {{0xedb,5},{0xcb8,3}}, {{0x439a,4},{0x439e,9}}, {{0x3694,4},{0xcf68,2}}, + {{0x61c6,5},{0xb52,5}}, {{0xc25,3},{0xf05,7}}, {{0x17253,6},{0x2b,3}}, {{0xd41,3},{0x28,2}}, + {{0xb9d,3},{0xaf1,2}}, {{0x181c,3},{0x10ba,2}}, {{0xaa98,2},{0xd5c,1}}, {{0x5324,5},{0x25c2,3}}, + {{0x131b0,6},{0x1a,2}}, {{0x2793d,5},{0x116e,1}}, {{0xcf3e,2},{0x1a,1}}, {{0x2020b,3},{0x3a3b,3}}, + {{0xe2dc,5},{0xce8,3}}, {{0xc17,3},{0x1f,4}}, {{0x5277,2},{0xc63,3}}, {{0x3a14,6},{0x6008,4}}, + {{0xb63,2},{0x2b,1}}, {{0x1051,4},{0xa24a,3}}, {{0x10ef,1},{0x28da,1}}, {{0xb7f,3},{0x108b,3}}, + {{0x13bc,7},{0x1d2f,8}}, {{0x11e7,4},{0x10dc,2}}, {{0x1e347,6},{0xae6,2}}, {{0xb44,3},{0x21024,4}}, + {{0x28da,1},{0x628f,6}}, {{0x27d24,3},{0x1b4e3,1}}, {{0xaec,2},{0x28,1}}, {{0x6d81,3},{0xf44,7}}, + {{0x924,2},{0x27897,1}}, {{0x264c,4},{0x16a2,3}}, {{0xcb5,3},{0xbd90,3}}, {{0x153c,6},{0xdf51,5}}, + {{0xae6,2},{0x28,1}}, {{0xbb4,2},{0xbb5,1}}, {{0xd54,1},{0x2d,1}}, {{0x27b6,1},{0xbe0,1}}, + {{0x4c15,5},{0x284e,3}}, {{0xc1e,2},{0xc30,2}}, {{0x6b5f,5},{0xce8,3}}, {{0x10f4,2},{0x1f2c5,2}}, + {{0xc49,3},{0x29,2}}, {{0x88de,5},{0xae2,1}}, {{0xf789,5},{0x1a4ed,3}}, {{0xd0b,3},{0x1150,2}}, + {{0x1084,3},{0xc67,2}}, {{0x15ced,6},{0xb55,3}}, {{0x30,2},{0x432,3}}, {{0x271e,3},{0x5dbb,4}}, + {{0x27b6,1},{0xb85,2}}, {{0x189ca,6},{0x4ab0,3}}, {{0xc49,3},{0xb2f,1}}, {{0x70ea,5},{0xbd4,2}}, + {{0xddc,5},{0x1b4f,4}}, {{0xbb1,3},{0xc7b,4}}, {{0x1e26f,7},{0xae7,1}}, {{0xa7d,4},{0x27d99,2}}, + {{0x159c,8},{0x14a7,5}}, {{0x8c4,4},{0x30,4}}, {{0x511c,6},{0x8560,6}}, {{0x61ac,6},{0x25ee,4}}, + {{0x27d4,4},{0x28e2,6}}, {{0x5483,4},{0x4d56,4}}, {{0x14bc,7},{0xb2c,4}}, {{0xbe0,1},{0x22e3,3}}, + {{0xddc,4},{0x290f,3}}, {{0xd5c,1},{0x2c,2}}, {{0x441c,3},{0xcc0,3}}, {{0xdcb,7},{0x22c0,3}}, + {{0x41be,3},{0x20b6,2}}, {{0x1e,1},{0x5aab,3}}, {{0x271e,3},{0xdf0,2}}, {{0x532,34},{0x30,2}}, + {{0x2742,3},{0xc7b,4}}, {{0x804,2},{0x244e7,2}}, {{0x3758,4},{0x1035,5}}, {{0xbeb,1},{0xae0,1}}, + {{0x5dea,7},{0xc9f,4}}, {{0x1051,7},{0xb2c,4}}, {{0x139e,2},{0x28,1}}, {{0x236d1,5},{0x257c,2}}, + {{0xb63,2},{0x1ed0,4}}, {{0xb2e,2},{0x1c,1}}, {{0x10fb,3},{0x10f7,1}}, {{0xb2e,2},{0x2b,1}}, + {{0xc77,2},{0xbb4,4}}, {{0x20bb,3},{0xb71,2}}, {{0xcd9,3},{0x13f1d,5}}, {{0x6a34,8},{0x1c25,4}}, + {{0x2ae0,5},{0xb7d,2}}, {{0x1e45,6},{0x2b,3}}, {{0x4db5,6},{0xcf0,2}}, {{0x25c2,3},{0x28,1}}, + {{0x709c,2},{0x157f2,2}}, {{0xae2,1},{0xb7d,1}}, {{0xcb8,2},{0xf01,4}}, {{0xaea,1},{0xc63,3}}, + {{0x1084,3},{0x4ab0,3}}, {{0xf87b,5},{0xaf1,2}}, {{0xfda,11},{0x103a,3}}, {{0x4cd8,6},{0x1498,3}}, + {{0x177c,3},{0xadf,2}}, {{0x278e1,2},{0x924,1}}, {{0x27903,3},{0x116c,1}}, {{0x924,2},{0x1b6ab,1}}, + {{0x41da,3},{0xd5c,1}}, {{0x12fe,2},{0x2a16,3}}, {{0x180e,2},{0x1260,4}}, {{0x11ef,3},{0xb78,2}}, + {{0xb4b,2},{0x11e4,4}}, {{0x2789b,3},{0x1b6ab,1}}, {{0x2c76,4},{0xbd1,2}}, {{0x1084,3},{0xba7,3}}, + {{0x2df0,8},{0x1916,5}}, {{0x17be,2},{0x1045,3}}, {{0xbe4,1},{0xe78,3}}, {{0xcd9,5},{0x9813,5}}, + {{0x1084,3},{0xb8d,5}}, {{0x441c,3},{0xeee,5}}, {{0x1a3d9,5},{0x1013,3}}, {{0x2789b,3},{0x278d6,1}}, + {{0xb7f,3},{0x4119,3}}, {{0x1b12c,4},{0x10f6,1}}, {{0x5ddd,6},{0xc20,5}}, {{0xae0,1},{0x411c,4}}, + {{0x57ea,8},{0xce8,3}}, {{0x1ed49,3},{0x24,1}}, {{0x441c,3},{0xeb3,3}}, {{0x80fe,8},{0xb68,4}}, + {{0x1878,1},{0xfde,2}}, {{0xbe0,1},{0xd5c,1}}, {{0xb55,2},{0x10c4,4}}, {{0x16dc,4},{0x30bc,3}}, + {{0xd41,3},{0x7047,5}}, {{0x6ac3,3},{0x1d8e,3}}, {{0x804,2},{0x70ca,2}}, {{0xc25,4},{0xc8a,2}}, + {{0x1051,4},{0x16fcf,3}}, {{0xd54,1},{0xbe7,1}}, {{0xbed,2},{0xd57,2}}, {{0x2f16,8},{0xb52,5}}, + {{0xf30,11},{0x10dc,2}}, {{0x36cc,6},{0xae7,1}}, {{0x178c,3},{0xc77,2}}, {{0x1224c,6},{0xae5,1}}, + {{0x134c,8},{0x12be,3}}, {{0x24f91,2},{0x27d8b,2}}, {{0x1084,3},{0xb54,2}}, {{0xaea,1},{0xbc6,2}}, + {{0xf52,5},{0x1a,3}}, {{0x41da,3},{0x30f5,4}}, {{0xd54,1},{0x12d7,5}}, {{0xae6,3},{0x2b,3}}, + {{0x2331,11},{0xb54,4}}, {{0xb7f,3},{0xb9d,3}}, {{0x4db5,6},{0x1704,3}}, {{0xfdf,2},{0x1e6c,6}}, + {{0x974e,5},{0x4875,5}}, {{0xbeb,1},{0xd44,5}}, {{0x9a9,1},{0x20b19,6}}, {{0x70c6,4},{0x70b4,2}}, + {{0xbb2,2},{0x1150,2}}, {{0x43e3,1},{0xb2f,1}}, {{0x2796,3},{0xdd5,3}}, {{0x884,8},{0x884,8}}, + {{0xf8cf,2},{0xd54,1}}, {{0x27b6,1},{0xaf1,1}}, {{0xba5,4},{0x2b8e,3}}, {{0xaf1,1},{0xb55,3}}, + {{0x12f58,6},{0xb72,3}}, {{0xb2c,2},{0xce8,3}}, {{0x3e04,5},{0xaea,1}}, {{0xc49,3},{0x2d,1}}, + {{0xae2,1},{0xc67,2}}, {{0x27b6,1},{0x10ec,1}}, {{0xd41,3},{0x10dc,2}}, {{0xa8be,5},{0x8cf9,5}}, + {{0x263f,3},{0x28,1}}, {{0x3678,6},{0x2b,3}}, {{0xb24c,5},{0x79f9,4}}, {{0x2dcb,4},{0xc7b,4}}, + {{0x2151,5},{0x7fda,4}}, {{0x66cd,7},{0x2a95,5}}, {{0x10f6,1},{0xd5c,1}}, {{0x2796,3},{0x21,2}}, + {{0x2474d,2},{0x244e7,2}}, {{0x18727,6},{0xaf2,1}}, {{0xa5d6,7},{0xeffe,4}}, {{0x2ce6,9},{0xb7c,3}}, + {{0x2c38,4},{0xb4e4,4}}, {{0xb44,3},{0x4831,4}}, {{0xed8f,5},{0x12ff,2}}, {{0x10fb,4},{0xdfab,3}}, + {{0x2598,8},{0xc32,5}}, {{0x19b3,4},{0xb63,2}}, {{0xfc09,3},{0x114d,2}}, {{0x40b2,4},{0x392d,3}}, + {{0x7102,5},{0xae7,2}}, {{0x47b7,8},{0xf26,3}}, {{0x6d81,3},{0xc3d,3}}, {{0x1b,1},{0xaea,1}}, + {{0xf789,4},{0xfde,2}}, {{0x794e,7},{0x11b8,4}}, {{0x3694,4},{0x1d,1}}, {{0xaef,3},{0x23d9,3}}, + {{0x127ce,6},{0x2b,3}}, {{0x6d8e,3},{0xc30,2}}, {{0xb44,3},{0x535b,4}}, {{0x2061,5},{0xb65,2}}, + {{0x12ac,5},{0x13b5,7}}, {{0x244b3,2},{0x1015e,2}}, {{0x3544,10},{0xae6,2}}, {{0xcd9,4},{0x8493,6}}, + {{0x3db0,5},{0xae7,2}}, {{0x709c,2},{0x159cb,2}}, {{0x417a,2},{0xec2,2}}, {{0xd65,3},{0xc1c,2}}, + {{0xd17,3},{0x22c0,3}}, {{0x16e85,7},{0xd0d,2}}, {{0x27b4,3},{0x10ef,1}}, {{0x1098,3},{0xb64,2}}, + {{0xfe5,3},{0x1c8f,3}}, {{0xca8a,9},{0xd0d,2}}, {{0x1d46,10},{0xc32,5}}, {{0xb44,3},{0xb8a,2}}, + {{0x5c98,5},{0x1354,8}}, {{0x70ea,3},{0x1a,1}}, {{0x28e2,4},{0x10dc,2}}, {{0x1062,6},{0xb48,2}}, + {{0x26151,5},{0xae7,1}}, {{0x1b13e,3},{0x924,3}}, {{0x3be2,9},{0x3bf9,5}}, {{0x122c,4},{0x2ddc,6}}, + {{0x11ec,5},{0xdf5,4}}, {{0x2445f,1},{0x22cf8,1}}, {{0x24432,4},{0x10fa,1}}, {{0x1173,2},{0x924,1}}, + {{0x1b,1},{0x2db1,3}}, {{0x106ca,5},{0xd0b,4}}, {{0xf39e,4},{0x10d24,6}}, {{0xbb5,1},{0xb71,2}}, + {{0x423c,3},{0x5479,6}}, {{0xf212,3},{0xdf0,2}}, {{0xbb5,1},{0xae2,1}}, {{0x10ca,1},{0xb47,2}}, + {{0x61fa,9},{0xd0d,2}}, {{0xb2f,1},{0xc34,2}}, {{0xb48,2},{0x10c3,5}}, {{0x20d9,5},{0x323c,2}}, + {{0x4978,4},{0xb65,2}}, {{0x720a,6},{0xb2c,4}}, {{0xb7f,3},{0x14b6,2}}, {{0x30f5,4},{0xb2e,2}}, + {{0x1ed49,3},{0x24461,1}}, {{0xbe4,1},{0x10ec,1}}, {{0xcc7,3},{0xff7,5}}, {{0x287e7,2},{0x6f8a,2}}, + {{0xed8f,5},{0x38eb,3}}, {{0x1480,3},{0xb85,2}}, {{0x20,2},{0x297a,6}}, {{0x14dc,5},{0xc3d,3}}, + {{0xeeb8,5},{0x1260,4}}, {{0xeb9,6},{0x10e20,4}}, {{0xbb5,1},{0xa2cd,5}}, {{0xedb,4},{0xb52,2}}, + {{0x1b,1},{0x9b41,5}}, {{0xcde,3},{0x43de,5}}, {{0x2789b,3},{0x27897,1}}, {{0x1175c,5},{0xc63,3}}, + {{0x5365,8},{0x2b,3}}, {{0x116c,1},{0x924,3}}, {{0x4728,5},{0x1a9d,3}}, {{0xcb5,3},{0xc0c3,3}}, + {{0xae6,2},{0xb78,2}}, {{0x45fd,5},{0x25fa,7}}, {{0xbb5,1},{0x1dac,3}}, {{0xcb5,3},{0xcb8,3}}, + {{0x166c,6},{0xb64,2}}, {{0x6f62,4},{0x6f78,2}}, {{0xbe4,1},{0xb52,2}}, {{0xae7,1},{0xa532,4}}, + {{0xbde,3},{0x10fa,1}}, {{0x27b6,1},{0xb49,2}}, {{0x27b6,1},{0x10ef,1}}, {{0xc67,3},{0x1019,4}}, + {{0xb6c,3},{0xae0,1}}, {{0x1ae2,2},{0x1a,2}}, {{0x2b,1},{0xcf0,2}}, {{0x19b3,5},{0x19d6,4}}, + {{0x438c,10},{0xd0b,4}}, {{0x5136,6},{0x1717,5}}, {{0x85de,5},{0x2683,5}}, {{0x30,2},{0x709c,4}}, + {{0x29e8c,3},{0x278dc,1}}, {{0x1051,7},{0x1058,9}}, {{0xb66,2},{0xaeb,2}}, {{0x1cbf,5},{0x83eb,5}}, + {{0x944e,6},{0x3b6d,5}}, {{0x278a1,3},{0x924,2}}, {{0x10fb,3},{0xbc1,2}}, {{0x1d91,10},{0x1d8d,4}}, + {{0x278b3,4},{0x278b5,2}}, {{0x10ea,3},{0xb82,3}}, {{0xd41,4},{0xb2e,2}}, {{0xee4a,6},{0xc63,3}}, + {{0x6137,5},{0x284e,3}}, {{0xaf1,1},{0x1916,5}}, {{0x27d2,6},{0x1ba5,3}}, {{0xc37,3},{0x2b,2}}, + {{0x27,1},{0x5dbb,4}}, {{0x2793d,4},{0x27897,2}}, {{0x6b6e,3},{0xb82,3}}, {{0x10ec,1},{0xbe0,1}}, + {{0xd57,2},{0xb65,2}}, {{0xa7da,3},{0x28db,3}}, {{0xa1c2,8},{0x1f13,4}}, {{0xfda,5},{0xfdf,3}}, + {{0x20bb,3},{0x36c1,5}}, {{0x374a,6},{0xeb3,3}}, {{0xceb,3},{0xb71,2}}, {{0xae7,1},{0x1aa6,3}}, + {{0x2106,5},{0xc30,7}}, {{0x10ef,1},{0x10f8,2}}, {{0x9b1a,5},{0xe1d,3}}, {{0x20bb,3},{0x46f8,3}}, + {{0x20e8,4},{0xc8a3,3}}, {{0x1e,1},{0x1c,1}}, {{0xea35,7},{0x2af8,4}}, {{0xc37,3},{0xb8a,2}}, + {{0x5254,5},{0xb52,6}}, {{0xbb5,2},{0xbd8,2}}, {{0x1b13e,3},{0x1b140,2}}, {{0x10ec4,5},{0xb2f,1}}, + {{0xc67,2},{0xbd6,2}}, {{0x1095,3},{0x1ec94,5}}, {{0x70c8,2},{0xc601,2}}, {{0x27903,3},{0x116e,1}}, + {{0x767e,6},{0xb2c,4}}, {{0x41be,3},{0x5194,5}}, {{0xaf2,1},{0xae7,2}}, {{0x2ab6,8},{0x2abe,6}}, + {{0xf1f,5},{0x12be,3}}, {{0xb7d,1},{0xcb8,2}}, {{0x1b6dd,2},{0x70ce,2}}, {{0x25c5,5},{0x1aa6,3}}, + {{0x24462,1},{0x2aeb3,2}}, {{0x1cbf,5},{0x1960,7}}, {{0xbb26,8},{0xb78,2}}, {{0xcc7,3},{0x1942,4}}, + {{0xae9,3},{0xdd3,3}}, {{0x423c,3},{0xb82,2}}, {{0x30,48},{0x30,8}}, {{0xfed0,10},{0xfed2,4}}, + {{0x6d81,3},{0x443e,2}}, {{0x25c5,5},{0xed47,4}}, {{0x96f,2},{0x244c3,2}}, {{0x6c08,4},{0xc67,2}}, + {{0x415c,5},{0xb7d,1}}, {{0xb85,2},{0x1a,2}}, {{0x26e4,4},{0x19f5,9}}, {{0x24462,1},{0x780,1}}, + {{0x1621,4},{0xb78,2}}, {{0x25789,2},{0x1b23d,2}}, {{0xaf1,1},{0x2b3e,4}}, {{0xe9f3,6},{0x1489,3}}, + {{0x10c8,3},{0x10f3,1}}, {{0x1b6cb,2},{0x2445f,1}}, {{0x6d81,3},{0x10f3,1}}, {{0xc4d,2},{0x1a,1}}, + {{0xb6f0,6},{0x2c37,4}}, {{0x3100,6},{0x14e2,3}}, {{0xbcb,3},{0xce8,3}}, {{0x40b2,4},{0x1372,3}}, + {{0x4e85,7},{0x80bd,5}}, {{0x178c,3},{0x26c6,1}}, {{0x70ea,5},{0x36c2,4}}, {{0xbeb,1},{0xae2,1}}, + {{0xae7,1},{0x2b,1}}, {{0x5442,5},{0xae7,1}}, {{0xfef0,6},{0xfefe,2}}, {{0xc1e,2},{0xaea,2}}, + {{0x1d8a,3},{0xb9c,2}}, {{0xaf2,1},{0x1dac,3}}, {{0x271e,3},{0xc67,2}}, {{0x4459,3},{0x1045,3}}, + {{0xdba,5},{0xb79,2}}, {{0xba5,4},{0x12fe,2}}, {{0x16bc,4},{0xc57,3}}, {{0x1a66a,5},{0x12fe,1}}, + {{0xa162,6},{0x2b75,5}}, {{0xf10,3},{0xb55,2}}, {{0x22cf8,1},{0x28633,2}}, {{0x333e,10},{0xb68,4}}, + {{0xd76,7},{0xd8e,9}}, {{0x1a0d,5},{0x4652,6}}, {{0xbe0,1},{0xae2,1}}, {{0x734,2},{0x734,1}}, + {{0x1065,3},{0x78a2,4}}, {{0xffc,7},{0xb2e,2}}, {{0xd41,3},{0xae9,2}}, {{0xcc7,3},{0xcb8,3}}, + {{0xe75,6},{0x10dc,2}}, {{0xbe7,2},{0x1862,3}}, {{0x422e,3},{0xc2e,2}}, {{0x271e,3},{0xc1e,2}}, + {{0x79d2,8},{0x2b,3}}, {{0xb85,2},{0x10c4,4}}, {{0x27,1},{0x52a7,2}}, {{0x17bc,3},{0x10ef,1}}, + {{0x6ac3,3},{0x19b8e,3}}, {{0x43e3,1},{0x15adc,2}}, {{0x20bb,3},{0x4c9c,4}}, {{0xaf3,4},{0xfefe,2}}, + {{0x1878,1},{0x25aa0,3}}, {{0x19b3,5},{0x2a9f,8}}, {{0x1d,1},{0xc77,2}}, {{0x2daa,5},{0x13852,4}}, + {{0xceb,3},{0xae9,2}}, {{0xf52,4},{0x9422,5}}, {{0x4c15,5},{0xba7,3}}, {{0x3ffc,6},{0x10504,4}}, + {{0xc67,2},{0xbb1,3}}, {{0xaea,1},{0xcce,3}}, {{0xd0d,2},{0xee2,2}}, {{0xb9f,2},{0x21,1}}, + {{0xae7,1},{0xca7,2}}, {{0x100b3,4},{0x109f,3}}, {{0xe42,5},{0x139e,4}}, {{0xaf1,1},{0xb52,2}}, + {{0x5ea0,4},{0x227a,3}}, {{0xc25,5},{0x1d5a,3}}, {{0xae6,2},{0xdfb,3}}, {{0x104b8,5},{0x11b8,4}}, + {{0x10f2,1},{0x20,3}}, {{0x2b5e,5},{0x4e63,4}}, {{0x1084,4},{0xb4b,2}}, {{0x10ec,1},{0xb55,2}}, + {{0x1b57,4},{0xde9,1}}, {{0x1b,1},{0x10dc,2}}, {{0xd57,2},{0x28,1}}, {{0x27b6,1},{0xbe4,1}}, + {{0xacba,4},{0x1290,3}}, {{0x3846,4},{0xfb1,2}}, {{0x2e52,8},{0xb52,5}}, {{0x278f3,2},{0x116e,1}}, + {{0x1b57,4},{0x2b,2}}, {{0xb78,2},{0xeb2,1}}, {{0x12fe,1},{0xc229,4}}, {{0xbeb,1},{0x1f2ac,2}}, + {{0x53f4,5},{0xb2c,2}}, {{0x22cf8,1},{0x251de,2}}, {{0xe75,6},{0xae7,1}}, {{0xd0f,4},{0x13b98,5}}, + {{0xb7c,2},{0x28,1}}, {{0x167c,5},{0x16a1,3}}, {{0x10ef,1},{0xb55,3}}, {{0x1878,1},{0xbe0,1}}, + {{0x28,2},{0xb63,2}}, {{0x2afc,7},{0x1704,3}}, {{0x3a36,2},{0x2b,1}}, {{0x1098,3},{0xaf2,1}}, + {{0x2dfe,5},{0xb2c,4}}, {{0x27895,3},{0x116e,1}}, {{0x20bb,3},{0xed47,4}}, {{0x4ab0,3},{0xb78,2}}, + {{0x15220,5},{0x4875,5}}, {{0x43e3,1},{0x10f3,1}}, {{0x1b,1},{0xb2c,2}}, {{0x22cf8,1},{0xb31,1}}, + {{0x1e,1},{0x2045,3}}, {{0x265b,4},{0xb7c,3}}, {{0x145a0,1},{0xd5c,1}}, {{0x6b6e,3},{0x13564,4}}, + {{0x6735,10},{0xb65,2}}, {{0x441c,3},{0xb79,2}}, {{0xbe4,1},{0x1b693,2}}, {{0x14b6,2},{0x142e,1}}, + {{0x6f74,4},{0xff02,2}}, {{0xcb8,3},{0xae7,1}}, {{0x146c,6},{0x2b,1}}, {{0x265b,4},{0xeb2,1}}, + {{0xae0,1},{0x140f,5}}, {{0x1ed49,3},{0x734,1}}, {{0x122ba,6},{0xae7,1}}, {{0xc30,2},{0xd0d,2}}, + {{0x65af,8},{0x4471,3}}, {{0x2793d,5},{0x116d,1}}, {{0x4fbd,4},{0x16629,5}}, {{0x16e2,2},{0xaf2,1}}, + {{0x27,1},{0x10dc,2}}, {{0xb65,2},{0xd17,3}}, {{0xd41,3},{0xb72,2}}, {{0xcd9,5},{0xdf0e,6}}, + {{0xc94b,5},{0x70f0,6}}, {{0x27b4,3},{0xc34,2}}, {{0x53a6,7},{0x53ad,6}}, {{0xf1f,5},{0x6604,6}}, + {{0x20bb,3},{0x8c46,4}}, {{0xba4a,6},{0x4452,5}}, {{0x1089,2},{0x10dc,2}}, {{0x10fb,3},{0xd0b,3}}, + {{0xd692,6},{0x1a35,5}}, {{0xceb,4},{0x174e,3}}, {{0x127ce,6},{0x2939,3}}, {{0x3a3e,7},{0xae7,1}}, + {{0x13bc,4},{0xbd4,2}}, {{0xcb5,3},{0xcc0,3}}, {{0x40b2,4},{0x40b6,4}}, {{0x681f,7},{0xd60,5}}, + {{0x3e12,5},{0x2bfd,2}}, {{0xeb5e,8},{0xaf2,1}}, {{0x1878,1},{0xbb5,1}}, {{0xc37,3},{0x8651,5}}, + {{0x7a6e,5},{0xb52,5}}, {{0x1089,2},{0xcb8,2}}, {{0xceb,3},{0x139e,2}}, {{0x10c8,3},{0xa24a,3}}, + {{0x14616,8},{0xfe5,2}}, {{0x441c,8},{0x2939,3}}, {{0xbe4,1},{0x28,1}}, {{0xb2f,1},{0xb8f,2}}, + {{0x1f,1},{0x1865,2}}, {{0x5c76,4},{0x1b,1}}, {{0xcb5,3},{0xd0b,3}}, {{0x1d11,5},{0x1a,1}}, + {{0xfdd,2},{0xb78,2}}, {{0x181c,3},{0xd91,2}}, {{0x10ef,1},{0x43cf,5}}, {{0x422e,3},{0x2bfc,3}}, + {{0x46e1,4},{0x10dc,2}}, {{0x7162,4},{0x3921,5}}, {{0xb54,2},{0x21,1}}, {{0x4701,5},{0xb2c,2}}, + {{0x2b,1},{0xb71,2}}, {{0xb44,3},{0x29d9,3}}, {{0x1d73,6},{0xd0b,4}}, {{0x10fb,3},{0xbeb,1}}, + {{0x6d81,3},{0xc55,2}}, {{0x3f9a,4},{0x3c11,4}}, {{0x16bc,4},{0xaea,1}}, {{0x1a67,7},{0xb79,2}}, + {{0xb55,2},{0xfe5,2}}, {{0x2322,6},{0x10c4,4}}, {{0x103fa,5},{0x1daa,5}}, {{0x30,2},{0x10e1,3}}, + {{0x153c,6},{0x139e,4}}, {{0xc1ae,6},{0xb78,2}}, {{0x1a2e,3},{0x11b8,4}}, {{0xcc7,3},{0x2b,2}}, + {{0x10f1e,6},{0x2b,3}}, {{0x29e87,3},{0x2445f,1}}, {{0xe64,5},{0x4de1,3}}, {{0x6f55,4},{0x74ae,4}}, + {{0x2ae0,5},{0x8c45,5}}, {{0xfe38,4},{0x1f,1}}, {{0xfc07,5},{0x114d,2}}, {{0x41da,3},{0x1862,3}}, + {{0xb7f,3},{0xcb8,2}}, {{0x10fb,3},{0x69f7,3}}, {{0x1b6e1,2},{0xff26,2}}, {{0xdba,6},{0x1372,3}}, + {{0xb2c,2},{0xc57,3}}, {{0x27903,3},{0x116d,1}}, {{0x10f2,1},{0x10ef,1}}, {{0xae5,1},{0xb8f,2}}, + {{0x16dc,5},{0x5269,5}}, {{0x15b3f,2},{0xd5c,1}}, {{0x1dec2,4},{0x1b,1}}, {{0xcfd,5},{0x628e,7}}, + {{0xa38a,9},{0xae7,1}}, {{0x1d59,3},{0x139f,3}}, {{0x924,2},{0x924,3}}, {{0x1035,5},{0x103a,3}}, + {{0xba5,4},{0xfdf,3}}, {{0xf0e,5},{0x14b8,4}}, {{0x2a946,3},{0x1b4e3,1}}, {{0xb6c,3},{0x1b22,3}}, + {{0x30,2},{0x1b6dd,8}}, {{0x2df0,8},{0x1498,3}}, {{0x1daf,5},{0xb2e,2}}, {{0x101a,3},{0xae7,1}}, + {{0x4338,8},{0x535a,3}}, {{0xb2f,1},{0xae9,2}}, {{0x6221,6},{0x1ad2,5}}, {{0x141c,5},{0xb8a,2}}, + {{0xde9,1},{0xc3a,3}}, {{0x3996,5},{0x13b5,7}}, {{0x5476,6},{0xec6d,3}}, {{0xae0,1},{0xdd3,3}}, + {{0xcf6,3},{0x1a,1}}, {{0xbb5,1},{0x2af4,4}}, {{0x12ac,5},{0xf6a,3}}, {{0x1fce4,2},{0x152c4,2}}, + {{0x7a6e,4},{0xb9c,2}}, {{0xfc8b,5},{0xe8ba,5}}, {{0x2796,3},{0x28da,1}}, {{0xd76,7},{0xd9f,8}}, + {{0x1aaec,2},{0x10f3,1}}, {{0x20aa9,2},{0xab9c,1}}, {{0x24531,4},{0xfb8b,2}}, {{0x1c,1},{0xaec,2}}, + {{0xeb9,5},{0xb9d,3}}, {{0xf52,5},{0x240c,6}}, {{0x2520a,2},{0x27d8b,2}}, {{0x281d,5},{0xb63,2}}, + {{0x19,1},{0x19,1}}, {{0x2322,8},{0x2318,4}}, {{0x1bfc,6},{0xd57,2}}, {{0x7a06,5},{0x2b,3}}, + {{0xb66,2},{0x2045,3}}, {{0x8d16,5},{0xe954,5}}, {{0x2c76,4},{0xfc6d,3}}, {{0xcb5,3},{0xb47,2}}, + {{0xb48,2},{0xb98,2}}, {{0xa7d1,2},{0x10ca,1}}, {{0x1040,6},{0x2409,6}}, {{0x108e8,6},{0xbd6,2}}, + {{0x41be,3},{0xbeb,1}}, {{0x27,1},{0xc419,6}}, {{0x16e3,2},{0xc32c,3}}, {{0x26b5,4},{0x6aba,5}}, + {{0x1ba2,8},{0xe4c,7}}, {{0x1ba5,3},{0xbd8,2}}, {{0x14878,6},{0x7a5e,4}}, {{0xaf1,1},{0xae5,1}}, + {{0x35d0,8},{0xb2c,4}}, {{0x10f0,1},{0xb47,2}}, {{0x2a54,10},{0x12be,3}}, {{0x24a2d,2},{0x24a41,2}}, + {{0x422e,3},{0x1d,1}}, {{0x117c,1},{0x27d8b,2}}, {{0xab9c,1},{0x1a,1}}, {{0xcd9,3},{0xbbf,2}}, + {{0x31e2,4},{0xd8d,2}}, {{0x22cf8,1},{0x22cf8,1}}, {{0x7a6e,4},{0x1dac,3}}, {{0x244f5,2},{0x244af,2}}, + {{0xbeb,2},{0x68c2,4}}, {{0x11e28,5},{0x10c4,4}}, {{0x10ef,1},{0x1ae32,2}}, {{0x4491,6},{0xb54,4}}, + {{0x2106,5},{0xe0a,5}}, {{0xa22e,4},{0xe78,3}}, {{0xae5,1},{0xc3d,3}}, {{0xaec,2},{0xfe5,2}}, + {{0xa2be,5},{0xf10,3}}, {{0x70b0,4},{0x70a6,2}}, {{0x2d,1},{0xb68,4}}, {{0x6d81,5},{0x6d86,5}}, + {{0x2859,5},{0xa497,6}}, {{0xbd8,2},{0x6c80,5}}, {{0x278af,2},{0x924,1}}, {{0x1e,1},{0x18e6,10}}, + {{0x7b76,9},{0x10dc,2}}, {{0xbd6,4},{0xb2c,2}}, {{0x29f18,3},{0x278dc,1}}, {{0x17bc,3},{0x2d,1}}, + {{0xf14,2},{0xd60,5}}, {{0xf438,8},{0xb8f,3}}, {{0xcd9,3},{0xcb8,2}}, {{0xbd6,2},{0xb85,2}}, + {{0x30,2},{0x10192,4}}, {{0x4450,5},{0xb47,2}}, {{0x30,48},{0x30,10}}, {{0x10b7,4},{0x101b,3}}, + {{0x181c,3},{0xbed,2}}, {{0x78d6,6},{0xb52,6}}, {{0x17bc,4},{0x277c,6}}, {{0x179cf,2},{0x10ec,2}}, + {{0x6e5e,5},{0x27,1}}, {{0x20bb,3},{0x39d3,4}}, {{0x18d21,6},{0x1c,1}}, {{0xb6e,2},{0x12fe,1}}, + {{0x6d81,3},{0x17ef0,6}}, {{0x2430,9},{0x11b8,4}}, {{0x422e,3},{0x24bd,4}}, {{0x753a,7},{0x1278,4}}, + {{0x2796,3},{0xd0c,2}}, {{0xb44,3},{0x10e1,3}}, {{0x10ec,1},{0xb52,2}}, {{0xdbfc,7},{0x1a,1}}, + {{0xc25,3},{0xc57,3}}, {{0x8a8e,6},{0x3043,6}}, {{0xb44,4},{0x689b,6}}, {{0xd41,3},{0x251c,4}}, + {{0xb9d,3},{0xb78,2}}, {{0x55d5,8},{0xb52,5}}, {{0x174c,8},{0x1152,3}}, {{0x1fa29,5},{0xbb1,3}}, + {{0xb6c,3},{0xe6d,2}}, {{0x3ed6,5},{0xae6,3}}, {{0xf52,5},{0x16f1,4}}, {{0x13680,5},{0x1241,4}}, + {{0xae0,1},{0xb72,3}}, {{0x1a,2},{0x2db1,3}}, {{0xc1ae,6},{0xae7,1}}, {{0xce2,3},{0xb54,3}}, + {{0xec8,2},{0xcf0,2}}, {{0xaf5d,2},{0xd5c,1}}, {{0xbde,3},{0xcc0,3}}, {{0xc25,3},{0x5c76,4}}, + {{0x3296,9},{0xb67,2}}, {{0xae6,2},{0xb63,2}}, {{0x26c6,1},{0x10f6,1}}, {{0x2bea,7},{0xae7,1}}, + {{0xb52,2},{0xaf0,2}}, {{0xebab,8},{0xfe5,2}}, {{0x21230,6},{0xae7,1}}, {{0x27,1},{0xbd1,2}}, + {{0xee4a,5},{0xdcbd,5}}, {{0x3a84,8},{0x11b8,4}}, {{0x159c,4},{0x1906,4}}, {{0xcb5,3},{0x1097,5}}, + {{0xd7f,3},{0x10dc,2}}, {{0x263f,3},{0xb78,2}}, {{0x5d34,5},{0x5fc7,4}}, {{0xb63,2},{0xb6e,2}}, + {{0x180c,4},{0x1a10,2}}, {{0xd5c,1},{0x1140,3}}, {{0xb78,2},{0xaf1,2}}, {{0x5365,6},{0xc63,3}}, + {{0x804,2},{0xa51,2}}, {{0xbc5,3},{0xb54,4}}, {{0x3004,9},{0x2b,3}}, {{0x3402,12},{0xd0d,2}}, + {{0xb2c,2},{0xc67,2}}, {{0xc2e,2},{0xc30,7}}, {{0x278c9,2},{0x1b6ab,2}}, {{0xbff6,7},{0xb54,3}}, + {{0x1ab2,5},{0x1ab7,4}}, {{0xcc0,3},{0xb54,3}}, {{0xb60,2},{0x12b92,3}}, {{0x90e2,4},{0x90e6,8}}, + {{0x272d,4},{0xc67,2}}, {{0xbb47,7},{0x2b,3}}, {{0x2ed0,7},{0x372a,4}}, {{0x6b6e,3},{0xbe64,5}}, + {{0xceb,3},{0x1089,2}}, {{0x2b50,5},{0xc3b9,5}}, {{0xcc0,3},{0x3787,4}}, {{0x1b25b,4},{0xaf1,1}}, + {{0xb47,2},{0xd0d,2}}, {{0x7bbe,8},{0x2b,3}}, {{0x15dc,6},{0x1434,6}}, {{0x16dc,7},{0x3788,3}}, + {{0xbde,3},{0xa2cd,5}}, {{0x5277,2},{0x5b7d,3}}, {{0x2796,3},{0xae7,1}}, {{0x24a40,2},{0x1b4e3,1}}, + {{0x600c,8},{0xe72,3}}, {{0xf0e,6},{0x12d5,4}}, {{0x1a1c,10},{0x1357,5}}, {{0x271e,3},{0xc89,2}}, + {{0x1095,4},{0xae5,1}}, {{0xc77,2},{0x11ef,2}}, {{0x2b,1},{0xaec,2}}, {{0x10f7,1},{0x3e16,3}}, + {{0x30,2},{0x432,32}}, {{0x1561,3},{0xcbc,4}}, {{0x1480,2},{0xcb8,3}}, {{0x2c76,4},{0x3921,5}}, + {{0x2d12,4},{0xcc0,3}}, {{0x1afd,5},{0x1597,5}}, {{0xb55,2},{0xc62,3}}, {{0x194a,6},{0x2db1,3}}, + {{0xc8f3,5},{0x10dc,2}}, {{0xc1e,2},{0x2b,3}}, {{0x3a3e,6},{0xc8f,2}}, {{0xc37,3},{0x1cf1b,4}}, + {{0x1140,4},{0xb54,4}}, {{0x278c7,3},{0x1b6ab,1}}, {{0x152c4,2},{0x10ca,1}}, {{0x70a0,6},{0x70b4,2}}, + {{0x2b,2},{0xb2c,4}}, {{0x2b8d,4},{0x1fb7,5}}, {{0x1ae77,6},{0x11f2,3}}, {{0x5442,4},{0xc67,2}}, + {{0xa246,4},{0xba7,3}}, {{0x209d,4},{0x173e,3}}, {{0x10d16,6},{0x584e,4}}, {{0x12d32,6},{0xd0d,2}}, + {{0xd5c,1},{0x428b,2}}, {{0x10192,2},{0xff26,2}}, {{0xf535,5},{0x5396,3}}, {{0xcd5,2},{0xb65,2}}, + {{0xaca2,3},{0x10f7,1}}, {{0x29f18,3},{0x278a9,1}}, {{0x3234,3},{0xcab,3}}, {{0x1f2c5,2},{0x428b,2}}, + {{0x732,3},{0x2445f,1}}, {{0xafc6,4},{0x23d9,3}}, {{0x1cbf,5},{0x1dcf,3}}, {{0x532,18},{0x30,12}}, + {{0xc89,2},{0xb78,2}}, {{0x180c,4},{0x1ad25,5}}, {{0x287e7,2},{0x15798,2}}, {{0x10ea,3},{0xf69a,8}}, + {{0x1c,1},{0x21,1}}, {{0x78b2,5},{0xb8f,2}}, {{0xcfd,5},{0x11c10,4}}, {{0x2a16,3},{0x1f,1}}, + {{0xb4a,2},{0x2b,2}}, {{0x840a,9},{0xd0d,2}}, {{0xadd0,3},{0xed47,4}}, {{0x2445e,1},{0x734,1}}, + {{0x1a,1},{0x1a,2}}, {{0x2b88,9},{0x1fb7,5}}, {{0xbe7,1},{0x4351,2}}, {{0x2043,4},{0xd578,5}}, + {{0x14bba,4},{0x1954,4}}, {{0xd41,3},{0xce1,4}}, {{0x2445f,1},{0x27d8b,2}}, {{0x23c7,7},{0x23ce,4}}, + {{0xfb1,2},{0x12ff,3}}, {{0x1062,5},{0x1687,3}}, {{0x10f7,1},{0x7065,5}}, {{0x10ec,1},{0x4d97,2}}, + {{0x441c,3},{0xdf0,2}}, {{0xb31,1},{0x22cf8,1}}, {{0x17ee,3},{0xb6e,2}}, {{0x10472,4},{0xb2f,1}}, + {{0xfef8,6},{0xfb8b,2}}, {{0xc1c,2},{0xb8f,2}}, {{0x1561,3},{0x1a,3}}, {{0xd54,1},{0xaea,1}}, + {{0xbde,3},{0x202bc,5}}, {{0x741a,7},{0x10c3,5}}, {{0x16fc,5},{0xae9,2}}, {{0x3782,5},{0xd0b,4}}, + {{0x6e5e,5},{0xce1,3}}, {{0x1257,2},{0x12be,3}}, {{0xe804,6},{0x1377,5}}, {{0x41be,4},{0xc62,3}}, + {{0x3fe0,5},{0xc6bb,5}}, {{0x15b52,2},{0x70b4,2}}, {{0xd0f,4},{0x1372,3}}, {{0x41be,3},{0xca7,3}}, + {{0xbb5,1},{0xb82,2}}, {{0x218d,5},{0x12b89,5}}, {{0x10f3,1},{0xf5f6,2}}, {{0xc25,5},{0xaea,1}}, + {{0x10ec,1},{0xb8f,2}}, {{0xbeb,2},{0xb52,2}}, {{0xbafa,5},{0x139f,3}}, {{0x794e,7},{0xb52,5}}, + {{0x3fee,5},{0x1d22,6}}, {{0xc8f,2},{0xb48,2}}, {{0x1a1f4,2},{0x10f7,1}}, {{0x7e8e,7},{0xc25a,4}}, + {{0x2796,3},{0xcf5,2}}, {{0x272d,5},{0xb2c,2}}, {{0xadd,4},{0xca7,3}}, {{0xcb8,2},{0x2b,1}}, + {{0xd17,3},{0xb141,3}}, {{0x2446a,3},{0x24468,2}}, {{0xb71,2},{0xc55,2}}, {{0xb2e,2},{0xc8f,2}}, + {{0x2793d,5},{0x278a9,1}}, {{0x278af,2},{0x278dc,1}}, {{0xcc2c,5},{0xb65,2}}, {{0x5442,4},{0x9ff5,4}}, + {{0x256b,4},{0xa15d,4}}, {{0x10ea,3},{0x1a,2}}, {{0x166c,4},{0xb64,2}}, {{0xb6ae,6},{0x1099,3}}, + {{0x1f979,6},{0x28,1}}, {{0xb257,5},{0x14a8,4}}, {{0xa22e,4},{0xb52,2}}, {{0x6f62,4},{0x6f96,2}}, + {{0x70c6,4},{0x70ca,2}}, {{0xc52,2},{0x187c,3}}, {{0xb31,1},{0xb31,1}}, {{0x532,34},{0x30,30}}, + {{0x5a8e,6},{0xae7,2}}, {{0xae7,2},{0x174e,3}}, {{0x29f18,3},{0x278af,1}}, {{0x10f2,1},{0x26c6,1}}, + {{0x13d42,7},{0x2b,3}}, {{0xc30,2},{0xc2e,2}}, {{0x1a,3},{0x1a,1}}, {{0x2793d,5},{0x278af,1}}, + {{0x2043,5},{0x1278,4}}, {{0x1e,1},{0x2b,2}}, {{0xb77,3},{0xec8,2}}, {{0x10c8,3},{0xe6d,2}}, + {{0x27c3,4},{0x229f,9}}, {{0x924,8},{0x924,8}}, {{0x27903,3},{0x278a9,1}}, {{0x1548c,7},{0xb8d,3}}, + {{0x1568a,5},{0x30fb,4}}, {{0xb7f,3},{0x2f54,5}}, {{0x1bfc,9},{0xb52,5}}, {{0xae2,2},{0x13d1,4}}, + {{0xcd5,2},{0xae5,1}}, {{0x7b76,9},{0xae7,1}}, {{0x62ca,10},{0xb78,2}}, {{0x1257,2},{0xaea,2}}, + {{0x265b,4},{0xe99,3}}, {{0x141c,7},{0xcc0,3}}, {{0x181c,3},{0xfde,2}}, {{0x312a,5},{0xc4c,3}}, + {{0xca3,4},{0x2056,4}}, {{0x6ac5,2},{0xbb5,1}}, {{0x6957,5},{0xae9,2}}, {{0x3e92,3},{0x5396,3}}, + {{0xa7da,3},{0xae6,2}}, {{0xc49,3},{0x30a1,5}}, {{0xf0e,6},{0x12d5,7}}, {{0x10fb,3},{0x2a16,3}}, + {{0x1e27,6},{0x89c8,5}}, {{0xcd9,3},{0xc34,3}}, {{0xb64,2},{0x887b,3}}, {{0xd54,1},{0xab9c,1}}, + {{0x5401,4},{0x108e,7}}, {{0xb6c,3},{0x2d,1}}, {{0x2445f,1},{0x27e20,2}}, {{0xb4a,3},{0x15b0,3}}, + {{0x10f6,1},{0xa7d8,2}}, {{0xb70,2},{0xb9c,2}}, {{0x8e12,8},{0x1dd8,4}}, {{0xd41,3},{0xc4d,2}}, + {{0x16ae,2},{0xb75,2}}, {{0x319a,6},{0xb54,4}}, {{0xc37,3},{0xb79,2}}, {{0x27b4,3},{0x151f,3}}, + {{0x2446a,3},{0x1ed53,1}}, {{0x432,8},{0x432,1}}, {{0x10ca,1},{0xdf0,2}}, {{0x92f2,5},{0x1d8a,3}}, + {{0xec50,5},{0xb54,2}}, {{0xb44,4},{0x2742,3}}, {{0xa4d,2},{0xa4f,2}}, {{0x1040,6},{0xb52,2}}, + {{0x20e8,4},{0x1a,1}}, {{0xae5,1},{0x4460,3}}, {{0x10f7,1},{0x27b6,1}}, {{0xaf3,4},{0x70ca,2}}, + {{0x27cea,1},{0x2446c,1}}, {{0xeec,5},{0xb47,2}}, {{0x1878,1},{0x1ce2,3}}, {{0x423c,3},{0xc89,2}}, + {{0x16a5d,5},{0x10dc,2}}, {{0xb44,3},{0xce2,3}}, {{0x1e45,3},{0x4446,6}}, {{0x17bc,3},{0x10ca,1}}, + {{0xba5,4},{0x46c7,6}}, {{0xbdaf,8},{0x10dc,2}}, {{0xb9c,2},{0xdd2,4}}, {{0x4284,2},{0x27b6,1}}, + {{0x10f7,1},{0x8a49,3}}, {{0xa7d1,2},{0xd5c,1}}, {{0x24461,1},{0xb31,1}}, {{0xaf2,1},{0xb65,2}}, + {{0xae2,2},{0x28,1}}, {{0xdac,2},{0xb4b,2}}, {{0x10ea,3},{0x2b,1}}, {{0x1b5f3,3},{0xd17,3}}, + {{0x141f2,5},{0x4452,5}}, {{0x857e,5},{0xb8d,5}}, {{0xfda,11},{0xfe5,6}}, {{0x4fbd,4},{0x168df,4}}, + {{0x317e,6},{0x10dc,2}}, {{0x24b7,5},{0x1719,3}}, {{0xb7f,3},{0x10ec,1}}, {{0x10f3,1},{0xaec,2}}, + {{0xed79,8},{0x10dc,2}}, {{0x28,3},{0xaf1,1}}, {{0xc13,4},{0x3e50,8}}, {{0x972a,5},{0x7585,5}}, + {{0x969,2},{0x1016a,2}}, {{0xc25,4},{0x2b,2}}, {{0xc37,4},{0xaf1,1}}, {{0x13ed2,5},{0x28,1}}, + {{0x51ec,5},{0xd0d,2}}, {{0x15a1,3},{0xeb3,3}}, {{0x318c,5},{0x2680,5}}, {{0xb92,4},{0x10ca,1}}, + {{0x2160,5},{0x1931,6}}, {{0xde9,1},{0x2045,3}}, {{0x177c,3},{0xb64,2}}, {{0x65d6,9},{0xbb4,4}}, + {{0x10ea,3},{0xc55,2}}, {{0x24525,4},{0xa51,2}}, {{0x3624,6},{0xae7,1}}, {{0x27,1},{0x2b,2}}, + {{0x12fc,4},{0x28,2}}, {{0x112c,1},{0x1ed58,1}}, {{0x1ed53,1},{0xb31,1}}, {{0x2d80,8},{0x3fdc,4}}, + {{0x423c,6},{0x12f1,3}}, {{0x10fb,3},{0xcce,3}}, {{0x422e,3},{0xcb8,3}}, {{0x209d,4},{0xb85,2}}, + {{0x2afc,7},{0x253a,4}}, {{0xe6d,3},{0xb52,5}}, {{0xb7d,1},{0x1bdb,3}}, {{0x124c,5},{0x1525,7}}, + {{0x725e,5},{0x8bcd,5}}, {{0x1b,1},{0x1b,1}}, {{0xbe7,1},{0xba7,3}}, {{0x845e,6},{0xc828,4}}, + {{0xb2f,1},{0xcb8,2}}, {{0x422e,3},{0x28b1,3}}, {{0x135c,5},{0x1361,2}}, {{0x177c,3},{0xbd1,2}}, + {{0x10ef,1},{0xb63,2}}, {{0x8afd,4},{0xd44,5}}, {{0xb66,2},{0x2aa0,3}}, {{0xfa14,4},{0xb65,2}}, + {{0xd1b,1},{0x2b,1}}, {{0xbed,2},{0x139f,3}}, {{0x1a67,7},{0x14e2,3}}, {{0x15c15,5},{0x14a8,4}}, + {{0x36be,6},{0xc63,3}}, {{0x13d24,6},{0x1d59,3}}, {{0x40f8,4},{0xb341,5}}, {{0x948,1},{0x24,1}}, + {{0xf96,9},{0xb73,2}}, {{0x1084,3},{0xa60f,3}}, {{0x16de,5},{0x21,1}}, {{0x1621,4},{0x1425b,3}}, + {{0xb48,2},{0x1e6c,6}}, {{0x1a646,4},{0x6f1b,5}}, {{0xc8f3,5},{0xc63,3}}, {{0xafae,6},{0x1bdb,3}}, + {{0x10fb,3},{0xcb8,3}}, {{0x2ff6,8},{0xae7,1}}, {{0x415c,5},{0x1341,4}}, {{0x2d,1},{0xb2e,2}}, + {{0x24462,1},{0x28633,2}}, {{0xcb8,3},{0xaf2,1}}, {{0x24460,3},{0x24460,3}}, {{0xbb5,1},{0xdf0,2}}, + {{0x29f18,3},{0x116c,1}}, {{0xddc,4},{0xd8f,3}}, {{0x1c,1},{0xb55,2}}, {{0x3a3e,5},{0x16a86,4}}, + {{0x209d,4},{0x67b2,5}}, {{0xc4e,2},{0x10008,4}}, {{0xb28e,5},{0xb2e,2}}, {{0x845e,6},{0xb54,3}}, + {{0x55d5,8},{0xb2e,2}}, {{0x8ffe,6},{0xb65,2}}, {{0xc1e,2},{0xe72,3}}, {{0xa246,4},{0x40b6,3}}, + {{0x278db,2},{0x924,1}}, {{0x10f0,1},{0x10ca,1}}, {{0x423c,3},{0xc73,2}}, {{0x10c8,3},{0xb4b,2}}, + {{0x286a,2},{0x12f1,2}}, {{0xfcdb,3},{0xc30,2}}, {{0xa38a,9},{0x10dc,2}}, {{0xaf2,1},{0xc52,2}}, + {{0x5324,7},{0xeb3,3}}, {{0xadc2,8},{0x11e4,4}}, {{0x1f3b,4},{0x3d9d,5}}, {{0x1040,6},{0x2b4c,4}}, + {{0x70a0,2},{0xfb8b,2}}, {{0xca7,3},{0xc33,4}}, {{0xeb3d,7},{0x1e,1}}, {{0x5059,8},{0xb9d,3}}, + {{0x2446a,3},{0x432,1}}, {{0x24b7,5},{0x18ee8,4}}, {{0x3234,3},{0x28,2}}, {{0x1675,2},{0xde4,2}}, + {{0x12ac,5},{0xc20,5}}, {{0x29f18,3},{0x27897,1}}, {{0x6f62,4},{0x157f2,2}}, {{0x3be2,9},{0xb68,4}}, + {{0x6e44,5},{0x18af8,4}}, {{0x124c,5},{0x1e1f,8}}, {{0xecc,3},{0x1a,1}}, {{0x9aba,5},{0x1a7f,6}}, + {{0x2dfe,5},{0x1c9da,3}}, {{0xaca2,3},{0x10ca,1}}, {{0x6f14,9},{0x25c2,3}}, {{0x9a9,1},{0x28634,1}}, + {{0x2322,6},{0x5f28,7}}, {{0x357c,7},{0xb75,3}}, {{0x178c,3},{0x10ec,1}}, {{0x25789,2},{0xff26,2}}, + {{0xc13,4},{0x11ef,2}}, {{0xd742,6},{0xb48,2}}, {{0x70dc,4},{0x1b25d,2}}, {{0x1b4e3,1},{0x159c8,1}}, + {{0x8e12,6},{0x12d7,5}}, {{0x1095,3},{0x1438f,7}}, {{0x22cf8,1},{0x1b4e3,1}}, {{0x2153b,6},{0xae7,1}}, + {{0x16fc,5},{0xb9d,3}}, {{0x2b50,6},{0x2683,5}}, {{0xa01e,7},{0xc63,3}}, {{0xae7,1},{0xb70,2}}, + {{0xae0,1},{0xb82,3}}, {{0x432,8},{0x432,2}}, {{0x29f18,3},{0x278d6,1}}, {{0xa7da,3},{0x2358,5}}, + {{0x325e,7},{0xe70,5}}, {{0x27b4,3},{0x600f,7}}, {{0xfb1,3},{0xeb5,4}}, {{0xe34a,5},{0xbac,4}}, + {{0xc25,4},{0x2a85,7}}, {{0xb44,4},{0xede,3}}, {{0x11090,7},{0x10dc,2}}, {{0x1a646,4},{0x3f82,3}}, + {{0x19,1},{0x432,1}}, {{0xb87c,6},{0x2bfd,2}}, {{0x178c,3},{0xbe4,1}}, {{0x22e6,5},{0x173e,3}}, + {{0x2b,2},{0x12d7,5}}, {{0x4a5b,5},{0xbc1,2}}, {{0xe64,4},{0x16fcf,3}}, {{0xddc,4},{0x15437,4}}, + {{0xaaec,2},{0xfcb5,2}}, {{0x1d55,4},{0xae7,2}}, {{0x24,1},{0x1ed58,1}}, {{0xc51,2},{0x40b8,2}}, + {{0x6d8e,3},{0xba7,3}}, {{0x10dc,2},{0xc9a,2}}, {{0x100d,5},{0xb55,2}}, {{0xd76,4},{0xf38f,3}}, + {{0xbe0,1},{0x1878,1}}, {{0x1a3a,6},{0x107e,6}}, {{0xde38,8},{0xc8e,3}}, {{0x924,1},{0x278b5,2}}, + {{0x20,2},{0xb49,2}}, {{0xc89,3},{0xb2c,2}}, {{0x364e,4},{0x28,2}}, {{0xd76,7},{0x2a85,6}}, + {{0x178c,3},{0xb8f,2}}, {{0x432,8},{0x432,3}}, {{0xe0f,11},{0x2b,3}}, {{0x6735,5},{0xaf2,1}}, + {{0x2446c,1},{0x948,1}}, {{0xde9,1},{0xbd5,2}}, {{0x1f44,8},{0x10e4,6}}, {{0x6b61,2},{0xf99,4}}, + {{0xe64,5},{0x23db,8}}, {{0x1dbe,5},{0xb65,2}}, {{0x1dbe,5},{0x583f,3}}, {{0xc58,3},{0xd9f,8}}, + {{0xcd9,5},{0xfb1,2}}, {{0xc8a,2},{0xb2c,2}}, {{0x178c,3},{0x10ef,1}}, {{0x19b3,5},{0x16f0,4}}, + {{0x209d,4},{0xbb4,2}}, {{0x755e,6},{0x1a,1}}, {{0x1051,4},{0x3549,5}}, {{0x27903,3},{0x278af,1}}, + {{0x2d64,6},{0x2971,3}}, {{0x1d55,7},{0xb7d,2}}, {{0xc4d,2},{0xcc3,4}}, {{0x1ab2,5},{0x2b,1}}, + {{0x16fc,4},{0x7445,5}}, {{0x6f55,11},{0xd0d,2}}, {{0x1c65,6},{0x1342,6}}, {{0x1c25,3},{0xaeb,2}}, + {{0x32ff,4},{0xca1,2}}, {{0x1b,1},{0x3043,6}}, {{0x22e6,5},{0x5277,2}}, {{0x265b,4},{0x1701,3}}, + {{0x46f8,3},{0xae7,1}}, {{0xab9a,3},{0xd0ff,2}}, {{0x14d0c,5},{0xb47,2}}, {{0x2160,5},{0xaf1,1}}, + {{0x30,48},{0x30,14}}, {{0xae5,1},{0x11ef,2}}, {{0x10ea,3},{0x8a49,3}}, {{0x437e,4},{0x11f2,3}}, + {{0xd0b,3},{0xae7,1}}, {{0xcc7,3},{0xaea,1}}, {{0x40f8,4},{0xbed,4}}, {{0x8b06,4},{0xb78,2}}, + {{0x244f5,2},{0x157b6,2}}, {{0x430,3},{0x1b4e3,1}}, {{0x10c8,3},{0x16b02,4}}, {{0x70dc,4},{0x244e7,2}}, + {{0xb85,2},{0x28,2}}, {{0xb871,8},{0xb78,2}}, {{0xae6,2},{0xb55,3}}, {{0x2cae,8},{0x2971,3}}, + {{0xa7da,3},{0xc67,2}}, {{0xaea,2},{0x11f2,3}}, {{0x181c,4},{0x1710,6}}, {{0x1434,6},{0xb8f,3}}, + {{0x27b4,3},{0x14d9d,5}}, {{0x11946,5},{0x2b,3}}, {{0x5f8d,6},{0xb54,3}}, {{0x845e,6},{0x2195,3}}, + {{0x446a,5},{0x3a42,4}}, {{0xb44,3},{0x1100b,3}}, {{0x263f,3},{0xaf2,1}}, {{0x25789,2},{0x6f90,2}}, + {{0x4e5e,9},{0x2af8,4}}, {{0x162e0,6},{0x10dc,2}}, {{0xaefa,4},{0x12ff,2}}, {{0x9423,3},{0xae7,1}}, + {{0xc37,3},{0xb47,2}}, {{0x1d46,5},{0x2b4c,4}}, {{0x4d19,6},{0x7ed0,6}}, {{0xb8f,2},{0xb52,5}}, + {{0xf92f,4},{0xb52,2}}, {{0xd65,5},{0xb77,3}}, {{0xf63,7},{0xd48,2}}, {{0x8c4,4},{0x30,8}}, + {{0x25c5,5},{0xae6,3}}, {{0x10fb,3},{0xaf62,2}}, {{0xcde,3},{0x1f,1}}, {{0xbcf4,6},{0xbcfa,4}}, + {{0xfef0,6},{0x1a328,2}}, {{0x1cec,10},{0xce8,3}}, {{0x177c,3},{0x151f,3}}, {{0x709c,2},{0x244c7,2}}, + {{0x1a,3},{0x1d,1}}, {{0xae0,1},{0xc1e,2}}, {{0xdd5,2},{0x12d7,5}}, {{0x2afc,7},{0x2b03,5}}, + {{0x10b7,7},{0x1773,3}}, {{0xb44,3},{0xd0b,3}}, {{0x20d9,6},{0xc7b,4}}, {{0x12ae,3},{0x21d2,6}}, + {{0xcfd,4},{0xb2e,2}}, {{0x3250,4},{0xb85,2}}, {{0x2aa97,2},{0xff02,2}}, {{0x1fa11,6},{0xc39,2}}, + {{0x969,2},{0x2456b,2}}, {{0xfb1,2},{0xcd4,4}}, {{0xbb26,8},{0x1b,1}}, {{0x3996,8},{0xb68,4}}, + {{0x21d8,10},{0xb52,5}}, {{0x8a9a,6},{0x79f9,4}}, {{0xbe4,1},{0x2195,3}}, {{0x969,2},{0x70ca,2}}, + {{0xbcb,3},{0xd8f,3}}, {{0x30,2},{0xbe8,3}}, {{0x227d,5},{0x4818,7}}, {{0x133c,6},{0x67c0,4}}, + {{0xceb,5},{0xcf0,2}}, {{0x10472,4},{0x386a,3}}, {{0x2445e,1},{0x948,1}}, {{0xc30,2},{0xb52,5}}, + {{0x10fb,3},{0x3da5,4}}, {{0x1084,3},{0x1b3e,3}}, {{0xddc,4},{0xb63,4}}, {{0xb215,5},{0x10283,4}}, + {{0x1f019,4},{0x4415,2}}, {{0x10f0,1},{0xd54,1}}, {{0x209d,4},{0xc67,2}}, {{0x6d81,3},{0x27b6,1}}, + {{0x1761,3},{0xc62,3}}, {{0x422e,3},{0xbb4,2}}, {{0x3234,4},{0xc67,2}}, {{0xaf2,1},{0x1c,1}}, + {{0x30bc,3},{0xb54,4}}, {{0x29e78,3},{0x7c4,1}}, {{0xbdaf,8},{0xae7,1}}, {{0x1a,3},{0xb8f,2}}, + {{0x6221,5},{0xc34,3}}, {{0x1a3a,9},{0x11e6,6}}, {{0xaea,1},{0x37f7,3}}, {{0x26c47,4},{0xb54,2}}, + {{0x31e0,5},{0x7a46,4}}, {{0x79f6,6},{0x9208,4}}, {{0x15f75,6},{0x15f7b,3}}, {{0x12ac,5},{0x1e1f,8}}, + {{0x1eb1c,4},{0xb64,2}}, {{0x1f,1},{0x21,2}}, {{0x1e45,3},{0x1961,3}}, {{0x1f,1},{0x21,1}}, + {{0x10ea,3},{0xae7,1}}, {{0xcfd,5},{0xd8e,4}}, {{0x70c8,2},{0x244e7,2}}, {{0x101e,12},{0xae7,1}}, + {{0xa096,7},{0x10dc,2}}, {{0x3392,6},{0xe6d,8}}, {{0xcd9,5},{0x9873,6}}, {{0xcdf,3},{0xaf2,1}}, + {{0x10b7,5},{0x13852,4}}, {{0x3626,4},{0xb78,2}}, {{0xaa9a,2},{0x10f3,1}}, {{0x2520a,2},{0x24467,2}}, + {{0xd0fc,4},{0xec2,2}}, {{0x219c,5},{0xaf1,2}}, {{0x17672,6},{0x12143,2}}, {{0xb2c,2},{0xb82,2}}, + {{0xc77,2},{0xb52,5}}, {{0x10c8,3},{0xde2,4}}, {{0x256b,5},{0x4590,5}}, {{0xd41,3},{0x2be4,6}}, + {{0xc1c,2},{0xc67,2}}, {{0xfd9e,5},{0xec6b,5}}, {{0x7cf6,8},{0x2288,4}}, {{0xc49,3},{0xf28,3}}, + {{0x70a8,4},{0x709c,4}}, {{0x1dcd,5},{0x1dd2,6}}, {{0x1084,3},{0xb55,2}}, {{0x41be,4},{0x1292,3}}, + {{0x6672,5},{0x7a5e,4}}, {{0xd76,5},{0x1c43,4}}, {{0xc29,2},{0xbed,4}}, {{0x6ac3,3},{0xc3d,4}}, + {{0x5365,6},{0xc6a9,3}}, {{0xb2d0,6},{0xe72,3}}, {{0x54aa,9},{0xc7b,4}}, {{0xbe0,1},{0xbe0,1}}, + {{0x3e04,8},{0xce8,3}}, {{0x9a9,1},{0x28e51,3}}, {{0x25885,5},{0xae7,1}}, {{0x10ea,3},{0x2745,3}}, + {{0x167c,7},{0xc89,2}}, {{0xae5,1},{0x28,2}}, {{0xaea,1},{0xc1c,2}}, {{0x1095,3},{0x139f,3}}, + {{0x1480,5},{0x1485,7}}, {{0xa162,6},{0x2939,3}}, {{0x3942,11},{0xaf2,1}}, {{0xc37,3},{0x1839e,5}}, + {{0xc135,8},{0x1719,3}}, {{0xde9,1},{0xb173,4}}, {{0x24a2d,2},{0x24a2d,2}}, {{0x6d8e,3},{0xce2,3}}, + {{0x10f2,1},{0x10ca,1}}, {{0x7c4,1},{0x2445e,1}}, {{0x4fbd,4},{0xb70,2}}, {{0x27,1},{0xb64,3}}, + {{0xb8f,2},{0x1ed0,4}}, {{0x4971,5},{0xb47,2}}, {{0x10ec,1},{0x4074,3}}, {{0x5136,6},{0xce8,3}}, + {{0x6d81,3},{0xd5c,1}}, {{0x1a2b,6},{0xc6a9,3}}, {{0x3296,9},{0x12d7,5}}, {{0x17fc,5},{0x15b0,3}}, + {{0xbe4,1},{0x28da,1}}, {{0x29b1,3},{0x1d8d,4}}, {{0x43e3,1},{0xb76,4}}, {{0x30,48},{0x30,12}}, + {{0x6ac3,3},{0x2349,4}}, {{0x10ef,1},{0x43e3,1}}, {{0xae2,1},{0xb78,2}}, {{0x20bb,3},{0x10dc,2}}, + {{0x41da,3},{0x20,3}}, {{0xbde,3},{0xc1c,2}}, {{0xee8,3},{0xb9d,3}}, {{0x441c,3},{0x19533,4}}, + {{0x1abc2,5},{0x67a6,3}}, {{0x2322,7},{0xb8f,3}}, {{0x177c,4},{0x11ef,3}}, {{0x134c,5},{0x3fe4,3}}, + {{0xbbf,2},{0xc3d,3}}, {{0x19b3,4},{0xb71,2}}, {{0x11ec,5},{0xd5e,4}}, {{0x3704,6},{0x1d,1}}, + {{0xaec,2},{0x2988,4}}, {{0xb82,3},{0x25ee,4}}, {{0x6c08,4},{0x5277,2}}, {{0x12d3c,6},{0xae7,1}}, + {{0x1d,1},{0xae6,2}}, {{0x2793d,5},{0x116c,1}}, {{0x70c8,2},{0x1016a,2}}, {{0xae7,2},{0x16f8,3}}, + {{0x12972,6},{0xae7,1}}, {{0x16dc,4},{0x3d0e,7}}, {{0xf212,3},{0x101b9,4}}, {{0x20bb,3},{0xd14,4}}, + {{0xc1c,2},{0x1489,3}}, {{0xd76,7},{0xe91,6}}, {{0x3d94,5},{0x2b54,8}}, {{0x1ab2,9},{0x1abb,6}}, + {{0x7a7a,5},{0x11ef,3}}, {{0x1084,3},{0x290e,4}}, {{0xcfd,4},{0xe7b,4}}, {{0xe6d,2},{0x80be,4}}, + {{0x24461,1},{0x432,1}}, {{0x143c,5},{0xb9d,3}}, {{0x422e,3},{0xeb3,3}}, {{0xf3eb,5},{0xbaf4,6}}, + {{0xb63,2},{0xb9c,2}}, {{0xbde,3},{0xf02,3}}, {{0xe77,3},{0x1377,5}}, {{0x122c,6},{0xadf,2}}, + {{0x1878,1},{0xab9c,1}}, {{0x441c,3},{0xb2e,2}}, {{0x5dd0,6},{0xcb8,2}}, {{0x10ca,1},{0x10dc,2}}, + {{0x2796,3},{0x151dd,4}}, {{0x11e28,8},{0xd57,2}}, {{0x281d,5},{0x9b41,3}}, {{0xb44,3},{0x3203,5}}, + {{0x278ad,3},{0x1171,2}}, {{0xb7f,3},{0xede,3}}, {{0x16fc,4},{0x2202,3}}, {{0xd6be,7},{0xd0d,2}}, + {{0x112c,2},{0x112c,2}}, {{0x1bfc,6},{0x10c4,4}}, {{0xddbf,6},{0x2b,3}}, {{0x1dfa,10},{0x1af8,5}}, + {{0x11ec,6},{0x11f2,3}}, {{0x1d46,5},{0x1a06,7}}, {{0x10ec,1},{0xaec,2}}, {{0x2106,5},{0x2b,3}}, + {{0x1084,3},{0x2b,2}}, {{0xbd6,2},{0xaf2,1}}, {{0x25789,2},{0x2456b,2}}, {{0x3e04,8},{0xb52,5}}, + {{0xc67,3},{0x1a,1}}, {{0xbb15,3},{0x2b,3}}, {{0x56b2,5},{0x12be,3}}, {{0x2421,7},{0x8bb5,5}}, + {{0x4957,6},{0x1525,7}}, {{0x969,2},{0x15798,2}}, {{0xb7f,3},{0x28,2}}, {{0x4bfb,6},{0xb52,2}}, + {{0xcfd,14},{0xb2e,2}}, {{0x6ac5,1},{0x1866,3}}, {{0x178c,3},{0x2b,1}}, {{0xc1e,2},{0x1a,2}}, + {{0xdac,2},{0x1098,3}}, {{0x6e10,6},{0xb52,5}}, {{0xbeb,2},{0xaf1,1}}, {{0xf5e,3},{0xbb4,4}}, + {{0x167c,5},{0x13c43,4}}, {{0x1dbe,5},{0x345e,5}}, {{0x3bfe,7},{0x1e6c,6}}, {{0x10ec,1},{0x2b,2}}, + {{0xae6,2},{0x1916,5}}, {{0xeb2,1},{0xae0,1}}, {{0x1e45,3},{0x17bea,5}}, {{0x19e0,7},{0x1df3,7}}, + {{0x10f3,1},{0xbb4,2}}, {{0x70d4,4},{0x70d8,4}}, {{0x3694,4},{0x5af9,3}}, {{0xaca2,3},{0x1275,4}}, + {{0x4b2b,9},{0xd7f,3}}, {{0x1040,8},{0x10dc,2}}, {{0x3d94,5},{0x3d99,9}}, {{0xe64,5},{0x257c,2}}, + {{0x1d3bd,5},{0x2b,3}}, {{0xae7,1},{0x1498,4}}, {{0x382a,7},{0x674c,3}}, {{0xddc,4},{0xd6d,4}}, + {{0x12800,6},{0xb264,4}}, {{0x41da,3},{0x10fa,1}}, {{0x10f2,1},{0xf5f4,2}}, {{0x90e2,4},{0xb85,2}}, + {{0x4ab6,6},{0xb2e,2}}, {{0xbe4,1},{0x2b,1}}, {{0x422e,3},{0xde2,4}}, {{0x256b,4},{0x2af8,4}}, + {{0xb63,2},{0x103a,3}}, {{0x177c,3},{0x20,3}}, {{0x3758,4},{0xc30,2}}, {{0xde9,1},{0xc67,2}}, + {{0x4c90,4},{0x2279,4}}, {{0xae0,1},{0x7026,8}}, {{0xa2d6,5},{0x11e6,6}}, {{0x70a0,6},{0xfeee,2}}, + {{0xc13,4},{0x10534,6}}, {{0x9c9,1},{0x251cb,1}}, {{0x1878,1},{0xbe7,1}}, {{0xae7,1},{0x74ba,3}}, + {{0xcb5,3},{0xd787,5}}, {{0xfe38,4},{0xc895,6}}, {{0xb44,4},{0x28,1}}, {{0xba5,4},{0x8dda,8}}, + {{0x2793d,4},{0x279ef,2}}, {{0xb44,3},{0xbb4,2}}, {{0xddc,4},{0xb78,2}}, {{0x25d4,11},{0x1489,3}}, + {{0x4290,4},{0xca7,3}}, {{0x10ea,3},{0x2bfc,3}}, {{0x43e3,1},{0xbeb,1}}, {{0x1045,3},{0xb52,5}}, + {{0x687a,8},{0xb8f,3}}, {{0x10ec,1},{0xe78,3}}, {{0x3a14,6},{0xeb3,3}}, {{0xb99,2},{0x1704,3}}, + {{0x7162,4},{0xcf6,3}}, {{0xcd8c,5},{0xe4d,6}}, {{0x1c1a,6},{0x2a16,3}}, {{0x27b4,3},{0xb85,2}}, + {{0x15de0,8},{0xae7,1}}, {{0x17ec,5},{0xc1a,9}}, {{0x6d8e,3},{0xb8f,2}}, {{0xbb5,1},{0xcb8,2}}, + {{0x10b7,7},{0x2249,3}}, {{0x423c,3},{0xb55,2}}, {{0x8a48,3},{0xdfb,3}}, {{0x25c2,3},{0x1d,1}}, + {{0xc13,4},{0xde9,1}}, {{0x4fbd,4},{0x1675,2}}, {{0x1a0d,5},{0x24fb,6}}, {{0xfd7d,5},{0xe8d,3}}, + {{0x286bd,2},{0x20b23,2}}, {{0x16ae4,5},{0x2b,3}}, {{0x271e,3},{0xae7,1}}, {{0xbd6,4},{0xae6,3}}, + {{0x219c,5},{0xb72,2}}, {{0xb03a,3},{0xb401,2}}, {{0xae0,1},{0xb2e,2}}, {{0xce1,3},{0xb8f,3}}, + {{0x4a68,9},{0xd0d,2}}, {{0x1084,3},{0xc30,2}}, {{0x10fd,2},{0x20b5,3}}, {{0x10fb,4},{0x13b7a,5}}, + {{0x43ac,7},{0xae7,1}}, {{0x422e,3},{0xb8f,2}}, {{0x933a,9},{0x10dc,2}}, {{0x114f0,7},{0xd7f,3}}, + {{0x47f8,6},{0x2c3a,4}}, {{0xbd6,2},{0xd0d,2}}, {{0xea2a,5},{0xd17,3}}, {{0xba4a,6},{0x10e6d,3}}, + {{0xab9a,3},{0x1b,1}}, {{0x4a68,5},{0x103a,3}}, {{0xbb4,2},{0x4459,3}}, {{0x2610,6},{0xc34,3}}, + {{0x8092,6},{0x67c0,3}}, {{0x19b3,4},{0xaf2,1}}, {{0x2b,2},{0x9e37,7}}, {{0x178c,3},{0x28,1}}, + {{0xaf1,1},{0xc4d,2}}, {{0xd5d7,5},{0xb63,2}}, {{0xb47,2},{0x1c,1}}, {{0x2445f,1},{0x27e1c,2}}, + {{0x7276,4},{0x2195,3}}, {{0xae7,1},{0x11df,5}}, {{0x28da,1},{0xae6,2}}, {{0x40f8,6},{0x103a,3}}, + {{0x261f,4},{0x197c3,5}}, {{0xaea,3},{0xae0,1}}, {{0x10ea,3},{0x27b6,1}}, {{0x271e,3},{0xc63,3}}, + {{0x6067,7},{0x606e,5}}, {{0x61c6,5},{0xde9,1}}, {{0x28da,1},{0x2848,2}}, {{0xae7,1},{0xec2,2}}, + {{0x7702,5},{0x43a1,3}}, {{0x41be,3},{0x53e9,4}}, {{0x108b,3},{0xbb4,4}}, {{0xcde,3},{0x2a91,4}}, + {{0x4c15,5},{0xaec,2}}, {{0xd0f,4},{0x5b7d,3}}, {{0x70a0,2},{0x70da,2}}, {{0x136da,5},{0x3610,2}}, + {{0xb98,2},{0x2b,3}}, {{0xc25,4},{0x4ee5,8}}, {{0x4460,4},{0x1a30,5}}, {{0xbcb,3},{0xa4c9,3}}, + {{0x10c8,4},{0xb2e,2}}, {{0x3fb6,5},{0x3c20,3}}, {{0x2e8a,8},{0xb2e,2}}, {{0xee8,3},{0x11ef,2}}, + {{0x27b4,3},{0xce8,3}}, {{0x16ae,2},{0x21,1}}, {{0x2427,3},{0xa60f,3}}, {{0xbd6,2},{0x2b,1}}, + {{0xb71,2},{0xb66,2}}, {{0x3e04,8},{0xb52,6}}, {{0xbde,3},{0x1150,2}}, {{0x432,12},{0x432,1}}, + {{0x17a59,5},{0xb54,4}}, {{0xd41,3},{0x2ddc,6}}, {{0x10f0,1},{0x10ef,1}}, {{0xf52,4},{0xc518,6}}, + {{0x28,2},{0x2b3c,3}}, {{0x25c5,5},{0xc6a9,3}}, {{0x2322,7},{0x28,2}}, {{0xb64,2},{0xcab,3}}, + {{0x261f,5},{0x13d1,4}}, {{0x4ed3,7},{0x5fa0,4}}, {{0x441c,3},{0x41f0,6}}, {{0x136c,6},{0xcd2,6}}, + {{0xae2,1},{0x142e,1}}, {{0xbb4,2},{0x28,1}}, {{0xb64,2},{0x4d56,4}}, {{0xeec,7},{0x1f0f,7}}, + {{0x7546,7},{0x1d,2}}, {{0x6f62,4},{0xab1,2}}, {{0x29f18,3},{0x1b6ab,1}}, {{0x27,1},{0xc34,2}}, + {{0xa7d1,2},{0x27b6,1}}, {{0x12cb0,6},{0x2af8,4}}, {{0x6d81,3},{0x1b4c,3}}, {{0xbeb,1},{0x15adc,2}}, + {{0xfee4,4},{0x70b2,4}}, {{0x3cb4,9},{0xc8e,3}}, {{0xae2,2},{0x14a8,4}}, {{0xddc,4},{0x14a6,6}}, + {{0x27b6,1},{0x1af8,5}}, {{0xb44,3},{0x3e2a,4}}, {{0x3a92,8},{0xce8,3}}, {{0x244b9,2},{0x6f66,2}}, + {{0xbc1,2},{0xb85,2}}, {{0xb65,2},{0xc3d,3}}, {{0xf52,4},{0xc1c,2}}, {{0x1084,3},{0xb52,2}}, + {{0x10b7,4},{0xdf0,2}}, {{0xf30,6},{0x2971,3}}, {{0x422e,3},{0xc51,2}}, {{0x1d,1},{0xbc2,2}}, + {{0x15694,5},{0x1019,4}}, {{0x4a27,4},{0x50f0,5}}, {{0x1cec,6},{0x1c61,4}}, {{0xdf3,3},{0xc1c,2}}, + {{0x5d41,9},{0xc7b,4}}, {{0xb6b9,5},{0xb65,2}}, {{0xae2,1},{0xc8a,2}}, {{0xdba,6},{0xbc4,4}}, + {{0x251cb,1},{0x2445e,1}}, {{0x3624,6},{0xb78,2}}, {{0xaeb,2},{0xd91,3}}, {{0xd76,4},{0x187c,3}}, + {{0x2b50,12},{0xd0d,2}}, {{0x6107,3},{0x103a,3}}, {{0xc52,2},{0x1372,3}}, {{0x29ecd,3},{0x278d6,1}}, + {{0x15ced,6},{0xb55,2}}, {{0x124c,8},{0x1254,8}}, {{0x278dc,1},{0x924,2}}, {{0x19b3,4},{0x1bfb1,4}}, + {{0xbd4,2},{0x3e29,5}}, {{0x8a46,5},{0x10dc,2}}, {{0x1105e,5},{0xe415,5}}, {{0xbb5,1},{0x1e822,5}}, + {{0x2446a,3},{0x19,1}}, {{0x2a948,1},{0x2a948,1}}, {{0xd8e,3},{0xde9,4}}, {{0x1173,2},{0x116e,1}}, + {{0x6f21,4},{0xfe5,2}}, {{0x10fb,3},{0x22e3,3}}, {{0x31d2,6},{0x1af8,5}}, {{0x5254,5},{0xd7f,3}}, + {{0x16ac,5},{0x16b1,6}}, {{0x1c81d,5},{0x40b8,2}}, {{0xfc49,6},{0x8fe2,4}}, {{0x417a,2},{0x16f8,3}}, + {{0xc55,2},{0x16e2,2}}, {{0x9a9,1},{0x2446c,1}}, {{0xbcb,3},{0xc57,3}}, {{0x29e8c,3},{0x27897,1}}, + {{0x1051,7},{0x296f,5}}, {{0xb8f,2},{0xb55,2}}, {{0xbd3,3},{0xc67,2}}, {{0x423c,3},{0xaf1,1}}, + {{0x9b92,7},{0xb65,2}}, {{0xfef0,6},{0x1016a,2}}, {{0x10ea,3},{0x1b3c0,5}}, {{0x10f7,1},{0xbb15,3}}, + {{0x2cae,8},{0xaf2,1}}, {{0xbde,3},{0x6738,7}}, {{0xf212,3},{0x1b4b,3}}, {{0xa7aa,5},{0x12f1,3}}, + {{0x432,12},{0x432,2}}, {{0xb6cf,8},{0x10dc,2}}, {{0x29ecd,3},{0x27897,1}}, {{0xd76,4},{0x1257,2}}, + {{0xe6d,2},{0xdd3,3}}, {{0x1b9bf,4},{0xae7,1}}, {{0x19d1,9},{0xb2c,4}}, {{0xd1b,1},{0x1018,3}}, + {{0x2b,2},{0x1bdb,3}}, {{0x30,2},{0xff24,4}}, {{0x1a,1},{0xdc0,6}}, {{0x1adf,5},{0x1ae4,7}}, + {{0xae2,1},{0xc8e,3}}, {{0x1c47,6},{0xc52f,5}}, {{0x6d81,3},{0xc67,3}}, {{0x10f0,1},{0x27b6,1}}, + {{0x2b,1},{0xec5,5}}, {{0xe75,5},{0xc1c,2}}, {{0xae7,2},{0xb98,2}}, {{0x422e,3},{0x139e,3}}, + {{0xb44,3},{0x16f8,3}}, {{0x141f2,5},{0x59fb,4}}, {{0x117c,1},{0x28634,1}}, {{0xf96,7},{0x10dc,2}}, + {{0x12ac,7},{0xe70,5}}, {{0xbcb,3},{0xe6d,2}}, {{0x10fb,3},{0xe39a,4}}, {{0x17be,2},{0xae7,2}}, + {{0xbcb,3},{0x35fd,3}}, {{0x1b093,5},{0x35ba,3}}, {{0x87ee,6},{0x2bfc,3}}, {{0x2430,9},{0xb52,6}}, + {{0x16a4,5},{0x1257,3}}, {{0x1c29,6},{0x1434,6}}, {{0xbd8,2},{0xcd4,3}}, {{0x1bbe5,6},{0xbbf,2}}, + {{0x5fcb,7},{0x2b4c,4}}, {{0x2b,1},{0xcc0,3}}, {{0x41be,3},{0x21,1}}, {{0x10f3,1},{0x15ae2,3}}, + {{0x969,2},{0x70d2,2}}, {{0x257a,4},{0xb78,2}}, {{0xcb8,2},{0xb7c,3}}, {{0xa6c6,7},{0x11b8,4}}, + {{0x4d97,2},{0xae6,2}}, {{0x41da,3},{0xd54,1}}, {{0xded,5},{0x108b,3}}, {{0x2d10,6},{0xbf20,5}}, + {{0x10f6,1},{0x1aaed,1}}, {{0x2796,3},{0xbd4,2}}, {{0x1cec,6},{0x1357,5}}, {{0x4402,2},{0x4459,3}}, + {{0x2bfc,2},{0x28,1}}, {{0xd8e,4},{0x10dc,2}}, {{0x44b8,6},{0xb52,6}}, {{0xddc,4},{0xc77,2}}, + {{0x5254,5},{0xb52,5}}, {{0x263d,8},{0xb67,2}}, {{0x26c6,1},{0x10ef,1}}, {{0x2d,1},{0xcd4,4}}, + {{0xc25,4},{0xb8f,2}}, {{0x2d,1},{0xb48,2}}, {{0x209d,4},{0x1055,3}}, {{0xbcb,3},{0x28b1,3}}, + {{0xc37,3},{0x1cac0,4}}, {{0x178c,3},{0x10cd3,7}}, {{0x21,1},{0xaea,1}}, {{0x27d4,4},{0x1ba5,3}}, + {{0x40c0,4},{0xe6d,2}}, {{0x1095,3},{0xb78,2}}, {{0xc25,4},{0xfdf,2}}, {{0x10f6,1},{0x1f3ee,2}}, + {{0xae2,2},{0xc8a,2}}, {{0x1ab2,4},{0xb8f,2}}, {{0x281d,5},{0xb2f,1}}, {{0xedf2,7},{0x10b3,4}}, + {{0xcb8,2},{0xd7f,3}}, {{0x760b,4},{0x1257,3}}, {{0xa6ae,7},{0xce8,3}}, {{0x14b6,2},{0xae7,1}}, + {{0x6d8e,3},{0xd54,1}}, {{0x1b,1},{0xae0,1}}, {{0xb7f,3},{0x50fc,6}}, {{0x1084,3},{0x459e,4}}, + {{0x10ef,1},{0x3c66,6}}, {{0x2a93a,2},{0x27cea,1}}, {{0x179c0,6},{0x10dc,2}}, {{0x30,2},{0x244a1,2}}, + {{0x31e2,4},{0xd43,3}}, {{0x1051,7},{0xb2c,2}}, {{0x26c4,3},{0x2675a,2}}, {{0xbeb,1},{0xb2f,1}}, + {{0x1d59,4},{0x5396,3}}, {{0x4189,3},{0xaf2,1}}, {{0x422e,3},{0xc34,2}}, {{0x10ea,3},{0xd5c,1}}, + {{0x5442,4},{0x16ee,2}}, {{0x101e,7},{0x12d7,5}}, {{0x21abd,3},{0xb85,2}}, {{0x9af6,6},{0x2b,3}}, + {{0xd41,3},{0x1a88,3}}, {{0x271e,3},{0x10f3,1}}, {{0x15b52,2},{0x70d2,2}}, {{0xaf1,1},{0x887b,3}}, + {{0x972a,5},{0x89b9,4}}, {{0x2aacb,2},{0x6fac,2}}, {{0x6d9b,5},{0xb67,2}}, {{0xd57,2},{0x1b0a,2}}, + {{0xae7,1},{0xaea,2}}, {{0x638d,8},{0xb78,2}}, {{0x1e,1},{0xbd6,2}}, {{0x1b4e3,1},{0xb31,1}}, + {{0x1b,1},{0xc34,2}}, {{0x10ec,1},{0x2844,3}}, {{0xbde,3},{0xc25a,4}}, {{0x944e,6},{0xc1e,5}}, + {{0x278af,2},{0x116e,1}}, {{0x780,2},{0x780,1}}, {{0x6ac5,1},{0xc905,4}}, {{0x2a16,4},{0xbc5,3}}, + {{0xde9,1},{0xaf1,1}}, {{0xd7a,3},{0xcb8,2}}, {{0x2796,3},{0x27,1}}, {{0xbe0,1},{0xb7e5,5}}, + {{0xd51,2},{0x2275,3}}, {{0x4450,7},{0x2b,2}}, {{0x20bb,3},{0x22116,5}}, {{0x178c,3},{0x1099,3}}, + {{0xb44,3},{0xd14,4}}, {{0x152d2,2},{0xd5c,1}}, {{0x30,2},{0x1ab7,4}}, {{0x3f9a,4},{0x10dc,2}}, + {{0x21abd,3},{0xaef,3}}, {{0x541b,7},{0xae7,1}}, {{0x1b140,2},{0x116e,1}}, {{0x170c,11},{0xb7a,5}}, + {{0x271e,3},{0x2bfc,2}}, {{0xb6c,3},{0x1b4c,3}}, {{0x6067,6},{0x1861,3}}, {{0xc25,4},{0x51ee,3}}, + {{0x135c,5},{0x4f8e,4}}, {{0x2d,1},{0x2195,3}}, {{0x6ac5,1},{0xd5c,1}}, {{0x6d81,3},{0x28,1}}, + {{0x15ec,10},{0xbb4,4}}, {{0xdf0,2},{0xaeb,2}}, {{0x1ed49,3},{0x432,1}}, {{0xc1ae,6},{0xc63,3}}, + {{0x46f4,4},{0x734b,3}}, {{0xfc9,6},{0x10e1,9}}, {{0x130c,7},{0xc8e,3}}, {{0xaca2,3},{0xb79,2}}, + {{0x244f5,2},{0x70a2,2}}, {{0x244f5,2},{0xc601,2}}, {{0x3e12,7},{0x3e19,4}}, {{0xae9,2},{0xcce,3}}, + {{0x29ecd,3},{0x116d,1}}, {{0x131c4,7},{0x2b,3}}, {{0xcf44,6},{0x43bd,4}}, {{0x8d52,7},{0x2d5d,4}}, + {{0x2474d,2},{0x70a2,2}}, {{0x1009f,4},{0xb75,3}}, {{0x278f3,2},{0x278a9,1}}, {{0x6b52,4},{0x1150,2}}, + {{0x10f3,1},{0x20,2}}, {{0xcfd,5},{0xb67,2}}, {{0x4429,6},{0x443c,4}}, {{0x24b7,5},{0x1d8a,3}}, + {{0x251fe,2},{0x2445f,1}}, {{0x6ac5,1},{0x10ca,1}}, {{0xb7f,3},{0x2349,4}}, {{0x3234,3},{0x198f7,3}}, + {{0x12800,6},{0xd0d,2}}, {{0x29e8c,3},{0x278d6,1}}, {{0x27897,1},{0x924,2}}, {{0x3392,6},{0x33a6,8}}, + {{0x10ef,1},{0xb8f,2}}, {{0x118c,5},{0x104f9,5}}, {{0x7a6e,4},{0x1d,2}}, {{0x1f,1},{0x151f,3}}, + {{0x6c7d,5},{0x1865,4}}, {{0xdd30,6},{0x11b8,4}}, {{0x271e,3},{0x2195,3}}, {{0x51ab,7},{0xb2c,4}}, + {{0x5365,6},{0xb78,2}}, {{0x4979,3},{0xb65,2}}, {{0x151c,4},{0xc8a,2}}, {{0x27,1},{0xff56,6}}, + {{0xb44,3},{0xb70,2}}, {{0x27b4,3},{0x10ca,1}}, {{0xd76,4},{0x1393,3}}, {{0x30,2},{0x9a9,2}}, + {{0x13cf2,5},{0xeb2,1}}, {{0x1b6dd,4},{0x1b6dd,2}}, {{0x10ec,1},{0xb72,3}}, {{0x244b3,2},{0x1dec4,2}}, + {{0x2eb4,9},{0x13a6,4}}, {{0x10ea,3},{0x535b,5}}, {{0xc89,3},{0xae7,1}}, {{0x18496,5},{0xbd4,2}}, + {{0x1e27,5},{0xb2c,2}}, {{0xc3e,2},{0xc67,2}}, {{0x28,1},{0x1308,3}}, {{0xc25e,5},{0xb9c,2}}, + {{0xc25,4},{0xd0d,2}}, {{0x2160,5},{0xc8e,3}}, {{0x273a9,4},{0x1ae32,2}}, {{0x6d81,3},{0x10ca,1}}, + {{0x8e72,7},{0x11b8,4}}, {{0x27,1},{0xbcc2,3}}, {{0xbd6,2},{0x4ab0,3}}, {{0xeca,5},{0xb54,3}}, + {{0x41da,3},{0x139e,2}}, {{0x10c8,3},{0x5277,2}}, {{0x1058,4},{0xce8,3}}, {{0xb12e,3},{0xae2,1}}, + {{0xafc6,4},{0xa54a,7}}, {{0x5bd3,7},{0xc1c,2}}, {{0x2c76,4},{0xc1c,2}}, {{0x2aacb,2},{0x6f90,2}}, + {{0xebab,8},{0x103a,3}}, {{0xb64,2},{0xdc1,5}}, {{0xff20,4},{0x1b203,4}}, {{0x17bc,3},{0x10ec,1}}, + {{0x1b4b,3},{0x2b,3}}, {{0x600c,6},{0x1e6c,6}}, {{0x3a39,3},{0xb55,2}}, {{0x522d,5},{0x2bba,6}}, + {{0x1b,1},{0x1d11,5}}, {{0xce1,4},{0x10dc,2}}, {{0xb44,3},{0xc30,2}}, {{0xb64,2},{0x12f0,4}}, + {{0x12c92,5},{0x41b3,4}}, {{0x28da,1},{0xb78,2}}, {{0xeec,7},{0x22c0,3}}, {{0xcd9,3},{0x133a7,5}}, + {{0xc89,2},{0xc8e,3}}, {{0x1878,2},{0xb67,2}}, {{0x10f0,1},{0xb78,2}}, {{0xbd1,2},{0x3656,4}}, + {{0x52fd,7},{0x8fe2,4}}, {{0x11946,5},{0x10c3,5}}, {{0x6790,7},{0xaf2,1}}, {{0x2c76,4},{0x116fe,4}}, + {{0xf917,9},{0xb4a,2}}, {{0xab9a,3},{0xadf,2}}, {{0xc77,2},{0xe70,5}}, {{0x1b6b3,2},{0x116c,1}}, + {{0x1055,3},{0x1a88,3}}, {{0x2daa,5},{0xc63,3}}, {{0x1e45,3},{0xae0,1}}, {{0x10ef,1},{0x14d5,3}}, + {{0xc89,2},{0x18d8,4}}, {{0xc25,4},{0xb4a,3}}, {{0xcbd4,5},{0xdfb,3}}, {{0x3234,3},{0x4076,4}}, + {{0x61c6,5},{0xe6d,2}}, {{0x804,2},{0x96b,2}}, {{0xc67,2},{0xadf,2}}, {{0x24462,1},{0x2a96c,2}}, + {{0xca3,7},{0x1f,1}}, {{0x13e8c,7},{0xae7,1}}, {{0xceb,3},{0xd51,2}}, {{0x40c0,7},{0xec5,5}}, + {{0x441c,3},{0x2af4,4}}, {{0x6f74,4},{0x96f,2}}, {{0xb2f,1},{0xc63,3}}, {{0xb8f,2},{0xb9c,2}}, + {{0x11ef,2},{0xb2e,2}}, {{0x118e,3},{0x104f9,5}}, {{0x24a35,2},{0x2446f,2}}, {{0xb7f,3},{0x43a2,3}}, + {{0x4450,5},{0x30f4,5}}, {{0x143c,5},{0xb2e,2}}, {{0xfa16,2},{0xb65,2}}, {{0xb7f,6},{0xb8a,2}}, + {{0x6de9,5},{0xeb3,3}}, {{0xb7f,3},{0x41b3,4}}, {{0x1c47,6},{0x1704,3}}, {{0x11ba8,4},{0x7385,5}}, + {{0x1563,5},{0xae7,1}}, {{0x3694,4},{0x1d8e,3}}, {{0x15b0,3},{0xb8f,3}}, {{0xcfd,5},{0x1ed3,3}}, + {{0x18538,6},{0x2b,3}}, {{0x63c1,12},{0xae7,1}}, {{0xbde,3},{0x2428a,4}}, {{0x8e12,6},{0xb67,2}}, + {{0x27cf4,4},{0x24461,1}}, {{0xbe4,1},{0x10ed,2}}, {{0x9e37,4},{0xb65,2}}, {{0x1c,1},{0xcc0,3}}, + {{0x17bc,4},{0xc1c,2}}, {{0xcc7,3},{0x1a,2}}, {{0x3a22,5},{0xeb1,2}}, {{0x27,1},{0x1cd1,5}}, + {{0xb30,2},{0x9c9,1}}, {{0x10ec,1},{0x10dc,2}}, {{0x19,1},{0x159c8,1}}, {{0xeec,5},{0x2bfc,3}}, + {{0xcb5,3},{0x1b4f,3}}, {{0x14dc,5},{0xae2,1}}, {{0xadc2,8},{0x715a,3}}, {{0x4617,5},{0x6f36,3}}, + {{0x6805,8},{0x4453,4}}, {{0x41be,3},{0xab9c,1}}, {{0xc25,5},{0xc48a,5}}, {{0x17be,2},{0xc1c,2}}, + {{0x1a0d,5},{0xc1a,4}}, {{0x10f7,1},{0x1a30,5}}, {{0x762a,4},{0xadf,2}}, {{0x119c,7},{0x1f,1}}, + {{0x377c,3},{0x1f,2}}, {{0x6ac3,3},{0x5277,2}}, {{0xd0b,3},{0xae9,2}}, {{0x1b0a,2},{0xb55,2}}, + {{0xbafa,5},{0xb68,4}}, {{0xf85,4},{0x1904,3}}, {{0xb44,3},{0xae2,2}}, {{0x10c8,5},{0xce2,3}}, + {{0xdbf,3},{0x1f,1}}, {{0x1f,1},{0xb401,2}}, {{0x5442,7},{0xe91,6}}, {{0x83e6,10},{0xb2e,2}}, + {{0xbe4,1},{0xa7d1,2}}, {{0x3ed6,5},{0x1b80,4}}, {{0xaea,2},{0x43a2,3}}, {{0xe9f3,6},{0x31f8,4}}, + {{0x1762,3},{0xf6a,3}}, {{0xaca2,3},{0x1862,3}}, {{0x27b6,1},{0xb98,2}}, {{0x6d8e,3},{0x12be,3}}, + {{0x27d8b,2},{0x1b4e3,1}}, {{0x27b6,1},{0x151f,3}}, {{0x4fbd,4},{0x1f13,4}}, {{0xceb,3},{0xbb4,4}}, + {{0xe86,8},{0xe72,3}}, {{0x4a5b,6},{0xdc0,6}}, {{0xbeb,1},{0xaea,2}}, {{0x26c6,1},{0x14934,2}}, + {{0x78ca,4},{0x2045,3}}, {{0x27,1},{0x13b5,7}}, {{0x5483,4},{0x1f,1}}, {{0xcb5,3},{0x8ba9,4}}, + {{0x131b0,5},{0x2318,4}}, {{0x4450,4},{0xae6,2}}, {{0xaca2,3},{0xb8f,2}}, {{0x16a2,3},{0xae6,2}}, + {{0xbde,3},{0xfcdb,5}}, {{0x246c,8},{0xbb4,4}}, {{0x2796,4},{0xd17,3}}, {{0xf0e,6},{0x24fd,5}}, + {{0x74ce,5},{0xeabc,5}}, {{0x30,2},{0x6107,3}}, {{0x3234,3},{0x39d3,4}}, {{0x41be,3},{0xb2f,1}}, + {{0xcc37,7},{0x10dc,2}}, {{0x24462,1},{0x27e52,3}}, {{0x5a5a,7},{0xb9d,3}}, {{0x5365,5},{0x40b8,2}}, + {{0xbb4,2},{0xede,3}}, {{0x17cc,4},{0x2195,3}}, {{0x1cec,6},{0x1916,5}}, {{0xbddb,8},{0x2b,3}}, + {{0x5949,6},{0x2be6,4}}, {{0xcd9,3},{0x1434,3}}, {{0xd65,3},{0x159f,4}}, {{0xae9,5},{0xb2c,4}}, + {{0x1f2b,4},{0x1a,1}}, {{0x271e,3},{0xbeb,1}}, {{0xcfd,4},{0xf21,3}}, {{0x174e,3},{0x2b,3}}, + {{0x1f26,7},{0xf99,4}}, {{0x3234,3},{0x1b80,4}}, {{0x135f4,7},{0xdf0,2}}, {{0x264c,6},{0x89c8,5}}, + {{0xa4d,2},{0x244c7,2}}, {{0x2958,9},{0xb2e,2}}, {{0xe6d,2},{0x1555,7}}, {{0x30c8,5},{0xcb8,2}}, + {{0xf96,4},{0xc4d,2}}, {{0x70ea,3},{0x25428,3}}, {{0x2bb2,6},{0x114d,2}}, {{0x69e6,8},{0x10dc,2}}, + {{0x1a5c,3},{0x1d,1}}, {{0x804,16},{0x804,16}}, {{0x1084,3},{0x40b6,4}}, {{0x26f1,4},{0xc67,2}}, + {{0x29ecd,3},{0x278dc,1}}, {{0xbb5,1},{0x14d5,3}}, {{0x1e45,3},{0xb4b,2}}, {{0x3ee4,5},{0xb46d,5}}, + {{0xbcb,3},{0x1b4f,3}}, {{0xbe7,1},{0x27b6,1}}, {{0xc13,4},{0xc17,3}}, {{0x6d81,3},{0xb55,2}}, + {{0x1095,4},{0xa04b,3}}, {{0x153c,6},{0xb8a,3}}, {{0xc25,4},{0xc22,3}}, {{0x3694,5},{0xc8a,2}}, + {{0xc25,4},{0xde9,4}}, {{0x11464,7},{0x2b,3}}, {{0x5cd1,4},{0x5cd5,4}}, {{0x162c,10},{0xb52,6}}, + {{0x9a9,8},{0x9a9,8}}, {{0x1afd,5},{0x2b,1}}, {{0xc27,4},{0x23bb,4}}, {{0x1d55,4},{0x142e,1}}, + {{0x10ea,3},{0xb2c,2}}, {{0x6ac5,1},{0xbeb,1}}, {{0x418d,5},{0xfe5,2}}, {{0x13bc,7},{0x1498,4}}, + {{0x229d,3},{0x5396,3}}, {{0xbd62,6},{0xeb3,3}}, {{0x179c0,6},{0x2b,3}}, {{0xb7d,1},{0xae7,1}}, + {{0x281f,3},{0xf99,4}}, {{0x62ca,10},{0x2b,3}}, {{0x1fad,10},{0x1fb7,5}}, {{0xae5,1},{0x1089,2}}, + {{0x1040,6},{0x3921,5}}, {{0x20bb,3},{0x1685,3}}, {{0x9a9,1},{0x22cf8,1}}, {{0x2b,1},{0xb52,6}}, + {{0xc25,4},{0xb84a,6}}, {{0x72b6,3},{0x2746,3}}, {{0xa7f2,5},{0x15583,3}}, {{0xf8cf,2},{0x10f0,1}}, + {{0xcfd,4},{0x2318,4}}, {{0x125c,8},{0x1b80,4}}, {{0x6b61,2},{0xdd2,4}}, {{0x1b4e3,1},{0x27e1c,2}}, + {{0x1040,6},{0xbe8,3}}, {{0xb6ae,6},{0x1cac,4}}, {{0x257a,5},{0xaea,2}}, {{0x6d8e,3},{0x1097,5}}, + {{0x974e,5},{0xc57,3}}, {{0xba5,4},{0x1099,3}}, {{0xc49,3},{0xae2,1}}, {{0xddc,4},{0xf38f,3}}, + {{0xff20,4},{0xfef4,4}}, {{0x244b9,2},{0x6fac,2}}, {{0x3cec,9},{0xb52,5}}, {{0x2151,5},{0xc1c,2}}, + {{0x11ef,3},{0xe4d,6}}, {{0x2b,1},{0xbd6,2}}, {{0x30,2},{0x804,8}}, {{0x178c,3},{0x139e,2}}, + {{0x26b5,4},{0xe35,6}}, {{0x117c,1},{0x251d8,2}}, {{0xbe7,1},{0x8560,6}}, {{0x5442,5},{0xc1c,2}}, + {{0x1e27,6},{0xdf0,2}}, {{0x4b45,9},{0x10dc,2}}, {{0xbb5,1},{0xbcc2,3}}, {{0x1878,1},{0x1c14,6}}, + {{0x70c8,2},{0xff22,2}}, {{0x33b2,3},{0xd17,3}}, {{0x3234,3},{0x12263,6}}, {{0x6d8e,3},{0xc60,3}}, + {{0xae7,2},{0xb79,2}}, {{0x132f,3},{0xc8e,3}}, {{0x24475,6},{0x24733,2}}, {{0xae5,1},{0xcce,3}}, + {{0x13702,7},{0x2b,3}}, {{0x1d,1},{0x2b,1}}, {{0xbe0,1},{0x26fa,4}}, {{0xddc,4},{0xb52,6}}, + {{0x10f3,1},{0x27b6,1}}, {{0x10ca,1},{0x1150,2}}, {{0x2b,2},{0x1916,5}}, {{0x1095,3},{0xcf68,2}}, + {{0x43e3,1},{0x1878,1}}, {{0xedd,3},{0x1c8f,3}}, {{0x9b92,7},{0xb7c,3}}, {{0x1878,1},{0xca7,3}}, + {{0xd41,3},{0x5a1c,3}}, {{0xb54,3},{0x10dc,2}}, {{0x12fe,2},{0xb65,2}}, {{0xb7d,2},{0x1197,4}}, + {{0x10ec,1},{0xb82,3}}, {{0xc25,3},{0x2b03,5}}, {{0x27895,3},{0x27897,1}}, {{0x75cd,4},{0xaf2,1}}, + {{0xde9,1},{0x1cef,3}}, {{0x2b,2},{0xb60,2}}, {{0x10fb,4},{0x107d,3}}, {{0x151c,4},{0x1719,3}}, + {{0x3f9a,4},{0xcf7,6}}, {{0x142c,3},{0x298a,2}}, {{0x17bc,3},{0x1a664,6}}, {{0xcd9,3},{0x1c25,4}}, + {{0x7c2,4},{0x7c4,1}}, {{0xb2c,2},{0xde4,2}}, {{0x1c,1},{0x700f,3}}, {{0x244ad,2},{0xa51,2}}, + {{0xd41,4},{0xc67,2}}, {{0xc17,3},{0xdd5,4}}, {{0xedb,4},{0xb64,2}}, {{0x1bc5,5},{0xb7c,3}}, + {{0x7052,3},{0x1045,3}}, {{0x27,1},{0x28,2}}, {{0xbb5,1},{0xb7e5,5}}, {{0x6d8e,3},{0x16e2,2}}, + {{0x1463,5},{0xc8a,2}}, {{0x101c0,7},{0xae7,1}}, {{0x1173,2},{0x278d6,1}}, {{0xc77,2},{0xaf2,1}}, + {{0x10f1e,6},{0xb65,2}}, {{0x4196,3},{0xe6d,2}}, {{0x271e,3},{0xd5c,1}}, {{0x1f6b1,6},{0xd57,2}}, + {{0x139e,2},{0x1685,7}}, {{0xcd9,5},{0x1561,7}}, {{0xc49,3},{0x4652,6}}, {{0xbd1,2},{0xbd3,3}}, + {{0x3234,3},{0x14b6,2}}, {{0x12026,7},{0x2b,3}}, {{0x6f74,4},{0x1b887,2}}, {{0x10f0,1},{0x10f7,1}}, + {{0x44b8,6},{0x1c25,4}}, {{0x6b1e,4},{0x10dc,2}}, {{0x244f5,2},{0x24673,2}}, {{0xddc,4},{0xb4b,2}}, + {{0x1ed49,3},{0x19,1}}, {{0xbb5,1},{0x1152,3}}, {{0xaea,1},{0x52c6,3}}, {{0x61ac,6},{0x25df,4}}, + {{0x2788f,3},{0x7c4,1}}, {{0x25205,2},{0x25202,2}}, {{0x2796,3},{0xf99,4}}, {{0x9ad2,7},{0x3409,5}}, + {{0xd41,3},{0x10cd3,7}}, {{0x24f87,2},{0x1b4e3,1}}, {{0x17ec,5},{0xb6e,2}}, {{0x177c,3},{0x20f1a,4}}, + {{0x41da,3},{0x9b41,5}}, {{0xa786,7},{0xd60,5}}, {{0x725e,5},{0xb7d,2}}, {{0xaec,2},{0xb2c,2}}, + {{0x1e74f,4},{0xcbf,3}}, {{0x8d16,5},{0x31f8,4}}, {{0x10ec,1},{0x4882,3}}, {{0x10c8,3},{0xb72,2}}, + {{0x24461,1},{0x2445e,1}}, {{0xb139,5},{0xb13e,6}}, {{0x178c,3},{0xb066,2}}, {{0x8092,6},{0x674c,3}}, + {{0x9982,9},{0x10dc,2}}, {{0xbe4,1},{0x43e3,1}}, {{0xb47,2},{0xb7d,2}}, {{0xceb,3},{0x78a2,4}}, + {{0xf1ba,8},{0xb2c,2}}, {{0xd76,5},{0xb7d,1}}, {{0x26f1,4},{0x1cef,3}}, {{0x31e0,5},{0x2090,5}}, + {{0xa012,5},{0xce2,3}}, {{0xaf1,1},{0x2b,2}}, {{0x3f7e,6},{0xbe1,2}}, {{0x752e,6},{0x3e2a,4}}, + {{0x153c,9},{0x1555,7}}, {{0x52fd,9},{0x1408,3}}, {{0xb6c,3},{0x1ec2,4}}, {{0x1b13e,3},{0x278a9,2}}, + {{0x27b4,3},{0x10ec,1}}, {{0xbde,3},{0x28,1}}, {{0x29ecd,3},{0x278a9,1}}, {{0x2403,12},{0xb7c,3}}, + {{0xdba,4},{0xfde,4}}, {{0x17bc,3},{0xb2f,1}}, {{0x1b93,6},{0xdf5,4}}, {{0x1719,3},{0xb65,2}}, + {{0xe64,4},{0xb55,2}}, {{0xae5,1},{0x1308,3}}, {{0xb8b,2},{0x11ef,2}}, {{0x2cd8,10},{0x10dc,2}}, + {{0x1e,1},{0xb066,2}}, {{0x1a94,6},{0x12b1,4}}, {{0xa7da,3},{0x628f,6}}, {{0xb44,3},{0x40b6,3}}, + {{0x159c,4},{0xb4a,3}}, {{0x29ecd,3},{0x116c,1}}, {{0xbde,3},{0x26fa,4}}, {{0x3e90,5},{0x2dc0,6}}, + {{0xcf3e,2},{0xd1b,1}}, {{0xceb,3},{0x7fda,4}}, {{0x29e8c,3},{0x116d,1}}, {{0xbbf,2},{0xc8e,3}}, + {{0x1a8d,5},{0xb2c,2}}, {{0x24a2f,2},{0x1b4e3,1}}, {{0x2c76,4},{0xaf1,1}}, {{0x70c6,4},{0x1016a,2}}, + {{0x27,1},{0xae2,1}}, {{0xd1a,2},{0xd1b,1}}, {{0xd08e,5},{0x5278,3}}, {{0x15694,5},{0xbd90,3}}, + {{0xcd9,4},{0x7445,5}}, {{0x1aa3,6},{0x2abe,5}}, {{0x1144,4},{0xb76,4}}, {{0x93be,10},{0xd0d,2}}, + {{0x19b3,4},{0x1bfc9,4}}, {{0x40f8,4},{0x1393,3}}, {{0x12a44,7},{0xc34,3}}, {{0x116c,1},{0x278f3,2}}, + {{0x1e,1},{0x2b,1}}, {{0x2445c,3},{0x25225,6}}, {{0x251d8,2},{0x27d20,2}}, {{0x27b4,3},{0xb8f,2}}, + {{0xcc37,7},{0x11f2,3}}, {{0x27895,3},{0x116d,1}}, {{0xc77,2},{0xeb2,1}}, {{0x667f,10},{0x2b,3}}, + {{0x6b6e,3},{0xbe85,5}}, {{0xb7f,3},{0x20b5,3}}, {{0xae6,2},{0x27,1}}, {{0x6783,5},{0x539c,3}}, + {{0x4106,4},{0xc55,2}}, {{0x348e,7},{0x40bc,4}}, {{0xb8b,2},{0xc67,2}}, {{0x1b13e,3},{0x278af,2}}, + {{0xd54,2},{0x2d,1}}, {{0x3db0,5},{0xcd5,2}}, {{0x3704,6},{0xbbf,2}}, {{0xbe0,1},{0xa249,4}}, + {{0xae0,1},{0x2bfc,3}}, {{0x422e,3},{0x1864,2}}, {{0x283e,2},{0xd5c,1}}, {{0x27b6,1},{0x1ae2,2}}, + {{0x271e,3},{0xcbc,4}}, {{0xe64,5},{0xfb2,2}}, {{0x41ef,2},{0xfffb,2}}, {{0x13afe,7},{0x1a,2}}, + {{0x28871,3},{0x1b4e3,1}}, {{0xc8a,2},{0x21,1}}, {{0xaec,2},{0xc67,2}}, {{0x4351,2},{0xd5c,1}}, + {{0x3234,3},{0xb469,4}}, {{0x2b,1},{0xb8f,2}}, {{0xae0,1},{0x5277,2}}, {{0xf0e,5},{0xae2,1}}, + {{0x2793d,4},{0x2797d,2}}, {{0x3f1c,9},{0x10dc,2}}, {{0x1bb85,5},{0xc63,3}}, {{0xa7d1,2},{0x10fa,1}}, + {{0x3a14,6},{0x2a16,3}}, {{0x5ea0,4},{0x1916,5}}, {{0x2a948,1},{0x9c9,1}}, {{0xb55,2},{0xb4b,2}}, + {{0x95fe,8},{0xb78,2}}, {{0xb7d,1},{0xaf2,1}}, {{0xae5,1},{0xbd6,2}}, {{0xd65,3},{0x1685,7}}, + {{0xb44,3},{0x2aa0,3}}, {{0x1c,1},{0xc4d,2}}, {{0x236d3,3},{0x257c,2}}, {{0xaeb,2},{0xeb6,3}}, + {{0x1a,1},{0xb48,2}}, {{0xc77,2},{0x140a,2}}, {{0x15dfb,6},{0xb47,2}}, {{0xb70,2},{0x1c,1}}, + {{0x1f0f,4},{0x11b8,4}}, {{0x779e,8},{0xb48,2}}, {{0xbc1,2},{0x3ba5,4}}, {{0x2226e,5},{0xb78,2}}, + {{0x6e46,3},{0xd9f,8}}, {{0xb6c,3},{0x11c9b,7}}, {{0xb56,2},{0x418d,7}}, {{0x271e,3},{0x10f7,1}}, + {{0x27e2b,2},{0x2446c,1}}, {{0x804,2},{0x1cf1d,2}}, {{0x178c,3},{0xb52,2}}, {{0xbd1,2},{0xb65,2}}, + {{0x16dc,10},{0xb52,5}}, {{0xb71,2},{0xb9c,2}}, {{0x1ab2,4},{0x1140,4}}, {{0x13a18,6},{0x2b,3}}, + {{0xfc6a,5},{0xb2f,1}}, {{0x2796,3},{0xb9e,2}}, {{0x804,2},{0x1a328,2}}, {{0x10f3,1},{0x1bf08,4}}, + {{0x6676,4},{0xd17,3}}, {{0x2b2ff,2},{0x2b2ff,1}}, {{0xb52,2},{0xb64,2}}, {{0x17ec,5},{0x1e,1}}, + {{0x1ec51,5},{0x10dc,2}}, {{0xcb5,3},{0x220e5,4}}, {{0x1b4f,3},{0xc63,3}}, {{0xf59,3},{0xc67,2}}, + {{0xbb5,1},{0xa60f,3}}, {{0x17fbc,5},{0x1b,1}}, {{0xb76,3},{0xbd3,3}}, {{0xbeb,1},{0x1aa6,3}}, + {{0x20bb,3},{0xbcc2,3}}, {{0xe97,7},{0xc89,2}}, {{0x28,1},{0x139f,3}}, {{0x3234,3},{0x16fcf,3}}, + {{0x1fbc,10},{0x11b8,4}}, {{0x10fb,4},{0x2542,10}}, {{0x1764e,6},{0x1257,3}}, {{0xbd6,4},{0x11e6,6}}, + {{0xceb,3},{0x11ef,3}}, {{0x16dc,5},{0xae7,1}}, {{0xd5c,1},{0xae0,1}}, {{0xae7,2},{0xb2c,2}}, + {{0x441c,3},{0x4460,9}}, {{0x20bb,3},{0x10504,4}}, {{0x1ed58,1},{0x27d20,2}}, {{0xbde,3},{0xb55,2}}, + {{0x2e55,3},{0x220f,5}}, {{0xae6,3},{0xb2c,4}}, {{0x181e,2},{0x1915,6}}, {{0x1058,4},{0x103a,3}}, + {{0x3234,3},{0x1b09,3}}, {{0xc66a,6},{0x103b,5}}, {{0xb64,2},{0xb48,2}}, {{0x10f2,1},{0xbe4,1}}, + {{0x1dbe,5},{0x1058,9}}, {{0x1b140,2},{0x116d,1}}, {{0x40b2,4},{0x40b6,3}}, {{0x181c,3},{0xde9,4}}, + {{0x19c2f,2},{0x3ba5,4}}, {{0x1e,1},{0x67c0,4}}, {{0x6c3c,5},{0x172b2,4}}, {{0x26c6,1},{0xb9c,2}}, + {{0x6067,7},{0x2b4c,4}}, {{0x278ed,2},{0x924,1}}, {{0x10ef,1},{0x22e3,3}}, {{0x41da,3},{0x10ef,1}}, + {{0x5915,6},{0x2b,2}}, {{0xba5,4},{0x64d7,7}}, {{0x144c,6},{0xc89,2}}, {{0x1ae4e,2},{0x10f6,1}}, + {{0x3baa,9},{0x2b,3}}, {{0x229b,5},{0xfe5,6}}, {{0x6ac3,3},{0x10e2b,3}}, {{0x70a8,4},{0xfef4,4}}, + {{0x17be,2},{0x24fb,6}}, {{0xeb2,1},{0xba7,3}}, {{0x30ac,8},{0xb52,5}}, {{0x13e8c,5},{0x101c,2}}, + {{0x532,2},{0x30,128}}, {{0xbde,3},{0xae2,1}}, {{0x272d,5},{0xfe5,2}}, {{0xae7,1},{0x25da,3}}, + {{0xb44,6},{0x4a2e,5}}, {{0x29e8c,3},{0x278af,1}}, {{0xc25,3},{0xd57,2}}, {{0x40f8,4},{0x11f2,3}}, + {{0x104b8,5},{0x1f13,4}}, {{0x17fc,5},{0x1045,3}}, {{0x271e,3},{0x1055,3}}, {{0xc1c,2},{0x5c76,4}}, + {{0xb79,2},{0x1c43,4}}, {{0x2796,3},{0xee2,2}}, {{0x29ecd,3},{0x1b6ab,1}}, {{0x177c,3},{0x1eff4,5}}, + {{0xceb,3},{0xd57,2}}, {{0xcc0,3},{0xcc3,4}}, {{0x6b6c,5},{0x13564,4}}, {{0x6735,4},{0x4076,4}}, + {{0xa2d6,5},{0x4884,3}}, {{0x28,2},{0x2b,1}}, {{0x4a27,4},{0x2c0a,3}}, {{0xc675,5},{0x31d6,5}}, + {{0xae5,1},{0xae7,1}}, {{0xd76,7},{0xd7d,5}}, {{0x4776,8},{0xb8f,3}}, {{0xc37,3},{0xb6ff,4}}, + {{0x27895,3},{0x1b6ab,1}}, {{0xab9a,3},{0x1a,2}}, {{0xd0f,4},{0xb8a,2}}, {{0xdf0,2},{0xc34,3}}, + {{0x17fc,5},{0xae0,1}}, {{0x6e6b,8},{0xb52,5}}, {{0x8f1a,7},{0x10dc,2}}, {{0xae7,1},{0x1c2b0,2}}, + {{0x1434,3},{0xb54,4}}, {{0xcfe9,6},{0x1a35,5}}, {{0x2793d,4},{0x279a1,2}}, {{0x13a2,2},{0x25da,3}}, + {{0xbde,3},{0xcc0e,3}}, {{0x2912,5},{0x1f,3}}, {{0xb63,2},{0x1257,3}}, {{0x4119,3},{0x28,1}}, + {{0x139e,2},{0x2b,3}}, {{0x127d8,6},{0xf60,3}}, {{0x6957,7},{0xb52,6}}, {{0xaca2,3},{0x1fc0c,4}}, + {{0x5671,5},{0xae9,2}}, {{0x43ab,8},{0xae7,1}}, {{0x432,12},{0x432,3}}, {{0xb6e,2},{0xd57,2}}, + {{0xcab,3},{0xb63,2}}, {{0x14d48,6},{0x129bb,4}}, {{0x1a3a,6},{0xb911,5}}, {{0xaea,1},{0xbb5,1}}, + {{0xb70,2},{0x2b,1}}, {{0xb2e,2},{0xc67,3}}, {{0xba5,4},{0x1480,12}}, {{0xc37,3},{0x166a6,5}}, + {{0xcc2c,5},{0xc34,3}}, {{0xc25,5},{0x54af,4}}, {{0x3fee,5},{0xae7,1}}, {{0xbde,3},{0x10ca,1}}, + {{0x1173,2},{0x1b6ab,1}}, {{0x24462,1},{0x1ed53,1}}, {{0x6ac3,3},{0xb52,2}}, {{0x15298,5},{0xae6,2}}, + {{0xd41,3},{0xb47,2}}, {{0x2ed0,7},{0x18d8,3}}, {{0x5ea0,6},{0xf05,7}}, {{0xb44,4},{0x1a,2}}, + {{0xa58e,10},{0x140a,2}}, {{0x1b13e,3},{0x1b6b3,2}}, {{0x1b140,2},{0x278af,1}}, {{0x10f2,1},{0x16f8,3}}, + {{0x30,2},{0x28e8e,2}}, {{0x1e27,5},{0xcf3e,5}}, {{0xddc,4},{0x1c159,4}}, {{0x27,1},{0xcc0e,3}}, + {{0x16fc,4},{0x1960,7}}, {{0x1e,1},{0x1308,3}}, {{0x1b13e,3},{0x278e1,2}}, {{0x2748,2},{0x27,1}}, + {{0x443e,2},{0xae7,1}}, {{0xdc33,7},{0x10dc,2}}, {{0xae6,3},{0xb68,4}}, {{0x3694,9},{0xb67,5}}, + {{0x638d,8},{0xc63,3}}, {{0x3f9a,4},{0x1c8f,3}}, {{0xae7,2},{0xbb4,4}}, {{0x159c,4},{0x3cc8,4}}, + {{0xb6e,2},{0x18d8,4}}, {{0x274b,5},{0x2195,7}}, {{0x7d6e,6},{0x18d8,3}}, {{0x41da,3},{0x423e,1}}, + {{0x732,4},{0x2445e,1}}, {{0xdd1a,6},{0x4452,5}}, {{0x17bf9,6},{0xae7,1}}, {{0x972a,7},{0xd7f,3}}, + {{0x3fc4,8},{0x2279,4}}, {{0x181c,3},{0xb75,2}}, {{0x256b,4},{0x1c25,3}}, {{0x27b6,1},{0x10f6,1}}, + {{0x14dc,7},{0xff7,5}}, {{0x6d81,3},{0xcce,3}}, {{0xaf3,4},{0x410e,2}}, {{0x142e,1},{0xb38e,2}}, + {{0x5d34,8},{0x2683,5}}, {{0x33bc,7},{0x103b,5}}, {{0x4a5b,6},{0x1152,3}}, {{0x2106,5},{0x10dc,2}}, + {{0x4a27,4},{0xc45f,4}}, {{0x27c3,5},{0x1c40,6}}, {{0xae5,1},{0x2c00,5}}, {{0xb01a,4},{0x4459,3}}, + {{0x5d34,5},{0x2195,3}}, {{0xfefc,4},{0xff20,4}}, {{0x9a9,1},{0x780,1}}, {{0x18,1},{0x1b4e3,1}}, + {{0xae2,1},{0xa60f,3}}, {{0x10fb,3},{0xaeb,3}}, {{0x5a5a,7},{0xcf7,6}}, {{0xcedb,2},{0xb78,2}}, + {{0xbcb,3},{0x6676,4}}, {{0x159c,4},{0x10e3,3}}, {{0x10f3,1},{0xbd1,2}}, {{0x1b4e4,1},{0x27cea,1}}, + {{0xbe7,1},{0x59f5,6}}, {{0x2912,4},{0x3825,5}}, {{0x28,2},{0xb47,2}}, {{0x2daa,5},{0xc095,6}}, + {{0xc25,3},{0x25ee,4}}, {{0xa2e2,5},{0x13c43,4}}, {{0x278cf,2},{0x924,1}}, {{0x29e78,3},{0x24,1}}, + {{0x422e,3},{0x17a2f,6}}, {{0x179ce,3},{0xae7,1}}, {{0x139c,6},{0x10283,4}}, {{0x1ed58,1},{0x2446f,2}}, + {{0x17bc,4},{0x1440,4}}, {{0x28,2},{0x2275,4}}, {{0x1ab2,4},{0xb65,2}}, {{0xcde,3},{0xb7d,1}}, + {{0x6e44,5},{0x1aa6,3}}, {{0xb55,2},{0x10dc,2}}, {{0x944e,6},{0x48eb,4}}, {{0x397a,5},{0x4582,6}}, + {{0x70a0,6},{0x1a328,2}}, {{0xf85,4},{0x13327,5}}, {{0x1068e,7},{0xae7,1}}, {{0x1a340,5},{0xb2c,2}}, + {{0x1150,2},{0x28,1}}, {{0xaca2,3},{0xd0b,3}}, {{0x443e,2},{0x28,1}}, {{0x67c0,3},{0xaf2,1}}, + {{0x15720,8},{0xaf2,1}}, {{0x10ea,3},{0xed5d,5}}, {{0xedb,5},{0x28,1}}, {{0x5a67,7},{0x10dc,2}}, + {{0xb85,2},{0xb2e,2}}, {{0x27895,3},{0x278d6,1}}, {{0x263f,3},{0xc55,2}}, {{0x3704,6},{0x89b9,4}}, + {{0xbb2,2},{0xbb2a,4}}, {{0x16a4,4},{0x1257,3}}, {{0xae7,1},{0xb7d,1}}, {{0x122c,4},{0x2c0a,4}}, + {{0xdf0,2},{0xaea,2}}, {{0x1a,1},{0xae5,1}}, {{0x6d8e,3},{0x1d8e,3}}, {{0x10ea,3},{0x120d3,4}}, + {{0x70ea,3},{0xa5de,4}}, {{0x323a,4},{0xb65,2}}, {{0x3f0e,8},{0x1577,4}}, {{0xb64,2},{0xd0c,2}}, + {{0x30,2},{0x25789,2}}, {{0xcc2c,6},{0x10c3,5}}, {{0x27895,3},{0x278a9,1}}, {{0x3af4,8},{0x8bf2,4}}, + {{0xe6d,2},{0x1b0a,2}}, {{0x41da,3},{0x11c9b,7}}, {{0x2445c,3},{0x27cf6,2}}, {{0x24a40,3},{0x432,1}}, + {{0x10c8,3},{0xbd8,2}}, {{0xbeb,1},{0xd50,4}}, {{0x26c4,3},{0x1d59,3}}, {{0xde9,1},{0x41eb,4}}, + {{0xcfd,5},{0x23ea,5}}, {{0xd0f,4},{0x28,1}}, {{0x6e44,5},{0xd9f,8}}, {{0xc12a,6},{0x295c,4}}, + {{0x5a4d,8},{0xd0d,2}}, {{0xb6c,4},{0x25ee,4}}, {{0xae2,1},{0xb85,2}}, {{0x29e8c,3},{0x278a9,1}}, + {{0xc2e,2},{0xe4d,6}}, {{0xa4d,4},{0xa51,2}}, {{0x9e9,2},{0xfed0,6}}, {{0x1cbf,5},{0x4652,6}}, + {{0x3ee4,8},{0xdc1,5}}, {{0x1168a,7},{0x10dc,2}}, {{0xb44,3},{0x174e,3}}, {{0x4d19,6},{0x1a,2}}, + {{0x7a6e,4},{0x9133,3}}, {{0x804,2},{0xff22,2}}, {{0xbd6d,7},{0xd0d,2}}, {{0x7c4,1},{0x432,1}}, + {{0xbcb,3},{0xf44,5}}, {{0x27cea,1},{0x27d8b,2}}, {{0xf6a,5},{0xb2e,2}}, {{0x11ec8,5},{0x7593,3}}, + {{0x6f74,4},{0x24673,2}}, {{0x40b2,4},{0x3e2a,4}}, {{0x8c4,4},{0x30,30}}, {{0x16fc,4},{0x1dcf,3}}, + {{0x28522,2},{0xd5c,1}}, {{0xbe0,1},{0x1d,1}}, {{0xcb5,3},{0xc1e,2}}, {{0xb6c,3},{0x1372,3}}, + {{0x41b0,5},{0xcc0,3}}, {{0x22e6,5},{0xb63,2}}, {{0x1961,3},{0xb54,4}}, {{0xedb,4},{0xb2e,2}}, + {{0x9ce2,10},{0xd0d,2}}, {{0xa7d1,3},{0x10f1,3}}, {{0x27895,3},{0x278af,1}}, {{0xaca2,3},{0x1878,1}}, + {{0xae7,1},{0x1b,1}}, {{0xf30,5},{0x1307,3}}, {{0x14e74,6},{0x1b5c,3}}, {{0x143c,5},{0x30db,5}}, + {{0x1761,3},{0x18ca,3}}, {{0x1173,2},{0x116d,1}}, {{0x10f7,1},{0xd0c8,4}}, {{0x2793f,3},{0x27897,1}}, + {{0x1cec,10},{0xb52,5}}, {{0xd41,4},{0x41b3,4}}, {{0x27,1},{0x134f,3}}, {{0x2d,1},{0xb47,2}}, + {{0xd54,1},{0x26a9,5}}, {{0x10f2,1},{0x15adc,2}}, {{0xdf2,3},{0xae6,2}}, {{0xf96,4},{0xc62,3}}, + {{0x10ea,3},{0x11f2,3}}, {{0x415c,5},{0x1a05,8}}, {{0x9a9,1},{0x27d8b,2}}, {{0xeec,7},{0xd216,4}}, + {{0x415e,3},{0xb7d,1}}, {{0xcde,3},{0x1c,1}}, {{0x981a,9},{0x10dc,2}}, {{0xc25,5},{0x7295,5}}, + {{0x2793d,4},{0x27983,2}}, {{0x709c,2},{0x1b887,2}}, {{0x3234,3},{0xd0b2,8}}, {{0x9c16,9},{0x10dc,2}}, + {{0xcedb,2},{0x1b,1}}, {{0x23b8,9},{0xb7a,5}}, {{0x1a,3},{0xb066,2}}, {{0xd1a,2},{0xf9ee,5}}, + {{0x18538,6},{0xae7,1}}, {{0x1760f,5},{0x3a81,3}}, {{0xb9c,2},{0x21,1}}, {{0x5c76,4},{0x1f,1}}, + {{0xd5cc,5},{0x2b,3}}, {{0x79f6,7},{0xbcf0,4}}, {{0x4728,5},{0x107f1,5}}, {{0x133c,6},{0xc1c,2}}, + {{0x80d3,5},{0xd0d,2}}, {{0xbeb,2},{0x323c,2}}, {{0x8d52,7},{0x4e32,5}}, {{0xeb3d,7},{0xe1d,3}}, + {{0x26c6,1},{0x152c4,2}}, {{0x20bb,3},{0x2c00,5}}, {{0x2844,2},{0x2840,2}}, {{0xc52,2},{0xb8a,2}}, + {{0x10c8,3},{0xae5,1}}, {{0xd54,1},{0x27,1}}, {{0xbed,2},{0x10c4,4}}, {{0x17de,2},{0xb9d,3}}, + {{0x11914,6},{0xc57,3}}, {{0xa22e,7},{0x10dc,2}}, {{0xc13,4},{0x10520,6}}, {{0x159c,8},{0x2b,2}}, + {{0x14f3c,5},{0x14f4b,5}}, {{0x1e,1},{0x2b76,3}}, {{0x864a,7},{0x8651,4}}, {{0xadf,2},{0x27,1}}, + {{0x1ed49,3},{0x28634,1}}, {{0xaf2,1},{0x2d,1}}, {{0xbb2,2},{0xc0c3,3}}, {{0xb44,3},{0x18d4,3}}, + {{0x1a1d6,5},{0x1058,4}}, {{0xeb2,1},{0xc1c,2}}, {{0xb3a1,6},{0x132f,3}}, {{0xceb,3},{0xa45d,4}}, + {{0x2c76,4},{0x4459,3}}, {{0x6137,5},{0x1c2f,4}}, {{0xddc,5},{0x2af8,4}}, {{0x1c,1},{0x5c25,5}}, + {{0xbafa,5},{0xb9d,3}}, {{0xc37,10},{0xb55,2}}, {{0x1fa29,5},{0xae7,1}}, {{0x1878,2},{0xd0d,2}}, + {{0xb7f,3},{0x5a06,3}}, {{0xea2a,5},{0x1f,1}}, {{0x6ac3,3},{0xa7d1,6}}, {{0x27b4,3},{0xc4d,2}}, + {{0x36dd,3},{0x2584,5}}, {{0x1cce,8},{0x89f6,3}}, {{0xd65,3},{0xae9,2}}, {{0x17241,5},{0xc55,2}}, + {{0x422e,3},{0x1d448,5}}, {{0xaec,2},{0x10dc,2}}, {{0xb2c5,6},{0x10dc,2}}, {{0x151c,4},{0x3825,5}}, + {{0x2b,2},{0x8c2a,6}}, {{0x422e,3},{0x1150,2}}, {{0x10fb,3},{0xb70,2}}, {{0x18a5,5},{0x7fda,4}}, + {{0x5ed4,4},{0x13e3,4}}, {{0x16dc,5},{0x14d5,3}}, {{0x29e8c,3},{0x116c,1}}, {{0xbe0,1},{0x10f3,1}}, + {{0xded,5},{0x1308,3}}, {{0x26c6,2},{0x7fda,4}}, {{0xb65,2},{0xc57,4}}, {{0xbb5,1},{0x103a,3}}, + {{0x290c,2},{0x290e,4}}, {{0xbde,3},{0x14d5,3}}, {{0x30,2},{0x14d5,3}}, {{0x10f2,1},{0xb55,2}}, + {{0x35b4,7},{0x35bb,5}}, {{0xbe7,1},{0x20cd,7}}, {{0x141c,5},{0x132f,3}}, {{0x1a661,4},{0xbb1,3}}, + {{0x101d4,6},{0xc63,3}}, {{0xd41,4},{0xbd90,3}}, {{0x1561,3},{0xaf2,1}}, {{0x257a,4},{0x2742,3}}, + {{0x1b13e,3},{0x116c,2}}, {{0x1b4e4,1},{0x20b1f,6}}, {{0x102f,6},{0x13e4,3}}, {{0x10fb,3},{0x3c66,6}}, + {{0x10c8,3},{0x28,1}}, {{0xeec,7},{0x32ff,4}}, {{0x1bfc,6},{0x1d5a,3}}, {{0x1612e,5},{0xde2,4}}, + {{0xcd9,5},{0xae5,1}}, {{0xf5e,3},{0xce8,3}}, {{0x261f,5},{0x1942,4}}, {{0x3e90,5},{0x4ae5,5}}, + {{0x19ba,3},{0x11ef,2}}, {{0x27895,3},{0x278dc,1}}, {{0x4106,4},{0x1260,4}}, {{0x2403,7},{0x2b03,5}}, + {{0x18bef,6},{0xd0d,2}}, {{0xb7d,1},{0xae0,1}}, {{0x1cec,5},{0xcb8,2}}, {{0x2a891,3},{0x781,2}}, + {{0xb44,3},{0xcf6,3}}, {{0xde9,1},{0x13a3,3}}, {{0xc25,5},{0xae6,3}}, {{0x26099,5},{0xae7,1}}, + {{0x139e,2},{0xb65,2}}, {{0x11b76,6},{0xb54,4}}, {{0x3aa0,7},{0x6242,6}}, {{0x270f,5},{0x1a,2}}, + {{0x422e,3},{0x3245,4}}, {{0x10192,2},{0x1b709,2}}, {{0xe9f,3},{0xb0ce,3}}, {{0x20bb,5},{0xaea,1}}, + {{0x1b13e,3},{0x278f3,2}}, {{0xae2,1},{0x11b8,4}}, {{0x1a,3},{0x28,1}}, {{0x1935a,5},{0xb2f,1}}, + {{0x4186,5},{0x418b,9}}, {{0x15dc,8},{0x1260,4}}, {{0xfc9,6},{0x1cc5,3}}, {{0x44b8,6},{0x2b3e,4}}, + {{0x10fb,3},{0x14d5,3}}, {{0x2796,3},{0x10f7,1}}, {{0x14fc8,5},{0xaf1,2}}, {{0xbd6,4},{0x1b80,4}}, + {{0xd54,1},{0x428b,2}}, {{0xceb,3},{0x967e,4}}, {{0xfef4,4},{0x247f1,4}}, {{0x94a2,7},{0xdb7f,4}}, + {{0x192c,11},{0xc8f,2}}, {{0x6f21,4},{0x25c2,3}}, {{0x3d78,7},{0x9ff5,5}}, {{0x133c,9},{0xb63,2}}, + {{0x11ba8,4},{0x2746,3}}, {{0x5a8e,6},{0x139f,3}}, {{0x1d3bd,6},{0xb65,2}}, {{0xdf0,2},{0xaf1,1}}, + {{0xf8cf,2},{0xf8d1,2}}, {{0x5136,6},{0x11b8,4}}, {{0x3e58,7},{0x108e,7}}, {{0xc89,2},{0xb55,2}}, + {{0x734,1},{0x251e8,4}}, {{0x1e09,13},{0xaf1,1}}, {{0xe42,5},{0xf14,2}}, {{0x20bb,3},{0xb47,2}}, + {{0xdf0,2},{0x1081,3}}, {{0xc60,5},{0x5fe0,4}}, {{0x20,2},{0x12e94,5}}, {{0x177c,3},{0x2bfc,3}}, + {{0x2796,3},{0x1df62,5}}, {{0xc67,2},{0xd1b,1}}, {{0x27cea,1},{0x1b4e3,1}}, {{0x3e04,6},{0x5cd6,3}}, + {{0xb44,3},{0x1ee0,3}}, {{0x80aa,7},{0xc8e,3}}, {{0xaea,1},{0x11ef,2}}, {{0xbb1,3},{0xbd1,2}}, + {{0x17bc,4},{0x1f,2}}, {{0x94a2,7},{0x4452,5}}, {{0x804,2},{0x1016a,2}}, {{0x17ec,6},{0xe4a,4}}, + {{0x27895,3},{0x116c,1}}, {{0xc17,5},{0x12d5,7}}, {{0x2859,5},{0x13f4,8}}, {{0x15ac,5},{0x459e,4}}, + {{0x271ff,4},{0x1595a,2}}, {{0xba5,5},{0x600f,5}}, {{0x1175c,5},{0xc62,3}}, {{0xbe4,1},{0xce2,3}}, + {{0xeec,7},{0x250a,7}}, {{0x19ba,3},{0x619a,3}}, {{0xd41,4},{0xb996,4}}, {{0x8ffe,7},{0x2bff,4}}, + {{0xd76,5},{0xc30,2}}, {{0xceb,3},{0xa24a,3}}, {{0x415e,3},{0x2a91,4}}, {{0x1cec,6},{0x3042,7}}, + {{0x1cce,8},{0xd0b,4}}, {{0x1393,3},{0xc1e,2}}, {{0xb82,2},{0xe70,4}}, {{0x178c,3},{0x2360b,2}}, + {{0x348e,9},{0x10c3,5}}, {{0x122c,4},{0xb55,3}}, {{0x804,2},{0x70b4,2}}, {{0x406c,10},{0x2971,3}}, + {{0xb87c,6},{0x27,1}}, {{0x26f1,4},{0x2045,3}}, {{0x2d,1},{0x79d6,4}}, {{0x152c4,2},{0xf8cf,2}}, + {{0x1477e,6},{0xc34,3}}, {{0x10ed,2},{0x28da,1}}, {{0xcd9,4},{0x139f,3}}, {{0xca7,2},{0x12be,3}}, + {{0xb4a,3},{0xae1,3}}, {{0x27,1},{0xc55,2}}, {{0xd41,4},{0x7a06,8}}, {{0x4d19,6},{0xe4a,4}}, + {{0xae0,1},{0x535b,5}}, {{0x1173,2},{0x278dc,1}}, {{0x12ac,9},{0xd0d,2}}, {{0x142c,3},{0xdf0,2}}, + {{0xceb,3},{0xc4d,2}}, {{0xb70,2},{0xbb4,4}}, {{0x90a6,8},{0x90ae,4}}, {{0xaeb,2},{0x250c,5}}, + {{0x8abe,5},{0x22e3,3}}, {{0x10c8,3},{0xcc0,3}}, {{0x1cb0,8},{0xebf,4}}, {{0xd54,1},{0x10ba,2}}, + {{0xaf1,2},{0x2b,3}}, {{0xcb5,3},{0x5277,2}}, {{0x29c23,4},{0x1878,1}}, {{0xa9f8,2},{0xeee,5}}, + {{0xb2c,2},{0x2b,3}}, {{0x2160,5},{0x2683,5}}, {{0x27b6,1},{0x3dd1,2}}, {{0xa246,4},{0xbc5,3}}, + {{0xb44,3},{0xae2,1}}, {{0x25789,2},{0x157b6,2}}, {{0xf212,3},{0x25428,3}}, {{0xa7f2,5},{0x12ff,2}}, + {{0x12d3c,6},{0x2b,3}}, {{0x8056,9},{0x10dc,2}}, {{0xe9f3,6},{0xb54,3}}, {{0x1022e,6},{0x2288,4}}, + {{0x130c,7},{0x1313,7}}, {{0xc3e,3},{0xae2,1}}, {{0x1c,1},{0xe6d,2}}, {{0x177c,3},{0x46f8,3}}, + {{0xbe7,1},{0x1196,6}}, {{0x1084,3},{0x3e92,3}}, {{0xbbf,2},{0x6661,4}}, {{0x26c6,2},{0xc62,3}}, + {{0xb2f,1},{0xc55,2}}, {{0xf579,5},{0xb9d,3}}, {{0x20bb,5},{0x4075,2}}, {{0xfda0,3},{0x2dc0,6}}, + {{0x24a8,6},{0xb52,2}}, {{0xaf3,4},{0x70a2,2}}, {{0x23d2b,5},{0xb63,2}}, {{0xbde,3},{0x22e3,3}}, + {{0x159c,4},{0xb8f,2}}, {{0xb170,7},{0x7140,4}}, {{0x24da7,4},{0xc39,2}}, {{0x5401,5},{0xb85,2}}, + {{0x1f,4},{0x24af9,2}}, {{0x1b57,4},{0xbad5,4}}, {{0x2445c,3},{0x2a912,2}}, {{0x159c8,1},{0x1ed58,1}}, + {{0xae7,2},{0x1d,1}}, {{0x30,2},{0x10188,4}}, {{0x3cde,8},{0x2b,3}}, {{0x441c,3},{0x2bfc,3}}, + {{0x10ec,1},{0xaea,1}}, {{0xae5,1},{0xae0,1}}, {{0x1095,3},{0xd1b,1}}, {{0xc13,3},{0xcf0,2}}, + {{0x10ea,3},{0xc77,2}}, {{0x10f0,1},{0x4460,3}}, {{0x15abb,2},{0x1aaed,1}}, {{0xd7f,3},{0x1d,1}}, + {{0x20bb,3},{0x4694,5}}, {{0x4362,4},{0x889f,3}}, {{0xb7f,3},{0xe6d,3}}, {{0xc25,4},{0x11102,5}}, + {{0xcfd,5},{0xb7d,2}}, {{0x9136,6},{0x1260,4}}, {{0x7c4,1},{0x24461,1}}, {{0xb82,3},{0xaf2,1}}, + {{0xc25,3},{0x5396,3}}, {{0x3f62,5},{0xaf1,2}}, {{0x16505,6},{0x10dc,2}}, {{0x10b7c,7},{0xaf2,1}}, + {{0x177c,4},{0x12ff,2}}, {{0x794e,7},{0x18eb,5}}, {{0xb590,5},{0x2b,3}}, {{0xd54,1},{0xce3,2}}, + {{0x5630,6},{0x10504,4}}, {{0x1308,3},{0x12d7,5}}, {{0x1ae2,2},{0x2b,2}}, {{0x244b3,2},{0x6f6c,2}}, + {{0x1a,1},{0xfde,2}}, {{0xbd1,2},{0x10dc,2}}, {{0x10a78,6},{0xb54,2}}, {{0x28da,1},{0x10ec,1}}, + {{0x1b13e,3},{0x278ed,2}}, {{0x1c,1},{0x1402,3}}, {{0x1e,1},{0x1de00,5}}, {{0xbeb,1},{0xd57,2}}, + {{0x60cf,8},{0xae7,1}}, {{0x500b,10},{0xb78,2}}, {{0x2c76,4},{0x1b09,3}}, {{0x974e,5},{0x4868,4}}, + {{0x19b3,5},{0x2a95,5}}, {{0x4d08,4},{0x45a9,6}}, {{0xcfd,5},{0x64d7,8}}, {{0xbd8,2},{0xb2f,1}}, + {{0x2a91,2},{0x1e6c,6}}, {{0xaea,1},{0xc34,3}}, {{0xf367,5},{0xb7d,2}}, {{0xb44,3},{0x16f1,3}}, + {{0xc5ce,6},{0xb54,4}}, {{0xd0b,3},{0x2b,3}}, {{0xd57f,5},{0xb63,3}}, {{0x2445f,1},{0x948,1}}, + {{0x8a49,2},{0x28,1}}, {{0x6d81,3},{0x1d,1}}, {{0x244b9,2},{0x1b887,2}}, {{0xb7d,1},{0x1c25,4}}, + {{0x20bb,3},{0xb70,2}}, {{0x1c,1},{0xb2f,1}}, {{0x290c,2},{0x392d,3}}, {{0x178c,3},{0xb55,2}}, + {{0xcd9,4},{0xb8b,2}}, {{0x1084,3},{0x19504,6}}, {{0x177c,3},{0xbed,2}}, {{0x14cc,4},{0xbd2,3}}, + {{0xd5c,1},{0x2742,3}}, {{0x116c,2},{0x116e,1}}, {{0x44df,4},{0xe0a,5}}, {{0x1878,1},{0x43e3,1}}, + {{0x1a859,4},{0x1299e,4}}, {{0xda9,5},{0xdae,5}}, {{0xceaa,6},{0xb65,2}}, {{0x2912,5},{0x1433,4}}, + {{0x2045,3},{0x1c25,4}}, {{0x2796,3},{0x1140,4}}, {{0x65af,8},{0xc7b,4}}, {{0xda91,8},{0x10dc,2}}, + {{0xae0,1},{0x4590,5}}, {{0x53a6,7},{0x14a6,6}}, {{0xde9,1},{0xb9d,3}}, {{0xf018,8},{0xae7,1}}, + {{0xba4a,6},{0xdb7f,4}}, {{0x181c,3},{0xbe7,1}}, {{0xf52,4},{0x5bf1,7}}, {{0xb47d,4},{0x28,1}}, + {{0x762a,4},{0xc1c,2}}, {{0x1b13e,3},{0x278a3,2}}, {{0xcfd,5},{0x10fcc,5}}, {{0xbb2,2},{0xc55,2}}, + {{0x163f0,6},{0x2b8e,2}}, {{0xaf62,2},{0x10ca,1}}, {{0xbb5,2},{0x12ff,2}}, {{0x10ea,3},{0xb85,2}}, + {{0xeb9,6},{0xae7,1}}, {{0x8c4,4},{0xfed2,4}}, {{0x2796,3},{0x1889b,6}}, {{0xb44,3},{0x1cc5,3}}, + {{0xae7,2},{0xb63,3}}, {{0xb44,3},{0x10504,4}}, {{0x244cb,2},{0x70da,2}}, {{0x1257,2},{0xd17,3}}, + {{0x5442,4},{0xc8a,2}}, {{0x3e04,5},{0xae0,1}}, {{0x6cc0,2},{0x1e,2}}, {{0xd41,3},{0xec2,2}}, + {{0x178c,3},{0x1934,4}}, {{0xc1c4,5},{0x3e31,3}}, {{0x10c8,3},{0x1a10,2}}, {{0x3f9a,4},{0xb65,2}}, + {{0x2d5c9,2},{0x734,1}}, {{0xcfd,6},{0x2c17,3}}, {{0x2ae0,6},{0xb7c,3}}, {{0xd0a4,7},{0xb2e,2}}, + {{0x6b86,10},{0xd7a,3}}, {{0x261f,4},{0xaea,2}}, {{0x1972,2},{0xb2e,2}}, {{0x26c6,1},{0x1a96,4}}, + {{0xae6,2},{0x1a,2}}, {{0x9c9,8},{0x9c9,8}}, {{0xebcc,4},{0xebd0,7}}, {{0x1a,1},{0xb64,2}}, + {{0xc8dd,4},{0xc57,3}}, {{0x244b3,2},{0x70ce,2}}, {{0x1e45,3},{0xc30,2}}, {{0xe42,5},{0xb70,2}}, + {{0x1040,6},{0x2dc3,3}}, {{0x2c76,4},{0x28b1,3}}, {{0x1b4e3,1},{0x24,1}}, {{0xc25,6},{0x4b58,7}}, + {{0xcd9,3},{0x103a,3}}, {{0x2b,2},{0xbd4,2}}, {{0x893e,5},{0xadf,2}}, {{0xaf2,1},{0x1d,1}}, + {{0x6d81,3},{0xc4d,2}}, {{0xe64,5},{0x4dc7,6}}, {{0x218d,8},{0x2195,3}}, {{0x6f74,4},{0x70da,2}}, + {{0x2801,6},{0x1614,7}}, {{0x70c8,4},{0x70d8,4}}, {{0x1dbe,5},{0x702a,4}}, {{0x1b6e1,2},{0x6f64,2}}, + {{0x10f6,2},{0x10f8,3}}, {{0x1c405,5},{0x5cd6,3}}, {{0x26c4,3},{0xeb2,1}}, {{0x1095,5},{0x3a39,3}}, + {{0xae5,1},{0xae2,1}}, {{0x1adf0,6},{0x11f2,3}}, {{0x11ef,2},{0xaf1,1}}, {{0x1f,4},{0xd90,2}}, + {{0xa77a,7},{0x1c25,4}}, {{0xbfa9,7},{0x2b,3}}, {{0x35c7,6},{0x1408,3}}, {{0xd7f,3},{0x2b,1}}, + {{0xaf1,2},{0xae7,2}}, {{0x7102,5},{0xf8e1,4}}, {{0x27b6,1},{0x27b6,1}}, {{0x10ea,3},{0x10ca,1}}, + {{0x1a0d,5},{0x1dcf,3}}, {{0x10f7,1},{0x197f,7}}, {{0x3ffc,6},{0x4002,7}}, {{0xbd6,2},{0x40bc,4}}, + {{0xcf0,2},{0xb55,2}}, {{0x3218,5},{0x1aa6,3}}, {{0x4776,8},{0xb2e,2}}, {{0x6b5f,4},{0x28,1}}, + {{0xedb,5},{0xd0b,3}}, {{0x2bfc,2},{0x2b,1}}, {{0xbb5,1},{0x1150,2}}, {{0x181c,3},{0x10ef,1}}, + {{0x13fe0,7},{0x10dc,2}}, {{0xcb5,3},{0x118e,3}}, {{0x1b,1},{0xc67,2}}, {{0x134c,5},{0x2427,3}}, + {{0x3a22,4},{0x1dab,4}}, {{0x278f3,2},{0x278d6,1}}, {{0x19a4,6},{0x2b,3}}, {{0xe8d5,7},{0x1d8d,4}}, + {{0x219c,4},{0x1972,2}}, {{0xaea,2},{0xb46d,5}}, {{0x1cec,5},{0x28,2}}, {{0x257c,2},{0x2b,3}}, + {{0x6d8e,3},{0x10f7,1}}, {{0x70a0,2},{0x410e,2}}, {{0xb4b,2},{0x159f,4}}, {{0x12fe,2},{0xc55,2}}, + {{0x10c8,3},{0xbbf,2}}, {{0xbb5,2},{0x174e,3}}, {{0xcfd,4},{0xb52,2}}, {{0xbde,3},{0xb2e,2}}, + {{0x615e,8},{0xb52,5}}, {{0x15e31,6},{0x2b,3}}, {{0xaca2,3},{0x20918,2}}, {{0xae5,1},{0x1d8a,3}}, + {{0x4284,2},{0xbeb,1}}, {{0x170c,10},{0x3fdc,4}}, {{0x4d19,6},{0xc2d2,5}}, {{0x147c,5},{0x33fb,5}}, + {{0x2b8e,3},{0xb2e,2}}, {{0x40b2,4},{0x3e29,5}}, {{0x24a2d,2},{0x27e35,2}}, {{0xbd4,2},{0x290e,4}}, + {{0x12ae,3},{0x1525,7}}, {{0x716e,5},{0x2211,3}}, {{0xbd6,2},{0xeb3,3}}, {{0x2b2ff,1},{0x1ed58,1}}, + {{0x6d8e,3},{0xd8b0,8}}, {{0x209d,4},{0x5277,2}}, {{0xadd,7},{0xc8e,3}}, {{0x10fb,3},{0x28b1,3}}, + {{0xf535,5},{0x1712f,3}}, {{0x178c,3},{0x1b,1}}, {{0xcf3e,2},{0x28,1}}, {{0x2441,6},{0x1f,2}}, + {{0x5f8a,9},{0xb54,4}}, {{0xc76,5},{0x10c3,5}}, {{0xb78,2},{0xcb8,2}}, {{0xfc96,5},{0xfc9b,6}}, + {{0x4354,5},{0xeb1,2}}, {{0xcc7,3},{0x22e3,3}}, {{0x14934,2},{0x43e3,1}}, {{0xb7f,3},{0x13cf,6}}, + {{0x1168a,7},{0x2b,3}}, {{0x2793d,4},{0x27a2b,2}}, {{0x70a0,6},{0x1019c,2}}, {{0x19375,6},{0xb48,2}}, + {{0x177c,3},{0x1d8a,3}}, {{0xf52,5},{0x3336,7}}, {{0x845e,6},{0xb65,2}}, {{0x10fb,3},{0xcb8,2}}, + {{0x2878d,4},{0x6f8a,2}}, {{0x26b5,4},{0x5f33,6}}, {{0xf10,3},{0xb2c,2}}, {{0x24460,2},{0x9a9,1}}, + {{0x244f5,2},{0x6f8a,2}}, {{0xcd9,3},{0xcab,3}}, {{0xfef8,6},{0x70da,2}}, {{0xd65,3},{0x5396,3}}, + {{0xc25,4},{0x2a91,4}}, {{0x4178,4},{0xc55,2}}, {{0x24a2d,2},{0x27e1c,2}}, {{0xa7d,6},{0xb31,1}}, + {{0x101d4,6},{0xb65,2}}, {{0x124c,5},{0xbaf4,6}}, {{0x1051,4},{0xadf,2}}, {{0x159c,4},{0x5444,3}}, + {{0x178c,3},{0x11ef,2}}, {{0xd5c,1},{0xb7d,1}}, {{0x6b6c,5},{0x27,1}}, {{0x6ac3,3},{0x10f3,1}}, + {{0x7792,9},{0x10dc,2}}, {{0xae5,1},{0xc55,2}}, {{0xf419,3},{0x139f,3}}, {{0xaca2,3},{0x2b,1}}, + {{0x28,3},{0xbc4,4}}, {{0xb2f,1},{0x5277,4}}, {{0x132a0,8},{0x1a,1}}, {{0x2160,5},{0x2585,4}}, + {{0x422e,3},{0xb65,2}}, {{0xbe4,1},{0xaf0,2}}, {{0xd41,3},{0xb8c,2}}, {{0x2796,3},{0x21bd,5}}, + {{0x253fb,3},{0x24461,1}}, {{0x2793d,4},{0x27989,2}}, {{0x1b13e,3},{0x278c9,2}}, {{0x1b13e,3},{0x27a2b,2}}, + {{0x4042,7},{0x1525,7}}, {{0x26f9,2},{0x26fb,5}}, {{0xc39,2},{0xaf2,1}}, {{0x287e7,2},{0x157b6,2}}, + {{0x178c,3},{0xd54,1}}, {{0xbb5,1},{0xc55,2}}, {{0xfb1,2},{0xc67,2}}, {{0x28,2},{0x5cd6,3}}, + {{0xceb,3},{0xf59,3}}, {{0x3e90,5},{0x89c8,5}}, {{0x10fb,3},{0x9b11,5}}, {{0x6d81,3},{0xae2,2}}, + {{0xc2e8,4},{0xce8,3}}, {{0x6676,7},{0xbd6,2}}, {{0x6ac3,3},{0xae6,2}}, {{0x5949,4},{0xd1b,1}}, + {{0x10fb,3},{0xf14,2}}, {{0x12ec,8},{0x3bc2,4}}, {{0xaad,6},{0xaad,6}}, {{0x181c,3},{0xbe0,1}}, + {{0x1c92,6},{0x1081,3}}, {{0x1173,2},{0x27897,1}}, {{0x265b,4},{0x3fdb,5}}, {{0x20bb,3},{0x5269,5}}, + {{0x2ae0,5},{0xb75,2}}, {{0x30,2},{0x27d8b,2}}, {{0x1ed58,1},{0x2446c,1}}, {{0x15057,4},{0x25c2,3}}, + {{0xb6c,3},{0xfb7c,5}}, {{0xa7da,3},{0x2098,3}}, {{0x16fc,4},{0x1a,2}}, {{0xfb1,2},{0x1861,3}}, + {{0x5324,5},{0x2b,1}}, {{0xbeb,1},{0x2360b,2}}, {{0x1e,1},{0xb7c,3}}, {{0xb78,2},{0x11b8,4}}, + {{0x27b4,3},{0x28,1}}, {{0xbcb,3},{0x1d852,5}}, {{0x9ad2,7},{0x88ce,4}}, {{0xb55,2},{0xb2c,4}}, + {{0x2589,7},{0x11e4,4}}, {{0x8bc6,7},{0xb85,2}}, {{0x6d8e,3},{0x1de00,5}}, {{0x27,1},{0x5277,2}}, + {{0xde9,1},{0xd0b,3}}, {{0x11dc,8},{0x11e4,4}}, {{0x1cee,3},{0xb9c,2}}, {{0x24462,1},{0x22cf8,1}}, + {{0x3cde,8},{0x1377,5}}, {{0xc67,3},{0x10dc,2}}, {{0x14dc,4},{0x2c38,6}}, {{0x10866,5},{0x40b8,2}}, + {{0x16fc,8},{0x2b03,5}}, {{0x178c,3},{0x168d4,6}}, {{0x5b6b,9},{0xb54,4}}, {{0x10f0,1},{0x92e9,4}}, + {{0x2403,7},{0x5d16,4}}, {{0x17fe,3},{0x897c,4}}, {{0x397a,6},{0x1555,7}}, {{0x1a886,7},{0xfe5,2}}, + {{0xeb9,5},{0xaea,2}}, {{0x422e,3},{0x10e51,2}}, {{0x2b,2},{0xaea,2}}, {{0x2daa,5},{0x6695,3}}, + {{0x10f3,1},{0x28da,1}}, {{0x1736c,6},{0x2b,3}}, {{0xcb5,3},{0x4569,5}}, {{0x24a2d,2},{0x2445f,1}}, + {{0x2c63e,4},{0x70ce,2}}, {{0x3f7e,7},{0x1499,2}}, {{0x4d33,9},{0xb7c,3}}, {{0x92b6,5},{0x2b,3}}, + {{0xae5,1},{0x1b4f,3}}, {{0x1e,1},{0x1402,2}}, {{0x1c,1},{0xb79,2}}, {{0x5ac2,6},{0x2d44,4}}, + {{0xc828,4},{0xae7,1}}, {{0x1ed49,3},{0xb31,1}}, {{0x116c,1},{0x278c9,2}}, {{0x10192,2},{0x157f2,2}}, + {{0x10f3,1},{0xca6,2}}, {{0x2810,4},{0x2138,5}}, {{0xc13,3},{0xb383,5}}, {{0xceb,3},{0x1150,2}}, + {{0x181c,3},{0x12d7,5}}, {{0x27d24,3},{0x2446c,1}}, {{0x19a6b,4},{0x19a6f,5}}, {{0x44d2,5},{0xe50a,3}}, + {{0x6a8f,5},{0xb9d,3}}, {{0x178c,3},{0xd7f,4}}, {{0x166c,6},{0xc63,3}}, {{0x415c,4},{0xf6a,3}}, + {{0xfc9,10},{0xbb1,3}}, {{0x30,2},{0xb82,2}}, {{0x1b13e,4},{0x116d,1}}, {{0x1c,1},{0x27,1}}, + {{0xbb5,1},{0xb65,2}}, {{0x22187,6},{0xae7,1}}, {{0xc89,3},{0xc8c,5}}, {{0x804,2},{0x6f8a,2}}, + {{0xceb,4},{0xb4e4,4}}, {{0x4290,4},{0xb49,2}}, {{0x16bc,6},{0xcf0,2}}, {{0x2793d,4},{0x2798f,2}}, + {{0x90e2,4},{0xcc0,3}}, {{0x102a6,5},{0x2a,4}}, {{0xbde,3},{0x298a,2}}, {{0xf393,7},{0xcce,3}}, + {{0x1084,3},{0x1c68,3}}, {{0xaca2,3},{0x28,1}}, {{0x10ee2,7},{0xc8e,3}}, {{0x2322,6},{0x5a52,4}}, + {{0xc8d2,6},{0x2279,4}}, {{0x12800,6},{0xb78,2}}, {{0x422e,3},{0x290f,3}}, {{0x271e,3},{0xc55,2}}, + {{0x5a67,7},{0xb52,5}}, {{0xd41,3},{0x4e3d,7}}, {{0xae5,1},{0xae5,1}}, {{0x1084,3},{0x2b76,3}}, + {{0xbb5,1},{0x1955e,6}}, {{0x2d,1},{0x20a0,3}}, {{0x24460,2},{0x24f87,2}}, {{0x26c4,3},{0x28da,1}}, + {{0xbe4,1},{0x1055,3}}, {{0x4e5e,9},{0x2b,3}}, {{0x16f1,3},{0x139e,3}}, {{0xdba,7},{0x2971,3}}, + {{0x132c,6},{0x296f,5}}, {{0x253fb,3},{0x24462,1}}, {{0xf367,5},{0xc39,4}}, {{0x10f3,1},{0xb6d2,5}}, + {{0x1adc3,6},{0xb64,2}}, {{0x711a,9},{0xb65,2}}, {{0x3242,5},{0xd0b,4}}, {{0x1b140,2},{0x278a9,1}}, + {{0x3db0,5},{0xb9b,3}}, {{0xaca2,4},{0xcce,3}}, {{0x6ac5,1},{0xb0d2,4}}, {{0xe34a,5},{0xae7,1}}, + {{0x8a46,5},{0x8a0f,7}}, {{0xb63,2},{0xbb4,4}}, {{0x1aaed,1},{0xb7c,2}}, {{0x35ba,3},{0x28,1}}, + {{0xf5f6,2},{0xaf5e,2}}, {{0x261f,4},{0xecc,3}}, {{0x6b06,3},{0xb9f,2}}, {{0x2c92,6},{0x3728,6}}, + {{0xbc0,2},{0xca7,3}}, {{0xba5,4},{0xc52,2}}, {{0x70dc,4},{0x157a4,2}}, {{0xbb5,1},{0x2b,3}}, + {{0xcdf,3},{0xb2c,2}}, {{0x1084,3},{0xb469,4}}, {{0x24a2d,2},{0x24f87,2}}, {{0xb44,3},{0x1b09,3}}, + {{0x251fe,2},{0x25200,2}}, {{0x1f131,5},{0x2098,3}}, {{0x2c76,4},{0x168c3,4}}, {{0x2445c,3},{0x27cea,1}}, + {{0x1b13e,4},{0x278af,1}}, {{0xae7,1},{0xc1c,2}}, {{0xd41,4},{0xaeb,3}}, {{0x194ef,5},{0xc57,3}}, + {{0x3694,4},{0x12bc4,3}}, {{0xf38f,3},{0xaf2,1}}, {{0xbc70,8},{0x2b,3}}, {{0xc89,2},{0xdf0,2}}, + {{0x6ac5,1},{0x15c2a,5}}, {{0x257a,4},{0x3921,5}}, {{0xa762,8},{0xbb4,4}}, {{0x56cc,7},{0x5bc1,5}}, + {{0x3678,5},{0xd57,2}}, {{0x2793d,4},{0x27995,2}}, {{0x14fba,2},{0x2b,1}}, {{0x80ce,6},{0x11c4,6}}, + {{0x1e,1},{0x4694,5}}, {{0xeec,7},{0x1ec4,8}}, {{0x90ee,9},{0x2574,2}}, {{0xc1e,2},{0xd17,3}}, + {{0x2c76,4},{0x29fa,5}}, {{0xa4d,2},{0x2521e,4}}, {{0xe75,4},{0xeee,5}}, {{0x14cc,4},{0xff7,5}}, + {{0x27b4,3},{0xae2,2}}, {{0xf63,5},{0x11bd5,5}}, {{0xc1e,2},{0xaf2,1}}, {{0x1b140,2},{0x278d6,1}}, + {{0x11f9a,6},{0x2af8,4}}, {{0x422e,3},{0xd54,1}}, {{0xb30,2},{0xb32,6}}, {{0x446a,5},{0x1762,3}}, + {{0x1f2b1,4},{0xf8cf,2}}, {{0x1cbf,6},{0x1cc5,3}}, {{0x1b6b3,2},{0x278d6,1}}, {{0xd65,3},{0xf47,4}}, + {{0x1c,1},{0xcdf,3}}, {{0xf417,5},{0xc34,3}}, {{0x14120,7},{0xaf2,1}}, {{0x438e,3},{0xbc4,4}}, + {{0x1c,1},{0x461b,5}}, {{0x6d81,3},{0x4460,3}}, {{0x1d,1},{0x2318,4}}, {{0x3cc2,9},{0xb54,3}}, + {{0x14934,2},{0xd5c,1}}, {{0xae5,1},{0xbd1,2}}, {{0x1e74f,4},{0x1f,2}}, {{0x17fc,8},{0xc8e,3}}, + {{0x40b2,4},{0x20c52,3}}, {{0x1084,3},{0xb85,2}}, {{0xcd9,3},{0x28,2}}, {{0x177c,3},{0xd5c,1}}, + {{0xab9a,3},{0x4189,3}}, {{0xb64,2},{0x12fe,1}}, {{0x2a9b9,4},{0xb31,1}}, {{0xdfe,5},{0xd0d,2}}, + {{0x12fc,10},{0xb8e,2}}, {{0xadce,5},{0x60fc,7}}, {{0x3db0,5},{0x4240,3}}, {{0xcc00,5},{0xb2c,4}}, + {{0x41f6,7},{0x30f9,7}}, {{0x7cf6,8},{0x10dc,2}}, {{0x229b,9},{0xc63,3}}, {{0x28,1},{0x10504,4}}, + {{0x10f3,1},{0xbe4,1}}, {{0xb6cf,8},{0x2b,3}}, {{0x1d11,5},{0x1d,1}}, {{0x1b75,7},{0xbd6,8}}, + {{0x3a3e,6},{0x12e3,3}}, {{0x177c,3},{0x106cd,4}}, {{0x21da1,5},{0x1a,1}}, {{0x2474d,2},{0x1b6f5,2}}, + {{0x178c,3},{0xbe85,5}}, {{0x4d08,4},{0xae7,1}}, {{0x1b25b,4},{0x1f,1}}, {{0x15b52,2},{0x1a328,2}}, + {{0x10ea,3},{0x202c,5}}, {{0x3694,4},{0x1d8a,3}}, {{0x1cc55,5},{0xb47,2}}, {{0x2769,5},{0x2d31,9}}, + {{0x25c5,5},{0x700f,3}}, {{0x271e,3},{0xbd1,2}}, {{0x2cae,5},{0x14d5,3}}, {{0x10fb,3},{0x10ec,1}}, + {{0xc55,2},{0xc57,3}}, {{0xcd9,3},{0x1f13,4}}, {{0xaeb,2},{0xcb8,3}}, {{0x2796,3},{0x1c8f,3}}, + {{0x422e,3},{0xadf,2}}, {{0x271e,3},{0x5277,2}}, {{0x2a16,3},{0xaf1,1}}, {{0xf0e,5},{0xde2,4}}, + {{0x12be,3},{0xc1c,2}}, {{0xcb8,2},{0xb78,2}}, {{0x540e,7},{0xb52,5}}, {{0x1f,1},{0xadf,2}}, + {{0x4971,5},{0x84f6,4}}, {{0x6d81,3},{0xb63,2}}, {{0x43e3,1},{0xbe4,1}}, {{0xba5,4},{0xeb2,1}}, + {{0xbe7,1},{0xd5c,1}}, {{0x397a,5},{0xca7,3}}, {{0xb7d,1},{0xcce,3}}, {{0x10c8,3},{0xc3d,3}}, + {{0xd8e,4},{0x1c25,4}}, {{0x2151,5},{0x4df1,5}}, {{0xbb5,1},{0x27,1}}, {{0x27b4,3},{0xe6d,2}}, + {{0x2bfd,2},{0xec2,2}}, {{0x1e,1},{0xbb1,3}}, {{0xcd9,5},{0x2273,6}}, {{0x90be,5},{0x1440,4}}, + {{0xbe4,1},{0xc67,2}}, {{0x2cae,8},{0xc34,3}}, {{0x2d,1},{0x1d8e,3}}, {{0x2d,1},{0x139e,2}}, + {{0xbb5,1},{0x1bd61,4}}, {{0x14dc,7},{0xb2c,2}}, {{0xb7f,3},{0x1d8e,3}}, {{0x4db5,6},{0x253a,4}}, + {{0xcb5,3},{0x1b4b,3}}, {{0xac8a,4},{0x28,2}}, {{0xc25,3},{0x9484,6}}, {{0x1c47,6},{0x4875,5}}, + {{0x11ec,6},{0x4569,5}}, {{0x5bd3,7},{0x7fda,4}}, {{0xbe0,1},{0x28b1,3}}, {{0x177c,3},{0xb78,2}}, + {{0x16bc,4},{0x40b8,2}}, {{0x10724,7},{0xae7,1}}, {{0x1a9d,3},{0xb78,2}}, {{0x19cb,4},{0xb2c,2}}, + {{0x27d2,6},{0x2b,2}}, {{0xb44,3},{0x989a,4}}, {{0xb44,3},{0x2971,3}}, {{0x285b,3},{0x13f4,8}}, + {{0x8ae2,5},{0xec6d,3}}, {{0xb7f,3},{0x47b3,3}}, {{0x2451f,4},{0x157a4,2}}, {{0x3f62,5},{0x12b1,4}}, + {{0xf96,5},{0x1e6c,6}}, {{0x71da,6},{0xb9d,3}}, {{0x508d,5},{0xb9f9,4}}, {{0x5143,7},{0x250c,5}}, + {{0xcdf,3},{0xbed,2}}, {{0x9e4a,9},{0xae7,1}}, {{0xb65,2},{0xc8e,3}}, {{0x167c,5},{0xbb5,1}}, + {{0x1e9a7,6},{0xd0d,2}}, {{0x1b6e1,2},{0x96b,2}}, {{0x1b140,2},{0x27897,1}}, {{0x1f965,2},{0xbe4,1}}, + {{0x6ac3,3},{0xcb8,2}}, {{0x3fb6,5},{0xc30,3}}, {{0x1cbf,5},{0xc7ae,6}}, {{0x1c,1},{0xaea,1}}, + {{0xa6c6,5},{0xb63,2}}, {{0x1d,1},{0x28,1}}, {{0xb55,2},{0x2b,1}}, {{0x18e2f,6},{0x2b,3}}, + {{0x139c,6},{0x13a2,4}}, {{0x5324,7},{0xb52,5}}, {{0x4ba0,7},{0x12ff,3}}, {{0x16cc,4},{0x1f0f,3}}, + {{0xa7ec,5},{0x789d,4}}, {{0x177c,3},{0x4189,3}}, {{0x244f5,2},{0x1b709,2}}, {{0x2cae,4},{0x748e,3}}, + {{0x5d5b,5},{0x2b,3}}, {{0xb7f,3},{0xc51,2}}, {{0xd41,3},{0x13e4,3}}, {{0x14fc,5},{0x1a,1}}, + {{0x6ac3,3},{0x15c72,6}}, {{0xaa98,2},{0x1a56a,4}}, {{0x441c,8},{0x2b,3}}, {{0xe42,5},{0x9844,6}}, + {{0x312c,3},{0xb7a,5}}, {{0x2445c,3},{0x25202,2}}, {{0x30,64},{0x30,6}}, {{0xb52,2},{0x3fdb,5}}, + {{0x30,2},{0x24a2d,2}}, {{0xe64,5},{0x4dd4,7}}, {{0xd11d,5},{0x3edd,5}}, {{0xdd2,4},{0x1916,5}}, + {{0x2b,1},{0x10a2,4}}, {{0x169c,8},{0xfaf,3}}, {{0x30,2},{0x432,64}}, {{0xb71,2},{0xa04b,3}}, + {{0x804,2},{0x1b25d,2}}, {{0xb44,3},{0x23d9,3}}, {{0x1b13e,3},{0x278d5,2}}, {{0x70d8,4},{0x15b4a,4}}, + {{0xb6c,3},{0xc1c,2}}, {{0xb6c,3},{0xb52,6}}, {{0x804,2},{0x2456b,2}}, {{0x10a78,7},{0x2b,3}}, + {{0xfda,6},{0x4694,5}}, {{0x1051,4},{0x1b1f,3}}, {{0xb78,2},{0xc34,3}}, {{0x1ab2,4},{0x169ec,5}}, + {{0xb79,2},{0xc1c,2}}, {{0x18e38,6},{0x2b,3}}, {{0x24,1},{0x2a948,1}}, {{0x2cd8,10},{0xb54,3}}, + {{0xc13,4},{0x8a48,4}}, {{0x804,2},{0x1015e,2}}, {{0x27b6,1},{0x1089,2}}, {{0xbb5,3},{0xae0,1}}, + {{0xd8ce,6},{0xc63,3}}, {{0x1b4f,3},{0x12b1,4}}, {{0x1cce,6},{0xae2,1}}, {{0xae5,1},{0xb2f,1}}, + {{0x1257,2},{0x6815,4}}, {{0x804,2},{0x6f64,2}}, {{0x1084,3},{0x1a10,2}}, {{0x10f0,1},{0xde2,3}}, + {{0x46f4,4},{0xde9,1}}, {{0x19ace,6},{0x4459,3}}, {{0xb44,3},{0x2282,6}}, {{0xf5e,3},{0xbbf,2}}, + {{0x2322,6},{0xcc0,3}}, {{0xab9a,3},{0xc1c,2}}, {{0xa22e,4},{0x193a6,5}}, {{0x265b,4},{0x683e,7}}, + {{0x1b57,8},{0xd0d,2}}, {{0x12cba,6},{0x2b,3}}, {{0x16cc,4},{0xaea,1}}, {{0xbb4,2},{0x1a,1}}, + {{0xceb,3},{0x12b89,5}}, {{0xae7,1},{0x1342,6}}, {{0x187c,3},{0x2b,3}}, {{0xb2f,1},{0x197f,7}}, + {{0x10ea,3},{0x3e92,3}}, {{0x2793f,3},{0x278d6,1}}, {{0x13160,6},{0x10dc,2}}, {{0xae0,1},{0xc89,2}}, + {{0x6735,4},{0x114d,2}}, {{0x116c,2},{0x924,1}}, {{0x2c14,8},{0x132f,3}}, {{0xdef,3},{0x1f,1}}, + {{0x1abd7,2},{0xbe4,1}}, {{0xe42,5},{0x4c9c,4}}, {{0xc13,4},{0x2978,8}}, {{0x133c,12},{0x1bdb,3}}, + {{0x10fb,3},{0xb52,2}}, {{0x10ec,1},{0xdf0,2}}, {{0xcd5,2},{0xb63,2}}, {{0xfef8,6},{0x70a6,2}}, + {{0xeca,4},{0xdb7f,4}}, {{0x1b13e,4},{0x116e,1}}, {{0x10c8,3},{0x1372,3}}, {{0x24549,6},{0x24531,4}}, + {{0x1a30,3},{0xc63,3}}, {{0xc1ae,6},{0xf60,3}}, {{0x5277,2},{0x28,1}}, {{0xd41,4},{0x705a,4}}, + {{0xa6ba,9},{0xb65,2}}, {{0x36f6,9},{0xce8,3}}, {{0xbeb,1},{0xde9,1}}, {{0x26c6,1},{0xbe4,1}}, + {{0xcb8,3},{0x10dc,2}}, {{0x1b6dd,2},{0x5c78,2}}, {{0x2793d,4},{0x2799b,2}}, {{0x24a2d,2},{0x27e3a,2}}, + {{0x519e,5},{0x3220,6}}, {{0x244f5,2},{0x70da,2}}, {{0xcc0,3},{0xd51,3}}, {{0x1a51d,5},{0x1f,1}}, + {{0x39ce,5},{0x39d3,4}}, {{0xb75,2},{0x12be,3}}, {{0xb4a,4},{0xc67,3}}, {{0x142c,3},{0xae2,2}}, + {{0x181c,3},{0x323c,2}}, {{0x143c,5},{0x7fda,4}}, {{0x84a6,5},{0xc8a3,3}}, {{0x1b13e,3},{0x278db,2}}, + {{0xbb5,1},{0x1425b,3}}, {{0x3e90,5},{0x62ea,7}}, {{0xc37,4},{0x88ce,4}}, {{0x6d8e,3},{0x10f6,1}}, + {{0xae0,1},{0x4119,3}}, {{0xe83b,7},{0x2b,3}}, {{0x2904,3},{0xc8c,5}}, {{0x11e78,5},{0x2b,3}}, + {{0x10f3,1},{0x106cd,4}}, {{0x26a6,8},{0x2d44,4}}, {{0x2474d,2},{0x1016a,2}}, {{0x10c8,3},{0x904d,5}}, + {{0x3eba,8},{0xb52,6}}, {{0x10f7,1},{0x23d9,3}}, {{0x2793f,3},{0x278dc,1}}, {{0x5838,10},{0x2b,3}}, + {{0x19b3,5},{0xcd4,3}}, {{0xb2f,1},{0x1c43,4}}, {{0xcd9,3},{0xbd90,3}}, {{0x600f,5},{0xe72,3}}, + {{0xf579,5},{0x3d9d,5}}, {{0x1cec,5},{0x849f,6}}, {{0xf74,4},{0xf78,4}}, {{0x1e,1},{0x1d8a,3}}, + {{0x1f35,6},{0x2b54,8}}, {{0x10ea,3},{0x43a5,3}}, {{0x1b4e3,1},{0x24462,1}}, {{0xff20,4},{0x1b739,4}}, + {{0xbe4,1},{0xc1e,2}}, {{0xaf2,1},{0xaf2,1}}, {{0x159c,4},{0x1a05,8}}, {{0x7162,4},{0x20c52,3}}, + {{0x1f,1},{0xc67,2}}, {{0xc49,3},{0xae5,1}}, {{0x70c8,2},{0xa4f,2}}, {{0xb29c,3},{0x132f,3}}, + {{0xbb5,1},{0x2c00,3}}, {{0x21ba,8},{0x1275,7}}, {{0xc37,3},{0x67b2,5}}, {{0x1f,1},{0xbed,2}}, + {{0xdf0,2},{0xd48,2}}, {{0xda9,4},{0xee2,2}}, {{0x272f,2},{0xc67,2}}, {{0x114e6,5},{0xae7,1}}, + {{0xaea,1},{0x78a2,4}}, {{0xe64,4},{0x5277,2}}, {{0x10ca,1},{0x1b4f,4}}, {{0x27d3b,2},{0x24467,2}}, + {{0x181c,3},{0xbb2,2}}, {{0x1173,2},{0x278af,1}}, {{0x24a2d,2},{0x24468,2}}, {{0x22e6,5},{0xb9d,3}}, + {{0x209d,4},{0xce8,3}}, {{0x26c4,4},{0x18e5,11}}, {{0x68ae,6},{0x1bdb,3}}, {{0x2d,1},{0xae2,2}}, + {{0x422e,3},{0xba7,3}}, {{0x734,2},{0x9a9,1}}, {{0xd65,3},{0xfb1,2}}, {{0x4db5,6},{0x2b03,5}}, + {{0x53cd,5},{0xf9d,4}}, {{0x3ebc,6},{0x11b8,4}}, {{0x1878,1},{0x27,1}}, {{0x397a,6},{0x12d5,7}}, + {{0x2045,3},{0xb8f,3}}, {{0x44d2,6},{0xeb3,3}}, {{0xcd9,3},{0xb8a,2}}, {{0x1a,2},{0xb7d,1}}, + {{0x4ba0,7},{0x132f,3}}, {{0xae2,1},{0xb52,6}}, {{0xf10,4},{0xd0b,3}}, {{0x1068e,7},{0x2b,3}}, + {{0xfdd,2},{0xbac,4}}, {{0xf85,4},{0xd8f,3}}, {{0x10f3,1},{0xfb1,2}}, {{0x28da,1},{0x10ef,1}}, + {{0x7b22,7},{0x1c25,4}}, {{0xaf2,1},{0x1d8a,3}}, {{0x41be,3},{0xcf0,2}}, {{0x10fb,3},{0xaf2,1}}, + {{0x45fd,5},{0x11b6,5}}, {{0xb97,3},{0xb9a,6}}, {{0x804,2},{0x6f66,2}}, {{0xb44,3},{0xb9d,3}}, + {{0xaea,1},{0x2c2d,3}}, {{0x27b6,1},{0x2b,1}}, {{0x70a0,4},{0x709c,4}}, {{0xd5c,2},{0xb49,2}}, + {{0x3e20,7},{0xea89,4}}, {{0x70a8,4},{0x70ac,4}}, {{0xb2e,2},{0x12f1,2}}, {{0xcd9,5},{0x108e,7}}, + {{0x26c4,4},{0x295c,5}}, {{0xbc0,2},{0x26a9,5}}, {{0x9a9,1},{0x251cb,1}}, {{0xaca2,3},{0xa7ed,4}}, + {{0x2746,3},{0x1f,1}}, {{0xccd1,6},{0x7029,4}}, {{0x27b4,3},{0x12ff,2}}, {{0x27b4,3},{0x3e2a,3}}, + {{0xd76,7},{0x4652,6}}, {{0xcf6,3},{0xc62,3}}, {{0xc37,3},{0x2045,3}}, {{0x423c,3},{0xae2,2}}, + {{0x1b4e3,1},{0x28e7a,2}}, {{0x6d8e,3},{0x10f5,2}}, {{0xb2f,1},{0xce8,3}}, {{0xc37,3},{0x2b,1}}, + {{0xb82,2},{0xb7a,5}}, {{0x924,1},{0x27b0f,2}}, {{0xaea,1},{0xe6d,2}}, {{0xb2e,2},{0x1d,1}}, + {{0xa246,4},{0xc55,2}}, {{0x1a,2},{0xd1b,1}}, {{0xfee4,4},{0x1b203,4}}, {{0x1f,1},{0x392d,3}}, + {{0x969,2},{0x70ce,2}}, {{0x29e87,3},{0x251cb,1}}, {{0x7a6e,4},{0x1c,1}}, {{0xba5,4},{0xc17,4}}, + {{0x532,4},{0x532,4}}, {{0x28,1},{0x10569,3}}, {{0x159c,4},{0x114d,2}}, {{0xb52,2},{0x67c0,3}}, + {{0x17ac,4},{0xd7f,3}}, {{0x1904,3},{0xb2c,2}}, {{0x10f7,1},{0x3245,4}}, {{0x1afd,5},{0xff7,5}}, + {{0xaa0e,11},{0xae7,1}}, {{0x1477e,6},{0xaf2,1}}, {{0x924,3},{0x278af,1}}, {{0xab9a,3},{0xb8f,2}}, + {{0x41be,3},{0x27,1}}, {{0x1095,3},{0x1dff,2}}, {{0x164bd,6},{0x2742,3}}, {{0x2d,1},{0x31c9,3}}, + {{0x90e2,4},{0x25be,4}}, {{0x16f48,2},{0xb48,2}}, {{0x4eb9,8},{0xb8d,5}}, {{0xbeb,1},{0x1ed4,6}}, + {{0x244f5,2},{0x70b4,2}}, {{0xe6d,2},{0xb2c,2}}, {{0x1e,1},{0xd0b,3}}, {{0x17265,5},{0x22e3,3}}, + {{0x10fb,3},{0xae2,1}}, {{0xac8c,2},{0x8a92,4}}, {{0x6137,9},{0xe70,4}}, {{0xf85,4},{0x37a2,10}}, + {{0x1084,3},{0x20c52,3}}, {{0x4266,5},{0x11ef,3}}, {{0x179a5,6},{0x10dc,2}}, {{0x31e0,5},{0x12017,5}}, + {{0xb4a,3},{0x18e5,4}}, {{0x2445c,3},{0x251df,1}}, {{0x2742,3},{0xeb3,3}}, {{0xadd,3},{0xeb2,1}}, + {{0xb54,3},{0xb65,2}}, {{0x2788f,3},{0x432,1}}, {{0xb75,2},{0x21,1}}, {{0x1c,1},{0xc63,3}}, + {{0x929e,5},{0x40b8,2}}, {{0x4db5,8},{0xb78,2}}, {{0xf5e,3},{0x142e,2}}, {{0x177c,3},{0xb2e,2}}, + {{0xe75,6},{0x22be,5}}, {{0x16ce,4},{0xaf2,1}}, {{0x415c,5},{0x18d8,4}}, {{0x641c,8},{0x3b6d,5}}, + {{0x23dea,3},{0x4351,2}}, {{0xca1,2},{0xc52,2}}, {{0x1b13e,3},{0x278cf,2}}, {{0xb6c,4},{0xae2,1}}, + {{0xe53,11},{0xb52,6}}, {{0x38d2,7},{0x700f,3}}, {{0xcfd,9},{0x2dc3,3}}, {{0xd54,1},{0xd5c,1}}, + {{0x1095,3},{0x12fe,2}}, {{0x1d73,8},{0x1498,4}}, {{0x17ec,5},{0x250a,7}}, {{0x1b13e,4},{0x1b6ab,1}}, + {{0xced9,5},{0x3718,3}}, {{0x2912,5},{0x583f,3}}, {{0xce2,3},{0x2b,3}}, {{0x373c,8},{0xb52,6}}, + {{0xcd9,3},{0x4b0a,4}}, {{0x27b4,3},{0xb78,2}}, {{0x4c22,7},{0x7c25,5}}, {{0x27b95,4},{0x924,1}}, + {{0xe64,5},{0x2b4b,4}}, {{0xbcb,3},{0xcbd,3}}, {{0x10f8,2},{0xf8d1,2}}, {{0x6ac3,4},{0xfffb,2}}, + {{0x6d81,3},{0x5277,2}}, {{0x16cc,4},{0x131b3,4}}, {{0x286e3,6},{0x1cf1d,2}}, {{0x13188,5},{0xb7d,2}}, + {{0xa096,7},{0x2b,3}}, {{0x28,2},{0x1a,2}}, {{0x15dfb,6},{0xc8a3,3}}, {{0x1040,8},{0x2b,3}}, + {{0x6d8e,3},{0xf59,3}}, {{0x2eec,11},{0x103a,3}}, {{0x10c8,5},{0xb9a,6}}, {{0x244b9,2},{0x20b23,2}}, + {{0x43e3,1},{0x10f0,1}}, {{0xc675,5},{0x28,1}}, {{0xbd1,2},{0x1099,3}}, {{0xeec,5},{0xd256,4}}, + {{0xc25,4},{0x1045,8}}, {{0x2c76,5},{0xb65,2}}, {{0xa7da,3},{0x1a,2}}, {{0x20bb,3},{0x2b,1}}, + {{0xb24c,5},{0xc63,3}}, {{0x12fc,4},{0xc55,2}}, {{0x1c29,6},{0x1c2f,4}}, {{0x422e,3},{0x198f7,3}}, + {{0xd41,4},{0xb8f,2}}, {{0x1e,1},{0xc89,3}}, {{0x9622,7},{0x3a81,3}}, {{0x1f62,9},{0xb52,5}}, + {{0x26c4,3},{0x10f6,1}}, {{0x6e03,4},{0xf9ec,7}}, {{0x28da,1},{0xd5c,1}}, {{0x56b2,8},{0x3d9d,5}}, + {{0x10f0,1},{0x17ef0,6}}, {{0xc25e,5},{0xc263,6}}, {{0x161c,6},{0x1701,3}}, {{0x261f,4},{0x2db1,3}}, + {{0x2c76,5},{0x50fd,5}}, {{0xd041,5},{0xba24,5}}, {{0x30,64},{0x30,4}}, {{0xc7b,4},{0x1a,1}}, + {{0xfe38,4},{0x3a3b,3}}, {{0xb2c,2},{0x2b,1}}, {{0x550f,3},{0xb75,2}}, {{0x1b13e,4},{0x278dc,1}}, + {{0xcfd,5},{0xe4c5,3}}, {{0xae0,1},{0x173e,3}}, {{0x5442,4},{0x554f,2}}, {{0x3ae6,10},{0xae7,1}}, + {{0x1eb1c,4},{0xae7,1}}, {{0x25c5,5},{0x683e,7}}, {{0x10f7,1},{0x10fa,1}}, {{0x9cbe,9},{0xae7,1}}, + {{0xb44,3},{0x1b4f,3}}, {{0x1c3dd,6},{0xd0d,2}}, {{0x1f599,4},{0xa5e6,4}}, {{0x1f26,11},{0x132f,3}}, + {{0x27cea,1},{0x948,1}}, {{0x1c,1},{0xb87,3}}, {{0x28634,1},{0x28634,1}}, {{0x3baa,9},{0x1fb7,5}}, + {{0x39ce,5},{0xde2,4}}, {{0xdfe,5},{0x29fa,5}}, {{0xfb1,2},{0x28,1}}, {{0xf325,4},{0x1dd8,3}}, + {{0xd1a,2},{0xbb4,4}}, {{0x1b6b3,2},{0x116e,1}}, {{0x278c9,2},{0x27959,2}}, {{0x10ea,3},{0xbe4,1}}, + {{0x4fbd,4},{0x619a,3}}, {{0x415c,9},{0xb63,2}}, {{0xb7c,2},{0x314e,6}}, {{0x5317,5},{0xaea,2}}, + {{0xb79,2},{0xeb3,3}}, {{0xceb,3},{0xb72,2}}, {{0x34aa,8},{0xb52,6}}, {{0x24a30,2},{0x432,1}}, + {{0xba5,4},{0x21be,4}}, {{0xbe1,2},{0xb65,2}}, {{0x14c08,7},{0xb78,2}}, {{0xc13,4},{0x5290,5}}, + {{0xdf0,2},{0xb8f,3}}, {{0x153ba,8},{0xfe5,2}}, {{0x101b3,3},{0x2a16,3}}, {{0x3942,11},{0xc34,3}}, + {{0x1f,1},{0xbb5,2}}, {{0x2746,3},{0x107fb,5}}, {{0x10c8,3},{0x1a,2}}, {{0x10f8,2},{0xd5c,1}}, + {{0x10f2,1},{0xd57,2}}, {{0x2160,5},{0x2744,3}}, {{0x2451f,2},{0xfefe,2}}, {{0xde9,1},{0xbb2a,4}}, + {{0x15428,7},{0xcf6,3}}, {{0xc49,3},{0x3204,4}}, {{0xcb5,3},{0xd866,5}}, {{0x422e,3},{0xff7,4}}, + {{0x10ea,3},{0xc70,4}}, {{0xb03a,3},{0x1a,1}}, {{0x19c9,3},{0x19cc,3}}, {{0x10f0,1},{0x2b,1}}, + {{0x1b6cb,1},{0x159c8,1}}, {{0xf535,5},{0xc1c,2}}, {{0x741a,7},{0x2b,3}}, {{0xcd9,3},{0xdf7e,4}}, + {{0xc77,2},{0xbd4,2}}, {{0x10f2,1},{0x43e3,1}}, {{0xaeea,2},{0x269eb,2}}, {{0x6d8e,3},{0x1307,3}}, + {{0x5428,5},{0x14e1,4}}, {{0xd41,3},{0x12fe,3}}, {{0x15adc,2},{0x10f0,1}}, {{0x10fb,3},{0xdd3,3}}, + {{0xb55,2},{0x2b,3}}, {{0x10c8,3},{0x2af4,4}}, {{0x1705,3},{0xbb5,3}}, {{0x1f,1},{0xee2,2}}, + {{0xbb5,1},{0xb49,2}}, {{0x17be,2},{0x1f,2}}, {{0x1e7f7,5},{0xb65,2}}, {{0xadf,2},{0xae0,1}}, + {{0x4728,8},{0xe72,3}}, {{0x3d78,9},{0xb7c,3}}, {{0x27,1},{0x12be,3}}, {{0xfb1,2},{0xb9d,3}}, + {{0x14b6,2},{0xb2c,2}}, {{0xb60,2},{0x12bc4,3}}, {{0xde17,6},{0xb0a1,4}}, {{0xc67,2},{0xc895,6}}, + {{0x27b4,3},{0xb52,2}}, {{0xba5,4},{0x8d86,6}}, {{0xfb1,2},{0xb2c,2}}, {{0x41ef,2},{0xb64,2}}, + {{0xb6fb,8},{0x2b,3}}, {{0x1e45,4},{0x1421,3}}, {{0x10ea,3},{0xc1c,2}}, {{0x2043,9},{0x11b8,4}}, + {{0x13bc,4},{0x4de3,3}}, {{0xded,5},{0x7ac7,4}}, {{0x1e03d,5},{0xc34,3}}, {{0x26c6,1},{0x20ed,3}}, + {{0x10fb,3},{0xe78,3}}, {{0x17afb,5},{0x4459,3}}, {{0xdbfc,7},{0xb65,2}}, {{0xab9a,3},{0xb9d,3}}, + {{0x139e,4},{0xc8f,2}}, {{0xbde,3},{0xf14,2}}, {{0x244f5,2},{0x1a328,2}}, {{0xaec,2},{0x108b,3}}, + {{0xdbf,3},{0x21,1}}, {{0xeec,11},{0x10dc,2}}, {{0xbb4,2},{0x4de3,3}}, {{0x10866,5},{0xb9d,3}}, + {{0x5bf1,4},{0xdf9,5}}, {{0x6d81,3},{0x1675,2}}, {{0xd95d,6},{0x31f8,4}}, {{0x725e,7},{0xb52,5}}, + {{0x4ed3,7},{0xd7f,3}}, {{0x10ec,1},{0xae7,1}}, {{0x1040,8},{0xc63,3}}, {{0x6e10,4},{0xde9,4}}, + {{0x10698,5},{0xb2c,2}}, {{0x532,34},{0x30,10}}, {{0x3ed0,3},{0xb2e,2}}, {{0x10ea,3},{0xf63c,2}}, + {{0x422e,3},{0xaf2,1}}, {{0xbcb,3},{0xa60f,3}}, {{0x2c76,4},{0x67a6,4}}, {{0x8a22,7},{0xd0b,4}}, + {{0x37ac,8},{0x2b,1}}, {{0xe258,8},{0xae7,1}}, {{0x182a7,6},{0x2b,3}}, {{0xa7d,4},{0x1b23d,2}}, + {{0xaec,2},{0xb8b,2}}, {{0x422e,3},{0xd5c,1}}, {{0x3de8,5},{0xae7,1}}, {{0x29da,3},{0xaf1,2}}, + {{0xd57f,5},{0xb996,4}}, {{0x27c7f,4},{0x27897,1}}, {{0x415c,4},{0x8ec8,4}}, {{0xc89,2},{0x1099,3}}, + {{0x44df,6},{0x1498,4}}, {{0x12ae,3},{0x12b1,4}}, {{0xbb5,1},{0xaea,1}}, {{0x44b8,5},{0x2971,3}}, + {{0x30,64},{0x30,2}}, {{0x1b,1},{0xd8f,3}}, {{0xc8f3,5},{0x3043,6}}, {{0x1b140,2},{0x1b6ab,1}}, + {{0x6137,5},{0x7ee6,4}}, {{0xc89,2},{0xb4a,2}}, {{0xb7d,1},{0xc77,2}}, {{0xae5,1},{0xb4b,2}}, + {{0xbeb,1},{0xaea,3}}, {{0xd0f,4},{0xee1,3}}, {{0x2aad3,4},{0x2aacb,2}}, {{0x3624,6},{0x10dc,2}}, + {{0x159c,4},{0x4c0b,4}}, {{0xae9,2},{0xc2ea,3}}, {{0x1cef,3},{0xae7,1}}, {{0x10f3,1},{0x2bfc,3}}, + {{0x3234,3},{0xaf2,1}}, {{0xaea,1},{0x88ce,4}}, {{0x6d8e,3},{0x5aab,3}}, {{0x20bb,3},{0x4446,6}}, + {{0x7a6e,4},{0xaf2,1}}, {{0x14fc,4},{0x37f6,3}}, {{0xbe0,1},{0xc1c,2}}, {{0x3cb4,9},{0xb65,2}}, + {{0x3bfe,9},{0x2b,3}}, {{0x10fb,3},{0x1a1f3,2}}, {{0x10c8,3},{0xd54,1}}, {{0xc34,2},{0xb7d,2}}, + {{0x3e90,5},{0x5f28,7}}, {{0x1c92,6},{0x4797,5}}, {{0x2a16,3},{0x28,1}}, {{0x1b7bb,6},{0xfef0,4}}, + {{0xc37,3},{0xc6db,3}}, {{0xa7d,4},{0x6f78,2}}, {{0xcc00,5},{0x1a,1}}, {{0xa7d8,2},{0x10ec,1}}, + {{0xf85a,5},{0xd0d,2}}, {{0x24a41,2},{0x2a96c,2}}, {{0xae5,1},{0x789c,5}}, {{0x32ce,11},{0xae7,1}}, + {{0x7bfa,10},{0xd0d,2}}, {{0x112c,1},{0x734,1}}, {{0x29f18,3},{0x924,2}}, {{0xb63,2},{0x1d,1}}, + {{0x16cc,4},{0x1704,3}}, {{0xc4d,2},{0xce8,3}}, {{0xbde,3},{0x10ef,1}}, {{0xcd3,2},{0xb857,4}}, + {{0x4292,3},{0xc67,3}}, {{0xc58,3},{0xaea,1}}, {{0x271e,3},{0xbd3,3}}, {{0x273bd,2},{0x1abd9,2}}, + {{0xbd6,2},{0x1a,2}}, {{0x3782,5},{0x5cd1,8}}, {{0x2742,3},{0x11ef,2}}, {{0x219c,4},{0x4dbb,5}}, + {{0x10ca,2},{0x250a,7}}, {{0x2daa,5},{0x2de9,7}}, {{0x142c,3},{0x108b,3}}, {{0xb2e,2},{0xc32,5}}, + {{0x5eba,5},{0x20cc,8}}, {{0xb7f,3},{0xae2,1}}, {{0xfd25,5},{0xb8c,3}}, {{0x257a,7},{0x3edd,5}}, + {{0xc25,5},{0x6604,6}}, {{0xaea,2},{0x1f,1}}, {{0x2b,2},{0xe70,4}}, {{0x441c,3},{0x2b,3}}, + {{0x6d8e,3},{0x20cd,7}}, {{0x1224c,6},{0x2211,3}}, {{0x415e,3},{0x18d8,4}}, {{0xc37,3},{0xae0,1}}, + {{0x5ea0,4},{0xc1c,2}}, {{0x1ab2,4},{0xb095,3}}, {{0xbeb,1},{0xca7,2}}, {{0x1d82,7},{0xbb5,1}}, + {{0x90e2,6},{0x1c25,4}}, {{0x209d,6},{0xc8e,3}}, {{0xc49,3},{0x1cf22,4}}, {{0x1cee,3},{0x887b,3}}, + {{0xb6e,2},{0x21,1}}, {{0x999a,9},{0x2b,3}}, {{0x969,2},{0x244c3,2}}, {{0x6ac3,3},{0x2b,2}}, + {{0x178c,3},{0x1089,2}}, {{0xeec,5},{0xcab,3}}, {{0xbd8,2},{0x1861,3}}, {{0xef94,7},{0xe49,4}}, + {{0xae6,2},{0xb2f,1}}, {{0x178c,3},{0x10ca,1}}, {{0xd0f,4},{0xb52,2}}, {{0xd154,6},{0xb52,5}}, + {{0x18a5,5},{0xa60f,3}}, {{0x71c2,7},{0x1719,3}}, {{0x1761,3},{0xb67,2}}, {{0xbeb,1},{0x28da,1}}, + {{0x27e1c,2},{0x27cf6,2}}, {{0x143c,8},{0x1719,3}}, {{0x43a5,3},{0xc63,3}}, {{0x6742,5},{0xae7,2}}, + {{0x318c,5},{0x2b,1}}, {{0x2747,3},{0x2af8,4}}, {{0x41da,3},{0xb2c,2}}, {{0x5143,7},{0xbed,4}}, + {{0xcbd4,7},{0x789d,4}}, {{0x710e,6},{0xb78,2}}, {{0x44b8,6},{0xd7f,3}}, {{0x69f3,7},{0x10dc,2}}, + {{0x4ab6,6},{0x1bdb,3}}, {{0x90e2,4},{0xcef3,4}}, {{0x88ea,5},{0x2a95,5}}, {{0x2d80,8},{0xe4d,6}}, + {{0xbde,3},{0x10a0d,3}}, {{0x10ea,3},{0xcb8,2}}, {{0xbde,3},{0xb79,2}}, {{0x1e,1},{0xaea,1}}, + {{0x10ca,1},{0xae2,2}}, {{0xceb,3},{0x1a10,2}}, {{0x6ac3,3},{0xf59,3}}, {{0x10ea,3},{0xcd5,2}}, + {{0x16ae4,5},{0x10dc,2}}, {{0x139c,6},{0x1954,4}}, {{0x1b140,2},{0x278dc,1}}, {{0x41da,3},{0xde2,4}}, + {{0x763c,3},{0xb78,2}}, {{0x55d5,8},{0xc8e,3}}, {{0x2bff,4},{0xc63,3}}, {{0x1b57,4},{0x2b03,5}}, + {{0x22cf8,1},{0x432,1}}, {{0x6ac5,1},{0x2045,3}}, {{0x6d8e,3},{0xfdd,2}}, {{0x30,2},{0x1a10,2}}, + {{0x1ac1,5},{0x4aae,5}}, {{0xb2f,1},{0xd0b2,7}}, {{0x20bb,3},{0x1701,3}}, {{0xa4d,2},{0x1b887,2}}, + {{0xaea,1},{0xa45d,4}}, {{0x13e3,4},{0xc8e,3}}, {{0x142e,1},{0xb8f,2}}, {{0x4415,2},{0xd54,1}}, + {{0x4701,5},{0x1081,3}}, {{0xc37,3},{0x82b1,4}}, {{0xb71,2},{0xb75,3}}, {{0x10fb,3},{0x10ef,1}}, + {{0x6443,6},{0x1675,2}}, {{0x67de,9},{0xb7c,3}}, {{0x2840,2},{0x1f2c5,4}}, {{0x2a891,3},{0x1b6cb,1}}, + {{0x1150,2},{0x10dc,2}}, {{0xea98,7},{0x2202,3}}, {{0x166c,4},{0x16f1,3}}, {{0xbd6,2},{0xae6,2}}, + {{0x3640,8},{0x10c3,5}}, {{0x5b6b,9},{0x2b,3}}, {{0xaaec,2},{0x10f2,1}}, {{0xb78,2},{0x12be,3}}, + {{0x122c,10},{0xc8e,3}}, {{0xae0,1},{0x2f54,5}}, {{0x3a84,8},{0xb52,6}}, {{0xd65,3},{0x7ee6,4}}, + {{0x20d9,4},{0xa7ed,4}}, {{0x10f7,1},{0xbe4,1}}, {{0x28634,1},{0x2862e,2}}, {{0xc7b,4},{0x16f7,5}}, + {{0xbd6,2},{0x1d,1}}, {{0x11cca,5},{0xde4,2}}, {{0xd8e,4},{0xae7,1}}, {{0x8aa6,6},{0x8aac,5}}, + {{0x1e,1},{0xcc3,4}}, {{0xbb5,1},{0xbfc4,6}}, {{0x6cc0,2},{0xdfa,3}}, {{0x46e0,5},{0x1a,1}}, + {{0x10ca,1},{0x28,2}}, {{0xb7f,3},{0x25b7a,5}}, {{0x432,1},{0x734,1}}, {{0x1413e,7},{0xb2e,2}}, + {{0x41da,3},{0xcf3e,2}}, {{0x969,2},{0x24873,2}}, {{0x134c,8},{0x3bc2,4}}, {{0xaeb,2},{0x20b6,2}}, + {{0x27,1},{0x1150,2}}, {{0x10ec,1},{0x11f2,3}}, {{0xb7f,3},{0xa24a,3}}, {{0x2160,6},{0x1c25,4}}, + {{0x70dc,4},{0x6fae,2}}, {{0x2793f,3},{0x116d,1}}, {{0xceb,4},{0x5af9,3}}, {{0x271e,3},{0x22bf,4}}, + {{0xcb5,3},{0x12a0b,7}}, {{0x1960,4},{0x2d44,4}}, {{0x422e,3},{0x1b4b,3}}, {{0x40b2,4},{0xb4b,2}}, + {{0xaf1,1},{0xbb5,1}}, {{0x3234,3},{0xec2,2}}, {{0x70a8,4},{0xfee4,4}}, {{0x19b3,4},{0x1318b,4}}, + {{0x10ca,1},{0xa7d8,2}}, {{0xfb1,2},{0x2d,1}}, {{0x1a,3},{0xb63,2}}, {{0xf1f,5},{0x2202,3}}, + {{0xbd4,2},{0xb70,2}}, {{0x20e8,4},{0xcb8,2}}, {{0x15694,5},{0x1cd1,5}}, {{0x8a46,5},{0xb65,2}}, + {{0x3234,3},{0xd57,2}}, {{0x2380c,5},{0xae6,2}}, {{0xaa21,4},{0xae5,1}}, {{0x1772f,7},{0xd0d,2}}, + {{0x10dc,2},{0xb75,2}}, {{0x7c4,16},{0x7c4,4}}, {{0xed8f,5},{0xae7,1}}, {{0xde9,1},{0x411c,4}}, + {{0x24a30,2},{0x2445e,1}}, {{0x1b13e,4},{0x278a9,1}}, {{0x181c,3},{0xd1b,1}}, {{0x227d,5},{0x2b,2}}, + {{0xb6c,3},{0x2b,1}}, {{0x3df6,5},{0x1b,1}}, {{0x39f8,5},{0x43bd,4}}, {{0xb2f,1},{0xbb4,2}}, + {{0x287e7,2},{0x6f96,2}}, {{0x13a3,3},{0x27,1}}, {{0x1cbf,5},{0xd5e,7}}, {{0x3a14,6},{0x1c43,4}}, + {{0xcce,3},{0x10dc,2}}, {{0x1f,1},{0x106cd,4}}, {{0x30,64},{0x30,18}}, {{0x157f2,2},{0x159cd,2}}, + {{0xc1e,2},{0x1f,1}}, {{0xb52,2},{0xb55,2}}, {{0xd5cc,5},{0xb65,2}}, {{0xff20,4},{0xfef0,4}}, + {{0xc49,3},{0xc4c,3}}, {{0x5dea,7},{0x10dc,2}}, {{0x1700,4},{0x10dc,2}}, {{0x15dc,6},{0x2945,5}}, + {{0xcfd,9},{0xae2,1}}, {{0x10fd,2},{0x1b4f,4}}, {{0xb70,2},{0xb52,6}}, {{0x1a,1},{0xcca,3}}, + {{0xf789,4},{0xc67,2}}, {{0x253d7,6},{0x1b,1}}, {{0x725e,7},{0xc8e,3}}, {{0x422e,3},{0x10f6,1}}, + {{0x1b4e3,2},{0x1b4e3,2}}, {{0xb99,2},{0x34a2,4}}, {{0x30,64},{0x30,8}}, {{0xdba4,4},{0x1f,1}}, + {{0xbb5,1},{0x11ef,2}}, {{0x141f2,5},{0xdb7f,4}}, {{0x44b8,6},{0x108e,7}}, {{0xb7f,3},{0x2c00,3}}, + {{0x14d4,4},{0xae7,1}}, {{0x2288,4},{0xd0d,2}}, {{0xebcc,4},{0x461f,5}}, {{0x41da,3},{0x187c,3}}, + {{0x4354,4},{0x28,2}}, {{0x4132,5},{0x2680,5}}, {{0xae5,1},{0x1b,1}}, {{0x1869,5},{0x1e,1}}, + {{0xdf0,2},{0x15a1,3}}, {{0x2318,4},{0xdfb,3}}, {{0xadf,2},{0xae1,3}}, {{0x1095,4},{0xb4b,2}}, + {{0x30,64},{0x30,10}}, {{0x10c8,3},{0xee87,3}}, {{0xf5a5,5},{0x6f50,5}}, {{0x21bc,6},{0xb7c,3}}, + {{0x423e,1},{0x1d,1}}, {{0xc17,3},{0xb7d,1}}, {{0x10fb,3},{0x43cf,5}}, {{0x11cc,11},{0xb52,5}}, + {{0xae7,2},{0xbd1,2}}, {{0xd76,7},{0x2a85,7}}, {{0x47f8,6},{0x47fe,5}}, {{0x2796,3},{0x5c72,4}}, + {{0xb73,2},{0xe2e0,3}}, {{0x415c,5},{0xdd5,4}}, {{0x244cb,2},{0x1a328,2}}, {{0x208a3,4},{0xb65,2}}, + {{0x6f62,4},{0x6fac,2}}, {{0xd0c5,7},{0x10dc,2}}, {{0x147c,5},{0xd7f,3}}, {{0xf30,6},{0xd7f,3}}, + {{0x2cd8,10},{0xb54,4}}, {{0x10ea,3},{0x2045,3}}, {{0x181c,3},{0x26a9,5}}, {{0x15dc,6},{0x2b,2}}, + {{0x1cef,3},{0x1daa,5}}, {{0xc8d2,6},{0xdf0,2}}, {{0xbe7,1},{0xae7,1}}, {{0xfd25,4},{0x2742,3}}, + {{0x10f2,1},{0x2b76,3}}, {{0x18d6,6},{0xb8f,3}}, {{0x28634,1},{0x27c9b,2}}, {{0x1173,2},{0x278a9,1}}, + {{0x181c,3},{0x43e3,1}}, {{0x159c8,1},{0x2445f,1}}, {{0xc52,2},{0xb78,2}}, {{0x10800,6},{0xb63,2}}, + {{0x1860,5},{0x1865,4}}, {{0xc39,2},{0xfe5,2}}, {{0xc55,2},{0x5d6f,6}}, {{0xbe0,1},{0x28da,1}}, + {{0x17ec,4},{0xcb8,3}}, {{0x36da,5},{0xc63,3}}, {{0x3234,4},{0x1372,3}}, {{0xbb5,1},{0xb70,2}}, + {{0x1dbe,5},{0xb82,2}}, {{0x1a,1},{0x10dc,2}}, {{0xa7f4,3},{0xb85,2}}, {{0x17bc,4},{0x1e,1}}, + {{0xae7,1},{0x1a,3}}, {{0x17ec,5},{0x2b8d,9}}, {{0x57dd,7},{0xe4d,6}}, {{0x5bc6,7},{0x10dc,2}}, + {{0xa2ee,6},{0xa2f4,6}}, {{0x1a,2},{0xd1b,2}}, {{0xe6d,2},{0xbbf,2}}, {{0x178c,3},{0xba58,8}}, + {{0xfe01,5},{0x1b008,4}}, {{0x41da,3},{0x15b3f,2}}, {{0x4194,5},{0x1d0f,7}}, {{0x43a5,3},{0x10dc,2}}, + {{0x2796,3},{0xb48,2}}, {{0xca7,2},{0x704e,4}}, {{0x20ca,10},{0x103b,5}}, {{0x122c,4},{0x1a5c,3}}, + {{0xba5,4},{0x1ae2,2}}, {{0xd0f,4},{0x89b9,4}}, {{0x1084,3},{0xeabc,5}}, {{0x244b3,2},{0xa51,2}}, + {{0x1ed49,3},{0x9c9,1}}, {{0x27,1},{0xb70,2}}, {{0xc67,3},{0xaf2,1}}, {{0xdba,4},{0x838c,5}}, + {{0xd76,7},{0x1dcf,3}}, {{0x17ee,3},{0xae7,2}}, {{0x181c,4},{0xe6d,2}}, {{0xba5,4},{0x1ed3,4}}, + {{0x13d38,9},{0xae7,1}}, {{0x10f8,2},{0x428d,3}}, {{0xdba,7},{0xc34,3}}, {{0x70b0,4},{0xfb8b,2}}, + {{0x17bc,4},{0x228e,3}}, {{0x944e,6},{0x2dc3,3}}, {{0x1925e,6},{0x2b,3}}, {{0xb85,2},{0xeb3,3}}, + {{0x2d,1},{0x1862,3}}, {{0x10fb,3},{0xb71,2}}, {{0x122c,6},{0x583f,3}}, {{0x3640,7},{0x14a8,4}}, + {{0xcd9,5},{0x32ff,4}}, {{0x422e,3},{0x1ae2,2}}, {{0xc39,2},{0xb2e,2}}, {{0x1084,3},{0x1927c,5}}, + {{0x60cf,8},{0x11b8,4}}, {{0x1611,3},{0x1489,3}}, {{0xa2be,5},{0xae2,2}}, {{0x24,1},{0x9a9,1}}, + {{0xbde,3},{0xbb4,2}}, {{0x1b6b3,2},{0x278dc,1}}, {{0xb2c,2},{0xb52,6}}, {{0x2cae,8},{0x2a85,6}}, + {{0x66cd,7},{0xb63,2}}, {{0xf30,5},{0x13b5,7}}, {{0x3db0,6},{0x202c,8}}, {{0x1cce,8},{0x103b,5}}, + {{0xb8c,3},{0xcf68,2}}, {{0xcce,3},{0x2b,3}}, {{0x271e,4},{0x1b79,3}}, {{0x27b6,1},{0x1878,1}}, + {{0xbd6,2},{0x1b,1}}, {{0x19b3,4},{0xbd90,3}}, {{0xcd9,3},{0x2b,2}}, {{0x102f,6},{0x1035,5}}, + {{0xf0e,7},{0x55f6,6}}, {{0x5d34,5},{0x2195,7}}, {{0x1dcd,11},{0x1dd8,4}}, {{0x1a10,2},{0xb48,2}}, + {{0xc37,3},{0x28,2}}, {{0xa246,7},{0x10dc,2}}, {{0x3234,3},{0x3511,4}}, {{0x2cae,4},{0x2bfd,2}}, + {{0x2d,1},{0xd0d,2}}, {{0x2ae0,7},{0x2ae7,7}}, {{0x261f,4},{0x22bd,6}}, {{0xb44,4},{0x6855,3}}, + {{0x9136,6},{0x33d3,5}}, {{0x10fd,2},{0x107d,4}}, {{0xae0,1},{0x1f13,4}}, {{0xf41,8},{0x1bdb,3}}, + {{0xd737,6},{0xeb3,3}}, {{0xbde,3},{0x10f7,1}}, {{0xae5,1},{0xadf,2}}, {{0x20bb,3},{0x36dd,3}}, + {{0xbb5,1},{0xba7,3}}, {{0x30,2},{0x159c9,4}}, {{0x1f979,6},{0xc67,2}}, {{0x28da,1},{0xb8f,2}}, + {{0x3aa0,7},{0x222c,5}}, {{0x2106,6},{0xe72,3}}, {{0xeeb8,5},{0xcc0,3}}, {{0x1489,3},{0x16ae,2}}, + {{0xb44,3},{0xc89,3}}, {{0x417e,4},{0x4182,4}}, {{0x14cc,4},{0xbb0b,5}}, {{0xb2e,2},{0x2d,1}}, + {{0x10f3,1},{0x1aaed,1}}, {{0x244b9,2},{0xa51,2}}, {{0x1561,3},{0x13f4,8}}, {{0x681f,7},{0x1c14,6}}, + {{0xc89,2},{0xde4,2}}, {{0xa4d,2},{0x6f72,2}}, {{0xb9c,2},{0x12f0,4}}, {{0x10f3,1},{0x4119,3}}, + {{0xb49e,4},{0x70f1,4}}, {{0x27b6,1},{0x100b0,2}}, {{0x1c8f,3},{0x12b1,4}}, {{0x423c,3},{0xa74f,5}}, + {{0x924,1},{0x27b09,2}}, {{0x25093,2},{0x284e9,3}}, {{0xd65,3},{0xc4d,2}}, {{0x24462,1},{0xb31,1}}, + {{0xc52,2},{0xa24a,3}}, {{0x6ac3,3},{0xaeb,2}}, {{0x16fc,4},{0x6676,4}}, {{0xf85,4},{0x47ad,5}}, + {{0xf6a2,8},{0xae7,1}}, {{0x1b13e,4},{0x27897,1}}, {{0x1d46,4},{0xcab,3}}, {{0xded,5},{0x11f2,3}}, + {{0x14ef6,7},{0xb2c,2}}, {{0x11ec,5},{0x297a,6}}, {{0x17fbc,5},{0xae5,1}}, {{0xc227,6},{0xaf1,1}}, + {{0x10f3,1},{0xbcc2,3}}, {{0x9e9,2},{0x532,32}}, {{0xf63,5},{0xb55,2}}, {{0x2ca0,5},{0x10c3,5}}, + {{0xbde,3},{0xb82,2}}, {{0xbcb,3},{0xb8a,2}}, {{0x30,2},{0xb54,4}}, {{0x6137,5},{0xaf2,1}}, + {{0x287e7,2},{0x1b709,2}}, {{0xc37,3},{0x28,6}}, {{0x17ec,6},{0x1d5a,3}}, {{0x8716,4},{0xbd4,2}}, + {{0xae7,2},{0xc63,3}}, {{0x70ea,6},{0xae7,1}}, {{0x2324,4},{0x9cb8,5}}, {{0x30,2},{0x532,16}}, + {{0x325e,5},{0xc8a3,3}}, {{0x177c,3},{0x15a1,3}}, {{0x6ac3,3},{0x20b5,3}}, {{0xbbf,2},{0x666e,4}}, + {{0x12f58,6},{0x967e,4}}, {{0xfe5,2},{0xd1b,1}}, {{0x1b,1},{0xb2f,1}}, {{0x445d,4},{0x7fda,4}}, + {{0x28634,1},{0x2a948,1}}, {{0xd76,5},{0x2a91,4}}, {{0xae7,2},{0x2195,3}}, {{0xeb2,1},{0xae2,1}}, + {{0x9aae,6},{0xb52,2}}, {{0x6d81,3},{0x35d3,5}}, {{0x323a,4},{0xcc3,4}}, {{0xbe0,1},{0xcb8,2}}, + {{0x281f,3},{0xb0ce,3}}, {{0x1c92,6},{0x11e6,6}}, {{0x58d4,5},{0x12797,4}}, {{0x974e,5},{0xb63,2}}, + {{0x3a5a,5},{0xae0,1}}, {{0x1c4ed,6},{0x1d,2}}, {{0xb72,2},{0x1c,1}}, {{0xb2f,1},{0xb52,2}}, + {{0x10ec,1},{0x2bfc,3}}, {{0x2160,5},{0xb64,2}}, {{0x26b5,4},{0x1b5c,3}}, {{0xc37,3},{0x4ab0,3}}, + {{0x5d9c,8},{0xd17,3}}, {{0x159c,4},{0x1bdb,3}}, {{0xf417,5},{0x139f,3}}, {{0xb6c,3},{0xcb8,2}}, + {{0x244e,8},{0x2d44,4}}, {{0x2520a,2},{0x28634,1}}, {{0x6103,7},{0xe1a,6}}, {{0x6137,5},{0x103a,3}}, + {{0xb7d,1},{0x253a,4}}, {{0x153ce,7},{0x69ce,3}}, {{0xf59,3},{0xb8d,5}}, {{0xae2,1},{0xc52,2}}, + {{0xb44,3},{0xcd5,2}}, {{0x1c25,3},{0xc63,3}}, {{0x271e,3},{0x16f1,3}}, {{0x19b3,4},{0xbe8,3}}, + {{0x3ed6,5},{0x3edb,7}}, {{0x18892,4},{0xb9c,2}}, {{0x1d,1},{0xb65,2}}, {{0x804,2},{0xff02,2}}, + {{0xbe4,1},{0xb64,3}}, {{0xdbf,3},{0x1f,2}}, {{0x9a9,1},{0x251d8,2}}, {{0xc30,2},{0xae7,2}}, + {{0x1c0bd,6},{0xd0d,2}}, {{0xf9d,4},{0xaf2,1}}, {{0x2446a,3},{0x9a9,1}}, {{0xaf2,1},{0xc63,3}}, + {{0x27d24,3},{0x780,1}}, {{0xcd9,5},{0x10fcc,5}}, {{0xfda,11},{0xd0d,2}}, {{0x1257,2},{0x101c,2}}, + {{0xb7f,3},{0xb2f,1}}, {{0xae5,1},{0x5af9,3}}, {{0x6ac5,1},{0xd54,1}}, {{0xd5c,1},{0x3788,3}}, + {{0x151c,4},{0x6637,3}}, {{0x13d60,7},{0xd0d,2}}, {{0x4c3c,6},{0x108e,7}}, {{0x119c,7},{0xb421,4}}, + {{0x13be4,5},{0xc8e,3}}, {{0xcc00,5},{0x1dab,4}}, {{0x364e,4},{0x14b6,2}}, {{0x25c5,5},{0xa3fb,6}}, + {{0x31e0,5},{0x79f9,4}}, {{0xb99,2},{0xadf,2}}, {{0x41da,3},{0x2abe,5}}, {{0x6f48,4},{0x6f4c,4}}, + {{0x969,2},{0x27d99,2}}, {{0x10ef,1},{0xb48,2}}, {{0xeb3d,7},{0x82f4,2}}, {{0x24f88,2},{0x1ed53,1}}, + {{0x278f3,2},{0x278dc,1}}, {{0x27,1},{0xbe8,3}}, {{0xc37,3},{0x13684,6}}, {{0xc37,3},{0x1a10,2}}, + {{0x14b6,2},{0xd15,5}}, {{0x74e6,6},{0xb52,2}}, {{0xa246,4},{0x1862,3}}, {{0x720a,6},{0x7a5e,4}}, + {{0x14eec,8},{0x2b,1}}, {{0x1095,3},{0xcf0,2}}, {{0x1b6b3,2},{0x116d,1}}, {{0xfc9,6},{0xd7f,3}}, + {{0x531d,4},{0xb48,2}}, {{0x4812,6},{0x2282,6}}, {{0x37f7,3},{0x10dc,2}}, {{0x709c,2},{0x24673,2}}, + {{0x278f3,2},{0x116d,1}}, {{0x24a8,6},{0xeb3,3}}, {{0x3b10,8},{0x3b18,6}}, {{0x8ce6,8},{0x10dc,2}}, + {{0xae6,2},{0x2b,1}}, {{0x2793d,4},{0x279ad,2}}, {{0x193bd,6},{0xae7,1}}, {{0xaf1,1},{0x1055,3}}, + {{0xe397,7},{0x10dc,2}}, {{0x7c2a,8},{0xbb4,4}}, {{0x11dc,8},{0xb2c,2}}, {{0x10f3,1},{0x5ceb,4}}, + {{0xb2f,1},{0xc67,2}}, {{0x5e2b,6},{0x2d44,4}}, {{0xcb8,2},{0xfe5,2}}, {{0x6b22,3},{0xb78,2}}, + {{0x85de,5},{0x240c,6}}, {{0xcd9,3},{0x1a5c,3}}, {{0x10fb,3},{0xb63,3}}, {{0x4106,4},{0x5bb3,6}}, + {{0x20bb,3},{0x25f7e,5}}, {{0x94f6,7},{0xb52,5}}, {{0xbb5,1},{0xb52,2}}, {{0xaea,2},{0x28,1}}, + {{0x6c97,5},{0xaee,5}}, {{0xbeb,1},{0x4bbf,5}}, {{0xd65,3},{0xbb4c,5}}, {{0x1c92,6},{0xf7c,9}}, + {{0xacbc,3},{0x14e1,4}}, {{0xfe38,4},{0xbd4,2}}, {{0x3234,3},{0xcd5,2}}, {{0x1393,5},{0xb2c,4}}, + {{0xe6d,2},{0xb78,2}}, {{0x10ea,3},{0x1ae4e,2}}, {{0xe6d,2},{0x1d,1}}, {{0x27b6,1},{0x10f0,1}}, + {{0x1084,3},{0x2c00,3}}, {{0x1104a,6},{0xb8f,2}}, {{0x278c9,2},{0x27977,2}}, {{0xb8b,2},{0x1f13,4}}, + {{0x1c,1},{0xfdd,3}}, {{0x397a,5},{0x1701,3}}, {{0x1bc0,10},{0xb7c,3}}, {{0x167c,7},{0x1683,9}}, + {{0x30,2},{0x251d8,2}}, {{0x6f68,6},{0x6f6e,6}}, {{0x415e,3},{0xdd5,4}}, {{0x13504,7},{0x10dc,2}}, + {{0x9cee,9},{0x674c,3}}, {{0x3234,3},{0x459e,4}}, {{0x10fb,3},{0x1a10,2}}, {{0x287e7,2},{0x1a328,2}}, + {{0xbb5,1},{0x5aab,3}}, {{0xceb,3},{0xc55,2}}, {{0xbcf4,6},{0xb65,2}}, {{0x122c,4},{0x1bf08,4}}, + {{0x1e,1},{0x1097,5}}, {{0x108b,3},{0x2b,3}}, {{0xe64,5},{0x2894,4}}, {{0x3a36,2},{0xaf2,1}}, + {{0x6e94,5},{0x12d7,5}}, {{0xc65f,7},{0x2b,3}}, {{0x27,1},{0x4074,3}}, {{0xd65,3},{0x28,1}}, + {{0xb22b,8},{0xae7,1}}, {{0x2742,5},{0x2747,4}}, {{0x139c,6},{0xc930,5}}, {{0xae9,2},{0xd0fe,3}}, + {{0x20bb,3},{0x7526,5}}, {{0xc37,6},{0x4978,5}}, {{0x1a,1},{0xf99,4}}, {{0x35c7,6},{0xb2c,2}}, + {{0x5e11,6},{0x222c,5}}, {{0x6c08,4},{0x1393,3}}, {{0x3e20,7},{0xae7,1}}, {{0xc62,3},{0xc7b0,4}}, + {{0x1f,1},{0xb63,2}}, {{0xf52,4},{0xce1,4}}, {{0x30,64},{0x30,14}}, {{0x21c4a,6},{0xaf2,1}}, + {{0x102f,6},{0x13852,4}}, {{0x17cc,4},{0x2279,4}}, {{0x4a75,6},{0x1719,3}}, {{0x10c8,3},{0x108b,3}}, + {{0xb64,2},{0x2d68,5}}, {{0x278f3,2},{0x1b6ab,1}}, {{0x130c,7},{0xc32,5}}, {{0x2c9f8,4},{0x70b4,2}}, + {{0xadf,2},{0x2279,4}}, {{0x244f5,2},{0xff26,2}}, {{0xd41,3},{0xc229,4}}, {{0x2446c,1},{0x24460,3}}, + {{0x10fb,3},{0x2dcb,4}}, {{0xb52,2},{0xb7c,2}}, {{0x1d38d,5},{0xdfb,3}}, {{0x422e,3},{0x21cd9,4}}, + {{0x893e,5},{0xcd65,4}}, {{0x2d12,4},{0xc9f,4}}, {{0x4606,3},{0x1687,5}}, {{0x3782,5},{0x10ab9,5}}, + {{0xc8bc,6},{0xbac,4}}, {{0xc696,10},{0xae7,1}}, {{0x244ad,2},{0xff26,2}}, {{0x181c,10},{0xe4d,6}}, + {{0x10fb,3},{0xb64,2}}, {{0x2798,2},{0xaea,1}}, {{0x1040,6},{0xdc0,6}}, {{0x30,2},{0x1b6e5,4}}, + {{0xd1b,1},{0xb65,2}}, {{0x47b7,8},{0xeb6,3}}, {{0x2796,3},{0x10ef,1}}, {{0xc1e,2},{0xbb4,4}}, + {{0xb47,2},{0x10283,4}}, {{0x10ef,1},{0x9b11,5}}, {{0x1d,1},{0x142e,1}}, {{0x1ab2,4},{0x715a,3}}, + {{0xd65,3},{0x1402,3}}, {{0xaf2,1},{0xcce,3}}, {{0x2c76,7},{0xd0d,2}}, {{0x10fb,3},{0xc3d,3}}, + {{0x1b5c,3},{0x11f2,3}}, {{0xae0,1},{0xee5,3}}, {{0xe3fa,6},{0x4f4d,3}}, {{0x30,2},{0x1bd5f,6}}, + {{0x2eb4,9},{0xc3e,2}}, {{0x251cb,1},{0x7c4,1}}, {{0xfed0,10},{0xfed2,8}}, {{0xbd4,2},{0x392d,3}}, + {{0x6d8e,3},{0x2b76,3}}, {{0xa4d,6},{0xa4d,6}}, {{0x12ac,5},{0x21d2,6}}, {{0x10fb,3},{0xbe7,1}}, + {{0x41da,3},{0xba9c,6}}, {{0x1cee,3},{0x34a2,4}}, {{0x41da,3},{0xd8f,3}}, {{0x20bb,3},{0x2a24,6}}, + {{0x19cab,5},{0x11baa,4}}, {{0xbde,3},{0x2d44,4}}, {{0xb85,2},{0x2b,1}}, {{0x181c,4},{0xb7d,1}}, + {{0xbc4,4},{0x2b,3}}, {{0x80da,9},{0x2b,3}}, {{0xcb8,2},{0x2202,3}}, {{0x3f3d,3},{0xb85,2}}, + {{0x10ea,3},{0xb4b,2}}, {{0x141c,5},{0x33d3,5}}, {{0xb82,2},{0xb9d,3}}, {{0x24,1},{0x1b4e3,1}}, + {{0x415c,4},{0xf21,3}}, {{0xca95,5},{0x14a6,6}}, {{0x18538,6},{0x1a,2}}, {{0xcd9,3},{0xbd1,2}}, + {{0x2793f,3},{0x278a9,1}}, {{0xaea,1},{0xacd5,4}}, {{0x24b7,6},{0xe7e9,4}}, {{0x27,1},{0x6107,3}}, + {{0x24a8,6},{0x15a4,8}}, {{0x1060c,6},{0x101c,2}}, {{0x9b0e,6},{0x19c9,3}}, {{0x181c,3},{0x1f3ee,2}}, + {{0x4fa3,7},{0x4797,6}}, {{0x271e,3},{0xbed,2}}, {{0xd0f,4},{0x6676,9}}, {{0xfe5,2},{0xae5,1}}, + {{0x17ae,1},{0x12ff,2}}, {{0x995e,8},{0xb63,2}}, {{0x2793d,4},{0x279a7,2}}, {{0xbb5,1},{0x25c2,3}}, + {{0x50ee,4},{0x2b,3}}, {{0x24a41,2},{0x1b6cb,1}}, {{0xf018,8},{0x2b,3}}, {{0xb8b,2},{0x1254,3}}, + {{0x27b6,1},{0xb47,2}}, {{0x14d0e,3},{0x52c6,3}}, {{0x1617f,6},{0xdf0,2}}, {{0x13612,5},{0x5fc7,4}}, + {{0x6ac3,3},{0xd5c,1}}, {{0xbb26,8},{0xc63,3}}, {{0x178c,3},{0xbeb,1}}, {{0x6783,8},{0x1719,3}}, + {{0x1a,3},{0xc63,3}}, {{0x3a55,5},{0x10dc,2}}, {{0x10ea,3},{0x43a2,3}}, {{0xaea,1},{0x1cac,4}}, + {{0x70dc,4},{0x1cf1d,2}}, {{0x30,64},{0x30,16}}, {{0x1fbc,7},{0x2cd1,4}}, {{0x5442,4},{0x2bfc,2}}, + {{0xde9,1},{0xcd4,3}}, {{0xb44,3},{0xb8f,2}}, {{0x14934,2},{0x440f,2}}, {{0x71da,6},{0x11b8,4}}, + {{0xb9d,3},{0x1a,1}}, {{0x3624,6},{0x2b,3}}, {{0xab9a,3},{0x23d9,3}}, {{0xb85,2},{0x1089,2}}, + {{0xab9a,3},{0xb52,2}}, {{0x6d81,3},{0xc67,2}}, {{0xe9f3,6},{0x11f2,3}}, {{0x1cd1d,6},{0xae7,1}}, + {{0xcd9,3},{0xff7,5}}, {{0x30c8,7},{0x2971,3}}, {{0xbcb,3},{0x2045,3}}, {{0x13af,4},{0x21,1}}, + {{0xd65,3},{0x36dd,3}}, {{0x10fb,3},{0xf69,3}}, {{0xcd9,5},{0x13327,5}}, {{0x1051,4},{0x141b2,4}}, + {{0x256b,4},{0xb55,2}}, {{0x139e,2},{0x1a,2}}, {{0xb71,2},{0xca1,2}}, {{0x51ee,3},{0xae7,1}}, + {{0x24525,4},{0xc601,2}}, {{0x2c75e,4},{0x157a4,2}}, {{0x112c,1},{0x2445f,1}}, {{0xe42,5},{0xc6db,3}}, + {{0xa71a,7},{0x18eb,5}}, {{0x10ef,1},{0x28,1}}, {{0x1489,3},{0xaf1,1}}, {{0x10dc,2},{0x1a,1}}, + {{0x10fd,2},{0x13b7a,5}}, {{0x43e3,1},{0xb72,2}}, {{0x422e,3},{0xdac,2}}, {{0x1b13e,3},{0x27ac1,2}}, + {{0x1b6dd,2},{0x157a4,2}}, {{0x5c07,8},{0xb7c,3}}, {{0xbb4,3},{0x2b,3}}, {{0x4a27,4},{0x14d5,3}}, + {{0x10c8,3},{0x1c68,3}}, {{0x271e,3},{0x29386,2}}, {{0x364e,4},{0xc1e,2}}, {{0xcc7,3},{0x4ab0,3}}, + {{0x14ff0,4},{0xd7f,3}}, {{0x153c,6},{0x1761,4}}, {{0xb87c,6},{0x4591,4}}, {{0xae0,1},{0xd91,2}}, + {{0xf52,5},{0x2ddc,6}}, {{0xd1b,1},{0x16f8,3}}, {{0x27b6,1},{0x10ed,2}}, {{0x26c6,1},{0x1d0e,2}}, + {{0x61ac,6},{0x31f8,4}}, {{0xc1c,2},{0x2195,3}}, {{0x6f74,4},{0xab1,2}}, {{0x1cec,10},{0x11b8,4}}, + {{0x27b6,1},{0xaec,2}}, {{0xd41,4},{0xbb0b,5}}, {{0x27,1},{0x290e,4}}, {{0x2e52,8},{0xd0d,2}}, + {{0xc39,2},{0xd7f,3}}, {{0xb55,2},{0x1693,3}}, {{0xb6c,3},{0xbbf,2}}, {{0x10ea,3},{0x4ab0,3}}, + {{0x12a44,7},{0xaf2,1}}, {{0x4eed,9},{0xb54,4}}, {{0xafd2,6},{0x9fa0,5}}, {{0x10f2,1},{0x10f6,1}}, + {{0x21967,4},{0x101c,2}}, {{0x12b66,7},{0x2b,3}}, {{0xe86,11},{0xe91,6}}, {{0xf5f5,2},{0x10ed,2}}, + {{0xd87,11},{0x10dc,2}}, {{0x40f8,6},{0x1264,8}}, {{0x4189,3},{0xae6,2}}, {{0xb44,3},{0x41ef,2}}, + {{0xc37,3},{0x1d22,6}}, {{0x177c,3},{0x4d97,2}}, {{0x9a9,1},{0x251cd,4}}, {{0x41be,3},{0xbe4,1}}, + {{0xab9a,3},{0x114f,3}}, {{0x177c,3},{0xca6,2}}, {{0x256b,4},{0x319d,4}}, {{0x2446c,1},{0x27e48,3}}, + {{0xaada,5},{0xaf2,1}}, {{0x142e,1},{0xdf0,2}}, {{0xddc,4},{0x32f3,5}}, {{0x1362,3},{0xb67,2}}, + {{0x122c,4},{0x4882,3}}, {{0xa22e,7},{0x2584,5}}, {{0x4106,4},{0xaeb,2}}, {{0xb72,2},{0xb75,2}}, + {{0x437e,4},{0xc9f,4}}, {{0xde9,1},{0x10e2b,3}}, {{0xceb,3},{0xb82,2}}, {{0x14fd2,6},{0xae6,2}}, + {{0xcd9,3},{0xb8f,2}}, {{0x6f74,4},{0x1b25d,2}}, {{0xcf0,2},{0xb2c,2}}, {{0xcb5,3},{0x78a2,4}}, + {{0x1a,2},{0xb8e,2}}, {{0xde9,1},{0x15c2a,5}}, {{0x4a82,8},{0xb7c,3}}, {{0x15c15,5},{0xb77,3}}, + {{0x6ac5,1},{0x9319,3}}, {{0x1574c,2},{0x1f2c5,2}}, {{0x5442,5},{0x1a,3}}, {{0x114d,2},{0xb78,2}}, + {{0x8716,4},{0xae7,2}}, {{0x27b6,1},{0xc77,2}}, {{0xaea,2},{0x13b84,5}}, {{0x1084,4},{0x2bfd,2}}, + {{0xe31,5},{0x4834,5}}, {{0x1ec51,5},{0xae7,1}}, {{0x470e,8},{0x2bca,4}}, {{0xb67,2},{0xb7c,3}}, + {{0x14fc,11},{0xc7b,4}}, {{0xcd9,3},{0x16482,5}}, {{0xbd8,2},{0x28,1}}, {{0xaf3,10},{0xaf3,10}}, + {{0xd43,6},{0xb54,3}}, {{0xc51,4},{0xb8f,2}}, {{0x1a,1},{0xb70,2}}, {{0xdcb,7},{0x1b,1}}, + {{0x70b0,4},{0x70ca,2}}, {{0x178c,3},{0x6ac5,1}}, {{0xcb5,3},{0xe39a,4}}, {{0xaf0,2},{0x174e,3}}, + {{0xb2f,1},{0x2af8,4}}, {{0x10ac8,8},{0xd0d,2}}, {{0x14d7a,7},{0xeb3,3}}, {{0xc25,3},{0xff7,5}}, + {{0xb7f,3},{0xced9,8}}, {{0x1b13e,3},{0x27ad3,2}}, {{0x18496,5},{0xc8f,2}}, {{0xbeb,1},{0x1d5a,3}}, + {{0x1b6b3,2},{0x1b6b3,2}}, {{0x229b,9},{0xb78,2}}, {{0xcb5,3},{0x4b0a,4}}, {{0x1b4e4,1},{0x2445f,1}}, + {{0xcd9,3},{0x4e98,3}}, {{0x77c2,7},{0xaea,2}}, {{0x143c,5},{0x8ba7,6}}, {{0x177c,3},{0x1a,2}}, + {{0xaca2,3},{0xb64,2}}, {{0x1cec,6},{0xd0d,2}}, {{0xd41,3},{0xebf,3}}, {{0x8056,9},{0xb63,2}}, + {{0xd41,4},{0x10cc0,6}}, {{0x28,1},{0x12fe,3}}, {{0x13bc,4},{0x1b4f,4}}, {{0x14c0a,3},{0x2746,3}}, + {{0xba5,4},{0x7445,5}}, {{0xcb5,3},{0xb64,2}}, {{0x3a92,8},{0xb52,5}}, {{0x178c,3},{0xaec,2}}, + {{0x4f2e,5},{0xb9d,3}}, {{0x20bb,3},{0xce8,3}}, {{0x278ed,2},{0x116e,1}}, {{0x244f5,2},{0x70ce,2}}, + {{0x10ef,1},{0xb63,3}}, {{0x183eb,6},{0xb63,2}}, {{0x3234,3},{0xd05a,8}}, {{0x24705,4},{0xff02,2}}, + {{0x187c,3},{0xb78,2}}, {{0x2aee,10},{0x10dc,2}}, {{0xb9c6,8},{0xcab,3}}, {{0x24705,4},{0x1b709,2}}, + {{0xbeb,1},{0x6ac5,1}}, {{0x27232,2},{0xd5c,1}}, {{0x2c76,4},{0x591d,3}}, {{0xa38a,9},{0x2b,3}}, + {{0x30ba,7},{0xd1a,7}}, {{0xa7da,3},{0x2045,3}}, {{0x1561,3},{0x200e,5}}, {{0x53f4,5},{0xb2c,4}}, + {{0xb57a,7},{0x1c25,4}}, {{0x9c0a,8},{0x18ca,3}}, {{0x1f,1},{0x1bf08,4}}, {{0x2451f,2},{0x157b6,2}}, + {{0x1062,6},{0x12b1,4}}, {{0xbe4,1},{0x20986,3}}, {{0xded,5},{0xb71,2}}, {{0x2c76,4},{0x9133,3}}, + {{0x30,4},{0x532,2}}, {{0x256b,5},{0x2742,3}}, {{0x10c8,3},{0x1097,5}}, {{0x1029c,6},{0xd0d,2}}, + {{0x27b4,3},{0xfdd,8}}, {{0x28,1},{0xb85,2}}, {{0x102f,6},{0x4694,5}}, {{0xb85,2},{0x28be,3}}, + {{0xe9f,3},{0xb55,2}}, {{0xc39,2},{0xe8a,4}}, {{0xa29a,5},{0x1f,1}}, {{0x14bb2,2},{0x14bb4,2}}, + {{0x16dc,7},{0xa469,5}}, {{0x1040,8},{0xb52,5}}, {{0xfdd,2},{0x584e,4}}, {{0xc52,2},{0x2b4c,4}}, + {{0xc37,3},{0x1c25,3}}, {{0x271e,3},{0x3ce4,7}}, {{0x51b8,7},{0x11ef,2}}, {{0x10ec,1},{0x11ef,2}}, + {{0x3de8,5},{0xd6d,9}}, {{0x670e,6},{0x11ef,2}}, {{0x162c,10},{0xce8,3}}, {{0x1878,1},{0x152c4,2}}, + {{0x1b6dd,2},{0x70da,2}}, {{0xc25,3},{0xdb31,5}}, {{0xd76,5},{0xa60f,3}}, {{0x4354,5},{0x28,2}}, + {{0x1bcb5,5},{0x2bfc,3}}, {{0x271e,3},{0xbe8,3}}, {{0x264c,4},{0x4ae5,5}}, {{0x1040,6},{0x13b5,7}}, + {{0xd5c,1},{0xbe4,1}}, {{0x2af4,4},{0x2b,3}}, {{0x70c6,4},{0xa4f,2}}, {{0x10f0,1},{0xb8f,2}}, + {{0x1095,4},{0x1a90,4}}, {{0x4c70,9},{0xae7,1}}, {{0xae9,2},{0xaeb,2}}, {{0x10dc,2},{0xae2,1}}, + {{0x2796,4},{0xc76,9}}, {{0x1b87f,6},{0x1019a,4}}, {{0x1ed53,1},{0x734,2}}, {{0xfc9,6},{0x3892,7}}, + {{0x10f3,1},{0x29d9,3}}, {{0x1f3f9,4},{0x12086,4}}, {{0x10ec,1},{0xc89,2}}, {{0xae5,1},{0xde9,1}}, + {{0xb44,4},{0xaea,2}}, {{0xb7f,3},{0xae7,1}}, {{0xae9,2},{0xae9,2}}, {{0x10ec,1},{0x1ae4e,2}}, + {{0xbc0,4},{0xce2,3}}, {{0xcd9,3},{0xb9d,3}}, {{0x443e,2},{0x2a16,3}}, {{0xbb2,2},{0x18681,4}}, + {{0x1a9d,3},{0xae6,2}}, {{0x2672b,2},{0x10ca,1}}, {{0xddc,4},{0xfdd,3}}, {{0x2f16,8},{0x2b,3}}, + {{0x422e,3},{0xbb15,3}}, {{0x946,3},{0x1ed58,1}}, {{0x12a62,5},{0x6637,3}}, {{0xbb4,2},{0x384a,3}}, + {{0x1d55,4},{0x1754d,5}}, {{0xd54,1},{0xb7d,1}}, {{0x1cbf,4},{0x10d89,4}}, {{0x17be,2},{0xb7d,1}}, + {{0x10f3,1},{0xbe7,1}}, {{0xae5,1},{0x1c,1}}, {{0xbe4,1},{0xbbf,2}}, {{0x20bb,3},{0xa60f,3}}, + {{0xddc,4},{0x2bfc,3}}, {{0x2793d,4},{0x279b9,2}}, {{0xcab,3},{0x2b,3}}, {{0xe2dc,5},{0x1675,2}}, + {{0x10f4,2},{0x10f6,5}}, {{0x52a2,6},{0xae7,1}}, {{0x3f9a,4},{0x1bc5,8}}, {{0xb60,2},{0x1402,3}}, + {{0xfc9,6},{0x24fd,5}}, {{0x70c6,4},{0xfb8b,2}}, {{0x278db,2},{0x27897,1}}, {{0x1b4f,3},{0xb47,2}}, + {{0xc89,2},{0x1dac,3}}, {{0x804,2},{0x6f72,2}}, {{0x178c,3},{0x16ee,2}}, {{0xaaf2,4},{0xb63,3}}, + {{0xd973,7},{0xbb4,4}}, {{0xbe0,1},{0xae7,1}}, {{0x10f6,1},{0x2848,2}}, {{0xc37,3},{0xcd5,2}}, + {{0xae5,1},{0x21a0,3}}, {{0x135fe,6},{0x1278,4}}, {{0x20b3,5},{0xcf6,3}}, {{0xc675,5},{0xc25a,4}}, + {{0xc1c,2},{0x11ef,2}}, {{0xba5,4},{0x5fe0,4}}, {{0xcd9,5},{0xe77,3}}, {{0xd41,3},{0x13f13,5}}, + {{0x19d3b,8},{0xae7,1}}, {{0xc37,3},{0x1393,3}}, {{0xae7,2},{0xcd4,3}}, {{0x17a3e,5},{0xbac,4}}, + {{0x30,64},{0x30,12}}, {{0x10fb,3},{0xbe4,1}}, {{0xae0,1},{0x202c,5}}, {{0x441c,5},{0x4834,5}}, + {{0xfc8b,5},{0x1930,3}}, {{0x261f,5},{0x4d46,4}}, {{0x948,1},{0x1b6cb,1}}, {{0x21da,3},{0xae7,1}}, + {{0xac8c,2},{0xde2,4}}, {{0xc25,3},{0xae5,1}}, {{0xbe4,1},{0x1a06,7}}, {{0xae0,1},{0xce8,3}}, + {{0xd0f,4},{0xcd5,2}}, {{0xca7,2},{0x12d7,5}}, {{0x6672,5},{0x9911,5}}, {{0x250c9,2},{0x10fa,1}}, + {{0xcd9,3},{0x4076,4}}, {{0x14d5,3},{0x2b,1}}, {{0x7aaa,8},{0x10dc,2}}, {{0xb7f,3},{0xadf,2}}, + {{0x1b93,6},{0xdf5,7}}, {{0x44df,4},{0xd17,3}}, {{0x2793f,3},{0x278af,1}}, {{0x162c,6},{0x459e,4}}, + {{0xcbd,4},{0xcd3,2}}, {{0xb44,3},{0xc34,2}}, {{0xae7,1},{0xf6a,3}}, {{0x1b13e,3},{0x27ac7,2}}, + {{0xe69,4},{0xe6d,8}}, {{0x41ef,2},{0x4326,4}}, {{0x1b4f,3},{0x1d,1}}, {{0x6e12,2},{0xc1c,2}}, + {{0x122c,4},{0xc67,2}}, {{0xbc2,2},{0xc63,3}}, {{0x1058,4},{0xd7f,3}}, {{0xbcb,3},{0x174e,3}}, + {{0x3fb6,5},{0x971a,4}}, {{0xc37,3},{0x2ddc,6}}, {{0x5fcb,7},{0x5aa3,5}}, {{0x734,1},{0x7c4,1}}, + {{0x10192,2},{0x24873,2}}, {{0x1761,3},{0xd17,3}}, {{0xb7f,3},{0x67c0,3}}, {{0xaca2,3},{0x12ae,3}}, + {{0xb7d,1},{0xfe5,2}}, {{0x2793d,4},{0x1171,2}}, {{0x3782,5},{0x103b,5}}, {{0x10b7,7},{0x4073,4}}, + {{0x41c0,2},{0xc62,3}}, {{0x423c,3},{0x270b2,3}}, {{0x9532,6},{0x5d6f,6}}, {{0xd54,1},{0xae5,1}}, + {{0x1173,2},{0x116c,1}}, {{0x127d8,6},{0x1a,2}}, {{0x177c,3},{0x5ceb,4}}, {{0xae5,1},{0x4606,3}}, + {{0xc25,4},{0xe77,3}}, {{0x924,3},{0x116e,1}}, {{0xd0d,2},{0x1b,1}}, {{0xbc1,2},{0xb48,2}}, + {{0xc57,4},{0x498e,5}}, {{0x27,1},{0x1307,3}}, {{0x10ca,1},{0x1878,1}}, {{0xf85a,5},{0xaf2,1}}, + {{0xd5cc,5},{0x10dc,2}}, {{0x27d24,3},{0x9c9,1}}, {{0x16b86,6},{0xae7,1}}, {{0x40c0,4},{0xb48,2}}, + {{0x2867e,2},{0x1ed58,1}}, {{0xec6b,4},{0xec2,2}}, {{0xf30,5},{0xbc4,7}}, {{0x148c8,6},{0x4d56,4}}, + {{0xba5,4},{0xb84a,6}}, {{0x41da,3},{0x273bd,2}}, {{0x39f8,5},{0x14a7,5}}, {{0x18727,6},{0xc34,3}}, + {{0x30d6,10},{0xd0b,4}}, {{0x261f,4},{0xbd4,2}}, {{0x2337b,5},{0xb54,2}}, {{0x1436e,5},{0xce1,4}}, + {{0xb6c,3},{0x1257,3}}, {{0x21,1},{0x11b6,5}}, {{0xd76,7},{0x3639,6}}, {{0x5478,2},{0x2b,2}}, + {{0xbe8,3},{0xfb1,7}}, {{0xad62,5},{0x1308,3}}, {{0xf52,4},{0x75cd,4}}, {{0x27f2c,4},{0x12fe,1}}, + {{0xae5,1},{0x359b,4}}, {{0x1084,3},{0xb4b,2}}, {{0x2aacb,4},{0x2aacb,2}}, {{0xecb3,8},{0x10dc,2}}, + {{0x265b,4},{0xe9b,3}}, {{0x6ab6,9},{0x10dc,2}}, {{0x1878,1},{0xcf0,2}}, {{0xddc,4},{0x4569,5}}, + {{0xcfd,6},{0xe5ce,5}}, {{0xd76,4},{0xadf,2}}, {{0xadd,3},{0x1d7ca,5}}, {{0x8a49,2},{0xb65,2}}, + {{0x6f62,4},{0x806,2}}, {{0x219c,4},{0x2c17,3}}, {{0x18a5,5},{0x4df1,5}}, {{0x27d39,3},{0x1ed53,1}}, + {{0x122c,4},{0x9133,3}}, {{0x380e,10},{0xc8e,3}}, {{0x1257,2},{0xbed,2}}, {{0x1ed3,3},{0x8cf9,5}}, + {{0xb63,2},{0x1260,4}}, {{0xb4a,3},{0xc7b,4}}, {{0xc37,3},{0xae6,3}}, {{0x3fab,2},{0x10dc,2}}, + {{0x28871,3},{0x2445f,1}}, {{0x27b4,3},{0x19258,4}}, {{0x251fe,2},{0x780,1}}, {{0x1882c,7},{0xd0d,2}}, + {{0x2e8a,8},{0x1916,5}}, {{0xcc7,3},{0x5444,3}}, {{0x48ae,9},{0xb54,4}}, {{0x27b4,3},{0x225f3,4}}, + {{0x10ea,3},{0x10f7,1}}, {{0xaea,1},{0x9b11,5}}, {{0x27cea,1},{0x24462,1}}, {{0xf369,3},{0x27,1}}, + {{0x30,2},{0xb8a,2}}, {{0xae7,1},{0xae2,2}}, {{0x10fb,4},{0x1d,1}}, {{0x69e6,8},{0xc7b,4}}, + {{0xa6c6,5},{0x10dc,2}}, {{0x3df6,5},{0x14d4,3}}, {{0x1bfc,6},{0x1ec2,4}}, {{0x2920,4},{0x2746,3}}, + {{0xb64,2},{0x250a,7}}, {{0x143c,10},{0xb52,6}}, {{0xab9c,1},{0xbeb,1}}, {{0xb7f,3},{0xbd6,2}}, + {{0x278b5,2},{0x1b6ab,1}}, {{0x6f62,4},{0x96f,2}}, {{0x5734,7},{0xb52,5}}, {{0x4362,4},{0xeb2,1}}, + {{0x1c25,3},{0xc34,3}}, {{0x2b,2},{0x277c,6}}, {{0xb30,2},{0x251df,1}}, {{0x6f62,4},{0x1b205,2}}, + {{0xbeb,1},{0x2b,3}}, {{0x16137,6},{0x12ff,2}}, {{0xc52,2},{0x5aa3,5}}, {{0x166c,6},{0xe954,5}}, + {{0x5ddd,6},{0xb54,4}}, {{0x30,2},{0x432,7}}, {{0x246c,8},{0x6576,5}}, {{0x24a2d,2},{0x24a30,3}}, + {{0x6d81,3},{0x23d9,3}}, {{0x6d81,3},{0xcb8,2}}, {{0xbde,3},{0xb63,2}}, {{0x27b03,2},{0x924,1}}, + {{0x2796,3},{0xb70,3}}, {{0x2a891,3},{0x1b4e3,1}}, {{0x100d,6},{0x20,2}}, {{0xc8a3,3},{0xb55,2}}, + {{0x1c25,3},{0x103a,3}}, {{0x1b13e,4},{0x278d6,1}}, {{0xcd9,3},{0xc77,2}}, {{0x1eae,8},{0x14d5,7}}, + {{0xcfd,4},{0xff7,5}}, {{0xaca2,3},{0xb71,2}}, {{0xbe7,1},{0x1d8a,3}}, {{0x27b4,3},{0xb63,2}}, + {{0xb7f,3},{0x1904,3}}, {{0x78b2,5},{0x7297,3}}, {{0xd65,8},{0xbb4,4}}, {{0x17ee,3},{0x1e,1}}, + {{0xe64,5},{0x185b,3}}, {{0xaf0,2},{0xb52,5}}, {{0x2598,8},{0x1498,4}}, {{0x5949,6},{0x10dc,2}}, + {{0x79ba,5},{0x31f8,4}}, {{0x187c,3},{0x10dc,2}}, {{0x1bde,6},{0xbb4,4}}, {{0x5c76,4},{0xae0,1}}, + {{0xcd1e,7},{0x2b,3}}, {{0xb52,2},{0xb4b,2}}, {{0x10fb,3},{0xfcaf,2}}, {{0x12fe,2},{0xb78,2}}, + {{0x135c,7},{0x1c7b,4}}, {{0xb65,2},{0x4d44,3}}, {{0x2b,1},{0xaf2,1}}, {{0x423e,1},{0xc67,2}}, + {{0xde9,1},{0x9319,3}}, {{0x1b6e1,2},{0x96f,2}}, {{0x1463,5},{0x1468,4}}, {{0x5c76,4},{0xaf1,1}}, + {{0xeb1,2},{0xb78,2}}, {{0xde9,1},{0x1c,1}}, {{0x6e46,3},{0x18af8,4}}, {{0xc77,2},{0xd48,2}}, + {{0xdf0,2},{0xaea,1}}, {{0x273c,6},{0x2742,9}}, {{0xb63,3},{0xaf1,1}}, {{0x1dacd,6},{0x1a,2}}, + {{0xcd9,3},{0xbb5,1}}, {{0x26c6,2},{0xc1c,2}}, {{0xbd7,2},{0xbd1,2}}, {{0x70ea,3},{0x28,1}}, + {{0x1f,1},{0x46f8,3}}, {{0xb44,3},{0x4459,3}}, {{0x4d5a,8},{0xc1e,5}}, {{0x52c9,9},{0x2c2d,3}}, + {{0x1abd7,2},{0xd5c,1}}, {{0x2a946,4},{0x2a948,1}}, {{0x1434,3},{0x1489,3}}, {{0xd41,4},{0x28e2,4}}, + {{0x27a7,3},{0xaf1,2}}, {{0xcd9,3},{0xd256,4}}, {{0x438e,8},{0xb2e,2}}, {{0x78b2,5},{0x1d,1}}, + {{0x6d81,3},{0x1cef,3}}, {{0x10f2,1},{0xa7ed,4}}, {{0xae7,2},{0x323c,2}}, {{0xaf1,1},{0x11b8,4}}, + {{0x3234,3},{0xcf68,2}}, {{0x1098,3},{0xc77,2}}, {{0xb8b,2},{0xc55,2}}, {{0x969,2},{0x70da,2}}, + {{0x122c,4},{0x889f,3}}, {{0x13f22,5},{0xa049,4}}, {{0x23c7,11},{0x1278,4}}, {{0x41da,3},{0xbe7,1}}, + {{0x28e7a,2},{0x1ed58,1}}, {{0xbeb,1},{0xb70,2}}, {{0x1e,1},{0xb8f,2}}, {{0x15a0,4},{0xcc3,4}}, + {{0x12fe,2},{0x362c,6}}, {{0x2c338,4},{0x1b887,2}}, {{0xae7,1},{0xdac,2}}, {{0x15630,5},{0x1daa,4}}, + {{0x3f0e,8},{0x1577,5}}, {{0x5fcb,7},{0xdf7e,4}}, {{0x1590a,2},{0x1c,1}}, {{0x5442,8},{0xb7a,5}}, + {{0x142c,3},{0x12f1,3}}, {{0x1b13e,3},{0x27acd,2}}, {{0x1a,2},{0x19908,4}}, {{0x4812,6},{0x4ae5,5}}, + {{0x438c,10},{0xb2e,2}}, {{0x446a,5},{0x13762,4}}, {{0xa24a,3},{0xb78,2}}, {{0xdc6a,7},{0xc34,3}}, + {{0x3234,3},{0xb7c,2}}, {{0xb6c,3},{0xb55,3}}, {{0x10b7,9},{0x220f,5}}, {{0xae2,2},{0xb65,2}}, + {{0xa29a,8},{0xae7,1}}, {{0x184e7,5},{0xc8f,2}}, {{0x2cae,8},{0x4076,4}}, {{0x100d,5},{0x1b,1}}, + {{0x244b3,2},{0x244e7,2}}, {{0x2b,2},{0xf25a,5}}, {{0x290c,2},{0x11ef,2}}, {{0x27b6,1},{0x28,1}}, + {{0x2c76,4},{0xb29c,3}}, {{0xc30,3},{0xbc2,2}}, {{0x10f3,1},{0x10f7,1}}, {{0x6d81,3},{0x28,2}}, + {{0x131b0,6},{0xb65,2}}, {{0x3846,6},{0x11e4,4}}, {{0x178c,3},{0xdac,2}}, {{0x415c,4},{0xadf,2}}, + {{0xb7f,3},{0x10f7,1}}, {{0xa6c6,5},{0x1719,3}}, {{0x6f36,3},{0xaf2,1}}, {{0x23b8,9},{0xb52,5}}, + {{0x85de,5},{0x7a5e,4}}, {{0x27b6,1},{0x5f8d,9}}, {{0x11ef,2},{0x27,1}}, {{0x181c,3},{0x28da,1}}, + {{0x5dea,7},{0x2b,3}}, {{0x16cc,4},{0x2891,3}}, {{0x1c,1},{0x11b8,4}}, {{0x1dac,3},{0xae5,1}}, + {{0x51d7,4},{0x2288,4}}, {{0x1abb2,3},{0x1675,2}}, {{0x540e,7},{0x2b,3}}, {{0x14dc,7},{0xe70,4}}, + {{0x24,1},{0x29e80,2}}, {{0x159c,4},{0x1045,3}}, {{0xc25,5},{0x2b,2}}, {{0x2672b,2},{0xbe4,1}}, + {{0xaea,1},{0xbc2,2}}, {{0x178c,3},{0xae9,2}}, {{0xefcb,9},{0xd0d,2}}, {{0xb6c,3},{0x1009f,7}}, + {{0x265b,4},{0xc9e,3}}, {{0x4971,5},{0xb64,2}}, {{0x5476,4},{0x14a7,5}}, {{0xb7f,3},{0xbd3,3}}, + {{0xaefa,4},{0x1d8e,3}}, {{0x3e90,5},{0x57bc,7}}, {{0xfef4,4},{0xff20,4}}, {{0xb7f,3},{0x16ce,4}}, + {{0xc25,3},{0xfdd,2}}, {{0x1062,6},{0x1137a,4}}, {{0xbd8,2},{0xae7,1}}, {{0x3640,8},{0xb63,2}}, + {{0x194a,5},{0xb65,2}}, {{0x27b6,1},{0xae6,3}}, {{0x6ac3,3},{0x411c,4}}, {{0xaca2,3},{0x392d,3}}, + {{0x181c,3},{0xeb2,1}}, {{0x27b4,3},{0x4882,3}}, {{0x41be,3},{0xae7,1}}, {{0x6f21,4},{0x140e8,6}}, + {{0xbafa,5},{0x1ab7,4}}, {{0xcd9,3},{0x1d22,6}}, {{0xceb,3},{0xf8e1,4}}, {{0x27b4,3},{0xb4b,2}}, + {{0x4f89,9},{0x103a,3}}, {{0xc25,4},{0xa45d,5}}, {{0x10f3,1},{0xde9,1}}, {{0xc37,3},{0x170b8,6}}, + {{0x18,1},{0x18,1}}, {{0x15b3f,2},{0x10f0,1}}, {{0xc49,3},{0x1140,3}}, {{0x6b52,4},{0xce2,3}}, + {{0xcc0,3},{0xaf2,1}}, {{0x41b0,8},{0x2b,2}}, {{0x88f6,9},{0x1b08,3}}, {{0x441c,3},{0xe4a,4}}, + {{0x10ef,1},{0xaf1,1}}, {{0x24531,4},{0x159cb,2}}, {{0xbcb,3},{0x9484,6}}, {{0x254d,6},{0x3dc4,7}}, + {{0x6742,5},{0x2971,3}}, {{0x780,1},{0x9a9,1}}, {{0x470e,8},{0xae7,1}}, {{0xc25,3},{0xae7,1}}, + {{0x2793f,3},{0x116c,1}}, {{0xaeb,2},{0xb64,3}}, {{0x3234,3},{0x16b02,4}}, {{0x27895,3},{0x924,2}}, + {{0xc39,2},{0x22e3,3}}, {{0x276b,3},{0x2d31,9}}, {{0x6214,7},{0xb8f,3}}, {{0x181c,3},{0x11102,5}}, + {{0x108e8,6},{0xc2ea,3}}, {{0x1cbf,4},{0xb78,2}}, {{0x18,1},{0x27892,3}}, {{0x14bb2,2},{0xd54,1}}, + {{0xd8ce,6},{0xae7,1}}, {{0x532,66},{0x30,6}}, {{0x434e,2},{0x43e3,1}}, {{0xbb5,1},{0x9813,5}}, + {{0x2844,2},{0x10ed,2}}, {{0x9b62,8},{0x1408,3}}, {{0xf52,4},{0x1701,3}}, {{0x762a,4},{0xf59,3}}, + {{0x2ae0,6},{0xb7c,2}}, {{0x13a18,6},{0x1489,3}}, {{0x116c,2},{0x116d,1}}, {{0x7e9a,5},{0x10c0,7}}, + {{0xd5e,4},{0xb54,4}}, {{0x1051,4},{0xba9c,6}}, {{0xa02a,6},{0xb2c,2}}, {{0x2c338,4},{0x159cb,2}}, + {{0xe0f,11},{0xb52,6}}, {{0x4d33,6},{0xc2e8,5}}, {{0x30,2},{0x2877d,4}}, {{0x1062,5},{0x1dab,4}}, + {{0x1daf,4},{0xae6,3}}, {{0x31e0,5},{0x1489,3}}, {{0x532,34},{0x30,8}}, {{0x732,4},{0x734,1}}, + {{0xcd9,3},{0xf8e1,4}}, {{0xc49,3},{0xb7d,1}}, {{0xf63,5},{0xd256,4}}, {{0x102b0,6},{0x5306,4}}, + {{0x27cea,1},{0x2445e,1}}, {{0xd0b,3},{0xcb8,2}}, {{0x20d9,6},{0x10c3,5}}, {{0x16f9e,6},{0x2b,3}}, + {{0x10ca,1},{0x10ca,1}}, {{0x4d19,6},{0x8ec8,4}}, {{0x2868,4},{0xf01,4}}, {{0x278af,1},{0x278b5,2}}, + {{0xb299,6},{0x33d3,5}}, {{0x2b,2},{0xdfb,3}}, {{0x2c5a,9},{0xc8e,3}}, {{0xbcb,3},{0x2b,1}}, + {{0xcd9,3},{0xc55,2}}, {{0x244f5,2},{0x157f2,2}}, {{0x6d8e,3},{0xb7c,3}}, {{0xc25,5},{0xa3fb,6}}, + {{0xaea,1},{0xfe5,2}}, {{0xd41,3},{0xc34,2}}, {{0xaea,1},{0x13c05,7}}, {{0x18e38,6},{0xc34,3}}, + {{0x319a,5},{0xc1c,2}}, {{0xe397,7},{0x2b,3}}, {{0xbcb,3},{0x25e22,3}}, {{0x156c6,5},{0x1a,2}}, + {{0x72b6,3},{0xae7,1}}, {{0x24525,4},{0x1b709,2}}, {{0x1fad,10},{0xb68,4}}, {{0xf59,3},{0xb55,2}}, + {{0x18,1},{0x2864c,1}}, {{0x3baa,9},{0x10dc,2}}, {{0x27b6,1},{0x6ac5,1}}, {{0xb44,3},{0x5a52,4}}, + {{0x2ed0,7},{0x1930,3}}, {{0x533e,9},{0x2939,3}}, {{0xb85,2},{0xc8e,3}}, {{0x762a,4},{0x2b,3}}, + {{0xd65,3},{0x115f0,4}}, {{0x3f1c,9},{0xc7b,4}}, {{0x17a1a,6},{0x10dc,2}}, {{0xf52,4},{0x5bf1,9}}, + {{0x4178,6},{0x417e,8}}, {{0x21d8,10},{0x10dc,2}}, {{0x28,1},{0x1b3c8,9}}, {{0xca5,2},{0x53fc,3}}, + {{0xb2f,1},{0xfb1,2}}, {{0x10b7,9},{0xbb1,3}}, {{0xcfd,4},{0x10d89,4}}, {{0x6d81,3},{0x1a73c,6}}, + {{0x437e,4},{0x392d,7}}, {{0xc1e,2},{0xae7,1}}, {{0xaca2,3},{0x15057,7}}, {{0x3560,8},{0x2282,6}}, + {{0x219c,4},{0x21a0,3}}, {{0x1961,3},{0x28,1}}, {{0xebcc,4},{0x9319,3}}, {{0x2793d,4},{0x279bf,2}}, + {{0xbeb,1},{0x10fa,1}}, {{0xc37,3},{0x1c8f,3}}, {{0x19c63,5},{0xd0fe,3}}, {{0x616b,7},{0x2e92,6}}, + {{0x422e,3},{0xb7c,3}}, {{0x422e,3},{0xb52,2}}, {{0x10c8,3},{0xae2,2}}, {{0x4db5,6},{0xbb4c,5}}, + {{0x2472f,4},{0x24733,2}}, {{0x37d6,9},{0xc7b,4}}, {{0x102f6,6},{0x10dc,2}}, {{0x10f7,1},{0x40bb,5}}, + {{0x3a3e,9},{0x1cee,4}}, {{0x244f5,2},{0x70d2,2}}, {{0xbed,2},{0x1d,1}}, {{0x159c,4},{0x11255,4}}, + {{0x6f62,4},{0x1b709,2}}, {{0x1b6b3,2},{0x278a9,1}}, {{0xb86,3},{0x27,1}}, {{0x10ec,1},{0x5cdb,3}}, + {{0x2859,4},{0xa45d,4}}, {{0xb2f,1},{0xc1c,2}}, {{0x3678,5},{0xc8f,2}}, {{0x271e,3},{0x10f6,1}}, + {{0xb66,2},{0xe7b,3}}, {{0x5c76,4},{0xb65,2}}, {{0x8e8a,8},{0x2d44,4}}, {{0xbde,3},{0x1b4f,3}}, + {{0x1095,3},{0x3823,3}}, {{0x10ea,3},{0x1097,4}}, {{0x5d5b,5},{0x5d6d,8}}, {{0x27,1},{0xb062,6}}, + {{0xb71,2},{0xb48,2}}, {{0x9b1a,5},{0x23ce,4}}, {{0x4c7d,7},{0xbed,4}}, {{0xaea,1},{0x1b,1}}, + {{0xaeb,2},{0x27,1}}, {{0x6d81,10},{0x25c2,3}}, {{0x10d98,7},{0x2b,3}}, {{0xbe7,1},{0x392d,3}}, + {{0xc1e,2},{0x1d,1}}, {{0x21,1},{0x28,1}}, {{0x24b7,5},{0x2b,1}}, {{0x13e8c,7},{0xb141,3}}, + {{0xcb5,3},{0xc4d,2}}, {{0x265b,4},{0xae7,1}}, {{0x278f3,2},{0x278af,1}}, {{0xfed0,4},{0x30,6}}, + {{0x2b,1},{0xae2,1}}, {{0xd0f,4},{0xe8ce,7}}, {{0x181c,3},{0xb8c,2}}, {{0xbbf,2},{0xb78,2}}, + {{0x7162,4},{0xde2,3}}, {{0xbe0,1},{0x202c,3}}, {{0xaec,2},{0xb52,2}}, {{0xae0,1},{0x4c27,5}}, + {{0x734,1},{0x25202,2}}, {{0x27b6,1},{0xb52,2}}, {{0xc67,3},{0xb2e,2}}, {{0xbe4,1},{0x14934,2}}, + {{0x2944,4},{0xb54,3}}, {{0xc49,3},{0x1f,1}}, {{0xbb5,1},{0x28,2}}, {{0x12ac,5},{0x21d2,5}}, + {{0x1c,2},{0x2b,1}}, {{0xcb5,3},{0x15051,3}}, {{0x15ac,10},{0x1f13,4}}, {{0xaf1,1},{0x2195,3}}, + {{0xded,5},{0x10504,4}}, {{0xba5,5},{0x1491,4}}, {{0x10f1,2},{0x43e3,1}}, {{0x6deb,3},{0x10bf,4}}, + {{0x244bf,4},{0x1b887,2}}, {{0x244ad,2},{0x6f64,2}}, {{0x1a,2},{0xd57,2}}, {{0x278ed,2},{0x278a9,1}}, + {{0xadf,2},{0xae7,1}}, {{0x1a,1},{0x2742,3}}, {{0xaca2,3},{0xc30,2}}, {{0x3a06,7},{0xc9e,5}}, + {{0xbc44,8},{0xb8f,3}}, {{0x10698,5},{0x315d,5}}, {{0xaeb,2},{0x1cef,3}}, {{0x41da,3},{0x14b6,2}}, + {{0x41be,3},{0x1f,1}}, {{0x1cec,5},{0xb9c,2}}, {{0x177c,3},{0xeb1,2}}, {{0xd322,6},{0x17d16,3}}, + {{0x1ab2,4},{0xb2e,2}}, {{0x244a1,2},{0x6f78,2}}, {{0x1084,3},{0x88ce,4}}, {{0xae7,1},{0x79d5,5}}, + {{0x39f8,5},{0x240c,6}}, {{0xb82,2},{0xb78,2}}, {{0x16ae,3},{0xae5,1}}, {{0xba5,4},{0xbb3,3}}, + {{0xf52,5},{0xd14,3}}, {{0xc37,3},{0xb2c,2}}, {{0x278c9,2},{0x278af,1}}, {{0xb44,3},{0xcdf,3}}, + {{0xb55,2},{0xb47,2}}, {{0xc4d,2},{0x12ff,2}}, {{0xb2f,1},{0x1055,3}}, {{0x4f2e,5},{0xe70,3}}, + {{0x174c,8},{0x1152,5}}, {{0x27b6,1},{0x443d,3}}, {{0x2445f,1},{0x24a35,2}}, {{0x1ed51,3},{0x27cea,1}}, + {{0xd41,3},{0xca7,3}}, {{0x441c,3},{0x7141,9}}, {{0x80da,9},{0x10dc,2}}, {{0x3774,4},{0x12be,3}}, + {{0xf5e,3},{0x1c25,4}}, {{0x276b,5},{0x8c45,4}}, {{0x8986,7},{0x2b,3}}, {{0x16e2,2},{0xc57,3}}, + {{0x14dc,5},{0x1a90,4}}, {{0x6b54,2},{0x1150,2}}, {{0xbde,3},{0x16e2,2}}, {{0xbb5,1},{0xf47,4}}, + {{0x26c4,3},{0x1bd60,5}}, {{0x209d,4},{0x1393,3}}, {{0x2b,1},{0xc89,2}}, {{0xeb2,1},{0x114f,3}}, + {{0x2160,5},{0xc32,5}}, {{0x12fc,4},{0x284e,3}}, {{0x1771d,8},{0xae7,1}}, {{0x1b6ab,2},{0x1b6ab,2}}, + {{0xc25,4},{0x12d0,12}}, {{0x27d24,3},{0x2521c,6}}, {{0x46f4,5},{0x79f9,4}}, {{0x16b3e,6},{0x10dc,2}}, + {{0x25789,2},{0x15798,2}}, {{0x287e7,2},{0x6f90,2}}, {{0x10196,4},{0x70d4,4}}, {{0xaeb,2},{0xd0c,2}}, + {{0xb7f,3},{0x40b9,2}}, {{0x911e,7},{0x2939,3}}, {{0x3162,5},{0xfdd,2}}, {{0x10f3,1},{0x392d,3}}, + {{0xc25,3},{0x2af8,4}}, {{0x4106,4},{0x3789,3}}, {{0xf10,3},{0x1701,3}}, {{0x24b7,10},{0xb52,5}}, + {{0x6d81,3},{0xb2e,2}}, {{0x1da0,5},{0xbd1,2}}, {{0xae5,1},{0x1257,2}}, {{0xba5,5},{0x7a5e,4}}, + {{0xc39,2},{0xec2,2}}, {{0x5a81,6},{0xd866,5}}, {{0x1c,1},{0x1fb2,5}}, {{0x102c,2},{0x1299e,4}}, + {{0x702e,3},{0xaf1,1}}, {{0xbb2,2},{0xce2,3}}, {{0x20bb,3},{0x1434,6}}, {{0xd1a,2},{0xc63,3}}, + {{0xbb5,1},{0xcc0,3}}, {{0x3162,5},{0xb54,4}}, {{0x10f3,1},{0xb79,2}}, {{0x35d0,8},{0xb2c,2}}, + {{0xf96,7},{0xdd58,4}}, {{0x2aa25,6},{0x432,1}}, {{0x12ae,3},{0xb55,2}}, {{0xbde,3},{0x25c1,4}}, + {{0x23a3e,5},{0xb47,2}}, {{0xd154,6},{0x1f13,4}}, {{0x16c8b,6},{0x12ff,2}}, {{0x122c,4},{0xcc3,4}}, + {{0x6d81,3},{0xc1c,2}}, {{0x178c,3},{0xb99,2}}, {{0x16cc,4},{0x2b03,5}}, {{0x15b3f,2},{0xab9c,1}}, + {{0x1463,5},{0x12d7,5}}, {{0x10ea,3},{0x434c,2}}, {{0xebf,3},{0xfb1,2}}, {{0xb7f,3},{0xdd0,3}}, + {{0x8d52,7},{0x7fda,4}}, {{0x6b52,4},{0xbb2a,4}}, {{0x9a2a,8},{0x674c,3}}, {{0x20bb,3},{0xc1e,2}}, + {{0x21,1},{0x1259,2}}, {{0x244b9,2},{0xc601,2}}, {{0x12fe,3},{0x12ff,2}}, {{0xc12a,6},{0xe1c,4}}, + {{0x2474d,2},{0xfeee,2}}, {{0x7c4,1},{0x24,1}}, {{0x28d1,3},{0x2d,1}}, {{0x22e6,5},{0xcd65,4}}, + {{0x1084,3},{0x67b2,5}}, {{0x5d9c,8},{0x3fdb,5}}, {{0x2e98,9},{0xc20,5}}, {{0x10d48,4},{0xcd5,2}}, + {{0x16fc,4},{0xb8a,2}}, {{0x3250,4},{0xcf0,2}}, {{0x4290,4},{0xb8b,2}}, {{0x27b6,1},{0x21db,7}}, + {{0xdba,6},{0x29fa,6}}, {{0x3c28,6},{0xaec,2}}, {{0xbd6,2},{0xe1d,3}}, {{0x9206,3},{0x2b,1}}, + {{0x10710,5},{0x1dac,3}}, {{0x21,1},{0x1e,1}}, {{0xa4d,2},{0x2472b,4}}, {{0xadf,2},{0xb52,5}}, + {{0x1b13e,3},{0x27ab5,2}}, {{0xb44,3},{0x4687,5}}, {{0x870a,6},{0xb7a,5}}, {{0xd0f,4},{0x24fd,5}}, + {{0x27b4,3},{0x600f,5}}, {{0x284d,3},{0x1081,3}}, {{0x17bc,4},{0x1b,1}}, {{0xd5b6,6},{0xae7,1}}, + {{0x9a9,1},{0x2445e,1}}, {{0xbaa2,4},{0xc57,3}}, {{0x1ae32,2},{0xd5c,1}}, {{0xb75,3},{0xe4c,7}}, + {{0x924,1},{0x278af,2}}, {{0x2778,10},{0x102a,5}}, {{0xdba,6},{0x13b5,7}}, {{0xf8d0,2},{0x152c4,2}}, + {{0xc49,3},{0x13af,5}}, {{0x10ec4,5},{0xc6a9,3}}, {{0xe64,5},{0x5e80,5}}, {{0x1d38d,5},{0xb65,2}}, + {{0xb66,2},{0x23ce,4}}, {{0xc37,3},{0x3789,3}}, {{0x103a,3},{0x1498,3}}, {{0x178c,3},{0x10f7,1}}, + {{0x4354,5},{0x1098,4}}, {{0xb7f,3},{0xf482,3}}, {{0x4415,2},{0x10f0,1}}, {{0x3242,7},{0xd1a,7}}, + {{0xe75,4},{0x34a2,4}}, {{0x19d83,5},{0x1362,3}}, {{0x5483,4},{0xc55,2}}, {{0x17cc,4},{0xae1,3}}, + {{0x1e,1},{0x2af4,4}}, {{0xb609,6},{0x1489,3}}, {{0x1f,1},{0x1b,1}}, {{0xc25,5},{0x1035,5}}, + {{0xddc,4},{0x6f36,3}}, {{0x10ef,1},{0x10f2,1}}, {{0x3f62,5},{0x2b,1}}, {{0x2445f,1},{0x24a30,2}}, + {{0x1cbf,5},{0x3ce3,3}}, {{0xbe4,1},{0x28,2}}, {{0x1d55,4},{0xb66,2}}, {{0x441c,3},{0xae6,2}}, + {{0x2446c,1},{0x251d8,2}}, {{0x10ea,3},{0xae2,1}}, {{0x116c,2},{0x278d6,1}}, {{0x5e86,11},{0xd0d,2}}, + {{0xae0,1},{0x11ef,2}}, {{0x1878,1},{0x1aaed,1}}, {{0x40f8,4},{0x2c18,4}}, {{0x17ce,2},{0xb8b,2}}, + {{0x51c5,5},{0xcb3f,6}}, {{0x3846,4},{0x384a,3}}, {{0x2f5c,7},{0xd1a,7}}, {{0x242fe,5},{0x28,1}}, + {{0xbcb,3},{0x10504,4}}, {{0x6d81,3},{0x13f13,5}}, {{0xc25,3},{0xc1c,2}}, {{0x7702,5},{0xae0,1}}, + {{0x10f3,1},{0x20f1a,4}}, {{0xd8e,3},{0xd0b,3}}, {{0xb9c,2},{0x12fe,1}}, {{0x16b3e,6},{0x2b,3}}, + {{0xaea,1},{0xae2,1}}, {{0x2445e,1},{0x2b5b9,2}}, {{0x1705,3},{0xbb5,2}}, {{0x1a,1},{0x28,1}}, + {{0xb73,2},{0x392c,4}}, {{0xea77,8},{0x2b,3}}, {{0x1e45,3},{0xc67,2}}, {{0xd6d4,7},{0xae7,1}}, + {{0xbeb,1},{0x2b,1}}, {{0xded,5},{0xdf2,3}}, {{0xd57,2},{0x2b,3}}, {{0xd41,4},{0x79d6,5}}, + {{0x1b6dd,2},{0xfb8b,2}}, {{0x1dbe,5},{0x1058,10}}, {{0x115c,4},{0x115c,4}}, {{0x1afd,5},{0xce8,3}}, + {{0xa246,7},{0x2b,3}}, {{0x1033c,5},{0xee7,4}}, {{0xb44,3},{0xb47,2}}, {{0x10f3,1},{0x10ec,1}}, + {{0x3234,3},{0x2bfc,3}}, {{0xbeb,1},{0xae2,2}}, {{0x432,1},{0x2446c,1}}, {{0x16505,6},{0x2b,3}}, + {{0x20bb,6},{0x10dc,2}}, {{0x1ed53,1},{0x1ed53,1}}, {{0x2dfe,5},{0x103a,3}}, {{0x1cef,3},{0x1daa,4}}, + {{0x20bb,3},{0x711d,6}}, {{0x924,3},{0x278a9,1}}, {{0x3de8,5},{0x108e,7}}, {{0x1084,3},{0x411c,4}}, + {{0x1f,1},{0x4119,3}}, {{0x142e,1},{0x8afd,9}}, {{0x2445f,1},{0x27e48,3}}, {{0x216f,11},{0xc7b,4}}, + {{0xbe0,1},{0x10f8,2}}, {{0xb44,3},{0x12bc4,3}}, {{0xae0,1},{0x1055,3}}, {{0x2891,3},{0xbd4,2}}, + {{0xa2b2,10},{0xb2e,2}}, {{0x4266,8},{0x28,1}}, {{0x1c,1},{0x6107,3}}, {{0x177c,3},{0xde1,2}}, + {{0xaea,1},{0xd1b,1}}, {{0x14cc,4},{0x27,1}}, {{0x278c9,2},{0x27983,2}}, {{0x2539d,6},{0xae0,1}}, + {{0xc1c,2},{0x25c0,5}}, {{0x2b,2},{0xb9d,3}}, {{0x13f54,6},{0x5aae,4}}, {{0x6137,5},{0x4076,4}}, + {{0x7972,6},{0x3728,6}}, {{0x1f,1},{0xaf1,2}}, {{0xbd8,2},{0xcab,3}}, {{0x26f1,4},{0xb52,5}}, + {{0x173e,3},{0x12fe,2}}, {{0x28,2},{0xc62,3}}, {{0x14fc,8},{0x1536,6}}, {{0x1a0d,5},{0xb855,5}}, + {{0x43e3,1},{0x10ec,1}}, {{0xde9,1},{0x6dd7,3}}, {{0x3ed6,5},{0xae7,1}}, {{0x3f62,5},{0x1dac,3}}, + {{0xcfd,7},{0x2b3e,4}}, {{0xcb5,3},{0x15a1,3}}, {{0xc55,2},{0xb55,2}}, {{0x251ea,2},{0x27d20,2}}, + {{0xe9f,3},{0xb2f,1}}, {{0x11ba8,4},{0x1f,1}}, {{0x278c9,2},{0x2797d,2}}, {{0xbd4,2},{0xc67,2}}, + {{0x27c3,4},{0xbd3,3}}, {{0x1d82,7},{0x1d89,4}}, {{0x4288,2},{0x26c6,1}}, {{0xa2d6,8},{0x5aae,4}}, + {{0x14dc,7},{0xb52,6}}, {{0x27,1},{0x2b,3}}, {{0x10ef,1},{0xe6d,2}}, {{0xca7,3},{0xb63,2}}, + {{0x1e,1},{0xd7c1,5}}, {{0x20bb,3},{0xae6,2}}, {{0x10c8,3},{0x298a,2}}, {{0x10fb,3},{0x4f65,3}}, + {{0xb2c5,6},{0x2b,3}}, {{0xa4b,4},{0x2521e,4}}, {{0x218d,8},{0x5fc7,4}}, {{0x10f7,1},{0x1421,3}}, + {{0xd57,2},{0x1694,2}}, {{0x20bb,3},{0x4653,5}}, {{0x4fbd,4},{0x2d6a,7}}, {{0x6735,4},{0xfde,2}}, + {{0x16cc,4},{0xbd4,2}}, {{0xffc,7},{0xd0b,3}}, {{0xded,5},{0x4569,5}}, {{0xd14,4},{0x10dc,2}}, + {{0xcb8,3},{0x2b,3}}, {{0x244b9,2},{0xfb8b,2}}, {{0xb2f,1},{0x6dd7,3}}, {{0x9ef2,11},{0xae7,1}}, + {{0x41da,3},{0x2b2e,6}}, {{0xae5,1},{0x539c,3}}, {{0x2b,2},{0xdc1,5}}, {{0xae5,1},{0xd6d,4}}, + {{0x2864c,1},{0x2445f,1}}, {{0x1e,2},{0x1a,2}}, {{0xbaa2,4},{0xe7b,3}}, {{0x7c2,3},{0x1b4e3,1}}, + {{0x804,2},{0x159cb,2}}, {{0x134c,5},{0x250a,7}}, {{0x7972,6},{0x3bf9,5}}, {{0xae2,1},{0x12d7,5}}, + {{0xae0,1},{0x10ec,1}}, {{0x30,64},{0x30,20}}, {{0x1cec,10},{0xd7f,3}}, {{0x1095,3},{0x1675,2}}, + {{0x12706,6},{0x16f8,3}}, {{0x4220,5},{0x1098,3}}, {{0x972a,5},{0x222c,6}}, {{0xd8e,4},{0x2b,3}}, + {{0x670e,5},{0x6fe1,4}}, {{0x1f,1},{0x108b,3}}, {{0xf21,3},{0x1a4ff,3}}, {{0x14b7,3},{0x3a39,3}}, + {{0x348e,7},{0xca7,3}}, {{0xf3eb,5},{0xb55,2}}, {{0xae6,2},{0x1d,1}}, {{0xcc37,7},{0x89b9,4}}, + {{0xc39,2},{0x58d0,4}}, {{0xbde,3},{0xd0b,3}}, {{0xfe38,4},{0xb2e,2}}, {{0x5df7,7},{0xf6a,5}}, + {{0x1c85,3},{0xb67,2}}, {{0xfef8,6},{0x410e,2}}, {{0x15d3e,6},{0x2b,3}}, {{0xb31,1},{0x251fe,2}}, + {{0x142c,4},{0x5396,3}}, {{0x28832,6},{0xaf1,1}}, {{0x1b6b3,2},{0x27897,1}}, {{0x2ab6,5},{0x27,1}}, + {{0xbcb,3},{0x1a10,2}}, {{0xaf1,1},{0x40b6,3}}, {{0xca7,3},{0x27,1}}, {{0xaf3,4},{0x6f66,2}}, + {{0x22e6,7},{0x1a05,8}}, {{0xd7f,3},{0xae5,1}}, {{0xaf1,1},{0x1b5a,5}}, {{0x12ec,8},{0x2b,3}}, + {{0x1f,1},{0x11f2,3}}, {{0xf96,9},{0xc58,3}}, {{0x17bc,4},{0x11c3,7}}, {{0xb4b,2},{0xc63,3}}, + {{0xa974,4},{0xe4a,4}}, {{0x41da,3},{0xb52,6}}, {{0xc17,4},{0x2b,2}}, {{0x10eba,7},{0x10dc,2}}, + {{0xcde,3},{0x92d0,4}}, {{0x18898,5},{0xf01,4}}, {{0x9b1a,5},{0x15c7,5}}, {{0x201f9,5},{0x4413,2}}, + {{0x1b8e7,4},{0x1b237,4}}, {{0xaf1,1},{0x11ef,2}}, {{0x323c,2},{0xb65,2}}, {{0x178c,3},{0x4bbf,5}}, + {{0x423c,5},{0x14b6,2}}, {{0xbe0,2},{0x17de,2}}, {{0xd5c,1},{0x12fe,1}}, {{0x16c1,3},{0xaf2,1}}, + {{0x2932e,4},{0xbe4,1}}, {{0xfef0,6},{0x70b4,2}}, {{0xe6d,2},{0xaf2,1}}, {{0x278d6,1},{0x924,2}}, + {{0xaec,2},{0x1a,2}}, {{0xc8dd,6},{0xb7a,5}}, {{0x117c,2},{0x117c,2}}, {{0x6c97,6},{0xf67c,5}}, + {{0x10f2,1},{0x1089,2}}, {{0xeb2,1},{0xeb2,1}}, {{0x4ec6,8},{0x5396,3}}, {{0x2793d,4},{0x279d1,2}}, + {{0x20bb,3},{0xdd3,3}}, {{0x20d9,4},{0x8907,4}}, {{0xd41,4},{0x520e,5}}, {{0xb12e,3},{0x1a,1}}, + {{0x8e12,6},{0x18d8,3}}, {{0xaca2,3},{0x9169,3}}, {{0xf865,7},{0xf86c,4}}, {{0x1a,2},{0xbb4,4}}, + {{0x1a0d,6},{0xb85,2}}, {{0x1a9d,3},{0xb2c,4}}, {{0xb7d,1},{0xdf0,2}}, {{0xc89,2},{0xd5e,4}}, + {{0x6cbe,4},{0xb55,2}}, {{0x2bb3e,3},{0x1b4e3,1}}, {{0x948,1},{0x1ed53,1}}, {{0x18514,6},{0xc63,3}}, + {{0x2d,1},{0xc1c,2}}, {{0x326c,4},{0x1907,3}}, {{0xeada,5},{0x2575,5}}, {{0x422e,3},{0x2349,4}}, + {{0xdde0,5},{0xb63,2}}, {{0xae7,1},{0x1361,2}}, {{0x804,2},{0x6f96,2}}, {{0x323c,2},{0x28,1}}, + {{0x4fbd,4},{0x9133,3}}, {{0x7140,3},{0x28be,3}}, {{0x12fd0,7},{0x1257,3}}, {{0x283e,2},{0x43e3,1}}, + {{0xb28e,5},{0x68c4,4}}, {{0x441c,3},{0xb63,3}}, {{0x278ed,2},{0x278af,1}}, {{0x1ed69,3},{0x1595a,2}}, + {{0xae0,1},{0xba7,3}}, {{0xaca2,3},{0xc2e,2}}, {{0x50e8,7},{0xcd5,2}}, {{0x1b6cb,2},{0x28634,1}}, + {{0x10ea,3},{0x1878,1}}, {{0xb71,2},{0xc1c,2}}, {{0x271e,3},{0x35fd,3}}, {{0x177c,3},{0xbe0,1}}, + {{0xb590,5},{0xdfb,3}}, {{0x17be,2},{0xae7,1}}, {{0xbcb,3},{0x21afd,4}}, {{0x430,10},{0x432,3}}, + {{0xd0c,2},{0x28,1}}, {{0x3fb6,5},{0xa60b,4}}, {{0xae9,2},{0x28,1}}, {{0x1d72f,7},{0xae7,1}}, + {{0x16dc,5},{0x1a,3}}, {{0x159c,8},{0x43bd,4}}, {{0x27b6,1},{0xbe7,1}}, {{0xcd9,3},{0x32f3,4}}, + {{0x922,3},{0x116c,1}}, {{0xcbd,3},{0x1d,1}}, {{0xb97,3},{0x2168,4}}, {{0xa7d,4},{0x70ce,2}}, + {{0x27871,4},{0xbe4,1}}, {{0x263d,5},{0x298a,2}}, {{0x46f4,6},{0x46fa,6}}, {{0x16a4,5},{0xc8e,3}}, + {{0xb493,5},{0x81e6,4}}, {{0xbb5,1},{0x46f8,3}}, {{0x6ac3,3},{0xbb2a,4}}, {{0x2c76,4},{0x1862,3}}, + {{0x26c6,1},{0x28da,1}}, {{0x20bb,3},{0xf14,2}}, {{0xbe4,1},{0xaf2,1}}, {{0x6c08,4},{0x11ef,2}}, + {{0x1b13e,3},{0x27abb,2}}, {{0x1a76,4},{0x256d,3}}, {{0x53cd,5},{0xb71,2}}, {{0x1cee,4},{0xaf2,1}}, + {{0x1773,3},{0x702a,4}}, {{0x6d8e,3},{0x7eb8,5}}, {{0x28,1},{0xc51,2}}, {{0x2793d,4},{0x279cb,2}}, + {{0xaea,1},{0x23d9,3}}, {{0xaf1,1},{0x1058,4}}, {{0x21,1},{0xae7,1}}, {{0x278af,1},{0x278af,2}}, + {{0x924,2},{0x27aeb,2}}, {{0x8956,7},{0xc22,3}}, {{0x5ea0,4},{0x4df1,5}}, {{0xbb5,1},{0x1c,1}}, + {{0x271e,3},{0x1b4b,3}}, {{0x189ca,6},{0xb8f,2}}, {{0x219c,4},{0x1961,7}}, {{0x278d5,2},{0x116e,1}}, + {{0x716e,5},{0xae5,1}}, {{0x1c47,6},{0xb8a,2}}, {{0x18ca,3},{0x1489,3}}, {{0x257c,2},{0xc67,2}}, + {{0x1972,2},{0xcb8,2}}, {{0xd0f,11},{0xd1a,7}}, {{0x15612,5},{0x3f48,5}}, {{0x6ac3,3},{0x4ab0,3}}, + {{0xcf3,3},{0x2f3c,3}}, {{0x2445e,2},{0x251cb,1}}, {{0xddc,4},{0xff7,5}}, {{0xb64,2},{0xd1b,1}}, + {{0xbeb,1},{0xbe7,1}}, {{0x3234,6},{0x323a,8}}, {{0x7162,6},{0x1278,4}}, {{0x2d,1},{0x12a0b,7}}, + {{0x177c,3},{0x1b61a,2}}, {{0x70d8,4},{0x70d4,4}}, {{0x3704,6},{0xb996,4}}, {{0x1a,1},{0x37ae,4}}, + {{0x177c,3},{0x760b,3}}, {{0x1084,3},{0x43a2,3}}, {{0xc37,3},{0xbb15,3}}, {{0xb44,3},{0xdf0,2}}, + {{0x271e,3},{0xaa95,3}}, {{0x10ec,1},{0x1961,3}}, {{0x10fb,3},{0xc3a,3}}, {{0xbe4,1},{0x134f,3}}, + {{0x17ec,5},{0xae7,2}}, {{0x667f,10},{0x10dc,2}}, {{0x1b57,8},{0x1498,4}}, {{0x1ba05,6},{0x1a,2}}, + {{0xbd8,2},{0x12ff,2}}, {{0x1084,3},{0x1c4d9,4}}, {{0xadd,4},{0x34a0,6}}, {{0x48ae,9},{0xb54,3}}, + {{0x6ac5,1},{0x15c2a,6}}, {{0x6d81,3},{0xd1b,1}}, {{0x1ae4e,2},{0x15a83,3}}, {{0x278c9,2},{0x2798f,2}}, + {{0xae9,2},{0xb4b,2}}, {{0x3996,5},{0x6107,3}}, {{0xf96,4},{0x24bd,4}}, {{0x423c,3},{0x1254,3}}, + {{0x12ee,6},{0xbb4,4}}, {{0xcd9,5},{0x5ff7,5}}, {{0xfee4,8},{0xfeec,4}}, {{0xba5,4},{0x2a91,4}}, + {{0xbb5,1},{0x298a,2}}, {{0x17bc,3},{0xcda8,3}}, {{0x3654,6},{0x2b,2}}, {{0x4db5,6},{0x4dbb,5}}, + {{0x178c,3},{0x323c,2}}, {{0xae5,1},{0xd91,2}}, {{0x25205,2},{0x432,1}}, {{0x441c,3},{0xf10,3}}, + {{0x28e8,3},{0xe8d,3}}, {{0xd041,5},{0xd046,6}}, {{0x2b,2},{0x1a,2}}, {{0xcfd,6},{0xc48a,5}}, + {{0x19c63,5},{0xeb2,1}}, {{0x271e,3},{0xae2,1}}, {{0x4a68,5},{0x2318,4}}, {{0x5184,7},{0xb52,5}}, + {{0x8a76,7},{0x11b6,5}}, {{0xb48,2},{0x1a,1}}, {{0x29da,3},{0xaf2,1}}, {{0x2d,1},{0x10c3,5}}, + {{0x1878,1},{0xc8a,2}}, {{0x1084,3},{0x4a30,4}}, {{0x1084,3},{0x2dcb,4}}, {{0x23e74,5},{0xc4e,2}}, + {{0x151f8,4},{0x2bfd,2}}, {{0x2674b,4},{0xbe0,1}}, {{0xb2f,1},{0x43a2,3}}, {{0xb44,3},{0x8638,6}}, + {{0x5d34,5},{0x43bd,4}}, {{0xbe4,1},{0xbd1,2}}, {{0xe6d,2},{0x1257,3}}, {{0xecf,4},{0x4459,3}}, + {{0x30,64},{0x30,22}}, {{0x10ef,1},{0xbe0,1}}, {{0x14dc,9},{0x1498,4}}, {{0xa762,8},{0x1c25,4}}, + {{0x10ca8,7},{0xb78,2}}, {{0x1d55,4},{0x4dd4,7}}, {{0x30,2},{0x432,48}}, {{0x5483,4},{0x1d,1}}, + {{0x271e,3},{0xb70,2}}, {{0xbd6,2},{0x139f,3}}, {{0x25212,2},{0x15798,2}}, {{0xc25,5},{0xdf0,2}}, + {{0xfef4,4},{0x70a0,4}}, {{0xaeb,2},{0xdf0,2}}, {{0x17a3e,5},{0xae7,1}}, {{0x3926,7},{0x392d,3}}, + {{0xf85,4},{0xc89,3}}, {{0x12ac,5},{0xdef,3}}, {{0x2796,3},{0xd5c,1}}, {{0x2313,8},{0x3347,5}}, + {{0xb7d,1},{0xcab,3}}, {{0xd54,1},{0x1aaed,1}}, {{0xab9a,3},{0x21dff,4}}, {{0xb4b,2},{0x10dc,2}}, + {{0x244b3,2},{0x157a4,2}}, {{0x5324,5},{0x1577,5}}, {{0x6ac5,1},{0xb173,4}}, {{0x4bb1,4},{0x1152,3}}, + {{0x3af4,12},{0xd0d,2}}, {{0xc77,2},{0x101c,2}}, {{0xeca,5},{0xb52,5}}, {{0x278b5,2},{0x278b5,2}}, + {{0x2106,5},{0x98ee,4}}, {{0x20bb,3},{0xbf20,5}}, {{0x75b2,6},{0xc9f,4}}, {{0x8a49,2},{0xb8a,2}}, + {{0xddc,4},{0xff90,4}}, {{0x1c,1},{0xb85,2}}, {{0x4e85,5},{0xcc0,3}}, {{0x2793d,4},{0x279c5,2}}, + {{0x8716,4},{0xccc,5}}, {{0x4f55,7},{0xdf9,5}}, {{0x26f1,4},{0x16f8,3}}, {{0x6d8e,3},{0xd94a,7}}, + {{0x257a,4},{0x2af8,4}}, {{0x2b,2},{0x24fb,6}}, {{0x21bb0,5},{0xb63,2}}, {{0x6b13,3},{0x3b26,5}}, + {{0x174c,11},{0x4031,3}}, {{0x4bee,8},{0xb52,5}}, {{0xadce,5},{0xd256,4}}, {{0xcb5,3},{0xcfcf,4}}, + {{0x8a57,4},{0xd7f,3}}, {{0xd8ce,5},{0xff7,5}}, {{0x1c92,6},{0x4797,6}}, {{0x26f7a,2},{0x10f3,1}}, + {{0xd76,5},{0x359b,3}}, {{0xf52,4},{0x64d7,7}}, {{0x4362,4},{0x2d,1}}, {{0x181c,3},{0x10f6,1}}, + {{0xbe4,1},{0xbe7,1}}, {{0x2446c,1},{0x24a30,2}}, {{0xc67,2},{0xb2e,2}}, {{0x27a7,3},{0xc8e,3}}, + {{0x27,1},{0xb2c,2}}, {{0x2539d,6},{0x2d,1}}, {{0x709a,4},{0x1b709,2}}, {{0x3846,4},{0xd57,2}}, + {{0x2b,2},{0xeb3,3}}, {{0xe6d,2},{0xc67,2}}, {{0x16fc,4},{0xee8,3}}, {{0x265b,4},{0x3511,4}}, + {{0xbc18,5},{0x40b8,2}}, {{0xb68,3},{0xfe5,2}}, {{0x1a67,7},{0x109b,4}}, {{0xcde,3},{0x2eb9,4}}, + {{0x1617f,6},{0xc6a9,3}}, {{0xc8d2,6},{0x10dc,2}}, {{0x17b70,6},{0x2b,3}}, {{0x178c,3},{0x7047,5}}, + {{0x3e34,5},{0xf26,3}}, {{0x19b8b,6},{0x19b91,3}}, {{0x10f0,1},{0x21e8b,3}}, {{0xaea,1},{0x1701,3}}, + {{0x219c,7},{0x21a3,4}}, {{0x29788,4},{0x10f2,1}}, {{0xde9,1},{0x4460,3}}, {{0xc25,4},{0x1140,3}}, + {{0x122c,4},{0xc77,2}}, {{0x2106,6},{0x132f,3}}, {{0x1257,3},{0xb65,2}}, {{0xbe0,1},{0x10fa,1}}, + {{0x1ab2,4},{0xd1a,2}}, {{0xddc,4},{0x6008,4}}, {{0x11914,6},{0xc57,4}}, {{0xc1a,9},{0xb2e,2}}, + {{0x924,3},{0x116d,1}}, {{0x1c65,6},{0xc2e,9}}, {{0xebf,3},{0xc30,2}}, {{0x1b6cb,1},{0x2445f,1}}, + {{0xbeb,2},{0xbd1,2}}, {{0x180c,4},{0x4f0e,6}}, {{0x23136,4},{0xd0b,3}}, {{0xb64,3},{0xbe85,5}}, + {{0x1aeda,5},{0x65ff,4}}, {{0x264c,4},{0x1a,3}}, {{0x27b4,3},{0x21db,7}}, {{0x70dc,4},{0x1a328,2}}, + {{0x2c76,4},{0x8aae,4}}, {{0xb52,2},{0x1a,2}}, {{0xb65,2},{0x5a94,3}}, {{0x27b6,1},{0xae9,2}}, + {{0x2700,5},{0x1ae4,7}}, {{0x86da,5},{0x1444,7}}, {{0x20,2},{0xce1,4}}, {{0x2c76,4},{0xc0c3,4}}, + {{0xc4d,2},{0xe4d,6}}, {{0xcfd,5},{0xcf3,3}}, {{0xb7f,3},{0xbbf,2}}, {{0xda65,8},{0x1704,3}}, + {{0x10f6,1},{0xd0c,2}}, {{0x1aee,6},{0xb63,3}}, {{0xedd,3},{0xaf1,2}}, {{0xae7,1},{0x10c01,5}}, + {{0x101e,7},{0x1468,4}}, {{0x278d5,2},{0x924,1}}, {{0x2920,4},{0x7abd,5}}, {{0x18aa2,6},{0xb8f,3}}, + {{0xeee,5},{0x8c45,4}}, {{0xbd62,6},{0xb65,2}}, {{0xbe0,1},{0x10ed,2}}, {{0x20d9,4},{0x2048,4}}, + {{0xde2,3},{0x1ed0,4}}, {{0x278e1,2},{0x116e,1}}, {{0x10dc,2},{0x28,1}}, {{0x474f,6},{0x1555,7}}, + {{0x70b0,4},{0x70a2,2}}, {{0xfa14,4},{0x1197,4}}, {{0x69f7,3},{0xb2c,2}}, {{0xd645,7},{0xae7,1}}, + {{0x10f2,1},{0x28,1}}, {{0xcd9,5},{0xb9c,2}}, {{0x8902,5},{0xc67,2}}, {{0xb70,2},{0x12be,3}}, + {{0x36be,5},{0x1c25,4}}, {{0x1c9e5,5},{0x103a,3}}, {{0x318c,5},{0x2b,3}}, {{0x27,1},{0xb9a,6}}, + {{0x67a5,5},{0xae7,1}}, {{0xb44,3},{0x4f65,3}}, {{0x8986,7},{0xc63,3}}, {{0x7ace,8},{0xc7b,4}}, + {{0x4124,5},{0x11b8,4}}, {{0x2c362,2},{0x6fac,2}}, {{0x5dd0,6},{0x58d0,4}}, {{0x2c76,4},{0xb881,6}}, + {{0xb63,3},{0x1b,1}}, {{0x27ce8,3},{0x27cea,1}}, {{0xb64,2},{0xb7d,1}}, {{0x119c,7},{0xc4e,2}}, + {{0xe867,7},{0x2b,3}}, {{0xde9,1},{0x1a,2}}, {{0x20,2},{0xb8b,2}}, {{0x2b,2},{0x18d8,4}}, + {{0xc4d,2},{0x2b,2}}, {{0x1084,3},{0xb8a,2}}, {{0xc4c6,6},{0x5cd6,3}}, {{0xbc44,8},{0xb54,3}}, + {{0x278c9,2},{0x27989,2}}, {{0x10ec,1},{0xf8cf,2}}, {{0x1222e,6},{0x48a4,3}}, {{0x19ace,6},{0x2b,2}}, + {{0xf14,2},{0xb48,2}}, {{0x27b4,3},{0x1704,3}}, {{0x252c1,6},{0x70ac,4}}, {{0xa246,4},{0x173e,3}}, + {{0x969,2},{0x6f90,2}}, {{0x100d,5},{0x27,1}}, {{0x43e3,2},{0xb85,2}}, {{0x1089,2},{0xb63,2}}, + {{0x6d81,3},{0xadf,2}}, {{0x4b45,9},{0x10c4,4}}, {{0xbde,3},{0xb52,2}}, {{0x2788f,3},{0x27892,3}}, + {{0x1084,3},{0x202c,5}}, {{0xae0,1},{0x139e,3}}, {{0x26207,5},{0xae7,1}}, {{0x17dc,4},{0xb9d,3}}, + {{0x7a26,8},{0x25da,3}}, {{0x3df6,5},{0xc3d0,4}}, {{0xf6e4,6},{0xdf0,2}}, {{0x178c,3},{0xbe7,1}}, + {{0x36a2,7},{0x36a9,7}}, {{0x4b2b,9},{0x2b3e,4}}, {{0x1cc55,5},{0xc8a3,3}}, {{0x92b6,5},{0x1ed0,4}}, + {{0x278c9,2},{0x27995,2}}, {{0x15630,5},{0xae7,1}}, {{0x1408,3},{0x1d,1}}, {{0xa14a,5},{0x132f,3}}, + {{0x43e3,1},{0xae7,1}}, {{0x1a814,2},{0x10f2,1}}, {{0x181c,3},{0xae7,2}}, {{0x6f62,6},{0x15794,6}}, + {{0xaec,2},{0xb55,2}}, {{0x12fc,12},{0x1308,3}}, {{0x4db5,6},{0x115f0,4}}, {{0x271e,3},{0xab9c,1}}, + {{0x264c,4},{0xa54a,7}}, {{0x4284,2},{0xab9c,1}}, {{0xd5c,1},{0x21bd,5}}, {{0x41da,3},{0x10ca,1}}, + {{0x20bb,3},{0x1536,6}}, {{0x2e44,5},{0x296f,5}}, {{0x1ae2f,5},{0x10ec,1}}, {{0xb6c,4},{0xaea,1}}, + {{0x14b3,3},{0x14b6,2}}, {{0xbb5,1},{0x3bc2,4}}, {{0x3a39,3},{0xd17,3}}, {{0x16fc,5},{0x253a,4}}, + {{0xbd6,2},{0x2b,2}}, {{0x114f0,6},{0x12ff,2}}, {{0xd99f,6},{0x19bd,5}}, {{0x278f3,2},{0x116c,1}}, + {{0xbed,2},{0x5a52,4}}, {{0x2920,4},{0x2c7d,6}}, {{0x1b1a7,8},{0x70a8,4}}, {{0x278ed,2},{0x27897,1}}, + {{0x16ae,3},{0x1d,1}}, {{0xc25,3},{0x84dd,5}}, {{0x57c3,8},{0xc7b,4}}, {{0x1a,2},{0xaea,2}}, + {{0x7426,8},{0x2b,3}}, {{0x12fc,5},{0x12ff,2}}, {{0x10ec,1},{0x1d,1}}, {{0x881e,7},{0xc8e,3}}, + {{0x10ec,1},{0x10f1,2}}, {{0xcab,3},{0xdf9,5}}, {{0x225f,9},{0x6008,4}}, {{0x1a,1},{0x94a5,4}}, + {{0x278af,2},{0x116d,1}}, {{0x6d8e,3},{0xe9b,3}}, {{0xbe0,1},{0x19c9,3}}, {{0xaf1,1},{0x2d,1}}, + {{0x8aa6,6},{0x2b,3}}, {{0x3df6,5},{0x14d4,4}}, {{0x19a74,5},{0x19a82,4}}, {{0xd5c,1},{0xae7,1}}, + {{0xc37,4},{0x4a30,4}}, {{0xf24c,4},{0x1f10,4}}, {{0xeec,7},{0x1ed3,7}}, {{0x11ef,3},{0x10dc,2}}, + {{0x10fb,3},{0x28da,1}}, {{0x3f9a,4},{0x2b,3}}, {{0x1b25b,4},{0x1b25b,4}}, {{0x2474d,2},{0x70ce,2}}, + {{0x12fe,2},{0x103b,5}}, {{0xb6c,3},{0xcc0,3}}, {{0x1a30,3},{0xeb3,3}}, {{0x1040,8},{0xf05,7}}, + {{0x271e,3},{0x1150,2}}, {{0xb78,2},{0x1c,1}}, {{0xaec,2},{0x3789,3}}, {{0x422e,3},{0xfb1,2}}, + {{0x26e2,6},{0xce2,3}}, {{0x41da,3},{0xb74,2}}, {{0x27b6,1},{0xb7c,2}}, {{0x142e,1},{0xb63,2}}, + {{0xd8e,3},{0x18ca,3}}, {{0x10116,2},{0xae7,1}}, {{0x4fbd,4},{0xa623,4}}, {{0x271e,3},{0xbe0,1}}, + {{0x3643,5},{0xc7b,4}}, {{0x25789,2},{0xab1,2}}, {{0x1a266,4},{0x1f,1}}, {{0xd41,3},{0xb55,3}}, + {{0x1a730,5},{0xcce,3}}, {{0x20e8,4},{0x139f,3}}, {{0x4957,8},{0x11ef,2}}, {{0x264c,4},{0x28d1,3}}, + {{0xb8c,2},{0xd57,2}}, {{0x22740,6},{0xae7,1}}, {{0xb85,2},{0x16d2,2}}, {{0xaefa,4},{0xa24a,3}}, + {{0x46f4,4},{0x202c,3}}, {{0x14cc,4},{0x13e4,3}}, {{0x2445f,1},{0x27e43,3}}, {{0xc1c,2},{0x2b,1}}, + {{0xdfa,3},{0xe7b,3}}, {{0xba5,4},{0x1621,4}}, {{0xcc7,3},{0xb2c0,4}}, {{0x12fc,4},{0x115f0,4}}, + {{0xc37,3},{0xb7c,2}}, {{0x2b8e,2},{0x1b,1}}, {{0x278ad,4},{0x116e,1}}, {{0xbcf4,6},{0xbcfa,5}}, + {{0x20bb,3},{0x12abf,6}}, {{0xcd9,5},{0xca7,4}}, {{0x28da,1},{0x2a92,5}}, {{0x278ed,2},{0x278dc,1}}, + {{0xceb,3},{0x2bfc,3}}, {{0xbde,3},{0x16c7c,6}}, {{0x20bb,3},{0x2bfc,3}}, {{0xc8f,2},{0x1ce2,3}}, + {{0x17106,6},{0xd0d,2}}, {{0x27d4,4},{0x9cb8,5}}, {{0xae7,1},{0xce2,3}}, {{0x10ec,1},{0x6dd7,3}}, + {{0x13612,5},{0x1b,1}}, {{0xce2,3},{0xb2c,2}}, {{0x25c5,5},{0xdf0,2}}, {{0xb96e,6},{0x1a,1}}, + {{0x4d33,9},{0x2b,3}}, {{0x1b885,4},{0x70d0,4}}, {{0xb47,2},{0xc67,3}}, {{0xa26a,6},{0x4882,3}}, + {{0x16fc,5},{0xae6,2}}, {{0x734,4},{0x1ed58,1}}, {{0xbaa2,4},{0xc55,2}}, {{0x11ef,2},{0xb7c,3}}, + {{0xbcb,3},{0x58f1,3}}, {{0x28,3},{0xaf2,1}}, {{0x24a2d,2},{0x7c4,1}}, {{0x6f8c,6},{0x6f74,6}}, + {{0x6631,7},{0x1a,2}}, {{0xddc,10},{0xde6,7}}, {{0x146c,6},{0x1577,5}}, {{0x287e7,2},{0x2456b,2}}, + {{0x1e54,6},{0x583f,3}}, {{0x1bfc,9},{0x2b,3}}, {{0x16dc,4},{0xbd6,4}}, {{0xddc,5},{0xb52,2}}, + {{0x423e,1},{0xbeb,1}}, {{0xeb95,6},{0xae7,1}}, {{0x10ea,3},{0xbe0,1}}, {{0x7c4,32},{0x7c4,32}}, + {{0xa6c6,5},{0xdf9,5}}, {{0x4351,2},{0x10fa,1}}, {{0x13cac,6},{0x4d08,4}}, {{0x20bb,3},{0xae2,1}}, + {{0xae7,1},{0x4460,3}}, {{0x46f4,4},{0xd91,3}}, {{0x2868,4},{0x1b0cd,5}}, {{0x6735,4},{0x1e,1}}, + {{0x3162,5},{0xb7c,2}}, {{0x30ba,5},{0xc20,5}}, {{0x30,2},{0x8c4,4}}, {{0xbeb,2},{0x174e,3}}, + {{0x122c,4},{0x4453,4}}, {{0x278ed,2},{0x1b6ab,1}}, {{0x28da,1},{0xbd6,2}}, {{0x6477,9},{0xd48,2}}, + {{0xab9a,3},{0x7ac9,4}}, {{0x3baa,9},{0xc9f,4}}, {{0x6f74,4},{0x159cb,2}}, {{0x144c,6},{0x1ea5,5}}, + {{0x26b5,4},{0xc30,7}}, {{0xb6c,3},{0x187c,3}}, {{0xc13,4},{0x453e,9}}, {{0x151f,3},{0x10dc,2}}, + {{0xc1c,2},{0x11b8,4}}, {{0xeec,5},{0xc89,3}}, {{0x1a016,4},{0xb78,2}}, {{0x1084,3},{0x12bc4,3}}, + {{0x77da,9},{0xb2c,2}}, {{0xa7d1,2},{0xbeb,1}}, {{0x2d,1},{0x25c2,3}}, {{0x10f7,1},{0x1d,1}}, + {{0xaf62,2},{0xaeda,2}}, {{0xfef0,6},{0x70da,2}}, {{0xc65,5},{0xcce,3}}, {{0x27b4,3},{0xb87,3}}, + {{0x10f3,1},{0x10f6,1}}, {{0x1672,3},{0x1675,2}}, {{0x10596,5},{0x1862,3}}, {{0x1bfc,6},{0xc48a,5}}, + {{0x109c,3},{0x1a72,4}}, {{0x1b,1},{0xfe5,2}}, {{0x1cec,10},{0xff7,5}}, {{0x10ea,3},{0x10ef,1}}, + {{0x5734,7},{0xe70,4}}, {{0x135f4,7},{0xc6a9,3}}, {{0x4d5a,8},{0x3879,4}}, {{0x780,1},{0x159c9,6}}, + {{0x9e68,3},{0xb54,3}}, {{0x1719,3},{0x1b08,3}}, {{0xb44,3},{0x28,1}}, {{0x7546,7},{0x2b,2}}, + {{0xff14,8},{0xff00,4}}, {{0x10f0,1},{0xe78,3}}, {{0x2585,3},{0xb7d,2}}, {{0x101e8,5},{0x84f6,4}}, + {{0x6103,5},{0xb7c,3}}, {{0xc1c,2},{0x1c25,4}}, {{0x423c,3},{0xe6d,2}}, {{0x2ff6,8},{0xb2c,2}}, + {{0xa8ca,8},{0x1058,4}}, {{0xae0,1},{0x2a24,6}}, {{0x180c,4},{0x4882,3}}, {{0xe6d,2},{0xc57,3}}, + {{0xba5,4},{0x1042,4}}, {{0x2796,3},{0xbc6,2}}, {{0x13188,5},{0x1b0a,2}}, {{0x1ab2,4},{0x2237,3}}, + {{0xbd2,3},{0x1260,4}}, {{0xb8f,2},{0x140a,2}}, {{0xdba,4},{0x114d,2}}, {{0xb2f,1},{0x5277,2}}, + {{0xadf,2},{0xb55,2}}, {{0x147c,5},{0x2b3e,4}}, {{0x46f4,4},{0xbc6,2}}, {{0xbe4,1},{0x10f2,1}}, + {{0x28,2},{0xcb8,2}}, {{0xbde,3},{0x10ec,1}}, {{0x85de,7},{0x1357,5}}, {{0xeb74,6},{0xa049,4}}, + {{0xb64,2},{0x32d5,4}}, {{0x318c,7},{0x1498,3}}, {{0xb6c,3},{0x1b22,4}}, {{0x9b1a,5},{0xb7d,1}}, + {{0xbde,3},{0xaf1,2}}, {{0x18496,5},{0x4a55,4}}, {{0xbe0,1},{0xb47,2}}, {{0x181c,3},{0xae5,1}}, + {{0xacba,5},{0xb78,2}}, {{0x164c,7},{0xb52,2}}, {{0x415c,5},{0x43de,5}}, {{0x10f7,1},{0x155db,3}}, + {{0xfb1,2},{0xc7b,4}}, {{0xbde,3},{0x28,2}}, {{0x8716,4},{0x1016,4}}, {{0xe44,3},{0xf59,3}}, + {{0x2d,1},{0xce8,3}}, {{0xb8f,2},{0x1d,1}}, {{0x373c,8},{0xb52,5}}, {{0xaeb,2},{0x4326,4}}, + {{0xb7d,1},{0xb52,5}}, {{0x177c,3},{0xaf1,2}}, {{0xbde,3},{0x102f9,3}}, {{0xa9f6,6},{0x1675,2}}, + {{0xb6c,3},{0xc34,2}}, {{0x948,2},{0x948,1}}, {{0x94a2,7},{0xb141,3}}, {{0xcc0,3},{0xee1,3}}, + {{0x283d,3},{0x20206,3}}, {{0xab9a,3},{0x28,1}}, {{0x244e9,4},{0x244ed,2}}, {{0x122c,4},{0x14d5,3}}, + {{0x430,14},{0x432,1}}, {{0x271e,3},{0x66ae,5}}, {{0x10c8,3},{0xbe7,1}}, {{0xad62,4},{0x2988,4}}, + {{0xceb,3},{0x1257,3}}, {{0x4957,8},{0x2b,1}}, {{0xcd5,2},{0xb63,3}}, {{0x10dc,2},{0xd0d,2}}, + {{0xd343,7},{0xb9d,3}}, {{0x160c,8},{0x31f8,4}}, {{0xc4d,2},{0xae0,1}}, {{0xceb,3},{0x1d5a,3}}, + {{0x5275,4},{0xb78,2}}, {{0xac8a,4},{0x1cef,3}}, {{0xaefc,2},{0x174e,3}}, {{0x13bc,5},{0xd7a,3}}, + {{0x20b19,6},{0x9a9,1}}, {{0xf96,4},{0x19bd,5}}, {{0x1b,1},{0xb63,2}}, {{0x6d81,3},{0xb4b,2}}, + {{0x1095,4},{0xaeb,2}}, {{0x6ac3,3},{0x9216,4}}, {{0xab9a,3},{0x15649,5}}, {{0x27b4,3},{0x187c,3}}, + {{0x1d,1},{0x3610,2}}, {{0xcd9,5},{0x535b,5}}, {{0x1095,3},{0xaef,3}}, {{0x5254,5},{0x2b3e,4}}, + {{0xf3eb,5},{0x2c5f,4}}, {{0x532,10},{0x532,8}}, {{0xcd9,3},{0x1491,4}}, {{0x14bb4,2},{0xd5c,1}}, + {{0x4971,5},{0xe6d,2}}, {{0x4196,3},{0x8493,6}}, {{0xce26,7},{0x3f72,4}}, {{0x6d8e,3},{0x28,1}}, + {{0x422e,3},{0xbc5,3}}, {{0x164c,7},{0x665f,5}}, {{0x3234,4},{0xd7a,3}}, {{0x2324,4},{0x14a6,6}}, + {{0xbb4,2},{0x88ce,4}}, {{0x1b13e,3},{0x27aaf,2}}, {{0x17a59,5},{0xb54,3}}, {{0x1f3b,4},{0xc9e,5}}, + {{0x10f0,1},{0xcb8,2}}, {{0x323c,2},{0xb75,2}}, {{0x20ca,10},{0x2b,3}}, {{0xe6d,2},{0x1f0f,3}}, + {{0xb7d,1},{0x8ba7,6}}, {{0x1529a,3},{0xb85,2}}, {{0x1ae2,2},{0xb2e,2}}, {{0x6ac3,3},{0x41b3,4}}, + {{0x1257,2},{0x13c43,4}}, {{0x1b,1},{0x16f8,3}}, {{0xf52,7},{0x211c,8}}, {{0x34aa,8},{0xc1c,2}}, + {{0xcc0,3},{0xbb4,3}}, {{0xbeb,1},{0xb2e,2}}, {{0x41be,3},{0x1f5bc,5}}, {{0x1aa3,6},{0x2b,3}}, + {{0x278db,2},{0x116e,1}}, {{0x3fb6,5},{0x103a5,5}}, {{0x53da,9},{0x2279,4}}, {{0xcd9,5},{0x2b4b,5}}, + {{0x12c4c,5},{0x31f8,4}}, {{0xc30,3},{0xb8f,3}}, {{0xf579,5},{0xa886,4}}, {{0xae9,2},{0xb2f,1}}, + {{0xbbf,2},{0x2b,2}}, {{0xc25,3},{0xb2c,2}}, {{0x18b05,6},{0xbd0,3}}, {{0x20b1f,6},{0x2445f,1}}, + {{0x27b4,3},{0x10f6,1}}, {{0x14cc,4},{0x21,1}}, {{0x14dc,5},{0x11ef,2}}, {{0x20bb,3},{0xc593,4}}, + {{0x134e,4},{0xb066,2}}, {{0x244f5,2},{0xff22,2}}, {{0x20bb,3},{0xff91,4}}, {{0x1daf,7},{0xec5,5}}, + {{0x3a39,3},{0xb2e,2}}, {{0x151c,6},{0x89bc,6}}, {{0x70dc,6},{0x1f,1}}, {{0x2e52,6},{0xbb1,3}}, + {{0xbb5,1},{0x1b,1}}, {{0x4354,4},{0xa15d,4}}, {{0x15ec,10},{0x3bc2,4}}, {{0xae0,1},{0x43a2,5}}, + {{0x90e2,4},{0x33b3,3}}, {{0x23247,5},{0xf63c,2}}, {{0x2796,3},{0xbeb,1}}, {{0x17660,6},{0xb48,2}}, + {{0x1b4e3,1},{0x9a9,1}}, {{0xbeb,1},{0xce2,3}}, {{0x10ea,3},{0x4ab0,4}}, {{0xd76,5},{0x27,1}}, + {{0x78b2,5},{0x1140,4}}, {{0xa7ce,9},{0xa7d7,3}}, {{0x1d89,2},{0xe78,3}}, {{0x278ed,2},{0x116d,1}}, + {{0x46f4,4},{0x5dbc,3}}, {{0x1b13e,3},{0x27aa9,2}}, {{0x4f55,10},{0x10dc,2}}, {{0x2cdb2,4},{0xff26,2}}, + {{0x2971a,4},{0x43e3,1}}, {{0xa2e2,5},{0x1aff,3}}, {{0xae7,2},{0x971a,4}}, {{0xcd3,2},{0xb85,2}}, + {{0x7c5c,4},{0x2275,4}}, {{0x287e0,2},{0x157b6,2}}, {{0xb6b9,5},{0x27,1}}, {{0x147c,5},{0xc30,2}}, + {{0xbde,3},{0x1a560,2}}, {{0xc37,3},{0xb9d,3}}, {{0xcd9,3},{0x11b8,4}}, {{0xb71,2},{0xbb5,2}}, + {{0x46f4,4},{0xbb5,1}}, {{0xa59a,6},{0x1156,6}}, {{0xd0fc,5},{0xd101,5}}, {{0xae6,2},{0xaea,3}}, + {{0x7c4,16},{0x7c4,8}}, {{0x27b6,1},{0x5277,2}}, {{0x6ac5,1},{0xcc0,3}}, {{0xcb5,3},{0x1fb7,5}}, + {{0x10ea,3},{0xae4,2}}, {{0x1afd,5},{0x2971,3}}, {{0x167c,5},{0x13c43,5}}, {{0x3a3e,7},{0x2b,3}}, + {{0x278ed,2},{0x278d6,1}}, {{0x1cbf,5},{0xc3e,2}}, {{0x43e3,1},{0xcd4,4}}, {{0x804,2},{0x70ce,2}}, + {{0xbde,3},{0x292a5,2}}, {{0xd57,2},{0xb63,2}}, {{0xd14,4},{0x5396,3}}, {{0x5220,8},{0xc8e,3}}, + {{0xee8,3},{0x2dc3,3}}, {{0xf30,5},{0x10503,5}}, {{0xdf4,3},{0x10dc,2}}, {{0xb82,2},{0xd57,2}}, + {{0xaca2,3},{0x10ec,1}}, {{0x10ec,1},{0x1cef,3}}, {{0x28da,1},{0x1a820,3}}, {{0xbaa2,4},{0x5396,3}}, + {{0xcb50,7},{0xae7,1}}, {{0xbd8,2},{0xaf2,1}}, {{0x16772,5},{0xbd4,2}}, {{0x3df6,5},{0x1514,6}}, + {{0xceb,3},{0x1097,4}}, {{0x532,34},{0x30,4}}, {{0x441c,3},{0x15c9f,6}}, {{0x26c4,3},{0xaf1,1}}, + {{0x1099,3},{0xb2c,2}}, {{0x10f2,1},{0x26d04,3}}, {{0x136c,6},{0xb55,2}}, {{0x124c,5},{0x21d2,6}}, + {{0x9423,3},{0x10dc,2}}, {{0x10fb,4},{0x1307,3}}, {{0xa7da,3},{0x2848,2}}, {{0x14bb5,2},{0x28da,1}}, + {{0x225f,9},{0xb8f,2}}, {{0x30d6,7},{0xb54,4}}, {{0x244dd,4},{0x70a2,2}}, {{0xae5,1},{0x7512,4}}, + {{0x30,64},{0x30,24}}, {{0xf52,5},{0xaf1,1}}, {{0x35b4,5},{0x7593,3}}, {{0x136c,6},{0xcd2,5}}, + {{0x28da,1},{0x10ed,2}}, {{0x579c,11},{0xd0d,2}}, {{0x12fc,4},{0x30db,3}}, {{0xfed2,4},{0xfed2,2}}, + {{0x6d81,3},{0xe7b,3}}, {{0xbeb,2},{0xc67,3}}, {{0x177c,3},{0x28,1}}, {{0x2b,1},{0xff7,5}}, + {{0xbe0,1},{0xc25a,4}}, {{0x24b7,6},{0x5259,4}}, {{0x446a,4},{0x7a5e,4}}, {{0x16f3b,4},{0x12086,4}}, + {{0x995e,8},{0x2b,3}}, {{0xd76,7},{0x1260,4}}, {{0x10ea,3},{0xbc5,3}}, {{0x415c,5},{0x27,1}}, + {{0xcd2,6},{0xb2c,4}}, {{0x10ef,1},{0xa45d,4}}, {{0xe64,4},{0xc57,3}}, {{0x209d,4},{0xb52,2}}, + {{0x6cbe,4},{0xdfa,3}}, {{0xf23e,5},{0xf243,6}}, {{0xb9f,2},{0xae5,1}}, {{0xc13,4},{0xb73,2}}, + {{0x8a16,5},{0x1444,7}}, {{0x422e,3},{0x39d3,4}}, {{0x2322,6},{0xb79,2}}, {{0x24461,1},{0x24462,1}}, + {{0xc1c,2},{0x7562,3}}, {{0x17ee,3},{0x1700,4}}, {{0x27c7f,4},{0x278a9,1}}, {{0xf6a4,6},{0xae7,1}}, + {{0x10fb,3},{0xbb4,2}}, {{0x948,1},{0x734,1}}, {{0x3704,6},{0x14a6,6}}, {{0xe0f,11},{0xe1a,6}}, + {{0xceb,3},{0x2b,2}}, {{0x6d8e,3},{0x1826b,5}}, {{0x10fa,1},{0xbe4,1}}, {{0x10dc,2},{0xc1c,2}}, + {{0x5254,5},{0x132f,3}}, {{0xbd1,2},{0xd17,3}}, {{0x2160,5},{0xa4fa,4}}, {{0x27b6,1},{0x10f3,1}}, + {{0x4575,2},{0x1b,1}}, {{0x8d52,7},{0xc1c,2}}, {{0xc37,4},{0xd51,2}}, {{0x6cbe,4},{0x1e,2}}, + {{0x133c,6},{0x2af4,4}}, {{0x779e,8},{0x2be6,4}}, {{0x4b45,9},{0xb9d,3}}, {{0x1bfc,6},{0x46e1,6}}, + {{0x142c,3},{0x1864,2}}, {{0xa7da,3},{0xb8f,2}}, {{0x1b4e3,1},{0x780,1}}, {{0xb60f,4},{0xae7,1}}, + {{0xb64,2},{0x28,1}}, {{0x178c,3},{0x1489,3}}, {{0xae8,2},{0x21,1}}, {{0xc37,3},{0x535b,4}}, + {{0xfcb5,2},{0x1595a,2}}, {{0x90be,5},{0x1055,3}}, {{0x181c,3},{0x292a5,2}}, {{0x4338,8},{0x41ba,4}}, + {{0x10ea,3},{0xc1e,2}}, {{0x68ae,6},{0x3921,5}}, {{0xc17,4},{0xe4a,4}}, {{0xae0,1},{0xfe5,2}}, + {{0x432a,12},{0xb78,2}}, {{0x4fbd,4},{0xbf6d,5}}, {{0x1cbf,5},{0x1960,8}}, {{0xcde,3},{0x802b,3}}, + {{0xcd5,2},{0x2b,3}}, {{0x27c7f,4},{0x278d6,1}}, {{0x43e3,1},{0x2dcb,4}}, {{0x2043,5},{0x11ef,3}}, + {{0xe64,5},{0xaea,1}}, {{0x10ef,1},{0xcd5,2}}, {{0x10fb,3},{0xb79,2}}, {{0x265b,4},{0x104f9,5}}, + {{0xbb5,1},{0x202c,3}}, {{0x1e,1},{0xc63,3}}, {{0x14934,2},{0xbe7,1}}, {{0x2322,12},{0x103a,3}}, + {{0x2793d,4},{0x279dd,2}}, {{0xfc9,10},{0x220f,5}}, {{0x432,3},{0x19,1}}, {{0x278c9,2},{0x2799b,2}}, + {{0x6f86,6},{0x6f8c,6}}, {{0x14292,8},{0x10dc,2}}, {{0xae8,2},{0x1d,1}}, {{0x10f6,1},{0xd17,3}}, + {{0x3eba,8},{0xce8,3}}, {{0x922,3},{0x1b6ab,1}}, {{0x3392,6},{0xb52,5}}, {{0x541b,7},{0x2b,3}}, + {{0xaf50,4},{0x45a9,6}}, {{0x6d81,3},{0x1a10,2}}, {{0x109c,3},{0x1150,2}}, {{0xacae,8},{0xb63,2}}, + {{0x177c,3},{0x10e1,3}}, {{0x2a948,2},{0x2a948,1}}, {{0x3cde,8},{0x1a,1}}, {{0x1ed51,3},{0xb31,1}}, + {{0xcd9,6},{0x628f,6}}, {{0xb52,2},{0xb8f,2}}, {{0x2796,3},{0x3062,4}}, {{0x69f3,7},{0xb52,5}}, + {{0x116d,1},{0x1171,2}}, {{0x5bd3,7},{0xa60f,3}}, {{0xfef8,6},{0x70b4,2}}, {{0xf4dd,5},{0xc829,4}}, + {{0x30,2},{0x1675,2}}, {{0x1a266,4},{0x5fe0,4}}, {{0x1574b,2},{0x1574b,2}}, {{0x700a,7},{0xd4f,5}}, + {{0x27cc5,2},{0xb31,1}}, {{0x10ca,1},{0x2af4,4}}, {{0xf85,4},{0x6dd6,4}}, {{0x27,1},{0xbb5,1}}, + {{0x10c8,3},{0xb55,2}}, {{0x1042,4},{0x2138,5}}, {{0xbe4,1},{0xab9c,1}}, {{0xceb,3},{0x16ee,2}}, + {{0xddc,4},{0xb2a8,4}}, {{0x1e,1},{0xbb5,1}}, {{0x1cce,6},{0x3442,6}}, {{0x20b75,5},{0xb56,2}}, + {{0xe1df,8},{0x10dc,2}}, {{0x1084,4},{0xbbf,2}}, {{0x2446c,1},{0x24a41,2}}, {{0xf2b9,3},{0xb65,2}}, + {{0x108b,3},{0x1489,3}}, {{0x27b4,3},{0xd54,1}}, {{0xc39,2},{0xc67,2}}, {{0x6a34,11},{0xd0d,2}}, + {{0x1dbe,5},{0x1525,7}}, {{0xb6c,5},{0x3113,5}}, {{0xa24a,3},{0xc6a9,3}}, {{0x1925e,6},{0x10dc,2}}, + {{0x1b6db,4},{0x157a4,2}}, {{0xb85,2},{0x22e3,3}}, {{0xaca2,3},{0x10ef,1}}, {{0xadf,2},{0xb8b,2}}, + {{0xb9c,2},{0x28,1}}, {{0x10fb,3},{0x187b,4}}, {{0xb71,2},{0xaea,1}}, {{0x2d12,4},{0x1308,3}}, + {{0x8e72,7},{0xb52,5}}, {{0x143c,10},{0xff7,5}}, {{0x263d,10},{0xc7b,4}}, {{0x7a7a,5},{0xc55,2}}, + {{0xbe4,1},{0x2e55,5}}, {{0xae7,1},{0x10dc,2}}, {{0x1aa12,4},{0x1f2c5,2}}, {{0xcb5,3},{0xc9f2,3}}, + {{0x14dc,7},{0x1f13,4}}, {{0x271e,3},{0x1cd1,5}}, {{0x122c,4},{0x1d,1}}, {{0x6c7d,5},{0x1099,3}}, + {{0x1961,3},{0x12ff,2}}, {{0x423c,3},{0xf55e,3}}, {{0x14bb8,6},{0xd0b,3}}, {{0xae5,1},{0xae6,3}}, + {{0xd1b,1},{0x1f,1}}, {{0x422e,5},{0x1d8a,3}}, {{0x6d8e,3},{0x10f3,1}}, {{0xd692,6},{0x673a,5}}, + {{0x178e,2},{0xca7,3}}, {{0x2d64,6},{0xbf6d,5}}, {{0x30,2},{0x24460,3}}, {{0x24b7,6},{0x4875,5}}, + {{0xc89,2},{0x23ce,4}}, {{0x1259,2},{0xd7f,3}}, {{0x15ec,10},{0xb52,6}}, {{0x70a0,4},{0xfee4,4}}, + {{0x6d81,3},{0xba7,3}}, {{0xd54,1},{0x16af,3}}, {{0xc49,3},{0xaea,1}}, {{0x16a4,4},{0xeb5,4}}, + {{0xb8c,2},{0xcc0,3}}, {{0x1b693,2},{0xd5c,1}}, {{0x1a,1},{0xc67,2}}, {{0x594f,2},{0x331c,5}}, + {{0xbb2,2},{0x2aa0,3}}, {{0xc6d8,5},{0x89f7,5}}, {{0xbe7,1},{0x2b,1}}, {{0x27b4,3},{0x4415,2}}, + {{0x26f1,4},{0xa24a,3}}, {{0x5949,6},{0x1152,3}}, {{0xb139,4},{0xcb8,3}}, {{0x27e1c,2},{0x432,1}}, + {{0xbcb,3},{0x1675,2}}, {{0xd0f,4},{0x2542,10}}, {{0xbde,3},{0x323c,2}}, {{0xa7e6,6},{0x19cc,3}}, + {{0xceb,3},{0xb78,2}}, {{0x2445f,1},{0x27e20,3}}, {{0x1089,2},{0x45dc,7}}, {{0x1e,1},{0x16e2,2}}, + {{0x722e,7},{0x47ad,5}}, {{0x1037,6},{0xae7,1}}, {{0x271e,3},{0x2e55,3}}, {{0xbd6,2},{0xb78,2}}, + {{0xaeb,2},{0x21,1}}, {{0x5102,5},{0x3e22,5}}, {{0x1a1f6,2},{0x152c4,2}}, {{0x5a5a,5},{0xdfb,3}}, + {{0x290c,2},{0x1372,3}}, {{0x21da1,5},{0xb65,2}}, {{0xd41,3},{0x6dd7,3}}, {{0xb82,2},{0xb9c,2}}, + {{0xb6c,3},{0x27,1}}, {{0x2793d,4},{0x279e3,2}}, {{0x10f2,1},{0x30f5,4}}, {{0xb8f,2},{0xc8e,3}}, + {{0x41da,3},{0x2b,1}}, {{0x2878d,4},{0x70a2,2}}, {{0x17fc,5},{0x897c,4}}, {{0x244b9,2},{0x806,2}}, + {{0x17ec,5},{0x11c3,7}}, {{0xfdd,2},{0xc89,3}}, {{0x227d,5},{0x6038,8}}, {{0x2462,4},{0xc828,4}}, + {{0xbcb,3},{0xc67,2}}, {{0xbd1,2},{0xbd6,2}}, {{0xaca2,3},{0xb76,3}}, {{0xbde,3},{0x67a0,5}}, + {{0x7c4,10},{0x7c4,1}}, {{0xb47,2},{0xb78,2}}, {{0x1150,2},{0xc93a,3}}, {{0x43e3,1},{0x1275,4}}, + {{0x159f,5},{0x1c43,4}}, {{0x432,1},{0x1ed58,1}}, {{0x1afd,5},{0xc34,3}}, {{0x1f44,13},{0xb2e,2}}, + {{0xd95d,6},{0x1af8,5}}, {{0x804,2},{0x1dec4,2}}, {{0x9a9,1},{0x251dc,4}}, {{0xd57f,5},{0xb63,2}}, + {{0x2b,2},{0xbbf,2}}, {{0x28da,1},{0x10f6,1}}, {{0x46f4,4},{0x1c,1}}, {{0xff20,4},{0xfefc,4}}, + {{0x278b5,2},{0x116d,1}}, {{0x14bb4,2},{0xbeb,1}}, {{0x3242,7},{0x1498,4}}, {{0x10c8,3},{0x1150,2}}, + {{0x5317,5},{0xc1c,2}}, {{0x1977,8},{0x11b8,4}}, {{0x28,2},{0xee8,3}}, {{0x2793d,4},{0x279d7,2}}, + {{0x70ea,3},{0xcce,3}}, {{0x1502c,6},{0x1a,2}}, {{0xc39,2},{0x4a30,4}}, {{0xbd57,5},{0xdfb,3}}, + {{0x10b9,3},{0x1761,4}}, {{0x15090,6},{0x5aae,4}}, {{0xcb5,3},{0x763c,3}}, {{0x10d16,6},{0x35fd,3}}, + {{0x19c2d,4},{0xb55,2}}, {{0x924,1},{0x27b03,2}}, {{0x15c0c,5},{0x1b5c,3}}, {{0x1372,3},{0x21,1}}, + {{0xbb5,1},{0x16f8,3}}, {{0x804,2},{0xa4f,2}}, {{0xbeb,1},{0xbe0,1}}, {{0xaf5d,2},{0x10ef,1}}, + {{0xcd9,5},{0x2237,3}}, {{0xeca,5},{0x2b,3}}, {{0xc1e,2},{0xc63,3}}, {{0xf8de,4},{0x1a5c,3}}, + {{0xf63c,2},{0xfaf,3}}, {{0x3e92,3},{0x2dc0,6}}, {{0xb78,2},{0xb75,2}}, {{0x14db6,6},{0x4d56,4}}, + {{0xbaa2,4},{0xb8a,2}}, {{0x167c,5},{0x2585,4}}, {{0x24531,4},{0x96b,2}}, {{0xa786,7},{0xbb5,1}}, + {{0x6d81,3},{0xd54,1}}, {{0x804,2},{0xfeee,2}}, {{0xbd1,2},{0x1698,4}}, {{0xc25,3},{0x8c46,4}}, + {{0x274b,5},{0xb2c0,4}}, {{0x441c,3},{0x1704,3}}, {{0xa29a,8},{0x2b,3}}, {{0x11b3a,7},{0x2b,3}}, + {{0xba5,5},{0x1434,3}}, {{0x1084,3},{0x2d,1}}, {{0xcc7,3},{0xeb3,3}}, {{0x845e,6},{0x8470,5}}, + {{0xe70,4},{0xc34,3}}, {{0x1ed53,1},{0x2445e,1}}, {{0xb64,2},{0x12d7,5}}, {{0x5671,7},{0xb52,5}}, + {{0x1d82,8},{0x1719,3}}, {{0xbb4,2},{0x5f33,6}}, {{0x1434,3},{0xc20,5}}, {{0x10fb,4},{0x1b4f,4}}, + {{0x4178,4},{0x1370,3}}, {{0xe3fa,6},{0x2195,3}}, {{0x1a943,6},{0x1aa6,3}}, {{0x5ac2,6},{0xe08,7}}, + {{0x1e45,3},{0x2d,1}}, {{0xcc4d,6},{0x95a2,4}}, {{0x10ef,2},{0xa7d1,2}}, {{0x1b6d3,2},{0x1b4e4,1}}, + {{0x12143,2},{0xcbf,3}}, {{0x1ca85,6},{0xd0d,2}}, {{0x12fe,2},{0xb2e,2}}, {{0x3a22,5},{0x6197,6}}, + {{0xbcd3,7},{0xb65,2}}, {{0x6255,8},{0xb52,5}}, {{0xe64,4},{0x5277,4}}, {{0xbe4,1},{0x363a,5}}, + {{0xd54,1},{0x1675,2}}, {{0x1a,2},{0x1d,1}}, {{0x27,1},{0x4532,8}}, {{0x12fc,4},{0xc1c,2}}, + {{0x27b6,1},{0x4415,2}}, {{0xab9a,3},{0xae5,1}}, {{0x17ec,4},{0xe7b,4}}, {{0x298a,2},{0x1c,1}}, + {{0xc89,2},{0x1d,1}}, {{0x422e,3},{0xf8d1,2}}, {{0x8092,9},{0xb75,2}}, {{0xd1a,2},{0xb8f,2}}, + {{0xa642,8},{0x1489,3}}, {{0x122c,4},{0x25da,3}}, {{0xb65,2},{0xaf2,1}}, {{0x15b52,2},{0x70da,2}}, + {{0x1208c,3},{0xae7,3}}, {{0x2427,3},{0x7fda,4}}, {{0xaca2,3},{0xbe4,1}}, {{0x20bb,3},{0x1ad2,5}}, + {{0xb82,2},{0x1257,3}}, {{0x16bc,4},{0x2c17,3}}, {{0xb79,2},{0x10d89,4}}, {{0x1b40,3},{0xd7f,3}}, + {{0x16cc,4},{0x5d16,4}}, {{0x422e,3},{0xcb8,2}}, {{0x432,16},{0x432,4}}, {{0x17a59,6},{0xb55,3}}, + {{0xb75,3},{0xb2c,2}}, {{0x278e1,2},{0x278d6,1}}, {{0x10f3,1},{0xb4b,2}}, {{0x422e,3},{0x10ef,1}}, + {{0x209d,6},{0xc1c,2}}, {{0x2798,2},{0xd17,3}}, {{0x4178,6},{0xb8a,2}}, {{0xa7f4,3},{0x12ff,3}}, + {{0x181c,3},{0x1971,2}}, {{0x175c,9},{0x2b,3}}, {{0xcb5,3},{0x2b,1}}, {{0x30,2},{0x24a41,2}}, + {{0xb698,7},{0x47b3,3}}, {{0x178c,3},{0x10c01,5}}, {{0x3678,6},{0x1525,7}}, {{0xd6d4,7},{0x1081,3}}, + {{0xb65,2},{0xae5,1}}, {{0x16bc,4},{0xae5,1}}, {{0x244f5,2},{0xff02,2}}, {{0xbeb,2},{0xb63,3}}, + {{0x2cae,4},{0xc30,2}}, {{0x70c6,4},{0x70d2,2}}, {{0xc37,3},{0x4606,3}}, {{0xbde,3},{0x6745,5}}, + {{0x12ae,3},{0x2680,5}}, {{0x9b92,7},{0x1489,3}}, {{0x278d5,2},{0x278d6,1}}, {{0x6d81,3},{0xb70,2}}, + {{0x209d,4},{0x6855,3}}, {{0x2bdc,5},{0x50fd,5}}, {{0x96b,2},{0x70d2,2}}, {{0xc51,2},{0xb85,2}}, + {{0x1fd81,5},{0xae0,1}}, {{0xa7da,3},{0x1d,1}}, {{0x422e,3},{0x1a4fc,6}}, {{0xcce,3},{0x1d,1}}, + {{0xc25,5},{0x1ec2,4}}, {{0x106a2,6},{0xae7,1}}, {{0xa2d6,5},{0xb2e,2}}, {{0x14cc,4},{0xd91,3}}, + {{0x14486,7},{0xb54,3}}, {{0x5401,4},{0xbb4,4}}, {{0x1084,4},{0x1a,2}}, {{0xbde,3},{0x265d,3}}, + {{0xea61,8},{0xd7f,3}}, {{0x441c,3},{0x2af8,4}}, {{0x71da,6},{0xb52,6}}, {{0x1ca1,12},{0xae7,1}}, + {{0x17552,6},{0x2b,3}}, {{0x1a81d,2},{0x27b6,1}}, {{0xc1c,2},{0xb996,4}}, {{0x257c,2},{0xc1c,2}}, + {{0x1ed58,1},{0x20b19,6}}, {{0xcb5,3},{0xcce,3}}, {{0x51b8,7},{0x2b,1}}, {{0x6f62,4},{0x20b23,2}}, + {{0xb63,2},{0xb2c,2}}, {{0xa2e2,5},{0x13c43,5}}, {{0xf660,7},{0x11f2,3}}, {{0x10c8,3},{0x187c,3}}, + {{0xaca2,3},{0xcd4,4}}, {{0x5136,6},{0xf05,7}}, {{0x27,1},{0xb75,3}}, {{0xcb5,3},{0x1ebd5,3}}, + {{0xbaa2,4},{0x4460,3}}, {{0x271e,3},{0x2a24,3}}, {{0x84a6,6},{0x2dcb,4}}, {{0x4362,4},{0x2041d,4}}, + {{0x5c76,4},{0x1c,1}}, {{0x10724,7},{0x2b,3}}, {{0xd65,3},{0xb2c,2}}, {{0x146c,7},{0xb7a,5}}, + {{0xbeb,1},{0x101f5,4}}, {{0x244ad,2},{0x244c7,2}}, {{0x6d8e,3},{0xae2,2}}, {{0x30,2},{0x20b19,6}}, + {{0x2451f,2},{0x1b887,2}}, {{0x4cd8,6},{0x107e,5}}, {{0xbc5,3},{0x28,1}}, {{0x924,1},{0x278a9,2}}, + {{0x27b6,1},{0xc67,2}}, {{0x2c980,4},{0xf907,2}}, {{0x41da,3},{0xb52,5}}, {{0x10ea,3},{0x10f3,1}}, + {{0x31e0,10},{0xb2c,4}}, {{0x5d34,5},{0x5d97,5}}, {{0xbd6,2},{0xc39,2}}, {{0x19fb3,3},{0x46f8,3}}, + {{0x7d92,7},{0x250c,5}}, {{0x4eed,9},{0xb7c,3}}, {{0x9e9,4},{0x9e9,4}}, {{0xf85,4},{0xd57,2}}, + {{0xc4d,2},{0x1d,1}}, {{0xa6ba,9},{0x2b,3}}, {{0xb44,3},{0x762d,4}}, {{0x200b,8},{0xce8,3}}, + {{0x6b04,5},{0xe72,3}}, {{0x148c,9},{0x33d3,5}}, {{0x2331,11},{0x2b,3}}, {{0xae7,2},{0xadf,2}}, + {{0xf0e,5},{0x5642,7}}, {{0x6e39,3},{0x5396,3}}, {{0x178c,3},{0xc34,2}}, {{0x177c,3},{0x2b,1}}, + {{0xceb,3},{0x4460,3}}, {{0x446a,9},{0xc63,3}}, {{0x11ef,2},{0xc63,3}}, {{0xcb5,3},{0x89b9,4}}, + {{0xde9,1},{0x187c,3}}, {{0x3f9a,4},{0xe5b,4}}, {{0x1a0d,5},{0x24fb,7}}, {{0xbeb,1},{0xeb2,1}}, + {{0x10fb,3},{0x1c351,4}}, {{0xc27,4},{0xb55,3}}, {{0x198a0,7},{0xae7,2}}, {{0x24462,1},{0x27cea,1}}, + {{0xa7da,3},{0x3776,3}}, {{0x261f,5},{0x3f3d,5}}, {{0x26c4,4},{0x2288,4}}, {{0x2fda,6},{0xa60f,3}}, + {{0xbde,3},{0xbd6,2}}, {{0xe75,6},{0xe7b,9}}, {{0x10196,4},{0x1b237,4}}, {{0x6d8e,3},{0x10ef,1}}, + {{0x1cec,5},{0x1d0f,7}}, {{0xd11d,5},{0x227a,3}}, {{0x7756,8},{0x1f13,4}}, {{0x27b6,1},{0x14d9d,5}}, + {{0x17bc,3},{0xee2,2}}, {{0x3e90,5},{0xec6b,6}}, {{0xe334,7},{0x43bd,4}}, {{0x160c,8},{0x1614,8}}, + {{0xdba,6},{0x1d22,6}}, {{0xfb1,2},{0xc63,3}}, {{0x1a943,6},{0xae7,2}}, {{0xd65,3},{0xcb8,2}}, + {{0x1257,2},{0x139f,3}}, {{0x612a,8},{0x1489,3}}, {{0x4178,4},{0x2045,3}}, {{0xea2a,6},{0xb55,3}}, + {{0xf52,4},{0xaea,2}}, {{0x2151,8},{0xb54,4}}, {{0x2043,5},{0xd57,2}}, {{0xb44,3},{0x1b4b,3}}, + {{0x27b4,3},{0xbe0,1}}, {{0x181c,4},{0x887b,3}}, {{0xb44,3},{0xc34,3}}, {{0x261f,4},{0xcc0,3}}, + {{0x2b,2},{0x3776,3}}, {{0xf0e,5},{0xdf5,4}}, {{0x2ab6,5},{0xcf0,2}}, {{0x3343,5},{0xb68,4}}, + {{0xae9,2},{0xb55,2}}, {{0x13af,4},{0x1aa6,3}}, {{0x6d8e,3},{0xc89,2}}, {{0x26c4,3},{0xb83,2}}, + {{0xd41,3},{0xb6e,2}}, {{0x3162,5},{0x3167,7}}, {{0xf0e,5},{0x904d,5}}, {{0x415c,4},{0x5396,3}}, + {{0x1040,6},{0xd0d,2}}, {{0x3a3e,7},{0x10dc,2}}, {{0xbeb,2},{0xb8f,2}}, {{0x28,2},{0x92ec,3}}, + {{0x16149,5},{0x10b9,4}}, {{0xc4d,2},{0x2db1,3}}, {{0xae0,1},{0x139e,2}}, {{0x178c,3},{0x1361,2}}, + {{0x1084,3},{0xbd6,2}}, {{0xb87,3},{0xc3a,3}}, {{0xc25,3},{0x1675,2}}, {{0x24a2d,2},{0x27e43,3}}, + {{0xe75,4},{0x2c3a,4}}, {{0x1e,1},{0x2d,1}}, {{0x3e12,7},{0xb78,2}}, {{0xc29,2},{0x2b,2}}, + {{0x1a94,6},{0xb78,2}}, {{0x2912,5},{0x296f,5}}, {{0xb7f,3},{0x323c,2}}, {{0xd41,4},{0x6008,4}}, + {{0x26f1,4},{0xe72,3}}, {{0x26c4,4},{0xc1c,2}}, {{0x14cc,4},{0xcad,3}}, {{0x176cc,6},{0xd57,2}}, + {{0x49ac,2},{0xb6ff,4}}, {{0x10ea,3},{0x4dbb,5}}, {{0x364e,5},{0xaea,1}}, {{0xaf1,1},{0xa15d,4}}, + {{0xb6c,6},{0xc21,4}}, {{0xeec,7},{0x1140,3}}, {{0xab25,5},{0x1016,4}}, {{0x2313,9},{0xb52,6}}, + {{0xa7da,3},{0xb74,2}}, {{0x72da,3},{0xc1c,2}}, {{0xdba4,5},{0x11f3c,4}}, {{0xcd9,3},{0x1bfb1,4}}, + {{0x27,1},{0x1b,1}}, {{0x2045,3},{0x1d,1}}, {{0x2843b,2},{0x24460,2}}, {{0x101a,3},{0xb2e,2}}, + {{0x30,2},{0x432,6}}, {{0x423e,1},{0x174e,3}}, {{0x1098,3},{0xae0,1}}, {{0xf30,5},{0xd0d,2}}, + {{0x30,64},{0x30,26}}, {{0x80c2,6},{0xb78,2}}, {{0x177c,3},{0xfcaf,2}}, {{0x8e8a,8},{0x8e92,4}}, + {{0xb70,2},{0x7a46,4}}, {{0x6d8e,3},{0x1196,5}}, {{0xf2f9,6},{0xf2ff,5}}, {{0x16ed6,7},{0xd0d,2}}, + {{0x1f019,4},{0xf8cf,2}}, {{0x3694,9},{0x1621,4}}, {{0x17a74,8},{0xae7,1}}, {{0xc13,4},{0x2986,6}}, + {{0x1916,5},{0xb2e,2}}, {{0x10fb,3},{0x15a66,2}}, {{0xd08e,5},{0xb6c0,4}}, {{0x216f,7},{0x5d14,5}}, + {{0x3f7e,8},{0xb2c,4}}, {{0x209d,5},{0xb7d,2}}, {{0x202d1,6},{0xae7,1}}, {{0xb71,2},{0x1c,1}}, + {{0x48c8,6},{0xb48,2}}, {{0x26f1,4},{0xb63,3}}, {{0x146e,4},{0xdfb,3}}, {{0x5317,5},{0xa60f,3}}, + {{0xcd9,3},{0xee1,3}}, {{0xc25,4},{0x1480,2}}, {{0x6f48,8},{0x6f50,5}}, {{0xc25,4},{0xd5e,7}}, + {{0xbc70,6},{0x79f9,4}}, {{0x1f,1},{0x1e,1}}, {{0x1a94,6},{0x2b,3}}, {{0xbcb,3},{0x2a24,6}}, + {{0xf9d,4},{0xb2c,2}}, {{0xb2c,2},{0xb54,3}}, {{0xc49,3},{0x314d,3}}, {{0x178c,3},{0xb47,2}}, + {{0x126c0,5},{0xbac,4}}, {{0xda91,8},{0x2b,3}}, {{0xde9,1},{0xf24c,3}}, {{0x287e7,2},{0x244ed,2}}, + {{0x9136,6},{0x190a,4}}, {{0xae0,1},{0x92c9,5}}, {{0x244b9,2},{0xa4f,2}}, {{0xb2c,2},{0xaeb,2}}, + {{0x278c9,2},{0x924,1}}, {{0x1a,1},{0xd1b,1}}, {{0x1097,5},{0xeb3,3}}, {{0x1ab4d,5},{0xf47,4}}, + {{0x2796,3},{0x10ec,1}}, {{0x278c9,2},{0x27897,2}}, {{0xbe7,1},{0x2b76,3}}, {{0x16b8f,5},{0xb2e,2}}, + {{0x6d81,3},{0xd7a,3}}, {{0xcd9,3},{0xf8f,5}}, {{0x2ae0,6},{0xc7b0,4}}, {{0x19fb1,5},{0x46f8,3}}, + {{0x30,2},{0x24495,2}}, {{0xb4b,2},{0xb55,2}}, {{0xbe4,1},{0x434f,2}}, {{0xda9,5},{0xb6bb,3}}, + {{0xb066,2},{0xb47,2}}, {{0x6c8a,4},{0xee7,3}}, {{0xaf1,1},{0xd7a,3}}, {{0xb2f,1},{0x11b8,4}}, + {{0x44b8,5},{0xc34,3}}, {{0x116c,2},{0x278a9,1}}, {{0xfb1,2},{0xb48,2}}, {{0x3e90,5},{0x2742,3}}, + {{0xd0f,6},{0x2693,4}}, {{0xc421,8},{0xc63,3}}, {{0xf964,6},{0x3b6d,5}}, {{0x19b82,6},{0xb78,2}}, + {{0x4c15,5},{0x74b2,4}}, {{0x178c,3},{0xec52,4}}, {{0xb85,2},{0x21,1}}, {{0x734,1},{0x2a8e0,2}}, + {{0x78b2,5},{0x40bc,4}}, {{0x2124,8},{0x14d5,7}}, {{0x287e0,2},{0x6f90,2}}, {{0x53f4,5},{0x2b,2}}, + {{0xeec,7},{0xfdf,3}}, {{0x2446a,3},{0x27d0f,2}}, {{0xc13,4},{0xc8e,3}}, {{0x5ea0,4},{0x7fda,4}}, + {{0x422e,3},{0x20ae6,2}}, {{0xcf3e,2},{0x16f7,4}}, {{0xf49b,7},{0xd48,2}}, {{0xb7f,3},{0x1cef,3}}, + {{0x1051,4},{0x1e4fb,4}}, {{0xae6,2},{0xc55,2}}, {{0xdba4,5},{0xb4f,3}}, {{0x278a7,3},{0x1171,2}}, + {{0x6c63,4},{0x1d59,4}}, {{0x56cc,7},{0x3bf9,5}}, {{0x18a7,3},{0xb63,2}}, {{0xc1c,2},{0xbd6,2}}, + {{0xbde,3},{0xb54,2}}, {{0x140c,8},{0xec5,5}}, {{0x27,1},{0x1a,3}}, {{0x3234,3},{0xc89,3}}, + {{0x1477e,6},{0xb9d,3}}, {{0xcc7,3},{0x12fe,1}}, {{0xbc5,3},{0x10dc,2}}, {{0x2d02,6},{0xae0,1}}, + {{0x28,1},{0xc67,2}}, {{0xdf0,2},{0xb2e,2}}, {{0xb9c,2},{0xc095,6}}, {{0xae0,1},{0x1b,1}}, + {{0xb70,2},{0x46e4,3}}, {{0x178c,3},{0x13fa9,2}}, {{0x166c,6},{0x1672,5}}, {{0xcd9,5},{0x38e5,6}}, + {{0xa7da,3},{0xd5c,1}}, {{0x278e1,2},{0x278dc,1}}, {{0x9a9,2},{0x1b4e3,1}}, {{0x88ae,8},{0x58d0,4}}, + {{0x13d1,4},{0x2b3e,4}}, {{0x218d,5},{0x12dec,4}}, {{0x8716,4},{0xb47,2}}, {{0x3a14,6},{0x2f1c,7}}, + {{0x70a0,6},{0x1016a,2}}, {{0x9a9,2},{0x27cb9,2}}, {{0x27d1e,4},{0x2446f,2}}, {{0x28,2},{0xc63,3}}, + {{0xf30,5},{0x1372,3}}, {{0x1099,3},{0xaf1,2}}, {{0x10fb,3},{0x1055,3}}, {{0xbe0,1},{0xb64,2}}, + {{0x430,10},{0x432,2}}, {{0x857e,5},{0x2b,2}}, {{0x4220,7},{0xd91,3}}, {{0xceb,3},{0xd7f,3}}, + {{0x20,2},{0xca7,3}}, {{0x1762,3},{0x10dc,2}}, {{0x177c,3},{0xe6d,2}}, {{0xce1,4},{0xb52,5}}, + {{0x2793d,4},{0x279fb,2}}, {{0x229b,5},{0x115f0,4}}, {{0xb64,2},{0xce1,4}}, {{0xb63,2},{0x23ce,4}}, + {{0xf26a,8},{0xfe5,2}}, {{0x3004,9},{0x24fd,5}}, {{0x417a,2},{0x1370,3}}, {{0x10c8,3},{0x702a,4}}, + {{0xbb5,1},{0x2195,3}}, {{0x16fc,8},{0xae6,2}}, {{0x21a0,3},{0x28,1}}, {{0x2211,3},{0x14e2,3}}, + {{0x2d22,7},{0xb7c,3}}, {{0x1a3d9,5},{0x1aab,4}}, {{0x177c,3},{0xbcc2,3}}, {{0x20b19,6},{0x1ed58,1}}, + {{0x1084,3},{0xbbf,2}}, {{0xfdd,2},{0xc99,3}}, {{0x3170,5},{0xe0a,5}}, {{0x2b,3},{0x3a3b,3}}, + {{0xae6,2},{0x25da,3}}, {{0x12fe,2},{0x1308,3}}, {{0x18c40,6},{0xb63,2}}, {{0x2796,3},{0xde2,4}}, + {{0xfb1,2},{0x11f2,3}}, {{0x423c,3},{0x5277,2}}, {{0x1e,1},{0xd0d,2}}, {{0x24a8,6},{0x14a7,5}}, + {{0xb71,2},{0x114d,2}}, {{0x1abcf,2},{0x1abd1,3}}, {{0x6d81,3},{0xae2,1}}, {{0xc25,5},{0x1035,8}}, + {{0x14454,7},{0xb54,3}}, {{0x4fbd,7},{0x1d89,2}}, {{0x20bb,3},{0x13866,4}}, {{0x133c,6},{0xa60f,3}}, + {{0xf6c3,6},{0x7109,5}}, {{0x19939,7},{0xae7,1}}, {{0xb78,2},{0xb55,2}}, {{0x194a,5},{0xdbf,3}}, + {{0x922,3},{0x278af,1}}, {{0x27cea,1},{0x24,1}}, {{0xbcb,3},{0x1308,3}}, {{0xc8bc,7},{0x10dc,2}}, + {{0x24a2d,2},{0x24a35,2}}, {{0x5c76,4},{0x2d,1}}, {{0x2151,5},{0x2745,3}}, {{0xbd4c,5},{0xb8f,3}}, + {{0x5442,4},{0x1097,5}}, {{0x3ffc,6},{0x1308,3}}, {{0x278e1,2},{0x278a9,1}}, {{0xaf1,1},{0x15c61,3}}, + {{0xba5,4},{0x8ed6,5}}, {{0xd511,8},{0xae7,1}}, {{0x6d8e,3},{0xd0b,3}}, {{0xcfd,7},{0xf14,2}}, + {{0x17a59,6},{0xb78,2}}, {{0x1c8f,3},{0x2211,3}}, {{0xa889,2},{0x14c03,5}}, {{0x194ef,5},{0xc57,4}}, + {{0xbe4,1},{0xb2e,2}}, {{0xbeb,1},{0x1342,6}}, {{0xb2f,1},{0x2971,3}}, {{0x14ba6,3},{0xb47,2}}, + {{0xae0,1},{0x1761,4}}, {{0x14cd0,5},{0x1292,3}}, {{0x1b8e3,4},{0x1b237,4}}, {{0x1e45,3},{0x28,1}}, + {{0xdba4,5},{0xb2c,4}}, {{0x7972,6},{0x5bc1,5}}, {{0xbb4,2},{0xae6,2}}, {{0xb82,2},{0x2b,3}}, + {{0x90ee,9},{0x2574,3}}, {{0x8d52,7},{0x7bb9,5}}, {{0x10ca,1},{0x52c6,3}}, {{0xb31,1},{0x2864c,1}}, + {{0x1672,3},{0x5396,3}}, {{0xb44,3},{0xb55,3}}, {{0x6d8e,3},{0xcc3,4}}, {{0xcc0,3},{0x1a,1}}, + {{0x6c8a,6},{0x3124,4}}, {{0x24a2d,2},{0x24a2f,2}}, {{0xddc,4},{0x971a,4}}, {{0xb44,3},{0x3879,4}}, + {{0x2322,12},{0xaf2,1}}, {{0x11e1,3},{0x27,1}}, {{0xd76,7},{0x2e92,6}}, {{0x1665b,6},{0xae7,1}}, + {{0x19e88,5},{0x139f,3}}, {{0x532,34},{0x30,18}}, {{0x209d,4},{0x2b3e,4}}, {{0x4178,4},{0x6c26,5}}, + {{0xae9,2},{0xee1,3}}, {{0xcde,3},{0x1d,2}}, {{0x271e,3},{0x26c6,1}}, {{0x10fb,3},{0x1f,1}}, + {{0x3988,6},{0x2ddc,6}}, {{0x35ec,11},{0x10dc,2}}, {{0xaf5d,2},{0x10f0,1}}, {{0x17be,2},{0xf01,4}}, + {{0x1b26c,2},{0x1b26c,2}}, {{0xcd9,5},{0x1a05,8}}, {{0x3758,4},{0x7295,5}}, {{0xf4df,3},{0xf59,3}}, + {{0x256b,4},{0xc1e,2}}, {{0x1095,3},{0x2b,2}}, {{0x10472,4},{0xeb3,3}}, {{0xbd6,2},{0xcb8,2}}, + {{0x11fc,9},{0xe08,7}}, {{0xbe4,1},{0xc63,3}}, {{0x922,3},{0x27897,1}}, {{0x7102,5},{0x1b,1}}, + {{0x6c7d,8},{0x6c85,5}}, {{0xc25,3},{0x67b2,5}}, {{0x6b5f,4},{0x67a0,5}}, {{0x178c,3},{0xbb4,2}}, + {{0x3fb6,5},{0xe626,5}}, {{0xd41,3},{0xbb15,3}}, {{0xbe0,1},{0xdf0,2}}, {{0x82de,6},{0xb65,2}}, + {{0x41be,3},{0x434f,2}}, {{0x431c,8},{0x4324,6}}, {{0xb75,2},{0x14356,4}}, {{0x5c62,7},{0xff7,5}}, + {{0x321d,3},{0xcaf2,6}}, {{0x541b,5},{0xc67,3}}, {{0x16a5d,5},{0x2af8,4}}, {{0x1a76,6},{0x107e,5}}, + {{0x14d0c,5},{0xf02,3}}, {{0xbeb,1},{0x1b,1}}, {{0xb72,2},{0xc55,2}}, {{0x28634,1},{0xb31,1}}, + {{0x180c,4},{0x3a57,3}}, {{0x24f91,2},{0x2445e,1}}, {{0x86b6,8},{0xb68,4}}, {{0xeec,5},{0xcc0,7}}, + {{0x10fb,3},{0x1a,1}}, {{0x1b030,6},{0x760b,3}}, {{0x4a5b,6},{0xb48,2}}, {{0x594f,4},{0xb78,2}}, + {{0x142c,3},{0xfb1,2}}, {{0x3e90,5},{0x2ddc,6}}, {{0x10ea,3},{0x47b3,3}}, {{0xd44,5},{0xb63,2}}, + {{0x20bb,3},{0xd94a,7}}, {{0xb73,2},{0xc52,2}}, {{0x1095,3},{0xbe8,3}}, {{0xd1b,1},{0xb8a,2}}, + {{0x1ed53,1},{0x2446c,1}}, {{0x15ae3,2},{0x428b,2}}, {{0xebe2,7},{0x10dc,2}}, {{0xb8a,2},{0xae5,1}}, + {{0xb2e,2},{0xeb3,3}}, {{0x12b2,3},{0xb75,2}}, {{0x27d24,3},{0x18,1}}, {{0x1d,1},{0xec2,2}}, + {{0x14fb4,5},{0xde1,2}}, {{0xb48,2},{0x5f03,5}}, {{0x15a70,2},{0x7562,3}}, {{0xbe0,1},{0xbe7,1}}, + {{0x14dc,5},{0x4978,5}}, {{0xedb,4},{0xc6a9,3}}, {{0x5102,5},{0xc65,8}}, {{0x441c,3},{0xcd4,3}}, + {{0x244f5,2},{0x1019c,2}}, {{0xeb2,1},{0x10dc,2}}, {{0x5288,5},{0xccc0,6}}, {{0xca7,2},{0xb52,2}}, + {{0xae0,1},{0x1b3c0,5}}, {{0xc7b,4},{0x10dc,2}}, {{0x142c,3},{0x2c0a,3}}, {{0xcedb,2},{0xeb2,1}}, + {{0x41da,3},{0x1ae2,2}}, {{0x139e6,5},{0x4569,4}}, {{0x10f7,1},{0xae9,2}}, {{0x10ec4,5},{0xb98,2}}, + {{0x15dc,8},{0x1fe4,5}}, {{0xaca2,4},{0xc57,3}}, {{0xceb,3},{0x2b,1}}, {{0x139c,10},{0x13a6,4}}, + {{0x24525,4},{0x1b6f5,2}}, {{0x3ec8,8},{0x10dc,2}}, {{0x26b5,4},{0xce2,6}}, {{0xbde,3},{0x13d63,4}}, + {{0xc4d,2},{0x28,1}}, {{0x1701,3},{0x1d,1}}, {{0x88ea,5},{0xb63,2}}, {{0xd54,1},{0x26c6,1}}, + {{0xbed,2},{0xeb2,1}}, {{0x2daa,5},{0x2745,3}}, {{0x10196,4},{0x70c8,4}}, {{0xb52,2},{0x1193,3}}, + {{0x9e9,2},{0x532,6}}, {{0x147c,5},{0xb79,2}}, {{0x10fb,3},{0xc1c,2}}, {{0xba5,4},{0xaea,2}}, + {{0x3ee4,5},{0x700f,3}}, {{0xcb5,6},{0x1c8f,3}}, {{0x7a6e,4},{0x4240,3}}, {{0x2891,3},{0x1d59,3}}, + {{0x6067,6},{0xc21,4}}, {{0x2322,6},{0x11c4,6}}, {{0xff20,4},{0xfeec,4}}, {{0x16fc,5},{0x24fd,5}}, + {{0xed8f,5},{0x8bf2,4}}, {{0x22a9f,5},{0xd0d,2}}, {{0x1a,1},{0xae2,1}}, {{0xa7da,3},{0x582d,4}}, + {{0x1aff,3},{0xb52,5}}, {{0xb55,2},{0xd1b,1}}, {{0xa22e,4},{0xa5de,4}}, {{0x10ea,3},{0x10f6,1}}, + {{0x2b2ff,1},{0x9a9,1}}, {{0x8a49,2},{0x2b,3}}, {{0xb73,2},{0x3cc8,4}}, {{0x6f74,4},{0x70ce,2}}, + {{0xc52,3},{0xc67,2}}, {{0x70dc,4},{0x70b4,2}}, {{0xcb5,3},{0xb8c,2}}, {{0x10f2,1},{0xba9c,6}}, + {{0xca1,2},{0xc52,3}}, {{0xf6ce,4},{0x43e3,1}}, {{0xbc4,4},{0xb65,2}}, {{0xb85,2},{0x173e,3}}, + {{0x27cea,1},{0x28e8e,2}}, {{0x2446c,1},{0x28634,1}}, {{0xcd9,3},{0xc67,2}}, {{0xaaf2,5},{0x1f,2}}, + {{0x2796,3},{0x10f2,1}}, {{0xb75,3},{0x345e,5}}, {{0xae0,1},{0xc63,3}}, {{0x1042,4},{0x1055,3}}, + {{0x1dbe,5},{0xcc0,3}}, {{0x5949,6},{0x109f,3}}, {{0xb7d,1},{0x582d,4}}, {{0xbde,3},{0xc67,2}}, + {{0x3598,7},{0xc8e,3}}, {{0x1b08,3},{0xae7,1}}, {{0x41da,3},{0xb72,3}}, {{0x278c9,2},{0x279a1,2}}, + {{0xcf3,3},{0xae7,1}}, {{0xd5c,1},{0xbe7,1}}, {{0x256b,4},{0xcc0e,3}}, {{0x411c,4},{0x2b,3}}, + {{0xcd9,3},{0xc1c,2}}, {{0xd671,5},{0xcce,3}}, {{0x276b,4},{0x2db1,3}}, {{0x174e,3},{0xb78,2}}, + {{0x323c,2},{0x1d,1}}, {{0x12954,6},{0x46e4,3}}, {{0xde9,1},{0x27,1}}, {{0x3c28,9},{0x2b,3}}, + {{0x9aae,6},{0x11b8,4}}, {{0x1b,1},{0x1bdb,3}}, {{0xde6f,10},{0xae7,1}}, {{0x1089,2},{0x2195,3}}, + {{0xcd9,5},{0x1cee,3}}, {{0x10dc,2},{0xb78,2}}, {{0x845e,6},{0x8470,6}}, {{0x6f55,5},{0x1761,4}}, + {{0xe830,5},{0x6008,4}}, {{0x15b52,2},{0x1015e,2}}, {{0x3758,11},{0xb8f,3}}, {{0xaea,1},{0x139e,4}}, + {{0xcfe9,6},{0x2b,3}}, {{0x3234,3},{0xb85,2}}, {{0x20bb,3},{0x1934,4}}, {{0x295c,5},{0xb8f,3}}, + {{0x27d8b,2},{0x27d20,2}}, {{0x10ec,1},{0x28,1}}, {{0xd41,3},{0x1a5c,3}}, {{0x1a340,8},{0xae7,1}}, + {{0x27c7f,4},{0x116c,1}}, {{0x27c3,4},{0x4575,2}}, {{0x178c,3},{0x2b,2}}, {{0x10ea,3},{0x1f704,5}}, + {{0x1977,8},{0xce8,3}}, {{0xceb,3},{0x1489,3}}, {{0xd51,2},{0xb52,5}}, {{0x4290,4},{0xbc3,5}}, + {{0x10ef,1},{0xb64,2}}, {{0x1a0d,5},{0x48e7,7}}, {{0x87ee,6},{0x5eb6,4}}, {{0x3694,5},{0xb63,2}}, + {{0xe42,5},{0xeb2,1}}, {{0x1095,3},{0x11ef,2}}, {{0x17a59,6},{0xb55,2}}, {{0x181c,3},{0x1a11,2}}, + {{0x24531,4},{0x2456b,2}}, {{0x4c97,9},{0xc7b,4}}, {{0x2ab6,5},{0xdbf,3}}, {{0x1ce6,4},{0x1257,3}}, + {{0x26c4,4},{0x8a48,4}}, {{0x2bff,4},{0x2b,3}}, {{0x261f,4},{0x21,1}}, {{0x2e52,8},{0xb52,6}}, + {{0xd41,3},{0xb65,2}}, {{0x5d34,8},{0xb78,2}}, {{0x3234,3},{0xe6d,2}}, {{0xcab,3},{0xae6,2}}, + {{0xaea,3},{0xd0c,2}}, {{0x27b4,3},{0x28,2}}, {{0xd54,2},{0x2afa,2}}, {{0xcb5,3},{0x128d5,4}}, + {{0x432,128},{0x432,128}}, {{0xde9,1},{0xb52,2}}, {{0xab9a,3},{0xb2e,2}}, {{0x159c,5},{0x22be,5}}, + {{0x143c,5},{0x83a5,5}}, {{0x187ff,7},{0xae7,1}}, {{0x178c,3},{0x101b3,3}}, {{0x4881,4},{0xdf0,2}}, + {{0x10dc,2},{0x10dc,2}}, {{0xaea,1},{0xbb2a,4}}, {{0x1084,3},{0xb9d,3}}, {{0x7c4,2},{0x7c4,1}}, + {{0xbd6,2},{0xeb2,1}}, {{0xc60,3},{0x1d,1}}, {{0xaa98,2},{0xab9c,1}}, {{0x1b57,4},{0x5d16,4}}, + {{0x2787,5},{0xd282,6}}, {{0x162c,6},{0x1a,1}}, {{0xfe38,4},{0xb8e,2}}, {{0x10ca8,7},{0xae7,1}}, + {{0x441c,3},{0x766c,6}}, {{0x6b6c,6},{0xdd3,3}}, {{0xcd9,3},{0xb70,2}}, {{0x19fb1,5},{0x16c2d,4}}, + {{0x244f5,2},{0x1015e,2}}, {{0x27e2b,2},{0x432,1}}, {{0x6b5f,4},{0xf99,4}}, {{0x278a9,1},{0x1171,2}}, + {{0x423c,3},{0x12f0,4}}, {{0x263f,3},{0xb55,2}}, {{0x5c98,5},{0x5277,2}}, {{0x17b4c,6},{0xbd1,2}}, + {{0x16fc,4},{0xae7,1}}, {{0x4ba0,7},{0x12ff,2}}, {{0xaea,1},{0xcb8,2}}, {{0x10ca,1},{0x5aab,3}}, + {{0xb65,2},{0x25c2,3}}, {{0xa0de,6},{0xb2ed,4}}, {{0xadf,2},{0xc1c,2}}, {{0xb9c,2},{0x1a,2}}, + {{0x1f,2},{0x37ae,4}}, {{0x5191,8},{0xe1c,4}}, {{0xadd,3},{0x1a1f7,2}}, {{0x28da,1},{0xd54,1}}, + {{0x1fce4,2},{0xab9c,1}}, {{0x2482,3},{0xc8e,3}}, {{0x18a5,4},{0xbb4,4}}, {{0x1ad0,5},{0xb85,2}}, + {{0x12fe,2},{0x2b,2}}, {{0x10fb,3},{0xbb2a,4}}, {{0x752e,10},{0xd0d,2}}, {{0xb8f,2},{0x2af4,4}}, + {{0x10f6,1},{0xf8d1,2}}, {{0xe64,5},{0x16e3,3}}, {{0xbcb,3},{0xcb8,3}}, {{0xc1e,2},{0x1099,3}}, + {{0xceb,3},{0x715a,3}}, {{0xbeb,1},{0xab9c,1}}, {{0xb4bf,6},{0xb47,2}}, {{0x44df,6},{0x1498,3}}, + {{0x5f8a,9},{0x2b,3}}, {{0xb63,2},{0x4834,5}}, {{0x278a9,1},{0x27a2b,2}}, {{0xc13,4},{0x72da,3}}, + {{0x4dcf,9},{0x10dc,2}}, {{0x42ac,5},{0xec6d,3}}, {{0x4292,3},{0xbc4,4}}, {{0xc8bc,6},{0x2939,3}}, + {{0x18e1,5},{0x1307,3}}, {{0x6ac5,1},{0x10f3,1}}, {{0x25223,8},{0x1ed53,1}}, {{0x1e09,13},{0xc64,2}}, + {{0xc37,3},{0xbc1,2}}, {{0x1a5ad,6},{0x16077,3}}, {{0xaea,1},{0xe39a,4}}, {{0x14e7e,4},{0xb98,2}}, + {{0x4134,3},{0x2680,5}}, {{0x2796,3},{0xbe4,1}}, {{0xdbf,3},{0x10c3,5}}, {{0x924,1},{0x27af1,2}}, + {{0x804,2},{0x244af,2}}, {{0xdf0,2},{0x1a,1}}, {{0x116c,2},{0x278dc,1}}, {{0xeec,7},{0x1bc3,3}}, + {{0x2793d,4},{0x279e9,2}}, {{0x441c,3},{0x2195,3}}, {{0x10fb,3},{0x1fc0c,4}}, {{0x1213e,5},{0x12143,2}}, + {{0xeca,5},{0xbb4,4}}, {{0x1ed53,1},{0x432,1}}, {{0x4284,2},{0x15ab8,2}}, {{0x2445c,3},{0x18,1}}, + {{0x271e,3},{0x2b,1}}, {{0x57dd,7},{0x4b33,5}}, {{0x10fb,3},{0x1cef,3}}, {{0x1095,3},{0xa5dd,5}}, + {{0xbe0,1},{0x2b,1}}, {{0x1b4e3,1},{0x9c9,1}}, {{0x1257,2},{0x107f,4}}, {{0x4971,5},{0xb98,2}}, + {{0xf63,5},{0x10dc,2}}, {{0x12a0,5},{0x12a5,7}}, {{0x14e1,4},{0x1c,1}}, {{0x17ee,4},{0xe4a,4}}, + {{0x1a76,4},{0x4a1e,7}}, {{0x9b41,3},{0x1152,3}}, {{0x27b4,3},{0x290f,3}}, {{0x441c,3},{0x220f,5}}, + {{0x12b66,7},{0xb65,2}}, {{0xe2fd,5},{0xe302,6}}, {{0x1099,3},{0xb2c,4}}, {{0x10c8,3},{0x1878,1}}, + {{0x3cc7,4},{0xb54,3}}, {{0xf6ce,4},{0xab9c,1}}, {{0x177c,3},{0xaf2,1}}, {{0x441c,3},{0xb78,2}}, + {{0xbe7,1},{0x2af4,4}}, {{0xc67,2},{0xfe5,2}}, {{0x804,2},{0x1b23d,2}}, {{0x2589,7},{0x11b8,4}}, + {{0xeb95,5},{0x12c33,5}}, {{0x3234,3},{0xb55,2}}, {{0x146c0,6},{0x146c6,4}}, {{0x2793d,4},{0x279f5,2}}, + {{0xdba4,4},{0xf02,3}}, {{0xacd2,6},{0xbd4,2}}, {{0x1e,1},{0x12b69,4}}, {{0xa7d1,2},{0x10f2,1}}, + {{0x3234,3},{0xfb1,2}}, {{0x1014,3},{0x11df,5}}, {{0xd1b,1},{0xcab,3}}, {{0xba5,4},{0xc17,3}}, + {{0x619f,5},{0xbfe6,5}}, {{0x1f,1},{0xc2e8,4}}, {{0x2032,2},{0x12086,4}}, {{0x181c,3},{0xb48,2}}, + {{0x24461,1},{0x2446c,1}}, {{0x142e,1},{0xcbc,4}}, {{0x265b,7},{0xb52,6}}, {{0xc8dd,6},{0xb52,5}}, + {{0x179c0,6},{0xae7,1}}, {{0xd0f,4},{0x1b09,3}}, {{0x285b,3},{0xa497,6}}, {{0xde9,1},{0xba7,3}}, + {{0x3ee4,8},{0x1156,6}}, {{0xf52,4},{0xc50d,5}}, {{0xaf1,1},{0x11e6,6}}, {{0x3ca6,13},{0xae7,1}}, + {{0xcd9,4},{0x13394,5}}, {{0x6d8e,3},{0x10f8,2}}, {{0x17552,6},{0xb65,2}}, {{0x422e,3},{0x3e16,3}}, + {{0x2c4dc,4},{0xff02,2}}, {{0x178c,3},{0x20,2}}, {{0x6ac3,3},{0x1a9d,3}}, {{0xb64,3},{0x13564,4}}, + {{0x35ec,11},{0xae7,1}}, {{0x4450,4},{0x1baa1,4}}, {{0xd1a,2},{0xd1b,2}}, {{0x1869,5},{0xd69,2}}, + {{0x312a,7},{0x3131,7}}, {{0x27b4,3},{0x77a2,3}}, {{0x281f,3},{0x2de9,7}}, {{0xfd25,4},{0x2b,3}}, + {{0xe1b3,6},{0xc32,5}}, {{0xb64,2},{0x112b0,5}}, {{0xb75,3},{0x14e1,4}}, {{0xb4b,2},{0xb52,2}}, + {{0x287e5,4},{0x15798,2}}, {{0x5671,7},{0xb7a,5}}, {{0x27,1},{0x1308,3}}, {{0x9b62,6},{0xb78,2}}, + {{0xaec,2},{0xbb5,1}}, {{0xd5c,2},{0x12e94,5}}, {{0x283d,2},{0x14bb5,2}}, {{0x27b4,3},{0x1ffb4,5}}, + {{0xf0e,5},{0xc74c,5}}, {{0xd78,5},{0xd8e,4}}, {{0x922,3},{0x116d,1}}, {{0xbeb,1},{0x10f0d,7}}, + {{0xece,2},{0x4646,5}}, {{0xf1f,8},{0x3442,6}}, {{0xc371,9},{0x10dc,2}}, {{0x6d8e,3},{0x18532,4}}, + {{0x1a11,2},{0x25da,3}}, {{0x10fb,3},{0x10119,2}}, {{0x13bc,7},{0x1408,4}}, {{0x27,1},{0x1a10,2}}, + {{0xdf0,2},{0x1d,1}}, {{0xb73,2},{0x229f,5}}, {{0x202c,3},{0xaf2,1}}, {{0x2b,2},{0x1ed0,4}}, + {{0x116c,2},{0x1b6ab,1}}, {{0x1b,1},{0xc99,3}}, {{0x1fb1,3},{0xbd4,2}}, {{0x166c,4},{0x8111,5}}, + {{0xbe0,1},{0x377e,4}}, {{0x100b3,4},{0xb48,2}}, {{0x11ef,2},{0xb54,4}}, {{0x24475,6},{0x24515,2}}, + {{0xbdaf,8},{0x2b,3}}, {{0x2b,1},{0xe6d,2}}, {{0x30,64},{0x30,30}}, {{0x2227c,5},{0xb2e,2}}, + {{0x2796,3},{0x1362,3}}, {{0xa0ea,7},{0x760b,3}}, {{0x1ed51,3},{0x2446c,1}}, {{0x19f18,6},{0xc63,3}}, + {{0x4c15,5},{0x10dc,2}}, {{0x1675,2},{0xb8f,2}}, {{0xb8c,2},{0x139f,3}}, {{0xaea,1},{0xe78,3}}, + {{0x6144,7},{0x10dc,2}}, {{0x16fc,4},{0x2f3c,3}}, {{0xf325,4},{0x1c,1}}, {{0x24525,4},{0x24673,2}}, + {{0xcedb,2},{0x2b,3}}, {{0x1b6ab,2},{0x1b6ab,1}}, {{0x229b,13},{0xb2e,2}}, {{0xfc9,6},{0xbc4,4}}, + {{0x2c76,4},{0x18681,4}}, {{0x2445e,1},{0x2446e,3}}, {{0xa02a,6},{0x11e6,6}}, {{0x4c15,5},{0x16077,3}}, + {{0xc34,2},{0xb64,2}}, {{0xae7,2},{0x1a,2}}, {{0x141c,7},{0x2c00,3}}, {{0xb73,2},{0xca5,2}}, + {{0xc37,3},{0x1372,3}}, {{0x2904,3},{0xb7c,3}}, {{0x2848,2},{0xbeb,1}}, {{0x933a,9},{0xae7,1}}, + {{0x239a,11},{0xb63,2}}, {{0xf63c,2},{0xb2f,1}}, {{0x10ed,2},{0x10fa,1}}, {{0x10f2,1},{0xf05,7}}, + {{0x161c,10},{0x11b8,4}}, {{0xb7c,2},{0xc32,5}}, {{0x278b5,2},{0x116e,1}}, {{0x373c,8},{0x2b,3}}, + {{0x6d81,3},{0xd57,2}}, {{0x1361,2},{0xc63,3}}, {{0x27ac7,2},{0x116e,1}}, {{0x26c6,1},{0xa7d8,2}}, + {{0x2539d,6},{0x10ec,1}}, {{0xad4c,4},{0x190a,4}}, {{0x15d47,5},{0x40b8,2}}, {{0xb6c,4},{0xb55,2}}, + {{0x1b57,4},{0xca7,2}}, {{0x5dc3,7},{0xb2c,4}}, {{0x1084,4},{0xec5,5}}, {{0x360f,3},{0x2d,1}}, + {{0xb4a,3},{0x1045,3}}, {{0x91ba,8},{0x2b,3}}, {{0x24759,4},{0xff20,4}}, {{0x17c0b,6},{0x10dc,2}}, + {{0xd76,7},{0x35d3,5}}, {{0x13b9e,7},{0x141e,3}}, {{0x52d6,8},{0xb52,5}}, {{0x7c5a,6},{0x88ce,4}}, + {{0x30fb,4},{0xaea,1}}, {{0x27b6,1},{0x133a7,5}}, {{0x244b3,2},{0xff26,2}}, {{0xb7d,1},{0xaea,1}}, + {{0x1aee,6},{0xb996,4}}, {{0x154fa,7},{0x2b,3}}, {{0xcb5,3},{0xb8cf,5}}, {{0x6ac5,1},{0x319d,4}}, + {{0x2160,5},{0x2165,7}}, {{0x1561,3},{0xb78,2}}, {{0xf535,5},{0xc67,3}}, {{0xd54,1},{0x11ef,3}}, + {{0x20bb,3},{0x35fd,3}}, {{0x709c,4},{0x70a0,4}}, {{0x2445f,1},{0x112c,1}}, {{0x244cb,2},{0x6f8a,2}}, + {{0xd5c,1},{0x158ad,4}}, {{0xae6,2},{0x2d44,4}}, {{0xe9a6,7},{0x1000,3}}, {{0xbde,3},{0xc67,3}}, + {{0x244f5,2},{0x1b887,2}}, {{0xb9c,2},{0x1cee,3}}, {{0xb52,2},{0x1a90,4}}, {{0x4415,2},{0xbeb,1}}, + {{0x10fb,3},{0x4606,3}}, {{0x430,10},{0x432,1}}, {{0x30,2},{0x1489,3}}, {{0xbeb,2},{0x2045,3}}, + {{0xb48,2},{0x1a,2}}, {{0x1972,2},{0x174e,3}}, {{0xb30,8},{0xb32,6}}, {{0xb44,3},{0x2b,1}}, + {{0xdfe,5},{0x29fa,6}}, {{0x244cb,2},{0x1015e,2}}, {{0x1084,3},{0x1055,3}}, {{0x2151,5},{0x12a5,7}}, + {{0x3846,6},{0x11e4,8}}, {{0xbe0,1},{0x40b6,3}}, {{0x41be,3},{0xbc2,2}}, {{0x10fb,4},{0x13b84,5}}, + {{0x1b,1},{0x8a49,2}}, {{0x181c,3},{0xab9c,1}}, {{0x14b6,2},{0x19bc,4}}, {{0x709c,4},{0x10188,4}}, + {{0x20,2},{0xd5e,4}}, {{0x6c3e,3},{0x172b2,4}}, {{0xc13,3},{0xae5,1}}, {{0x3e04,5},{0xd088,5}}, + {{0xf697,5},{0x13a3,3}}, {{0xceb,3},{0x1318b,4}}, {{0x6d81,3},{0xa4c9,3}}, {{0xbb5,1},{0x2742,3}}, + {{0x38d2,7},{0x2d6a,7}}, {{0x2c76,4},{0xb63,3}}, {{0xeec,5},{0xadf,2}}, {{0xe994,4},{0xaec,2}}, + {{0xe36b,6},{0x2abe,5}}, {{0x19d4d,6},{0x1a,2}}, {{0xe64,5},{0x21,1}}, {{0x251df,1},{0xb31,1}}, + {{0x2474d,4},{0x6f90,2}}, {{0x10e6a,6},{0xb78,2}}, {{0x1b,1},{0x14d5,3}}, {{0xae7,1},{0x12e94,5}}, + {{0x244f5,2},{0xa51,2}}, {{0x10f0,1},{0x5af9,3}}, {{0x16dc,7},{0x25f9,6}}, {{0x981a,9},{0xb2e,2}}, + {{0x1f,1},{0xae2,1}}, {{0x10f3,1},{0x43e3,1}}, {{0xae0,1},{0x2a24,3}}, {{0xae9,2},{0x1d,1}}, + {{0x30,2},{0x2b854,2}}, {{0x2939,3},{0x1278,4}}, {{0xb52,2},{0xd1b,1}}, {{0x441c,3},{0x4ab0,3}}, + {{0xf3e0,6},{0xf3e6,5}}, {{0x179e6,4},{0x10dc,2}}, {{0xfc6a,5},{0xd17,3}}, {{0x845e,6},{0xb7c,3}}, + {{0x178c,3},{0x23d9,3}}, {{0x9f52,8},{0xb54,3}}, {{0xb6c,3},{0x1c419,4}}, {{0x271e,3},{0x10dc,2}}, + {{0x4266,5},{0x41ba,4}}, {{0xae6,2},{0xc67,2}}, {{0x1d46,5},{0x2138,5}}, {{0xabb2,6},{0xabc4,6}}, + {{0x21,2},{0x25df,4}}, {{0x1ffd9,5},{0xd1b,1}}, {{0xeec,5},{0xae2,1}}, {{0x755e,6},{0xb65,2}}, + {{0x244cb,4},{0x1cf1d,2}}, {{0xe6d,2},{0xb2f,1}}, {{0xd99f,6},{0x16be,3}}, {{0x10ec,1},{0xf69a,8}}, + {{0x948,16},{0x948,16}}, {{0x6787,3},{0x22c0,3}}, {{0x3c1a,9},{0xb52,5}}, {{0xb82,2},{0xcf0,2}}, + {{0xae8,2},{0xc2ea,3}}, {{0xae6,2},{0xb9c,2}}, {{0xb73,2},{0x2d,1}}, {{0x8962,6},{0xcc3,4}}, + {{0x142c,3},{0x20cd,7}}, {{0x6d81,3},{0xbd1,2}}, {{0xfc9,6},{0xb2e,2}}, {{0x35b4,7},{0xb55,2}}, + {{0xc25,3},{0xbf6d,5}}, {{0x2324,4},{0x29a6,6}}, {{0xb8b,2},{0xa623,4}}, {{0x159c8,1},{0x159c8,1}}, + {{0x80ce,6},{0x10c4,4}}, {{0x17bc,4},{0x2237,3}}, {{0x278af,1},{0x1b140,2}}, {{0xb54,2},{0x3a39,3}}, + {{0x1d5b5,5},{0xc34,3}}, {{0x4351,2},{0xbeb,1}}, {{0x278c9,2},{0x27897,1}}, {{0xa4fe,6},{0xb52,5}}, + {{0x10ea,3},{0xce2,3}}, {{0xa5d6,7},{0xa5dd,5}}, {{0xbc18,6},{0x102a,5}}, {{0x27b4,3},{0x4460,3}}, + {{0x8716,6},{0x3776,3}}, {{0x10f3,1},{0xadf,2}}, {{0x3ed0,3},{0x1bdb,3}}, {{0x17cc,4},{0xce1,4}}, + {{0x430,14},{0x432,2}}, {{0x19b3,4},{0x1257,2}}, {{0xcb5,3},{0xaec,2}}, {{0x6f14,6},{0x2b,2}}, + {{0xd98,12},{0xae7,1}}, {{0x278ad,3},{0x278a3,2}}, {{0x70dc,4},{0x410e,2}}, {{0xe75,6},{0x2b,3}}, + {{0xc37,3},{0x4f65,3}}, {{0x2868,4},{0x5396,3}}, {{0x5a8e,6},{0x3e19,4}}, {{0x3846,4},{0xc0c3,3}}, + {{0x178c,3},{0xb98,2}}, {{0xae5,1},{0xde1,2}}, {{0x41dc,3},{0xb65,2}}, {{0x253e,7},{0xb54,3}}, + {{0xbeb,1},{0x789d,4}}, {{0x181e,2},{0x13b7a,5}}, {{0x11fc,9},{0x2d44,4}}, {{0xcfd,6},{0x23af,4}}, + {{0x100d,5},{0x32ff,7}}, {{0x14cc,4},{0x11b8,4}}, {{0x142e,1},{0xee7,4}}, {{0x229b,9},{0x10c3,5}}, + {{0xb63,2},{0xbb5,1}}, {{0x1dbe,5},{0xb78,2}}, {{0xa492,8},{0xce8,3}}, {{0x5324,7},{0xb52,6}}, + {{0x8ce6,8},{0xb54,3}}, {{0xad32,7},{0x94b5,5}}, {{0x1ed53,1},{0x24460,2}}, {{0x10fb,3},{0x43e3,1}}, + {{0x432,1},{0x2445f,1}}, {{0xebf,3},{0xec2,2}}, {{0x4e5e,9},{0xae7,1}}, {{0x5277,2},{0x2b,3}}, + {{0xc25,3},{0xcc0e,3}}, {{0x13cf2,5},{0x3a39,3}}, {{0x278a7,3},{0x27a2b,2}}, {{0x2793d,4},{0x278a3,2}}, + {{0xddc,4},{0xb71,2}}, {{0x1d,1},{0xb55,3}}, {{0x10fb,6},{0x29b2,3}}, {{0x1878,1},{0xd60,5}}, + {{0xfdf,2},{0xb64,2}}, {{0xc37,10},{0x28,1}}, {{0x5442,4},{0x22e3,3}}, {{0x4292,3},{0x13b5,7}}, + {{0xedb,4},{0x1bdb,3}}, {{0x70c6,4},{0x1015e,2}}, {{0x1089,2},{0x621d,4}}, {{0x12882,5},{0xa60f,3}}, + {{0xd41,3},{0x5a52,4}}, {{0x4db5,6},{0x5d16,4}}, {{0x422e,3},{0xe6d,2}}, {{0xb299,6},{0x12ff,2}}, + {{0xfc9,6},{0x2dc0,6}}, {{0x174e,3},{0x10dc,2}}, {{0xcb5,6},{0xb71,2}}, {{0x441c,3},{0x11b2,4}}, + {{0xb63,2},{0x11ef,2}}, {{0xae6,3},{0x1a,1}}, {{0x10ea,3},{0x10ec,1}}, {{0xbe7,1},{0x1a5c,3}}, + {{0xc7b,4},{0xb52,5}}, {{0x6ac5,1},{0xe3b0,5}}, {{0x2b,2},{0xd51,2}}, {{0x1c,1},{0x6045,4}}, + {{0x9e9,2},{0x9e9,2}}, {{0x41da,3},{0x6dd7,3}}, {{0x1e,1},{0x27,1}}, {{0x3296,9},{0x372a,4}}, + {{0x884,16},{0x884,16}}, {{0x251ff,3},{0x25202,2}}, {{0x922,3},{0x116e,1}}, {{0xcfd,9},{0x62ed,4}}, + {{0x116c,2},{0x27897,1}}, {{0x969,4},{0x96d,4}}, {{0xf96,7},{0xf9d,4}}, {{0xeb8a,6},{0xb0d1,5}}, + {{0x12fe,3},{0x1257,3}}, {{0xf30,11},{0x2b,3}}, {{0x441c,3},{0x2200,5}}, {{0x24a2d,2},{0x27e2b,2}}, + {{0xcb8,2},{0x25df,4}}, {{0x2451f,2},{0xf907,2}}, {{0x2c76,4},{0x6f36,3}}, {{0x146c,6},{0xfe5,6}}, + {{0xae0,1},{0xc77,2}}, {{0x6812,5},{0xa294,3}}, {{0x181c,3},{0x14934,2}}, {{0x27b6,1},{0xb4b,2}}, + {{0xb44,3},{0x3789,3}}, {{0x5630,6},{0x4b65,7}}, {{0x6137,5},{0x115f0,4}}, {{0x1015a,6},{0x70a8,4}}, + {{0xbd6,2},{0x10e4,6}}, {{0x2061,5},{0x1f87,8}}, {{0xc13,4},{0x81e7,7}}, {{0x177c,3},{0x2ee4,8}}, + {{0x1171,2},{0x1b6ab,1}}, {{0x28,3},{0xb48,2}}, {{0x278ed,2},{0x116c,1}}, {{0xe86,8},{0xce8,3}}, + {{0x638d,8},{0x10dc,2}}, {{0x2b,3},{0xee0,3}}, {{0x3dcc,8},{0xce8,3}}, {{0x27b6,1},{0x27592,3}}, + {{0x24531,4},{0x1b6f5,2}}, {{0x1e45,3},{0xb55,2}}, {{0x16aed,5},{0x29da,3}}, {{0xb82,2},{0xe70,5}}, + {{0x6ac3,3},{0x1ad2,5}}, {{0x41be,3},{0x2bfc,2}}, {{0xccd,3},{0x3594,3}}, {{0x6ac5,1},{0x14933,3}}, + {{0xe42,7},{0x12d3,6}}, {{0x969,8},{0x969,8}}, {{0x10ec,1},{0x4119,3}}, {{0xba5,4},{0x250a,7}}, + {{0x12fc,4},{0x1cef,3}}, {{0x12143,2},{0x1a,1}}, {{0x27cea,1},{0x432,1}}, {{0x18a5,4},{0x108e,7}}, + {{0x20912,4},{0x428d,3}}, {{0x13282,7},{0xb67,2}}, {{0x60cf,8},{0xb78,2}}, {{0x7c66,7},{0xb52,5}}, + {{0xf905,4},{0x208a3,6}}, {{0x27e1c,2},{0x2445f,1}}, {{0x20bb,3},{0x15a1,3}}, {{0xbe0,1},{0x10f2,1}}, + {{0x1146e,6},{0x10dc,2}}, {{0x1a58,7},{0x1254,6}}, {{0x4351,2},{0xab9c,1}}, {{0x924,1},{0x27af7,2}}, + {{0x78ca,4},{0xb8a,2}}, {{0x12fe,2},{0x10504,4}}, {{0xbcb,3},{0x2c00,5}}, {{0x762a,5},{0xb52,2}}, + {{0x1224c,6},{0x1538,4}}, {{0x6ac3,3},{0xba7,3}}, {{0x3d78,9},{0x2b,3}}, {{0x12fe,2},{0xbb4c,5}}, + {{0x8e12,8},{0x2585,4}}, {{0xb44,3},{0x28cf,3}}, {{0x10756,8},{0xae7,1}}, {{0xceb,3},{0x21ab8,3}}, + {{0x177c,4},{0x173e,3}}, {{0xcc0,3},{0x28,1}}, {{0x99ee,7},{0x7fda,4}}, {{0xaca2,3},{0xcce,3}}, + {{0x27b4,3},{0xb70,2}}, {{0x1040,6},{0x1055,3}}, {{0x30,64},{0x30,28}}, {{0x53a6,6},{0x89bc,6}}, + {{0xcc7,3},{0xb70,3}}, {{0xbe7,1},{0x1196,5}}, {{0xae0,1},{0xbd6,2}}, {{0x6f74,4},{0x24733,2}}, + {{0x2912,5},{0x1f,2}}, {{0x28,1},{0x1520,2}}, {{0x3678,6},{0xb82,2}}, {{0xd79a,6},{0x3736,5}}, + {{0x3ec8,8},{0xb54,3}}, {{0x281d,5},{0x2de9,7}}, {{0xae2,2},{0xb75,3}}, {{0x29d6,5},{0xb65,2}}, + {{0xbcb,3},{0x4f65,3}}, {{0x177e3,8},{0xae7,1}}, {{0x19c9,6},{0xb2c,2}}, {{0x1a2b,8},{0x16b0,4}}, + {{0x143c,10},{0x1717,5}}, {{0x3ec8,8},{0xae7,1}}, {{0x50ce,8},{0xb2e,2}}, {{0x7f96,6},{0x7f9c,6}}, + {{0xae0,1},{0xec2,2}}, {{0x969,2},{0xfeee,2}}, {{0x8c4,4},{0x30,18}}, {{0x2657f,2},{0x24a30,2}}, + {{0x2043,8},{0x2566,4}}, {{0xae7,1},{0xb9d,3}}, {{0x1c29,6},{0x1c3e,9}}, {{0x7546,7},{0x591d,5}}, + {{0x10ea,3},{0x139e,3}}, {{0x27e20,2},{0x2446f,2}}, {{0x1084,3},{0xb78,2}}, {{0xf6e4,5},{0xfe5,2}}, + {{0xb60,2},{0xfb1,2}}, {{0x800e,7},{0x10b3,4}}, {{0x278c9,2},{0x279a7,2}}, {{0x19c26,2},{0xc63,3}}, + {{0x17bc,4},{0xc50d,5}}, {{0x41f6,4},{0x127a9,5}}, {{0x27b0f,2},{0x1b6ab,1}}, {{0x2867e,2},{0x1b4e3,1}}, + {{0xc49,3},{0xc8a,2}}, {{0xa08a,10},{0xae7,1}}, {{0xf2ac,4},{0x63d5,5}}, {{0x26f1,4},{0x3fb8,3}}, + {{0xc37,3},{0xcab,3}}, {{0xcd9,5},{0x2202,3}}, {{0x27c7f,4},{0x278af,1}}, {{0x4282,4},{0x4350,2}}, + {{0xd7e7,8},{0x1704,3}}, {{0xde9,1},{0x1f,1}}, {{0x67aa,6},{0xbc1,2}}, {{0x10910,6},{0x13a6,4}}, + {{0xadf,2},{0x159f,4}}, {{0x20bb,3},{0x1c68,3}}, {{0xa252,5},{0xd17,3}}, {{0x2d,1},{0x2dcb,4}}, + {{0x2445f,1},{0x24a2d,2}}, {{0xbe0,1},{0x1a,2}}, {{0xc675,5},{0x72ad,5}}, {{0xa7da,3},{0x10f6,1}}, + {{0x5365,5},{0xaf1,2}}, {{0x13e4,3},{0x11bd5,5}}, {{0xeb2,1},{0x139e,2}}, {{0x78a6,7},{0x10dc,2}}, + {{0x15dc,7},{0x21,1}}, {{0xbcb,3},{0xba7,3}}, {{0xb54,3},{0xb2c,2}}, {{0x40ce,5},{0xe4c5,3}}, + {{0x24462,1},{0x27e61,3}}, {{0x2859,5},{0x141c5,5}}, {{0x9b62,6},{0x1081,3}}, {{0xaea,1},{0x69f7,3}}, + {{0x2474d,4},{0xfeee,2}}, {{0x194a,6},{0x95c9,5}}, {{0x178c,3},{0xdf5,4}}, {{0x43a1,3},{0x40b8,2}}, + {{0xab9a,3},{0xaf1,1}}, {{0x16ae,2},{0xb78,2}}, {{0x39f8,5},{0xb68,4}}, {{0x415e,2},{0xcbd,3}}, + {{0x12fe,2},{0xd7f,3}}, {{0x758e,8},{0xae6,3}}, {{0x10f0,1},{0xaf2,1}}, {{0x6cbe,5},{0x5447,3}}, + {{0x6957,6},{0xb48,2}}, {{0x3996,5},{0x1434,3}}, {{0xceb,3},{0xb47,2}}, {{0x10fb,3},{0x696b,6}}, + {{0x1089,2},{0xaf2,1}}, {{0x9e9,2},{0xfed0,8}}, {{0x2b,2},{0x46c7,6}}, {{0x318c,5},{0x14e1,4}}, + {{0x278e1,2},{0x116d,1}}, {{0xd54,1},{0x10f0,1}}, {{0x3678,5},{0xbb5,1}}, {{0xbe7,1},{0xaf63,2}}, + {{0x14bf4,7},{0x1081,3}}, {{0xc29,2},{0xc55,2}}, {{0x5949,6},{0x2939,3}}, {{0x24462,1},{0x251cb,1}}, + {{0x27d24,3},{0x27cea,1}}, {{0x4034,7},{0x40bc,4}}, {{0x283e,2},{0x10f3,1}}, {{0x1cefd,5},{0xcc0,3}}, + {{0x10f7,1},{0x28da,1}}, {{0x1878,1},{0xae7,1}}, {{0x17fc,5},{0xbb5,1}}, {{0x21,1},{0x1c,1}}, + {{0xceb,3},{0xcdf,3}}, {{0xc46e,7},{0x2b,3}}, {{0xf90c,7},{0xb8c,3}}, {{0x19,1},{0x24a30,2}}, + {{0x27c7f,4},{0x1b6ab,1}}, {{0xae7,1},{0xb066,2}}, {{0x27,1},{0xb2e,2}}, {{0x278d5,2},{0x278dc,1}}, + {{0x145e6,2},{0x25da,3}}, {{0x10192,4},{0x1019a,4}}, {{0x12ae,3},{0xb54,3}}, {{0xb78,2},{0x139f,3}}, + {{0x3368,10},{0x10dc,2}}, {{0x3678,5},{0x372a,4}}, {{0xc12a,6},{0xd46,3}}, {{0x13e3,4},{0xb52,5}}, + {{0xeec,5},{0x240c,6}}, {{0x3162,5},{0x577c,6}}, {{0x26b5,4},{0x3e15,4}}, {{0x10fd,2},{0xb46d,5}}, + {{0xbcb,3},{0x84dd,5}}, {{0xd1a,2},{0xcce,3}}, {{0x52c9,9},{0xe7b,3}}, {{0x7c5a,6},{0x69c3,5}}, + {{0x122c,4},{0xeb3,3}}, {{0x18094,6},{0xae7,1}}, {{0x1477e,6},{0xb54,2}}, {{0x58f1,3},{0x2b,1}}, + {{0x12bc,5},{0xae6,3}}, {{0x271e,3},{0xcd5,2}}, {{0x151c,6},{0x106a4,4}}, {{0x3846,4},{0x1bfc9,4}}, + {{0x5136,6},{0x1f13,4}}, {{0xc25,3},{0x40b6,4}}, {{0x1cb0,8},{0xebf,3}}, {{0x30,2},{0x27cc5,2}}, + {{0x28da,1},{0x582d,4}}, {{0x42ae,3},{0x5275,4}}, {{0x27d2,6},{0xb9d,3}}, {{0x13cd4,5},{0x2b,2}}, + {{0xde9,1},{0x49ae,4}}, {{0x2796,3},{0x1f,1}}, {{0x423e,1},{0x12f1,3}}, {{0x278e1,2},{0x1b6ab,1}}, + {{0x4a82,8},{0x2b,3}}, {{0x10f3,1},{0xaf1,2}}, {{0x278af,1},{0x278f3,2}}, {{0x2403,7},{0x253a,4}}, + {{0xcfd,5},{0x18ca,3}}, {{0x41be,3},{0xc30,2}}, {{0x15ac,10},{0xff7,5}}, {{0xceb,3},{0x67a0,5}}, + {{0x10ca,1},{0xdf6,3}}, {{0x1051,4},{0xb8a,2}}, {{0x271e,3},{0xcb8,2}}, {{0xbeb,1},{0xe6d,2}}, + {{0x10ca,1},{0x5f90,3}}, {{0x6e10,4},{0x2d5d,4}}, {{0x10fb,4},{0xcd5,2}}, {{0xd04c,5},{0xe652,5}}, + {{0x804,2},{0x6fac,2}}, {{0x30c8,7},{0xb52,5}}, {{0x4196,2},{0xb82,2}}, {{0x532,66},{0x30,14}}, + {{0x1ac2e,7},{0xaf1,2}}, {{0x19b94,4},{0x1a28f,3}}, {{0x2b,2},{0x5fe0,4}}, {{0xc67,3},{0xb79,2}}, + {{0x67aa,6},{0x10dc,2}}, {{0x7102,5},{0x1b07,4}}, {{0x422e,3},{0xb2c,2}}, {{0xe64,5},{0xae7,2}}, + {{0xedb,5},{0xc63,3}}, {{0x41da,3},{0x8a49,2}}, {{0x19c2d,4},{0x3ba5,4}}, {{0xfd7d,5},{0x1d,1}}, + {{0x3996,5},{0x2945,5}}, {{0xb7d,1},{0xbb4,4}}, {{0xc1c,2},{0xce8,3}}, {{0x7e9a,5},{0xc8a,2}}, + {{0x2912,5},{0xbb5,1}}, {{0x10ec,1},{0x4284,2}}, {{0x18d4,3},{0xaf2,1}}, {{0x4417,2},{0x2844,3}}, + {{0x1c,1},{0xeb2,1}}, {{0x3f9a,4},{0xb55,2}}, {{0xee1,3},{0x10dc,2}}, {{0x5476,9},{0xae6,3}}, + {{0x1adf,5},{0x253a,4}}, {{0x2445f,1},{0x27c9b,2}}, {{0x257a,4},{0x4ab0,3}}, {{0x9b92,7},{0x25df,4}}, + {{0x90e2,4},{0xa5de,4}}, {{0xd892,3},{0x2b,3}}, {{0x278af,1},{0x278db,2}}, {{0x922,3},{0x278a9,1}}, + {{0x41be,7},{0xd1a,7}}, {{0x2859,5},{0xb71,2}}, {{0xa4b,4},{0x2472b,4}}, {{0x2ae0,7},{0xec2,2}}, + {{0xbe0,1},{0xcc0,3}}, {{0x159c8,1},{0x24f9a,3}}, {{0xc25,4},{0x1055,3}}, {{0x27d24,3},{0x117c,1}}, + {{0x2445f,1},{0x24f9a,3}}, {{0xc89,2},{0xd11,4}}, {{0xae9,3},{0x19bd,5}}, {{0xb76,3},{0xd1b,1}}, + {{0x1e54,6},{0x296f,5}}, {{0xadf,2},{0xb63,3}}, {{0x6d8e,3},{0xbb4,2}}, {{0x773e,9},{0x10dc,2}}, + {{0x244b9,2},{0x70a2,2}}, {{0x1257,2},{0x4575,2}}, {{0xae6,2},{0xaea,2}}, {{0x16aff,5},{0xb2e,2}}, + {{0x9e9,4},{0x9e9,10}}, {{0x27c7f,4},{0x116d,1}}, {{0x27cc5,2},{0x1ed58,1}}, {{0x21,1},{0xbb5,1}}, + {{0x3a22,5},{0x3a27,4}}, {{0x16188,5},{0x1019,4}}, {{0xf419,3},{0x103a,3}}, {{0x19b3,4},{0x9b41,3}}, + {{0x193b4,5},{0x11ef,2}}, {{0xded,5},{0x11c4,6}}, {{0xddc,4},{0x3921,5}}, {{0x6ac5,1},{0xbb2a,4}}, + {{0x1a,2},{0xae5,1}}, {{0x278cf,2},{0x278d6,1}}, {{0xff20,4},{0xfee4,4}}, {{0x4088,7},{0xb78,2}}, + {{0xcb5,3},{0xcd4,3}}, {{0x5317,5},{0xb75,2}}, {{0x10ea,3},{0xae2,2}}, {{0xaea,1},{0xb7d,1}}, + {{0x10c8,3},{0x1a1f7,2}}, {{0x10c8,3},{0xcd5,2}}, {{0x17bc,3},{0xb73,2}}, {{0xb0ce,3},{0x2b,1}}, + {{0x70dc,4},{0x1b887,2}}, {{0xb05d,5},{0x37f6,4}}, {{0x39ce,5},{0x7654,6}}, {{0x41da,3},{0xb52,2}}, + {{0x244b9,2},{0x24515,2}}, {{0xf1fc,7},{0xcc3,4}}, {{0x41be,3},{0x1cf22,4}}, {{0x7bbe,10},{0xd0d,2}}, + {{0x1040,5},{0x16077,3}}, {{0x1084,3},{0x4590,5}}, {{0x2b,1},{0x1719,3}}, {{0xbfbf,8},{0x10dc,2}}, + {{0xf85,4},{0x9932,6}}, {{0x14fc8,5},{0xfcea,4}}, {{0xfdd,2},{0x33f7,4}}, {{0xcab,3},{0xb52,5}}, + {{0x27,1},{0x28,6}}, {{0x2446a,3},{0x27cf8,2}}, {{0xe64,5},{0x1269f,2}}, {{0xcfd,5},{0x3c65,7}}, + {{0x397a,5},{0x1ec2,4}}, {{0xd78,5},{0xfdf,3}}, {{0x326c,4},{0x1a9d,3}}, {{0x3f9a,7},{0x3fa1,7}}, + {{0x441c,3},{0x13c87,4}}, {{0x2793d,4},{0x27a01,2}}, {{0x234f,9},{0x1434,3}}, {{0x734,32},{0x734,32}}, + {{0x30,2},{0x804,4}}, {{0xbde,3},{0x2b76,3}}, {{0xc25,4},{0xdfa,3}}, {{0x17731,5},{0xae7,1}}, + {{0x13ba8,6},{0xb2c,4}}, {{0x12ac,5},{0xadf,2}}, {{0x663e,8},{0xb52,5}}, {{0xf9ef,3},{0xf8a3,4}}, + {{0x145e4,4},{0xc1c,2}}, {{0x2d12,4},{0x10504,4}}, {{0x498b,8},{0x2b,3}}, {{0xcb5,3},{0xe6d,4}}, + {{0x16706,6},{0xb78,2}}, {{0x6d81,3},{0x14d5,3}}, {{0xbd6,4},{0x1257,3}}, {{0x41be,3},{0x14c01,7}}, + {{0x1f031,5},{0xec6d,3}}, {{0x119c,7},{0x7385,5}}, {{0x2796,3},{0xb7d,2}}, {{0x116c,2},{0x278af,1}}, + {{0x5ca5,5},{0x16f8,3}}, {{0x1b25b,4},{0xb2f,1}}, {{0x1a266,5},{0xbcfa,4}}, {{0x57f7,6},{0x1555,7}}, + {{0xeb2,1},{0xc67,2}}, {{0x178c,3},{0x28da,1}}, {{0xb47,2},{0x10dc,2}}, {{0x27c3,5},{0x1ab6d,4}}, + {{0x1817e,5},{0xae7,1}}, {{0x20bb,3},{0x1402,2}}, {{0xb22b,8},{0x10dc,2}}, {{0x229b,5},{0xcb8,3}}, + {{0x364e,4},{0x12c33,5}}, {{0x2a9ac,2},{0x28633,2}}, {{0x11ef,2},{0x2202,3}}, {{0xddc,4},{0x4a30,4}}, + {{0xb8b,2},{0x1675,2}}, {{0x3782,5},{0xc8e,3}}, {{0x92a0,3},{0xb54,2}}, {{0xae4,2},{0xae6,3}}, + {{0x6443,6},{0x20cd,7}}, {{0xd5b6,6},{0x10dc,2}}, {{0x7a6e,5},{0xff7,5}}, {{0x6de9,8},{0x2683,5}}, + {{0x10ca,1},{0x6dd7,3}}, {{0x16bc,4},{0x10d9b,4}}, {{0x278b5,2},{0x27897,1}}, {{0x716e,5},{0x1538,4}}, + {{0x6ac5,1},{0x1ba78,5}}, {{0x1f,1},{0x27,1}}, {{0xa083,4},{0x1f,2}}, {{0x897a,6},{0xe70,5}}, + {{0xbd8,2},{0xc21,4}}, {{0xbe7,1},{0x2b,2}}, {{0x178c,3},{0xce2,3}}, {{0xf85,4},{0xb7d,1}}, + {{0xe53,11},{0xb52,5}}, {{0xdba,4},{0xca7,4}}, {{0x27c3,4},{0xc52,2}}, {{0x6144,7},{0xb54,3}}, + {{0x24ba,3},{0xb8f,3}}, {{0xaea,1},{0x5575,5}}, {{0xb8b,2},{0xb78,2}}, {{0x1e,1},{0x12be,3}}, + {{0xcb5,3},{0x1361,2}}, {{0x14940,6},{0x14d5,3}}, {{0xc25,4},{0x4cec,6}}, {{0x16bc,4},{0xbefd,7}}, + {{0x22f45,5},{0x1695,2}}, {{0x133a4,8},{0x12ff,2}}, {{0xe53,7},{0x4cb8,6}}, {{0xc67,2},{0xb6e,2}}, + {{0x3234,4},{0x6f36,3}}, {{0xb8f,2},{0x22b70,3}}, {{0xaca2,3},{0x1fc44,5}}, {{0x24a8,6},{0x11ef,3}}, + {{0x264c,4},{0xb85,2}}, {{0xaca2,3},{0xbb4,2}}, {{0x26c6,1},{0x2840,2}}, {{0xbb5,1},{0x2d,1}}, + {{0x1a9d,3},{0xb2c,2}}, {{0xd784,5},{0x13e4,3}}, {{0x10ea,3},{0xab25,9}}, {{0x2f54,5},{0xb76,3}}, + {{0x7822,9},{0xb8f,3}}, {{0xd76,7},{0x7445,5}}, {{0x1942,4},{0x1257,3}}, {{0x82a2,6},{0xc1e,5}}, + {{0x119c,5},{0xc63,3}}, {{0xf905,4},{0x28,1}}, {{0x133c2,6},{0xeb5,4}}, {{0x6d8e,3},{0xb48,2}}, + {{0x2793d,4},{0x278a9,2}}, {{0xb609,6},{0xae7,1}}, {{0xc17,3},{0x12d3,6}}, {{0x1c,1},{0x18934,5}}, + {{0x4402,2},{0x5f33,6}}, {{0x264c,6},{0x1058,9}}, {{0x142e,1},{0xeb2,1}}, {{0x43e3,1},{0x27b6,1}}, + {{0x4d97,2},{0xaf2,1}}, {{0x177c,3},{0x10dc,2}}, {{0x1f,1},{0xb8f,2}}, {{0x10f7,1},{0x2b,1}}, + {{0xf52,4},{0x2986,4}}, {{0x10ea,3},{0x10fa,1}}, {{0x5ed4,4},{0xc8a,2}}, {{0x45fd,5},{0xb79,2}}, + {{0xf49b,5},{0xf595,5}}, {{0xef7e,8},{0xd57,2}}, {{0x142e,1},{0x14b6,2}}, {{0xb64,2},{0x114d,2}}, + {{0xb72,2},{0x28,1}}, {{0x167c,4},{0xc1e,5}}, {{0x6d81,3},{0x2b,1}}, {{0xcde,3},{0xb7d,2}}, + {{0x28cf,3},{0x2be6,4}}, {{0xf63,5},{0x1a,3}}, {{0xcd9,3},{0xa24a,3}}, {{0x2796,3},{0x10f3,1}}, + {{0x2427,3},{0xc1c,2}}, {{0x1509c,2},{0x12bc4,3}}, {{0xfe38,4},{0xb6e,2}}, {{0x6d8e,3},{0xf8e1,4}}, + {{0x1961,3},{0xb55,2}}, {{0xa45d,4},{0xb2f,1}}, {{0xae5,1},{0xbc2,2}}, {{0x278e1,2},{0x278af,1}}, + {{0x1a,2},{0xb066,2}}, {{0x244f5,2},{0x1cf1d,2}}, {{0xae0,1},{0xaea,1}}, {{0x20b39,4},{0xc3e,2}}, + {{0x131b2,4},{0x1a,2}}, {{0x1040,5},{0xb2c,2}}, {{0x33b2,3},{0x10599,5}}, {{0xae7,1},{0x8ec8,4}}, + {{0xd41,4},{0x79ca,4}}, {{0x532,34},{0x30,12}}, {{0x969,2},{0x1b887,2}}, {{0x2a9a,8},{0xc34,3}}, + {{0xd41,4},{0xbb6c,7}}, {{0xbde,3},{0x1cef,3}}, {{0x1084,3},{0x14d5,3}}, {{0xebcc,4},{0xeb2,1}}, + {{0x530a,5},{0xae5,1}}, {{0x278b5,2},{0x278a9,1}}, {{0x10ef,1},{0x2c2d,3}}, {{0x2c9f8,4},{0x157f2,2}}, + {{0xcc7,3},{0x96c1,8}}, {{0x2746,4},{0x2af8,4}}, {{0xc1c,2},{0x16f8,3}}, {{0xc4d,2},{0x1f,1}}, + {{0x333e,10},{0xb9d,3}}, {{0xd41,3},{0x166a6,5}}, {{0x1a326,4},{0x1b,1}}, {{0x1daad,5},{0xb9f,2}}, + {{0xf5b0,7},{0xc95d,4}}, {{0xe75,4},{0xdf0,2}}, {{0xc1c4,5},{0x2af8,4}}, {{0xa98a,7},{0x12d7,5}}, + {{0xa592,6},{0xae0,1}}, {{0x1c,1},{0x16f8,3}}, {{0x3846,4},{0x15f26,3}}, {{0x14cc,5},{0x11e4,4}}, + {{0x27b4,3},{0x29a9b,2}}, {{0x762a,4},{0x763a,5}}, {{0x265d,3},{0xc34,3}}, {{0x261f,5},{0x14229,4}}, + {{0x6672,5},{0x84f6,4}}, {{0xd8ce,6},{0xb78,2}}, {{0x1095,3},{0x1974d,6}}, {{0xd5e,4},{0xb63,2}}, + {{0xb30,2},{0xb32,3}}, {{0x38fc,9},{0xeb3,3}}, {{0x14346,5},{0xd51,2}}, {{0x10f0,1},{0x10f0,1}}, + {{0xddc,4},{0xd51,2}}, {{0xebed,6},{0x5fc7,4}}, {{0xbd2,3},{0xf01,4}}, {{0xa01e,7},{0x2683,5}}, + {{0xae7,1},{0xc30,2}}, {{0x177c,3},{0x4119,3}}, {{0x5e11,6},{0x222c,6}}, {{0xafea,5},{0x971a,4}}, + {{0xb257,9},{0xaf2,1}}, {{0x1961,3},{0x6c28,4}}, {{0x6f62,4},{0x244ed,2}}, {{0x1cec,6},{0x1a,1}}, + {{0xc1c,2},{0xb2c,2}}, {{0x28da,1},{0x3776,3}}, {{0x2796,3},{0x1a8d,5}}, {{0xb63,2},{0x1d8c,2}}, + {{0x278af,1},{0x27b03,2}}, {{0x23cad,5},{0xbd4,2}}, {{0x6d81,3},{0xc30,2}}, {{0x948,1},{0x28634,1}}, + {{0x8a22,7},{0xb8f,3}}, {{0x1084,3},{0xae6,2}}, {{0x181bd,7},{0xb65,2}}, {{0xfefc,4},{0x1b203,4}}, + {{0x2769,5},{0xb47,2}}, {{0x5483,4},{0x6c85,5}}, {{0xaab8,4},{0xb52,5}}, {{0x28423,2},{0x251de,2}}, + {{0x10c8,3},{0x2a90,2}}, {{0x508d,5},{0xdf0,2}}, {{0x142e,1},{0xc67,2}}, {{0xcd9,3},{0x14a7,5}}, + {{0x924,2},{0x1b140,2}}, {{0xaf1,1},{0xc67,3}}, {{0x1ed58,1},{0x1ed53,1}}, {{0x1f,2},{0xaea,2}}, + {{0x10ec,1},{0xb2e,2}}, {{0x278ad,4},{0x278dc,1}}, {{0x244b3,2},{0xf907,2}}, {{0x2868,4},{0xc67,2}}, + {{0xa6c6,7},{0xce8,3}}, {{0x24b7,5},{0x760b,3}}, {{0xaeb,2},{0xadf,2}}, {{0x1084,3},{0xb63,3}}, + {{0x374a,6},{0x14a7,5}}, {{0x3226,8},{0xd7f,3}}, {{0x1b4e3,1},{0x2446f,2}}, {{0x72fa,9},{0xd0d,2}}, + {{0x278af,1},{0x278a9,2}}, {{0x10f3,1},{0x14d5,3}}, {{0x1ab2,4},{0x1498,4}}, {{0x1adf0,5},{0xf47,4}}, + {{0x17bc,3},{0xae0,2}}, {{0x27c7f,4},{0x278dc,1}}, {{0x441c,3},{0x2279,4}}, {{0x2c93e,4},{0x2ae5b,2}}, + {{0x10ca,1},{0x28fe,6}}, {{0xaca2,3},{0x29938,2}}, {{0x253fb,3},{0xb31,1}}, {{0x4450,7},{0x12143,2}}, + {{0x3a3e,5},{0x80be,4}}, {{0x10f2,1},{0x155dd,3}}, {{0x804,2},{0x70da,2}}, {{0xbd8,2},{0x37cf,3}}, + {{0x251d8,2},{0x1b4e3,1}}, {{0x10ca,1},{0xf49e,4}}, {{0xc37,3},{0x700f,3}}, {{0xbe7,1},{0xd8b0,8}}, + {{0x10ec,1},{0x4417,2}}, {{0xeca,4},{0x1ae3,2}}, {{0x2b,1},{0xbd1,2}}, {{0x58ee,6},{0x58f4,5}}, + {{0x2c00,3},{0x2b,3}}, {{0xab9a,3},{0xd5c,1}}, {{0x17bc,4},{0xb7d,1}}, {{0xc5ce,6},{0xae7,1}}, + {{0x4701,5},{0xbd6,8}}, {{0x244b9,2},{0x24873,2}}, {{0x278cf,2},{0x27897,1}}, {{0xfd25,4},{0x114d,2}}, + {{0x1b13e,3},{0x27a13,2}}, {{0xc16c,8},{0x10dc,2}}, {{0x5102,5},{0x11af9,4}}, {{0x449e,6},{0x44a4,7}}, + {{0x278af,1},{0x1b6b3,2}}, {{0x1a67,7},{0xbe8,3}}, {{0x6d81,3},{0x27202,3}}, {{0x1307,3},{0xaf2,1}}, + {{0xb6fb,6},{0x79f9,4}}, {{0x446a,8},{0xb8f,3}}, {{0x5fcb,7},{0x1372,3}}, {{0x8e42,8},{0xc7b,4}}, + {{0x10ca,1},{0xcc0,3}}, {{0x2c76,4},{0xb8f,2}}, {{0x278a9,1},{0x1173,2}}, {{0xeb2,1},{0xae5,1}}, + {{0x44df,6},{0x1667,5}}, {{0x725e,7},{0x11b8,4}}, {{0x2133,7},{0x1037,6}}, {{0xf0e,6},{0x108e,7}}, + {{0x6957,5},{0x197f,7}}, {{0xadf,2},{0x1d,1}}, {{0x740e,6},{0x1a,3}}, {{0x6b54,2},{0xce2,3}}, + {{0xceb,3},{0x43e5,3}}, {{0xaca2,3},{0xb78,2}}, {{0x3402,7},{0xc7b,4}}, {{0xcb5,3},{0xd45,3}}, + {{0xbd8,2},{0x887a,4}}, {{0x159c,4},{0xb67,2}}, {{0xc13,4},{0xa69c,6}}, {{0x1bfc,6},{0xd9f,8}}, + {{0x1ee39,5},{0x132f,3}}, {{0x7a32,5},{0x1e6c,6}}, {{0x423e,1},{0x270b2,3}}, {{0x29e7a,2},{0x24,1}}, + {{0x2445f,1},{0x2aeb3,2}}, {{0xc4d,2},{0xae7,1}}, {{0x3db0,5},{0xb78,2}}, {{0x734,1},{0x251cb,1}}, + {{0xbde,3},{0xbe4,1}}, {{0x10ca,2},{0xb2e,2}}, {{0xd54,1},{0x152c4,2}}, {{0xab9a,3},{0xb4b,2}}, + {{0x257a,4},{0xc9a,2}}, {{0x5442,5},{0x674c,3}}, {{0x124c,5},{0x315b,7}}, {{0x10196,4},{0x1019a,4}}, + {{0x18df9,5},{0x3a3b,3}}, {{0x19b70,5},{0xd17,3}}, {{0x16b98,5},{0x132f,3}}, {{0xcd9,3},{0x3e2a,4}}, + {{0xc25,3},{0xe6d,2}}, {{0x26b5,4},{0xbd6,2}}, {{0x3a39,3},{0x1f,1}}, {{0xc30,2},{0x2349,6}}, + {{0x35ec,6},{0x10569,3}}, {{0x6b11,5},{0xdbf,3}}, {{0x10f2,1},{0x10f0,1}}, {{0x101e,7},{0x1e6c,6}}, + {{0x177c,3},{0xb6d2,5}}, {{0xba7,3},{0x28,1}}, {{0x11c66,5},{0x4453,4}}, {{0xacb0,2},{0x10008,4}}, + {{0x2cdb2,4},{0x1b709,2}}, {{0xaca2,3},{0xf8cb,4}}, {{0x180e,2},{0x1372,3}}, {{0x101e,12},{0xb68,4}}, + {{0x3234,3},{0xbb0,2}}, {{0x1c,1},{0xae0,1}}, {{0x6380,9},{0xc63,3}}, {{0x10ea,3},{0x263f,3}}, + {{0x2446c,1},{0x27d8b,2}}, {{0x5444,3},{0xce8,3}}, {{0x27457,4},{0x10f8,2}}, {{0x2d,1},{0xb79,2}}, + {{0x30,64},{0x30,32}}, {{0x80c2,6},{0xc63,3}}, {{0x261f,4},{0x760b,7}}, {{0x4088,7},{0xe4c,7}}, + {{0x9226,7},{0x1489,3}}, {{0x6894,10},{0x2b,3}}, {{0x3f46,9},{0x11b8,4}}, {{0x10fb,3},{0xc593,4}}, + {{0x410c,4},{0x1b,1}}, {{0x1b87f,6},{0x1b237,4}}, {{0x422e,3},{0x295c,4}}, {{0x28cf,3},{0xc63,3}}, + {{0xc4d,2},{0x23ce,4}}, {{0xf85,4},{0xdfc9,6}}, {{0x81fa,8},{0x2b,3}}, {{0xf85,4},{0x29a6,6}}, + {{0xfdd,2},{0x250a,7}}, {{0x24531,4},{0x5c78,2}}, {{0x594f,4},{0x2b,3}}, {{0x6b5f,5},{0x22c0,3}}, + {{0x3c36,11},{0xb2e,2}}, {{0x6ac3,3},{0xc9f2,3}}, {{0x1084,3},{0x5277,2}}, {{0xc30,2},{0xd1a,7}}, + {{0xd76,4},{0xc15,3}}, {{0x4290,4},{0x27,1}}, {{0xbb5,1},{0x40b6,3}}, {{0x619f,5},{0xba7,3}}, + {{0xe3ad,8},{0xb54,3}}, {{0xbde,3},{0x434f,2}}, {{0xb066,2},{0xb55,2}}, {{0xb4a,2},{0x94a5,4}}, + {{0x14b40,6},{0x1081,3}}, {{0xd0f,11},{0x1498,3}}, {{0x20d9,5},{0x1e6c,6}}, {{0x2769,6},{0xcd3,2}}, + {{0xcd9,3},{0xaf2,1}}, {{0xcb5,3},{0xc0c3,4}}, {{0x100d,5},{0x32ff,4}}, {{0x2912,4},{0x2b,2}}, + {{0xf96,4},{0x23d9,3}}, {{0x5c98,5},{0xb68,4}}, {{0x804,2},{0x159cd,2}}, {{0xaf4e,6},{0x45a9,6}}, + {{0xa7da,3},{0x2b,1}}, {{0x1d89,4},{0xb6e,2}}, {{0x9e9,2},{0x532,10}}, {{0x10ea,3},{0x43ac,7}}, + {{0x3f9a,4},{0x209f,4}}, {{0x278c9,2},{0x116e,1}}, {{0x4450,5},{0xc8a3,3}}, {{0xdde0,5},{0x1719,3}}, + {{0x6e5e,5},{0x1b0a,2}}, {{0x12ac,5},{0xa5de,4}}, {{0xc4d,2},{0xcab,3}}, {{0x70dc,4},{0x1b23d,2}}, + {{0x1aaed,1},{0x1595a,2}}, {{0x5442,5},{0xd0b,4}}, {{0x8aa6,6},{0x10dc,2}}, {{0x10f7,1},{0x121e1,6}}, + {{0x804,2},{0x5c78,2}}, {{0x24a2f,3},{0x2446f,2}}, {{0x256b,4},{0x459e,4}}, {{0x2844,2},{0xaaf0,2}}, + {{0x45fd,5},{0x1481,3}}, {{0xaea,1},{0x10c4,4}}, {{0x4979,3},{0x81e6,4}}, {{0x134c,5},{0x12bcc,3}}, + {{0x10ef,1},{0x69f7,3}}, {{0xf4dd,5},{0x1fb7,5}}, {{0x9f8e,9},{0xb78,2}}, {{0x27b4,3},{0xc77,2}}, + {{0xdc28,5},{0x1af8,5}}, {{0x177c,3},{0xfb1,2}}, {{0xc25,3},{0xb46d,5}}, {{0x2349,4},{0x1b,1}}, + {{0xab46,7},{0x426b,4}}, {{0x2106,5},{0x103a,3}}, {{0x67de,9},{0x10dc,2}}, {{0x6b06,3},{0xb5f8,6}}, + {{0x1b23f,4},{0x70d4,4}}, {{0x924,1},{0x27aeb,2}}, {{0xf65,3},{0x13b5,7}}, {{0x6957,5},{0xc34,3}}, + {{0x12ff,2},{0xd1b,1}}, {{0x6f21,5},{0xa3fb,6}}, {{0x41be,3},{0x10ba,2}}, {{0xae7,2},{0xa24a,3}}, + {{0x2445f,1},{0x2446f,2}}, {{0x41da,5},{0x5396,3}}, {{0x4e85,5},{0x1499,2}}, {{0xab9c,1},{0x10f0,1}}, + {{0x3bfe,9},{0xc8c,5}}, {{0xbcb,3},{0x4ab0,4}}, {{0x14cd0,5},{0x107d,3}}, {{0x1afd,5},{0xe1a,6}}, + {{0x12be,3},{0xc51,2}}, {{0x5d5b,5},{0x95bb,7}}, {{0x10ea,3},{0x11f57,6}}, {{0x122c,6},{0x1058,9}}, + {{0xba7,3},{0x1fb2,8}}, {{0x9a9,1},{0x18,1}}, {{0xb30,2},{0x780,1}}, {{0xf8de,4},{0x1862,3}}, + {{0xaee7,2},{0xf829,2}}, {{0xbb5,1},{0xc34,2}}, {{0x244ad,2},{0x6f90,2}}, {{0x10ef,1},{0x2a16,3}}, + {{0x1fbf9,6},{0xb67,2}}, {{0x278cf,2},{0x116e,1}}, {{0x5365,5},{0xeb3,3}}, {{0x2d,1},{0x27,1}}, + {{0x7a56,5},{0x7a5b,6}}, {{0x1a1f7,2},{0xbeb,1}}, {{0x47b7,8},{0x354d,5}}, {{0x10ea,3},{0x4c27,5}}, + {{0xca3,5},{0x16e2,2}}, {{0x4362,4},{0x55d1,4}}, {{0x1a2b,6},{0x887b,3}}, {{0x922,3},{0x278dc,1}}, + {{0x139c,6},{0xaf1,1}}, {{0x177c,3},{0xb71,2}}, {{0x1308,3},{0x1468,4}}, {{0xceb,5},{0x2b,3}}, + {{0x12fc,10},{0x10dc,2}}, {{0x6ac3,3},{0xeee,5}}, {{0xa7d,12},{0xa7d,12}}, {{0x1095,3},{0x16ef,4}}, + {{0x2421,7},{0x11f2,3}}, {{0x6c0a,2},{0xc69a,6}}, {{0x4c7d,6},{0xcf6,3}}, {{0xcc37,7},{0x2b,3}}, + {{0x278db,2},{0x1b6ab,1}}, {{0x1a88,3},{0xb52,5}}, {{0xa7da,3},{0x2a92,5}}, {{0x14094,8},{0xb65,2}}, + {{0x725e,7},{0xce8,3}}, {{0xad32,7},{0x16f8,3}}, {{0xb82,2},{0x1f13,4}}, {{0xebe2,7},{0x2b,3}}, + {{0xae7,2},{0xff90,4}}, {{0x8abe,5},{0xeb5,4}}, {{0xcd9,3},{0xb29c,3}}, {{0x27ab5,2},{0x116e,1}}, + {{0x10f7,1},{0x1a568,6}}, {{0xb78,2},{0xb67,2}}, {{0x31c4,8},{0x1081,3}}, {{0x10ec4,6},{0xd17,3}}, + {{0x69f3,7},{0xb7c,3}}, {{0x17bc,3},{0xc78,3}}, {{0xb82,2},{0xb68,4}}, {{0x2732,4},{0xe70,4}}, + {{0xa77a,7},{0xd7f,3}}, {{0x122c4,6},{0xb78,2}}, {{0x10ec,1},{0x1f10,4}}, {{0xf96,4},{0x25da,3}}, + {{0xbeb,1},{0x1489,3}}, {{0x364e,4},{0x1c25,4}}, {{0xd5c,1},{0x1790e,4}}, {{0x725e,5},{0x15583,3}}, + {{0x30f2,7},{0x30f9,7}}, {{0x181c,3},{0xd54,1}}, {{0x25c5,5},{0x31f8,4}}, {{0x24a41,2},{0x734,1}}, + {{0x2b,2},{0xb2c,2}}, {{0x1aefe,5},{0xf8a3,4}}, {{0x5428,7},{0xc8f,2}}, {{0xddc,4},{0x443d,3}}, + {{0x1b57,4},{0x27,1}}, {{0xb44,3},{0xc1e,2}}, {{0xf30,5},{0x1d22,6}}, {{0x1051,4},{0x202c,3}}, + {{0xd41,3},{0x28995,4}}, {{0x5af9,3},{0x2b,1}}, {{0x251fe,2},{0x2864c,1}}, {{0xae2,2},{0xbac,4}}, + {{0x10ef,1},{0xdd3,3}}, {{0x7792,9},{0xb7c,3}}, {{0x178c,3},{0x25da,3}}, {{0x14dc,4},{0x4fdd,7}}, + {{0x30,2},{0xb2c,2}}, {{0xd76,7},{0x46c7,6}}, {{0xdf0,2},{0x11e6,6}}, {{0x78d6,6},{0x11b8,4}}, + {{0x1d98,3},{0xb6e,2}}, {{0x178c,3},{0x10f6,1}}, {{0x7c4,16},{0x7c4,6}}, {{0x278d5,2},{0x1b6ab,1}}, + {{0xa4d,2},{0x6fac,2}}, {{0xaeb,2},{0xb6e,2}}, {{0xbbf,2},{0x25df,4}}, {{0x6ac3,3},{0x1b4f,3}}, + {{0xb2f,1},{0x28,2}}, {{0x1b12c,4},{0x15ae3,2}}, {{0x6ac3,3},{0xb47,2}}, {{0x4a75,6},{0xe72,3}}, + {{0xae7,1},{0xba63,8}}, {{0xeca,4},{0xbb5,3}}, {{0x4c97,7},{0x7fda,4}}, {{0xc25,3},{0x16ec7,5}}, + {{0x13680,5},{0xb47,2}}, {{0x17fc,5},{0xb8b,2}}, {{0x10fb,3},{0x2847,2}}, {{0xc1e,2},{0x1e,1}}, + {{0x3100,6},{0xaf1,1}}, {{0x27ce8,3},{0x780,1}}, {{0x8722,9},{0x103a,3}}, {{0x924,1},{0x278a3,2}}, + {{0x1ab05,6},{0x1054,3}}, {{0x3640,8},{0x10dc,2}}, {{0x5ae9,6},{0x2d44,4}}, {{0xbd6,2},{0xb52,5}}, + {{0xcd9,3},{0x166ef,5}}, {{0xb4a,3},{0xbb5,1}}, {{0xbc70,6},{0x7a46,4}}, {{0x12116,5},{0x3fdc,4}}, + {{0x6b22,5},{0x4d56,4}}, {{0xc55,2},{0xb63,2}}, {{0x10ca,1},{0x14b6,2}}, {{0x28d1,3},{0xb2f,1}}, + {{0x2796,3},{0x1915,6}}, {{0xd65,3},{0x3245,4}}, {{0x3640,4},{0x10008,4}}, {{0x30,2},{0x3776,3}}, + {{0x2201,3},{0xd0c,2}}, {{0x100d,6},{0xb2c,4}}, {{0x7702,8},{0x1498,4}}, {{0x2331,11},{0xb65,2}}, + {{0xe1df,8},{0x2b,3}}, {{0x948,1},{0x734,2}}, {{0xfd88,8},{0xc8e,3}}, {{0xadd,3},{0x1d,1}}, + {{0x406c,11},{0x2b,3}}, {{0xe42,5},{0x1b22,3}}, {{0xca7,3},{0x2ffb,3}}, {{0x3be2,9},{0x1fb7,5}}, + {{0xf789,5},{0xf78e,6}}, {{0x10ec4,5},{0x1c,1}}, {{0x1c,1},{0x1b,1}}, {{0xa246,4},{0xcb8,3}}, + {{0x10ea,3},{0x2d,1}}, {{0x6d8e,3},{0xb47,2}}, {{0xbe4,1},{0xbc4,4}}, {{0x32d5,4},{0xae7,1}}, + {{0xb2f,1},{0x17a2f,6}}, {{0x1f,1},{0xeb2,1}}, {{0x3004,9},{0xae7,1}}, {{0xcd5,2},{0x4270,4}}, + {{0x1260,4},{0x1d,1}}, {{0x2793d,4},{0x27a13,2}}, {{0x1cabd,7},{0x1d,1}}, {{0xc25,5},{0x1aa6,3}}, + {{0x3624,6},{0x362a,8}}, {{0xadd,4},{0x4858,8}}, {{0x734,1},{0x27d8b,2}}, {{0xd11,4},{0xd15,5}}, + {{0x10fb,3},{0xbe0,1}}, {{0x2920,4},{0x89bc,6}}, {{0x46f4,4},{0xd0c,2}}, {{0xae2,1},{0x2bfd,2}}, + {{0x1e,1},{0x2a16,3}}, {{0x61c6,6},{0xe08,7}}, {{0x10fb,3},{0xab9c,1}}, {{0xd8e4,5},{0xb2d,3}}, + {{0x2c76,4},{0x2bfc,3}}, {{0xc25,5},{0xce2,3}}, {{0xaf1,1},{0x1b4f,3}}, {{0x4fbd,4},{0x165b4,5}}, + {{0x1f,1},{0xb2f,1}}, {{0x1b8e7,4},{0x70d4,4}}, {{0x3704,6},{0x1fc4,7}}, {{0x326c,4},{0x12ae,7}}, + {{0x2ba32,4},{0x244ed,2}}, {{0x4a75,6},{0x2b,3}}, {{0x244b9,4},{0x1cf1d,2}}, {{0xb2c,2},{0x1260,4}}, + {{0x14ffa,5},{0xee0,3}}, {{0xd41,3},{0xa60f,3}}, {{0x244f5,2},{0x70a6,2}}, {{0x17bc,3},{0xbc6,2}}, + {{0x357c,7},{0xc39,2}}, {{0x265b,8},{0xce8,3}}, {{0xf325,4},{0x25c1,4}}, {{0x148c8,7},{0xbb1,3}}, + {{0xbe7,1},{0x3dd1,2}}, {{0x278db,2},{0x278dc,1}}, {{0x1040,6},{0xbe2e,4}}, {{0xbeb,1},{0x4460,3}}, + {{0x265b,5},{0xa563,7}}, {{0x145f8,5},{0xcf6,3}}, {{0xbeb,1},{0xba2c,4}}, {{0x251fe,2},{0x1b4e3,1}}, + {{0x2322,6},{0x2382,9}}, {{0x600c,8},{0x1719,3}}, {{0x134c,5},{0x4ee5,8}}, {{0xc49,4},{0xb7c,3}}, + {{0x5184,7},{0xb52,6}}, {{0x92e6,5},{0x760b,3}}, {{0x1f009,5},{0x4121,3}}, {{0xae6,2},{0xaf2,1}}, + {{0x112c,1},{0x432,1}}, {{0x70b0,4},{0xfefe,2}}, {{0xa7da,3},{0x5396,3}}, {{0xb52,2},{0xbb4,4}}, + {{0x251d8,2},{0x24467,2}}, {{0xfed0,4},{0x30,2}}, {{0xaa9a,2},{0xa7d1,2}}, {{0x278af,1},{0x27a13,2}}, + {{0x14fc,4},{0x27,1}}, {{0xaa88,5},{0x66ae,5}}, {{0x2788f,3},{0x2864c,1}}, {{0xae6,2},{0x1cac,4}}, + {{0x1a,1},{0x1a8d,7}}, {{0x2445f,1},{0x2a96c,2}}, {{0x3234,3},{0xf59,3}}, {{0xb85,2},{0xb52,5}}, + {{0xae0,1},{0x2045,3}}, {{0x1084,3},{0xc55,2}}, {{0x27,1},{0xe44,3}}, {{0xddc,4},{0x11f2,3}}, + {{0x2d,1},{0xc9f,4}}, {{0xe830,7},{0x1c25,4}}, {{0x10ca8,7},{0xc63,3}}, {{0x22e6,5},{0x84dd,5}}, + {{0xc5ce,6},{0xbb4,4}}, {{0x28d1,3},{0xaf1,1}}, {{0x36da,5},{0x4e6e,4}}, {{0xa7d1,2},{0xab9c,1}}, + {{0x6846,8},{0x2b,3}}, {{0xb7f,3},{0xd7f,3}}, {{0x2aacb,2},{0xa4f,2}}, {{0xaf1,2},{0xd60,5}}, + {{0xab9a,3},{0xaf2,1}}, {{0x24b7,5},{0xb996,4}}, {{0xcfd,4},{0x2b,2}}, {{0x1740e,8},{0xae7,1}}, + {{0x2045,3},{0x2b,2}}, {{0x2ed0,7},{0xc3d0,4}}, {{0xaeb,2},{0x986a,4}}, {{0x46f4,4},{0x67c0,3}}, + {{0xb1ff,6},{0xb205,5}}, {{0x56a5,7},{0xc1c,2}}, {{0x257a,4},{0xff7,5}}, {{0x41da,3},{0x10f0,1}}, + {{0x441c,3},{0xc67,3}}, {{0x1ed4b,2},{0x24f9a,3}}, {{0x8dca,8},{0x23ce,4}}, {{0x78ca,4},{0xd7c1,5}}, + {{0x27b4,3},{0xadf,2}}, {{0x2d,1},{0x1370,3}}, {{0x19e4,3},{0xec5,5}}, {{0x12922,7},{0x2b,3}}, + {{0xcfe9,6},{0x2bca,4}}, {{0x6e12,2},{0x2d5d,4}}, {{0x286a7,2},{0x2b5b9,2}}, {{0xc13,4},{0xae8,2}}, + {{0x4178,4},{0xe9b,3}}, {{0x1362,3},{0x1241,4}}, {{0xdba4,5},{0x1081,3}}, {{0x1878,1},{0x1574b,2}}, + {{0xaf1,1},{0x11ef,3}}, {{0x1f,1},{0xaea,1}}, {{0x26c4,3},{0xb2f,1}}, {{0x278b5,2},{0x278dc,1}}, + {{0x2844,2},{0xbeb,1}}, {{0x262e,7},{0x68e9,6}}, {{0x142e,1},{0x174e,3}}, {{0x1140,3},{0x67c0,3}}, + {{0x176c,10},{0xce8,3}}, {{0xbd6,2},{0x2dc3,3}}, {{0xc5ce,6},{0x889f,3}}, {{0xf1f,5},{0x8140,6}}, + {{0xb7d,1},{0xb85,2}}, {{0x1675,2},{0x2d,1}}, {{0x2e52,6},{0x1536,6}}, {{0x123c,9},{0x1498,4}}, + {{0x2ed0,9},{0xc8c,5}}, {{0x22d9,4},{0xb73,2}}, {{0x184d5,6},{0xae7,1}}, {{0x178c,3},{0xd7f,3}}, + {{0x5442,4},{0xe6e,3}}, {{0xae6,2},{0xb52,6}}, {{0x6ac3,3},{0xaf2,1}}, {{0xc37,3},{0xc67,3}}, + {{0xd76,12},{0xb52,5}}, {{0x1d46,5},{0x9eb0,6}}, {{0x423c,3},{0xae4,2}}, {{0xb7c,2},{0xc67,2}}, + {{0x254d,6},{0x296f,5}}, {{0x20bb,3},{0xcc0,3}}, {{0x3234,3},{0xee1,3}}, {{0x2d,1},{0xae5,1}}, + {{0x92f2,8},{0x25da,3}}, {{0x194d4,4},{0x9fc0,5}}, {{0xf8d1,2},{0x10f8,2}}, {{0xceb,3},{0x28,2}}, + {{0x253fb,3},{0x251df,1}}, {{0xbeb,1},{0xc30,2}}, {{0x265b,8},{0xe1a,6}}, {{0xe64,5},{0xb75,3}}, + {{0x422e,3},{0x2b,2}}, {{0x112c,1},{0x1b4e3,1}}, {{0x1095,3},{0xcc0,3}}, {{0x4701,5},{0xec5,5}}, + {{0x15b52,2},{0x24515,2}}, {{0x2c06,8},{0x141e,3}}, {{0x1b4e4,1},{0x1b4e3,1}}, {{0x10fb,3},{0xbbf,2}}, + {{0x10fa,1},{0x1b4b,3}}, {{0x27,1},{0xc1c,2}}, {{0x687a,7},{0xe4d,6}}, {{0x22e3b,5},{0xcb8,2}}, + {{0x1b027,7},{0xb54,2}}, {{0x3db0,6},{0xaee,5}}, {{0x6f57,3},{0x1761,4}}, {{0x924,1},{0x27acd,2}}, + {{0xc13,4},{0x1f,1}}, {{0x10ef,1},{0x26c6,1}}, {{0x22cf8,1},{0x24462,1}}, {{0x271e,3},{0xbd5,2}}, + {{0x4c15,5},{0xc67,3}}, {{0x5a26,5},{0xa60f,3}}, {{0xbe0,1},{0x1927c,5}}, {{0x17ae,1},{0x2843,2}}, + {{0x1d,1},{0x12fe,2}}, {{0x10ec,1},{0xbd3,3}}, {{0x2445f,1},{0x27e2b,2}}, {{0x1b6ab,1},{0x924,2}}, + {{0x1e,1},{0xb64,2}}, {{0x445d,4},{0xae6,3}}, {{0x90e2,4},{0xe2c0,4}}, {{0x579e,6},{0xd7f,3}}, + {{0x110a4,5},{0x3f48,5}}, {{0xf0e,6},{0x3892,4}}, {{0x25c5,5},{0x1055,3}}, {{0x1c56,7},{0x1916,5}}, + {{0xbd7,2},{0xb52,2}}, {{0xbc5,3},{0xc7b,4}}, {{0xe44,3},{0x11b8,4}}, {{0x27ce8,3},{0x1b4e3,1}}, + {{0xcd9,3},{0x1055,3}}, {{0x532,34},{0x30,16}}, {{0x30,2},{0x6dd7,3}}, {{0x670e,10},{0xae7,1}}, + {{0x278db,2},{0x278a9,1}}, {{0x1040,6},{0x67c0,3}}, {{0x312a,5},{0xe7f,7}}, {{0xc6d,7},{0xc2f,2}}, + {{0x44d2,5},{0xb52,5}}, {{0x1c25,3},{0x14d5,3}}, {{0x2b,1},{0x27ded,6}}, {{0xd54,1},{0x10f6,1}}, + {{0x25093,2},{0x14bb5,2}}, {{0x177e,2},{0x4e98,3}}, {{0xcd9,3},{0x1aa6,3}}, {{0xc89,3},{0x577c,6}}, + {{0x1040,6},{0xc45f,4}}, {{0x56e6,7},{0x22c0,3}}, {{0xb55,2},{0xc51,4}}, {{0xed0,3},{0xae0,1}}, + {{0x1ae4e,2},{0xbe4,1}}, {{0x256b,4},{0xb85,2}}, {{0xd5c,2},{0xca7,3}}, {{0x2c338,4},{0x2ae5b,2}}, + {{0xf38f,3},{0xb78,2}}, {{0xd54,1},{0x323c,2}}, {{0x26c4,3},{0x26730,3}}, {{0x1a76,11},{0x11b8,4}}, + {{0x28be,3},{0xae7,1}}, {{0x278db,2},{0x278d6,1}}, {{0x27c3,4},{0xb98,2}}, {{0x244f5,4},{0x70ce,2}}, + {{0xf52,5},{0x4818,7}}, {{0x10ea,3},{0xc67,3}}, {{0xc2a,2},{0xb55,3}}, {{0x30,2},{0x2aa4b,4}}, + {{0x1c47,6},{0x23ce,4}}, {{0xcd9,3},{0x1719,3}}, {{0xd41,3},{0x1257,2}}, {{0x41da,3},{0xab9c,1}}, + {{0x27b6,1},{0xadf,2}}, {{0xa6c6,7},{0x1b80,4}}, {{0x16cc,4},{0x12d74,4}}, {{0x6c2f,10},{0xb78,2}}, + {{0x278b5,2},{0x278af,1}}, {{0x7ee2,9},{0xae7,1}}, {{0x1e,1},{0xd7d4,8}}, {{0xbf9e,8},{0x2b,3}}, + {{0x181c,3},{0xa5dd,5}}, {{0xc89,3},{0x3167,7}}, {{0x3203,4},{0x1ed0,4}}, {{0x2b,1},{0xb7a,5}}, + {{0x10f7,1},{0x434d,2}}, {{0x17fe,3},{0x15b0,3}}, {{0xf52,5},{0x5b63,8}}, {{0x5734,7},{0x1717,5}}, + {{0x4450,5},{0xb52,2}}, {{0x10ed,2},{0x10f2,1}}, {{0x1a781,6},{0xb8f,3}}, {{0xb6c,4},{0xb52,2}}, + {{0xd76,5},{0xc1c,2}}, {{0x1da0,7},{0x1da7,8}}, {{0x10ef,1},{0xbb2a,4}}, {{0x1aee,6},{0x2b,3}}, + {{0xae7,1},{0xdf5,4}}, {{0x139c,6},{0xb9c,2}}, {{0x1cbf,4},{0x1687,3}}, {{0x70cc,4},{0x70d4,4}}, + {{0x4436,10},{0xb2e,2}}, {{0xae2,1},{0xff7,5}}, {{0xb4a,3},{0x28,1}}, {{0x922,3},{0x278d6,1}}, + {{0x180c,4},{0x16fcf,3}}, {{0x178c,3},{0xba63,8}}, {{0x10ef,1},{0xb70,2}}, {{0xb12e,3},{0x4a30,4}}, + {{0xadce,5},{0xed47,4}}, {{0x10c8,3},{0xb52,2}}, {{0xd76,5},{0x84f6,4}}, {{0x422e,7},{0xe70,5}}, + {{0xc67,2},{0x2b,3}}, {{0x30,2},{0x323c,2}}, {{0x41da,3},{0xb7a,5}}, {{0xb87c,6},{0x2c0b,3}}, + {{0xc4d,2},{0x2211,3}}, {{0x278b5,2},{0x278d6,1}}, {{0x9cbe,9},{0x10dc,2}}, {{0xbe4,1},{0xf69,3}}, + {{0x3234,3},{0xc51,2}}, {{0x10f7,1},{0x10f6,1}}, {{0x3782,5},{0x1bdb,3}}, {{0xceb,3},{0x51f3,4}}, + {{0x3234,3},{0x1254,3}}, {{0x1e74f,4},{0x2462,4}}, {{0x1c8f,3},{0xae7,1}}, {{0xa6ae,7},{0x18eb,5}}, + {{0x325e,5},{0x1d8a,3}}, {{0x1ed49,3},{0x1b6cb,1}}, {{0xceb,3},{0xa886,4}}, {{0x3704,6},{0x520e,5}}, + {{0x1148c,6},{0x10569,3}}, {{0x30,2},{0x432,4}}, {{0x14fc,5},{0x1dec2,4}}, {{0x6ac5,1},{0x2b,2}}, + {{0x969,2},{0x1b23d,2}}, {{0x3e90,5},{0x89c8,6}}, {{0xab9a,3},{0xb2f,1}}, {{0x2214,6},{0x7295,5}}, + {{0xbd1,2},{0x2b,3}}, {{0x10ea,3},{0x10ed,2}}, {{0xae0,1},{0xc70,4}}, {{0x26d2b,5},{0xd54,1}}, + {{0x1b68b,4},{0x4d08,4}}, {{0x3c98,9},{0x1704,3}}, {{0x1f2b,4},{0xb65,2}}, {{0x422e,3},{0x1b4f,3}}, + {{0xae7,2},{0x28,1}}, {{0xcb5,3},{0xbed,2}}, {{0xc25,4},{0x4dd4,7}}, {{0x1c56,7},{0x11e6,6}}, + {{0x43e3,1},{0x1862,3}}, {{0xcf0,2},{0xc57,3}}, {{0x2445c,3},{0x159c9,6}}, {{0xc25,3},{0xd0b,4}}, + {{0xaf1,1},{0x1a10,2}}, {{0x1186a,7},{0xb85,2}}, {{0xbeb,1},{0x10f2,1}}, {{0x26c6,1},{0x14bb4,2}}, + {{0x244b9,2},{0xff02,2}}, {{0x4196,3},{0x887b,3}}, {{0x1a4b1,4},{0x2bfd,2}}, {{0x1d38d,5},{0x2b,3}}, + {{0x1afd,5},{0xdd6,3}}, {{0x10c8,3},{0xc67,3}}, {{0x249e1,4},{0x249e5,4}}, {{0x2868,4},{0x542c,4}}, + {{0xd41,3},{0xb82,2}}, {{0x1d7ef,6},{0xaf1,2}}, {{0xc52,2},{0xeb2,1}}, {{0xae5,1},{0xd57,2}}, + {{0x24,1},{0x28632,3}}, {{0x193b,5},{0x1d8a,3}}, {{0xeb6,3},{0x28,1}}, {{0xae6,3},{0x11e6,6}}, + {{0xa5e2,8},{0xbb4,4}}, {{0xdc33,7},{0x2b,3}}, {{0x278c9,2},{0x279ad,2}}, {{0xae8,2},{0xbeb,6}}, + {{0xae0,1},{0x11ef,3}}, {{0xd57,2},{0x11e4,4}}, {{0x15612,5},{0xd7f,4}}, {{0x10c8,3},{0xae2,1}}, + {{0x10f3,1},{0xbe0,1}}, {{0x10eec,8},{0xd0d,2}}, {{0x271e,3},{0x12be,3}}, {{0xf63c,2},{0x1b,1}}, + {{0x460a,7},{0x10dc,2}}, {{0x17ace,6},{0x10dc,2}}, {{0x1084,3},{0xdf0e,6}}, {{0x132c,6},{0x1313,7}}, + {{0x82ae,7},{0x6d89,4}}, {{0xbe7,1},{0x10ec,1}}, {{0xfdd,2},{0x2b,1}}, {{0xadf,2},{0x11b8,4}}, + {{0x6b54,2},{0x2a16,3}}, {{0x261f,4},{0xeb2,1}}, {{0xddd5,5},{0xbb5,1}}, {{0x948,1},{0x2445e,1}}, + {{0xd65,3},{0xb63,2}}, {{0x363a,5},{0xd0d,2}}, {{0xd65,3},{0xb65,2}}, {{0xde9,1},{0x41f0,6}}, + {{0x4e92,8},{0x3bc2,4}}, {{0x13bc,4},{0x11b52,5}}, {{0x10fa,1},{0xdf0,2}}, {{0x26e2,6},{0x19f5,9}}, + {{0xf59,3},{0x222c,5}}, {{0x8ffe,7},{0x7511,5}}, {{0x9a9,1},{0x432,2}}, {{0x10ea,3},{0xba7,3}}, + {{0x1ed53,1},{0x251cb,1}}, {{0x5a81,6},{0xc55,2}}, {{0x4290,4},{0x13b4,8}}, {{0x6b2b,6},{0x1a40,7}}, + {{0xb7f,3},{0x84f5,5}}, {{0xdfe,9},{0xb67,2}}, {{0x2043,9},{0x1f13,4}}, {{0xd98,12},{0xc20,5}}, + {{0xb64,3},{0xa3fb,6}}, {{0x56cc,7},{0xd3ce,4}}, {{0x966a,9},{0xb8f,3}}, {{0x236d1,5},{0xb63,2}}, + {{0x6f62,6},{0x6f68,6}}, {{0xd54,1},{0x1a11,2}}, {{0x45fd,5},{0xaf1,1}}, {{0x415c,4},{0xcbd,3}}, + {{0x1254,3},{0xc67,2}}, {{0x3a22,5},{0xbbf,2}}, {{0x286e3,6},{0x1b25d,2}}, {{0xbb2,2},{0x2a16,3}}, + {{0x12d3,6},{0x1489,3}}, {{0x10f3,1},{0x26850,3}}, {{0xf0e,6},{0x1aad,5}}, {{0x109e,4},{0x10b3,4}}, + {{0xbb5,1},{0xbd90,3}}, {{0x14dac,8},{0xde9,1}}, {{0x1084,4},{0x8674,4}}, {{0xa972,6},{0x8ec8,4}}, + {{0x30ba,7},{0x1498,4}}, {{0xc2a0,8},{0xc8e,3}}, {{0x1d46,5},{0x9911,5}}, {{0x156d0,5},{0xce1,4}}, + {{0x99fa,8},{0x10dc,2}}, {{0x1b72f,6},{0x70ac,4}}, {{0x2445e,2},{0x2a885,2}}, {{0x139c,6},{0x3626,4}}, + {{0x2446c,1},{0x159c8,1}}, {{0xae9,5},{0xaee,5}}, {{0x2214,6},{0xb8a,2}}, {{0x10ef,1},{0xacd5,4}}, + {{0x20bb,3},{0x1cef,3}}, {{0x7102,7},{0xaf2,1}}, {{0x2445c,3},{0x948,1}}, {{0x7c4,1},{0x2446c,1}}, + {{0x709c,2},{0x6f72,2}}, {{0x10fb,3},{0x240df,4}}, {{0x10472,4},{0x4031,3}}, {{0x7df2,7},{0x1260,4}}, + {{0x122c,4},{0x2a16,3}}, {{0x2864c,1},{0x251cb,1}}, {{0xae7,1},{0xde2,4}}, {{0x924,1},{0x27ae5,2}}, + {{0x5bfa,7},{0xdc1,5}}, {{0x7c4,1},{0x9c9,1}}, {{0xaca2,3},{0x5a1c,3}}, {{0x10fa,1},{0x10ca,1}}, + {{0x5ead,5},{0x1316f,5}}, {{0x1568a,5},{0xb47,2}}, {{0x28da,1},{0xbe4,1}}, {{0xae7,1},{0xaf1,1}}, + {{0xae2,2},{0x40b8,2}}, {{0xb78,2},{0x1687,3}}, {{0x278cf,2},{0x1b6ab,1}}, {{0xa606,9},{0xc1c,2}}, + {{0xb8c9,8},{0x2b,3}}, {{0x1760,5},{0xaf1,2}}, {{0x27b4,3},{0xb2e,2}}, {{0x74fe,7},{0xbb5,1}}, + {{0x24475,6},{0x20b23,2}}, {{0xeec,7},{0x4cec,6}}, {{0x1c,1},{0xd1b,1}}, {{0x6d8e,3},{0x1a919,6}}, + {{0x312a,5},{0xf99,4}}, {{0x14e7e,6},{0x14e84,4}}, {{0xf535,5},{0xaf2,1}}, {{0x135e,3},{0xaf2,1}}, + {{0x1d55,4},{0xae7,1}}, {{0x6b5f,4},{0x12fe,2}}, {{0x1a0d,5},{0x1490,3}}, {{0x474f,6},{0x2b,2}}, + {{0xd41,3},{0x43e5,3}}, {{0x10f7,1},{0x1a,2}}, {{0x51b8,7},{0xc55,5}}, {{0x11ec,9},{0xbb4,4}}, + {{0x104c5,2},{0xc2f,2}}, {{0xdba,4},{0x10ba,2}}, {{0x15b48,6},{0x70d4,4}}, {{0x15d2c,6},{0x2b,3}}, + {{0x271e,3},{0x1a1f4,2}}, {{0xde1,2},{0x139f,3}}, {{0xf85,4},{0x245f,7}}, {{0xcb5,3},{0x37f7,3}}, + {{0x139c,6},{0x32d5,4}}, {{0x27b09,2},{0x116c,1}}, {{0x159c9,4},{0x6f66,2}}, {{0x27b03,2},{0x278d6,1}}, + {{0x1a,1},{0xb67,2}}, {{0xb63,4},{0xb67,5}}, {{0x827e,9},{0xc8e,3}}, {{0xeec,7},{0xb99,3}}, + {{0xfdd,2},{0x1597,5}}, {{0xb64,2},{0x21,1}}, {{0xbb5,1},{0x13d63,4}}, {{0x1084,3},{0xb72,2}}, + {{0x415e,3},{0x7f5f,7}}, {{0x6d81,3},{0xaec,2}}, {{0x2958,9},{0xc32,5}}, {{0x84a6,10},{0xb2c,2}}, + {{0x33b2,3},{0xae0,1}}, {{0x3d78,7},{0x1e6c,6}}, {{0x41da,3},{0xbbf,2}}, {{0xfdd,3},{0xae7,1}}, + {{0xd8ad,8},{0xc63,3}}, {{0x10ea,3},{0x2a90,2}}, {{0x30,64},{0x30,34}}, {{0x6ac5,1},{0xcb8,2}}, + {{0x2b335,2},{0x1ed58,1}}, {{0x102f,6},{0x1c43,4}}, {{0xb64,2},{0xeb2,1}}, {{0x19c6c,6},{0xbb1,3}}, + {{0x2793d,4},{0x27a0d,2}}, {{0x9436,7},{0x5d16,4}}, {{0xb71,2},{0xae7,2}}, {{0xc8d2,6},{0x5d97,5}}, + {{0xaea,2},{0xb8a,2}}, {{0x271e,3},{0xe7b,3}}, {{0xb75,2},{0xd7f,3}}, {{0x27e20,2},{0x2445e,1}}, + {{0x71fe,7},{0xc67,2}}, {{0x177c,3},{0x10ec,1}}, {{0xcdf,3},{0xbd6,2}}, {{0xeb4,3},{0x1865,4}}, + {{0xd41,3},{0xbb4,2}}, {{0xb2ba,6},{0x2279,4}}, {{0xbeb,1},{0x168d4,6}}, {{0xde9,1},{0xaeb,2}}, + {{0xeb9,4},{0x10504,4}}, {{0x2c830,4},{0x157f2,2}}, {{0x19d83,5},{0xe367,4}}, {{0x3694,4},{0x10dc,2}}, + {{0xaf1,1},{0x1257,3}}, {{0xb52,2},{0xd57,2}}, {{0x60b5,8},{0xce8,3}}, {{0x5365,5},{0x2891,3}}, + {{0x434f,2},{0xbe7,1}}, {{0x10ba,2},{0x28,1}}, {{0x178c,3},{0x4286,2}}, {{0x1089,2},{0xc67,2}}, + {{0x159c,4},{0x265d,3}}, {{0xbe7,1},{0xbe0,1}}, {{0x40c0,4},{0xaea,2}}, {{0x423e,1},{0xa7ed,4}}, + {{0x10f0,1},{0x10ed,2}}, {{0x29ecd,3},{0x924,2}}, {{0x10fb,3},{0x906e,5}}, {{0xae5,1},{0x13b37,3}}, + {{0x1b25b,4},{0xae0,1}}, {{0xc49,3},{0xde9,1}}, {{0x804,2},{0x157f2,2}}, {{0xbde,3},{0x19c9,3}}, + {{0x4266,5},{0x4a30,4}}, {{0xca7,3},{0x2abe,5}}, {{0x251cb,1},{0x9c9,1}}, {{0x178c,3},{0xab9c,1}}, + {{0x1dfa,10},{0x31f8,4}}, {{0x218d,8},{0x5d97,5}}, {{0xc5ff,4},{0x1b,1}}, {{0xba5,4},{0x3cc4,8}}, + {{0x58d4,5},{0xaf2,1}}, {{0x4290,4},{0x12e94,5}}, {{0x278db,2},{0x116d,1}}, {{0x4fa3,7},{0x4797,5}}, + {{0x10f0,1},{0x10f6,1}}, {{0x1084,3},{0x25da,3}}, {{0x2793d,4},{0x278b5,2}}, {{0xbd4,2},{0xb2e,2}}, + {{0xb52,2},{0xc8c,5}}, {{0x2445f,1},{0x2a885,2}}, {{0xfbb2,5},{0xc67,3}}, {{0xe376,9},{0xae7,1}}, + {{0x263f,3},{0xf63c,2}}, {{0x1961,3},{0x1c25,4}}, {{0x53f4,5},{0x1d,1}}, {{0x2b,2},{0xd8e,9}}, + {{0x1cf1b,4},{0xaf1,1}}, {{0x10ea,3},{0xfb1,3}}, {{0x17de,5},{0x584c,5}}, {{0x1c495,6},{0xb65,2}}, + {{0xaca2,3},{0xfcaf,2}}, {{0x278a9,1},{0x116c,2}}, {{0xeb2,1},{0xbd0,3}}, {{0xcb5,3},{0x1f13,4}}, + {{0x10ec,1},{0x16ce,4}}, {{0xe42,5},{0x42a3,3}}, {{0x2d56,7},{0x7bb9,5}}, {{0x3720,10},{0x372a,4}}, + {{0x278c9,2},{0x278d6,1}}, {{0xedb,5},{0x1bdb,3}}, {{0x1ab2,4},{0xe695,4}}, {{0xfd25,4},{0x1af4a,5}}, + {{0x10ef,1},{0xcce,3}}, {{0x13e4,3},{0xb52,6}}, {{0x397a,5},{0x1621,4}}, {{0x5ac2,5},{0xdf0,2}}, + {{0x7a56,5},{0x24e9,5}}, {{0x14d5,3},{0xb65,2}}, {{0xb78,2},{0xbbf,2}}, {{0xd41,3},{0xb7d,1}}, + {{0x12bca,5},{0x2b,3}}, {{0x1499,2},{0xaea,2}}, {{0x4222,3},{0xb065,3}}, {{0x2b,2},{0x18d8,3}}, + {{0xa552,5},{0x1260,4}}, {{0xbc2,2},{0xb52,2}}, {{0x1040,6},{0x2be4,6}}, {{0x20bb,3},{0xb2e,2}}, + {{0x969,2},{0x244e7,2}}, {{0x6f92,6},{0x15794,6}}, {{0xb9d,3},{0x2b,1}}, {{0xae7,1},{0xbb5,1}}, + {{0x4290,4},{0x5581,6}}, {{0x4459,3},{0xba3a,5}}, {{0x3242,5},{0x11ef,2}}, {{0x1adf,5},{0x4875,5}}, + {{0x1f6e9,5},{0xb63,2}}, {{0x1a85,5},{0xb54,2}}, {{0x73c6,4},{0x73ca,5}}, {{0xd0b,3},{0x28,1}}, + {{0x5ec7,7},{0xb2c,4}}, {{0x10fb,3},{0x10f2,1}}, {{0x6c65,2},{0x142e,1}}, {{0x1a0d,9},{0x48eb,4}}, + {{0x23007,2},{0xd5c,1}}, {{0x14930,2},{0x14932,4}}, {{0x6c8a,6},{0x6c90,7}}, {{0xaec,2},{0x13092,6}}, + {{0x73a2,8},{0x2af4,4}}, {{0xc52,2},{0x16fcf,3}}, {{0x28,2},{0xb2c,2}}, {{0x1426a,6},{0xb63,2}}, + {{0x2474d,2},{0x157a4,2}}, {{0xfb89,4},{0xde9,1}}, {{0x16fc,4},{0x2318,4}}, {{0xb71,2},{0xb7d,1}}, + {{0x14934,2},{0x428b,2}}, {{0xc37,3},{0x21818,4}}, {{0x3e04,5},{0x4487,8}}, {{0x10fb,3},{0x1150,2}}, + {{0x9a2a,8},{0x11e4,4}}, {{0xcb8,2},{0xb9c,2}}, {{0x1095,3},{0x1d,1}}, {{0x19d85,3},{0xe367,4}}, + {{0xae7,2},{0xc67,2}}, {{0x1171,2},{0x116e,1}}, {{0xd54,2},{0xaea,2}}, {{0xd54,1},{0x3cba,3}}, + {{0x142c,3},{0x13dd2,5}}, {{0x6b61,2},{0xcf0,2}}, {{0x178c,3},{0x4417,2}}, {{0xc25,3},{0xee1,3}}, + {{0x1ba05,6},{0xae7,1}}, {{0xd41,3},{0xd1b,1}}, {{0x423c,3},{0xbbf,2}}, {{0x20bb,3},{0x3245,4}}, + {{0xd41,3},{0xfb1,2}}, {{0x10f0,1},{0x13f13,5}}, {{0xde4,2},{0x3559,3}}, {{0xa56a,7},{0x11b8,4}}, + {{0xff20,4},{0xff24,4}}, {{0x1c,2},{0xb65,2}}, {{0xfe38,4},{0xb53,2}}, {{0xfff,4},{0xb2e,2}}, + {{0x27,1},{0x1e,1}}, {{0x28,2},{0x1e56,4}}, {{0x14120,7},{0x103a,3}}, {{0xd41,4},{0xcd4,3}}, + {{0x10e2b,3},{0xd51,2}}, {{0x2b6ee,2},{0xb31,1}}, {{0x3ed6,5},{0xb2c,2}}, {{0x6ac5,1},{0x27b6,1}}, + {{0x2c76,4},{0x4590,5}}, {{0x15dc,6},{0x8ec8,4}}, {{0x1b4b,3},{0xd0d,2}}, {{0xebcc,4},{0x2939,3}}, + {{0xbeb,1},{0xaec,2}}, {{0x10f0,1},{0xbe4,1}}, {{0x2445e,1},{0x948,2}}, {{0xfef8,8},{0xff00,4}}, + {{0xb2f,1},{0x1c68,3}}, {{0x27d24,3},{0x28652,2}}, {{0x10f3,1},{0x283e,2}}, {{0x441c,3},{0xcce,3}}, + {{0x27b4,3},{0xae9,2}}, {{0x1a85b,2},{0x1299e,4}}, {{0x26c6,1},{0x43e3,1}}, {{0x430,14},{0x432,3}}, + {{0x41da,3},{0xcd5,2}}, {{0xfef8,6},{0x1015e,2}}, {{0x2e8a,8},{0x1bdb,3}}, {{0x10f7,1},{0xb74,2}}, + {{0x4d19,6},{0x2b,3}}, {{0xf943,5},{0x5ad4,6}}, {{0xb65,2},{0x1ed0,4}}, {{0x3a14,6},{0xb8f,2}}, + {{0x28da,1},{0x10ca,1}}, {{0x151f,3},{0xb78,2}}, {{0x27b4,3},{0x461b,5}}, {{0x1afd,5},{0xc34,2}}, + {{0x6b5f,4},{0x12f0,4}}, {{0x4957,6},{0x21d2,6}}, {{0xeec,5},{0x1a,3}}, {{0x27c5,2},{0xc52,2}}, + {{0xaf0,2},{0xb2f,1}}, {{0xae5,1},{0x2045,3}}, {{0x12ac,7},{0xff7,5}}, {{0x20bb,3},{0x5fa0,4}}, + {{0x7c4,20},{0x7c4,1}}, {{0x6f36,3},{0xae6,2}}, {{0xae5,1},{0xba7,3}}, {{0x5442,4},{0x15b0,3}}, + {{0x244f5,2},{0x244ed,2}}, {{0xf6fa,5},{0x700f,3}}, {{0x2445f,1},{0x27cea,1}}, {{0xfe5,2},{0x1a,1}}, + {{0x18e38,6},{0x10dc,2}}, {{0xd76,7},{0xc1c,2}}, {{0xbde,3},{0xc78,3}}, {{0xbde,3},{0xbbf,2}}, + {{0xbaf,2},{0xcce,3}}, {{0xa7d,4},{0xfb8b,2}}, {{0x5102,5},{0x5fed,5}}, {{0xb8b,2},{0xbc5,3}}, + {{0xe99b,7},{0xd17,3}}, {{0xfe38,4},{0xcd65,4}}, {{0xd17,3},{0xaf2,1}}, {{0x147c,5},{0xbed,4}}, + {{0x10fb,6},{0xd15,5}}, {{0x4d9b,8},{0xb52,5}}, {{0xbe7,1},{0xb63,3}}, {{0x2b325,2},{0x2446c,1}}, + {{0x2894,4},{0x288a,10}}, {{0xcd9,3},{0x290e,4}}, {{0x2891,3},{0x2b,3}}, {{0xb2f,1},{0xb55,2}}, + {{0x3655,5},{0x1468,4}}, {{0xae2,1},{0xcf0,2}}, {{0x2848,2},{0x2840,2}}, {{0xaca2,3},{0xcb8,2}}, + {{0xb7d,1},{0xb336,7}}, {{0xcd3,2},{0x67b2,5}}, {{0x278c9,2},{0x279b9,2}}, {{0x12bde,6},{0xd0d,2}}, + {{0xe2e7,6},{0xd0d,2}}, {{0x1b,1},{0x27,1}}, {{0x252c1,6},{0x70a4,4}}, {{0x95fe,8},{0xc63,3}}, + {{0x4db5,6},{0x7ee6,4}}, {{0x1095,3},{0x74ba,3}}, {{0x68ae,8},{0x24fd,5}}, {{0x10f6,1},{0xb2f,1}}, + {{0xc13,4},{0x1921,7}}, {{0x2702,3},{0x28db,3}}, {{0xd65,3},{0x1257,3}}, {{0x151c,4},{0x6637,4}}, + {{0x257a,4},{0xd7a,3}}, {{0x4fbd,4},{0x9423,3}}, {{0x278e1,2},{0x27897,1}}, {{0xff20,4},{0x24815,4}}, + {{0x10fb,3},{0xc1e,2}}, {{0xfd25,4},{0xb52,2}}, {{0x112c,4},{0x112c,4}}, {{0x41be,3},{0x1c,1}}, + {{0x7c4,12},{0x7c4,1}}, {{0xd5cc,6},{0x2b75,5}}, {{0xf6e4,5},{0xeb3,3}}, {{0x2a715,4},{0x924,1}}, + {{0xfcc2,5},{0xb67,2}}, {{0x3a92,8},{0xb52,6}}, {{0x10ef,1},{0xae2,1}}, {{0xa246,4},{0x1945a,5}}, + {{0xaf1,1},{0x21,1}}, {{0x2c854,4},{0x70b4,2}}, {{0xd41,3},{0x1cf1b,4}}, {{0x5476,9},{0x1b80,4}}, + {{0xbeb,1},{0x1a,2}}, {{0x14e60,5},{0x250c,5}}, {{0xae0,1},{0xb47,2}}, {{0xceb,3},{0x443d,3}}, + {{0xb64,2},{0x1468,4}}, {{0x10f0,1},{0xc3d,3}}, {{0x39ce,5},{0xb9f,2}}, {{0xbe0,1},{0x1f2c5,2}}, + {{0x20,2},{0xb99,2}}, {{0x10ec,1},{0x2b45e,3}}, {{0xcd9,3},{0xde9,3}}, {{0x1055,3},{0xa55a,4}}, + {{0x184e7,5},{0xd1e9,4}}, {{0x10ea,3},{0xb74,2}}, {{0x11ba8,4},{0xaea,1}}, {{0xc1e,2},{0xb78,2}}, + {{0x10ef,1},{0xbd5,2}}, {{0x1f,1},{0xb7d,1}}, {{0x2d02,8},{0x7b4e,3}}, {{0xf4dd,5},{0xf59,3}}, + {{0x132c,6},{0xc32,5}}, {{0xc4c6,6},{0x5d16,4}}, {{0x10f7,1},{0xa24a,3}}, {{0xbd4c,5},{0xeb3,3}}, + {{0x1c29,10},{0x1aad,5}}, {{0x70ba,8},{0x709c,4}}, {{0xaca2,3},{0x889f,3}}, {{0x14ee2,4},{0x6c85,5}}, + {{0x2d,1},{0xc34,2}}, {{0x66d0,4},{0xaf2,1}}, {{0x1c,1},{0x600f,5}}, {{0xadd0,3},{0x6170,7}}, + {{0x6f90,2},{0x96f,2}}, {{0x2151,8},{0xc20,5}}, {{0x271e,3},{0x174e,3}}, {{0x1b713,6},{0x70ba,8}}, + {{0xab9c,1},{0xab9c,1}}, {{0x6b5f,5},{0xe70,4}}, {{0x52f0,8},{0xb2c,2}}, {{0xfb1,2},{0xeb3,3}}, + {{0x1c25,3},{0xb47,2}}, {{0xcd9,3},{0x2f53,2}}, {{0x9a36,9},{0x2b,3}}, {{0x178c,3},{0x114f,3}}, + {{0xc13,4},{0xd090,3}}, {{0xa59a,6},{0xb65,2}}, {{0x4a27,4},{0x8111,5}}, {{0x21,1},{0x1432,2}}, + {{0xd41,3},{0xc2e,2}}, {{0x6ac3,3},{0xcce,3}}, {{0x1f289,5},{0xc32c,3}}, {{0x20141,6},{0xb48,2}}, + {{0xaca2,3},{0xd787,5}}, {{0x46f4,4},{0xeb2,1}}, {{0x364e,4},{0xe72,3}}, {{0x2d184,2},{0x2445e,1}}, + {{0x1b57,4},{0xbc2,2}}, {{0xa762,8},{0x2b,3}}, {{0x1095,4},{0x1a,1}}, {{0x1e9f7,5},{0xc34,3}}, + {{0x149ae,5},{0x4c27,5}}, {{0x1523e,6},{0x22e3,3}}, {{0xcbd,4},{0x2db1,3}}, {{0x14d4a,4},{0x14ef1,3}}, + {{0x3330,10},{0x2b,3}}, {{0x1f2b9,6},{0xa7d8,2}}, {{0xcd9,3},{0x21,1}}, {{0x92b6,5},{0x3fdb,5}}, + {{0xbde,3},{0x92c9,4}}, {{0xc37,3},{0xb469,4}}, {{0x244b9,2},{0x24673,2}}, {{0x13188,5},{0x50fd,5}}, + {{0xc37,3},{0x35fd,3}}, {{0xbb4,2},{0x2b,1}}, {{0x130c,7},{0x296f,5}}, {{0x422e,3},{0x2732,4}}, + {{0x2469f,6},{0x6f6e,6}}, {{0xde9,1},{0xb2e,2}}, {{0x41da,3},{0xc4d,2}}, {{0x10ef,1},{0xb9d,3}}, + {{0x9e9,2},{0x532,20}}, {{0xae6,2},{0xbd6,2}}, {{0x177c,3},{0x4288,2}}, {{0x244b3,4},{0x6f64,2}}, + {{0x290c,2},{0x3e2a,4}}, {{0x8ed2,9},{0xce8,3}}, {{0x449e,5},{0x12ff,2}}, {{0x2160,5},{0x1b4f,3}}, + {{0x10f6,1},{0x145a0,1}}, {{0x10ea,3},{0x74ba,3}}, {{0x422e,3},{0xae9,2}}, {{0x22cf8,1},{0x7c4,1}}, + {{0xf212,3},{0xc67,2}}, {{0x532,34},{0x30,26}}, {{0x2b890,2},{0x5c78,2}}, {{0x2214,6},{0xb9d,3}}, + {{0xd0f,4},{0x13aa8,6}}, {{0xff20,4},{0x70b2,4}}, {{0xceb,3},{0x1685,3}}, {{0x6fc2,6},{0x6fc2,6}}, + {{0x2521a,8},{0xb31,1}}, {{0xdd3,3},{0x28,1}}, {{0xcfd,4},{0xc30,2}}, {{0xd76,5},{0xf10,3}}, + {{0x177c,3},{0x2672b,2}}, {{0x17ee,3},{0x64d7,7}}, {{0x17ae,1},{0x10ca,1}}, {{0x1561,3},{0xd0d,2}}, + {{0x1b,1},{0xc30,2}}, {{0xeb2,1},{0xb47,2}}, {{0x540e,5},{0xbb5,1}}, {{0xcd9,3},{0xd915,6}}, + {{0xac8a,4},{0xaf2,1}}, {{0x17bb1,6},{0x1b5c,3}}, {{0x278e1,2},{0x116c,1}}, {{0xc13,4},{0xc52,3}}, + {{0x271e,3},{0xb47,2}}, {{0xddc,4},{0xb8a,2}}, {{0xaea,1},{0x4df1,5}}, {{0x14bb5,2},{0xbe7,1}}, + {{0x4f48,9},{0x10dc,2}}, {{0x21d8,10},{0xb8f,3}}, {{0x100d,5},{0x1c61,4}}, {{0x278d5,2},{0x116d,1}}, + {{0x10ea,3},{0x67be,5}}, {{0x15b48,6},{0x70d4,8}}, {{0xdf0,2},{0xb55,2}}, {{0xab9c,1},{0xba7,3}}, + {{0x415c,5},{0x807f,6}}, {{0x2045,3},{0xb65,2}}, {{0x5ac2,5},{0xde9,1}}, {{0x10ec,1},{0x1a,2}}, + {{0xc25,4},{0x2237,3}}, {{0xcb5,3},{0xe6d,2}}, {{0xce2,3},{0x20,2}}, {{0x1fb39,5},{0x109f,3}}, + {{0x4124,5},{0xb52,6}}, {{0x5442,8},{0x2abe,5}}, {{0x10c80,7},{0xae7,1}}, {{0x262e,7},{0x68e9,5}}, + {{0xbeb,1},{0x2249,3}}, {{0x20563,3},{0x27d20,2}}, {{0x423c,3},{0x4189,3}}, {{0x2793d,4},{0x116d,2}}, + {{0x15ac,5},{0x2e20,8}}, {{0x167c,5},{0xc4e,2}}, {{0x423c,3},{0xbc5,3}}, {{0x14bb5,2},{0x23f0b,3}}, + {{0x84a6,5},{0xb2c,2}}, {{0x3fb6,5},{0x1307,3}}, {{0x99ee,7},{0xc1c,2}}, {{0x924,1},{0x27aa9,2}}, + {{0xc1e,2},{0x5203,3}}, {{0x3655,4},{0x4978,5}}, {{0xae0,1},{0xeb2,1}}, {{0x27c73,4},{0x116d,1}}, + {{0x6b54,2},{0xbb2a,4}}, {{0xfc9,6},{0x10e1,5}}, {{0xf85,4},{0x12fca,6}}, {{0x3c11,4},{0xb52,5}}, + {{0x24b7,5},{0x5444,3}}, {{0x28f6,3},{0x1019,4}}, {{0x25c2,3},{0x18d8,3}}, {{0x470e,8},{0x1a35,5}}, + {{0xce1,3},{0xd17,3}}, {{0x14b6,2},{0x12143,2}}, {{0x422e,3},{0xd0b2,7}}, {{0xb71,2},{0xbb5,1}}, + {{0x9b32,5},{0x49b8,7}}, {{0x47aa,8},{0x47b2,5}}, {{0x10fd,2},{0x13b84,5}}, {{0x290c,2},{0x3e29,5}}, + {{0x10f0,1},{0x28,1}}, {{0x423c,3},{0x1a,2}}, {{0xd76,4},{0x15f26,3}}, {{0x1b4e3,1},{0x28634,1}}, + {{0x3df6,5},{0x1684,3}}, {{0xae7,1},{0x12fe,1}}, {{0xd0b,3},{0x10dc,2}}, {{0xba5,4},{0x21bc,9}}, + {{0xaca2,3},{0xae5,1}}, {{0x1040,6},{0x3d0e,7}}, {{0x1084,3},{0xc60,3}}, {{0x939a,8},{0xb54,3}}, + {{0xb2c,2},{0x5c44,4}}, {{0x28e7a,2},{0x28e7a,2}}, {{0xbb2,2},{0x6008,4}}, {{0x10f7,1},{0x1f87c,5}}, + {{0xbeb,1},{0x74ba,3}}, {{0xda9,4},{0xae0,1}}, {{0xcf3e,2},{0x4606,3}}, {{0x2bb2,8},{0x31f8,4}}, + {{0x27d24,3},{0x1ed58,1}}, {{0x178c,3},{0x2af4,4}}, {{0x449e,6},{0x1489,3}}, {{0x19b3,5},{0x2349,4}}, + {{0x150ba,3},{0x25df,4}}, {{0xb7f,7},{0xb8b,2}}, {{0xb44,3},{0x12f85,5}}, {{0xdba,4},{0x25da,3}}, + {{0x278ad,3},{0x278b5,2}}, {{0xb44,3},{0xb85,2}}, {{0x5d5b,5},{0x5d7a,4}}, {{0x98f2,5},{0x1c8b,7}}, + {{0xbde,3},{0xf38f,3}}, {{0xae0,1},{0xeb3,3}}, {{0x6ac3,3},{0x10ca,1}}, {{0xc89,2},{0x12b1,4}}, + {{0xc49,3},{0xb48,2}}, {{0x30,2},{0xc2e,2}}, {{0xb66,2},{0xb63,3}}, {{0x974e,5},{0xeb3,3}}, + {{0xcfd,4},{0x8d86,6}}, {{0x422e,3},{0x16ae,2}}, {{0x27b0f,2},{0x278af,1}}, {{0x19b94,4},{0x1878,1}}, + {{0xc421,8},{0xb78,2}}, {{0xbd1,2},{0x1dac,3}}, {{0x3e04,8},{0xff7,5}}, {{0x143c,8},{0x10c3,5}}, + {{0x2796,3},{0x139f,3}}, {{0xe42,5},{0x3c66,6}}, {{0xd41,3},{0xc07f,6}}, {{0xfcaf,2},{0x10f3,1}}, + {{0xbe7,1},{0xd8b0,5}}, {{0x1b6dd,4},{0x2523b,4}}, {{0x10fb,4},{0x2b,1}}, {{0x6b1e,4},{0x6b22,9}}, + {{0x2b,3},{0x1a,1}}, {{0x4812,6},{0x7660,5}}, {{0x278a9,1},{0x278b5,2}}, {{0x1cec,5},{0x887b,3}}, + {{0xd5c,1},{0xf99e,5}}, {{0x948,1},{0x432,1}}, {{0x1088e,6},{0xb48,2}}, {{0x159e,3},{0x15a1,3}}, + {{0xcab,3},{0x1377,5}}, {{0x3f7e,7},{0x1668,4}}, {{0x10f3,1},{0x15a1,3}}, {{0x1cee,3},{0x28,1}}, + {{0xc89,2},{0xcf3,3}}, {{0x53a6,7},{0x89b9,4}}, {{0xaea,1},{0x141b2,4}}, {{0x209d,8},{0xf05,7}}, + {{0x3996,8},{0xc9f,4}}, {{0x21c27,6},{0xae7,1}}, {{0x1084,3},{0x28,1}}, {{0x226e,11},{0x2195,3}}, + {{0x24432,4},{0x24436,3}}, {{0x864a,7},{0x8651,5}}, {{0x26c6,1},{0xae5,1}}, {{0x166c,6},{0x3fdc,4}}, + {{0xab9c,1},{0x1b,1}}, {{0xceb,4},{0x89ca,3}}, {{0xb49e,4},{0xc74c,5}}, {{0x142e,1},{0x1675,2}}, + {{0xb48,2},{0x2b,2}}, {{0xab9c,1},{0xc1c,2}}, {{0x118e,3},{0xbd5a,3}}, {{0x181c,3},{0xae2,1}}, + {{0xae7,1},{0x1862,3}}, {{0x43e3,1},{0x79d6,4}}, {{0x16fc,4},{0xbd1,2}}, {{0xc89,2},{0xae7,1}}, + {{0x422e,3},{0x269d8,2}}, {{0xcf6,3},{0x28,1}}, {{0x2451f,2},{0x244c3,2}}, {{0x423e,1},{0x2976,3}}, + {{0xb12e,3},{0x25410,3}}, {{0x278a9,2},{0x278dc,1}}, {{0x1b23f,4},{0x70c8,4}}, {{0xf367,5},{0x27,1}}, + {{0x181c,3},{0xb7d,2}}, {{0x2aa8,6},{0x583f,3}}, {{0x24461,1},{0x2446e,3}}, {{0x2bfc,2},{0x1d,1}}, + {{0x244bf,4},{0x244c3,2}}, {{0x1b6cb,1},{0x2445e,1}}, {{0xbd4,2},{0xbb15,3}}, {{0xdba,4},{0x7fda,4}}, + {{0x40ec,3},{0x2a91,4}}, {{0x116c,2},{0x116c,1}}, {{0x1b6d3,2},{0x1b6d3,2}}, {{0x4c70,9},{0x2b,3}}, + {{0x2446c,1},{0x251cb,1}}, {{0x14ff0,4},{0x1393,3}}, {{0x441c,3},{0xb8a,2}}, {{0x10ec,1},{0xb63,2}}, + {{0xb2c,2},{0xb72,3}}, {{0xeb2,1},{0xb8f,2}}, {{0x10f2,1},{0x10ec,1}}, {{0x6ac3,3},{0x10f7,1}}, + {{0x4132,5},{0xb54,3}}, {{0x2a8c,9},{0xe72,3}}, {{0xaca2,3},{0xb8f,3}}, {{0xcb5,3},{0x1b,1}}, + {{0xeb9,6},{0xbd6,8}}, {{0xf6c5,4},{0x7109,5}}, {{0x16ec,7},{0x16f3,9}}, {{0x2bfc,2},{0xae5,1}}, + {{0x14cc,4},{0xaf2,1}}, {{0x6dd2,4},{0xd91,2}}, {{0x800e,7},{0x606e,5}}, {{0x173f3,6},{0x25c2,3}}, + {{0x14ea6,5},{0x14eab,5}}, {{0xe6d,2},{0x1a,2}}, {{0x102f,6},{0x1035,8}}, {{0xd41,3},{0x1d8a,3}}, + {{0xae7,1},{0xbd6,2}}, {{0x159c8,1},{0x1ed53,1}}, {{0xaf1,1},{0xbc1,2}}, {{0x10ca,2},{0x112b0,5}}, + {{0x12f1c,7},{0x10dc,2}}, {{0x804,2},{0xff26,2}}, {{0x3234,3},{0xed0,3}}, {{0x74da,7},{0xd0d,2}}, + {{0xcf65,5},{0x1425b,3}}, {{0x57f7,6},{0x1c43,4}}, {{0xbe4,1},{0x26c0e,3}}, {{0x10ca,1},{0x27b6,1}}, + {{0x1c,1},{0x4882,3}}, {{0x27e2a,2},{0x7c4,1}}, {{0xb69,2},{0xfe5,2}}, {{0x2cae,5},{0xb70,2}}, + {{0x6d81,3},{0xe78,3}}, {{0x10472,4},{0xb8d,5}}, {{0x99fa,8},{0xc7b,4}}, {{0x10ec,1},{0x28,2}}, + {{0x13a36,7},{0x2b,3}}, {{0x1a,1},{0xcb8,2}}, {{0x14d5,3},{0x2b3e,4}}, {{0x1e,1},{0x1196,5}}, + {{0x10ef,1},{0x24ba,3}}, {{0xae2,1},{0x2b,2}}, {{0xded,5},{0x2dcb,4}}, {{0xbd4,2},{0x20c52,3}}, + {{0x2441,6},{0x21,1}}, {{0x41b0,10},{0x25c2,3}}, {{0xdd04,7},{0xbbf,2}}, {{0x1ae2,2},{0x28,1}}, + {{0x20bb,3},{0x2a16,3}}, {{0x24a41,2},{0x2446f,2}}, {{0x41be,3},{0xeb2,1}}, {{0x1a1f6,2},{0x2840,2}}, + {{0xe64,5},{0x3a3b,3}}, {{0x12c92,5},{0x2b,2}}, {{0x41da,3},{0x1f66c,5}}, {{0xf212,3},{0x1b4f,3}}, + {{0xb2f,1},{0x1d11,5}}, {{0x6b61,2},{0xc095,6}}, {{0x470e,5},{0x11ef,3}}, {{0x4ab0,3},{0x3559,3}}, + {{0xd65,3},{0xeb3,3}}, {{0xcd9,3},{0x9901,9}}, {{0x924,3},{0x278dc,1}}, {{0x177c,5},{0x14a7,5}}, + {{0x194a,5},{0x37cd,5}}, {{0x10f1,2},{0xbeb,1}}, {{0x10c8,4},{0x250a,7}}, {{0x616b,7},{0x25da,3}}, + {{0x1346e,7},{0xaf2,1}}, {{0x278a9,2},{0x116e,1}}, {{0x10fb,3},{0x16e2,2}}, {{0x278a9,2},{0x278af,1}}, + {{0xb4b,2},{0x66ae,5}}, {{0x15586,5},{0x1558b,5}}, {{0x10ec,1},{0xf8d1,2}}, {{0xa7da,3},{0x24430,2}}, + {{0x2a88c,3},{0x1b4e3,1}}, {{0x256b,5},{0x2575,5}}, {{0x422e,3},{0x1254,3}}, {{0x5f01,4},{0x10dc,2}}, + {{0xc9e,3},{0xcf9,4}}, {{0x263d,5},{0x690e,8}}, {{0x194a,5},{0x1b0a,2}}, {{0x6c0a,2},{0x82ee,7}}, + {{0xae5,1},{0xd892,5}}, {{0x178c,3},{0x10fa,1}}, {{0x261f,4},{0x28,1}}, {{0x1b0a,2},{0xaf2,1}}, + {{0x283b,5},{0x4286,2}}, {{0x28cf,3},{0xc4d,2}}, {{0xb6c,3},{0xe78,3}}, {{0x27,1},{0xb65,2}}, + {{0xae0,1},{0x1a5c,3}}, {{0xc1e,2},{0xb52,5}}, {{0x1579a,6},{0x157a0,6}}, {{0x139c,6},{0xd8d0,4}}, + {{0xeec,7},{0x8c45,5}}, {{0xb55,2},{0xb73,2}}, {{0x1fbc,10},{0xce8,3}}, {{0x5d5b,5},{0x1a,1}}, + {{0x25393,6},{0x70d4,4}}, {{0x14b6,2},{0xbb5,1}}, {{0xf74,4},{0xb85,2}}, {{0x119c,7},{0x45a9,6}}, + {{0x1bde,6},{0xb52,5}}, {{0x146e,4},{0x103a,3}}, {{0xdba,12},{0x10dc,2}}, {{0xe830,5},{0x139f,3}}, + {{0xba5,4},{0xae9,2}}, {{0x7a86,5},{0x7a8b,7}}, {{0x36be,5},{0x1536,6}}, {{0x12fe,1},{0x12fe,1}}, + {{0x1d5a,3},{0xb65,2}}, {{0xbcb,3},{0x265d,3}}, {{0x1a0d,5},{0x1ed3,7}}, {{0x1972,2},{0x4119,4}}, + {{0xae7,1},{0xaf2,1}}, {{0xd5c,1},{0x17ae,1}}, {{0x1a0f,3},{0x2a91,4}}, {{0x27c73,4},{0x116e,1}}, + {{0x10f3,1},{0x2094b,3}}, {{0x39f8,5},{0x315d,4}}, {{0xb72,2},{0x1d,1}}, {{0x2796,3},{0x1971,2}}, + {{0xb44,3},{0xee2,2}}, {{0x14dc,5},{0xb64,2}}, {{0xdd30,6},{0xb52,5}}, {{0x278af,1},{0x27897,2}}, + {{0x12fc,4},{0x7ee6,4}}, {{0x1d,1},{0x1f3b,4}}, {{0xc89,2},{0xc34,3}}, {{0xb8b,2},{0x11f2,3}}, + {{0x278cf,2},{0x116d,1}}, {{0x3af4,8},{0xe50a,3}}, {{0x10c8,4},{0x12fe,5}}, {{0x23d9,3},{0x1d,1}}, + {{0xceb,3},{0xb65,2}}, {{0xc37,3},{0x2b3e,4}}, {{0x14b6,2},{0x2b,1}}, {{0x44b8,6},{0xb323,5}}, + {{0x1b81d,6},{0x70a0,4}}, {{0xd0f,4},{0xadf,2}}, {{0x178c,3},{0x14f61,2}}, {{0x422e,3},{0x15adc,2}}, + {{0xbe0,2},{0x1f,2}}, {{0x4284,2},{0x15a83,3}}, {{0x244b3,2},{0x1b6f5,2}}, {{0x423c,3},{0xae2,1}}, + {{0x10c8,3},{0xa04a,3}}, {{0xb7d,1},{0x1c,1}}, {{0x2920,4},{0xde9,4}}, {{0x326c,4},{0x8b46,8}}, + {{0xf96,4},{0x9632,4}}, {{0x16dc,5},{0xb48,2}}, {{0x244ad,2},{0x20b23,2}}, {{0x177c,3},{0x392d,3}}, + {{0x441c,3},{0xc77,2}}, {{0x15dc,6},{0x1e6b,7}}, {{0xb55,2},{0xb67,2}}, {{0x348e,7},{0xe1d,3}}, + {{0x9586,8},{0xc7b,4}}, {{0xd65,3},{0x5c4c,4}}, {{0x24a40,2},{0x734,1}}, {{0x278af,1},{0x27ad3,2}}, + {{0x1a0d,5},{0xc1a,9}}, {{0xc1c,2},{0x1ee0,3}}, {{0xb8c,2},{0xc63,3}}, {{0x1a28a,4},{0x1a28e,3}}, + {{0xaea,1},{0x18c82,6}}, {{0x2403,7},{0x1704,3}}, {{0x2afc,12},{0xd0d,2}}, {{0x2c8f0,4},{0x1016a,2}}, + {{0x5a19,5},{0x5a1e,4}}, {{0xd76,4},{0xbb4,2}}, {{0x26b5,10},{0xc32,5}}, {{0x24e4,6},{0x583f,3}}, + {{0x5ea0,6},{0x11b8,4}}, {{0xd76,5},{0xbe2e,4}}, {{0x1084,3},{0x1712f,3}}, {{0xb49e,4},{0xae6,3}}, + {{0x3694,4},{0xb8a,2}}, {{0x17ae,2},{0xd7f,3}}, {{0xcd9,3},{0x1a10,2}}, {{0x13bc,7},{0x1d3e,7}}, + {{0x2798,2},{0x13327,5}}, {{0xbeb,1},{0xdac,2}}, {{0xd5c,1},{0x3062,4}}, {{0xafae,6},{0xb2e,2}}, + {{0xb8b,2},{0xc69a,6}}, {{0xc37,3},{0xc89,2}}, {{0xf21,3},{0x2b,3}}, {{0xb63,2},{0x855e,6}}, + {{0xceb,3},{0xdc1,5}}, {{0x6d8e,3},{0xd8b0,5}}, {{0xa4b,4},{0x28707,4}}, {{0x6f23,2},{0xdac,3}}, + {{0x3234,3},{0x2b,2}}, {{0x50a7,5},{0x4d13,6}}, {{0x177c,3},{0x10ef,1}}, {{0x27c3,4},{0xc67,2}}, + {{0x2796,3},{0xb8c,2}}, {{0x17fe,3},{0xc7b,4}}, {{0x1a76,4},{0xaf2,1}}, {{0xc37,3},{0x67c0,3}}, + {{0xb4b,2},{0x1081,3}}, {{0x271e,3},{0x6107,3}}, {{0xfb06,8},{0xb78,2}}, {{0x1675,2},{0xae5,1}}, + {{0x24460,3},{0x9a9,1}}, {{0x1b4e3,1},{0x117c,1}}, {{0x1084,4},{0xb27,9}}, {{0x1d89,2},{0xa5de,4}}, + {{0xcfd,4},{0x11b8,4}}, {{0x3678,6},{0xd0b,4}}, {{0x2d02,6},{0x12d7,5}}, {{0xc37,3},{0xc77,2}}, + {{0xbe0,1},{0x1a9d,3}}, {{0x2796,3},{0x1a8d,7}}, {{0xddc,4},{0x77ea,8}}, {{0xae7,2},{0xe72,3}}, + {{0x41da,3},{0x10ec,1}}, {{0xdfa,3},{0x1f,1}}, {{0x1a3a,6},{0x62ed,4}}, {{0x278c9,2},{0x278dc,1}}, + {{0x26a6,8},{0x10dc,2}}, {{0xae5,1},{0x28b1,3}}, {{0x142c,3},{0x1089,2}}, {{0x1b4e3,1},{0x2445f,1}}, + {{0x35b4,5},{0x107f1,5}}, {{0xe6d,2},{0x11ef,2}}, {{0x142e,1},{0x1d672,5}}, {{0x11c70,7},{0xae7,1}}, + {{0xaf49,4},{0xae5,1}}, {{0x17ce,2},{0xce1,4}}, {{0xc8a,2},{0xb2f,1}}, {{0x269e1,4},{0x2720,2}}, + {{0xb99,2},{0x5396,3}}, {{0xae8,2},{0xbd6,2}}, {{0x13cd4,5},{0xeb3,4}}, {{0xf82b,3},{0xbeb,1}}, + {{0x2793d,4},{0x27a07,2}}, {{0x10f2,1},{0x10f7,1}}, {{0xb63,2},{0xd60,5}}, {{0xb4b,2},{0x1d,1}}, + {{0x6deb,3},{0xeb3,3}}, {{0x2451f,2},{0x6f90,2}}, {{0x2446a,3},{0x24a41,2}}, {{0xaca2,3},{0x15adc,2}}, + {{0xae7,1},{0xbcc0,5}}, {{0xf5e,3},{0xd7a,3}}, {{0x177c,3},{0xae2,1}}, {{0x27b6,1},{0xc4d,2}}, + {{0xd76,5},{0xfde,2}}, {{0x2674b,4},{0xd5c,1}}, {{0x758e,8},{0x1408,3}}, {{0xfed0,14},{0xfed2,2}}, + {{0xbde,3},{0x1f3a,3}}, {{0xc67,3},{0xd57,2}}, {{0xc13,4},{0xc58,3}}, {{0xaf1,1},{0x1e,1}}, + {{0x116e,1},{0x278f3,2}}, {{0xbeb,1},{0xba63,8}}, {{0x18e1,5},{0x18e6,10}}, {{0x1b4f,3},{0x1dac,3}}, + {{0x4178,4},{0x1cb4,4}}, {{0x27c5,2},{0x3cc8,4}}, {{0x2249,3},{0xb2c,2}}, {{0x1fad3,3},{0x4412,3}}, + {{0x12fc,4},{0x5fb9,5}}, {{0x6b6c,5},{0xbe85,6}}, {{0xbd4,2},{0x28,1}}, {{0x17bc,4},{0xc1a,4}}, + {{0xfef8,6},{0x1019c,2}}, {{0xd8ce,6},{0x2b,3}}, {{0x152c4,2},{0xf8cf,3}}, {{0xd5d7,5},{0x1d8a,3}}, + {{0x139e,2},{0xb2e,2}}, {{0x1eed4,2},{0xf8cf,3}}, {{0x192b8,5},{0xbb5,3}}, {{0x14bb2,2},{0xd5c,1}}, + {{0xbde,3},{0x15b3f,2}}, {{0x261f,5},{0xadf,2}}, {{0xaeb,2},{0xb71,2}}, {{0x2769,5},{0x3343,9}}, + {{0x2202,3},{0xfe5,2}}, {{0x10f7,1},{0xde2,4}}, {{0x3a36,2},{0xb8a,2}}, {{0x1934,4},{0xc34,3}}, + {{0xfdf,2},{0x10dc,2}}, {{0xbe4,1},{0xbe8,3}}, {{0x10c8,3},{0x443e,2}}, {{0xae2,1},{0xdf0,2}}, + {{0x67aa,6},{0xde9,4}}, {{0x3bfe,7},{0x1197,4}}, {{0xe97,7},{0x1393,9}}, {{0x46e1,4},{0x1a,1}}, + {{0xeac4,6},{0xae7,1}}, {{0x5102,5},{0x5fe0,4}}, {{0x155c,12},{0x10dc,2}}, {{0x16ccc,6},{0xb2e,2}}, + {{0xbcb,3},{0x5277,2}}, {{0x4f55,10},{0x2b,3}}, {{0xb4b,2},{0x2b,3}}, {{0x1972,2},{0x1393,3}}, + {{0x27b6,1},{0xae7,1}}, {{0x15a1,3},{0xb2e,2}}, {{0x27cea,1},{0x251fe,2}}, {{0x1045,3},{0x10dc,2}}, + {{0x804,2},{0xfb8b,2}}, {{0x251cb,1},{0x27c9b,2}}, {{0xc77,2},{0x2b,1}}, {{0xbe7,1},{0x67c0,4}}, + {{0x147c,5},{0xb8f,2}}, {{0x1773,3},{0xc8a3,3}}, {{0xbe4,1},{0xbcc2,3}}, {{0xbd6,2},{0xb8a,2}}, + {{0x24a2f,3},{0x432,1}}, {{0x423e,1},{0x14f61,3}}, {{0x423e,1},{0x14edb,4}}, {{0x27d24,3},{0x948,1}}, + {{0x1b,1},{0x2b2e,6}}, {{0x10e74,7},{0x10dc,2}}, {{0x1492c,4},{0x14930,6}}, {{0x40b2,4},{0xbb15,3}}, + {{0xba5,4},{0x108e,7}}, {{0x4354,4},{0xae2,2}}, {{0xbb2,2},{0x1308,3}}, {{0xae6,3},{0xb48,2}}, + {{0x17bde,6},{0x10dc,2}}, {{0xf96,7},{0xfae,10}}, {{0x2ed0,9},{0xb7c,3}}, {{0x22db,5},{0x1269f,2}}, + {{0x41da,3},{0xaf5c,2}}, {{0xb2f,1},{0x1089,2}}, {{0x27b4,3},{0x1c2f,4}}, {{0x16bc,4},{0x4bb1,5}}, + {{0xc37,3},{0x141b2,4}}, {{0xa246,4},{0x1a,3}}, {{0x441c,3},{0xc1c,2}}, {{0x30,2},{0x432,5}}, + {{0xeca,5},{0x1058,9}}, {{0x10fb,3},{0x14bb2,4}}, {{0x1257,3},{0x2b,3}}, {{0x4f2e,11},{0xae7,1}}, + {{0x142e,1},{0x5479,6}}, {{0x27,2},{0x15c7,5}}, {{0x278af,1},{0x27a2b,2}}, {{0x10f1,2},{0xaaf0,2}}, + {{0x278a9,2},{0x116d,1}}, {{0x30d6,7},{0xc20,5}}, {{0xeec,7},{0xfdf,4}}, {{0x61ac,6},{0xb7c,2}}, + {{0xb96e,5},{0x116fe,4}}, {{0xd43,6},{0xd4f,5}}, {{0x1051,4},{0x16f8,3}}, {{0x19606,5},{0xde9,4}}, + {{0xab9a,3},{0x14f5c,3}}, {{0x1ac2e,6},{0x4a84,3}}, {{0x2070,7},{0x2086,8}}, {{0x278c9,2},{0x116d,1}}, + {{0x20bb,3},{0x1308,4}}, {{0xbe4,1},{0x5277,2}}, {{0x1c,1},{0xae7,2}}, {{0xd0db,7},{0x10dc,2}}, + {{0xb2e,2},{0x2b,2}}, {{0x18dba,6},{0x2b,2}}, {{0x26c6,2},{0x3e50,8}}, {{0xb9f,2},{0xc1c,2}}, + {{0xb85,2},{0x700f,3}}, {{0x14ff0,4},{0xfdd,3}}, {{0xc8a,2},{0xb7c,3}}, {{0x474f,6},{0x222c,6}}, + {{0x10ea,3},{0x139e,2}}, {{0xbeb,1},{0xc67,2}}, {{0xbaa2,5},{0x84f6,4}}, {{0x40b2,4},{0x2af8,4}}, + {{0xe97a,6},{0xb2e,2}}, {{0xd8e,4},{0x12b1,3}}, {{0xc76,3},{0x68c4,4}}, {{0xbeb,1},{0x12e94,5}}, + {{0x271e,3},{0xbbf,2}}, {{0x20bb,3},{0xb68,4}}, {{0xd5b6,6},{0x2b,3}}, {{0xbd8,2},{0xc67,2}}, + {{0xb2e,2},{0x1257,3}}, {{0x5324,5},{0xb2e,2}}, {{0x41be,3},{0xf5f5,4}}, {{0xa786,7},{0x46e4,3}}, + {{0xe75,4},{0xaec,2}}, {{0x15c27,6},{0xae7,1}}, {{0xba5,4},{0x2c7d,6}}, {{0x10ca,1},{0x1b4b,3}}, + {{0x929e,5},{0xeb2,1}}, {{0x434f,2},{0x10f0,1}}, {{0xcd9,3},{0xe2f5,8}}, {{0x4178,4},{0x22e3,3}}, + {{0xf63c,2},{0x28,1}}, {{0x2daa,6},{0x2db0,4}}, {{0x6b6c,5},{0xbe64,5}}, {{0x2793d,4},{0x278af,1}}, + {{0x30ac,8},{0x10dc,2}}, {{0xb54,3},{0x2b,1}}, {{0x2421,7},{0x4569,5}}, {{0x261f,4},{0x666e,4}}, + {{0x185a,6},{0x1860,9}}, {{0xb66,2},{0xb8f,2}}, {{0x675c,5},{0x2349,6}}, {{0x41da,3},{0xbe4,1}}, + {{0xf6e4,5},{0x21,1}}, {{0x11324,8},{0xb65,2}}, {{0x422e,3},{0x40bb,5}}, {{0xc77,2},{0xae7,1}}, + {{0x554f,2},{0x2b,1}}, {{0x142c,3},{0x1d6ba,5}}, {{0x11ef,2},{0xaea,1}}, {{0x19c5a,4},{0x168df,4}}, + {{0x1b,1},{0x1101e,4}}, {{0x20,2},{0x1b80,4}}, {{0xbc0,4},{0x4501,5}}, {{0x4b45,9},{0x2b,3}}, + {{0x43e3,1},{0xb2e,2}}, {{0xd112,5},{0x22c0,3}}, {{0xab9c,1},{0x1878,1}}, {{0x1ed58,1},{0x1ed58,1}}, + {{0x1e,1},{0xb52,2}}, {{0x924,1},{0x27a8b,2}}, {{0xbed,2},{0xb47,2}}, {{0xcfd,5},{0x1a,1}}, + {{0xcfd,6},{0xc2d2,5}}, {{0xcde,3},{0x7f5f,7}}, {{0xded,8},{0xdf5,7}}, {{0xb73d,8},{0x1719,3}}, + {{0xd54,1},{0x1e,1}}, {{0xb7d,2},{0x1a,1}}, {{0xc25,3},{0x1414d,5}}, {{0x4617,6},{0x461d,4}}, + {{0x24705,4},{0xa51,2}}, {{0x27d1b,2},{0x9c9,1}}, {{0x24c74,2},{0xae2,1}}, {{0xb7f,3},{0x1408,3}}, + {{0x2160,5},{0xc63,3}}, {{0x5d34,8},{0xc63,3}}, {{0x2934c,4},{0xbe7,1}}, {{0x5277,2},{0x10dc,2}}, + {{0xc58,3},{0x1aa6,3}}, {{0xcfd,4},{0xa45d,5}}, {{0xcfd,9},{0x48eb,4}}, {{0xf0e,5},{0x31f8,4}}, + {{0xcb5,3},{0xc1c,2}}, {{0xb6c,3},{0xcd5,2}}, {{0x6d81,3},{0x15a1,3}}, {{0xc1c,2},{0xb2c,4}}, + {{0x1a0da,6},{0x35fd,3}}, {{0xbed,2},{0x1719,3}}, {{0x69e6,8},{0x2b,3}}, {{0xb99,3},{0x27,1}}, + {{0x5a4d,8},{0x1b07,4}}, {{0xbed,2},{0x1a,2}}, {{0x1e,1},{0xc60,3}}, {{0x1bde,6},{0xb65,2}}, + {{0x4415,2},{0xd5c,1}}, {{0xcab,3},{0x1a,2}}, {{0xce8,3},{0xb70,2}}, {{0xf367,5},{0x1140,3}}, + {{0x7276,4},{0x30fb,5}}, {{0xfb1,2},{0xae2,1}}, {{0x5ff2,10},{0x10dc,2}}, {{0x81fa,8},{0xb9d,3}}, + {{0x10f7,1},{0x2844,2}}, {{0x357c,7},{0x21,1}}, {{0x278af,1},{0x278d5,2}}, {{0xc13,4},{0xa249,4}}, + {{0x2e44,5},{0xdbf,3}}, {{0x24462,1},{0x27e66,3}}, {{0x10ef,1},{0xcb8,3}}, {{0xc25,4},{0x2d22,10}}, + {{0xb7d,1},{0xb63,2}}, {{0x10f2,1},{0xae7,1}}, {{0xe6d,2},{0xb55,2}}, {{0xc89,3},{0xb7c,2}}, + {{0xcbf,4},{0xae7,1}}, {{0xcc7,3},{0xf99e,5}}, {{0x8dee,6},{0x7288,6}}, {{0xbafa,5},{0xd0d,2}}, + {{0x3234,3},{0x1b4f,3}}, {{0xb9d,3},{0x1c8f,3}}, {{0xbaa2,4},{0xc57,4}}, {{0x779e,8},{0x1152,3}}, + {{0x5d5b,5},{0x2288,4}}, {{0xcbf,4},{0x2b,3}}, {{0x10b7,4},{0x1450c,6}}, {{0x271e,3},{0xb9d,3}}, + {{0x1ab2,4},{0x3825,5}}, {{0x27709,5},{0xb2f,1}}, {{0x10f7,1},{0xc2e,2}}, {{0x12fc,4},{0x4882,3}}, + {{0x423e,1},{0x1089,3}}, {{0x2bb3e,3},{0x7c4,1}}, {{0x16fc,4},{0xe7fd,7}}, {{0xb48,2},{0xd7a,3}}, + {{0x1c3b5,6},{0xb78,2}}, {{0x122c,4},{0xb9b4,7}}, {{0xae0,1},{0xb4b,2}}, {{0xd784,5},{0x2195,3}}, + {{0x1040,6},{0xbc4,4}}, {{0x132c,6},{0x583f,3}}, {{0x27d24,3},{0x432,1}}, {{0x1e,1},{0x1d8e,3}}, + {{0x1ed49,3},{0x112c,1}}, {{0xd51,2},{0xb78,2}}, {{0xaca2,3},{0xd54,1}}, {{0x8484,5},{0x159f,4}}, + {{0xc25,4},{0x1aa6,3}}, {{0x139c,6},{0x1f,1}}, {{0xddc,4},{0x1c1d1,4}}, {{0xedb,4},{0x2d,1}}, + {{0xd0f,6},{0xc8e,3}}, {{0x27b03,2},{0x116e,1}}, {{0xe6d,2},{0x10c4,4}}, {{0xe397,5},{0x1b0a,2}}, + {{0xd57,2},{0xbb5,3}}, {{0xc675,5},{0x28,2}}, {{0xcd9,5},{0xbb4,4}}, {{0x1084,3},{0x4e98,3}}, + {{0xd0fc,4},{0x1a,2}}, {{0xf367,5},{0x148eb,4}}, {{0x273bd,4},{0xbeb,1}}, {{0xbc2,2},{0xaf2,1}}, + {{0x3e20,7},{0x151e,4}}, {{0x8b06,4},{0xe4c,7}}, {{0x1b12,5},{0xc7b,4}}, {{0x17be,2},{0x7260,5}}, + {{0x257c,2},{0xb52,2}}, {{0xae7,1},{0x5277,2}}, {{0x2c76,4},{0x10ebe,6}}, {{0xb871,8},{0xcc0,3}}, + {{0x670e,5},{0x1b0a,2}}, {{0xb6c,3},{0xeb3,4}}, {{0xb64,3},{0xdf0,2}}, {{0x10f7,1},{0x5277,4}}, + {{0x25565,4},{0xd0d,2}}, {{0x1ed58,1},{0x432,2}}, {{0x14e80,2},{0xb98,2}}, {{0x6ac3,3},{0x2b,1}}, + {{0x6d81,3},{0xbe4,1}}, {{0xec2,2},{0xdf0,2}}, {{0xdba,4},{0xa60f,3}}, {{0xbde,3},{0xafa9,5}}, + {{0x1a,1},{0xde2,4}}, {{0xb8a,2},{0xb2e,2}}, {{0xbde,3},{0x11ef,2}}, {{0xf85,4},{0x5d2b,4}}, + {{0xf96,5},{0x1140,3}}, {{0x169f,3},{0xb47,2}}, {{0x1ae38,6},{0x1ae3e,3}}, {{0x1f2e9,5},{0xb78,2}}, + {{0x1a0d,5},{0x1960,7}}, {{0xae0,1},{0xbbf,2}}, {{0xc4d,2},{0xaf1,1}}, {{0x11928,7},{0x2583,3}}, + {{0x10ba,2},{0x10ba,2}}, {{0x1930,3},{0xaf2,1}}, {{0x7a7a,5},{0x16b79,4}}, {{0x41da,3},{0xce2,3}}, + {{0xf62b,3},{0xae7,1}}, {{0x12fc,5},{0x1a,2}}, {{0x4d19,6},{0xb65,2}}, {{0x6d8e,3},{0x763c,3}}, + {{0x265b,4},{0x2b,1}}, {{0xddc,4},{0x1a10,2}}, {{0x8b96,8},{0xe72,3}}, {{0x17ec,4},{0xc3a,3}}, + {{0x415e,3},{0x1d,2}}, {{0x10f7,1},{0xbe7,1}}, {{0x178c,3},{0x887b,3}}, {{0x10ea,3},{0xbbf,2}}, + {{0xc34,2},{0x3788,3}}, {{0x18e38,6},{0xc34,2}}, {{0x24753,4},{0x159cb,2}}, {{0x9a9,3},{0x2445f,1}}, + {{0xded,5},{0xbdeb,5}}, {{0x78e2,7},{0xb78,2}}, {{0xa07e,5},{0xa083,6}}, {{0xeb9,6},{0x16a4,8}}, + {{0x7c4,8},{0x7c4,7}}, {{0xae2,1},{0xae2,1}}, {{0x2d,1},{0xc55,2}}, {{0x20,2},{0xf01,4}}, + {{0xc2a0,6},{0xcd65,4}}, {{0x1b4e3,1},{0x27e34,3}}, {{0x4290,4},{0xd5e,7}}, {{0x5102,5},{0x3a39,3}}, + {{0xc37,3},{0x38eb,3}}, {{0x6ac3,3},{0xc905,4}}, {{0x78ca,4},{0x2b76,3}}, {{0x27b09,2},{0x116e,1}}, + {{0x278a9,1},{0x1b140,2}}, {{0x14fac,3},{0xca7,3}}, {{0x10c8,3},{0xaf2,1}}, {{0x1c,1},{0x1372,3}}, + {{0x3b10,8},{0xb8b,2}}, {{0x25ddf,4},{0x2bfd,2}}, {{0x44df,6},{0xd1a,7}}, {{0x14fac,3},{0x27,1}}, + {{0x1144,4},{0x1a,2}}, {{0x27b6,1},{0xa7d8,2}}, {{0xcaa,4},{0x1377,5}}, {{0x10c8,3},{0xb2c,2}}, + {{0xe6d,2},{0x1761,4}}, {{0xba5,4},{0x200b,11}}, {{0x124e,3},{0xdbf,3}}, {{0x681f,7},{0xb65,2}}, + {{0xfd67,6},{0xfd6d,5}}, {{0xdf4,4},{0x103a,3}}, {{0x1095,3},{0x1cc1,4}}, {{0x34aa,8},{0x11b8,4}}, + {{0xbe4,1},{0x1cd1,5}}, {{0x1084,3},{0x108b,3}}, {{0xd54,1},{0x2431d,4}}, {{0xf77e,5},{0x227a,3}}, + {{0x27c79,4},{0x116c,1}}, {{0xad32,4},{0x6604,6}}, {{0x7c66,7},{0x10dc,2}}, {{0x10c8,3},{0xbd6,2}}, + {{0x244b9,2},{0x6f72,2}}, {{0x2746,3},{0xae7,1}}, {{0x944e,6},{0xc1e,2}}, {{0x2e52,6},{0x7eb8,5}}, + {{0xc89,2},{0x103a,3}}, {{0x271e,3},{0x15adc,2}}, {{0x278db,2},{0x278af,1}}, {{0x3c28,9},{0xb7c,3}}, + {{0x265b,4},{0x8a49,3}}, {{0x1f,1},{0xb54,3}}, {{0xbcb,3},{0x1c4d9,4}}, {{0xf629,5},{0x3a3b,3}}, + {{0x9166,6},{0x5a4f,6}}, {{0x19b3,5},{0x1e,2}}, {{0x19c1d,4},{0xae7,1}}, {{0xd51,2},{0xb55,2}}, + {{0xbd8,2},{0x2d,1}}, {{0x2787,6},{0xf7fd,5}}, {{0x19b3,5},{0x1a,1}}, {{0x123c,9},{0xae6,3}}, + {{0x30,64},{0x30,36}}, {{0xae0,1},{0x9001,4}}, {{0x41be,3},{0x25aa0,3}}, {{0xdf3,3},{0xb47,2}}, + {{0x1b6db,10},{0x1b6dd,2}}, {{0x43e3,1},{0x10ed,2}}, {{0x1c,1},{0xfdd,8}}, {{0x7426,8},{0x10dc,2}}, + {{0x13c84,6},{0x13c8a,4}}, {{0x85de,5},{0x11bd5,5}}, {{0x8536,6},{0x853c,6}}, {{0x432,64},{0x432,16}}, + {{0x14dca,7},{0xd0b,3}}, {{0x27ae5,2},{0x278a9,1}}, {{0x278c9,2},{0x278a9,1}}, {{0x127ec,6},{0x2939,3}}, + {{0xf52,4},{0x22bd,6}}, {{0x924,1},{0x27ad3,2}}, {{0x924,3},{0x278d6,1}}, {{0x323c,2},{0x12f1,3}}, + {{0xc5ff,4},{0xae7,1}}, {{0x1a67,11},{0x2c2d,3}}, {{0x6fc2,6},{0x9a9,1}}, {{0x44d2,6},{0x1555,7}}, + {{0xcd9,3},{0x1f,1}}, {{0x26c6,1},{0xab9c,1}}, {{0x3218,5},{0x25c0,4}}, {{0xbd8,2},{0xd0d,2}}, + {{0x124c,8},{0x1254,6}}, {{0x31ad,5},{0x31b2,4}}, {{0x2d,1},{0x40bb,5}}, {{0xca7,3},{0x103a,3}}, + {{0x14dc,7},{0x1257,3}}, {{0xd1a,2},{0x35bb,5}}, {{0x3dcc,8},{0x11b8,4}}, {{0x3694,4},{0x443e,2}}, + {{0xdd04,6},{0x1393,3}}, {{0x7db6,8},{0x2af8,4}}, {{0x178c,3},{0xb74,2}}, {{0xd0b,3},{0x8470,4}}, + {{0xc17,3},{0xaf0,2}}, {{0x10ef,2},{0x1ae4e,5}}, {{0xcb8,2},{0x1425b,3}}, {{0x177c,3},{0xbb4,2}}, + {{0xb49e,4},{0x2b,2}}, {{0x178c,3},{0x1498,3}}, {{0x78b2,5},{0x461c,4}}, {{0x16f33,4},{0x1b,1}}, + {{0x3d6a,7},{0xc34,3}}, {{0xd41,5},{0xc1e,2}}, {{0x1a,2},{0x1930,3}}, {{0x532,4},{0x532,2}}, + {{0xbde,3},{0x212fe,4}}, {{0x6b04,5},{0x16202,4}}, {{0x4978,4},{0xb2c,2}}, {{0x27b4,3},{0x131b3,4}}, + {{0x67aa,6},{0x2b,3}}, {{0x6107,3},{0x2b,3}}, {{0x1015e,2},{0x70d2,2}}, {{0x16ac,11},{0xb52,5}}, + {{0xe9a6,7},{0x3f84,4}}, {{0x4ab6,6},{0xbb0b,5}}, {{0x541b,7},{0xd0d,2}}, {{0x10ea,3},{0x11ef,3}}, + {{0x1c,1},{0x19cb,6}}, {{0x663e,8},{0xff7,5}}, {{0xc34,2},{0xae2,1}}, {{0xb7f,3},{0x2a90,2}}, + {{0x177c,3},{0x1aaed,1}}, {{0x10ef,1},{0x1a81d,2}}, {{0x2b,2},{0x2237,3}}, {{0x19d4d,6},{0xbb1,3}}, + {{0x41da,3},{0xf8cf,2}}, {{0xd91b,8},{0x2b,3}}, {{0x2796,3},{0xaeda,2}}, {{0xc3a,3},{0xd51,2}}, + {{0x95fe,8},{0x2b,3}}, {{0xa7da,3},{0x159f,4}}, {{0xb7f,3},{0x1b4f,3}}, {{0xaea,2},{0x591d,3}}, + {{0x1084,3},{0xcb8,3}}, {{0x17bc,3},{0x1878,1}}, {{0xbb4,2},{0xaf2,1}}, {{0xaea,2},{0x5b7d,3}}, + {{0xf535,5},{0xbb1,3}}, {{0xb2f,1},{0xfe5,2}}, {{0x97de,9},{0x2b,3}}, {{0xcfd,5},{0x2a91,4}}, + {{0x181c,3},{0x1098,3}}, {{0x21,1},{0xc1c,2}}, {{0x10ec4,5},{0xb8f,2}}, {{0x142c,3},{0x174e,3}}, + {{0x1972,2},{0xae6,2}}, {{0x415e,3},{0x1f,2}}, {{0xd54,1},{0xb75,2}}, {{0x2864c,1},{0x948,1}}, + {{0x422e,3},{0x28da,1}}, {{0xa2ee,6},{0x2b,3}}, {{0xc25,9},{0xc2e,9}}, {{0xa7da,3},{0x1a,1}}, + {{0x4338,8},{0x2faa,5}}, {{0xd78f,6},{0x3776,3}}, {{0x2bfd,2},{0x1a,1}}, {{0x2249,3},{0xb47,2}}, + {{0x1046a,4},{0x46fa,4}}, {{0x92b6,5},{0x10599,5}}, {{0x3db0,5},{0xfffb,2}}, {{0x25202,2},{0x1b4e3,1}}, + {{0x194a,5},{0xd57,2}}, {{0x9423,3},{0xb65,2}}, {{0xf367,5},{0xb47,2}}, {{0xfacf,9},{0xd0d,2}}, + {{0x261f,4},{0x691a,4}}, {{0x6d81,3},{0x27232,3}}, {{0x1907,3},{0x1c9da,3}}, {{0x5442,4},{0x139f,3}}, + {{0x6855,3},{0x22e3,3}}, {{0x318c,5},{0x11ef,2}}, {{0x43e3,1},{0xb7c,3}}, {{0xe64,4},{0xeee,5}}, + {{0x6971,8},{0xce8,3}}, {{0x8c4,4},{0x30,38}}, {{0xbd1,2},{0xcce,3}}, {{0x1459e,3},{0x1b,1}}, + {{0xe6d,2},{0x16a2,3}}, {{0xb7d,1},{0xb2c,2}}, {{0xf3eb,5},{0xdbf,3}}, {{0x2589,7},{0x67be,5}}, + {{0x70a8,4},{0xfee4,8}}, {{0x6d8e,3},{0xd0d,2}}, {{0x10024,4},{0x31e2,4}}, {{0x1babd,5},{0x1036,3}}, + {{0x3234,3},{0xae2,2}}, {{0xa22e,4},{0x715a,3}}, {{0x12fe,5},{0xb54,3}}, {{0x10f2,1},{0xab9c,1}}, + {{0x24a34,3},{0x2446f,2}}, {{0x28,1},{0x94a5,4}}, {{0x11e32,7},{0x1489,3}}, {{0x17b70,6},{0xae7,1}}, + {{0xf3e0,6},{0xb48,2}}, {{0xbb4,2},{0xaea,1}}, {{0xf794,6},{0x1cd1,5}}, {{0xbde,3},{0xdd3,3}}, + {{0xbde,3},{0x10dc,2}}, {{0x142e,1},{0x1e121,4}}, {{0x1e18,7},{0x1525,7}}, {{0x14fc,5},{0x28,1}}, + {{0x924,3},{0x27897,1}}, {{0x1e,1},{0xae2,1}}, {{0x1040,6},{0x19f5,9}}, {{0x12ac,7},{0xe70,4}}, + {{0xb6c,3},{0xae7,1}}, {{0x1053,5},{0xb65,2}}, {{0x5a4f,6},{0xd0d,2}}, {{0x4ddc,8},{0x7fda,4}}, + {{0x2bfd,2},{0xb98,2}}, {{0xbe7,1},{0xc15,3}}, {{0x26333,5},{0xae7,1}}, {{0x9fb2,9},{0xb54,3}}, + {{0xc60,3},{0xc63,3}}, {{0x23136,4},{0x1cef,3}}, {{0x762a,4},{0xc0c3,3}}, {{0x244ad,2},{0x1dec4,2}}, + {{0xbcb,3},{0xd8b0,5}}, {{0x17ac,4},{0x1300,6}}, {{0x1cee,3},{0xc8a0,5}}, {{0x271e,3},{0x1878,1}}, + {{0x7681,3},{0xb2c,4}}, {{0x209d,5},{0xf10,3}}, {{0xf40c,5},{0xb2f,1}}, {{0xeb9,6},{0xc81d,5}}, + {{0x52fd,9},{0x5306,4}}, {{0x41da,3},{0x26042,2}}, {{0x278c9,2},{0x279bf,2}}, {{0x41be,4},{0xb9c2,4}}, + {{0xd8f,3},{0xae7,1}}, {{0xbb2,2},{0x1b09,3}}, {{0xea98,5},{0xf10,3}}, {{0x8716,8},{0x23ce,4}}, + {{0x4034,9},{0xc7b,4}}, {{0x88ae,8},{0x11e4,4}}, {{0xafc8,2},{0x23d9,3}}, {{0xcd9,3},{0x3f3d,3}}, + {{0x47aa,7},{0x1f,1}}, {{0x10fb,3},{0xfbb2,8}}, {{0xfb1,2},{0xae0,1}}, {{0x4132,5},{0xc20,5}}, + {{0x10ec,1},{0x10fa,1}}, {{0x2ada9,4},{0x1b,1}}, {{0x278dc,1},{0x279fb,2}}, {{0xc67,2},{0x5cd6,3}}, + {{0x2796,3},{0xaa94,2}}, {{0xf5b0,7},{0xae7,1}}, {{0x181c,3},{0x20b6,2}}, {{0xadd,4},{0xca7,2}}, + {{0x278c9,2},{0x279cb,2}}, {{0x70dc,4},{0x1b6f5,2}}, {{0x10ec,1},{0x139e,3}}, {{0x278d5,2},{0x116c,1}}, + {{0x2bea,10},{0x1498,4}}, {{0xe011,5},{0xcc0,3}}, {{0x804,2},{0x244ed,2}}, {{0xd54,1},{0x21,1}}, + {{0xcd9,3},{0x6dd7,3}}, {{0x3e92,3},{0x10dc,2}}, {{0x5dba,3},{0x3fdc,4}}, {{0x6c7f,3},{0x1865,4}}, + {{0xaf1,1},{0x1719,3}}, {{0x3694,4},{0xc34,3}}, {{0x5288,5},{0x1016,4}}, {{0x924,16},{0x924,16}}, + {{0x13ed2,5},{0x889f,3}}, {{0x1b75,7},{0x4d13,6}}, {{0x47de,7},{0xb4b,2}}, {{0x17bc,4},{0x1045,3}}, + {{0x1b801,6},{0x1b1a3,4}}, {{0x4459,3},{0x29d9,3}}, {{0x2d,1},{0xb55,2}}, {{0xeca,5},{0x3bc2,4}}, + {{0x55d5,8},{0xce8,3}}, {{0xf58f,6},{0xb78,2}}, {{0xd57,2},{0x7c25,5}}, {{0x190b7,7},{0xae7,1}}, + {{0x349c,10},{0xc7b,4}}, {{0x43e3,1},{0x4284,2}}, {{0x24e4,6},{0xc8e,3}}, {{0xb55,2},{0xc34,3}}, + {{0xae0,1},{0xba2c,4}}, {{0x10f2,1},{0x41eb,4}}, {{0x20bb,3},{0x9319,3}}, {{0x26b5,4},{0x13852,4}}, + {{0x164c,9},{0xcd2,7}}, {{0xcbd,3},{0xcc0,7}}, {{0x2c14,6},{0xa60f,3}}, {{0xb6e,2},{0xbd3,3}}, + {{0x1e9ff,4},{0x103a,3}}, {{0x2b,2},{0xb8f,2}}, {{0x1aee,6},{0x1cef,3}}, {{0xe64,4},{0x5c76,4}}, + {{0x6f62,4},{0x159cb,2}}, {{0xcd9,3},{0xde9,1}}, {{0xcb5,3},{0xaf2,1}}, {{0xb9a5,5},{0x2a24,6}}, + {{0x1084,3},{0x139e,2}}, {{0xf85,4},{0xbef2,6}}, {{0xf4dd,5},{0xb9d,3}}, {{0x143c,5},{0x25da,3}}, + {{0x1ce2,4},{0x1ce6,6}}, {{0x178c,3},{0xb2d,3}}, {{0x1e87f,7},{0xaf2,1}}, {{0x35fa,6},{0xd614,5}}, + {{0xbde,3},{0x1904,3}}, {{0x13626,6},{0xb2c,2}}, {{0x10f1,2},{0xab9c,1}}, {{0xad32,4},{0xd7a,3}}, + {{0x440f,2},{0x27b6,1}}, {{0x20,2},{0xc1c,2}}, {{0x27,1},{0x1c,1}}, {{0xf74,4},{0xb2c,2}}, + {{0x10f6,1},{0xc17,3}}, {{0x2711,3},{0x12ff,2}}, {{0x2324,4},{0x28e2,6}}, {{0xaea,1},{0xb72,2}}, + {{0xb8f,2},{0x2b,2}}, {{0xaea,2},{0xaf1,1}}, {{0x74b6,7},{0x2b,3}}, {{0x27c97,3},{0x24,2}}, + {{0x6d8e,3},{0x15a1,3}}, {{0x12bc,5},{0xc60,3}}, {{0x19174,6},{0xb48,2}}, {{0x287e5,4},{0x6f8a,2}}, + {{0xe9a6,7},{0xaf2,1}}, {{0xeee4,8},{0x1257,3}}, {{0x28e2,4},{0x2b,3}}, {{0x5eb6,4},{0xca7,2}}, + {{0x1c,1},{0x7b33,7}}, {{0x1140,4},{0xae5,1}}, {{0xac8c,2},{0x4326,4}}, {{0xbde,3},{0x2891,3}}, + {{0xadaa,5},{0x1e1d4,3}}, {{0x14bf4,7},{0xb2c,2}}, {{0x1cbf,5},{0x16e2,2}}, {{0x17bc,3},{0xd5c,1}}, + {{0xb82,2},{0x11ef,2}}, {{0x12fc,4},{0x362c,6}}, {{0xf21,3},{0x103a,3}}, {{0xaa92,6},{0xaa98,2}}, + {{0x3100,6},{0xf9d,4}}, {{0x177c,3},{0x14d5,3}}, {{0xbeb,1},{0x1a,3}}, {{0xd6d4,7},{0xb2c,2}}, + {{0xba7,3},{0xb48,2}}, {{0x27,1},{0x67af,2}}, {{0x13ac,8},{0x13b4,8}}, {{0x3242,5},{0xce8,3}}, + {{0x3df6,5},{0xb2e,2}}, {{0xdc1,5},{0xfe5,2}}, {{0x3aa0,7},{0x1555,7}}, {{0x1c56,5},{0x1704,3}}, + {{0xfd5c,5},{0x1af81,4}}, {{0xe334,7},{0xeb3,3}}, {{0xc46e,7},{0x25df,4}}, {{0xae2,2},{0xa60f,3}}, + {{0x10ca,1},{0x10ef,1}}, {{0xdf0,2},{0x1377,5}}, {{0x142e,1},{0x1d8a,3}}, {{0xcb8,2},{0x28,1}}, + {{0xc37,3},{0x1cd30,5}}, {{0x10ea,3},{0xb65,2}}, {{0x70d0,4},{0x70d4,4}}, {{0xb44,3},{0x2976,3}}, + {{0x4cd8,6},{0xae0,1}}, {{0xf99b,7},{0x28,1}}, {{0xddc,4},{0x700f,3}}, {{0x27b6,1},{0xb78,2}}, + {{0x1084,3},{0xf14,2}}, {{0x1561,3},{0xb48,2}}, {{0x1095,3},{0xc67,2}}, {{0xceb,3},{0x4df1,5}}, + {{0x10fb,3},{0x1701,3}}, {{0x162c,6},{0x5076,4}}, {{0x27c67,4},{0x116e,1}}, {{0xb70,2},{0xc32,5}}, + {{0xbde,3},{0x46f8,3}}, {{0x178c,3},{0xc57,3}}, {{0x170c,5},{0xa60f,3}}, {{0xc30,2},{0x1498,4}}, + {{0x3782,9},{0xb68,4}}, {{0xd8e,4},{0xb78,2}}, {{0x1146e,6},{0x2b,3}}, {{0x27aaf,2},{0x116d,1}}, + {{0x2793d,4},{0x27a19,2}}, {{0x15266,5},{0xae5,2}}, {{0x1193c,7},{0x2939,3}}, {{0x441c,3},{0x67b2,5}}, + {{0xdf0,2},{0xb9f,2}}, {{0xab9a,3},{0x2b,1}}, {{0xeb9,6},{0xec5,5}}, {{0x278ad,3},{0x278af,2}}, + {{0x2451f,2},{0x70d2,2}}, {{0x1105e,5},{0x16a86,4}}, {{0x1972,2},{0x1254,3}}, {{0xa7d,4},{0x806,2}}, + {{0x10ea6,7},{0x10dc,2}}, {{0x6b1e,4},{0x1961,3}}, {{0x2daa,5},{0xe994,4}}, {{0x804,2},{0x1b6f5,2}}, + {{0xc13,4},{0xb46b,7}}, {{0xb72,2},{0x16e2,2}}, {{0x26f1,4},{0xb79,2}}, {{0xbe0,1},{0xb71,2}}, + {{0x1d55,7},{0x139f,3}}, {{0x10ef,2},{0x10f1,3}}, {{0xbcb,3},{0x1d88a,5}}, {{0x159c,4},{0xd8e,9}}, + {{0x28da,1},{0xae7,1}}, {{0x10c8,11},{0xb7a,5}}, {{0x139e,2},{0x1d,1}}, {{0x15adc,3},{0x4288,2}}, + {{0xe44,3},{0xb8a,2}}, {{0xeb5e,8},{0xc34,3}}, {{0x30,512},{0x30,512}}, {{0x14d16,5},{0x14d1b,5}}, + {{0xaf1,1},{0xb7a,5}}, {{0xae7,2},{0x187c,3}}, {{0x1375c,6},{0xd0d,2}}, {{0xaf62,2},{0x10f2,2}}, + {{0xfef0,6},{0xfb8b,2}}, {{0xfda,6},{0xc63,3}}, {{0xaa1a,6},{0xae7,1}}, {{0xa7da,3},{0xf5e,3}}, + {{0x422e,3},{0xa24a,3}}, {{0x36da,5},{0x10b2,5}}, {{0x4450,4},{0x5306,4}}, {{0x84b2,5},{0xae0,1}}, + {{0x807a,8},{0x25ee,4}}, {{0x5a74,6},{0x2976,3}}, {{0x1f6b9,5},{0x889f,3}}, {{0x17be,2},{0x8c2a,6}}, + {{0xbde,3},{0xfb1,2}}, {{0x6c0a,2},{0x5277,4}}, {{0x740e,9},{0x1257,3}}, {{0x4186,4},{0x1393,3}}, + {{0xcb5,3},{0xcf3e,2}}, {{0x10c8,4},{0x112b0,5}}, {{0x1a874,6},{0xd7a,3}}, {{0x149ae,5},{0x139e,3}}, + {{0x244c5,4},{0x70da,2}}, {{0x804,2},{0x27d99,2}}, {{0x27b6,1},{0x461b,5}}, {{0x20bb,3},{0xae6,3}}, + {{0x114e6,5},{0xb7a,5}}, {{0x1a,1},{0xb7d,2}}, {{0x9a9,1},{0x1ed57,2}}, {{0x2c46a,4},{0x1b23d,2}}, + {{0x6d81,3},{0xbe7,1}}, {{0xae0,1},{0xb63,2}}, {{0x6d8e,3},{0xd5c,1}}, {{0x4971,5},{0xb2e,2}}, + {{0x1e45,3},{0xb78,2}}, {{0xc37,3},{0xd7f,3}}, {{0xd65,3},{0x1a,3}}, {{0xae9,2},{0xb70,2}}, + {{0x19b3,5},{0x16202,4}}, {{0xa246,7},{0xa24d,5}}, {{0x4588,8},{0x734a,4}}, {{0x3234,3},{0x1a88,3}}, + {{0x2451f,4},{0x15798,2}}, {{0xbc1,2},{0xb55,2}}, {{0x10ef,1},{0x1ae4e,2}}, {{0x15ac,10},{0xb52,5}}, + {{0x27c6d,4},{0x116e,1}}, {{0x2eb0,4},{0xc1e,2}}, {{0x244ad,2},{0x157b6,2}}, {{0x191d,11},{0xbb4,4}}, + {{0x19a4,6},{0xaec,2}}, {{0x1a,2},{0xc76,9}}, {{0xc25,3},{0x11ef,3}}, {{0x612a,8},{0x10c3,5}}, + {{0xbde,3},{0xbd90,3}}, {{0xbb4,2},{0x8fe2,4}}, {{0xb65,2},{0xaea,1}}, {{0x437e,4},{0x1c8f,3}}, + {{0xd41,5},{0x411c,4}}, {{0x10f6,1},{0x10f0,1}}, {{0x139f,3},{0xd17,3}}, {{0xf38f,3},{0x10dc,2}}, + {{0x1665b,6},{0x10dc,2}}, {{0x10b7,4},{0xb64,3}}, {{0xa7da,3},{0x2b,2}}, {{0x278ad,3},{0x1b140,2}}, + {{0xb002,5},{0xb7c,3}}, {{0xc89,3},{0x2b,2}}, {{0x70f6,4},{0xae6,3}}, {{0xb44,3},{0x1308,3}}, + {{0x415e,3},{0x2eb9,4}}, {{0x804,2},{0x2ae5b,2}}, {{0x6d8e,3},{0xb2e,2}}, {{0x1cbf,5},{0x1d,1}}, + {{0x179e4,6},{0x2b,3}}, {{0x177c,3},{0xa563,7}}, {{0x3f7e,6},{0x3f84,4}}, {{0x422e,3},{0x27b6,1}}, + {{0x77c2,7},{0x79f9,4}}, {{0x10f0,1},{0x1a10,2}}, {{0xd76,4},{0x5fc7,4}}, {{0x1ed58,1},{0x734,1}}, + {{0x27b4,3},{0x1a10,2}}, {{0x441c,3},{0x1bb50,5}}, {{0x17be,2},{0x1e,1}}, {{0x264c,6},{0x296f,5}}, + {{0x6d81,3},{0x1a,3}}, {{0x278d5,2},{0x27897,1}}, {{0xc37,3},{0x2282,6}}, {{0x10f7,1},{0x10f3,1}}, + {{0xddc,4},{0x520e,5}}, {{0x1372,3},{0xf481,4}}, {{0x7a56,5},{0x12be,3}}, {{0x1aa3,6},{0x2abe,6}}, + {{0x163ee,8},{0xae7,1}}, {{0x70dc,4},{0xf907,2}}, {{0x61c6,6},{0xa60f,3}}, {{0xd1a,2},{0xebf,3}}, + {{0x177c,3},{0xb8f,2}}, {{0xc55,2},{0xb7c,3}}, {{0x6ac5,1},{0x411c,4}}, {{0x27acd,2},{0x278a9,1}}, + {{0xae2,1},{0xb383,5}}, {{0xbaa2,4},{0x19533,4}}, {{0x278c9,2},{0x279c5,2}}, {{0x3234,6},{0xcc0,3}}, + {{0x2288,4},{0x124e,3}}, {{0x1d55,4},{0xd0ff,2}}, {{0x27b4,3},{0x6ac5,1}}, {{0x14fc,4},{0xb2d,3}}, + {{0xcd9,3},{0x1b0a,2}}, {{0xde9,1},{0x15c72,6}}, {{0x6fc2,6},{0x22cf8,1}}, {{0xdc28,5},{0x25df,4}}, + {{0xcfd,5},{0xc50d,6}}, {{0x1084,3},{0xa886,4}}, {{0xd78,5},{0xe91,6}}, {{0x4ab0,3},{0xb55,2}}, + {{0x12d3c,6},{0x25df,4}}, {{0x532,34},{0x30,24}}, {{0x1a1f1,5},{0x1a1f6,4}}, {{0x11e7,4},{0x4d08,4}}, + {{0x2a715,4},{0x116e,1}}, {{0x178c,3},{0xc89,2}}, {{0x5428,5},{0x1701,3}}, {{0xbe4,1},{0x22bf,4}}, + {{0xaea,1},{0x2d44,4}}, {{0xeb9,5},{0xbed,2}}, {{0xcc0,3},{0x16f8,3}}, {{0xa98a,7},{0x2b,2}}, + {{0x244d7,4},{0x6fac,2}}, {{0x32ce,11},{0x10dc,2}}, {{0x177c,3},{0xf14,2}}, {{0xbd8,2},{0xb79,2}}, + {{0x4a4e,8},{0xae5,1}}, {{0x3f38,10},{0xd7f,3}}, {{0x159e,3},{0x108b,3}}, {{0x10fb,3},{0x1089,2}}, + {{0x3988,10},{0xb54,4}}, {{0xd1b,1},{0xae5,1}}, {{0xc25,4},{0x12a0,12}}, {{0x2daa,5},{0xd14,4}}, + {{0xf30,5},{0x10dc,2}}, {{0x168ad,7},{0x1150,2}}, {{0x1878,1},{0xeb2,1}}, {{0x5a8e,6},{0x7385,5}}, + {{0x2d,1},{0x3643,9}}, {{0xb63,2},{0xfe5,2}}, {{0x53f4,5},{0xae7,1}}, {{0xaea,1},{0x2dcb,4}}, + {{0x10ec,1},{0x535b,5}}, {{0xcd9,3},{0x5af9,3}}, {{0xb03a,3},{0x1a,2}}, {{0xe6d,3},{0x28,2}}, + {{0x20,2},{0xbaa,6}}, {{0x197b6,5},{0x23ce,4}}, {{0xc25,3},{0x11b8,4}}, {{0x17bc,3},{0x2482,3}}, + {{0xcd9,3},{0x2a16,3}}, {{0xd0f,5},{0xbbf,2}}, {{0xa6c6,5},{0x2b,2}}, {{0x440f,2},{0x20b13,2}}, + {{0x14dde,6},{0xa083,4}}, {{0x281d,6},{0xf10,3}}, {{0x135c,7},{0xc63,3}}, {{0x27c3,4},{0x229f,5}}, + {{0xb63,3},{0xc8a,2}}, {{0x20b25,6},{0x29da,3}}, {{0x924,1},{0x27ac1,2}}, {{0x423c,3},{0x1878,1}}, + {{0x169f,3},{0x2b,2}}, {{0x27,1},{0x1cd80,5}}, {{0xd41,3},{0xd7a,3}}, {{0x278a1,3},{0x1171,2}}, + {{0xefd6,9},{0xb2c,2}}, {{0x377b,4},{0xcbf,3}}, {{0x41be,4},{0xe83e,5}}, {{0x6d8e,3},{0x10ec,1}}, + {{0xb6e,2},{0xec2,2}}, {{0x1b75,7},{0xec5,5}}, {{0x154aa,6},{0xa0fc,4}}, {{0x23957,5},{0x1694,2}}, + {{0xa7da,3},{0xd54,1}}, {{0x422e,3},{0x152d2,2}}, {{0x10f2,1},{0xe36,5}}, {{0xeb2,1},{0xde9,1}}, + {{0x5483,4},{0x35c7,9}}, {{0x30,256},{0x30,128}}, {{0x7162,4},{0x734a,4}}, {{0xae2,2},{0xb54,3}}, + {{0x16b3e,6},{0xb78,2}}, {{0x40c0,7},{0x1df3,7}}, {{0xf212,3},{0x989a,4}}, {{0x41f6,4},{0x14c84,6}}, + {{0x219c,4},{0x5dee,4}}, {{0x9e4a,9},{0x132f,3}}, {{0x114d,5},{0x1152,3}}, {{0xc6d,7},{0x262a,4}}, + {{0x30,2},{0x924,3}}, {{0x3db0,5},{0x8651,4}}, {{0x2ae0,5},{0x1e,1}}, {{0x175c,9},{0x10dc,2}}, + {{0x16bc,8},{0x10a2,4}}, {{0x19bc1,6},{0x2195,3}}, {{0xb7f,3},{0xce8,3}}, {{0x1e,1},{0x21b2e,4}}, + {{0xac66,5},{0xd17,3}}, {{0xb2e,2},{0xefda,5}}, {{0x5f90,3},{0x2b,1}}, {{0xeb9,6},{0x16a4,4}}, + {{0x15cf6,8},{0xaf2,1}}, {{0x9646,5},{0xd46,3}}, {{0xd41,4},{0x3fb8,3}}, {{0xbc44,7},{0xd48,2}}, + {{0x1ed53,1},{0x734,1}}, {{0x423e,1},{0xbe4,1}}, {{0x1a96,4},{0xb48,2}}, {{0xcd9,3},{0x9133,3}}, + {{0x1a1f4,2},{0x10f6,1}}, {{0x4354,4},{0xc4d,2}}, {{0x5aae,3},{0x1c25,4}}, {{0xb9c6,8},{0x1a,2}}, + {{0xc25e,5},{0x4f4d,3}}, {{0x28b1,3},{0xc34,2}}, {{0x278a9,1},{0x278f3,2}}, {{0x2793d,4},{0x27a1f,2}}, + {{0xc13,4},{0xae5,1}}, {{0x27b09,2},{0x116d,1}}, {{0x5ca5,5},{0xae3,2}}, {{0xbe7,1},{0x5aab,3}}, + {{0x74ce,5},{0xcd2,7}}, {{0xaad,12},{0xaad,12}}, {{0x6846,8},{0x10c3,5}}, {{0x27aa9,2},{0x116e,1}}, + {{0xb85,2},{0xbbf,2}}, {{0xddc,5},{0x95c7,5}}, {{0x39ce,5},{0x700f,3}}, {{0x4776,8},{0xf5e,5}}, + {{0x10c8,3},{0x1b5a,5}}, {{0x1f059,5},{0xc67,2}}, {{0x381c,7},{0x5e73,6}}, {{0x1ac6,5},{0xcf6,3}}, + {{0x159c8,1},{0x9a9,1}}, {{0x10ec,1},{0x4c27,5}}, {{0x1e,1},{0xc67,2}}, {{0xcd9,3},{0x1a,3}}, + {{0xd65,3},{0xcc0,3}}, {{0xcc00,7},{0x41ba,4}}, {{0x269e1,4},{0xbe4,1}}, {{0xfb1,2},{0xb6e,2}}, + {{0xaf2a,5},{0xb2c,2}}, {{0x1318b,4},{0x10dc,2}}, {{0x423c,3},{0xbeb,1}}, {{0x804,2},{0x6f90,2}}, + {{0xaf1,1},{0x700f,3}}, {{0x531d,4},{0x109f,3}}, {{0x3a22,4},{0x29da,3}}, {{0xc89,2},{0x28,1}}, + {{0x2451f,2},{0x24873,2}}, {{0x4338,11},{0xc8e,3}}, {{0x16ac9,5},{0x2900,4}}, {{0xb12e,3},{0x28,1}}, + {{0x6faa,4},{0x6fae,2}}, {{0x1a,1},{0x2b54,8}}, {{0x7df2,7},{0xb65,2}}, {{0xc13,5},{0x1701,3}}, + {{0x17fc,5},{0x13937,5}}, {{0x271e,3},{0xbe4,1}}, {{0x5b6b,9},{0xd0d,2}}, {{0xbcb,3},{0xbf20,5}}, + {{0x4119,3},{0xdf0,2}}, {{0x271e,3},{0x28,2}}, {{0x5c76,4},{0xb2f,1}}, {{0x27af1,2},{0x924,1}}, + {{0xae2,2},{0x2b,1}}, {{0x35fa,6},{0x16ce,4}}, {{0x6b56,6},{0x2a16,3}}, {{0x1c83d,5},{0xb48,2}}, + {{0x4326,4},{0x3e2a,4}}, {{0x142e,1},{0x4d97,2}}, {{0x30,2},{0x9c9,2}}, {{0xb52,2},{0xc63,3}}, + {{0x5698,7},{0x7fda,4}}, {{0xfd95,3},{0x11ef,3}}, {{0x8d16,5},{0x20cd,7}}, {{0x41be,4},{0xbd4,2}}, + {{0xbcb,3},{0x1762,3}}, {{0x278cf,2},{0x278dc,1}}, {{0x124c,4},{0x179ce,3}}, {{0x6d81,3},{0x2098b,2}}, + {{0x2445e,1},{0x1b4e4,1}}, {{0xd76,4},{0x8c46,4}}, {{0x1168a,7},{0x1e,1}}, {{0x4e6b,9},{0x11e4,4}}, + {{0x1cbf,5},{0x1ce2,10}}, {{0x19174,6},{0x2b,3}}, {{0x2227c,5},{0xaea,2}}, {{0xc5ce,6},{0xb2e,2}}, + {{0x2c9da,4},{0x2ae5b,2}}, {{0xb7d,1},{0x1f,1}}, {{0xb55,2},{0x1d,1}}, {{0xd041,5},{0xbac,4}}, + {{0xaea,1},{0x3a41,6}}, {{0x244b9,2},{0x157b6,2}}, {{0x244b3,2},{0x244fd,4}}, {{0x422e,3},{0xb2f,1}}, + {{0x181c,3},{0xbd4,2}}, {{0xc55,2},{0x1081,3}}, {{0x14ee2,4},{0x28,1}}, {{0x69cc,8},{0x69d4,5}}, + {{0x6ac5,1},{0x1878,1}}, {{0x17fe,3},{0xae1,3}}, {{0xceb,3},{0x2dc3,3}}, {{0x17b70,6},{0x10dc,2}}, + {{0x2cae,8},{0x1196,6}}, {{0x27ad3,2},{0x278d6,1}}, {{0xaefa,4},{0xbd8,2}}, {{0x15a3a,4},{0x1b4e,5}}, + {{0x131e2,7},{0x2b,3}}, {{0xd7f,3},{0xb65,2}}, {{0x679d,6},{0x1dac,3}}, {{0x142e,1},{0x1089,2}}, + {{0xb2f,1},{0xf59,3}}, {{0xc4d,2},{0x8560,6}}, {{0x6d81,3},{0x10ec,1}}, {{0xab3a,5},{0xcf3e,5}}, + {{0x4459,3},{0x2b,3}}, {{0x10ea,3},{0x2742,3}}, {{0x4e5e,9},{0x10dc,2}}, {{0x4450,7},{0x139f,3}}, + {{0xaea,1},{0x1257,2}}, {{0x1084,3},{0xc2e,2}}, {{0x162c,6},{0xb72,2}}, {{0x2796,13},{0xb2e,2}}, + {{0xfd27,2},{0xc67,2}}, {{0x26f80,2},{0x10f3,1}}, {{0xda9,5},{0xaea,1}}, {{0x265b,4},{0x2d,1}}, + {{0x19375,6},{0x1dac,3}}, {{0x2a94b,3},{0x24,1}}, {{0x8a49,2},{0xae5,1}}, {{0xb6c,3},{0x2098,3}}, + {{0x10f1e,6},{0x2b3e,4}}, {{0x24525,4},{0x70b4,2}}, {{0xc55,2},{0xc57,4}}, {{0x3dd1,2},{0x28b1,3}}, + {{0x2810,4},{0x67c0,3}}, {{0x27b6,1},{0xdfd2,8}}, {{0xc77,2},{0x12fe,1}}, {{0x703f,4},{0x5f8f,3}}, + {{0x278d5,2},{0x278af,1}}, {{0x2322,6},{0x75cd,4}}, {{0x804,2},{0x157a4,2}}, {{0xb79,2},{0xee0,3}}, + {{0xae6,3},{0x2566,4}}, {{0xb8f,3},{0x1b,1}}, {{0x28f6,2},{0x1b,1}}, {{0x9a9,2},{0x9a9,3}}, + {{0x41e8,5},{0x10569,3}}, {{0xc8d2,6},{0xc6a9,3}}, {{0x441c,3},{0x1308,4}}, {{0x6d8e,3},{0xf02,3}}, + {{0x244f5,2},{0x159cd,2}}, {{0xc4c6,6},{0x2abe,5}}, {{0xb2f,1},{0xae0,1}}, {{0xbd7,3},{0x2b,2}}, + {{0x416c,4},{0x1035,5}}, {{0x1b695,2},{0x10f3,1}}, {{0x1175c,5},{0x3fdc,4}}, {{0x181c,3},{0xde9,1}}, + {{0x6f74,4},{0x1015e,2}}, {{0x1934,4},{0x10dc,2}}, {{0xb99,3},{0x18ca,3}}, {{0xa8c0,3},{0x8cf9,5}}, + {{0x10f7,1},{0x1150,2}}, {{0x177c,3},{0x14b6,2}}, {{0x4108,2},{0x3789,3}}, {{0x27b0f,2},{0x278a9,1}}, + {{0x271e,3},{0xb72,2}}, {{0xecb3,8},{0x2b,3}}, {{0xaec,2},{0x159f,4}}, {{0x26f1,4},{0x68c2,4}}, + {{0x3234,3},{0xbad,4}}, {{0x70a0,6},{0x1015e,2}}, {{0x3e31,3},{0xc8e,3}}, {{0x144c,7},{0x1140,3}}, + {{0xad02,5},{0xe4c,7}}, {{0x136c,6},{0xb55,3}}, {{0x14bb0,2},{0x1878,1}}, {{0x118c,5},{0xbd5a,3}}, + {{0x27aaf,2},{0x278dc,1}}, {{0x1084,3},{0x16629,5}}, {{0x13160,6},{0x2af8,4}}, {{0xc39,2},{0xbb4,2}}, + {{0xec2,2},{0x11e7,4}}, {{0x178c,3},{0xd44,5}}, {{0x134c,5},{0x81f3,6}}, {{0x532,34},{0x30,20}}, + {{0xc89,2},{0x208ea,5}}, {{0x1ed3,7},{0xb2e,2}}, {{0xaa92,8},{0xaa9a,4}}, {{0x1aee,6},{0x1fc4,7}}, + {{0x16fc,4},{0xcf6,3}}, {{0x10ef,5},{0x10f4,7}}, {{0x10b7,5},{0x11ef,2}}, {{0x109c,3},{0x2c2d,3}}, + {{0x41f6,4},{0x10dc,2}}, {{0xceb,3},{0x28dd0,2}}, {{0x1a85,5},{0x1930,3}}, {{0x519e,5},{0xae7,1}}, + {{0x3598,5},{0xb63,2}}, {{0x257c,2},{0x1a,2}}, {{0x278af,2},{0x1b6ab,1}}, {{0xf8c8,7},{0xf8cf,4}}, + {{0xb31,1},{0x2b2ff,1}}, {{0xcd9,5},{0x12ae,3}}, {{0x357c,7},{0xd0d,2}}, {{0x6b5f,4},{0x1140,3}}, + {{0xd51,2},{0xd57,2}}, {{0x1c,1},{0xae5,1}}, {{0x1cbf,5},{0x1e,1}}, {{0x1a0d,5},{0x46e0,5}}, + {{0xbeb,1},{0xc77,2}}, {{0x43a2,3},{0x1d,1}}, {{0x246c,8},{0xb7a,5}}, {{0x5e11,6},{0x1555,7}}, + {{0xbb2,2},{0x28,1}}, {{0xfef0,6},{0x1019c,2}}, {{0xbe4,1},{0xb72,2}}, {{0xeb9,5},{0x7a46,4}}, + {{0x181c,3},{0x2098b,2}}, {{0xbd1,2},{0x28,1}}, {{0xae0,1},{0x4074,3}}, {{0x24a30,2},{0x24461,1}}, + {{0x19e0,7},{0xbd6,8}}, {{0x192c,8},{0x1934,7}}, {{0xb75,5},{0x11b8,4}}, {{0x2601,10},{0x18eb,5}}, + {{0x152a2,5},{0xe302,5}}, {{0x24495,2},{0x70d2,2}}, {{0xf0e,5},{0xb82,3}}, {{0x271e,3},{0xb2c,2}}, + {{0x1c,1},{0x7f6c,6}}, {{0x30,6},{0x532,4}}, {{0x1931,6},{0xd0d,2}}, {{0xab9a,3},{0xce8,3}}, + {{0x31e2,4},{0xc1c,2}}, {{0x397a,6},{0xb71,2}}, {{0xbe4,1},{0x5dbb,4}}, {{0xb65,2},{0x951e,8}}, + {{0x326c,4},{0xaf1,1}}, {{0x30,2},{0x9e9,2}}, {{0x257a,4},{0x887b,3}}, {{0x1ee91,5},{0x1ee96,3}}, + {{0x7c5a,6},{0x3409,5}}, {{0x278af,2},{0x278af,1}}, {{0xf537,3},{0x1712f,3}}, {{0xd57,2},{0xae0,1}}, + {{0x106d4,5},{0x12fe,3}}, {{0xd65,3},{0xc30,2}}, {{0x423e,1},{0x20e7a,3}}, {{0xeb3,3},{0x28,1}}, + {{0xc37,4},{0xb55,2}}, {{0xdcb,7},{0x4874,6}}, {{0x27b6,1},{0xaedc,5}}, {{0x1393,3},{0x16d2,2}}, + {{0x2d,1},{0xd1b,1}}, {{0x27af1,2},{0x116e,1}}, {{0xc94b,5},{0xae7,1}}, {{0x1cbf,9},{0xb52,5}}, + {{0xa6c6,5},{0xbc4,4}}, {{0x318c,5},{0xaee,5}}, {{0xbe4,1},{0x1cd80,5}}, {{0x3758,4},{0xb85,2}}, + {{0x147c,5},{0x4694,5}}, {{0xb12e,3},{0xf21,3}}, {{0x423e,1},{0x14b6,2}}, {{0x6b6c,5},{0x1ec2,4}}, + {{0x10c8,3},{0x10ef,1}}, {{0x60cf,8},{0x2b,3}}, {{0x22371,5},{0x1b25b,4}}, {{0x1b93,6},{0xca7,3}}, + {{0xaea,4},{0xb2c,4}}, {{0xbde,3},{0x1878,1}}, {{0x6d81,3},{0x10ed,2}}, {{0xa222,8},{0x1278,4}}, + {{0x27b4,3},{0x2bfc,2}}, {{0xb44,3},{0x40b6,4}}, {{0x187c,3},{0x1a,2}}, {{0x2201,3},{0xdf0,2}}, + {{0x41da,3},{0xc1e,2}}, {{0x6860,5},{0x2ddc,6}}, {{0x804,2},{0x20b23,2}}, {{0xd7e,2},{0xb469,4}}, + {{0xd41,8},{0xae7,1}}, {{0x2732,5},{0x2737,5}}, {{0x1055,3},{0xaf2,1}}, {{0xbeb,1},{0xb2d,3}}, + {{0x22cf8,1},{0x27e35,2}}, {{0x9b1a,5},{0x2f3c,3}}, {{0x41da,3},{0x10f3,1}}, {{0x17bc,3},{0x4352,2}}, + {{0x253e9,6},{0x253eb,4}}, {{0x160c,8},{0x1489,3}}, {{0x27b09,2},{0x1b6ab,1}}, {{0x1b855,6},{0x247f1,4}}, + {{0x2878d,4},{0x1015e,2}}, {{0xb170,7},{0xae7,1}}, {{0x14b3,5},{0x2b,2}}, {{0x41be,3},{0x10f0,1}}, + {{0xf14,2},{0x10e5c,4}}, {{0xb6c,3},{0x8975,5}}, {{0x1084,3},{0xb63,2}}, {{0x6d8e,3},{0xb78,2}}, + {{0xb52,2},{0x2d44,4}}, {{0x6f2e,6},{0xfe5,2}}, {{0x24462,1},{0x24,1}}, {{0xb92c,7},{0xbc1,2}}, + {{0x12fc,10},{0x2b,3}}, {{0xae7,2},{0xb52,5}}, {{0x3d40,9},{0x10dc,2}}, {{0x278ad,3},{0x278a9,2}}, + {{0xcd9,3},{0xae7,1}}, {{0x24b7,6},{0x2349,6}}, {{0x270f,5},{0xcab,3}}, {{0xfef0,4},{0xfee4,4}}, + {{0x12724,8},{0xd0d,2}}, {{0x271e,3},{0xb63,2}}, {{0x10dc,2},{0x2d5d,4}}, {{0xbb73,5},{0x33d3,5}}, + {{0x1098,3},{0xb9c,2}}, {{0xaca2,3},{0xbe0,1}}, {{0x924,2},{0x278b5,2}}, {{0x27dc7,6},{0x2474d,4}}, + {{0x4380,2},{0x11f2,3}}, {{0xb92,4},{0x179ce,3}}, {{0x10f0,1},{0x2d,1}}, {{0x27b03,2},{0x27897,1}}, + {{0x29db,5},{0x10b3,4}}, {{0x102c,2},{0xc51,2}}, {{0x80c2,6},{0x1377,5}}, {{0x1aa12,5},{0x155dc,4}}, + {{0x152c4,2},{0xaa95,3}}, {{0x152f2,6},{0xcc3,4}}, {{0xb64,2},{0x4500,6}}, {{0xae7,2},{0xd89f,3}}, + {{0x3655,5},{0x2b,2}}, {{0xab0a,5},{0x4905,4}}, {{0xeb1,2},{0x28,1}}, {{0xcf3e,2},{0x43bd,4}}, + {{0x1a66a,6},{0x25c2,3}}, {{0x13f22,5},{0xae7,1}}, {{0x1015,5},{0x16f8,3}}, {{0x4126,3},{0x11b8,4}}, + {{0xc89,2},{0xb64,2}}, {{0xcd9,5},{0x2d,1}}, {{0x26c4,4},{0x20ed,3}}, {{0xd0f,4},{0x15f26,3}}, + {{0x5aa8,6},{0x2195,3}}, {{0x147c,7},{0x12be,3}}, {{0x2748,2},{0xb65,2}}, {{0x1a2b,10},{0xae7,1}}, + {{0x89da,7},{0x89e1,5}}, {{0x3624,6},{0xc63,3}}, {{0x112c,1},{0x9a9,1}}, {{0x92d0,4},{0x14bb4,2}}, + {{0x2982,10},{0xc7b,4}}, {{0x6f68,12},{0x6f74,6}}, {{0x142e,1},{0x1425b,3}}, {{0x1bde,6},{0xd6d,9}}, + {{0xe64,5},{0x4dd4,8}}, {{0x41be,3},{0x9a3a,5}}, {{0xc37,3},{0xbc1,3}}, {{0xbd4,2},{0xae7,1}}, + {{0x2451f,2},{0x1016a,2}}, {{0xb6c,3},{0xce2,3}}, {{0x27,1},{0x411c,4}}, {{0x1a0d,5},{0x1d4e,4}}, + {{0xb8c,2},{0xcd2,7}}, {{0x428b,2},{0x2675a,2}}, {{0xcb5,3},{0x7ac7,4}}, {{0x2868,8},{0xe7f,7}}, + {{0xd41,4},{0x7856,5}}, {{0x3cde,8},{0xb9d,3}}, {{0xab9a,3},{0x2af8,4}}, {{0xbe0,1},{0xbfc4,6}}, + {{0xb44,3},{0x33b3,3}}, {{0x924,1},{0x27ac7,2}}, {{0x12882,7},{0xb52,2}}, {{0x287e7,2},{0x1cf1d,2}}, + {{0x13bc,7},{0xd1a,2}}, {{0xf8e9,5},{0x1c2d,4}}, {{0x281d,5},{0x89f5,4}}, {{0x2789,4},{0x290f,3}}, + {{0x1531a,5},{0xc4d,2}}, {{0x17b31,6},{0x10dc,2}}, {{0x14ff0,4},{0x28,2}}, {{0x178c,3},{0xb9d,3}}, + {{0x82de,6},{0xc6a9,3}}, {{0x5efb,10},{0x10dc,2}}, {{0x1f,1},{0xae0,1}}, {{0x6f74,4},{0x6f64,2}}, + {{0x5915,6},{0x12143,2}}, {{0x2c76,4},{0x168c3,5}}, {{0x804,2},{0x6f78,2}}, {{0xc345,8},{0x10dc,2}}, + {{0xbcb,3},{0xaf1,1}}, {{0x422e,3},{0xbe4,1}}, {{0x46f4,4},{0x1c,2}}, {{0x8a49,2},{0x1d,1}}, + {{0x27b4,3},{0xcc0,3}}, {{0xc89,3},{0x2b,3}}, {{0xcb8,3},{0x11e6,6}}, {{0xb44,3},{0x2b,2}}, + {{0x27d2,6},{0xd14,4}}, {{0x1878,1},{0x20b6,2}}, {{0x4290,4},{0x12e94,6}}, {{0xd0f,4},{0xc78,3}}, + {{0x2891,3},{0x4460,3}}, {{0x1e,1},{0x1bb1a,2}}, {{0x6f62,4},{0x5c78,2}}, {{0x10f2,1},{0x10fa,1}}, + {{0x16bc,4},{0xdac,3}}, {{0x20ac,7},{0x3db5,6}}, {{0x10f7,1},{0x17a2f,6}}, {{0x100d,5},{0x1954,3}}, + {{0x6d8e,3},{0xb52,2}}, {{0x177c,3},{0x5dbb,4}}, {{0x278a3,2},{0x116d,1}}, {{0xc17,3},{0x4e97,3}}, + {{0x177c,3},{0xae7,1}}, {{0x423c,3},{0x298a,2}}, {{0x1f,1},{0x1a10,2}}, {{0x244ad,2},{0x6f66,2}}, + {{0xb7d,1},{0xf5e,3}}, {{0x18376,6},{0x10dc,2}}, {{0x20bd,3},{0x1e6c,6}}, {{0x234f,9},{0x1434,6}}, + {{0x139c,6},{0x50ee,4}}, {{0x2c47c,4},{0x6f90,2}}, {{0xe9a6,7},{0xbd8,2}}, {{0x143c,5},{0xd17a,6}}, + {{0xc67,2},{0x10dc,2}}, {{0xab9a,3},{0xc67,2}}, {{0x41da,3},{0x5af9,3}}, {{0x19f2a,5},{0xf27c,3}}, + {{0x1ed51,3},{0x27cf6,2}}, {{0xae2,1},{0x1cef,3}}, {{0x1930,3},{0x1b,1}}, {{0xe2f2,4},{0x1520,2}}, + {{0x1084,3},{0x27,1}}, {{0x4812,6},{0x7654,6}}, {{0x41da,3},{0xe6d,2}}, {{0x20bb,3},{0x2cde,7}}, + {{0x2b26,8},{0xb52,2}}, {{0xcd9,5},{0x32ff,7}}, {{0xe2e7,6},{0x5fe0,4}}, {{0x27,1},{0x1099,3}}, + {{0xb6c,3},{0xaec,2}}, {{0xffc,7},{0x1bdb,3}}, {{0x10ec,1},{0xc30,2}}, {{0xbb2,2},{0x168c3,4}}, + {{0xb66,2},{0xaeb,3}}, {{0xaee7,2},{0xd54,1}}, {{0x244f5,2},{0x24873,2}}, {{0xd65,3},{0xb4b,2}}, + {{0x141e,3},{0xb2c0,4}}, {{0xff20,4},{0x709c,4}}, {{0xa29a,8},{0x10dc,2}}, {{0x68ae,6},{0xe695,4}}, + {{0x26c4,3},{0xbe4,1}}, {{0x18811,6},{0xd7f,3}}, {{0xbe7,2},{0x40b6,3}}, {{0xf278,4},{0xf27c,3}}, + {{0xb70,2},{0xaf1,2}}, {{0x14cc,4},{0xb2e,2}}, {{0x41be,3},{0x1520,2}}, {{0x2f9b,3},{0xc66,3}}, + {{0xbaa2,4},{0x84dd,5}}, {{0xe6d,2},{0xb47,2}}, {{0x6d81,3},{0x10ef,1}}, {{0x278db,2},{0x116c,1}}, + {{0x2ab6,5},{0xb67c,6}}, {{0xf21,3},{0xc3d,3}}, {{0x1d91,10},{0x2b,3}}, {{0xaf0,2},{0x1393,3}}, + {{0x2445f,1},{0x24a2f,3}}, {{0xeec,7},{0x135e,3}}, {{0xbe7,1},{0x763c,3}}, {{0x422e,3},{0x5dbb,4}}, + {{0x122c,4},{0x165b4,5}}, {{0x1286e,5},{0x1d,1}}, {{0x12fe,2},{0x1dd0,3}}, {{0x416a,5},{0x80d3,5}}, + {{0xd57,2},{0xbb4,2}}, {{0x10f7,1},{0xb8f,2}}, {{0xb30,2},{0xb31,1}}, {{0x278a3,2},{0x116e,1}}, + {{0x2386e,5},{0xaf1,2}}, {{0x2920,4},{0x1906,4}}, {{0xbed,4},{0x1a,1}}, {{0x10ca,3},{0xce2,3}}, + {{0x3e90,5},{0x11f2,3}}, {{0x278c9,2},{0x279ef,2}}, {{0x125c,8},{0xae6,3}}, {{0x15b4a,4},{0xbe0,1}}, + {{0x3a92,6},{0x11ef,2}}, {{0x10fb,3},{0x139e,4}}, {{0x6f62,4},{0x1b25d,2}}, {{0x13e3,4},{0xc1c,2}}, + {{0xb82,2},{0x1372,3}}, {{0x27b0f,2},{0x27897,1}}, {{0x10ea,3},{0x10f8,2}}, {{0x12496,4},{0x4459,3}}, + {{0xc13,4},{0x12ee,10}}, {{0x19564,6},{0x1a,2}}, {{0x6d81,3},{0x11ef,2}}, {{0x278cf,2},{0x278af,1}}, + {{0x3838,8},{0x1081,3}}, {{0x414e,8},{0xb52,5}}, {{0x2066,4},{0x132f,3}}, {{0x196f,3},{0xe72,3}}, + {{0x193bd,6},{0x2b,3}}, {{0xe81a,6},{0x1916,5}}, {{0xae0,1},{0x1cef,3}}, {{0x1a,3},{0xb9d,3}}, + {{0x2796,3},{0x29,2}}, {{0x6b52,4},{0x1b4f,3}}, {{0x261f,5},{0xc1c,2}}, {{0x2844,2},{0x10ef,1}}, + {{0x1a,1},{0x1e6c,6}}, {{0x101c0,7},{0x10dc,2}}, {{0x6d8e,3},{0xcb8,3}}, {{0xc13,4},{0x811b,7}}, + {{0xe6d,2},{0xb52,5}}, {{0xab0a,5},{0x24b2,5}}, {{0x1c25,3},{0xf291,5}}, {{0x24525,4},{0x6f78,2}}, + {{0x441c,3},{0x15c21,6}}, {{0x26c6,1},{0xbe0,1}}, {{0x423e,1},{0x1a,1}}, {{0x2f16,8},{0xb52,6}}, + {{0xceb,3},{0x1055,3}}, {{0x102b2,3},{0x17ba1,3}}, {{0x14e56,6},{0x14a8,4}}, {{0x53e0,5},{0xaf2,1}}, + {{0x287e7,2},{0x6f72,2}}, {{0x135c,5},{0xc5ff,4}}, {{0xe75,6},{0xb78,2}}, {{0x10fb,3},{0x1aaed,1}}, + {{0xb99,2},{0x2b03,5}}, {{0x1ab8c,5},{0x139f,3}}, {{0x27b0f,2},{0x116c,1}}, {{0xadc2,8},{0xb52,2}}, + {{0x474f,6},{0xb65c,5}}, {{0x271e,3},{0xa7d1,2}}, {{0x2043,4},{0x5444,3}}, {{0xceb,3},{0xe5ce,5}}, + {{0x153c,9},{0x2b,2}}, {{0x2a90,2},{0x4d97,2}}, {{0x10ca,1},{0x1aaed,1}}, {{0x2b354,2},{0x2b354,2}}, + {{0x271e,3},{0x187c,3}}, {{0x144c,6},{0xc4d,2}}, {{0x18a5,5},{0x1014,3}}, {{0x2796,3},{0xb66,2}}, + {{0xaea,1},{0xc593,4}}, {{0x43e3,1},{0x28,1}}, {{0xc70,4},{0x262a,4}}, {{0xae0,1},{0xfb1,2}}, + {{0x10fb,3},{0x10f1,2}}, {{0x10fb,3},{0x2c00,3}}, {{0xc8a,2},{0x1693,3}}, {{0xa7d1,2},{0x10ef,2}}, + {{0x19c63,6},{0xb78,2}}, {{0xf827,4},{0xf82b,3}}, {{0x265b,4},{0xe7d2,4}}, {{0x75cd,4},{0x1b40f,4}}, + {{0x12ff,3},{0x1a,1}}, {{0x7a6e,4},{0xca7,2}}, {{0x177c,3},{0x1099,3}}, {{0x1d55,8},{0x2b,3}}, + {{0x6957,7},{0xb65,2}}, {{0x17ac,3},{0x206a,6}}, {{0x27d39,3},{0x7c4,2}}, {{0xd5c,1},{0xae7,2}}, + {{0x10f4,2},{0xd54,1}}, {{0x2aacb,2},{0x244af,2}}, {{0x108b,3},{0x108e,7}}, {{0x40ea,5},{0x2a91,4}}, + {{0x2d,1},{0xbb5,1}}, {{0xae9,2},{0x30cc,3}}, {{0x28da,4},{0x28de,10}}, {{0x2467b,6},{0x6f8c,6}}, + {{0x278a9,2},{0x27897,1}}, {{0x278c9,2},{0x279d1,2}}, {{0x31c8,4},{0xb2c,4}}, {{0x152a8,4},{0x4459,3}}, + {{0x1e45,3},{0x410c,4}}, {{0xb123,4},{0x432,3}}, {{0x2061,5},{0x30fb,5}}, {{0x441c,3},{0x2a16,3}}, + {{0x27b0f,2},{0x278d6,1}}, {{0xcb5,3},{0xb48,2}}, {{0xae2,2},{0xb75,2}}, {{0xba5,4},{0x1701,3}}, + {{0xaec,2},{0xbbf,2}}, {{0x27,2},{0xca7,3}}, {{0x3c28,9},{0xc8c,5}}, {{0xd17,3},{0xee8,3}}, + {{0xcfd,7},{0x63d5,6}}, {{0xbeb,1},{0xb52,2}}, {{0x2446a,3},{0x1ed58,1}}, {{0xc49,3},{0xae2,2}}, + {{0xa7da,3},{0x10ec,1}}, {{0x1724a,5},{0xae7,1}}, {{0xab9a,3},{0xc77,2}}, {{0x2d,1},{0xdc1,5}}, + {{0x511c,6},{0xf10,3}}, {{0x941e,9},{0x10dc,2}}, {{0x56cc,7},{0x1037,6}}, {{0xc13,4},{0x9beb,7}}, + {{0x2445e,1},{0x251cb,1}}, {{0xbeb,1},{0xba58,8}}, {{0x27b4,3},{0xbeb,1}}, {{0x114f0,6},{0x48a4,3}}, + {{0xbb5,1},{0xb062,6}}, {{0x26c6,2},{0x18e5,11}}, {{0x2d,1},{0x5cd6,3}}, {{0x924,1},{0x1171,2}}, + {{0xdf5,4},{0xe1c,4}}, {{0xcee,4},{0x10dc,2}}, {{0x14cb2,6},{0x80bd,4}}, {{0x177c,5},{0xdfa,3}}, + {{0x1b6db,4},{0x1b6f5,2}}, {{0x3694,4},{0x904d,5}}, {{0x177c,3},{0x1dd8,4}}, {{0xc5ce,6},{0xc5ea,5}}, + {{0x4042,7},{0x21d2,6}}, {{0xcb5,3},{0x9271,4}}, {{0x5102,5},{0xae7,1}}, {{0x79f6,6},{0xd91,2}}, + {{0x27c73,4},{0x278d6,1}}, {{0x924,1},{0x27ab5,2}}, {{0x2451f,2},{0x244af,2}}, {{0x6971,8},{0xb52,5}}, + {{0x2868,4},{0x4119,4}}, {{0xb92,4},{0x179ce,4}}, {{0x1084,3},{0x392d,3}}, {{0x445d,4},{0xfdf,3}}, + {{0x244f5,2},{0xab1,2}}, {{0xcf0,2},{0xb7c,3}}, {{0x71da,6},{0xce8,3}}, {{0xb47,2},{0x25c2,3}}, + {{0x1055,3},{0x5cd6,3}}, {{0xf471,4},{0xd91,2}}, {{0x1a5d1,6},{0x2b,2}}, {{0x271e,3},{0xcb8,3}}, + {{0x7df2,7},{0x3d9d,5}}, {{0xf395,5},{0xcce,3}}, {{0xd154,6},{0xce8,3}}, {{0xb2f,1},{0xb8a,2}}, + {{0xb44,3},{0x4ae5,5}}, {{0x1e45,3},{0x1d,1}}, {{0x78ca,5},{0x701d,5}}, {{0x446a,9},{0xb78,2}}, + {{0x5bd3,7},{0x1916,5}}, {{0xdba,4},{0x1c,2}}, {{0x17ec,5},{0x1611,3}}, {{0xb48,2},{0xb7d,1}}, + {{0x70c6,4},{0xff22,2}}, {{0x87ee,6},{0x734a,4}}, {{0x244c5,4},{0xff26,2}}, {{0x105e4,6},{0xb2c,4}}, + {{0xb75,3},{0x1a,1}}, {{0xc8bc,7},{0x2af8,4}}, {{0x271e,3},{0xc419,6}}, {{0xf9b1,5},{0xb52,5}}, + {{0x1259,2},{0x5af9,3}}, {{0x11dc,5},{0x11e7,4}}, {{0x10ea,5},{0x10ef,12}}, {{0x1f62,9},{0x2b,3}}, + {{0x15204,4},{0x5f01,4}}, {{0x1b2e3,3},{0x1b3b0,5}}, {{0xaec,2},{0x1a,1}}, {{0x117c,1},{0x2520a,2}}, + {{0x2840,2},{0x10ef,1}}, {{0x11cc,11},{0x10dc,2}}, {{0x22cf8,1},{0x1b6cb,1}}, {{0x10f2,1},{0x19f3f,2}}, + {{0x6a8f,5},{0x11d95,3}}, {{0x1051,7},{0xa049,4}}, {{0x1c,1},{0xc34,2}}, {{0xc25,9},{0xb7c,3}}, + {{0x41da,3},{0xc67,2}}, {{0xc4d,2},{0x2d,1}}, {{0x7c4,1},{0x1ed53,1}}, {{0xb7f,3},{0x1cf1b,4}}, + {{0x41ef,2},{0x2bfc,2}}, {{0x27b4,3},{0x15f83,4}}, {{0x734,2},{0x251d8,2}}, {{0xf681,5},{0x9071,5}}, + {{0x8f83,3},{0x1f,2}}, {{0x2445c,3},{0x2446f,2}}, {{0xaf1,1},{0x5c76,4}}, {{0xf63c,2},{0x1402,2}}, + {{0xcd9,3},{0x14d5,3}}, {{0x2bd32,3},{0x2b2ff,1}}, {{0xb9d,3},{0x28,1}}, {{0xc52,2},{0x4f0e,6}}, + {{0x53f4,5},{0x2693,4}}, {{0xcde,3},{0xae8,2}}, {{0x278cf,2},{0x116c,1}}, {{0xa276,9},{0xc63,3}}, + {{0xbc6,2},{0xb55,2}}, {{0x10ea,3},{0x43ac,8}}, {{0x1a8e,4},{0x1257,3}}, {{0xbeb,2},{0x164af,5}}, + {{0x280e,6},{0x6008,4}}, {{0x364e,4},{0xcae4,3}}, {{0x165f8,6},{0xae0,1}}, {{0x10fb,3},{0x2aa0,3}}, + {{0xf8cf,2},{0x10f3,1}}, {{0xc25,3},{0x1839e,5}}, {{0x1e,1},{0x1196,6}}, {{0x1d,1},{0xcce,3}}, + {{0x27b4,3},{0x705a,4}}, {{0x17040,6},{0x2b,3}}, {{0x4266,5},{0x1fb2,8}}, {{0xae0,1},{0xede,3}}, + {{0xcfd,5},{0xc7ae,6}}, {{0x278a9,2},{0x278a9,1}}, {{0x20bb,5},{0x14e1,4}}, {{0xadf,5},{0x1a,1}}, + {{0xb2c,2},{0xbd6,2}}, {{0xb64,3},{0x7295,5}}, {{0xaf3,4},{0x5c78,2}}, {{0x26c6,2},{0x15f28,5}}, + {{0xceb,3},{0x1b264,2}}, {{0x27ae5,2},{0x116c,1}}, {{0xf393,6},{0x15583,3}}, {{0x28e8e,2},{0x1b4e3,1}}, + {{0xaca2,3},{0xaf2,1}}, {{0xcd9,3},{0x1e,1}}, {{0xb85,2},{0xc9f,4}}, {{0x2796,3},{0x3788,3}}, + {{0x6c08,4},{0x5277,4}}, {{0x6b52,4},{0x2a16,3}}, {{0xbde,3},{0x4189,3}}, {{0xae7,1},{0xd1b,1}}, + {{0x70c8,2},{0x6f8a,2}}, {{0x2474d,4},{0xc601,2}}, {{0xeec,6},{0x8472,4}}, {{0xe7b,4},{0xb52,5}}, + {{0x136c,6},{0xcd2,7}}, {{0xc1e,2},{0x28,1}}, {{0x22e6,5},{0xae6,2}}, {{0x946,3},{0x2446f,2}}, + {{0xbe7,1},{0x6ac5,1}}, {{0x102f6,6},{0x2af8,4}}, {{0x3e90,5},{0x5cdb,3}}, {{0x1095,3},{0x361c,4}}, + {{0x14d5,3},{0xc63,3}}, {{0x2b5e,9},{0xb7c,3}}, {{0xd41,4},{0xd7a,3}}, {{0x1413e,7},{0x2b,3}}, + {{0xcf44,6},{0xcf55,5}}, {{0xb71,2},{0x1a,1}}, {{0x1177a,8},{0xb65,2}}, {{0xaca2,3},{0xce8,3}}, + {{0x46f4,4},{0xaf2,1}}, {{0x27a2b,2},{0x116e,1}}, {{0x27b4,3},{0xa7d8,2}}, {{0xa9f6,6},{0x4d56,4}}, + {{0xf63c,2},{0xae2,1}}, {{0x156c6,5},{0x8bb5,5}}, {{0x286c5,4},{0x1016a,2}}, {{0x19b3,4},{0xc77,2}}, + {{0xc1c,2},{0x3bc2,4}}, {{0x142c,4},{0x122dc,6}}, {{0x20,2},{0x1a,1}}, {{0x6d90,7},{0x59fb,4}}, + {{0x26b5,4},{0xae7,2}}, {{0x169f,3},{0xfe5,2}}, {{0x310e,10},{0xb2c,4}}, {{0x10ef,1},{0x6224,8}}, + {{0x1ae2,2},{0x10c4,4}}, {{0x1505e,5},{0x1dbb2,3}}, {{0xb7f,3},{0xcb8,3}}, {{0xeb1,2},{0xc63,3}}, + {{0x6e92,7},{0x6e99,6}}, {{0xbddd,6},{0xae7,1}}, {{0x12af8,8},{0xd0d,2}}, {{0x2ba9,3},{0x1254,6}}, + {{0x27e1c,2},{0x24460,3}}, {{0x5442,4},{0xb7d,1}}, {{0x251fe,2},{0x734,2}}, {{0x1b0a,2},{0x1b79,3}}, + {{0x9136,6},{0xa379,5}}, {{0xbe4,1},{0x1f2c5,2}}, {{0xdba,4},{0x28,1}}, {{0x2bfd,2},{0x4c0b,4}}, + {{0xb2c5,6},{0xc63,3}}, {{0x219c,4},{0x12427,4}}, {{0x2324,4},{0xd14,4}}, {{0x1a0bf,6},{0xb8f,3}}, + {{0x10e3,2},{0x33b3,3}}, {{0x27b6,1},{0x1a,2}}, {{0x27b09,2},{0x278d6,1}}, {{0x245d,9},{0xb54,3}}, + {{0xcb5,3},{0x13d63,4}}, {{0xb6fb,6},{0x7a46,4}}, {{0x27c73,4},{0x27897,1}}, {{0x5b03,6},{0x3521,7}}, + {{0xb78a,7},{0xb55,2}}, {{0x20bb,3},{0x36b7,7}}, {{0x31e2,4},{0xbd1,2}}, {{0x22abe,4},{0x1d,1}}, + {{0x415c,5},{0x1e,1}}, {{0x29b0,3},{0xc34,2}}, {{0x2796,3},{0xf258,7}}, {{0x2912,4},{0xaea,1}}, + {{0xaf1,1},{0x28fe,6}}, {{0x3cc2,9},{0x2b,3}}, {{0x10472,4},{0x55d1,4}}, {{0x10ec,1},{0x411c,4}}, + {{0xab9a,3},{0x1d,1}}, {{0x78e2,7},{0x296f,5}}, {{0x3996,8},{0xcf7,6}}, {{0x1040,6},{0x1d22,6}}, + {{0xb4a,3},{0xb8b,2}}, {{0xb64,3},{0xdf5,4}}, {{0x323c,2},{0x10dc,2}}, {{0x7e8e,7},{0x3409,5}}, + {{0x1a,1},{0x18d8,4}}, {{0x32f8,11},{0x10dc,2}}, {{0x3758,4},{0xc89,2}}, {{0x6c0a,2},{0x5277,2}}, + {{0x11d88,5},{0x4834,5}}, {{0x159c,4},{0x9ed3,7}}, {{0xbcb,3},{0x11b8,4}}, {{0x30,2},{0x532,24}}, + {{0x14dc,7},{0x1717,5}}, {{0x16e3,3},{0x18eb,5}}, {{0x70d0,4},{0x1b237,4}}, {{0x135c,9},{0x22e3,3}}, + {{0x70a0,6},{0x70a6,2}}, {{0xff34,8},{0xff00,4}}, {{0x239a,11},{0xae7,1}}, {{0xc4d,2},{0xff7,5}}, + {{0x7a6e,5},{0xce8,3}}, {{0xaefa,4},{0xa04a,3}}, {{0xf6a,5},{0x1d,1}}, {{0x5ed4,8},{0xce8,3}}, + {{0x2747,3},{0x2b,1}}, {{0x9b62,6},{0x11e6,6}}, {{0xc6a1,7},{0x3a39,3}}, {{0xc1c,2},{0xbbf,2}}, + {{0x10884,6},{0x1081,3}}, {{0xe006,5},{0x48eb,4}}, {{0x27c6d,4},{0x278d6,1}}, {{0x397a,5},{0x1308,4}}, + {{0x27923,2},{0x278a9,1}}, {{0x41da,3},{0xd57,2}}, {{0x3f9a,7},{0x696b,6}}, {{0x27b4,3},{0xbd8,2}}, + {{0x12fe,2},{0x284e,3}}, {{0x6ac3,3},{0x9319,3}}, {{0x263d,5},{0x33d3,5}}, {{0xb73,2},{0x1e14,3}}, + {{0x286bd,2},{0x6f66,2}}, {{0x2793d,4},{0x27a25,2}}, {{0x1daf,5},{0xcc73,6}}, {{0x27d4,4},{0xc89,3}}, + {{0x549d,7},{0xfe5,6}}, {{0xc25,5},{0xd57,3}}, {{0xc37,3},{0x2af4,4}}, {{0xb77,3},{0x2d,1}}, + {{0xb64,3},{0x1ae4,7}}, {{0x2aacb,2},{0x157a4,2}}, {{0xaea,2},{0xdfab,3}}, {{0x8ae2,5},{0x1b,1}}, + {{0x142c,3},{0x443e,2}}, {{0xda9,5},{0x108bb,5}}, {{0x287e5,6},{0x2b,1}}, {{0xdfe,9},{0x12d7,5}}, + {{0x2d,1},{0x4687,5}}, {{0x25789,2},{0xa51,2}}, {{0xaeb,2},{0x28,1}}, {{0x1290,5},{0x1408,4}}, + {{0x9fc3,5},{0xb2e,2}}, {{0x17bc,4},{0x8c2a,6}}, {{0x25c5,5},{0xc74c,5}}, {{0x7162,4},{0x92c9,4}}, + {{0x10c8,3},{0x10ca,1}}, {{0xcfd,4},{0xf10,3}}, {{0x70dc,4},{0x1dec4,2}}, {{0x7aaa,8},{0xb2e,2}}, + {{0x20bb,3},{0x1bb1a,2}}, {{0x6ac5,1},{0xb8f,2}}, {{0x27ce8,3},{0x18,1}}, {{0xe53,7},{0xbb5,1}}, + {{0x30ae,6},{0x10dc,2}}, {{0xceb,3},{0x16ae,3}}, {{0x1c,1},{0x10f7,1}}, {{0xf6e4,5},{0xc34,2}}, + {{0xe6d,3},{0xb8f,2}}, {{0xd7dc,6},{0x1499,2}}, {{0x6ac5,1},{0x10dc,2}}, {{0x278cf,2},{0x278a9,1}}, + {{0x10ef,1},{0xc8e,3}}, {{0xae2,1},{0x1f13,4}}, {{0x27ac7,2},{0x1b6ab,1}}, {{0x6ac5,1},{0x10281,6}}, + {{0xf30,5},{0xbc4,4}}, {{0xcd9,3},{0xbc5,3}}, {{0xb65,2},{0xaea,2}}, {{0xbed,2},{0xd1b,1}}, + {{0x16cc,6},{0x16d2,2}}, {{0xbde,3},{0x27b6,1}}, {{0x1f,1},{0x6045,4}}, {{0x1cc5,3},{0xc67,2}}, + {{0x4450,4},{0xf868,4}}, {{0x1509a,4},{0xae2,1}}, {{0x1865,4},{0x2b,3}}, {{0x1a014,6},{0x2b,3}}, + {{0x428d,3},{0xbeb,1}}, {{0x1713c,5},{0x3e19,4}}, {{0xbb5,1},{0xb55,3}}, {{0x178c,7},{0x22c0,3}}, + {{0x16dc,5},{0xedcb,5}}, {{0x78ca,4},{0x2b,1}}, {{0xceb,3},{0x14b6,2}}, {{0x16772,5},{0xc8f,2}}, + {{0x579c,8},{0x10dc,2}}, {{0x12fe,2},{0xdf0,2}}, {{0x20bb,3},{0x410c,4}}, {{0x8c4,4},{0x30,16}}, + {{0x2451f,2},{0x1b25d,2}}, {{0xf789,5},{0xaf1,2}}, {{0x177c,3},{0xb47,2}}, {{0x12bc,5},{0x600f,5}}, + {{0xbe7,1},{0x12b91,4}}, {{0x3234,3},{0x21cd9,4}}, {{0xae5,1},{0xe9b,3}}, {{0xab9a,3},{0x31c9,3}}, + {{0xbeb,1},{0x2b8e,3}}, {{0x15694,5},{0xaf2,1}}, {{0x84b2,5},{0x1393,3}}, {{0x35fd,3},{0xb79,2}}, + {{0x10f1e,6},{0xd7f,3}}, {{0x14486,7},{0xb7c,3}}, {{0xa2d6,5},{0xdc1,5}}, {{0xc37,3},{0xaea,1}}, + {{0x804e,3},{0xc21,4}}, {{0xab9a,3},{0x1d0d,3}}, {{0xb44,3},{0x75e5,5}}, {{0x39ce,5},{0x1a7f,5}}, + {{0x10fb,3},{0x1ae4e,2}}, {{0xa492,8},{0x2b3e,4}}, {{0x3694,5},{0x101b,3}}, {{0xde2,3},{0xae7,1}}, + {{0xc25,3},{0xee4,3}}, {{0x70b0,4},{0x15798,2}}, {{0x364e,4},{0xc67,3}}, {{0xd1a,2},{0xb55,2}}, + {{0x27b03,2},{0x116d,1}}, {{0x4c15,5},{0xb72,2}}, {{0x278d5,2},{0x278a9,1}}, {{0x142c,3},{0xb8f,2}}, + {{0x711a,9},{0x10dc,2}}, {{0xd57,2},{0xb52,2}}, {{0x4362,4},{0x1b,1}}, {{0x10119,2},{0x10f7,1}}, + {{0x2386e,5},{0xb75,2}}, {{0x1d,2},{0xb61,2}}, {{0x28871,3},{0x24461,1}}, {{0xbde,3},{0x3e31,3}}, + {{0x27e2a,2},{0x159c8,1}}, {{0x257a,4},{0x4991,3}}, {{0x244f5,2},{0x6f78,2}}, {{0x10ef,1},{0x2dcb,4}}, + {{0xc25,4},{0x2160a,3}}, {{0x17be,2},{0xd8e,9}}, {{0x804,32},{0x804,32}}, {{0xea35,7},{0xae7,1}}, + {{0x151c,6},{0xde9,4}}, {{0x13bc,4},{0xaea,3}}, {{0x2796,3},{0x1c8b,7}}, {{0x6d8e,3},{0x1abd6,2}}, + {{0x10ec,1},{0x2045,3}}, {{0xab9a,3},{0xe6d,2}}, {{0xc37,3},{0xeb3,3}}, {{0xc1e,2},{0x1719,3}}, + {{0xb68,3},{0xc30,2}}, {{0xaca2,3},{0x1501b,3}}, {{0xae5,1},{0xc57,3}}, {{0x10c8,3},{0xa7d8,2}}, + {{0x397a,6},{0x12d5,4}}, {{0x12d6e,4},{0x3dd1,2}}, {{0x238b,9},{0xb52,5}}, {{0x969a,8},{0xce8,3}}, + {{0xadf,2},{0x1bdb,3}}, {{0xc8f3,5},{0xae7,1}}, {{0xcc7,3},{0xae2,1}}, {{0x19a4,11},{0xae7,1}}, + {{0xea98,5},{0xb7d,2}}, {{0x271e,3},{0x363a,5}}, {{0xd76,4},{0xc67,2}}, {{0xaea,1},{0x28,2}}, + {{0xf3e0,6},{0xae5,1}}, {{0xceb,3},{0x1e,1}}, {{0x3678,5},{0xeb2,1}}, {{0xae7,2},{0x1f13,4}}, + {{0x278af,1},{0x278ed,2}}, {{0xddc,4},{0x1d22,6}}, {{0x90ca,8},{0xc7b,4}}, {{0xbd6,2},{0x3f84,4}}, + {{0xb8f,2},{0x1f0f,3}}, {{0x2bfd,2},{0x15583,3}}, {{0xf8cf,2},{0x10ef,2}}, {{0x1b25b,4},{0x2748,2}}, + {{0xd742,8},{0x141e,3}}, {{0xb4b,2},{0x2b,1}}, {{0x106d4,6},{0x1489,3}}, {{0x181c,3},{0x21,1}}, + {{0x13cc,9},{0xb2e,2}}, {{0x5ca5,8},{0x1257,3}}, {{0x12bc,5},{0xc0c1,5}}, {{0xbbf,2},{0x7bb9,5}}, + {{0x26b5,4},{0x32ff,4}}, {{0x43f0,4},{0x1a40,7}}, {{0xfb1,2},{0x10c4,4}}, {{0x2bfc,2},{0x1f,1}}, + {{0xa7da,3},{0x15a1,3}}, {{0xa7da,3},{0x10ca,1}}, {{0x235d5,5},{0x2b,1}}, {{0x10866,5},{0x18cd,5}}, + {{0xbbf,2},{0x2b,1}}, {{0xc67,2},{0xeb3,3}}, {{0x8a46,6},{0xc95d,4}}, {{0x17ac,4},{0xcc0,3}}, + {{0x780,1},{0x9c9,1}}, {{0x10fa,1},{0x10fa,1}}, {{0x10196,4},{0x70d8,4}}, {{0x1a,1},{0x2b,3}}, + {{0x5d5b,5},{0x1563,5}}, {{0xc25,4},{0xca7,3}}, {{0x271e,3},{0xb48,2}}, {{0x2c464,4},{0x1b6f5,2}}, + {{0xc25,4},{0x1b,2}}, {{0xe78,3},{0x1081,3}}, {{0xf789,4},{0x16f1,3}}, {{0x1a646,4},{0xaec,2}}, + {{0x734,1},{0x2b325,2}}, {{0x14dc,5},{0x4978,6}}, {{0x1f,1},{0xd1b,1}}, {{0x15464,7},{0x141e,3}}, + {{0x70a0,6},{0x70da,2}}, {{0x14dc,5},{0x1c9da,3}}, {{0x1b25b,4},{0xae5,1}}, {{0x2322,6},{0x1a,3}}, + {{0xbaa2,4},{0x16737,5}}, {{0x26f1,4},{0x1656c,5}}, {{0x10f6,2},{0x27b6,1}}, {{0xd65,3},{0x9ff5,4}}, + {{0x15540,7},{0x4f8d,3}}, {{0xa37e,8},{0x1c25,4}}, {{0x56a5,9},{0x2b3e,4}}, {{0x41be,3},{0xaae8,2}}, + {{0x3694,4},{0x1862,3}}, {{0xb6e,2},{0x28,1}}, {{0xadd,3},{0x2b,1}}, {{0x264c,4},{0x15b0,3}}, + {{0xd87,11},{0xb52,6}}, {{0xbe7,1},{0x1060f,5}}, {{0x3234,3},{0x36b7,6}}, {{0x10fd,4},{0xd15,5}}, + {{0x10ea,3},{0x108b,3}}, {{0x1a85,6},{0xb323,5}}, {{0x271e,3},{0xc30,2}}, {{0xb99,2},{0x5d16,4}}, + {{0x2868,4},{0x29da,3}}, {{0x13a2c,7},{0x2b,3}}, {{0x6957,5},{0x28,1}}, {{0x44d2,6},{0x43bd,4}}, + {{0xb79,2},{0xae6,2}}, {{0x80fe,8},{0xb9d,3}}, {{0x15a5e,2},{0x10ef,1}}, {{0x1f,1},{0x2ee4,8}}, + {{0x1afc1,2},{0x43e3,1}}, {{0x924,1},{0x116d,2}}, {{0x24519,4},{0x244af,2}}, {{0xbe7,1},{0x1de00,5}}, + {{0x10c8,3},{0x1b4f,4}}, {{0x1095,3},{0x6815,4}}, {{0xbe0,1},{0x43e3,1}}, {{0xaea,1},{0xc8e,3}}, + {{0x119c,7},{0x7361,5}}, {{0xb12e,3},{0xa04a,3}}, {{0x2474d,2},{0xf907,2}}, {{0xbe7,1},{0x4196,3}}, + {{0x1c,1},{0x601c,8}}, {{0xc25,4},{0xaeb,2}}, {{0xbb5,1},{0x13e4,3}}, {{0x27cea,1},{0xb31,1}}, + {{0x27,1},{0xaeb,2}}, {{0x2c76,4},{0x173e,3}}, {{0xe64,4},{0x16f8,3}}, {{0x734,1},{0x251d8,2}}, + {{0xc37,4},{0x27,1}}, {{0xb9d,3},{0xc8e,3}}, {{0x18a51,6},{0xc57,3}}, {{0xde1,2},{0xb64,3}}, + {{0xbb4,2},{0xb82,2}}, {{0x271e,3},{0x43e3,1}}, {{0xcde,3},{0xaea,1}}, {{0x27c73,4},{0x1b6ab,1}}, + {{0x6d8e,3},{0x92e9,5}}, {{0x6067,6},{0x887a,4}}, {{0xaca2,3},{0x269d8,2}}, {{0x804,4},{0x532,2}}, + {{0x26f1,4},{0xbd1,2}}, {{0x2045,3},{0x11ef,2}}, {{0x6c08,4},{0xd7f,3}}, {{0xd41,3},{0xba7,3}}, + {{0xf49d,5},{0x1f,1}}, {{0xb70,2},{0x23ce,4}}, {{0x5059,8},{0x1fb7,5}}, {{0xa7fe,9},{0xb2e,2}}, + {{0x5dea,7},{0xb68,4}}, {{0x17bc,3},{0x297b8,2}}, {{0x187c,3},{0xdf0,2}}, {{0x24462,1},{0x2a948,1}}, + {{0x27af7,2},{0x116e,1}}, {{0x181c,3},{0x428b,2}}, {{0x6783,5},{0x4460,3}}, {{0xb52,5},{0xd0b,4}}, + {{0x1b6cb,2},{0x1b6cb,2}}, {{0x6f62,4},{0x24673,2}}, {{0x239a,9},{0x10dc,2}}, {{0xc13,4},{0xb54,4}}, + {{0x10c8,3},{0x1abd7,2}}, {{0x181c,3},{0x16af,3}}, {{0x5a8e,6},{0x1b81,3}}, {{0x10ca,1},{0x28,1}}, + {{0x1c,1},{0xc67,2}}, {{0x4266,5},{0x1491,7}}, {{0x5c32,4},{0xbb5,1}}, {{0x20d9,4},{0x40b6,3}}, + {{0x415e,2},{0x5396,3}}, {{0x1051,4},{0x1557f,3}}, {{0xe86,8},{0xb52,2}}, {{0x30,64},{0x30,38}}, + {{0x638d,8},{0x2b,3}}, {{0x141e,3},{0xfdd,2}}, {{0x13bc,7},{0x1408,3}}, {{0x27aeb,2},{0x27897,1}}, + {{0xaea,2},{0x1cef,3}}, {{0x14ce6,4},{0x139e,4}}, {{0x12fe,2},{0x1d,1}}, {{0x11a5e,8},{0xcb8,2}}, + {{0x27b0f,2},{0x278dc,1}}, {{0x4282,4},{0x10ef,1}}, {{0x2045,3},{0x3776,3}}, {{0x924,1},{0x27abb,2}}, + {{0x1299a,6},{0xd0b,4}}, {{0xcce,3},{0x2288,4}}, {{0x278af,1},{0x278e1,2}}, {{0x10fb,3},{0xb7c,2}}, + {{0x3846,4},{0x2045,3}}, {{0xddbf,6},{0xae7,1}}, {{0xbeb,1},{0x14939,3}}, {{0x22e6,5},{0x392d,3}}, + {{0x12ae,3},{0x1b,1}}, {{0x27b09,2},{0x278dc,1}}, {{0xaf62,2},{0xbe4,1}}, {{0x265b,4},{0x14354,6}}, + {{0x27b03,2},{0x1b6ab,1}}, {{0xb82,2},{0xae2,1}}, {{0xb64,2},{0xbb5,1}}, {{0x161c,9},{0x2566,4}}, + {{0x244b3,2},{0x6f8a,2}}, {{0x14cc,7},{0xd641,4}}, {{0x2474d,2},{0x70ca,2}}, {{0x26c4,4},{0x10534,6}}, + {{0x1a,2},{0xe4c,7}}, {{0x2a96b,2},{0x2446c,1}}, {{0xc37,3},{0x166a6,6}}, {{0x20b1f,6},{0x251d8,2}}, + {{0x139e,2},{0xb52,5}}, {{0x1aa3,5},{0x2211,3}}, {{0x432,1},{0x1ed53,1}}, {{0xc89,2},{0xc20,5}}, + {{0xecc,3},{0xb65,2}}, {{0x27b09,2},{0x27897,1}}, {{0xcb5,3},{0x88ce,4}}, {{0xb7d,1},{0x1b25b,4}}, + {{0xbe7,1},{0x1308,3}}, {{0x251cb,1},{0x1ed53,1}}, {{0xeec,5},{0x11b6,5}}, {{0xb70,2},{0xae2,1}}, + {{0x10c8,3},{0xbb4,2}}, {{0x41da,3},{0xe36,5}}, {{0xff34,8},{0xfef0,4}}, {{0x326c,4},{0xb64,2}}, + {{0xbe4,1},{0xcdf,3}}, {{0xcde,3},{0x1b0a,2}}, {{0xb31,1},{0x28e8e,2}}, {{0x725e,5},{0x38eb,3}}, + {{0x16ae,2},{0x1e,1}}, {{0x1b8e7,4},{0x70d8,4}}, {{0xa830,2},{0xbeb,6}}, {{0xc227,7},{0x11e4,4}}, + {{0x27ad3,2},{0x116d,1}}, {{0x10c8,3},{0x11f2,3}}, {{0x1a0f,3},{0x1dcf,3}}, {{0xb85,2},{0xcb8,2}}, + {{0xb8f,2},{0xd91,2}}, {{0x4fbd,4},{0x10dc,2}}, {{0x3234,3},{0x18eb,5}}, {{0xc1c,2},{0xe7f,7}}, + {{0x6ac3,3},{0xbd6,2}}, {{0x4971,5},{0x2683,5}}, {{0xae7,2},{0xf14,2}}, {{0x10f2,1},{0xb7a,5}}, + {{0xcfd,6},{0xd57,3}}, {{0xeb9,5},{0x10c4,4}}, {{0x2329,5},{0xdf0,2}}, {{0xb2f,1},{0x139e,2}}, + {{0xcd9,3},{0x9b41,3}}, {{0x15dc,6},{0x9c10,6}}, {{0x28be,3},{0x28c1,7}}, {{0x1aaed,1},{0x2b,1}}, + {{0xde9,1},{0x1b4b,3}}, {{0x1daf,7},{0xbd6,8}}, {{0xd5c,1},{0xaf1,1}}, {{0x53e7,7},{0x377c,6}}, + {{0x3a3e,13},{0xae7,1}}, {{0x2451f,2},{0x6fae,2}}, {{0x80c4,4},{0xb8f,3}}, {{0xa62a,7},{0xce8,3}}, + {{0x8d52,7},{0xa60f,3}}, {{0xa29a,5},{0x125cc,4}}, {{0xd76,7},{0xaea,1}}, {{0x1c,1},{0xbd8,2}}, + {{0x16cc,6},{0xb7c,3}}, {{0xaca2,3},{0xd5c,1}}, {{0x24,1},{0x28634,1}}, {{0xe78,3},{0x28,1}}, + {{0x2878b,6},{0x6fac,2}}, {{0x10472,4},{0xb75,2}}, {{0xca3,4},{0x1c,1}}, {{0x722e,7},{0xbb4,4}}, + {{0x13acc,7},{0xc57,3}}, {{0x10fb,6},{0xfc23,5}}, {{0xd76,7},{0x7475,5}}, {{0x17e93,5},{0xc8a3,3}}, + {{0x3d6a,7},{0x103a,3}}, {{0x135e,3},{0x9c05,5}}, {{0xb215,6},{0xae7,1}}, {{0x4354,4},{0xc67,3}}, + {{0x27c73,4},{0x278a9,1}}, {{0xbde,3},{0x1257,2}}, {{0x6f92,6},{0x6f68,6}}, {{0x1e,1},{0x21,1}}, + {{0x39f8,5},{0x2ddc,6}}, {{0x3e12,7},{0xd0d,2}}, {{0x278af,2},{0x116c,1}}, {{0x1cbf,6},{0x4dc8,5}}, + {{0x3678,6},{0x715a,3}}, {{0xb9c,2},{0x1e6c,6}}, {{0x2daa,5},{0xe605,5}}, {{0x5494,5},{0x2d44,4}}, + {{0x1a51f,3},{0x1f,1}}, {{0x2c794,4},{0xff02,2}}, {{0x15ae3,2},{0x43e3,1}}, {{0xc37,3},{0x1be11,4}}, + {{0xfbaf,5},{0x3062,4}}, {{0x63c8,5},{0xae7,1}}, {{0xddc,4},{0xee1,3}}, {{0xedb,5},{0x11f4f,5}}, + {{0x244a1,4},{0x1b25d,2}}, {{0x26c6,1},{0x1aaed,1}}, {{0x5220,5},{0x10b2,5}}, {{0x317e,6},{0xb54,4}}, + {{0x804,8},{0x804,4}}, {{0x27,2},{0xb85,2}}, {{0xb7f,6},{0x314c,8}}, {{0xddc,4},{0xade9,6}}, + {{0xd0c5,7},{0x2b,3}}, {{0x8f6e,7},{0x103a,3}}, {{0x70b2,4},{0x70a0,4}}, {{0x6d81,3},{0x2c00,3}}, + {{0xd0f,4},{0x2b,1}}, {{0x24495,2},{0x24497,4}}, {{0x24645,6},{0x24591,6}}, {{0xb85,2},{0x2b,2}}, + {{0x50e8,7},{0x50fc,6}}, {{0x15180,5},{0x1081,3}}, {{0x178c,3},{0xce1,4}}, {{0x23138,2},{0xed0,3}}, + {{0x6b6c,9},{0xb9d,3}}, {{0x20bb,3},{0x1b,1}}, {{0x1bf0d,7},{0x1f,1}}, {{0x388c,10},{0xb7c,3}}, + {{0x10e2b,3},{0x2b,3}}, {{0x20e8,4},{0x6008,4}}, {{0x41be,4},{0x1b4f,4}}, {{0x229b,5},{0x3131,7}}, + {{0x2bfc,2},{0xae2,1}}, {{0x21bd,5},{0x10dc,2}}, {{0x5a8e,6},{0x2742,3}}, {{0x9622,7},{0x2a,4}}, + {{0xc67,3},{0xb85,2}}, {{0x2a24,3},{0x2b,1}}, {{0x3694,4},{0x40b6,3}}, {{0x2b,2},{0x12fe,2}}, + {{0x1084,3},{0x11ef,3}}, {{0x6d81,3},{0xbeb,1}}, {{0x178c,3},{0x15adc,2}}, {{0xb44,3},{0xb52,2}}, + {{0x27,1},{0x2279,4}}, {{0x17fc,8},{0xb50,8}}, {{0x20ac,7},{0x5977,6}}, {{0x10c8,3},{0x24ba,3}}, + {{0xcc7,3},{0xaea,2}}, {{0xd76,4},{0xf38f,4}}, {{0x27cca,4},{0x1cf1d,2}}, {{0xd41,3},{0x1c2b0,2}}, + {{0xddc,4},{0x28,1}}, {{0x3234,3},{0x139e,4}}, {{0x1040,6},{0xbbf,2}}, {{0x1b23f,4},{0x2d,1}}, + {{0x5a5a,5},{0x10dc,2}}, {{0x3ed6,5},{0x107e,5}}, {{0xf47a,4},{0xf47e,7}}, {{0xb2d0,5},{0x103a5,5}}, + {{0x232b7,5},{0xaf2,1}}, {{0x122c,4},{0xc89,2}}, {{0x10c8,3},{0x323c,2}}, {{0xbde,3},{0x1a30,3}}, + {{0x177c,3},{0x4590,5}}, {{0xb44,3},{0xe6d,2}}, {{0xfef0,8},{0x70ac,4}}, {{0x1f,1},{0x2bfc,3}}, + {{0xeb2,1},{0xaf1,1}}, {{0xa4fe,6},{0x11b8,4}}, {{0xb7d,1},{0x1cef,3}}, {{0xb8d,3},{0x591e,4}}, + {{0x19a4,11},{0xd0b,4}}, {{0x709a,4},{0x6f72,2}}, {{0x53f4,5},{0x107e,5}}, {{0x422e,3},{0x1a,2}}, + {{0xfef0,6},{0xfeee,2}}, {{0x437e,4},{0xb9d,3}}, {{0x1d73,8},{0xd1a,7}}, {{0x159c,4},{0x2b,1}}, + {{0xc68b,7},{0x2d44,4}}, {{0xa098,5},{0x10dc,2}}, {{0xedb,5},{0xcd5,2}}, {{0xda9,4},{0xae7,2}}, + {{0x10526,7},{0x2939,3}}, {{0x1f17,8},{0xb54,4}}, {{0x39ce,9},{0x18eb,5}}, {{0x2ae0,6},{0x40bb,5}}, + {{0x432,1},{0x9a9,1}}, {{0x7e0a,5},{0x26fa,4}}, {{0xb8f,2},{0x8742,4}}, {{0xedd,3},{0x11f4f,5}}, + {{0x278af,2},{0x278d6,1}}, {{0xd65,3},{0x298a,2}}, {{0x244b9,2},{0x96b,2}}, {{0x417a,2},{0xc30,2}}, + {{0x1c8f,3},{0x40b8,2}}, {{0x143c,5},{0x12a5,7}}, {{0xb66,2},{0x1fe4,5}}, {{0x177c,3},{0x2dcb,4}}, + {{0x27b4,3},{0x5f8d,9}}, {{0x3e92,3},{0x1a,2}}, {{0x1010a,3},{0xe302,5}}, {{0x3774,5},{0xbd4,2}}, + {{0x4eed,9},{0x2b,3}}, {{0x278a1,3},{0x27923,2}}, {{0x10d98,5},{0xcf0,2}}, {{0xaec,2},{0x27,1}}, + {{0x10f0,1},{0xb4b,2}}, {{0xab9a,3},{0xc930,5}}, {{0x19b5e,5},{0x12f1,3}}, {{0x423c,3},{0x28,1}}, + {{0xaf1,1},{0xe70,4}}, {{0xb7d,1},{0x16d2,2}}, {{0x177c,3},{0x29064,2}}, {{0xb70,2},{0xfe5,2}}, + {{0xab3a,5},{0xb2c,2}}, {{0x15202,6},{0x5f01,4}}, {{0x27c6d,4},{0x278a9,1}}, {{0x108b,3},{0xc67,3}}, + {{0x26c4,3},{0xd5c,1}}, {{0x12fc,4},{0xcb8,2}}, {{0xd0f,4},{0x971a,4}}, {{0x2565,3},{0x1520,2}}, + {{0x10ea,3},{0x43ba,6}}, {{0x5949,4},{0xb8b,2}}, {{0x423c,3},{0x130f,3}}, {{0x41da,3},{0x27b6,1}}, + {{0x1abd9,2},{0xa7d8,2}}, {{0xbb5,1},{0x4b0a,4}}, {{0x423c,3},{0x14b6,2}}, {{0xaea,1},{0xbd1,2}}, + {{0x159c,4},{0x1e263,4}}, {{0x17fc,5},{0x1cee,3}}, {{0xf3ed,3},{0xdbf,3}}, {{0x151e,4},{0x5f01,4}}, + {{0x1761,3},{0xc8f,2}}, {{0x10f2,1},{0x10ed,2}}, {{0x9450,4},{0x2dc3,3}}, {{0xb92,5},{0xdd2,7}}, + {{0x27,1},{0xb9d,3}}, {{0xff20,4},{0x24771,4}}, {{0x27c6d,4},{0x116d,1}}, {{0x3100,6},{0xc78,3}}, + {{0x149b0,3},{0x139e,3}}, {{0xf85,4},{0xb78,2}}, {{0x3cde,8},{0x4e32,5}}, {{0xd1b,1},{0xb47,2}}, + {{0x272d,5},{0x2732,10}}, {{0x251cb,1},{0x780,1}}, {{0x10ec,1},{0x40b9,2}}, {{0x254d,6},{0x1058,9}}, + {{0xbcb,3},{0x1d8e,3}}, {{0x167c,5},{0xcec5,5}}, {{0x70b0,4},{0x159cd,2}}, {{0xbb5,1},{0x6738,7}}, + {{0xae6,3},{0xe4d,6}}, {{0x15644,5},{0x15649,5}}, {{0xb2f,1},{0x2d,1}}, {{0x2b,1},{0x4d44,3}}, + {{0x3dcc,8},{0xb52,5}}, {{0xc1c,2},{0x1e031,4}}, {{0xedb,5},{0xb78,2}}, {{0xd0a4,5},{0xb9d,3}}, + {{0xd57,2},{0x10dc,2}}, {{0xb590,5},{0xb78,2}}, {{0x24f87,2},{0x28e7a,2}}, {{0x283b,5},{0x20206,3}}, + {{0x51ec,5},{0xb78,2}}, {{0xaea,1},{0xee2,2}}, {{0xd1a,2},{0x28,1}}, {{0x41b0,5},{0x1393,3}}, + {{0x3fe0,5},{0x323c,2}}, {{0xe64,5},{0xae8,2}}, {{0x11ba8,4},{0xb54,3}}, {{0xb2e,2},{0x16f8,3}}, + {{0xae7,1},{0x2e69,5}}, {{0x177c,3},{0x1b497,4}}, {{0xdd5,2},{0x1930,3}}, {{0x27c73,4},{0x278dc,1}}, + {{0x134c,5},{0xae7,2}}, {{0x10ca,1},{0x26c6,1}}, {{0x102f,6},{0xe605,5}}, {{0xe6d,2},{0x66ae,5}}, + {{0x278a9,2},{0x278d6,1}}, {{0x1ad0,4},{0x2318,4}}, {{0x10fb,3},{0x23f11,4}}, {{0xb7f,3},{0x14d5,3}}, + {{0x20bb,3},{0x1bdb,3}}, {{0x441c,3},{0xc34,2}}, {{0x30,2},{0x1904,3}}, {{0x130c,7},{0x1058,9}}, + {{0x1e27,5},{0xb2c,4}}, {{0x1bfc,9},{0xd0d,2}}, {{0x2aea3,2},{0xb31,1}}, {{0x4a82,8},{0xdf9,5}}, + {{0xf63,12},{0xd0b,4}}, {{0xbb2,2},{0xb63,3}}, {{0x6f23,3},{0x1701,3}}, {{0xcc00,5},{0xae5,1}}, + {{0x1a496,5},{0x34a2,4}}, {{0x1675,2},{0x2ec7,4}}, {{0x10f7,1},{0xbb4,2}}, {{0x10ea,3},{0x4b31,3}}, + {{0x10fb,3},{0x13a3,3}}, {{0x4194,6},{0x3088,8}}, {{0xf5f4,2},{0x1878,1}}, {{0xd5b6,6},{0x67c0,3}}, + {{0x27c73,4},{0x278af,1}}, {{0x2446a,3},{0x948,1}}, {{0x21,1},{0xfde,2}}, {{0x1adc3,6},{0x1425b,3}}, + {{0xfda,11},{0x1357,5}}, {{0x14bc,7},{0x584c,5}}, {{0x1c,1},{0xfb1,2}}, {{0x30bc,3},{0xc20,5}}, + {{0x2aacb,2},{0x6fae,2}}, {{0x8058,7},{0x2b,3}}, {{0x4a27,7},{0x4a2e,5}}, {{0xb79,2},{0x1e6c,6}}, + {{0xc49,3},{0x32d8,4}}, {{0x3678,5},{0xd91,2}}, {{0x244f5,2},{0x6f6c,2}}, {{0x25c5,5},{0x1489,3}}, + {{0x3234,3},{0xb9d,3}}, {{0x179cf,2},{0x10f7,1}}, {{0x2445f,1},{0x24460,3}}, {{0xab0a,5},{0xe72,3}}, + {{0xaea,2},{0x1307,3}}, {{0x257a,5},{0x1aa6,3}}, {{0x27c5,3},{0x186db,4}}, {{0x17b31,6},{0x2b,3}}, + {{0xceb,3},{0xae6,2}}, {{0x39d0,3},{0xadf,2}}, {{0x14faa,5},{0x27,1}}, {{0x1477e,6},{0x10c4,4}}, + {{0xb2e,2},{0xc39,2}}, {{0x197da,6},{0xcdf,3}}, {{0x208e,5},{0x907b,4}}, {{0x2451f,2},{0x70ca,2}}, + {{0xb82,2},{0xb2c,2}}, {{0x4088,7},{0x345e,6}}, {{0x3f9a,4},{0xb8f,2}}, {{0xaf1,1},{0xc30,2}}, + {{0xa2d8,3},{0xb2c,2}}, {{0x6d81,3},{0x1c4d9,4}}, {{0x10ec,1},{0xc64,2}}, {{0x422e,3},{0x10f7,1}}, + {{0x6d81,3},{0xb98,2}}, {{0x180c,4},{0x5277,2}}, {{0xddc,4},{0x1656c,5}}, {{0x948,1},{0x251cb,1}}, + {{0x26e7b,4},{0x1aaed,1}}, {{0x780,1},{0x2445f,1}}, {{0x70a0,2},{0x15798,2}}, {{0xce1,4},{0xb54,3}}, + {{0x18e6,5},{0xce8,3}}, {{0x90e6,4},{0xc8e,3}}, {{0x8e2a,10},{0xd0d,2}}, {{0xb79,2},{0xeb2,1}}, + {{0x1b57,4},{0xd1b,1}}, {{0x10fb,4},{0x2c37,4}}, {{0x734,64},{0x734,8}}, {{0xaf2,1},{0xc52,3}}, + {{0xe830,5},{0x13a4f,5}}, {{0xad62,4},{0x108b,3}}, {{0x27b6,1},{0xe6d,2}}, {{0xb2e,2},{0xae6,2}}, + {{0x1a0d,5},{0xd9e,9}}, {{0x1ac1,5},{0x1ac6,8}}, {{0x3da2,7},{0x25c2,3}}, {{0x2793d,4},{0x924,1}}, + {{0xae5,1},{0x443e,2}}, {{0x2c6ce,4},{0xf907,2}}, {{0xb8f,2},{0xc67,2}}, {{0x1cbf,4},{0xc63,3}}, + {{0x14e38,5},{0xe652,5}}, {{0x9316,7},{0x2939,3}}, {{0xab6a,5},{0x14e1,4}}, {{0xf579,5},{0xbed,2}}, + {{0x1f6b9,5},{0xcd6,3}}, {{0x255c,6},{0xae4,2}}, {{0xbed,2},{0xbc2,2}}, {{0xcf02,6},{0x6f1b,5}}, + {{0x2322,6},{0x2b,3}}, {{0x12bca,5},{0xb52,5}}, {{0xbe7,1},{0xcc3,4}}, {{0x27c67,4},{0x27897,1}}, + {{0xd5c,1},{0xf99,4}}, {{0x4a75,6},{0xc1c,2}}, {{0x2e55,3},{0x2b,2}}, {{0x1d5a,3},{0xb52,5}}, + {{0x6f14,6},{0x1dd8,3}}, {{0x7e8e,7},{0x88ce,4}}, {{0x2045,3},{0xb52,5}}, {{0x1878,1},{0x1f3b,4}}, + {{0x2445c,3},{0x1b6cb,1}}, {{0xd41,3},{0x1b4f,3}}, {{0x995e,8},{0xbb4,4}}, {{0x24,1},{0xb31,1}}, + {{0x1bf05,5},{0xcab,3}}, {{0x1dec2,4},{0xb2f,1}}, {{0xcd9,3},{0x134cb,7}}, {{0x740e,5},{0x31d6,5}}, + {{0x2912,5},{0x5aae,3}}, {{0x10f7,1},{0x20aa9,2}}, {{0xaf2,1},{0xd0c,2}}, {{0x4a75,6},{0xb65,2}}, + {{0xb64,3},{0x28,1}}, {{0x9a9,16},{0x9a9,16}}, {{0xbe7,1},{0x10f2,1}}, {{0xbeb,2},{0x12d5,4}}, + {{0xae7,1},{0xe2c0,4}}, {{0xbd62,6},{0xbd68,5}}, {{0x10c8,3},{0x1c,1}}, {{0xd0ff,2},{0xb78,2}}, + {{0x178c,3},{0x1a4af,2}}, {{0x1a8ce,6},{0x3776,3}}, {{0x3e90,5},{0x3336,7}}, {{0xddbf,6},{0x2af8,4}}, + {{0xed6e,6},{0xed74,5}}, {{0xba5,4},{0xdd5,4}}, {{0x4f89,9},{0x43b0,4}}, {{0xbe0,1},{0xb70,2}}, + {{0x112c,1},{0x780,1}}, {{0x27c6d,4},{0x278af,1}}, {{0x897a,6},{0xce8,3}}, {{0x1a793,6},{0x10569,3}}, + {{0xbde,3},{0xf63c,2}}, {{0x12ac,7},{0x1717,5}}, {{0xd41,3},{0xb63,2}}, {{0x90be,9},{0x10dc,2}}, + {{0xbe4,1},{0x4284,2}}, {{0x134c,5},{0xaf2,1}}, {{0x1ed58,1},{0x117c,1}}, {{0x2ade3,4},{0xaf1,1}}, + {{0xdf2,3},{0xeb3,3}}, {{0xaff6,5},{0x12c33,5}}, {{0x1095,3},{0xae5,1}}, {{0xc89,2},{0xaf1,2}}, + {{0x274b,5},{0xf6f4,6}}, {{0x5768,6},{0x1c43,4}}, {{0xa9c6,5},{0x1499,2}}, {{0xbde,3},{0x1701,3}}, + {{0xfb1,2},{0xc21,4}}, {{0xaca2,3},{0x139e,2}}, {{0x27c6d,4},{0x278dc,1}}, {{0xbd4,2},{0x1372,3}}, + {{0x6c15,5},{0x1a15d,4}}, {{0x1ed51,3},{0x2445e,1}}, {{0x8842,5},{0xc930,5}}, {{0x41da,5},{0xb65,2}}, + {{0x3a3e,7},{0xc34,3}}, {{0xb44,3},{0x2bfc,2}}, {{0x3af4,8},{0x9c66,4}}, {{0x1850b,6},{0x1099,3}}, + {{0x3234,3},{0x1c43,4}}, {{0xf6b8,5},{0xf6bd,6}}, {{0xb283,8},{0xc8e,3}}, {{0xeb9,5},{0x1ba5,3}}, + {{0x13e3,4},{0xce8,3}}, {{0xf3e2,4},{0xb48,2}}, {{0x146c,7},{0xe1a,6}}, {{0x804,2},{0x1b205,2}}, + {{0x1051,4},{0x4a30,4}}, {{0x422e,3},{0x1a568,6}}, {{0x261f,5},{0xae6,2}}, {{0x22cf8,1},{0x27e3a,2}}, + {{0xc30,2},{0xfe5,2}}, {{0xb64,3},{0xbe85,6}}, {{0x27b6,1},{0xb87,3}}, {{0x177c,5},{0xc30,2}}, + {{0x57f7,6},{0xb8d,5}}, {{0x13626,6},{0x2b,3}}, {{0x1a,1},{0x18892,6}}, {{0x145e4,4},{0x1026e,6}}, + {{0x19,1},{0x2446f,2}}, {{0xdc0,3},{0xd91,2}}, {{0x3c36,11},{0x2b,3}}, {{0xf8cf,2},{0x4286,2}}, + {{0x4d33,6},{0x4978,5}}, {{0x3fee,5},{0x1377,5}}, {{0x2e44,4},{0x16f48,2}}, {{0x1095,3},{0xb48,2}}, + {{0x1f,1},{0x1dd8,4}}, {{0x1ed49,3},{0x1b4e4,1}}, {{0x178c,3},{0x14939,3}}, {{0x1c,1},{0x12ff,2}}, + {{0x10fb,3},{0x1a81d,2}}, {{0x59a4,6},{0x1489,3}}, {{0x269d8,2},{0xbeb,1}}, {{0x5ead,7},{0x12fe,2}}, + {{0x710e,6},{0x2d68,5}}, {{0x7e9a,5},{0xbb1,3}}, {{0xcfd,4},{0x689b,6}}, {{0x6c3c,5},{0x3009,8}}, + {{0xdbf,7},{0xb52,5}}, {{0xfda,6},{0x2745,3}}, {{0xf424,4},{0x4c27,5}}, {{0x10fb,3},{0xd7f,3}}, + {{0x50a7,5},{0xcc0,3}}, {{0x6ac5,1},{0x10ec,1}}, {{0x13a2c,6},{0x46e4,3}}, {{0x1a94,6},{0x1dac,3}}, + {{0x10ea,3},{0x28bd2,2}}, {{0x278af,1},{0x116c,2}}, {{0x14cc,4},{0x1c,1}}, {{0xc25,3},{0x5277,2}}, + {{0x271e,3},{0x11f2,3}}, {{0xfdf,6},{0x103a,3}}, {{0x19b3,4},{0x1361,2}}, {{0x6c3c,5},{0xaf1,2}}, + {{0x6e46,3},{0x60e1,7}}, {{0x27ad3,2},{0x278a9,1}}, {{0xb63,3},{0xb9e,2}}, {{0x256b,5},{0x10dc,2}}, + {{0x14fe,6},{0x220f,5}}, {{0x2b,1},{0x10861,5}}, {{0x1c8f,3},{0x1254,3}}, {{0x27,1},{0x47b3,3}}, + {{0xb60,2},{0xb066,2}}, {{0x178c,3},{0x5277,2}}, {{0x1ce6,6},{0xd0d,2}}, {{0x177fe,6},{0x10dc,2}}, + {{0x14dc,5},{0x6661,4}}, {{0x27c73,4},{0x116c,1}}, {{0xff20,4},{0x1b1a3,4}}, {{0xe44,3},{0x2df5,3}}, + {{0x27a0d,2},{0x1b6ab,1}}, {{0x41be,3},{0x1574b,2}}, {{0xf52,5},{0x3892,7}}, {{0x6ac5,1},{0xc30,2}}, + {{0x181c,3},{0x10119,2}}, {{0xa7da,3},{0x28,1}}, {{0x1c29,6},{0x18d7,5}}, {{0xcb5,3},{0x14a6,6}}, + {{0x4194,4},{0xca7,3}}, {{0x30,2},{0x532,6}}, {{0x1d55,8},{0xf05,7}}, {{0x24b7,6},{0xe7e9,5}}, + {{0x1f2c4,2},{0x27b6,1}}, {{0x1a86b,5},{0xc8f,2}}, {{0xc37,6},{0x4978,6}}, {{0x5915,5},{0x127c9,5}}, + {{0x2796,3},{0x19f47,2}}, {{0xc1e,2},{0x14e2,3}}, {{0xb002,5},{0xc8c,5}}, {{0x6faa,6},{0x6faa,6}}, + {{0x16ec,4},{0x2a69,7}}, {{0xacba,7},{0xd0b,4}}, {{0xab0c,3},{0xe72,3}}, {{0x16b59,6},{0xdf0,2}}, + {{0x2868,4},{0x1f,1}}, {{0x149b0,3},{0x4c27,5}}, {{0x1d55,4},{0x4dd4,8}}, {{0xd76,7},{0xb56b,4}}, + {{0x3d32,9},{0x1357,5}}, {{0x6f74,4},{0x6f72,2}}, {{0x145b2,6},{0x2b,3}}, {{0x948,2},{0x2445e,1}}, + {{0xdd40,5},{0xb4b,2}}, {{0x1d59,4},{0x7a5e,4}}, {{0xf96,4},{0xb48,2}}, {{0x1a496,5},{0x1954,3}}, + {{0x271e,3},{0xd7f,3}}, {{0xd5c,1},{0x179cf,2}}, {{0x4fbd,4},{0xc89,2}}, {{0xab9a,3},{0xb55,2}}, + {{0x360f,4},{0x1257,3}}, {{0x2793d,4},{0x27a8b,2}}, {{0x1b6dd,2},{0xc601,2}}, {{0x6d8e,3},{0x27b6,1}}, + {{0x946,3},{0x948,2}}, {{0x2b8d,4},{0xb68,4}}, {{0x10f78,6},{0x1489,3}}, {{0x22e6,5},{0xc57,4}}, + {{0x1869,5},{0xae7,1}}, {{0x1ed51,3},{0x22cf2,7}}, {{0x1084,3},{0x4882,3}}, {{0x924,1},{0x278bd,2}}, + {{0xca7,4},{0xc21,4}}, {{0x7972,6},{0xf6a,5}}, {{0xb64,2},{0x2742,3}}, {{0x2451f,2},{0x96f,2}}, + {{0x19ba,3},{0x19bd,5}}, {{0x10fb,3},{0x29386,2}}, {{0x5dd0,8},{0x1498,4}}, {{0x7702,5},{0x1dcf,3}}, + {{0xca7,2},{0x2d,1}}, {{0x6ac5,1},{0x9216,4}}, {{0xf52,4},{0x5c32,5}}, {{0x1cec,5},{0x40b8,2}}, + {{0x53f4,5},{0xb8f,2}}, {{0xb01a,4},{0x1c,1}}, {{0xc67,2},{0x1930,3}}, {{0x27b6,1},{0xfdd,8}}, + {{0x257a,5},{0xd1b,1}}, {{0xab9c,1},{0x2b,3}}, {{0x9a2f,3},{0xeb3,3}}, {{0x422e,4},{0x1614,3}}, + {{0x1a76,4},{0xcd5,2}}, {{0x4196,3},{0xb9c,2}}, {{0x1e7ff,5},{0xeb3,3}}, {{0x1b25b,4},{0x24a11,5}}, + {{0xf39e,4},{0xb55,2}}, {{0x2445f,1},{0x24,1}}, {{0x1d55,4},{0xb9b,3}}, {{0x16b3e,6},{0xae7,1}}, + {{0xb7f,3},{0x21a74,6}}, {{0x1ae3,3},{0xd57,3}}, {{0xeb2,1},{0xb4b,2}}, {{0x10ef,1},{0x2171,5}}, + {{0x373c,8},{0xae7,1}}, {{0xcb5,3},{0xb78,2}}, {{0x2868,4},{0xbb5,1}}, {{0x12d0a,5},{0x140a,2}}, + {{0xdd7d,8},{0x103a,3}}, {{0x6b2b,6},{0xdc1,5}}, {{0xaca2,3},{0xc55,2}}, {{0x116d,1},{0x27897,2}}, + {{0x9e9,2},{0x532,40}}, {{0x27c6d,4},{0x116c,1}}, {{0x30,2},{0xb7c,2}}, {{0x10ea,3},{0xd0b,3}}, + {{0x3a3e,5},{0xaea,2}}, {{0xc37,3},{0x12cf1,5}}, {{0x41da,3},{0xfb1,2}}, {{0x10ea,3},{0xdd0,3}}, + {{0x519e,11},{0xb2e,2}}, {{0x278ad,3},{0x278f3,2}}, {{0x244e9,4},{0x6fae,2}}, {{0x202c,3},{0xae7,1}}, + {{0x1489,3},{0x11ef,2}}, {{0xa82e,4},{0x1d,1}}, {{0x178c,3},{0x28,2}}, {{0x10f0,1},{0xbe7,1}}, + {{0x13e4,3},{0xd256,4}}, {{0x244b9,2},{0x70ca,2}}, {{0x2912,5},{0x1058,9}}, {{0x278a9,2},{0x1b6ab,1}}, + {{0x432,1},{0x2446f,2}}, {{0x9c9,4},{0x9c9,1}}, {{0x46e7,7},{0x46ee,6}}, {{0x1ed49,4},{0x1ed4b,2}}, + {{0xae0,1},{0x2a16,3}}, {{0x17ec,5},{0x1644,5}}, {{0x762a,5},{0xcf0,2}}, {{0x2769,6},{0x2db1,3}}, + {{0xae0,1},{0xc30,2}}, {{0x2c9f8,4},{0x6f78,2}}, {{0x27ad3,2},{0x1b6ab,1}}, {{0x27b4,3},{0x1abd7,2}}, + {{0x2dfe,5},{0xb8f,2}}, {{0x20d9,4},{0x2048,9}}, {{0x804,2},{0x1b709,2}}, {{0x2214,7},{0xee8,3}}, + {{0xb70,2},{0xc67,2}}, {{0x6805,8},{0x680d,5}}, {{0xcc0,3},{0xeb3,3}}, {{0x15ac,5},{0x1d,1}}, + {{0xe6d,2},{0xce8,3}}, {{0x2313,8},{0xbac,4}}, {{0x201f1,4},{0x10ef,1}}, {{0x6b52,4},{0x6b56,9}}, + {{0x10ec,1},{0x43ac,8}}, {{0x10f1,2},{0x10fa,1}}, {{0xd0c7,5},{0x10dc,2}}, {{0xae2,1},{0x1c25,4}}, + {{0x278af,2},{0x27897,1}}, {{0xa2e2,5},{0x12be,3}}, {{0x265f5,5},{0x10ca,1}}, {{0x26e4,4},{0xce2,3}}, + {{0xbe4,1},{0x1abd9,3}}, {{0xca5,2},{0x1c,1}}, {{0x1f,2},{0xe6d,2}}, {{0xaefc,2},{0x12ff,2}}, + {{0x41da,3},{0x28508,2}}, {{0x278b3,4},{0x278af,1}}, {{0x177c,3},{0xd54,1}}, {{0x14dc,4},{0x2c38,4}}, + {{0x8484,5},{0x66ae,5}}, {{0x181c,3},{0xaef,3}}, {{0xded,5},{0xcc3,4}}, {{0x2c830,4},{0x70a2,2}}, + {{0x2324,4},{0xc89,3}}, {{0xecf,4},{0xc65,8}}, {{0x10f7,1},{0x10ec,1}}, {{0x130c,7},{0x583f,3}}, + {{0x2522c,8},{0x1ed58,1}}, {{0x273ab,2},{0x1ae32,2}}, {{0x178c,3},{0xbe0,1}}, {{0x10ca,1},{0x1d,1}}, + {{0x139e,2},{0xc67,2}}, {{0x41f6,4},{0xb70,3}}, {{0xcc0,3},{0x1d,1}}, {{0x541b,5},{0x459e,4}}, + {{0xae76,6},{0x1916,5}}, {{0x2445f,1},{0x251ea,2}}, {{0x3704,7},{0xc1c,2}}, {{0xbbf,2},{0xeb3,3}}, + {{0x1a,1},{0xcf6,3}}, {{0x278c9,2},{0x279d7,2}}, {{0xdc6a,6},{0x28be,3}}, {{0xbb15,3},{0xb48,2}}, + {{0xf63,5},{0x1372,3}}, {{0x2d02,6},{0x1971,2}}, {{0x278af,2},{0x278a9,1}}, {{0x1b693,2},{0x1b695,3}}, + {{0xa532,4},{0x89ca,4}}, {{0xb67,2},{0x295c,4}}, {{0x256d,3},{0x4590,5}}, {{0x209d,4},{0xadf,2}}, + {{0x143c,5},{0x2c0a,3}}, {{0x6735,4},{0x26fb,5}}, {{0x6c22,9},{0x43bd,4}}, {{0x1f,1},{0xb8a,2}}, + {{0x12210,6},{0x1489,3}}, {{0x17bc,3},{0xb67,2}}, {{0x70a0,6},{0x410e,2}}, {{0x515d,6},{0x12d5,7}}, + {{0x179a5,6},{0x2b,3}}, {{0xbcb,3},{0xcedb,2}}, {{0xc25,3},{0xadf,2}}, {{0xde9,1},{0x2b,1}}, + {{0x14fb4,7},{0x2b,1}}, {{0xcfd,5},{0xd5e,7}}, {{0x1b93,10},{0xae7,1}}, {{0xd54,1},{0x20b6,2}}, + {{0x3626,4},{0xae7,1}}, {{0x7a6e,5},{0xf05,7}}, {{0x20b39,4},{0x5ad5,4}}, {{0x1b4e3,1},{0x24f87,2}}, + {{0x6ac5,1},{0xf59,3}}, {{0xb6b9,6},{0x5277,4}}, {{0x1afd,5},{0x8bb5,5}}, {{0xbe7,1},{0xae2,2}}, + {{0x10f3,1},{0xb63,2}}, {{0xd5c,1},{0x27,1}}, {{0x177e,2},{0x1393,3}}, {{0xd1a,2},{0xcab,3}}, + {{0x762a,4},{0xcd5,2}}, {{0xb7a,4},{0x107e,5}}, {{0x3fee,5},{0x1434,6}}, {{0x50fe,3},{0xb54,3}}, + {{0x1a0d,5},{0xb855,6}}, {{0x6b6c,5},{0xbe85,5}}, {{0xd76,7},{0x2a15,7}}, {{0x20,2},{0x8c2a,6}}, + {{0xc37,3},{0x1cd80,5}}, {{0xd1b,1},{0xfe8a,6}}, {{0x7ac2,9},{0x10dc,2}}, {{0x7162,6},{0xd0d,2}}, + {{0xbe4,1},{0xff56,6}}, {{0x1459e,3},{0x5582,4}}, {{0x16dc,5},{0xdf0,2}}, {{0x1dcd,11},{0x1dd8,3}}, + {{0x1a271,3},{0xf49e,4}}, {{0x1a3a,6},{0xae7,1}}, {{0xaa1a,7},{0xaa21,5}}, {{0x13bd3,6},{0xaf2,1}}, + {{0x278ad,3},{0x27897,2}}, {{0xcca,3},{0x5396,3}}, {{0x2610,8},{0xd7f,3}}, {{0x531d,4},{0x10dc,2}}, + {{0x2b,1},{0xfb89,4}}, {{0xa7da,3},{0xf28e,8}}, {{0x1042,4},{0x9eb0,6}}, {{0xc25,4},{0x5269,5}}, + {{0x71fe,7},{0xd7a,3}}, {{0x27ad3,2},{0x27897,1}}, {{0x2a16,3},{0xa086,4}}, {{0x1cbf,4},{0x172cc,5}}, + {{0xceb,3},{0x2195,3}}, {{0x11b94,6},{0xd0d,2}}, {{0x4a75,6},{0xb52,5}}, {{0x17c1d,7},{0xae7,1}}, + {{0x27,1},{0xb9e,2}}, {{0x181c,3},{0x1694,2}}, {{0x5949,6},{0x1dac,3}}, {{0x924,2},{0x278e1,2}}, + {{0xbb5,1},{0x21,1}}, {{0xeb3d,7},{0x40bc,4}}, {{0x2878d,4},{0x96f,2}}, {{0x229b,5},{0xc30,2}}, + {{0x5102,5},{0x2194,4}}, {{0x278ad,3},{0x27a2b,2}}, {{0x14b92,4},{0xc828,4}}, {{0xfdd,2},{0xd237,4}}, + {{0xa22e,4},{0xc30,2}}, {{0x244f5,2},{0x806,2}}, {{0xae6,2},{0xb72,3}}, {{0x6d81,3},{0xae6,3}}, + {{0x2b,2},{0xae6,2}}, {{0xf9d,4},{0xec2,2}}, {{0xdcb,7},{0xdd2,7}}, {{0x28e8,3},{0x1d,1}}, + {{0x7e0e,5},{0x2b,3}}, {{0x432,2},{0x24,1}}, {{0x3846,4},{0x4d46,4}}, {{0x24519,4},{0x1015e,2}}, + {{0x20bb,3},{0x36b7,6}}, {{0x4282,4},{0xbeb,1}}, {{0xae7,1},{0xe6d,2}}, {{0xae2,1},{0x10ba,2}}, + {{0x22dd9,5},{0xb6e,2}}, {{0x40fa,4},{0x103a,3}}, {{0x85de,5},{0x185a,6}}, {{0x11f1,4},{0xc7b,4}}, + {{0xbde,3},{0xede,3}}, {{0x2322,6},{0x3336,7}}, {{0x143c,8},{0x10dc,2}}, {{0x9206,3},{0xb54,2}}, + {{0xc25,3},{0x174e,3}}, {{0xc17,3},{0x1644,5}}, {{0x5dd0,8},{0x1498,3}}, {{0x10f0,1},{0xe6d,2}}, + {{0x30,64},{0x30,40}}, {{0x14934,2},{0x10f3,1}}, {{0x278c9,2},{0x116c,1}}, {{0x24a30,2},{0x2446e,3}}, + {{0x28dd9,2},{0x2d,1}}, {{0x9b1a,5},{0x1c8f,3}}, {{0xd5c,1},{0xbd4,2}}, {{0x10602,6},{0x1a,1}}, + {{0x2cae,5},{0x1614,7}}, {{0x1e009,5},{0x1a,2}}, {{0x27b09,2},{0x278a9,1}}, {{0x177c,3},{0xc67,2}}, + {{0x4284,2},{0x1ee93,3}}, {{0x10188,4},{0x70ac,4}}, {{0x6ac5,1},{0x15c72,6}}, {{0x1c,1},{0xbc5,3}}, + {{0x2445c,3},{0x251d8,2}}, {{0xaf1,1},{0xfb1,2}}, {{0x6b6c,5},{0xb82,3}}, {{0x14ea8,2},{0x2b,2}}, + {{0x14ff0,4},{0xe6d,2}}, {{0x1c9e5,5},{0xae6,3}}, {{0x119f0,7},{0x11a01,3}}, {{0x10fb,6},{0xb2f,1}}, + {{0x1675,2},{0xae7,1}}, {{0x124e,3},{0x2c5f,4}}, {{0x2d,1},{0x16f8,3}}, {{0xfc12,6},{0xb2c,4}}, + {{0x192af,6},{0xdf0,2}}, {{0x10196,4},{0x24985,8}}, {{0x135c,5},{0x1bdc,2}}, {{0x6dd7,3},{0x2b,1}}, + {{0x6ac3,3},{0x10ec,1}}, {{0x1e,1},{0x10dc,2}}, {{0x10fb,3},{0x2891,3}}, {{0xad62,4},{0x187a9,5}}, + {{0x10b22,6},{0xbed,4}}, {{0xae7,2},{0x164af,5}}, {{0xf42f,6},{0xb63,2}}, {{0x3846,4},{0x7526,5}}, + {{0x1a,2},{0xb6e,2}}, {{0xf8f4,6},{0xb78,2}}, {{0x27d1b,2},{0x117c,1}}, {{0x14d5,3},{0x1a,2}}, + {{0xaed,2},{0x10ca,1}}, {{0xaca2,3},{0xae2,2}}, {{0xc37,3},{0x16f7,4}}, {{0x2cdb2,4},{0xa51,2}}, + {{0xf5f6,2},{0x440f,2}}, {{0x24,1},{0x2445f,1}}, {{0x10f3,1},{0x1abd9,2}}, {{0x2d,1},{0xcb8,2}}, + {{0x1b4e3,1},{0x2445e,1}}, {{0xfffb,2},{0x2b,3}}, {{0x283b,5},{0xaedb,6}}, {{0x27b03,2},{0x278af,1}}, + {{0xbc91,8},{0x2b,3}}, {{0x181c,3},{0x1f1c5,4}}, {{0x4de1,3},{0x1916,5}}, {{0x167c,5},{0x13b37,3}}, + {{0x3234,3},{0xb72,2}}, {{0xebcc,4},{0x2bfc,3}}, {{0xd0f,4},{0x2b,2}}, {{0x261f,5},{0x5e7c,5}}, + {{0xc37,3},{0x1257,2}}, {{0xad34,5},{0x94b5,5}}, {{0xaea,1},{0xcee,4}}, {{0x8902,5},{0xbac,4}}, + {{0x56e6,7},{0x12be,3}}, {{0xb0dc,5},{0xcf6,3}}, {{0xcab,3},{0xcae,7}}, {{0xa7da,5},{0xd57,3}}, + {{0xbeb,1},{0x79d5,5}}, {{0x6ac3,3},{0x15b3f,2}}, {{0x1e757,5},{0xc63,3}}, {{0xaeb,2},{0xb85,2}}, + {{0x1d59,3},{0xc34,3}}, {{0x24a2d,2},{0x24a2f,3}}, {{0xb55,2},{0x1a90,4}}, {{0x2445e,1},{0x251df,1}}, + {{0xaea,1},{0x12b89,5}}, {{0x1084,3},{0x520e,5}}, {{0xb7d,1},{0xb29c,6}}, {{0x2e98,9},{0xb54,4}}, + {{0x264c,4},{0x4de3,3}}, {{0x27d4,4},{0x2b,2}}, {{0xebf,3},{0x2195,3}}, {{0x139e,2},{0x621d,4}}, + {{0x6f21,5},{0x1701,3}}, {{0xfda,11},{0x1577,5}}, {{0xaf2,1},{0xb55,2}}, {{0x6ac3,3},{0x266c4,3}}, + {{0xe83b,7},{0x10dc,2}}, {{0x27ae5,2},{0x116e,1}}, {{0x1d8d7,6},{0xb65,2}}, {{0x6d81,3},{0x5af9,3}}, + {{0xeaa3,5},{0x5a4f,6}}, {{0xbeb,1},{0x166a6,5}}, {{0xcde,3},{0xbb5,1}}, {{0x16fc,5},{0x1704,3}}, + {{0xae0,1},{0x92c9,4}}, {{0xf63c,2},{0x1d,1}}, {{0xbe4,1},{0xc419,6}}, {{0x1f961,5},{0x15a83,3}}, + {{0xf96,9},{0xd0d,2}}, {{0xab0c,3},{0x4905,4}}, {{0xa7da,3},{0xf278,7}}, {{0x28f6,2},{0x2d,1}}, + {{0x1e0dd,6},{0xb2e,2}}, {{0x24462,1},{0x27d8b,2}}, {{0x27c6d,4},{0x27897,1}}, {{0x66d0,4},{0x2a95,5}}, + {{0x142e,1},{0x1a,2}}, {{0x24b7,5},{0x5575,4}}, {{0xee4a,6},{0x2683,5}}, {{0x70a0,2},{0x159cd,2}}, + {{0x12062,8},{0xd0d,2}}, {{0x13eaa,6},{0xae7,1}}, {{0xceb,3},{0x28995,4}}, {{0xdcb,7},{0x76f1,5}}, + {{0x2b8e,3},{0x1bdb,3}}, {{0xddc,4},{0x1307,3}}, {{0x18d21,6},{0x3a81,3}}, {{0x14e2e,6},{0xc95d,4}}, + {{0x2796,3},{0x5e80,5}}, {{0xde9,1},{0x1308,3}}, {{0x41da,3},{0x292a5,2}}, {{0x49ac,2},{0xb78,2}}, + {{0x244b9,2},{0xfeee,2}}, {{0xfd5c,5},{0x174e,3}}, {{0x10ca,1},{0xbe4,1}}, {{0x27ae5,2},{0x924,1}}, + {{0xde9,1},{0xca5,2}}, {{0x70b0,4},{0x1dec4,2}}, {{0x24753,4},{0xa51,2}}, {{0xb64,2},{0xc89,3}}, + {{0x27af7,2},{0x278dc,1}}, {{0x251cb,1},{0x432,1}}, {{0xe6d,2},{0x222c,6}}, {{0xb64,2},{0xcf0,2}}, + {{0xcc7,3},{0x142e,1}}, {{0x30ba,7},{0x1498,3}}, {{0x10c8,3},{0xb54,2}}, {{0xfd25,4},{0x16ae,3}}, + {{0x1cef,3},{0xed68,5}}, {{0x18d4,3},{0xff73,7}}, {{0x15788,6},{0x1578e,6}}, {{0xc25,3},{0x2195,3}}, + {{0x78e2,7},{0xcc0,3}}, {{0x446a,5},{0xb2f7,5}}, {{0xe258,8},{0xb7c,3}}, {{0xae5,1},{0x17ef0,6}}, + {{0x2c82a,4},{0x1b709,2}}, {{0x278d6,1},{0x1171,2}}, {{0x1a,2},{0x13327,5}}, {{0xb44,4},{0xa45d,5}}, + {{0x122c,4},{0x9001,4}}, {{0xc78,3},{0xb65,2}}, {{0x19e0,7},{0x11e6,6}}, {{0x20bb,3},{0x187b,4}}, + {{0x2237,3},{0x11b8,4}}, {{0x6ac3,3},{0x1308,3}}, {{0x28be,10},{0x28c8,4}}, {{0xb99,3},{0xb7d,1}}, + {{0x27ac1,2},{0x116e,1}}, {{0xbeb,1},{0xb98,2}}, {{0x10c8,3},{0xc55,2}}, {{0x178c,3},{0x41b3,4}}, + {{0xa8f1,3},{0x263f,3}}, {{0x14ff0,4},{0xc67,2}}, {{0x10ea,3},{0xb066,2}}, {{0xaeb,2},{0xb52,2}}, + {{0x9c9a,9},{0xae7,1}}, {{0x3ae6,10},{0xb63,2}}, {{0xd54,1},{0xd1b,1}}, {{0xcf0,2},{0x1d,1}}, + {{0x43e3,1},{0x505c,5}}, {{0xae7,1},{0xb52,2}}, {{0x1ee93,3},{0x2843,2}}, {{0x17fc,8},{0xae6,3}}, + {{0xb82,2},{0x2b,1}}, {{0xde9,1},{0x21,1}}, {{0x27abb,2},{0x116e,1}}, {{0x6d8e,3},{0xb066,2}}, + {{0x1a793,5},{0x2afa,2}}, {{0x10ec,1},{0x283e,2}}, {{0xbd6,2},{0xed0,3}}, {{0x26f1,4},{0x705a,4}}, + {{0x441c,3},{0x21,1}}, {{0x10ea,3},{0x4569,4}}, {{0x27d3b,2},{0x734,2}}, {{0x10ea,3},{0x1961,6}}, + {{0xadf,2},{0x1362,3}}, {{0xaee7,2},{0xab9c,1}}, {{0x1aafc,4},{0x4d46,4}}, {{0x1ed58,1},{0x251de,2}}, + {{0x27d2,6},{0xc89,3}}, {{0x1972,2},{0xc67,3}}, {{0x2daa,5},{0x3cba,3}}, {{0x1aaea,4},{0x1fe8d,4}}, + {{0x122c,4},{0xee1a,4}}, {{0x3d40,9},{0xb8f,3}}, {{0x2474d,2},{0x70a6,2}}, {{0xaf1,1},{0x331c,5}}, + {{0xd76,4},{0x5af9,3}}, {{0xc13,7},{0x23cc,6}}, {{0xde9,1},{0xaf2,1}}, {{0x4108,2},{0xaad1,3}}, + {{0x4cff,9},{0x4d08,4}}, {{0xbb4,2},{0xbd6,2}}, {{0x974e,5},{0x7ed0,6}}, {{0xd54,3},{0xd57,5}}, + {{0xab5e,5},{0x8a57,7}}, {{0x13228,7},{0x10dc,2}}, {{0x27ad3,2},{0x278dc,1}}, {{0x17d07,8},{0xae7,1}}, + {{0xaca2,3},{0xc1c,2}}, {{0xceb,7},{0xcf2,4}}, {{0xbeb,1},{0x15ae3,2}}, {{0xaee9,2},{0xd54,1}}, + {{0x1a502,5},{0x7fda,4}}, {{0x10f2,1},{0x1a1f7,2}}, {{0xbbf,2},{0xb2e,2}}, {{0x14bb0,2},{0x155dd,3}}, + {{0x1e,1},{0xae0,1}}, {{0x1961,3},{0x12ff,3}}, {{0x159c,4},{0xd8e,4}}, {{0x233c8,5},{0x2b,2}}, + {{0x10ea,3},{0x21afd,4}}, {{0xae9,2},{0x169f,5}}, {{0x2daa,5},{0x1c43,4}}, {{0xbd4,2},{0x2891,3}}, + {{0xaeb,3},{0x11e4,4}}, {{0x10ec,1},{0x434c,2}}, {{0x1cbf,5},{0x1ed3,3}}, {{0xb73,2},{0xb98,2}}, + {{0x99ee,7},{0xa60f,3}}, {{0x508d,5},{0xa150,6}}, {{0x1b,1},{0x5c76,4}}, {{0xeee,5},{0xef3,4}}, + {{0xfed0,4},{0x532,2}}, {{0x2864c,1},{0x1b4e4,1}}, {{0xaca2,3},{0x10f0,1}}, {{0x2793d,4},{0x27a97,2}}, + {{0xeb2,1},{0xbb5,1}}, {{0xb75,3},{0xb65,2}}, {{0x1a624,3},{0xbd3d,4}}, {{0xae5,1},{0x139e,4}}, + {{0x1f,2},{0xb65,2}}, {{0x251cb,1},{0x27cea,1}}, {{0x10f2,1},{0xb63,2}}, {{0xaae6,4},{0x6ac5,1}}, + {{0x1d73,6},{0xae7,1}}, {{0x1644,5},{0x103a,3}}, {{0x18f4f,7},{0xb2e,2}}, {{0x1ae2,2},{0x6604,6}}, + {{0xbaf,2},{0xc57,3}}, {{0x10f7,1},{0xc51,2}}, {{0xf30,5},{0x1cef,3}}, {{0x8a16,5},{0x14e1,4}}, + {{0x151da,7},{0x25c2,3}}, {{0xc55,2},{0x1693,3}}, {{0x924,1},{0x27aaf,2}}, {{0x10468,6},{0x46fa,4}}, + {{0x3678,4},{0xe6d,2}}, {{0xaea,2},{0xd7f,3}}, {{0x74b6,7},{0x151e,4}}, {{0xd54,1},{0xf46,2}}, + {{0x4450,4},{0x15c61,3}}, {{0x271e,3},{0x1a10,2}}, {{0x2935b,4},{0x10f6,1}}, {{0x24531,4},{0xfefe,2}}, + {{0x14cb2,6},{0x2b,1}}, {{0xeb9,5},{0x1fe4,5}}, {{0xc39,4},{0xd51,2}}, {{0xc17,3},{0x11c10,4}}, + {{0x2c92,6},{0x1037,6}}, {{0x177c,3},{0x1f95d,4}}, {{0x10ea,3},{0x12f0,4}}, {{0x1f2e9,5},{0xc63,3}}, + {{0x151e,4},{0x288f,5}}, {{0xeca,4},{0xb7d,1}}, {{0x312a,5},{0xc095,6}}, {{0xf2b7,5},{0x11e6,6}}, + {{0x7a6e,4},{0xb73,2}}, {{0xbd4c,5},{0x28,2}}, {{0xf49b,5},{0x2b,2}}, {{0x27c3,5},{0xdf6,3}}, + {{0x177c,3},{0xbeb,1}}, {{0xde1,2},{0xb71,2}}, {{0x14bc,4},{0x2b,1}}, {{0xc39,2},{0xc55,2}}, + {{0x6c63,4},{0x80d3,7}}, {{0x244b9,2},{0x1b205,2}}, {{0x364e,5},{0xe9f,3}}, {{0xf52,4},{0xb55,2}}, + {{0xbb5,2},{0x40b6,3}}, {{0x37d6,5},{0xd915,6}}, {{0xb65,2},{0xb8f,2}}, {{0x3dda,5},{0xcb8,3}}, + {{0x16ce,4},{0xb7c,3}}, {{0xb2f,1},{0x2732,4}}, {{0x422e,3},{0x1a28c,3}}, {{0x9e68,3},{0xb7c,3}}, + {{0x6d8e,3},{0xc89,3}}, {{0x27b6,1},{0xcc0,3}}, {{0x438c,5},{0xbc4,4}}, {{0xa7da,3},{0xb47,2}}, + {{0xc8d2,6},{0x2b,3}}, {{0xb87c,6},{0x1b0a,2}}, {{0xf212,3},{0xa7d8,2}}, {{0x278a3,2},{0x27897,1}}, + {{0x6221,5},{0x2971,3}}, {{0x83df,5},{0xb2e,2}}, {{0x1084,3},{0xfcfc,3}}, {{0x142e,1},{0x142e,1}}, + {{0x1361,2},{0xc67,2}}, {{0x77a2,3},{0xae7,1}}, {{0x14cb4,4},{0x2b,1}}, {{0xcb5,8},{0xcbd,10}}, + {{0x14c44,6},{0xc67,2}}, {{0xfdf,2},{0xcf6,3}}, {{0x23cc2,6},{0x2b,1}}, {{0x845e,9},{0xce8,3}}, + {{0x1b6cb,1},{0x432,1}}, {{0x5915,5},{0xae7,1}}, {{0x7444,2},{0x2d,1}}, {{0x10c8,3},{0xae7,1}}, + {{0xd54,1},{0x114d,8}}, {{0x72d6,7},{0xdfb,3}}, {{0x60cf,8},{0xc63,3}}, {{0x4282,4},{0x15a83,3}}, + {{0xab9a,3},{0xae2,1}}, {{0x1ab2,4},{0x12fe,1}}, {{0x22db,5},{0xb75,3}}, {{0xac8a,4},{0xb52,2}}, + {{0x67aa,6},{0xae7,1}}, {{0x6cbe,4},{0x386a,3}}, {{0xfef0,8},{0x1b21f,8}}, {{0x40b8,2},{0x2b,1}}, + {{0x19cb,4},{0x1081,3}}, {{0x15819,4},{0x15819,4}}, {{0x27acd,2},{0x116e,1}}, {{0x70dc,4},{0x244ed,2}}, + {{0x734,2},{0x948,1}}, {{0xd0f,4},{0xf38f,3}}, {{0xeb95,6},{0xc55,2}}, {{0xae2,2},{0x72da,4}}, + {{0xb79,2},{0x1704,3}}, {{0x43e3,1},{0x2c00,3}}, {{0x1408,3},{0x1961,3}}, {{0x153c,6},{0x1d8a,3}}, + {{0x10f3,1},{0x46f8,3}}, {{0xae7,2},{0x715a,3}}, {{0xa6c6,7},{0xae6,3}}, {{0x1509c,2},{0xfb1,2}}, + {{0x27b4,3},{0x423e,1}}, {{0xc37,3},{0x217e0,4}}, {{0x23de8,4},{0x10ca,1}}, {{0x5c14,8},{0x10dc,2}}, + {{0xadd,7},{0xae4,5}}, {{0x14d7a,7},{0x2a16,3}}, {{0x177c,3},{0xbe7,1}}, {{0x278ad,3},{0x279ef,2}}, + {{0x2b76,3},{0x14766,4}}, {{0xacba,4},{0x28da,1}}, {{0x27ac7,2},{0x116d,1}}, {{0xcd9,3},{0x2b76,3}}, + {{0x6f74,4},{0x1019c,2}}, {{0x79d2,8},{0x10dc,2}}, {{0xfd25,6},{0xcce,3}}, {{0xeec,7},{0xd5e,4}}, + {{0x780,1},{0x2864c,1}}, {{0x10f6,1},{0xab9c,1}}, {{0x181c,3},{0xb99,2}}, {{0xd54,1},{0xd90,2}}, + {{0x40b2,4},{0x290e,4}}, {{0xdc0,6},{0xb2e,2}}, {{0x1cb0,11},{0xb2c,4}}, {{0x177c,3},{0xc2e,2}}, + {{0x2793d,4},{0x27a73,2}}, {{0x20,2},{0xd5e,7}}, {{0x1f,1},{0xb2e,2}}, {{0x2bfc,2},{0xaf2,1}}, + {{0x1ed58,1},{0x27cb7,4}}, {{0xeb2,1},{0x17bea,5}}, {{0xdfe,5},{0x3ce4,7}}, {{0x1adf,12},{0xb8f,3}}, + {{0x19ea3,6},{0xfdd,3}}, {{0x28,3},{0x10dc,2}}, {{0xddc,4},{0x1c25,4}}, {{0x1a4d7,4},{0xb78,2}}, + {{0x1224c,7},{0xd17,3}}, {{0x23df6,4},{0x23df3,3}}, {{0x6f16,4},{0x14e2,3}}, {{0xd41,3},{0x5c76,4}}, + {{0x218d,5},{0xb72,3}}, {{0x1f2bb,4},{0xaee9,2}}, {{0x1e27,5},{0xcf3e,6}}, {{0xc25,5},{0xc30,2}}, + {{0x142e,1},{0xf63c,2}}, {{0xc25,4},{0x1196,5}}, {{0xab9a,3},{0x26fbc,3}}, {{0x2451f,2},{0x157a4,2}}, + {{0x68fc,7},{0xb52,5}}, {{0x10ca,2},{0xd0b,4}}, {{0x12d00,6},{0xcc0,3}}, {{0xc49,3},{0x550f,3}}, + {{0x1878,1},{0x1520,2}}, {{0xb17b,7},{0xebe,3}}, {{0x181c,3},{0xaf2,1}}, {{0x1b23f,4},{0xae0,1}}, + {{0x2b,1},{0x1b4f,3}}, {{0x6aab,3},{0x2b,3}}, {{0x90e2,4},{0xc57,4}}, {{0x5288,5},{0x8787,7}}, + {{0xeb3,3},{0x1a,1}}, {{0xceb,3},{0xbd3,3}}, {{0x1ab2,4},{0xe6d,2}}, {{0x1d46,4},{0xb54,2}}, + {{0x532,34},{0x30,28}}, {{0x25bb5,4},{0xbd6,2}}, {{0x5acf,8},{0x2b,3}}, {{0x40fa,2},{0xbed,4}}, + {{0x41ef,2},{0xa57c,4}}, {{0xb44,3},{0xd7f,3}}, {{0xdba4,5},{0x1b,1}}, {{0x1c,1},{0x3789,3}}, + {{0x271e,3},{0x28da,1}}, {{0x14b40,6},{0xb2c,4}}, {{0x6ac3,3},{0xb63,2}}, {{0xd65,3},{0xc34,2}}, + {{0x422e,3},{0xb8a,2}}, {{0x251df,1},{0x251df,1}}, {{0xd0f,6},{0xae0,1}}, {{0x441c,3},{0x4d97,2}}, + {{0x27e2a,2},{0x24462,1}}, {{0x1764e,6},{0xb65,2}}, {{0x75cd,4},{0xb54,3}}, {{0xcc7,3},{0x2b,1}}, + {{0x1b0a,2},{0xf219,4}}, {{0x14b4a,7},{0x1b09,3}}, {{0x1ae3,2},{0x5396,3}}, {{0x2c5a,9},{0xc32,5}}, + {{0xb2f,1},{0xb7c,3}}, {{0xc89,2},{0xfe5,2}}, {{0x3a22,5},{0x2c38,6}}, {{0xbe7,1},{0xc60,3}}, + {{0xfef0,8},{0x1b20f,8}}, {{0xceb,3},{0x3e2a,4}}, {{0x9b1a,5},{0x7297,3}}, {{0xcce,3},{0xb55,2}}, + {{0xfda,11},{0x1577,4}}, {{0xd784,5},{0x18240,4}}, {{0xdbf,3},{0x11b9,3}}, {{0xecc,3},{0xfb1,2}}, + {{0x180c,4},{0x28,1}}, {{0xd65,3},{0x4487,8}}, {{0x1b4e3,1},{0x734,2}}, {{0x159c,5},{0xaf1,1}}, + {{0x17ac,4},{0x187c,3}}, {{0x2c76,4},{0x10e5a,6}}, {{0xb590,6},{0x4459,3}}, {{0x1cec,5},{0x4606,3}}, + {{0x14bba,4},{0xd0b,3}}, {{0x218d,5},{0x37f7,3}}, {{0xbeb,1},{0x2b8e,2}}, {{0xc1c,2},{0xb52,6}}, + {{0x178c,3},{0x760b,3}}, {{0x10ea,3},{0x1a6fd,2}}, {{0xd41,3},{0x4687,5}}, {{0x15a1f,4},{0x1489,3}}, + {{0x14bc,7},{0x8fb1,5}}, {{0xfde,2},{0x1e,1}}, {{0x1a10,2},{0xb78,2}}, {{0x264c,4},{0xa532,8}}, + {{0x10f7,1},{0xae2,1}}, {{0x8842,5},{0xae7,2}}, {{0x24531,4},{0x6f66,2}}, {{0x240c3,3},{0xaaf0,2}}, + {{0x36b0,6},{0xe9b,3}}, {{0x3250,4},{0x3610,2}}, {{0x27,1},{0xb057,6}}, {{0x2796,3},{0x127a9,5}}, + {{0x7702,5},{0xae7,1}}, {{0xf6e4,5},{0xaea,1}}, {{0x14fc8,5},{0xca7,3}}, {{0xa6c6,5},{0xae2,1}}, + {{0x18c7,6},{0x18cd,5}}, {{0xaeb,2},{0xb9f,2}}, {{0xd0a4,5},{0xc9f,4}}, {{0x10c8,3},{0x2b,3}}, + {{0x5288,5},{0x4d7c,5}}, {{0xc17,3},{0x1b,1}}, {{0xfc96,5},{0x2ab1,4}}, {{0x532,66},{0x30,22}}, + {{0xcfd,5},{0x23db,8}}, {{0x6b06,3},{0xc77,2}}, {{0x28,2},{0x1916,7}}, {{0x20e8,4},{0x1097,5}}, + {{0x24a21,4},{0x24a21,4}}, {{0x1095,3},{0x1010,5}}, {{0x272d,4},{0x31d6,5}}, {{0x159c,5},{0x11c4,6}}, + {{0xf393,6},{0xa5e6,4}}, {{0x1015c,4},{0x709c,4}}, {{0x1a,1},{0xb63,2}}, {{0x5102,5},{0xde9,4}}, + {{0x16ac,4},{0x12d7,5}}, {{0x30,64},{0x30,42}}, {{0x2fdf,3},{0x20,2}}, {{0x1ab2,4},{0xcf0,2}}, + {{0x271e,3},{0x15a1,3}}, {{0x70a0,2},{0x1dec4,2}}, {{0xe75,5},{0x10dc,2}}, {{0x30,2},{0x25212,4}}, + {{0x27ad3,2},{0x116c,1}}, {{0x2ce6,9},{0x10dc,2}}, {{0x17fc,6},{0xb55,3}}, {{0x14fc,11},{0x10c3,5}}, + {{0x134f,3},{0xf99,4}}, {{0x119c,6},{0x11b2,4}}, {{0x414e,4},{0x7bf3,4}}, {{0x278c9,2},{0x279dd,2}}, + {{0x2451f,2},{0x2456b,2}}, {{0x12f30,7},{0x12f37,3}}, {{0x1906,4},{0x190a,4}}, {{0xfeec,4},{0x70a0,4}}, + {{0x10f0,1},{0x359b,4}}, {{0x2859,5},{0xedcb,5}}, {{0x422e,3},{0x155f,3}}, {{0x10ef,1},{0xe39a,4}}, + {{0xf485,5},{0x1941,3}}, {{0x7426,6},{0x2be4,6}}, {{0xd57,2},{0xb8f,2}}, {{0x430,18},{0x432,3}}, + {{0x10b7,5},{0xb9d,3}}, {{0x18b8,4},{0x1434,3}}, {{0x2793d,4},{0x27a9d,2}}, {{0x2793d,4},{0x27a43,2}}, + {{0x4362,6},{0x25da,5}}, {{0x4220,10},{0x1081,3}}, {{0x2445f,1},{0x28652,2}}, {{0x10c8,3},{0x16821,4}}, + {{0xbd3,3},{0xb55,2}}, {{0x1eb1c,4},{0xc3e,2}}, {{0x6b5f,4},{0xc67,2}}, {{0xae5,1},{0x5575,4}}, + {{0x16cc,4},{0x22b70,3}}, {{0x10f3,1},{0x4351,2}}, {{0xc13,4},{0x2932,7}}, {{0xfe5,2},{0x1d,1}}, + {{0x281d,5},{0xf99,4}}, {{0xae0,1},{0xf69a,8}}, {{0x10f2,1},{0x1a814,2}}, {{0xae0,1},{0xde2,4}}, + {{0xaca2,3},{0x10f3,1}}, {{0x27cea,1},{0x28e89,2}}, {{0x122c,4},{0xbf6d,5}}, {{0x1abb0,6},{0xb63,2}}, + {{0x6ac5,1},{0xc3d,4}}, {{0xbb5,1},{0xfb1,2}}, {{0x10c8,3},{0x13fd9,5}}, {{0x180e,2},{0x16fcf,3}}, + {{0xb7f,3},{0x92c9,5}}, {{0x264c,6},{0x584c,5}}, {{0x27c67,4},{0x278d6,1}}, {{0x30,2},{0x1b203,4}}, + {{0x2793d,4},{0x27aa9,2}}, {{0x27d24,3},{0x9a9,1}}, {{0x2446a,3},{0x18,1}}, {{0xaada,4},{0x180e,2}}, + {{0x1a94,5},{0x11ef,2}}, {{0x278b3,4},{0x116e,1}}, {{0x10fb,3},{0xa7d1,2}}, {{0x278ad,3},{0x116d,2}}, + {{0x104b8,5},{0xff7,5}}, {{0x90be,5},{0x1d98,3}}, {{0x10fb,4},{0x67c0,3}}, {{0x2c76,4},{0xc73,2}}, + {{0xaca2,4},{0xaf2,1}}, {{0xac8a,4},{0x54e4,4}}, {{0xcd9,3},{0x22304,4}}, {{0xa4b,4},{0xa4f,2}}, + {{0x27c67,4},{0x116c,1}}, {{0x2884e,6},{0x2d,1}}, {{0xb2f,1},{0x40bb,5}}, {{0x178c,4},{0x26a9,5}}, + {{0xceb,3},{0x1099,3}}, {{0x2070,7},{0x1f87,8}}, {{0xb64,2},{0x10dc,2}}, {{0x1190,2},{0xfdf,2}}, + {{0x27c6d,4},{0x1b6ab,1}}, {{0x2daa,5},{0xb64,3}}, {{0x35fd,3},{0x28,1}}, {{0x18a7,3},{0x2d44,4}}, + {{0xf85,4},{0x28e2,4}}, {{0x1168a,7},{0xae7,1}}, {{0xc30,2},{0x2195,3}}, {{0x270fd,4},{0x1878,1}}, + {{0x46f4,6},{0xae6,3}}, {{0x10ea,3},{0x26e78,3}}, {{0x2a90,2},{0x28,1}}, {{0x4bba,9},{0x1099,3}}, + {{0x12ac,5},{0x2da1,9}}, {{0x1b5c3,4},{0xe70,4}}, {{0x1ab8c,5},{0x4881,4}}, {{0x27c5,2},{0x15292,6}}, + {{0x1af22,5},{0x1af30,4}}, {{0x4cd8,6},{0xd1a,7}}, {{0x10fb,3},{0xe9b,3}}, {{0xb30,2},{0x24461,1}}, + {{0x45cc,3},{0x21a0,3}}, {{0x876a,5},{0x73cb,5}}, {{0xa28e,7},{0x4881,4}}, {{0xb8a,3},{0xb8d,5}}, + {{0x159c,4},{0x10dc,2}}, {{0x9b92,7},{0xc8c,5}}, {{0x10f6,1},{0xaf1,1}}, {{0x1051,4},{0x12ff,2}}, + {{0x4e92,8},{0xd60,5}}, {{0xb66,2},{0xc67,2}}, {{0xfc6a,5},{0xbd7,2}}, {{0x10fd,2},{0xb8d,3}}, + {{0xf367,5},{0xf36c,4}}, {{0x17c0b,6},{0x2b,3}}, {{0xbaa2,4},{0xb85,2}}, {{0x6b6e,3},{0xbe85,6}}, + {{0x1b4e3,1},{0x27e39,3}}, {{0x10c8,3},{0xbe4,1}}, {{0x17ee,3},{0x64d7,8}}, {{0xf710,7},{0xf717,4}}, + {{0x3787,4},{0xb9d,3}}, {{0x14eb0,6},{0x4075,2}}, {{0x1097,4},{0xeb6,3}}, {{0x17c2f,5},{0xb47,2}}, + {{0x1ab2,4},{0x11b8,4}}, {{0x1b6dd,2},{0x1016a,2}}, {{0xf74,4},{0x67c0,3}}, {{0x326c,4},{0x5494,9}}, + {{0x276b,6},{0xf05,7}}, {{0x27af1,2},{0x278dc,1}}, {{0xbde,3},{0xbe0,1}}, {{0x16071,8},{0xaf2,1}}, + {{0xab9a,3},{0xb47,2}}, {{0x317e,6},{0x67c0,3}}, {{0xd54,1},{0x10f6,2}}, {{0x2793d,4},{0x27a31,2}}, + {{0xfd5c,5},{0xaf1,2}}, {{0x10ec4,6},{0x1e,1}}, {{0x178c,3},{0xaf1,1}}, {{0x397a,5},{0xc47f,5}}, + {{0xb60,2},{0xb52,2}}, {{0x2ede,6},{0x1a,3}}, {{0xf0e,5},{0x3211,7}}, {{0x1ae79,4},{0xbb1,3}}, + {{0x30,2},{0x9a9,4}}, {{0xbd4,2},{0x1d8e,3}}, {{0x8902,7},{0xfaf,3}}, {{0x1ee0,3},{0x1719,3}}, + {{0x44df,4},{0xb78,2}}, {{0x1a4b1,5},{0xcb8,2}}, {{0x4573,4},{0x297e,4}}, {{0x6d8e,3},{0x43a5,3}}, + {{0xfc9,6},{0xce2,6}}, {{0x1aff,3},{0xb52,6}}, {{0x1509a,4},{0x5af9,3}}, {{0xc25,3},{0x5d16,4}}, + {{0xfccd,5},{0x3cbc,3}}, {{0x20bb,3},{0x1015,5}}, {{0x40b6,3},{0x28,1}}, {{0x1aaed,1},{0xb401,2}}, + {{0x11fd6,7},{0xf6a,3}}, {{0x2182,5},{0xae7,1}}, {{0xfb1,2},{0xd91,2}}, {{0x1dc65,6},{0xc30,2}}, + {{0xc4d,2},{0xe70,4}}, {{0xcb8,2},{0x1ed0,4}}, {{0xddc,4},{0x1864,2}}, {{0x278ad,3},{0x27b03,2}}, + {{0x19b3,5},{0xf26,3}}, {{0x27ae5,2},{0x116d,1}}, {{0x1ee0,3},{0xb2e,2}}, {{0xb66,2},{0x28e2,4}}, + {{0x1e54,6},{0x1058,9}}, {{0x244e,8},{0xe08,7}}, {{0x27ab5,2},{0x278d6,1}}, {{0x6d8e,3},{0xb79,2}}, + {{0xc37,3},{0x2a16,3}}, {{0x28634,1},{0x24462,1}}, {{0x1693,3},{0x16a1,3}}, {{0x4e63,4},{0x2af8,4}}, + {{0xaea,1},{0xaad1,3}}, {{0x2106,4},{0x1308,3}}, {{0xb7f,3},{0xb82,2}}, {{0x135e,3},{0x1712f,3}}, + {{0x432,16},{0x432,5}}, {{0x3234,3},{0x1089,2}}, {{0xbed,2},{0x29da,3}}, {{0xb79,2},{0xae5,1}}, + {{0x9226,7},{0x25df,4}}, {{0x257a,4},{0xcb8,3}}, {{0x86b6,8},{0x2d44,4}}, {{0x1b87f,6},{0x1b237,8}}, + {{0x3234,3},{0x11bd5,5}}, {{0xb9c,2},{0x2237,4}}, {{0x6f21,5},{0xd57,3}}, {{0x1ab2,4},{0x1687,5}}, + {{0x6d81,3},{0x1018,3}}, {{0x27b4,3},{0x10f0,1}}, {{0x10c8,3},{0x15c61,3}}, {{0xd41,4},{0x169f,3}}, + {{0xbde,3},{0x1d8a,3}}, {{0xc9e,3},{0xb8e,2}}, {{0x6cbe,8},{0x2abe,5}}, {{0x47f8,6},{0xdf0,2}}, + {{0xac8c,2},{0x28,2}}, {{0x1e757,5},{0xb78,2}}, {{0xb64,2},{0xc64,2}}, {{0x3846,4},{0x4446,6}}, + {{0xaf5d,2},{0xbeb,1}}, {{0x122c,6},{0x1525,7}}, {{0x6d81,3},{0x29864,2}}, {{0xbde,3},{0x1e75a,2}}, + {{0x14fe6,7},{0x25c2,3}}, {{0x9c9,16},{0x9c9,16}}, {{0x27b6,1},{0xc34,2}}, {{0x177e,5},{0xd8e,4}}, + {{0x257c,2},{0xaf2,1}}, {{0x2daa,5},{0x750e,4}}, {{0x166c,4},{0x22e3,3}}, {{0x29e8c,3},{0x924,2}}, + {{0x3712,8},{0xb52,6}}, {{0x10d98,5},{0x229e,3}}, {{0x5b44,8},{0xb52,5}}, {{0x1036,3},{0xd0d,2}}, + {{0x27af7,2},{0x27897,1}}, {{0xf52,4},{0x9e37,7}}, {{0x5ead,5},{0x14a8,4}}, {{0xcd9,5},{0x40b8,2}}, + {{0xd5c,1},{0xbe0,1}}, {{0x1a1c,10},{0xb7c,3}}, {{0x271e,3},{0xbe7,1}}, {{0x58c7,6},{0xe78,3}}, + {{0x2796,3},{0x20b6,2}}, {{0x3244,5},{0xcfcf,4}}, {{0x441c,3},{0x1f,1}}, {{0x1f,1},{0xb48,2}}, + {{0x14bc,7},{0xc32,5}}, {{0xd0f,4},{0xee1a,4}}, {{0x732,3},{0x1ed58,1}}, {{0x432,16},{0x432,2}}, + {{0xbde,3},{0xa2c1,4}}, {{0x10f0,1},{0x1a,2}}, {{0x13d24,6},{0xae7,1}}, {{0x6226,2},{0x11ef,2}}, + {{0x5aab,3},{0x2b,3}}, {{0x13e2a,4},{0x2db1,3}}, {{0x30,2},{0x2864c,2}}, {{0x1a67,7},{0x49e0,6}}, + {{0x30,2},{0x532,12}}, {{0x27b4,4},{0xfb1,3}}, {{0x26b5,4},{0x1ee0,3}}, {{0x1c,1},{0xc1c,2}}, + {{0x24ba,3},{0xb8f,2}}, {{0xceb,3},{0x1c,1}}, {{0x261f,4},{0x1f,2}}, {{0x1321e,6},{0x4031,3}}, + {{0xb8b,2},{0x2af8,4}}, {{0xc5ce,6},{0xc5df,4}}, {{0x1d,1},{0xc8a,2}}, {{0x1fe11,4},{0x1b,1}}, + {{0x10ef,1},{0x240df,4}}, {{0x893e,7},{0x1498,3}}, {{0x10fb,4},{0x28,1}}, {{0x10fd2,8},{0xb2e,2}}, + {{0x1a,1},{0x1257,3}}, {{0xf74,8},{0xb2c,2}}, {{0x17fc,5},{0xc7b,4}}, {{0x10fb,3},{0x1a9d,3}}, + {{0x309e,8},{0xb52,6}}, {{0xd8e,3},{0x372a,4}}, {{0x24b7,6},{0x7ed0,6}}, {{0x10ef,1},{0x23d9,3}}, + {{0x16fc,4},{0x346a,8}}, {{0x4106,4},{0x2b,1}}, {{0xbeb,1},{0xaaec,2}}, {{0x17954,7},{0xc8f,2}}, + {{0x68fe,5},{0xb52,5}}, {{0x256d,3},{0xb7d,1}}, {{0x5af9,3},{0x28,1}}, {{0xd41,3},{0x1099,3}}, + {{0x2aea3,2},{0x24461,1}}, {{0x7a6e,4},{0x1016,4}}, {{0x430,18},{0x432,1}}, {{0x5a74,6},{0xae2,2}}, + {{0x52c9,9},{0x1a72,4}}, {{0x1b4e3,2},{0x1b4e3,1}}, {{0x244b9,4},{0x410e,2}}, {{0xf8de,4},{0xc67,2}}, + {{0x5a8e,6},{0x3626,4}}, {{0x7c4,1},{0x2446f,2}}, {{0x18d8,4},{0xb54,3}}, {{0xe830,5},{0x3921,5}}, + {{0x278af,1},{0x278cf,2}}, {{0xbe0,1},{0x4403,2}}, {{0x244a1,2},{0x24673,2}}, {{0x10f0,1},{0x28da,1}}, + {{0x244b9,2},{0x70ce,2}}, {{0x10ca,1},{0xbe7,1}}, {{0xb64,2},{0xb8c,2}}, {{0xf1f,5},{0xcd5,2}}, + {{0x1b39,8},{0x1555,7}}, {{0xb6e,2},{0x10dc,2}}, {{0x1f17,11},{0xb2e,2}}, {{0x2796,3},{0x1d0d,3}}, + {{0xd17,3},{0x2b,3}}, {{0x2349,4},{0xc22,3}}, {{0x26b5,4},{0xd102,4}}, {{0x23d6,13},{0xb2e,2}}, + {{0x28f6,2},{0xc895,6}}, {{0xaed6,11},{0xbeb,1}}, {{0xd0c,2},{0xb78,2}}, {{0x3fee,10},{0xd0b,4}}, + {{0x6b38,8},{0xb78,2}}, {{0x1b6cb,1},{0x2446f,2}}, {{0x2d02,8},{0xb65,2}}, {{0x282c,14},{0xae7,1}}, + {{0x2daa,5},{0xc60,3}}, {{0x2ce6,9},{0xae7,1}}, {{0x127ec,6},{0x1514,4}}, {{0x5915,5},{0xbb5,1}}, + {{0x8a3a,6},{0x2195,3}}, {{0x20bb,3},{0xbd8,2}}, {{0x4178,4},{0x27b6,1}}, {{0x178c,3},{0x15ae3,2}}, + {{0x2c76,4},{0xe6d,2}}, {{0xd11d,5},{0x1890,6}}, {{0x2840,2},{0x10ec,1}}, {{0x423e,1},{0xb65,2}}, + {{0x178c,3},{0x4460,3}}, {{0xcfd,4},{0xb64,3}}, {{0x122c,4},{0xaf2,1}}, {{0xc25,4},{0xb73,2}}, + {{0x10ec,1},{0xb47,2}}, {{0x70dc,4},{0x27d99,2}}, {{0xdd3,3},{0xc63,3}}, {{0x1436e,5},{0x10569,3}}, + {{0x27aeb,2},{0x116e,1}}, {{0x177c,3},{0xb65,2}}, {{0x37ac,9},{0x619a,3}}, {{0x6026,7},{0x220f,5}}, + {{0x2efa,9},{0xb52,5}}, {{0x10ec,1},{0xb78,2}}, {{0xcd9,3},{0xb217,4}}, {{0x17cc,4},{0x125fc,6}}, + {{0xf0e,12},{0xb2e,2}}, {{0x16140,5},{0xbbf,2}}, {{0x10b7,5},{0xdef,3}}, {{0xadf,2},{0xc77,2}}, + {{0x1d,1},{0x1e,2}}, {{0x10188,4},{0x10168,4}}, {{0x24753,4},{0x1b887,2}}, {{0x1d55,4},{0x12d3,6}}, + {{0xac7e,8},{0xb2c,2}}, {{0xbb5,3},{0x140a,2}}, {{0x5ec7,7},{0x11e6,6}}, {{0xfb1,2},{0x1dac,3}}, + {{0x6e46,3},{0x1aa6,3}}, {{0xe34a,5},{0x72b6,3}}, {{0x1b,1},{0xbbf,2}}, {{0xbafa,5},{0xeb2,1}}, + {{0x10c8,3},{0x28da,1}}, {{0x41f6,5},{0x6164,3}}, {{0x1257,2},{0x21,1}}, {{0x460a,7},{0x2574,2}}, + {{0xb2f,1},{0x1bfc9,4}}, {{0x438e,3},{0xaf1,1}}, {{0xb44,3},{0xb7d,1}}, {{0xfd5f,5},{0xc21,3}}, + {{0xcc7,3},{0xc4e,2}}, {{0x16b1,6},{0xb52,5}}, {{0x1f,1},{0x12bc4,3}}, {{0x41da,3},{0xf59,3}}, + {{0x19f2a,6},{0xa4c9,3}}, {{0x10ec,1},{0xee5,3}}, {{0xa162,6},{0x2d,1}}, {{0xbe4,1},{0x12be,3}}, + {{0x31e0,10},{0x1081,3}}, {{0x51ec,5},{0x10a92,4}}, {{0x10ec,1},{0x1055,3}}, {{0x2878d,4},{0x157a4,2}}, + {{0x13e78,7},{0xdf0,2}}, {{0x146c,6},{0x1577,4}}, {{0x2c84,6},{0x5268,3}}, {{0x1b6dd,2},{0x244c3,2}}, + {{0xb82,2},{0xeb2,1}}, {{0x415e,3},{0x1269f,2}}, {{0x4fa3,7},{0x11e6,6}}, {{0xd6d4,6},{0x2bc9,4}}, + {{0x40b2,4},{0xb63,2}}, {{0xdac,2},{0xdae,5}}, {{0xaea,2},{0x2c37,4}}, {{0x10f7,1},{0xb52,2}}, + {{0x10dc,2},{0xc51,2}}, {{0x7d6e,6},{0x1e6c,6}}, {{0xbeb,1},{0xb74,2}}, {{0x2793d,4},{0x27a37,2}}, + {{0x15694,5},{0xb64,2}}, {{0x1084,3},{0xb996,4}}, {{0x3f62,5},{0xb47,2}}, {{0xaf2c,3},{0xb2c,2}}, + {{0x10ea,3},{0x173e,3}}, {{0x251fe,2},{0x28633,2}}, {{0x415c,4},{0x116a2,6}}, {{0x6c0a,2},{0xc67,2}}, + {{0xc25,3},{0x1c7b0,5}}, {{0x27c67,4},{0x278af,1}}, {{0x4286,2},{0x10fa,1}}, {{0x1089,2},{0x2b,1}}, + {{0x10f2,1},{0xbe0,1}}, {{0xd54,1},{0x4284,2}}, {{0x263f,3},{0x1d,1}}, {{0x278a9,1},{0x27a13,2}}, + {{0x27dbd,6},{0x2474d,4}}, {{0x24a2d,2},{0x28e7a,2}}, {{0xf0e,5},{0xae6,3}}, {{0x1084,3},{0x1a,3}}, + {{0x1095,3},{0x2b,1}}, {{0x423c,3},{0xcbc,4}}, {{0x2cae,4},{0xfdf,3}}, {{0xacbc,2},{0x9271,4}}, + {{0x177c,7},{0xfdf,3}}, {{0xae5,1},{0x1cef,3}}, {{0xd57f,5},{0x520e,5}}, {{0x1f,1},{0x1bf18,5}}, + {{0x924,4},{0x924,3}}, {{0x18a5,5},{0xe08,7}}, {{0xcd1e,7},{0x10dc,2}}, {{0x19,1},{0x2446c,1}}, + {{0x2061,5},{0xec5,5}}, {{0x1064,4},{0xb48,2}}, {{0x10fb,4},{0x13b98,5}}, {{0x21f1b,6},{0x1d,1}}, + {{0x170c,11},{0xe70,4}}, {{0xf1f,5},{0x11be9,5}}, {{0x12ac,7},{0x1f13,4}}, {{0x423c,3},{0xb70,2}}, + {{0x2aff5,3},{0x1c,1}}, {{0x27acd,2},{0x278dc,1}}, {{0x6d8e,3},{0xbe7,1}}, {{0x219c,4},{0x4653,5}}, + {{0x209d,4},{0xaf49,4}}, {{0x432,16},{0x432,6}}, {{0xaee9,2},{0x10ed,2}}, {{0xf535,7},{0xb2c,4}}, + {{0x278b3,4},{0x116d,1}}, {{0x1a,2},{0xd7f,3}}, {{0x6f57,9},{0xd0d,2}}, {{0xb44,3},{0xc67,2}}, + {{0x41eb,4},{0xaf2,1}}, {{0x15d47,5},{0x3a39,3}}, {{0x27ab5,2},{0x924,1}}, {{0xe938,9},{0xc8f,2}}, + {{0x5c14,8},{0xae7,1}}, {{0x178c,3},{0xebf,3}}, {{0xadd,3},{0x209dd,3}}, {{0xde2,4},{0x2b,3}}, + {{0x5ea0,4},{0x4e32,5}}, {{0xaea,1},{0xbd9,2}}, {{0x3a5a,5},{0xb2b,3}}, {{0x77c2,7},{0x4bc2,5}}, + {{0x100d,5},{0xb71,2}}, {{0x199ff,6},{0xce8,3}}, {{0xbed,2},{0x142e,1}}, {{0xbd8,2},{0x78a2,4}}, + {{0x2cd6a,4},{0x1b709,2}}, {{0xc25,3},{0x700f,3}}, {{0xaf1,2},{0xae7,1}}, {{0x159c,4},{0xcf68,2}}, + {{0x17afb,5},{0x2b,3}}, {{0x6957,5},{0x8bb5,5}}, {{0x9b62,8},{0x1498,4}}, {{0x4f2e,5},{0xc57b,6}}, + {{0x177c,3},{0x2bfc,2}}, {{0x1b97b,7},{0x5c76,4}}, {{0x27af1,2},{0x1b6ab,1}}, {{0x27,1},{0x535b,4}}, + {{0x2f6a,6},{0x2f70,8}}, {{0x32d8,3},{0x14a8,4}}, {{0x10f7,1},{0xf8d1,2}}, {{0x13b76,6},{0x1ed0,4}}, + {{0xc25,4},{0x12fe,1}}, {{0x1d89,2},{0x193a6,5}}, {{0x8058,7},{0xb63,2}}, {{0xc9a,2},{0xae7,1}}, + {{0xbd7,3},{0x2db1,3}}, {{0x40b2,4},{0x146e2,6}}, {{0x79ba,7},{0xc32,5}}, {{0x68ae,6},{0xbb0b,5}}, + {{0x6d81,3},{0x539c,3}}, {{0x1dbe,5},{0x12b1,4}}, {{0x143c,5},{0x18cd,5}}, {{0xea40,6},{0xb2e,2}}, + {{0xa7ce,9},{0x10fa,1}}, {{0xbb5,1},{0x20c52,3}}, {{0x177c,3},{0x298a,2}}, {{0x27b4,3},{0xcb8,2}}, + {{0x27ae5,2},{0x278d6,1}}, {{0xddc,5},{0xc67,3}}, {{0xae5,1},{0x2b,2}}, {{0x51c5,5},{0x51d7,8}}, + {{0x11d88,5},{0xae0,1}}, {{0x12972,6},{0x1278,4}}, {{0xcd9,3},{0x15a1,3}}, {{0x22b5e,5},{0xb8e,2}}, + {{0x58d4,5},{0x12797,5}}, {{0x17ec,4},{0xb2e,2}}, {{0x1af22,5},{0x1150,2}}, {{0xd51,2},{0xb76,3}}, + {{0x2c76a,4},{0x70d2,2}}, {{0x88de,6},{0xd0b,4}}, {{0x26721,4},{0x2672b,2}}, {{0x2d,1},{0xfdd,2}}, + {{0x3996,5},{0x1d22,6}}, {{0xf367,5},{0x2b,2}}, {{0xf212,3},{0x1a,1}}, {{0x1017e,6},{0x70a0,4}}, + {{0x18376,6},{0x2b,3}}, {{0x10602,6},{0xb65,2}}, {{0x1b6db,4},{0x6f96,2}}, {{0x271e,3},{0x5392,7}}, + {{0x1f17,11},{0xd0b,4}}, {{0x1e,1},{0x3cba,3}}, {{0x78ca,4},{0x77c7,4}}, {{0x4204,5},{0xb71,2}}, + {{0x27b6,1},{0xbb5,1}}, {{0x1f,1},{0xdf0,2}}, {{0x804,2},{0x244c3,2}}, {{0x1b,1},{0xc5ff,4}}, + {{0x263f,3},{0xc63,3}}, {{0x18a5,5},{0x2d5d,4}}, {{0x1a859,4},{0x1055,3}}, {{0xc89,2},{0xb2c,2}}, + {{0x166c,6},{0xb64,3}}, {{0x27e1,9},{0xb7a,5}}, {{0xc1c,2},{0xe1c,4}}, {{0x6ac3,3},{0x28,1}}, + {{0xc6d,5},{0xcda7,6}}, {{0xae0,1},{0x37f7,3}}, {{0x2ad8b,2},{0x70a2,2}}, {{0x15e9d,7},{0xd0d,2}}, + {{0xc2e,2},{0x1dac,3}}, {{0x1a793,5},{0x1099,3}}, {{0x181c,3},{0x12fe,2}}, {{0xbe8,3},{0xaf2,1}}, + {{0xea77,7},{0xaeb,2}}, {{0xda9,5},{0xbd4,2}}, {{0x14936,4},{0x1f2c5,4}}, {{0x5aa8,10},{0xc63,3}}, + {{0x1b,1},{0x187c,3}}, {{0x14cc,4},{0x4ab0,3}}, {{0x423c,3},{0x2bfc,3}}, {{0x3ee4,5},{0x1b4f,4}}, + {{0x176c,10},{0xb52,5}}, {{0xb4b,2},{0x27,1}}, {{0x2868,4},{0x23d9,3}}, {{0x3640,4},{0xb52,2}}, + {{0x8686,9},{0x2b,3}}, {{0x2a90,2},{0x1d,1}}, {{0xceb,3},{0x6f36,3}}, {{0xcf3e,2},{0x2b,1}}, + {{0x271e,3},{0x24ba,3}}, {{0x279cb,2},{0x278a9,1}}, {{0x12ef4,7},{0xb2e,2}}, {{0x2912,5},{0xb9c,2}}, + {{0xf85a,5},{0x4d56,4}}, {{0x8f1a,7},{0x2b,3}}, {{0x16dc,7},{0xb7d,2}}, {{0xc37,3},{0x2d,1}}, + {{0x6d8e,3},{0xae2,1}}, {{0xaeb,2},{0x12be,3}}, {{0x17bc,3},{0xc67,2}}, {{0x27b03,2},{0x278dc,1}}, + {{0x947e,6},{0xdb31,5}}, {{0x10ca,1},{0x5277,2}}, {{0x30,2},{0x2ba3a,4}}, {{0x27b4,3},{0x700f,3}}, + {{0x3af4,8},{0x33d3,5}}, {{0x26f1,4},{0x2195,3}}, {{0xc25,4},{0xa5dd,5}}, {{0xb87,3},{0x1099,3}}, + {{0x354d,4},{0x1d,2}}, {{0xbe0,1},{0xb54,2}}, {{0x181c,4},{0x1140,4}}, {{0x6ac5,1},{0x10f7,1}}, + {{0x5adc,9},{0x5ae5,4}}, {{0xeca,5},{0x296f,5}}, {{0x1b40,3},{0xb4b,2}}, {{0x3678,8},{0xcb8,2}}, + {{0x2ae0,5},{0x4831,6}}, {{0x4957,6},{0x21d2,5}}, {{0x974e,7},{0x3347,5}}, {{0xac06,6},{0x103a,3}}, + {{0x519e,5},{0x30af,5}}, {{0xbc5,3},{0x2279,4}}, {{0xc76,2},{0xbd6,2}}, {{0x127ec,6},{0xb55,2}}, + {{0x1c9e5,5},{0x1408,3}}, {{0x159c8,7},{0x159cf,7}}, {{0x2b,1},{0x2ad97,4}}, {{0xca3,4},{0x2565,3}}, + {{0x944e,8},{0xe1c,4}}, {{0x27,1},{0x2b76,3}}, {{0xbeb,1},{0xbc1,2}}, {{0x27af7,2},{0x1b6ab,1}}, + {{0x18e1,5},{0x18e6,8}}, {{0x2868,4},{0xfe89,7}}, {{0xd0fe,3},{0xc828,4}}, {{0xaa98,2},{0xd54,1}}, + {{0xb63,2},{0xc34,2}}, {{0x3250,4},{0x1520,2}}, {{0x8a6a,6},{0x1220c,4}}, {{0xe6d,2},{0xcf3e,2}}, + {{0xb2c,2},{0x11ef,2}}, {{0x10ea,3},{0x174e,3}}, {{0x139e,2},{0x6dd7,3}}, {{0x1084,3},{0x1489,3}}, + {{0x2793d,4},{0x27a3d,2}}, {{0x4d9b,8},{0x11a5,4}}, {{0xaa3e,6},{0xc21,4}}, {{0xd784,6},{0xcab,3}}, + {{0x27c67,4},{0x278a9,1}}, {{0x422e,3},{0x1878,1}}, {{0xed8f,5},{0xae2,1}}, {{0x6d81,3},{0x29828,2}}, + {{0x142c,3},{0xb78,2}}, {{0x2747,3},{0xb65,2}}, {{0xbeb,1},{0x101b3,3}}, {{0x20179,6},{0xbbf,2}}, + {{0x1095,3},{0x1016,4}}, {{0xa62a,7},{0x1f13,4}}, {{0x181c,3},{0x1a6fd,2}}, {{0x2746,3},{0xbc1,2}}, + {{0x114f0,6},{0x38eb,3}}, {{0x1361,2},{0xb2e,2}}, {{0x6f21,8},{0x11b8,4}}, {{0x7a32,5},{0xc8a,2}}, + {{0x152de,4},{0xf6a,3}}, {{0x1a781,5},{0x542c,4}}, {{0x12314,4},{0xee71,5}}, {{0xb6c,3},{0x169f,3}}, + {{0xb72,2},{0xb2c,2}}, {{0x12f1,2},{0x30f5,4}}, {{0xa252,5},{0xaea,2}}, {{0x3da2,7},{0x41ba,4}}, + {{0x5f01,4},{0x2b,3}}, {{0x24461,1},{0x19,1}}, {{0xbe0,1},{0x209c5,3}}, {{0xae7,1},{0xb8b,2}}, + {{0x10f7,1},{0x139e,3}}, {{0x251cb,1},{0x948,1}}, {{0xceb,3},{0xcab,3}}, {{0xac42,9},{0xfe5,2}}, + {{0x1c,1},{0x2b,2}}, {{0x1b4db,2},{0x1b4db,2}}, {{0x53fb,4},{0xeb5,4}}, {{0x27,1},{0xeb3,3}}, + {{0x12116,7},{0x2b,3}}, {{0x70b0,6},{0x70a8,4}}, {{0xbf88,7},{0x10dc,2}}, {{0x10ea,3},{0x1b,1}}, + {{0x278a7,3},{0x278b5,2}}, {{0xae7,2},{0x2045,3}}, {{0x1a10,2},{0xf02,3}}, {{0x8a3a,6},{0x3062,4}}, + {{0xc30,2},{0x1d,1}}, {{0xb44,3},{0x1c030,5}}, {{0xc13,4},{0xae0,1}}, {{0x2043,5},{0x2048,9}}, + {{0x6735,4},{0x16f48,2}}, {{0x1b863,6},{0x247f1,4}}, {{0x1a4cc,6},{0x2b,3}}, {{0x27aeb,2},{0x278dc,1}}, + {{0xd76,4},{0x5277,2}}, {{0x180c,4},{0xb8f,2}}, {{0x6b2b,6},{0x107e,6}}, {{0x1a,2},{0xfe5,2}}, + {{0x14dc,4},{0x2e20,8}}, {{0x244cb,4},{0x410e,2}}, {{0xb12e,3},{0xb8a,2}}, {{0x47aa,7},{0xd48,2}}, + {{0x28da,1},{0x4412,3}}, {{0x16dc,4},{0x2b,1}}, {{0x2c72e,4},{0x6fae,2}}, {{0xfda0,3},{0x62ea,7}}, + {{0x2c866,4},{0x1cf1d,2}}, {{0x167c,5},{0x2b,3}}, {{0x10f2,1},{0x14c33,7}}, {{0x27d24,3},{0x734,1}}, + {{0x286f3,6},{0x1a328,2}}, {{0x4c7d,9},{0x18ca,3}}, {{0x70b2,4},{0xff20,4}}, {{0x432,16},{0x432,1}}, + {{0xc25,5},{0xb9d,3}}, {{0x1e45,3},{0xae2,2}}, {{0xc675,5},{0x9726,4}}, {{0x76c6,9},{0xb7c,3}}, + {{0x3234,3},{0xbd6,2}}, {{0x10bec,5},{0x1aff,3}}, {{0xab76,6},{0xb78,2}}, {{0xbb4,2},{0x28,2}}, + {{0xaea,1},{0x1260,4}}, {{0xb7f,6},{0xadf,2}}, {{0x445d,4},{0xc7b0,4}}, {{0x10fb,3},{0x1318b,4}}, + {{0xdd0,3},{0x1704,3}}, {{0x14cc,4},{0x1b,1}}, {{0x11cca,5},{0xdfb,3}}, {{0xceb,4},{0x11ef,3}}, + {{0x41da,3},{0x5fa0,4}}, {{0x6ac5,1},{0x10ef,1}}, {{0x470e,5},{0x16f8,3}}, {{0xca3,7},{0xbb5,1}}, + {{0x15806,6},{0x15806,6}}, {{0x27ae5,2},{0x278dc,1}}, {{0x4eed,9},{0xb63,2}}, {{0xc25,3},{0xaeb,2}}, + {{0x27cea,1},{0x24f92,2}}, {{0x1051,4},{0x1d,1}}, {{0x1c,1},{0xb63,2}}, {{0x10fb,3},{0x100b0,2}}, + {{0xa7f2,5},{0x12ff,3}}, {{0xf579,5},{0x1260,4}}, {{0xf943,5},{0x1c25,4}}, {{0x278a7,3},{0x27a0d,2}}, + {{0xaea,3},{0xb2b,3}}, {{0x2789b,3},{0x278f3,2}}, {{0x143c,8},{0x2b,3}}, {{0xb6c,4},{0xc39,2}}, + {{0x3bfe,9},{0xae7,1}}, {{0xb6c,3},{0x10ec,1}}, {{0x14a1c,6},{0x10569,3}}, {{0x18514,6},{0x2b,3}}, + {{0x142c,3},{0xae7,1}}, {{0x10f7,1},{0x152c3,3}}, {{0x929e,5},{0x13e4,3}}, {{0xb6c,3},{0x2742,3}}, + {{0x10fb,3},{0xf776,8}}, {{0xdcb,7},{0x1e,1}}, {{0xbbf,2},{0xc57,3}}, {{0x6d8e,3},{0xd7f,3}}, + {{0x10ef,1},{0xb7c,2}}, {{0x2793d,4},{0x27a91,2}}, {{0x10fb,4},{0xee1,3}}, {{0xc73,2},{0x1c8b,7}}, + {{0x17ae,2},{0x1300,6}}, {{0x4a82,8},{0xb63,2}}, {{0x10f0,1},{0x1878,1}}, {{0xba5,4},{0x28,2}}, + {{0xba5,4},{0x8ee2,5}}, {{0x2793d,4},{0x27a49,2}}, {{0x7702,5},{0x15b0,3}}, {{0x2429c,5},{0x4415,2}}, + {{0x27c3,4},{0xc1e,2}}, {{0x14faa,5},{0x1a,2}}, {{0x271e,3},{0x1c68,3}}, {{0x6735,5},{0xb65,2}}, + {{0xbcb,3},{0x14cbf,2}}, {{0xbde,3},{0xbeb,1}}, {{0x265b,4},{0x1ec3d,4}}, {{0x28,2},{0x700f,3}}, + {{0x181c,3},{0x1cee,4}}, {{0x6b6e,3},{0x27,1}}, {{0x47aa,8},{0x47b2,4}}, {{0xb92,5},{0xc60,5}}, + {{0x114f0,7},{0x2b,3}}, {{0x159e,3},{0x186db,4}}, {{0x26c4,3},{0x10ef,1}}, {{0xcb8,2},{0xdf0,2}}, + {{0xddc,5},{0x1b4f,3}}, {{0xe006,5},{0xc1e,5}}, {{0x10f2,1},{0x28da,1}}, {{0xdba,4},{0x10dc,2}}, + {{0x430,18},{0x432,2}}, {{0xd0f,4},{0x13b98,6}}, {{0x3100,7},{0x16a2,3}}, {{0x5fcb,7},{0x3a57,3}}, + {{0x1d5b5,5},{0xc62,3}}, {{0x271e,3},{0x2b,2}}, {{0xd8ce,5},{0x1719,3}}, {{0xff3c,8},{0xff00,4}}, + {{0x1eb69,5},{0xb48,2}}, {{0xeb95,6},{0x47b3,3}}, {{0xd0db,7},{0x151e,4}}, {{0x180c,4},{0x1260,4}}, + {{0xd0fc,5},{0xc828,4}}, {{0x6b61,2},{0x2de9,7}}, {{0x10ef,1},{0xb52,2}}, {{0x36be,5},{0xcc0,3}}, + {{0x4eed,9},{0x1719,3}}, {{0x2c76,4},{0xaf2,1}}, {{0xae6,2},{0x1489,3}}, {{0x5401,4},{0x1a,2}}, + {{0xaea,2},{0xb52,2}}, {{0x278c9,2},{0x279e3,2}}, {{0xeca,4},{0xb55,2}}, {{0xaea,4},{0xfe5,2}}, + {{0xaea,1},{0xee1,3}}, {{0x4284,2},{0x152c4,2}}, {{0xaea,1},{0x1cef,3}}, {{0x1a51d,5},{0xd17,3}}, + {{0xf52,4},{0xf01,4}}, {{0x779e,8},{0x1dac,3}}, {{0x519e,5},{0xcaf2,6}}, {{0x2bfd,2},{0x10929,5}}, + {{0x100d,5},{0x1b0a,2}}, {{0x1485a,7},{0x7152,3}}, {{0x6c0a,2},{0x1393,3}}, {{0xd41,4},{0x5bb3,6}}, + {{0x3e12,5},{0x8a43,3}}, {{0x6dc2,4},{0x951e,8}}, {{0x3a3e,7},{0x2288,4}}, {{0x4362,4},{0xae6,3}}, + {{0x326c,4},{0xb64,3}}, {{0x2848,2},{0xd5c,1}}, {{0xc25,4},{0x1b1f,3}}, {{0x27c67,4},{0x1b6ab,1}}, + {{0x9a9,1},{0x251dc,2}}, {{0xceb,3},{0x19180,6}}, {{0x122c,4},{0x190c4,4}}, {{0x37f7,3},{0xb65,2}}, + {{0xf63c,2},{0xc67,2}}, {{0x16ee,2},{0xfdf,2}}, {{0x22abe,4},{0xbbf,2}}, {{0x27b95,4},{0x116e,1}}, + {{0xbe4,1},{0x15a1,3}}, {{0x3cec,9},{0xce8,3}}, {{0xb2e,2},{0xb54,3}}, {{0x24462,1},{0x1b6c5,2}}, + {{0xff7,4},{0xd57,2}}, {{0x2793d,4},{0x27a79,2}}, {{0x422e,3},{0xc55,2}}, {{0x1d,2},{0x2573,3}}, + {{0xeb2,1},{0xc63,3}}, {{0x10e1,3},{0xd0d,2}}, {{0x5483,4},{0xb28,6}}, {{0xd41,3},{0xae7,1}}, + {{0x27b03,2},{0x278a9,1}}, {{0x1aefe,5},{0xd17,3}}, {{0xac08,4},{0x103a,3}}, {{0x1ffb9,5},{0x4d44,3}}, + {{0xe867,7},{0xd7f,3}}, {{0x142c,3},{0x10dc,2}}, {{0x6d81,3},{0x1a28f,3}}, {{0x508d,5},{0xdf0,3}}, + {{0x8844,3},{0x1f,1}}, {{0xde2d,7},{0x2b,3}}, {{0x12968,7},{0x1257,3}}, {{0x10ca,1},{0x4606,3}}, + {{0xaf1,1},{0xb8f,2}}, {{0xae6,2},{0xb4a,2}}, {{0x1084,4},{0xc25a,4}}, {{0x278ad,3},{0x27ac1,2}}, + {{0x27c67,4},{0x278dc,1}}, {{0xb7f,3},{0x27,1}}, {{0x7a0e,7},{0x11b8,4}}, {{0xa7d3,2},{0x10fa,1}}, + {{0x27af1,2},{0x278d6,1}}, {{0x27af7,2},{0x278d6,1}}, {{0x1b6cb,1},{0x2446c,1}}, {{0xfd08,3},{0xba9b,4}}, + {{0x27b4,3},{0x1150,2}}, {{0xceb,3},{0xcd4,3}}, {{0xeb9,6},{0x8458,6}}, {{0xdcac,7},{0x10dc,2}}, + {{0xb85,2},{0xc51,2}}, {{0x3758,4},{0x54af,4}}, {{0xf85a,5},{0x530c,3}}, {{0x6ac3,3},{0x6ac5,1}}, + {{0x40c0,7},{0xb2c,4}}, {{0x27ae5,2},{0x27897,1}}, {{0xb7f,6},{0xb2c,2}}, {{0xaf36,6},{0xa2f4,6}}, + {{0x6957,6},{0x1dac,3}}, {{0xbe7,1},{0x10f6,2}}, {{0x3df9,6},{0xb63,2}}, {{0x271e,3},{0x10ed,2}}, + {{0xbb2,2},{0xb29c,3}}, {{0x14ff0,4},{0xb85,2}}, {{0x135c,5},{0xec2,2}}, {{0x27ac7,2},{0x278d6,1}}, + {{0x5a67,7},{0x2b,3}}, {{0xba5,4},{0xc99,3}}, {{0x1095,3},{0x5f90,4}}, {{0xc1a,4},{0x48eb,4}}, + {{0x5a26,8},{0x11b8,4}}, {{0xcd9,3},{0xd8f,3}}, {{0xbd6,2},{0x8fee,4}}, {{0x27897,2},{0x27897,1}}, + {{0x1ed49,3},{0x948,1}}, {{0xcbd,3},{0xae7,1}}, {{0x147c,5},{0x103a5,5}}, {{0x278a9,1},{0x278e1,2}}, + {{0x1150,2},{0x2b,3}}, {{0x202c,4},{0x1f,1}}, {{0xab6a,7},{0xc8f,2}}, {{0x1084,3},{0x102f9,3}}, + {{0x38c4,8},{0xb2e,2}}, {{0xb6c,6},{0xb55,2}}, {{0xb9c,2},{0x1140,3}}, {{0x10ea,3},{0x3789,3}}, + {{0x1290,5},{0xb2c,2}}, {{0x4d33,6},{0x7ef4,6}}, {{0x17bc,3},{0x2672b,2}}, {{0xb44,3},{0xcb8,3}}, + {{0x1c,1},{0x4e98,3}}, {{0xadd,7},{0xbbf,2}}, {{0x12ac,5},{0xaee,5}}, {{0x6701,7},{0x2d5d,4}}, + {{0x24462,1},{0x27cf8,2}}, {{0x150c,10},{0x1081,3}}, {{0x719e,5},{0x1bdb,3}}, {{0xae7,1},{0x12fe,2}}, + {{0x82de,6},{0xb8f,2}}, {{0x6d81,3},{0x1fafc,5}}, {{0xc25,3},{0xfb1,2}}, {{0xb30,2},{0x948,1}}, + {{0x14b6,2},{0x1dff,2}}, {{0x9a2f,3},{0x11e4,4}}, {{0x14c08,7},{0x103a,3}}, {{0x33ae,7},{0xaf0,2}}, + {{0x2e44,5},{0x1058,9}}, {{0x14ba4,5},{0xb47,2}}, {{0xadf,2},{0x2b,1}}, {{0x4d56,4},{0x1d,1}}, + {{0xc5ff,4},{0x1f,1}}, {{0x3234,3},{0x2b,3}}, {{0x780,1},{0x1b6cb,1}}, {{0x1c8f,3},{0x28,1}}, + {{0x13bc,7},{0x1d3e,8}}, {{0x17e30,7},{0xfe5,2}}, {{0xf10,3},{0x12b1,3}}, {{0xcc7,3},{0x5c72,4}}, + {{0xc49,3},{0xd1b,1}}, {{0xb47,2},{0x1a,2}}, {{0x1b4e,4},{0x25c2,3}}, {{0x1c,1},{0xcab,3}}, + {{0x27ad3,2},{0x278af,1}}, {{0xfd25,4},{0x1e90b,4}}, {{0x2793d,4},{0x116e,1}}, {{0x2b325,2},{0x2445e,1}}, + {{0xb493,5},{0x2b,3}}, {{0x30,2},{0x1b6e1,4}}, {{0xad34,5},{0x16f8,3}}, {{0x90ee,9},{0x90f7,3}}, + {{0xe3fa,7},{0x92d3,3}}, {{0xea98,5},{0x2bfd,2}}, {{0x126c0,5},{0x2db1,3}}, {{0xceb,3},{0x29d9,3}}, + {{0x15a5e,2},{0x1a700,3}}, {{0x434f,2},{0xd5c,1}}, {{0x1283c,7},{0xc3d,3}}, {{0x2d,1},{0xb4b,2}}, + {{0x422e,3},{0x26f80,3}}, {{0xb2f,1},{0xb7c,2}}, {{0x924,2},{0x1b6b3,2}}, {{0x10ef,1},{0xc77,2}}, + {{0x6d8e,3},{0xbb1,3}}, {{0xcb5,3},{0x28,1}}, {{0xb4a9,7},{0x103a,3}}, {{0x17fe,3},{0x6573,7}}, + {{0xd41,3},{0x169f,3}}, {{0x4220,5},{0xb065,3}}, {{0x17ba8,6},{0x10dc,2}}, {{0x80aa,7},{0xc1c,2}}, + {{0xf63,5},{0x2138,5}}, {{0x2d,1},{0xaea,1}}, {{0x2d,1},{0x1790e,4}}, {{0x167c,5},{0x3ce3,3}}, + {{0xf74,4},{0xae9,3}}, {{0x10ec4,5},{0xb78,2}}, {{0x1ed58,1},{0x9a9,1}}, {{0x2d,1},{0x9169,3}}, + {{0x5317,5},{0xca1,2}}, {{0x41da,3},{0x14eab,5}}, {{0xc13,4},{0x18c7,11}}, {{0x22628,5},{0xb2c,2}}, + {{0x287e7,2},{0x70ce,2}}, {{0xbe0,1},{0xb78,2}}, {{0xaf1,1},{0xb7d,1}}, {{0xf52,4},{0x5c25,5}}, + {{0x29d6,5},{0x29db,9}}, {{0x2a715,4},{0x278dc,1}}, {{0x1b4e3,1},{0x432,1}}, {{0xdde0,5},{0xb52,5}}, + {{0xd41,3},{0x1b,2}}, {{0x52a4,4},{0x10dc,2}}, {{0x16fc,4},{0x13b7a,5}}, {{0x6d81,3},{0xb52,2}}, + {{0xb2f,1},{0xc34,3}}, {{0x10b7,5},{0x8140,6}}, {{0xb7f,3},{0x1d8a,3}}, {{0xb78,2},{0x1bdb,3}}, + {{0x181c,3},{0x4413,2}}, {{0xdc00,3},{0x1a,1}}, {{0x2b,2},{0xaa21,5}}, {{0xa7ac,5},{0xe6d,2}}, + {{0xb9c,3},{0xb2e,2}}, {{0x441c,3},{0x2c0a,3}}, {{0x26c6,1},{0x1eed4,5}}, {{0x27acd,2},{0x1b6ab,1}}, + {{0x758e,8},{0x1b80,4}}, {{0xc25,4},{0x1b4c,3}}, {{0x27c3,5},{0x186db,4}}, {{0x244b3,2},{0x70ca,2}}, + {{0x1f,2},{0x19e4,3}}, {{0x794e,7},{0xff7,5}}, {{0x278a9,1},{0x278a3,2}}, {{0x804,2},{0x24733,2}}, + {{0x5a81,6},{0xb7c,3}}, {{0x14fd2,6},{0x34a2,4}}, {{0xbcc2,3},{0xae7,1}}, {{0x141e8,7},{0x1489,3}}, + {{0x27b4,3},{0xb79,2}}, {{0xce1,3},{0xb2e,2}}, {{0x5e11,6},{0x3521,7}}, {{0x10f0,1},{0xaf62,2}}, + {{0x14b6,2},{0x1d59,4}}, {{0xae7,1},{0x23af,4}}, {{0x27b4,3},{0x10f7,1}}, {{0xae7,1},{0x2be4,6}}, + {{0xadce,5},{0x6170,7}}, {{0x10f7,1},{0xa7d8,2}}, {{0xb4b,2},{0x43ac,8}}, {{0x2742,3},{0x2b,1}}, + {{0x1b,1},{0xae5,1}}, {{0xae2,2},{0x72fe,5}}, {{0x27cc5,2},{0x28633,2}}, {{0xae9,2},{0xc8e,3}}, + {{0x16bc,4},{0x1ea73,4}}, {{0xb60,3},{0xb68,4}}, {{0x2859,4},{0x423e,1}}, {{0x3782,5},{0x7288,6}}, + {{0x2160,12},{0xb70,2}}, {{0x1051,4},{0xee1,3}}, {{0xbb5,2},{0x14b6,2}}, {{0x6ac3,3},{0x49ae,4}}, + {{0xbc1,3},{0xb78,2}}, {{0x51df,5},{0x1555,7}}, {{0x10d20,6},{0xd0d,2}}, {{0x4362,6},{0xe1c,4}}, + {{0x2121b,6},{0xae7,1}}, {{0xbde,3},{0xd54,1}}, {{0x142e,1},{0x27,1}}, {{0xd65,3},{0x11f2,3}}, + {{0x17bc,4},{0xaef,3}}, {{0x1ed51,3},{0x1ed54,5}}, {{0x27af1,2},{0x116d,1}}, {{0x17fc,5},{0x6573,7}}, + {{0x1107c,4},{0x2b,2}}, {{0x96a6,7},{0xae5,1}}, {{0xc17,3},{0x23cc,6}}, {{0x9532,6},{0xaeb,2}}, + {{0x22cf8,1},{0x734,1}}, {{0xa26a,6},{0x1055,3}}, {{0x27e1c,2},{0x1b4e3,1}}, {{0x3e34,5},{0xeb6,3}}, + {{0xff8e,6},{0x4994,4}}, {{0xcc7,3},{0x10ba,2}}, {{0xdd5,2},{0x18ca,3}}, {{0x22abe,4},{0x28,1}}, + {{0x3da2,7},{0xd1a,7}}, {{0x23d9,3},{0xae7,1}}, {{0x242b3,3},{0xb54,2}}, {{0x10c8,3},{0x1393,3}}, + {{0x17ad7,6},{0x2195,3}}, {{0x5949,4},{0xaec,2}}, {{0xbde,3},{0x10f3,1}}, {{0x20,2},{0x7047,5}}, + {{0x27c5,2},{0xc01b,6}}, {{0xbe7,1},{0x4349,3}}, {{0xa4d,2},{0x28707,4}}, {{0x10f0,1},{0x27202,3}}, + {{0x21a32,5},{0xb2e,2}}, {{0x1665b,6},{0x2b,3}}, {{0xae7,1},{0xb2e,2}}, {{0xadd,4},{0x2d,1}}, + {{0xaca2,3},{0x6ac5,1}}, {{0x2539d,6},{0x70c8,4}}, {{0x1084,3},{0x2ddc,6}}, {{0x6839,8},{0x10c3,5}}, + {{0x14d5,3},{0xce8,3}}, {{0xb4a,3},{0xc1c,2}}, {{0x3e90,5},{0x10e1,5}}, {{0x4108,2},{0x28e2,4}}, + {{0x10c8,3},{0x5396,3}}, {{0x41da,3},{0x3dd1,2}}, {{0xdfe,9},{0x18ca,3}}, {{0x474f,6},{0x10dc,2}}, + {{0xbde,3},{0x3e92,3}}, {{0x3162,5},{0xb7c,3}}, {{0x178e,2},{0x26a9,5}}, {{0xa7da,3},{0xb9d,3}}, + {{0x9a9,3},{0x22cf8,1}}, {{0x10c8,4},{0xc89,3}}, {{0x5288,5},{0x1d,1}}, {{0x430,18},{0x432,4}}, + {{0x194a,6},{0x8472,4}}, {{0x2288,4},{0x1278,4}}, {{0xae0,1},{0xb55,3}}, {{0x244cb,4},{0x244c3,2}}, + {{0x19a74,5},{0xbd4,2}}, {{0x178c,3},{0x265d,3}}, {{0x2a94b,3},{0x24462,1}}, {{0x1e45,3},{0xdf0,2}}, + {{0x1089,2},{0x2b,2}}, {{0x804,2},{0x6fae,2}}, {{0xae2,2},{0xb2e,2}}, {{0x432,16},{0x432,3}}, + {{0x226e,11},{0x2279,4}}, {{0xbb5,1},{0xdd3,3}}, {{0xf6fa,8},{0xfe5,2}}, {{0x1bb85,5},{0xb78,2}}, + {{0xf84f,5},{0xb63,2}}, {{0x43e3,1},{0x10f6,1}}, {{0x54de,10},{0x1257,3}}, {{0xaf1,1},{0x5396,3}}, + {{0x209d,4},{0x2b,2}}, {{0xb6c,3},{0x108b,3}}, {{0x28da,1},{0xb336,7}}, {{0xcfd,4},{0xca7,2}}, + {{0x16dbf,8},{0xae7,1}}, {{0xf96,7},{0x35d7,7}}, {{0x69e8,6},{0x10dc,2}}, {{0x5102,5},{0xc6a8,4}}, + {{0x1042,4},{0x2a16,3}}, {{0x25789,2},{0x6f66,2}}, {{0x449e,6},{0x3f5b,7}}, {{0x7132,6},{0x1ba7,4}}, + {{0xb64,2},{0x11b8,4}}, {{0xbb4,2},{0xc67,2}}, {{0x43a5,3},{0xaf2,1}}, {{0x61c6,6},{0x61d9,7}}, + {{0xcd5,2},{0xb55,2}}, {{0xdfe,5},{0x2e55,5}}, {{0x244b9,2},{0x1b709,2}}, {{0x20,2},{0xdf5,4}}, + {{0x244b9,2},{0x6f78,2}}, {{0x6f62,4},{0x1dec4,2}}, {{0x9af6,6},{0xb78,2}}, {{0xa29a,5},{0xd0d,2}}, + {{0x27acd,2},{0x278d6,1}}, {{0xd08e,5},{0x92c8,6}}, {{0x1f3a,3},{0xb48,2}}, {{0x2d22,7},{0xae7,1}}, + {{0xa8fc,4},{0xcce,3}}, {{0xcbd,3},{0x2195,3}}, {{0x3a06,7},{0xa60f,3}}, {{0x6c0a,2},{0xa623,4}}, + {{0x23c7,7},{0x1fe4,5}}, {{0x1b,1},{0xaf1,1}}, {{0xaee7,2},{0x10ef,1}}, {{0x10c8,3},{0x1372,4}}, + {{0x1ae2,2},{0xb65,2}}, {{0x261f,4},{0xa526,4}}, {{0xab9a,3},{0xbd3,3}}, {{0x17b3a,5},{0x1d592,3}}, + {{0x27b4,3},{0x2098,3}}, {{0x82de,7},{0x10dc,2}}, {{0x6ac3,3},{0xae2,1}}, {{0x741a,7},{0xaf2,1}}, + {{0x102f,6},{0x13866,4}}, {{0x27aa9,2},{0x924,1}}, {{0xef68,7},{0x3afc,4}}, {{0xbe4,1},{0x159f,4}}, + {{0xaea,1},{0xb71,2}}, {{0xc37,3},{0xf10,3}}, {{0x15b40,2},{0xd54,1}}, {{0x14c58,5},{0x2638,4}}, + {{0x177e,2},{0x174e,3}}, {{0xaeee,4},{0x193a6,5}}, {{0x1148c,6},{0x3e15,4}}, {{0x177c,3},{0xbd6,2}}, + {{0x4fbd,4},{0x171d9,4}}, {{0x13c0c,7},{0x2b,3}}, {{0xdd3,3},{0x1d,1}}, {{0xb2c,2},{0xb8f,2}}, + {{0xe9f,3},{0xf99,4}}, {{0xdde0,5},{0xb52,6}}, {{0xaeb,2},{0xc1c,2}}, {{0x6f21,5},{0x684b,7}}, + {{0x7c4,1},{0x117c,1}}, {{0x12882,5},{0x12ef,3}}, {{0x70c6,4},{0xfefe,2}}, {{0x6f74,4},{0x1b205,2}}, + {{0xec50,5},{0xc1c,2}}, {{0xb4a,3},{0x10dc,2}}, {{0xbeb,1},{0x1361,2}}, {{0x1a,2},{0xb2c,2}}, + {{0x1f,1},{0xc55,2}}, {{0x24b7,5},{0x9fc3,7}}, {{0xd76,7},{0x2a69,7}}, {{0xddc,4},{0x7562,3}}, + {{0xfe0c,8},{0xb8d,3}}, {{0x19,1},{0x24a41,2}}, {{0x183c,6},{0x532,16}}, {{0x12706,6},{0x4a30,4}}, + {{0x318c,5},{0xc07f,6}}, {{0xec50,5},{0x5bb3,6}}, {{0xb31,1},{0xa7d,6}}, {{0xf212,3},{0xae2,1}}, + {{0xca5,2},{0x1dd7,2}}, {{0x27a5,7},{0x2176,8}}, {{0x209d,4},{0x887b,3}}, {{0xd57,2},{0xd60,5}}, + {{0x30,22},{0x532,4}}, {{0x26c4,4},{0xc52,3}}, {{0x6d8e,3},{0x67c0,4}}, {{0x2900,4},{0x4459,3}}, + {{0x102c,2},{0xc1e,2}}, {{0x20bb,3},{0x1862,3}}, {{0x20bb,3},{0x1f,1}}, {{0xab9a,3},{0xb64,2}}, + {{0xa45d,4},{0x5b7d,3}}, {{0xaca2,3},{0x15051,3}}, {{0xceb,3},{0x10c4,4}}, {{0x3242,5},{0xb4b,2}}, + {{0x441c,3},{0x20c52,3}}, {{0xd65,3},{0x5d77,5}}, {{0x1fb2,5},{0xb68,4}}, {{0x46f4,4},{0xec2,2}}, + {{0xeb1,2},{0xae2,1}}, {{0x6bd4,9},{0xae7,1}}, {{0x780,1},{0xb31,1}}, {{0x415e,3},{0x92d0,4}}, + {{0x30,64},{0x30,46}}, {{0xc37,3},{0x1866,3}}, {{0xc37,3},{0xd0b,3}}, {{0x449e,5},{0x1257,3}}, + {{0x278ad,3},{0x278e1,2}}, {{0x10f0,1},{0xb55,2}}, {{0xf85,4},{0x5478,2}}, {{0xfc6a,5},{0xc2e,2}}, + {{0x177c,4},{0x16af,3}}, {{0x27acd,2},{0x27897,1}}, {{0x511c,6},{0x222c,6}}, {{0x6957,5},{0x298a,2}}, + {{0x142e,1},{0xaea,1}}, {{0x27abb,2},{0x27897,1}}, {{0x69e6,8},{0x10c3,5}}, {{0x1084,3},{0x4459,3}}, + {{0x1084,3},{0x3041,2}}, {{0x16ac,5},{0xec1e,6}}, {{0x522d,8},{0x7140,4}}, {{0x415c,9},{0xc20,5}}, + {{0x287e5,4},{0x1dec4,2}}, {{0x178c,3},{0x1a,3}}, {{0x16fc,4},{0xb82,2}}, {{0x2878d,4},{0x1b25d,2}}, + {{0xd04c,5},{0x11bd5,5}}, {{0x2798,2},{0xd57,2}}, {{0xb81,4},{0x2b,1}}, {{0x10ef,1},{0x1701,3}}, + {{0xbb5,1},{0x411c,4}}, {{0xba5,4},{0x3203,3}}, {{0x4978,4},{0x2b,3}}, {{0x122c,10},{0xb52,6}}, + {{0x261f,7},{0x2626,8}}, {{0x2d,1},{0x1cef,3}}, {{0xe006,5},{0xc4d,2}}, {{0x10fb,3},{0xb47,2}}, + {{0x98c2,6},{0x258e,6}}, {{0x2430,9},{0xb52,5}}, {{0x15c61,3},{0x28,1}}, {{0x271e,3},{0xb9a,6}}, + {{0x6d81,3},{0x21e8b,3}}, {{0x24300,3},{0x28,1}}, {{0xc67,2},{0x202c,5}}, {{0x2451f,2},{0x6fac,2}}, + {{0x1a3a,6},{0x12ff,2}}, {{0x1a10,2},{0xc55,2}}, {{0xaa98,2},{0x10f0,1}}, {{0x3f7e,7},{0xae7,2}}, + {{0xab9a,3},{0x5277,2}}, {{0x6957,7},{0x2b,3}}, {{0x1b,1},{0xb7a,5}}, {{0xb7f,6},{0xb85,2}}, + {{0xeec,7},{0x1ed3,4}}, {{0x24b7,6},{0xb8f,2}}, {{0x1700,4},{0xae6,2}}, {{0x13bc,7},{0x1498,3}}, + {{0x30,2},{0x2b88a,4}}, {{0x3296,9},{0x18d8,3}}, {{0x80aa,7},{0xc32,5}}, {{0x6d81,3},{0x4f65,3}}, + {{0xbb10,5},{0xbb15,3}}, {{0x4108,2},{0xe7b,3}}, {{0xc13,4},{0xb86,3}}, {{0x10f3,1},{0x2b,1}}, + {{0x30,2},{0x2acaf,4}}, {{0xceb,7},{0x1d,1}}, {{0x1a,2},{0x12ff,2}}, {{0xc60,3},{0xaf1,2}}, + {{0x1413e,7},{0xb65,2}}, {{0x1107c,4},{0xcf0,2}}, {{0x2c106,3},{0x24,1}}, {{0x377c,4},{0x10b3,4}}, + {{0x1c,1},{0xde9,1}}, {{0x5324,5},{0x12a5,7}}, {{0xceb,3},{0xdf2,3}}, {{0xeb1,2},{0x1d,1}}, + {{0x1e85f,5},{0xf60,3}}, {{0x619f,8},{0x35d7,5}}, {{0x16005,7},{0xc39,2}}, {{0x10f3,1},{0xb70,2}}, + {{0x109a6,5},{0x2182,5}}, {{0x1058,4},{0x1f13,4}}, {{0xe64,5},{0x2d,1}}, {{0xc1e,2},{0xb7a,5}}, + {{0x1b27d,4},{0xee4,4}}, {{0x3c28,9},{0xb63,2}}, {{0x12ac,5},{0xb76,4}}, {{0xbb5,1},{0xae6,2}}, + {{0xaee9,2},{0xbeb,1}}, {{0x1a11,2},{0xcad1,5}}, {{0x2d,1},{0x1150,2}}, {{0x10f0,1},{0xe7b,3}}, + {{0x2912,4},{0xd1b,1}}, {{0x6e10,4},{0xa5dd,5}}, {{0x3234,3},{0x1a10,2}}, {{0x1faf1,5},{0x2202,3}}, + {{0xd51,2},{0x11b8,4}}, {{0x177c,3},{0x439a,3}}, {{0xeada,7},{0x10dc,2}}, {{0xe64,4},{0x8ec8,4}}, + {{0xae0,1},{0xc55,2}}, {{0x164c,7},{0xff7,4}}, {{0x17be,2},{0x277c,6}}, {{0x415c,5},{0x4e70,4}}, + {{0x2c542,4},{0x157f2,2}}, {{0x5442,4},{0xb70,2}}, {{0xcd8c,5},{0xaf1,1}}, {{0x112f2,7},{0x1a,2}}, + {{0xf96,4},{0xb2c,2}}, {{0xdd04,7},{0x1514,4}}, {{0x10f0,1},{0x6ac5,1}}, {{0xae0,1},{0x360f,2}}, + {{0x3c1a,9},{0x2b,3}}, {{0xec03,5},{0xec08,6}}, {{0x18a75,6},{0xc8e,3}}, {{0x441c,3},{0x113a8,4}}, + {{0x969,2},{0x1b205,2}}, {{0x3a06,7},{0x1260,4}}, {{0x5483,4},{0x12368,6}}, {{0xd41,3},{0x1934,4}}, + {{0xc25,4},{0xe46,8}}, {{0xcf6,3},{0xcf9,4}}, {{0x14e7e,4},{0xed0,3}}, {{0x30,2},{0x1b873,4}}, + {{0xfccd,5},{0x2bfc,2}}, {{0x13612,5},{0x5d97,5}}, {{0x1e9ff,4},{0xb65,2}}, {{0x2eb4,9},{0x530c,3}}, + {{0x80c2,6},{0x28,1}}, {{0x290e,4},{0x2b,3}}, {{0x8de2,7},{0x12d7,5}}, {{0xae0,1},{0xd7a,3}}, + {{0x3544,10},{0x1498,4}}, {{0x178c,3},{0x12e94,5}}, {{0xdf5,4},{0xb63,2}}, {{0x7aaa,8},{0x2d44,4}}, + {{0x1fbc,10},{0xff7,5}}, {{0xb92,5},{0xb78,2}}, {{0x1a86d,3},{0xc8f,2}}, {{0xca3,5},{0xc63,3}}, + {{0x14780,4},{0xaf2,1}}, {{0xbe7,2},{0x20dd,6}}, {{0x10f7,1},{0x1b4b,3}}, {{0x142c,3},{0xb74,2}}, + {{0xf95b,3},{0x2282,6}}, {{0x43a2,3},{0xd57,5}}, {{0x2868,4},{0x12b26,4}}, {{0x2a948,1},{0x2aea3,2}}, + {{0x4e85,5},{0xcef3,4}}, {{0x2a715,4},{0x1b6ab,1}}, {{0xeb3,3},{0xd1b,1}}, {{0x423c,3},{0xb8f,2}}, + {{0xca5,2},{0xbd4,2}}, {{0x1a28c,3},{0x10ed,2}}, {{0x3234,4},{0xbbf,2}}, {{0x1f3e9,4},{0x43e3,1}}, + {{0xd1b,1},{0xae2,1}}, {{0x278a9,1},{0x278a9,2}}, {{0x1d315,6},{0xbc1,2}}, {{0x35d0,8},{0x25c2,3}}, + {{0x1b8a9,10},{0x1b8a5,4}}, {{0xc13,4},{0x45e7,4}}, {{0x1040,5},{0xb63,2}}, {{0xaca2,3},{0xd674,3}}, + {{0x92b6,5},{0x15b4,7}}, {{0xaf1,1},{0x1704,3}}, {{0xee1,3},{0x28,1}}, {{0x290c,2},{0xa176,4}}, + {{0xeb9,5},{0xc78,3}}, {{0x3234,3},{0x28cf,3}}, {{0x40ea,5},{0x2b8d,9}}, {{0xa9f6,8},{0xb2e,2}}, + {{0xbd4,2},{0xaf2,1}}, {{0x2c75e,4},{0x70a2,2}}, {{0xbed,2},{0x2bfd,2}}, {{0xcc7,3},{0x2d,1}}, + {{0x1b4e3,1},{0x286a6,2}}, {{0x40f8,5},{0x10dc,2}}, {{0x1b4f,3},{0x2b,1}}, {{0x1d82,11},{0x1d8d,4}}, + {{0x423e,1},{0x5479,6}}, {{0xddc,4},{0x1be11,4}}, {{0x10f0,1},{0xbd6,2}}, {{0xe42,5},{0xbc5,3}}, + {{0xd15,5},{0x103a,3}}, {{0x11946,5},{0x5f01,4}}, {{0x150e2,3},{0x150e5,5}}, {{0x1ed69,3},{0x1aaed,1}}, + {{0xb6c,3},{0x1257,2}}, {{0x2a8c,9},{0x2a95,5}}, {{0x6d8e,3},{0x6b22,3}}, {{0x128aa,7},{0x10dc,2}}, + {{0x6e10,4},{0xb75,2}}, {{0x2944,4},{0x10dc,2}}, {{0xd51,2},{0xc67,2}}, {{0x106f2,7},{0x1d,1}}, + {{0x1cbf,5},{0x2b,1}}, {{0xfcd8,8},{0x25c2,3}}, {{0x17159,4},{0xf10,3}}, {{0x1a4b1,4},{0xca1,2}}, + {{0x2793d,4},{0x27a55,2}}, {{0xbde,3},{0x4b0a,4}}, {{0x6ac5,1},{0xd0b,3}}, {{0xde9,1},{0xb2c,2}}, + {{0x27aeb,2},{0x278d6,1}}, {{0xf9b1,4},{0xae7,1}}, {{0x24531,4},{0x6fac,2}}, {{0x26c4,3},{0x10d89,4}}, + {{0x113f,2},{0x10c4,4}}, {{0x14094,8},{0xb2c,2}}, {{0x159c8,1},{0x2445e,1}}, {{0x20,3},{0xb79,2}}, + {{0x112a,3},{0x734,1}}, {{0x10fb,3},{0x59f5,3}}, {{0x181c,4},{0xae0,1}}, {{0xbde,4},{0x1f,2}}, + {{0x6d81,5},{0xf896,6}}, {{0x1a,1},{0x142e,1}}, {{0xab9a,3},{0x107d,4}}, {{0xc67,2},{0xc34,2}}, + {{0x924,3},{0x1b6ab,1}}, {{0xceb,3},{0xb7c,2}}, {{0x285b,2},{0xca7,2}}, {{0x145b2,6},{0xc63,3}}, + {{0x278a9,1},{0x27897,2}}, {{0x10c8,4},{0xdac,2}}, {{0x10f7,1},{0xb65,2}}, {{0xdba,4},{0xb99,3}}, + {{0xd0d,2},{0x1930,3}}, {{0xaf3,4},{0x70d2,2}}, {{0x10ec,1},{0xc77,2}}, {{0x423c,3},{0xbe4,1}}, + {{0x10d48,4},{0x84f5,5}}, {{0xbde,3},{0x5aab,3}}, {{0x122c,4},{0x8a49,3}}, {{0xac2a,8},{0x1dd8,4}}, + {{0x6f74,4},{0xff22,2}}, {{0xcbd,3},{0x1a,4}}, {{0x152a4,4},{0x152a8,4}}, {{0x47de,6},{0x47f1,7}}, + {{0x14fc,4},{0xd17,3}}, {{0x17fc,5},{0x3cb9,4}}, {{0xcfd,5},{0xb75,3}}, {{0x762a,4},{0x1b4b,3}}, + {{0xcb8,3},{0xb71,2}}, {{0x10ca,1},{0x16821,4}}, {{0xca7,3},{0x3009,8}}, {{0x2c4dc,4},{0x157a4,2}}, + {{0x1b0db,7},{0xae7,2}}, {{0x143c,5},{0xf5e,3}}, {{0x2810,4},{0x330f,5}}, {{0x2b,2},{0x2e92,6}}, + {{0x3ed6,5},{0xed68,6}}, {{0xc8d4,4},{0x2279,4}}, {{0x19,1},{0x948,1}}, {{0x2c79a,4},{0x159cb,2}}, + {{0x2c3aa,4},{0xa4f,2}}, {{0xb92,4},{0x107c8,6}}, {{0x86da,5},{0x3290,5}}, {{0x151f,3},{0xc63,3}}, + {{0xd742,8},{0xc3e,3}}, {{0x474f,6},{0x222c,5}}, {{0xbc1,2},{0x288f,5}}, {{0xc3a,3},{0x2d,1}}, + {{0x24711,4},{0x159cb,2}}, {{0x2793d,4},{0x27a4f,2}}, {{0x2868,4},{0x204d7,4}}, {{0x10fb,3},{0x2f9b,3}}, + {{0x11dc,8},{0x11e4,8}}, {{0xb65,2},{0x27,1}}, {{0x1e27,6},{0x1058,4}}, {{0x3678,5},{0xfdf,2}}, + {{0x27a07,2},{0x278dc,1}}, {{0xc49,3},{0x41ef,2}}, {{0xcd9,3},{0xdac,2}}, {{0x122c,4},{0xb63,2}}, + {{0xd65,8},{0x108e,7}}, {{0xa252,5},{0x65ff,4}}, {{0x19a4,6},{0x10dc,2}}, {{0x1127a,7},{0x7297,3}}, + {{0x2b5e,9},{0xb63,2}}, {{0x3db0,5},{0x1e5fc,3}}, {{0xf537,3},{0x5396,3}}, {{0x5324,5},{0xbdf7,5}}, + {{0x10c8,4},{0xe6aa,5}}, {{0xa7da,3},{0xc1c,2}}, {{0xcfe9,6},{0xb76,4}}, {{0x178c,3},{0x1c1d9,4}}, + {{0xc49,3},{0x5203,3}}, {{0x22ffb,5},{0x1878,1}}, {{0xed65,8},{0x17de,2}}, {{0x2d,1},{0xb64,2}}, + {{0x32c0,6},{0x21,1}}, {{0x178c,3},{0xbed,2}}, {{0x19a98,6},{0x2b,3}}, {{0x27aeb,2},{0x1b6ab,1}}, + {{0xf2c2,5},{0x1466b,5}}, {{0x20,3},{0x2282,6}}, {{0x705e,4},{0xb8f,2}}, {{0xeb2,1},{0x2045,3}}, + {{0xcde,3},{0xcf0,3}}, {{0x5442,4},{0xcf0,2}}, {{0xff20,4},{0xff20,4}}, {{0x6d8e,3},{0x1a5c,3}}, + {{0xf52,4},{0x7047,5}}, {{0xaa98,2},{0x1878,1}}, {{0x422e,3},{0x250f6,2}}, {{0x73e1,3},{0x14a8,4}}, + {{0x423e,1},{0xb82,2}}, {{0x25207,2},{0x734,1}}, {{0x45fd,6},{0x12f0,4}}, {{0xaec,2},{0x46e4,3}}, + {{0xba55,7},{0xf6a,3}}, {{0x10ef,1},{0xcb8,2}}, {{0x10ef,1},{0xf8cf,2}}, {{0x6860,5},{0x1931,6}}, + {{0x20b37,6},{0x1a2e,3}}, {{0x5317,7},{0xd7f,3}}, {{0x174e,3},{0xc6a9,3}}, {{0x2a715,4},{0x278d6,1}}, + {{0x2daa,5},{0x4c75,8}}, {{0xbe7,1},{0xb8f,2}}, {{0x27af7,2},{0x278a9,1}}, {{0x18a7,3},{0xe72,3}}, + {{0x9a9,1},{0x24460,3}}, {{0x515d,6},{0xcab1,5}}, {{0x10fa,1},{0xa7d8,2}}, {{0xa65a,7},{0xd60,5}}, + {{0x1cbf,4},{0xc1e,2}}, {{0xd11d,5},{0x4031,3}}, {{0x6ac5,1},{0x1150,2}}, {{0x6c97,5},{0x2b,1}}, + {{0x30,112},{0x30,10}}, {{0x177c,3},{0x27b6,1}}, {{0xb78,2},{0xbed,4}}, {{0x1b203,4},{0x70ac,4}}, + {{0x1434,3},{0x25df,4}}, {{0xd7dc,6},{0x1668,4}}, {{0xb4bf,5},{0x10dc,2}}, {{0x4290,4},{0x14d4,3}}, + {{0x2796,3},{0xaea,1}}, {{0x28e54,3},{0x2446c,1}}, {{0x2a948,2},{0x2b7e1,2}}, {{0x6192,11},{0xb2c,2}}, + {{0x27acd,2},{0x116d,1}}, {{0x6e85,10},{0x2b,3}}, {{0x440f,2},{0xd5c,1}}, {{0xb7d,1},{0xb7d,1}}, + {{0xbd1,2},{0x135f,3}}, {{0x30,112},{0x30,4}}, {{0x271e,3},{0x4189,3}}, {{0x278a3,2},{0x1b6ab,1}}, + {{0x10f8,2},{0xbeb,1}}, {{0x1cce,6},{0xae6,3}}, {{0x139b4,8},{0xb65,2}}, {{0x21230,5},{0x1d,1}}, + {{0xbec,3},{0x37cd,5}}, {{0xb9c,2},{0x10dc,2}}, {{0x278a7,3},{0x1173,2}}, {{0x1051,4},{0x5277,2}}, + {{0x8abe,5},{0xa619,5}}, {{0x10ca,1},{0xae7,1}}, {{0x1c,1},{0x1f13,4}}, {{0xb8f,2},{0x1930,3}}, + {{0x2b,1},{0xca7,3}}, {{0x14166,6},{0x11e4,4}}, {{0x2efa,9},{0x2b,3}}, {{0x508d,7},{0xe4d,6}}, + {{0x2a969,4},{0x2446c,1}}, {{0x14bb4,2},{0xf5f5,2}}, {{0x1710f,6},{0xae7,1}}, {{0xd5ab,5},{0xaf1,2}}, + {{0x286a6,2},{0x2869b,2}}, {{0xbd4,2},{0x7526,5}}, {{0xc13,4},{0x9071,5}}, {{0xc67,2},{0xcb8,2}}, + {{0xaa94,3},{0x1abd7,2}}, {{0x1f,1},{0x1100b,3}}, {{0x67aa,6},{0xa5dd,5}}, {{0x70c6,4},{0xc601,2}}, + {{0xca7,2},{0x21,1}}, {{0xeada,5},{0xde9,1}}, {{0xc25e,5},{0xae7,1}}, {{0x8afa,5},{0x4d97,2}}, + {{0x6e5e,5},{0xe499,6}}, {{0xbb4,2},{0xaba2,4}}, {{0x244ad,2},{0x96b,2}}, {{0x5f90,3},{0xc8a3,3}}, + {{0x28,2},{0xb7d,1}}, {{0x1cce,6},{0x2fc4,8}}, {{0x28e7a,2},{0x1b4e3,1}}, {{0xf63,5},{0xd7a,3}}, + {{0x10f3,1},{0x1099,3}}, {{0x15a23,5},{0xae7,1}}, {{0x1d967,5},{0x12be,3}}, {{0x244c5,4},{0x70a2,2}}, + {{0x5324,5},{0x103a,3}}, {{0x1b721,6},{0x1b727,8}}, {{0x2920,4},{0x9718,6}}, {{0x256b,4},{0x13dd2,5}}, + {{0x10c8,3},{0xbeb,1}}, {{0x10f7,1},{0x5411,4}}, {{0xfda,7},{0x12be,3}}, {{0x3544,10},{0xb65,2}}, + {{0x2445c,3},{0x25201,2}}, {{0x1d,1},{0xbd1,2}}, {{0x1fbc,10},{0xb52,5}}, {{0xb7f,3},{0x92c9,4}}, + {{0xe011,5},{0xa60f,3}}, {{0xb72,2},{0xae7,1}}, {{0x271e,3},{0xeb1,2}}, {{0x145f8,5},{0xb77,3}}, + {{0xb7f,3},{0x1a5c,3}}, {{0x1098,3},{0xc3e,2}}, {{0xd54,1},{0xc77,2}}, {{0x1bf6,4},{0x10dc,2}}, + {{0xc37,3},{0x1961,3}}, {{0xd91,2},{0x120d4,3}}, {{0x5476,6},{0x1bda,4}}, {{0x22f5,6},{0xc25a,4}}, + {{0x1171,2},{0x116d,1}}, {{0xcd9,3},{0xae7,2}}, {{0xae7,1},{0xdac,3}}, {{0xf6e4,5},{0x5f8f,3}}, + {{0xd41,4},{0xe695,4}}, {{0xab9c,1},{0xd54,1}}, {{0xae2,1},{0x40b8,2}}, {{0xba5,5},{0x1402,3}}, + {{0x924,1},{0x27a2b,2}}, {{0x5136,6},{0x28,1}}, {{0xb2f,1},{0x27,1}}, {{0x2793d,4},{0x27a6d,2}}, + {{0x1ed51,3},{0x28e8e,2}}, {{0x1daf,4},{0x2b,1}}, {{0x2a715,4},{0x278af,1}}, {{0xbe0,1},{0x28,1}}, + {{0x423e,1},{0xadf,2}}, {{0xf9f3,8},{0xae7,1}}, {{0xea4b,6},{0xaea,2}}, {{0xaa98,2},{0x15a62,5}}, + {{0x1773,3},{0xb2e,2}}, {{0x10ec,1},{0xb70,2}}, {{0x70c6,4},{0x1019c,2}}, {{0x30,64},{0x30,44}}, + {{0x229b,9},{0xae7,1}}, {{0x15ab8,3},{0x10ec,1}}, {{0x46f4,6},{0x1b80,4}}, {{0x5d5b,5},{0x2c38,4}}, + {{0xbd6,2},{0xc67,2}}, {{0x5317,5},{0x2db1,3}}, {{0xb92,5},{0x880b,7}}, {{0x944e,6},{0x2b83,5}}, + {{0x34c6,9},{0xb52,5}}, {{0x9d5a,9},{0x1489,3}}, {{0x178c,3},{0xb63,2}}, {{0xff20,4},{0x10168,4}}, + {{0x10fb,3},{0xbb2a,3}}, {{0x2c602,4},{0x1cf1d,2}}, {{0x11252,7},{0xc34,3}}, {{0x804,2},{0x1b887,2}}, + {{0xfbaf,5},{0xc67,2}}, {{0xc89,3},{0xd0d,2}}, {{0x28da,1},{0x4415,2}}, {{0x7426,8},{0xae7,1}}, + {{0x284e,3},{0x2851,8}}, {{0x11ef,2},{0xeb2,1}}, {{0x2451f,2},{0xc601,2}}, {{0x1459e,3},{0x16f8,3}}, + {{0x2878d,4},{0x6fac,2}}, {{0x1f,1},{0x4b0a,4}}, {{0x1c5a5,7},{0xae7,1}}, {{0xfefe,2},{0x1015e,2}}, + {{0x4bfb,6},{0xff7,5}}, {{0xb66,2},{0x4903,5}}, {{0x6d81,3},{0x92e9,4}}, {{0x4c15,5},{0xbfe6,5}}, + {{0x2052,8},{0xd1a,7}}, {{0x8962,6},{0xf10,3}}, {{0x10ca,1},{0x1b5a,5}}, {{0x845e,6},{0x2279,4}}, + {{0xbe0,1},{0xa2c1,4}}, {{0xbcb,6},{0xbd6,8}}, {{0x237cd,4},{0x237d1,3}}, {{0x1e065,5},{0x2b,3}}, + {{0x1a4ce,4},{0x2b,3}}, {{0x7162,4},{0x15cbb,5}}, {{0x55d5,8},{0xff7,5}}, {{0x3fc4,11},{0x1257,3}}, + {{0x193c6,5},{0x1a11,2}}, {{0x167c,5},{0xc55,2}}, {{0x3e04,5},{0x36dd,3}}, {{0x24531,4},{0xc601,2}}, + {{0x56b2,8},{0x1260,4}}, {{0xb8f,2},{0x103a,3}}, {{0xa7d1,2},{0x10ec,1}}, {{0x17fe,3},{0x1045,3}}, + {{0x7222,7},{0xc32,5}}, {{0x2e44,5},{0xc8e,3}}, {{0x1e0cd,5},{0x2195,3}}, {{0x2c79a,4},{0xff02,2}}, + {{0xbe4,1},{0x1a1f7,2}}, {{0x1b75,7},{0xfe5,3}}, {{0xfbaf,5},{0xb8f,2}}, {{0x143e,3},{0x2c0a,3}}, + {{0x41be,3},{0x10f3,1}}, {{0xae0,1},{0xae6,2}}, {{0x415c,5},{0xcbf,4}}, {{0x26835,4},{0x2843,2}}, + {{0x554f,2},{0x2b,2}}, {{0xd5c,1},{0x152c4,2}}, {{0x29da,3},{0x2db1,3}}, {{0x27ac1,2},{0x278d6,1}}, + {{0xbde,3},{0x69f7,3}}, {{0x18a5,8},{0xd1a,7}}, {{0x287e0,4},{0x2b,1}}, {{0x10c62,6},{0x14a8,4}}, + {{0x10ea,3},{0xbd6,2}}, {{0x1ed51,3},{0x1b4e3,1}}, {{0x10ec,1},{0x9001,4}}, {{0x1c56,12},{0xc63,3}}, + {{0x7b76,9},{0x2b,3}}, {{0x10ef,1},{0x1f3ed,3}}, {{0xaea,1},{0xb52,5}}, {{0x10ca,1},{0x443e,2}}, + {{0x1ab2,4},{0xae2,1}}, {{0xb52,2},{0x1693,3}}, {{0xadf,2},{0x11ef,2}}, {{0x27b4,3},{0x443d,3}}, + {{0x10f7,1},{0x443e,2}}, {{0xc39,2},{0x1370,3}}, {{0x122c,6},{0x1357,5}}, {{0xbe0,1},{0x5277,2}}, + {{0x180c,4},{0x1372,3}}, {{0x244cb,4},{0x244c7,2}}, {{0x27a8b,2},{0x116d,1}}, {{0x24a41,2},{0x24468,2}}, + {{0x70dc,4},{0x96b,2}}, {{0x43e3,1},{0x1f2c5,2}}, {{0x16961,6},{0xb78,2}}, {{0xf63c,2},{0xaf1,1}}, + {{0x1a,2},{0xb65,2}}, {{0x27ac1,2},{0x1b6ab,1}}, {{0x142c,3},{0x25db8,3}}, {{0x6d8e,3},{0x5a50,6}}, + {{0x2c13a,3},{0x2445f,1}}, {{0x152c4,3},{0xf82b,3}}, {{0x12a62,7},{0xb2e,2}}, {{0x14954,5},{0xec6d,3}}, + {{0xae9,2},{0xce8,3}}, {{0x1710f,6},{0x10dc,2}}, {{0x259a,6},{0x1498,4}}, {{0x41ef,2},{0x1e5fc,3}}, + {{0xaca2,3},{0x2045,3}}, {{0xf6e4,5},{0xdfa,3}}, {{0xb2c,3},{0xb85,2}}, {{0x8d52,7},{0x4df1,5}}, + {{0x25002,2},{0x1878,1}}, {{0xcd5,2},{0x28,1}}, {{0x1a0ad,6},{0x674c,3}}, {{0xab52,4},{0xae2,1}}, + {{0x8dee,6},{0x8df4,6}}, {{0x10f0,1},{0xb63,2}}, {{0x27b6,1},{0xcdf,3}}, {{0xb1ff,6},{0xca7,3}}, + {{0x1b6dd,4},{0x2aa3f,4}}, {{0xb44,3},{0x5575,4}}, {{0xc30,2},{0xb2c,2}}, {{0xcab,3},{0xb55,2}}, + {{0xb2f,1},{0x1d448,5}}, {{0x181c,3},{0x27886,3}}, {{0x11ef,2},{0x2195,3}}, {{0x1e1df,7},{0xae7,1}}, + {{0xb2c,2},{0xc9e,5}}, {{0x17ac,3},{0x132f,3}}, {{0x12ae,3},{0xae7,1}}, {{0x162c,6},{0x5bc1,5}}, + {{0xae5,1},{0xd0b,3}}, {{0x10f3,1},{0xbed,2}}, {{0x1035,5},{0x296f,5}}, {{0xd57f,7},{0x1c25,4}}, + {{0xd41,4},{0x7a06,5}}, {{0xbe0,1},{0x28,2}}, {{0x6d9b,5},{0x18d8,3}}, {{0x422e,3},{0x10cd4,5}}, + {{0x26a6,8},{0x2b,3}}, {{0x35fa,10},{0xb2c,4}}, {{0xb12e,3},{0xb70,2}}, {{0xceb,3},{0xaad1,3}}, + {{0xc5ff,4},{0xc67,2}}, {{0xae7,1},{0xc4d,2}}, {{0x41be,3},{0x10d2e,4}}, {{0xad62,4},{0xf60,3}}, + {{0xceb,3},{0x116fe,4}}, {{0xb8b,2},{0x5875,4}}, {{0xbb5,1},{0xf38f,3}}, {{0x1a,1},{0x2de9,7}}, + {{0xba5,5},{0xb82,2}}, {{0x4bfb,6},{0x715a,3}}, {{0x19b3,4},{0xc60,5}}, {{0xd57,2},{0xca7,3}}, + {{0xa9f6,4},{0x1a11d,5}}, {{0x278af,1},{0x1b6ab,2}}, {{0x4186,4},{0x2bfc,2}}, {{0x762a,5},{0xb98,2}}, + {{0x22e65,4},{0x386a,3}}, {{0x10c8,4},{0x10dc,2}}, {{0x278b3,4},{0x27897,1}}, {{0x2796,3},{0xb70,2}}, + {{0x278ad,3},{0x278db,2}}, {{0x265b,4},{0x8099,4}}, {{0x27b4,3},{0xb4da,5}}, {{0x8a49,2},{0xeb2,1}}, + {{0x10f7,1},{0x1257,2}}, {{0x1abc4,3},{0x67a6,3}}, {{0x422e,3},{0xd0c8,4}}, {{0x110fe,7},{0x12ff,3}}, + {{0xb52,2},{0x79f9,4}}, {{0x13cc,9},{0x103b,5}}, {{0x280e,6},{0xc67,2}}, {{0x1ac1,13},{0xfe5,2}}, + {{0xb82,2},{0xb48,2}}, {{0x10f2,1},{0x2b,1}}, {{0xcce,3},{0x2b,1}}, {{0x9b1a,5},{0xe386,6}}, + {{0x5671,5},{0xce8,3}}, {{0xfd25,5},{0x15581,5}}, {{0xb30,2},{0x432,1}}, {{0x3f0e,8},{0xfe5,6}}, + {{0x1b,1},{0x22a3,2}}, {{0x61c6,6},{0x2d44,4}}, {{0xe75,5},{0xb65,2}}, {{0x26f1,4},{0x174e,3}}, + {{0x244b9,2},{0x70a6,2}}, {{0x30,112},{0x30,2}}, {{0x6cbe,5},{0xb2e,2}}, {{0xb855,5},{0x17de,2}}, + {{0x2a715,4},{0x116c,1}}, {{0x67aa,6},{0x67b0,7}}, {{0xaec,2},{0x1b,1}}, {{0x27b03,2},{0x116c,1}}, + {{0x24519,4},{0x806,2}}, {{0x9a9,3},{0x27cc5,2}}, {{0xb795,7},{0xc3e,2}}, {{0x2d,1},{0x1156,6}}, + {{0x8c45,4},{0xb60f,4}}, {{0x278af,1},{0x278c9,2}}, {{0x10dc,2},{0x2b,1}}, {{0xeb1,2},{0xae7,1}}, + {{0xae0,1},{0x675f,6}}, {{0x27ab5,2},{0x116d,1}}, {{0x159c,4},{0xb78,2}}, {{0xd54,1},{0x6ac5,1}}, + {{0x9a5a,7},{0xce8,3}}, {{0xb44,3},{0x1701,3}}, {{0xc30,2},{0xfe5,6}}, {{0xae0,1},{0xa24a,3}}, + {{0xa7b6,6},{0xae7,1}}, {{0xb65,2},{0x5cd6,3}}, {{0x30ba,5},{0x17476,4}}, {{0x70b0,4},{0x2ae5b,2}}, + {{0xfe71,6},{0x28,1}}, {{0xab9a,3},{0x2b,2}}, {{0xbe4,1},{0x2e55,3}}, {{0x24,1},{0x2446c,1}}, + {{0xd0f,4},{0x22e3,3}}, {{0xb63,2},{0x27,1}}, {{0x1a9d,3},{0xe72,3}}, {{0x10ec,1},{0x43e3,1}}, + {{0x924,1},{0x27897,2}}, {{0x10f1,2},{0x10f2,1}}, {{0xaf2,1},{0x15b5b,6}}, {{0xa7d1,2},{0x43e3,1}}, + {{0x17a74,8},{0xaf2,1}}, {{0x119c,12},{0xae7,1}}, {{0xa7d1,2},{0x24fca,3}}, {{0x6631,10},{0x1b08,3}}, + {{0x218d,5},{0x95d3,7}}, {{0x2c92,6},{0xb47,2}}, {{0x53e7,4},{0x177e8,4}}, {{0x298a,2},{0xb2f,1}}, + {{0x184f0,8},{0xae7,1}}, {{0xfdf,2},{0x2abe,5}}, {{0x14b6,2},{0xb2f,1}}, {{0xcd5,2},{0xdaf,2}}, + {{0x18d21,6},{0x101c,2}}, {{0x132a0,8},{0xb65,2}}, {{0x11d88,5},{0xeb3,3}}, {{0x4a75,6},{0x2d44,4}}, + {{0x540e,5},{0x1a11,2}}, {{0x177c,3},{0x43e3,1}}, {{0x415c,5},{0xaea,1}}, {{0xaaf2,6},{0x4524,4}}, + {{0x23f2a,5},{0x28,1}}, {{0xb66,2},{0xb2e,2}}, {{0x281d,5},{0x1b3e,3}}, {{0x10f3,1},{0x1f95d,4}}, + {{0x17fc,6},{0x9fa0,5}}, {{0x2c76,4},{0x10ab9,5}}, {{0x14fc8,5},{0xe4c5,3}}, {{0x7156,6},{0x715c,6}}, + {{0xcf3e,2},{0xb78,2}}, {{0x116d,2},{0x116e,1}}, {{0xb12e,3},{0x1d,1}}, {{0xc39,2},{0xe9b,3}}, + {{0x6f62,4},{0x157b6,2}}, {{0x6d8e,3},{0x16e15,4}}, {{0x6b1e,4},{0xc0c3,3}}, {{0xaca2,4},{0x90e6,8}}, + {{0x1016,4},{0x20c0,3}}, {{0x9226,10},{0xb2e,2}}, {{0x2793d,4},{0x27a7f,2}}, {{0xa612,6},{0x353d,5}}, + {{0x804,2},{0x15798,2}}, {{0xddd5,6},{0xd48,2}}, {{0x12864,5},{0x1362,3}}, {{0x76ba,10},{0xd0d,2}}, + {{0x10ea,3},{0xb72,3}}, {{0x117c,4},{0x117c,4}}, {{0xb8a8,8},{0xb65,2}}, {{0x2045,3},{0xb55,2}}, + {{0x7a6e,5},{0xb63,2}}, {{0x2324,4},{0x89b9,4}}, {{0x8e12,6},{0x372a,4}}, {{0xaab6,6},{0xb52,5}}, + {{0x179e4,6},{0x2195,3}}, {{0x2b325,2},{0x1b4e3,1}}, {{0xbde,3},{0xfd5f,8}}, {{0xa7f2,5},{0xb9d,3}}, + {{0x19939,7},{0x2b,2}}, {{0x9b1a,8},{0x9b22,4}}, {{0xe8d,3},{0x28,1}}, {{0xfe2,4},{0xede,3}}, + {{0x1b,1},{0x3f59,2}}, {{0x17ec,5},{0xae1b,7}}, {{0x4b0a,4},{0x25c2,3}}, {{0x6477,9},{0xbac,4}}, + {{0xb63,2},{0xc8e,3}}, {{0xaae8,2},{0x6ac5,1}}, {{0xeca,5},{0x583f,3}}, {{0x2793d,4},{0x27a5b,2}}, + {{0x1d98,3},{0x3e2a,4}}, {{0xc4c6,6},{0x35fd,3}}, {{0x4971,5},{0x50fd,5}}, {{0x14318,4},{0xdf0,2}}, + {{0x28f6,2},{0x1f,1}}, {{0xbb5,1},{0xb54,2}}, {{0xee81,7},{0x2b,3}}, {{0x2313,8},{0xd17,3}}, + {{0x2445f,1},{0x24a2f,2}}, {{0x12c56,7},{0xae7,1}}, {{0x14dc,5},{0x19d8,8}}, {{0xb2c,2},{0x4446,5}}, + {{0x27b95,4},{0x1b6ab,1}}, {{0xc13,4},{0x6597,6}}, {{0xb73,2},{0x4575,2}}, {{0x2abe,4},{0x11b8,4}}, + {{0xc2e,2},{0x1a,1}}, {{0xc52,2},{0xa022,5}}, {{0x41da,3},{0x28da,1}}, {{0x264c,4},{0xd51,2}}, + {{0x9fa0,4},{0xd1b,1}}, {{0xaec,2},{0x11e4,4}}, {{0x532,18},{0x532,16}}, {{0x5422,6},{0x10dc,2}}, + {{0x27aaf,2},{0x116e,1}}, {{0x7c2a,8},{0x3bc2,4}}, {{0x13bc,4},{0xc399,4}}, {{0x2920,4},{0x21cf,9}}, + {{0x10ec,1},{0xb4b,2}}, {{0x79ba,5},{0x1af8,5}}, {{0xef52,7},{0x23ce,4}}, {{0xa246,4},{0x151f,3}}, + {{0x5136,6},{0xb7a,5}}, {{0xceb,3},{0x47ad,5}}, {{0x2a715,4},{0x278a9,1}}, {{0xab9a,3},{0xbd6,2}}, + {{0xfd7d,5},{0xb4b,2}}, {{0x969,2},{0xfefe,2}}, {{0x25002,2},{0x43e3,1}}, {{0x3e04,5},{0x2a95,5}}, + {{0x160e,6},{0x1614,7}}, {{0x27b4,3},{0x283e,2}}, {{0x1257,3},{0x10dc,2}}, {{0x4d33,9},{0xae7,1}}, + {{0xb002,5},{0x33d3,5}}, {{0x27aa9,2},{0x278dc,1}}, {{0x6221,6},{0x2b,3}}, {{0xe6d,2},{0x5b22,5}}, + {{0xddc,4},{0xf02,3}}, {{0x432,16},{0x432,9}}, {{0x6d9b,5},{0xd57,2}}, {{0x10ea,3},{0x7a06,5}}, + {{0x1ab2,5},{0x3f48,5}}, {{0xae0,1},{0xb066,2}}, {{0x24192,5},{0x12143,2}}, {{0xcd9,3},{0xbc1,2}}, + {{0x10ea,3},{0x4590,5}}, {{0xf65,3},{0x240c,6}}, {{0x10ec,1},{0x2b,1}}, {{0xb64,2},{0x7bfe,4}}, + {{0x2445f,1},{0xaad,6}}, {{0xfc9,6},{0xc720,5}}, {{0x3640,12},{0xb2e,2}}, {{0xaf0,2},{0xadf,2}}, + {{0x1e,1},{0x77c7,4}}, {{0x12d0a,5},{0x1362,3}}, {{0x1095,6},{0xdf2,3}}, {{0xaca2,3},{0x1a1f3,2}}, + {{0x10f0,1},{0x1d,1}}, {{0x2445e,1},{0x117c,1}}, {{0x27b6,1},{0x1b4b,3}}, {{0x27af7,2},{0x278af,1}}, + {{0x40ce,5},{0xb7d,1}}, {{0x1761,4},{0x11f2,3}}, {{0x2a715,4},{0x116d,1}}, {{0x1b6cb,1},{0x1ed58,1}}, + {{0x3e92,3},{0xae7,1}}, {{0x1b12c,6},{0x1b132,3}}, {{0x10f7,1},{0xc67,3}}, {{0x257a,4},{0xc67,2}}, + {{0x3e90,5},{0x1a,2}}, {{0xc4d,2},{0xb54,3}}, {{0xc51,3},{0xc57,3}}, {{0x8a49,2},{0xb78,2}}, + {{0xceb,3},{0x92ec,3}}, {{0x88ae,8},{0x88ce,4}}, {{0xfa40,5},{0xc89,2}}, {{0xc37,3},{0xdd3,3}}, + {{0x4443,9},{0x1278,4}}, {{0x15e1f,6},{0x1719,3}}, {{0x6d81,3},{0xaa9b,2}}, {{0x10c8,4},{0xd0b,4}}, + {{0x70c8,4},{0x70cc,4}}, {{0x18898,5},{0x13170,4}}, {{0x26f1,5},{0x23d9,3}}, {{0x1b695,2},{0xbeb,1}}, + {{0xbd62,6},{0x2b,3}}, {{0x1f,1},{0xb906,2}}, {{0xc89,2},{0x1cac,4}}, {{0x178c,3},{0xb85,2}}, + {{0x26c6,2},{0x20ed,3}}, {{0xb2c,2},{0x2b,2}}, {{0xb55,2},{0x103a,3}}, {{0x6d81,3},{0x14b6,2}}, + {{0x10f0,1},{0xc55,2}}, {{0x177c,3},{0x10f2,1}}, {{0x24a2d,2},{0x24a40,2}}, {{0xeee4,8},{0xaf2,1}}, + {{0xae5,1},{0x165ab,5}}, {{0x108e8,6},{0x8fe2,4}}, {{0xb78,2},{0xc34,2}}, {{0x3218,5},{0x7654,6}}, + {{0xe77,3},{0xae7,1}}, {{0x422e,3},{0x20,2}}, {{0xecf,4},{0x2b,2}}, {{0x251ea,2},{0x2446f,2}}, + {{0x278a3,2},{0x278d6,1}}, {{0x6d8e,3},{0x1ee0,3}}, {{0x178c,3},{0x2f5f,4}}, {{0x24a8,6},{0x43bd,4}}, + {{0x238b,9},{0xd7f,3}}, {{0xbe0,1},{0xb2e,2}}, {{0xc1c4,10},{0x1a,1}}, {{0x6e46,3},{0xaea,1}}, + {{0x6d81,3},{0xbb5,1}}, {{0xc39,2},{0xd51,2}}, {{0xae2,2},{0xd48,2}}, {{0xb2f,1},{0xbb5,1}}, + {{0x2331,11},{0x1719,3}}, {{0xceb,3},{0x6008,4}}, {{0x5949,6},{0xaf2,1}}, {{0xf96,4},{0x16eaf,3}}, + {{0xbb5,1},{0xcb8,3}}, {{0xc1c,2},{0xb55,2}}, {{0x1f,1},{0xb55,3}}, {{0xbe0,1},{0x1e822,5}}, + {{0x1cbf,5},{0x5078,8}}, {{0x1a1f4,2},{0x10f2,1}}, {{0xbd4c,5},{0x15b0,3}}, {{0x278a7,3},{0x278a9,2}}, + {{0xab9a,3},{0xcf3e,2}}, {{0x14940,6},{0x41ba,4}}, {{0x219c,4},{0xb8b,2}}, {{0x1e,1},{0x108b,3}}, + {{0x1b855,6},{0xfee4,4}}, {{0x6ac5,1},{0x208f7,3}}, {{0x9b92,7},{0xb63,2}}, {{0x19,1},{0x24462,1}}, + {{0x10f7,1},{0x2349,4}}, {{0x1d55,8},{0xbb4,4}}, {{0x27af1,2},{0x27897,1}}, {{0x17be,2},{0x1d783,4}}, + {{0x1736c,6},{0x10dc,2}}, {{0x106f2,7},{0x8773,3}}, {{0x39ce,9},{0xce8,3}}, {{0x9826,6},{0x11ef,3}}, + {{0xb2c,2},{0x109e8,4}}, {{0x2793d,4},{0x924,2}}, {{0x3242,5},{0x40b8,2}}, {{0xf0e,5},{0x1254,3}}, + {{0xc25,4},{0xc904,5}}, {{0x2742,3},{0xaf2,1}}, {{0x2a885,2},{0x948,1}}, {{0x53e0,6},{0xb2e,2}}, + {{0xcd9,3},{0x165b4,5}}, {{0x3626,4},{0x10dc,2}}, {{0x177c,3},{0x1150,2}}, {{0xaca2,3},{0x28fc9,2}}, + {{0xd65,3},{0xae2,1}}, {{0x1a0d,5},{0x789c,5}}, {{0x1b6dd,4},{0x1b6f3,4}}, {{0x710e,6},{0xd8d0,4}}, + {{0x142c,3},{0xc6a9,3}}, {{0x29cc,6},{0xbb4,4}}, {{0x8718,3},{0x1c2b0,2}}, {{0xbd6,2},{0xa7a5,5}}, + {{0x1ed49,3},{0x2445e,1}}, {{0xaf1,1},{0x173e,3}}, {{0x10f1,2},{0x10ef,1}}, {{0x27cca,4},{0x1b25d,2}}, + {{0x2a715,4},{0x27897,1}}, {{0x4998,7},{0xb996,4}}, {{0x9f52,8},{0xb54,4}}, {{0x1b,1},{0xae6,2}}, + {{0x414e,6},{0x1536,6}}, {{0x5734,7},{0xb7a,5}}, {{0x177c,3},{0xb55,2}}, {{0x276bd,2},{0x27b6,1}}, + {{0xbd0,3},{0xb2c,2}}, {{0x35d0,8},{0x11e6,6}}, {{0xb7f,3},{0xde1,2}}, {{0x1ab2,4},{0xbb0b,5}}, + {{0xc8a,2},{0x1d0e,2}}, {{0xa186,9},{0x1408,3}}, {{0x110a4,5},{0x1c25,4}}, {{0x1c74,11},{0x1408,3}}, + {{0xeca,5},{0x11c93,5}}, {{0xd54,2},{0xbb4,2}}, {{0xd41,4},{0xb8f,3}}, {{0x11004,7},{0x1100b,3}}, + {{0x13d6a,6},{0x227a,3}}, {{0x278a3,2},{0x278dc,1}}, {{0xceb,3},{0x6164,3}}, {{0x9a9,1},{0x948,2}}, + {{0xb8f,2},{0x129aa,4}}, {{0xd5c,1},{0x1f,1}}, {{0x28da,1},{0x1878,1}}, {{0xfef0,4},{0xfee4,8}}, + {{0xe64,4},{0xb6bf,5}}, {{0x135e,3},{0xb8f,2}}, {{0xd65,3},{0x1491,4}}, {{0xdba,6},{0x19f5,9}}, + {{0x257c,3},{0xd1b,1}}, {{0xd76,4},{0x1be11,4}}, {{0x27,1},{0x10f0,1}}, {{0x70dc,6},{0xae7,1}}, + {{0x430,3},{0x7c4,1}}, {{0x2d951,2},{0x6f90,2}}, {{0x10ea,3},{0xaf5d,2}}, {{0x10ea,3},{0x360f,2}}, + {{0xd8e,4},{0xb2e,2}}, {{0x4e92,8},{0x10dc,2}}, {{0x27,1},{0x10504,4}}, {{0x278b3,4},{0x278a9,1}}, + {{0x278a1,3},{0x1173,2}}, {{0xadd,5},{0xd256,4}}, {{0x10ea,3},{0x43e3,1}}, {{0x27ab5,2},{0x1b6ab,1}}, + {{0xf4df,3},{0x1fb7,5}}, {{0x14bc2,5},{0x1045,3}}, {{0x6c70,5},{0x51d7,8}}, {{0xeac6,4},{0xeaca,5}}, + {{0x2495d,8},{0xff00,4}}, {{0xd57,2},{0x7b65,5}}, {{0x12fc,4},{0xb47,2}}, {{0x3a84,8},{0xce8,3}}, + {{0x2b,2},{0x1440,4}}, {{0xf1f,7},{0x1140,3}}, {{0x6214,7},{0x621b,6}}, {{0xadd,5},{0x14b6,2}}, + {{0x2c5ae,4},{0x244c3,2}}, {{0x3a39,3},{0x10dc,2}}, {{0xa4c9,3},{0xb48,2}}, {{0x16ac,5},{0xae5,1}}, + {{0x4450,4},{0x6676,4}}, {{0x5df7,7},{0x5ba6,6}}, {{0x2c980,4},{0x2ae5b,2}}, {{0x27b6,1},{0xae2,1}}, + {{0x30,2},{0xd1a,2}}, {{0xe77,3},{0x3275,5}}, {{0x41da,3},{0xae2,1}}, {{0x264c,4},{0xdbf,3}}, + {{0x3639,6},{0xae7,1}}, {{0x6ac5,1},{0x19b8e,3}}, {{0x271e,3},{0xdef,3}}, {{0x14120,7},{0xc34,3}}, + {{0xaaf2,5},{0xbd4,2}}, {{0xcc7,3},{0x385b,4}}, {{0xcfd,5},{0xdd5,2}}, {{0xbd8,2},{0x1d,1}}, + {{0xaea,1},{0x1a9d,3}}, {{0x3234,3},{0x3f72,4}}, {{0x27cea,1},{0x24a30,2}}, {{0x6efa,9},{0xae7,1}}, + {{0x53f4,5},{0x4031,3}}, {{0x27d0c,5},{0x9c9,1}}, {{0x6b52,4},{0xf63c,2}}, {{0x2322,6},{0xee7,4}}, + {{0x27b6,1},{0x1614,7}}, {{0x2920,4},{0x1ad2,5}}, {{0x239c7,6},{0x2b,1}}, {{0x1835b,6},{0xbb1,3}}, + {{0xb4a,6},{0xc8e,3}}, {{0x11df,5},{0xae7,1}}, {{0x441c,3},{0xbf20,5}}, {{0xb6b9,5},{0x2b,1}}, + {{0xf28,3},{0xeb3,3}}, {{0xb63,3},{0xb69,3}}, {{0x2796,3},{0xbe7,1}}, {{0x4a68,5},{0x28,1}}, + {{0x319a,6},{0x4189,3}}, {{0x3624,6},{0xa45d,4}}, {{0x19405,6},{0x2b,3}}, {{0x9532,8},{0x5d64,4}}, + {{0x2844,3},{0xbeb,1}}, {{0x2331,11},{0xb63,2}}, {{0x4fbd,4},{0x28,1}}, {{0x10c8,3},{0xae9,4}}, + {{0xab9a,3},{0xb70,2}}, {{0x6d8e,3},{0x1015,5}}, {{0x24461,1},{0x27cf6,2}}, {{0x6cbe,4},{0x1d,1}}, + {{0x4bee,8},{0x1f13,4}}, {{0xae3,2},{0x1704,3}}, {{0x1cbf,5},{0xc165,5}}, {{0x278a3,2},{0x278af,1}}, + {{0xc37,3},{0xfb1,2}}, {{0xddc,4},{0x1a,2}}, {{0xcde,3},{0x1bc5,5}}, {{0x26d25,5},{0x1878,1}}, + {{0x10f0,1},{0xcce,3}}, {{0x5698,7},{0x569f,6}}, {{0xf3b4,6},{0x16f8,3}}, {{0xadd,5},{0xc63,3}}, + {{0xcc7,4},{0xbd6,8}}, {{0xb01a,4},{0x1b11e,5}}, {{0xcd2,6},{0x1081,3}}, {{0x13e28,6},{0xae7,1}}, + {{0x14fc,4},{0xb9c,2}}, {{0x41be,3},{0xdf9c,4}}, {{0x1f6a3,3},{0xa7d8,2}}, {{0x53e7,7},{0xfaf,3}}, + {{0x281d,6},{0x24bd,4}}, {{0xde9,1},{0xb2f,1}}, {{0x257a,4},{0x2b,1}}, {{0xcb8,3},{0x28,1}}, + {{0x17ec,7},{0x12d5,7}}, {{0x287e7,2},{0xfb8b,2}}, {{0x3c20,3},{0xaad4,6}}, {{0x4831,4},{0xd57,2}}, + {{0xc13,4},{0xb7d,2}}, {{0x141c,5},{0xb6f,2}}, {{0xf57b,3},{0xf01,4}}, {{0x1a10,2},{0xae7,1}}, + {{0xd7f,3},{0xaf1,2}}, {{0x278ad,3},{0x1b6b3,2}}, {{0x6ac5,1},{0x102f9,6}}, {{0x10d48,4},{0x2bfc,3}}, + {{0x8ffe,6},{0x10dc,2}}, {{0x10bea,7},{0x10dc,2}}, {{0xceb,4},{0x1839e,5}}, {{0xba5,5},{0x8e3b,7}}, + {{0x24531,4},{0x244c3,2}}, {{0xab9a,3},{0xbbf,2}}, {{0xb7d,1},{0xaf1,1}}, {{0x31e0,5},{0x1614,7}}, + {{0xab9c,1},{0x10ca,1}}, {{0x2aacb,2},{0x1b6f5,2}}, {{0xbcd5,5},{0xcb8,2}}, {{0xf77e,5},{0x1757,5}}, + {{0xb63,2},{0xce1,3}}, {{0x159c8,7},{0x159c8,1}}, {{0x3788,3},{0x38eb,3}}, {{0x1ca1,11},{0x1099,3}}, + {{0xb8a,2},{0x89f7,5}}, {{0xded,5},{0xb2e,2}}, {{0x6b52,4},{0x443e,2}}, {{0x10ec,1},{0xb8f,3}}, + {{0xebed,6},{0x5d97,5}}, {{0xbb5,1},{0x459e,4}}, {{0xae6,3},{0x1719,3}}, {{0xae2,2},{0x2b,3}}, + {{0x26f1,4},{0xd8f,3}}, {{0x12d00,6},{0x2b,3}}, {{0xbed,2},{0xb48,2}}, {{0x27ac1,2},{0x278dc,1}}, + {{0x1b,1},{0xb4b,2}}, {{0xad3e,7},{0x33d3,5}}, {{0x196f,3},{0x4905,4}}, {{0xb52,2},{0xe0a,5}}, + {{0xcd3,2},{0xaf49,4}}, {{0xa22e,4},{0xb4b,2}}, {{0x11a18,6},{0x2b,3}}, {{0x1773,3},{0x296f,5}}, + {{0x271e,3},{0xc77,2}}, {{0xaea,1},{0x2745,3}}, {{0xc49,3},{0xbd3,3}}, {{0x27a13,2},{0x27897,1}}, + {{0x238b,9},{0x2b,3}}, {{0x70b2,4},{0x70a8,4}}, {{0x381c,7},{0x5e73,5}}, {{0x1cec,5},{0xbb1,3}}, + {{0x27a01,2},{0x27897,1}}, {{0xa762,8},{0xae7,1}}, {{0xc86f,7},{0x25da,3}}, {{0xf02,3},{0xce8,3}}, + {{0xd57,2},{0xb8d,3}}, {{0x30,2},{0x1ed54,5}}, {{0xd14,4},{0x2b,3}}, {{0xd79a,6},{0x220f,5}}, + {{0x541b,7},{0x14a8,4}}, {{0x1eadf,5},{0xb63,2}}, {{0xaef0,2},{0x193a6,5}}, {{0xc25,5},{0x104f9,5}}, + {{0xbb2,2},{0xeb3,3}}, {{0x616b,7},{0x1377,5}}, {{0x27ac1,2},{0x116d,1}}, {{0x1f8f,8},{0xb2e,2}}, + {{0x10ec,1},{0xa24a,3}}, {{0x1040,6},{0xb51d,5}}, {{0x70b0,6},{0x1b727,8}}, {{0x134c,5},{0x32d5,4}}, + {{0xcf02,6},{0x1bdb,3}}, {{0x10ef,1},{0xee1,3}}, {{0x3c98,9},{0x253a,4}}, {{0x2df0,8},{0x253a,4}}, + {{0xd91,3},{0x79f9,4}}, {{0xb86,3},{0x13327,5}}, {{0x2474d,4},{0xff26,2}}, {{0x10ec,1},{0x120d3,4}}, + {{0x10fb,3},{0x42a3,3}}, {{0x14ee4,2},{0x14ef0,4}}, {{0xaa9b,2},{0x10fa,1}}, {{0xf212,3},{0x92e9,5}}, + {{0x5442,4},{0xeb2b,6}}, {{0x29da,3},{0x2585,4}}, {{0xbb1,3},{0x28,1}}, {{0x10b7c,7},{0xf60,3}}, + {{0x4728,5},{0x4b0a,4}}, {{0xab9a,3},{0x2a16,4}}, {{0xbde,3},{0xcf6,3}}, {{0x7ac2,9},{0xb2e,2}}, + {{0x1a197,6},{0x12f1,3}}, {{0x1d1b5,5},{0xb2c,2}}, {{0x5fe0,4},{0xb0d1,5}}, {{0x1d3bd,5},{0xb65,2}}, + {{0x6ac3,3},{0x1878,1}}, {{0x2d,1},{0x12ff,2}}, {{0xde4,2},{0xae0,1}}, {{0x441c,3},{0xbfc4,6}}, + {{0xaf2,1},{0xeb2,1}}, {{0x23138,2},{0xd0b,3}}, {{0x1ed58,1},{0x2445e,1}}, {{0x14e80,2},{0xec2,2}}, + {{0x70b0,4},{0x20b23,2}}, {{0xc2a,2},{0xeee,5}}, {{0x6ac5,1},{0x4284,2}}, {{0xbde,3},{0x20c52,3}}, + {{0x17bc,4},{0xe49,4}}, {{0x9136,6},{0x10dc,2}}, {{0xcf6,3},{0xae7,1}}, {{0x10ea,3},{0xdf7e,4}}, + {{0x27aaf,2},{0x27897,1}}, {{0xa4d,2},{0x6f64,2}}, {{0xb44,3},{0x67c0,3}}, {{0xb67,2},{0x1306c,4}}, + {{0x709c,4},{0x1b1cf,8}}, {{0x10f3,1},{0x10fa,1}}, {{0x600c,8},{0x2b,3}}, {{0x3a68,7},{0x1d98,3}}, + {{0x10ea,3},{0xb55,3}}, {{0x35c6,3},{0xb9d,3}}, {{0x1a1f1,4},{0x1f58d,2}}, {{0x6957,5},{0x1904,3}}, + {{0x14fc,8},{0x2200,5}}, {{0x278ad,3},{0x278ed,2}}, {{0x4f48,9},{0xb65,2}}, {{0x208e,5},{0xcdc,3}}, + {{0x1687,3},{0xb52,5}}, {{0x1ab2,4},{0xc8a,2}}, {{0xcc0,3},{0xb55,2}}, {{0xd76,7},{0x2a23,7}}, + {{0x18a5,5},{0x28,1}}, {{0x3234,5},{0xdfb,3}}, {{0x27cc5,2},{0x2445f,1}}, {{0x3242,5},{0x1bdb,3}}, + {{0x142c,3},{0x8afd,9}}, {{0x290c,2},{0x20c52,3}}, {{0x296ca,4},{0x10fa,1}}, {{0x164c,7},{0x665f,6}}, + {{0xfe38,4},{0x3f82,3}}, {{0xacbc,5},{0xb2c,2}}, {{0xb73,2},{0xb2e,2}}, {{0xbe7,1},{0x12d5d,7}}, + {{0xbb4,2},{0x139e,3}}, {{0xb79,2},{0x2b03,5}}, {{0xbd6,2},{0xfe5,2}}, {{0x41da,3},{0x20a1f,2}}, + {{0x27af1,2},{0x278af,1}}, {{0xc345,8},{0xd0d,2}}, {{0xbeb,1},{0x2e69,5}}, {{0x2793d,4},{0x116e,2}}, + {{0x7e91,4},{0x22e3,3}}, {{0x6742,6},{0x6748,3}}, {{0x6d8e,3},{0xbe4,1}}, {{0xddd5,5},{0xbcae,4}}, + {{0xaa98,2},{0x2848,2}}, {{0x1e45,3},{0x2b,1}}, {{0xd54,1},{0xb8c,2}}, {{0xd41,3},{0xb63,3}}, + {{0x116d,2},{0x278dc,1}}, {{0xae7,2},{0x28,2}}, {{0x24a40,3},{0x1b6cb,1}}, {{0x17ac,7},{0xd57,2}}, + {{0x27ce8,3},{0x117c,1}}, {{0x17ae,1},{0x17ae,1}}, {{0x27ab5,2},{0x27897,1}}, {{0x27abb,2},{0x278d6,1}}, + {{0x61c6,6},{0x4e32,5}}, {{0x8b06,6},{0xb52,6}}, {{0x28,2},{0x1710,6}}, {{0x51ec,6},{0x51f2,6}}, + {{0x219c,4},{0x5dba,5}}, {{0x5a19,5},{0xd7c0,6}}, {{0x132a0,8},{0x10dc,2}}, {{0x27b4,4},{0x13394,5}}, + {{0x14fc,5},{0x2076,5}}, {{0x271e,3},{0xae2,2}}, {{0xcf3e,2},{0xb8f,2}}, {{0xd41,4},{0x16a3d,5}}, + {{0x2df0,8},{0x251c,4}}, {{0x18d4e,7},{0xdf0,2}}, {{0x415e,3},{0x1bc5,5}}, {{0x428b,2},{0x10f7,1}}, + {{0x181c,3},{0x11ef,2}}, {{0x20bb,5},{0x70e2,3}}, {{0x2cdb2,4},{0x6f78,2}}, {{0x2474d,4},{0x70a6,2}}, + {{0x17ec,5},{0x1f,4}}, {{0x7a32,5},{0x12d7,5}}, {{0x1c,2},{0x2b,3}}, {{0x23159,5},{0xbd4,2}}, + {{0x27b95,4},{0x278d6,1}}, {{0x68ef,9},{0xae6,3}}, {{0x1a,2},{0xcb8,2}}, {{0x143e,3},{0x8ba7,6}}, + {{0x422e,3},{0xbeb,1}}, {{0xd5c,1},{0x4859,7}}, {{0x1084,3},{0xfdd,2}}, {{0x102f,6},{0xbc5,3}}, + {{0x41be,4},{0x855e,6}}, {{0x1487a,4},{0x7a5e,4}}, {{0xceb,3},{0x12dec,4}}, {{0xd65,3},{0xee1,3}}, + {{0x4c15,5},{0xc55,2}}, {{0xc30,2},{0xeb3,3}}, {{0x2904,3},{0x33d3,5}}, {{0xd41,3},{0x1498,4}}, + {{0x6d81,3},{0xbb4,2}}, {{0xbeb,1},{0x7047,5}}, {{0x1089,2},{0xfe5,2}}, {{0xb4bf,5},{0x2b,3}}, + {{0x2be6,4},{0x3a3b,3}}, {{0x86da,5},{0xb2e,2}}, {{0xadd0,3},{0x60fc,6}}, {{0x15bf1,6},{0x1a,2}}, + {{0xc25,5},{0xb70,2}}, {{0xa4c9,3},{0xae7,1}}, {{0x6ac5,1},{0x1a9d,3}}, {{0x1f,1},{0xbb5,1}}, + {{0x278b3,4},{0x278dc,1}}, {{0xde2,3},{0x1d98,3}}, {{0xbaa2,4},{0x9133,3}}, {{0x26f1,4},{0x4ab0,3}}, + {{0x278c9,2},{0x279e9,2}}, {{0x423c,3},{0xfb1,2}}, {{0x6d81,3},{0x1762,3}}, {{0x153c,6},{0x5575,5}}, + {{0x4351,2},{0x10ec,1}}, {{0x20555,3},{0x4412,3}}, {{0x2b,3},{0x1a,2}}, {{0x441c,3},{0xb6ff,4}}, + {{0x6074,8},{0xff7,5}}, {{0xb73,2},{0xbb5,1}}, {{0x10ca,1},{0xc55,2}}, {{0x278a3,2},{0x278a9,1}}, + {{0xf46,2},{0xca7,2}}, {{0x1a,2},{0xac92,4}}, {{0x1935a,5},{0xb47,2}}, {{0x41da,3},{0x1afbe,2}}, + {{0xb215,5},{0x10283,5}}, {{0x256d,3},{0xc76,2}}, {{0xceb,3},{0xaea,1}}, {{0x10f7,1},{0x5dbb,4}}, + {{0x10f6,1},{0x2d,1}}, {{0x1341,4},{0xc20,5}}, {{0xb7f,7},{0x13f3,9}}, {{0xa7d7,2},{0x6ac5,1}}, + {{0x22dc,2},{0x2566,4}}, {{0x37d6,5},{0x24fd,5}}, {{0x4d33,7},{0x22e3,3}}, {{0xae5,1},{0xb55,2}}, + {{0xbde,3},{0x1ad2,5}}, {{0x1d55,7},{0x2318,4}}, {{0xab9c,1},{0x10f2,1}}, {{0xf6e4,6},{0x139e,2}}, + {{0xc13,4},{0xebce,5}}, {{0x1098,3},{0x14a8,4}}, {{0x14dc,4},{0x3660,10}}, {{0x2202,3},{0xae6,2}}, + {{0x948,1},{0xb31,1}}, {{0x1040,6},{0x3f5b,7}}, {{0x28842,4},{0x9a9,1}}, {{0x10ea,3},{0x14cbf,2}}, + {{0x1d91,14},{0xae7,1}}, {{0x27a13,2},{0x278dc,1}}, {{0x11cfc,6},{0xc593,4}}, {{0x28efb,2},{0x28efb,2}}, + {{0x7e52,6},{0xb52,5}}, {{0x28904,4},{0xaea,2}}, {{0x20bb,3},{0xe78,3}}, {{0x17241,5},{0x9133,3}}, + {{0x857e,7},{0x1c25,4}}, {{0x2445f,1},{0x1b4e4,1}}, {{0xb67,2},{0xc30,2}}, {{0x350c,7},{0x1555,7}}, + {{0xbd1,2},{0xcab,3}}, {{0xca7,3},{0x1621,4}}, {{0xd099,8},{0x2b,3}}, {{0xb85,2},{0xaf49,4}}, + {{0xcfd,4},{0xe7fd,7}}, {{0xa246,4},{0xaf49,4}}, {{0x278ad,3},{0x279d1,2}}, {{0xaaf8,3},{0x3776,3}}, + {{0xcd9,4},{0xc6a9,3}}, {{0x1c92,6},{0x2b,1}}, {{0x96a6,7},{0x4a56,3}}, {{0xac8a,4},{0x1931d,4}}, + {{0xaa98,2},{0xbeb,1}}, {{0x716e,5},{0x11b9,3}}, {{0x6c0a,2},{0x11ef,2}}, {{0xbfbf,8},{0xae7,1}}, + {{0x1082,2},{0xb7d,1}}, {{0xd41,4},{0x16629,5}}, {{0xc25,4},{0x11422,6}}, {{0x1cee,4},{0x1daa,4}}, + {{0x2b900,4},{0xa4f,2}}, {{0xf943,5},{0x4d56,4}}, {{0xaf3,4},{0x1019c,2}}, {{0xeb2,1},{0xf02,3}}, + {{0x159c,4},{0xb75,5}}, {{0xb7f,6},{0xfdd,2}}, {{0x8ec6,8},{0xb7c,3}}, {{0x2c692,4},{0xa51,2}}, + {{0x9a9,1},{0xa7d,6}}, {{0x3678,5},{0x1642,3}}, {{0x16772,5},{0x4a55,4}}, {{0xaee7,2},{0xaee9,2}}, + {{0x1e,1},{0x67a7,3}}, {{0x19186,6},{0x173e,3}}, {{0x46f4,4},{0x1a,1}}, {{0x135c,5},{0xb65,2}}, + {{0x290e,4},{0xbb4,4}}, {{0x119f0,7},{0x16e2,2}}, {{0x270f,5},{0x13f2e,3}}, {{0x1cc5d,6},{0xbd6,2}}, + {{0x27ac7,2},{0x27897,1}}, {{0x20bb,3},{0xae7,1}}, {{0x27b4,3},{0x22567,4}}, {{0xbe0,1},{0xaf5d,3}}, + {{0x178c,3},{0xbb2a,3}}, {{0x3af4,8},{0xb9d,3}}, {{0x6d81,3},{0xca6,2}}, {{0x14cc,4},{0xc8a3,3}}, + {{0xc37,3},{0x4991,3}}, {{0x1f501,6},{0xb64,2}}, {{0x10c8,3},{0x40b6,3}}, {{0x10c8,3},{0x4417,2}}, + {{0x162c,6},{0xb68,4}}, {{0x43e3,1},{0xc55,2}}, {{0xbde,3},{0x7681,3}}, {{0xbb5,2},{0x1d8e,3}}, + {{0x27b95,4},{0x27897,1}}, {{0x1cce,6},{0x502b,7}}, {{0xe02,5},{0x12d7,5}}, {{0x142c,3},{0xe6d,2}}, + {{0x1daf,7},{0x1408,3}}, {{0xbe0,1},{0x2045,3}}, {{0x29797,4},{0x26c6,1}}, {{0x17660,6},{0x2b,3}}, + {{0xba7,3},{0x1a,1}}, {{0x145a0,1},{0x145a0,1}}, {{0x12fe,2},{0x1cef,3}}, {{0x750e,4},{0x7512,4}}, + {{0xa22e,4},{0x8111,5}}, {{0xe9f,3},{0x2de9,7}}, {{0xcfd,4},{0x190c4,4}}, {{0x27a0d,2},{0x116e,1}}, + {{0x1f,1},{0xb4b,2}}, {{0x1424,4},{0xdc1,5}}, {{0x2445c,3},{0x9a9,1}}, {{0x423e,1},{0xb55,2}}, + {{0x16e7c,6},{0xce2,3}}, {{0x1b907,4},{0x1b237,4}}, {{0x8716,4},{0x1c2af,3}}, {{0xae7,1},{0x166a6,5}}, + {{0x177c,3},{0x26850,3}}, {{0x1b157,8},{0x1b157,8}}, {{0xd57,2},{0x263f,3}}, {{0x1b72f,6},{0xfefc,4}}, + {{0x11cac,6},{0xd256,4}}, {{0x4c8a,6},{0x37cd,5}}, {{0x2b,2},{0xf01,4}}, {{0x2793d,4},{0x278d6,1}}, + {{0x1907,3},{0xb54,2}}, {{0xae2,1},{0xae6,2}}, {{0x5f8a,9},{0xb65,2}}, {{0x139f,3},{0xbb5,1}}, + {{0x1260,4},{0x1a,1}}, {{0xc49,3},{0xc62,3}}, {{0x43f0,4},{0xdc1,5}}, {{0x60cf,8},{0xb52,5}}, + {{0x1aa3,6},{0x7924,6}}, {{0x1e45,3},{0x2af8,4}}, {{0xbeb,1},{0xb066,2}}, {{0x1f,1},{0xeb1,2}}, + {{0x251fe,4},{0x25202,2}}, {{0x734,1},{0x28634,1}}, {{0x2e44,4},{0x16f48,4}}, {{0x27cf4,4},{0x2446f,2}}, + {{0xbe7,1},{0xb64,2}}, {{0xae7,1},{0x10029,5}}, {{0xb92,5},{0xb97,9}}, {{0x94ba,6},{0xd0d,2}}, + {{0x353b,5},{0xb2c,4}}, {{0x27a2b,2},{0x278dc,1}}, {{0x2b,2},{0x7260,5}}, {{0x1c,1},{0xd0c,2}}, + {{0x178c,3},{0x19f3f,2}}, {{0xc34,2},{0x2d,1}}, {{0x13a36,7},{0x10dc,2}}, {{0x4923,8},{0x4875,5}}, + {{0x127ec,6},{0x2288,4}}, {{0x4f62,5},{0x12fe,3}}, {{0xb493,4},{0x1058e,6}}, {{0x166c,4},{0xc25a,4}}, + {{0x119c,5},{0x4573,8}}, {{0x152c4,2},{0x4417,2}}, {{0x804,2},{0x244c7,2}}, {{0x10f2,1},{0x14b6,2}}, + {{0x4290,4},{0xd5e,4}}, {{0xc1e,2},{0xd1b,1}}, {{0x1040,6},{0xe6e1,4}}, {{0xfbb1,3},{0xb8f,2}}, + {{0xde9,1},{0x15ba3,6}}, {{0x1b6e1,2},{0x1b887,2}}, {{0xb47,2},{0x43bd,4}}, {{0xa8fa,6},{0x13395,4}}, + {{0xec2,2},{0xb65,2}}, {{0x14bae,4},{0x1878,1}}, {{0x18d4,3},{0x10dc,2}}, {{0x27b95,4},{0x278dc,1}}, + {{0x10ef,1},{0xaf2,1}}, {{0xaca2,3},{0x29512,2}}, {{0x27b4,3},{0x2844,2}}, {{0xadce,5},{0xeb3,3}}, + {{0x3d78,9},{0xb63,2}}, {{0xc6d,5},{0xbe8,3}}, {{0x1ba8,4},{0x22e3,3}}, {{0x10f7,1},{0x1d448,5}}, + {{0x30,2},{0x25241,4}}, {{0x23e5,10},{0x10dc,2}}, {{0x110c,8},{0x110c,8}}, {{0x42a0,3},{0x12b89,5}}, + {{0xb60,3},{0xb85,2}}, {{0x2aacb,2},{0x24515,2}}, {{0x178c,3},{0x12fe,2}}, {{0xebf,3},{0x108c,3}}, + {{0x2249,3},{0xca1,2}}, {{0x142e,1},{0xe6d,2}}, {{0xa7da,3},{0xc63,3}}, {{0x70dc,4},{0x24733,2}}, + {{0x7a6e,4},{0xeb1,2}}, {{0x3789,3},{0xaf2,1}}, {{0x1a0d,5},{0x4979,5}}, {{0x14bb5,2},{0x1aaed,1}}, + {{0x14bb5,2},{0x1abcf,5}}, {{0x256b,5},{0xde9,1}}, {{0x1fad9,4},{0xca7,3}}, {{0x27c3,4},{0xb2e,2}}, + {{0x1fa41,7},{0xaf2,1}}, {{0x417a,2},{0xc55,2}}, {{0xd88c,6},{0xd892,5}}, {{0x1ed53,1},{0x24f98,5}}, + {{0xd7f,3},{0xb4b,2}}, {{0x1f9d9,5},{0x22c0,3}}, {{0x10f8,2},{0x10ed,2}}, {{0x27b6,1},{0x12ff,2}}, + {{0x995e,8},{0x1719,3}}, {{0x102f,6},{0x648a,7}}, {{0x101b6,7},{0xcc0,3}}, {{0x10f6,1},{0xfb2,2}}, + {{0x253fb,3},{0x28695,2}}, {{0x17fc,5},{0x3cc7,5}}, {{0x1d1d5,7},{0xaf2,1}}, {{0x1f3a,3},{0xae7,1}}, + {{0xbbf,2},{0xb54,3}}, {{0xae0,1},{0x67c0,3}}, {{0xb2e,2},{0xfe5,2}}, {{0x4d19,6},{0x7edc,6}}, + {{0x12882,5},{0x1a,2}}, {{0x2450d,4},{0x96f,2}}, {{0x10f0,1},{0xbe0,1}}, {{0x4cd8,6},{0x253a,4}}, + {{0x1d46,5},{0x1372,3}}, {{0xbe7,1},{0xb7c,3}}, {{0xc67,3},{0xaec,2}}, {{0xc89,2},{0x2b,2}}, + {{0xf85,4},{0x2182,5}}, {{0x110fe,7},{0xb75,2}}, {{0xe75,4},{0x7562,3}}, {{0x28441,2},{0x15a82,3}}, + {{0x1055,3},{0x28,1}}, {{0xcd2,6},{0xae7,1}}, {{0x9202,7},{0x9209,5}}, {{0xae6,3},{0xcb8,2}}, + {{0xcb8,2},{0xca7,3}}, {{0xb6c,3},{0x1a5c,3}}, {{0x2043,5},{0x4694,5}}, {{0x27983,2},{0x27897,1}}, + {{0xbbf,2},{0xae5,2}}, {{0x6b52,4},{0xb8f,2}}, {{0xd5e,4},{0x132f,3}}, {{0x6c7d,5},{0x1a304,4}}, + {{0xdba,4},{0x1a,1}}, {{0x19b79,6},{0x1393,3}}, {{0x3d78,7},{0x9ff5,4}}, {{0x2d,1},{0xaec,2}}, + {{0x61c6,5},{0xb98,2}}, {{0xae6,3},{0x3fdc,4}}, {{0x116c,1},{0x924,4}}, {{0x4bee,8},{0xce8,3}}, + {{0xedf2,7},{0x10a2,4}}, {{0xb6e,2},{0x12be,3}}, {{0x4206,3},{0x11f4f,5}}, {{0x251fe,2},{0x734,1}}, + {{0x116e,1},{0x27a6d,2}}, {{0xc13,4},{0xb3e7,7}}, {{0xd595,7},{0xd59c,4}}, {{0x278a9,1},{0x278af,2}}, + {{0x9982,8},{0x4076,4}}, {{0x4354,4},{0x8907,4}}, {{0xac2a,8},{0xaf1,2}}, {{0x1b,1},{0xaec,2}}, + {{0x30,2},{0xc4d,2}}, {{0x6d81,3},{0xe6d,3}}, {{0x58f1,3},{0xdf0,2}}, {{0x177c,3},{0x20a0,3}}, + {{0xe3b8,6},{0xb65c,5}}, {{0x2b,2},{0xc32c,3}}, {{0x102c,2},{0x1055,3}}, {{0x270fd,4},{0x4415,2}}, + {{0x193c6,6},{0x2b,3}}, {{0x1ed49,3},{0x2446c,1}}, {{0x1ae9b,7},{0xd0d,2}}, {{0x5734,7},{0xb52,6}}, + {{0xaeb,2},{0x1889b,6}}, {{0x10f3,1},{0x152d2,2}}, {{0x17265,5},{0x88ce,4}}, {{0x30,2},{0x251db,2}}, + {{0x2322,6},{0x3b32,8}}, {{0x41c0,2},{0x855e,6}}, {{0xba5,4},{0x5bf1,7}}, {{0xc37,3},{0xb63,3}}, + {{0x7a7a,5},{0x9133,3}}, {{0xaca2,3},{0x5277,2}}, {{0xd7f,3},{0xc2e,2}}, {{0x969,2},{0x70a2,2}}, + {{0x554f,2},{0x28,1}}, {{0xa41a,9},{0xc34,3}}, {{0x177c,3},{0x152d2,2}}, {{0x147c,5},{0x647d,4}}, + {{0xfda,6},{0x3336,7}}, {{0xe468,8},{0xb63,2}}, {{0xd0f,6},{0x13a6,4}}, {{0x7076,3},{0x3d0e,7}}, + {{0x1f3ed,3},{0x10fa,1}}, {{0x709a,6},{0x1b743,8}}, {{0x30,112},{0x30,6}}, {{0x1e,1},{0xfdd,2}}, + {{0xae2,1},{0xd7f,3}}, {{0x33ae,7},{0x15b4,7}}, {{0xba5,4},{0x4cec,6}}, {{0xa4b,4},{0x244c7,2}}, + {{0x4288,3},{0x1f2c5,2}}, {{0x70a0,2},{0x20b23,2}}, {{0xc25,4},{0x11422,5}}, {{0xddc,4},{0xbb4,2}}, + {{0x14d1c,4},{0x1d,1}}, {{0xe5d,3},{0xe302,5}}, {{0x102f9,3},{0x28,1}}, {{0x163af,6},{0xb70,2}}, + {{0x1e,1},{0x1307,3}}, {{0x219c,4},{0xc1c,2}}, {{0x101d4,6},{0x2af8,4}}, {{0x47de,6},{0x1698,4}}, + {{0x12bc,8},{0x2dc0,6}}, {{0x1c495,6},{0x10dc,2}}, {{0xae5,1},{0x9423,3}}, {{0xdf0,2},{0xd1b,1}}, + {{0x10f7,1},{0xaec,2}}, {{0x9a4e,9},{0x10dc,2}}, {{0x2c30,10},{0x2c3a,4}}, {{0xc13,4},{0x7fda,4}}, + {{0x3758,4},{0xbe9b,6}}, {{0x244bf,4},{0xa51,2}}, {{0xa07e,5},{0xa083,7}}, {{0x4fbd,4},{0x25ee,4}}, + {{0x2451f,2},{0x244e7,2}}, {{0xddc,4},{0xbe8,3}}, {{0xa02a,6},{0x1081,3}}, {{0x423c,3},{0x423e,1}}, + {{0x1cef,3},{0x10c3,5}}, {{0x51df,5},{0x222c,6}}, {{0x91ea,7},{0xd0d,2}}, {{0xa156,6},{0xe9cd,5}}, + {{0xd41,3},{0xb85,2}}, {{0x265b,4},{0xd0d,2}}, {{0x70ea,3},{0x1ee3,3}}, {{0x51ae,4},{0xbb4,4}}, + {{0xaf1,1},{0x702a,4}}, {{0x1742,7},{0xfaf,3}}, {{0xf162,8},{0xb54,3}}, {{0x10c8,4},{0x7f90,4}}, + {{0x593c,5},{0xca7,3}}, {{0x24579,6},{0x24531,4}}, {{0x14eda,5},{0xb9b,3}}, {{0xd41,3},{0xae6,3}}, + {{0x2b57c,2},{0x2b57c,2}}, {{0x1361,2},{0x47fd,6}}, {{0xb47,2},{0x19bd,5}}, {{0xfc75,7},{0xfc7c,4}}, + {{0x14cd0,5},{0x14a8,4}}, {{0x2fe8,7},{0x108e,7}}, {{0x762a,4},{0x2be4,6}}, {{0xae2,1},{0xb9d,3}}, + {{0x116d,1},{0x278b5,2}}, {{0xcd5,3},{0xd51,2}}, {{0x10c8,3},{0xa8f1,6}}, {{0xcb5,3},{0x12a3d,7}}, + {{0x1fb1,6},{0xc9f,4}}, {{0x10c8,11},{0xe1a,6}}, {{0xf96,7},{0xa2ba,4}}, {{0xae7,2},{0xd8f,3}}, + {{0xceb,3},{0x12a5,7}}, {{0x12cc,13},{0x10dc,2}}, {{0x1ad84,6},{0x4bbe,3}}, {{0x177e,5},{0x2a85,6}}, + {{0xae2,2},{0xe5d,2}}, {{0xbe4,1},{0xb9a,6}}, {{0x1b4e3,1},{0x27cf8,2}}, {{0xd65,3},{0x1bb98,5}}, + {{0x271e,3},{0x134f,3}}, {{0x27b4,3},{0x1ae32,2}}, {{0x10ea,3},{0x28da,1}}, {{0x26c6,1},{0xd54,1}}, + {{0x278b3,4},{0x278d6,1}}, {{0x1290,5},{0xd1a,7}}, {{0x1b0a,2},{0x2b,2}}, {{0x27aaf,2},{0x1b6ab,1}}, + {{0x734,2},{0x251cb,1}}, {{0xbb73,5},{0xaf2,1}}, {{0x10ef,1},{0xa7d1,2}}, {{0x170c,7},{0x2680,5}}, + {{0x278b3,4},{0x1b6ab,1}}, {{0xc58,3},{0x46e1,6}}, {{0xb55,2},{0x1f,2}}, {{0x17fe,3},{0xae0,1}}, + {{0x29b9c,4},{0xbe7,1}}, {{0x8d16,5},{0x1ed4,7}}, {{0x27b6,1},{0x18934,5}}, {{0xecc,3},{0xb52,5}}, + {{0x143c,5},{0x84ea,4}}, {{0xf8cf,2},{0xbe4,1}}, {{0x10c8,3},{0x10ec,1}}, {{0x3758,4},{0x5c4c,4}}, + {{0xb63,4},{0xae6,2}}, {{0x1042,4},{0x4074,3}}, {{0x12ac,5},{0xc07f,6}}, {{0x16f9e,6},{0xae7,1}}, + {{0x142c,3},{0xcc0,3}}, {{0x3e58,4},{0x9319,3}}, {{0x159c,5},{0xb78,2}}, {{0x27a2b,2},{0x278d6,1}}, + {{0x41da,3},{0x440f,2}}, {{0x26b5,4},{0xce2,3}}, {{0x17bc,3},{0xfb2,2}}, {{0x16ac9,5},{0xb77,3}}, + {{0x139e6,5},{0xb55,2}}, {{0x1cec,5},{0xc8e,3}}, {{0x10fb,3},{0x28,2}}, {{0x41da,3},{0x28,2}}, + {{0x1eed9,4},{0x1a561,4}}, {{0x415c,5},{0x7f5f,7}}, {{0x20479,5},{0x132f,3}}, {{0x1b8a9,10},{0x70d0,4}}, + {{0x28,1},{0xeb2b,6}}, {{0xb52,2},{0xc34,2}}, {{0x177c,3},{0xc4d,2}}, {{0x4290,7},{0x14f3,7}}, + {{0x5956,5},{0x180c6,4}}, {{0xfef4,8},{0xfee4,8}}, {{0x10c8,3},{0x16af,3}}, {{0x124c,5},{0x10de3,5}}, + {{0x1d89,2},{0xec2,2}}, {{0xb732,9},{0xae7,1}}, {{0x2421,7},{0xf6a,5}}, {{0xcd9,3},{0x1675,2}}, + {{0x58c7,9},{0x58d0,4}}, {{0x1a10,2},{0x28,1}}, {{0xa830,2},{0x1d,1}}, {{0x17be,2},{0xc50d,5}}, + {{0xc99,3},{0x60fc,6}}, {{0x5f90,3},{0xaf2,1}}, {{0x10f4,2},{0x10ef,1}}, {{0x16880,6},{0xfdd,3}}, + {{0x163af,6},{0xce8,3}}, {{0x3c52,8},{0x1b,1}}, {{0x70c8,2},{0x410e,2}}, {{0xc99,3},{0x2b56,6}}, + {{0x278ad,3},{0x27b0f,2}}, {{0x27a13,2},{0x116e,1}}, {{0x6ac5,1},{0xa7c5,9}}, {{0x3dd1,2},{0xb79,2}}, + {{0x2474d,2},{0x2456b,2}}, {{0xd0c,2},{0x2b,1}}, {{0xaeca,4},{0xc51,2}}, {{0x995e,8},{0xb7c,3}}, + {{0x17ace,6},{0x2b,3}}, {{0x51df,5},{0xcc3,4}}, {{0x19279,6},{0x1dac,3}}, {{0x177c,3},{0x10e2b,3}}, + {{0x153c,6},{0xd82f,5}}, {{0x1a55c,5},{0x1a561,4}}, {{0x2a91,4},{0xb7c,3}}, {{0x3f70,7},{0xa51d,5}}, + {{0x4404,5},{0xb52,6}}, {{0x1171,2},{0x278dc,1}}, {{0x27af1,2},{0x278a9,1}}, {{0x3598,5},{0xcc74,5}}, + {{0xfdf,2},{0xfdf,2}}, {{0x38e5,6},{0x12ff,2}}, {{0xb2f,1},{0xb2c,4}}, {{0x27aeb,2},{0x116d,1}}, + {{0xdf3,3},{0x4453,4}}, {{0x14cc6,6},{0xc7b,4}}, {{0x1c,1},{0x133a7,5}}, {{0x14bc,5},{0xec5,5}}, + {{0x10c8,3},{0x1013,3}}, {{0x1b57,4},{0xb85,2}}, {{0x19c24,4},{0x33d3,5}}, {{0x1f2c5,2},{0x28da,1}}, + {{0xcc7,3},{0xae5,1}}, {{0x10ea,3},{0xd7a,3}}, {{0x8092,9},{0x227a,3}}, {{0x202c,4},{0x12be,3}}, + {{0x20429,5},{0x2c00,3}}, {{0x2445f,1},{0x251db,2}}, {{0x1ad0,4},{0x27,1}}, {{0xbe4,1},{0x20555,3}}, + {{0x16f47,2},{0x3610,2}}, {{0xf6e4,6},{0x330f,5}}, {{0x10f0,1},{0x10ec,1}}, {{0x10f6,1},{0x423e,1}}, + {{0x10f3,1},{0x10f2,1}}, {{0x1f473,4},{0x10dc,2}}, {{0xcd9,5},{0x1921,7}}, {{0x272d,5},{0x14d93,5}}, + {{0x6178,7},{0x11b8,4}}, {{0xdba,12},{0xb2e,2}}, {{0x27e2a,2},{0x24a41,2}}, {{0xdba4,4},{0x1099,3}}, + {{0x70b0,4},{0x410e,2}}, {{0x446a,8},{0xf5e,5}}, {{0x1afb2,5},{0xaf2,1}}, {{0xebcc,4},{0x734a,4}}, + {{0xb55,2},{0xb75,2}}, {{0x142c,5},{0x1719,3}}, {{0xed8f,6},{0x3bc2,4}}, {{0x698b,8},{0xb7a,5}}, + {{0x145e6,2},{0x1026e,6}}, {{0x10fb,3},{0xbcc2,3}}, {{0x244b9,2},{0x244c3,2}}, {{0xd5c,1},{0xd54,1}}, + {{0x14bae,4},{0x20aa9,2}}, {{0x71af,4},{0xb8f,3}}, {{0x10ea,3},{0x4417,2}}, {{0x5ae9,6},{0xe08,7}}, + {{0x12fc,4},{0xb8f,2}}, {{0x20bb,3},{0xd934,4}}, {{0xadd,3},{0xb72,2}}, {{0xdf0,2},{0x1a,2}}, + {{0xc67,2},{0xc1e,2}}, {{0x17bc,3},{0x27112,3}}, {{0x41c0,2},{0x1292,3}}, {{0x2868,4},{0x10e20,4}}, + {{0x6ac3,4},{0x102b4,5}}, {{0xadd,3},{0xae5,1}}, {{0x251cb,1},{0x2c104,2}}, {{0xc49,3},{0xb7d,2}}, + {{0x24ba,3},{0x1a,2}}, {{0xaee7,2},{0x20555,3}}, {{0xd5c,1},{0xdd5,3}}, {{0x1b,1},{0xf05,7}}, + {{0xb2e,2},{0x10e20,4}}, {{0x445d,12},{0xae7,1}}, {{0x1e,1},{0xd8b0,5}}, {{0xbc5,3},{0xb47,2}}, + {{0x5d5b,5},{0x1719,3}}, {{0xaea,3},{0x1f,1}}, {{0xbde,3},{0x1b4b,3}}, {{0x9442,8},{0xb54,3}}, + {{0x27aaf,2},{0x278d6,1}}, {{0x1d,1},{0xc30,2}}, {{0x1e035,6},{0x1e,1}}, {{0xb5f,4},{0xb63,9}}, + {{0x7a3e,6},{0x7a44,4}}, {{0xa7da,3},{0xb29c,6}}, {{0x2b,3},{0x2b,3}}, {{0xb87c,6},{0x84f6,4}}, + {{0xceb,4},{0x166ef,5}}, {{0x5288,5},{0xd57,5}}, {{0x1089,2},{0x1d8a,3}}, {{0xb4a,3},{0x1dcf,3}}, + {{0x254d,5},{0x19cd,4}}, {{0x3862,9},{0x2b,3}}, {{0x105a8,6},{0x139e,4}}, {{0xcd9,3},{0xb7c,3}}, + {{0x11dd8,6},{0x139e,4}}, {{0x2451f,2},{0x15798,2}}, {{0xae7,2},{0xd45,3}}, {{0x377c,4},{0xb2c,2}}, + {{0x1621,4},{0x14e2,3}}, {{0x30,28},{0x532,4}}, {{0x5d9c,8},{0x1ed0,4}}, {{0xc37,3},{0xbc5,3}}, + {{0xaf3,4},{0x1015e,2}}, {{0x27a8b,2},{0x27897,1}}, {{0x41e8,5},{0xf60d,6}}, {{0x27abb,2},{0x278dc,1}}, + {{0x10fb,4},{0xdb31,5}}, {{0x39f8,5},{0x11bd5,5}}, {{0x8a3a,6},{0xbc1,2}}, {{0x1f3a,3},{0x10dc,2}}, + {{0x27ce8,3},{0x9c9,1}}, {{0x70dc,4},{0x24873,2}}, {{0x1869,5},{0x10dc,2}}, {{0xf922,7},{0x1865,4}}, + {{0x1b,1},{0xb52,2}}, {{0x29ecd,3},{0x1171,2}}, {{0x5483,4},{0x58d9,8}}, {{0x29d6,5},{0x12b1,4}}, + {{0xc1c,2},{0xdf9,5}}, {{0xb7c,2},{0x1bdb,3}}, {{0x2589,6},{0xa330,6}}, {{0x14bb4,2},{0x2844,3}}, + {{0x7e0a,5},{0x14d5,3}}, {{0xd41,3},{0xde2,3}}, {{0xc25,3},{0x1b4f,3}}, {{0x6c3c,5},{0x2ffb,3}}, + {{0xf1f,5},{0x1ffd,5}}, {{0x15266,5},{0xebce,5}}, {{0x1040,5},{0x10dc,2}}, {{0x9436,7},{0x253a,4}}, + {{0x116d,1},{0x1173,2}}, {{0xaea,1},{0x12be,3}}, {{0x239a,11},{0xb7c,3}}, {{0x17be,2},{0x2237,3}}, + {{0xcfd,5},{0x2ec7,4}}, {{0xb7d,1},{0x4ab0,3}}, {{0x11cca,5},{0xaeb,2}}, {{0x40c2,2},{0xe6d,2}}, + {{0x27a2b,2},{0x27897,1}}, {{0x36be,5},{0xdfb,3}}, {{0xcd9,3},{0x5396,3}}, {{0xe397,7},{0xb65,2}}, + {{0x10168,4},{0x70a0,4}}, {{0x10ec,1},{0xc70,4}}, {{0x30,2},{0x2c362,2}}, {{0x194cb,6},{0xc52,3}}, + {{0x397a,5},{0x57c7,4}}, {{0x27923,2},{0x1b6ab,1}}, {{0x1c56,7},{0x820d,5}}, {{0x593c,7},{0x5943,5}}, + {{0xeec,7},{0xb48,2}}, {{0x441c,3},{0xbcc2,3}}, {{0x27,1},{0x1001f,5}}, {{0x143c,8},{0xb63,2}}, + {{0x17fe,3},{0x10c3,5}}, {{0xdba,4},{0x2d,1}}, {{0xfb1,2},{0xb77,3}}, {{0xb396,5},{0x2a09,5}}, + {{0x3250,5},{0xb8f,2}}, {{0xf38f,3},{0x2b,3}}, {{0x2500e,2},{0xbe7,1}}, {{0x9b0e,8},{0xae7,1}}, + {{0xa162,6},{0xc63,3}}, {{0x27d24,3},{0x159c8,1}}, {{0xae7,1},{0xb2c,2}}, {{0xc1c,2},{0xf6a,3}}, + {{0x4979,4},{0x1d,2}}, {{0x5254,5},{0x33d3,5}}, {{0x532,2},{0x30,256}}, {{0x1d59,3},{0x103a,3}}, + {{0x1e,1},{0xde9,1}}, {{0xf280,5},{0x23ce,4}}, {{0xbd6,2},{0xce8,3}}, {{0x422e,3},{0x10ec,1}}, + {{0xd7f,3},{0x2b,3}}, {{0xde9,1},{0xf24c,8}}, {{0x1a342,3},{0xb2c,2}}, {{0x4284,2},{0x10f8,2}}, + {{0x6d8e,3},{0x5a50,5}}, {{0x9b1a,5},{0x1f,1}}, {{0x6d8e,3},{0xb71,2}}, {{0x27ab5,2},{0x278dc,1}}, + {{0x1b6db,4},{0x70da,2}}, {{0x4971,6},{0x67c0,3}}, {{0x116d,1},{0x924,3}}, {{0x422e,3},{0x28cf,3}}, + {{0xa9c6,7},{0x3a3a,4}}, {{0x18055,6},{0x10569,3}}, {{0xb2e,2},{0x12b26,4}}, {{0xab9a,3},{0xd51,3}}, + {{0xbb5,1},{0x13e8f,4}}, {{0xb7d,1},{0xc34,2}}, {{0x9bc2,9},{0x2b,3}}, {{0x39f8,5},{0x4ae5,5}}, + {{0xc37,3},{0xcf6,3}}, {{0x1574b,2},{0x100b0,2}}, {{0xba97,8},{0xd0d,2}}, {{0x2b,3},{0x1d,1}}, + {{0x2f5c,7},{0x1498,4}}, {{0x675c,6},{0xb54,4}}, {{0xa7da,3},{0xbe4,1}}, {{0xfb1c,7},{0x1934,4}}, + {{0x2d,1},{0x1da38,5}}, {{0xaca2,3},{0xb9d,3}}, {{0xae7,2},{0xaf2,1}}, {{0x441c,3},{0xc9f2,3}}, + {{0x410c,4},{0x1c,1}}, {{0x16f3b,4},{0x1861,3}}, {{0x25189,3},{0xf8cf,3}}, {{0x10f1,2},{0xaaed,2}}, + {{0x142e,1},{0x1590a,2}}, {{0x30,112},{0x30,8}}, {{0x17ac,3},{0x1f,1}}, {{0x732,3},{0x2445e,1}}, + {{0x143c,10},{0xe70,4}}, {{0xddc,4},{0xb9d,3}}, {{0x2322,6},{0x1d8a,3}}, {{0xadf,2},{0xc67,2}}, + {{0xddc,4},{0x2a16,3}}, {{0xc6d8,5},{0xb65,2}}, {{0x1b26c,2},{0x21,1}}, {{0x278a1,3},{0x27897,2}}, + {{0x10056,3},{0x132f,3}}, {{0x2ade9,4},{0x1f,1}}, {{0x27b4,3},{0xbe4,1}}, {{0x278c9,2},{0x279f5,2}}, + {{0xd083,8},{0xb8f,3}}, {{0x5442,4},{0x3558,4}}, {{0xcd2,5},{0x1099,3}}, {{0x30,2},{0x28e89,2}}, + {{0xbe7,2},{0x12797,4}}, {{0xd65,3},{0xb7c,2}}, {{0x3aa0,7},{0x222c,6}}, {{0x1a6fa,4},{0x1a6fe,5}}, + {{0x278ad,3},{0x116c,2}}, {{0xb86,3},{0xbb4,4}}, {{0x972a,5},{0x222c,5}}, {{0x3c28,6},{0xcab,3}}, + {{0x278ad,3},{0x27a0d,2}}, {{0xfa16,3},{0x11f2,3}}, {{0x1d0cd,7},{0xae7,1}}, {{0x24ba,3},{0x1d,1}}, + {{0xe77,3},{0x1489,3}}, {{0x18a5,5},{0x33d3,5}}, {{0x278ad,3},{0x27983,2}}, {{0xaea,1},{0x3789,3}}, + {{0x6d8e,3},{0xeb3,3}}, {{0xae0,1},{0x74ba,3}}, {{0xbed,4},{0x3a3b,3}}, {{0x432,16},{0x432,7}}, + {{0x2421,7},{0x14a6,6}}, {{0xd54,1},{0xcf5,2}}, {{0xae2,2},{0xa249,4}}, {{0xf52,4},{0xb46b,7}}, + {{0x27b95,4},{0x116d,1}}, {{0xe70,4},{0x103a,3}}, {{0xcd3,2},{0xb52,2}}, {{0xa246,4},{0xbb15,3}}, + {{0x416c,3},{0x80d3,5}}, {{0xcd9,3},{0xb8e4,6}}, {{0x532,66},{0x30,8}}, {{0xb2c,2},{0xd1b,1}}, + {{0x278c9,2},{0x279fb,2}}, {{0x33bc,7},{0x13d5,7}}, {{0xdfe,5},{0x971a,4}}, {{0xd09b,6},{0x27,3}}, + {{0xb78,2},{0x2b,1}}, {{0xab9a,3},{0x1878,1}}, {{0x6ac5,2},{0xde2,4}}, {{0x10d9,5},{0xae6,3}}, + {{0xdba,5},{0x16f1,3}}, {{0xeeb8,8},{0x1719,3}}, {{0xfe38,4},{0x102c,2}}, {{0xd41,3},{0x13e3,4}}, + {{0xe2e0,3},{0xae7,1}}, {{0x251cb,1},{0x2aea3,2}}, {{0xdba,12},{0xb52,5}}, {{0x19462,4},{0xb64,2}}, + {{0x216f,11},{0x2b,3}}, {{0x219c,4},{0x2a24,6}}, {{0x1e,1},{0x1a,2}}, {{0x15ac,5},{0xbd6,2}}, + {{0x2c932,4},{0x70da,2}}, {{0xb68,3},{0xb72,3}}, {{0x2796,3},{0xc29,2}}, {{0x10c8,3},{0x1257,2}}, + {{0x27a13,2},{0x278d6,1}}, {{0x15682,3},{0x10569,3}}, {{0xe88,6},{0xce8,3}}, {{0x6d9b,5},{0xde9,4}}, + {{0x88de,6},{0xb54,4}}, {{0xbde,3},{0x2bfc,2}}, {{0x27a13,2},{0x116d,1}}, {{0x256b,8},{0xae7,1}}, + {{0xa14a,5},{0x16a2,3}}, {{0xc13,4},{0xcbd,3}}, {{0x12a9e,6},{0x4a55,4}}, {{0x5193,6},{0xae7,1}}, + {{0xb7f,3},{0x21024,4}}, {{0xaf1,1},{0x16821,4}}, {{0xbb4,2},{0x2b,2}}, {{0x20209,5},{0x109f,3}}, + {{0x1095,3},{0x1762,3}}, {{0xb44,3},{0x41b3,4}}, {{0x6d8e,3},{0x26f7a,2}}, {{0xbeb,2},{0xb52,5}}, + {{0x92f2,5},{0xb996,4}}, {{0xd78,5},{0x1916,5}}, {{0xad62,4},{0xd91,2}}, {{0x1b6c4,3},{0x1b6c4,3}}, + {{0x10ca,1},{0xce8,3}}, {{0x3640,8},{0x1c25,4}}, {{0x6110,8},{0x10dc,2}}, {{0xeb1,2},{0x2b,2}}, + {{0x6ac5,1},{0x1a28c,3}}, {{0xebf,3},{0xe8a,4}}, {{0x12f94,8},{0xc8f,2}}, {{0x2a948,1},{0x2b7e1,2}}, + {{0x27b95,4},{0x278af,1}}, {{0x16ac,5},{0xb0ce,3}}, {{0x14454,6},{0xbac,4}}, {{0x374a,6},{0x15a4,8}}, + {{0x285b,3},{0xb48,2}}, {{0x6e10,4},{0xfa02,7}}, {{0xcd8c,5},{0x4b33,5}}, {{0x6d81,3},{0xcf3e,2}}, + {{0x13dc,8},{0x3cba,3}}, {{0x1015a,6},{0x1b797,8}}, {{0x7c2a,8},{0x10dc,2}}, {{0x5317,7},{0xc67,3}}, + {{0x10ef,1},{0xe78,3}}, {{0x2859,5},{0xa4a3,7}}, {{0x1878,1},{0x21,1}}, {{0xae7,2},{0x15437,4}}, + {{0xae5,1},{0x6f36,3}}, {{0x23f7e,6},{0x28,1}}, {{0x6f74,4},{0xfb8b,2}}, {{0xf52,4},{0xae5,1}}, + {{0xbc2,2},{0x109f,3}}, {{0xfd72,4},{0x45dc,7}}, {{0xc13,4},{0xbb5,1}}, {{0xbe4,1},{0x1a,2}}, + {{0x1930,3},{0xcf0,2}}, {{0x415c,5},{0xc2e7,5}}, {{0x14d4,4},{0x12b1,4}}, {{0xa4aa,8},{0x1498,3}}, + {{0x15680,5},{0x16f8,3}}, {{0x74aa,8},{0x4882,3}}, {{0xf52,4},{0x10a2,4}}, {{0x457b,7},{0x4582,6}}, + {{0x1e,1},{0xa60f,3}}, {{0x93e2,7},{0x1916,5}}, {{0x12bca,5},{0xb65,2}}, {{0x4d19,6},{0xc2bc,5}}, + {{0xbe0,1},{0x16c7c,6}}, {{0x257c,2},{0xd7a,3}}, {{0x783a,6},{0xd17,3}}, {{0x10ea,3},{0xccdf,8}}, + {{0x24462,1},{0x251fe,2}}, {{0x5080,9},{0x2279,4}}, {{0x39ce,5},{0xb48,2}}, {{0xbe7,1},{0x21b2e,4}}, + {{0x177c,3},{0xbe4,1}}, {{0x25c5,5},{0xadf,2}}, {{0xbe0,1},{0x11ef,2}}, {{0x1042,4},{0x67c0,3}}, + {{0x278a7,3},{0x27a49,2}}, {{0xd41,3},{0xeabc,5}}, {{0x1b135,4},{0x27b6,1}}, {{0x2451f,2},{0x6f72,2}}, + {{0x161c,7},{0xb2e,2}}, {{0x2b593,3},{0x1b6cb,1}}, {{0xbd4,2},{0x2dcb,4}}, {{0x1a979,6},{0x1844b,3}}, + {{0x16ac,5},{0xb63,2}}, {{0x6ac5,1},{0x2349,4}}, {{0x432,16},{0x432,8}}, {{0xddc,4},{0x4606,3}}, + {{0x924,1},{0x27ad9,2}}, {{0x8c4,4},{0x532,8}}, {{0xb67,2},{0x21,1}}, {{0x178c,3},{0x762d,4}}, + {{0xae0,1},{0x4dbb,5}}, {{0x6742,5},{0x102c,2}}, {{0xfcb1,2},{0xfcb3,4}}, {{0x2793d,4},{0x278cf,2}}, + {{0xc13,3},{0xc1c,2}}, {{0x1704,3},{0xdd2,4}}, {{0xbafa,5},{0xb2c,3}}, {{0x181c,3},{0xeb2b,6}}, + {{0x159c,4},{0x16ee,2}}, {{0x10ea,3},{0x2720,2}}, {{0x3e92,3},{0x62ea,7}}, {{0x181c,3},{0x423e,1}}, + {{0x9e9,4},{0x9e9,6}}, {{0x27b4,3},{0x1c030,5}}, {{0xb72,2},{0x1a,2}}, {{0x422e,3},{0x323c,2}}, + {{0x124c,5},{0x21d2,5}}, {{0x15540,7},{0xae7,1}}, {{0xbb5,1},{0xcce,3}}, {{0x290c,2},{0xbb15,3}}, + {{0xa4d,12},{0xa4d,12}}, {{0x178c,3},{0x101f5,4}}, {{0x23d2d,5},{0x1e,1}}, {{0x1015a,6},{0xfef8,8}}, + {{0x27c3,4},{0xe2e0,3}}, {{0xbed,2},{0x2279,4}}, {{0x430,18},{0x432,5}}, {{0xeb2,1},{0xb2e,2}}, + {{0x28634,1},{0x18,1}}, {{0xbe7,1},{0x12b69,4}}, {{0xbde,3},{0xc60,3}}, {{0xd14,4},{0xb2c,4}}, + {{0x10f6,1},{0x10f1,2}}, {{0xcbd,3},{0x10dc,2}}, {{0x1bfc,6},{0x8158,6}}, {{0x1f2c5,2},{0x209c5,3}}, + {{0xb257,9},{0x10dc,2}}, {{0xb6c,3},{0xb8cf,5}}, {{0xcb5,3},{0xb55,2}}, {{0x278ed,2},{0x279e9,2}}, + {{0x41da,3},{0x235a0,4}}, {{0x1f2b1,4},{0xf8cf,3}}, {{0x141c,5},{0x2279,4}}, {{0xcedb,2},{0x28,1}}, + {{0xfb1,2},{0x2b,2}}, {{0x1055,3},{0xc6a9,3}}, {{0xb82,2},{0xd0d,2}}, {{0xab9a,3},{0xb63,2}}, + {{0x70cc,4},{0x70d0,4}}, {{0xd76,4},{0xcd30,4}}, {{0x5365,6},{0x2b,3}}, {{0x2796,3},{0xbb5,1}}, + {{0x51ec,5},{0xcc0,3}}, {{0x1488e,4},{0xb68,4}}, {{0xeec,7},{0x1f0f,4}}, {{0x4aa9,10},{0x1b08,3}}, + {{0xd41,3},{0xbc2,2}}, {{0x423e,1},{0xc89,2}}, {{0x27d24,3},{0x2446c,2}}, {{0x1c56,5},{0x253a,4}}, + {{0x1f,1},{0xa111,5}}, {{0x100d,5},{0xdf2,3}}, {{0x1320a,7},{0x2195,3}}, {{0x55ae,8},{0xc32,5}}, + {{0xa7da,3},{0x417d,3}}, {{0x5324,7},{0x43bd,4}}, {{0x3678,6},{0x21d2,6}}, {{0xbeb,1},{0x28,1}}, + {{0x10ea,3},{0x13cf,6}}, {{0x41be,3},{0x2748,2}}, {{0x251cd,4},{0x9a9,1}}, {{0x16fc,4},{0x1960,8}}, + {{0x41da,3},{0xb98,2}}, {{0xb4a,3},{0x10c3,5}}, {{0x10f7,1},{0x2574,2}}, {{0x422e,3},{0x10f3,1}}, + {{0xae7,1},{0xc67,2}}, {{0x3694,4},{0xa7ed,4}}, {{0x10ea,3},{0x4284,2}}, {{0x14d4,4},{0xb9d,3}}, + {{0x109b,4},{0x1a72,4}}, {{0x1b23f,4},{0x10ec,1}}, {{0xe2dc,5},{0xd48,2}}, {{0x3e2e,6},{0x3e34,8}}, + {{0x27d24,3},{0x9a9,3}}, {{0x4362,4},{0x2af4,4}}, {{0x10fb,3},{0xce2,3}}, {{0x24a2d,2},{0x2ae93,2}}, + {{0x3a39,3},{0x1f,2}}, {{0x2793d,4},{0x278a9,1}}, {{0x1a,1},{0xcb8,3}}, {{0x27ac7,2},{0x278dc,1}}, + {{0xdcb,7},{0x4867,5}}, {{0x1b,1},{0xba9c,6}}, {{0xfd27,2},{0x2b,3}}, {{0x3854,5},{0xee7,5}}, + {{0xf6ce,4},{0x14d9c,6}}, {{0xa2e2,6},{0x14a6,6}}, {{0x28842,4},{0x1ed58,1}}, {{0x5f90,3},{0xb54,3}}, + {{0x286a,2},{0xf01,4}}, {{0xab82,5},{0xab87,7}}, {{0x244b9,2},{0xff22,2}}, {{0x23b95,6},{0xae7,1}}, + {{0xb01a,4},{0xbb5,1}}, {{0x3f7e,7},{0x1b81,3}}, {{0x20afc,3},{0x6dd6,4}}, {{0xedb,5},{0xb64,3}}, + {{0x41be,3},{0x11b79,6}}, {{0x11e1,3},{0x2abb,8}}, {{0x1b,1},{0x1a,2}}, {{0x1279c,6},{0xc63,3}}, + {{0x12d3,6},{0xb63,2}}, {{0xae2,2},{0x1d,1}}, {{0x1904,3},{0x11ef,2}}, {{0xcb8,2},{0x140e8,6}}, + {{0xbde,3},{0xae5,1}}, {{0x3a5a,6},{0xbd6,8}}, {{0x1459e,3},{0x1a,2}}, {{0xb4b,2},{0x51b0,4}}, + {{0x13bc,7},{0x1667,5}}, {{0x10f7,1},{0xd0b2,7}}, {{0x2b76,3},{0x28,1}}, {{0x24462,1},{0x117c,1}}, + {{0x43e3,1},{0x2098b,2}}, {{0xd692,6},{0xf60,3}}, {{0xaea,1},{0xbcc2,3}}, {{0x5ef4,3},{0xaf2,1}}, + {{0x10fb,4},{0xc67,2}}, {{0x50ee,4},{0xbc1,2}}, {{0xded,5},{0x14a6,6}}, {{0x17fe,3},{0xbb5,1}}, + {{0x3fee,5},{0xaf1,1}}, {{0x2df0,8},{0x1667,5}}, {{0xd76,4},{0x17921,4}}, {{0xab9a,3},{0xb85,2}}, + {{0xb2f,1},{0xbbf,2}}, {{0x26c6,1},{0xae0,1}}, {{0x407a,10},{0xd0b,4}}, {{0xaea,1},{0x16e2,2}}, + {{0xa7da,3},{0x8a49,2}}, {{0x12496,4},{0x2b,2}}, {{0x4282,4},{0x10f3,1}}, {{0xfd5c,5},{0xb55,2}}, + {{0x1c56,7},{0x7a6a,4}}, {{0x6d8e,3},{0x23cfd,4}}, {{0x187c,3},{0xc6a9,3}}, {{0xb73,2},{0xd1b,1}}, + {{0x178c,3},{0x1862,3}}, {{0x3234,3},{0xb2f,1}}, {{0x10188,4},{0x24871,4}}, {{0x1b4e4,1},{0x948,1}}, + {{0xbb5,1},{0x3920,6}}, {{0x1257,2},{0xae7,2}}, {{0x1fea1,5},{0x1aac,3}}, {{0x1995f,5},{0xae7,2}}, + {{0x28da,1},{0xa7d1,2}}, {{0xb72,2},{0x2b,1}}, {{0x433a,6},{0x25c2,3}}, {{0xb79,2},{0x14a7,5}}, + {{0x1f,1},{0x10e2b,3}}, {{0x2232,8},{0x5f9f,5}}, {{0x178c,3},{0x14763,7}}, {{0x3c52,8},{0x16f9,3}}, + {{0x532,66},{0x30,2}}, {{0x4611,5},{0xaf2,1}}, {{0xcfd,5},{0x9e37,7}}, {{0xd54,1},{0xfde,2}}, + {{0xc1c,2},{0x1a,2}}, {{0x804,2},{0x6f6c,2}}, {{0xb9c,2},{0x139f,3}}, {{0xaea,1},{0x2032,2}}, + {{0x27aa9,2},{0x27897,1}}, {{0x2061,5},{0x16a4,4}}, {{0xdd04,7},{0x1d,1}}, {{0x3df6,9},{0x10dc,2}}, + {{0xdd30,6},{0xe70,4}}, {{0x6ac3,3},{0xb65,2}}, {{0xcb8,2},{0x1a85f,3}}, {{0x1cef,3},{0x1a,1}}, + {{0xa7da,3},{0x1ee54,5}}, {{0x94f6,7},{0xff7,5}}, {{0x6b6c,6},{0xb55,3}}, {{0xb8f,2},{0xae6,2}}, + {{0x27a01,2},{0x1b6ab,1}}, {{0xba5,5},{0xb9d,3}}, {{0x27b95,4},{0x278a9,1}}, {{0x924,2},{0x278af,2}}, + {{0x2499,12},{0x10dc,2}}, {{0x3234,3},{0xc89,2}}, {{0x2598,8},{0xd1a,7}}, {{0x27b95,4},{0x116c,1}}, + {{0xae5,1},{0x1dd7,2}}, {{0x3a22,4},{0xae7,2}}, {{0xb6c,3},{0x1b25b,4}}, {{0x142c,8},{0x1434,8}}, + {{0xcb8,3},{0x1081,3}}, {{0x142c,3},{0x15f26,3}}, {{0xea4b,6},{0x1499,2}}, {{0xb8b,2},{0xcd30,4}}, + {{0x278ad,3},{0x27aeb,2}}, {{0x6b38,5},{0x2af8,4}}, {{0x10ea,3},{0xb82,2}}, {{0x1ed69,3},{0x13b37,3}}, + {{0x26f1,4},{0x12d5,4}}, {{0xf870,5},{0x127c9,5}}, {{0xb8c,2},{0x12fe,2}}, {{0x181e,2},{0xb7d,1}}, + {{0xaf1,1},{0xb8f,3}}, {{0xb44,3},{0x1719,3}}, {{0xeb95,5},{0xd915,6}}, {{0x30,2},{0x432,128}}, + {{0x804,2},{0x24673,2}}, {{0x263d,5},{0x3f59,2}}, {{0x30c8,7},{0xaf2,1}}, {{0x1dbe,5},{0x583f,6}}, + {{0x2474d,4},{0x6f64,2}}, {{0x20d9,4},{0x1cf1b,4}}, {{0xfde0,7},{0x1144,4}}, {{0x10fd,2},{0x11f2,3}}, + {{0x10ea,3},{0xc4d,2}}, {{0x2c76a,4},{0x24515,2}}, {{0x2884e,6},{0x10ec,1}}, {{0x3af4,8},{0x28d4,6}}, + {{0xdbf,3},{0x72ad,5}}, {{0x27ac7,2},{0x278a9,1}}, {{0x1095,3},{0xaf2,1}}, {{0x1afd,5},{0x5277,2}}, + {{0x17c1d,7},{0xd0d,2}}, {{0x1dbe,5},{0x2be4,6}}, {{0x16ac,5},{0xa2ff,7}}, {{0x1e45,3},{0x1c4d9,4}}, + {{0x5e2b,6},{0xe08,7}}, {{0xd5ab,5},{0xf8e1,4}}, {{0x441c,3},{0xe1c,4}}, {{0x24a2d,2},{0x1b6cb,1}}, + {{0x3234,3},{0x1675,2}}, {{0xc77,2},{0xc34,3}}, {{0x67a6,3},{0xc62,3}}, {{0x1a326,4},{0xae5,1}}, + {{0x1c92,6},{0xb2c,2}}, {{0xcfd,10},{0x10c4,4}}, {{0xaca2,3},{0xcfcf,4}}, {{0xae9,2},{0x12b1,4}}, + {{0xc89,2},{0x2b,1}}, {{0x37c8,8},{0xdc0,6}}, {{0x4eed,9},{0xae7,1}}, {{0x11a04,6},{0xb2a,4}}, + {{0x166c,6},{0xaf1,1}}, {{0x41f6,4},{0xc30,2}}, {{0xa5e2,8},{0x10dc,2}}, {{0xbd2,4},{0xaf2,1}}, + {{0xb7f,3},{0x1f,1}}, {{0x1a0d,5},{0x46e0,6}}, {{0xb30,2},{0x1b4e3,1}}, {{0x1abc2,5},{0xbb1,3}}, + {{0x4c8a,6},{0x4c90,7}}, {{0xb72,2},{0xb2e,2}}, {{0xae6,3},{0x1a,2}}, {{0x134c,5},{0xe7b,9}}, + {{0x1cbf,9},{0xb52,6}}, {{0x2842,3},{0x152c4,2}}, {{0x28f6,2},{0x16e4,7}}, {{0x1a3a,6},{0x107e,5}}, + {{0x924,2},{0x278f3,2}}, {{0x261f,4},{0x760b,4}}, {{0xaf42,6},{0xb2f,1}}, {{0x397c,4},{0x9988,3}}, + {{0x1e,1},{0x4446,6}}, {{0x1d6b1,4},{0x12f1,3}}, {{0x242b1,5},{0xb54,2}}, {{0x1f,1},{0x986a,4}}, + {{0xb6c,3},{0x188ca,4}}, {{0xe64,5},{0xaf0,2}}, {{0x1085a,6},{0x10860,6}}, {{0x3655,4},{0xc2e8,4}}, + {{0x2a88c,3},{0x27d20,2}}, {{0x15d2c,6},{0xbd4,2}}, {{0xfdb4,5},{0x3a39,3}}, {{0xce2,3},{0xb2e,2}}, + {{0x1459e,3},{0x1018,3}}, {{0x4134,3},{0xb54,3}}, {{0x5401,5},{0x101b,3}}, {{0x30,2},{0xc34,2}}, + {{0xb52,2},{0xdc1,5}}, {{0x23a7d,6},{0xae2,1}}, {{0x244ad,2},{0x2ae5b,2}}, {{0x10ef,1},{0x1a1f4,2}}, + {{0x5184,7},{0x10dc,2}}, {{0x27abb,2},{0x278a9,1}}, {{0x312a,7},{0x1577,4}}, {{0xa546,7},{0x10c3,5}}, + {{0x1055,3},{0x1d,1}}, {{0xb48,2},{0x16ee,2}}, {{0xe77,3},{0x25da,3}}, {{0x2aacb,2},{0x5c78,2}}, + {{0xc25,3},{0x6aab,3}}, {{0xaee9,2},{0xbe0,1}}, {{0x10f78,6},{0x25df,4}}, {{0x13a18,6},{0xdf0,2}}, + {{0x8d16,5},{0x11ef,3}}, {{0xb1f4,5},{0x30f5,4}}, {{0x17253,6},{0xbc1,2}}, {{0x70ea,3},{0x1d,1}}, + {{0x6957,6},{0xb7d,1}}, {{0x24513,4},{0x244af,2}}, {{0x14ec4,6},{0x1ba8,4}}, {{0xcc0,3},{0xa24a,3}}, + {{0x1190,2},{0xb85,2}}, {{0x593c,5},{0xedd,3}}, {{0x1ed58,1},{0x734,2}}, {{0xb6be,3},{0xc7b,4}}, + {{0x39ce,5},{0x295c,5}}, {{0x253fb,3},{0x253e1,4}}, {{0x3694,4},{0xcc0e,3}}, {{0xb60,2},{0xcf68,2}}, + {{0xf9a9,6},{0xc67,2}}, {{0x6ac5,1},{0xb2e,2}}, {{0x6110,8},{0xb52,5}}, {{0x1d5a,3},{0x2b,3}}, + {{0x278c9,2},{0x27a01,2}}, {{0xb900,7},{0x1278,4}}, {{0x279ef,2},{0x1b6ab,1}}, {{0x27b4,3},{0x9901,9}}, + {{0x1095,3},{0x16e3,2}}, {{0x3afc,4},{0xd0d,2}}, {{0xcfff,6},{0xb63,2}}, {{0x1721d,5},{0xc55,2}}, + {{0x180c,4},{0x141b2,4}}, {{0x10c8,3},{0x14316,4}}, {{0x10e38,5},{0xbc29,5}}, {{0xb8b,2},{0x2d6a,7}}, + {{0x23294,4},{0x1f3ed,3}}, {{0x58ee,11},{0x11ef,2}}, {{0xbe7,1},{0xc45e,5}}, {{0x4c15,5},{0x1b,1}}, + {{0x10f3,1},{0x28,1}}, {{0x271e,3},{0xb82,2}}, {{0xa7da,3},{0x10f7,1}}, {{0xd645,6},{0x2af8,4}}, + {{0x139c,6},{0x5422,6}}, {{0x219c,4},{0x187a9,5}}, {{0x4178,4},{0x16f8,3}}, {{0x2796,3},{0xdc0,6}}, + {{0x6ac3,3},{0x4351,2}}, {{0x19f2a,5},{0x80be,4}}, {{0x441c,3},{0x18fbf,5}}, {{0x177c,7},{0xce1,4}}, + {{0x2793d,4},{0x27897,1}}, {{0x24a30,2},{0x24468,2}}, {{0x10ec,1},{0xab9c,1}}, {{0x1ec51,5},{0x2b,3}}, + {{0x20bb,11},{0xd0b,4}}, {{0x278a7,3},{0x2791d,2}}, {{0x6b54,2},{0x2aa0,3}}, {{0x6d81,3},{0xbe0,1}}, + {{0x2ca0,9},{0xb52,5}}, {{0xaea,1},{0xeb3,3}}, {{0x11ef,2},{0x28,1}}, {{0x1a0d,5},{0x10a2d,5}}, + {{0x27acd,2},{0x27acd,2}}, {{0xc55,2},{0xeb3,3}}, {{0x6c2f,5},{0x1a,1}}, {{0xc675,5},{0x5f03,5}}, + {{0x1084,3},{0x67c0,3}}, {{0x2313,8},{0x227a,3}}, {{0x7a6e,4},{0x115f0,4}}, {{0x5442,4},{0xcd5,2}}, + {{0x41da,3},{0xb8f,2}}, {{0xdd9e,5},{0x44a1,6}}, {{0x10fb,4},{0xf38f,3}}, {{0x78b2,5},{0x1a10,2}}, + {{0x2793d,4},{0x27aaf,2}}, {{0x27ac1,2},{0x27897,1}}, {{0x1eed4,2},{0xbe7,1}}, {{0xaca2,3},{0x1fcb4,5}}, + {{0x3e12,5},{0xbd4,2}}, {{0x60b5,8},{0x18eb,5}}, {{0x159c,4},{0x22db,8}}, {{0x1f883,3},{0x2db1,3}}, + {{0xb44,3},{0x1308,4}}, {{0xb7c,2},{0xbb4,4}}, {{0x1aaed,1},{0x10fa,1}}, {{0xeec,5},{0xb71,2}}, + {{0x10f7,1},{0x2b,2}}, {{0xdba,6},{0x4859,7}}, {{0x430,3},{0x9a9,1}}, {{0x178c,3},{0xc229,4}}, + {{0x2b854,2},{0xfb8b,2}}, {{0x102f,6},{0x1342,6}}, {{0x734,1},{0x27ca5,2}}, {{0xbb2,2},{0xfc6d,3}}, + {{0x16fc,5},{0xd915,6}}, {{0xb404,5},{0x15f4d,4}}, {{0x2c338,4},{0x15798,2}}, {{0x1eb1c,4},{0xb64,3}}, + {{0xbcb,3},{0x139e,4}}, {{0x7c4,8},{0x7c4,6}}, {{0x972a,7},{0x1c25,4}}, {{0x10f0,1},{0x9001,4}}, + {{0xfdf,2},{0x2575,5}}, {{0x142c,3},{0x1675,2}}, {{0x1b,1},{0x967e,4}}, {{0x112c,1},{0x2445e,1}}, + {{0xbde,3},{0xc2e,2}}, {{0x141e,3},{0x2195,7}}, {{0xda9,4},{0x385c,4}}, {{0x19bb8,5},{0x1621,4}}, + {{0x6b1e,4},{0xb6ff,4}}, {{0xbb5,1},{0xb8d,5}}, {{0xcfd,5},{0x64ca,5}}, {{0xb48,2},{0x28,2}}, + {{0x423e,1},{0x1878,1}}, {{0x1e27,5},{0x89d3,7}}, {{0xae7,2},{0x290f,3}}, {{0xab9a,3},{0x2045,3}}, + {{0x1040,5},{0x1081,3}}, {{0x17ec,5},{0x11c10,4}}, {{0xa9f6,8},{0xa9fe,4}}, {{0xfb1,2},{0x1525,7}}, + {{0x1468e,6},{0x1b07,4}}, {{0x27a5,7},{0x5d14,5}}, {{0xbbf,2},{0x1d,1}}, {{0x278ad,3},{0x27af1,2}}, + {{0xa4b,4},{0x157f2,2}}, {{0x7546,7},{0xae8,2}}, {{0xe9f3,6},{0x1af8,5}}, {{0x4362,4},{0xaea,1}}, + {{0x6ac5,2},{0xfffb,2}}, {{0x2793d,4},{0x116c,2}}, {{0x4c7d,6},{0x7d50,6}}, {{0xf52,5},{0xcd4,3}}, + {{0x5476,9},{0x1408,3}}, {{0x271e,3},{0x1a30,3}}, {{0x6d8e,3},{0x1878,1}}, {{0x2793d,4},{0x278dc,1}}, + {{0xf8f4,8},{0x187c,3}}, {{0x14cc,4},{0xcd5,2}}, {{0x244b9,2},{0x157a4,2}}, {{0xd76,7},{0x4679,6}}, + {{0xcd9,5},{0xbaf,2}}, {{0x2a24,3},{0xb2e,2}}, {{0xb65,2},{0xb9c,2}}, {{0xedb,6},{0x11f3c,4}}, + {{0x5b44,8},{0x11b8,4}}, {{0x1095,3},{0x1ea52,5}}, {{0xf10,3},{0x13fa9,2}}, {{0x22d54,6},{0xae7,1}}, + {{0x2d,1},{0xc50,2}}, {{0xab9c,1},{0xbe0,1}}, {{0xcce,3},{0x1a,1}}, {{0x12fe,2},{0xae6,2}}, + {{0x4286,2},{0x2843,2}}, {{0x422e,3},{0xce8,3}}, {{0x6f2e,6},{0xb2c,2}}, {{0x4617,6},{0xbcae,4}}, + {{0x100d,6},{0xb2c,2}}, {{0xefd,8},{0xd0b,4}}, {{0x4fbd,4},{0xcb8,2}}, {{0x145e6,2},{0xc1c,2}}, + {{0xeec,7},{0x2a23,4}}, {{0x20bb,3},{0x12ff,2}}, {{0x6d81,3},{0xf02,3}}, {{0xaeb,2},{0xaf2,1}}, + {{0x67eb,8},{0x11b8,4}}, {{0x41be,3},{0x27b6,1}}, {{0x4e98,3},{0x10dc,2}}, {{0xf74,4},{0x1942,4}}, + {{0x278ad,3},{0x278d5,2}}, {{0x2a1c,10},{0xd17,3}}, {{0xc6fe,4},{0xd57,2}}, {{0xcde,3},{0x1269f,2}}, + {{0x10f0,1},{0x2c00,3}}, {{0x279ef,2},{0x278d6,1}}, {{0x10e74,7},{0x2b,3}}, {{0x2e8a,6},{0xaeb,2}}, + {{0x181c,3},{0xe5d,2}}, {{0x1e18,7},{0x21d2,5}}, {{0x110cc,6},{0x35d6,4}}, {{0x122c,4},{0x14e8e,4}}, + {{0xf2e3,6},{0x1d11,5}}, {{0x10b36,7},{0x2b,3}}, {{0x122c,4},{0x47b3,3}}, {{0x2b854,2},{0x70a2,2}}, + {{0x92b6,5},{0x1d11,5}}, {{0x25c2,3},{0x1a,1}}, {{0x3234,3},{0xae2,1}}, {{0xc4c6,6},{0x1704,3}}, + {{0xcf3e,2},{0xaf2,1}}, {{0xba5,4},{0xa055,5}}, {{0xaea,2},{0xbe8,3}}, {{0x3db0,5},{0x1e,1}}, + {{0x279f5,2},{0x116e,1}}, {{0xceb,3},{0x25da,3}}, {{0x422e,3},{0xf38f,3}}, {{0xb2e,2},{0x1701,3}}, + {{0xcd9,5},{0xd6d,9}}, {{0x1015a,6},{0x1b7a5,8}}, {{0x1a0d,5},{0x43a1,3}}, {{0xf5e,3},{0x11ef,2}}, + {{0x122c,4},{0xcd30,4}}, {{0x74ba,3},{0x2b,1}}, {{0x1f,1},{0x8638,6}}, {{0x244bf,4},{0x159cb,2}}, + {{0x3e90,5},{0x4569,5}}, {{0x71da,6},{0xff7,5}}, {{0x2ae2,3},{0x8c45,4}}, {{0xbc2e,5},{0xf6a,5}}, + {{0x8d82,10},{0xd0d,2}}, {{0x298a,2},{0xb48,2}}, {{0x706a,3},{0x2048,9}}, {{0x27af7,2},{0x116c,1}}, + {{0x145a0,1},{0x1018,3}}, {{0x6ac5,1},{0x6ac5,1}}, {{0x10fb,3},{0xf21,3}}, {{0xbde,3},{0x26c6,1}}, + {{0x1ad0,5},{0x71eb,5}}, {{0xceb,3},{0xfb89,4}}, {{0x27b6,1},{0x600f,5}}, {{0x24a30,2},{0x2a96c,2}}, + {{0xeada,7},{0x2b,3}}, {{0xcc7,3},{0xc8a,2}}, {{0x422e,3},{0xb54,3}}, {{0x10ea,3},{0xf8cf,2}}, + {{0xf8cf,2},{0x4351,2}}, {{0x741a,7},{0xae7,1}}, {{0xc25,3},{0x13684,6}}, {{0xbb5,1},{0xae5,1}}, + {{0x9c9,1},{0x9a9,1}}, {{0x278ad,3},{0x278cf,2}}, {{0xb99,2},{0xc559,4}}, {{0xbde,3},{0x9813,5}}, + {{0x244f5,2},{0x15798,2}}, {{0x3fb6,8},{0xce8,3}}, {{0x10ea,3},{0x10f2,1}}, {{0x2b76,3},{0x1a,2}}, + {{0x3e90,10},{0xbb4,4}}, {{0xbfa9,7},{0xb65,2}}, {{0x40f8,5},{0x92c9,4}}, {{0x4fbd,4},{0xb52,2}}, + {{0x14d4,3},{0xc67,3}}, {{0x3f59,2},{0x28,2}}, {{0x11c34,6},{0x1489,3}}, {{0x10f0,1},{0x25e22,3}}, + {{0x177c,7},{0x11d3,9}}, {{0x157a0,6},{0x6f6e,6}}, {{0x10fb,4},{0xbe8,3}}, {{0xf655,4},{0x7438,5}}, + {{0x1a,1},{0x127a9,5}}, {{0x271e,3},{0x1a06,7}}, {{0x4882,3},{0xb78,2}}, {{0x1878,1},{0x10ba,2}}, + {{0x2474d,2},{0x244c3,2}}, {{0x40f8,6},{0x1058,4}}, {{0x13680,5},{0x1704,3}}, {{0x122ba,6},{0xd0d,2}}, + {{0x27b4,3},{0x152c3,3}}, {{0xb63,2},{0xd57,2}}, {{0x2445c,3},{0x117c,1}}, {{0x10fb,3},{0x28cf,3}}, + {{0x256b,4},{0x13dd2,6}}, {{0x10188,4},{0xff24,4}}, {{0x1c47,8},{0x12a5,7}}, {{0xb7f,3},{0x5c76,4}}, + {{0xba9,4},{0x2944,4}}, {{0x533e,6},{0x7109,5}}, {{0x2868,4},{0xe99,3}}, {{0x5358,5},{0x1ed0,4}}, + {{0xb2f,1},{0x139e,3}}, {{0xec50,5},{0x7bb9,5}}, {{0xbaf,2},{0xaf2,1}}, {{0x4491,6},{0x28,1}}, + {{0xae0,1},{0xd4b4,5}}, {{0x41da,3},{0x6ac5,1}}, {{0x70a0,2},{0x24515,2}}, {{0x3eba,8},{0x1f13,4}}, + {{0x30,112},{0x30,12}}, {{0x17fe,3},{0x3cc7,5}}, {{0x100b0,2},{0x152c4,2}}, {{0xb52,2},{0xbed,2}}, + {{0xb9f,2},{0xde9,2}}, {{0xf10,3},{0xeb2,2}}, {{0x29330,2},{0xbe4,1}}, {{0x377c,3},{0xc67,2}}, + {{0x1b0a,2},{0xae6,2}}, {{0x1ab2,4},{0xcb8,2}}, {{0x9a9,3},{0x24467,2}}, {{0xddc,5},{0xb8e4,6}}, + {{0x30,2},{0x27e43,3}}, {{0xceb,3},{0x12ff,3}}, {{0x1f0f,4},{0x18eb,5}}, {{0x16bc,6},{0x47fd,6}}, + {{0x146c,9},{0x1498,3}}, {{0xf6e4,5},{0xedf,3}}, {{0xcd5,3},{0xec2,2}}, {{0xb6c,3},{0xb47,2}}, + {{0x20209,5},{0x3a3b,3}}, {{0x10ca,1},{0xbe0,1}}, {{0x14dc,9},{0xd1a,7}}, {{0x283f,2},{0xbeb,6}}, + {{0x16e2,2},{0x1ce39,4}}, {{0xcc00,7},{0x25c2,3}}, {{0xc89,3},{0x132f,3}}, {{0xae0,1},{0x21,1}}, + {{0xafc6,4},{0xfe68,7}}, {{0x6ac3,3},{0xf24c,8}}, {{0x1d46,4},{0x13c7f,5}}, {{0xbde,3},{0x1035,4}}, + {{0x7c4,16},{0x7c4,3}}, {{0xf92d,6},{0x12b1,3}}, {{0x6f21,4},{0xeb2,1}}, {{0x939a,8},{0xb7c,3}}, + {{0x13c70,6},{0x52c6,3}}, {{0x1040,6},{0x116fe,4}}, {{0x2061,5},{0xbd6,4}}, {{0xb49e,4},{0xf10,3}}, + {{0x4f62,5},{0x1257,3}}, {{0xbd5,3},{0xae0,1}}, {{0x3df6,9},{0xb52,5}}, {{0x697e,8},{0x11b8,4}}, + {{0x2445f,1},{0x24468,2}}, {{0x6e10,4},{0xc1c,2}}, {{0x372e,8},{0x3736,5}}, {{0x28,2},{0x69f7,3}}, + {{0x27abb,2},{0x1b6ab,1}}, {{0xfff,4},{0xd0b,3}}, {{0x2a530,4},{0x278a9,1}}, {{0xaca2,3},{0x272ec,3}}, + {{0x9baa,5},{0x8bb3,7}}, {{0x159c8,1},{0x432,2}}, {{0x10f7,1},{0x2b476,3}}, {{0x2c338,4},{0x6f64,2}}, + {{0x143e,3},{0x83a5,5}}, {{0x19b3,4},{0x750e,8}}, {{0x141c,10},{0xb52,6}}, {{0x5879,9},{0x5882,4}}, + {{0xb2c,2},{0xc57,4}}, {{0xab9a,3},{0xd7f,3}}, {{0x1e,1},{0x2c00,5}}, {{0x27b4,3},{0x10f2,1}}, + {{0x3e19,4},{0xb48,2}}, {{0xa02a,6},{0x4797,6}}, {{0xb2c,2},{0xbbf,2}}, {{0x415e,3},{0xc2e7,5}}, + {{0x13a9a,5},{0x11e2,3}}, {{0xc13,4},{0x1e56,4}}, {{0x1c,2},{0x1719,3}}, {{0xd76,5},{0x2318,4}}, + {{0xb7d,1},{0x1b,1}}, {{0x2789,3},{0x1701,3}}, {{0x38d2,7},{0xcd30,4}}, {{0x10f2,1},{0xb74,2}}, + {{0x1b22,3},{0xb63,2}}, {{0x122ba,6},{0x28,1}}, {{0x10fb,4},{0xa0ca,7}}, {{0xfda,8},{0x2b,3}}, + {{0x17bc,3},{0x14bb5,2}}, {{0x713e,5},{0x28be,3}}, {{0xae6,2},{0xb48,2}}, {{0x3d78,9},{0xdf9,5}}, + {{0x4106,4},{0xb8f,2}}, {{0xd41,4},{0xb9d,3}}, {{0x278ad,3},{0x27977,2}}, {{0xfd9e,4},{0xc8f,2}}, + {{0x19c24,4},{0x10dc,2}}, {{0x31e0,5},{0x1f,1}}, {{0x734,2},{0x27d8b,2}}, {{0x3fee,5},{0x1434,3}}, + {{0xaea,1},{0x9b89,7}}, {{0x10c8,3},{0x5aab,3}}, {{0x1865,4},{0xc63,3}}, {{0x2796,3},{0x2744e,3}}, + {{0x9b1a,5},{0xb2f,1}}, {{0x6c08,4},{0x10cc0,6}}, {{0x2cf0d,2},{0x2446c,1}}, {{0xb33e,5},{0x2ae7,4}}, + {{0x6f62,4},{0x1015e,2}}, {{0xe64,4},{0x323c,2}}, {{0x1a816,2},{0x10ed,2}}, {{0x162c,10},{0xff7,5}}, + {{0x6b52,4},{0xbd1,2}}, {{0xc34,2},{0xb70,2}}, {{0xd0ff,2},{0x10dc,2}}, {{0xb55,2},{0xb78,2}}, + {{0x6ac3,3},{0x1c20,5}}, {{0x5288,5},{0xc55,2}}, {{0x178c,3},{0x10d9b,4}}, {{0x239a,11},{0x2b,3}}, + {{0x14eb0,5},{0x263f,3}}, {{0xd0db,7},{0x4459,3}}, {{0xb55,2},{0xaef,3}}, {{0xd41,3},{0x10569,3}}, + {{0x1062,8},{0x24fb,6}}, {{0x46f4,6},{0x1408,3}}, {{0x11c3,7},{0xb2e,2}}, {{0x3862,9},{0x1c25,4}}, + {{0xa7da,3},{0x1701,3}}, {{0x146e8,6},{0xae7,1}}, {{0xfad1,7},{0xd0d,2}}, {{0xcc7,3},{0x28da,1}}, + {{0xe31,5},{0xe36,5}}, {{0xf52,4},{0x804f,7}}, {{0x4034,9},{0x10c3,5}}, {{0x5442,4},{0x21,1}}, + {{0x10ca,3},{0x7bb7,7}}, {{0xb8b,2},{0x2b3e,4}}, {{0x6c08,4},{0x8c46,4}}, {{0x43e3,1},{0x10f2,1}}, + {{0xc675,5},{0xcb8,2}}, {{0x1c,1},{0xdfd2,8}}, {{0xd41,3},{0x1c758,5}}, {{0x2748,2},{0x2b,1}}, + {{0x5630,6},{0x1308,3}}, {{0x9aae,8},{0xb78,2}}, {{0x422e,3},{0x1c25,3}}, {{0x1173,2},{0x1173,2}}, + {{0xbe4,1},{0xaa95,3}}, {{0x90e2,4},{0x84dd,5}}, {{0x1ba2,8},{0xb78,2}}, {{0xb6c,4},{0x5c72,4}}, + {{0x1e8af,7},{0xae7,1}}, {{0x18f34,7},{0xc1e,2}}, {{0x2793d,4},{0x116d,1}}, {{0x2c8c0,4},{0xab1,2}}, + {{0x2dfe,6},{0x202c,8}}, {{0x2d,1},{0x1b4f,3}}, {{0x422e,3},{0xc1c,2}}, {{0xfdd,2},{0x4ee5,8}}, + {{0x600c,8},{0xb7c,3}}, {{0x251df,1},{0x24461,1}}, {{0x14e56,6},{0x1b,1}}, {{0x278ad,3},{0x27ae5,2}}, + {{0x27d95,4},{0x6fae,2}}, {{0x5277,2},{0xc67,2}}, {{0x10c8,3},{0xbe0,1}}, {{0x14bc,5},{0x1bdb,3}}, + {{0x174c,11},{0x227a,3}}, {{0x2445c,3},{0x2a8e0,2}}, {{0x265b,7},{0xb52,5}}, {{0x10ec,1},{0x1f734,5}}, + {{0x41da,3},{0xeb3,3}}, {{0xb85,2},{0xd51,2}}, {{0x183eb,6},{0x1719,3}}, {{0x10ea,3},{0x2bfc,2}}, + {{0xbd4c,5},{0xd48,2}}, {{0x41da,3},{0xc51,3}}, {{0x2c434,4},{0x157a4,2}}, {{0xb72,2},{0x5cd6,3}}, + {{0x3e92,3},{0x2b,1}}, {{0x1c25,3},{0x1d,1}}, {{0x7702,8},{0x1498,3}}, {{0x5c3b,9},{0x5c44,4}}, + {{0xd0f,6},{0xd17,3}}, {{0x3de8,5},{0xea03,6}}, {{0xae5,1},{0xc4d,2}}, {{0xd43,6},{0xae7,1}}, + {{0x1dec2,4},{0xaf1,1}}, {{0x1700,4},{0xb2c,4}}, {{0x27b6,1},{0x28da,1}}, {{0x1c32,3},{0x43aa,10}}, + {{0x10f0,1},{0x26c6,1}}, {{0x17bc,3},{0x1d,1}}, {{0x2a93f,2},{0x28633,2}}, {{0x155ae,5},{0xac49,5}}, + {{0x278d6,1},{0x278b5,2}}, {{0x9f8e,9},{0x10dc,2}}, {{0x863e,7},{0x4a56,5}}, {{0xb44,3},{0xc57,3}}, + {{0x2d,1},{0xb71,2}}, {{0xb7c,2},{0xee1a,4}}, {{0xf924,5},{0x1865,4}}, {{0xcc7,3},{0x9911,4}}, + {{0x17bc,3},{0x1aaed,1}}, {{0xaea,1},{0xa24a,3}}, {{0x20faa,5},{0xb79,2}}, {{0xae5,1},{0xc1c,2}}, + {{0xc25,3},{0xc2d2,5}}, {{0xae2,1},{0x1d,1}}, {{0x1aff,3},{0xadf,2}}, {{0x2610,8},{0x2b3e,4}}, + {{0x27b4,3},{0xcdf,3}}, {{0x9136,6},{0x132f,3}}, {{0x364e,5},{0x1930,3}}, {{0xc6d,7},{0x102c,2}}, + {{0x2df5,3},{0x1377,5}}, {{0xc55,2},{0x2b,2}}, {{0x1cbf,5},{0x2a69,7}}, {{0x432,2},{0xb31,1}}, + {{0xdde0,5},{0x11b8,4}}, {{0xf0e,5},{0x1489,3}}, {{0x40c2,2},{0xb48,2}}, {{0x6957,7},{0xb52,5}}, + {{0x162c,6},{0x2a24,6}}, {{0x28e54,3},{0xb31,1}}, {{0x710e,6},{0x1b12,5}}, {{0x2451f,2},{0x70a6,2}}, + {{0xbe0,1},{0x14b6,2}}, {{0xbde,3},{0xaf09,9}}, {{0x46f4,5},{0x7a46,4}}, {{0x27ce8,3},{0x1ed58,1}}, + {{0x4de1,3},{0xc1c,2}}, {{0x3678,6},{0x1e1f,8}}, {{0x2796,3},{0x1675,2}}, {{0xcd3,2},{0xc67,3}}, + {{0x1af19,6},{0x2747,3}}, {{0x78b2,5},{0xb2c,2}}, {{0x10190,6},{0x1b23b,4}}, {{0x1e45,3},{0xae5,1}}, + {{0x27923,2},{0x278dc,1}}, {{0x10c8,3},{0x14d9d,5}}, {{0x10f3,1},{0x4d97,2}}, {{0x7e52,6},{0x1260,4}}, + {{0x10fb,3},{0x2b,2}}, {{0x41da,3},{0x14c51,7}}, {{0x2474d,4},{0x70ca,2}}, {{0x2796,3},{0x1fe84,4}}, + {{0x26d19,4},{0x115c,2}}, {{0xd41,3},{0x19533,4}}, {{0x2ac5b,4},{0x70d0,4}}, {{0x969,16},{0x969,16}}, + {{0xeb6,3},{0x1d,1}}, {{0x14b6,2},{0xfe5,2}}, {{0xbb2,2},{0xc1c,2}}, {{0x422e,3},{0xe78,3}}, + {{0x61c6,6},{0x7fda,4}}, {{0xb2f,1},{0x13dd0,5}}, {{0xc1cf,9},{0xae7,1}}, {{0x14c62,6},{0x14c68,4}}, + {{0x1051,4},{0x16f8,4}}, {{0x40f8,4},{0x19dfc,5}}, {{0x278ad,3},{0x27b09,2}}, {{0x90be,5},{0x1278,4}}, + {{0x2791d,2},{0x116e,1}}, {{0x397a,5},{0x27,1}}, {{0x21967,4},{0xb63,2}}, {{0x6957,5},{0x385d,5}}, + {{0x12c6a,6},{0xb67,2}}, {{0xbed,2},{0xd7a,3}}, {{0x271e,3},{0x14934,2}}, {{0x4354,4},{0x198f7,3}}, + {{0x10ca,1},{0x10ec,1}}, {{0x27a2b,2},{0x116d,1}}, {{0x10fb,3},{0x13c05,7}}, {{0x167c,6},{0xcc3,4}}, + {{0x1d7b7,6},{0xb2c,2}}, {{0xcde,3},{0xce1,7}}, {{0xf85,4},{0xdf87,6}}, {{0x3598,5},{0xbb5,3}}, + {{0x10e42,6},{0x151e,4}}, {{0xa014,3},{0xbd6,2}}, {{0xcd9,4},{0xb8f,3}}, {{0x1762,3},{0xb8f,3}}, + {{0xbcb,3},{0xae9,2}}, {{0x1ac1,5},{0x2f5f,4}}, {{0x10602,6},{0xb2e,2}}, {{0xbeb,2},{0x11e4,4}}, + {{0xcd9,3},{0x67c0,3}}, {{0x1171,2},{0x278a9,1}}, {{0x16f33,4},{0x2e56,4}}, {{0x46f4,4},{0x1971,2}}, + {{0x177c,3},{0x10f3,1}}, {{0x2445e,2},{0x251d8,2}}, {{0x8ec6,8},{0xe1c,4}}, {{0x10ca,1},{0x4687,5}}, + {{0xcfd,5},{0x2a77,7}}, {{0xc34,2},{0xcf6,3}}, {{0x135c,9},{0xd1a,7}}, {{0x2793d,4},{0x27acd,2}}, + {{0x2798,2},{0xc78,3}}, {{0x167c,5},{0x27,1}}, {{0xaea,1},{0xb8a,2}}, {{0xd04c,5},{0x97fc,6}}, + {{0x13bc,9},{0xf05,7}}, {{0x9a9,3},{0x1b4e3,1}}, {{0xcd9,5},{0x9e43,4}}, {{0x4429,6},{0xb1e4,5}}, + {{0xd65,3},{0xdf0,2}}, {{0x70dc,6},{0xb2f,1}}, {{0x14b6,2},{0xb8f,2}}, {{0xb73,2},{0x28,2}}, + {{0xb4b,2},{0xec5,5}}, {{0x170c,5},{0x1308,3}}, {{0xb9c,2},{0x2d,1}}, {{0xcd9,3},{0xb2e,2}}, + {{0x27aa9,2},{0x278d6,1}}, {{0x4a27,4},{0x166d4,5}}, {{0x1c,1},{0x2af8,4}}, {{0x364e,4},{0x125c2,4}}, + {{0x27a13,2},{0x1b6ab,1}}, {{0xceb,3},{0xcc0e,3}}, {{0xaf3,20},{0xaf3,20}}, {{0xfd88,6},{0x1719,3}}, + {{0x2099d,2},{0x15b3f,2}}, {{0x279ef,2},{0x116d,1}}, {{0xf2e5,4},{0xae7,1}}, {{0x1773,3},{0xf02,3}}, + {{0xacbc,5},{0xe70,4}}, {{0x10ec,1},{0x8a49,3}}, {{0xb9d,3},{0xb55,2}}, {{0x1f3a,3},{0xaf2,1}}, + {{0x4728,8},{0x2a95,5}}, {{0xaea,1},{0xb9e,2}}, {{0x2b26,10},{0xd7f,3}}, {{0x593c,5},{0x127d3,5}}, + {{0x177c,3},{0x22eb5,4}}, {{0xb7d,1},{0x1685,7}}, {{0x1c,1},{0xb2e,2}}, {{0x4f6f,5},{0x21d2,6}}, + {{0xb01a,4},{0xae2,1}}, {{0xafd2,6},{0xc67,3}}, {{0x39d2,3},{0xae7,1}}, {{0xbaf,2},{0xe2c0,4}}, + {{0x30ba,5},{0xb2c,2}}, {{0x4290,7},{0x1fe4,5}}, {{0x4286,2},{0xd54,1}}, {{0xeec,7},{0xadf,2}}, + {{0xded,5},{0x2b,2}}, {{0x16ef,4},{0x2742,3}}, {{0x8056,9},{0x1719,3}}, {{0x2ad93,4},{0xb89,2}}, + {{0x1b6dd,2},{0xff02,2}}, {{0xcb5,3},{0xf14,2}}, {{0x1ed3,3},{0x1489,3}}, {{0x278ad,3},{0x27ad3,2}}, + {{0xc17,3},{0x6455,3}}, {{0x244b9,2},{0x15798,2}}, {{0xb73,2},{0xbd3,3}}, {{0xae1,3},{0x1916,5}}, + {{0xaea,1},{0x12a5,7}}, {{0xbb5,1},{0xfe5,2}}, {{0xe64,4},{0x13437,5}}, {{0x10ec,1},{0x4288,2}}, + {{0x41ef,2},{0x2b,1}}, {{0x515d,6},{0xb9c2,4}}, {{0xc9e,3},{0xb6e,2}}, {{0x142c,3},{0x2c0a,4}}, + {{0xb99,2},{0xf21,3}}, {{0x1051,4},{0xc1e,2}}, {{0x3234,4},{0x2318,4}}, {{0x364e,5},{0x1014,3}}, + {{0x181c,3},{0xc29,2}}, {{0x278a9,1},{0x924,3}}, {{0x1ed51,3},{0x28e89,2}}, {{0x1fad9,4},{0x22dd,3}}, + {{0x6d8e,3},{0x184bd,5}}, {{0x1e45,4},{0xc55,2}}, {{0x4284,2},{0x428d,3}}, {{0xa1c2,6},{0xaf2,1}}, + {{0x24f8e,2},{0x1ed53,1}}, {{0x10056,3},{0x2d44,4}}, {{0x17ac,3},{0x26c6,1}}, {{0x11f86,6},{0x11f8c,4}}, + {{0x1aee,6},{0x10dc,2}}, {{0x1abcf,2},{0x10f6,2}}, {{0x27d8b,2},{0x2445e,1}}, {{0x10ef,1},{0xfcaf,2}}, + {{0x12ac,5},{0xb4e4,4}}, {{0x156c6,5},{0xf63c,2}}, {{0x5c3b,6},{0x5bc1,5}}, {{0x1b4f,4},{0x12be,3}}, + {{0x609b,10},{0xb7c,3}}, {{0x2474d,4},{0x1dec4,2}}, {{0xce2,3},{0x5cd6,3}}, {{0x101c0,7},{0x2b,3}}, + {{0x4c15,5},{0xe7bd,5}}, {{0xaeee,4},{0xec2,2}}, {{0x180c,7},{0xb2c,2}}, {{0x15504,6},{0xbb3,2}}, + {{0x4cd8,6},{0x1667,5}}, {{0x27ac1,2},{0x116c,1}}, {{0x4b45,9},{0xae7,1}}, {{0x10fb,3},{0x5af9,3}}, + {{0x6ac3,4},{0xde2,4}}, {{0x5476,4},{0xf10,3}}, {{0x70ea,3},{0x102f9,3}}, {{0x1cbf,5},{0xd8e,3}}, + {{0xb2c5,6},{0xb78,2}}, {{0x9423,3},{0xb2e,2}}, {{0xbb5,2},{0x1c1d1,4}}, {{0xc37,3},{0xaf0,2}}, + {{0x3234,3},{0x1b25b,4}}, {{0x13d24,7},{0xc63,3}}, {{0xd54,1},{0xde9,1}}, {{0x1e,1},{0x535b,5}}, + {{0x244b9,2},{0x25216,4}}, {{0x11ec8,5},{0x177b2,4}}, {{0x1a609,3},{0x11ef,2}}, {{0x422e,3},{0x197f,7}}, + {{0xaab6,6},{0xb52,6}}, {{0x1aff,3},{0xb7a,5}}, {{0x3c36,11},{0x10dc,2}}, {{0x2b,2},{0x1099,3}}, + {{0x2798,2},{0xc76,9}}, {{0xc37,3},{0xc8e,3}}, {{0x1b6ab,2},{0x27897,1}}, {{0x3113,5},{0xaf2,1}}, + {{0x178c,3},{0x16322,6}}, {{0x10f0,1},{0x2c00,5}}, {{0x415c,5},{0x92d0,4}}, {{0x6e37,5},{0x5396,3}}, + {{0xca5,2},{0xca7,3}}, {{0x36b0,6},{0x12bf8,4}}, {{0xf485,8},{0xf48d,3}}, {{0x3678,4},{0x2b,1}}, + {{0x18ca,3},{0xb9d,3}}, {{0x4d08,4},{0x159b1,5}}, {{0xb73,2},{0x229f,9}}, {{0x314d,3},{0x1d8c,3}}, + {{0xf3ca,5},{0xb85,2}}, {{0x1b,1},{0xbd6,2}}, {{0x27a2b,2},{0x1b6ab,1}}, {{0x1c83,4},{0x259bb,4}}, + {{0x19cd8,5},{0xdf0,2}}, {{0x2793d,4},{0x278d5,2}}, {{0xbc0,4},{0xb2f,1}}, {{0x6d81,3},{0x250f6,2}}, + {{0x36da,5},{0xb64,2}}, {{0x92b6,5},{0xae0,2}}, {{0xf30,6},{0x2b3e,4}}, {{0x276b,5},{0x3788,3}}, + {{0x154aa,6},{0x6714,4}}, {{0x10ea,3},{0xab9c,1}}, {{0x14bc,4},{0x21,1}}, {{0x17819,6},{0x10dc,2}}, + {{0x14b6,2},{0x28,1}}, {{0xaea,1},{0x142e,1}}, {{0x1ed51,3},{0x159c8,1}}, {{0x1c,1},{0x1614,7}}, + {{0x10ef,1},{0x3a41,6}}, {{0x181c,3},{0x1762,3}}, {{0xfcac,5},{0x27b6,1}}, {{0x27b4,3},{0x443e,2}}, + {{0x24462,1},{0x2b751,2}}, {{0x1e45,3},{0x1b25b,4}}, {{0x1c,1},{0xb8f,2}}, {{0x189af,6},{0x10569,3}}, + {{0xc13,4},{0x4531,9}}, {{0xb396,5},{0x4446,6}}, {{0x116d,2},{0x116d,1}}, {{0x1c,1},{0xb7d,1}}, + {{0x1c,1},{0xbd90,3}}, {{0x2a54,10},{0xbed,4}}, {{0x27c6d,4},{0x924,2}}, {{0x364e,4},{0xf32,3}}, + {{0xc13,7},{0xc1a,11}}, {{0xbb5,1},{0x323c,2}}, {{0xde9,1},{0x15c2a,6}}, {{0x1f8f,8},{0xb7a,5}}, + {{0xb4a,2},{0x11b8,4}}, {{0x2465d,6},{0x6f74,6}}, {{0xe6d,2},{0x12d23,5}}, {{0x6ac3,3},{0xd54,1}}, + {{0x1171,2},{0x27897,1}}, {{0x10fb,3},{0x283f,2}}, {{0x946,3},{0x948,16}}, {{0x1ff89,5},{0x32d8,3}}, + {{0x181b4,7},{0xb9c,2}}, {{0x1c8f,3},{0xbac,4}}, {{0x244ad,2},{0x24733,2}}, {{0x5ead,9},{0x2bfc,3}}, + {{0x1b,1},{0xcb8,2}}, {{0x16bc,6},{0x2c39,5}}, {{0xb0e1,4},{0xb066,2}}, {{0x1a,2},{0x2b,2}}, + {{0x6e51,6},{0x2f1c,7}}, {{0x9a9,1},{0x2658c,3}}, {{0x6ac5,1},{0xaeb,2}}, {{0x1a,1},{0x2b,1}}, + {{0xf212,3},{0xe6d,2}}, {{0x422e,3},{0xbe0,1}}, {{0x70dc,4},{0x6f6c,2}}, {{0x200b1,7},{0xae7,1}}, + {{0xbeb,2},{0x1f13,4}}, {{0x27ae5,2},{0x278af,1}}, {{0x70ac,4},{0x70a0,4}}, {{0x142bc,3},{0x16a1,3}}, + {{0x257a,4},{0x715a,3}}, {{0xb6c,3},{0x1da3,3}}, {{0x152c4,2},{0x10ec,1}}, {{0xbeb,1},{0x5277,2}}, + {{0xaa40,4},{0xc21,4}}, {{0x18a5,8},{0x1498,4}}, {{0x26f1,4},{0xc77,2}}, {{0x15a70,2},{0xae7,1}}, + {{0x1171,2},{0x278d6,1}}, {{0xb262,6},{0x9000,5}}, {{0xc25,4},{0xae2,2}}, {{0x10e3,2},{0x26fb,5}}, + {{0xa246,4},{0x1101e,4}}, {{0x1f621,5},{0x19c9,3}}, {{0x14b42,4},{0x2702,3}}, {{0x15fa2,7},{0x10dc,2}}, + {{0x155b8,6},{0x5aae,4}}, {{0x2d,1},{0xcd5,2}}, {{0xcb5,3},{0x36c1,5}}, {{0x6e78,8},{0x12ff,2}}, + {{0x14698,5},{0x1694,2}}, {{0x278ad,3},{0x27a8b,2}}, {{0xac96,8},{0x90ae,4}}, {{0xaea,1},{0xc77,2}}, + {{0xa6c6,7},{0xff7,5}}, {{0x1ba4d,5},{0x10dc,2}}, {{0x1257,2},{0x79f9,4}}, {{0x159c,10},{0xd7f,3}}, + {{0x43a5,3},{0xb52,3}}, {{0xc30,2},{0xae6,2}}, {{0xe2dc,5},{0x1f13,4}}, {{0xb7d,1},{0x10c4,4}}, + {{0xbe0,1},{0xb55,2}}, {{0x279ef,2},{0x27897,1}}, {{0x20d9,10},{0xb52,5}}, {{0x9112,7},{0x9000,5}}, + {{0x20e8,6},{0xe0a,5}}, {{0xba5,4},{0xde9,4}}, {{0x5c62,7},{0xb52,6}}, {{0x46f4,4},{0x1b0a,2}}, + {{0xc13,3},{0xb8b,2}}, {{0xa522,8},{0xb2c,4}}, {{0xb4a,4},{0x1a,3}}, {{0xbe7,1},{0xab9c,1}}, + {{0xd17,3},{0x140a,2}}, {{0x5102,5},{0x802b,3}}, {{0x2b50,6},{0xc63,3}}, {{0xc37,3},{0x7585,5}}, + {{0x1068e,7},{0x10dc,2}}, {{0x27d0f,2},{0x9a9,1}}, {{0x261f,4},{0xb6e,2}}, {{0x10fb,3},{0x14934,2}}, + {{0x3a14,6},{0x14a7,5}}, {{0xa552,5},{0xa557,7}}, {{0xd65,3},{0x20d2e,4}}, {{0x19d7c,3},{0xb141,3}}, + {{0x20,2},{0x2382,9}}, {{0x10ca,1},{0x283e,2}}, {{0xca7,2},{0x2bfc,2}}, {{0x51ab,7},{0x11e6,6}}, + {{0x5a40,8},{0x2bca,4}}, {{0xc2e,2},{0x12b1,4}}, {{0x29082,2},{0x26c6,1}}, {{0x256b,4},{0x1055,3}}, + {{0x2d,1},{0x11b8,4}}, {{0x1c,1},{0x131b3,4}}, {{0xceb,3},{0x27,1}}, {{0xd76,5},{0x5203,3}}, + {{0x41dc,3},{0x1058,9}}, {{0x441c,3},{0x18fc9,4}}, {{0x430,18},{0x432,6}}, {{0x10fb,3},{0x4351,2}}, + {{0xd87,11},{0x2b,3}}, {{0xd57,2},{0x2b,1}}, {{0x4354,7},{0x10569,3}}, {{0x6ac3,4},{0xb64,2}}, + {{0xceb,3},{0xb52,5}}, {{0x41be,3},{0x10ef,1}}, {{0x1d375,5},{0x1c8f,3}}, {{0x3678,4},{0xc30,2}}, + {{0xb257,5},{0x12d0c,4}}, {{0x20cd,4},{0x1489,3}}, {{0x1c,1},{0x5af9,3}}, {{0xbe7,1},{0x1aaed,1}}, + {{0x100b0,2},{0x17ae,1}}, {{0x13e1e,6},{0xbac,4}}, {{0x26f1,5},{0x66d0,4}}, {{0x2bd8c,2},{0x2446c,1}}, + {{0xea98,8},{0x2b,3}}, {{0x325e,5},{0xb51d,5}}, {{0x3846,4},{0x40b6,3}}, {{0xcb8,2},{0xdac,3}}, + {{0xe7b,3},{0xd1b,1}}, {{0x41da,3},{0x10f7,1}}, {{0xaca2,3},{0x1da38,5}}, {{0x10ec,1},{0x50fc,6}}, + {{0x22e6,5},{0x700f,3}}, {{0x27ac7,2},{0x278af,1}}, {{0x10fd,2},{0x1ad64,5}}, {{0xaee9,2},{0x10f0,1}}, + {{0x1574c,2},{0x1aaed,1}}, {{0x579c,8},{0xae7,1}}, {{0x41be,3},{0xbe0,1}}, {{0x1bfc,9},{0xb52,6}}, + {{0x10f7,1},{0xb7c,3}}, {{0x422e,3},{0xfdd,2}}, {{0x1e27,10},{0xb9d,3}}, {{0x2445f,1},{0x27e2a,2}}, + {{0xc49,3},{0x259bb,4}}, {{0x6f21,5},{0xe560,5}}, {{0x15504,6},{0xae5,4}}, {{0x1c,1},{0x15c61,3}}, + {{0xb257,5},{0x22bf,4}}, {{0x23dbe,5},{0xc34,2}}, {{0x10fa,1},{0xaf62,2}}, {{0x7c4,16},{0x7c4,7}}, + {{0x10c8,5},{0x7048,4}}, {{0x98c2,6},{0xb4b,2}}, {{0x178c,3},{0x29122,2}}, {{0x27923,2},{0x27897,1}}, + {{0xb55,2},{0x16ae,3}}, {{0xc37,3},{0xb65,2}}, {{0x15180,5},{0x8f96,3}}, {{0x1b,1},{0xeb3,3}}, + {{0xf0e,5},{0x1e13,4}}, {{0xcd3,2},{0x5277,2}}, {{0x167c,5},{0x7297,3}}, {{0x2b,1},{0x1701,3}}, + {{0x270b5,4},{0x4284,2}}, {{0x1574b,2},{0x10ed,2}}, {{0xf752,4},{0x10f4,7}}, {{0xb75,3},{0x51b0,4}}, + {{0x92a0,3},{0xeb2,1}}, {{0x244b3,2},{0x70d2,2}}, {{0x20bb,5},{0x1197,4}}, {{0xacf8,2},{0x2abe,5}}, + {{0x1f9e1,5},{0xfe5,2}}, {{0x2b5e,9},{0xb54,3}}, {{0x7a06,5},{0xaf2,1}}, {{0xf6e4,5},{0xb54,2}}, + {{0x2798,2},{0xbb4,4}}, {{0x4dcf,9},{0xb7c,3}}, {{0x27ac1,2},{0x278af,1}}, {{0xae0,1},{0xed0,3}}, + {{0x261f,4},{0xb6f,3}}, {{0xbe0,1},{0x6738,7}}, {{0xcca,3},{0x1372,3}}, {{0x7a6e,5},{0x11b8,4}}, + {{0xf96,11},{0xfa1,6}}, {{0x80ce,6},{0x8110,6}}, {{0x3846,4},{0x1642,3}}, {{0xba7,3},{0x1491,7}}, + {{0x1b13e,4},{0x27b03,2}}, {{0xca1c,7},{0x2af8,4}}, {{0xaa98,2},{0xa7d8,2}}, {{0x41da,3},{0x2bfc,2}}, + {{0xbe7,1},{0xb066,2}}, {{0xf535,7},{0x1081,3}}, {{0x1a634,5},{0xc34,2}}, {{0xaa26,8},{0xebf,4}}, + {{0xc4d,2},{0x11b8,4}}, {{0x1f459,5},{0x14d5,3}}, {{0x142c,3},{0x21705,4}}, {{0x10ea,3},{0xeb3,3}}, + {{0x31d2,6},{0x892c,6}}, {{0x180e,5},{0xb65,2}}, {{0x10774,6},{0x4a55,4}}, {{0x4106,4},{0xb63,3}}, + {{0xcfd,4},{0xe7b,9}}, {{0x31b6,7},{0xe8d,3}}, {{0x278a7,3},{0x924,3}}, {{0xba5,4},{0x56f7,9}}, + {{0xd1a,2},{0x1a,2}}, {{0xaea,1},{0x1da3,3}}, {{0x2e46,3},{0x2b4b,4}}, {{0x2840,2},{0x10f7,1}}, + {{0x17ec,5},{0x1b,1}}, {{0x423e,1},{0x323c,2}}, {{0x10f2,1},{0x139e,2}}, {{0x318c,5},{0xb65,2}}, + {{0x2d5d,4},{0x2b,3}}, {{0x1a814,2},{0x10ed,2}}, {{0x948,1},{0x2445f,1}}, {{0x178c,4},{0xd1b,1}}, + {{0xb33e,5},{0x2200,5}}, {{0x1055,3},{0xc74c,5}}, {{0x15dc,6},{0x1ae4,7}}, {{0x3fb6,8},{0x11b8,4}}, + {{0x196f,3},{0x1972,5}}, {{0x1adf0,5},{0x1ae07,4}}, {{0x10f2,1},{0xd8f,3}}, {{0xae0,1},{0x2195,3}}, + {{0x3234,3},{0xcae4,3}}, {{0x278ad,3},{0x27a13,2}}, {{0x10ea,3},{0x9001,4}}, {{0x51b8,7},{0xb2c,2}}, + {{0x35ec,11},{0x2b,3}}, {{0x278a7,3},{0x1b140,2}}, {{0x532,66},{0x30,10}}, {{0x30,2},{0x27e1c,2}}, + {{0x1476a,5},{0xc67,2}}, {{0xc25,4},{0x5478,2}}, {{0xbeb,1},{0x25da,3}}, {{0xfef4,4},{0x1b1eb,12}}, + {{0xaef,3},{0x2af8,4}}, {{0x3a22,9},{0xb2c,2}}, {{0xe97,9},{0xbd6,8}}, {{0x278ad,3},{0x27ab5,2}}, + {{0x13cac,6},{0xb78,2}}, {{0xab9a,3},{0xc30,2}}, {{0x5442,4},{0x17a9c,5}}, {{0x18e2f,6},{0x10dc,2}}, + {{0x1e,1},{0xc45e,5}}, {{0xc86f,7},{0x5306,4}}, {{0x2aacb,2},{0x244ed,2}}, {{0x4c3c,6},{0x3bc2,4}}, + {{0x423e,1},{0x1864,2}}, {{0x423e,1},{0x1372,3}}, {{0xc8bc,6},{0xd17,3}}, {{0xa4b,4},{0x6f64,2}}, + {{0xb44,3},{0xc2e,2}}, {{0x10ec,1},{0x3789,3}}, {{0x1a86d,3},{0xbac,4}}, {{0x278a9,1},{0x1b6b3,2}}, + {{0x10ea,3},{0x1abd6,2}}, {{0xd1c2,6},{0x1377,5}}, {{0x1761,3},{0xb75,2}}, {{0x160ef,6},{0x10dc,2}}, + {{0xf844,5},{0xf594,4}}, {{0xf30,5},{0x125b7,4}}, {{0x4d5a,8},{0x3879,5}}, {{0xb70,2},{0xcb8,2}}, + {{0x41be,3},{0xd60,5}}, {{0x20bb,3},{0xbb2a,3}}, {{0xb6c,3},{0xb70,2}}, {{0x278ad,3},{0x27995,2}}, + {{0xa012,5},{0x7048,4}}, {{0x2b2ff,1},{0x2445f,1}}, {{0x1f3fb,2},{0x12086,4}}, {{0xd737,6},{0xbd68,5}}, + {{0xb2e,2},{0xaf1,2}}, {{0x1e,1},{0x16e15,4}}, {{0xeca,5},{0xb54,4}}, {{0xadf,2},{0xa60f,3}}, + {{0xcde,3},{0x7297,3}}, {{0xb6c,3},{0xdd3,3}}, {{0x123c,9},{0x1b80,4}}, {{0xff14,8},{0x70a0,4}}, + {{0x1a281,5},{0x4d56,4}}, {{0x2451f,2},{0x806,2}}, {{0xc29,2},{0xaf1,1}}, {{0x272d,4},{0x31c8,4}}, + {{0xba5,4},{0x4ee5,8}}, {{0x2988,4},{0xc7b,4}}, {{0xb2f,1},{0xc7b0,4}}, {{0x1b,1},{0xb8f,2}}, + {{0xb55,2},{0x5fe0,4}}, {{0x2fda,6},{0x2a24,6}}, {{0x2789,4},{0xd0b,3}}, {{0x14636,3},{0x1f,3}}, + {{0x27acd,2},{0x116c,1}}, {{0x2793d,4},{0x27abb,2}}, {{0x79f6,7},{0x79fd,5}}, {{0x1480,2},{0xa7ed,4}}, + {{0x3988,10},{0xb7c,3}}, {{0xae2,2},{0x20ed,3}}, {{0x1972,2},{0x8907,4}}, {{0x364e,4},{0x1c68,3}}, + {{0xf1f,8},{0xae6,3}}, {{0x2912,4},{0xf10,3}}, {{0x27b6,1},{0x1ae32,2}}, {{0x9c9,1},{0x1ed58,1}}, + {{0x14942,4},{0x25c2,3}}, {{0xa7da,3},{0xec4,3}}, {{0x804,2},{0xab1,2}}, {{0xe64,5},{0xb2f,1}}, + {{0x30,2},{0x532,10}}, {{0xaca2,3},{0xbd6,2}}, {{0xbd1,2},{0xcdf,3}}, {{0x70a0,6},{0xfb8b,2}}, + {{0x3234,3},{0xb54,3}}, {{0xbd1,5},{0xb2c,2}}, {{0x257c,2},{0x30d9,3}}, {{0x11ba8,4},{0xb54,4}}, + {{0x10fb,3},{0xc55,2}}, {{0x1a2f,4},{0xbd4,2}}, {{0x203f9,6},{0xb56,2}}, {{0xf212,3},{0xdc1,4}}, + {{0x10fa,1},{0xd5c,1}}, {{0x5444,3},{0xcd4,4}}, {{0x10f3,1},{0xae7,1}}, {{0xf63,5},{0x10504,4}}, + {{0x178c,3},{0xd50,4}}, {{0xaf0,2},{0xb55,2}}, {{0xab9d,5},{0xaba2,4}}, {{0xa642,8},{0x25df,4}}, + {{0x1c,1},{0x2d,1}}, {{0xb63,2},{0x5120,4}}, {{0xb9c,2},{0x2de9,7}}, {{0xac7e,8},{0xb2c,4}}, + {{0x1b12f,2},{0x20986,3}}, {{0xb01a,4},{0x5f33,6}}, {{0xc1c,2},{0xff7,5}}, {{0x253fb,3},{0x27cea,1}}, + {{0xc62,3},{0xaf1,1}}, {{0x423c,3},{0xdf0,2}}, {{0x1d89,2},{0xb52,2}}, {{0x2240d,5},{0x1a,2}}, + {{0x5c14,8},{0x2b,3}}, {{0x178c,3},{0x1f194,5}}, {{0x1b237,4},{0x2acff,4}}, {{0x101e8,5},{0x10d89,4}}, + {{0x1ab2,4},{0x2b,2}}, {{0xaaf2,6},{0xaaf8,6}}, {{0x20ac,6},{0xb82,2}}, {{0xbe4,1},{0xbe0,1}}, + {{0xb2c,2},{0xd7a,3}}, {{0x6450,8},{0xce8,3}}, {{0x17bc,3},{0x2275,3}}, {{0x5956,5},{0x139e,3}}, + {{0x4a75,5},{0xe70,4}}, {{0x2793d,4},{0x116c,1}}, {{0xbd1,2},{0x1c4a,5}}, {{0x1701,3},{0x4569,5}}, + {{0x18d8,3},{0xd17,3}}, {{0xd0f,4},{0x2045,3}}, {{0x1e45,3},{0xb2f,1}}, {{0xad32,4},{0x1ae4,7}}, + {{0x10f3,1},{0x4417,2}}, {{0x65fd,7},{0x6604,6}}, {{0x1b49b,4},{0xb75,2}}, {{0x41da,3},{0x528f,6}}, + {{0x15e79,5},{0xcc3,4}}, {{0xb44,3},{0x2dc0,6}}, {{0xcc0,3},{0xd0d,2}}, {{0x6d8e,3},{0x23006,3}}, + {{0x422e,3},{0xae6,2}}, {{0xb49,2},{0x2202,3}}, {{0x27aa9,2},{0x116d,1}}, {{0x2700,5},{0x11103,4}}, + {{0x1ae2f,5},{0xbe4,1}}, {{0xb22b,7},{0x2b,3}}, {{0xc8a,2},{0x2b,2}}, {{0x1ed49,3},{0x24f89,2}}, + {{0xb8a,2},{0xc55,2}}, {{0x6d8e,3},{0x2098b,2}}, {{0x57f7,6},{0x3776,3}}, {{0xb82,2},{0xbb0,2}}, + {{0x14bc,4},{0xb48,2}}, {{0x27b6,1},{0x17ae,1}}, {{0x2b,2},{0x21,1}}, {{0x150b8,5},{0x25df,4}}, + {{0x2796,3},{0x535b,5}}, {{0x2743f,5},{0x10f2,1}}, {{0x20563,3},{0x780,1}}, {{0x1e,1},{0x1ee0,3}}, + {{0x1c,1},{0x13339,7}}, {{0x24462,1},{0x18,1}}, {{0x251fe,2},{0x251fe,2}}, {{0x85de,5},{0x4687,5}}, + {{0xf2ac,4},{0xf2b0,7}}, {{0x4194,5},{0x28,2}}, {{0x30,2},{0x287e0,5}}, {{0xfac4,8},{0xb78,2}}, + {{0x1cee,3},{0xb52,5}}, {{0x29b0,3},{0x1150,2}}, {{0x1629f,6},{0xb65,2}}, {{0x2859,5},{0x2436,9}}, + {{0xb82,2},{0x1d,1}}, {{0x1259,2},{0x5396,3}}, {{0x5915,5},{0x1a11,2}}, {{0x279d1,2},{0x116e,1}}, + {{0x2b,2},{0x142e,1}}, {{0x19ef4,8},{0xae7,1}}, {{0xa7ec,5},{0x1a,1}}, {{0x10ca,1},{0x92ec,3}}, + {{0x1ed51,3},{0x24460,2}}, {{0x6d81,3},{0x72b6,3}}, {{0x10fd,2},{0x107d,3}}, {{0x19f18,6},{0xaf2,1}}, + {{0xde9,1},{0x1421,3}}, {{0x251cb,1},{0x734,1}}, {{0xb2e,2},{0xae0,1}}, {{0x2c0fe,3},{0xb31,1}}, + {{0xd1b,1},{0x1b,1}}, {{0x25c2,3},{0x2b,1}}, {{0x5191,8},{0x10dc,2}}, {{0x107d,4},{0xbd6,2}}, + {{0xe42,5},{0x1761,4}}, {{0xf0e,5},{0x1aa6,3}}, {{0x10fd,4},{0x1dac,3}}, {{0x178c,3},{0xb4b,2}}, + {{0xb44,4},{0xcab,3}}, {{0x278ad,3},{0x27aaf,2}}, {{0x18aea,6},{0x1701,3}}, {{0xcedb,2},{0x2b,1}}, + {{0x1d,1},{0xc1c,2}}, {{0xf8de,4},{0x24fd,5}}, {{0x14972,6},{0x7512,4}}, {{0x10f7,1},{0xaf2,1}}, + {{0xc30,2},{0x3a39,3}}, {{0x416a,5},{0x11c3,7}}, {{0x10ef,1},{0x10118,3}}, {{0x2859,5},{0xa497,7}}, + {{0x6d8e,3},{0x12b69,4}}, {{0xfdd,2},{0xae7,1}}, {{0x155c,12},{0xc7b,4}}, {{0x95fe,6},{0x13419,3}}, + {{0x1b1b,7},{0x1b22,4}}, {{0x4d97,2},{0x103a,3}}, {{0x3234,3},{0x14a7,5}}, {{0x1a4c6,5},{0xd1b,1}}, + {{0x10f7,1},{0xf59,3}}, {{0x27a73,2},{0x278dc,1}}, {{0xc1c,2},{0x7a46,4}}, {{0xaaf2,6},{0x3718,3}}, + {{0x1084,3},{0x19462,6}}, {{0xae0,1},{0xa60f,3}}, {{0xbe0,1},{0x1318b,4}}, {{0xb65,2},{0x2b,1}}, + {{0xaea,2},{0x2b,2}}, {{0xc2e,2},{0xc67,2}}, {{0xfda0,2},{0xaf0,2}}, {{0x181c,3},{0x19f47,2}}, + {{0x24b7,10},{0xb7a,5}}, {{0x1ae31,3},{0xbe4,1}}, {{0xb6b9,6},{0xb6bf,5}}, {{0xaca2,3},{0x10f6,1}}, + {{0x2912,5},{0x1c,1}}, {{0xd0f,4},{0xbd6,2}}, {{0x10f3,1},{0xb4e4,4}}, {{0xc25,4},{0xdd5,4}}, + {{0x10fb,4},{0x2542,7}}, {{0xf30,11},{0xb52,6}}, {{0x1d7b7,4},{0xb55,3}}, {{0x17ec,6},{0xb82,3}}, + {{0xb7c,2},{0xfe5,2}}, {{0x3f9a,4},{0x1bc5,5}}, {{0xc25,3},{0xa15d,4}}, {{0x5f01,4},{0xb78,2}}, + {{0x10fb,3},{0x1c,1}}, {{0x9aba,5},{0x748e,3}}, {{0x1a0d,5},{0x4979,4}}, {{0xc5ff,4},{0xcb8,2}}, + {{0x1d11,5},{0xb2e,2}}, {{0x34aa,8},{0xb52,5}}, {{0x27aeb,2},{0x116c,1}}, {{0xc13,4},{0x11b2,4}}, + {{0x28da,1},{0xc67,2}}, {{0x14cc,4},{0x904d,5}}, {{0x6d81,3},{0x15f4d,4}}, {{0x5acf,8},{0x1357,5}}, + {{0x1dbe,5},{0x21d2,6}}, {{0x9862,10},{0xb78,2}}, {{0x911e,6},{0x89c8,5}}, {{0x70d4,4},{0x70d0,4}}, + {{0x1a8d7,5},{0x1a8dc,4}}, {{0xa4d,2},{0x6f90,2}}, {{0x1700,6},{0xdc1,5}}, {{0xd0b,3},{0x1a30,3}}, + {{0x94ba,7},{0x132f,3}}, {{0x21d8,5},{0xae7,1}}, {{0x278ad,3},{0x278bd,2}}, {{0x14bb5,2},{0xaee7,2}}, + {{0xf40e,3},{0xd0c,2}}, {{0x27a8b,2},{0x278dc,1}}, {{0x734,4},{0x734,2}}, {{0x2b,2},{0xb72,3}}, + {{0x25c5,5},{0x1b80,4}}, {{0xf30,5},{0x5269,5}}, {{0x423e,1},{0x4a30,4}}, {{0x159c8,1},{0x2b310,4}}, + {{0x1abd7,2},{0xbeb,1}}, {{0x2793d,4},{0x27ab5,2}}, {{0x13a18,6},{0xb65,2}}, {{0xaec,2},{0x2b,2}}, + {{0xb8f,2},{0x5cd6,3}}, {{0xcc00,5},{0x1687,5}}, {{0x10ec,1},{0x47fe,5}}, {{0x42ac,5},{0x5275,4}}, + {{0xad4a,6},{0x28d4,6}}, {{0xbf88,7},{0xbb4,4}}, {{0xae3,2},{0xbd1,2}}, {{0xf275,10},{0x28,1}}, + {{0xc1c,2},{0x2b,2}}, {{0x10ef,1},{0x1065,3}}, {{0x70dc,6},{0x1b981,4}}, {{0x24a2d,2},{0x27e2a,2}}, + {{0x82ba,6},{0xc9fd,4}}, {{0x10c8,3},{0xf63c,2}}, {{0x14cc6,5},{0xc34,2}}, {{0xae5,1},{0x134f,3}}, + {{0x3e90,5},{0xaf1,1}}, {{0x24f8a,2},{0x2446c,1}}, {{0xaf1,1},{0x1f13,4}}, {{0xeca,4},{0x219c6,3}}, + {{0xae7,2},{0xbe8,3}}, {{0x45fd,4},{0x1930,3}}, {{0x278a1,3},{0x2791d,2}}, {{0xe31,5},{0x1101e,4}}, + {{0x159c,4},{0x21,1}}, {{0x177c,3},{0x734a,4}}, {{0x14256,7},{0xec2,2}}, {{0x6d4d,8},{0x1aad,5}}, + {{0x5a67,7},{0xb52,6}}, {{0xfb89,4},{0xae7,1}}, {{0x2a,2},{0xfb1,3}}, {{0x27897,2},{0x116e,1}}, + {{0x20bb,3},{0x7eb8,5}}, {{0xe64,5},{0x2eab,4}}, {{0x1089,2},{0x101a,3}}, {{0x271e,3},{0x29fa,5}}, + {{0x24a2d,2},{0x27e20,3}}, {{0xaf1,1},{0x1c25,4}}, {{0x278a7,4},{0x116d,1}}, {{0xd1b,1},{0xfffb,2}}, + {{0x3626,4},{0xc63,3}}, {{0x6e94,5},{0xc8a,2}}, {{0xfcfc,3},{0xd1b,1}}, {{0x1aa5,4},{0xb2e,2}}, + {{0x181c,3},{0x10116,2}}, {{0x1a326,4},{0x114d,2}}, {{0x19cc,3},{0x10c4,4}}, {{0x278ad,3},{0x27af7,2}}, + {{0x2796,3},{0xbe0,1}}, {{0x287ec,6},{0x1a,1}}, {{0x1cbf,5},{0x4693,6}}, {{0x159c8,1},{0x780,1}}, + {{0x271e,3},{0xbb15,3}}, {{0x3a3e,5},{0xe415,6}}, {{0x2446a,3},{0x27d03,3}}, {{0x423e,1},{0x21bc,3}}, + {{0xc25,3},{0xaea,1}}, {{0xb70,2},{0xb55,2}}, {{0x26f1,4},{0x362b,4}}, {{0x10ec,1},{0x25094,5}}, + {{0x244ad,2},{0x806,2}}, {{0x139c,6},{0xd0d,2}}, {{0xbd4,2},{0x187c,3}}, {{0x177c,3},{0xae2,2}}, + {{0xe011,5},{0x1300,6}}, {{0x11f2,3},{0xb65,2}}, {{0x97ea,9},{0x10dc,2}}, {{0xbc44,8},{0x10dc,2}}, + {{0x1a86b,5},{0xbac,4}}, {{0xbe28,8},{0xc63,3}}, {{0x10fb,3},{0x2c2d,3}}, {{0x88ea,5},{0x24b2,5}}, + {{0x251ff,2},{0x25201,2}}, {{0x1254,3},{0xaf2,1}}, {{0xadaa,5},{0x13b5,7}}, {{0xb68,3},{0x12b89,5}}, + {{0xbc23,6},{0x10dc,2}}, {{0xaea,1},{0xc55,2}}, {{0xaf1,1},{0x1393,3}}, {{0x12fe,3},{0xd1b,1}}, + {{0x10ef,1},{0x1a,1}}, {{0xab9c,1},{0xadf,2}}, {{0xbeb,1},{0x1c2b0,2}}, {{0x2b,1},{0xde9,1}}, + {{0xd65,3},{0x10dc,2}}, {{0x142e,1},{0xbb5,1}}, {{0x41be,4},{0x1a234,5}}, {{0x10fb,3},{0x443d,3}}, + {{0x1f883,3},{0x2b,2}}, {{0x141b6,7},{0x25da,3}}, {{0xcfd,5},{0x4ee5,8}}, {{0x415c,5},{0x11667,5}}, + {{0x4362,4},{0x2eb0,4}}, {{0x1adf,5},{0xae6,2}}, {{0x271e,3},{0xc34,2}}, {{0x948,8},{0x948,4}}, + {{0xba5,4},{0x628e,7}}, {{0x2793d,4},{0x278e1,2}}, {{0xa7da,3},{0x1434,3}}, {{0x6b52,4},{0x28,1}}, + {{0xb74,2},{0x1a,2}}, {{0xfb1,2},{0xb55,3}}, {{0x177c,3},{0x10f6,1}}, {{0xacbc,2},{0x28da,1}}, + {{0x178c,3},{0x16e2,2}}, {{0x27923,2},{0x278d6,1}}, {{0x2c806,4},{0x244c7,2}}, {{0x1a526,6},{0xcce,3}}, + {{0xf212,3},{0x3789,3}}, {{0xca3,5},{0x353b,9}}, {{0x6f23,2},{0x140e8,6}}, {{0x244ad,2},{0x2456b,2}}, + {{0xae9,2},{0xb8f,2}}, {{0x4c97,7},{0x4df1,5}}, {{0x161c,7},{0xe695,4}}, {{0x2d,1},{0x2c00,3}}, + {{0x422e,3},{0xc67,2}}, {{0x1b8e3,4},{0x1b873,4}}, {{0xdebc,8},{0xcce,3}}, {{0x251e6,2},{0x251e8,4}}, + {{0xae5,1},{0x4f65,3}}, {{0xb7f,3},{0xb87,3}}, {{0xc49,3},{0xae7,2}}, {{0xb4b,2},{0x3f82,3}}, + {{0x17336,6},{0x28,1}}, {{0x1084,3},{0xbe8,3}}, {{0x2c812,4},{0x806,2}}, {{0x532,2},{0x30,192}}, + {{0x10c8,3},{0x4606,3}}, {{0x54fd,4},{0x1c25,4}}, {{0x106a2,5},{0xc63,3}}, {{0x27b6,1},{0xfdd,3}}, + {{0x6ac5,1},{0x41f0,6}}, {{0x16ac,5},{0x1408,3}}, {{0xb7f,3},{0x48a4,3}}, {{0x264c,4},{0x198da,5}}, + {{0xbde,3},{0xbd8,2}}, {{0xaf2a,4},{0x203b5,4}}, {{0xa4d,2},{0x6f66,2}}, {{0x280e,6},{0x2138,5}}, + {{0x1509a,4},{0x1509e,6}}, {{0xadaa,5},{0x2ddc,6}}, {{0x135c,5},{0xca6,3}}, {{0x278a1,3},{0x27905,2}}, + {{0x139e,4},{0xd8d0,4}}, {{0xab52,7},{0x2abe,5}}, {{0x179d2,6},{0x5cd6,3}}, {{0xf99d,6},{0xc67,2}}, + {{0x1cbf,4},{0xae2,1}}, {{0x286bd,2},{0xf907,2}}, {{0x19be5,6},{0x1a5c,3}}, {{0xf0e,5},{0xbd6,2}}, + {{0x4cd8,6},{0x1704,3}}, {{0xceb,3},{0x1045,2}}, {{0xc89,2},{0x2045,5}}, {{0x17dc,4},{0x14c03,3}}, + {{0x6ac5,1},{0x15ba3,6}}, {{0xcd9,5},{0xbd2,3}}, {{0xa14a,5},{0x1d,1}}, {{0xcd5,2},{0x79da,4}}, + {{0xf393,7},{0xa5de,4}}, {{0x2aee,10},{0x2af8,4}}, {{0x117c,1},{0x7c4,1}}, {{0xb63,3},{0xae7,2}}, + {{0x62ca,10},{0xc63,3}}, {{0x6ac3,3},{0xb78,2}}, {{0x6ac5,1},{0xab9c,1}}, {{0x78ca,4},{0xb29c,3}}, + {{0x5365,8},{0x2d68,5}}, {{0x14cc,4},{0xb47,2}}, {{0x167c,5},{0x1b,1}}, {{0x1e45,3},{0x263f,3}}, + {{0xaefa,4},{0x2bfc,3}}, {{0x5365,5},{0xf47,4}}, {{0x98c2,5},{0x4606,3}}, {{0x1436e,5},{0x5fe0,4}}, + {{0x1a32e,4},{0x2360a,3}}, {{0xae0,1},{0xc60,3}}, {{0x6d81,3},{0x1ee0,3}}, {{0xd57,2},{0x43bd,4}}, + {{0x780,1},{0x2446c,1}}, {{0x24a2d,2},{0x27e20,2}}, {{0xbde,3},{0x1b4c,3}}, {{0xd76,5},{0xb53d,6}}, + {{0x1da0,4},{0xb7c,3}}, {{0x5401,4},{0x10dc,2}}, {{0x14404,7},{0xe72,3}}, {{0x10f3,1},{0x1a,2}}, + {{0xb7d,1},{0xc8e,3}}, {{0x24a2d,2},{0x24a3b,4}}, {{0xc37,6},{0x835c,6}}, {{0x4450,4},{0x15c58,5}}, + {{0x1a,3},{0x1a,2}}, {{0xf26a,8},{0x25c2,3}}, {{0x88ea,5},{0x455b,6}}, {{0x10698,5},{0x2b,2}}, + {{0xcfd,5},{0x1bc5,5}}, {{0x61ac,5},{0xee8,3}}, {{0x1095,5},{0x3cc8,4}}, {{0x432,16},{0x432,10}}, + {{0xda9,10},{0xd1a,7}}, {{0x199ff,6},{0xd51,2}}, {{0xc52,2},{0x16f8,3}}, {{0x2c44c,4},{0x2ae5b,2}}, + {{0xb2f,1},{0x14636,4}}, {{0xae0,1},{0x67be,5}}, {{0x8bea,8},{0x8bf2,4}}, {{0x271e,3},{0x1d8a,3}}, + {{0x27b4,3},{0x27592,3}}, {{0xf85,4},{0x7ca8,6}}, {{0x17fc,5},{0x3d37,7}}, {{0x278ad,3},{0x27ac7,2}}, + {{0xd7f,3},{0xb55,2}}, {{0x1362,3},{0xb75,2}}, {{0x3624,6},{0x5fe0,5}}, {{0x181c,3},{0x29938,2}}, + {{0x178c,3},{0xc1c,2}}, {{0xa7da,3},{0xcb8,2}}, {{0xc13,5},{0x9844,6}}, {{0x27897,2},{0x1b6ab,1}}, + {{0x4c2f,8},{0xd7f,3}}, {{0x70a0,2},{0x2ae5b,2}}, {{0x10f8,2},{0x10f3,1}}, {{0x3234,3},{0x1e031,4}}, + {{0x24a2d,2},{0x432,1}}, {{0x1107c,4},{0x1c43,4}}, {{0xb2f,1},{0xaea,1}}, {{0x10c8,4},{0xd8e,4}}, + {{0x22cf8,1},{0x251fe,2}}, {{0xc37,3},{0x28a37,4}}, {{0xab9a,3},{0xb78,2}}, {{0xaf62,2},{0xbeb,1}}, + {{0xeca,5},{0x7a5e,4}}, {{0x133c,6},{0x7288,6}}, {{0xcb5,3},{0x28,2}}, {{0x14fc,4},{0xdf5,3}}, + {{0x10ca,1},{0xae5,1}}, {{0xeec,11},{0xb52,6}}, {{0x6790,11},{0xd0d,2}}, {{0x10c8,3},{0x10f2,1}}, + {{0x86b6,8},{0xb9d,3}}, {{0xa25e,5},{0x2f5f,4}}, {{0xaaf0,2},{0x1ae4f,2}}, {{0x16cc,4},{0xa436,8}}, + {{0xdbfc,7},{0x11e4,4}}, {{0x1087a,6},{0xb996,4}}, {{0x176f0,5},{0x97d8,3}}, {{0x181c,3},{0x9169,3}}, + {{0x415c,5},{0xbb5,1}}, {{0xf681,5},{0xc67,2}}, {{0x127ec,6},{0x760b,3}}, {{0x2445c,3},{0x2a8b2,4}}, + {{0xd4f0,7},{0x1c25,4}}, {{0x1b705,6},{0x70ba,8}}, {{0x1cbf,6},{0x14a6,6}}, {{0x422e,3},{0x285d1,2}}, + {{0xd511,8},{0x10dc,2}}, {{0x762a,4},{0xa4c9,3}}, {{0x73d2,6},{0xeb3,3}}, {{0x24a30,2},{0x1b6cb,1}}, + {{0xaf1,1},{0x4459,3}}, {{0x278ad,3},{0x27aa9,2}}, {{0x3a22,9},{0x315d,5}}, {{0x43e3,1},{0x1abd9,2}}, + {{0x27a49,2},{0x116e,1}}, {{0x133c,6},{0x8111,5}}, {{0x2c92,6},{0x5bc1,5}}, {{0x61ac,4},{0x1b5a,4}}, + {{0xbe0,1},{0x2af4,4}}, {{0x124c,4},{0x25789,4}}, {{0xa2e2,6},{0x11f2,3}}, {{0x29df1,4},{0x423e,1}}, + {{0x15586,5},{0xc9a,2}}, {{0x149ae,5},{0x4882,3}}, {{0xf30,5},{0xb52,2}}, {{0xf2e3,5},{0xd7e,2}}, + {{0x10fb,4},{0xc78,3}}, {{0x15720,8},{0xb2c,2}}, {{0xbe4,1},{0xc89,2}}, {{0x278ad,3},{0x27a01,2}}, + {{0x2eb4,9},{0x1f0f,3}}, {{0x67aa,6},{0x13fd2,4}}, {{0xcd9,6},{0x411c,4}}, {{0xd41,3},{0xfb89,4}}, + {{0x4a5b,6},{0x4859,7}}, {{0xd43,6},{0xd49,11}}, {{0xc37,3},{0x1b4b,3}}, {{0x27c5,2},{0xbd3,3}}, + {{0x154af,2},{0xb54,2}}, {{0xbeb,1},{0xb8f,2}}, {{0x1ac2e,6},{0xd17,3}}, {{0x192b8,5},{0x461d,4}}, + {{0x278a9,1},{0x278ed,2}}, {{0x3f9a,4},{0x23db,8}}, {{0xbb5,2},{0xba7,3}}, {{0x24525,6},{0x2452b,6}}, + {{0x177c,3},{0xc1c,2}}, {{0xb31,1},{0x27cea,1}}, {{0x153ba,8},{0x11ef,2}}, {{0x178c,3},{0xd17,3}}, + {{0x28da,1},{0x10f7,1}}, {{0xbeb,1},{0xdac,3}}, {{0xbe7,1},{0x2c00,5}}, {{0x8092,6},{0x18eb,5}}, + {{0x27,1},{0xeb2,1}}, {{0x3a14,6},{0x3921,5}}, {{0xbde,3},{0x74ba,3}}, {{0x3694,4},{0xcd5,2}}, + {{0x3996,5},{0xbc4,7}}, {{0x422e,3},{0xc89,2}}, {{0x10fb,3},{0x14b6,2}}, {{0xb6e,2},{0x3104,5}}, + {{0xc6d,7},{0x889d,5}}, {{0x5eb0,4},{0xaf2,1}}, {{0x16973,6},{0xbb1,3}}, {{0x10ca,1},{0x1a10,2}}, + {{0x10fb,4},{0x22e3,3}}, {{0xaea,2},{0xb63,2}}, {{0x2796,3},{0x2f53,2}}, {{0x3fab,2},{0xb48,2}}, + {{0x41be,3},{0x1c14,6}}, {{0x41da,3},{0x1b4b,3}}, {{0x122c,4},{0xf10,3}}, {{0x16961,6},{0xae7,1}}, + {{0x1084,3},{0xf10,3}}, {{0x40b2,4},{0xc60,5}}, {{0x24a2d,2},{0x2867e,2}}, {{0xb63,2},{0xce8,3}}, + {{0x12314,4},{0xd7a,3}}, {{0x7daa,9},{0x2b,3}}, {{0x3838,8},{0xc34,3}}, {{0xd41,3},{0xf10,3}}, + {{0xcb8,2},{0x25c2,3}}, {{0x25d4,11},{0x25ee,4}}, {{0x9136,6},{0x3d9d,5}}, {{0x10fb,3},{0x107d,3}}, + {{0x244f5,4},{0x244c7,2}}, {{0x1122a,7},{0xdfb,3}}, {{0x159c,4},{0x2da0,10}}, {{0x2c38c,4},{0x6fae,2}}, + {{0xae5,1},{0xb70,2}}, {{0xb67,2},{0x4f91,3}}, {{0xcb7,2},{0x1a,1}}, {{0xbe1,2},{0x1081,3}}, + {{0x1aee,6},{0xae7,1}}, {{0x14e7e,5},{0x7039,2}}, {{0x1cadd,7},{0xae7,1}}, {{0x66cd,9},{0x1498,4}}, + {{0xd834,8},{0xce8,3}}, {{0x6d81,3},{0x5d7a,4}}, {{0x323c,2},{0x2b,3}}, {{0x90a8,6},{0xaf2,1}}, + {{0x127d8,6},{0x35fd,3}}, {{0x5d5b,5},{0xfdd,2}}, {{0x150f4,4},{0xed0,3}}, {{0x1b22,3},{0x130f,4}}, + {{0x309e,8},{0xe70,4}}, {{0xab9c,1},{0x114f,3}}, {{0x1cec,6},{0x2e92,6}}, {{0x2151,5},{0x1089,2}}, + {{0xfbc5,8},{0x2045,3}}, {{0xae7,1},{0x2af4,4}}, {{0x21,1},{0xae0,2}}, {{0x142c,3},{0x1557f,3}}, + {{0x256b,4},{0x1393,3}}, {{0xbcb,3},{0x8a49,3}}, {{0x1a0c1,4},{0xb8f,3}}, {{0x30,2},{0x24771,4}}, + {{0x70a0,4},{0x1b1f7,8}}, {{0xbeb,1},{0x1862,3}}, {{0xb7d,2},{0x2f5f,4}}, {{0x3a84,8},{0x1f13,4}}, + {{0xbaa2,4},{0xadf,2}}, {{0x1095,4},{0x1dd8,4}}, {{0x7c12,7},{0x7c19,5}}, {{0x251cb,1},{0x117c,1}}, + {{0x17ac,3},{0x285d1,2}}, {{0x11ef,2},{0x33d3,5}}, {{0x6ac5,1},{0xbe7,1}}, {{0x4971,5},{0xbb0b,5}}, + {{0x178c,3},{0x2237,3}}, {{0xaca2,3},{0x1f13,4}}, {{0xfa8d,8},{0xb7c,3}}, {{0x27b6,1},{0x20aa9,2}}, + {{0xcd9,3},{0xf38f,3}}, {{0x13e4,3},{0xc3a,3}}, {{0x10fb,3},{0x15ae2,2}}, {{0x24,1},{0x2a9bc,2}}, + {{0x177c,4},{0xae6,2}}, {{0x3fe4,3},{0x1757,5}}, {{0x15572,6},{0x15583,3}}, {{0x43a5,3},{0x13394,4}}, + {{0x6d8e,3},{0x1862,3}}, {{0x10fd,2},{0x1cef,3}}, {{0x1b4c,3},{0x34a2,4}}, {{0xadf,2},{0xd1a,7}}, + {{0x286bd,2},{0x2ae5b,2}}, {{0xc13,4},{0x296f,5}}, {{0x2061,5},{0xc55,2}}, {{0xcd9,3},{0xbd6,2}}, + {{0x1b6ab,2},{0x924,1}}, {{0xd0f,4},{0x2542,7}}, {{0xf75d,6},{0x1152,5}}, {{0x112c,1},{0x27d8b,2}}, + {{0x5288,5},{0xd0fe,3}}, {{0x14bc,4},{0x284d,3}}, {{0xbeb,1},{0x14907,7}}, {{0x292e,11},{0x2939,3}}, + {{0x1daf,5},{0x103b,5}}, {{0x46e1,4},{0x2b,3}}, {{0x290e,4},{0xb78,2}}, {{0xf63,5},{0x5fd2,6}}, + {{0xcb8,3},{0x8fe2,4}}, {{0xbeb,1},{0xbcc0,5}}, {{0xde9,1},{0xc4d,2}}, {{0xb79,2},{0x84f6,4}}, + {{0xc34,2},{0xb7d,1}}, {{0x27b4,3},{0x10f3,1}}, {{0x4894,8},{0x3edd,5}}, {{0x278ad,3},{0x27acd,2}}, + {{0x6e03,7},{0xc78,3}}, {{0x2bf8,7},{0x2bff,7}}, {{0xb6c,3},{0x1ac69,4}}, {{0x1089,2},{0x35fd,3}}, + {{0xc3e,2},{0xcb8,2}}, {{0xcb50,7},{0xcb57,4}}, {{0x71e6,5},{0xc30,2}}, {{0x5288,5},{0x4e32,5}}, + {{0x1aa90,5},{0xae6,2}}, {{0xcbd,3},{0x1216,6}}, {{0x28,1},{0xc501,3}}, {{0x2b,1},{0x1f13,4}}, + {{0x734,1},{0x1b4e3,1}}, {{0x142e,1},{0x1c,1}}, {{0x265b,8},{0xff7,5}}, {{0x265b,5},{0x89c8,5}}, + {{0x12b84,7},{0x2b,3}}, {{0x3f62,6},{0x16a4,8}}, {{0xf96,9},{0x21b4,6}}, {{0x10ef,1},{0x1f2c5,2}}, + {{0xdbf,3},{0xd48,2}}, {{0xaf1,1},{0x14636,4}}, {{0x278ad,3},{0x279c5,2}}, {{0xd5c,2},{0xb99,2}}, + {{0x1084,4},{0x142e,1}}, {{0xeee4,8},{0x12ff,2}}, {{0x1561,3},{0xae7,1}}, {{0x9b11,5},{0x10dc,2}}, + {{0x1e45,3},{0xa60f,3}}, {{0x19c2f,2},{0xb55,2}}, {{0x16fc,5},{0x69ad,4}}, {{0x26583,4},{0x1ed53,1}}, + {{0x1b6ab,2},{0x278dc,1}}, {{0x57dd,7},{0x4b33,4}}, {{0x19d1,9},{0x11e6,6}}, {{0x20bb,5},{0xbd9,2}}, + {{0x279fb,2},{0x278dc,1}}, {{0x43e3,1},{0xb76,3}}, {{0x924,2},{0x278ed,2}}, {{0xf9dd,6},{0x6361,5}}, + {{0xbd83,5},{0xae7,1}}, {{0x2739,3},{0xb63,2}}, {{0xe011,5},{0x2693,4}}, {{0x16fc,10},{0xdc1,5}}, + {{0x11ec8,5},{0xb9c2,4}}, {{0x1ee39,5},{0xc1c,2}}, {{0x1375c,6},{0xd57,3}}, {{0x12314,4},{0x12318,5}}, + {{0x73de,7},{0x11b8,4}}, {{0xceb,3},{0x5306,4}}, {{0x1a85,5},{0x1357,5}}, {{0x41b0,10},{0x41ba,4}}, + {{0x24a2d,2},{0x251db,2}}, {{0xe78,3},{0x2b,1}}, {{0x8b66,5},{0xd1a,7}}, {{0x151c,4},{0x2b,1}}, + {{0xa7d1,2},{0x10ef,1}}, {{0x51c5,5},{0xffa0,4}}, {{0x437e,7},{0x696b,6}}, {{0x20bb,3},{0xcf6,3}}, + {{0xb44,3},{0x37ae,4}}, {{0xc3a,3},{0xae7,1}}, {{0x1a4e7,6},{0x28,1}}, {{0x271e,3},{0xe6d,2}}, + {{0x240ce,4},{0x20555,3}}, {{0x10ec,1},{0x10f2,1}}, {{0x122c,4},{0xae2,2}}, {{0x309e,8},{0xb52,5}}, + {{0x4a4e,8},{0xaf2,1}}, {{0x6742,9},{0xaf1,1}}, {{0x2a16,3},{0xb2f,1}}, {{0x26a6,8},{0xe08,7}}, + {{0x6d81,3},{0x54e4,4}}, {{0xae0,1},{0xaf1,1}}, {{0x8fda,8},{0x8fe2,4}}, {{0x71da,6},{0x1f13,4}}, + {{0x256b,4},{0xc4d,2}}, {{0xbde,3},{0xc77,2}}, {{0x318c,5},{0xae6,3}}, {{0x19c24,4},{0xc63,3}}, + {{0x2bfc,2},{0x139e,2}}, {{0x2c00,3},{0x10dc,2}}, {{0x1c74,11},{0x1408,4}}, {{0x283e,2},{0x27b6,1}}, + {{0x28da,1},{0xf5e,3}}, {{0xdba,6},{0x5269,5}}, {{0x285b,3},{0xedcb,5}}, {{0x8aa6,6},{0xb66,2}}, + {{0x6d8e,3},{0xbeb,1}}, {{0x762a,5},{0x10929,5}}, {{0x4290,7},{0xf6a,5}}, {{0xe75,6},{0x1489,3}}, + {{0x100f,3},{0x2cd1,4}}, {{0x136f8,7},{0x10dc,2}}, {{0x2c76,4},{0x14a7,5}}, {{0x7d6e,8},{0xd7f,3}}, + {{0x2d,1},{0xd0b,3}}, {{0x24f91,2},{0x1ed53,1}}, {{0xae7,1},{0x1cac2,3}}, {{0x24,1},{0x27cea,1}}, + {{0x278ad,3},{0x278c9,2}}, {{0x2447d,8},{0xfed2,2}}, {{0xc37,3},{0x1c4d9,4}}, {{0x6ac5,1},{0xbe4,1}}, + {{0xc1c,2},{0xc1e,5}}, {{0xd76,4},{0x675f,6}}, {{0x2796,3},{0x16be,3}}, {{0x251fe,2},{0x25206,4}}, + {{0x265b,4},{0x37b4,3}}, {{0x251ea,2},{0x24461,1}}, {{0x278ad,3},{0x27abb,2}}, {{0xd43,6},{0xb54,4}}, + {{0x142e,1},{0xb78,2}}, {{0xd57,2},{0x1a11,2}}, {{0x75b2,5},{0x1489,3}}, {{0x5d34,8},{0x3fdc,4}}, + {{0x713e,5},{0x1150,2}}, {{0xffc,10},{0xeb3,3}}, {{0x6ac3,3},{0x2b,3}}, {{0x15db3,6},{0x53f8,3}}, + {{0x3846,4},{0x16f8,3}}, {{0x10fb,3},{0x1e,1}}, {{0x27b4,3},{0x27b6,1}}, {{0x438e,8},{0xd0b,4}}, + {{0x1d897,6},{0xae7,1}}, {{0x209d,4},{0x178eb,5}}, {{0x2abe,4},{0xd0b,4}}, {{0x5d27,8},{0x10dc,2}}, + {{0x2daa,5},{0x11347,5}}, {{0xf417,5},{0x10f37,5}}, {{0x1004c,6},{0xc57,3}}, {{0xba22,4},{0xd51,2}}, + {{0x22b9,10},{0xb52,5}}, {{0x2c50c,4},{0x244e7,2}}, {{0x30c8,7},{0xf05,7}}, {{0x1084,3},{0x715a,3}}, + {{0x11ef,2},{0xbb5,1}}, {{0xde9,1},{0x1ad2,5}}, {{0xc25,4},{0x29,2}}, {{0x10c8,3},{0x295c,5}}, + {{0x41da,3},{0x51ae,4}}, {{0x244a1,4},{0x159cb,2}}, {{0xe77,3},{0x2b,3}}, {{0x722e,7},{0xb52,5}}, + {{0xb48,2},{0xec2,2}}, {{0x279ef,2},{0x278dc,1}}, {{0x247f5,8},{0x24771,4}}, {{0x170c,5},{0x2a24,6}}, + {{0x3234,3},{0x5eb6,4}}, {{0x135fe,6},{0xb78,2}}, {{0x28d1,3},{0x30cc,3}}, {{0xd54,1},{0x55d1,4}}, + {{0xd5d7,5},{0xb996,4}}, {{0xe9f3,6},{0x25df,4}}, {{0x10117,4},{0x428d,3}}, {{0x16f8c,6},{0x2b,3}}, + {{0x181c,3},{0x1362,3}}, {{0x14922,5},{0xb7d,1}}, {{0x2c06,8},{0x1cd0,6}}, {{0x47b7,7},{0x22e3,3}}, + {{0xeca,4},{0x16f48,4}}, {{0x271e,3},{0x8651,5}}, {{0x115c,2},{0xd54,1}}, {{0x10ec,1},{0xb2c,2}}, + {{0x2445f,1},{0x27e34,3}}, {{0xab9a,3},{0x238da,4}}, {{0x16c8b,6},{0x38eb,3}}, {{0x10c8,3},{0xa15d,4}}, + {{0x2c76,4},{0xeb3,3}}, {{0x1be05,7},{0xaf2,1}}, {{0x40b2,4},{0xde1,2}}, {{0x4a84,6},{0xb63,2}}, + {{0x783a,6},{0xbed,4}}, {{0x2c76,7},{0x2ba9,3}}, {{0x278ad,3},{0x27959,2}}, {{0x10850,6},{0xb9d,3}}, + {{0xbb5,1},{0x13d31,6}}, {{0x839e,7},{0x9726,4}}, {{0x27d0f,2},{0x780,1}}, {{0x1a433,5},{0xb217,4}}, + {{0x28da,1},{0x1d,1}}, {{0x1b6ab,2},{0x116e,1}}, {{0x8ef6,10},{0xd0d,2}}, {{0x1f3e9,4},{0x440f,2}}, + {{0xaad1,3},{0x2b,1}}, {{0xde9,1},{0xd7f,3}}, {{0xde9,1},{0x102f9,6}}, {{0x11a18,6},{0xc95d,4}}, + {{0x27af1,2},{0x116c,1}}, {{0x150d9,5},{0xb55,2}}, {{0x10ec,1},{0x1a5c,3}}, {{0xaf2,1},{0x2b,1}}, + {{0x16f1,3},{0x284e,3}}, {{0xf660,7},{0x89b9,4}}, {{0x2451f,2},{0x5c78,2}}, {{0x11ef,3},{0x11f2,3}}, + {{0x153c,6},{0xae7,1}}, {{0x26c4,3},{0x20ed,3}}, {{0xbde,3},{0x1055,3}}, {{0x24711,6},{0x24711,6}}, + {{0x12fe,1},{0x1f,1}}, {{0x30,2},{0xb32,3}}, {{0xc13,4},{0x1d,1}}, {{0xa156,6},{0x47b3,3}}, + {{0x415c,5},{0x1bc5,5}}, {{0x17c2f,7},{0xaf1,2}}, {{0x3ed6,5},{0x1865,4}}, {{0xb380,8},{0x10dc,2}}, + {{0x27d1b,2},{0x780,1}}, {{0x10c8,3},{0x202c,3}}, {{0x24462,1},{0x24f90,2}}, {{0xb44,3},{0x4a30,4}}, + {{0xb52,2},{0xb9f,2}}, {{0x26a6,8},{0x2a95,5}}, {{0xb64,2},{0xd0b,4}}, {{0x141c,7},{0x7512,4}}, + {{0xb6c,3},{0x141b2,4}}, {{0x40f8,4},{0xc55,2}}, {{0x10c8,3},{0x14f61,2}}, {{0x26c6,1},{0xb56,2}}, + {{0x4204,5},{0xb2e,2}}, {{0x12f1,2},{0x139f,3}}, {{0xc13,3},{0x2b,1}}, {{0x181c,5},{0xee1a,4}}, + {{0x19b3,5},{0xb52,2}}, {{0xbe7,1},{0x10dc,2}}, {{0x1ed49,3},{0x28e7a,2}}, {{0xf63,5},{0x9911,5}}, + {{0x87b2,7},{0x18eb,5}}, {{0x2ab6,5},{0xc2a,2}}, {{0x122c,6},{0x8fb1,5}}, {{0x287e5,4},{0x1a328,2}}, + {{0x6c0a,2},{0xc55,2}}, {{0x2459d,6},{0x157ee,6}}, {{0xf417,5},{0x103a,3}}, {{0xb2f,1},{0x1b80,4}}, + {{0xaca2,3},{0xc67,3}}, {{0x6b52,4},{0x168c3,4}}, {{0x28da,1},{0xbeb,1}}, {{0x15036,4},{0x2b3e,4}}, + {{0xb4b,2},{0x103a,3}}, {{0x3ffc,6},{0x1934,4}}, {{0xb44,3},{0x10dc,2}}, {{0xaf2,1},{0x21,1}}, + {{0xdba,6},{0xb7bc,5}}, {{0x10f3,1},{0x19c78,6}}, {{0x68fc,7},{0x11b8,4}}, {{0xaea,1},{0xae6,2}}, + {{0xb48,2},{0x102f9,6}}, {{0x40b2,4},{0x1bfb1,4}}, {{0x27923,2},{0x116c,1}}, {{0x30,112},{0x30,14}}, + {{0xc37,3},{0x22a3,2}}, {{0x10f7,1},{0xbc5,3}}, {{0x44df,4},{0xc30,7}}, {{0xaea,2},{0x9484,6}}, + {{0x4a82,5},{0x1b5c,3}}, {{0x1c,1},{0xd91,2}}, {{0xa5d6,7},{0xde9,4}}, {{0x10ea,3},{0xd8f,3}}, + {{0x6d81,3},{0x1a814,2}}, {{0x1339a,6},{0xdf6,3}}, {{0x152fc,7},{0xb7c,3}}, {{0x2c84,7},{0x2bff,7}}, + {{0xf4dd,5},{0xd0b,3}}, {{0x12be,3},{0x7fda,4}}, {{0xd8e,3},{0xbd4,2}}, {{0xb2c,2},{0xe70,4}}, + {{0x10fb,4},{0x1513,5}}, {{0x20bb,3},{0x9726,4}}, {{0x1f58d,2},{0x24292,3}}, {{0xf92f,4},{0xb78,2}}, + {{0xaea,1},{0x411c,4}}, {{0x5288,5},{0xbd6,2}}, {{0x2937e,4},{0x1aaed,1}}, {{0x9d72,8},{0xf47,4}}, + {{0x1cbf,4},{0xcb8,2}}, {{0x257c,2},{0x114d,2}}, {{0x1ae5c,6},{0x7859,3}}, {{0x271e,3},{0xb4b,2}}, + {{0xc25,3},{0xbb4,2}}, {{0x84d0,4},{0x10dc,2}}, {{0xbe4,1},{0x4351,2}}, {{0x20d9,6},{0x67c0,3}}, + {{0x2c3d4,4},{0x24733,2}}, {{0x116e,1},{0x924,3}}, {{0x1ecf9,6},{0xb2c,2}}, {{0x1253a,7},{0xb65,2}}, + {{0xb7f,3},{0x1e75a,2}}, {{0xad32,4},{0x10c4,4}}, {{0xb49e,5},{0xc6a9,3}}, {{0xb70,2},{0x1a11,2}}, + {{0x422e,3},{0xcf68,2}}, {{0x7102,5},{0x2585,4}}, {{0x1b6ab,2},{0x278d6,1}}, {{0x13a3,3},{0xca7,3}}, + {{0xbde,3},{0xbd3,3}}, {{0x6d8e,3},{0xbd6,2}}, {{0x1a83e,7},{0xb78,2}}, {{0x178c,3},{0x152d2,2}}, + {{0x116e,1},{0x1171,2}}, {{0x41be,3},{0xbed,2}}, {{0x6ac3,4},{0x1097,5}}, {{0xcfd,5},{0xd8e,9}}, + {{0x278a7,3},{0x278af,2}}, {{0x40fa,3},{0x4590,5}}, {{0x2c85a,4},{0x1b23d,2}}, {{0xb85,2},{0x6f36,5}}, + {{0x2e52,6},{0x7eb8,6}}, {{0xbd1,2},{0xd48,2}}, {{0x14d52,8},{0xb48,2}}, {{0x257a,4},{0x3fab,2}}, + {{0x116d,2},{0x1b6ab,1}}, {{0x17ee,2},{0x28da,1}}, {{0xceb,3},{0x2349,4}}, {{0xf4df,3},{0xb9d,3}}, + {{0x1b6dd,2},{0x244e7,2}}, {{0x256b,4},{0xc57,3}}, {{0x27a0d,2},{0x278d6,1}}, {{0x271e,3},{0xb79,2}}, + {{0xbde,3},{0x2848,2}}, {{0xbd1,5},{0xbd6,8}}, {{0x1af00,3},{0xf8a3,4}}, {{0xf41,10},{0xd1a,7}}, + {{0xa8fa,9},{0x12f1,3}}, {{0xb7f,3},{0xe6d,2}}, {{0x2c76,4},{0x12be,3}}, {{0x10ef,1},{0xaf5d,2}}, + {{0x2d,1},{0x11ef,2}}, {{0x1dec2,4},{0x22bf,3}}, {{0xf92d,6},{0xb78,2}}, {{0xab9c,1},{0xbe4,1}}, + {{0x1e,1},{0xb47,2}}, {{0x1b8e1,6},{0x1b8e7,8}}, {{0x278c9,2},{0x27a07,2}}, {{0xb82,2},{0x1c25,4}}, + {{0x1daad,5},{0x1d,1}}, {{0x1e27,6},{0x1058,9}}, {{0x1477e,6},{0x3e31,3}}, {{0xbe7,1},{0x43e3,1}}, + {{0xe77,4},{0xae7,1}}, {{0xaca2,3},{0xe39a,4}}, {{0x415c,5},{0x2a77,7}}, {{0x14904,5},{0xc67,2}}, + {{0x734,1},{0x24,1}}, {{0x1a49,8},{0xd1a,7}}, {{0x725e,5},{0xe1d,3}}, {{0xae5,1},{0x27,1}}, + {{0x122c,4},{0x10cc0,6}}, {{0x13b5,7},{0xb2e,2}}, {{0x177c,3},{0x29082,2}}, {{0x804,2},{0x24873,2}}, + {{0xbde,3},{0x368c,3}}, {{0x21,1},{0xb63,2}}, {{0x2539d,6},{0x10f7,1}}, {{0x134c,5},{0x2d,1}}, + {{0x10c8,3},{0xcb8,2}}, {{0xdc6a,9},{0xb2c,2}}, {{0x24462,1},{0x27c9b,2}}, {{0x879a,7},{0x11ef,2}}, + {{0x181c,3},{0x29d34,4}}, {{0x1dec2,4},{0x1f,1}}, {{0xb4a,6},{0xb50,8}}, {{0x441c,3},{0xd8f,3}}, + {{0xb49e,4},{0xb4a2,7}}, {{0xde9,1},{0xae0,1}}, {{0x47de,7},{0x258e,6}}, {{0x432,16},{0x432,11}}, + {{0x14bb0,2},{0x20aa9,2}}, {{0xb44,3},{0x67c0,4}}, {{0x2864c,1},{0x24,1}}, {{0x4f62,5},{0xaea,2}}, + {{0x78ca,5},{0xcf0,2}}, {{0x122c,4},{0x165f3,5}}, {{0xd65,3},{0xed47,4}}, {{0x147ba,7},{0x2b,3}}, + {{0x2322,7},{0x1393,3}}, {{0xa246,7},{0x173e,3}}, {{0xb2f,1},{0x673a,5}}, {{0x364e,4},{0x12ff,2}}, + {{0x9b1a,5},{0xb9c,2}}, {{0x1e,1},{0xc89,2}}, {{0x278c9,2},{0x27a0d,2}}, {{0x4b93,8},{0xb52,5}}, + {{0x24531,4},{0x1dec4,2}}, {{0xaa9b,2},{0x152c4,2}}, {{0xb6c,3},{0x1761,3}}, {{0x14f68,2},{0x2848,2}}, + {{0x1ce6d,5},{0x18d8,3}}, {{0xbcb,6},{0x16f8,3}}, {{0xc25,4},{0x2732,4}}, {{0xbeb,2},{0x5277,2}}, + {{0x1015a,10},{0x70a8,4}}, {{0x6d81,3},{0x10f7,1}}, {{0x2a625,4},{0x278af,1}}, {{0x2789b,3},{0x1173,2}}, + {{0xd76,5},{0x8111,5}}, {{0x116d,1},{0x27b0f,2}}, {{0x1a,1},{0x4859,7}}, {{0x554f,2},{0xb8f,3}}, + {{0x22d7,12},{0x22e3,3}}, {{0x3a22,4},{0xc67,2}}, {{0x4ab6,7},{0xb52,5}}, {{0x10fb,3},{0x1257,2}}, + {{0x2214,6},{0x1ae4,7}}, {{0x122ba,6},{0x1278,4}}, {{0x8bf6,7},{0xb85,2}}, {{0xbd6,2},{0x1081,3}}, + {{0x17bc,4},{0xaf0,2}}, {{0x271e,3},{0xe44,3}}, {{0x178c,3},{0xb55,3}}, {{0x1b0c,6},{0x1b12,5}}, + {{0xe42,5},{0xbd6,2}}, {{0x70c8,4},{0x1b8a5,4}}, {{0x70ea,3},{0xb51d,5}}, {{0xbde,3},{0xbed,4}}, + {{0x17157,6},{0xf10,3}}, {{0x11036,7},{0xdfb,3}}, {{0xb7d,1},{0x26135,4}}, {{0x423e,1},{0xc73,2}}, + {{0x541b,7},{0x5422,6}}, {{0x1bc3,3},{0xce8,3}}, {{0x10fb,4},{0xc67,3}}, {{0xe6d,3},{0x2b,3}}, + {{0x20cc,8},{0xb2e,2}}, {{0x720a,6},{0x11e6,6}}, {{0x1748c,6},{0xb85,2}}, {{0x14dc2,4},{0x2b,2}}, + {{0x6c08,4},{0xc69a,6}}, {{0x1977,8},{0x197f,7}}, {{0x10fb,3},{0xcee,4}}, {{0xe83b,7},{0xb78,2}}, + {{0x14cbc,5},{0x14cc1,5}}, {{0x218d,5},{0xdc9b,6}}, {{0x20b1f,6},{0x27d8b,2}}, {{0xe9b,3},{0x2b,3}}, + {{0xb82,2},{0x1717,5}}, {{0x278a7,3},{0x279d1,2}}, {{0x27ac7,2},{0x116c,1}}, {{0x254d,6},{0x3dc4,8}}, + {{0x175c,9},{0xbb4,4}}, {{0x5956,8},{0x10dc,2}}, {{0x10ca,2},{0x111d4,6}}, {{0x1ab2,4},{0x6f37,4}}, + {{0xcd9,5},{0x132e1,5}}, {{0x17ec,4},{0x2742,3}}, {{0x6672,5},{0xdf7e,4}}, {{0x12cba,6},{0xae7,1}}, + {{0xbde,3},{0xc55,2}}, {{0xbcb,3},{0x2b76,3}}, {{0x1756d,6},{0x15f7b,3}}, {{0x2313,8},{0xd48,2}}, + {{0x141c,5},{0x122bc,4}}, {{0xb63,2},{0xc4d,2}}, {{0xba7,3},{0x11ef,3}}, {{0x278c9,2},{0x27a2b,2}}, + {{0xaee9,2},{0xf8d1,2}}, {{0x1107c,4},{0xf10,3}}, {{0x2520a,2},{0x251cb,1}}, {{0xb6ae,7},{0x2af8,4}}, + {{0x178c,3},{0xbd5a,3}}, {{0xb2f,1},{0xb54,2}}, {{0xba5,4},{0xe4db,6}}, {{0x924,2},{0x27b0f,2}}, + {{0x278ad,4},{0x278af,1}}, {{0xb64,2},{0xe77,3}}, {{0x1b4c,3},{0x3626,3}}, {{0xd54,1},{0xd91,2}}, + {{0x1e152,3},{0x257c,2}}, {{0x22e6,5},{0x12b89,5}}, {{0xb52,2},{0xb065,3}}, {{0x244b9,2},{0x1cf1d,2}}, + {{0xa7da,3},{0x129f,2}}, {{0xbde,3},{0x2b,2}}, {{0x178c,3},{0xd7a,3}}, {{0x26c4,3},{0x1f,1}}, + {{0x5aaa,4},{0xb78,2}}, {{0x1dbe,5},{0x21d2,5}}, {{0x5317,10},{0x1704,3}}, {{0xff20,4},{0xfee4,8}}, + {{0x3ae6,10},{0x1719,3}}, {{0x4957,8},{0xff7,5}}, {{0x27e16,3},{0x1ed58,1}}, {{0x26f1,4},{0x5277,2}}, + {{0x432,64},{0x432,32}}, {{0x1c7b,4},{0x1408,3}}, {{0x2793d,4},{0x27ac7,2}}, {{0xb14f,7},{0x2be6,4}}, + {{0x423c,3},{0x26e66,3}}, {{0x10ef,2},{0x1878,1}}, {{0x2b354,2},{0x28634,1}}, {{0x10ef,1},{0xc1e,2}}, + {{0x2c13a,3},{0x28634,1}}, {{0xc27,7},{0xb7c,3}}, {{0xbd1,2},{0x1cac,4}}, {{0x364e,4},{0x915e,4}}, + {{0x10f3,1},{0x986a,4}}, {{0x6d81,3},{0x1fbc4,5}}, {{0x74e6,9},{0x1045,3}}, {{0x9a9,1},{0x7c4,1}}, + {{0x6f23,3},{0x38a0,8}}, {{0xb6c,4},{0x1d,1}}, {{0x4088,7},{0x345e,5}}, {{0x1afd,5},{0xe7e9,4}}, + {{0x10fb,4},{0x1cef,3}}, {{0xb2f,1},{0x1700,4}}, {{0x430,18},{0x432,7}}, {{0x278a7,3},{0x278a3,2}}, + {{0x6103,7},{0xb52,5}}, {{0x41da,3},{0x2947b,2}}, {{0x4268,3},{0x25c2,3}}, {{0x2a9ac,2},{0x22cf8,1}}, + {{0xec2,2},{0xb55,2}}, {{0x278ad,3},{0x279f5,2}}, {{0x1040,6},{0x2409,5}}, {{0xc13,4},{0x29cc,10}}, + {{0x141f2,5},{0x2900,4}}, {{0x6d81,3},{0x1878,1}}, {{0xb72,2},{0xfe5,2}}, {{0xaca2,3},{0xaec,2}}, + {{0xbeb,1},{0xc57,3}}, {{0x70ea,3},{0xaf1,1}}, {{0x2446a,3},{0x27d1b,3}}, {{0x410c,4},{0xae7,1}}, + {{0x2796,3},{0xd54,1}}, {{0x29e8c,3},{0x1b6b3,2}}, {{0xeca,4},{0xaea,2}}, {{0x364e,4},{0xcafd,6}}, + {{0x290c,2},{0x146b0,6}}, {{0x7e0a,5},{0xc8a3,3}}, {{0xeac4,6},{0xeaca,5}}, {{0x364e,4},{0xae2,1}}, + {{0x6ac3,3},{0x5af9,3}}, {{0x24a2d,2},{0x2a96b,2}}, {{0x15b52,4},{0x410e,2}}, {{0x1084,3},{0xb8f,3}}, + {{0x2ff6,8},{0x11e6,6}}, {{0xae2,2},{0x2288,4}}, {{0xaca2,3},{0x202c,3}}, {{0x278a9,1},{0x278cf,2}}, + {{0x5ddd,9},{0xd0b,4}}, {{0xc49,3},{0xeb1,2}}, {{0xb590,5},{0x89f7,5}}, {{0x2789b,3},{0x1171,2}}, + {{0x1e36,8},{0xd1a,7}}, {{0x167c,7},{0x1693,3}}, {{0xf30,6},{0x2a09,5}}, {{0x180c,4},{0x1557f,3}}, + {{0x41da,3},{0x29476,2}}, {{0xf92f,4},{0xae7,1}}, {{0xb31,1},{0x28e89,2}}, {{0xa62a,7},{0x674c,3}}, + {{0xa4b6,7},{0x10c3,5}}, {{0xd65,3},{0x1b25b,4}}, {{0xc8d4,4},{0xdf0,2}}, {{0x18e2f,6},{0xb78,2}}, + {{0xa25e,5},{0x1cef,3}}, {{0xd5c,1},{0xd0c,2}}, {{0xbd4,2},{0x2af8,4}}, {{0x16dc,5},{0x1dac,3}}, + {{0x278a9,1},{0x278db,2}}, {{0x4a27,4},{0x67c0,4}}, {{0x1257,3},{0xb9c,2}}, {{0x1140,4},{0xe72,3}}, + {{0xaefa,4},{0x1307,3}}, {{0x2c72e,4},{0x6f6c,2}}, {{0x19a4,6},{0xb65,2}}, {{0x65fd,7},{0xc57,3}}, + {{0x2375d,5},{0xaea,2}}, {{0x1761,3},{0x372a,4}}, {{0x1ed51,3},{0x432,1}}, {{0x2884e,6},{0xae0,1}}, + {{0x6cbe,4},{0x4460,3}}, {{0x5365,5},{0xbb5,3}}, {{0x1612e,5},{0xb78,2}}, {{0x2133,7},{0x1354,8}}, + {{0x115c,8},{0x115c,8}}, {{0xacba,5},{0xe4c,7}}, {{0x28840,6},{0x1ed58,1}}, {{0x14dc,4},{0x967e,4}}, + {{0xd7f,3},{0x1081,3}}, {{0x26c4,3},{0x10f3,1}}, {{0xdf2,3},{0x100d2,6}}, {{0xc0c7,8},{0x2b,3}}, + {{0x10f0,1},{0x10fa,1}}, {{0x10c8,3},{0xce8,3}}, {{0x244ad,2},{0x6fac,2}}, {{0x10fb,3},{0xb78,2}}, + {{0x274b,5},{0x132f,3}}, {{0x2c79a,4},{0x1b709,2}}, {{0xaca2,3},{0xbeb,1}}, {{0x178c,3},{0xd51,2}}, + {{0x10c8,3},{0x27b6,1}}, {{0x14bb2,2},{0x10ed,2}}, {{0x27abb,2},{0x278af,1}}, {{0xb6c,3},{0xae2,2}}, + {{0x2746,3},{0xbac,4}}, {{0x1cce5,6},{0xf14,2}}, {{0x1e,1},{0xcd30,4}}, {{0x1f019,4},{0x2844,2}}, + {{0x10866,5},{0x10c4,4}}, {{0x422e,3},{0x1c68,3}}, {{0x17fc,5},{0x10c3,5}}, {{0x143aa,6},{0xae6,3}}, + {{0x10f7,1},{0xc34,2}}, {{0x102c,2},{0x14b6,2}}, {{0x19,1},{0x7c4,1}}, {{0x1e1a7,6},{0xb47,2}}, + {{0x860e,8},{0xbb4,4}}, {{0x264c,4},{0xa53e,8}}, {{0x79f6,7},{0x702a,4}}, {{0x295c,5},{0xb2e,2}}, + {{0xc89,2},{0x1156,6}}, {{0x4204,5},{0x31ad,9}}, {{0x3ffc,6},{0xbf20,5}}, {{0x2920,4},{0xe49,4}}, + {{0xc13,4},{0x72aa,8}}, {{0xcab,3},{0xbb4,4}}, {{0x10b7,4},{0xaf1,2}}, {{0x2a625,4},{0x27897,1}}, + {{0x5324,5},{0x1577,4}}, {{0xfe38,4},{0x28,1}}, {{0x1b49b,6},{0xb2e,2}}, {{0xaea,1},{0x4459,3}}, + {{0x26c6,2},{0x2288,4}}, {{0x11b2,4},{0x1dd8,4}}, {{0x10ec,1},{0xaf5d,2}}, {{0x123c,9},{0xc8f,2}}, + {{0x1b237,4},{0x70d0,4}}, {{0x244f5,2},{0xf907,2}}, {{0x17bc,3},{0x1a6eb,6}}, {{0xfcaf,2},{0x2844,2}}, + {{0x24f91,2},{0x28634,1}}, {{0xb24c,5},{0x7a46,4}}, {{0xfed0,6},{0x30,6}}, {{0x24531,4},{0x157f2,2}}, + {{0xb63,3},{0x140a,2}}, {{0x10f0,1},{0x43e3,1}}, {{0xaf2,1},{0x92e9,5}}, {{0x72b6,5},{0x103a,3}}, + {{0x132c,6},{0x583f,6}}, {{0x2324,4},{0x10c4,4}}, {{0x25153,3},{0x1493c,3}}, {{0xbafa,5},{0xb2c,2}}, + {{0x317e,6},{0x67c0,4}}, {{0x8aca,5},{0x8adb,7}}, {{0xd343,7},{0xb68,4}}, {{0x5c3b,9},{0xd0d,2}}, + {{0xb44,3},{0xae7,1}}, {{0x14fc8,5},{0x1d98,3}}, {{0x10960,8},{0x10dc,2}}, {{0x1f0f,3},{0x5cd6,3}}, + {{0x4d74,8},{0x4d7c,5}}, {{0x178c,3},{0x1342,6}}, {{0x1509a,4},{0x28,1}}, {{0x55d5,8},{0x1bdb,3}}, + {{0xbaa2,4},{0x75ea,4}}, {{0x180c,4},{0x11b6,5}}, {{0x1fd89,7},{0xae7,1}}, {{0x10ea,3},{0x14b6,2}}, + {{0x19b0d,7},{0xcb8,2}}, {{0x298a,2},{0x28,1}}, {{0x24461,1},{0x117c,1}}, {{0x30ba,7},{0x107e,5}}, + {{0x449e,6},{0x1c8f,3}}, {{0x227d,5},{0xb78,2}}, {{0x12fc,12},{0x1308,4}}, {{0x30,2},{0x7438,5}}, + {{0x2674b,4},{0x27b6,1}}, {{0x51df,5},{0x5d39,4}}, {{0x28662,7},{0x2445e,1}}, {{0xc99,3},{0x6170,7}}, + {{0x432,16},{0x432,14}}, {{0xb2e,2},{0x23d9,3}}, {{0x1b72f,6},{0xfeec,4}}, {{0x1574b,4},{0x1574f,3}}, + {{0xae6,3},{0x1d,1}}, {{0x3234,3},{0x1a,3}}, {{0x318c,7},{0x1667,5}}, {{0x257c,2},{0x1a,1}}, + {{0x27b4,3},{0x78a2,4}}, {{0x209f,4},{0xc8e,3}}, {{0x279d1,2},{0x278dc,1}}, {{0x1055,3},{0x1aa6,3}}, + {{0x1361,2},{0x1a,1}}, {{0x6d81,3},{0x17e8d,6}}, {{0xf40c,5},{0xd0c,2}}, {{0x1b,1},{0x21,1}}, + {{0x2bfc,2},{0x2b,2}}, {{0x27b4,3},{0x3789,3}}, {{0x24a40,3},{0x734,1}}, {{0xf6e4,5},{0xb4a,2}}, + {{0xb68d,6},{0xb2c0,4}}, {{0xcd34,7},{0xbb4,4}}, {{0xc25,3},{0x1414d,4}}, {{0x10ba,2},{0xaea,1}}, + {{0x30f5,4},{0xb9c,2}}, {{0x1c775,5},{0x1719,3}}, {{0xa156,6},{0xa15c,5}}, {{0xfb1,2},{0x2b,1}}, + {{0xa6a2,6},{0x1372,3}}, {{0x6e51,5},{0x4875,5}}, {{0x10ec,1},{0x15adc,2}}, {{0x1e45,3},{0xbb5,1}}, + {{0xa1c2,6},{0xb48,2}}, {{0xcd9,3},{0x22480,4}}, {{0xddc,4},{0x5d97,5}}, {{0x3f7e,6},{0x227a,3}}, + {{0xdd04,6},{0xcd30,4}}, {{0x17bc,4},{0xd8e,2}}, {{0xd0fc,5},{0xc828,5}}, {{0x24871,4},{0x70ac,4}}, + {{0x2878d,4},{0xff22,2}}, {{0x3704,7},{0x7fda,4}}, {{0xcf0,2},{0xc57,4}}, {{0x286c5,4},{0x6f72,2}}, + {{0x122c,4},{0x2045,3}}, {{0xc1e,2},{0x3a3b,3}}, {{0x2d71f,2},{0x24,1}}, {{0xb2f,1},{0xb76,3}}, + {{0xeec,5},{0xd1fe,6}}, {{0xc25,3},{0xc57,4}}, {{0x6b6e,3},{0x4bbf,5}}, {{0x116d,2},{0x278d6,1}}, + {{0x1b6db,4},{0x70ce,2}}, {{0x14e4c,7},{0xb55,2}}, {{0xf5de,6},{0xae7,1}}, {{0xa942,8},{0x4d56,4}}, + {{0x10f7,1},{0x290f,3}}, {{0x10ea,3},{0x1c4d9,4}}, {{0x2e44,5},{0x4500,6}}, {{0xbeb,1},{0xbe85,6}}, + {{0xf52a,5},{0xd17,3}}, {{0x1b21,3},{0xae7,2}}, {{0x20bb,3},{0x173e,3}}, {{0xd44,5},{0xb54,4}}, + {{0x27a79,2},{0x1b6ab,1}}, {{0x132e,4},{0x296f,5}}, {{0xae9,3},{0xbe8,3}}, {{0xe64,5},{0xee8,3}}, + {{0x2b01,7},{0xd0d,2}}, {{0xc680,7},{0x2af8,4}}, {{0x20f9c,6},{0xae7,1}}, {{0x117c,1},{0xb31,1}}, + {{0x3dcc,8},{0xff7,5}}, {{0x27977,2},{0x1b6ab,1}}, {{0x178c,3},{0xc60,3}}, {{0x1cec,5},{0x173e,3}}, + {{0x2045,3},{0xcb8,2}}, {{0x441c,3},{0x7b10,6}}, {{0x2787,6},{0xd0b,3}}, {{0xebe2,7},{0x1c25,4}}, + {{0x12c92,5},{0xa2ba,4}}, {{0x286bd,2},{0x24515,2}}, {{0x14ff0,4},{0x173e,3}}, {{0x41da,5},{0x3bc2,4}}, + {{0x10f0,1},{0xae2,1}}, {{0x9e9,2},{0xfed0,10}}, {{0x6f74,4},{0x2456b,2}}, {{0x72da,3},{0xc8e,3}}, + {{0xf261,3},{0xf264,6}}, {{0x17ae,2},{0x187c,3}}, {{0x4415,2},{0x1878,1}}, {{0x10ef,1},{0x201fc,4}}, + {{0x1f,1},{0x8a49,2}}, {{0xa83a,9},{0x4459,3}}, {{0xac7e,5},{0x14f91,5}}, {{0x4bad,7},{0xbb5,3}}, + {{0xbde,3},{0x10f0,1}}, {{0x14346,5},{0x1434b,5}}, {{0x2c578,4},{0x244e7,2}}, {{0xf275,5},{0x5396,3}}, + {{0xb44,3},{0x1e,1}}, {{0xbe4,1},{0x174e,3}}, {{0x1a,2},{0x5cd6,3}}, {{0x193b,5},{0x5575,4}}, + {{0x20a0,3},{0x4605,5}}, {{0x1f9e1,5},{0x25c2,3}}, {{0xc1ae,6},{0x2af8,4}}, {{0xb44,3},{0x3e2a,3}}, + {{0x6d8e,3},{0x1393,3}}, {{0x10c3a,7},{0x2b,3}}, {{0x3a55,5},{0xae7,1}}, {{0x278ad,3},{0x27ad9,2}}, + {{0x10c8,3},{0x1089,2}}, {{0xe64,4},{0x116a2,6}}, {{0x21,2},{0xb55,2}}, {{0x7b22,7},{0xd7f,3}}, + {{0x1b0c,6},{0x7ca8,6}}, {{0xbde,3},{0x4f65,3}}, {{0xbe7,1},{0xd7e,2}}, {{0x244b3,2},{0x5c78,2}}, + {{0x3758,4},{0x5c59,5}}, {{0x15680,5},{0x10569,3}}, {{0xb44,3},{0x6a91,3}}, {{0x20cd,4},{0xb7c,3}}, + {{0x2878b,6},{0x70da,2}}, {{0x14ff0,4},{0xb857,4}}, {{0xba08,6},{0x1357,5}}, {{0x1d48,3},{0xb47,2}}, + {{0x2d,1},{0x1275,4}}, {{0x53f4,5},{0x2db1,3}}, {{0x8b06,6},{0xe70,4}}, {{0x61ac,5},{0x27,1}}, + {{0x15a67,5},{0x789d,4}}, {{0x4eed,9},{0xbb4,4}}, {{0xfcac,5},{0xfcb1,6}}, {{0x5671,5},{0x2af8,4}}, + {{0xbe0,1},{0x1dff,2}}, {{0xbe7,1},{0xce2,3}}, {{0xcd9,3},{0x892c,6}}, {{0x1b8e7,4},{0x1b873,4}}, + {{0xba4a,5},{0x11e4,4}}, {{0xf65,3},{0xc67,3}}, {{0x924,2},{0x116c,2}}, {{0x27a0d,2},{0x27897,1}}, + {{0x16706,6},{0x10dc,2}}, {{0x32c4,3},{0xf10,3}}, {{0x1cc5d,6},{0xb55,2}}, {{0xa582,5},{0xcab,3}}, + {{0x85de,5},{0x5fe0,4}}, {{0x2ae0,5},{0x2462,4}}, {{0x276b,3},{0xb9d,3}}, {{0x2aefa,2},{0x2445e,1}}, + {{0x2499,12},{0xb78,2}}, {{0x271e,3},{0x2428b,3}}, {{0xb64,2},{0x2160a,3}}, {{0x1505e,5},{0x2eaf,5}}, + {{0x50e8,10},{0x10dc,2}}, {{0xae7,1},{0x10d9b,4}}, {{0x16b8f,5},{0x1bdb,3}}, {{0x20381,6},{0xb65,2}}, + {{0xbb2,2},{0x9133,3}}, {{0x41b0,5},{0x1362,3}}, {{0x16ae,2},{0xf689,3}}, {{0x14e60,5},{0xae7,1}}, + {{0xdf6,3},{0x1693,3}}, {{0xcfd,5},{0x55db,4}}, {{0xcd3,2},{0xc67,2}}, {{0x1084,3},{0x13df9,7}}, + {{0xccc,5},{0x2b,1}}, {{0xfdf,2},{0x2abe,6}}, {{0xaea,1},{0xb82,3}}, {{0x15b40,2},{0x28493,3}}, + {{0xbd83,5},{0x3594,3}}, {{0x6d5a,5},{0x57e2,8}}, {{0x1ad0,7},{0x1256,4}}, {{0x257a,4},{0xdf0,2}}, + {{0xba5,4},{0xae5,1}}, {{0x519e,4},{0xcc0,3}}, {{0x27a8b,2},{0x278a9,1}}, {{0xcde,3},{0x4e70,4}}, + {{0x1171,2},{0x278af,1}}, {{0x1b4f,3},{0x28,1}}, {{0x2a625,4},{0x278d6,1}}, {{0x2657f,2},{0x948,1}}, + {{0xd0f,4},{0xdd3,3}}, {{0x1b12c,4},{0xbe4,1}}, {{0x27897,2},{0x278af,1}}, {{0x279c5,2},{0x278d6,1}}, + {{0x422e,3},{0x43e3,1}}, {{0x1861,3},{0xb78,2}}, {{0x279fb,2},{0x116d,1}}, {{0xd57f,7},{0xd7f,3}}, + {{0xbde,3},{0x10f6,1}}, {{0xd5c,1},{0xcb8,3}}, {{0x177c,3},{0xb52,2}}, {{0x2474d,2},{0xfb8b,2}}, + {{0x28da,1},{0x10f3,1}}, {{0xfbfc,5},{0x1372,3}}, {{0x1aee,6},{0x63c8,5}}, {{0x6b06,3},{0x16f0,4}}, + {{0x27b6,1},{0x26c6,1}}, {{0x18217,6},{0x10569,3}}, {{0x27b6,1},{0xb8f,2}}, {{0xbde,3},{0x40b6,4}}, + {{0x271e,3},{0x1402,3}}, {{0x27ab5,2},{0x116c,1}}, {{0x27aeb,2},{0x278af,1}}, {{0x1051,4},{0xfdd,3}}, + {{0xcfd,4},{0x2202,3}}, {{0xb7d,1},{0xc89,2}}, {{0x2539d,6},{0xb2f,1}}, {{0x13b37,3},{0xb65,2}}, + {{0x2445f,1},{0x18,1}}, {{0x51f9,10},{0x5203,3}}, {{0xaaf4,3},{0xbd4,2}}, {{0xbc6,2},{0xb2f,1}}, + {{0x6735,5},{0xae5,1}}, {{0x30,2},{0xfed2,2}}, {{0x69cc,8},{0x1621,4}}, {{0x159c8,14},{0x159c8,1}}, + {{0x26b5,4},{0xe91,6}}, {{0x2474d,4},{0x6f96,2}}, {{0x244f5,2},{0x6f64,2}}, {{0xe02,5},{0x372a,4}}, + {{0x244f5,2},{0x6f96,2}}, {{0x178c,3},{0xd1b,1}}, {{0xbde,3},{0x13e8f,4}}, {{0x7a6e,5},{0xb8f,3}}, + {{0xb590,5},{0xb595,6}}, {{0xa7da,4},{0x5396,3}}, {{0xfb1,2},{0xb8f,2}}, {{0x4998,7},{0xb63,2}}, + {{0xbb5,1},{0x1290,3}}, {{0x10fb,4},{0x1b4f,3}}, {{0x27897,2},{0x116d,1}}, {{0x43a2,3},{0xb7d,1}}, + {{0x6d81,3},{0x29873,2}}, {{0x2d02,8},{0xb52,5}}, {{0xef68,7},{0x9c66,4}}, {{0xc25,5},{0xc57,3}}, + {{0x27aeb,2},{0x278a9,1}}, {{0x2f32,11},{0xb63,2}}, {{0xca7,2},{0xb78,2}}, {{0xae0,1},{0x43ba,6}}, + {{0xc25,3},{0x2d,1}}, {{0x2c76,7},{0x2195,3}}, {{0x474f,8},{0xec5,5}}, {{0x6d81,3},{0xb72,2}}, + {{0x278f3,2},{0x27ac7,2}}, {{0xd76,7},{0x2a77,7}}, {{0x27a8b,2},{0x278d6,1}}, {{0xbd9,2},{0xb76,3}}, + {{0x181c,3},{0x3e26,2}}, {{0xaf1,1},{0x27,1}}, {{0x397a,5},{0xb73,2}}, {{0xaf2,1},{0xdf0,2}}, + {{0x1173,2},{0x924,2}}, {{0x27897,2},{0x278d6,1}}, {{0xb44,3},{0x21,1}}, {{0x159c,5},{0x4569,5}}, + {{0x27897,2},{0x278a9,1}}, {{0x11ef,2},{0x2b,1}}, {{0x14c94,5},{0x4606,3}}, {{0xdf4,4},{0xc34,3}}, + {{0xb47,2},{0x2b,2}}, {{0xaea,1},{0x1761,3}}, {{0x12d32,6},{0x1278,4}}, {{0x4db5,8},{0xc63,3}}, + {{0xeec,7},{0x5581,6}}, {{0x10c8,3},{0x16ee,2}}, {{0x23b8,9},{0xe1a,6}}, {{0xb8a,2},{0xb65,2}}, + {{0xb52,2},{0xb54,2}}, {{0x449e,5},{0x12ff,3}}, {{0x3234,3},{0xc67,2}}, {{0xa7dc,3},{0xd57,3}}, + {{0x4f6f,5},{0xb82,2}}, {{0x272d,4},{0x28da,1}}, {{0x73e1,3},{0xb77,3}}, {{0x4971,6},{0x101a,3}}, + {{0x4b31,3},{0xd7f,3}}, {{0xb7f,3},{0xd0b,3}}, {{0x1f,4},{0xe35,6}}, {{0xa276,9},{0xb78,2}}, + {{0x2dc6,7},{0xf05,7}}, {{0x6067,7},{0xdf7e,4}}, {{0xf89c,6},{0x1150,2}}, {{0x6ac3,3},{0x10281,6}}, + {{0x177c,3},{0xa7d3,2}}, {{0x14dc0,6},{0x14dc6,4}}, {{0x1e,1},{0xbfc4,6}}, {{0xf367,5},{0xe6d,2}}, + {{0xc17,3},{0x1700,4}}, {{0xbe7,1},{0xeb3,3}}, {{0x1c81d,5},{0x1a,2}}, {{0xb6c,3},{0x12ff,2}}, + {{0x443e,2},{0xeb2,1}}, {{0xd41,5},{0x1a10,2}}, {{0x1a835,6},{0xe72,3}}, {{0x5200,5},{0xb2c,2}}, + {{0xde4,2},{0x1a,1}}, {{0x416a,11},{0x1a,1}}, {{0x10fb,3},{0xbe1,2}}, {{0xaeb,2},{0xcce,3}}, + {{0x179cf,2},{0x10ec,1}}, {{0x75b2,5},{0xd7f,3}}, {{0xbb8,9},{0xbc1,3}}, {{0x39d0,3},{0x5277,2}}, + {{0x30,2},{0x27cc3,4}}, {{0x139c,6},{0x8cde,5}}, {{0xbe7,1},{0x4284,2}}, {{0xf96,4},{0xfdd,2}}, + {{0xb44,3},{0x4818,7}}, {{0x2864c,1},{0x9a9,1}}, {{0x41da,3},{0x2720,2}}, {{0xbe0,1},{0xba7,3}}, + {{0xe8a9,9},{0xaf1,2}}, {{0x4042,7},{0x21d2,5}}, {{0x114c,2},{0xd5e,4}}, {{0xae9,2},{0xb4a,2}}, + {{0x24f91,2},{0x24460,3}}, {{0x14dc,7},{0x28,1}}, {{0x257a,4},{0xb65,2}}, {{0x8907,4},{0xb63,2}}, + {{0xa246,4},{0xb70,2}}, {{0x12332,5},{0x8bf2,4}}, {{0x26f1,4},{0x164af,5}}, {{0x15b3f,2},{0xbe4,1}}, + {{0x177c,3},{0x4417,2}}, {{0x264c,4},{0x1a,2}}, {{0x3250,4},{0x17b1a,5}}, {{0xf2c2,5},{0xeb2,1}}, + {{0xceb,3},{0x31f8,4}}, {{0x1b0c0,7},{0xb9f,2}}, {{0x1a51d,5},{0x1ed0,4}}, {{0x6e92,7},{0x12d7,5}}, + {{0x4a82,8},{0xc8c,5}}, {{0x4126,3},{0xb7a,5}}, {{0x422e,3},{0x155db,3}}, {{0x201f9,5},{0x10f2,2}}, + {{0x10ec,1},{0xfb1,2}}, {{0x82ba,6},{0x72b6,3}}, {{0xb7d,1},{0x27,1}}, {{0x280e,6},{0x2a16,3}}, + {{0xaf1,1},{0x16f8,3}}, {{0x10c8,4},{0xb85,2}}, {{0x1c29,10},{0xd7f,3}}, {{0x4354,4},{0x6aba,5}}, + {{0x4362,6},{0xb7c,3}}, {{0xd91,2},{0x50fd,5}}, {{0xae0,1},{0xce2,3}}, {{0x278a7,4},{0x278af,1}}, + {{0xae7,2},{0x1b25b,4}}, {{0xbeb,1},{0x10029,5}}, {{0x10fb,3},{0x1d8a,3}}, {{0x17bde,6},{0x2b,3}}, + {{0x10fb,3},{0x27,1}}, {{0xae0,1},{0xb70,2}}, {{0x17ac,4},{0x43a5,3}}, {{0x2aacb,2},{0x806,2}}, + {{0x20221,5},{0x2bfd,2}}, {{0x88ea,5},{0x1d,1}}, {{0x4c22,10},{0x2b,3}}, {{0x10ea,3},{0xae6,2}}, + {{0xceb,3},{0xbc5,3}}, {{0xadf,2},{0xbbf,2}}, {{0xae5,1},{0x35d3,5}}, {{0xe64,5},{0x1b0a,2}}, + {{0x13a2,3},{0xb47,2}}, {{0x271e,3},{0x1489,3}}, {{0x2793d,4},{0x27ae5,2}}, {{0x4108,2},{0xb63,3}}, + {{0xf3b6,4},{0x16f8,3}}, {{0xaada,5},{0xb2e,2}}, {{0x2789b,3},{0x924,3}}, {{0x178c,3},{0x3789,3}}, + {{0xd65,3},{0xb85,2}}, {{0x13bc,7},{0x253a,4}}, {{0x14ad0,5},{0x1377,5}}, {{0x1735a,6},{0x2b,3}}, + {{0xc37,4},{0xfb1,2}}, {{0xc1c,2},{0x1b25b,4}}, {{0x19b3,5},{0xb63,2}}, {{0x3a39,3},{0x1ed0,4}}, + {{0x10ea,3},{0xf8f,5}}, {{0x1023,7},{0x2b,3}}, {{0xec0,4},{0xb2c,4}}, {{0x17ee,3},{0x1644,5}}, + {{0x271e,3},{0xb97,3}}, {{0x22bc7,2},{0x1b,1}}, {{0x26c4,3},{0x10f7,1}}, {{0x40b2,4},{0x7526,5}}, + {{0x281d,5},{0xb0ce,3}}, {{0x139e6,6},{0xbe2c,4}}, {{0x10b22,6},{0x12be,3}}, {{0x2868,4},{0xa592,7}}, + {{0xae9a,6},{0xaea0,6}}, {{0x27b6,1},{0x1fb2,5}}, {{0x10dc,2},{0x1d,1}}, {{0x1fa09,6},{0x130f,2}}, + {{0x13cf2,5},{0xc6a8,4}}, {{0x2322d,4},{0xb8f,2}}, {{0x20bb,4},{0xc8a3,3}}, {{0x21,1},{0x789c,5}}, + {{0xbc3,5},{0x1489,3}}, {{0xc49,3},{0x2bfc,2}}, {{0x10ca,1},{0x1a,2}}, {{0x1afd,5},{0x2d77,9}}, + {{0xb38b,8},{0x10dc,2}}, {{0xa01e,7},{0x3fdc,4}}, {{0x10ea6,7},{0x2b,3}}, {{0xdfe,5},{0x655a,7}}, + {{0x27,1},{0x5392,7}}, {{0x13cca,5},{0xfdf,2}}, {{0x94f6,7},{0xe70,4}}, {{0x364e,4},{0x459e,4}}, + {{0x6b52,4},{0x67a6,4}}, {{0x4d33,7},{0x1e6c,6}}, {{0x6971,8},{0x1f13,4}}, {{0x8fe6,9},{0xf26,3}}, + {{0x28da,1},{0xb49,2}}, {{0x1f,1},{0x4590,5}}, {{0x612a,8},{0x10dc,2}}, {{0x4a5b,6},{0x2be6,4}}, + {{0x278a7,3},{0x278e1,2}}, {{0xcab,3},{0x2b,2}}, {{0x2445f,1},{0x27e39,3}}, {{0x10ea,3},{0xaa98,2}}, + {{0x1858,5},{0x2af8,4}}, {{0x1f281,7},{0xae7,1}}, {{0x65af,8},{0x90f6,4}}, {{0x101f2,7},{0x2b,3}}, + {{0x5a26,8},{0xff7,5}}, {{0xb52,2},{0x1081,3}}, {{0x2aa8,6},{0x2aae,8}}, {{0x10f2,1},{0x1c,1}}, + {{0xf3ed,3},{0xbaf4,6}}, {{0xaca2,3},{0x20a0,3}}, {{0xc37,3},{0x21705,4}}, {{0x10c8,3},{0x11ef,2}}, + {{0x2ae0,5},{0x1195,4}}, {{0xb44,3},{0x290e,4}}, {{0x2877b,6},{0x6fae,2}}, {{0xa7da,3},{0x2660a,3}}, + {{0x27ac1,2},{0x278a9,1}}, {{0x470e,8},{0x1a,2}}, {{0xf57b,3},{0x3d9d,5}}, {{0x10fa,1},{0x101b9,4}}, + {{0x3cc2,9},{0xb65,2}}, {{0x6701,7},{0xc32,5}}, {{0x10fd,2},{0xdb31,5}}, {{0x10594,6},{0x1d,2}}, + {{0x2793d,4},{0x278c9,2}}, {{0x43e3,2},{0x28,2}}, {{0x17bc,3},{0x17ae,1}}, {{0x116c,3},{0x116c,2}}, + {{0x9a2f,3},{0x674c,3}}, {{0x27b6,1},{0x600f,7}}, {{0xa7da,3},{0xbeb,1}}, {{0x2446c,1},{0x2446f,2}}, + {{0x10f3,1},{0x47ad,5}}, {{0xd76,4},{0x4e98,3}}, {{0xc39,2},{0xae6,2}}, {{0xa246,4},{0x1762,3}}, + {{0x3384,9},{0xdc1,5}}, {{0x957a,8},{0xc7b,4}}, {{0x24462,1},{0x2864c,1}}, {{0x2791d,2},{0x278dc,1}}, + {{0x26f1,4},{0xbb0b,4}}, {{0x532,66},{0x30,30}}, {{0x7e9a,5},{0x220f,5}}, {{0x10ea,3},{0x5a06,3}}, + {{0xd54,1},{0xae2,1}}, {{0x275c,3},{0x1009f,7}}, {{0xcde,3},{0x142e,1}}, {{0x1095,3},{0x142e,1}}, + {{0x1a197,6},{0xb2f,1}}, {{0x196d5,5},{0x1101e,4}}, {{0xf839,6},{0xb8f,3}}, {{0xb96e,7},{0x1499,3}}, + {{0xb47,2},{0xfe5,2}}, {{0xc52,2},{0x1599d,7}}, {{0x2793d,4},{0x27ac1,2}}, {{0x271e,3},{0x1e,1}}, + {{0x3cde,8},{0x10dc,2}}, {{0x13d7e,6},{0x1499,2}}, {{0xaf1,1},{0x13dd0,5}}, {{0xceb,3},{0xae7,1}}, + {{0x26c6,2},{0xb54,3}}, {{0xceb,11},{0x15c7,5}}, {{0xfd46,5},{0x141e,3}}, {{0x48fc,10},{0xc63,3}}, + {{0x27a8b,2},{0x1b6ab,1}}, {{0xb7d,1},{0xfcfc,3}}, {{0x3838,8},{0x11e6,6}}, {{0x1095,3},{0xb67,2}}, + {{0x56cc,7},{0x3728,6}}, {{0x2cd8,10},{0xb7c,3}}, {{0xfb1,2},{0x2693,4}}, {{0x3dcc,8},{0xc8e,3}}, + {{0x10f7,1},{0x4284,2}}, {{0xbb1,3},{0x6f36,3}}, {{0x27a0d,2},{0x116d,1}}, {{0xb47,2},{0x2829c,3}}, + {{0xae6,2},{0x2b,2}}, {{0x21581,6},{0xaf2,1}}, {{0xb33e,5},{0x1536,6}}, {{0x2864c,1},{0x20b19,6}}, + {{0xb44,3},{0x16ae,2}}, {{0xb7f,3},{0xf10,3}}, {{0xbb2,2},{0xbd1,2}}, {{0x598a,6},{0xd727,5}}, + {{0x1051,4},{0x1b09,3}}, {{0x27,1},{0x1cc58,4}}, {{0x22064,4},{0xc3d,3}}, {{0x3ec8,8},{0x2b,3}}, + {{0x2c76,4},{0x11027,5}}, {{0x4c70,9},{0xb7c,3}}, {{0xa56a,7},{0xce8,3}}, {{0xceb,4},{0x18401,5}}, + {{0x28,2},{0xb63,4}}, {{0x180c,4},{0xfdd,3}}, {{0x1fc79,5},{0x12f1,3}}, {{0xdfe,5},{0x5277,2}}, + {{0x4bad,8},{0x1dac,3}}, {{0x156d0,6},{0x43bd,4}}, {{0xab9a,3},{0x101b,3}}, {{0x247f5,8},{0xfef0,4}}, + {{0xbde,3},{0xaf5d,3}}, {{0x1fa69,5},{0xc89,2}}, {{0x532,6},{0x15806,6}}, {{0x134c,8},{0xbb4,4}}, + {{0x15abb,2},{0x250c9,2}}, {{0x278ad,3},{0x279b9,2}}, {{0x7276,4},{0xbb5,1}}, {{0x17be,2},{0xaea,1}}, + {{0xed0,3},{0xb2b,3}}, {{0x150b8,5},{0xae7,1}}, {{0x10fb,3},{0xbd1,2}}, {{0x1c7b,4},{0x1257,3}}, + {{0xb68,3},{0x2211,3}}, {{0x28634,1},{0x948,1}}, {{0x10f2,1},{0x5396,3}}, {{0x2859,5},{0x874e,4}}, + {{0x434c,2},{0x428b,2}}, {{0xc37,3},{0x4460,3}}, {{0x11b94,6},{0x2af8,4}}, {{0x159c,8},{0x15a4,8}}, + {{0x27b4,3},{0xc51,2}}, {{0x27c3,4},{0xbb5,1}}, {{0xf6ce,4},{0x10f7,1}}, {{0x43e3,1},{0xf8cf,2}}, + {{0x3234,3},{0x1257,2}}, {{0x1084,3},{0x1b4f,3}}, {{0x3162,5},{0x1719,3}}, {{0xf3ca,5},{0x10e4,6}}, + {{0x27977,2},{0x278d6,1}}, {{0x422e,4},{0xb85,2}}, {{0x27a2b,2},{0x278a9,1}}, {{0xbb5,1},{0x12be,3}}, + {{0x27451,4},{0x43e3,1}}, {{0x9b62,6},{0x72da,4}}, {{0xbe4,1},{0xc55,2}}, {{0x41be,3},{0x2d,1}}, + {{0xba5,4},{0x20,2}}, {{0x41be,3},{0xd54,1}}, {{0xb33e,5},{0xbb1,3}}, {{0x6cbe,5},{0x1a,3}}, + {{0x1e,1},{0x5a50,6}}, {{0x19a4,6},{0xc63,3}}, {{0x10fb,3},{0x440f,2}}, {{0x6b52,4},{0x1d,1}}, + {{0xb8c,2},{0x12fe,3}}, {{0xf9ef,3},{0xd17,3}}, {{0x1339a,6},{0x8fee,4}}, {{0x2451f,2},{0x70b4,2}}, + {{0x15fc,9},{0xb2e,2}}, {{0x24a2d,2},{0x2aea3,2}}, {{0x14fc8,5},{0x2c00,3}}, {{0xbcb,3},{0xbd3,3}}, + {{0xbc91,8},{0x10dc,2}}, {{0xddc,4},{0x4882,3}}, {{0xf85,4},{0x229f,5}}, {{0xe42,5},{0x1342,6}}, + {{0x27b4,3},{0xfdd,3}}, {{0x27ce8,3},{0x2a93a,2}}, {{0x10ec,1},{0x67be,5}}, {{0x70b0,4},{0x244af,2}}, + {{0xd5cc,5},{0x30fb,5}}, {{0xddc,4},{0xd0b,3}}, {{0xca7,2},{0xd1b,1}}, {{0xb73,2},{0x100f,3}}, + {{0x27b6,1},{0x4882,3}}, {{0xc37,3},{0xc6a9,3}}, {{0x6f74,4},{0x70a2,2}}, {{0x27897,2},{0x278dc,1}}, + {{0xcdf,3},{0xb2c,4}}, {{0x3330,10},{0xae7,1}}, {{0x25205,3},{0x25202,2}}, {{0x508d,5},{0xae6,2}}, + {{0x1487a,4},{0x3a39,3}}, {{0xc2e,2},{0x2b,1}}, {{0x432,16},{0x432,12}}, {{0x122c,4},{0xe6d,2}}, + {{0x2c91a,4},{0x70a6,2}}, {{0xde9,1},{0xf687,5}}, {{0x25c5,5},{0xd282,6}}, {{0x6ac5,1},{0x10e2b,3}}, + {{0xfe38,4},{0x1981d,5}}, {{0x11324,8},{0x1a,1}}, {{0xae0,1},{0xd7f,3}}, {{0xae2,1},{0x2275,4}}, + {{0x535b,5},{0xaf2,1}}, {{0x14ec4,5},{0xf594,4}}, {{0x16bc,4},{0xdac,7}}, {{0xd0f,6},{0x2746,3}}, + {{0xb4a,2},{0xf59,3}}, {{0xaf42,7},{0xaf49,5}}, {{0xaea,3},{0xb2f,1}}, {{0xcb5,5},{0x12a17,5}}, + {{0x41b0,8},{0xeb3,3}}, {{0x23557,5},{0xbc1,2}}, {{0x1a0d,5},{0x2a23,7}}, {{0x27b95,4},{0x924,2}}, + {{0x10f7,1},{0x10f4,2}}, {{0x20d9,4},{0x1101e,4}}, {{0x415e,3},{0xaea,1}}, {{0x3ae6,10},{0x10dc,2}}, + {{0x6d81,3},{0x2505e,3}}, {{0x6d8e,3},{0xc45f,4}}, {{0xcfd,4},{0xdd0,3}}, {{0x2ab6,5},{0x1b0a,2}}, + {{0x13680,5},{0xaea,1}}, {{0x261f,4},{0xf6a,3}}, {{0x27a01,2},{0x116d,1}}, {{0x2e8a,8},{0xb65,2}}, + {{0x1286e,6},{0x10569,3}}, {{0x10f3,1},{0x74b9,4}}, {{0x3234,3},{0x1d5b0,5}}, {{0xdc0,3},{0x1b,1}}, + {{0x286bd,2},{0x806,2}}, {{0xbcb,3},{0xb85,2}}, {{0x5102,5},{0xd8d0,4}}, {{0x10fb,3},{0x263f,3}}, + {{0xc99,3},{0xd256,4}}, {{0x5102,5},{0x50ee,4}}, {{0x1abcb,4},{0x1abcf,5}}, {{0x1930,3},{0x14a8,4}}, + {{0xb44,3},{0xd256,4}}, {{0xc37,3},{0xd51,2}}, {{0xb48,2},{0x102f9,3}}, {{0xb56,2},{0xb2c,2}}, + {{0xee8,3},{0x1016,4}}, {{0x70d8,4},{0x10192,4}}, {{0x271e,3},{0xc67,3}}, {{0x1e45,3},{0xbbf,2}}, + {{0x10f6,1},{0x14934,2}}, {{0xb7d,2},{0xd1b,1}}, {{0x273c,5},{0x1ed0,4}}, {{0x181c,3},{0x26c6,1}}, + {{0xb257,5},{0x102dd,5}}, {{0x1b8e7,4},{0x2ac87,4}}, {{0x14ea6,4},{0x2b,2}}, {{0xc13,4},{0x45da,9}}, + {{0x103b4,5},{0x1daa,5}}, {{0xceb,4},{0xc67,2}}, {{0x1cab,4},{0x1c,1}}, {{0x27aa9,2},{0x278a9,1}}, + {{0x415e,2},{0xf21,3}}, {{0xd76,7},{0x29f9,6}}, {{0xaf0,2},{0x73fa,5}}, {{0x278a1,3},{0x27983,2}}, + {{0x1089,2},{0xc77,2}}, {{0x10188,4},{0x709c,4}}, {{0x1fce4,2},{0x1fce6,3}}, {{0x26c4,4},{0xc8e,3}}, + {{0x2445e,1},{0x9a9,1}}, {{0x2b,1},{0x12fe,1}}, {{0x1b,1},{0xc51,4}}, {{0x2445f,1},{0x2a948,1}}, + {{0x1ed69,3},{0x28efb,2}}, {{0x15222,3},{0xc57,3}}, {{0xeec,10},{0xbac,4}}, {{0x181c,3},{0xaaf0,2}}, + {{0xb73,2},{0x15f44,4}}, {{0xadf,2},{0x207e3,5}}, {{0xd79,3},{0x103a,3}}, {{0x789a,6},{0xba24,5}}, + {{0xeec,5},{0x1c8f,3}}, {{0x10c8,4},{0x12f0,4}}, {{0x318c,5},{0x11eeb,5}}, {{0x1150,2},{0x6b22,3}}, + {{0x1c78d,5},{0x12143,2}}, {{0xb68d,6},{0x2195,3}}, {{0xbafa,5},{0x1fb7,5}}, {{0x7a26,8},{0x5306,4}}, + {{0xb8f,2},{0xd57,2}}, {{0xc12a,6},{0x295c,5}}, {{0x2fda,6},{0x1046,7}}, {{0xb52,2},{0xbbf,2}}, + {{0x7e0a,5},{0x5aab,3}}, {{0x219c,5},{0x4882,3}}, {{0xbe33,8},{0xd7f,3}}, {{0x3fb8,3},{0x2b,2}}, + {{0x27,1},{0x187c,3}}, {{0x3fe0,5},{0x1446d,5}}, {{0xadf,2},{0x66ae,5}}, {{0xbe0,1},{0x30af,4}}, + {{0x86da,5},{0xaf2,1}}, {{0xbd7,3},{0x1d,1}}, {{0xe4c0,8},{0x10dc,2}}, {{0xc89,2},{0xb2f,1}}, + {{0x274b,5},{0x1dff,5}}, {{0x6255,8},{0xce8,3}}, {{0x924,2},{0x278db,2}}, {{0xaea,1},{0xc34,2}}, + {{0xb66,2},{0x2b,1}}, {{0x181c,3},{0x1170f,4}}, {{0xdba4,4},{0x4bc2,5}}, {{0x27ab5,2},{0x278af,1}}, + {{0x30,2},{0x2b890,4}}, {{0x1fa09,5},{0x5c76,4}}, {{0x2b,2},{0xd1b,1}}, {{0xfb1,2},{0xae5,1}}, + {{0x1084,3},{0xafa9,5}}, {{0x1b57,4},{0x5203,3}}, {{0x20,2},{0x502b,7}}, {{0x74ba,3},{0xaf2,1}}, + {{0x1a038,5},{0xc67,2}}, {{0x135c,5},{0x220f,5}}, {{0xcd9,4},{0xb72,3}}, {{0x532,66},{0x30,4}}, + {{0xae6,2},{0xeb3,3}}, {{0x218d,8},{0x2279,4}}, {{0x2c79a,4},{0x24873,2}}, {{0xb9a5,5},{0x1a,3}}, + {{0xb9c,2},{0x1757,5}}, {{0x6ac3,3},{0xd7f,3}}, {{0x20183,4},{0xb78,2}}, {{0x734,1},{0x27cb9,2}}, + {{0x7426,6},{0xb51d,5}}, {{0xbcb,3},{0x1b09,3}}, {{0x116d,2},{0x27897,1}}, {{0xd149,6},{0x691e,5}}, + {{0x78b2,5},{0x9071,5}}, {{0x3fb6,5},{0xeb3,3}}, {{0x20bb,3},{0x1c,1}}, {{0x244cb,4},{0x6f96,2}}, + {{0xaee7,2},{0x26c6,1}}, {{0x6d81,3},{0xe9b,3}}, {{0x6ac3,3},{0x1a,3}}, {{0xc13,4},{0x18b8,7}}, + {{0xb52,2},{0x103a,3}}, {{0x27b4,3},{0x283f,2}}, {{0x3694,4},{0xa24a,3}}, {{0x20b39,4},{0x1a2e,3}}, + {{0x20a77,4},{0x2b,3}}, {{0xba5,4},{0x3a39,3}}, {{0x21ba,8},{0xb63,2}}, {{0x1459e,3},{0xb54,3}}, + {{0x415e,3},{0x1f,1}}, {{0x14cb4,4},{0x80bd,4}}, {{0xb85,2},{0x5cd6,3}}, {{0xab9c,1},{0x28,1}}, + {{0xa4c9,3},{0xb2e,2}}, {{0x159c,4},{0x9a6a,8}}, {{0x41f6,4},{0xae2,1}}, {{0x7e9a,5},{0x1377,5}}, + {{0x162c,6},{0xaec,2}}, {{0x27a01,2},{0x278dc,1}}, {{0x24519,6},{0x2451f,6}}, {{0x40c0,4},{0x28,1}}, + {{0x24a2d,2},{0x780,1}}, {{0x13afe,7},{0xcab,3}}, {{0x1abd7,2},{0x10f7,1}}, {{0x734,1},{0x24461,1}}, + {{0xae2,2},{0x15f28,5}}, {{0x2c362,4},{0x27d99,2}}, {{0x6d8e,3},{0x18e6,10}}, {{0xc13,4},{0x28cf,5}}, + {{0xf87d,3},{0xaf1,2}}, {{0x157e2,12},{0x157ee,6}}, {{0xfd25,4},{0xa2b6,6}}, {{0xe75,4},{0x1ece,6}}, + {{0x12882,5},{0x1d9dc,5}}, {{0x102f,6},{0x3245,4}}, {{0x11dc,6},{0x8fe2,4}}, {{0xf3eb,5},{0x146c6,4}}, + {{0x10f3,1},{0x21,1}}, {{0xa7da,3},{0xfe5,2}}, {{0x28,2},{0x1915,6}}, {{0xf579,5},{0xf01,4}}, + {{0x2c8de,4},{0x6f6c,2}}, {{0x135e,3},{0xc1c,2}}, {{0xaf1,1},{0x23d9,3}}, {{0xb71,2},{0x4991,3}}, + {{0x1a607,6},{0xb2c,3}}, {{0x41e8,7},{0x41ef,4}}, {{0xf0e,5},{0x1525,7}}, {{0x2106,6},{0x2a95,5}}, + {{0x51c5,5},{0x8028,6}}, {{0x23de8,4},{0xab9c,1}}, {{0x70c6,6},{0x1b8e3,4}}, {{0xc67,2},{0xbbf,2}}, + {{0x203b9,4},{0x1489,3}}, {{0x1c29,6},{0xae6,2}}, {{0x36f6,9},{0x1f13,4}}, {{0x1b4b,3},{0xbd4,2}}, + {{0x278ad,4},{0x116d,1}}, {{0xd41,3},{0xa4c9,3}}, {{0x2a625,4},{0x1b6ab,1}}, {{0x4429,6},{0x1022a,4}}, + {{0x1dbe,5},{0x1d,1}}, {{0x141e,3},{0xf27c,3}}, {{0x1095,3},{0xeb2,1}}, {{0x11ba8,4},{0xc62,3}}, + {{0x10fb,3},{0xfff,6}}, {{0xcb0e,6},{0xba3a,5}}, {{0x2796,3},{0x152c4,2}}, {{0xbf93,6},{0xc63,3}}, + {{0x6d81,3},{0x2d,1}}, {{0xc37,3},{0x1ccf0,5}}, {{0x1a862,5},{0x542c,4}}, {{0x17bc,3},{0xd17,3}}, + {{0x1929d,5},{0x19ca,2}}, {{0x119c,7},{0xb442,4}}, {{0xaea,1},{0x28b1,3}}, {{0x19e1e,4},{0xbb1,3}}, + {{0x1e45,3},{0x17bd8,6}}, {{0x1afd,5},{0x4039,4}}, {{0x2445c,3},{0x2b2ff,1}}, {{0x1c29,6},{0x1a7f,5}}, + {{0x160e,6},{0x1489,3}}, {{0x2848,2},{0x10f3,1}}, {{0xcd9,3},{0xbe0,1}}, {{0x75e2,8},{0xe7b,3}}, + {{0x1b5f3,4},{0xe858,4}}, {{0x1186a,7},{0x101b,3}}, {{0x6d8e,3},{0xc67,2}}, {{0x43e3,2},{0xc67,3}}, + {{0x2c91a,4},{0x1b205,2}}, {{0x16fc,4},{0x4453,4}}, {{0x6f14,6},{0x25c1,4}}, {{0xb71,2},{0xb2d,3}}, + {{0x10ca,1},{0xaf63,2}}, {{0x29c28,4},{0x10ef,1}}, {{0xf5b0,4},{0x1f5ad,4}}, {{0xd41,3},{0x40b6,3}}, + {{0x1f0f,3},{0x25c2,3}}, {{0xccc,3},{0x11ef,3}}, {{0x27a0d,2},{0x278dc,1}}, {{0x2796,3},{0xae0,2}}, + {{0xc4c,3},{0x1f,1}}, {{0x27ab5,2},{0x278a9,1}}, {{0x2841e,3},{0x28634,1}}, {{0x257a,4},{0xde9,1}}, + {{0xefd,8},{0xf05,9}}, {{0x20bb,3},{0x182b3,6}}, {{0x1f,1},{0xc45e,5}}, {{0xab9a,3},{0xba7,3}}, + {{0x5365,5},{0xdfa,3}}, {{0x2c692,4},{0x6f78,2}}, {{0x264c,4},{0xc39,2}}, {{0x147c,5},{0x33fb,7}}, + {{0x261f,4},{0x2977,3}}, {{0xb7d,2},{0x12be,3}}, {{0x178c,3},{0x10f0d,7}}, {{0x181c,3},{0x1a10,2}}, + {{0xb17b,7},{0xb18d,4}}, {{0x6e92,7},{0xc8a,2}}, {{0xeab9,8},{0x10dc,2}}, {{0x78ca,5},{0x3a39,5}}, + {{0x1509a,4},{0xfb1,2}}, {{0xdc33,6},{0xec2,2}}, {{0xb12e,3},{0x1b3e,3}}, {{0x35fd,3},{0x1d,1}}, + {{0xbeb,2},{0xe72,3}}, {{0x88de,9},{0x2b,3}}, {{0x1a,2},{0x2b,1}}, {{0x1ad57,6},{0xb48,2}}, + {{0xa852,6},{0x4874,6}}, {{0xf3eb,5},{0x5268,3}}, {{0x1d8d7,6},{0x2b,2}}, {{0xb7d,1},{0xb2f,1}}, + {{0x11ef,3},{0xc63,3}}, {{0x6d8e,3},{0x1864,2}}, {{0x27a73,2},{0x116d,1}}, {{0xfd25,6},{0xc34,2}}, + {{0x725e,5},{0x28d4,6}}, {{0x6e12,2},{0xb75,2}}, {{0xb2c,2},{0xfe5,2}}, {{0xb6c,3},{0x186db,4}}, + {{0x1e,1},{0x5af9,6}}, {{0x16cc,4},{0x1bc3,3}}, {{0x1f2c5,2},{0x10fa,1}}, {{0xbd6,4},{0xc34,2}}, + {{0xa248,5},{0x1144,4}}, {{0x2061,5},{0xaec,2}}, {{0x2866a,2},{0x24468,2}}, {{0x8a0a,5},{0xcfd8,6}}, + {{0x26f1,4},{0x1485,7}}, {{0x10ec,1},{0x108b,3}}, {{0xb47,2},{0x1d,1}}, {{0x27c5,3},{0x108b,3}}, + {{0x286bd,2},{0x6f72,2}}, {{0x2b900,4},{0x6fae,2}}, {{0x7260,5},{0xb52,5}}, {{0x42ac,5},{0xdf50,6}}, + {{0x16ac,5},{0xecf0,5}}, {{0x422e,3},{0x1a4c6,6}}, {{0xb79,3},{0xb54,2}}, {{0x1ab2,4},{0x3c11,9}}, + {{0x7e2e,7},{0xc8c,5}}, {{0xbd1,2},{0xb63,2}}, {{0x687a,8},{0xf5e,5}}, {{0x12210,6},{0x25df,4}}, + {{0x90e2,6},{0x89f7,5}}, {{0x1a8e2,4},{0x2b,3}}, {{0xbafa,5},{0x3728,6}}, {{0x9646,8},{0xb2c,2}}, + {{0x3162,5},{0xe1c,4}}, {{0x119c,7},{0xee8,4}}, {{0x83e6,10},{0xaf2,1}}, {{0xb7f,3},{0xd57,2}}, + {{0x27d4,4},{0x10c4,4}}, {{0x27c5,2},{0x229f,5}}, {{0x6dd2,4},{0xc3e,2}}, {{0x1b6dd,2},{0xfeee,2}}, + {{0xacf6,4},{0x2abe,6}}, {{0xdba,6},{0x8742,4}}, {{0x2313,8},{0xb75,2}}, {{0x271e,7},{0xec5,5}}, + {{0xf443,8},{0xb8f,3}}, {{0x244b3,2},{0x6f96,2}}, {{0x423e,1},{0xae2,2}}, {{0xb52,2},{0xb79,2}}, + {{0x10c8,3},{0xb8e4,6}}, {{0xa7b6,5},{0xbb2,2}}, {{0x924,1},{0x279d1,2}}, {{0x19b94,4},{0xf8cf,2}}, + {{0x587d,4},{0x151e,4}}, {{0xbcb,3},{0x5c32,4}}, {{0xdef,3},{0x79f9,4}}, {{0x26c4,3},{0x2d,1}}, + {{0x6d8e,3},{0x29974,2}}, {{0x1fce1,4},{0x4288,2}}, {{0x278c9,2},{0x27a13,2}}, {{0xa7da,3},{0x10ef,1}}, + {{0xbad,4},{0xbb1,3}}, {{0x1a2b,6},{0x2bfc,2}}, {{0x11b4,4},{0x21d2,6}}, {{0x1858,5},{0xcbd,3}}, + {{0x24519,4},{0xab1,2}}, {{0x2daa,5},{0x648a,7}}, {{0x159c,10},{0x2b3e,4}}, {{0x432,16},{0x432,13}}, + {{0x5288,5},{0x377c,6}}, {{0x24a30,2},{0x1ed53,1}}, {{0x780,1},{0x25201,2}}, {{0x5288,5},{0x7ef5,5}}, + {{0x276b,4},{0xcd3,2}}, {{0xab9a,3},{0x5af9,3}}, {{0x10ea,3},{0x2b76,3}}, {{0xcd3,2},{0xd7f,3}}, + {{0x43e3,1},{0x428b,2}}, {{0x16ae4,5},{0xb78,2}}, {{0x41da,3},{0x1a814,2}}, {{0x511c,8},{0xff7,5}}, + {{0x3234,3},{0xb70,2}}, {{0xc1e,2},{0xb9f,2}}, {{0x422e,3},{0x28,2}}, {{0xf59,3},{0x2b,2}}, + {{0x1029c,6},{0x5a52,4}}, {{0x4124,5},{0xb7a,5}}, {{0x278a9,1},{0x278d5,2}}, {{0x178c,3},{0x2c00,3}}, + {{0x278ad,3},{0x27989,2}}, {{0xe7b,4},{0xe7f,7}}, {{0xb44,3},{0x1257,3}}, {{0x6a0d,7},{0xb52,6}}, + {{0x271e,3},{0x1f,1}}, {{0xce2,3},{0x28,1}}, {{0x35c7,6},{0x1408,4}}, {{0xaea,1},{0x2d,1}}, + {{0x181c,3},{0x29da,3}}, {{0x9a9,3},{0x27cea,1}}, {{0x10d52,6},{0x79da,4}}, {{0xf69,3},{0x27,1}}, + {{0x27b6,1},{0x10f2,1}}, {{0x1f8b1,6},{0xb8f,2}}, {{0x532,6},{0x804,4}}, {{0xb96e,7},{0x1499,2}}, + {{0x70a0,4},{0xfee4,8}}, {{0x2796,3},{0x2de9,7}}, {{0x2c63e,4},{0x24873,2}}, {{0x8f4a,10},{0xd0d,2}}, + {{0xb63,2},{0x1257,5}}, {{0x70a0,2},{0x27d99,2}}, {{0x166c,11},{0xb52,5}}, {{0xcc7,3},{0x1e,1}}, + {{0xc98d,7},{0xaef,3}}, {{0xbe0,1},{0x9813,5}}, {{0x2791d,2},{0x116d,1}}, {{0x1ab2,4},{0xde9,1}}, + {{0x508d,5},{0xb2e,2}}, {{0xd87,11},{0xae7,1}}, {{0x10f3,1},{0x1b133,2}}, {{0x40ce,5},{0x8c45,4}}, + {{0x20bb,3},{0x43bd,4}}, {{0x181c,4},{0x1e56,4}}, {{0x7e0a,5},{0xb47,2}}, {{0x1b907,4},{0x1b907,4}}, + {{0x18df9,6},{0x2195,3}}, {{0xae0,1},{0x21afd,4}}, {{0x27d24,3},{0x2a9bc,2}}, {{0x182dd,7},{0xd0d,2}}, + {{0x3e20,7},{0x3e27,7}}, {{0xbeb,1},{0xb9d,3}}, {{0xaea,1},{0xf59,3}}, {{0x177c,3},{0x4b0a,4}}, + {{0x11ebe,6},{0x411c,4}}, {{0x70a0,2},{0x24733,2}}, {{0x7c4,1},{0x2a96c,2}}, {{0x278a1,3},{0x278b6,2}}, + {{0xbd4c,5},{0xb7d,1}}, {{0x422e,3},{0x10ca,1}}, {{0x14b2c,6},{0xdf0,2}}, {{0x839e,7},{0x173e,3}}, + {{0x2061,5},{0x2066,7}}, {{0x7c4,1},{0x2a948,1}}, {{0xcd9,3},{0x89ca,3}}, {{0xab48,2},{0xbd1,2}}, + {{0x2e44,5},{0xb9c,2}}, {{0x1509a,4},{0xde2,4}}, {{0x6b61,2},{0x2237,4}}, {{0x924,2},{0x278a9,2}}, + {{0x247f5,8},{0x24815,4}}, {{0x181c,3},{0xb70,2}}, {{0x1787c,6},{0x103a,3}}, {{0xab9a,3},{0xae4,2}}, + {{0x6f74,4},{0x6f96,2}}, {{0x2c572,4},{0x70da,2}}, {{0xb7d,1},{0xeb3,3}}, {{0x1cec,5},{0x5aaf,4}}, + {{0x1c405,5},{0x28,1}}, {{0x3c28,9},{0x1c25,4}}, {{0x27c3,5},{0x15a1,3}}, {{0x194a,5},{0x4c90,7}}, + {{0x2467b,6},{0x24693,6}}, {{0x1e27,6},{0xcf34,5}}, {{0x14e24,6},{0x10dc,2}}, {{0x26c4,3},{0xae0,1}}, + {{0x88ea,7},{0x88f1,5}}, {{0x10fb,3},{0x5575,5}}, {{0x64c5,10},{0xd7f,3}}, {{0x24a2d,2},{0x2446e,3}}, + {{0xbe0,1},{0x10f0,1}}, {{0x261f,5},{0xb8a,2}}, {{0x1084,3},{0x16a3d,5}}, {{0xb82,2},{0x1c,1}}, + {{0xaf1,1},{0x1700,4}}, {{0x2a625,4},{0x116c,1}}, {{0xbc1,2},{0x2732,4}}, {{0xb47,2},{0x23d9,3}}, + {{0x4a27,4},{0x84ea,4}}, {{0x6c65,2},{0x1d59,4}}, {{0x2445e,1},{0x734,2}}, {{0xbe7,1},{0xcb8,3}}, + {{0x10ea,3},{0x67c0,4}}, {{0x15980,6},{0x15986,3}}, {{0x10f7,1},{0x26c6,1}}, {{0xbe4,1},{0xdf0,2}}, + {{0xdf5,3},{0x1058,4}}, {{0x2ca22,4},{0x6f78,2}}, {{0x1084,3},{0x69f7,3}}, {{0xbbf,2},{0xce1,3}}, + {{0x1099,3},{0x2b,2}}, {{0xa7da,3},{0x4875,5}}, {{0x7e2e,7},{0x10dc,2}}, {{0x1084,3},{0x1d8a,3}}, + {{0x762a,4},{0x4f65,3}}, {{0x397a,5},{0xc48a,5}}, {{0x941e,9},{0xb54,3}}, {{0x30bc,3},{0xcd65,4}}, + {{0x1f,2},{0xb48,2}}, {{0x14ea6,4},{0xc67,2}}, {{0xbe4,1},{0xb97,3}}, {{0x257a,4},{0xa45d,5}}, + {{0x16bc,4},{0x27,1}}, {{0x10fb,3},{0xf8cf,2}}, {{0x4606,3},{0xaf2,1}}, {{0xd0f,5},{0x10a2,4}}, + {{0x244b9,2},{0x6f64,2}}, {{0x15f44,4},{0xaea,1}}, {{0x17ac,4},{0x362c,5}}, {{0x441c,3},{0x26fb,5}}, + {{0x2446c,1},{0x20b19,6}}, {{0x279f5,2},{0x278d6,1}}, {{0x31e0,5},{0x8cf9,5}}, {{0x1ed49,3},{0x27cea,1}}, + {{0xcfd,5},{0x1ec4,8}}, {{0x2daa,10},{0xe70,4}}, {{0xd5c,2},{0xb8b,2}}, {{0x26c6,1},{0xaf1,1}}, + {{0x178c,3},{0xba37,8}}, {{0x10e1,3},{0x1a,1}}, {{0x218d,5},{0xb63,3}}, {{0xb71,2},{0xeb6,3}}, + {{0xd892,3},{0x14d5,3}}, {{0x30,2},{0x2aa6b,4}}, {{0x11d88,5},{0xc62,4}}, {{0x1568a,5},{0x1b00,3}}, + {{0x27983,2},{0x116e,1}}, {{0x22f37,6},{0xae7,1}}, {{0x1abd6,2},{0x10fa,1}}, {{0xb57a,7},{0x11b8,4}}, + {{0x21f3e,5},{0xb75,2}}, {{0x22e6,5},{0x87b5,4}}, {{0xbde,3},{0x1b3e,3}}, {{0xc2f,2},{0xb4b,2}}, + {{0x2b8e,3},{0xb52,5}}, {{0xaf1,1},{0xb8d,3}}, {{0xde9,3},{0xd1b,1}}, {{0x43e3,1},{0x15a1,3}}, + {{0x12fc,4},{0x1d,1}}, {{0x43e3,1},{0xf5f5,2}}, {{0x9b41,3},{0xde1,2}}, {{0x44df,6},{0x251c,4}}, + {{0xb6b9,5},{0x28,1}}, {{0x14ff0,4},{0x2af4,4}}, {{0x10ec,1},{0x3e92,3}}, {{0x10c8,3},{0x10f6,1}}, + {{0x27d1b,2},{0x9a9,1}}, {{0x1084,3},{0x5af9,3}}, {{0x27aa9,2},{0x278af,1}}, {{0x3f62,5},{0xc8a3,3}}, + {{0xaec,2},{0xaf2,1}}, {{0x70c6,4},{0x6fac,2}}, {{0xaea,1},{0x696b,6}}, {{0x244b3,2},{0x1016a,2}}, + {{0xb2f,1},{0xcf68,2}}, {{0x10f0,1},{0xc57,3}}, {{0x1faf1,5},{0xae5,1}}, {{0x11c0,4},{0x1434,6}}, + {{0xdcb,7},{0xbb5,1}}, {{0x143c,5},{0x1d,1}}, {{0x1afc1,2},{0x440f,2}}, {{0x2240d,5},{0xaec,2}}, + {{0x16dc,4},{0xb2c,4}}, {{0xaad1,3},{0xae2,1}}, {{0x20bb,3},{0x13852,4}}, {{0x1906,4},{0x1260,4}}, + {{0x10ef,1},{0xaeb,3}}, {{0xeb2,1},{0xb52,2}}, {{0xc67,2},{0xd1b,2}}, {{0x1d,1},{0x10f7,1}}, + {{0xbeb,2},{0x715a,3}}, {{0x2796,3},{0xf9a9,8}}, {{0x3e19,4},{0x2b,3}}, {{0x244ad,2},{0x27d99,2}}, + {{0x5630,6},{0xbf20,5}}, {{0xcd9,3},{0x7e91,4}}, {{0x1084,3},{0x1e983,4}}, {{0xaca2,3},{0x1ae47,2}}, + {{0x1e,1},{0xbb4,2}}, {{0x286a,2},{0xe99,3}}, {{0x10ec,1},{0x202c,5}}, {{0x1685,3},{0x14fba,2}}, + {{0x106a2,5},{0xb47,2}}, {{0xfef4,4},{0x24829,8}}, {{0x1e1bf,6},{0xb52,2}}, {{0x27b4,3},{0x27574,3}}, + {{0x139f,3},{0x1b,1}}, {{0x449e,6},{0x14e2,3}}, {{0x3cc2,9},{0x1277,5}}, {{0x279fb,2},{0x278d6,1}}, + {{0x178c,3},{0x2bfc,2}}, {{0x61c6,6},{0x2d5d,4}}, {{0x27,1},{0xb72,2}}, {{0x27b6,1},{0x9901,9}}, + {{0x14d5,3},{0x25da,3}}, {{0xd5cc,6},{0x2939,3}}, {{0x1cb0,8},{0x2faa,5}}, {{0xa7da,3},{0xb2c,2}}, + {{0x4e51,6},{0x1489,3}}, {{0x2d,1},{0xb64,3}}, {{0xd1b,1},{0xc34,2}}, {{0x271e,3},{0x1a5c,3}}, + {{0x166c,11},{0x10dc,2}}, {{0xc55,2},{0xc20,5}}, {{0xb8f,2},{0xae2,1}}, {{0x6b04,5},{0xb72,2}}, + {{0x2589,7},{0xb52,5}}, {{0xd6d4,7},{0xb2c,4}}, {{0x10f0,1},{0x28,2}}, {{0xa8ff,4},{0x1f,1}}, + {{0xd08e,5},{0x2939,3}}, {{0x24461,1},{0x24468,2}}, {{0x178c,3},{0x79d5,5}}, {{0xbcb,6},{0x2a95,5}}, + {{0xcc7,3},{0x2cd1,4}}, {{0x1eadf,5},{0xc34,3}}, {{0x181c,3},{0x26754,2}}, {{0x4fbd,4},{0xd57,2}}, + {{0xaa32,8},{0xb55,2}}, {{0x1a2b,6},{0xcf0,2}}, {{0xd1b,1},{0xc4d,2}}, {{0xc49,3},{0xb64,2}}, + {{0xc37,6},{0xd51,2}}, {{0x41da,3},{0x5396,3}}, {{0x2878d,4},{0xfeee,2}}, {{0x15130,6},{0x12dce,4}}, + {{0x2d02,6},{0xb8f,2}}, {{0xbde,3},{0xdf2,3}}, {{0x21bc,6},{0xae7,1}}, {{0xcdd9,6},{0x5d97,5}}, + {{0x1084,3},{0x1257,2}}, {{0x3a3e,6},{0xaea,1}}, {{0x178c,3},{0x43e3,1}}, {{0xbde,3},{0x1ae8c,6}}, + {{0xb2e,2},{0x37b4,3}}, {{0x29cac,3},{0xaf1,1}}, {{0xfdeb,5},{0xb873,6}}, {{0x10ef,1},{0x1d0d,3}}, + {{0x27abb,2},{0x116c,1}}, {{0x244f5,4},{0x244ed,2}}, {{0x128d2,7},{0x10dc,2}}, {{0x81fa,8},{0x10dc,2}}, + {{0xd6b3,7},{0x25c2,3}}, {{0xb6e,2},{0x426e,6}}, {{0x3ed6,5},{0xed5d,6}}, {{0x29cac,3},{0xb2f,1}}, + {{0x286a6,2},{0x1ed53,1}}, {{0x14ff0,7},{0x2b,2}}, {{0x41be,3},{0xb421,3}}, {{0x159c,4},{0xb64,2}}, + {{0x1015a,10},{0x10164,8}}, {{0x17cc,5},{0xc89,3}}, {{0x12f62,7},{0x1b77,3}}, {{0x1e45,3},{0xf02,3}}, + {{0x8a76,7},{0xadf,2}}, {{0x20bb,3},{0x1434,8}}, {{0x16f48,2},{0x2b,1}}, {{0x1a01d,5},{0x13395,4}}, + {{0x1b6dd,2},{0x1019c,2}}, {{0x1c7e5,6},{0xc34,2}}, {{0x2daa,5},{0x68c4,4}}, {{0x10b54,6},{0x10b3,4}}, + {{0x279fb,2},{0x1b6ab,1}}, {{0x532,66},{0x30,12}}, {{0x2b,2},{0xb47,2}}, {{0x23afb,6},{0xaf2,1}}, + {{0x530f,4},{0x5313,4}}, {{0x181c,3},{0xd5c,1}}, {{0xae8,2},{0x9b08,6}}, {{0x16ec4,6},{0xa60f,3}}, + {{0x278ad,3},{0x1b6ab,2}}, {{0x2878d,4},{0x70ce,2}}, {{0xffca,7},{0xfe5,2}}, {{0xd671,5},{0xa5de,4}}, + {{0x6b5f,4},{0xf452,4}}, {{0x10ea,3},{0x411c,4}}, {{0xb47d,4},{0x256d,3}}, {{0xbf88,7},{0xb2e,2}}, + {{0x2e52,8},{0xc8e,3}}, {{0x257a,4},{0xb64,2}}, {{0x5d5b,5},{0xdc85,6}}, {{0x1865,4},{0xb78,2}}, + {{0x178c,3},{0x443e,2}}, {{0xd41,3},{0x904d,5}}, {{0xd7a,3},{0xb55,2}}, {{0x5102,5},{0x8517,7}}, + {{0xc67,2},{0x3f82,3}}, {{0x1dcd,5},{0x3290,5}}, {{0x11036,6},{0xb67,2}}, {{0x13e4,3},{0xaeb,2}}, + {{0xbe7,1},{0x16e2,2}}, {{0x257a,4},{0xcce,3}}, {{0x1977,8},{0xb52,6}}, {{0x27c97,3},{0x27c9a,3}}, + {{0x1150,2},{0xb2f,1}}, {{0xae2,1},{0xca7,3}}, {{0x209d,4},{0xe6d,2}}, {{0x2d,1},{0x1e,1}}, + {{0xda9,4},{0xd0c,2}}, {{0x10ba,2},{0xfb88,6}}, {{0xcb0e,7},{0x41ef,4}}, {{0x278a7,4},{0x278a9,1}}, + {{0x10ef,1},{0x12be,3}}, {{0xb8f,2},{0xe6d,2}}, {{0x142e,1},{0xb55,2}}, {{0xc67,2},{0xb63,2}}, + {{0x128a0,7},{0x2b,3}}, {{0x6b45,6},{0x1aa9,7}}, {{0x780,1},{0x948,1}}, {{0xbd4,2},{0x229de,4}}, + {{0x1a4b1,4},{0xae6,2}}, {{0x1e347,6},{0x27,1}}, {{0x139c,10},{0x1f0f,3}}, {{0x3db0,5},{0xbc6,2}}, + {{0xbb5,2},{0x1c25,4}}, {{0xb7f,7},{0x315b,7}}, {{0x4ad0,7},{0xfe5,6}}, {{0x27ce8,3},{0x9a9,1}}, + {{0xb7d,1},{0xb55,2}}, {{0xc55,2},{0xb48,2}}, {{0x981a,9},{0x2b,3}}, {{0x181e,2},{0xee8,3}}, + {{0x10ea,3},{0x1a1f7,2}}, {{0x26c4,3},{0x29da,3}}, {{0x1af24,3},{0x1150,2}}, {{0x2c3fe,4},{0xab1,2}}, + {{0xc37,4},{0xc30,2}}, {{0x2c76,4},{0x1100b,3}}, {{0xd1b,1},{0xbb5,1}}, {{0xd76,4},{0x1eb1c,5}}, + {{0xf74,4},{0xae6,3}}, {{0x10ec,1},{0x1b,1}}, {{0x10fb,3},{0xc67,3}}, {{0xab9a,3},{0xcb8,2}}, + {{0x20bb,3},{0x16e2,2}}, {{0xfd25,5},{0xaf1,2}}, {{0x170c,11},{0x1717,5}}, {{0x423c,3},{0x384a,3}}, + {{0x1d55,4},{0x10dc,2}}, {{0x16aae,5},{0xd0d,2}}, {{0xaca2,3},{0x27b6,1}}, {{0x5d75,8},{0x10dc,2}}, + {{0x1af85,6},{0xae6,3}}, {{0x4e98,3},{0x2b,3}}, {{0x2d,1},{0xb72,2}}, {{0xdfb,3},{0x1b,1}}, + {{0xc6a1,7},{0x16ae,2}}, {{0x6701,7},{0x569f,6}}, {{0x159c,10},{0x107e,5}}, {{0xf417,5},{0xd57,2}}, + {{0x1aa6,3},{0xb63,3}}, {{0x2971,3},{0xb78,2}}, {{0x28da,4},{0x28c8,4}}, {{0x1b6b9,3},{0x278a9,1}}, + {{0x122c,4},{0x165cf,5}}, {{0x4ddc,8},{0x1916,5}}, {{0xf40e,3},{0xdf0,2}}, {{0xd91,3},{0x21e8a,3}}, + {{0x3234,3},{0xf6a,3}}, {{0x271e,3},{0xb057,6}}, {{0x10472,4},{0x2693,4}}, {{0x16412,7},{0x10dc,2}}, + {{0x969,2},{0x157b6,2}}, {{0x30,2},{0x67c0,3}}, {{0x187c,3},{0xaf2,1}}, {{0xb96e,5},{0x6008,4}}, + {{0x2337d,3},{0xb54,2}}, {{0x14580,8},{0xd0d,2}}, {{0x3988,10},{0xb63,2}}, {{0x8f6e,7},{0xb7a,5}}, + {{0xbb2,2},{0xd0b,3}}, {{0x3789,3},{0xd1b,1}}, {{0x595e,3},{0x12f1,3}}, {{0xa7da,3},{0xf02,3}}, + {{0xcd5,2},{0xae6,2}}, {{0x159c,5},{0x11f2,3}}, {{0x17241,6},{0x1150,2}}, {{0x2b551,2},{0xae6,2}}, + {{0x278a7,3},{0x27acd,2}}, {{0x10ec4,6},{0xe1d,3}}, {{0xb64,2},{0xb79,2}}, {{0xd574,7},{0xd0b,4}}, + {{0x27,1},{0xb066,2}}, {{0x3624,6},{0x5fe0,4}}, {{0x5aae,3},{0x12c33,5}}, {{0x2801,4},{0x647d,4}}, + {{0x10fb,3},{0xf482,3}}, {{0x178c,3},{0x269f6,3}}, {{0xded,5},{0xb8d,3}}, {{0x4132,5},{0xf6a,5}}, + {{0x219c,11},{0x10dc,2}}, {{0xb12e,3},{0xd57,2}}, {{0x1408,3},{0x1a,1}}, {{0x27aa9,2},{0x116c,1}}, + {{0x14d0c,5},{0x52c6,3}}, {{0xe31,5},{0x139e,2}}, {{0x287e7,2},{0xab1,2}}, {{0x2b,2},{0xc50d,6}}, + {{0x2c8c6,4},{0x1b205,2}}, {{0x6081,6},{0x14f3,7}}, {{0x27e2a,2},{0x2aea3,2}}, {{0xc25,4},{0x10e3,3}}, + {{0x10f6,1},{0xee2,2}}, {{0x8092,9},{0x4031,3}}, {{0xf98,5},{0xc78,3}}, {{0xf85,4},{0xc52,2}}, + {{0xddc,4},{0xaf2,1}}, {{0x244ad,2},{0x96f,2}}, {{0x57f7,6},{0x2b,2}}, {{0x244ad,2},{0x1b23d,2}}, + {{0x423c,3},{0x1d8a,3}}, {{0xd57,2},{0x1a,2}}, {{0x88de,5},{0x2b,3}}, {{0x278ad,4},{0x278d6,1}}, + {{0x244b9,2},{0x1016a,2}}, {{0x27d1b,2},{0x1b4e3,1}}, {{0xbeb,1},{0x25010,5}}, {{0x1e,1},{0x22116,5}}, + {{0x30,2},{0x2f54,5}}, {{0x6ac5,1},{0x1d8e,3}}, {{0x265b,5},{0xb8f,2}}, {{0x263f,3},{0x2b,1}}, + {{0xe31,5},{0x11211,5}}, {{0x194a,5},{0xb4fb,6}}, {{0x3e14,3},{0xeb1,2}}, {{0x15b3f,2},{0x10ef,1}}, + {{0xceb,3},{0xb7d,1}}, {{0x46f4,4},{0xb65,2}}, {{0x2d,1},{0xf14,2}}, {{0x122c,4},{0x443d,3}}, + {{0x1462a,7},{0xd7a,3}}, {{0x2ccb0,4},{0x1dec4,2}}, {{0xb44,3},{0x11a07,5}}, {{0x2796,3},{0x3fab,2}}, + {{0xbe0,1},{0x2428a,4}}, {{0x27b4,3},{0xb74,2}}, {{0x15694,5},{0xc63,3}}, {{0xfa14,4},{0x1ab1b,5}}, + {{0xb33e,5},{0x220f,5}}, {{0xbeb,1},{0xdd1,2}}, {{0x2a8ce,4},{0x24,1}}, {{0x42a2,4},{0xbd1,2}}, + {{0xda9,4},{0x32ff,3}}, {{0x3598,7},{0x25be,7}}, {{0x17ac,4},{0x3776,3}}, {{0xb6c,4},{0xc39,3}}, + {{0x27,2},{0x10504,4}}, {{0xc1c,2},{0xcb8,2}}, {{0xb7d,1},{0x8a49,2}}, {{0x17ce,2},{0x2279,4}}, + {{0xceb,3},{0x12ff,2}}, {{0xd65,3},{0x1150,2}}, {{0x1055,3},{0xb65,2}}, {{0xc7b,4},{0xb2e,2}}, + {{0xaca2,3},{0xd0d,2}}, {{0x7546,7},{0xb55,2}}, {{0x278ad,4},{0x278a9,1}}, {{0x177c,3},{0x47ad,5}}, + {{0xc4c,3},{0x28,1}}, {{0xbeb,1},{0xb55,2}}, {{0xb44,3},{0x1675,2}}, {{0x1a39a,5},{0x11a5,4}}, + {{0x19c9,6},{0x1081,3}}, {{0x247b,7},{0x2482,3}}, {{0x27b4,3},{0x15abb,2}}, {{0x2d,1},{0x1318b,4}}, + {{0x24a40,3},{0x2446f,2}}, {{0x27,1},{0x2e55,3}}, {{0xbd1,2},{0xfe5,2}}, {{0x2446c,1},{0x24a30,3}}, + {{0x6d8e,3},{0x750e,4}}, {{0x65fd,7},{0xc57,4}}, {{0xd0f,4},{0x1e5a3,4}}, {{0x10f6,1},{0x428b,2}}, + {{0xc1c,2},{0x25df,4}}, {{0x14bcc,6},{0x14bd2,4}}, {{0x150ba,3},{0xae7,1}}, {{0x265b,4},{0x14318,6}}, + {{0xd65,3},{0x7654,6}}, {{0x887e,9},{0x4d44,3}}, {{0x6d8e,3},{0x21b2e,4}}, {{0xae6,2},{0xfe5,2}}, + {{0x3234,3},{0xf894,4}}, {{0x106d4,5},{0xaea,2}}, {{0x122c,4},{0xb1e6,3}}, {{0xab9a,3},{0xb79,2}}, + {{0xae0,1},{0x3789,3}}, {{0x2bfd,2},{0x3a39,5}}, {{0x4354,4},{0x15526,6}}, {{0x15504,6},{0xae5,1}}, + {{0x27aaf,2},{0x116c,1}}, {{0x193ab,6},{0x2b,3}}, {{0xc8d2,6},{0xae7,1}}, {{0x140e,6},{0xae7,1}}, + {{0x10ea,3},{0xcf3e,2}}, {{0xab6a,5},{0x7039,2}}, {{0x1b943,6},{0x1b92d,8}}, {{0x116d,1},{0x279d1,2}}, + {{0xba81,8},{0xae6,3}}, {{0x18a7,3},{0x1719,3}}, {{0x1a94,10},{0xc8e,3}}, {{0x1d01d,4},{0xb7d,2}}, + {{0xb7f,3},{0x1193,3}}, {{0x10fb,3},{0x25002,2}}, {{0x1a124,5},{0xae7,1}}, {{0x70a0,2},{0x6fae,2}}, + {{0xa6c6,7},{0x1f13,4}}, {{0x14b68,6},{0x4d46,4}}, {{0xbeb,1},{0xaf2,1}}, {{0x2a625,4},{0x278a9,1}}, + {{0x24,1},{0x7c4,1}}, {{0xcd9,5},{0xcd3,2}}, {{0x39ce,5},{0xeb3,3}}, {{0x16bc,8},{0x258e,6}}, + {{0x41b0,5},{0xae0,1}}, {{0x272d,4},{0x330f,5}}, {{0x29ba,5},{0x739b,7}}, {{0x178c,3},{0x1b08,3}}, + {{0x70ea,3},{0xbd8,2}}, {{0x141c,10},{0xb52,5}}, {{0x36f6,9},{0x11b8,4}}, {{0x271e,3},{0xb057,7}}, + {{0x10e42,6},{0x4a60,3}}, {{0xb66,2},{0x1260,4}}, {{0xb7f,3},{0x410c,4}}, {{0xa098,5},{0x13b37,3}}, + {{0x202c,3},{0xb2e,2}}, {{0x43e3,1},{0x2b,1}}, {{0x261f,4},{0x197f9,5}}, {{0xb78a,7},{0xb55,3}}, + {{0x27,1},{0x24ba,3}}, {{0x1e45,6},{0x102a,5}}, {{0x3704,7},{0x12a5,7}}, {{0x1a816,2},{0x2844,3}}, + {{0x1f623,3},{0x19c9,3}}, {{0x36be,5},{0x2200,5}}, {{0x1051,7},{0x583f,3}}, {{0x1aaec,2},{0x20985,4}}, + {{0xaf1,1},{0xde9,1}}, {{0x3a06,7},{0x3831,7}}, {{0x3f1c,9},{0x10c3,5}}, {{0xaf60,2},{0x23bdf,3}}, + {{0x3686,8},{0x1408,3}}, {{0x14dc,5},{0xa619,5}}, {{0x422e,3},{0xdf6,3}}, {{0x4d33,6},{0x4d46,4}}, + {{0x27ce8,3},{0x432,1}}, {{0xa7da,3},{0xa7d1,2}}, {{0x5102,5},{0x1ad2,5}}, {{0x1abf8,5},{0xb52,2}}, + {{0x3e14,3},{0x734b,3}}, {{0xae7,2},{0x10dc,2}}, {{0x1051,4},{0x19258,4}}, {{0xe9e2,2},{0xaea,1}}, + {{0x4815,3},{0x4ae5,5}}, {{0x27a5,5},{0xaf1,2}}, {{0xbe7,1},{0x28,1}}, {{0x82ea,7},{0xd0d,2}}, + {{0x11cd4,6},{0xb47,2}}, {{0xc3e,2},{0x31d6,5}}, {{0x7a3e,6},{0x7a44,3}}, {{0x10ec,1},{0x43ac,7}}, + {{0xb2c,4},{0xae7,1}}, {{0x208e,5},{0x9087,7}}, {{0x10fb,3},{0x29a9b,2}}, {{0x13188,5},{0x131a1,5}}, + {{0x1389c,8},{0x10dc,2}}, {{0x5483,5},{0x7481,5}}, {{0x13dc,8},{0xd0d,2}}, {{0x173c,6},{0x1742,10}}, + {{0xeb9,6},{0xebf,5}}, {{0xc6d,7},{0x1403,9}}, {{0x10ca,1},{0x10fa,1}}, {{0x1cec,5},{0xaa73,6}}, + {{0xb8f,2},{0x1c25,4}}, {{0x270f,7},{0xb54,4}}, {{0x2451f,2},{0x6f8a,2}}, {{0xf58f,6},{0xf595,5}}, + {{0x3655,4},{0x1b2f1,4}}, {{0x3f46,9},{0xce8,3}}, {{0x5bd3,7},{0x4df1,5}}, {{0x10fb,3},{0x1099,3}}, + {{0xc1ae,6},{0x1142e,4}}, {{0x14930,2},{0xd54,1}}, {{0x776e,8},{0x5c44,4}}, {{0x2b,2},{0x11ef,2}}, + {{0x1b6dd,2},{0x70ca,2}}, {{0xaf1,1},{0x1dccf,5}}, {{0x10ea,3},{0x6ac5,1}}, {{0x36be,5},{0x33fd,5}}, + {{0x159c,4},{0xb095,3}}, {{0x1a85,7},{0x1a8c,8}}, {{0x10ec,1},{0x74ba,3}}, {{0xd41,4},{0x2a16,3}}, + {{0xaca2,3},{0x14934,2}}, {{0xf794,6},{0x15051,3}}, {{0xb7d,2},{0x21,1}}, {{0x6d81,3},{0x28b1,3}}, + {{0x28,2},{0xb2e,2}}, {{0x14936,4},{0x1878,1}}, {{0xe1c9,6},{0x9b65,5}}, {{0x177c,3},{0x1aaec,2}}, + {{0x3cde,8},{0xb68,4}}, {{0x432,32},{0x432,1}}, {{0x8b66,5},{0xb2c,2}}, {{0x6d8e,3},{0xbe0,1}}, + {{0xc25,5},{0x4b7e,8}}, {{0x2a9a,8},{0xae6,3}}, {{0xbcb,3},{0xae2,1}}, {{0x15a1f,4},{0x28da,4}}, + {{0xde9,1},{0x102f9,3}}, {{0x17b82,7},{0x1305,2}}, {{0x21,1},{0xb2f,1}}, {{0xaaec,2},{0x10f0,1}}, + {{0xbc0,2},{0xa60f,3}}, {{0xded,8},{0xdf5,4}}, {{0x2b,2},{0x2a69,7}}, {{0xbe7,1},{0x2045,3}}, + {{0x5ea0,4},{0x11e2,3}}, {{0xfac6,6},{0xb78,2}}, {{0x1540a,5},{0x6636,5}}, {{0x4fbd,7},{0x2bff,6}}, + {{0xf419,3},{0xc34,3}}, {{0x141c,4},{0xb85,2}}, {{0x10192,2},{0x159cb,2}}, {{0xc37,3},{0x15f26,3}}, + {{0x285b,3},{0xb71,2}}, {{0x1b613,3},{0x428b,5}}, {{0x26a6,8},{0xb54,3}}, {{0xf5f5,2},{0x4415,2}}, + {{0x2796,3},{0x276bd,2}}, {{0xbb5,1},{0x1927c,5}}, {{0x27a01,2},{0x278d6,1}}, {{0x100d,5},{0xb6e,2}}, + {{0x42ac,6},{0x10e1,8}}, {{0xac06,6},{0x5684,6}}, {{0x1b705,6},{0x70ac,4}}, {{0xc49,6},{0xc4f,6}}, + {{0xd1b,1},{0xc67,2}}, {{0x719e,5},{0x71af,7}}, {{0xaf1,1},{0x22e3,3}}, {{0x67eb,7},{0x28d4,6}}, + {{0x1b13e,3},{0x924,4}}, {{0x10c8,3},{0x1675,2}}, {{0x1a76,4},{0xbb5,1}}, {{0x532,6},{0x532,4}}, + {{0xb63,3},{0xeb6,3}}, {{0x6f23,2},{0xeb2,1}}, {{0x10710,5},{0x10715,5}}, {{0xd1c2,6},{0x1916,5}}, + {{0x2c9f8,4},{0x24873,2}}, {{0xaefa,4},{0x12ff,3}}, {{0x1b6db,10},{0x1b6e5,4}}, {{0xba5,4},{0x1700,4}}, + {{0x20ca,10},{0xd0b,4}}, {{0x10ec4,5},{0xbd3,3}}, {{0x417a,2},{0x22e3,3}}, {{0x1c68,3},{0xb8a,2}}, + {{0x251cb,1},{0x2b2ff,1}}, {{0xfef0,4},{0xff24,4}}, {{0xb63,2},{0x4de3,3}}, {{0xc25,3},{0xe4a,4}}, + {{0x1062,8},{0x250a,7}}, {{0xbe0,1},{0xbcc2,3}}, {{0x17cc,4},{0x3492,5}}, {{0xc2f,2},{0xc25a,4}}, + {{0xb8b,2},{0x8c46,4}}, {{0x128a0,7},{0x10dc,2}}, {{0x9436,7},{0x2b03,5}}, {{0x58ee,11},{0xb2e,2}}, + {{0x279ef,2},{0x278a9,1}}, {{0x4453,4},{0x591b,7}}, {{0x27,1},{0x3ce4,7}}, {{0xeb95,5},{0xc17,3}}, + {{0xb71,2},{0xd48,2}}, {{0x27b4,3},{0xb72,2}}, {{0x12a30,6},{0x5275,4}}, {{0x43a1,3},{0x1c43,4}}, + {{0xdc33,7},{0xbb4,4}}, {{0x22e6,5},{0xb72,3}}, {{0x6cc0,2},{0x4460,3}}, {{0x10b7,5},{0xf14,2}}, + {{0x119c,7},{0x10569,3}}, {{0xae0,1},{0xfb1,3}}, {{0x1084,3},{0x1c419,4}}, {{0x8482,7},{0xdf0,2}}, + {{0x286a,2},{0x683e,7}}, {{0x1aac,3},{0x1930,3}}, {{0xa012,5},{0xa017,7}}, {{0xbe7,1},{0xf38f,3}}, + {{0x10c8,3},{0x43e3,1}}, {{0x1eea,10},{0xb52,5}}, {{0xb09f,7},{0xb0a6,4}}, {{0x181c,3},{0x152c4,2}}, + {{0xb2c,2},{0x1099,3}}, {{0xa77a,7},{0x24fd,5}}, {{0x5fa4,10},{0x2b,3}}, {{0x1977,8},{0x1f13,4}}, + {{0xd5c,1},{0xb48,2}}, {{0x6dd7,3},{0xfe5,2}}, {{0xc55,2},{0xd79,4}}, {{0x5317,7},{0x2b3e,4}}, + {{0x17be,2},{0x1440,4}}, {{0x1409,2},{0x1cef,3}}, {{0xaab6,6},{0x28,1}}, {{0xaf62,2},{0x1a81e,2}}, + {{0xa552,5},{0x1916,5}}, {{0xbeb,1},{0x20,2}}, {{0xb52,2},{0x31f8,4}}, {{0x5768,6},{0x1555,7}}, + {{0xfccf,3},{0x2bfc,2}}, {{0x265b,4},{0xc4e,2}}, {{0x7f36,9},{0xc8e,3}}, {{0x1f3e9,4},{0x152c4,2}}, + {{0x6916,8},{0xa4fa,4}}, {{0xc13,4},{0xb9c,2}}, {{0xd5c,2},{0x14720,4}}, {{0x14954,5},{0xd7a,3}}, + {{0x20269,5},{0xc67,2}}, {{0xf52,4},{0x95bb,7}}, {{0x1e,1},{0xc8f,2}}, {{0x80aa,7},{0x2b,1}}, + {{0xfc8b,5},{0x28,2}}, {{0xceb,3},{0x11b2,4}}, {{0x423c,3},{0xf63c,2}}, {{0x6631,5},{0xb52,6}}, + {{0x135c,5},{0x25da,3}}, {{0x1095,3},{0x10504,4}}, {{0x529c,4},{0x2b,3}}, {{0xb7f,6},{0x89c8,5}}, + {{0xcd9,3},{0xfe5,2}}, {{0x1051,7},{0x584c,5}}, {{0xbd4c,5},{0x1d5c,6}}, {{0x20563,3},{0x1b4e3,1}}, + {{0x27a79,2},{0x116d,1}}, {{0x81f3,4},{0x1719,3}}, {{0x9076,9},{0x2195,3}}, {{0x26f1,4},{0x28,1}}, + {{0xe2b0,7},{0xb7c,3}}, {{0xcfe9,8},{0xc63,3}}, {{0x10fd,2},{0x1d0d,3}}, {{0x2c5d2,4},{0x70b4,2}}, + {{0x20ac,7},{0x1a,1}}, {{0xd65,3},{0x20ccf,4}}, {{0x2c866,4},{0x157a4,2}}, {{0xab9c,1},{0x10fa,1}}, + {{0x10f2,1},{0x2094b,3}}, {{0xc25,5},{0xbe9b,6}}, {{0x7636,9},{0x10dc,2}}, {{0xbeb,1},{0xbd6,2}}, + {{0xe964,6},{0xe96a,5}}, {{0x1878,2},{0x5fe0,4}}, {{0xbe4,1},{0xb70,2}}, {{0x20d9,4},{0xe6d,2}}, + {{0xb7f,3},{0xd7a,3}}, {{0xaf1,1},{0x34a2,4}}, {{0xf8e9,5},{0x323c,2}}, {{0xbd1,2},{0x2b,2}}, + {{0x2610,8},{0x108e,7}}, {{0x10ea,3},{0xa7d1,2}}, {{0x2a625,4},{0x278dc,1}}, {{0x2160,12},{0x1b22,3}}, + {{0x2bfc,2},{0xae6,2}}, {{0x180c,4},{0x4f0e,4}}, {{0x209d,4},{0x180e0,5}}, {{0x73f6,9},{0x2b,3}}, + {{0x10fb,3},{0xe946,8}}, {{0xc25,3},{0x89ca,3}}, {{0x8abe,5},{0x88ce,4}}, {{0x1724a,5},{0xc7b,4}}, + {{0x2796,3},{0x1fe84,5}}, {{0xddc,5},{0x459e,4}}, {{0x16ac9,5},{0x1c61,4}}, {{0x27a73,2},{0x1b6ab,1}}, + {{0xddbf,6},{0xddc5,5}}, {{0x271e,3},{0xff56,6}}, {{0x12fc,10},{0xbb4,4}}, {{0xaefc,2},{0x1d8e,3}}, + {{0x7522,9},{0x2939,3}}, {{0x17ce,2},{0xae1,3}}, {{0xc37,3},{0xe6d,2}}, {{0x533e,6},{0x2af8,4}}, + {{0x10f3,1},{0x4189,3}}, {{0x8c4,4},{0x30,46}}, {{0xb72,2},{0x15a1,3}}, {{0xbb5,2},{0xb78,2}}, + {{0x20e8,6},{0xc30,2}}, {{0x180e,2},{0x4f0e,6}}, {{0x279f5,2},{0x116d,1}}, {{0x3aa0,7},{0x1545,6}}, + {{0xe78,3},{0xb52,2}}, {{0x1355e,9},{0xae7,1}}, {{0x8ce6,8},{0x2b,3}}, {{0x327a,7},{0xdf5,7}}, + {{0x181c,3},{0x1972,2}}, {{0xae6,3},{0x1293,3}}, {{0x40fa,3},{0x10dc,2}}, {{0xd5c,1},{0x26c6,1}}, + {{0x2920,4},{0x1522,10}}, {{0x41da,3},{0x1b22,3}}, {{0x2791d,2},{0x1b6ab,1}}, {{0x10ea,3},{0x1f,1}}, + {{0x61ac,6},{0x577c,6}}, {{0xf85,4},{0x51ae,4}}, {{0x6d81,3},{0x9423,3}}, {{0x1a859,4},{0x1a,2}}, + {{0x28871,3},{0x2446f,2}}, {{0xa2d6,5},{0x1081,3}}, {{0x6107,3},{0x10dc,2}}, {{0x278c9,2},{0x27a19,2}}, + {{0xb2f,1},{0x1dccf,5}}, {{0xceb,3},{0x3409,5}}, {{0x1ae32,2},{0x1a298,2}}, {{0xda9,10},{0x1498,4}}, + {{0xbd3,3},{0x16f7,4}}, {{0xeb3,3},{0xb65,2}}, {{0x6f36,3},{0xc34,3}}, {{0x72b6,3},{0x5396,3}}, + {{0xc25,3},{0x1257,2}}, {{0x3368,10},{0xb63,2}}, {{0xfef0,4},{0x2ab13,4}}, {{0x269ed,4},{0xab9c,1}}, + {{0x732a,7},{0x7331,5}}, {{0x10f2,1},{0x2720,2}}, {{0x181c,3},{0x26d11,2}}, {{0xbd1,2},{0x11ef,2}}, + {{0x2c76,7},{0xcc0,3}}, {{0x5c98,5},{0x700f,3}}, {{0x10ec,1},{0xf63c,2}}, {{0xe64,5},{0x1c,1}}, + {{0xc25,3},{0x179ce,3}}, {{0xae9,2},{0x11b8,4}}, {{0xc2e,2},{0x11ef,2}}, {{0xe9f,3},{0xae0,1}}, + {{0x3f46,9},{0xb52,5}}, {{0xc25,3},{0x323c,2}}, {{0x3448,8},{0xdf0,2}}, {{0xbe7,1},{0x15adc,2}}, + {{0x10fb,3},{0x139e,2}}, {{0x21710,6},{0x1a,1}}, {{0x10ec,1},{0x11ef,3}}, {{0xb2f,1},{0xcd5,2}}, + {{0x10ea,3},{0x1a,3}}, {{0x22cf8,1},{0x24a41,2}}, {{0x4288,3},{0x428b,5}}, {{0xd14,4},{0xb63,2}}, + {{0x35d0,8},{0x41ba,4}}, {{0xc30,2},{0xc63,3}}, {{0x1e45,3},{0x1010a,2}}, {{0x27aaf,2},{0x278a9,1}}, + {{0x24289,2},{0x1a81d,2}}, {{0x153c,9},{0x222c,5}}, {{0xbe7,1},{0x26c6,1}}, {{0xbe4,1},{0x4ab0,3}}, + {{0x41be,3},{0xde9,1}}, {{0xadd,3},{0x10f3,1}}, {{0x82d2,9},{0xc8e,3}}, {{0x1007e,5},{0x288f,5}}, + {{0x24467,2},{0x1b4e3,1}}, {{0xb6c,4},{0x18d8,3}}, {{0xecb3,8},{0xb78,2}}, {{0x6f21,8},{0x1f13,4}}, + {{0x2791d,2},{0x27897,1}}, {{0x41be,3},{0xae0,1}}, {{0x1b75,7},{0x1d,1}}, {{0x31a1,6},{0xae7,1}}, + {{0xbb73,8},{0xc8e,3}}, {{0x5a94,3},{0x2b,3}}, {{0x78ca,4},{0xdf0,2}}, {{0x1ad0,4},{0x84f6,4}}, + {{0x17ec,6},{0x51ae,4}}, {{0x1e,1},{0xae5,1}}, {{0x1a76,4},{0x1c3e1,4}}, {{0x5288,5},{0x1773d,4}}, + {{0x2c76,4},{0xaf49,4}}, {{0x2bfd,2},{0x701d,5}}, {{0x9cbe,9},{0x2b,3}}, {{0xf89c,8},{0x4a56,3}}, + {{0xb44,4},{0x21,1}}, {{0xb74,2},{0xc67,2}}, {{0x261f,4},{0x1985c,5}}, {{0xe75,4},{0x12dce,4}}, + {{0xd671,8},{0x1257,3}}, {{0x26b5,4},{0xb78,2}}, {{0x272f,2},{0x31d6,5}}, {{0x67aa,6},{0xc8d4,4}}, + {{0x5d5b,5},{0x1489,3}}, {{0x1d0a,12},{0xb8f,3}}, {{0xde9,1},{0xeb2,1}}, {{0x1b,1},{0x139e,2}}, + {{0x85de,5},{0x11bc1,5}}, {{0x17ae,1},{0xbe4,1}}, {{0xb7d,1},{0x1257,3}}, {{0x159c,4},{0x1042,4}}, + {{0x18ca,3},{0xb65,2}}, {{0x10ca,1},{0x49ae,4}}, {{0x2b,1},{0x1d8a,3}}, {{0x4194,5},{0xb2f,1}}, + {{0x2f94,10},{0x22e3,3}}, {{0xb590,5},{0x29da,3}}, {{0x6d9d,3},{0xb67,2}}, {{0x10f7,1},{0xbbf,2}}, + {{0x278a7,3},{0x278f3,2}}, {{0xceb,4},{0xcc0e,3}}, {{0x2098b,2},{0x155dd,3}}, {{0xeca,5},{0x1058,10}}, + {{0xb2c,2},{0xb55,3}}, {{0xbb5,1},{0x1f3a,3}}, {{0x135c,5},{0x2be6,4}}, {{0xaca2,3},{0x28bd2,2}}, + {{0x12f37,3},{0xae3,2}}, {{0x244b3,2},{0x6f64,2}}, {{0x1051,4},{0x12ff,3}}, {{0x116d,2},{0x116c,1}}, + {{0x1987c,6},{0x101a,3}}, {{0x2ab0b,4},{0xfef0,4}}, {{0xf96,4},{0xcb8,3}}, {{0xd91,3},{0xd17,3}}, + {{0xbe7,1},{0xb52,2}}, {{0x2878d,4},{0x70da,2}}, {{0x5b6b,9},{0xb65,2}}, {{0xb8b,2},{0xff7,4}}, + {{0xa246,4},{0xa04a,3}}, {{0x153c,11},{0xe70,5}}, {{0x178c,3},{0x250f6,2}}, {{0xebf,4},{0xd0c,2}}, + {{0x1e45,4},{0xde2,4}}, {{0xcfd,5},{0x1b,1}}, {{0x470e,5},{0xd7c1,5}}, {{0xaf2,1},{0xd1b,1}}, + {{0x23dda,4},{0x2844,3}}, {{0x278ad,3},{0x27a07,2}}, {{0xceb,4},{0x423f,4}}, {{0x423e,1},{0x27b6,1}}, + {{0xe45d,8},{0xb54,3}}, {{0xba5,4},{0x3476,10}}, {{0xf768,4},{0xd7d,4}}, {{0x17fe,3},{0xbd2,3}}, + {{0x176f0,5},{0xc340,4}}, {{0x4588,8},{0x2bfc,3}}, {{0xaca2,3},{0x1fce4,5}}, {{0x2920,4},{0x10220,4}}, + {{0x61ac,6},{0x3167,7}}, {{0x2912,4},{0x1292,3}}, {{0x271e,3},{0xb74,2}}, {{0x28634,1},{0x780,1}}, + {{0xb44,3},{0x35fd,3}}, {{0x27a6d,2},{0x278d6,1}}, {{0x3694,4},{0x3e92,3}}, {{0xbdaf,8},{0xc63,3}}, + {{0x271e,3},{0x2279,4}}, {{0xf367,5},{0xdd40,4}}, {{0x46f4,4},{0xcb8,3}}, {{0x2592c,2},{0xae7,1}}, + {{0xee4,3},{0xee7,5}}, {{0x2445f,1},{0x24a30,3}}, {{0xbeb,2},{0x2195,3}}, {{0x27cea,1},{0x1b6cb,1}}, + {{0xb2e,2},{0xc67,2}}, {{0x27ff,6},{0x10dc,2}}, {{0x434d,2},{0x434f,2}}, {{0x732,4},{0x948,1}}, + {{0xbe4,1},{0xb63,2}}, {{0x278a1,3},{0x278b5,2}}, {{0x4728,5},{0x107e7,5}}, {{0x4881,4},{0x10dc,2}}, + {{0x172ec,5},{0x1d,1}}, {{0xbe7,1},{0x1097,5}}, {{0xf64a,6},{0x4245,5}}, {{0x3f7e,7},{0xb9c,2}}, + {{0x875e,7},{0x8765,5}}, {{0xcc2c,5},{0xbb4,4}}, {{0x279f5,2},{0x278dc,1}}, {{0x2445e,2},{0x2868f,3}}, + {{0x3234,3},{0x4646,5}}, {{0x17336,6},{0xb63,2}}, {{0x3996,5},{0x99e7,7}}, {{0x10196,4},{0x70d4,8}}, + {{0xaa02,5},{0x1525,7}}, {{0x6ac5,1},{0xb52,2}}, {{0x2769,5},{0xb9d,3}}, {{0x6ac3,3},{0x15c2a,5}}, + {{0x4450,4},{0xc1c,2}}, {{0xbb4,3},{0x1d,1}}, {{0x10f3,1},{0xcc9,3}}, {{0x1b,1},{0xeb2,1}}, + {{0x7a6e,4},{0x101c,2}}, {{0x1055,3},{0xb78,2}}, {{0xc25,4},{0xb99,2}}, {{0x5358,5},{0x1687,3}}, + {{0x278ad,4},{0x116c,1}}, {{0xb44,3},{0x1727b,4}}, {{0xe830,5},{0xd7a,3}}, {{0x41da,3},{0xcb8,2}}, + {{0xc30,2},{0xde2,4}}, {{0x10c8,4},{0x6dd7,3}}, {{0xa7da,3},{0xb63,2}}, {{0x244f5,2},{0x6fac,2}}, + {{0x14bae,4},{0x14bb2,4}}, {{0xd76,5},{0x1b0a,2}}, {{0x9a5a,7},{0x1f13,4}}, {{0x10ea,3},{0xee5,3}}, + {{0x70c8,4},{0x70d0,4}}, {{0x10ca,1},{0x10f0,1}}, {{0x20209,5},{0xd17,3}}, {{0x325e,7},{0x3265,7}}, + {{0x441c,3},{0x1536,6}}, {{0x5698,7},{0xc1c,2}}, {{0x1e45,3},{0xd7a,3}}, {{0x177c,3},{0x10f7,1}}, + {{0xceb,3},{0xbc6,2}}, {{0x4403,2},{0x2b,3}}, {{0x28cf,3},{0x1152,3}}, {{0xb49,2},{0x28,1}}, + {{0x27a6d,2},{0x278dc,1}}, {{0x177c,3},{0x6ac5,1}}, {{0x5f63,8},{0xb52,5}}, {{0x4132,5},{0x9238,6}}, + {{0x10ef,1},{0x10fa,1}}, {{0x1a,1},{0x1e,2}}, {{0xcbd,3},{0xb9d,3}}, {{0x1b6cb,1},{0x781,2}}, + {{0x10ec,1},{0xb85,2}}, {{0xbb47,7},{0xb78,2}}, {{0x35ee,4},{0x2182,5}}, {{0x14934,2},{0x1abd7,2}}, + {{0x1040,6},{0xb47,2}}, {{0x2796,4},{0xdc37,3}}, {{0x2ae59,4},{0x2ae5d,4}}, {{0x4491,6},{0xb2f7,5}}, + {{0xcd9,4},{0x1338a,6}}, {{0x1a0d,5},{0x4901,7}}, {{0xbb2a,3},{0xaf0,3}}, {{0x122c,4},{0x1c351,4}}, + {{0x1f,1},{0x74b9,4}}, {{0xae9,2},{0xcf3,3}}, {{0x279c5,2},{0x116d,1}}, {{0x7260,5},{0xce8,3}}, + {{0x278ad,3},{0x2797d,2}}, {{0x28,2},{0x1916,5}}, {{0x53da,9},{0x2195,3}}, {{0x1934,4},{0x53ad,6}}, + {{0xd58a,8},{0xd51,2}}, {{0xcb5,3},{0x3dd1,2}}, {{0x6f62,4},{0x70a2,2}}, {{0xbe7,1},{0x1826b,5}}, + {{0x43e3,1},{0xaf2,1}}, {{0x4284,2},{0xd54,1}}, {{0x3ae6,10},{0x132f,3}}, {{0x181c,3},{0x428a,2}}, + {{0x27d95,4},{0x27d99,2}}, {{0xa249,4},{0x10dc,2}}, {{0xd5c,1},{0x1971,2}}, {{0xc13,4},{0x13852,4}}, + {{0x3fee,10},{0xae7,1}}, {{0x20e8,5},{0xdc2,9}}, {{0x1be3,2},{0xd57,2}}, {{0xaea,1},{0x4f65,3}}, + {{0xb78,2},{0xb79,2}}, {{0x948,2},{0x1ed58,1}}, {{0x6d81,3},{0xc77,2}}, {{0xd973,7},{0x5306,4}}, + {{0xbe0,1},{0x434f,2}}, {{0x2061,5},{0x901b,7}}, {{0x1084,3},{0xbd8,2}}, {{0x253fb,3},{0x251ea,2}}, + {{0x1040,8},{0xb52,6}}, {{0x193bd,6},{0x10dc,2}}, {{0x257a,4},{0x1a,1}}, {{0x6ac5,1},{0xae7,1}}, + {{0xd76,4},{0xbf6d,5}}, {{0xf2e3,6},{0x2b,3}}, {{0xb7f,3},{0x2992,4}}, {{0x1ae4a,4},{0xa7d1,2}}, + {{0x36f6,9},{0xff7,5}}, {{0x781,2},{0x780,1}}, {{0x710e,6},{0x4459,3}}, {{0xf87b,6},{0x1cd1,5}}, + {{0x191b3,7},{0xb85,2}}, {{0x5275,4},{0x2b,3}}, {{0x272d,5},{0xb2e,2}}, {{0x19c2f,2},{0x3ba5,5}}, + {{0x278a7,4},{0x278d6,1}}, {{0x16dc,5},{0x141c5,5}}, {{0x27c5,2},{0xb98,2}}, {{0x6ac5,1},{0x265fe,3}}, + {{0x22abe,4},{0xb63,2}}, {{0x1492,3},{0xfe5,2}}, {{0x2237,3},{0xb52,5}}, {{0x2791d,2},{0x278d6,1}}, + {{0x28f6,3},{0xbd90,3}}, {{0xba5,4},{0xd33c,7}}, {{0x1dbe,5},{0xb2e,2}}, {{0x10c4e,7},{0x2b,3}}, + {{0xddc,4},{0x10a72,6}}, {{0x4c15,5},{0x1711,4}}, {{0x2446c,1},{0xaad,6}}, {{0xe5d,2},{0x3204,3}}, + {{0xdf4,3},{0x4590,5}}, {{0x17cc,4},{0x1264c,5}}, {{0x26c49,2},{0xb54,2}}, {{0x27d06,4},{0x2446f,2}}, + {{0xf1fc,7},{0x1a,2}}, {{0xb2c,2},{0xff7,5}}, {{0x278ad,3},{0x279fb,2}}, {{0x423e,1},{0x10ca,1}}, + {{0x145a0,1},{0x1b,1}}, {{0xaf1,1},{0x1097,5}}, {{0x3782,5},{0xb8a,2}}, {{0xbb5,1},{0xbed,4}}, + {{0xab9a,3},{0xcd5,2}}, {{0xb6c,3},{0x89ca,3}}, {{0x9b41,3},{0xb9d,3}}, {{0x6d81,3},{0x10f2,1}}, + {{0x1b237,4},{0x70d8,4}}, {{0x10ea,3},{0xbe7,1}}, {{0x10b7,5},{0xa713,7}}, {{0x30c8,4},{0x64d7,7}}, + {{0x1c68,3},{0x28,1}}, {{0xb8e,2},{0x1308,3}}, {{0xc3e,2},{0xd7a,3}}, {{0xc37,3},{0xb72,3}}, + {{0x1b6dd,4},{0x2aa97,4}}, {{0x10ca,1},{0x1864,2}}, {{0x29e78,3},{0x29e7a,2}}, {{0xc5ce,9},{0x10dc,2}}, + {{0x278ad,4},{0x1b6ab,1}}, {{0xf870,5},{0x542c,4}}, {{0x5254,5},{0x3fdb,5}}, {{0x2c8ae,4},{0x6f66,2}}, + {{0x3322,10},{0x2b,3}}, {{0x1fa61,5},{0x12ff,2}}, {{0xd0f,4},{0xb63,2}}, {{0xeca,5},{0xecf,12}}, + {{0x27,1},{0x1d22,6}}, {{0xbaa2,4},{0x3203,7}}, {{0x6d81,3},{0x1055,3}}, {{0x179e6,4},{0x2b,3}}, + {{0xa162,7},{0x295c,5}}, {{0x954a,8},{0xeb5,4}}, {{0xae5,1},{0x13f13,5}}, {{0x9fbe,7},{0x2939,3}}, + {{0x122c,6},{0x21d2,5}}, {{0x4074,3},{0xb55,2}}, {{0x5401,5},{0x3654,8}}, {{0x357c,7},{0x1269f,2}}, + {{0x255c,8},{0x2564,6}}, {{0xfef0,6},{0x410e,2}}, {{0x178c,3},{0x2747,3}}, {{0x16dc,4},{0xe78,3}}, + {{0x46f8,3},{0x1862,3}}, {{0xaea,2},{0x4ab0,3}}, {{0x264c,4},{0xef35,7}}, {{0xee4,3},{0x1081,3}}, + {{0x574e,11},{0xd0d,2}}, {{0x2ad8b,4},{0x2ad8f,4}}, {{0x2859,5},{0xb2f,1}}, {{0x1dec2,4},{0xae0,1}}, + {{0x2a56,8},{0x22e3,3}}, {{0xaf2,1},{0xae2,1}}, {{0xcd9,5},{0xcde,10}}, {{0xb7f,7},{0x13e3,4}}, + {{0x27f0,6},{0x23dc,9}}, {{0xe9f,3},{0xb996,4}}, {{0x2d755,2},{0x2d753,2}}, {{0x27,1},{0x4882,3}}, + {{0x16cc,4},{0xae6,3}}, {{0xae7,1},{0x2237,3}}, {{0x1721d,5},{0x106cd,4}}, {{0x24a2d,2},{0x27d20,2}}, + {{0x263d,8},{0x372a,4}}, {{0xcbc,2},{0xeb5,4}}, {{0x10f0,1},{0x269de,3}}, {{0x10c8,3},{0x4459,3}}, + {{0x615e,8},{0x10dc,2}}, {{0x151c,6},{0x9718,6}}, {{0xe42,7},{0xaea,1}}, {{0xc5ff,4},{0xae0,1}}, + {{0xbd4,2},{0x9b41,3}}, {{0x15632,3},{0x1daa,4}}, {{0x3926,7},{0x392d,7}}, {{0xcb5,3},{0x1dac0,5}}, + {{0xb85,2},{0xae6,2}}, {{0xae7,2},{0x2944,4}}, {{0x28634,1},{0x2862e,3}}, {{0x27b4,3},{0xbd90,3}}, + {{0x10fb,3},{0x2848,2}}, {{0x27b4,3},{0x1c25,4}}, {{0x6d8e,3},{0xbed,2}}, {{0x2ae0,5},{0x1636c,4}}, + {{0x601c,8},{0xb2e,2}}, {{0x10ef,1},{0x1c351,4}}, {{0x8c4,4},{0x30,28}}, {{0x1432,2},{0xeb2,1}}, + {{0xaf1,1},{0x1862,3}}, {{0x181c,3},{0x145a0,1}}, {{0xca7,3},{0x172b2,4}}, {{0xb6c,3},{0xbd8,2}}, + {{0xceaa,6},{0x2195,3}}, {{0xdf4,4},{0x296f,5}}, {{0xf69,3},{0x1555,7}}, {{0xacf8,2},{0x2abe,6}}, + {{0x13626,6},{0x1d,1}}, {{0x17de,5},{0xc8e,3}}, {{0x152c4,2},{0x10ed,2}}, {{0xc60,6},{0xdf0,2}}, + {{0x122c,4},{0x5a52,4}}, {{0x2c72e,4},{0x6f66,2}}, {{0x45e7,4},{0x1bdb,3}}, {{0xba5,5},{0x3c58,3}}, + {{0x116d,1},{0x1b140,2}}, {{0xb7d,1},{0xbb5,1}}, {{0xb0f7,5},{0x7058,6}}, {{0x1f,1},{0xdb7f,4}}, + {{0x2bfd,2},{0xc1c,2}}, {{0x4a68,5},{0xbb83,4}}, {{0xb60,3},{0xb63,2}}, {{0xb63,3},{0xb2f,1}}, + {{0x265b,7},{0x2b,3}}, {{0xaf1,1},{0x1257,2}}, {{0xeec,7},{0x5e80,5}}, {{0x3774,4},{0x3300,3}}, + {{0x1b6dd,4},{0x1b6e5,4}}, {{0x26f1,4},{0x2a95,5}}, {{0x2c458,4},{0x27d99,2}}, {{0x40b2,4},{0x4f65,3}}, + {{0xdfe,5},{0x1d,1}}, {{0xd0db,7},{0x2b,3}}, {{0xa7e6,6},{0xa7ec,6}}, {{0xfdd,2},{0xfdf,2}}, + {{0xe830,5},{0x18fdb,4}}, {{0x27a73,2},{0x278d6,1}}, {{0x355d,3},{0xb2c,2}}, {{0x26f1,4},{0xb64,2}}, + {{0x14dfc,5},{0xd046,4}}, {{0xc13,4},{0x4a51,4}}, {{0x428b,2},{0x15ae2,3}}, {{0x27cea,1},{0x27e35,2}}, + {{0xc29,2},{0xc77,2}}, {{0x17fc,8},{0xb50,7}}, {{0x2445f,1},{0x27cf8,2}}, {{0x27977,2},{0x278dc,1}}, + {{0x6c15,6},{0xbbf,2}}, {{0xd65,3},{0xba7,3}}, {{0xae7,1},{0x5a1c,3}}, {{0x12bc,5},{0xb65,2}}, + {{0xab9c,1},{0x10f7,1}}, {{0xf6ce,5},{0x11f2,3}}, {{0xb2f,1},{0x14a7,5}}, {{0x10ef,1},{0x10119,2}}, + {{0x1a76,4},{0x1195,2}}, {{0xaf1,1},{0x1b,1}}, {{0xaca2,3},{0x1b,1}}, {{0x27d0f,2},{0x9c9,1}}, + {{0xeee,5},{0x32ff,4}}, {{0x6b54,2},{0x6008,4}}, {{0x1b23b,4},{0x10196,4}}, {{0x10ef,1},{0x28dd0,2}}, + {{0xbe0,1},{0x4f65,3}}, {{0xc25,4},{0xf10,4}}, {{0xd65,3},{0x15dad,6}}, {{0xaea,1},{0x12ff,2}}, + {{0xb78,2},{0x103a,3}}, {{0xcb5,3},{0x11ef,3}}, {{0x41dc,3},{0x5396,3}}, {{0x10ea,3},{0x236a3,4}}, + {{0x13d60,7},{0x2b,3}}, {{0xf6ce,4},{0x27b6,1}}, {{0x41da,3},{0x1683,3}}, {{0xf5f4,2},{0xd5c,1}}, + {{0x10ea,3},{0x295a4,2}}, {{0x80ce,6},{0x108b,3}}, {{0x8aa6,6},{0x4881,4}}, {{0x18,1},{0x1b4e4,1}}, + {{0x2793d,4},{0x27ad3,2}}, {{0x1b7c9,6},{0x1b7cf,8}}, {{0x962e,8},{0xce8,3}}, {{0x10fb,3},{0x5277,2}}, + {{0x4f71,3},{0x1525,7}}, {{0x10c8,3},{0x22e1,3}}, {{0x1790c,6},{0x2b,3}}, {{0x89e6,5},{0x89eb,7}}, + {{0xcb5,3},{0xd57,2}}, {{0x21,1},{0x1574b,2}}, {{0x6221,5},{0x2b,3}}, {{0x1ed0,4},{0xb55,2}}, + {{0x116d,1},{0x278f3,2}}, {{0x70ea,3},{0x1b4f,3}}, {{0x279ef,2},{0x278af,1}}, {{0xaea,1},{0x967e,4}}, + {{0x27923,2},{0x278af,1}}, {{0x1b4e4,1},{0x251d8,2}}, {{0xaecc,3},{0xaecf,7}}, {{0x178c,3},{0xc3a,3}}, + {{0x1084,3},{0x1c25,3}}, {{0xc25,5},{0x116cc,4}}, {{0x12fc,7},{0x1d,1}}, {{0xcde,3},{0xca7,3}}, + {{0x116d,1},{0x278e1,2}}, {{0xd0ff,2},{0x1a,1}}, {{0x1a496,5},{0x1862,3}}, {{0x1ca8d,5},{0x5203,3}}, + {{0xcf3e,2},{0x10dc,2}}, {{0xbde,3},{0x4d97,2}}, {{0x2322,6},{0x8975,5}}, {{0x28871,3},{0x24a30,2}}, + {{0xa8a8,3},{0xbac,4}}, {{0x142e,1},{0xae2,2}}, {{0x1a10,2},{0xb52,5}}, {{0x1dcad,6},{0xb65,2}}, + {{0x145a0,1},{0x16f8,3}}, {{0x175c,9},{0x108e,7}}, {{0xb2e,2},{0xf01,4}}, {{0x3862,9},{0x24fd,5}}, + {{0x4a1a,11},{0xc8f,2}}, {{0x10f2,1},{0x967e,4}}, {{0xc17,5},{0x63c8,5}}, {{0x1ed58,1},{0x28e51,3}}, + {{0x24ba,3},{0x28,1}}, {{0x10ca,1},{0xb4b,2}}, {{0x142e,1},{0xae0,1}}, {{0x107ce,6},{0x5c44,4}}, + {{0xddc,4},{0x16ce,4}}, {{0x14bc,5},{0xbd6,8}}, {{0x153e2,8},{0xfe5,2}}, {{0x278a7,3},{0x278d5,2}}, + {{0xbb5,1},{0x1a9d,3}}, {{0x2202,3},{0xb65,2}}, {{0x12ae,3},{0xaee,5}}, {{0x1b23f,4},{0x253a3,4}}, + {{0x10e2e,6},{0x1278,4}}, {{0xc52,2},{0x2b,1}}, {{0x22cf8,1},{0x28e8e,2}}, {{0xca3,4},{0xca7,2}}, + {{0x27995,2},{0x116e,1}}, {{0x25002,2},{0x10ef,1}}, {{0xfa09,8},{0x1081,3}}, {{0x70dc,4},{0x244c3,2}}, + {{0x11ef,2},{0xdc1,5}}, {{0x1afd,5},{0x3e16,3}}, {{0x40c2,2},{0x19e4,3}}, {{0x5c6f,7},{0x5c76,4}}, + {{0xc6cd,5},{0x4bcf,4}}, {{0xcc0b,6},{0xa049,5}}, {{0xc37,3},{0x6226,2}}, {{0xcb8,2},{0x2b265,2}}, + {{0xcb5,3},{0x27,1}}, {{0x1a859,4},{0x4189,3}}, {{0x1a,1},{0x28da,1}}, {{0x27d24,3},{0x1b6cb,1}}, + {{0x6e03,7},{0x1513,5}}, {{0xaf1,1},{0x1eb1c,5}}, {{0xbc0,2},{0x2b54,8}}, {{0x3704,6},{0x12dec,4}}, + {{0x19405,6},{0xae7,1}}, {{0x10f0,1},{0x17ae,1}}, {{0xbb3,2},{0x1d,1}}, {{0x278dc,1},{0x1171,2}}, + {{0x6ac3,3},{0x203b5,4}}, {{0x24475,6},{0x806,2}}, {{0x2793d,4},{0x27ad9,2}}, {{0x24f87,2},{0x19,1}}, + {{0x2891,3},{0x14a8,4}}, {{0x9a9,1},{0x27cc5,2}}, {{0x789a,7},{0x78a1,5}}, {{0x1b6b3,4},{0x1b6b3,4}}, + {{0xb60,2},{0xde2,4}}, {{0xcc7,3},{0x94ed,5}}, {{0x2ce18,2},{0x1dec4,2}}, {{0xc37,3},{0x1f,1}}, + {{0xf3ca,5},{0x19e4e,4}}, {{0x51ab,5},{0x7c25,5}}, {{0xd41,3},{0x1b25b,4}}, {{0x1095,4},{0xca6,2}}, + {{0x2843a,2},{0x2445f,1}}, {{0xb6ff,4},{0x2b,3}}, {{0x279f5,2},{0x924,1}}, {{0x12800,6},{0xcc0,3}}, + {{0x26c4,3},{0x28fc4,2}}, {{0xc49,3},{0xbc6,2}}, {{0x10ca,1},{0xa24a,3}}, {{0x10ec,1},{0x28da,1}}, + {{0x6ac5,1},{0x1b4f,3}}, {{0xb66,2},{0x2211,3}}, {{0x3846,4},{0x5ee5,9}}, {{0xcf3,3},{0xb2f,1}}, + {{0xbc44,8},{0xd0d,2}}, {{0xb6e,2},{0x1a,1}}, {{0x3cde,13},{0xae7,1}}, {{0x19c5c,2},{0x4646,5}}, + {{0xbde,3},{0x2574,2}}, {{0x17ae,1},{0x1f,1}}, {{0x6ac3,3},{0x43a5,3}}, {{0x8c4,4},{0x30,26}}, + {{0x43e3,1},{0x28da,1}}, {{0xb85,2},{0xbb4,4}}, {{0x10fb,3},{0x3fa1,7}}, {{0x1dec2,4},{0x2d,1}}, + {{0xaca2,3},{0x152c4,2}}, {{0x6d81,3},{0xc8a3,3}}, {{0xcb5,3},{0x151f,3}}, {{0xbe0,1},{0xf02,3}}, + {{0x2474d,4},{0xf907,2}}, {{0xb44,3},{0x59f5,3}}, {{0x415c,4},{0x34a2,4}}, {{0x172ec,5},{0x6281,3}}, + {{0x14934,2},{0x10ec,1}}, {{0x281d,5},{0x2b,2}}, {{0xf95b,3},{0xb79,2}}, {{0x2b50,6},{0x7a5e,4}}, + {{0x2d,1},{0xb7c,3}}, {{0xbe7,1},{0x1393,3}}, {{0x66cd,9},{0xb2c,4}}, {{0x177c,3},{0x74b9,4}}, + {{0x10f6,1},{0x2844,3}}, {{0x5ff7,5},{0x10dc,2}}, {{0x10f3,1},{0x12bc4,3}}, {{0x159c8,1},{0x251dc,4}}, + {{0xb79,2},{0x21,1}}, {{0x97d8,3},{0xb2c,2}}, {{0x2d5d,4},{0xc34,3}}, {{0x10fb,3},{0x297bd,2}}, + {{0xee6b,8},{0xc34,3}}, {{0x19b96,2},{0x1a28f,3}}, {{0x1b4b,3},{0x4bcf,5}}, {{0x50ce,8},{0x2b,3}}, + {{0x57b6,6},{0x57bc,7}}, {{0x26b5,4},{0x11287,5}}, {{0x10ea,3},{0x1c,1}}, {{0x41ef,2},{0x10dc,2}}, + {{0x3162,5},{0xe0a,5}}, {{0x27aaf,2},{0x278af,1}}, {{0x1b140,2},{0x27b03,2}}, {{0xb7f,3},{0xff7,5}}, + {{0x36da,6},{0x2b,2}}, {{0x12ec,8},{0x10dc,2}}, {{0x107ba,7},{0x2939,3}}, {{0x17ee,3},{0xf6d5,4}}, + {{0x27995,2},{0x27897,1}}, {{0x278a7,3},{0x27897,2}}, {{0x924,2},{0x278a3,2}}, {{0x407a,10},{0xb2e,2}}, + {{0x10ea,3},{0x23d9,3}}, {{0x522d,8},{0xd0b,4}}, {{0x272d,5},{0x5cd6,3}}, {{0x16edf,7},{0xb78,2}}, + {{0x24a2d,2},{0x251ea,2}}, {{0x43a2,3},{0x55f6,6}}, {{0x1a859,4},{0x1a85d,5}}, {{0x422e,3},{0x72da,3}}, + {{0x2c6b0,4},{0x1b205,2}}, {{0x708e,2},{0x45dc,7}}, {{0x200a1,6},{0x2bfd,2}}, {{0x265b,4},{0x15583,3}}, + {{0x278a7,3},{0x27af1,2}}, {{0xbb5,1},{0xafa9,5}}, {{0x10ec,1},{0xc1e,2}}, {{0x271e,3},{0xaf5d,2}}, + {{0x26c6,2},{0x8a48,4}}, {{0x234af,6},{0x1d,1}}, {{0x4f48,9},{0x2b,3}}, {{0x3f7e,8},{0x1081,3}}, + {{0xf966,4},{0x2dc3,3}}, {{0x65a2,8},{0xc8e,3}}, {{0x422e,3},{0xb54,4}}, {{0x8a49,2},{0x1f,1}}, + {{0x2b5e,5},{0x361c,4}}, {{0xbe7,1},{0x12d3f,6}}, {{0xb68d,6},{0xb2c0,5}}, {{0x2445f,1},{0x24f91,2}}, + {{0x16fc,5},{0x4868,4}}, {{0x5ea0,6},{0xce8,3}}, {{0xb12e,3},{0x3dd1,4}}, {{0x1a0d,5},{0xc2a,2}}, + {{0xb2e,2},{0xb9d,3}}, {{0x3e90,5},{0x3336,8}}, {{0x286a,2},{0x28,1}}, {{0x3234,6},{0x2900,4}}, + {{0xbcb,3},{0x2c5f,4}}, {{0xd78,3},{0x14a7,5}}, {{0x30,2},{0x2523b,4}}, {{0x716e,5},{0xbac,4}}, + {{0xf85,4},{0x4874,6}}, {{0x6d8e,3},{0x150d9,7}}, {{0xac8c,2},{0x8a92,5}}, {{0x10ed,2},{0x2847,3}}, + {{0x30,2},{0x2b87e,4}}, {{0xf65,3},{0xbc4,4}}, {{0x1fbc,10},{0x1f13,4}}, {{0x51df,5},{0x256d,3}}, + {{0xeb2,1},{0x142e,1}}, {{0x3e12,7},{0x6ab9,4}}, {{0x17ee,5},{0x2b3e,4}}, {{0x963a,7},{0x11b8,4}}, + {{0x6f74,4},{0x70ca,2}}, {{0xa7ac,5},{0x887b,3}}, {{0xf1db,6},{0x220f,5}}, {{0x10f0,1},{0xae7,1}}, + {{0x178e,3},{0x16f1,4}}, {{0x5c76,4},{0xbed,2}}, {{0x441c,3},{0xc6db,3}}, {{0xb2f,1},{0x130f,2}}, + {{0xf325,5},{0x1c,1}}, {{0x1b140,3},{0x278d6,1}}, {{0x43e3,1},{0x2844,2}}, {{0x278a7,3},{0x2799b,2}}, + {{0x2bfd,2},{0xb65,2}}, {{0x415c,5},{0xdd5,2}}, {{0x1bff5,7},{0xae7,1}}, {{0x10fb,3},{0xe5ce,5}}, + {{0xbeb,1},{0x2af4,4}}, {{0x1f6a3,3},{0xd5c,1}}, {{0x5e52,11},{0x1f,2}}, {{0x1bb7d,5},{0x2195,3}}, + {{0x24462,1},{0x112c,1}}, {{0xbff6,7},{0xb54,4}}, {{0x845e,6},{0xce1,4}}, {{0x5a74,7},{0x2c7d,6}}, + {{0x1edb,10},{0xb52,5}}, {{0xf228,6},{0xf22e,5}}, {{0x177c,3},{0x7591,5}}, {{0xae7,1},{0x763c,3}}, + {{0x17ee,3},{0x1b,1}}, {{0x924,2},{0x278d5,2}}, {{0x279d1,2},{0x278d6,1}}, {{0xc37,3},{0xb4b,2}}, + {{0x177c,3},{0x5903,4}}, {{0x3988,6},{0x4ae5,5}}, {{0xba5,5},{0xcdc,3}}, {{0x2868,4},{0x386a,3}}, + {{0x281d,10},{0xb52,5}}, {{0xb8f,2},{0xcb8,2}}, {{0x28,2},{0xcf6,3}}, {{0xbb5,1},{0x290e,4}}, + {{0x116d,2},{0x278a9,1}}, {{0x9baa,5},{0xf5e,3}}, {{0x8ede,9},{0xce8,3}}, {{0x1adf2,4},{0x11f2,3}}, + {{0xb6c,3},{0x1cf1b,4}}, {{0xebed,6},{0x2279,4}}, {{0xf5f4,2},{0x10f3,1}}, {{0xfef0,6},{0x1015e,2}}, + {{0x2efa,9},{0xb65,2}}, {{0x5032,8},{0xc1e,5}}, {{0x78b2,5},{0xc62,3}}, {{0x4dd1,7},{0xae7,1}}, + {{0x920e,7},{0x9215,5}}, {{0x170be,6},{0x2b,3}}, {{0x51b8,7},{0xc55,6}}, {{0x20b39,4},{0x1b,1}}, + {{0x24531,4},{0x24515,2}}, {{0xf212,3},{0x22d26,4}}, {{0x180c,4},{0x1307,4}}, {{0xe86,11},{0x1387,5}}, + {{0x23e5,10},{0xb52,5}}, {{0xb44,3},{0x1b25b,4}}, {{0x271e,3},{0xc1c,2}}, {{0x194a,6},{0x1950,5}}, + {{0x16bc,4},{0xbef2,6}}, {{0x122c,6},{0x583f,6}}, {{0xcfd,10},{0xb9d,3}}, {{0xeb1,2},{0x2b,1}}, + {{0x6cbe,4},{0x16ee,2}}, {{0x278ad,3},{0x279bf,2}}, {{0xd0a4,5},{0x89c8,5}}, {{0xbc2,2},{0x1d,1}}, + {{0x1cbf,5},{0x66ac,6}}, {{0x2793d,4},{0x278db,2}}, {{0xfc6a,5},{0xaf1,1}}, {{0xe9f,3},{0x18ee8,4}}, + {{0x100b0,2},{0x10f3,1}}, {{0x10ea,3},{0x10f1,2}}, {{0xeee,5},{0x3788,3}}, {{0xaf2,1},{0x13e4,3}}, + {{0x924,2},{0x27a49,2}}, {{0x279d1,2},{0x116d,1}}, {{0x7d02,8},{0x1538,4}}, {{0x177c,3},{0x1b4f,3}}, + {{0xd48d,7},{0xbb4,4}}, {{0x22cf8,1},{0x27cea,1}}, {{0xb57a,7},{0xce8,3}}, {{0x146c,9},{0x1498,4}}, + {{0x9b1a,5},{0x11f1,4}}, {{0xcb5,3},{0x9319,3}}, {{0x763a,5},{0x10dc,2}}, {{0x1ae31,3},{0x10ec,1}}, + {{0x142e,1},{0x1d4e,4}}, {{0x43e3,1},{0xd0b,3}}, {{0xcdd9,6},{0x8470,5}}, {{0x27c7f,4},{0x924,2}}, + {{0x109c,3},{0xe7b,3}}, {{0x1a5ad,6},{0xede,3}}, {{0xb8f,3},{0xb2f,1}}, {{0x924,2},{0x278cf,2}}, + {{0x36b0,6},{0x1e,1}}, {{0x422e,3},{0x1089,2}}, {{0x43e3,1},{0x1f965,2}}, {{0xb51,3},{0x1a35,4}}, + {{0xf905,4},{0x1d,1}}, {{0xe6d,2},{0xf10,3}}, {{0x6c97,5},{0xb63,2}}, {{0x28f6,2},{0xb2e,2}}, + {{0x5d5b,5},{0x95c7,7}}, {{0x2a594,4},{0x278a9,1}}, {{0x78a6,7},{0x2b,3}}, {{0xc37,3},{0xb55,2}}, + {{0xed79,8},{0xae7,1}}, {{0x6ac3,3},{0xf5f6,2}}, {{0x1b,1},{0xb7d,1}}, {{0x13ff4,7},{0x2b,3}}, + {{0x2b,1},{0xbb4,2}}, {{0xb2c,2},{0x1f13,4}}, {{0x271e,3},{0x11b2,4}}, {{0xab9a,3},{0xae2,2}}, + {{0x26d3,7},{0xc65,8}}, {{0x108d,3},{0xc8a3,3}}, {{0x16f8,3},{0xdd7,4}}, {{0x1e,1},{0xaf2,1}}, + {{0x178c,3},{0xc8f,2}}, {{0x415c,5},{0x4e63,8}}, {{0xf594,4},{0xb55,2}}, {{0x422e,3},{0xec2,2}}, + {{0x1051,4},{0xc55,2}}, {{0x1ed69,3},{0xbe4,1}}, {{0xfbfc,5},{0x5396,3}}, {{0x1085a,6},{0x14b11,5}}, + {{0x28da,1},{0x2b39a,3}}, {{0x1084,4},{0x88ce,4}}, {{0xf39e,4},{0x1e,2}}, {{0x17ec,5},{0x1700,4}}, + {{0x10ec,1},{0xbe7,1}}, {{0xf85,4},{0x1e,1}}, {{0x1d3ad,6},{0xd0d,2}}, {{0xb2f,1},{0x2349,4}}, + {{0x9136,6},{0x28d4,6}}, {{0x4fbd,4},{0xa4c9,3}}, {{0x177e,2},{0x11ef,3}}, {{0x1aa90,5},{0x1a,2}}, + {{0x1051,4},{0x1be11,4}}, {{0xfef0,4},{0xff2c,8}}, {{0xa61e,5},{0x103a,3}}, {{0x1a9d,3},{0xb65,2}}, + {{0x1a58,7},{0x1254,8}}, {{0x422e,3},{0x43bd,4}}, {{0xb6e,2},{0xb8f,2}}, {{0x139f,3},{0xbac,4}}, + {{0x1aedc,3},{0x1208c,3}}, {{0xca95,5},{0x89b9,4}}, {{0xb64,3},{0x54af,4}}, {{0x6d81,3},{0x1d88a,5}}, + {{0x9136,6},{0xd6e5,5}}, {{0xcde,3},{0x11667,5}}, {{0x22f5,8},{0x14e2,3}}, {{0x139f,3},{0xd48,2}}, + {{0xbb5,1},{0x5af9,3}}, {{0xba5,4},{0x3d98,9}}, {{0x135d6,5},{0x2182,5}}, {{0x178c,3},{0xd13,3}}, + {{0x143c,5},{0x4df1,5}}, {{0x20479,5},{0xc34,2}}, {{0x278a1,3},{0x279c5,2}}, {{0x1f9e1,5},{0xc34,2}}, + {{0x134c,5},{0x2d12,4}}, {{0x9aae,8},{0xc63,3}}, {{0xb44,3},{0x18de2,4}}, {{0x1a76,4},{0x5203,3}}, + {{0x89da,5},{0x21a0,3}}, {{0x9af6,6},{0xc63,3}}, {{0x5442,4},{0x1c419,4}}, {{0x70a8,4},{0xff24,4}}, + {{0x19f8d,8},{0xae7,1}}, {{0x27e7e,4},{0x28634,1}}, {{0x1af22,5},{0xa57c,4}}, {{0x43e3,1},{0xb8f,2}}, + {{0x14f61,2},{0xae7,1}}, {{0x14a8,4},{0x1a,2}}, {{0x6f62,4},{0x27d99,2}}, {{0x10029,3},{0xc2ea,3}}, + {{0x27cf4,4},{0x19,1}}, {{0x27a6d,2},{0x27897,1}}, {{0x1d82,8},{0x5575,4}}, {{0x218d,5},{0x967e,4}}, + {{0xb94d,7},{0x2288,4}}, {{0x116d,1},{0x27983,2}}, {{0x9aba,5},{0xae2,1}}, {{0x6ac3,3},{0xbeb,1}}, + {{0x1040,5},{0xae2,2}}, {{0xbb5,1},{0x1254,3}}, {{0xc1c,2},{0x1408,3}}, {{0x92b6,5},{0x46fb,6}}, + {{0x1cee,4},{0xae7,1}}, {{0xbd1,2},{0x2bca,4}}, {{0x135c,5},{0x12f6,3}}, {{0xd569,9},{0xb65,2}}, + {{0x145e4,4},{0x4606,3}}, {{0xceb,3},{0x4459,3}}, {{0x2214,6},{0x38a0,8}}, {{0x14dc,7},{0x103b,5}}, + {{0x1f3a,3},{0x1152,3}}, {{0xc13,4},{0x72f2,8}}, {{0x24a2d,2},{0x1ed53,1}}, {{0x441c,3},{0xc30,2}}, + {{0x246c,8},{0xe7f,7}}, {{0x80da,9},{0xb7c,3}}, {{0xd1b,1},{0xaf1,1}}, {{0xbb1,3},{0x2b,1}}, + {{0xc37,3},{0x1c,1}}, {{0xb6c,3},{0xae5,1}}, {{0xc55,2},{0xb78,2}}, {{0xcb5,3},{0x2a9f,4}}, + {{0x278a7,3},{0x278ed,2}}, {{0xbd1,2},{0x2097,6}}, {{0x19b3,4},{0x1843f,4}}, {{0x13c2a,6},{0x51f3,4}}, + {{0x16ee,2},{0x411b,2}}, {{0x7162,4},{0x4ab0,3}}, {{0x423e,1},{0xd54,1}}, {{0x6c3c,5},{0x1621,4}}, + {{0x14652,7},{0x2574,2}}, {{0xcd9,3},{0xfb1,2}}, {{0x2a530,4},{0x27897,1}}, {{0x4106,5},{0x19f02,4}}, + {{0x5d5b,5},{0xb2a,4}}, {{0xb28e,5},{0x73d8,6}}, {{0x19bc,4},{0x2b,3}}, {{0xd7f,3},{0xeb3,3}}, + {{0x6d81,3},{0x28cf,3}}, {{0x27,1},{0x11f2,3}}, {{0xf5f4,2},{0x10f0,1}}, {{0x27a79,2},{0x278a9,1}}, + {{0xdba,6},{0x29fa,5}}, {{0x2df0,8},{0x1704,3}}, {{0x1a122,7},{0xae7,1}}, {{0x25002,2},{0x26e6d,2}}, + {{0xad64,2},{0x2988,4}}, {{0x1bc0,10},{0xdf9,5}}, {{0x13cf2,5},{0xbb5,1}}, {{0x27995,2},{0x278d6,1}}, + {{0x180c,4},{0xd13,3}}, {{0x159c,5},{0xa469,5}}, {{0x10ea,3},{0x8a49,2}}, {{0x12e3,3},{0xfe5,6}}, + {{0xbb5,2},{0xcb8,3}}, {{0x28433,2},{0x24,1}}, {{0x134c,5},{0xc50d,5}}, {{0x6ac3,3},{0x1ee2c,5}}, + {{0x10ec,1},{0xae2,1}}, {{0xd65,3},{0x23b1,3}}, {{0xd34e,8},{0x5396,3}}, {{0x265b,4},{0x13395,4}}, + {{0x143c,5},{0x8bb3,7}}, {{0x16ac0,6},{0x1489,3}}, {{0x3234,3},{0x1aa6,3}}, {{0xab25,5},{0xd1b,1}}, + {{0xa5d6,7},{0x31e2,4}}, {{0x12fc,4},{0x1b5a,4}}, {{0x16a4,4},{0xb65,2}}, {{0x27a01,2},{0x278af,1}}, + {{0x51ab,7},{0xb2c,2}}, {{0xba29,7},{0x41ef,4}}, {{0x31a0,7},{0xae7,1}}, {{0x26c6,1},{0x2848,2}}, + {{0x1040,6},{0x3d0e,8}}, {{0x261f,4},{0x1220c,4}}, {{0xc29,2},{0x2c18,4}}, {{0xe171,8},{0xae7,1}}, + {{0x69e6,8},{0xbb4,4}}, {{0x67aa,6},{0x1a,3}}, {{0x15ab8,3},{0x15abb,3}}, {{0xc67,2},{0xc8e,3}}, + {{0x1f6e9,5},{0x1719,3}}, {{0xde9,1},{0xc3d,4}}, {{0x441c,3},{0x1a5c,3}}, {{0x2106,5},{0xc34,2}}, + {{0xd0d,2},{0xae7,1}}, {{0x119c,7},{0x1906,8}}, {{0x180e,2},{0xa022,5}}, {{0x1e,1},{0x12abf,6}}, + {{0x4d56,4},{0xb78,2}}, {{0x13dc,9},{0x2971,3}}, {{0x27a2b,2},{0x278af,1}}, {{0xb2c5,6},{0x1563,5}}, + {{0x25235,6},{0x2523b,4}}, {{0xb30,2},{0x2446c,1}}, {{0x2868,4},{0x28,1}}, {{0xf65,3},{0x484c,7}}, + {{0x177c,4},{0x103a5,5}}, {{0x2769,7},{0x32d5,4}}, {{0x29cac,3},{0x2d,1}}, {{0x2aacb,2},{0x24733,2}}, + {{0xecc,3},{0x2b,2}}, {{0xc1a,4},{0x103a,3}}, {{0x7276,8},{0x1278,4}}, {{0x1a607,5},{0xb9c,2}}, + {{0x1a0f,3},{0x46e0,6}}, {{0x2cae,4},{0x8111,5}}, {{0xfc96,5},{0xb78,3}}, {{0x4415,2},{0xf82b,3}}, + {{0x20,2},{0xae6,3}}, {{0xfc8d,3},{0xe8ba,5}}, {{0x422e,3},{0xd1a,2}}, {{0x162f2,5},{0x4031,3}}, + {{0xbd8,2},{0xaf1,1}}, {{0xddc,5},{0xc57,3}}, {{0x26c6,1},{0xb383,5}}, {{0x10ca,1},{0xade9,6}}, + {{0xaea,1},{0x139e,2}}, {{0x244e9,6},{0x244ef,6}}, {{0x27d24,3},{0x2a9d0,2}}, {{0x118c,5},{0x1489,3}}, + {{0xf95b,3},{0x4818,7}}, {{0x26c6,1},{0xbed,2}}, {{0x1f,1},{0x18de2,4}}, {{0x14bb5,2},{0x10f7,1}}, + {{0x4194,5},{0x40b8,2}}, {{0xc25,3},{0x3e92,3}}, {{0xf3a0,2},{0x10d24,6}}, {{0x709c,2},{0x1b709,2}}, + {{0x422e,7},{0x3265,7}}, {{0x15b52,2},{0xff22,2}}, {{0x278a7,4},{0x27897,1}}, {{0x142c,3},{0x1d64a,5}}, + {{0x181c,3},{0x2054e,3}}, {{0x2446a,3},{0x159c8,1}}, {{0xc17,3},{0xd5e,4}}, {{0x61e0,9},{0xe49,4}}, + {{0x10d48,4},{0xfdd,3}}, {{0x265b,8},{0xe7f,7}}, {{0x278ad,3},{0x2799b,2}}, {{0xbde,3},{0x30f5,4}}, + {{0x46e0,5},{0x10dc,2}}, {{0x1c,1},{0x13e4a,5}}, {{0x1d,1},{0x2b,2}}, {{0xf92d,6},{0xb52,2}}, + {{0x14ea6,4},{0xb47,2}}, {{0x17241,5},{0xcd3,2}}, {{0xbeb,1},{0xc67,3}}, {{0x28da,1},{0x1a,1}}, + {{0xb85,2},{0x25c2,3}}, {{0x139c,6},{0x2900,4}}, {{0x154e6,5},{0x53f8,3}}, {{0x8a22,7},{0x674c,3}}, + {{0xcd9,5},{0x16de,5}}, {{0x2871b,6},{0x24733,2}}, {{0x16cc,6},{0xe1c,4}}, {{0xaf2,1},{0x1b4f,3}}, + {{0x19b3,5},{0xec5,5}}, {{0xae2,1},{0x1a,2}}, {{0x265b,4},{0xbb5,1}}, {{0x1b,1},{0x14b6,2}}, + {{0x422e,3},{0x12b19,4}}, {{0xbcb,3},{0xec7,3}}, {{0x1e155,6},{0xb55,2}}, {{0x10884,6},{0xb2c,4}}, + {{0xf0e,5},{0x1b80,4}}, {{0xaa3e,6},{0x25c2,3}}, {{0x27b6,1},{0x19cb,6}}, {{0xd11d,5},{0x1155,6}}, + {{0x122c,5},{0x10c8f,5}}, {{0xd79a,6},{0xbb1,3}}, {{0x121c,7},{0x296f,5}}, {{0xbde,3},{0x2742,3}}, + {{0x10fb,4},{0x753e,5}}, {{0x7102,5},{0xae7,1}}, {{0x116d,1},{0x278a3,2}}, {{0x29f18,3},{0x1171,2}}, + {{0x2848,2},{0xab9c,1}}, {{0x441c,3},{0xb70,2}}, {{0x948,1},{0x2a885,2}}, {{0x7a56,10},{0x10dc,2}}, + {{0xae2,2},{0x81e7,7}}, {{0x1b23f,4},{0xb2f,1}}, {{0x3170,5},{0xc30,2}}, {{0xb71,2},{0x257c,2}}, + {{0x5288,5},{0x915e,4}}, {{0x244a1,2},{0x1dec4,2}}, {{0x27d2,6},{0x28e2,6}}, {{0x135fe,5},{0x2be6,4}}, + {{0x1051,4},{0xb78,2}}, {{0x283d,3},{0x4286,2}}, {{0x3774,4},{0x28,2}}, {{0x139f,3},{0x1f,3}}, + {{0xadd,4},{0xd54c,7}}, {{0xc16c,8},{0xae7,1}}, {{0x1460c,6},{0x14612,4}}, {{0xfc9,6},{0x7750,6}}, + {{0x4132,5},{0x7cfb,7}}, {{0x6d81,3},{0xacf1,5}}, {{0xa2d6,5},{0x2b,2}}, {{0x15682,3},{0x16f8,3}}, + {{0x12fe,1},{0x28,1}}, {{0xc13,4},{0x29b0,5}}, {{0x1a10,2},{0xb65,2}}, {{0x22e8,3},{0xe2c0,4}}, + {{0xa98a,9},{0xd7f,3}}, {{0x4354,4},{0xcb8,2}}, {{0x282c,7},{0xb54,3}}, {{0x1aaed,1},{0x10ca,1}}, + {{0xaedb,2},{0x14f60,4}}, {{0x2d10,6},{0x2f11,5}}, {{0xddbf,6},{0xb78,2}}, {{0x6ac3,3},{0x265d,3}}, + {{0x14d0c,5},{0xc8a3,3}}, {{0x441c,3},{0x4590,5}}, {{0x1488c,6},{0xb68,4}}, {{0x53a6,6},{0x4d56,4}}, + {{0x9b92,7},{0x9ba5,5}}, {{0xb64,2},{0x2b,1}}, {{0xb52,2},{0xaec,2}}, {{0x4108,2},{0xc67,2}}, + {{0x430,18},{0x432,8}}, {{0xb26d,6},{0x2683,5}}, {{0x257c,3},{0xaea,2}}, {{0x227f,3},{0x1a,2}}, + {{0x178c,3},{0x10dc,2}}, {{0x1925e,6},{0xae7,1}}, {{0xe397,6},{0x4a1c,5}}, {{0xbde,3},{0x1f2b,4}}, + {{0x198cd,6},{0x10dc,2}}, {{0xca7,2},{0x11b8,4}}, {{0x43e3,1},{0xd0d,2}}, {{0xa4d,2},{0x27d99,2}}, + {{0xae0,1},{0xb82,2}}, {{0x1b6dd,2},{0x70a2,2}}, {{0x10fb,3},{0x107d,4}}, {{0x6d81,3},{0x2848,2}}, + {{0x278ad,4},{0x27897,1}}, {{0x14a1c,6},{0x3e15,4}}, {{0x443c,4},{0xbb4,4}}, {{0x36a2,7},{0x28d4,6}}, + {{0xbb15,3},{0x2b,1}}, {{0x2793d,4},{0x278af,2}}, {{0x16fc,4},{0xae1b,7}}, {{0x3e82,5},{0x2998,6}}, + {{0x10f3,1},{0x24fc8,5}}, {{0xbde,3},{0x2bca,4}}, {{0xdbf,3},{0x2eb0,4}}, {{0x6b45,6},{0xb2e,2}}, + {{0x30,128},{0x30,12}}, {{0x1017e,6},{0x1b83f,8}}, {{0x278a7,3},{0x27b0f,2}}, {{0x10ef,1},{0x81f4,5}}, + {{0x10f0,1},{0x2428b,3}}, {{0xaeb,2},{0x1a,1}}, {{0x155c,12},{0x2b,3}}, {{0xc49,3},{0x1409,2}}, + {{0xb47,2},{0xc4d,2}}, {{0x2844,2},{0x285a1,3}}, {{0xb6c,3},{0x5c76,4}}, {{0xbe0,1},{0xd0ff,2}}, + {{0xaeb,2},{0x3921,5}}, {{0xf57b,3},{0x1260,4}}, {{0x4c3e,4},{0xbb4,4}}, {{0xb493,5},{0x10dc,2}}, + {{0x177c,4},{0x174e,3}}, {{0xf74,8},{0xf7c,9}}, {{0x177c,3},{0x6226,2}}, {{0x122c,5},{0xb8f,2}}, + {{0x24e4,6},{0x296f,5}}, {{0xb2e,2},{0x1993d,3}}, {{0x2769,7},{0x22c0,3}}, {{0x7a7a,8},{0x1278,4}}, + {{0x10c8,3},{0xc2e,2}}, {{0x422e,3},{0x2387f,4}}, {{0x1aaea,4},{0x1aaee,5}}, {{0x28,2},{0x13b7a,5}}, + {{0x6b52,4},{0x2b,1}}, {{0xfb1,2},{0xaec,2}}, {{0x6137,5},{0xc34,3}}, {{0x16a03,7},{0xae7,1}}, + {{0x28e8,4},{0x1719,3}}, {{0x4a75,5},{0x1717,5}}, {{0x181c,3},{0xaea,2}}, {{0xb60,2},{0xc34,3}}, + {{0x5365,5},{0x79f9,4}}, {{0x7132,8},{0x1278,4}}, {{0xb54,3},{0x28,1}}, {{0xdde0,5},{0xce8,3}}, + {{0x1a0f,3},{0x1ed3,3}}, {{0x14fc,5},{0x12f0d,5}}, {{0xf46,2},{0xb64,3}}, {{0xba5,4},{0x2746,3}}, + {{0x10fb,3},{0xb49,2}}, {{0x10ea,3},{0x290f,3}}, {{0x43e3,1},{0x6ac5,1}}, {{0xae0,1},{0xc39,2}}, + {{0x1c,1},{0xb8a,2}}, {{0xacf8,2},{0x10dc,2}}, {{0x1b4e3,1},{0x24a2f,3}}, {{0x1035,5},{0x584c,5}}, + {{0xcb5,3},{0xc8a3,3}}, {{0x946,3},{0x2445e,1}}, {{0x279f5,2},{0x27897,1}}, {{0xe99b,6},{0xb72,3}}, + {{0xbeb,1},{0xb9f,2}}, {{0x10f6,1},{0xbc6,2}}, {{0x2318,4},{0x2d44,4}}, {{0x1216,4},{0x1e14,3}}, + {{0xeca,4},{0xb72,2}}, {{0x6ac3,3},{0x173e,3}}, {{0x10dc,2},{0xb8f,2}}, {{0x4e2a,8},{0x2d5d,4}}, + {{0x14ca8,4},{0xbeb,6}}, {{0x709a,4},{0x157f2,2}}, {{0x41be,3},{0xd1b,1}}, {{0x397a,6},{0x15a4,8}}, + {{0xbe0,1},{0x1a560,2}}, {{0xc57,3},{0xbbf,2}}, {{0x2793d,4},{0x27af1,2}}, {{0xbaa2,4},{0xc1c,2}}, + {{0xc30,3},{0x11b8,4}}, {{0xcd8c,5},{0x2566,4}}, {{0x881e,7},{0xc32,5}}, {{0x19d83,5},{0x1dcf,3}}, + {{0x5442,4},{0xc948,3}}, {{0x209b9,2},{0x10ef,1}}, {{0xfb1,2},{0xb82,2}}, {{0x6d9d,3},{0xde9,4}}, + {{0xc37,3},{0x52a7,2}}, {{0x1579a,6},{0x245af,6}}, {{0x27a79,2},{0x278dc,1}}, {{0x283d,3},{0x152c4,2}}, + {{0x4c15,5},{0x1961,6}}, {{0xd0f,4},{0x3409,5}}, {{0x1006a,6},{0x8579,4}}, {{0x6ac3,3},{0xb9e,2}}, + {{0x101e8,5},{0x50fd,5}}, {{0x15504,5},{0x28be,3}}, {{0x2793d,4},{0x1b140,2}}, {{0xb64,2},{0x4cec,6}}, + {{0xb82,2},{0x27,1}}, {{0xedb,5},{0x128f,3}}, {{0x42ae,4},{0x2944,4}}, {{0x24531,4},{0xff26,2}}, + {{0x1ed49,3},{0x734,2}}, {{0x10b36,7},{0xaf2,1}}, {{0x1701,3},{0xb55,2}}, {{0x6d81,3},{0x10f6,1}}, + {{0xafd2,6},{0x28,1}}, {{0xc30,2},{0x11b8,4}}, {{0x26acb,5},{0xae7,1}}, {{0x1c04d,5},{0x1de7,3}}, + {{0x6b52,4},{0xc77,2}}, {{0x27959,2},{0x116e,1}}, {{0x2742,3},{0x43bd,4}}, {{0x14bb4,2},{0xae7,1}}, + {{0x11e4,4},{0xc67,2}}, {{0x10fb,3},{0xf59,3}}, {{0x23870,3},{0xb75,2}}, {{0xae5,1},{0xaea,1}}, + {{0xf69,3},{0xcc3,4}}, {{0x27a13,2},{0x278a9,1}}, {{0x18c88,6},{0x2b,3}}, {{0x1e,1},{0xbfe6,5}}, + {{0xdc33,7},{0xc7b,4}}, {{0x303c,13},{0xae7,1}}, {{0x11c66,5},{0x11c6b,5}}, {{0xbe0,1},{0xa60f,3}}, + {{0xd76,7},{0x4686,6}}, {{0xc89,2},{0x2dc3,3}}, {{0x1084,3},{0x1645f,4}}, {{0x312a,7},{0x1577,5}}, + {{0x10c8,3},{0x428b,2}}, {{0x10f3,1},{0xaf2,1}}, {{0x2b30f,5},{0x159c8,1}}, {{0x134c,5},{0x81f3,7}}, + {{0x3cec,9},{0x11b8,4}}, {{0x6742,5},{0x1b81,3}}, {{0x7a92,5},{0x7a97,4}}, {{0xc29,2},{0x8c46,4}}, + {{0xaca2,3},{0xcf3e,2}}, {{0x30,2},{0x2ac6b,4}}, {{0x2793d,4},{0x27aeb,2}}, {{0x2796,3},{0x1c780,4}}, + {{0xab9c,1},{0x250ca,3}}, {{0x7426,8},{0xc63,3}}, {{0x1f881,5},{0xc67,2}}, {{0x30ae,6},{0xb52,5}}, + {{0xfdd,2},{0xb48,2}}, {{0x5254,5},{0x11b8,4}}, {{0x24,1},{0x2445e,2}}, {{0x4fbd,4},{0x1153,4}}, + {{0x82de,7},{0x2b,3}}, {{0xbe0,1},{0xa7d1,2}}, {{0x45fd,5},{0x4602,8}}, {{0x4484,6},{0xd7f,3}}, + {{0x27c3,5},{0x1ed4,6}}, {{0xbe7,1},{0x1b,1}}, {{0xa246,4},{0x1d,1}}, {{0x9aba,5},{0xb50,7}}, + {{0x136c,6},{0x2e20,8}}, {{0xb31,1},{0x2445e,1}}, {{0xadd,4},{0x4dc7,6}}, {{0xbb4,3},{0x1277,5}}, + {{0x6c08,4},{0xce8,3}}, {{0x27a8b,2},{0x116c,1}}, {{0x28da,1},{0x28,1}}, {{0x397a,6},{0x1100b,3}}, + {{0x1a016,4},{0xaf2,1}}, {{0x139c,6},{0x5f01,4}}, {{0xb30,14},{0xb32,3}}, {{0xa7f4,5},{0xb52,5}}, + {{0x4fbd,4},{0x9ff5,4}}, {{0x1b25b,4},{0x2adcd,4}}, {{0x2a,2},{0xfb1,2}}, {{0x10188,4},{0x1b739,4}}, + {{0xbed,2},{0x2318,4}}, {{0x5b1d,5},{0xc30,2}}, {{0x27b4,3},{0xaf2,1}}, {{0x11cca,5},{0x11ccf,5}}, + {{0x1ed51,3},{0x22cfc,4}}, {{0x2796,3},{0xb56,2}}, {{0xceb,3},{0x2585,4}}, {{0xbbf,2},{0x145af,3}}, + {{0x12ac,9},{0xc8e,3}}, {{0x1878,1},{0xd54,1}}, {{0x5949,4},{0xb7d,1}}, {{0x285b,3},{0x141c5,5}}, + {{0xc55,2},{0xb9f,2}}, {{0xa132,6},{0x23ce,4}}, {{0x27b4,3},{0x19cb,6}}, {{0xbaa2,4},{0x8009,5}}, + {{0xceb,3},{0x28cf,3}}, {{0xa7da,3},{0xb7c,2}}, {{0x4403,2},{0x1a,2}}, {{0xb6c,3},{0xaf2,1}}, + {{0x6c3c,5},{0xae2,1}}, {{0x1925e,6},{0x1f,1}}, {{0x27cea,1},{0x27e2b,2}}, {{0xba7,3},{0xb9d,3}}, + {{0xcb8,2},{0x140a,2}}, {{0x22db,5},{0x21,1}}, {{0x244b3,2},{0x1019c,2}}, {{0x5483,4},{0x12f1,2}}, + {{0x1fc1,5},{0x11b8,4}}, {{0x6d8e,3},{0x1402,2}}, {{0x29b0,3},{0xdfab,3}}, {{0xbd3,3},{0x2b,3}}, + {{0x3846,5},{0x1c43,4}}, {{0x24771,4},{0x1b797,8}}, {{0x27a79,2},{0x27897,1}}, {{0x70b0,4},{0x6fae,2}}, + {{0xb78,2},{0x3bc2,4}}, {{0x177c,3},{0x2db0,4}}, {{0x1aaed,1},{0x10f7,1}}, {{0x1317e,4},{0x2be4,6}}, + {{0x68fc,7},{0xb52,6}}, {{0xbe4,1},{0x1307,3}}, {{0xf8d0,2},{0x1a6f7,3}}, {{0x30,2},{0x2b884,4}}, + {{0x441c,3},{0x4d46,4}}, {{0x27cc5,2},{0x1ed53,1}}, {{0x1095,4},{0xbd1,2}}, {{0xded,5},{0xcce,3}}, + {{0x13612,5},{0x16f9,3}}, {{0x28cf,3},{0x28,1}}, {{0xd5ab,5},{0xd48,2}}, {{0xc52,2},{0x10dc,2}}, + {{0x178c,3},{0x16ae,2}}, {{0x19c26,2},{0x2195,3}}, {{0xb052,3},{0xd1b,1}}, {{0xd5c,1},{0x188b6,6}}, + {{0x2862e,2},{0x2a948,1}}, {{0x75b2,5},{0x2b3e,4}}, {{0x27ff,8},{0x1614,7}}, {{0xaca2,3},{0x26c6,1}}, + {{0x1a2b,8},{0x1a33,7}}, {{0x500b,10},{0xc63,3}}, {{0x5a5a,5},{0xb47,2}}, {{0x5b44,5},{0x7a8d,5}}, + {{0x10c8,3},{0x887b,3}}, {{0x146c,9},{0xd1a,7}}, {{0x6b5f,4},{0x2de9,7}}, {{0x225f,11},{0x1c25,4}}, + {{0x10f2,1},{0x187c,3}}, {{0x88de,6},{0xb63,2}}, {{0x12fc,3},{0x2592c,3}}, {{0x135f,3},{0x1362,3}}, + {{0x10ea,3},{0x5cdb,3}}, {{0x1ed49,3},{0x24462,1}}, {{0x41be,3},{0x1a11,2}}, {{0x17bc,3},{0xeb2,1}}, + {{0x139f,3},{0x1f,2}}, {{0xa2d9,5},{0x5aae,4}}, {{0x165f8,6},{0xd91,3}}, {{0x1a76,4},{0x29da,3}}, + {{0xf96,5},{0xdd40,5}}, {{0xb7f,3},{0x5aab,3}}, {{0x2b7b0,2},{0x2445e,1}}, {{0x218d,8},{0x2195,7}}, + {{0x271e,3},{0xbb5,1}}, {{0x4268,3},{0xfe5,2}}, {{0x6b13,3},{0x27,1}}, {{0x10ea,3},{0xae6,3}}, + {{0x1259,2},{0xc55,2}}, {{0x178c,3},{0x666e,4}}, {{0x1b4e3,1},{0x28652,2}}, {{0xbb5,1},{0x3e15,4}}, + {{0x4282,4},{0xf827,7}}, {{0x6d81,3},{0x9319,3}}, {{0x286a,2},{0x1f,1}}, {{0x3704,6},{0xb63,2}}, + {{0x2787,5},{0xd2f0,6}}, {{0xb63,2},{0x88f1,5}}, {{0x257a,4},{0xc63,3}}, {{0x6f55,4},{0xd5e,4}}, + {{0xae7,2},{0x32f3,5}}, {{0x1a4d7,4},{0x2b,3}}, {{0xbe7,1},{0x5b7d,3}}, {{0x1084,3},{0x2642,5}}, + {{0x6ac5,1},{0x1308,3}}, {{0x6ac3,3},{0x1bdb,3}}, {{0x257c,3},{0xc9a,2}}, {{0xaf2,1},{0x1dd7,2}}, + {{0x1e,1},{0x2a24,6}}, {{0x5a40,5},{0x10dc,2}}, {{0x2c746,4},{0x1016a,2}}, {{0x9a5a,7},{0xb52,5}}, + {{0x422e,3},{0x23798,4}}, {{0xd5e,4},{0xb7c,3}}, {{0xb31,1},{0x19,1}}, {{0x10ec,1},{0x169f,3}}, + {{0xeec,5},{0x5a52,4}}, {{0x244f5,2},{0x20b23,2}}, {{0x274b,5},{0xf27c,3}}, {{0x1ed49,4},{0x1ed4b,4}}, + {{0x37ac,9},{0x19bd,5}}, {{0xe6d,2},{0xede,3}}, {{0xb6a3,6},{0xa055,5}}, {{0xdba4,6},{0x315d,5}}, + {{0x178c,3},{0x20aa9,2}}, {{0x422e,3},{0x5277,2}}, {{0x19e4e,4},{0xcb8,2}}, {{0x244a1,6},{0x244a7,6}}, + {{0xfe38,5},{0xb8f,2}}, {{0xf681,5},{0xf686,6}}, {{0x3b10,8},{0xce1,3}}, {{0x177c,3},{0x31b2,4}}, + {{0x16aae,5},{0x1278,4}}, {{0x74da,4},{0xb76,3}}, {{0x12fc,4},{0xcbd,3}}, {{0xb96e,5},{0x10c0d,5}}, + {{0x20bb,3},{0x2211f,4}}, {{0x1aaed,1},{0x10f3,1}}, {{0xcc0,3},{0x2b,1}}, {{0x1051,4},{0xc67,2}}, + {{0x9496,8},{0xb68,4}}, {{0x5aa8,10},{0xb78,2}}, {{0x178c,3},{0xc4d,2}}, {{0x1095,3},{0x22abe,6}}, + {{0xba5,5},{0xae6,3}}, {{0x20,3},{0x1a,3}}, {{0x26b5,4},{0x4404,4}}, {{0x21,1},{0x10ef,1}}, + {{0x10c8,3},{0xcc0e,3}}, {{0xb7f,3},{0x1c,1}}, {{0x2787,8},{0x62ed,4}}, {{0x3234,3},{0xee7,4}}, + {{0xe804,6},{0x1916,5}}, {{0x278a1,3},{0x1b140,2}}, {{0xe86,8},{0x8346,4}}, {{0xd65,3},{0xae0,1}}, + {{0x1f3a,3},{0xb066,2}}, {{0x593c,5},{0xae0,1}}, {{0x27,1},{0x1402,3}}, {{0xe3fa,6},{0xc8f,2}}, + {{0xb85,2},{0xc67,2}}, {{0xee6b,8},{0x1257,3}}, {{0x4c22,7},{0x4905,4}}, {{0x377b,4},{0x1f,2}}, + {{0x2c5c0,4},{0x6f78,2}}, {{0x278a7,4},{0x278dc,1}}, {{0xc25,5},{0xc57,4}}, {{0xd55,2},{0xbb5,1}}, + {{0xbb5,1},{0xcf3e,2}}, {{0x174e,3},{0x114f,3}}, {{0xacba,5},{0x29b4,3}}, {{0x244a1,2},{0x1cf1d,2}}, + {{0xc13,4},{0x29be,10}}, {{0x284a,4},{0xec5,5}}, {{0x10c8,4},{0x1a006,5}}, {{0x6c3c,5},{0x21be,4}}, + {{0xb30,2},{0x2446c,2}}, {{0xfc98,3},{0xb78,3}}, {{0xa4b,4},{0x6f90,2}}, {{0x1b,1},{0xc593,4}}, + {{0x6b5f,4},{0x1e6c,6}}, {{0x15ab8,3},{0xd5c,1}}, {{0x1a0d,5},{0x2ba9,9}}, {{0x17fe,3},{0x1cee,3}}, + {{0xf369,3},{0xb7d,2}}, {{0xceb,3},{0xdac,2}}, {{0x5a8e,6},{0x12b26,4}}, {{0x1146e,6},{0x2af8,4}}, + {{0xaea,2},{0xdb31,5}}, {{0x1f,1},{0x2be4,6}}, {{0xae7,2},{0x4569,5}}, {{0x422e,3},{0xed0,3}}, + {{0x1099,3},{0x6dd7,5}}, {{0x2160,5},{0xc1c,2}}, {{0x8cb6,10},{0x1d,2}}, {{0x10ca,1},{0x702a,4}}, + {{0xdef,3},{0xaea,2}}, {{0x2c4be,4},{0xa51,2}}, {{0x28da,1},{0x28da,1}}, {{0xd7a,3},{0x5dbc,3}}, + {{0x9aba,5},{0xdd6,3}}, {{0x18a5,8},{0x1498,3}}, {{0x1f,1},{0x2b,2}}, {{0x30,8},{0x532,4}}, + {{0x70b0,4},{0xa4f,2}}, {{0x1a592,5},{0x14d6c,4}}, {{0xc37,3},{0x89b9,4}}, {{0x3df6,5},{0xb55,2}}, + {{0x23010,4},{0x152c4,2}}, {{0x17981,6},{0xbc1,2}}, {{0x5102,5},{0x7385,5}}, {{0x10ef,1},{0x139e,4}}, + {{0xb64,2},{0xb55,2}}, {{0x7276,4},{0xbb4,4}}, {{0x10ea,3},{0x715a,3}}, {{0xf655,5},{0x6dd7,3}}, + {{0x1687,3},{0x11b8,4}}, {{0x278a7,3},{0x279ef,2}}, {{0xf471,4},{0xc3e,2}}, {{0x2c47c,4},{0xff26,2}}, + {{0x6d8e,3},{0x1b4b,3}}, {{0x27a79,2},{0x278af,1}}, {{0xae2,2},{0xd17,3}}, {{0x178c,3},{0x4d97,2}}, + {{0x141e,3},{0xfe5,2}}, {{0x3dda,5},{0x7a46,4}}, {{0xd51,2},{0xce8,3}}, {{0x1b,1},{0x108b,3}}, + {{0xc57,3},{0xbc3,5}}, {{0x1ebd,10},{0x1a,1}}, {{0x4194,6},{0x3042,7}}, {{0x150fe,5},{0x98ee,4}}, + {{0x2b900,4},{0x244af,2}}, {{0x271e,3},{0x4ab0,3}}, {{0x8a2e,7},{0x107e,5}}, {{0x244b3,4},{0x6f78,2}}, + {{0xf752,4},{0x250c9,2}}, {{0xd41,3},{0x1257,3}}, {{0x10ec,1},{0x28bd2,2}}, {{0x1abd4,5},{0x1abd9,4}}, + {{0x23006,3},{0xab9c,1}}, {{0x244b3,2},{0x96f,2}}, {{0x1afd,5},{0xb9d,3}}, {{0x4074,3},{0x28,1}}, + {{0xcf3,3},{0x15c7,5}}, {{0xd41,3},{0xfb7c,5}}, {{0x10ef,1},{0xc3a,3}}, {{0x4194,5},{0x8493,7}}, + {{0xb44,3},{0x84f5,5}}, {{0x1a,2},{0xc7b,4}}, {{0x6ac5,1},{0x5277,2}}, {{0x10ea,3},{0xf8d1,2}}, + {{0x6d81,3},{0x26c6,1}}, {{0x3db0,6},{0xeb1,2}}, {{0x102f,6},{0xb78,2}}, {{0x10f3,1},{0xeb1,2}}, + {{0x4a75,6},{0x10dc,2}}, {{0x1f501,6},{0xb67,2}}, {{0xdf0,2},{0xdf6,3}}, {{0x18,1},{0x948,1}}, + {{0x20,2},{0x12e94,6}}, {{0x14fc,5},{0x1d,1}}, {{0x2a530,4},{0x278d6,1}}, {{0x3cde,8},{0x2d5d,4}}, + {{0x218d,5},{0x87b5,4}}, {{0x10ca,3},{0x2e55,5}}, {{0xd041,5},{0xb65,2}}, {{0x4728,6},{0x296f,5}}, + {{0x244f5,2},{0x6f90,2}}, {{0x279d1,2},{0x1b6ab,1}}, {{0x1c8f,3},{0xfe5,2}}, {{0x24,1},{0x251cb,1}}, + {{0xab46,4},{0xbd1,2}}, {{0x1ad0,4},{0xbc2,2}}, {{0x97ae,9},{0x10dc,2}}, {{0xca7,3},{0x21be,4}}, + {{0xc25e,5},{0x27,1}}, {{0xfed2,8},{0xfed2,2}}, {{0x441c,3},{0x1d,1}}, {{0xab9a,3},{0x1a,3}}, + {{0xae0,2},{0xbd6,2}}, {{0x26f7a,2},{0x10fa,1}}, {{0xae0,1},{0x1e,1}}, {{0xf14,2},{0x114d,2}}, + {{0x271e,3},{0x1089,2}}, {{0xdfe,5},{0x13b5,7}}, {{0x1a9d,3},{0xd1b,1}}, {{0x46f4,4},{0x84f6,4}}, + {{0x14cc,4},{0x1cee,3}}, {{0x29e87,3},{0x25203,2}}, {{0xae0,1},{0x54e4,4}}, {{0xd65,3},{0x1257,2}}, + {{0x25084,2},{0x285f6,3}}, {{0x278a9,1},{0x27ad3,2}}, {{0xac2a,8},{0x2585,4}}, {{0x1ed49,3},{0x2446f,2}}, + {{0x26f1,4},{0x1d,1}}, {{0x70b0,4},{0x806,2}}, {{0xcb5,3},{0xa049,4}}, {{0x8aa6,6},{0x1227a,4}}, + {{0xb6c,3},{0x1c2f,4}}, {{0x10f0,1},{0x35d3,5}}, {{0xcd9,3},{0x1a30,3}}, {{0x2810,4},{0x4074,3}}, + {{0x16aed,5},{0x46e4,3}}, {{0x20b18,7},{0x20b1f,6}}, {{0x4b31,3},{0x11ef,2}}, {{0xc67,2},{0xb2c,2}}, + {{0x3df6,8},{0x10dc,2}}, {{0xb87c,6},{0xb7d,2}}, {{0x780,1},{0x24461,1}}, {{0xc2e,2},{0xc30,2}}, + {{0x1f44,8},{0x2dc3,3}}, {{0x1ae26,5},{0xeb3,4}}, {{0x3242,5},{0x3789,3}}, {{0x10fd,2},{0xdfab,3}}, + {{0xf6ce,5},{0x14da7,5}}, {{0x6c65,2},{0x80d3,7}}, {{0x16706,6},{0x2b,3}}, {{0x6d8e,3},{0x12d3f,6}}, + {{0xe69,3},{0xd0b,3}}, {{0x19ea3,6},{0x141e,3}}, {{0x432,16},{0x432,15}}, {{0x3226,8},{0x5fa0,4}}, + {{0x17b67,6},{0xce8,3}}, {{0x58c7,6},{0x1865,4}}, {{0x10ea,3},{0x1f6dc,5}}, {{0x130f2,6},{0x7fda,4}}, + {{0x20bb,3},{0x1c4d9,4}}, {{0x2d64,6},{0xc34,3}}, {{0x286bb,4},{0x24515,2}}, {{0x5d75,9},{0xc7b,4}}, + {{0xee8,3},{0x62ed,4}}, {{0xbe4,1},{0x1254,3}}, {{0xc2e,2},{0x22e3,3}}, {{0x244f5,2},{0x24515,2}}, + {{0x2b,2},{0xcb8,2}}, {{0xd76,4},{0xa45d,4}}, {{0xbcb,3},{0xbd6,4}}, {{0x2106,5},{0xdf0,2}}, + {{0x73d2,6},{0x73d8,6}}, {{0x1321e,6},{0x2693,4}}, {{0x2016,6},{0x1700,4}}, {{0xc30,2},{0xb63,2}}, + {{0x6ac5,1},{0x4415,3}}, {{0x244e3,4},{0x244e7,2}}, {{0x27cea,1},{0x24f87,2}}, {{0x5442,4},{0x9ff5,5}}, + {{0x2796,3},{0xac8e,4}}, {{0xbde,3},{0x1675,2}}, {{0x16dc,4},{0xec5,5}}, {{0x6b47,4},{0xb2e,2}}, + {{0xaa99,2},{0x10f8,2}}, {{0x3694,4},{0x12231,3}}, {{0x18e1,5},{0x5b20,7}}, {{0x710e,6},{0x5f01,4}}, + {{0x27da9,6},{0x27d95,4}}, {{0x1095,3},{0xb70,2}}, {{0xae9,2},{0xb9b,3}}, {{0xcc4d,6},{0xb2e,2}}, + {{0x7936,8},{0x1498,4}}, {{0x1a94,6},{0xc63,3}}, {{0x161c,6},{0x4714,4}}, {{0x3988,6},{0x60fc,7}}, + {{0x278dc,1},{0x278af,2}}, {{0xe6d,2},{0x1370,3}}, {{0x178c,3},{0x763c,3}}, {{0x19afd,4},{0xec6d,3}}, + {{0x12d6e,4},{0xb47,2}}, {{0xaca2,3},{0xc9f2,3}}, {{0x6ac3,3},{0x23000,2}}, {{0x2b325,2},{0x948,1}}, + {{0x438c,5},{0x10dc,2}}, {{0x278f3,2},{0x924,2}}, {{0x1b5f3,3},{0x140a,2}}, {{0x18376,6},{0xc63,3}}, + {{0x10c8,4},{0xb48,2}}, {{0x43e3,1},{0x26c6,1}}, {{0x3234,3},{0x4e98,3}}, {{0x4106,5},{0xaf1,1}}, + {{0x2c99e,4},{0x1dec4,2}}, {{0x24531,4},{0x6fae,2}}, {{0xb6e,2},{0xb70,2}}, {{0x27995,2},{0x1b6ab,1}}, + {{0x4728,8},{0x24b2,5}}, {{0x28da,1},{0xb29c,6}}, {{0xbd1,2},{0xe993,5}}, {{0xd78,3},{0xa60f,3}}, + {{0x61c6,5},{0x51f0,2}}, {{0x27897,1},{0x1171,2}}, {{0x1393,3},{0xaf2,1}}, {{0x9b0e,8},{0x1498,4}}, + {{0xb67,2},{0x40bb,5}}, {{0x1cce,6},{0xc74c,5}}, {{0xb9c,2},{0xfffb,2}}, {{0x5102,5},{0x41ef,2}}, + {{0x1051,7},{0xe858,4}}, {{0xae7,2},{0xbed,2}}, {{0x1209e,7},{0x139f,3}}, {{0x52fd,9},{0x25da,3}}, + {{0x17bc,3},{0xaea,2}}, {{0x2445f,1},{0x432,2}}, {{0xcedb,2},{0x1d,1}}, {{0x1062,5},{0x1d8c,2}}, + {{0xc4d,2},{0xb9d,3}}, {{0xae5,1},{0xc0c3,3}}, {{0x2878d,4},{0x244e7,2}}, {{0x10ec,1},{0x43ba,6}}, + {{0x278ad,3},{0x279cb,2}}, {{0x3ec8,8},{0x3ed0,6}}, {{0x10188,4},{0x1b7d3,4}}, {{0x7c66,7},{0x2b,3}}, + {{0x145b4,4},{0x2b,3}}, {{0xfe38,4},{0x125f,5}}, {{0x195a3,6},{0xcce,3}}, {{0xaee7,4},{0x428d,3}}, + {{0x27b6,1},{0x10fa,1}}, {{0x1b,1},{0xc1c,2}}, {{0x422e,3},{0xb63,2}}, {{0x1ae4a,4},{0x1ae4e,5}}, + {{0x1d,1},{0x10d2e,4}}, {{0xb2c,2},{0xfb88,6}}, {{0x17bc,3},{0x2098b,2}}, {{0xe9a6,8},{0x1b81,3}}, + {{0x10ea,3},{0x29581,2}}, {{0x278a1,3},{0x278a3,2}}, {{0xab9a,3},{0x59f5,3}}, {{0xf5fd,5},{0x3220,6}}, + {{0x7162,10},{0xb65,2}}, {{0x2841e,3},{0x159c8,1}}, {{0x2864c,1},{0x1ed58,1}}, {{0xf443,8},{0xd0d,2}}, + {{0xddc,4},{0xbcc2,3}}, {{0x116d,1},{0x278af,2}}, {{0x2cae,4},{0xae2,1}}, {{0x10ea,3},{0x26e6c,3}}, + {{0x2329b,4},{0x1f3ed,3}}, {{0x27e55,3},{0x2446f,2}}, {{0x4db5,8},{0xc20,5}}, {{0x10f3,1},{0xb8a,2}}, + {{0x3234,3},{0x11ef,3}}, {{0xaf1,1},{0x2af8,4}}, {{0x28da,1},{0x2045,3}}, {{0xceb,3},{0xdf0,2}}, + {{0x25245,4},{0x2aa47,4}}, {{0x6d81,3},{0x27214,3}}, {{0xca7,3},{0xd8e,4}}, {{0xbc4,4},{0xb63,2}}, + {{0xb7f,3},{0x4350,3}}, {{0x41c0,2},{0x855e,8}}, {{0xfc8d,3},{0x6164,3}}, {{0x278a7,3},{0x1b6b3,2}}, + {{0x4266,5},{0x33eb,9}}, {{0xb44,3},{0x109e8,4}}, {{0x261f,4},{0xaea,3}}, {{0x202c,5},{0xc95d,4}}, + {{0xfba4,6},{0x1916,5}}, {{0xadd,7},{0xb63,3}}, {{0x1972,2},{0xce8,3}}, {{0x290c,2},{0x2af8,4}}, + {{0xa848,4},{0x15b0,2}}, {{0x1c8f,3},{0xde4,2}}, {{0x1f,1},{0xb85,2}}, {{0xb4a,3},{0x13937,5}}, + {{0x12fc,4},{0xbb4c,5}}, {{0xfb89,4},{0xb2f,1}}, {{0x7132,6},{0xd0d,2}}, {{0x24073,6},{0xaf2,1}}, + {{0xd41,3},{0xba37,8}}, {{0x423c,3},{0x1d57,3}}, {{0x70a0,4},{0x1b203,4}}, {{0x2746,3},{0x15a1f,4}}, + {{0x209d,4},{0x2045,3}}, {{0x1aa5,4},{0x1aa9,7}}, {{0x10ca,1},{0xb72,2}}, {{0x423c,3},{0x2b,2}}, + {{0x178c,4},{0x25da,3}}, {{0x30,2},{0x287b5,6}}, {{0x264c,4},{0x27,1}}, {{0x2b314,2},{0x2b314,2}}, + {{0xc6d,7},{0x4a2e,5}}, {{0x160f8,6},{0xb54,3}}, {{0x258a9,4},{0x1be3,2}}, {{0x18e6,5},{0xc8e,3}}, + {{0x28da,1},{0xc77,2}}, {{0x3782,5},{0xb7c,2}}, {{0x145e4,5},{0x30f4,5}}, {{0xbe4,1},{0xaf5d,3}}, + {{0x1864,2},{0x4612,5}}, {{0x6742,5},{0x3c49,4}}, {{0xbd8,2},{0x1a,1}}, {{0xd41,3},{0x4459,3}}, + {{0x17be,2},{0xe49,4}}, {{0x5c76,4},{0x2585,3}}, {{0x1e,1},{0x1826b,5}}, {{0xb66,2},{0xb76,3}}, + {{0x78b2,5},{0x10d07,5}}, {{0x27a73,2},{0x278a9,1}}, {{0x244f5,2},{0xfefe,2}}, {{0xaf1,1},{0x296f,5}}, + {{0x2dfe,5},{0x14fba,2}}, {{0x6b04,5},{0x2349,4}}, {{0x24a11,5},{0xc62,3}}, {{0x70f6,7},{0x2939,3}}, + {{0x1f,1},{0x1150,2}}, {{0x126c0,5},{0xd17,3}}, {{0x1b3fb,3},{0x1b3b0,5}}, {{0x19b3,4},{0xb2e,2}}, + {{0x281f,3},{0x4c75,8}}, {{0x2ae3f,4},{0x1b,1}}, {{0x2793d,4},{0x278f3,2}}, {{0x116d,1},{0x27959,2}}, + {{0x4fbd,4},{0x1185a,6}}, {{0xf63,5},{0x4b65,7}}, {{0xbb47,7},{0xae7,1}}, {{0x9a9,1},{0x25225,6}}, + {{0xef9f,7},{0x1c25,4}}, {{0xbeb,1},{0x43e3,1}}, {{0x10ef,1},{0x1c170,3}}, {{0x1f,1},{0x2d,1}}, + {{0x12fc,4},{0xb78,2}}, {{0x5c6f,6},{0xae7,1}}, {{0xae7,1},{0xba58,8}}, {{0xceb,3},{0x132f,3}}, + {{0x1b8e1,6},{0x1b237,8}}, {{0x10ec,1},{0x1aaed,1}}, {{0x10ec,1},{0x155dd,3}}, {{0xac06,6},{0x1357,5}}, + {{0x2c50c,4},{0xff22,2}}, {{0xae7,1},{0xb85,2}}, {{0x3eca,6},{0x3ed0,6}}, {{0x65af,8},{0x10c3,5}}, + {{0x1095,9},{0x10af,8}}, {{0x423e,1},{0x10ef,1}}, {{0x423c,3},{0x2bfc,2}}, {{0xae6,2},{0xfb88,6}}, + {{0x5102,5},{0x11af9,5}}, {{0x10ea,3},{0x10f0,1}}, {{0x4701,5},{0xb2c,4}}, {{0x1ffd1,6},{0xae6,2}}, + {{0x92b6,5},{0x1f0f,3}}, {{0x4c7d,6},{0x392d,3}}, {{0xbde,3},{0x26754,2}}, {{0x27,1},{0x8c46,4}}, + {{0x6ac3,3},{0x4460,3}}, {{0x41da,3},{0x29064,2}}, {{0x11bb6,3},{0x11b8,4}}, {{0x279c5,2},{0x278dc,1}}, + {{0xcc7,3},{0x591e,4}}, {{0x1a10,2},{0x24ac1,4}}, {{0x2278,3},{0x4031,3}}, {{0x14eb2,4},{0x12f1,3}}, + {{0x1c92,6},{0xec4,6}}, {{0x3758,4},{0x84ea,4}}, {{0x1cce,10},{0x1498,4}}, {{0xaf1,1},{0x12ff,2}}, + {{0xb7f,3},{0x4ab0,4}}, {{0xf212,3},{0xd5c,1}}, {{0x1bde,6},{0xd6d,4}}, {{0x10ed,2},{0xab9c,1}}, + {{0x41da,3},{0x2db0,4}}, {{0x193ab,6},{0x10dc,2}}, {{0x17ec,4},{0xf59,3}}, {{0x9b41,3},{0x2b,3}}, + {{0x1095,3},{0x1140,3}}, {{0x948,2},{0x2445f,1}}, {{0x1ac30,5},{0xaf1,2}}, {{0xae78,4},{0x1916,5}}, + {{0x2c76,7},{0xae7,1}}, {{0x6ac3,3},{0x41eb,4}}, {{0xc13,5},{0x139e,4}}, {{0x1e45,3},{0x1be11,4}}, + {{0x43e3,2},{0xb857,4}}, {{0xb52,2},{0x7a46,4}}, {{0xc6a1,7},{0xc6a8,4}}, {{0x9052,7},{0x11b8,4}}, + {{0x5dea,7},{0xb65,2}}, {{0xe6d,2},{0x1a7fb,4}}, {{0x244b3,2},{0xfeee,2}}, {{0xd54,1},{0x434f,2}}, + {{0x2c812,4},{0x157b6,2}}, {{0x1084,3},{0x15f26,3}}, {{0x15ac,10},{0xb52,6}}, {{0x181c,3},{0x6ac5,1}}, + {{0x89da,5},{0x1a,2}}, {{0x1509a,4},{0x1402,3}}, {{0x422e,4},{0xb469,4}}, {{0x2920,4},{0xa5dd,5}}, + {{0xcde,3},{0x257c,2}}, {{0x142e,1},{0xfffb,2}}, {{0x55d7,6},{0xb52,5}}, {{0x3b1e,10},{0x11b8,4}}, + {{0x2796,4},{0xc78,3}}, {{0x2c9aa,4},{0x6f78,2}}, {{0x9052,7},{0xce8,3}}, {{0x3e12,11},{0x2b,3}}, + {{0x27983,2},{0x278d6,1}}, {{0x10ef,1},{0x1abd9,2}}, {{0x116d,1},{0x27a2b,2}}, {{0x17ec,6},{0x3442,6}}, + {{0x4429,6},{0xc65,5}}, {{0x8a52,5},{0x8a57,7}}, {{0x1f,1},{0xae9,2}}, {{0x10fb,3},{0x1f3ed,3}}, + {{0x1257,3},{0xb2e,2}}, {{0x88ea,5},{0x7b4e,3}}, {{0x6359,9},{0xb9d,3}}, {{0x6c08,4},{0xb6bf,5}}, + {{0x178c,3},{0xede,3}}, {{0x1b123,4},{0x10ec,1}}, {{0x780,1},{0x112c,1}}, {{0x422e,3},{0x5eb6,4}}, + {{0x113a6,6},{0x2288,4}}, {{0x27b4,3},{0x225fa,4}}, {{0x30,2},{0x432,256}}, {{0x6ac5,1},{0x2d18f,2}}, + {{0x10f7,1},{0xc1c,2}}, {{0xb2ba,6},{0x11f2,3}}, {{0x244b9,2},{0x96f,2}}, {{0x27b4,3},{0xbd6,2}}, + {{0xa22e,4},{0x202c,3}}, {{0x26e81,5},{0xab9c,1}}, {{0x4812,6},{0x1a,3}}, {{0xfc9,6},{0x4501,5}}, + {{0xc37,3},{0xcc0,3}}, {{0xbed,2},{0x411b,2}}, {{0x12c92,7},{0xae6,3}}, {{0x142c,3},{0xbd8,2}}, + {{0x1084,3},{0x2bfc,3}}, {{0xcd2,6},{0x11e6,6}}, {{0xaf2a,5},{0x11e6,6}}, {{0x1b6dd,2},{0x6f96,2}}, + {{0x244b3,2},{0x1b887,2}}, {{0x27b4,3},{0xaf1,2}}, {{0x48a4,3},{0xb8f,3}}, {{0xb44,3},{0x1bdc0,5}}, + {{0xc1c,2},{0x1bdb,3}}, {{0x20bb,3},{0x12c77,7}}, {{0x10f3,1},{0x29082,2}}, {{0xa8a6,5},{0xbac,4}}, + {{0x1f8c9,6},{0xb78,2}}, {{0x28be,3},{0xe858,4}}, {{0x6735,10},{0x141e,3}}, {{0xa246,4},{0x12ff,3}}, + {{0xae7,1},{0x23d9,3}}, {{0xb72,2},{0x1a5c,3}}, {{0x1fbe1,5},{0xb7d,2}}, {{0xfdf,6},{0x1357,5}}, + {{0xf6ce,4},{0x10f2,1}}, {{0x229b,5},{0x253a,4}}, {{0x11ec,9},{0x108e,7}}, {{0x14c94,8},{0xb55,2}}, + {{0x2b8d,4},{0xb9d,3}}, {{0x1e827,5},{0xb55,2}}, {{0xceb,3},{0xce8,3}}, {{0x27895,3},{0x278bc,2}}, + {{0x5277,2},{0x51f3,4}}, {{0xbb5,1},{0x5277,2}}, {{0x30,2},{0x25245,4}}, {{0x2a90,2},{0x1a,1}}, + {{0xfef0,6},{0x70a6,2}}, {{0x12fe,2},{0xae6,3}}, {{0x216f,7},{0x5d14,6}}, {{0x1c,1},{0x166ef,5}}, + {{0x20ac,6},{0x12b1,4}}, {{0x7d0e,9},{0xb7c,3}}, {{0xc34,2},{0xe1d,3}}, {{0x162c,10},{0x11b8,4}}, + {{0x24f87,2},{0x28634,1}}, {{0x20d9,4},{0xa15d,4}}, {{0x2a5c6,4},{0x278af,1}}, {{0x2b,1},{0x10d89,4}}, + {{0xcc7,6},{0x10dc,2}}, {{0x5ed4,4},{0x1d,1}}, {{0x26b5,4},{0xe35,4}}, {{0xaea,2},{0x13b84,6}}, + {{0x415e,3},{0x1b0a,2}}, {{0x145a0,1},{0x1a,1}}, {{0x10fb,3},{0x26c6,1}}, {{0x1d85f,6},{0x10dc,2}}, + {{0x1ae4e,2},{0x23bf5,2}}, {{0x4284,2},{0x10ef,1}}, {{0xbcd3,7},{0x11e4,4}}, {{0x124fe,8},{0xaf1,2}}, + {{0x124c,5},{0x1362,3}}, {{0x8a52,5},{0xae2,1}}, {{0x26c4,4},{0x15f28,5}}, {{0x2796,3},{0x18892,6}}, + {{0xbe7,1},{0x1d8e,3}}, {{0xc17,4},{0x3442,6}}, {{0xbe0,1},{0xf38f,3}}, {{0x10ec,1},{0x20,2}}, + {{0x9a9,1},{0x2875d,6}}, {{0xbeb,1},{0x323c,2}}, {{0x278a7,3},{0x27b03,2}}, {{0xc177,8},{0xb54,3}}, + {{0xddc,4},{0xb2e,2}}, {{0xe75,6},{0xc63,3}}, {{0xac5a,7},{0xc25a,4}}, {{0x20e8,4},{0xcb8,3}}, + {{0x1d98,3},{0x1d,1}}, {{0x10ec,1},{0x1b3c0,5}}, {{0xc8d2,6},{0x5fc7,4}}, {{0x286a8,2},{0xb31,1}}, + {{0xddbf,6},{0x4d08,4}}, {{0x10f7,1},{0x21cd9,4}}, {{0xf52,4},{0x1860b,5}}, {{0x6c7d,5},{0x9215,5}}, + {{0xfef4,4},{0x1b203,4}}, {{0x1e18,7},{0x21d2,6}}, {{0xfc9,10},{0x1536,6}}, {{0x219c,4},{0x1697,5}}, + {{0x3234,3},{0x2ddc,6}}, {{0xbb2a,3},{0xbbf,2}}, {{0x58f5,3},{0xb78,3}}, {{0x178c,3},{0x269d8,3}}, + {{0xbe0,1},{0x67b2,5}}, {{0xb8b,2},{0x19bd,5}}, {{0xf2e3,6},{0xae7,1}}, {{0x271e,3},{0x1a81d,2}}, + {{0xc13,4},{0xadf,2}}, {{0xaca2,3},{0x15a5e,2}}, {{0x29e14,4},{0x10f2,1}}, {{0xcd9,5},{0x1ed3,7}}, + {{0xaca2,3},{0xacf1,5}}, {{0xbd4c,5},{0x2584,5}}, {{0xd17,3},{0x7593,3}}, {{0x10f7,1},{0x1b4f,3}}, + {{0x2a594,4},{0x278af,1}}, {{0xb64,2},{0x7445,5}}, {{0x2a5c6,4},{0x278a9,1}}, {{0x181c,3},{0x3fab,2}}, + {{0x1089,2},{0x108b,10}}, {{0x3a36,2},{0x28,1}}, {{0x142c,5},{0xb63,2}}, {{0xfef4,4},{0xfef0,4}}, + {{0x150a4,5},{0xdf0,2}}, {{0x278c9,2},{0x1171,2}}, {{0xa4b,6},{0x96f,2}}, {{0x10c8,3},{0xae4,2}}, + {{0x1098,3},{0xe72,3}}, {{0x278ad,3},{0x2798f,2}}, {{0x27871,4},{0x10ec,1}}, {{0x253cf,6},{0xb83,2}}, + {{0x10f3,1},{0x1b61a,2}}, {{0x178c,3},{0xaaec,2}}, {{0xd8e,6},{0x1081,3}}, {{0xb63,2},{0xb9c2,4}}, + {{0x41da,3},{0x1ac69,4}}, {{0x261f,5},{0xfdd,2}}, {{0xd76,5},{0x12d7,5}}, {{0x6783,8},{0x5575,4}}, + {{0x40f8,4},{0xe4a,4}}, {{0xaea,1},{0x2c00,3}}, {{0x92c2,6},{0x2b,3}}, {{0x3314,11},{0xb9d,3}}, + {{0xcab,3},{0x1719,3}}, {{0x312a,7},{0xff6,6}}, {{0x271e,3},{0x889f,3}}, {{0x10fd,2},{0x1ad76,5}}, + {{0x17660,6},{0x1dac,3}}, {{0x5546,9},{0x554f,4}}, {{0xebe2,7},{0xae7,1}}, {{0x2b,2},{0xaef,3}}, + {{0x11b5,3},{0xb595,6}}, {{0x6bad,6},{0xee4,3}}, {{0x1aee,6},{0xc1c,7}}, {{0xa096,7},{0x1563,5}}, + {{0x16cc,4},{0xd51,2}}, {{0x30,2},{0x70ba,8}}, {{0x3448,8},{0x3450,6}}, {{0xe062,4},{0x20dd,3}}, + {{0xb2d,3},{0xaea,1}}, {{0xc40,3},{0x1b388,5}}, {{0x924,2},{0x27ac1,2}}, {{0xd3ce,3},{0xc34,2}}, + {{0x3774,4},{0x93ac,5}}, {{0x278a1,3},{0x27911,2}}, {{0xc25,3},{0x13437,5}}, {{0x1a,2},{0xbbf,2}}, + {{0xae7,2},{0xb64,2}}, {{0xeca,5},{0xcafd,6}}, {{0xc55,2},{0x1f,2}}, {{0x14bb5,2},{0xbe4,1}}, + {{0x422e,3},{0x1a30,5}}, {{0xb257,5},{0x4b33,5}}, {{0x96a6,7},{0xaf2,1}}, {{0xdba,4},{0x1f3b,9}}, + {{0x14bb0,2},{0x20a2e,3}}, {{0xbde,3},{0x16c2d,4}}, {{0x278a7,3},{0x27ac1,2}}, {{0x17bc,4},{0xc1a,11}}, + {{0x178c,3},{0xd0b,4}}, {{0xc51,2},{0x2b,3}}, {{0x178c,3},{0x1abd7,2}}, {{0xaca2,3},{0xb65,2}}, + {{0x30bc,3},{0xadf,2}}, {{0xd65,3},{0x16e2,2}}, {{0xcedb,2},{0x1a,1}}, {{0xd41,3},{0xa24a,3}}, + {{0x4286,2},{0x4288,8}}, {{0x13e2a,4},{0xb986,4}}, {{0xc37,4},{0xbe1,2}}, {{0x1cbf,5},{0x346a,8}}, + {{0x27ce8,3},{0xb31,1}}, {{0x27,1},{0xfb1,2}}, {{0x3d6a,7},{0xd1a,7}}, {{0xac8a,4},{0x21f50,3}}, + {{0xa792,8},{0x1c25,4}}, {{0x2c5de,4},{0x6f96,2}}, {{0x2ccb0,4},{0x1015e,2}}, {{0xaec,2},{0x3b18,6}}, + {{0x278a7,3},{0x27b09,2}}, {{0xaefa,4},{0xfd08,7}}, {{0x43a5,3},{0x2af8,4}}, {{0x12fe,2},{0x187c,3}}, + {{0x2474d,4},{0x1cf1d,2}}, {{0xc52,2},{0xeb3,3}}, {{0x1f,4},{0xbc1,2}}, {{0xd54,1},{0x145a0,1}}, + {{0x6769,5},{0xb70,2}}, {{0xadf,2},{0x2b4b,5}}, {{0x41ef,2},{0x1097,5}}, {{0xc4d,2},{0xcd4,4}}, + {{0x264c,4},{0x2b,2}}, {{0x7f6a,4},{0xae5,1}}, {{0x10ec,1},{0xae0,1}}, {{0xaea,1},{0x5c76,4}}, + {{0x1ad0f,6},{0x141e,3}}, {{0x10c8,3},{0x10f0,1}}, {{0x251ff,2},{0x1b4e3,1}}, {{0xc1e,2},{0x2b,1}}, + {{0x410c,4},{0x1f,1}}, {{0x1fa13,4},{0xc39,2}}, {{0x2b76,3},{0xf63c,2}}, {{0x1d89,4},{0x2d,1}}, + {{0x106d4,5},{0x11ef,2}}, {{0x2c76,4},{0xc93c,4}}, {{0x10f2,1},{0x15abf,3}}, {{0xcb5,3},{0xb65,2}}, + {{0x19d32,5},{0x19d37,4}}, {{0x27b95,4},{0x27897,2}}, {{0x2c92,6},{0x1354,8}}, {{0x27,1},{0xcb8,3}}, + {{0xd5c,1},{0xb66,2}}, {{0x6d8e,3},{0x10f6,2}}, {{0x116d,1},{0x116c,2}}, {{0x6ac3,3},{0xbcc2,3}}, + {{0xaea,1},{0x1257,3}}, {{0xcf6,3},{0x1b,1}}, {{0x6c97,5},{0x6c9c,8}}, {{0xe53,8},{0x5a52,4}}, + {{0x2237,3},{0xcb8,2}}, {{0xc13,4},{0x4524,4}}, {{0x10ea,3},{0x26c6,1}}, {{0x7c4,24},{0x7c4,1}}, + {{0x281f,3},{0x18ee8,4}}, {{0x1a433,5},{0x17476,4}}, {{0x53f4,7},{0x53fb,6}}, {{0x1ab2,4},{0xbaf,2}}, + {{0x5ac2,5},{0x1a,1}}, {{0x10ca,1},{0x43e3,1}}, {{0xb6c,7},{0xb73,2}}, {{0xf2c2,7},{0xaf2,1}}, + {{0xae5,1},{0xf44,7}}, {{0xd41,3},{0x210c7,4}}, {{0x2d,1},{0xbd6,2}}, {{0x1b613,3},{0x10ef,1}}, + {{0x244f5,2},{0x96b,2}}, {{0x244a1,2},{0x6f6c,2}}, {{0xbe7,1},{0x12be,3}}, {{0x323c,2},{0xb78,2}}, + {{0x2b5a7,2},{0x2b5a7,2}}, {{0x1878,1},{0xd5c,1}}, {{0x30ba,5},{0xae7,1}}, {{0x908e,8},{0x4453,4}}, + {{0xb30,2},{0x9a9,1}}, {{0x24a8,6},{0x1545,6}}, {{0x15a62,5},{0xbeb,1}}, {{0x156c6,5},{0x1150,2}}, + {{0xf77e,5},{0x3edd,5}}, {{0x22cf8,1},{0x780,1}}, {{0x4f71,3},{0x12b1,4}}, {{0x275a,8},{0xc4d,2}}, + {{0x27,1},{0x1489,3}}, {{0x278a7,3},{0x116d,2}}, {{0xaf62,2},{0x10f2,1}}, {{0x48a4,3},{0xbb4,4}}, + {{0x24a2d,2},{0x27e4d,3}}, {{0x1c,1},{0x1af8,5}}, {{0xaea,2},{0xcce,3}}, {{0xfc6a,5},{0x3594,3}}, + {{0xc25,3},{0xf10,3}}, {{0x40b2,8},{0x40ba,6}}, {{0xc49,3},{0x3788,3}}, {{0x10ca,2},{0xe6aa,5}}, + {{0x1b87f,6},{0x1b885,8}}, {{0x3392,6},{0xcf68,2}}, {{0x156c6,5},{0x2971,3}}, {{0x257a,7},{0xc9c,3}}, + {{0xca3,4},{0x1016,4}}, {{0xa552,5},{0xef4c,6}}, {{0x198cf,4},{0xb55,2}}, {{0x1aac,3},{0x1684,3}}, + {{0x116e,1},{0x1173,2}}, {{0x2d,1},{0xb8f,3}}, {{0x1393,3},{0x1257,3}}, {{0xcd9,3},{0x1000,3}}, + {{0x21,1},{0xb7c,2}}, {{0xaada,4},{0x10f2,1}}, {{0xb79,2},{0xa60f,3}}, {{0x132c,6},{0x1058,10}}, + {{0x70a0,2},{0xa4f,2}}, {{0x177c,3},{0x9988,3}}, {{0xd76,7},{0x748d,5}}, {{0xb6c,3},{0x1cf9c,5}}, + {{0x2610,6},{0xa48c,6}}, {{0xbe7,1},{0xfdd,2}}, {{0x430,18},{0x432,9}}, {{0x1574c,2},{0x2857e,3}}, + {{0xfb32,8},{0xc34,3}}, {{0x178c,3},{0xf63c,2}}, {{0x2796,3},{0x1098,4}}, {{0x1084,3},{0xec6b,4}}, + {{0x5d5b,5},{0x1a6f,7}}, {{0x14d0c,5},{0x2b,1}}, {{0xfee4,4},{0x1015c,4}}, {{0x109a6,5},{0x2746,3}}, + {{0xb8a,2},{0xb52,5}}, {{0x1ef59,5},{0x4d44,3}}, {{0x257a,4},{0xeb2b,6}}, {{0xaea,2},{0x5c76,4}}, + {{0x48ae,9},{0xb7c,3}}, {{0xa7d8,2},{0xbe4,1}}, {{0xb75,2},{0xb55,2}}, {{0x2791d,2},{0x116c,1}}, + {{0xd11d,5},{0x2693,4}}, {{0x24462,1},{0x28652,2}}, {{0x430,18},{0x432,11}}, {{0x131e2,7},{0xb65,2}}, + {{0x14c76,5},{0xb7a,5}}, {{0x10ea,3},{0x2a24,3}}, {{0xabfa,5},{0x5676,7}}, {{0x17bc,3},{0xbe0,1}}, + {{0x1042,4},{0xc67,2}}, {{0x1031e,6},{0x2279,4}}, {{0xb7d,2},{0xae5,1}}, {{0xbcb,3},{0x411c,4}}, + {{0x139e,2},{0xb2c,2}}, {{0x5a8e,6},{0x5a94,3}}, {{0x20aa8,2},{0x20aaa,5}}, {{0x10f0,1},{0xae6,3}}, + {{0xaca2,3},{0xb47,2}}, {{0xab9a,3},{0x11d95,3}}, {{0x20db0,5},{0x28,1}}, {{0x10f7,1},{0x24292,3}}, + {{0x22a9f,5},{0xb75,2}}, {{0x1aff,3},{0xae7,1}}, {{0x13d10,6},{0xc63,3}}, {{0x10ef,1},{0x10f2,2}}, + {{0x2791d,2},{0x278af,1}}, {{0x27b4,3},{0xdac,2}}, {{0x16e2,2},{0x2b,2}}, {{0xc37,3},{0x166d4,4}}, + {{0x349c,10},{0x10dc,2}}, {{0x244b3,2},{0xc601,2}}, {{0xded,5},{0x89b9,4}}, {{0xc37,3},{0x1a,3}}, + {{0x9216,4},{0xf219,4}}, {{0xb9d,3},{0x1d,1}}, {{0x27cc5,2},{0x251d8,2}}, {{0xd1a,2},{0x8134,4}}, + {{0x70b0,4},{0x24733,2}}, {{0x2cd1,4},{0x1693,3}}, {{0x16e2,2},{0xb2c,2}}, {{0x145d0,6},{0x1ba7,4}}, + {{0xb01a,4},{0x139e,3}}, {{0xfc07,5},{0xb7d,1}}, {{0xb8b,2},{0x3f72,4}}, {{0x2bea,7},{0x1563,5}}, + {{0xcd9,3},{0x1c,1}}, {{0x6d81,3},{0x263f,3}}, {{0x27e20,2},{0x19,1}}, {{0x3e58,4},{0xd7f,3}}, + {{0x19f3e,2},{0xbe0,1}}, {{0xbb2,2},{0x67a6,4}}, {{0x5671,7},{0xb52,6}}, {{0x24440,4},{0x2722b,2}}, + {{0xe75,4},{0x84f6,4}}, {{0xa9ae,9},{0x2b,3}}, {{0xb44,3},{0x1060f,5}}, {{0x30,4},{0x532,4}}, + {{0x17930,5},{0x1f13,4}}, {{0xde9,1},{0x20b5,3}}, {{0x1a49,8},{0x1498,4}}, {{0x1f591,4},{0x43e3,1}}, + {{0x10ec,1},{0x1a4ab,5}}, {{0x1a,2},{0xf25a,5}}, {{0x41f8,2},{0x10dc,2}}, {{0x1a4d5,6},{0x2b,3}}, + {{0x28,1},{0x12fe,1}}, {{0xd1b,1},{0xeb2,1}}, {{0x243bb,4},{0x1f0f,3}}, {{0x19b3,4},{0x2b,1}}, + {{0x27b95,4},{0x27977,2}}, {{0x244ad,2},{0x244af,2}}, {{0xc49,3},{0x1687,5}}, {{0xf52,5},{0x20a0,3}}, + {{0x180c,4},{0xa022,5}}, {{0x41da,4},{0xf63c,2}}, {{0x164c,7},{0x666c,6}}, {{0x278c9,2},{0x27a1f,2}}, + {{0x4d08,4},{0x10dc,2}}, {{0xcb5,3},{0xae5,1}}, {{0xbde,3},{0x5af9,3}}, {{0x1e27,6},{0x89c8,6}}, + {{0xc55,2},{0x691e,5}}, {{0xbed,2},{0xbbf,2}}, {{0x116d,1},{0x27ad3,2}}, {{0xc37,3},{0x192c5,5}}, + {{0x1ae2,2},{0xbd6,2}}, {{0x13282,7},{0x18ca,3}}, {{0x40c0,4},{0xae5,1}}, {{0x11cc0,5},{0x1c8f,3}}, + {{0x5741,11},{0xb2e,2}}, {{0xbd5,2},{0x1a,1}}, {{0x7102,7},{0x7109,5}}, {{0xaea,1},{0xec5,5}}, + {{0x2067,3},{0x132f,3}}, {{0x25141,3},{0x1f95e,3}}, {{0x17bc,3},{0xd54,1}}, {{0x6a91,3},{0xa7a3,5}}, + {{0x422e,3},{0xf60,3}}, {{0x3694,4},{0x2a16,3}}, {{0xcfff,6},{0x101b,3}}, {{0x2977,3},{0x297a,6}}, + {{0xaad,24},{0xaad,24}}, {{0xe922,6},{0xb52,5}}, {{0x27b4,3},{0x14f61,2}}, {{0xaea,1},{0x68fe,5}}, + {{0xb85,2},{0xfe5,2}}, {{0x177c,3},{0xd0b,3}}, {{0x128aa,7},{0x2b,3}}, {{0x17765,6},{0x2b,3}}, + {{0x1e,1},{0xeb3,3}}, {{0x3234,3},{0xbb5,1}}, {{0xadce,5},{0xb68,4}}, {{0x6b54,2},{0xc1e,2}}, + {{0x4346,7},{0x154d9,3}}, {{0x27a13,2},{0x278af,1}}, {{0x278a1,3},{0x278bc,2}}, {{0xa590,3},{0xfe5,2}}, + {{0x5324,6},{0x1717,5}}, {{0xb70,2},{0x107e,5}}, {{0x5c76,4},{0xaea,1}}, {{0xefe1,7},{0x8fe2,4}}, + {{0x6ac5,1},{0xd7f,3}}, {{0x149b0,3},{0x284e,3}}, {{0x27b6,1},{0x15abb,2}}, {{0xb74,2},{0x1d,1}}, + {{0x2866a,2},{0x7c4,1}}, {{0xfc8b,7},{0x41ba,4}}, {{0xbeb,1},{0x152d2,2}}, {{0x15a1,3},{0xe78,3}}, + {{0xbe0,1},{0xb8d,5}}, {{0x122c,4},{0xe4a,4}}, {{0xb44,3},{0xc89,2}}, {{0x13d60,7},{0xae7,1}}, + {{0xa14a,8},{0xc33,4}}, {{0x2df5,3},{0x1916,5}}, {{0x2a594,4},{0x116c,1}}, {{0x9232,9},{0xae7,1}}, + {{0x10fa,1},{0x1ae4f,2}}, {{0x2a5c6,4},{0x116c,1}}, {{0x10ec,1},{0x3e98,6}}, {{0x30,2},{0x2867e,2}}, + {{0xc37,3},{0x180e0,5}}, {{0xcd9,3},{0xd1a,2}}, {{0xf839,6},{0x25c0,5}}, {{0x10a8c,6},{0x10a92,4}}, + {{0x2446c,1},{0x780,1}}, {{0x1272e,7},{0x2c2d,3}}, {{0x6e03,4},{0xb9c,2}}, {{0x6e12,4},{0xb52,5}}, + {{0x28f6,2},{0xee4e,4}}, {{0x38fc,9},{0x43bd,4}}, {{0x1ed53,1},{0x780,1}}, {{0x10fb,3},{0x141b2,4}}, + {{0x38fc,9},{0xb8d,5}}, {{0xab9a,3},{0x1b497,4}}, {{0x2445e,2},{0x251fe,2}}, {{0x17ee,2},{0xf59,3}}, + {{0x30,2},{0x2f54,8}}, {{0x3234,3},{0xb69,2}}, {{0x271e,3},{0xbcc2,3}}, {{0x29423,4},{0x10ef,1}}, + {{0xb887,8},{0xb9d,3}}, {{0xff20,4},{0x1b815,8}}, {{0x2798,2},{0xb7d,1}}, {{0x1b75,4},{0xaf2,1}}, + {{0x6d81,5},{0xcb8,2}}, {{0x275a,8},{0xc7b,4}}, {{0x10f3,1},{0xfcaf,2}}, {{0xb2f,1},{0xaf1,1}}, + {{0x7f6a,4},{0xfe5,2}}, {{0xdcb,14},{0x2b,3}}, {{0x1253a,7},{0x10dc,2}}, {{0xbed,2},{0x28,2}}, + {{0xbe0,1},{0xb79,2}}, {{0xd0f,4},{0xf59,3}}, {{0xcd9,6},{0xcab,3}}, {{0xd5c,2},{0x12e94,6}}, + {{0xdbf,3},{0x22e3,3}}, {{0x2322,6},{0xc4d,2}}, {{0xd41,3},{0xbb2,2}}, {{0x2a594,4},{0x116d,1}}, + {{0x24461,1},{0x9a9,1}}, {{0xcc7,5},{0xccc,6}}, {{0x14cc,4},{0x28a3,3}}, {{0x6c08,4},{0x1cc21,4}}, + {{0x19cc6,5},{0x19ccb,4}}, {{0x15e79,5},{0xae2,1}}, {{0x275a,8},{0x1444,7}}, {{0x19b3,7},{0x19c9,8}}, + {{0xdba,4},{0xb99,2}}, {{0xaea,1},{0x2891,3}}, {{0x27b4,3},{0x18934,5}}, {{0x5fa4,10},{0xc34,3}}, + {{0xbde,3},{0xee5,3}}, {{0x10f0,1},{0xc1c,2}}, {{0x10ec,1},{0x1761,4}}, {{0xaea,1},{0x9844,6}}, + {{0xbde,3},{0xb7e5,5}}, {{0xc6d,7},{0x29d8,3}}, {{0xb71,2},{0x9133,3}}, {{0x10c8,3},{0x203b5,4}}, + {{0x2793d,4},{0x27b03,2}}, {{0x22dc,2},{0xfe5,2}}, {{0x271e,3},{0xd14,4}}, {{0x2106,6},{0x1d,1}}, + {{0xc13,4},{0xd17,3}}, {{0xd76,4},{0xe6d,2}}, {{0xd78,3},{0x1c43,4}}, {{0x7631,5},{0x10dc,2}}, + {{0x4fbd,4},{0xfb1,2}}, {{0x2b,2},{0xc63,3}}, {{0xca3,4},{0x17e4f,5}}, {{0x2467b,6},{0x246e7,6}}, + {{0x16fc,10},{0x1156,6}}, {{0x136c,6},{0xae9,2}}, {{0x24531,4},{0x1b887,2}}, {{0xb44,3},{0x186db,4}}, + {{0xeb2,1},{0xb55,2}}, {{0x2c72e,4},{0x27d99,2}}, {{0x13bc,4},{0xd0b,4}}, {{0x6452,6},{0x11b8,4}}, + {{0x116e,1},{0x27aa9,2}}, {{0x27a6d,2},{0x116d,1}}, {{0xf41,10},{0x1498,4}}, {{0x10ec,1},{0x19f42,3}}, + {{0x3996,5},{0x4ae5,5}}, {{0xf46f,6},{0x9208,4}}, {{0x18b4,11},{0xbb4,4}}, {{0x1042,6},{0xb78,2}}, + {{0x1a09b,6},{0x1704,3}}, {{0x256b,4},{0x36b7,6}}, {{0x1b801,6},{0x1b739,4}}, {{0xfd0f,7},{0xac92,4}}, + {{0x22f39,4},{0xae7,1}}, {{0x4292,5},{0x14f3,7}}, {{0x92f2,5},{0x1719,3}}, {{0x2b18d,2},{0xb54,2}}, + {{0x219c,5},{0xb71,2}}, {{0xfc6a,5},{0x28e2,4}}, {{0x2445e,1},{0x19,1}}, {{0x278a9,1},{0x1b6ab,2}}, + {{0xb70,2},{0x8c45,4}}, {{0x15298,4},{0x1520,2}}, {{0xbe4,1},{0x4532,8}}, {{0x24a2d,2},{0x27e52,3}}, + {{0x1035,5},{0xc8e,3}}, {{0x2a916,2},{0x948,1}}, {{0x181c,4},{0xb82,3}}, {{0xbaa2,4},{0xe4a,4}}, + {{0x14bb0,2},{0xfcaf,2}}, {{0x36be,8},{0x1869,5}}, {{0xf79,3},{0x1d,1}}, {{0x8c4,4},{0x30,24}}, + {{0xbd0a,7},{0x2c00,3}}, {{0x6e37,5},{0xc30,2}}, {{0x1cec,5},{0x14d4,3}}, {{0xe75,4},{0xc6a9,3}}, + {{0x6d81,3},{0x1089,2}}, {{0xdd2,4},{0x2e92,6}}, {{0x88de,5},{0xbbf,2}}, {{0x30ca,5},{0x2971,3}}, + {{0x3234,3},{0x1d11,5}}, {{0x10fb,3},{0x2b,1}}, {{0x7162,4},{0x10dc,2}}, {{0x1ae41,5},{0x1ae46,4}}, + {{0xcfe9,6},{0x2af8,4}}, {{0x59f2,5},{0x23ce,4}}, {{0xb78,2},{0xb64,2}}, {{0x26f1,5},{0x10af5,5}}, + {{0xb44,3},{0x1c,1}}, {{0xca1,2},{0xb2f,1}}, {{0x112f2,7},{0xcab,3}}, {{0x69bf,9},{0xc7b,4}}, + {{0xaf0,2},{0x11ef,3}}, {{0xaef0,2},{0xcce,3}}, {{0xb7f,3},{0xcbd,3}}, {{0x100d,6},{0xd156,4}}, + {{0x6b6c,5},{0xc48a,5}}, {{0x27e2a,2},{0x24a30,2}}, {{0x10f7,1},{0x17ae,1}}, {{0x278a7,4},{0x1b6ab,1}}, + {{0x1568a,5},{0x12b1,4}}, {{0x271e,3},{0xaa94,3}}, {{0x27b4,3},{0x1862,3}}, {{0xf8e9,5},{0xa8f2,4}}, + {{0x10c8,3},{0xc89,2}}, {{0xd931,7},{0x5c44,4}}, {{0xbde,3},{0xb65,2}}, {{0x3492,4},{0xe4a,4}}, + {{0x1ed3,4},{0xae7,1}}, {{0xd41,4},{0x2b,1}}, {{0x1b885,4},{0x1b8a5,4}}, {{0xedb,5},{0x31bb,5}}, + {{0x2ab6,5},{0x80be,4}}, {{0xc4d,2},{0x2b,1}}, {{0x7c4,32},{0x7c4,16}}, {{0x6e5e,5},{0xbb5,1}}, + {{0xfc49,5},{0xe9a0,6}}, {{0x244f5,6},{0x24507,6}}, {{0xc89,3},{0x10dc,2}}, {{0xbc1,2},{0xb2e,2}}, + {{0x9a9,4},{0x9a9,2}}, {{0x1edd9,6},{0xd0d,2}}, {{0x1f2c5,2},{0xf8d0,2}}, {{0xaf0,2},{0x16af,3}}, + {{0xbad,4},{0x220f,5}}, {{0x2d104,2},{0x2446c,1}}, {{0x8a49,2},{0x1a,2}}, {{0x28a2,4},{0x288f,5}}, + {{0x734,1},{0x24462,1}}, {{0xb92,5},{0x3776,3}}, {{0x278dc,1},{0x278a3,2}}, {{0xb9c,2},{0x27,1}}, + {{0x264c,4},{0xb47,2}}, {{0x17cc,4},{0x5d97,5}}, {{0xaf0,2},{0xcb8,2}}, {{0xff0c,8},{0x1b1cf,8}}, + {{0xc0d2,8},{0xb7c,3}}, {{0x27897,1},{0x924,3}}, {{0xc9e5,4},{0x1b,1}}, {{0x1198f,5},{0xc8e,3}}, + {{0xa846,7},{0x591d,5}}, {{0xfc8b,5},{0xb2e,2}}, {{0x9baa,5},{0x8a59,5}}, {{0x43e3,1},{0x2848,2}}, + {{0x1d5e5,5},{0x1362,3}}, {{0x209d,4},{0xbfc4,6}}, {{0x27c9d,4},{0x1b4e4,1}}, {{0x388c,10},{0xd0d,2}}, + {{0x3626,4},{0x2b,3}}, {{0x177c,3},{0x2045,3}}, {{0x27d24,3},{0x28633,2}}, {{0xd0fc,4},{0x28da,1}}, + {{0x7022,4},{0x7026,8}}, {{0xbcb,3},{0x715a,3}}, {{0x181a2,6},{0x2b,3}}, {{0x3e90,5},{0xb9d,3}}, + {{0x286bd,2},{0x24673,2}}, {{0x974e,5},{0x2b,3}}, {{0x2d751,2},{0x2d753,2}}, {{0xaea,1},{0x21,1}}, + {{0xbcb,3},{0x10ac3,5}}, {{0x2859,5},{0x5269,5}}, {{0x1f,4},{0xc1c,2}}, {{0xba5,4},{0x3559,3}}, + {{0xc29,2},{0x1bf08,4}}, {{0xea2d,5},{0x2b,3}}, {{0x20bb,3},{0x1675,2}}, {{0xc2e,2},{0x28,1}}, + {{0x1a814,2},{0xbeb,1}}, {{0x4266,8},{0x426e,6}}, {{0x26c4,4},{0x2b,1}}, {{0x4290,4},{0x4de1,5}}, + {{0x3234,3},{0xdf9,5}}, {{0x23f2a,5},{0xc67,2}}, {{0xdc28,5},{0x31f8,4}}, {{0x82a2,6},{0xc1e,2}}, + {{0xca3,5},{0x3557,5}}, {{0xb6c,3},{0x28,2}}, {{0x73c6,9},{0x1257,3}}, {{0xaea,2},{0x13b7a,5}}, + {{0x1d837,6},{0xd0d,2}}, {{0xf82b,3},{0x15b45,3}}, {{0x11e28,8},{0x1d,1}}, {{0x10c8,4},{0xb7d,2}}, + {{0x44d2,5},{0xce8,3}}, {{0xd5c,2},{0xd5e,4}}, {{0x27e1,9},{0xb52,5}}, {{0x20bb,3},{0x5f03,5}}, + {{0xa4d,2},{0x157f2,2}}, {{0xbe7,1},{0x184bd,5}}, {{0xceb,3},{0x13bd3,7}}, {{0x1286e,6},{0xc51,2}}, + {{0x4ddc,8},{0xa60f,3}}, {{0x22cf8,1},{0x2a885,2}}, {{0xfdd,2},{0x5396,3}}, {{0x1084,3},{0xf38f,4}}, + {{0xfc49,6},{0xfc4f,5}}, {{0xa7d,24},{0xa7d,24}}, {{0xf296,8},{0xeb3,3}}, {{0x6d81,3},{0xdf0,2}}, + {{0xc1c,2},{0xb52,2}}, {{0x271e,3},{0x15a61,2}}, {{0x1977,8},{0xf05,7}}, {{0x286bd,2},{0x6fac,2}}, + {{0xbcb,6},{0x2eb8,5}}, {{0x2769,7},{0x8c45,4}}, {{0xedd,3},{0xb2e,2}}, {{0x133c,9},{0x1719,3}}, + {{0x117c,1},{0x432,1}}, {{0x3df6,5},{0xeb3,3}}, {{0x20e8,5},{0xaf1,2}}, {{0x1084,5},{0x92c4,4}}, + {{0x197e,3},{0x3789,3}}, {{0x23a9,10},{0x11b8,4}}, {{0x27b4,3},{0x1257,2}}, {{0x24759,8},{0xff20,4}}, + {{0x159c,4},{0x1499,2}}, {{0x136f8,7},{0x2b,3}}, {{0x178c,3},{0xb8b,2}}, {{0x27995,2},{0x278dc,1}}, + {{0xa786,7},{0x4eb5,4}}, {{0xe6d,2},{0xcb8,2}}, {{0x1a014,6},{0xb78,2}}, {{0x245e5,6},{0x245af,6}}, + {{0xd41,3},{0xc39,2}}, {{0x142e,1},{0x1b,1}}, {{0x1bc0,6},{0x1d22,6}}, {{0xd692,6},{0x35fd,3}}, + {{0x36be,5},{0x24fd,5}}, {{0x41da,3},{0x15adc,2}}, {{0x1084,3},{0x14b6,2}}, {{0xbc5,3},{0x1037,6}}, + {{0x10ea,3},{0x5396,3}}, {{0xf9b1,5},{0xb2e,2}}, {{0xab9a,3},{0xae9,3}}, {{0x638f,6},{0x2b,3}}, + {{0x12f1,2},{0x8de6,3}}, {{0xd112,5},{0x1e6c,6}}, {{0x1d7bf,4},{0x12ad6,4}}, {{0xb63,2},{0xb2c,4}}, + {{0x278a7,3},{0x27aeb,2}}, {{0x17bc,4},{0x7260,5}}, {{0x181c,4},{0xcae4,3}}, {{0xaea,1},{0x2bfd,2}}, + {{0xadd,7},{0xd1a,7}}, {{0xe2dc,7},{0x2693,4}}, {{0x14b6,2},{0x8f83,3}}, {{0x3234,3},{0x8fee,4}}, + {{0x1fd59,5},{0x1305,2}}, {{0xc25,4},{0x2745,3}}, {{0xae7,2},{0x128d5,4}}, {{0x278a7,3},{0x278db,2}}, + {{0xb236,8},{0x10dc,2}}, {{0xc5fa,9},{0x11e5,4}}, {{0x1095,3},{0x26502,3}}, {{0x4132,5},{0x1525,7}}, + {{0x6b93,6},{0x6b99,7}}, {{0xfed0,6},{0xfed0,4}}, {{0x285b,2},{0x423e,1}}, {{0x2cc4a,4},{0x70b4,2}}, + {{0x1189c,5},{0xaea,2}}, {{0x27a5,5},{0xc8e,3}}, {{0x1084,3},{0x1425b,3}}, {{0xbde,3},{0xc52,2}}, + {{0xaf1,1},{0xa8e8,6}}, {{0x17bc,5},{0x12503,5}}, {{0xbb5,1},{0x1318b,4}}, {{0x6506,10},{0xb63,2}}, + {{0x10fb,3},{0x285d1,2}}, {{0x2589,7},{0xa30d,5}}, {{0xca3,4},{0x1dd7,2}}, {{0xdfe,5},{0x10503,5}}, + {{0xe97,7},{0x674c,3}}, {{0xb97,9},{0x10dc,2}}, {{0xe6d,2},{0xc89,2}}, {{0xb7f,3},{0xbb2a,4}}, + {{0x353a,3},{0x1037,6}}, {{0x3234,3},{0x16f8,3}}, {{0xd8d0,4},{0xb78,2}}, {{0x152a2,6},{0x152a8,4}}, + {{0x19b94,4},{0x2844,2}}, {{0xd947,6},{0xd94d,5}}, {{0x2322,6},{0x5575,4}}, {{0x3ec8,8},{0xb54,4}}, + {{0xacc6,10},{0xb2e,2}}, {{0x2b57c,2},{0x2864c,1}}, {{0xce1,3},{0x1ed0,4}}, {{0x4a27,7},{0x4a2e,6}}, + {{0x27cea,1},{0x27e3a,2}}, {{0x2445c,3},{0x9c9,1}}, {{0xeb1,2},{0xfe5,2}}, {{0x4284,2},{0x1f953,4}}, + {{0x8ae2,5},{0xec6d,4}}, {{0x148eb,4},{0xd1b,1}}, {{0x1b4f,3},{0x1152,3}}, {{0x2d02,8},{0xb52,6}}, + {{0x7c4,8},{0x7c4,1}}, {{0x278a7,3},{0x116c,2}}, {{0xab0a,5},{0x1a7a,4}}, {{0x6107,3},{0xbd6,2}}, + {{0x52f0,8},{0x315d,5}}, {{0x2b,3},{0xb48,2}}, {{0xe78,3},{0x705a,4}}, {{0x9b1a,5},{0xbb5,1}}, + {{0xaea,1},{0xb79,2}}, {{0x19b94,5},{0xf5f5,4}}, {{0x2495d,8},{0xff20,4}}, {{0x1459e,3},{0x2742,3}}, + {{0x1e45,3},{0x1f,1}}, {{0x10ea,3},{0x28,3}}, {{0x1b237,4},{0x1b907,4}}, {{0x271e,3},{0x2b76,3}}, + {{0xfed0,18},{0xfed2,2}}, {{0x163af,5},{0xc39,2}}, {{0x1a0d,5},{0x1c,1}}, {{0x423c,3},{0x25db8,3}}, + {{0x73d2,6},{0x9209,5}}, {{0x4ec6,8},{0x3edd,5}}, {{0xab9a,3},{0x27016,3}}, {{0x2791d,2},{0x278a9,1}}, + {{0x2ac7f,4},{0x1b8a5,4}}, {{0xb7f,3},{0x1675,2}}, {{0x1e,1},{0x1434,6}}, {{0x17bc,4},{0x10283,4}}, + {{0x2b88a,4},{0x6f8a,2}}, {{0x68ef,9},{0x1b80,4}}, {{0x422e,3},{0x10dc,2}}, {{0xbe7,1},{0xbed,2}}, + {{0x1b6cb,1},{0xb31,1}}, {{0xcc7,3},{0xe483,6}}, {{0xbb4,2},{0xb78,2}}, {{0x278a1,3},{0x1b6b3,2}}, + {{0x28,2},{0xae5,1}}, {{0xcd9,3},{0x27,1}}, {{0x9e9,2},{0x532,18}}, {{0xc30,2},{0xc55,2}}, + {{0xb0cb,6},{0xb0d1,5}}, {{0x10c8,3},{0xfcb3,4}}, {{0x35fd,3},{0x2b,1}}, {{0x27b4,3},{0x426b,4}}, + {{0x181c,10},{0xb79,6}}, {{0xb6c,3},{0x59f5,3}}, {{0xc13,4},{0xb48,2}}, {{0x14fca,3},{0xaf1,2}}, + {{0x10fb,3},{0xb47,3}}, {{0x23de8,5},{0x4351,2}}, {{0xb7d,1},{0x5d77,5}}, {{0xc55,2},{0x11e6,6}}, + {{0xaf63,2},{0x1a561,4}}, {{0x432,32},{0x432,2}}, {{0x278a7,3},{0x278bd,2}}, {{0x1568a,6},{0x1d,1}}, + {{0x285b,3},{0x1a,3}}, {{0xc654,8},{0x2b,3}}, {{0xbd62,6},{0x43bd,4}}, {{0xadf,2},{0xdf0,2}}, + {{0x5aa8,6},{0x1869,5}}, {{0xc1c,2},{0x23ce,4}}, {{0x443e,2},{0x2b,1}}, {{0x13bc,4},{0xdd40,4}}, + {{0x1b12c,4},{0x14ee4,2}}, {{0x15ac,5},{0xb55,3}}, {{0x1055,3},{0x5277,2}}, {{0x1878,1},{0x53e9,4}}, + {{0x10580,7},{0x1f69,3}}, {{0x600c,8},{0x2a95,5}}, {{0x1cb0,8},{0x2faa,6}}, {{0x1f6a1,5},{0xd5c,1}}, + {{0x1aee,6},{0x520e,5}}, {{0x10c8,3},{0x26f80,2}}, {{0xc89,2},{0xb54,3}}, {{0x5d5b,5},{0xd282,6}}, + {{0x2c4ca,4},{0x6f96,2}}, {{0x278a7,3},{0x27a07,2}}, {{0x23adf,5},{0xb65,2}}, {{0x20269,5},{0xd7f,3}}, + {{0xae0,1},{0x23d9,3}}, {{0x14bae,8},{0xf8d1,2}}, {{0x14cc,4},{0x1d923,4}}, {{0x6d81,3},{0x26f7a,2}}, + {{0x274d,3},{0x2195,7}}, {{0xe6d,2},{0xb8b,2}}, {{0xaca2,3},{0x1dac0,5}}, {{0x152c4,3},{0x26c6,1}}, + {{0x1b5c,3},{0x2b,2}}, {{0xb55,2},{0x25c2,3}}, {{0x2793d,4},{0x27b0f,2}}, {{0x752e,6},{0x10770,4}}, + {{0x1b48,7},{0x1b4f,3}}, {{0xca7,3},{0x1960,7}}, {{0x279f5,2},{0x278a9,1}}, {{0x1a49,8},{0x1498,3}}, + {{0xaea,1},{0x535b,5}}, {{0xf87b,5},{0xbed,2}}, {{0x849a,11},{0xae7,1}}, {{0x1687,3},{0x11ef,2}}, + {{0x27a0d,2},{0x116c,1}}, {{0x10f0,1},{0x15f4d,4}}, {{0x1e,1},{0x8848,6}}, {{0xd5c,1},{0xbc6,2}}, + {{0x432,2},{0x734,2}}, {{0xbd99,8},{0x10dc,2}}, {{0xb12e,3},{0x109a,4}}, {{0x279fb,2},{0x116c,1}}, + {{0x131ec,7},{0x10dc,2}}, {{0x70b0,4},{0x24515,2}}, {{0x804,2},{0x157b6,2}}, {{0x40f8,4},{0x4882,3}}, + {{0xca7,3},{0xae0,1}}, {{0x13d24,6},{0x1a96,4}}, {{0x278a7,3},{0x278c9,2}}, {{0x257c,2},{0xe6d,2}}, + {{0x10fb,3},{0x1a19b,5}}, {{0x278a1,3},{0x278af,2}}, {{0xaca2,3},{0x79d6,5}}, {{0xb2f,1},{0xc89,3}}, + {{0xde9,1},{0x1b4f,3}}, {{0xc8d4,4},{0x10dc,2}}, {{0x1878,1},{0xb2f,1}}, {{0xfb89,4},{0x2d,1}}, + {{0x27b6,1},{0x1aaed,1}}, {{0x142ce,7},{0x5cd6,3}}, {{0x858a,8},{0xd0b,4}}, {{0xddc,4},{0xcd4,3}}, + {{0xf5e,3},{0xb52,2}}, {{0xebcc,4},{0x28,1}}, {{0x26e4,4},{0x29ec,6}}, {{0x1fd81,5},{0xd17,3}}, + {{0x113f,5},{0x1144,8}}, {{0x1531a,6},{0xa5e6,4}}, {{0xbb5,1},{0xc30,2}}, {{0xb47,2},{0x1b,1}}, + {{0x27a3d,2},{0x278dc,1}}, {{0x10fb,3},{0x102f9,3}}, {{0xdba4,4},{0xec4,6}}, {{0x209d,4},{0x1a10,2}}, + {{0xf5f6,2},{0xbe4,1}}, {{0xbb5,1},{0xbd6,2}}, {{0x1adc5,4},{0x14e2,3}}, {{0x2787,5},{0x1701,3}}, + {{0xfd25,4},{0x1d8a1,4}}, {{0xcb5,3},{0xc2e,2}}, {{0xb8a,2},{0xd0d,2}}, {{0xb4bf,6},{0x7c19,5}}, + {{0x579c,11},{0x1a,1}}, {{0xc37,3},{0x2b,3}}, {{0x6b06,3},{0xc3e,2}}, {{0xd11d,5},{0xb2c,2}}, + {{0xbdb1,6},{0x10dc,2}}, {{0x1224c,7},{0xae7,1}}, {{0x10fb,4},{0x2b,2}}, {{0x12f12,5},{0xce2,3}}, + {{0xae7,1},{0xae9,2}}, {{0x2657f,2},{0x159c8,1}}, {{0xbe0,1},{0xc55,2}}, {{0xcf3,3},{0xb7d,2}}, + {{0x181c,4},{0x25c1,4}}, {{0x2cdb2,4},{0x159cb,2}}, {{0x10f0,1},{0x1ae3e,3}}, {{0xddc,4},{0x139e,3}}, + {{0x5915,5},{0x1c,1}}, {{0xb7f,6},{0xc30,2}}, {{0x1402,2},{0x1402,2}}, {{0xc30,2},{0xb54,2}}, + {{0x5428,5},{0xaea,1}}, {{0x17fc,5},{0x1960,4}}, {{0x1393,9},{0xae7,1}}, {{0x1a9e5,6},{0x16be,3}}, + {{0x244b9,2},{0x244e7,2}}, {{0xbde,3},{0x2847,2}}, {{0x1ab2,4},{0xff7,5}}, {{0x13048,6},{0x1089,2}}, + {{0xae0,1},{0xb74,2}}, {{0xcfd,4},{0xfde,2}}, {{0x944e,6},{0x3e98,6}}, {{0x22cf8,1},{0x948,1}}, + {{0x178c,3},{0x2742,3}}, {{0x27ce8,3},{0xb33,2}}, {{0xa26a,6},{0x10dc,2}}, {{0xae7,1},{0x12e94,6}}, + {{0xb44,3},{0x1cef,3}}, {{0xde9,1},{0xb55,2}}, {{0xb48,2},{0xd1b,1}}, {{0x326c,5},{0xf05,7}}, + {{0xf69e,4},{0xb264,4}}, {{0x4362,4},{0x196fd,5}}, {{0x1c1a5,7},{0xae7,1}}, {{0x286a,2},{0x1701,3}}, + {{0x2b900,4},{0x24515,2}}, {{0xb60,2},{0x5af9,3}}, {{0x1d59,4},{0x3a39,3}}, {{0x21,1},{0xbe7,1}}, + {{0xa8be,5},{0x79bf,7}}, {{0xbe0,1},{0xc2e,2}}, {{0x4a4e,8},{0x4a56,3}}, {{0xbb5,1},{0x4ab0,3}}, + {{0xf3ed,3},{0x2c5f,4}}, {{0xb215,5},{0x2c7d,6}}, {{0x29cdc,4},{0x6ac5,1}}, {{0x75ca,7},{0x10dc,2}}, + {{0x1ed49,3},{0x27cf8,2}}, {{0x26a6,8},{0xe72,3}}, {{0x24681,6},{0x2469f,6}}, {{0x1cd1d,6},{0x10dc,2}}, + {{0x4588,8},{0x4590,5}}, {{0x235d5,5},{0xae6,2}}, {{0x27b4,3},{0x14dbb,4}}, {{0x26b5,4},{0x5bf3,5}}, + {{0x6b54,2},{0xfc6d,3}}, {{0x8716,4},{0xaea,1}}, {{0xa7da,3},{0x19c03,6}}, {{0x40d0,3},{0x8c45,4}}, + {{0xcd9,3},{0xb72,2}}, {{0xf56e,5},{0xb71,2}}, {{0xb6c,3},{0x1009f,4}}, {{0x924,2},{0x278c9,2}}, + {{0x1fff1,7},{0xae7,1}}, {{0xacba,4},{0x72b6,3}}, {{0x2dfe,7},{0x4cec,6}}, {{0x181c,3},{0xb66,2}}, + {{0xaeca,5},{0xd088,5}}, {{0x194a,5},{0x1d,1}}, {{0x1d82,11},{0x2b,3}}, {{0x6ac5,1},{0xbe0,1}}, + {{0xcd9,3},{0xd1b,1}}, {{0x27,1},{0x12fe,1}}, {{0x6c08,4},{0xd674,3}}, {{0xf070,6},{0xaa81,5}}, + {{0xae9,2},{0xc57,3}}, {{0x9166,4},{0x2b3e,4}}, {{0xe6d,2},{0x1c43,4}}, {{0x500b,10},{0xae7,1}}, + {{0x1dbe,5},{0x13d5,7}}, {{0x5a05,4},{0xb2e,2}}, {{0xddc,4},{0xfb1,2}}, {{0x6d8e,3},{0x1196,6}}, + {{0x16ccc,6},{0x10dc,2}}, {{0x28d1,3},{0x102c,2}}, {{0xaf60,2},{0xaf62,4}}, {{0x1ed51,3},{0x24461,1}}, + {{0x25069,3},{0x2506c,3}}, {{0x1e4b7,5},{0xb55,2}}, {{0xbb5,1},{0x2b76,3}}, {{0x238b,9},{0x10dc,2}}, + {{0xb4a,2},{0xb52,2}}, {{0xb48,2},{0xfcea,4}}, {{0x26c6,1},{0xb83,2}}, {{0x2c38,4},{0x151f,3}}, + {{0x17040,6},{0x10dc,2}}, {{0x12332,5},{0x6347,5}}, {{0x286a,2},{0x12b26,4}}, {{0x257a,7},{0x677d,6}}, + {{0x1a,1},{0xb55,2}}, {{0x265b,4},{0x16fcf,3}}, {{0xaea,1},{0x1931,6}}, {{0xbaa2,8},{0xcc0,3}}, + {{0x8a49,2},{0x10dc,2}}, {{0x16ee,2},{0x1d8e,3}}, {{0x4ddc,8},{0xc1c,2}}, {{0x10ef,1},{0x141b2,4}}, + {{0xaea,2},{0x15f26,3}}, {{0x1e45,4},{0x9133,3}}, {{0xaa62,6},{0xa8e8,6}}, {{0xe8d,3},{0x35b9,7}}, + {{0x2878b,6},{0xff22,2}}, {{0x10ef,1},{0x28b1,3}}, {{0x181e,2},{0xe6d,2}}, {{0x10ca,1},{0xae2,1}}, + {{0xacae,4},{0x2b,3}}, {{0x19ba,3},{0x188ca,4}}, {{0x24a2d,2},{0x27e34,3}}, {{0x1a326,4},{0xb2f,1}}, + {{0xa9b0,7},{0xb63,2}}, {{0x2c680,4},{0x1cf1d,2}}, {{0xe2f4,5},{0xd17,3}}, {{0x10ec,1},{0x29744,3}}, + {{0x18e14,7},{0xb2e,2}}, {{0xddd5,5},{0x461d,4}}, {{0x3234,3},{0x1c118,4}}, {{0x1b693,5},{0x428d,3}}, + {{0x732,3},{0x9a9,1}}, {{0x3e90,5},{0x60fc,6}}, {{0xf14,2},{0xb67,2}}, {{0x1084,3},{0x4446,6}}, + {{0x2789b,3},{0x27b09,2}}, {{0x147c,5},{0x10c0d,5}}, {{0x2f5c,7},{0xc8e,3}}, {{0xb75,2},{0xc657,3}}, + {{0x4186,5},{0x8c88,6}}, {{0x5288,5},{0x16ce,4}}, {{0xae7,1},{0xbe85,6}}, {{0x159e,3},{0xdf6,3}}, + {{0xae7,2},{0x3776,3}}, {{0x2e8a,6},{0xee4,3}}, {{0x177e,5},{0xce1,4}}, {{0x1191,5},{0x2971,3}}, + {{0x2cae,4},{0xc45f,4}}, {{0xf537,3},{0xaf2,1}}, {{0x2c782,4},{0x157a4,2}}, {{0x2868,4},{0x1993d,3}}, + {{0x326c,5},{0x1444,7}}, {{0x6450,8},{0x11b8,4}}, {{0x10d48,4},{0x174e,3}}, {{0x1972,3},{0xf10,3}}, + {{0x279c5,2},{0x27897,1}}, {{0x10c8,3},{0x1ae32,2}}, {{0x321d,3},{0xae7,1}}, {{0xf6ce,4},{0x180e,2}}, + {{0x4284,2},{0xf827,7}}, {{0x10314,5},{0x4df1,5}}, {{0x1a,1},{0xdc0,3}}, {{0x14ca8,4},{0x235f5,3}}, + {{0xdf0,2},{0xbac,4}}, {{0xaca2,3},{0xb70,2}}, {{0x6c3c,5},{0xb2f,1}}, {{0xbbf,2},{0x2e69,5}}, + {{0xc6cd,5},{0x79f9,4}}, {{0xb871,6},{0x2c0b,3}}, {{0x178c,3},{0x1f3a,3}}, {{0x9baa,8},{0x1f13,4}}, + {{0x178c,3},{0x1ae4,7}}, {{0xaf2,1},{0x10ffe,3}}, {{0x415c,5},{0xae7,1}}, {{0xa1c5,5},{0xce8,3}}, + {{0x8c4,4},{0x532,4}}, {{0x4034,7},{0xe1d,3}}, {{0xacbc,5},{0x11b8,4}}, {{0x9e9,2},{0x532,48}}, + {{0x43e3,1},{0x28bd2,2}}, {{0xd090,3},{0xae7,1}}, {{0x2793d,4},{0x278bd,2}}, {{0x2c80c,4},{0x6fac,2}}, + {{0x14c76,5},{0xb71,2}}, {{0xfd25,4},{0x28,1}}, {{0x5aa8,6},{0xd89d,5}}, {{0xc37,3},{0xb54,3}}, + {{0x1084,4},{0x13e9a,6}}, {{0x10c8,3},{0xc1e,2}}, {{0x1b695,2},{0x28da,1}}, {{0x2445f,1},{0x27cc5,2}}, + {{0x2ce37,4},{0x2b,1}}, {{0xae0,1},{0xae6,3}}, {{0x1f,1},{0x1bdc,2}}, {{0x46f4,4},{0xb64,2}}, + {{0x195ac,8},{0xae7,1}}, {{0x27983,2},{0x1b6ab,1}}, {{0x10fb,3},{0x1abd7,2}}, {{0x6f74,4},{0xc601,2}}, + {{0x30ba,5},{0x10dc,2}}, {{0xaf5d,2},{0xd54,1}}, {{0x27c3,4},{0x3cc8,4}}, {{0xc4c6,6},{0xc4cc,4}}, + {{0x28,2},{0x142e,1}}, {{0x2793d,4},{0x27af7,2}}, {{0x2ede,6},{0x2ee4,8}}, {{0x4194,6},{0x1c61,4}}, + {{0x20b39,4},{0x1f,2}}, {{0xc04e,6},{0x4ab0,3}}, {{0xb70,2},{0xce8,3}}, {{0xb44,3},{0xa8f1,3}}, + {{0x7df2,7},{0x7df9,5}}, {{0xbc1,2},{0x1d,1}}, {{0xd08e,5},{0x12233,5}}, {{0x152b8,3},{0x1b,1}}, + {{0xd41,3},{0x10af,8}}, {{0x2796,3},{0x29512,2}}, {{0x1ad0,4},{0xca7,2}}, {{0x1aa5,4},{0x2abe,5}}, + {{0x422e,3},{0xbe7,1}}, {{0xfe01,5},{0xd1b,1}}, {{0x15680,5},{0x94b5,5}}, {{0x1ef79,5},{0xc63,3}}, + {{0xb8f,2},{0xce8,3}}, {{0xc9e,3},{0x18ca,3}}, {{0xddc,4},{0x1640d,5}}, {{0x1b7eb,8},{0x10188,4}}, + {{0x14c0a,3},{0x5396,3}}, {{0x159c,4},{0xb48,2}}, {{0x141c,7},{0x8975,5}}, {{0x27,1},{0xb89,2}}, + {{0xf844,6},{0x2b75,5}}, {{0x10ea,3},{0xcab,3}}, {{0x142e,1},{0xcb8,2}}, {{0x17927,5},{0x1278,4}}, + {{0x432,32},{0x432,3}}, {{0xb78,2},{0x5882,4}}, {{0xddc,4},{0x10e2b,3}}, {{0x1c83,5},{0xd1b,1}}, + {{0x1adc3,6},{0xc63,3}}, {{0x1aa51,4},{0x12f5c,5}}, {{0x1ffc9,4},{0x29da,3}}, {{0x58d4,5},{0x58d9,8}}, + {{0xaea,1},{0xe08,7}}, {{0xc3e,2},{0xb2e,2}}, {{0x3598,5},{0xb85,2}}, {{0x3234,3},{0x1a30,3}}, + {{0x27a7f,2},{0x116c,1}}, {{0x3a36,2},{0xbb5,1}}, {{0x5664,6},{0x21d2,6}}, {{0xc6ac,8},{0xb8f,3}}, + {{0x2d,1},{0xcbc3,6}}, {{0x1465c,6},{0x2976,3}}, {{0x2375d,5},{0x1b,1}}, {{0x287f3,6},{0x1a,1}}, + {{0x3a3e,6},{0x1ed0,4}}, {{0x1930,3},{0xb2e,2}}, {{0x279d1,2},{0x27897,1}}, {{0x2797d,2},{0x278dc,1}}, + {{0x27b4,3},{0xb82,2}}, {{0xdf0,2},{0x10dc,2}}, {{0x10ef,1},{0x1a9d,3}}, {{0x43e3,1},{0x12ae,3}}, + {{0x15eb8,6},{0xeb3,3}}, {{0x10c8,3},{0xae9,2}}, {{0x10f0,1},{0x2848,2}}, {{0x37f7,3},{0x2b,3}}, + {{0x3234,3},{0x130f,2}}, {{0x75b2,6},{0xb55,2}}, {{0x10e1a,6},{0x10e2a,4}}, {{0xa246,4},{0x1c68,3}}, + {{0x1b57,4},{0x11486,6}}, {{0x1f621,5},{0xb47,2}}, {{0xefb5,7},{0x1577,4}}, {{0x278a7,3},{0x27ab5,2}}, + {{0x434e,2},{0x285f1,3}}, {{0x159e0,5},{0x705e,4}}, {{0x10196,4},{0x2ac87,4}}, {{0x4354,4},{0xb85,2}}, + {{0x10192,4},{0x249a9,8}}, {{0x3788,3},{0xb68,4}}, {{0x10850,6},{0x2d44,4}}, {{0x17088,6},{0x2b,3}}, + {{0x10f0,1},{0xae0,2}}, {{0x532,66},{0x30,18}}, {{0x174e,6},{0x1152,3}}, {{0x261f,5},{0xee18,6}}, + {{0xdba,6},{0xb78,2}}, {{0x6d74,4},{0xd5c,9}}, {{0xbe7,2},{0x1c25,4}}, {{0x532,66},{0x30,16}}, + {{0xc52,2},{0x1307,3}}, {{0x22e8,3},{0x4875,5}}, {{0x3242,5},{0x103b,5}}, {{0x1ab2,5},{0x2ec8,5}}, + {{0x139f,3},{0x2279,4}}, {{0x27c3,4},{0xcf0,2}}, {{0xe8d,3},{0xb9c,2}}, {{0x27977,2},{0x27897,1}}, + {{0x26bd5,4},{0x26754,2}}, {{0x1561,3},{0x2af8,4}}, {{0x156c8,3},{0x1150,2}}, {{0xff0c,8},{0x70a0,4}}, + {{0x251db,2},{0x2b323,2}}, {{0x17be7,5},{0xff7,4}}, {{0x6b52,4},{0x2b,2}}, {{0x244b3,2},{0x70a2,2}}, + {{0x1dce5,6},{0x10dc,2}}, {{0x1c,1},{0xbe0,1}}, {{0x1c,1},{0xb9d,3}}, {{0x26c6,1},{0x4286,2}}, + {{0x159c,4},{0xe70c,6}}, {{0x2061,5},{0x35c7,9}}, {{0x5a67,7},{0xc63,3}}, {{0x14b6,2},{0xaf2,1}}, + {{0x274b,5},{0x14a8,4}}, {{0x364e,4},{0x8a57,4}}, {{0x1436e,5},{0xc6ae,5}}, {{0x14b72,7},{0x9133,3}}, + {{0xbeb,1},{0x10d9b,4}}, {{0x441c,3},{0xcedb,2}}, {{0xf99b,8},{0xd7a,3}}, {{0x6742,5},{0x103a,3}}, + {{0xb7f,3},{0x265d,3}}, {{0xb8a8,8},{0x2939,3}}, {{0x17be,2},{0xb60,2}}, {{0x5efb,10},{0x2b,3}}, + {{0x1e029,7},{0xaea,1}}, {{0x10861,5},{0x5c76,4}}, {{0x5317,6},{0x1425b,3}}, {{0xaca2,4},{0x20b5,3}}, + {{0x1e,1},{0xbf6d,5}}, {{0x2859,5},{0xedd6,6}}, {{0x24b9,4},{0xe7e9,4}}, {{0x30,2},{0x734,4}}, + {{0xd0c,2},{0xd0c,2}}, {{0x1aefe,5},{0xc8f,2}}, {{0x58f1,3},{0xb48,2}}, {{0x14cd0,5},{0x34a1,5}}, + {{0xb4a,3},{0x2af8,4}}, {{0x188e9,5},{0x46e4,3}}, {{0x963a,7},{0xb52,5}}, {{0x2445e,1},{0x780,1}}, + {{0x1713c,5},{0xb78,2}}, {{0x1ab2,4},{0x1498,3}}, {{0x2cd52,4},{0x1b709,2}}, {{0x90a6,8},{0x35fd,3}}, + {{0x27b4,3},{0x26e6d,2}}, {{0x61ac,4},{0x18cf8,5}}, {{0x1e,1},{0x12d3f,6}}, {{0x244ad,2},{0x6f96,2}}, + {{0x2a896,4},{0x1ed58,1}}, {{0xcd9,3},{0x187c,3}}, {{0x179a5,6},{0xb78,2}}, {{0x7df2,7},{0xfbf,3}}, + {{0x278a7,3},{0x278cf,2}}, {{0x1d023,7},{0x28,1}}, {{0x441c,3},{0x43bd,4}}, {{0xf1f,5},{0x4875,5}}, + {{0xaeb,2},{0xd17,3}}, {{0xc58,3},{0x18b0a,4}}, {{0x17ae,2},{0x284e,3}}, {{0xa186,9},{0xae6,3}}, + {{0x924,2},{0x27b03,2}}, {{0x24f87,2},{0x1b4e4,1}}, {{0x156c8,3},{0xae9,2}}, {{0xaf1,1},{0xeb2,1}}, + {{0xab9a,3},{0x1961,3}}, {{0x20221,5},{0x3a3b,3}}, {{0xb4b,2},{0xc1c,2}}, {{0xbeb,1},{0xa532,4}}, + {{0x284d,3},{0x692b,5}}, {{0x1960,4},{0x2b,3}}, {{0x2a530,4},{0x278dc,1}}, {{0x3655,5},{0xc8a,2}}, + {{0xbe0,1},{0x26754,2}}, {{0x91ea,7},{0x141e,3}}, {{0x279c5,2},{0x1b6ab,1}}, {{0xba5,5},{0x1aa6,3}}, + {{0xbd1,2},{0x1a35,5}}, {{0x27a43,2},{0x278af,1}}, {{0x10ef,1},{0x2f9b,3}}, {{0xa59a,7},{0x2b,3}}, + {{0xe9a6,7},{0xe9c3,4}}, {{0x139f0,6},{0x2af8,4}}, {{0x2844,2},{0x28da,1}}, {{0x1a67,11},{0x1a72,4}}, + {{0xeca,4},{0x5d16,4}}, {{0xfc98,3},{0xfc9b,6}}, {{0x49ac,2},{0x41eb,4}}, {{0x1d6e7,6},{0xaf2,1}}, + {{0x15a70,2},{0x6f1b,5}}, {{0x2b,2},{0xbd5,2}}, {{0x178c,3},{0xdf6,3}}, {{0x177e,2},{0x73fa,5}}, + {{0xb7d,1},{0xc30,2}}, {{0xaca2,3},{0x11ef,3}}, {{0x20411,5},{0x15583,3}}, {{0x10f3,1},{0x4590,5}}, + {{0xb67,2},{0xd7a,3}}, {{0x20563,3},{0x7c4,1}}, {{0x1561,3},{0x13e4,3}}, {{0x272e5,2},{0x428d,2}}, + {{0x10fb,3},{0x1e4b2,5}}, {{0x1f,1},{0x6a91,3}}, {{0xeec,7},{0x5574,6}}, {{0x1104a,6},{0x27,1}}, + {{0x40f8,4},{0x2b,2}}, {{0x167de,5},{0xb75,2}}, {{0x26c6,1},{0x26c6,1}}, {{0x117c,1},{0x1b4e3,1}}, + {{0xcab,3},{0xc1c,2}}, {{0x27b6,1},{0xf8cf,3}}, {{0xb30,14},{0xb32,6}}, {{0x1817e,5},{0x18183,4}}, + {{0x27b6,1},{0x43e3,1}}, {{0x1935a,5},{0x10dc,2}}, {{0xcd9,4},{0xe057,7}}, {{0x147bc,5},{0x2b,3}}, + {{0x10fb,4},{0xb8a,2}}, {{0xd5c,1},{0xde2,4}}, {{0x4415,2},{0x10ef,1}}, {{0x1221a,7},{0xae7,1}}, + {{0x12724,8},{0xaf2,1}}, {{0x144cc,6},{0xe70,4}}, {{0x116d,1},{0x1b6b3,2}}, {{0x1f62,9},{0xb78,2}}, + {{0x1f9e,8},{0x1fa6,7}}, {{0xae0,1},{0x11e4,4}}, {{0x1f15b,2},{0x5396,3}}, {{0x7a45,4},{0x139f,3}}, + {{0x397a,6},{0x1c43,4}}, {{0xfd5c,5},{0xbb5,1}}, {{0xc52,2},{0xb2c,2}}, {{0x12d32,6},{0xaf2,1}}, + {{0x78b2,5},{0x101b,3}}, {{0xc37,3},{0xb85,2}}, {{0x2045,3},{0xb8f,2}}, {{0xd78,5},{0xce1,4}}, + {{0x178c,3},{0x1cee,4}}, {{0x2a562,4},{0x116c,1}}, {{0x209d,5},{0xdfa,3}}, {{0x14934,2},{0x10f7,1}}, + {{0x1cfe9,7},{0xde9,1}}, {{0x27cea,1},{0x7c4,1}}, {{0xac8a,4},{0x4230,2}}, {{0x162c,6},{0x6581,7}}, + {{0x122c,4},{0x2be4,6}}, {{0xbe4,1},{0x35fd,3}}, {{0x1e,1},{0xd237,4}}, {{0x1d,1},{0x1308,3}}, + {{0x9b92,7},{0x1719,3}}, {{0x16ba1,6},{0x2b,3}}, {{0xcf6,3},{0x4834,5}}, {{0xceb,3},{0x1e5ea,5}}, + {{0x24f85,4},{0x159c8,1}}, {{0xc5ff,4},{0xaea,1}}, {{0x10f1,2},{0xd5c,1}}, {{0x6b5f,4},{0x151b7,5}}, + {{0xd76,7},{0x196f,8}}, {{0x59f2,9},{0x59fb,4}}, {{0xafc6,4},{0x11a5,4}}, {{0xbe4,1},{0x13dd2,5}}, + {{0x6d8e,3},{0x2b,1}}, {{0xbe7,1},{0x23cfd,4}}, {{0x85de,5},{0xca42,6}}, {{0x16ee,2},{0xc32c,3}}, + {{0xcd9,5},{0x1463,9}}, {{0xd54,1},{0x1971,2}}, {{0x10ea,3},{0x15adc,2}}, {{0x2445c,3},{0x1ed58,1}}, + {{0x1a541,5},{0xcf6,3}}, {{0x27b6,1},{0x7b33,7}}, {{0x162c,8},{0xae6,3}}, {{0x14d0e,3},{0xf02,3}}, + {{0x12bc,5},{0x16e2,2}}, {{0x3704,6},{0xb63,4}}, {{0xb4a,2},{0xb2e,2}}, {{0x50e8,7},{0x5277,2}}, + {{0xae7,1},{0xd256,4}}, {{0xe6d,2},{0xb8f,2}}, {{0x6d81,3},{0x1d8e,3}}, {{0x43e3,1},{0x3643,9}}, + {{0x10ea,3},{0xa24a,3}}, {{0xae7,2},{0x11b8,4}}, {{0x1c,2},{0x20868,5}}, {{0x244b3,2},{0xfb8b,2}}, + {{0x10652,7},{0xb78,2}}, {{0xf959,5},{0xb79,2}}, {{0x2b900,4},{0x5c78,2}}, {{0xb71,2},{0x1b0a,2}}, + {{0xb6e,2},{0x142e,1}}, {{0xbace,7},{0xb64,2}}, {{0x10fb,3},{0x1eb53,5}}, {{0xae0,1},{0x11f57,7}}, + {{0x19b3,4},{0xde2,3}}, {{0x153c,6},{0x80bd,5}}, {{0x27a07,2},{0x278af,1}}, {{0x16b59,6},{0xaf2,1}}, + {{0xaca2,3},{0x4687,5}}, {{0x3492,4},{0xe2c0,4}}, {{0x1f899,6},{0x1a,2}}, {{0xceb,4},{0x40b6,3}}, + {{0x163dc,6},{0x10dc,2}}, {{0xb8b,2},{0xc89,2}}, {{0xaf2,1},{0xaea,1}}, {{0x278e1,2},{0x924,2}}, + {{0x31e2,4},{0x101c,2}}, {{0xb8f,2},{0x11ef,2}}, {{0x2c62c,4},{0x1016a,2}}, {{0xc49,3},{0x1960,7}}, + {{0x10ea,3},{0x37f7,3}}, {{0x10ef,1},{0xcee,4}}, {{0xb67,2},{0xb2b,3}}, {{0xbaa2,4},{0xbb4,2}}, + {{0xfa14,5},{0x11f2,3}}, {{0xd91,3},{0x11e6,6}}, {{0x4194,5},{0xaa73,6}}, {{0x2797d,2},{0x27897,1}}, + {{0x17fbc,6},{0x28,1}}, {{0x7c4,1},{0x780,1}}, {{0xceb,3},{0x13a9d,7}}, {{0x78ca,7},{0xb2c,4}}, + {{0x24462,1},{0x25202,2}}, {{0xcd5,2},{0x1fc4,7}}, {{0xcdf,3},{0xaeb,2}}, {{0x9c9a,9},{0x132f,3}}, + {{0x202d3,4},{0xae7,1}}, {{0x10f3,1},{0xb78,2}}, {{0x2098,3},{0xd1b,1}}, {{0x1a326,4},{0xbc6,2}}, + {{0x2793d,4},{0x27b09,2}}, {{0x2e8a,6},{0x7f6c,6}}, {{0x278a1,3},{0x2790b,2}}, {{0xcd3,5},{0xae7,1}}, + {{0x1b6cb,1},{0x19,1}}, {{0x1f,1},{0xde2,4}}, {{0x30,2},{0x1b23b,4}}, {{0x374a,6},{0x43bd,4}}, + {{0x5aae,4},{0xae7,1}}, {{0x12882,7},{0x715a,3}}, {{0x19a86,5},{0x19a8b,4}}, {{0x1a8bc,6},{0xcab,3}}, + {{0x141c,4},{0xb8f,2}}, {{0x10ea,3},{0x1b133,2}}, {{0x174c2,6},{0x101b3,3}}, {{0x422e,3},{0x10f0,1}}, + {{0x4710,6},{0x1a35,5}}, {{0xb99,3},{0x1140,4}}, {{0x278a9,1},{0x278c9,2}}, {{0x278a7,3},{0x27959,2}}, + {{0x6067,7},{0x1372,3}}, {{0x77c2,7},{0x7a46,4}}, {{0x1999c,7},{0xb2e,2}}, {{0x1f459,5},{0xc63,3}}, + {{0x14ff0,4},{0x1055,3}}, {{0x102a6,5},{0xb75,2}}, {{0x9256,8},{0xbac,4}}, {{0x19f3c,4},{0xbe0,1}}, + {{0x257c,2},{0xeb2,1}}, {{0x29330,2},{0x10fa,1}}, {{0x6e78,8},{0xf8f,5}}, {{0xb55,2},{0xce8,3}}, + {{0x12b84,7},{0x10dc,2}}, {{0x10ec,1},{0x750f,3}}, {{0x1961,3},{0xdf0,2}}, {{0x185da,7},{0x10dc,2}}, + {{0x1095,3},{0xeb2,3}}, {{0x178c,3},{0x15b3f,2}}, {{0x43e3,1},{0xce8,3}}, {{0x2793d,4},{0x278ed,2}}, + {{0x1098,3},{0x16f0,4}}, {{0x10f6,1},{0x101c,2}}, {{0x2b767,2},{0x159c8,1}}, {{0xe3fa,8},{0xcce,3}}, + {{0x2810,4},{0x2a16,3}}, {{0xd79a,6},{0x1393,3}}, {{0xf52,4},{0x67c0,3}}, {{0xae0,1},{0xae5,1}}, + {{0xbd1,2},{0xb2e,2}}, {{0x2789b,3},{0x1b140,2}}, {{0xf75f,2},{0x151f,3}}, {{0x10c8,3},{0x11ef,3}}, + {{0x278a7,3},{0x27a1f,2}}, {{0xc25,3},{0xd0b,3}}, {{0x227a,3},{0xd17,3}}, {{0xc25,3},{0x22a3,2}}, + {{0xa7f2,5},{0xb85,2}}, {{0x1a646,4},{0x7562,3}}, {{0x2ae71,4},{0x2ae75,4}}, {{0xb3a1,6},{0x33d3,5}}, + {{0x10c8,3},{0xade9,6}}, {{0xb44,3},{0x8aae,4}}, {{0xae2,2},{0xc99,3}}, {{0xc038,8},{0x2b,3}}, + {{0xc37,3},{0x4189,3}}, {{0x27457,4},{0x10f3,2}}, {{0x11e78,5},{0xb78,2}}, {{0x10c8,3},{0x292a5,2}}, + {{0x428b,2},{0xbeb,1}}, {{0x261f,5},{0x68cd,8}}, {{0xbb5,1},{0x1ad2,5}}, {{0xaca2,3},{0xbe7,1}}, + {{0x27a79,2},{0x116c,1}}, {{0x2043,9},{0xb52,6}}, {{0xbe4,1},{0x4286,2}}, {{0x278a7,3},{0x27977,2}}, + {{0xd41,3},{0x1c1d1,4}}, {{0x27b6,2},{0xfb1,3}}, {{0x1f2c5,2},{0x14930,2}}, {{0x4d97,2},{0xb47,2}}, + {{0x14cc,4},{0xc77,2}}, {{0x178c,3},{0x1a88,3}}, {{0x1a0d,5},{0x3868,5}}, {{0x27a6d,2},{0x278af,1}}, + {{0x27,1},{0x2ddc,6}}, {{0x1253c,5},{0x14c0a,2}}, {{0xaea,1},{0x1a,2}}, {{0x27b4,3},{0x605d,10}}, + {{0x12972,6},{0x1817b,3}}, {{0x145c6,5},{0x6815,4}}, {{0x7a6e,4},{0xd1b,1}}, {{0x10f0,1},{0x5277,2}}, + {{0x135c,6},{0x51af,5}}, {{0x3c28,6},{0x3c4a,8}}, {{0xa80a,5},{0x25fa,7}}, {{0x27a13,2},{0x116c,1}}, + {{0x19d6,4},{0xb2c,4}}, {{0xc25,5},{0x84dd,5}}, {{0x135e,3},{0x4fb5,6}}, {{0x12fe,1},{0x2b,1}}, + {{0x364e,5},{0xc39,2}}, {{0x6c63,8},{0xe70,5}}, {{0x4150,4},{0x7eb8,5}}, {{0x10fb,3},{0x201ec,3}}, + {{0xdde0,5},{0xaea,1}}, {{0xb2f,1},{0xc51,2}}, {{0x250bd,3},{0x250c0,3}}, {{0x438e,3},{0x10dc,2}}, + {{0x14ee4,2},{0x1b,1}}, {{0xb2f,1},{0xb6bf,5}}, {{0x4e6b,8},{0xd91,2}}, {{0x2aacb,6},{0x20b23,2}}, + {{0xd54,1},{0xeb2b,6}}, {{0x10fb,3},{0xb82,3}}, {{0x10ea,3},{0x283e,2}}, {{0x314d,3},{0xf46,2}}, + {{0x44d2,5},{0xd7f,3}}, {{0xc67,3},{0xb71,2}}, {{0xae7,1},{0x1b,2}}, {{0xadd,5},{0x2abe,5}}, + {{0x1a94,10},{0xc32,5}}, {{0x72d6,7},{0x1277,5}}, {{0x1221a,7},{0x1f,1}}, {{0x159c8,1},{0x734,2}}, + {{0xc1c,2},{0x79f9,4}}, {{0x1409,2},{0xba9b,4}}, {{0x119c,12},{0xbb4,4}}, {{0x1ac52,6},{0x1b3e,3}}, + {{0x261f,4},{0xb49,2}}, {{0x1e,2},{0xae7,1}}, {{0x265b,4},{0x142e6,6}}, {{0x10ea,3},{0xd892,3}}, + {{0xb002,5},{0xae7,1}}, {{0x69b2,8},{0xb8f,3}}, {{0xb52,2},{0x1f,2}}, {{0xb89,2},{0xcb8,2}}, + {{0x2232,8},{0x27,1}}, {{0x6839,8},{0x2b,3}}, {{0x219c,11},{0x2b,3}}, {{0x14dc,5},{0xf47,4}}, + {{0xd54,2},{0x2041d,4}}, {{0x3654,6},{0xf10,3}}, {{0x21da,8},{0x10dc,2}}, {{0x25c5,8},{0x1555,7}}, + {{0xc1ae,6},{0xbb4,4}}, {{0x24440,4},{0x10ef,1}}, {{0x27d1e,4},{0x2445e,1}}, {{0x176cc,6},{0x1642,3}}, + {{0x74fe,8},{0x10b3,4}}, {{0xc37,3},{0x1cdb8,5}}, {{0x10c8,3},{0xbf6d,5}}, {{0x422e,3},{0x1fce5,2}}, + {{0x21c04,6},{0xae7,1}}, {{0xc25,3},{0x8907,4}}, {{0x74e6,6},{0x2748,2}}, {{0x12d6e,6},{0x12d74,4}}, + {{0x14cc,4},{0x2349,4}}, {{0x6e53,3},{0xe2c0,4}}, {{0x13cc,9},{0x13d5,7}}, {{0x36e8,6},{0xb54,4}}, + {{0x24291,3},{0x2848,2}}, {{0x3203,4},{0xae7,1}}, {{0xbc2,2},{0x28,1}}, {{0x3a14,6},{0x43bd,4}}, + {{0x78ca,4},{0x154e9,4}}, {{0x3eca,6},{0x3ed0,5}}, {{0x177fe,6},{0x2b,3}}, {{0x445d,6},{0xd8e,4}}, + {{0xb82,3},{0xc67,2}}, {{0x27b4,4},{0x133d0,6}}, {{0x17ee,3},{0xe4d0,6}}, {{0x15612,5},{0xcb8,2}}, + {{0x283d,3},{0x10f3,1}}, {{0xcf3e,2},{0x2b,3}}, {{0x715a,3},{0xae2,1}}, {{0xb8e,2},{0x6b99,7}}, + {{0xbcb,3},{0x12141,4}}, {{0xb9a5,5},{0x5af9,3}}, {{0x6ac5,1},{0x4460,3}}, {{0xc822,10},{0xae7,1}}, + {{0x1a32e,4},{0xc63,3}}, {{0x10ea,3},{0x10116,2}}, {{0x924,2},{0x27b09,2}}, {{0x8aca,5},{0x2c38,4}}, + {{0x2974,12},{0xd0d,2}}, {{0x1ed57,2},{0x734,1}}, {{0x4491,6},{0xb65,2}}, {{0x278a1,3},{0x278a9,2}}, + {{0x10ea,3},{0x1ee0,3}}, {{0x177c,3},{0x1ef04,5}}, {{0x12986,8},{0xbd6,2}}, {{0xb2f,1},{0xc73,2}}, + {{0x178c,3},{0x1c118,4}}, {{0xcd9,3},{0xc3d,3}}, {{0x177c,3},{0xb82,2}}, {{0x5a06,3},{0xaf2,1}}, + {{0xaa9a,2},{0x1a201,2}}, {{0x2b50,6},{0xb066,2}}, {{0xba5,4},{0x11b7,4}}, {{0x2043,5},{0x3511,4}}, + {{0x5ea0,4},{0x2e92,6}}, {{0x20bb,3},{0x1e,1}}, {{0xbb2,2},{0xaf1,1}}, {{0x20543,5},{0xaad1,3}}, + {{0xb7f,3},{0x2f5f,4}}, {{0x13b76,6},{0xb47,2}}, {{0x116d,1},{0x279fb,2}}, {{0x139e,2},{0xc77,2}}, + {{0x8a49,2},{0x139e,2}}, {{0x3abc,12},{0xd0d,2}}, {{0x2c93e,4},{0x410e,2}}, {{0x1290,5},{0x1498,4}}, + {{0x5be0,8},{0xb8f,3}}, {{0xcd5,2},{0xb48,2}}, {{0x10c58,8},{0xb85,2}}, {{0xcb5,3},{0xb97,3}}, + {{0x229b,5},{0x284e,3}}, {{0x4220,10},{0xb2c,4}}, {{0x12cd8,9},{0xae7,1}}, {{0x21,1},{0xd5c,1}}, + {{0x4287,2},{0xf5f4,2}}, {{0x28fd,3},{0xb77,3}}, {{0xb9c,2},{0x2b,2}}, {{0x1084,4},{0xb72,2}}, + {{0xbde,3},{0x989a,4}}, {{0x1a5c,3},{0xd0b,4}}, {{0x14fdc,6},{0xb48,2}}, {{0xd5c,2},{0xc1c,2}}, + {{0x924,1},{0x27a0d,2}}, {{0x100d,5},{0xb2e,2}}, {{0x10ed,2},{0x10ef,1}}, {{0x73d2,5},{0xd0fe,3}}, + {{0xb8f,2},{0xbb5,1}}, {{0x1a1d8,3},{0x1058,4}}, {{0x41dc,3},{0xace0,5}}, {{0xae76,6},{0x2e92,6}}, + {{0xe64,4},{0xfb89,4}}, {{0x1042,4},{0x3450,6}}, {{0x1055,3},{0xae6,2}}, {{0x2796,3},{0x2b,2}}, + {{0x5324,7},{0xcc3,4}}, {{0x151c,6},{0x21cf,9}}, {{0x286c5,4},{0x27d99,2}}, {{0x423c,3},{0x12f1,3}}, + {{0x6d8e,3},{0xc2e,2}}, {{0x234f,12},{0xe72,3}}, {{0x10c8,3},{0x1aaed,1}}, {{0x278a7,3},{0x27abb,2}}, + {{0x2796,4},{0xae5,1}}, {{0x24447,4},{0x19b91,3}}, {{0xd76,6},{0x12fe,2}}, {{0x42a2,6},{0x1f10,4}}, + {{0x1f,1},{0x24c74,2}}, {{0x422e,3},{0xb7c,2}}, {{0x10ca,1},{0x1b54c,7}}, {{0x181c,4},{0x14408,6}}, + {{0x434e,2},{0x251a3,4}}, {{0x244b3,2},{0x410e,2}}, {{0x27,1},{0xae2,2}}, {{0xf85a,5},{0xf85f,6}}, + {{0x1dec2,4},{0xb7d,1}}, {{0x6ac3,3},{0x15c9f,6}}, {{0x9aba,5},{0x12d6,6}}, {{0x47de,6},{0xbd3,3}}, + {{0x28d1,3},{0xcd3,2}}, {{0x422e,3},{0x1f,1}}, {{0x27b4,3},{0xc34,3}}, {{0x10c8,3},{0x25ee,4}}, + {{0x183eb,6},{0x1d8a,3}}, {{0x109ba,8},{0x10dc,2}}, {{0xf85,4},{0xbc0,2}}, {{0xa7da,3},{0x1878,1}}, + {{0x11ef,2},{0xbb4,4}}, {{0x41da,3},{0xaf2,1}}, {{0x70b0,10},{0x70ba,12}}, {{0x6d8e,3},{0xbfc4,6}}, + {{0x142e,1},{0xb70,2}}, {{0xb2d0,6},{0x2a95,5}}, {{0x14faa,6},{0xbb15,4}}, {{0x2c524,4},{0x70b4,2}}, + {{0xcdad,9},{0xfe5,2}}, {{0x1404e,6},{0xb2c,4}}, {{0xc49,3},{0xb8c,2}}, {{0xbc6,2},{0xae5,1}}, + {{0x508d,7},{0x2566,4}}, {{0x423c,3},{0x27b6,1}}, {{0x6ac3,4},{0x1961,3}}, {{0xcb5,3},{0x1dab8,5}}, + {{0xfc9,6},{0x3336,7}}, {{0x1ad0,4},{0xc55,2}}, {{0x3e04,8},{0x11ef,2}}, {{0x2844,3},{0x2847,3}}, + {{0x725e,5},{0xb63,2}}, {{0x66b9,4},{0xc34,3}}, {{0x244bf,4},{0x15798,2}}, {{0xd8e,3},{0x2083f,4}}, + {{0xb6c,4},{0x19ba,3}}, {{0xadd,4},{0x1a05,8}}, {{0x2c830,4},{0x410e,2}}, {{0xae0,1},{0x28,2}}, + {{0x14934,2},{0x10ef,1}}, {{0xbe7,1},{0xc89,3}}, {{0x20bb,3},{0xb64,3}}, {{0x19b5e,5},{0xc63,3}}, + {{0xd1b,1},{0xb8f,2}}, {{0x10ea,3},{0x1c68,3}}, {{0x187a,5},{0x1144,8}}, {{0x36b0,4},{0x107c8,5}}, + {{0xb65,3},{0x2aa0,3}}, {{0xd76,7},{0x4693,6}}, {{0x4108,2},{0x1fe4,5}}, {{0x20141,6},{0xb71,2}}, + {{0x177c,3},{0x1b693,2}}, {{0x28634,1},{0x2c2ac,2}}, {{0xf55e,3},{0xbd1,2}}, {{0x1a859,4},{0xcae4,3}}, + {{0x2859,4},{0xd8b0,4}}, {{0x6f74,4},{0x1b709,2}}, {{0x13ce8,7},{0xb8f,3}}, {{0x180e,2},{0x3a57,3}}, + {{0xb65,2},{0xb67,5}}, {{0x219c,5},{0x187f2,4}}, {{0x4450,4},{0xb8a,2}}, {{0x24525,4},{0xfefe,2}}, + {{0x278a7,3},{0x27a31,2}}, {{0xe6d,2},{0xc30,2}}, {{0x6ac3,3},{0xeb3,3}}, {{0x3df6,5},{0xae7,1}}, + {{0x533e,9},{0x2288,4}}, {{0x804,2},{0x24515,2}}, {{0x10ea,3},{0x675f,6}}, {{0x315e,3},{0xb52,6}}, + {{0x41da,3},{0x10dc,2}}, {{0xbe4,1},{0x1c68,3}}, {{0x178c,3},{0xfb7c,5}}, {{0x3838,8},{0x1b80,4}}, + {{0x1b801,6},{0xfef4,4}}, {{0x12d3,6},{0x31f8,4}}, {{0x2151,5},{0xb47,2}}, {{0x2232,12},{0xb8f,3}}, + {{0x1aa90,5},{0x2b,1}}, {{0x6b47,4},{0x2abe,5}}, {{0x20b5,3},{0x28,1}}, {{0x4839,10},{0xb63,2}}, + {{0x6ac3,3},{0x10ef,1}}, {{0xcb5,3},{0x102f9,3}}, {{0x27e2a,2},{0x2445e,1}}, {{0xbe0,1},{0x13d31,6}}, + {{0x30,20},{0x532,4}}, {{0x116d,1},{0x278a9,2}}, {{0xcb8,2},{0xc3d,3}}, {{0x2920,4},{0x104a8,6}}, + {{0x3854,5},{0x2b,3}}, {{0x27b6,1},{0x28,2}}, {{0xf10,4},{0x290f,3}}, {{0x14cc,4},{0xae7,1}}, + {{0x116d,2},{0x278af,1}}, {{0x10f0,1},{0xb2e,2}}, {{0xbde,3},{0xb72,2}}, {{0x27959,2},{0x27897,1}}, + {{0x15fc,9},{0xf05,7}}, {{0x1dcf,3},{0xd17,3}}, {{0x14bc,5},{0xd0b,4}}, {{0xb44,3},{0xbb5,1}}, + {{0xcdb,4},{0x411c,4}}, {{0x14bb5,2},{0x10ef,1}}, {{0x4a27,4},{0x1c351,4}}, {{0x4a68,5},{0xeb3,3}}, + {{0x974e,7},{0x55d1,4}}, {{0xb8f,2},{0x2bfc,2}}, {{0xd0f,6},{0x7288,6}}, {{0x26c6,1},{0x10d89,4}}, + {{0x1095,3},{0x101b,3}}, {{0xb6c,7},{0xd78,5}}, {{0x17ae,1},{0x132f,3}}, {{0x3678,6},{0xb52,6}}, + {{0xbde,3},{0x16f8,3}}, {{0x1084,3},{0xae2,2}}, {{0x49ac,2},{0x2b,3}}, {{0x2c446,4},{0xab1,2}}, + {{0xcc7,3},{0x4dd4,7}}, {{0x14954,7},{0xfe5,2}}, {{0xb81,4},{0x80bd,4}}, {{0x1ed69,3},{0x10f6,1}}, + {{0xda9,10},{0x1257,3}}, {{0x1c,1},{0x77a2,3}}, {{0x1719,3},{0xaea,2}}, {{0x679d,8},{0x67a5,5}}, + {{0xbb15,3},{0x1152,3}}, {{0x3e92,3},{0x7a5e,4}}, {{0x30,2},{0x27d95,4}}, {{0xba5,4},{0x13b37,3}}, + {{0x24a2d,2},{0x27e48,3}}, {{0xb4a,4},{0x4ae5,5}}, {{0x1f711,6},{0xb55,2}}, {{0x142e,1},{0x14eb3,3}}, + {{0x27a8b,2},{0x278af,1}}, {{0xa606,9},{0xa60f,3}}, {{0x257a,4},{0x28,2}}, {{0xaeca,5},{0xfdd,2}}, + {{0x1e,1},{0x1089,2}}, {{0xadf,2},{0x13a6,4}}, {{0x2793d,4},{0x1b6b3,2}}, {{0x2797d,2},{0x278d6,1}}, + {{0x598a,6},{0x5990,7}}, {{0xaea,1},{0xa141,9}}, {{0xfcaf,2},{0xd5c,1}}, {{0x1cbf,5},{0x76fd,5}}, + {{0x271e,3},{0xeb3,3}}, {{0x103a,3},{0x8fee,4}}, {{0xcbd,3},{0xb47,2}}, {{0x29e8c,3},{0x279bf,2}}, + {{0x372e,8},{0x3736,6}}, {{0x6b04,5},{0x2030,4}}, {{0xae9,2},{0xaea,1}}, {{0xbe7,1},{0x1402,2}}, + {{0xab9c,1},{0x10ec,1}}, {{0x19b3,4},{0x131b3,4}}, {{0x1b8e7,4},{0x70cc,4}}, {{0xc2e,2},{0xb2e,2}}, + {{0x1dbe,5},{0x584c,5}}, {{0xb49e,4},{0x4646,5}}, {{0x4728,6},{0x1058,4}}, {{0x16343,7},{0xd0d,2}}, + {{0x27983,2},{0x116d,1}}, {{0x85de,5},{0xb68,4}}, {{0x1b6ab,2},{0x116d,1}}, {{0x9796,9},{0x2b,3}}, + {{0x18a7,3},{0x132f,3}}, {{0x84d6,7},{0xbcf0,4}}, {{0x27cea,1},{0x2867e,2}}, {{0x2789b,3},{0x27923,2}}, + {{0x14dac,8},{0x51f0,2}}, {{0x35fd,3},{0xb55,2}}, {{0x19b96,2},{0x1878,1}}, {{0x4415,2},{0x428d,3}}, + {{0x725e,5},{0x1aa6,3}}, {{0x13228,7},{0x2b,3}}, {{0x201e9,6},{0x1abd7,2}}, {{0x10f7,1},{0x43bd,4}}, + {{0x10ca,1},{0x26f80,2}}, {{0xb55,2},{0x528f,6}}, {{0x141c,5},{0x1c61,4}}, {{0xe75,5},{0xcae,7}}, + {{0x26e2,6},{0x29ec,6}}, {{0x312a,7},{0xfe5,6}}, {{0xab3a,5},{0x1df6,3}}, {{0x6ac3,6},{0x6ac9,7}}, + {{0xb215,5},{0x2a,4}}, {{0x14ee4,2},{0xe6c,3}}, {{0x10f0,1},{0x28522,2}}, {{0x3ed6,5},{0xed68,5}}, + {{0x27a7f,2},{0x278af,1}}, {{0xaaf2,5},{0xc72,3}}, {{0x2bfc,2},{0xfe5,2}}, {{0x1459e,3},{0xae5,1}}, + {{0x10ca,1},{0x40b6,3}}, {{0xde9,1},{0xbb5,1}}, {{0xb2c,2},{0xb54,2}}, {{0x6d8e,3},{0x3cba,3}}, + {{0x1b6db,4},{0xfb8b,2}}, {{0x227f,3},{0x2f54,5}}, {{0xaeca,4},{0xe13d,4}}, {{0x159c,4},{0xb7d,2}}, + {{0x17de,2},{0x21,1}}, {{0x2c0fe,3},{0x251df,1}}, {{0x4106,5},{0xde9,1}}, {{0xd76,7},{0x46e1,6}}, + {{0x41da,4},{0xdfa,3}}, {{0x1d46,4},{0x171d9,4}}, {{0xd41,3},{0x15a1,3}}, {{0xd41,3},{0xbb15,6}}, + {{0x2a96c,2},{0x2a96c,2}}, {{0x10f6,1},{0x4351,2}}, {{0xae7,1},{0xb4b,2}}, {{0xb49,2},{0x8766,4}}, + {{0x39d2,3},{0xaea,1}}, {{0xafc6,5},{0xa557,7}}, {{0xbeb,2},{0x1485,7}}, {{0x278ad,3},{0x279a1,2}}, + {{0x286a,2},{0x10e20,4}}, {{0x2d,1},{0x2db1,3}}, {{0x1b6ab,2},{0x278af,1}}, {{0xb7d,1},{0x10b9,3}}, + {{0xfa14,4},{0x1a,1}}, {{0x70b2,4},{0x10188,4}}, {{0x13bc,4},{0x46fa,6}}, {{0x2b7cb,2},{0x2b7cd,2}}, + {{0x1095,3},{0x41ef,2}}, {{0x10ea,3},{0xf5e,3}}, {{0x776e,8},{0xc34,3}}, {{0x244b3,2},{0x159cb,2}}, + {{0xc1e,2},{0xdf9,5}}, {{0xa7da,3},{0x2ae7,4}}, {{0x13160,6},{0xcc0,3}}, {{0x3e04,5},{0x1e,1}}, + {{0x2a948,1},{0x432,1}}, {{0x2912,4},{0xc30,2}}, {{0x6d81,3},{0xbc6a,4}}, {{0x2c758,4},{0x6f78,2}}, + {{0xcb5,3},{0x1864,2}}, {{0x10c8,3},{0xc4d,2}}, {{0xb7d,2},{0x3825,5}}, {{0x27989,2},{0x1b6ab,1}}, + {{0x4887,10},{0xc8e,3}}, {{0x6d81,3},{0x1561,3}}, {{0x41da,3},{0x10f2,1}}, {{0x1ae3,3},{0xb2f7,5}}, + {{0x2c55a,4},{0x5c78,2}}, {{0x18a63,6},{0xe6e,3}}, {{0x2c39e,4},{0xa51,2}}, {{0x10c8,3},{0x290fe,2}}, + {{0x5a06,3},{0xb78,2}}, {{0x78be,7},{0x4a3c,5}}, {{0x10ef,1},{0x1cef,3}}, {{0x10c8,3},{0xc67,2}}, + {{0x2c6bc,4},{0x1b23d,2}}, {{0x2446a,3},{0x24f90,2}}, {{0x1476a,5},{0x10a0f,5}}, {{0xeb2,1},{0x1bd5f,6}}, + {{0xae2,1},{0xcc0,3}}, {{0xe893,5},{0xe898,6}}, {{0xaea,1},{0x1862,3}}, {{0x10698,5},{0xf10,3}}, + {{0xf49b,9},{0xb55,2}}, {{0x1084,4},{0xcd2,7}}, {{0x14934,2},{0x209bc,5}}, {{0xb6c,3},{0x323c,2}}, + {{0xf6fa,5},{0x1a489,4}}, {{0xaca2,4},{0x705f,4}}, {{0x422e,3},{0x139e,2}}, {{0x1555e,6},{0x173e,3}}, + {{0x19e88,5},{0x1ab7,4}}, {{0x1ba6d,7},{0xae7,1}}, {{0x1a1f6,2},{0x4284,3}}, {{0x2d12,4},{0x1fb7,5}}, + {{0x251cb,1},{0x22cf8,1}}, {{0x28e8e,2},{0x1ed53,1}}, {{0x2b7cb,2},{0x28633,2}}, {{0x350c,7},{0x222c,6}}, + {{0xf212,3},{0xf215,8}}, {{0x59a4,6},{0xb52,5}}, {{0x4998,7},{0x1719,3}}, {{0x702e,3},{0x7031,9}}, + {{0x6855,3},{0x1b496,5}}, {{0xd5ab,5},{0xbac,4}}, {{0x2066,4},{0x206a,6}}, {{0x1abcb,4},{0xbe7,1}}, + {{0xbeb,1},{0x20aa9,2}}, {{0x22e6,5},{0x1257,2}}, {{0x244a1,2},{0xab1,2}}, {{0x1b1b,11},{0xc7b,4}}, + {{0xce3,2},{0xaea,1}}, {{0x423c,3},{0x1a5dd,6}}, {{0x10ca,2},{0x2d68,5}}, {{0xfe71,6},{0xd7a,3}}, + {{0x10f0,1},{0xc67,2}}, {{0xbe4,1},{0x4882,3}}, {{0x2c974,4},{0x70d2,2}}, {{0x26c6,1},{0xcbd,3}}, + {{0x70dc,4},{0x6f72,2}}, {{0xaca2,3},{0xe6d,2}}, {{0x16dc,5},{0xedcb,6}}, {{0x10fb,3},{0x6ac5,1}}, + {{0xbde,3},{0xc30,2}}, {{0x244ad,2},{0x244fd,4}}, {{0x67aa,6},{0xe401,4}}, {{0x10fb,3},{0x9b89,7}}, + {{0x2c2da,3},{0xb31,1}}, {{0xaca2,3},{0xcf6,3}}, {{0x2318,4},{0xb2e,2}}, {{0x2ede,6},{0x2ddc,6}}, + {{0x142e,1},{0xae5,1}}, {{0x30,2},{0x27e2b,2}}, {{0xcf6,3},{0x79f9,4}}, {{0xd4fb,7},{0x1260,4}}, + {{0xecc,3},{0x583f,3}}, {{0x116e,1},{0x278a3,2}}, {{0xb60,2},{0xcc0e,3}}, {{0xb48,2},{0xde2,3}}, + {{0x422e,3},{0x8a49,2}}, {{0xab9c,1},{0x10f6,1}}, {{0x6d81,3},{0x19f47,2}}, {{0x70b0,6},{0x1b7dd,8}}, + {{0x2ae87,2},{0x2445e,1}}, {{0x4ebc,5},{0xb8d,5}}, {{0xae7,2},{0x362c,5}}, {{0xb30,2},{0x27cea,1}}, + {{0x17088,6},{0x10dc,2}}, {{0xb6c,3},{0x1d8a,3}}, {{0x10ea,3},{0x384a,3}}, {{0x995e,8},{0xae7,1}}, + {{0xf82e,5},{0xd5b0,6}}, {{0x27a73,2},{0x116c,1}}, {{0x441c,3},{0x13f13,5}}, {{0x27d3b,2},{0x2445e,1}}, + {{0x28efb,2},{0x1aaed,1}}, {{0x41c0,2},{0x5120,4}}, {{0x10c8,3},{0x1864,2}}, {{0xe9f5,4},{0xb54,3}}, + {{0x4971,6},{0x101a,4}}, {{0x36be,5},{0x1bdb,3}}, {{0x2b,2},{0x8afc,2}}, {{0xc39,2},{0xbb83,4}}, + {{0xcc0e,3},{0x2b,1}}, {{0x79c6,8},{0x1489,3}}, {{0x41da,3},{0x1b137,3}}, {{0x251d8,2},{0x2446c,1}}, + {{0x11ffe,6},{0xbc4,4}}, {{0xb7d,1},{0xc1c,2}}, {{0x709c,4},{0xff20,4}}, {{0x20bd,4},{0x10dc,2}}, + {{0x278c9,2},{0x27a25,2}}, {{0x2841e,3},{0x251d8,2}}, {{0xcd3,2},{0x1055,3}}, {{0xe3fa,7},{0xa049,4}}, + {{0x44df,4},{0x12b26,4}}, {{0xb6e,2},{0xb80a,4}}, {{0xfb1,2},{0xb79,2}}, {{0x253a3,4},{0x1b8a5,4}}, + {{0x17be7,6},{0xc8a3,3}}, {{0x1a,1},{0x1c8b,7}}, {{0xbd4,2},{0x750e,7}}, {{0x152c4,2},{0x27b6,1}}, + {{0xd41,3},{0xbb5,1}}, {{0x278a7,3},{0x27a3d,2}}, {{0xa61e,5},{0xbbf,2}}, {{0x10ef,1},{0x1abd7,2}}, + {{0x278a7,3},{0x27aa9,2}}, {{0x1051,4},{0x19007,5}}, {{0x27b4,3},{0x2b,2}}, {{0x1095,4},{0x2ea9,5}}, + {{0x2eb4,9},{0x1362,3}}, {{0x1cce,10},{0xc32,5}}, {{0x30af,5},{0xb52,5}}, {{0xb698,7},{0x47b3,4}}, + {{0x96e2,5},{0x2a09,4}}, {{0x6d8e,3},{0x29386,2}}, {{0x13e14,7},{0x2b,3}}, {{0x178c,3},{0x1ae4e,2}}, + {{0x41da,3},{0xbe0,1}}, {{0x59a4,6},{0xf05,7}}, {{0x283b,5},{0x10f3,1}}, {{0x4119,3},{0x14d5,3}}, + {{0x10ef,1},{0x15a66,2}}, {{0x5ec7,5},{0x188ca,4}}, {{0x2db1,3},{0xc34,3}}, {{0x12f1c,7},{0x2b,3}}, + {{0xaea,2},{0xcd5,2}}, {{0x41da,3},{0xc593,4}}, {{0x549d,7},{0x1577,5}}, {{0x2842,2},{0x2848,2}}, + {{0x6d81,3},{0x40b6,3}}, {{0x6ac3,3},{0x2a24,3}}, {{0x10906,7},{0x2b,3}}, {{0x278a1,3},{0x27a07,2}}, + {{0x229b,5},{0x4dbb,5}}, {{0xf5a5,5},{0xf5aa,6}}, {{0xfdeb,5},{0x10dc,2}}, {{0x10c8,3},{0xaf63,2}}, + {{0x102f,6},{0x2af4,7}}, {{0xae7,1},{0xba2c,4}}, {{0xb984,6},{0x2182,5}}, {{0x4e9f,7},{0x4ea6,6}}, + {{0x10c8,3},{0x15adc,2}}, {{0x181c,3},{0x227a,3}}, {{0x10f7,1},{0xbe0,1}}, {{0x1878,1},{0x2840,2}}, + {{0x14b6,2},{0x1d,1}}, {{0x9286,9},{0xc63,3}}, {{0x19fb3,3},{0x16c2d,4}}, {{0xbe7,2},{0x1a5c,3}}, + {{0x70ea,3},{0x2be4,6}}, {{0x1b6cb,1},{0x780,1}}, {{0x5a81,6},{0x1275,7}}, {{0x2474d,2},{0x70b4,2}}, + {{0x265b,4},{0x1ad2,5}}, {{0x4284,2},{0x2853d,3}}, {{0xd1b,1},{0x16f7,4}}, {{0x8b06,6},{0xb7a,5}}, + {{0xbe0,1},{0x411c,4}}, {{0xb257,5},{0x1362,3}}, {{0x1c1a,6},{0x1c20,5}}, {{0x5ae2,6},{0xae7,1}}, + {{0xad32,4},{0xc30,2}}, {{0x1310,4},{0x4d46,3}}, {{0xfe38,5},{0xc2e,2}}, {{0x20553,5},{0x4412,3}}, + {{0xab9a,3},{0x187c,3}}, {{0xb28e,5},{0x2693,3}}, {{0x41f8,2},{0x127a9,5}}, {{0x3694,4},{0x10ab9,5}}, + {{0xbed,3},{0xbbf,2}}, {{0x2b5e,9},{0xb65,2}}, {{0x30,2},{0x924,32}}, {{0x1b26c,4},{0x1b26c,4}}, + {{0xddc,4},{0x423f,4}}, {{0x2796,3},{0x19f5,9}}, {{0x20bb,3},{0x7512,4}}, {{0x251d0,2},{0x2446c,1}}, + {{0x278a1,3},{0x279d1,2}}, {{0x73ae,10},{0xb2c,2}}, {{0xc52,2},{0x1a10,2}}, {{0x1f71,8},{0x1aa9,7}}, + {{0xbe4,1},{0x2b,2}}, {{0xcde,3},{0x1e,1}}, {{0xde17,6},{0xaf1,1}}, {{0x162c,6},{0xa60f,3}}, + {{0x261f,4},{0xb72,3}}, {{0x9b10,6},{0xb78,2}}, {{0x1051,4},{0x3053,5}}, {{0xaa32,8},{0xaa21,4}}, + {{0x839e,7},{0x83a5,5}}, {{0x1ed69,3},{0x28da,1}}, {{0xacbc,5},{0xd0b,4}}, {{0x83c2,7},{0x83c9,5}}, + {{0x1b57,4},{0x42a7,3}}, {{0xf41,8},{0x103b,5}}, {{0x26c4,4},{0xb7c,2}}, {{0xacf6,4},{0x10dc,2}}, + {{0x13ed2,5},{0xbac,4}}, {{0x3ae6,10},{0x2b,3}}, {{0xfcaf,2},{0x1f2c5,2}}, {{0x4f2e,5},{0xc9f,4}}, + {{0xbd2,4},{0xae7,1}}, {{0x2aa4b,4},{0x2523b,4}}, {{0x30,2},{0x28e51,3}}, {{0xaee9,2},{0x10fa,1}}, + {{0x2c4f4,4},{0x1cf1d,2}}, {{0x1a10,2},{0x2b,2}}, {{0x10ec,1},{0xaa98,2}}, {{0x2b26,8},{0x2b2e,6}}, + {{0xf10,3},{0x2b,1}}, {{0xddc,4},{0x1c8f,3}}, {{0x1a2b,12},{0x10dc,2}}, {{0x24,1},{0x432,1}}, + {{0x1aee,6},{0x4afd,7}}, {{0x17bc,3},{0x26c6,1}}, {{0x423c,3},{0x8afd,9}}, {{0x18bef,6},{0xcc0,3}}, + {{0x40ce,5},{0x1637e,4}}, {{0xcd9,4},{0xe062,7}}, {{0x10472,4},{0x6361,5}}, {{0xa7d,6},{0x9a9,1}}, + {{0x6ac3,3},{0x2bfc,3}}, {{0xeec,5},{0x1861,3}}, {{0xb7c,2},{0xcb8,2}}, {{0x284a,4},{0x284e,11}}, + {{0xb6e,2},{0xe4a,4}}, {{0x1c,1},{0xb48,2}}, {{0x41da,3},{0x2b76,3}}, {{0xae7,2},{0x3fb8,3}}, + {{0x1098,3},{0xb2f,1}}, {{0xc67,3},{0xb47,2}}, {{0x122c,4},{0x1645f,4}}, {{0xab9a,3},{0xb48,2}}, + {{0x116d,1},{0x27ae5,2}}, {{0x432,32},{0x432,4}}, {{0xee81,7},{0x10dc,2}}, {{0x15b0,3},{0x32f3,4}}, + {{0x10fb,4},{0xa0be,8}}, {{0x12a62,7},{0x35fd,3}}, {{0xae6,2},{0x2bfd,2}}, {{0x1fc69,5},{0x1a729,3}}, + {{0x3694,4},{0x166ef,5}}, {{0x40b2,4},{0xc67,2}}, {{0x10e6a,6},{0xb949,4}}, {{0xb2f,1},{0x1393,3}}, + {{0x117c,1},{0x28633,2}}, {{0x10f0,1},{0xab9c,1}}, {{0x27a31,2},{0x278d6,1}}, {{0xf52,4},{0x4500,6}}, + {{0x181c,3},{0x1595a,2}}, {{0x225f,9},{0x4ab0,3}}, {{0x1548c,7},{0xeb3,3}}, {{0x10f2,1},{0x283e,2}}, + {{0x1561,3},{0xa497,6}}, {{0x1d55,8},{0x47ad,5}}, {{0xfcaf,2},{0xbeb,1}}, {{0x41da,3},{0xcc0,3}}, + {{0xeec,7},{0x1463,7}}, {{0x1b4c,3},{0xae6,2}}, {{0x3db0,6},{0x11e6,6}}, {{0xc37,3},{0x170ca,6}}, + {{0x2778,10},{0xae7,1}}, {{0x374a,6},{0xae7,1}}, {{0x3704,6},{0xb72,3}}, {{0x9a4e,9},{0x2939,3}}, + {{0xb2f,1},{0x1254,3}}, {{0x30,2},{0x2a9d0,2}}, {{0x2c67a,4},{0x6fae,2}}, {{0x16a03,7},{0x10dc,2}}, + {{0xf69,3},{0x2b,2}}, {{0x26c6,1},{0xff4c,6}}, {{0x10ed,2},{0x1878,1}}, {{0x14eb0,6},{0xae7,1}}, + {{0xadd,5},{0xcc5b,5}}, {{0x278a1,3},{0x27a2b,2}}, {{0x38c4,8},{0xbb4,4}}, {{0x1cec,5},{0xb2f,1}}, + {{0x20c0,3},{0x1b,1}}, {{0x10d9,8},{0x10e1,9}}, {{0x27d24,3},{0x251df,1}}, {{0x4a5b,6},{0x5ab1,4}}, + {{0xf02,3},{0x28,1}}, {{0x17ae,2},{0xcc0,3}}, {{0x1ad9f,6},{0xb47,2}}, {{0x11d88,6},{0x31f8,4}}, + {{0x271e,3},{0xc3a,3}}, {{0xe77,3},{0xbb4,4}}, {{0x278db,2},{0x924,2}}, {{0x6f21,8},{0xce8,3}}, + {{0x244f5,2},{0x24733,2}}, {{0x1aa90,6},{0xaad1,3}}, {{0x278a1,3},{0x278e1,2}}, {{0x318c,5},{0xc63,3}}, + {{0x4290,4},{0xdf5,4}}, {{0x2c416,4},{0x1b709,2}}, {{0xd54,1},{0xae7,2}}, {{0x1362,3},{0x4031,3}}, + {{0x10ea,3},{0xd57,2}}, {{0x441c,3},{0x9fa0,5}}, {{0xd41,3},{0x12fe,1}}, {{0xc89,2},{0xb85,2}}, + {{0x933a,9},{0x2b,3}}, {{0xbeb,1},{0x11ef,2}}, {{0xd41,3},{0x174e,3}}, {{0x7d0e,9},{0xe72,3}}, + {{0xe83b,7},{0xbc1,2}}, {{0x10fb,3},{0x15b3f,2}}, {{0x1b,1},{0xdc1,5}}, {{0x10fb,3},{0xaf1,2}}, + {{0x10a78,6},{0x3e31,3}}, {{0x141c,4},{0x1498,3}}, {{0xd41,3},{0xbd1,2}}, {{0xdd5,2},{0xb2e,2}}, + {{0x177c,7},{0xd8e,4}}, {{0xfd3b,7},{0x6797,4}}, {{0xc25,4},{0x1045,3}}, {{0x12f1,2},{0x3cc8,4}}, + {{0xf9f5,6},{0xae7,1}}, {{0x177c,3},{0xfe1,4}}, {{0x271e,3},{0x4532,8}}, {{0x12a62,5},{0xae7,2}}, + {{0xa7da,3},{0xb336,7}}, {{0xbd2,3},{0x4bcf,4}}, {{0xd5d7,5},{0x1719,3}}, {{0x14fc,4},{0x952a,8}}, + {{0xadd,5},{0x628f,6}}, {{0x178c,3},{0xc6a9,3}}, {{0xbd1,2},{0xc3a,3}}, {{0xbd2,3},{0x3d9d,5}}, + {{0x7076,3},{0xbd4,2}}, {{0x178c,3},{0xbe85,6}}, {{0x25c5,5},{0xbaa,6}}, {{0x357c,7},{0x3591,6}}, + {{0x10f0,1},{0xcbd,3}}, {{0xab9a,3},{0x2a24,3}}, {{0x27b6,1},{0x16f8,3}}, {{0x13d24,6},{0xb9c,2}}, + {{0x17873,6},{0x10dc,2}}, {{0x1ab2,4},{0x27,1}}, {{0x5a5a,5},{0xde2,4}}, {{0x2c9f8,4},{0xff02,2}}, + {{0xf752,4},{0x1f95d,4}}, {{0xbcb,3},{0xae0,2}}, {{0x2796,4},{0xbb4,4}}, {{0x155dd,3},{0x428d,3}}, + {{0x30,2},{0x2b878,4}}, {{0xc34,2},{0xcf68,2}}, {{0xbe4,1},{0x15adc,2}}, {{0xbe0,1},{0x3e15,4}}, + {{0x2d,1},{0xae0,1}}, {{0x16dc,10},{0xb52,6}}, {{0xffca,7},{0x5cd6,3}}, {{0x17b31,6},{0xae7,1}}, + {{0x181e,2},{0x1700,11}}, {{0x1ed53,1},{0x2446f,2}}, {{0x4cd8,6},{0xc32,5}}, {{0xb63,2},{0x1e,1}}, + {{0x2445c,4},{0x24467,3}}, {{0x1a10,2},{0x1701,3}}, {{0x1769f,6},{0x101a,3}}, {{0x1b4e3,1},{0x251df,1}}, + {{0x6d81,3},{0x10f0,1}}, {{0x10f3,1},{0x10e2b,3}}, {{0xae0,1},{0x14dcd,6}}, {{0xae6,2},{0xc63,3}}, + {{0x279f5,2},{0x278af,1}}, {{0xf96,9},{0xb28,8}}, {{0x563d,9},{0xb63,2}}, {{0x6ac5,1},{0x28da,1}}, + {{0x26c4,3},{0x28571,2}}, {{0xcbbe,8},{0x10dc,2}}, {{0x2789b,3},{0x278b5,2}}, {{0x1f,1},{0xbd6,2}}, + {{0x145f8,5},{0x102dd,5}}, {{0x670e,6},{0x2b,3}}, {{0x13390,9},{0xae7,1}}, {{0xab9a,3},{0x1254,3}}, + {{0xaaf2,5},{0xb2c,3}}, {{0x594f,4},{0xc63,3}}, {{0x1e,1},{0x59f5,3}}, {{0x17bc,3},{0xb7d,1}}, + {{0xaf1,1},{0x5fc7,4}}, {{0xaea,2},{0xbd6,2}}, {{0xc25,4},{0x13e4,3}}, {{0x1b6cb,1},{0x7c4,1}}, + {{0xaf1,1},{0xb52,6}}, {{0x278a1,3},{0x27a91,2}}, {{0x1a94,6},{0x3a39,3}}, {{0x50a7,8},{0x25c1,4}}, + {{0x109a6,5},{0x109ab,5}}, {{0x10ea,3},{0xf5f4,2}}, {{0xceb,3},{0xbb5,1}}, {{0xa61e,5},{0x5882,4}}, + {{0x1c,1},{0xcb8,2}}, {{0x2b,2},{0x2b,2}}, {{0x703f,4},{0xb2d,3}}, {{0x104d6,6},{0xc45f,4}}, + {{0x2445f,1},{0x27e61,3}}, {{0x27989,2},{0x27897,1}}, {{0x10ca,1},{0xf8d1,2}}, {{0x178c,3},{0x14b6,2}}, + {{0x2043,9},{0xff7,5}}, {{0x23d94,5},{0xb78,2}}, {{0xe75,6},{0x27,1}}, {{0x2574,2},{0xca7,3}}, + {{0xa80a,5},{0xb79,2}}, {{0xc29,2},{0xb55,3}}, {{0x2c686,4},{0xff26,2}}, {{0xd5c,1},{0x1492f,2}}, + {{0x19,1},{0x24a30,3}}, {{0x1e,1},{0xd8b0,8}}, {{0x1c56,12},{0xb78,2}}, {{0x2474d,4},{0x24733,2}}, + {{0x2c3c8,4},{0x806,2}}, {{0xbb7e,9},{0x2b,2}}, {{0xbde,3},{0xfe1,4}}, {{0xa7da,3},{0xb82,2}}, + {{0x12b68,5},{0x10dc,2}}, {{0x261f,4},{0x16ce,4}}, {{0x1cec,5},{0xc67,2}}, {{0x20bb,3},{0x2745,3}}, + {{0x19a6b,4},{0xc1c,2}}, {{0x11cd4,6},{0x46fa,4}}, {{0xbde,3},{0xb74,2}}, {{0x3a39,3},{0x4bcf,4}}, + {{0x6f07,6},{0xaea,1}}, {{0xab48,3},{0xae6,2}}, {{0x46f4,4},{0xb861,4}}, {{0xbd4,2},{0x12d74,4}}, + {{0xb03a,3},{0x25440,3}}, {{0x1b4e4,1},{0x780,1}}, {{0x8a3a,6},{0x2279,4}}, {{0x177e,5},{0xfdf,3}}, + {{0x3a55,5},{0xb78,2}}, {{0x879a,7},{0x2b,1}}, {{0xf85,4},{0x12fe,2}}, {{0xa9c6,7},{0x13d3,4}}, + {{0xac8a,4},{0x904d,5}}, {{0x2b2ff,2},{0x2b2ff,2}}, {{0xcd9,3},{0x1089,2}}, {{0xcf6,3},{0x101c,2}}, + {{0x20563,4},{0x27cb9,2}}, {{0x1b4e3,1},{0x24a2d,2}}, {{0x2ec7,6},{0x16f8,3}}, {{0x17a3e,5},{0x1f,1}}, + {{0xf65,3},{0x1d22,6}}, {{0x1684,3},{0xb7c,3}}, {{0xc1c,2},{0x25c2,3}}, {{0x3a14,6},{0x116fe,4}}, + {{0x142c,8},{0x1e6b,7}}, {{0x19930,7},{0xae7,1}}, {{0x1b06f,8},{0xae7,1}}, {{0x1c,1},{0xbc1,2}}, + {{0x6fc2,6},{0x20b1f,6}}, {{0x6d8e,3},{0xaea,1}}, {{0x5478,4},{0x1bda,4}}, {{0x161c,6},{0xf59,3}}, + {{0x22fdf,5},{0xc30,2}}, {{0x194a,5},{0x6518,7}}, {{0x1d85f,6},{0xae7,1}}, {{0x16961,6},{0xc63,3}}, + {{0xbcb,3},{0x2b,3}}, {{0x19f3e,2},{0x2098b,5}}, {{0x2445c,3},{0x253eb,4}}, {{0x17be,2},{0xae8,2}}, + {{0xceb,4},{0xa7c5,6}}, {{0xb4a,4},{0xb55,3}}, {{0xb6b9,5},{0xb52,5}}, {{0x1621,4},{0x3fdc,4}}, + {{0x5a19,5},{0x91cb,7}}, {{0xbe7,4},{0xbeb,6}}, {{0xcf02,5},{0xe367,4}}, {{0x178c,3},{0x12ff,2}}, + {{0xab9a,3},{0x1ee0,3}}, {{0x6c3e,3},{0x1621,4}}, {{0xa0de,6},{0x3e14,3}}, {{0x1ab2,4},{0x3c11,4}}, + {{0xd78,5},{0xb2f,1}}, {{0xf4dd,5},{0xdf51,5}}, {{0x4617,5},{0xbd1,2}}, {{0x10fb,4},{0x28,2}}, + {{0x318c,7},{0xd0b,4}}, {{0xd41,3},{0xb8f,2}}, {{0x1610a,6},{0x69ce,3}}, {{0x1387e,9},{0xae7,1}}, + {{0x23a9,10},{0xb52,5}}, {{0xd41,4},{0xb79,2}}, {{0xc77,2},{0xc34,2}}, {{0x278a1,3},{0x27a49,2}}, + {{0xaf63,2},{0x10ef,1}}, {{0xc940,10},{0xae7,1}}, {{0xaca2,3},{0xc6a9,3}}, {{0x177c,3},{0xd45,3}}, + {{0x278a7,3},{0x27af7,2}}, {{0x5949,6},{0xb2c,2}}, {{0x4a82,8},{0xae7,1}}, {{0xb6c,3},{0x1f,1}}, + {{0xcfd,5},{0x1e454,3}}, {{0x47f8,8},{0x2585,4}}, {{0xeacf,7},{0x10dc,2}}, {{0x27d39,4},{0x24467,2}}, + {{0x23ba3,4},{0x3718,3}}, {{0x116d,1},{0x27995,2}}, {{0xdba,4},{0x12d7,5}}, {{0x12fc,3},{0x4413,2}}, + {{0x41e8,6},{0xb55,2}}, {{0x101a,3},{0xb65,2}}, {{0x5575,4},{0xb65,2}}, {{0x27ce8,3},{0x2446c,1}}, + {{0xf6e4,5},{0x43bd,4}}, {{0x10f6,1},{0x2beb0,2}}, {{0x177c,3},{0x20986,3}}, {{0x17bc,3},{0x10119,2}}, + {{0x15b48,10},{0x15b52,6}}, {{0x244af,2},{0xab1,2}}, {{0x30,2},{0x924,4}}, {{0x27959,2},{0x278d6,1}}, + {{0x1f069,6},{0xd0d,2}}, {{0x71e6,5},{0x71eb,5}}, {{0x2b,2},{0x25c2,3}}, {{0x14cc,4},{0x12be,3}}, + {{0x4108,2},{0xb76,3}}, {{0x1c,1},{0x1089,2}}, {{0xb7f,3},{0x4f65,3}}, {{0x152c0,6},{0x152c6,4}}, + {{0x17a59,5},{0x17a70,4}}, {{0x16dc,10},{0x11b8,4}}, {{0xcd9,3},{0x9911,5}}, {{0x6ac3,4},{0x4403,2}}, + {{0xaca2,4},{0xcc0,3}}, {{0x27b6,1},{0x225f3,4}}, {{0x10ca,1},{0xbd8,2}}, {{0xb6e,2},{0x114d,2}}, + {{0xa83c,7},{0x4459,3}}, {{0x2799b,2},{0x278dc,1}}, {{0xb7f,3},{0xcab,3}}, {{0x10ca,1},{0x1ae32,2}}, + {{0xcd9,5},{0x8a48,4}}, {{0x27e1c,2},{0x251d8,2}}, {{0xc31,3},{0x14e1,4}}, {{0xfda0,2},{0xb2f,1}}, + {{0xb92,5},{0xf79,3}}, {{0xab9a,3},{0x238b7,4}}, {{0xa82e,6},{0x46fa,6}}, {{0xbe4,1},{0x1a81d,2}}, + {{0x295a4,2},{0x43e3,1}}, {{0x441c,3},{0x1cef,3}}, {{0xba5,4},{0x1f84,3}}, {{0x5915,5},{0x5aae,3}}, + {{0x3e58,4},{0xfe5,6}}, {{0x2446c,1},{0x7c4,1}}, {{0x5288,5},{0x40b8,2}}, {{0x3a22,4},{0x9b06,8}}, + {{0x283b,4},{0x1aaed,1}}, {{0x2a530,4},{0x116c,1}}, {{0x4124,5},{0xc006,5}}, {{0xab9c,1},{0x1a,2}}, + {{0x12fe,2},{0x4002,7}}, {{0x188f2,6},{0xc8e,3}}, {{0x116e,1},{0x278b5,2}}, {{0x10fb,3},{0x1b693,2}}, + {{0x5782,9},{0xb54,4}}, {{0x10a7a,4},{0xaf2,1}}, {{0x10ec,1},{0xc1c,2}}, {{0x1f,2},{0xeb2,1}}, + {{0x10f0,1},{0xc4d,2}}, {{0x178c,3},{0xb2c,2}}, {{0x43e3,1},{0x28555,4}}, {{0xbe0,1},{0x1907,3}}, + {{0x27ce8,3},{0x2a935,2}}, {{0x12fe,5},{0xb54,4}}, {{0xbd99,8},{0x2b,3}}, {{0x1a,1},{0x1b22,3}}, + {{0x29e87,3},{0x2445e,1}}, {{0xcc7,3},{0xeb2,1}}, {{0x5af8,7},{0x10dc,2}}, {{0x2445c,3},{0x7c4,1}}, + {{0x6d9b,6},{0xaf2,1}}, {{0x26f1,4},{0xd45,3}}, {{0x3004,9},{0xc63,3}}, {{0x1b123,4},{0x1b127,5}}, + {{0x804,4},{0x532,4}}, {{0x445d,6},{0x90e4,5}}, {{0x924,1},{0x279ef,2}}, {{0x10f6,1},{0x26c6,1}}, + {{0xd322,6},{0xd328,5}}, {{0x6d8e,3},{0x554f,2}}, {{0x11cc,11},{0x2b,3}}, {{0x1fea9,5},{0xde1,2}}, + {{0x1ed53,1},{0x1ed58,1}}, {{0x2c76,4},{0xbb6c,7}}, {{0x1f,1},{0x29d9,3}}, {{0x30,2},{0x15b52,4}}, + {{0x78ca,4},{0xb2e,2}}, {{0xae5,1},{0x6676,4}}, {{0x6d81,3},{0x174e,3}}, {{0x432,32},{0x432,5}}, + {{0x209d,4},{0xba7,3}}, {{0x1463,5},{0x1e6c,6}}, {{0x1cbf,4},{0x10644,4}}, {{0x422e,3},{0xf8cf,2}}, + {{0x70b0,4},{0x6fac,2}}, {{0x16436,7},{0xb2e,2}}, {{0xbcb,3},{0xbfe6,5}}, {{0x31c4,8},{0x11e6,6}}, + {{0xb2c,2},{0xc3a,3}}, {{0x14934,2},{0x209c3,5}}, {{0x132c,6},{0x1058,9}}, {{0x10ca,3},{0xb9a,6}}, + {{0x10c8,4},{0x2b,2}}, {{0xadd,4},{0x5fc7,4}}, {{0x178c,3},{0x4e3d,7}}, {{0x16dc,5},{0xfe1,4}}, + {{0x70dc,4},{0x6f90,2}}, {{0x17fc,5},{0x1081,3}}, {{0x2324,4},{0x28e2,4}}, {{0x235c7,5},{0xb2e,2}}, + {{0xc13,4},{0x3706,4}}, {{0x2d,1},{0xf10,3}}, {{0xb8f,2},{0x5c76,4}}, {{0x271e,3},{0x1a1f7,2}}, + {{0xca7,3},{0x2b,3}}, {{0x1089,2},{0x25c2,3}}, {{0x2c06,8},{0x49ad,5}}, {{0xab46,5},{0x1704,3}}, + {{0x257a,10},{0x2584,5}}, {{0x170c,5},{0x10504,4}}, {{0x276b,6},{0xdf0,2}}, {{0xb144,5},{0xb149,6}}, + {{0x2a934,2},{0x27cea,1}}, {{0x10f0,1},{0x443e,2}}, {{0xddc,4},{0x5fc7,4}}, {{0x4c15,9},{0x1621,4}}, + {{0x2421,7},{0x2971,3}}, {{0x1a835,5},{0xb76,3}}, {{0x139c,5},{0x11b2,4}}, {{0xca5,2},{0x27,1}}, + {{0x126c0,5},{0x1ed0,4}}, {{0xc77,2},{0x2be6,4}}, {{0x28522,2},{0x10ed,2}}, {{0x1042,4},{0xbe2e,4}}, + {{0x1259,2},{0xc57,3}}, {{0x3c60,12},{0xd0d,2}}, {{0x270be,2},{0x10f2,1}}, {{0x1ca8d,5},{0xc30,2}}, + {{0x27b4,3},{0x26c6,1}}, {{0x2061,5},{0x838c,5}}, {{0x78b2,7},{0xe0a,5}}, {{0x4362,11},{0x1489,3}}, + {{0x13a0e,5},{0x2bfc,2}}, {{0x88ea,5},{0xbb5,1}}, {{0xadd,7},{0xb5f,13}}, {{0x1796f,6},{0xdfb,3}}, + {{0x1db3d,7},{0xae7,1}}, {{0xdba,4},{0x4240,3}}, {{0x278a1,3},{0x924,3}}, {{0xb52,2},{0x314c,3}}, + {{0x2b85a,4},{0xa51,2}}, {{0xcfd,4},{0x5203,3}}, {{0x10f6,1},{0x2482,3}}, {{0x4351,2},{0x10f2,1}}, + {{0xb99,3},{0x80d3,5}}, {{0x181c,3},{0x115c,2}}, {{0x14bba,4},{0x32d5,4}}, {{0x139e,2},{0xaf2,1}}, + {{0x10c8,3},{0x1574a,2}}, {{0x143c,10},{0xb7a,5}}, {{0x2474d,4},{0xa4f,2}}, {{0x244b9,2},{0x1dec4,2}}, + {{0x5a8e,6},{0x1ea6,4}}, {{0xe9d,3},{0xb71,2}}, {{0x41be,4},{0xaea,3}}, {{0x974e,5},{0xae6,2}}, + {{0x27d4,4},{0xd14,4}}, {{0xb52,2},{0xb71,2}}, {{0xadf,2},{0x47fe,5}}, {{0x1eb1c,4},{0xb6e,2}}, + {{0xa3ba,6},{0x1a8e,4}}, {{0x1a4ce,4},{0xae7,1}}, {{0x1b4c,3},{0xd7f,3}}, {{0x19e88,5},{0x108a,2}}, + {{0x1b75,7},{0x1b7c,7}}, {{0x1bdd5,7},{0xae7,1}}, {{0xd54,1},{0xc29,2}}, {{0x1b6c3,4},{0x1b6c3,4}}, + {{0x16a9c,6},{0x1719,3}}, {{0x10fb,3},{0x78a2,4}}, {{0x96e2,5},{0x108e,7}}, {{0xeca,5},{0x861f,7}}, + {{0x3a92,6},{0xb9c,2}}, {{0xe6d,2},{0x23d9,3}}, {{0xeeb8,8},{0xb63,2}}, {{0x193b,4},{0x1916,5}}, + {{0x177c,3},{0x1bf08,4}}, {{0xbde,3},{0x20a1f,2}}, {{0x6e03,5},{0x529e,4}}, {{0x278a7,3},{0x27a79,2}}, + {{0x10ec,1},{0x139e,2}}, {{0xf30,5},{0x8cf9,5}}, {{0x1a0d,5},{0x1960,8}}, {{0x4dcf,9},{0x2b,3}}, + {{0x4450,4},{0x3789,3}}, {{0xae2,2},{0xae8,2}}, {{0x278a7,3},{0x27ad3,2}}, {{0x10ef,1},{0x1761,3}}, + {{0x11ef,2},{0x1687,5}}, {{0x10fb,3},{0x1931,6}}, {{0xbeb,1},{0x19f3f,2}}, {{0x415c,4},{0xaf49,5}}, + {{0x25789,2},{0x6f8a,2}}, {{0x2958,9},{0xd0b,4}}, {{0x257a,4},{0xeb2b,7}}, {{0x4132,5},{0x12b1,4}}, + {{0x2843b,2},{0x159c8,1}}, {{0x17ee,5},{0x63c8,5}}, {{0xbe0,1},{0x25c1,4}}, {{0xadd,7},{0x14b3,5}}, + {{0x7a7a,5},{0x10a2,4}}, {{0xa8fa,6},{0xa5de,4}}, {{0x25bb5,4},{0x25bbf,2}}, {{0x7b3a,7},{0x1fe4,5}}, + {{0xcd9,5},{0x2b4b,4}}, {{0x1b9bd,6},{0xd0d,2}}, {{0x410c,4},{0xae0,1}}, {{0x1705,3},{0x7b65,5}}, + {{0x5c98,6},{0xb64,2}}, {{0x46f4,4},{0x29,2}}, {{0xd527,8},{0x10dc,2}}, {{0xcd9,5},{0x2237,4}}, + {{0x3234,5},{0xb75,2}}, {{0xbde,3},{0xb9d,3}}, {{0x4fbd,4},{0xc6bb,5}}, {{0xd57f,5},{0xb63,4}}, + {{0x23ea,5},{0xb2e,2}}, {{0x26583,4},{0x734,1}}, {{0xbe4,1},{0x1a10,2}}, {{0x16dc,4},{0x1d,1}}, + {{0x24a8,6},{0x1d,1}}, {{0x84a6,5},{0x3406,5}}, {{0x47b7,8},{0xae7,1}}, {{0x686d,7},{0x21d2,6}}, + {{0x2a562,4},{0x278af,1}}, {{0x201f1,4},{0xbe4,1}}, {{0x10ec,1},{0xcb8,2}}, {{0x4189,3},{0xcb8,2}}, + {{0xce2,3},{0xb2c,4}}, {{0x1b72f,6},{0x70a8,4}}, {{0x177c,3},{0x1ee0,3}}, {{0xaea,1},{0x6224,8}}, + {{0x1b4e3,1},{0x2446c,1}}, {{0x2aacb,2},{0x157b6,2}}, {{0x1ad0,7},{0xd0d,2}}, {{0xa26a,8},{0xb2c,4}}, + {{0xae2,2},{0x734b,3}}, {{0xcd5,2},{0x30bc,3}}, {{0x6c3e,3},{0x2ffb,3}}, {{0xaca2,3},{0xb63,2}}, + {{0x1e,1},{0x33fb,5}}, {{0x119c,7},{0xae0,1}}, {{0x10ef,1},{0x428b,2}}, {{0x1ab2,4},{0x1bdb,3}}, + {{0x2ccb0,4},{0x6f96,2}}, {{0x178c,3},{0x1ec2,4}}, {{0xbb5,2},{0xeb2,1}}, {{0x2a530,4},{0x116d,1}}, + {{0x286bd,2},{0x6f78,2}}, {{0xf10,3},{0x31f8,4}}, {{0x15dc,6},{0x1434,3}}, {{0x321d,3},{0x3220,6}}, + {{0x924,2},{0x27a2b,2}}, {{0x6783,11},{0xb2e,2}}, {{0x6b52,4},{0x19ec2,5}}, {{0xf417,5},{0xb75,2}}, + {{0x2ad8f,4},{0xff26,2}}, {{0xceb,4},{0xb469,4}}, {{0x279d1,2},{0x278af,1}}, {{0x8f6e,7},{0x21be,4}}, + {{0x2d,1},{0x10ba,2}}, {{0x135c,6},{0x2d,1}}, {{0x10f0,1},{0x15b3f,2}}, {{0x17ee,3},{0x11c10,4}}, + {{0x1ab2,5},{0xbbfc,6}}, {{0x4e85,5},{0x251d,3}}, {{0xd41,4},{0xcbd,3}}, {{0x5bfa,7},{0xb52,6}}, + {{0x2747,3},{0xb48,2}}, {{0x30c8,7},{0x5fa0,4}}, {{0x116e,1},{0x1b140,2}}, {{0xf96,4},{0x315d,4}}, + {{0xacf6,4},{0xb47,2}}, {{0x4116,4},{0xb85,2}}, {{0xceb,3},{0x5eb6,4}}, {{0xa6c6,7},{0xe70,4}}, + {{0xcd9,3},{0x1cef,3}}, {{0x3c28,7},{0xc1c,2}}, {{0xa7d,4},{0x6fac,2}}, {{0x1095,3},{0xc57,3}}, + {{0x24519,4},{0x6fac,2}}, {{0xb64,3},{0xb9c,2}}, {{0x177c,3},{0xcb8,2}}, {{0xd65,3},{0x3a3a,3}}, + {{0xf63,5},{0x459e,4}}, {{0x1b1f,3},{0xbb4,2}}, {{0x42ae,4},{0x10e1,8}}, {{0x229d,7},{0x10dc,2}}, + {{0xb7c,2},{0xb47,2}}, {{0x284a,4},{0xbd6,8}}, {{0x1aa48,5},{0xbb4,3}}, {{0x142ce,7},{0xfe5,2}}, + {{0x178c,3},{0x2680,5}}, {{0x12ac,5},{0xf6a,5}}, {{0xc29,2},{0xbf6d,5}}, {{0x27a07,2},{0x278a9,1}}, + {{0x21,1},{0x25e21,4}}, {{0x27b4,3},{0x14b6,2}}, {{0x1051,4},{0xe6d,2}}, {{0xdcb,7},{0xb7d,1}}, + {{0x1b0c,6},{0x1b12,9}}, {{0xb1f4,8},{0x3789,3}}, {{0xd41,3},{0xcd5,2}}, {{0xcfd,5},{0x12fe,5}}, + {{0x1a0d,9},{0x10e4,6}}, {{0x6bc7,9},{0xc3e,2}}, {{0x14b42,4},{0xb2c,4}}, {{0x6c08,6},{0x6c0e,7}}, + {{0x3322,10},{0xb55,2}}, {{0xaca2,3},{0x1b4f,3}}, {{0x441c,3},{0x7482,4}}, {{0xb2c,2},{0xbb4,4}}, + {{0xbb2a,4},{0xb78,2}}, {{0x25855,7},{0x2d,1}}, {{0xab0a,5},{0x88ef,7}}, {{0x2445c,3},{0x24461,1}}, + {{0x2445e,1},{0x24f8a,2}}, {{0xd78,5},{0x2a85,6}}, {{0x5254,5},{0x5259,4}}, {{0x6812,7},{0x1536,6}}, + {{0x2c716,4},{0x1dec4,2}}, {{0x2445e,1},{0x2a8ef,2}}, {{0xc67,2},{0xc67,2}}, {{0x10404,5},{0x1687,3}}, + {{0x70cc,8},{0x70d4,8}}, {{0x1084,3},{0x2bfc,2}}, {{0x4728,6},{0x583f,6}}, {{0x27b6,1},{0x2756e,3}}, + {{0x10c2,2},{0x28,2}}, {{0x2b,1},{0xe70,4}}, {{0xaeee,4},{0xb21c,4}}, {{0xe006,7},{0xb68,4}}, + {{0x3234,3},{0xae7,1}}, {{0x11ba8,4},{0x13a38,5}}, {{0x1e,1},{0xb71,2}}, {{0x70b0,4},{0x27d99,2}}, + {{0x30,2},{0x2ce18,2}}, {{0xa972,6},{0x6604,6}}, {{0x27d7b,6},{0x24531,4}}, {{0x101e,12},{0xb9d,3}}, + {{0xe91,3},{0xcc0,3}}, {{0x1f141,6},{0xc34,2}}, {{0xb44,3},{0xdf0,3}}, {{0xc89,3},{0x33d3,5}}, + {{0x27983,2},{0x278dc,1}}, {{0xf655,9},{0xb2e,2}}, {{0x2920,4},{0xae7,1}}, {{0x184d5,6},{0x2939,3}}, + {{0xde9,1},{0x368c,3}}, {{0xb63,2},{0x1b4f,4}}, {{0xb7f,3},{0xc60,3}}, {{0x278a1,3},{0x278db,2}}, + {{0x256b,4},{0x1839e,5}}, {{0xfe01,7},{0xfe08,4}}, {{0xbd4,2},{0x2b,2}}, {{0x27a01,2},{0x116c,1}}, + {{0xafc8,2},{0x1761,4}}, {{0x1b951,6},{0x1b965,8}}, {{0xe78,3},{0x1a,1}}, {{0x1b237,8},{0x70d0,4}}, + {{0x13cf2,6},{0x13d02,4}}, {{0x511c,6},{0x222c,5}}, {{0x1f589,6},{0xaa98,2}}, {{0x10ea,3},{0xde2,4}}, + {{0x6d81,3},{0x15b3f,2}}, {{0x41da,3},{0x19f3f,2}}, {{0xf39e,7},{0x41ef,4}}, {{0x177c,3},{0x193e,4}}, + {{0x26f1,4},{0xbed,2}}, {{0x10c8,3},{0xd57,2}}, {{0x181c,3},{0xadf,2}}, {{0xbb5,1},{0x1cef,3}}, + {{0x5275,4},{0x10dc,2}}, {{0xc1e,2},{0xb52,6}}, {{0x5288,5},{0xeb2,1}}, {{0x2c3bc,4},{0x244af,2}}, + {{0x5428,5},{0xe4c,7}}, {{0x3a14,8},{0xb52,6}}, {{0x3250,7},{0x1a6f,7}}, {{0x24681,6},{0x24693,6}}, + {{0xb69,2},{0xc2f,2}}, {{0x278a1,3},{0x27977,2}}, {{0xfc9,6},{0xce2,3}}, {{0x279b9,2},{0x278d6,1}}, + {{0x286bb,4},{0x20b23,2}}, {{0x14c26,5},{0x4905,4}}, {{0xaca2,3},{0x13f13,4}}, {{0x1a10,2},{0xbb5,3}}, + {{0xaca2,3},{0x28,2}}, {{0x26c65,4},{0x1f3ef,2}}, {{0xadd,12},{0xae9,10}}, {{0x278a7,3},{0x2798f,2}}, + {{0xd5c,1},{0x139f,3}}, {{0x1257,3},{0x459e,4}}, {{0xf1f,5},{0xd42f,6}}, {{0x19f3e,2},{0x20984,5}}, + {{0xf52,4},{0x2237,7}}, {{0x6d81,3},{0x1f3a,3}}, {{0x6916,8},{0x691e,5}}, {{0x22dc,3},{0x1f13,4}}, + {{0x2c54e,4},{0x70a2,2}}, {{0xcbd,3},{0xb71,2}}, {{0x279b9,2},{0x278dc,1}}, {{0x59a4,6},{0x25df,4}}, + {{0x28de,7},{0xae7,1}}, {{0x4411,4},{0x4415,2}}, {{0x1701,3},{0x28,1}}, {{0x256b,5},{0xb095,3}}, + {{0x17ec,5},{0x64d7,8}}, {{0x4d33,6},{0xb55,3}}, {{0xb2f,1},{0x1e,1}}, {{0xd5c,1},{0xae2,1}}, + {{0x2d,1},{0x1c,1}}, {{0x10fb,3},{0x10cd6,4}}, {{0x4194,5},{0xdc0,6}}, {{0x10f6,1},{0x1f2c5,2}}, + {{0x27a6d,2},{0x278a9,1}}, {{0x10ec,1},{0x4590,5}}, {{0xd41,3},{0xc1e,2}}, {{0x27a73,2},{0x278af,1}}, + {{0x3c28,6},{0xe652,5}}, {{0x1cbf,5},{0xc30,2}}, {{0xb31,1},{0x1b4e3,1}}, {{0xbe0,1},{0xbed,4}}, + {{0x41da,3},{0xc51,4}}, {{0x1a970,7},{0xd0d,2}}, {{0x1033c,5},{0x10341,5}}, {{0x10f0,1},{0x20,2}}, + {{0x432,32},{0x432,6}}, {{0xbb2,2},{0x2bfc,3}}, {{0x783a,6},{0x1d5c,6}}, {{0x1084,3},{0x9319,3}}, + {{0x30ba,5},{0x1081,3}}, {{0x1dddd,7},{0xae7,1}}, {{0x119c,7},{0x595e,5}}, {{0x279f5,2},{0x116c,1}}, + {{0x4d19,6},{0xae9,2}}, {{0xcf6,3},{0x1864,2}}, {{0x6b1e,4},{0xc67,2}}, {{0xba9,4},{0x10e1,8}}, + {{0x3a5a,6},{0xeb5,4}}, {{0x278a7,3},{0x27a5b,2}}, {{0x15180,8},{0xfe5,2}}, {{0x278c9,2},{0x27a3d,2}}, + {{0x10fb,3},{0x12be,3}}, {{0x1b6ab,1},{0x27897,2}}, {{0x9d66,9},{0xb54,3}}, {{0x422e,3},{0x5277,4}}, + {{0x256b,5},{0xa469,5}}, {{0x145b4,4},{0xb78,2}}, {{0xf74,6},{0xb5e1,5}}, {{0x441c,3},{0xf24c,3}}, + {{0xddd5,5},{0x7b65,5}}, {{0xeec,10},{0xd17,3}}, {{0xeead,6},{0xbb0b,5}}, {{0x10ca,1},{0xbbf,2}}, + {{0x122c,6},{0x49b8,7}}, {{0x422e,3},{0x20aa9,2}}, {{0x2445f,1},{0x27e4c,4}}, {{0x2403,12},{0xb54,3}}, + {{0xaec,2},{0x2b,1}}, {{0x1ef49,6},{0xae6,2}}, {{0x278a7,3},{0x27995,2}}, {{0xbe0,1},{0x298a,2}}, + {{0xc25,5},{0x35d3,5}}, {{0x10ca,1},{0x15f7b,3}}, {{0x2c76,7},{0x2c7d,7}}, {{0x8b06,4},{0x345e,5}}, + {{0xbe4,1},{0x10fa,1}}, {{0xb7f,3},{0x940b,6}}, {{0xd41,4},{0xe6d,2}}, {{0x2451f,2},{0x410e,2}}, + {{0x54aa,7},{0x54be,6}}, {{0x10ec,1},{0xb066,2}}, {{0x178c,3},{0x30f5,4}}, {{0xc39,2},{0xb55,2}}, + {{0xd0f,4},{0x833a,4}}, {{0x12ac,5},{0x11f2,3}}, {{0x8e3a,3},{0xf47,4}}, {{0x27897,1},{0x278a9,2}}, + {{0x9136,6},{0x2b,3}}, {{0x29e7a,2},{0x29e7a,2}}, {{0xf629,5},{0x141e,3}}, {{0x272d,4},{0xdf0,2}}, + {{0xcf3e,2},{0xbd6,2}}, {{0xb47,2},{0x141e,3}}, {{0x1960,4},{0xb7c,3}}, {{0xd041,5},{0xd48,2}}, + {{0x2c76,4},{0x4882,3}}, {{0x1b6ab,2},{0x278a9,1}}, {{0x1b735,8},{0xff20,4}}, {{0x180c,4},{0x2b,2}}, + {{0xb64,2},{0xc7ae,6}}, {{0x6ac5,1},{0x10f2,1}}, {{0x82ba,6},{0x4d08,4}}, {{0x1a5c8,6},{0xa68e,3}}, + {{0xd5c,1},{0x1f2c5,2}}, {{0xcab,3},{0x2d44,4}}, {{0x28da,1},{0x2358,5}}, {{0x24a35,2},{0x2446e,3}}, + {{0xdcd,5},{0x76f1,5}}, {{0x27,1},{0x4ab0,3}}, {{0x2c76,4},{0x2b48,4}}, {{0xcb5,3},{0x2b,3}}, + {{0x27b4,3},{0xbe7,1}}, {{0xd1a,2},{0xa5de,4}}, {{0x283e,2},{0xbeb,1}}, {{0x1912,9},{0xb2e,2}}, + {{0x1b6dd,2},{0x410e,2}}, {{0xaea,1},{0xc8a3,3}}, {{0x1c,1},{0x225f3,4}}, {{0x27989,2},{0x278dc,1}}, + {{0x12bde,6},{0xb264,4}}, {{0x984a,10},{0xae7,1}}, {{0xcfd,7},{0x13b2,4}}, {{0x1ab20,5},{0xb8e,2}}, + {{0xb4a,6},{0xb50,7}}, {{0x10f7,1},{0x1ae2,2}}, {{0x1f8e3,3},{0xd91,2}}, {{0xcbbe,8},{0xd0d,2}}, + {{0xbb5,1},{0xae7,2}}, {{0x1701,3},{0xe0a,5}}, {{0x12fe,2},{0x362c,5}}, {{0x422e,3},{0x19f75,4}}, + {{0x1502c,6},{0x141e,3}}, {{0x4284,2},{0x25066,3}}, {{0x23007,2},{0xbe4,1}}, {{0xadd,7},{0xb72,2}}, + {{0xf966,4},{0xc1e,5}}, {{0x27cea,1},{0x251ea,2}}, {{0x1b157,8},{0xfebc,6}}, {{0x10c8,3},{0x10119,2}}, + {{0x278a7,3},{0x27ae5,2}}, {{0x10c8,3},{0x186db,4}}, {{0x10f0,1},{0xd0b,3}}, {{0x1cee,4},{0x305e,8}}, + {{0x2ce28,4},{0x28,1}}, {{0x2b854,2},{0xfeee,2}}, {{0xf629,5},{0xf62e,6}}, {{0x1f019,5},{0x10fa,1}}, + {{0x27959,2},{0x1b6ab,1}}, {{0xbe4,1},{0x1f,1}}, {{0x422e,3},{0x1c25,4}}, {{0xbd1,2},{0x206d2,5}}, + {{0x37d8,3},{0x12c33,5}}, {{0x27a49,2},{0x278dc,1}}, {{0xb2c,2},{0xb78,2}}, {{0x27b6,1},{0x15adc,2}}, + {{0x14bc2,5},{0xe49,4}}, {{0x19b43,5},{0x1016,4}}, {{0x28,1},{0x12fe,2}}, {{0x177c,3},{0xce2,3}}, + {{0x100b0,2},{0xbeb,1}}, {{0x70a0,2},{0x244af,2}}, {{0x4194,5},{0x8493,6}}, {{0xaeee,4},{0xe78,3}}, + {{0x2df2,6},{0x1498,4}}, {{0x1b,1},{0x1e,1}}, {{0x1095,3},{0xe2c0,4}}, {{0xaca2,3},{0xc77,2}}, + {{0xd5c,2},{0x297a,6}}, {{0x6f74,4},{0x1b6f5,2}}, {{0x2c76,4},{0xbed,2}}, {{0xbeb,2},{0xa24a,3}}, + {{0xad34,5},{0xdb7f,4}}, {{0x46f8,3},{0xb2e,2}}, {{0x24f91,2},{0x28439,3}}, {{0x279fb,2},{0x278af,1}}, + {{0x2c980,4},{0x244c7,2}}, {{0x251cb,1},{0x2446c,1}}, {{0x12c92,5},{0x9ba5,5}}, {{0xbb2,2},{0xa24a,3}}, + {{0x28,1},{0x1260,4}}, {{0xedb,6},{0x1254,3}}, {{0x1b4e4,1},{0x7c4,1}}, {{0x734,2},{0x251fa,4}}, + {{0xf5f2,7},{0xf5f9,4}}, {{0x2c59c,4},{0xfefe,2}}, {{0xad62,8},{0xc7b,4}}, {{0xc37,3},{0xbf6d,5}}, + {{0xbd4,2},{0x40b6,4}}, {{0x15220,5},{0xeb3,3}}, {{0x10c8,3},{0x97d8,3}}, {{0x16f48,2},{0x1d,1}}, + {{0x1dd7,2},{0xfb1,2}}, {{0x2796,4},{0xaea,1}}, {{0x1a05,8},{0xae7,1}}, {{0xc67,3},{0x2b,2}}, + {{0x1a0f,3},{0x48e7,8}}, {{0x2181,2},{0xae0,1}}, {{0xc25,3},{0x5af9,3}}, {{0x14d5c,5},{0x138a1,5}}, + {{0x17f74,7},{0x5277,2}}, {{0x7a4a,7},{0xbd3d,4}}, {{0xd5c,1},{0x1df62,5}}, {{0xf85,4},{0x1306a,6}}, + {{0xa22e,4},{0xc45f,4}}, {{0x2445c,3},{0x27d8b,2}}, {{0x28be,3},{0xbeb,6}}, {{0x5dd0,8},{0x251c,4}}, + {{0x27,1},{0x1590a,2}}, {{0x1eec1,4},{0x11a5,4}}, {{0x1c,1},{0xe499,5}}, {{0x1d55,5},{0x1d23,5}}, + {{0x13ec8,5},{0x5c5d,5}}, {{0xbde,3},{0xb48,2}}, {{0x5d5b,5},{0xdc90,6}}, {{0x13a3,3},{0xae0,1}}, + {{0x10e6d,3},{0x30f5,4}}, {{0x36e8,6},{0xb54,3}}, {{0x2daa,5},{0x4b0a,4}}, {{0x10c8,3},{0xfaf,3}}, + {{0x1bfc,6},{0xd57,3}}, {{0xb82,2},{0xc263,6}}, {{0xbe7,1},{0x184cf,6}}, {{0xfdd,2},{0xb61,2}}, + {{0x27989,2},{0x116d,1}}, {{0x271e,3},{0x20a1f,2}}, {{0x281fb,2},{0xd5c,2}}, {{0x27b4,3},{0x11ef,3}}, + {{0x10ea,3},{0x26e66,3}}, {{0x17bc,3},{0xbb2,2}}, {{0x278a1,3},{0x27ac1,2}}, {{0x1a445,6},{0x5396,3}}, + {{0xb79,2},{0xdfa,3}}, {{0x4f65,3},{0xae7,1}}, {{0x1a0f,3},{0x10bec,5}}, {{0xbeb,3},{0x10af5,5}}, + {{0xe5d,3},{0xbb4,2}}, {{0x6f86,6},{0x157c4,12}}, {{0x12fe,3},{0x12be,3}}, {{0xf85,4},{0x5aa1,7}}, + {{0xc37,3},{0x1b00,3}}, {{0x1cce,8},{0x28,1}}, {{0xaa02,5},{0x12b1,4}}, {{0x116e,1},{0x27a2b,2}}, + {{0x20a31,5},{0x14bb4,2}}, {{0x4402,2},{0x4404,11}}, {{0xaef,3},{0xc67,3}}, {{0xba13,7},{0x10dc,2}}, + {{0xbe4,1},{0x1001f,5}}, {{0xbeb,2},{0xb79,2}}, {{0x169c,8},{0xa176,4}}, {{0xb03a,3},{0x21,1}}, + {{0xbcb,3},{0xecb8,6}}, {{0xd65,3},{0x67a6,3}}, {{0x27b6,1},{0xcb8,2}}, {{0x909a,8},{0x2bca,4}}, + {{0x441c,3},{0x4189,3}}, {{0x2a24,3},{0x1d,1}}, {{0x7ac7,4},{0x10dc,2}}, {{0xd54,1},{0x17ae,1}}, + {{0x10f8,2},{0x2848,2}}, {{0x1286e,6},{0xae7,1}}, {{0x41da,3},{0x20,2}}, {{0x3e9e,11},{0x1257,3}}, + {{0xae7,1},{0x443e,2}}, {{0xac8a,4},{0xbd3,3}}, {{0x2d,1},{0x15051,3}}, {{0x5e11,6},{0x6242,6}}, + {{0x2506f,2},{0x25071,4}}, {{0x4839,10},{0x2b,3}}, {{0xae2,2},{0xc8e,3}}, {{0xcfd,5},{0xb9c,2}}, + {{0x278a7,3},{0x27a13,2}}, {{0x4f48,9},{0xb54,4}}, {{0xc37,3},{0x323c,2}}, {{0x178c,3},{0x1eed4,2}}, + {{0x441c,3},{0x1ba18,5}}, {{0xcfd,5},{0xe5e3,4}}, {{0x278a7,3},{0x27aaf,2}}, {{0x4194,5},{0xb9c,2}}, + {{0x1ed4b,4},{0x1ed4b,2}}, {{0xc39,2},{0xb0a1,4}}, {{0xc37,3},{0x16f33,8}}, {{0xcb5,3},{0xcf6,3}}, + {{0x278a1,3},{0x27ae5,2}}, {{0x182a7,6},{0x10dc,2}}, {{0xcb5,3},{0x79d6,5}}, {{0xd76,5},{0x50fd,5}}, + {{0x2c866,4},{0x244c3,2}}, {{0xbde,3},{0x10f2,1}}, {{0x1a326,4},{0x28e4,4}}, {{0x56b2,5},{0x1a,2}}, + {{0x1084,4},{0x3e40,10}}, {{0xbb3,2},{0xb82,2}}, {{0x10c8,3},{0x8907,4}}, {{0x12fc,4},{0x74b2,4}}, + {{0x1269f,2},{0xd1b,1}}, {{0x4fbd,4},{0x11b8,4}}, {{0x188e0,6},{0x10dc,2}}, {{0xae9,2},{0x1010,5}}, + {{0x27ca3,4},{0x1b4e4,1}}, {{0xc37,3},{0x216e2,4}}, {{0x25d4,11},{0x25df,4}}, {{0x4134,3},{0x12b1,4}}, + {{0x44d2,5},{0x11b8,4}}, {{0x3090,6},{0xce0,4}}, {{0xd54,1},{0x3fab,2}}, {{0x10fb,3},{0xaa9b,2}}, + {{0xb64,3},{0x1498,3}}, {{0x6812,5},{0x377b,7}}, {{0x4266,5},{0x8e3b,7}}, {{0x6b6c,5},{0x7b33,7}}, + {{0xa7da,3},{0x1b695,2}}, {{0x1e,1},{0xb55,2}}, {{0x6d81,3},{0x24ba,3}}, {{0x180c,7},{0x1058,9}}, + {{0x9b0e,8},{0xb8f,3}}, {{0x116d,1},{0x278db,2}}, {{0xbd6,2},{0x11b8,4}}, {{0x2445e,2},{0x27d8b,2}}, + {{0x9fbe,7},{0x2b,3}}, {{0x1a,2},{0xb8f,3}}, {{0x1d46,5},{0x13b5,7}}, {{0x2c6ce,4},{0x20b23,2}}, + {{0x47de,5},{0x7617,7}}, {{0x40ec,3},{0x46e0,6}}, {{0x9a2f,3},{0x1f13,4}}, {{0xae7,1},{0x48b1,6}}, + {{0x8092,6},{0xb52,2}}, {{0xcd9,3},{0x6008,4}}, {{0x6f74,4},{0x6f6c,2}}, {{0x13cca,7},{0xeb3,3}}, + {{0x181c,3},{0x1f965,2}}, {{0x1a8bc,6},{0xb77,3}}, {{0x3e26,2},{0xb7c,2}}, {{0x7b22,7},{0x24fd,5}}, + {{0x10f2,1},{0xf8cf,2}}, {{0xb7f,3},{0x21b35,4}}, {{0x10df2,7},{0x16f8,3}}, {{0x20bb,3},{0x11ef,2}}, + {{0x3694,4},{0x151f,3}}, {{0x229d,7},{0xb78,2}}, {{0xbde,3},{0x29cf3,2}}, {{0x14fc,4},{0xca7,3}}, + {{0x1f8c9,5},{0x29b2,3}}, {{0x28,2},{0xaf1,1}}, {{0xaeb,2},{0xbc6,2}}, {{0xbd5,2},{0xfde,2}}, + {{0x1fe51,7},{0xae5,1}}, {{0x180c,4},{0x9206,3}}, {{0x13e3,4},{0xb52,6}}, {{0x131b0,7},{0x10569,3}}, + {{0x1aec8,5},{0xae6,2}}, {{0x159c,4},{0x18ca,6}}, {{0xab9a,3},{0x3559,3}}, {{0xe171,8},{0x2b,3}}, + {{0x10ec,1},{0x6ac5,1}}, {{0xb64,2},{0x5268,3}}, {{0x1b72f,6},{0x1015c,4}}, {{0x14bb0,2},{0x1ae32,2}}, + {{0x1f,4},{0xb0d1,5}}, {{0xee8,3},{0x17476,4}}, {{0x1cbf,5},{0xb2c,2}}, {{0xb7d,1},{0xadf,2}}, + {{0x178c,3},{0xf01,4}}, {{0xbeb,1},{0xc1c,2}}, {{0x1004c,6},{0xc57,4}}, {{0xf966,4},{0x3879,4}}, + {{0x5102,5},{0x2746,3}}, {{0x4bfb,6},{0xb2e,2}}, {{0xd04c,5},{0xb68,4}}, {{0x1098,4},{0xe38,3}}, + {{0x1a622,5},{0xdf0,2}}, {{0x1e,1},{0x184bd,5}}, {{0xb2f,1},{0x142e,1}}, {{0x1095,3},{0x11d4,4}}, + {{0x78ca,5},{0xde9,1}}, {{0xadf,2},{0xfb1,2}}, {{0x1b8e1,6},{0x70d4,4}}, {{0xdac,2},{0x108bb,5}}, + {{0x15298,5},{0xc34,3}}, {{0x1682f,6},{0x16835,3}}, {{0xae7,2},{0x4a30,4}}, {{0x1717b,6},{0x4031,3}}, + {{0x1a,2},{0x1a,2}}, {{0xc37,4},{0x1727b,5}}, {{0xf629,5},{0x4882,3}}, {{0x2982,10},{0x10dc,2}}, + {{0x2ae0,5},{0xb763,6}}, {{0x15504,7},{0x1408,3}}, {{0x26b5,4},{0x68c4,4}}, {{0xb6be,3},{0x5f01,4}}, + {{0xb2c,2},{0xeb3,3}}, {{0x14a18,4},{0xf10,3}}, {{0xc17,3},{0xb51,3}}, {{0x40fa,4},{0x1058,4}}, + {{0x271e,3},{0x10f2,1}}, {{0x278a7,3},{0x116e,2}}, {{0x1c1c,4},{0x6008,4}}, {{0x1b82d,8},{0x70a8,4}}, + {{0x1f3b,4},{0x674c,3}}, {{0xd7a,3},{0x1a,2}}, {{0x23ce,4},{0x1278,4}}, {{0x102f,6},{0x46bb,5}}, + {{0xbb73,5},{0xb65,2}}, {{0x2bb00,4},{0x1ed58,1}}, {{0x261f,5},{0x1013,3}}, {{0x27b4,3},{0x16f8,3}}, + {{0x29ecd,3},{0x278b5,2}}, {{0x7052,6},{0x7058,6}}, {{0x43e3,2},{0xd7f,3}}, {{0x2ca22,4},{0x15798,2}}, + {{0x7162,4},{0xb8f,3}}, {{0x27a0d,2},{0x278a9,1}}, {{0x1a9d,3},{0xb55,2}}, {{0xa2ee,6},{0x32ff,4}}, + {{0x24a2d,2},{0x2aeb3,2}}, {{0x7b3a,7},{0x1260,4}}, {{0x16fcb,7},{0xd0d,2}}, {{0x1aa48,5},{0x1aa4d,4}}, + {{0x10472,4},{0x227a,3}}, {{0x1a6fa,4},{0xbe7,1}}, {{0x422e,3},{0x16ee,2}}, {{0xe8b9,3},{0x91bf,5}}, + {{0xbe4,1},{0xdef,3}}, {{0xcd9,5},{0x1463,7}}, {{0x152c0,4},{0x14f60,4}}, {{0x15e5e,6},{0x1308,3}}, + {{0x353a,3},{0xb9d,3}}, {{0x122c,4},{0xd7a,3}}, {{0x1f311,4},{0xb72,3}}, {{0xbb5,1},{0x142e,1}}, + {{0x9e9,4},{0x183c,6}}, {{0x170c,5},{0x4b65,7}}, {{0xbde,3},{0xcb8,3}}, {{0x67de,9},{0x2b,3}}, + {{0x1ac1,5},{0xbd6,2}}, {{0x3a22,4},{0x13620,6}}, {{0x3fb6,8},{0x1f13,4}}, {{0x16ae,3},{0x6797,4}}, + {{0xe6d,2},{0x43bd,4}}, {{0xae2,2},{0xff68,8}}, {{0xfc9,6},{0xd7c1,5}}, {{0xc55,2},{0xb4b,2}}, + {{0x20,2},{0x5581,6}}, {{0xc88b,5},{0x10dc,2}}, {{0xd1b,1},{0xaea,1}}, {{0x619a,3},{0xeb3,3}}, + {{0x6f16,7},{0x25c2,3}}, {{0x24493,4},{0x286b7,4}}, {{0x1b23f,4},{0x10f7,1}}, {{0x1b4e4,1},{0x2445e,1}}, + {{0xb44,3},{0x3920,6}}, {{0x65d6,9},{0x3bc2,4}}, {{0x3a27,4},{0x315d,5}}, {{0x1ed58,1},{0x2446e,3}}, + {{0xd54,1},{0xbb2,2}}, {{0x16aed,5},{0x4eb5,4}}, {{0x278a1,3},{0x278f3,2}}, {{0x152cf,3},{0x152d2,2}}, + {{0x94a4,5},{0x94b5,5}}, {{0x1f53,9},{0x1254,6}}, {{0x19e91,7},{0xd0d,2}}, {{0x6d8e,3},{0xb82,2}}, + {{0x28be,3},{0xbac,4}}, {{0xc13,4},{0x1bd01,4}}, {{0x5ea0,4},{0xae7,1}}, {{0x272d,5},{0x25c2,3}}, + {{0xd7c9,5},{0x1257,3}}, {{0xae0,1},{0x159f,4}}, {{0x2796,3},{0xf77,3}}, {{0x12ff,2},{0xc4e,2}}, + {{0xa3f6,8},{0x2b3e,4}}, {{0x2a530,4},{0x278af,1}}, {{0x6b52,4},{0xb63,3}}, {{0xbcb,3},{0x127a9,5}}, + {{0xb48,2},{0x4460,3}}, {{0x2aacb,2},{0xab1,2}}, {{0x27a01,2},{0x278a9,1}}, {{0x9450,4},{0xc1e,5}}, + {{0x5ed4,8},{0xb52,5}}, {{0x438c,5},{0x2b,3}}, {{0x43e3,1},{0xc2e,2}}, {{0x3838,8},{0xae6,3}}, + {{0x734,1},{0xb31,1}}, {{0x4354,5},{0x114d,2}}, {{0x24a2d,2},{0x27e39,3}}, {{0xbb5,1},{0x67b2,5}}, + {{0x2451f,2},{0x1b205,2}}, {{0x28,1},{0x2089f,10}}, {{0xd65,3},{0x2b,2}}, {{0xcc0,3},{0xb52,5}}, + {{0x1dd7,2},{0xb7d,1}}, {{0x17ec,5},{0x12d3,6}}, {{0xa3ba,6},{0xecfb,5}}, {{0x27977,2},{0x278af,1}}, + {{0xddc,4},{0x1c1d9,4}}, {{0xae9,2},{0x14d5,7}}, {{0x10ec,1},{0x2d,1}}, {{0x112c,8},{0x112c,8}}, + {{0x323c,2},{0x28,2}}, {{0x177c,3},{0xd57,2}}, {{0x278a7,3},{0x27a91,2}}, {{0xcd8c,5},{0x4b33,4}}, + {{0xaea,1},{0xa5de,4}}, {{0x498b,8},{0xae7,1}}, {{0x4346,7},{0x434d,4}}, {{0xb44,3},{0x6107,3}}, + {{0x1a0d,5},{0x163ea,4}}, {{0x261f,5},{0xb65,2}}, {{0x794e,7},{0xe70,4}}, {{0x1ed58,1},{0x9a9,3}}, + {{0xb6c,3},{0xc4d,2}}, {{0x1a727,5},{0x193dd,4}}, {{0x61fa,9},{0x2b,3}}, {{0x27b95,4},{0x279ef,2}}, + {{0x278a7,3},{0x27a55,2}}, {{0x22cf8,1},{0x24a30,2}}, {{0xcfd,7},{0x23a1,8}}, {{0xd54,1},{0xeb2,1}}, + {{0x116d,1},{0x278cf,2}}, {{0xcb5,3},{0x90f2,5}}, {{0xe77,3},{0x5cd6,3}}, {{0xb12e,7},{0xb135,4}}, + {{0x1c1c,4},{0x2a16,3}}, {{0x114c,9},{0x1155,7}}, {{0x134c,5},{0x15a0,4}}, {{0xe3e4,5},{0xcce,3}}, + {{0xb8d,3},{0x1a,1}}, {{0x2574,2},{0x12be,3}}, {{0xfd46,6},{0xeb6f,5}}, {{0x1c,1},{0x5f8d,6}}, + {{0x2151,5},{0x4875,5}}, {{0x78a6,7},{0x78ad,5}}, {{0xcd9,5},{0xcb8,3}}, {{0xacbc,2},{0x1290,3}}, + {{0x423c,3},{0xc6a9,3}}, {{0x1a859,4},{0xae2,1}}, {{0x1a0d,5},{0x1053,5}}, {{0x1523e,6},{0x88ce,4}}, + {{0x14f3c,5},{0x2048,4}}, {{0xaca4,2},{0xcce,3}}, {{0xd41,3},{0x2195,3}}, {{0xae7,2},{0x24b29,4}}, + {{0x3da2,5},{0xb2c,2}}, {{0xb9d,3},{0x2585,4}}, {{0x17dc,7},{0x1058,9}}, {{0xb7c,2},{0xbbf,2}}, + {{0x10b9,3},{0x6a39,6}}, {{0x10dc,2},{0x5277,2}}, {{0x23cfa,4},{0x17ae,1}}, {{0x422e,3},{0x29581,2}}, + {{0x5949,6},{0x2b,3}}, {{0x27995,2},{0x278a9,1}}, {{0x4288,2},{0x10fa,1}}, {{0x16e2,2},{0xd51,2}}, + {{0x24460,3},{0x2445e,1}}, {{0xbb2,2},{0x3921,5}}, {{0xd41,3},{0x6f34,3}}, {{0x85de,5},{0x4ae5,5}}, + {{0x2dfe,6},{0xb7a,5}}, {{0x725e,5},{0xb68,4}}, {{0xbe4,1},{0x1cac0,4}}, {{0x41da,3},{0xa7ed,4}}, + {{0xee1,3},{0xee4,8}}, {{0x12be,3},{0x748e,3}}, {{0x1f,1},{0xae6,2}}, {{0x159c,4},{0x250a,7}}, + {{0xcfd,4},{0x660e,9}}, {{0x167c,5},{0xaea,1}}, {{0xff20,8},{0xff28,12}}, {{0x1c25,3},{0x28,1}}, + {{0xaf1,1},{0xc0c3,3}}, {{0xcfd,6},{0x1a73,3}}, {{0xfd25,4},{0xcb8,3}}, {{0x2151,11},{0xd0b,4}}, + {{0x1efe9,5},{0xd79,3}}, {{0x671b,8},{0x11b8,4}}, {{0x107ba,7},{0x10dc,2}}, {{0x1aa6,3},{0xb78,2}}, + {{0xf1ba,8},{0xaf2,1}}, {{0x152d2,2},{0x1abd9,3}}, {{0x15a5e,2},{0x23000,2}}, {{0x1fc21,7},{0x1a,1}}, + {{0x10f7,1},{0x1ae3e,3}}, {{0xb83a,8},{0xeb3,3}}, {{0xaea,1},{0x3df9,5}}, {{0xb12e,3},{0x3053,5}}, + {{0xd41,4},{0x1089,2}}, {{0xd7f,3},{0xae6,2}}, {{0x20bb,3},{0xb63,4}}, {{0x21e7,11},{0x2b,3}}, + {{0x1929d,8},{0xae7,1}}, {{0x10ca,1},{0x298a,2}}, {{0x102f,6},{0x1d23,5}}, {{0x8a46,5},{0x2b,3}}, + {{0x143c,5},{0x9726,4}}, {{0x78b2,5},{0xe1d,3}}, {{0x1ed49,3},{0x159c8,1}}, {{0x1ca5d,5},{0x1940,3}}, + {{0xb7d,1},{0xce8,3}}, {{0x10f0,1},{0xb68,4}}, {{0x53cd,5},{0x1a6e,8}}, {{0x28f6,7},{0x28fd,7}}, + {{0x129d6,8},{0xb2c,2}}, {{0x9a9,1},{0x24462,1}}, {{0x3e82,5},{0xc7b,4}}, {{0x16784,6},{0x11e2,3}}, + {{0x3758,4},{0x5c4c,9}}, {{0xeb3d,7},{0x2318,4}}, {{0xbe4,1},{0xbb5,1}}, {{0x28cf,3},{0x1402,2}}, + {{0x1f8c1,5},{0x2b,1}}, {{0xb7f,3},{0xf63c,2}}, {{0xb6c,3},{0x6164,3}}, {{0x2c76,4},{0x323c,2}}, + {{0x152de,4},{0x11ef,2}}, {{0x2c8c6,4},{0xa51,2}}, {{0x1a,1},{0xcf0,2}}, {{0xa246,4},{0x15d5,4}}, + {{0x49ac,2},{0xcd5,2}}, {{0x1972,2},{0x13dd2,5}}, {{0x13ed2,8},{0x10dc,2}}, {{0x5a8e,6},{0x45a9,6}}, + {{0x24a2d,2},{0x27e1b,3}}, {{0x10ec,1},{0xa7d1,2}}, {{0x1b693,2},{0x10ef,1}}, {{0xc8b1,7},{0x1865,4}}, + {{0x423e,1},{0xbe0,1}}, {{0x6d81,3},{0x126c3,6}}, {{0xceb,3},{0x26306,3}}, {{0x15694,5},{0xc87,3}}, + {{0x17ba8,6},{0x2b,3}}, {{0x3e92,3},{0x174e,3}}, {{0xbeb,1},{0xbd5a,3}}, {{0x1cbf,5},{0x83df,7}}, + {{0x15ac,5},{0x39c5,9}}, {{0x30,4},{0x532,8}}, {{0xc37,3},{0x25c2,3}}, {{0x135c,5},{0x1536,6}}, + {{0x2446a,3},{0x2446d,2}}, {{0xb92c,7},{0x1152,3}}, {{0x30,2},{0xb32,6}}, {{0xceb,3},{0xb880,4}}, + {{0x118b0,6},{0x31f8,4}}, {{0x20bb,6},{0x5a05,7}}, {{0x20bb,3},{0x1425b,3}}, {{0x10f6,1},{0x10ed,2}}, + {{0x140c,8},{0xbd6,8}}, {{0xc6d,7},{0xc74,11}}, {{0xae2,2},{0x12fe,3}}, {{0x6b6e,3},{0x1b546,5}}, + {{0x2a948,1},{0x2446c,1}}, {{0xc37,4},{0x2195,3}}, {{0x924,2},{0x1171,2}}, {{0xcd9,3},{0x1e070,5}}, + {{0x422e,3},{0x5c76,4}}, {{0xf3d5,5},{0x1930,3}}, {{0xfbd0,7},{0x1daa,4}}, {{0xf44e,8},{0x25c2,3}}, + {{0x244c7,2},{0x1016a,2}}, {{0x1ed69,3},{0x10f7,1}}, {{0x6c3e,3},{0x3009,8}}, {{0x145a1,5},{0x41ef,2}}, + {{0x198bb,6},{0x22c0,3}}, {{0x1e45,3},{0xae2,1}}, {{0x8f1a,7},{0xb65,2}}, {{0x6e60,3},{0x27,1}}, + {{0x17dc,7},{0xc8e,3}}, {{0xb7d,1},{0xcb8,3}}, {{0xd41,3},{0x1865,2}}, {{0x530a,5},{0x530f,8}}, + {{0x38e0,11},{0x38eb,3}}, {{0xa246,4},{0x4ae5,5}}, {{0x27,1},{0x2af4,4}}, {{0x8716,4},{0x1d069,4}}, + {{0x18d4,3},{0xb47,2}}, {{0xa7d,4},{0x96f,2}}, {{0xc49,3},{0x1dcf,3}}, {{0x6d8e,3},{0xb70,2}}, + {{0xc25,4},{0xbd92,7}}, {{0xab9c,1},{0xae5,1}}, {{0x876a,10},{0xb65,2}}, {{0x3df6,5},{0x51c7,3}}, + {{0xcfd,5},{0x3c11,9}}, {{0x10c8,3},{0x15f7b,3}}, {{0xaec,2},{0xc1c,2}}, {{0x19e64,4},{0xcd5,2}}, + {{0x6b6e,3},{0xdf0,2}}, {{0x27a49,2},{0x1b6ab,1}}, {{0x1b8e7,4},{0x1b945,4}}, {{0xbcb,3},{0x12759,7}}, + {{0xbd4,2},{0xfe5,2}}, {{0x443e,2},{0x1f,1}}, {{0x2322,6},{0x4ae5,5}}, {{0xe02,5},{0x18ca,3}}, + {{0x195d9,8},{0xaf2,1}}, {{0xbe7,1},{0xbb4,2}}, {{0x1af00,3},{0xd17,3}}, {{0xcb5,3},{0xfcdb,3}}, + {{0xe01c,8},{0xb7c,3}}, {{0x1e45,4},{0xe1c,4}}, {{0xd65,5},{0x53f8,3}}, {{0x27897,1},{0x1b140,2}}, + {{0x27d95,4},{0xa4f,2}}, {{0x1276a,7},{0x173e,3}}, {{0xbaa2,4},{0x4687,5}}, {{0x1aac,3},{0x1514,6}}, + {{0xb65,2},{0xeb2,1}}, {{0xe9f,3},{0x1719,3}}, {{0x5a8e,6},{0x5aa1,7}}, {{0x2a9f,6},{0x1081,3}}, + {{0x5428,7},{0x1bdb,3}}, {{0x14ee2,4},{0x1b,1}}, {{0x278a7,3},{0x27ac7,2}}, {{0x27d24,3},{0x24461,1}}, + {{0xac8a,4},{0x2b,2}}, {{0x1b907,4},{0x70c8,4}}, {{0x10ca,1},{0x28da,1}}, {{0xb7f,3},{0xbd8,2}}, + {{0x251d8,2},{0x1ed53,1}}, {{0xb68,3},{0x12dec,4}}, {{0xbde,3},{0x1e822,5}}, {{0x49ac,2},{0xc0c3,3}}, + {{0x8b06,4},{0xb2e,2}}, {{0x28431,2},{0x28431,2}}, {{0xeec,7},{0x5275,4}}, {{0x10fb,3},{0x88ce,4}}, + {{0x1b135,4},{0x10ed,2}}, {{0x2d12,4},{0x1308,4}}, {{0x27a7f,2},{0x278a9,1}}, {{0xac66,5},{0xbac,4}}, + {{0xe64,5},{0xb9c,2}}, {{0xcd9,5},{0x9813,7}}, {{0x45e7,4},{0xb52,5}}, {{0x41f8,5},{0x30f9,7}}, + {{0xd76,4},{0x1257,3}}, {{0x90be,5},{0x1d89,4}}, {{0xf75d,4},{0x904d,5}}, {{0x17ec,5},{0xdd5,4}}, + {{0x291bd,2},{0xbe7,1}}, {{0x1e1a7,6},{0x1a,1}}, {{0x2868,4},{0x5444,3}}, {{0x430,18},{0x432,10}}, + {{0x122c,4},{0xb70,2}}, {{0xbb5,1},{0xeb2,1}}, {{0x4411,6},{0x4417,5}}, {{0x1da0,4},{0x1d01d,6}}, + {{0x6197,6},{0xb2c,2}}, {{0x4196,3},{0xae6,2}}, {{0x423c,5},{0x12fe,4}}, {{0x1c83d,5},{0x1dac,3}}, + {{0x709c,2},{0x244ed,2}}, {{0x1b695,2},{0xd5c,1}}, {{0x264c,4},{0xef14,7}}, {{0xbe0,1},{0xb82,2}}, + {{0x20bb,3},{0xe5e4,3}}, {{0x3694,4},{0xa7c5,6}}, {{0xdc1,5},{0x1a,1}}, {{0x2796,3},{0x188b6,6}}, + {{0x12d0,9},{0xb63,2}}, {{0x5c21,9},{0x11b8,4}}, {{0xc51,2},{0xfb88,6}}, {{0x278a7,3},{0x27a9d,2}}, + {{0x33fa,3},{0x220f,5}}, {{0xb86,4},{0xb8a,8}}, {{0x178c,3},{0x23007,2}}, {{0x5df7,7},{0x2971,3}}, + {{0x10f0,1},{0x539c,3}}, {{0x373c,8},{0x5fa0,4}}, {{0x3113,5},{0xb2c,4}}, {{0x2789b,4},{0x278af,1}}, + {{0x2c76,4},{0x1c1d1,4}}, {{0x1257,3},{0xb47,2}}, {{0x244b9,2},{0x1019c,2}}, {{0x19c26,2},{0x10dc,2}}, + {{0xb75,5},{0xe70,4}}, {{0x1a982,6},{0xbb1,3}}, {{0x14d5c,6},{0x1425b,3}}, {{0x10ef,1},{0xb79,2}}, + {{0xae6,2},{0x1c25,4}}, {{0xcde,3},{0x1341,9}}, {{0x2264,4},{0xb2e,2}}, {{0x41da,3},{0x1fce3,2}}, + {{0x423c,3},{0x21842,4}}, {{0xceb,3},{0xb64,3}}, {{0x2796,3},{0x269d8,2}}, {{0x18cd0,6},{0xb54,3}}, + {{0x1e,1},{0x1ca08,5}}, {{0x11716,9},{0xae7,1}}, {{0xceaa,6},{0x12040,4}}, {{0x178c,3},{0x1d,2}}, + {{0xf579,5},{0xf57e,6}}, {{0xb2c,2},{0x1408,3}}, {{0x3fb6,5},{0x647d,4}}, {{0x7d92,7},{0xbed,4}}, + {{0x1e45,3},{0x1a5c,3}}, {{0x278a1,3},{0x279ef,2}}, {{0x1a293,4},{0x1a297,5}}, {{0xceb,3},{0x9206,3}}, + {{0x27b4,3},{0xde9,1}}, {{0x2c55a,4},{0x70da,2}}, {{0xbc2,2},{0x1a,2}}, {{0x8940,3},{0x17476,4}}, + {{0x2445c,3},{0x28633,2}}, {{0x4728,6},{0x1393,3}}, {{0xdf3,3},{0x1393,3}}, {{0x269e1,4},{0x10ca,1}}, + {{0x6d8e,3},{0x4284,2}}, {{0x278c9,2},{0x27a31,2}}, {{0x14bc,4},{0xbd6,2}}, {{0x269e7,4},{0x269eb,2}}, + {{0x70dc,4},{0x244c7,2}}, {{0x178c,3},{0x19f24,6}}, {{0x16ae4,5},{0x2af8,4}}, {{0x35b4,7},{0x35bb,7}}, + {{0x21261,5},{0x2bfc,2}}, {{0x278a7,3},{0x27a6d,2}}, {{0x13188,5},{0x3cc7,4}}, {{0xb2b,3},{0xbe8,3}}, + {{0x10320,4},{0x2195,3}}, {{0x1ed53,1},{0x1ed4b,4}}, {{0x2789b,3},{0x278a9,2}}, {{0x1480,2},{0x20dd,6}}, + {{0x72fa,9},{0xae7,1}}, {{0x7702,6},{0xb52,5}}, {{0x14ee2,4},{0xd0c8,4}}, {{0x3f7e,5},{0xcc0,3}}, + {{0xde9,1},{0xd8f,3}}, {{0x250d5,3},{0xb63,3}}, {{0x132c,6},{0x1313,9}}, {{0xc55,2},{0xae8,2}}, + {{0x416a,5},{0x80d3,7}}, {{0x21a98,6},{0x1d,1}}, {{0x1bf35,5},{0x1d,1}}, {{0x11ef,6},{0xbb4,4}}, + {{0xc8a,2},{0xb0a1,4}}, {{0x1cbf,4},{0x1cd19,4}}, {{0x16cc,4},{0xb9c,3}}, {{0x2061,5},{0x360f,7}}, + {{0x278a7,3},{0x27a97,2}}, {{0x360f,2},{0x1d,1}}, {{0xb72,2},{0xb63,2}}, {{0x719e,5},{0x20b39,4}}, + {{0xc17,3},{0x1d59,4}}, {{0x794e,7},{0x1f13,4}}, {{0xd99f,6},{0xcb8,2}}, {{0x440f,2},{0xbeb,1}}, + {{0x1084,3},{0x1c351,4}}, {{0x441c,3},{0x12373,5}}, {{0xba5,5},{0x33dd,9}}, {{0x2935b,4},{0xae7,1}}, + {{0x857e,7},{0xf5e,5}}, {{0x1cff9,6},{0xd0d,2}}, {{0x4971,7},{0x1d,1}}, {{0x24525,4},{0x1b887,2}}, + {{0x4134,3},{0xaee,5}}, {{0x4559,4},{0x25da,3}}, {{0x41be,3},{0x428b,2}}, {{0xacf6,5},{0xb066,2}}, + {{0xbe0,1},{0x5aab,3}}, {{0x9f8e,9},{0x2b,3}}, {{0x19f3c,4},{0x28da,1}}, {{0x27959,2},{0x278dc,1}}, + {{0x2214d,8},{0x1b,1}}, {{0x2b854,2},{0xff22,2}}, {{0x15a1f,3},{0xcb8,2}}, {{0x1f921,5},{0x16a2,3}}, + {{0x6ac3,3},{0xc57,3}}, {{0x12c4c,5},{0x1af8,5}}, {{0x9aba,5},{0x7b96,4}}, {{0xaec,2},{0x92c9,4}}, + {{0xd41,3},{0xc5ff,4}}, {{0x27b4,3},{0xdfd2,8}}, {{0x3db0,5},{0xb65,2}}, {{0x12fc,4},{0x5c76,4}}, + {{0x10ea,3},{0x1d8e,3}}, {{0xfc80,6},{0xcc3,4}}, {{0xcd9,3},{0x13e4a,5}}, {{0x178c,3},{0x2098b,2}}, + {{0xbd7,3},{0x2693,4}}, {{0x273c,4},{0x1d,1}}, {{0x4134,3},{0x9238,6}}, {{0xcd9,3},{0xaea,1}}, + {{0x5c76,4},{0x15b0,3}}, {{0x13ea0,5},{0x2584,5}}, {{0x4bad,7},{0x4bb4,6}}, {{0x6cbe,5},{0xb54,3}}, + {{0x70dc,4},{0x6f64,2}}, {{0x762a,4},{0xc829,4}}, {{0xbd4c,5},{0xb7c,2}}, {{0x70d8,4},{0x1b237,4}}, + {{0x27b6,1},{0x290f,3}}, {{0x278a7,3},{0x2797d,2}}, {{0x1c29,6},{0x1717,5}}, {{0x27995,2},{0x116d,1}}, + {{0x8c4,4},{0x30,20}}, {{0xf275,5},{0x11ef,2}}, {{0x1058,4},{0x1aad,5}}, {{0x1b25b,4},{0x2c,2}}, + {{0x2c76a,4},{0x806,2}}, {{0xad64,2},{0x13092,6}}, {{0x23c3d,6},{0xae7,1}}, {{0x1465c,5},{0xdbf,3}}, + {{0xd8e,3},{0x18d8,3}}, {{0x508d,5},{0x843f,7}}, {{0x9b0e,8},{0x1498,3}}, {{0x2796,3},{0x1036,3}}, + {{0x443e,2},{0x10dc,2}}, {{0x594f,2},{0x23d9,3}}, {{0x25d3b,4},{0xfb89,4}}, {{0x271e,3},{0xf8cf,2}}, + {{0x2721d,4},{0xab9c,1}}, {{0xd51,2},{0xeb3,3}}, {{0x1e45,3},{0x18d4,3}}, {{0x1b693,2},{0x1878,1}}, + {{0x17bc,3},{0xaaf0,2}}, {{0xc13,4},{0x729e,8}}, {{0x52a2,6},{0x2746,3}}, {{0x318c,6},{0x2abe,5}}, + {{0xbde,3},{0xbfc4,6}}, {{0xbe4,1},{0x6107,3}}, {{0xadd0,3},{0x6170,8}}, {{0xb4a,2},{0x490e,8}}, + {{0xd98,8},{0x1a,3}}, {{0x2445c,3},{0x948,2}}, {{0x422e,3},{0x4189,3}}, {{0x1e,1},{0xc2e,2}}, + {{0x13cca,5},{0x5c76,4}}, {{0x2859,7},{0x25f9,8}}, {{0xeec,7},{0x32e3,7}}, {{0x271e,3},{0xb065,3}}, + {{0x1b6ab,1},{0x278e1,2}}, {{0xf0e,5},{0x7681,3}}, {{0x29760,4},{0xb7d,1}}, {{0x13be4,5},{0x16b94,4}}, + {{0x177c,3},{0x1b133,2}}, {{0x14d02,5},{0x8009,5}}, {{0x17ae,1},{0x206a,6}}, {{0x142c,3},{0x1dec2,4}}, + {{0x423c,3},{0x2045,3}}, {{0x2c30,10},{0x159f,4}}, {{0x37c8,8},{0x1152,3}}, {{0x3dda,8},{0x3de2,6}}, + {{0x1907,3},{0xec4,3}}, {{0x2bfc,2},{0xeb2,1}}, {{0xbaf,2},{0xa5de,4}}, {{0x3234,3},{0x411c,4}}, + {{0xbb5,1},{0x1e75a,2}}, {{0xfac4,8},{0xae7,1}}, {{0x3a14,8},{0xe70,5}}, {{0x5102,5},{0x5fe0,5}}, + {{0x278c9,2},{0x27a37,2}}, {{0xf92f,4},{0x7a06,5}}, {{0x189dc,6},{0x2b,3}}, {{0xae2,1},{0x90e5,3}}, + {{0xc1c,2},{0x1f13,4}}, {{0xadf,2},{0xbb4,2}}, {{0xfdd,2},{0xfdf,3}}, {{0xfbb1,3},{0xc67,2}}, + {{0xbe4,1},{0x1cc58,4}}, {{0x6e44,5},{0x1701,3}}, {{0xe6c,3},{0xc57,3}}, {{0x19b3,4},{0xdfab,3}}, + {{0x31a1,6},{0xb8f,3}}, {{0x446a,5},{0x4497,7}}, {{0x278a7,3},{0x27a8b,2}}, {{0x4a27,4},{0xb51d,5}}, + {{0xc25,9},{0x1275,7}}, {{0xeec,7},{0x1463,9}}, {{0x20bb,3},{0x1cf1b,4}}, {{0x17966,5},{0xcccd,4}}, + {{0x87ee,6},{0xbc4,4}}, {{0xf30,5},{0x79bf,7}}, {{0x2d64,6},{0x8c46,4}}, {{0xab9a,3},{0x443e,2}}, + {{0x1c85,3},{0x18d8,3}}, {{0xaf62,2},{0xfcb4,2}}, {{0x5915,6},{0xae8,2}}, {{0x6e10,4},{0x53f8,3}}, + {{0xf9d,4},{0xc55,2}}, {{0xae7,1},{0x4687,5}}, {{0xae2,1},{0x2a91,2}}, {{0x11946,5},{0xbb4,4}}, + {{0x276fd,5},{0x1c,1}}, {{0xb87c,7},{0xb65,2}}, {{0x1972,2},{0x3f72,4}}, {{0x146c,7},{0xff7,5}}, + {{0x14be2,3},{0xc20,5}}, {{0x139f,3},{0x583f,3}}, {{0x14780,4},{0xb9d,3}}, {{0x1f471,6},{0xae7,1}}, + {{0x10fb,3},{0x705a,4}}, {{0x237c,10},{0x2b3e,4}}, {{0xeca,5},{0x820d,5}}, {{0x181c,3},{0x45ce,4}}, + {{0xddc,4},{0x5eb6,4}}, {{0x924,2},{0x27af7,2}}, {{0x432,32},{0x432,7}}, {{0x27c3,4},{0x23e9b,3}}, + {{0x6f6e,6},{0x6f68,6}}, {{0x9423,3},{0x2b,3}}, {{0x1693,3},{0x18d8,3}}, {{0x740e,6},{0x7b65,5}}, + {{0x273cd,5},{0xbeb,1}}, {{0x1ab2,4},{0x4c75,8}}, {{0xbd3,3},{0x28,1}}, {{0x2d74e,2},{0x1ed53,1}}, + {{0x30,128},{0x30,2}}, {{0x6b6c,5},{0xce2,3}}, {{0xae7,1},{0x104f9,5}}, {{0x70a0,8},{0x70a8,8}}, + {{0xadd,7},{0xe78,3}}, {{0x142e,1},{0xbbf,2}}, {{0x17f23,7},{0x2b,2}}, {{0x6d8e,3},{0x1a,2}}, + {{0x53e7,7},{0x377c,5}}, {{0x20,2},{0x2b4b,5}}, {{0xc37,3},{0xb63,4}}, {{0xc34,2},{0xeb2,1}}, + {{0x1bf5d,6},{0xc2a,2}}, {{0x39f8,5},{0x46bb,5}}, {{0x1a,2},{0xc63,3}}, {{0x16ae,3},{0xb54,4}}, + {{0x244b9,2},{0x70b4,2}}, {{0x1aafc,5},{0x2bfd,2}}, {{0x92e6,8},{0xae7,1}}, {{0x423e,4},{0x12f1,3}}, + {{0x432,1},{0x24461,1}}, {{0xd5c,1},{0x16be,3}}, {{0xaf1,1},{0xaf49,4}}, {{0x16de,5},{0x25f9,8}}, + {{0x4290,4},{0x14d4,4}}, {{0x1341,4},{0xb63,2}}, {{0x6b6c,5},{0x1ae4,7}}, {{0xcd9,3},{0xb13b,3}}, + {{0x1f471,6},{0x10dc,2}}, {{0xacf6,4},{0x2abe,5}}, {{0x278a7,3},{0x279b9,2}}, {{0x10f3,1},{0xaea,1}}, + {{0x6c08,4},{0xe70,3}}, {{0x278c9,2},{0x116d,2}}, {{0x10fb,4},{0x43a2,3}}, {{0x116d,1},{0x27b03,2}}, + {{0x5f90,3},{0x1a,2}}, {{0xeb2,1},{0x101b,3}}, {{0x2c866,4},{0x410e,2}}, {{0x22df5,6},{0xae5,1}}, + {{0x2c8de,4},{0xa4f,2}}, {{0x1fde1,5},{0xb76,3}}, {{0xb73,2},{0xdfa,3}}, {{0x2868,4},{0x2db1,3}}, + {{0x147e2,7},{0xc78,3}}, {{0x1b,1},{0x35fd,3}}, {{0x2ed0,7},{0x1e6c,6}}, {{0x3dda,5},{0xe9a0,6}}, + {{0xd41,5},{0xbcac,6}}, {{0x181c,10},{0x1716,5}}, {{0xced,5},{0x1d,1}}, {{0xa7da,3},{0xb55,2}}, + {{0xf8de,4},{0x14713,3}}, {{0x446a,5},{0xea0b,4}}, {{0x178c,3},{0xb82,2}}, {{0x7548,5},{0xd57,2}}, + {{0xe5d,3},{0xba24,5}}, {{0x145a0,1},{0x5582,4}}, {{0x1fb1,6},{0xcf7,6}}, {{0x10ea,3},{0xede,3}}, + {{0x2318,4},{0xb52,5}}, {{0x28f6,2},{0xb53,2}}, {{0x1b25b,4},{0xd0c,2}}, {{0x5080,9},{0x67c0,3}}, + {{0x84b2,5},{0x27,1}}, {{0xae0,1},{0xb7d,1}}, {{0x244b3,2},{0x24673,2}}, {{0x41da,3},{0x12175,5}}, + {{0x17bc,3},{0x423e,1}}, {{0x1dbe,5},{0x3211,7}}, {{0x13bc,4},{0xbb5,1}}, {{0x136c,6},{0x4fdd,7}}, + {{0x30,256},{0x30,192}}, {{0x257a,4},{0xd1b,1}}, {{0x1ab2,5},{0x2b,2}}, {{0xcdd9,6},{0xaf2,1}}, + {{0x2445c,3},{0x2a8c0,4}}, {{0x3f62,6},{0xcd2,7}}, {{0x2445f,1},{0x251dc,2}}, {{0xf68c,5},{0xf27c,3}}, + {{0x5288,5},{0xe35b,5}}, {{0xbe0,1},{0x4284,2}}, {{0x2aacb,2},{0x6f66,2}}, {{0x2214,10},{0xb52,5}}, + {{0xa8e2,5},{0xa8e7,7}}, {{0x7c4,1},{0x9a9,1}}, {{0x1e45,3},{0xaf1,1}}, {{0x10d48,4},{0x166b9,5}}, + {{0x6699,9},{0x1498,4}}, {{0x6ac3,3},{0x4284,2}}, {{0x532,66},{0x30,38}}, {{0xd7f,3},{0xbb3,2}}, + {{0x14d5,3},{0xb52,5}}, {{0x6d8e,3},{0x1d,1}}, {{0xc2f,2},{0xec5,5}}, {{0xb047,6},{0xb67,5}}, + {{0x27d24,3},{0x28634,1}}, {{0x3678,6},{0x45d0,6}}, {{0xeb9,4},{0x172f9,5}}, {{0x276bd,2},{0x28da,1}}, + {{0xae7,1},{0x18fc9,4}}, {{0xde9,1},{0xdac,2}}, {{0x1a,1},{0x16be,3}}, {{0x18268,5},{0x25df,4}}, + {{0xb2f,1},{0x3203,7}}, {{0xae0,1},{0xbb4,4}}, {{0x441c,3},{0x10504,4}}, {{0xfefc,4},{0x70a8,4}}, + {{0x41da,3},{0x283e,2}}, {{0x27d0f,2},{0xb33,2}}, {{0xa62a,7},{0x11b8,4}}, {{0x10fb,3},{0xa886,4}}, + {{0x2b50,6},{0x5396,3}}, {{0x247f1,4},{0x24815,4}}, {{0x8e3a,3},{0xc1c,2}}, {{0xb7f,3},{0x28da,1}}, + {{0x162c,6},{0x2dc3,3}}, {{0x278a7,3},{0x27ad9,2}}, {{0x2c76,7},{0x2bca,4}}, {{0xaf1,2},{0xc67,2}}, + {{0x10b7,4},{0xbc1,2}}, {{0x10f2,1},{0x51ae,4}}, {{0xb9c,2},{0xb52,2}}, {{0xaf3,4},{0x1a328,2}}, + {{0xcbd,3},{0xe03,4}}, {{0x2318,4},{0xb54,4}}, {{0xbeb,2},{0xc67,2}}, {{0xe97a,6},{0xb52,5}}, + {{0x4338,8},{0xeb3,3}}, {{0xc34,2},{0xb67,2}}, {{0x11e1,3},{0xb67c,6}}, {{0x1fbf9,6},{0x40b8,2}}, + {{0x1dbe,5},{0x103b,5}}, {{0x18457,7},{0x1a,1}}, {{0x1dcd,5},{0x1444,7}}, {{0x11888,7},{0x2b,3}}, + {{0x29b5b,4},{0x43e3,1}}, {{0x27a6d,2},{0x116c,1}}, {{0x4484,6},{0xb52,6}}, {{0x323c,2},{0x2b,1}}, + {{0xcc0,3},{0x290f,3}}, {{0x26a8,6},{0x2d44,4}}, {{0x1daf,4},{0xf10,3}}, {{0x145bc,6},{0x2288,4}}, + {{0xb68,3},{0x87b5,4}}, {{0xd7a,3},{0xb4b,2}}, {{0x46f4,6},{0x2b,3}}, {{0xfc6a,5},{0x27,1}}, + {{0x10f7,1},{0xadf,2}}, {{0xbd1,2},{0x1e,1}}, {{0xac8a,4},{0x8a92,4}}, {{0x14cc,7},{0x377c,6}}, + {{0x1cbf,4},{0xb47,2}}, {{0xc13,4},{0x314c,8}}, {{0x176ba,6},{0xcce,3}}, {{0xe34a,5},{0x1254,6}}, + {{0x278a1,3},{0x27917,2}}, {{0xf79,3},{0xc67,3}}, {{0x27,1},{0x4606,3}}, {{0x178c,7},{0x141e,3}}, + {{0x29556,4},{0xbe0,1}}, {{0x422e,3},{0xc30,2}}, {{0x1b,1},{0x10ec,1}}, {{0xd14,4},{0xb7c,3}}, + {{0x10c8,3},{0xff7,5}}, {{0x4ed3,7},{0x224a,6}}, {{0x251ec,3},{0x24460,3}}, {{0xfb1,3},{0xdf0,2}}, + {{0x446a,4},{0xc77,2}}, {{0x5b1d,7},{0x103a,3}}, {{0x16ae4,5},{0xc63,3}}, {{0x1af4b,2},{0x1b4f,3}}, + {{0x16f8c,6},{0x10dc,2}}, {{0xd0f,4},{0xc77,2}}, {{0xa7da,3},{0xc89,2}}, {{0x17bc,3},{0xa7d3,2}}, + {{0xd17,3},{0x28,1}}, {{0x134c,5},{0x1351,11}}, {{0x1adf,5},{0x3787,4}}, {{0x82ae,11},{0x1a,1}}, + {{0x152fc,5},{0x11b8,4}}, {{0xbe7,1},{0x28475,3}}, {{0x150fe,5},{0xe0a,5}}, {{0x1d3a5,5},{0xc62,3}}, + {{0x185b,3},{0x488f,5}}, {{0xac8a,4},{0xde2,4}}, {{0x3640,4},{0x715a,3}}, {{0x278a7,3},{0x279c5,2}}, + {{0xb9a5,5},{0xa60f,3}}, {{0x1c,1},{0x95c7,5}}, {{0x1972,2},{0xcc0e,3}}, {{0x2445e,1},{0x2d672,2}}, + {{0x88de,5},{0xf12,4}}, {{0x4c08,7},{0xae8,2}}, {{0x131ec,7},{0x2b,3}}, {{0x1ab4f,3},{0xf47,4}}, + {{0x10ef,1},{0x1aaed,1}}, {{0x10ef,1},{0xc593,4}}, {{0xc8dd,6},{0x22e3,3}}, {{0x2b,2},{0x1e6c,6}}, + {{0x1095,3},{0x7109,5}}, {{0x18a5,5},{0xb54,4}}, {{0xf212,3},{0x28,1}}, {{0xbe0,1},{0xfb1,2}}, + {{0x27b95,4},{0x27a2b,2}}, {{0x1dec2,4},{0xd1b,1}}, {{0x6e5e,5},{0xb55,2}}, {{0x1a,3},{0xb2f,1}}, + {{0x6d8e,3},{0x2045,3}}, {{0xa623,4},{0x97d8,3}}, {{0xd91,3},{0x7a46,4}}, {{0x10c8,3},{0x214b2,4}}, + {{0x10c8,3},{0x20,2}}, {{0x219c,4},{0xc67,2}}, {{0xaf1,1},{0x1cf1b,4}}, {{0xd041,5},{0x963c,5}}, + {{0xc52,2},{0x2b,3}}, {{0x1459e,3},{0xb47,2}}, {{0x27905,2},{0x278dc,1}}, {{0x6b52,4},{0xfc6d,3}}, + {{0x143aa,6},{0x1b80,4}}, {{0xc13,4},{0x44fd,9}}, {{0x5d5b,5},{0x1af8,5}}, {{0x70ea,6},{0x70f0,6}}, + {{0x265d,3},{0x10dc,2}}, {{0x6b5f,4},{0xbb2a,3}}, {{0x252c1,6},{0x10168,4}}, {{0x2c902,4},{0xff22,2}}, + {{0xbeb,1},{0xae8,2}}, {{0xc37,3},{0x21842,4}}, {{0x1621,4},{0xe4d,6}}, {{0x27b4,3},{0x18d4,3}}, + {{0xbb5,1},{0x92ec,3}}, {{0x27a3d,2},{0x27897,1}}, {{0xa1c2,6},{0x1dac,3}}, {{0x290c,2},{0x2891,3}}, + {{0x4971,5},{0x2bfc,2}}, {{0x18d4,3},{0xc63,3}}, {{0xb64,2},{0x1156,6}}, {{0xf0e,5},{0x297a,6}}, + {{0xb31,1},{0x780,1}}, {{0x1f929,6},{0xd0d,2}}, {{0xc65,4},{0x14b7,3}}, {{0x1c83,6},{0x1c89,9}}, + {{0xedb,4},{0xdaf,2}}, {{0x5483,5},{0xd8e,4}}, {{0x48a4,3},{0xb8f,2}}, {{0x119c,5},{0x9961,5}}, + {{0x10ec,1},{0x43a2,3}}, {{0xb72,2},{0xbb5,1}}, {{0x10fb,3},{0x10fa,1}}, {{0x26754,2},{0x10f7,1}}, + {{0x278a1,3},{0x116c,2}}, {{0x39f8,5},{0xb78,2}}, {{0xd78,5},{0x1387,4}}, {{0x2446c,1},{0x24a2d,2}}, + {{0xd41,3},{0xb8a,2}}, {{0xcd9,5},{0xdfb3,6}}, {{0x178c,3},{0x14f68,2}}, {{0x1568a,5},{0xc8a3,3}}, + {{0x6d81,3},{0x1d8a,3}}, {{0x19a8f,4},{0x2c7e,5}}, {{0x1051,4},{0x5af9,3}}, {{0x10f3,1},{0x6ac5,1}}, + {{0x261f,5},{0x14229,5}}, {{0x2445f,1},{0x24467,2}}, {{0xb30,8},{0xb32,3}}, {{0x134c,5},{0x75cd,4}}, + {{0xf212,3},{0x1675,2}}, {{0x11946,5},{0x28e2,4}}, {{0x3234,3},{0x101b9,5}}, {{0x21,1},{0xfe5,2}}, + {{0xfefc,4},{0x70a0,4}}, {{0x61fa,9},{0x1278,4}}, {{0xb8b,2},{0x82ee,7}}, {{0x1089,2},{0xb2e,2}}, + {{0x6f23,3},{0x1a88,3}}, {{0x5288,5},{0xcccb,6}}, {{0x14e58,4},{0x1b,1}}, {{0xfa4b,8},{0x1719,3}}, + {{0x10f3,1},{0xb55,2}}, {{0x27b6,1},{0xf8cf,2}}, {{0x14cc,4},{0x114d,2}}, {{0xbde,3},{0xa084,4}}, + {{0xd0f,4},{0x2c37,4}}, {{0x23932,5},{0xb67,2}}, {{0x1e7f7,5},{0x2b,3}}, {{0x71da,6},{0x2b,2}}, + {{0xea98,5},{0x2c0b,3}}, {{0x2796,3},{0x43e3,1}}, {{0xe86,8},{0x833a,4}}, {{0xc37,3},{0x9133,3}}, + {{0x1972,2},{0x1f13,4}}, {{0x6e03,4},{0xb48,2}}, {{0x1878,1},{0x10fa,1}}, {{0x1a,2},{0x4bc2,5}}, + {{0xaea,1},{0x18e44,5}}, {{0xaf1,2},{0x1b,1}}, {{0xfd25,4},{0xb78,2}}, {{0xa096,7},{0x4459,3}}, + {{0x1db2d,6},{0x10dc,2}}, {{0x2218e,6},{0xae7,1}}, {{0x27b4,3},{0x133a7,5}}, {{0xf63,5},{0x2e76,4}}, + {{0x318c,7},{0x1498,4}}, {{0x323c,2},{0xae7,1}}, {{0x415e,3},{0xae8,2}}, {{0xbd5,2},{0xb64,3}}, + {{0x2789b,4},{0x278a9,1}}, {{0x27a07,2},{0x116c,1}}, {{0xbe28,8},{0xb78,2}}, {{0x169ff,4},{0xae7,1}}, + {{0xb44,3},{0x2eaf,5}}, {{0x178c,3},{0x4288,2}}, {{0xab9a,3},{0x10ef,1}}, {{0x2e8a,8},{0x2b,3}}, + {{0xae2,2},{0xb89,2}}, {{0x10fb,3},{0x2202,3}}, {{0x28da,1},{0xbe0,1}}, {{0x4074,3},{0xf63c,3}}, + {{0x1fc79,5},{0x1a11,2}}, {{0xb64,2},{0x4bbe,6}}, {{0x130c,7},{0xd1a,7}}, {{0x2c8a2,4},{0x96b,2}}, + {{0xaa10,9},{0xae7,1}}, {{0x28824,6},{0x28,1}}, {{0x14d9c,3},{0xf6d5,4}}, {{0x1042,4},{0xc89,3}}, + {{0x219c,11},{0xc7b,4}}, {{0xb66,2},{0x2347,3}}, {{0x753a,7},{0xb78,2}}, {{0x422e,3},{0xd57,2}}, + {{0x50a7,5},{0xb2e,2}}, {{0x3234,3},{0x385b,4}}, {{0x12f37,3},{0x1719,3}}, {{0x10ea,3},{0x2950e,2}}, + {{0x17fc,5},{0x2b,3}}, {{0x12552,4},{0x10dc,2}}, {{0x5365,5},{0xcec5,6}}, {{0x27d24,3},{0x2445f,1}}, + {{0xaca2,4},{0xb85,2}}, {{0x162c,6},{0x1961,7}}, {{0x1b1f7,8},{0x1b1ff,8}}, {{0x257a,4},{0xae0,1}}, + {{0xc57,3},{0x28,1}}, {{0x24519,4},{0x1b709,2}}, {{0x1e,1},{0xf27c,3}}, {{0xddc,4},{0x5c25,5}}, + {{0x27b4,3},{0x3718,3}}, {{0x319a,6},{0xc30,4}}, {{0x6ac3,3},{0xc829,4}}, {{0x3988,6},{0x1a,3}}, + {{0xb31,1},{0x9a9,3}}, {{0x10a46,7},{0x22e1,3}}, {{0x434e,2},{0xbe7,1}}, {{0x27cea,1},{0x2843a,2}}, + {{0x116d,1},{0x27ac1,2}}, {{0x1b4f,3},{0xae7,1}}, {{0x27a31,2},{0x278dc,1}}, {{0x4728,5},{0x4747,8}}, + {{0x27a0d,2},{0x278af,1}}, {{0x1509a,4},{0xb52,2}}, {{0x4cd8,6},{0x251c,4}}, {{0x1b951,6},{0x70d0,4}}, + {{0x10ea,3},{0x4119,3}}, {{0x17ac,7},{0x1313,7}}, {{0xb8f,2},{0x141e,3}}, {{0x20,2},{0xaea,1}}, + {{0x1f8f,8},{0x2b,3}}, {{0xea98,7},{0x2211,3}}, {{0xbd1,5},{0xec5,5}}, {{0x24a41,2},{0x1ed53,1}}, + {{0x27d4,4},{0x89b9,4}}, {{0x1f2b1,4},{0xaa95,3}}, {{0x924,2},{0x116d,2}}, {{0x278a7,3},{0x279e9,2}}, + {{0xcc7,3},{0x18892,6}}, {{0x1084,3},{0x17bd8,6}}, {{0x16ae,2},{0x129aa,4}}, {{0x69ce,3},{0xbd1,2}}, + {{0x10fb,3},{0xae7,1}}, {{0xab9a,3},{0xc55,2}}, {{0x16cc,4},{0xaea,3}}, {{0x1ca1,11},{0x2211,3}}, + {{0xbe0,1},{0x14d5,3}}, {{0xb85,2},{0xaf2,1}}, {{0xceb,3},{0xbb0,2}}, {{0x13630,6},{0x89b9,4}}, + {{0x27911,2},{0x27897,1}}, {{0x4a75,5},{0xeb5a,4}}, {{0xb61,2},{0xb9d,3}}, {{0x2c76,4},{0x734a,4}}, + {{0xc13,4},{0xb408,7}}, {{0x28c55,4},{0x1e,1}}, {{0x1d8d7,6},{0xb2c,2}}, {{0xe89e,7},{0x10b3,4}}, + {{0x924,1},{0x27a13,2}}, {{0x1f,4},{0xd4f,5}}, {{0xd0f,11},{0x253a,4}}, {{0x2451f,2},{0x24673,2}}, + {{0x2b,2},{0xc67,3}}, {{0x178c,3},{0xf5f6,2}}, {{0xfefc,4},{0xfef0,8}}, {{0x127d8,6},{0xcab,3}}, + {{0x2789b,3},{0x278a3,2}}, {{0xe6d,2},{0x207e3,5}}, {{0x10c8,5},{0x29fa,5}}, {{0x1308,3},{0xc7b,4}}, + {{0x10fb,6},{0xd17,3}}, {{0x1cee,3},{0xbb4,4}}, {{0x295c,4},{0x2b,3}}, {{0x30,128},{0x30,4}}, + {{0x1adf,5},{0xfcfc,3}}, {{0x5949,4},{0xb82,2}}, {{0x10f6,1},{0xae0,2}}, {{0xbb4,2},{0xeb3,3}}, + {{0xfdbf,5},{0x5e3f,6}}, {{0x3d40,9},{0x2b,3}}, {{0x28634,1},{0x1ed58,1}}, {{0xadc2,8},{0x674c,3}}, + {{0x4338,8},{0xc34,2}}, {{0x530c,3},{0xae5,1}}, {{0xe2fd,5},{0xba24,5}}, {{0xf282,3},{0x23ce,4}}, + {{0x6ac3,3},{0xbd93,6}}, {{0x26c6,1},{0xaf5e,2}}, {{0xaca2,3},{0xb48,2}}, {{0x5c76,4},{0x1b981,4}}, + {{0xb75,5},{0xb7a,5}}, {{0x2c93e,4},{0x24515,2}}, {{0x423e,1},{0x2739,3}}, {{0x1064,4},{0xd57,2}}, + {{0xc4d,2},{0xae2,1}}, {{0x2793d,4},{0x2790b,2}}, {{0x28da,1},{0x1a81d,2}}, {{0xb4e0,6},{0x1f0f,3}}, + {{0x229b,5},{0x101a,3}}, {{0x27,1},{0x229d,3}}, {{0x159c,4},{0x11d3,9}}, {{0xf1ba,8},{0x1081,3}}, + {{0x5102,5},{0x3ba5,5}}, {{0x2350c,3},{0xb78,2}}, {{0x1a21e,5},{0x49ae,4}}, {{0xfdf,2},{0xcb8,2}}, + {{0x1c,1},{0xaf1,2}}, {{0xb44,3},{0x188ca,4}}, {{0xa2ee,5},{0x3718,3}}, {{0x278a7,3},{0x27a01,2}}, + {{0xcb8,3},{0xb4b,2}}, {{0x271e,3},{0xaa9b,2}}, {{0x2ce18,4},{0x2ce18,2}}, {{0xb7f,3},{0xc39,2}}, + {{0x20dd,3},{0x11e4,4}}, {{0x1f62,9},{0xb52,6}}, {{0x6d8e,3},{0x1aaed,1}}, {{0x1f,1},{0xa563,7}}, + {{0x10dc,2},{0x2b,2}}, {{0x2c47c,4},{0x157b6,2}}, {{0x6b52,4},{0x1f1c5,4}}, {{0x271e,3},{0x14bb5,2}}, + {{0xf3d5,8},{0xae6,3}}, {{0x2160,5},{0x186db,4}}, {{0x3678,4},{0xae6,2}}, {{0x18,1},{0x24,1}}, + {{0x27,1},{0xcb8,2}}, {{0x2445f,1},{0x2843a,2}}, {{0x1ab2,4},{0x32d8,4}}, {{0x41da,5},{0xaea,2}}, + {{0xc5ff,4},{0xdfa,3}}, {{0x7ee2,9},{0x10dc,2}}, {{0x1b,1},{0x2abe,5}}, {{0x16dc,5},{0x2409,6}}, + {{0x2797d,2},{0x116c,1}}, {{0x1b,1},{0xd1b,1}}, {{0xb73,2},{0x17a70,4}}, {{0x1b87f,6},{0x70d4,4}}, + {{0x1f6a9,5},{0x132f,3}}, {{0x415e,3},{0x4e70,4}}, {{0x6019,11},{0xb2e,2}}, {{0x15018,6},{0x1501e,4}}, + {{0xf5eb,4},{0x2a16,3}}, {{0x43e8,8},{0x43f0,5}}, {{0x3678,6},{0x21d2,5}}, {{0x4bee,8},{0x28,1}}, + {{0xc49,3},{0x377c,6}}, {{0x16bc,4},{0xc5ff,4}}, {{0x972a,7},{0x1f13,4}}, {{0x181c,4},{0x69c3,5}}, + {{0x9646,5},{0xb8a,2}}, {{0x2445e,1},{0x2445e,2}}, {{0x1cbf,4},{0xfffb,2}}, {{0xaec,2},{0xae2,1}}, + {{0x278a7,3},{0x27a19,2}}, {{0x27977,2},{0x278a9,1}}, {{0xfc9,6},{0xd14,4}}, {{0x1015a,10},{0xff20,4}}, + {{0xb9c,4},{0xb68,4}}, {{0xb493,4},{0xaf1,1}}, {{0x177c,3},{0xe72,3}}, {{0x2c686,4},{0x6f64,2}}, + {{0xbe7,1},{0x10f0,1}}, {{0x20bb,3},{0xcc3a,7}}, {{0x27d24,3},{0x2b2ff,1}}, {{0xca1,2},{0x1f,1}}, + {{0xae6,3},{0x1b25b,4}}, {{0x108b,3},{0xb48,2}}, {{0xcb5,3},{0xc67,2}}, {{0x1687,3},{0xbbf,2}}, + {{0x278a7,3},{0x279fb,2}}, {{0xebc6,2},{0x24cdf,4}}, {{0x2720,2},{0x1b79,3}}, {{0x159c,5},{0x57bc,7}}, + {{0x8482,7},{0x47fe,5}}, {{0x494a,6},{0x21d2,6}}, {{0xf870,6},{0xf876,5}}, {{0xb9d,3},{0xb65,2}}, + {{0x1095,4},{0xfbf,3}}, {{0x1735a,6},{0x10dc,2}}, {{0x10fb,3},{0x13bd3,7}}, {{0x6c8c,4},{0x2b,3}}, + {{0x1559a,7},{0x1434,3}}, {{0x20724,5},{0xb2c,2}}, {{0xd51,2},{0xc67,3}}, {{0x3774,4},{0x22e3,3}}, + {{0xf3eb,5},{0x15b0,4}}, {{0xd041,7},{0x2249,3}}, {{0x20763,6},{0xae0,1}}, {{0x449e,9},{0xb48,2}}, + {{0xb70,2},{0x19ca,2}}, {{0x3774,4},{0xae2,1}}, {{0x2d,1},{0x7562,3}}, {{0x1ed69,3},{0x2b,1}}, + {{0xaab8,4},{0xe70,4}}, {{0x135c,5},{0xca6,2}}, {{0xbde,3},{0x15adc,2}}, {{0x3dcc,6},{0x66b9,7}}, + {{0x202c,5},{0xe38,3}}, {{0xaeca,5},{0x40bc,3}}, {{0x278a7,3},{0x27a73,2}}, {{0x440f,2},{0x4411,11}}, + {{0x3a36,2},{0x2b,2}}, {{0x1084,3},{0xbfe6,5}}, {{0xbcb,3},{0x1372,3}}, {{0x7c4,1},{0x24468,2}}, + {{0xbd5,2},{0xca7,2}}, {{0x2227c,5},{0x11ef,2}}, {{0x5ae2,6},{0xfaf,3}}, {{0x28513,3},{0x1f2c4,2}}, + {{0xb6e,2},{0xeb2,1}}, {{0x96be,11},{0xae7,1}}, {{0x114e,4},{0x1152,5}}, {{0xd0f,4},{0xb63,3}}, + {{0xfc12,6},{0xaee,5}}, {{0x1b4f,3},{0x2be6,4}}, {{0xfefc,4},{0x24871,4}}, {{0x14fc,4},{0x1d,1}}, + {{0x28,2},{0x2b,2}}, {{0x130c,7},{0x1313,9}}, {{0xddc,4},{0xfb1,3}}, {{0x26acb,5},{0x2b,1}}, + {{0xca7,3},{0x83df,7}}, {{0x428b,2},{0x1aaed,1}}, {{0x1faf1,5},{0x1d,1}}, {{0x1c,1},{0x1961,3}}, + {{0x10ef,1},{0x3df9,5}}, {{0xae6,3},{0xeb3,3}}, {{0x3218,5},{0xb264,4}}, {{0x4196,4},{0x3088,8}}, + {{0xadd,7},{0x34db,7}}, {{0x15572,6},{0xa5e6,4}}, {{0x100d,8},{0x1015,5}}, {{0xbde,3},{0xaad1,3}}, + {{0x948,2},{0x24,1}}, {{0x2aad3,6},{0x1b6f5,2}}, {{0x10d48,4},{0x423f,4}}, {{0xb2f,1},{0x5af9,3}}, + {{0x6d81,3},{0x5575,4}}, {{0x1a,2},{0xc78,3}}, {{0xb9c,2},{0xbb5,1}}, {{0xba4a,5},{0x1667b,4}}, + {{0x20bb,3},{0xc77,2}}, {{0x1a9d,3},{0x1d,1}}, {{0xae7,1},{0x11ef,2}}, {{0xb7f,3},{0xeb2,1}}, + {{0x1794b,5},{0x95a2,4}}, {{0xadd0,3},{0xeb3,3}}, {{0xab46,4},{0xc67,2}}, {{0x1e105,7},{0x1f,1}}, + {{0x6d81,3},{0x1b4b,3}}, {{0x17afb,5},{0x3fdc,4}}, {{0xae0,1},{0xccdf,8}}, {{0x10ea,3},{0x5c76,4}}, + {{0xb2d,3},{0xd088,5}}, {{0x6e53,4},{0x2f1c,7}}, {{0xc89,5},{0xce8,3}}, {{0x209d,4},{0xff7,5}}, + {{0xcd76,7},{0x2b3e,4}}, {{0x2789b,3},{0x27a49,2}}, {{0x2978d,4},{0xae7,1}}, {{0x178c,3},{0x1257,2}}, + {{0xacba,5},{0xc3d,3}}, {{0x247f5,8},{0x1b739,4}}, {{0x14dca,6},{0x3559,3}}, {{0x24531,4},{0x244c7,2}}, + {{0x27b6,1},{0x601c,8}}, {{0x154e6,5},{0x3a39,3}}, {{0x3846,4},{0x19bd,5}}, {{0x8484,5},{0x47fe,5}}, + {{0x3226,8},{0x224a,6}}, {{0xd1ee,8},{0xce8,3}}, {{0xfd9e,5},{0x174e,3}}, {{0xc52,2},{0xc21,4}}, + {{0x14aaa,5},{0xc8e,3}}, {{0x1d8a,3},{0x2b,3}}, {{0x1fd81,5},{0xb8a,2}}, {{0x279c5,2},{0x278af,1}}, + {{0x2ad8f,4},{0x6f90,2}}, {{0x27b4,3},{0x14d5,3}}, {{0xf41,4},{0x50fd,5}}, {{0xadf,2},{0x1f13,4}}, + {{0x500b,5},{0xc6fe,6}}, {{0xbe4,1},{0x187c,3}}, {{0xf2ee,5},{0xb645,6}}, {{0xacc6,5},{0x1e6c,6}}, + {{0xf3ed,3},{0xb55,2}}, {{0xfa09,8},{0xaf2,1}}, {{0xd54,1},{0x423e,1}}, {{0x3cec,9},{0xe70,5}}, + {{0x946,3},{0xb31,1}}, {{0x51ab,5},{0x2032,2}}, {{0x6853,7},{0xb52,5}}, {{0x734,1},{0x1ed4b,2}}, + {{0xb44,3},{0x5c76,4}}, {{0x5442,4},{0xc51,2}}, {{0x142e,1},{0x1d6ba,5}}, {{0xd5c,1},{0x285d1,2}}, + {{0xfb2,2},{0xc3d,3}}, {{0x2796,3},{0x29a4b,2}}, {{0x78b2,5},{0xb2f,1}}, {{0x432,32},{0x432,8}}, + {{0x2d,1},{0xbb0,2}}, {{0xdcb,7},{0x1099,4}}, {{0x6faa,12},{0x6faa,12}}, {{0x2d,1},{0xcce,3}}, + {{0x27b4,3},{0x23e7e,4}}, {{0x4f7c,8},{0x4f84,5}}, {{0xf1f,5},{0xb70,2}}, {{0xc25,5},{0xc74c,5}}, + {{0xa7da,3},{0x10b9,3}}, {{0x30ba,7},{0x1408,3}}, {{0xba97,8},{0x2b,3}}, {{0x10585,4},{0x28,1}}, + {{0x318c,5},{0x1719,3}}, {{0xfd3b,7},{0xaf2,1}}, {{0xf2b7,5},{0xb65,2}}, {{0x3e90,5},{0x689b,6}}, + {{0x1a859,4},{0x28,2}}, {{0x271e,3},{0xcc0e,3}}, {{0x12d5a,6},{0xb60f,4}}, {{0x16af,3},{0xc67,2}}, + {{0x8058,7},{0x10dc,2}}, {{0x1095,3},{0x2237,3}}, {{0x40f8,6},{0xc34,3}}, {{0x48ae,5},{0x4ab0,3}}, + {{0x28d1,3},{0x1b47e,5}}, {{0x1345a,8},{0x10dc,2}}, {{0xbde,3},{0xaee9,2}}, {{0x278a1,3},{0x27b03,2}}, + {{0xa7da,3},{0x10f3,1}}, {{0xfed2,8},{0xfed2,8}}, {{0xc37,3},{0xcbd,3}}, {{0xaea,2},{0x12a17,5}}, + {{0x3fee,5},{0xc5bd,6}}, {{0xa37e,8},{0x90f7,3}}, {{0xdf0,2},{0x2b,2}}, {{0x422e,3},{0x26c5b,3}}, + {{0x1b63b,3},{0x1563,5}}, {{0x244dd,6},{0x244e3,6}}, {{0x41be,3},{0x14e2,3}}, {{0xbe4,1},{0x29386,2}}, + {{0x78ca,4},{0x10ab9,5}}, {{0xbc23,6},{0xbc29,5}}, {{0xacba,5},{0xeb5,4}}, {{0xeb1,4},{0xeb5,4}}, + {{0xb44,3},{0x50fc,6}}, {{0x30ba,5},{0x11e6,6}}, {{0xddc,6},{0x1c43,4}}, {{0x4284,2},{0x155dd,3}}, + {{0x10f7,1},{0x152d2,2}}, {{0xf537,3},{0xc1c,2}}, {{0x2445f,1},{0xa7d,6}}, {{0x116d,1},{0x278ed,2}}, + {{0xadd,7},{0x1d,1}}, {{0x29e78,3},{0x29e80,2}}, {{0x2598,8},{0x1498,3}}, {{0x30bc,3},{0xb2c,2}}, + {{0xbd4,2},{0x9001,4}}, {{0xc1c,2},{0xaeb,2}}, {{0x178c,3},{0xeb2,3}}, {{0x5288,5},{0x9c01,5}}, + {{0xae5,1},{0x1d,2}}, {{0x17ec,4},{0x2b,2}}, {{0xd41,3},{0x15f26,3}}, {{0xac66,4},{0x1b4f,3}}, + {{0x619f,8},{0xc63,3}}, {{0xfe0c,5},{0xd57,5}}, {{0x1c8f,3},{0xc67,2}}, {{0x4e98,3},{0xaf2,1}}, + {{0x416a,11},{0x103a,3}}, {{0x20644,4},{0x16a1,3}}, {{0x4450,4},{0xae6,3}}, {{0xbaa2,5},{0x50fd,5}}, + {{0xd65,3},{0xcd5,2}}, {{0x8ce6,8},{0xae7,1}}, {{0x37e4,11},{0xb65,2}}, {{0xb65,2},{0x28,1}}, + {{0x178c,3},{0x26754,2}}, {{0xadf,2},{0x16af,3}}, {{0x122c,4},{0x10cca,6}}, {{0x51f9,10},{0xc30,2}}, + {{0x432,64},{0x432,8}}, {{0x2c76,4},{0x9726,4}}, {{0xae2,1},{0xbb1,3}}, {{0x278c9,2},{0x924,2}}, + {{0xb7f,3},{0x1ebd5,3}}, {{0x2b722,2},{0x2b722,2}}, {{0x4106,5},{0x4aae,5}}, {{0x8a9a,6},{0x7a46,4}}, + {{0x1a0d,5},{0x10569,3}}, {{0x90be,5},{0xbb5,1}}, {{0x6ac3,3},{0x265fe,3}}, {{0x28f6,2},{0x6900,8}}, + {{0xb44,3},{0x28e2,4}}, {{0x41ef,2},{0x102b4,5}}, {{0x27cea,1},{0x27e1c,2}}, {{0x1f,1},{0xcd5,2}}, + {{0x20bb,3},{0x1a88,3}}, {{0x6ac5,1},{0x14f5c,3}}, {{0x6ac3,3},{0xf24c,3}}, {{0x146e8,6},{0xcc3,4}}, + {{0x10c8,3},{0x2098b,2}}, {{0x2c812,4},{0x157a4,2}}, {{0x20339,6},{0xb2e,2}}, {{0xeca,5},{0xb64,2}}, + {{0x1f8f,8},{0xd7f,3}}, {{0x278a1,3},{0x278ed,2}}, {{0xf84f,5},{0x455b,6}}, {{0x10fb,3},{0x240a7,4}}, + {{0x19b96,2},{0xf8cf,2}}, {{0x10ca,1},{0x1372,3}}, {{0x278a7,3},{0x27a43,2}}, {{0x22628,5},{0xb65,2}}, + {{0xf773,5},{0xc34,2}}, {{0xbd4c,5},{0x314c,3}}, {{0x4352,2},{0x1a1f7,2}}, {{0x1fa61,5},{0x12ff,3}}, + {{0x2445f,1},{0x28439,3}}, {{0x1bc45,6},{0xd0d,2}}, {{0x2c416,4},{0x1b205,2}}, {{0xd65,3},{0xde1,2}}, + {{0x257a,7},{0x7fda,4}}, {{0x6d81,3},{0xc57,3}}, {{0xac8a,4},{0x1097,5}}, {{0x3a27,4},{0x2b,2}}, + {{0x12706,6},{0xc21,4}}, {{0x26838,2},{0x1ae4f,2}}, {{0x1f0f,3},{0xb66,2}}, {{0x2ccb0,4},{0x1cf1d,2}}, + {{0x422e,3},{0x1b09,3}}, {{0x2840,2},{0x2842,2}}, {{0xae9,2},{0x2b,2}}, {{0x7a6e,4},{0xcb8,3}}, + {{0x5d5b,5},{0x31f8,4}}, {{0x10d48,4},{0x5eb6,4}}, {{0x17bc,4},{0x2d,1}}, {{0x2aede,2},{0x2aede,2}}, + {{0x1b8e7,4},{0x70c8,4}}, {{0x3bfe,9},{0x1719,3}}, {{0x21ba,8},{0x10dc,2}}, {{0x178c,3},{0x25002,2}}, + {{0x6d81,3},{0x21afd,4}}, {{0x5143,7},{0x4ee7,6}}, {{0x1af97,6},{0x32d8,3}}, {{0xcd5,2},{0xeb2,1}}, + {{0x7a3e,9},{0x2202,3}}, {{0x1c,1},{0x981d,6}}, {{0x278a1,3},{0x27abb,2}}, {{0x1ad9f,6},{0x141e,3}}, + {{0xb4b,2},{0x2f54,5}}, {{0xbeb,1},{0x79f9,4}}, {{0x1d0b5,7},{0xae7,1}}, {{0x278a7,3},{0x27983,2}}, + {{0x177c,3},{0xcd5,2}}, {{0xaec,2},{0x1904,3}}, {{0x1035,5},{0xb2e,2}}, {{0x364e,4},{0xc89,2}}, + {{0x10fb,4},{0xfff,3}}, {{0x1a820,3},{0x283e,2}}, {{0xa906,6},{0x4b31,6}}, {{0x1a161,7},{0xc89,2}}, + {{0x173c,6},{0xf0c3,5}}, {{0x2241,9},{0x224a,6}}, {{0xae7,1},{0xa24a,3}}, {{0x16ee,2},{0x28,1}}, + {{0x1afb2,5},{0x1afb7,4}}, {{0x1bf55,6},{0x10dc,2}}, {{0xd41,3},{0x28,3}}, {{0xbb3,2},{0x10504,4}}, + {{0x30,128},{0x30,6}}, {{0xacbc,2},{0x2c38,6}}, {{0x8b96,8},{0xb63,2}}, {{0xbe4,1},{0xb2c,2}}, + {{0x70dc,4},{0xc601,2}}, {{0x70c6,6},{0x70cc,16}}, {{0x423e,1},{0x28,1}}, {{0x441c,3},{0xaf2,1}}, + {{0xb7f,3},{0x1dec2,4}}, {{0x415c,4},{0x5f90,3}}, {{0x122c,4},{0x4ab0,3}}, {{0x6f21,5},{0x5277,2}}, + {{0x974e,5},{0xc57,4}}, {{0x3db0,5},{0xff7,5}}, {{0x1257,3},{0xc67,3}}, {{0xad32,4},{0xc67,2}}, + {{0x1972,2},{0x101b,3}}, {{0xae7,2},{0x4ab0,3}}, {{0xeeb8,8},{0x14e2,3}}, {{0xbad,7},{0xbb4,4}}, + {{0x181c,3},{0x1abd6,2}}, {{0x6f16,7},{0xfe5,2}}, {{0x27b6,1},{0x28522,2}}, {{0x19b3,4},{0x1d,1}}, + {{0x2789b,3},{0x2791d,2}}, {{0x1760f,5},{0x702a,4}}, {{0x116d,1},{0x279ef,2}}, {{0xa7da,3},{0x6f50,4}}, + {{0x4286,2},{0x10f1,2}}, {{0x1c1a,11},{0x1c25,4}}, {{0x139c,6},{0x50ee,7}}, {{0x1b5f3,3},{0xae0,1}}, + {{0x415e,3},{0x11667,5}}, {{0xcd9,4},{0x8493,7}}, {{0x1c,1},{0x1e1d4,3}}, {{0xceb,3},{0xa469,5}}, + {{0x219c,5},{0xbd6,2}}, {{0xc3e,2},{0xb64,2}}, {{0x2b900,4},{0x244ed,2}}, {{0xbe0,1},{0x14934,2}}, + {{0x1040,6},{0x9e68,3}}, {{0x116d,1},{0x27aeb,2}}, {{0x136ee,7},{0x10dc,2}}, {{0x67a6,3},{0xb9c,3}}, + {{0xb63,3},{0xc67,2}}, {{0x29f18,3},{0x278a3,2}}, {{0x110c2,6},{0x1278,4}}, {{0x286c5,4},{0xa51,2}}, + {{0xf681,5},{0x3a3b,3}}, {{0x1820e,5},{0xff7,4}}, {{0xdba,4},{0xae6,2}}, {{0x1f289,5},{0xf5e,3}}, + {{0xce2,3},{0xb55,2}}, {{0x1095,3},{0x3788,3}}, {{0x253fb,3},{0x117c,1}}, {{0xaea,1},{0x16f8,3}}, + {{0x2b783,2},{0x2aea3,2}}, {{0x20ac,7},{0x3639,7}}, {{0xba5,4},{0x12552,6}}, {{0x2030b,3},{0xdd3,3}}, + {{0x253fb,3},{0x2446c,1}}, {{0x5324,6},{0xe70,4}}, {{0xf905,4},{0xc657,3}}, {{0x28e79,2},{0x2446f,2}}, + {{0x6144,7},{0x2b,3}}, {{0x3a22,4},{0x107f,4}}, {{0x10f2,1},{0x1101e,4}}, {{0x159c,4},{0x46ad,6}}, + {{0xb7f,6},{0x2b,2}}, {{0xd54,2},{0x2af4,4}}, {{0x28871,3},{0x2445e,1}}, {{0x19ba,3},{0xc67,2}}, + {{0xc8dd,6},{0x1498,4}}, {{0xc37,3},{0x1c20,5}}, {{0x2c8ae,4},{0xff02,2}}, {{0xab9a,3},{0x107d,3}}, + {{0x122c,4},{0xc1c,2}}, {{0xbe0,1},{0xb63,2}}, {{0x2cef5,2},{0x159c8,1}}, {{0x2c830,4},{0x5c78,2}}, + {{0x14c08,7},{0xc63,3}}, {{0x46f4,4},{0xbc2,2}}, {{0xbb15,3},{0xb78,2}}, {{0xb942,7},{0xb949,4}}, + {{0xd5c,1},{0x20a31,5}}, {{0x441c,3},{0x67a6,4}}, {{0x244ad,2},{0xfefe,2}}, {{0xad62,8},{0x2574,2}}, + {{0xbeb,1},{0xc8f,2}}, {{0x15630,5},{0x1daa,5}}, {{0x116e,1},{0x278af,2}}, {{0x24b7,5},{0x12cf1,5}}, + {{0x4bee,8},{0x11b8,4}}, {{0x23138,2},{0x1cef,3}}, {{0x5365,5},{0x12071,5}}, {{0xc9a,2},{0x1c43,4}}, + {{0xa7aa,5},{0x145df,3}}, {{0x10ca,3},{0xd0d,2}}, {{0xcd9,5},{0xbbfb,4}}, {{0xfc07,5},{0x1016,4}}, + {{0x1c,1},{0xc34,3}}, {{0xb79,3},{0x1e1f,8}}, {{0x10ca,1},{0x1abd7,2}}, {{0xb44,3},{0xc29,2}}, + {{0xb96e,5},{0xc77,2}}, {{0x732,3},{0x948,1}}, {{0x14774,9},{0xae7,1}}, {{0xaec,2},{0xc39,2}}, + {{0x24461,1},{0x251ea,2}}, {{0x1d55,4},{0x4f4d,7}}, {{0x10fb,4},{0x11f2,3}}, {{0x2403,11},{0x1c,1}}, + {{0x17b82,9},{0x1a,2}}, {{0x30,128},{0x30,14}}, {{0x2aa25,6},{0x1ed58,1}}, {{0x5442,8},{0x1717,5}}, + {{0xbd1,2},{0xaeb,2}}, {{0xf99,4},{0x132f,3}}, {{0x6ac3,4},{0x29da,3}}, {{0x244cb,4},{0x24673,2}}, + {{0x22db,3},{0xe4d,6}}, {{0x7702,8},{0x251c,4}}, {{0xca3,5},{0xc55,2}}, {{0x41e8,5},{0x1a2ce,4}}, + {{0x27917,2},{0x278a9,1}}, {{0x7702,5},{0x1f0f,3}}, {{0x5ed4,5},{0x3cba,3}}, {{0x27995,2},{0x116c,1}}, + {{0x10f2,1},{0x292a5,2}}, {{0x27917,2},{0x278af,1}}, {{0x57e2,3},{0x43e5,3}}, {{0x3678,5},{0x4031,3}}, + {{0x10f3,1},{0x151f,3}}, {{0x17ee,3},{0xb7d,1}}, {{0x4c8a,6},{0xb2e,2}}, {{0x926e,8},{0xbac,4}}, + {{0x3838,8},{0xb2c,4}}, {{0xcd9,3},{0xb2c,2}}, {{0xbb5,1},{0xf10,3}}, {{0x27b4,3},{0x1b4b,3}}, + {{0x24a21,8},{0x24a21,4}}, {{0x178c,3},{0x1f2c5,2}}, {{0x153c,6},{0xcce,3}}, {{0x26f7a,2},{0xd5c,1}}, + {{0x140a,2},{0x789d,4}}, {{0x106d4,6},{0x31f8,4}}, {{0xdf0,2},{0x11ef,2}}, {{0x24a2d,2},{0x24a2f,4}}, + {{0xecc,3},{0x5396,3}}, {{0x172ec,5},{0x3a39,3}}, {{0x6b20,2},{0xb6ff,4}}, {{0x441c,3},{0xae7,1}}, + {{0x1489,3},{0xb2f,1}}, {{0xb590,5},{0x10dc,2}}, {{0x16aff,5},{0xb9f9,4}}, {{0x1a0d,5},{0xb2f,1}}, + {{0xb4bf,6},{0xc8a3,3}}, {{0x2c3f2,4},{0x1016a,2}}, {{0x27b4,3},{0xae5,1}}, {{0xcfd,10},{0xc9f,4}}, + {{0x1e45,11},{0xbb4,4}}, {{0x3f54,7},{0x3f5b,7}}, {{0x142c,3},{0x21df8,4}}, {{0x70dc,4},{0xff22,2}}, + {{0xfebc,6},{0x30,12}}, {{0xc5ff,4},{0x4f4d,3}}, {{0x3fb6,8},{0xb52,6}}, {{0x278a1,3},{0x27ad3,2}}, + {{0x3de8,5},{0xf47,3}}, {{0xbb5,1},{0xbbf,2}}, {{0x24f87,2},{0x27e1c,2}}, {{0x244b3,2},{0x70a6,2}}, + {{0x209d,4},{0x12958,6}}, {{0xc25,3},{0xcd30,4}}, {{0xcf3e,2},{0x3052,4}}, {{0xaeca,5},{0x1a71a,4}}, + {{0x6e37,9},{0xb78,2}}, {{0x278a1,3},{0x27a0d,2}}, {{0x3fb8,3},{0x3c20,3}}, {{0x27a31,2},{0x116d,1}}, + {{0x280e,6},{0x3c4a,8}}, {{0x897a,6},{0x11b8,4}}, {{0x3234,3},{0xbc1,2}}, {{0xd65,3},{0xb79,2}}, + {{0x2349,4},{0xd0b,4}}, {{0x4f62,6},{0xcd2,7}}, {{0xbeb,1},{0xb47,2}}, {{0x10e42,6},{0xd17,3}}, + {{0xbdaf,8},{0xb78,2}}, {{0x10d98,5},{0x13f00,4}}, {{0x415c,5},{0x1f,1}}, {{0x4290,4},{0x8c2a,6}}, + {{0xa552,5},{0x2e92,6}}, {{0x24,1},{0x251d8,2}}, {{0x1e,1},{0xb70,2}}, {{0x593c,5},{0xb066,2}}, + {{0x3611,2},{0xb55,2}}, {{0xf5f4,2},{0xd54,1}}, {{0xbe7,1},{0xd0b,3}}, {{0x8aa6,8},{0x8aae,4}}, + {{0x2446a,3},{0x2a96c,2}}, {{0x2868,4},{0x1701,3}}, {{0xbe4,1},{0xcc0e,3}}, {{0xb98,2},{0x2b,1}}, + {{0xf46,2},{0x2bfd,2}}, {{0x1ab2,4},{0x78cf,4}}, {{0xb6c,4},{0x18fdb,4}}, {{0x45cc,3},{0x1444,7}}, + {{0xb6e,2},{0xae5,1}}, {{0x7c4,16},{0x7c4,2}}, {{0xbe0,1},{0xc67,3}}, {{0xae0,1},{0x21b2e,4}}, + {{0xbd4,2},{0xbb15,6}}, {{0xf212,3},{0x554f,2}}, {{0x1a,2},{0xbcfa,4}}, {{0x5102,5},{0xc54d,5}}, + {{0x278a7,3},{0x279f5,2}}, {{0x20bb,5},{0x89f6,3}}, {{0x1053,5},{0xb2c,4}}, {{0x279b9,2},{0x27897,1}}, + {{0x6de9,8},{0xc63,3}}, {{0x1d9af,6},{0x10dc,2}}, {{0x6d8e,3},{0xd237,4}}, {{0x135c,6},{0x2f54,8}}, + {{0xd41,3},{0xeb3,3}}, {{0x3234,3},{0x4dc8,4}}, {{0x397a,6},{0xd6d,4}}, {{0x286a,2},{0x23d9,3}}, + {{0x415c,5},{0x1165d,5}}, {{0xbaa2,4},{0x174e,3}}, {{0x9886,8},{0x71ec,4}}, {{0xca1,2},{0x1dab,4}}, + {{0xbe8,3},{0xb65,2}}, {{0x272e3,4},{0x428d,2}}, {{0xb6cf,5},{0x82f2,4}}, {{0xae6,2},{0xae2,1}}, + {{0xae0,1},{0x12fe,1}}, {{0x2b,2},{0xb0ac,9}}, {{0x19b3,4},{0x13f1d,5}}, {{0x271e,3},{0x114fd,7}}, + {{0xcf5,2},{0xb63,2}}, {{0x10faa,8},{0xd0d,2}}, {{0x1d,1},{0x1719,3}}, {{0x935e,8},{0xd0b,4}}, + {{0x2c91a,4},{0x157f2,2}}, {{0xceb,3},{0x1af8,5}}, {{0x1f441,6},{0xc8f,2}}, {{0xd5c,1},{0x1c8f,3}}, + {{0x270df,4},{0x10f3,1}}, {{0x2789b,3},{0x27a2b,2}}, {{0x2322,6},{0xb64,2}}, {{0x16ef,4},{0x1aa6,3}}, + {{0xde9,1},{0x6b22,3}}, {{0x1621,4},{0x1c8f,3}}, {{0x46f4,5},{0x1f,2}}, {{0x10190,6},{0x10196,8}}, + {{0xb24c,5},{0x15a1,3}}, {{0xe64,5},{0xbb5,2}}, {{0xb30,2},{0x2862e,2}}, {{0x35fd,3},{0xa4c9,3}}, + {{0x2844,3},{0x10ed,2}}, {{0xf52,4},{0x81f3,4}}, {{0x78b2,5},{0x315d,4}}, {{0x18a5,5},{0x10373,5}}, + {{0x1ae3,2},{0xc77,2}}, {{0x11cc0,5},{0x2566,4}}, {{0xfb8e,6},{0x1c43,4}}, {{0xf959,5},{0x2282,6}}, + {{0x278a1,3},{0x27ad9,2}}, {{0xb299,6},{0x12ff,3}}, {{0x10fb,3},{0xb8c,2}}, {{0x2793d,4},{0x2791d,2}}, + {{0x17bc,3},{0x1a6fd,2}}, {{0xb099,4},{0xc1c,2}}, {{0x3624,6},{0xa45d,5}}, {{0xaca2,3},{0x25065,2}}, + {{0x41be,4},{0x855e,8}}, {{0xb094,5},{0xb099,6}}, {{0x16de,5},{0x7297,3}}, {{0x194f8,5},{0x2585,4}}, + {{0xec2,2},{0xae7,1}}, {{0x46f4,6},{0x46fa,7}}, {{0x1055,3},{0xe560,5}}, {{0x17b31,5},{0xc63,3}}, + {{0x6ac3,3},{0x1d,1}}, {{0x22e6,5},{0x40b8,2}}, {{0x6957,5},{0x19908,4}}, {{0x3560,8},{0x2ea9,5}}, + {{0xacf6,8},{0x1b07,4}}, {{0x17bc,3},{0xd1b,1}}, {{0x5ea0,6},{0x1717,5}}, {{0x1431,3},{0x1434,6}}, + {{0x92e6,8},{0x1b07,4}}, {{0x11482,6},{0x16eaf,3}}, {{0x4348,5},{0x1a81d,2}}, {{0x1b6dd,2},{0x2456b,2}}, + {{0x2844,2},{0x285ab,3}}, {{0x1c25,3},{0x2202,3}}, {{0x4bad,7},{0x7b65,5}}, {{0x2445e,1},{0x2b2ff,1}}, + {{0xd5b6,6},{0xe0a,5}}, {{0x14ffc,5},{0x1081,3}}, {{0x136da,6},{0xb2f,1}}, {{0x1db75,5},{0x10dc,2}}, + {{0x10f2,1},{0xb2c,2}}, {{0x4971,5},{0xb78,2}}, {{0xe9f3,6},{0xb7c,3}}, {{0x1b,1},{0x41eb,4}}, + {{0xae2,2},{0x10dc,2}}, {{0x1cc7,3},{0xadf,2}}, {{0x422e,3},{0x10f1,2}}, {{0xceb,4},{0x11ef,2}}, + {{0xceb,3},{0xd1b,1}}, {{0x21da,8},{0xb52,5}}, {{0xaecc,3},{0xd088,5}}, {{0x10bea,7},{0x2b,3}}, + {{0x13f22,5},{0xa049,5}}, {{0x884,32},{0x884,32}}, {{0x2aa97,2},{0x6fac,2}}, {{0x27,1},{0x16f1,3}}, + {{0x5aab,3},{0xb78,2}}, {{0x24a2d,2},{0x24a40,3}}, {{0x90be,9},{0x2b,3}}, {{0xaea,1},{0x3fa1,7}}, + {{0xa7d8,2},{0xd5c,1}}, {{0x6d8e,3},{0x1a96a,6}}, {{0x16b98,8},{0xae7,1}}, {{0x250ed,4},{0x10ed,2}}, + {{0x181c,3},{0x428b,5}}, {{0x177c,3},{0xc89,2}}, {{0x6d8e,3},{0xae6,2}}, {{0x1dcd,5},{0x1e98,7}}, + {{0xb8b,2},{0x101a,3}}, {{0x5a5a,5},{0x2bfc,2}}, {{0xe9e2,2},{0x2d,1}}, {{0x1daf,7},{0xeb3,3}}, + {{0x1f,1},{0x186db,4}}, {{0x1a67,7},{0xb9c2,4}}, {{0x1031,4},{0xe626,5}}, {{0x1095,3},{0x1614,3}}, + {{0x382a,7},{0x3831,7}}, {{0xc0c7,8},{0x10dc,2}}, {{0x24,1},{0x2a935,2}}, {{0xbcb,3},{0x1dec2,4}}, + {{0x37f6,3},{0x13c7f,5}}, {{0x1f,1},{0xb71,2}}, {{0x96a6,7},{0x4a56,5}}, {{0x10e3,3},{0xd51,2}}, + {{0x177c,3},{0x23d9,3}}, {{0xd65,3},{0x8975,5}}, {{0x10ec,1},{0x15ba4,5}}, {{0x12ae,3},{0xb52,5}}, + {{0x2dc6,7},{0xb52,5}}, {{0xd54,1},{0x2054e,3}}, {{0xf621,4},{0x6dd2,4}}, {{0x122c,4},{0x7a5e,4}}, + {{0x1b00,3},{0xc57,3}}, {{0x193b,7},{0x1942,4}}, {{0xcf3,2},{0xa55a,4}}, {{0x139e,4},{0x1954,4}}, + {{0xcdf,3},{0x4270,4}}, {{0x10f2,1},{0xc30,2}}, {{0x10c8,3},{0x2b,1}}, {{0x1cec,6},{0xa266,4}}, + {{0x2797d,2},{0x116d,1}}, {{0x1aaed,1},{0xbe4,1}}, {{0x17ec,5},{0x64d7,7}}, {{0xf393,7},{0x2b,3}}, + {{0xab9a,3},{0xf776,8}}, {{0x2d58,5},{0x7bb9,5}}, {{0x10f0,1},{0x180e,2}}, {{0x2878b,6},{0x244e7,2}}, + {{0x159e,6},{0x1c43,4}}, {{0xae2,1},{0xb8f,2}}, {{0x41be,3},{0x10ec,1}}, {{0x8ba2,8},{0x3bc2,4}}, + {{0x30,128},{0x30,16}}, {{0x2474d,4},{0x6f72,2}}, {{0xb6c,3},{0xc6a9,3}}, {{0xbd1,2},{0x1ed0,4}}, + {{0xc1c,2},{0x280c2,5}}, {{0x415c,5},{0x1d,2}}, {{0xf8de,7},{0x6dd6,4}}, {{0x177c,3},{0x434c,2}}, + {{0x43e3,1},{0xb61,2}}, {{0xab9c,1},{0x27b6,1}}, {{0x969,2},{0x6f72,2}}, {{0x278a7,3},{0x27989,2}}, + {{0xbe0,1},{0x1e75a,2}}, {{0xd8e,4},{0x2b,2}}, {{0x4194,6},{0x13d1,4}}, {{0xaf1,1},{0xae7,2}}, + {{0x27b4,3},{0x5af9,3}}, {{0xfb1,2},{0x4031,3}}, {{0xc25,3},{0x1f,1}}, {{0x2a875,3},{0x278dc,1}}, + {{0x142e,1},{0x2b,2}}, {{0x6d81,3},{0xbc5,3}}, {{0x135d6,5},{0x2900,4}}, {{0x43e3,1},{0xae5,1}}, + {{0xa60f,3},{0xae2,1}}, {{0x40bc,3},{0xd51,2}}, {{0x2451f,2},{0x20b23,2}}, {{0x4415,2},{0x14bb0,2}}, + {{0xbeb,1},{0x1ae4,7}}, {{0x515d,10},{0xb7c,3}}, {{0x19336,7},{0xbd4,2}}, {{0x1035,5},{0xd0b,4}}, + {{0x208e,7},{0x2095,8}}, {{0x1a330,2},{0xaea,1}}, {{0x1fcb9,6},{0xae5,2}}, {{0xb7f,3},{0x539c,3}}, + {{0xf369,3},{0xc39,4}}, {{0x244e9,4},{0x244c7,2}}, {{0x21,1},{0x1361,2}}, {{0x26c6,1},{0x1b,2}}, + {{0x27917,2},{0x116c,1}}, {{0x1e,1},{0x4d97,2}}, {{0x152c4,2},{0xfcaf,2}}, {{0x78ca,4},{0x1675b,5}}, + {{0xacba,5},{0xb65,2}}, {{0x36da,5},{0xb64,3}}, {{0xbaa2,4},{0xcd5,2}}, {{0xaeb,2},{0xb7d,1}}, + {{0x1084,3},{0x12be,3}}, {{0xbbf,2},{0xb9c,2}}, {{0xd5e,4},{0x1719,3}}, {{0x17ae,1},{0x10ef,1}}, + {{0x7558,3},{0xb71,2}}, {{0x6cbe,8},{0xb7a,5}}, {{0xa246,4},{0xdd3,3}}, {{0xb26d,6},{0x3fdc,4}}, + {{0x4282,4},{0x15ab8,2}}, {{0x1d55,5},{0xbc5,3}}, {{0x16ac,5},{0x8674,4}}, {{0xaf1,1},{0x1c7b0,5}}, + {{0xaf2c,3},{0x11e6,6}}, {{0xeb95,5},{0x1c,1}}, {{0x443e,2},{0x14a8,4}}, {{0x3234,3},{0x5444,3}}, + {{0xf75d,4},{0x16e2,2}}, {{0x922,34},{0x924,2}}, {{0x1cec,8},{0x21d2,5}}, {{0x10512,8},{0x10dc,2}}, + {{0xcd9,4},{0x1700,4}}, {{0xb7d,2},{0x16ae,2}}, {{0x78ca,4},{0xc34,3}}, {{0xed42,9},{0x10dc,2}}, + {{0xb52,2},{0xae2,1}}, {{0x159c8,1},{0x2aeb3,2}}, {{0xb73d,8},{0xb63,2}}, {{0xbd1,2},{0xc67,2}}, + {{0x219c,4},{0xb99,4}}, {{0x21,1},{0xd54,1}}, {{0xb55,2},{0x5cd6,3}}, {{0x247b,10},{0xc32,5}}, + {{0xee8,3},{0xb63,2}}, {{0xaeb,2},{0xc6a9,3}}, {{0x159e0,4},{0x2b,3}}, {{0xaf1,1},{0xbb4,2}}, + {{0x1084,3},{0x13fd9,7}}, {{0x178c,3},{0x1a296,2}}, {{0x26e7b,4},{0x10fa,1}}, {{0xe64,5},{0x804f,7}}, + {{0x8f1a,7},{0xae7,1}}, {{0xb31,1},{0x2843a,2}}, {{0xbc44,7},{0xca1,2}}, {{0x24f91,2},{0x432,1}}, + {{0x2d,1},{0x1045,2}}, {{0xa246,4},{0xf63c,2}}, {{0x28da,1},{0xb47,2}}, {{0x153c,6},{0xf59,3}}, + {{0x4354,4},{0x2a24,3}}, {{0x2796,3},{0xccf,2}}, {{0x1f159,4},{0x139e,2}}, {{0x1b1cf,8},{0xfef0,4}}, + {{0xc25,4},{0x7f6a,4}}, {{0x1f311,4},{0x967e,4}}, {{0x6d8e,3},{0xaf63,2}}, {{0xc60,5},{0x2b,3}}, + {{0x1e,1},{0x4c9c,4}}, {{0xceb,3},{0xc51,2}}, {{0x415c,5},{0x18ca,3}}, {{0x269d8,2},{0x10ef,1}}, + {{0xadf,2},{0x6038,8}}, {{0x19bf7,5},{0x1daa,4}}, {{0xaf2,1},{0x101b9,4}}, {{0x151c,6},{0xae7,1}}, + {{0x79d2,9},{0x136f,3}}, {{0x15630,5},{0xae6,3}}, {{0x39ce,5},{0xb2c,2}}, {{0x1daf,5},{0xd0b,4}}, + {{0x10fb,3},{0xa24a,3}}, {{0xd0f,4},{0x107d,4}}, {{0x1051,4},{0x173e,3}}, {{0x181c,3},{0xaee7,2}}, + {{0xceb,4},{0x13684,6}}, {{0xb97,9},{0xb52,5}}, {{0x1bfc,6},{0x8140,6}}, {{0xb52,2},{0xc67,2}}, + {{0x177c,4},{0x19a8,9}}, {{0x13bc,7},{0x8579,5}}, {{0x2ede,6},{0x1dd8,4}}, {{0xa8a8,3},{0xbc1,2}}, + {{0x6ac5,1},{0x20b5,3}}, {{0x16140,5},{0xcb8,2}}, {{0x1375c,6},{0x13762,4}}, {{0x16fc,8},{0x253a,4}}, + {{0x5ac2,5},{0xb21c,4}}, {{0x1e,1},{0x36c1,5}}, {{0x12fc,4},{0xc67,3}}, {{0xc29,2},{0x2b,1}}, + {{0x423c,6},{0xc34,2}}, {{0x27f0,6},{0x1d,1}}, {{0xadd,4},{0x1362,3}}, {{0x27a3d,2},{0x116c,1}}, + {{0x1f3b1,5},{0xb85,2}}, {{0x2796,3},{0xae5,1}}, {{0x4ba0,7},{0xc9f,4}}, {{0xa80a,5},{0x11b6,5}}, + {{0x2cbea,4},{0x1b23d,2}}, {{0x2b,2},{0xd8e,4}}, {{0xfc9,13},{0xbb4,4}}, {{0x27cea,1},{0x28e7a,2}}, + {{0x762a,4},{0x1633e,5}}, {{0x470e,8},{0xcab,3}}, {{0x12076,7},{0x2b,3}}, {{0x6d81,3},{0x1a81d,3}}, + {{0x2c7fa,4},{0x6f64,2}}, {{0x11d88,5},{0x11d97,5}}, {{0xf5b0,4},{0xae8,2}}, {{0x29330,2},{0xd54,1}}, + {{0x2451f,2},{0x1a328,2}}, {{0x41da,3},{0x2592c,2}}, {{0x159c,5},{0x1904,3}}, {{0x4194,6},{0x305e,8}}, + {{0x10fb,3},{0xc32,5}}, {{0xbe4,1},{0x1402,3}}, {{0x181c,3},{0xb67,2}}, {{0xcf0,2},{0x28,1}}, + {{0x232ef,6},{0xaf2,1}}, {{0x1b6a3,6},{0xb63,2}}, {{0xc99,3},{0xb78,2}}, {{0x288f,5},{0xae7,1}}, + {{0x10f7,1},{0x43e3,1}}, {{0x298a,2},{0xb78,2}}, {{0x10f3,1},{0xae2,1}}, {{0x4bba,10},{0x2b,3}}, + {{0x1b951,6},{0x1b957,8}}, {{0x1f,1},{0xc34,2}}, {{0x2451f,2},{0xfb8b,2}}, {{0x43e3,1},{0xb64,2}}, + {{0x1ae4e,2},{0xbeb,1}}, {{0x1b147,4},{0x30,12}}, {{0xb85,2},{0x2080d,5}}, {{0x924,1},{0x27959,2}}, + {{0xadd,3},{0x14fba,2}}, {{0x1ebd,10},{0x2b,3}}, {{0x27a31,2},{0x27897,1}}, {{0x278a1,3},{0x27a8b,2}}, + {{0x256b,8},{0x2573,7}}, {{0xb9a5,5},{0x5396,3}}, {{0x10ec,1},{0x10f0,1}}, {{0x41be,3},{0x1ae4f,2}}, + {{0x13e4,3},{0xd48,2}}, {{0xd1a,2},{0x2b,1}}, {{0xc8f3,4},{0x14a8,4}}, {{0xfb06,8},{0x2b,3}}, + {{0xaca2,3},{0xb63,3}}, {{0x10056,3},{0xc1c,2}}, {{0x24e4,6},{0x1058,9}}, {{0x2afc,7},{0x5d16,4}}, + {{0x28f6,2},{0xbd4,2}}, {{0x41da,5},{0xb64,2}}, {{0xf85,4},{0x4c4f,7}}, {{0xe64,4},{0x6576,5}}, + {{0xd5ab,5},{0xd5b0,6}}, {{0x48b1,3},{0x2be6,4}}, {{0x67c0,3},{0x1a,1}}, {{0xfe6f,8},{0xcb8,2}}, + {{0xcfd,7},{0x4b0a,4}}, {{0x2523f,6},{0x25245,4}}, {{0x265b,4},{0x72da,3}}, {{0xd7e,2},{0xb85,2}}, + {{0x3a39,3},{0xb54,3}}, {{0x261f,5},{0x1aab,4}}, {{0x1b6db,4},{0x1016a,2}}, {{0xb55,3},{0xdf0,2}}, + {{0x1cee,4},{0x1916,5}}, {{0x51ad,3},{0x51b0,4}}, {{0xaf0,2},{0x173e,3}}, {{0x1e45,3},{0xb63,2}}, + {{0x1fa2b,3},{0xbb1,3}}, {{0x2b,2},{0xac92,4}}, {{0x27b4,3},{0xc30,2}}, {{0x2b,2},{0x1257,3}}, + {{0x75b2,6},{0xcf7,6}}, {{0xcc7,3},{0x2a91,4}}, {{0x181c,4},{0xee8,3}}, {{0x278a7,3},{0x279dd,2}}, + {{0x5401,4},{0xd6d,9}}, {{0xe2dc,5},{0x11b8,4}}, {{0x251cb,1},{0x2445f,1}}, {{0xc25,5},{0xbd6,2}}, + {{0xae2,2},{0x4bcf,4}}, {{0x7950,5},{0xe70,4}}, {{0xb92c,7},{0xb858,3}}, {{0xc1c,2},{0x164e6,4}}, + {{0x278a7,3},{0x2794d,2}}, {{0x10fb,3},{0x1e5ea,5}}, {{0x1019,4},{0x1408,3}}, {{0x24ba,3},{0xf63c,2}}, + {{0xfe38,4},{0xee4e,4}}, {{0xc25,6},{0x4b65,7}}, {{0x1abd7,2},{0xa7d8,2}}, {{0x15a61,2},{0x152c4,2}}, + {{0x19c5a,4},{0x2b,2}}, {{0xf38f,3},{0x1dac,3}}, {{0x3df6,5},{0x1a,1}}, {{0x14d0e,3},{0xc8a3,3}}, + {{0x26c4,4},{0x72fe,5}}, {{0xd603,7},{0x23ce,4}}, {{0x1d4dd,6},{0x2b,2}}, {{0x142c4,8},{0x10dc,2}}, + {{0x251fe,2},{0x7c4,1}}, {{0x2070,7},{0x360f,7}}, {{0x21,1},{0x27,1}}, {{0x14dc,4},{0xcd2,7}}, + {{0x2868,8},{0xb7a,5}}, {{0xbb2,2},{0xc0c3,4}}, {{0x1459e,3},{0x1d,1}}, {{0x2aa6b,4},{0x1b6dd,4}}, + {{0xbc4,4},{0xb54,4}}, {{0x5442,4},{0x1b22,3}}, {{0xb4a,3},{0x3d37,7}}, {{0xd65,3},{0xce2,3}}, + {{0x14d0e,3},{0x296f,5}}, {{0x357c,7},{0xccd,3}}, {{0x1ad2,5},{0xae7,1}}, {{0xf85a,5},{0x12797,4}}, + {{0x2451f,2},{0x1cf1d,2}}, {{0x15004,6},{0x190a,4}}, {{0x16ae,3},{0xb4b,2}}, {{0x11e32,5},{0xc32c,3}}, + {{0x278cf,2},{0x924,2}}, {{0x188bc,7},{0xd0d,2}}, {{0x82f6,7},{0xb78,2}}, {{0xc25,5},{0xf10,3}}, + {{0xbb5,1},{0x763c,3}}, {{0x1800d,6},{0xae7,1}}, {{0xab6a,5},{0x1701,3}}, {{0x10c8,4},{0x7bfe,4}}, + {{0x10b7,5},{0xe605,5}}, {{0x5184,7},{0x11b8,4}}, {{0x14ba4,5},{0x384a,3}}, {{0x10f6,2},{0x10fa,1}}, + {{0x181c,3},{0xb78,2}}, {{0x734,2},{0x24f9a,3}}, {{0x13e3,4},{0x11b8,4}}, {{0x278a1,3},{0x27a4f,2}}, + {{0x152c4,2},{0xd54,1}}, {{0x232b0,5},{0x12143,2}}, {{0x1d,1},{0xbeb,1}}, {{0x422e,3},{0xa4c9,3}}, + {{0xb4b,2},{0xede,3}}, {{0x244b9,2},{0x5c78,2}}, {{0x29c0f,4},{0x27b6,1}}, {{0x1a876,4},{0x4074,3}}, + {{0x219c,4},{0xc4d,2}}, {{0x6221,5},{0x135f,6}}, {{0x18a7,3},{0xc1c,2}}, {{0xbd1,2},{0x11e6,6}}, + {{0xfdeb,5},{0x1a,2}}, {{0xb9c,2},{0x1197,4}}, {{0xbb5,1},{0xb74,2}}, {{0xc6cd,5},{0xc6d2,6}}, + {{0xaeb2,7},{0xaeb9,5}}, {{0xae5,1},{0xae9,2}}, {{0x19b3,5},{0xb24f,5}}, {{0x5f70,8},{0xc8e,3}}, + {{0x1bdb,3},{0x28,1}}, {{0xbd7,2},{0xc67,2}}, {{0x181c,3},{0x10569,3}}, {{0x924,2},{0x27af1,2}}, + {{0xae7,1},{0x5306,4}}, {{0xedb,5},{0x31ad,9}}, {{0x27b6,1},{0x100cf,9}}, {{0xaca2,3},{0x1971,2}}, + {{0xab76,6},{0x3043,6}}, {{0x423c,3},{0x7406,4}}, {{0x9112,5},{0x10dc,2}}, {{0x12ac,9},{0xd1a,7}}, + {{0xb47,2},{0xae0,1}}, {{0x177c,3},{0xdf0,2}}, {{0x20ccf,4},{0xaf1,1}}, {{0x6783,7},{0xb65,2}}, + {{0x8632,6},{0x8638,6}}, {{0x21,1},{0x288a,10}}, {{0x18dba,6},{0xf10,3}}, {{0x10f0,1},{0xd892,5}}, + {{0x88de,5},{0x11ef,2}}, {{0xaca2,4},{0x1b4f,3}}, {{0xc89,2},{0xb54,2}}, {{0xcc4d,6},{0x2d,1}}, + {{0x1b237,8},{0x1b8a5,4}}, {{0xbcb,3},{0x1361,2}}, {{0x11b94,6},{0xb78,2}}, {{0x1a49,6},{0x46e4,3}}, + {{0xbeb,1},{0x2237,3}}, {{0x6d8e,3},{0x21b2,4}}, {{0x6ac3,3},{0x11b2,4}}, {{0xbeb,1},{0xb8b,2}}, + {{0x1257,2},{0xca7,2}}, {{0x3ed6,5},{0x1058,4}}, {{0x783a,6},{0x1ed0,4}}, {{0xae4,2},{0xb2f,1}}, + {{0x364e,4},{0xe6d,2}}, {{0x3fb6,5},{0x12e4,8}}, {{0x6787,3},{0x678a,4}}, {{0x2a90,2},{0x2b,1}}, + {{0x70c6,4},{0x6f96,2}}, {{0xaa7a,8},{0xae7,1}}, {{0x1bde,10},{0x107e,5}}, {{0x1e,1},{0x760b,3}}, + {{0x2098,3},{0xb2e,2}}, {{0x42a0,3},{0x87b5,4}}, {{0x1cee,4},{0xd57,2}}, {{0x6026,7},{0xbb1,3}}, + {{0x1b4e3,4},{0x1b4e3,4}}, {{0x6b54,2},{0xc1c,2}}, {{0x19f47,3},{0x10ef,1}}, {{0x780,1},{0x2446f,2}}, + {{0x1b75,7},{0x2e67,7}}, {{0xa7d1,2},{0xbe4,1}}, {{0x3846,4},{0x188ff,5}}, {{0x541b,5},{0x1d11,5}}, + {{0x4f55,7},{0xe1c,4}}, {{0x946,3},{0x948,4}}, {{0xb2e,2},{0xd17,3}}, {{0x27b4,3},{0x13177,7}}, + {{0x4186,4},{0x1a03e,3}}, {{0x151f8,5},{0xee0,3}}, {{0xb49e,4},{0xbaa,6}}, {{0x19c5c,2},{0x168df,4}}, + {{0x2933,3},{0x2b,1}}, {{0x1cec,5},{0x119eb,5}}, {{0xb01a,4},{0x1e909,3}}, {{0x1daf,4},{0x3cc9,4}}, + {{0x3d4e,10},{0xc7b,4}}, {{0x3234,3},{0x1393,3}}, {{0x17bc,3},{0x1a201,2}}, {{0x10c8,4},{0x2d14,5}}, + {{0x14942,4},{0xfe5,2}}, {{0xc27,7},{0x2d44,4}}, {{0x2747,3},{0x10dc,2}}, {{0x1084,3},{0x6745,5}}, + {{0x20bb,3},{0xb55,2}}, {{0x2ae3f,4},{0x1f,1}}, {{0x10fb,3},{0xd57,2}}, {{0x6ac3,3},{0x1a815,2}}, + {{0xdac,2},{0xb65,2}}, {{0x2ae3f,4},{0x1b,2}}, {{0xddc,4},{0x1c241,4}}, {{0x250f6,2},{0x10f3,1}}, + {{0xaeb,2},{0x21f50,3}}, {{0xaea,2},{0xb48,2}}, {{0x244b9,2},{0x6f90,2}}, {{0x7e8e,7},{0xc24f,4}}, + {{0xaf1,1},{0x2b03,5}}, {{0xae2,1},{0x33b3,3}}, {{0xcf91,7},{0xc8d,4}}, {{0xba5,4},{0x17ce7,5}}, + {{0x41da,3},{0xaec,2}}, {{0xc675,5},{0x3409,5}}, {{0xbd0a,7},{0x7512,4}}, {{0x26f1,5},{0xb52,2}}, + {{0xa246,4},{0x14b6,2}}, {{0x43e3,1},{0x115c,2}}, {{0xb44,3},{0x9c4d,5}}, {{0x17ae,1},{0x2b,1}}, + {{0x1cec,5},{0xb2e,2}}, {{0x6f23,3},{0xdf0,2}}, {{0xfc80,6},{0xb65c,5}}, {{0x27b6,1},{0x3e2a,3}}, + {{0xaea,2},{0x6b22,3}}, {{0x4450,4},{0x10ab9,5}}, {{0x1409,2},{0xed0,3}}, {{0x2445f,1},{0x2862e,2}}, + {{0x12fe,2},{0x2f11,5}}, {{0x142e,1},{0xbb4,2}}, {{0xcb5,3},{0x21fe2,4}}, {{0x364e,4},{0x4646,5}}, + {{0x10ea,3},{0xf868,4}}, {{0xfdf,2},{0xde9,1}}, {{0xfbfe,3},{0x1372,3}}, {{0x67aa,6},{0x587d,4}}, + {{0xc67,3},{0x1a,2}}, {{0x1b6e1,2},{0x24873,2}}, {{0x25245,4},{0x2523b,4}}, {{0xddc,4},{0xe6d,2}}, + {{0x3879,4},{0x103a,3}}, {{0x14c62,5},{0x4606,3}}, {{0x78ca,4},{0xce8,3}}, {{0x10c8,3},{0x54e4,4}}, + {{0x244b9,2},{0x410e,2}}, {{0x8386,8},{0xc57,4}}, {{0x261f,5},{0xb2c,2}}, {{0xb7c,2},{0x2b,1}}, + {{0xc37,3},{0xa886,4}}, {{0x3234,3},{0x2884,3}}, {{0x10ea,3},{0x1a4ab,5}}, {{0xdef,3},{0x3788,3}}, + {{0x422e,3},{0xb55,2}}, {{0xae5,1},{0xbb0,2}}, {{0xd5c,1},{0x6ac5,1}}, {{0x27ca3,5},{0x18,1}}, + {{0x1954,3},{0x227a,3}}, {{0xddc,4},{0xf894,4}}, {{0x41da,3},{0xb4b,2}}, {{0x2474d,4},{0x6f66,2}}, + {{0xc13,3},{0xd1b,1}}, {{0x279d1,2},{0x116c,1}}, {{0x876a,5},{0x12fe,3}}, {{0x1b57,4},{0xb7d,1}}, + {{0x1259,2},{0x1d,1}}, {{0x10c8,3},{0x1f2c4,2}}, {{0x278a1,3},{0x27af1,2}}, {{0x28da,1},{0x2b,1}}, + {{0x41da,3},{0x14bb0,2}}, {{0xd8ce,6},{0x2683,5}}, {{0xf417,5},{0x262a,3}}, {{0x75ca,7},{0xb52,5}}, + {{0xb82,2},{0xcb8,2}}, {{0x714a,7},{0x7151,5}}, {{0x10ea,3},{0xe6d,2}}, {{0x1cef,3},{0x28,1}}, + {{0x1b6b3,2},{0x924,2}}, {{0x2ae0,5},{0xb78f,6}}, {{0x18d6,6},{0xf5e,5}}, {{0xb52,2},{0xaf2,1}}, + {{0x67f8,8},{0x10c3,5}}, {{0xc98d,7},{0xdde,4}}, {{0x1bfc,6},{0x1c11,9}}, {{0x116d,1},{0x1b6ab,2}}, + {{0xd65,3},{0x5c76,4}}, {{0x532,66},{0x30,20}}, {{0x1b855,10},{0xfef0,4}}, {{0x6b04,5},{0x19d01,4}}, + {{0x2610,6},{0x9206,3}}, {{0x8a76,9},{0x674c,3}}, {{0x10f3,1},{0x1eff4,5}}, {{0x249e1,8},{0x249e1,4}}, + {{0x374a,6},{0x385b,4}}, {{0x27d3b,2},{0x251dc,2}}, {{0xa7d1,2},{0x28619,3}}, {{0x11950,6},{0xc7b,4}}, + {{0xbde,3},{0x1a6fd,2}}, {{0x7e2e,7},{0x2b,3}}, {{0x6b11,5},{0x3b26,5}}, {{0x24531,6},{0x24543,6}}, + {{0x1084,3},{0x1f,1}}, {{0x20f9,4},{0xdb1,3}}, {{0xab9c,1},{0xae7,1}}, {{0x30,128},{0x30,10}}, + {{0xb8f,2},{0x23ce,4}}, {{0x27ce8,3},{0x251df,1}}, {{0x70dc,4},{0x244af,2}}, {{0x1279c,6},{0x2af8,4}}, + {{0xb7f,3},{0x1d0e8,5}}, {{0xab9a,3},{0xbe0,1}}, {{0x1286e,5},{0xe1d,3}}, {{0x1974a,5},{0x11e4,4}}, + {{0x2c416,4},{0x244ed,2}}, {{0xaca2,3},{0x5b7d,3}}, {{0x4222,3},{0x1098,3}}, {{0x27b4,3},{0xd57,2}}, + {{0xf6e4,5},{0x25c2,3}}, {{0x1b4e3,1},{0x112c,1}}, {{0x4194,5},{0xbb1,3}}, {{0xf5bb,7},{0xdde,4}}, + {{0xc1c,2},{0xdf0,2}}, {{0x6957,5},{0x13419,3}}, {{0x2c6b0,4},{0x15798,2}}, {{0x10ea,3},{0x23759,4}}, + {{0x27,1},{0x1971,2}}, {{0x1408,3},{0xb2c,2}}, {{0xcfd,9},{0x2b83,5}}, {{0x14be0,5},{0xc20,5}}, + {{0xb79,2},{0xc30,2}}, {{0x27c5,2},{0x229f,9}}, {{0x135c,6},{0xc4e,3}}, {{0xbde,3},{0x1a,3}}, + {{0x44b8,5},{0xd11,4}}, {{0x1abd7,2},{0xd54,1}}, {{0x14c0a,5},{0x103a,3}}, {{0x278a7,3},{0x27953,2}}, + {{0x6d81,3},{0x58f1,3}}, {{0x10c8,3},{0x440f,2}}, {{0x415c,5},{0x1ed3,3}}, {{0x2c93e,4},{0x1b887,2}}, + {{0x74b6,11},{0xae7,1}}, {{0xbeb,1},{0xa24a,3}}, {{0x6b54,2},{0x8a92,4}}, {{0x27a49,2},{0x278d6,1}}, + {{0x1b6e1,4},{0x2aa87,4}}, {{0xace0,5},{0xb52,5}}, {{0x10f2,1},{0x4351,2}}, {{0x6d8e,3},{0x106ba,2}}, + {{0xf96,4},{0x5bf3,5}}, {{0x1f019,4},{0x1a28f,3}}, {{0x27cc5,2},{0x948,1}}, {{0x26c4,3},{0x20adf,2}}, + {{0xdfe,9},{0xe07,8}}, {{0x1436e,5},{0x7047,5}}, {{0x116d,1},{0x27b09,2}}, {{0x14fc,4},{0x1a,1}}, + {{0x1b,1},{0x2af8,4}}, {{0x1055,3},{0x2b,3}}, {{0xe75,6},{0xc592,5}}, {{0xf77e,5},{0xaf2,1}}, + {{0x1b6ab,1},{0x27a2b,2}}, {{0xcd9,3},{0x13437,5}}, {{0xdac,2},{0x1b,1}}, {{0x410c,5},{0x36c1,5}}, + {{0x244b3,2},{0x24733,2}}, {{0x11e28,8},{0x28,1}}, {{0x265b,4},{0xaea,1}}, {{0x40ce,5},{0xb7d,2}}, + {{0xae5,1},{0xbb5,1}}, {{0x1a85,6},{0x4ad3,4}}, {{0xaea,1},{0x12dec,4}}, {{0x16e2,2},{0xbf6d,4}}, + {{0xc58,3},{0x104f9,5}}, {{0xf96,5},{0xae0,1}}, {{0x2474d,4},{0x70a2,2}}, {{0xbe7,1},{0x10ed,2}}, + {{0x423c,3},{0x23d9,3}}, {{0xfd27,2},{0xa2b6,6}}, {{0xb63,2},{0xb71,2}}, {{0x10c8,3},{0x29246,2}}, + {{0x11b2,4},{0xb63,3}}, {{0x27a49,2},{0x27897,1}}, {{0x1a661,4},{0x40bc,4}}, {{0x443b,2},{0x28,2}}, + {{0x4fbd,5},{0x12fe,4}}, {{0x131f6,7},{0x2939,3}}, {{0x273d3,5},{0xd54,1}}, {{0xbde,3},{0x101b3,3}}, + {{0x24759,4},{0x1b20f,8}}, {{0xac5a,7},{0x3409,5}}, {{0x1f0f,3},{0xb2c,4}}, {{0x278a7,3},{0x27a37,2}}, + {{0x364e,4},{0x139e,3}}, {{0xbde,3},{0x2958f,2}}, {{0x1b25b,4},{0xae7,1}}, {{0x247f1,4},{0xfef0,4}}, + {{0xb82,3},{0xd1b,1}}, {{0xc3e,2},{0x12be,3}}, {{0x18d0f,7},{0xc8f,2}}, {{0xbd4,2},{0xb71,2}}, + {{0x8bc6,7},{0x8bcd,5}}, {{0x17be,2},{0xb77,3}}, {{0x1ca8d,6},{0xaf2,1}}, {{0x3ff0,8},{0xb2e,2}}, + {{0x1b8e7,4},{0x1b885,4}}, {{0x278a1,3},{0x27a43,2}}, {{0x410c,4},{0xb2f,1}}, {{0x7e0a,5},{0x16e1e,4}}, + {{0x10ec,1},{0x10ed,2}}, {{0xcd9,3},{0x3921,5}}, {{0x136c,6},{0xb63,3}}, {{0x7c4,2},{0x27cea,1}}, + {{0x84b2,5},{0x140a,2}}, {{0xfd25,4},{0xc67,2}}, {{0xb44,5},{0xc3d,3}}, {{0x40b2,4},{0x2b,3}}, + {{0x17ee,3},{0xc85,3}}, {{0xdde0,5},{0xb73,2}}, {{0x2c93e,4},{0x15798,2}}, {{0xc15,3},{0xfe5,6}}, + {{0xbfa9,7},{0xbb4,4}}, {{0xc25,5},{0x4ae2,8}}, {{0x927a,7},{0x3736,5}}, {{0x2848,2},{0xf5f5,2}}, + {{0x24a2f,3},{0x2445e,1}}, {{0xb8c,2},{0x1c25,4}}, {{0x40fa,2},{0x2b,2}}, {{0x41da,3},{0x4351,2}}, + {{0x15bf1,6},{0x1f,1}}, {{0x6d8e,3},{0x2672b,2}}, {{0x2799b,2},{0x278a9,1}}, {{0x1191,5},{0x2a85,6}}, + {{0xe64,4},{0x1ece,6}}, {{0x262e,7},{0x2635,8}}, {{0x5a40,8},{0x1a35,5}}, {{0x12d5,4},{0x25df,4}}, + {{0x2c3fe,4},{0x6f78,2}}, {{0x423e,1},{0xd136,4}}, {{0x20bb,3},{0x2a85,6}}, {{0xc39,2},{0x2b3e,4}}, + {{0x24430,2},{0x15a7a,4}}, {{0x74ba,3},{0xb8f,2}}, {{0x4b31,3},{0x28,1}}, {{0x2b783,2},{0x7c4,1}}, + {{0x1095,3},{0x8809,4}}, {{0xddc,5},{0x5277,2}}, {{0x11c70,7},{0xc8f,2}}, {{0x4c97,7},{0xa60f,3}}, + {{0xae0d,5},{0x5259,4}}, {{0x3234,3},{0xcc0,3}}, {{0xfdd,2},{0x28,1}}, {{0x6d8e,3},{0x20b13,2}}, + {{0x19540,6},{0x2b,3}}, {{0xb74,2},{0xb78,2}}, {{0xa61e,5},{0xa623,7}}, {{0x4a27,4},{0x362c,5}}, + {{0x2a948,1},{0x1b6cb,1}}, {{0xa7da,3},{0x27443,2}}, {{0x2421,7},{0x8ba9,4}}, {{0x1656a,4},{0x1f,1}}, + {{0x1a76,4},{0x1c419,4}}, {{0xf372,9},{0xc34,2}}, {{0x142e,1},{0x5575,4}}, {{0x19f45,5},{0x19f4a,4}}, + {{0x400a,10},{0x1c25,4}}, {{0x6b54,2},{0x168c3,4}}, {{0x2c79a,4},{0x244ed,2}}, {{0x423e,1},{0xae7,1}}, + {{0xfdc,4},{0x3948,5}}, {{0xc13,4},{0x33c0,5}}, {{0xedf4,5},{0x10a2,4}}, {{0x27b4,11},{0x103a,3}}, + {{0xae6,2},{0xd7a,3}}, {{0x278a7,3},{0x279a1,2}}, {{0x106d4,5},{0xfe1,4}}, {{0x6d81,3},{0x4415,2}}, + {{0x1c07d,6},{0xb78,2}}, {{0x4290,7},{0x5ba6,6}}, {{0xc86f,7},{0x4fa8,4}}, {{0x17ee,3},{0x5600,8}}, + {{0xaee9,2},{0x27b6,1}}, {{0x2eb6,7},{0x13a6,4}}, {{0x48c8,6},{0x3336,7}}, {{0xcbd,3},{0x7f6c,6}}, + {{0x180e,2},{0x15b1d,7}}, {{0x10fb,3},{0xbb4,4}}, {{0x423c,3},{0x10ca,1}}, {{0x178c,3},{0xf8cf,2}}, + {{0x70b0,4},{0x244ed,2}}, {{0x319a,6},{0x31a0,8}}, {{0xcc7,3},{0xec8,2}}, {{0x1a76,4},{0xc1c,2}}, + {{0x27b4,3},{0xc55,2}}, {{0x1aa00,6},{0x1719,3}}, {{0x24a8,12},{0x103a,3}}, {{0x279b9,2},{0x116d,1}}, + {{0x4074,3},{0x94b5,5}}, {{0x43e3,1},{0x9169,3}}, {{0xcb8,2},{0x16f8,3}}, {{0x41be,3},{0xce3,2}}, + {{0x6783,5},{0x2c00,3}}, {{0x1269f,2},{0xb75,3}}, {{0x6ac3,3},{0xb55,2}}, {{0x4075,2},{0xc62,3}}, + {{0xbcb,3},{0x1055,3}}, {{0x163f7,6},{0xbb1,3}}, {{0x8752,8},{0x1f10,4}}, {{0xeb9,4},{0x172f9,7}}, + {{0x4957,8},{0x1f13,4}}, {{0xb64,2},{0xb7d,2}}, {{0x2c106,3},{0x2864c,1}}, {{0x10ca,1},{0xee87,3}}, + {{0x6ac3,4},{0xd51,2}}, {{0xded,5},{0x1ce6,4}}, {{0xaf1,1},{0xff7,5}}, {{0x522d,10},{0xae6,3}}, + {{0xeec,7},{0x32ff,7}}, {{0x245c1,6},{0x24537,6}}, {{0x1700,4},{0x2b03,5}}, {{0x7a7a,5},{0x46e4,3}}, + {{0x5442,5},{0x5a52,4}}, {{0xbb4,2},{0xeb5,4}}, {{0x29a2,7},{0xae7,1}}, {{0xde9,1},{0xaea,1}}, + {{0xd41,3},{0x46f8,6}}, {{0x5288,5},{0xb73,2}}, {{0x1e,1},{0xf482,3}}, {{0xc2e,2},{0xef8e,6}}, + {{0x2445e,1},{0x2c104,2}}, {{0xd1b,1},{0x1c,1}}, {{0x2151,5},{0x68c4,4}}, {{0x6f21,5},{0x28,2}}, + {{0x2b88a,4},{0x70a2,2}}, {{0x449e,5},{0xb4b,2}}, {{0x2cd6a,4},{0x6f64,2}}, {{0x26f1,4},{0xbc4,4}}, + {{0x2866a,2},{0x24a30,3}}, {{0x10a0d,3},{0xb48,2}}, {{0x4132,5},{0xaee,5}}, {{0x924,1},{0x27a01,2}}, + {{0xb6c,3},{0x969,4}}, {{0x27289,5},{0x10f0,1}}, {{0x43e3,1},{0xaf5d,2}}, {{0xbcb,3},{0x1f13,4}}, + {{0x2796,3},{0xa7d3,2}}, {{0xb38b,8},{0x2b,3}}, {{0xae6,2},{0x40b8,2}}, {{0x178c,3},{0x1b4f,3}}, + {{0x180c,7},{0xb2c,4}}, {{0x53f4,5},{0x107e,6}}, {{0x142e,1},{0xaec,2}}, {{0x7a6e,4},{0x9c4d,5}}, + {{0x1f163,2},{0xb8a,2}}, {{0x2c500,4},{0x6f78,2}}, {{0x1878,1},{0x14bb4,2}}, {{0x14cc,4},{0x5d64,4}}, + {{0x801a,10},{0xd0d,2}}, {{0xbaf,2},{0xb85,2}}, {{0xaa4c,4},{0x1961,6}}, {{0x2c3b0,4},{0x244c3,2}}, + {{0x278c9,2},{0x27a43,2}}, {{0x16ef,4},{0xae7,2}}, {{0x10ca,1},{0xe6d,2}}, {{0xfb1,2},{0x11ef,2}}, + {{0xe77,3},{0xb78,2}}, {{0x2859,4},{0xe78,3}}, {{0x72fa,9},{0xc8e,3}}, {{0xef3,4},{0xc8f,2}}, + {{0xaa04,3},{0x21d2,6}}, {{0xb55,2},{0xd51,2}}, {{0xc37,3},{0x2c,2}}, {{0x2859,5},{0x13e4,3}}, + {{0x1062,6},{0xe8ba,5}}, {{0xa4d,2},{0x6f78,2}}, {{0xb401,2},{0x2b,2}}, {{0xaff6,8},{0x1489,3}}, + {{0xb64,2},{0x20b72,3}}, {{0x156c6,5},{0xc67,2}}, {{0xc64,2},{0x7e54,3}}, {{0x422e,3},{0x4284,2}}, + {{0xc49,4},{0x1195,7}}, {{0x18,1},{0x432,1}}, {{0x24,1},{0x780,1}}, {{0x1c,2},{0x1197,4}}, + {{0x41be,3},{0x29da,3}}, {{0x434d,2},{0x1f2c5,2}}, {{0x181e,2},{0x1e56,4}}, {{0xb609,6},{0x25df,4}}, + {{0x3100,6},{0xcb61,5}}, {{0xddc,4},{0x2b,3}}, {{0xb4a,2},{0xf10,3}}, {{0x278dc,1},{0x278a9,2}}, + {{0xd54,1},{0x27886,3}}, {{0x10fb,3},{0x4413,2}}, {{0x10f8,2},{0x10ef,2}}, {{0x196ba,7},{0x10dc,2}}, + {{0xb9d,3},{0xb8f,3}}, {{0x1031,4},{0x3c20,3}}, {{0x1805e,6},{0xc63,3}}, {{0x10f0,1},{0xa4c9,3}}, + {{0x10f3,1},{0x1d8a,3}}, {{0x278a7,3},{0x27a7f,2}}, {{0x2bb2,8},{0x2bba,6}}, {{0xad32,7},{0xdb7f,4}}, + {{0xae9,2},{0x19bc,4}}, {{0x12fc,4},{0x4de3,3}}, {{0x19cab,5},{0xb64,3}}, {{0x7c5c,4},{0xc25a,4}}, + {{0x6b5f,4},{0x1140,4}}, {{0x17ec,5},{0xd5e,4}}, {{0x10ec,1},{0x1abd1,3}}, {{0xbde,3},{0x1c68,3}}, + {{0x1e45,3},{0xbd6,2}}, {{0x12800,6},{0x1b07,4}}, {{0x15324,6},{0x14d5,3}}, {{0x5191,8},{0xdf9,5}}, + {{0x28e8,3},{0x16b1,11}}, {{0x10ec,1},{0xc55,2}}, {{0x59be,8},{0x35d7,5}}, {{0x6d81,3},{0x3920,6}}, + {{0xc25,3},{0xed2,2}}, {{0x15298,7},{0x12f1,3}}, {{0x16bc,8},{0x16c4,8}}, {{0x14738,6},{0x3787,4}}, + {{0x24440,4},{0x27b6,1}}, {{0x1ae2,2},{0x1ae4,7}}, {{0xfd72,4},{0xfe5,6}}, {{0x278a7,3},{0x279bf,2}}, + {{0xc5ce,6},{0xc5df,5}}, {{0x8ba2,8},{0x2b3e,4}}, {{0x3fe0,5},{0x1d,1}}, {{0x253df,6},{0x253e1,4}}, + {{0x14cf8,6},{0x14cfe,4}}, {{0xc49,3},{0x1b0a,2}}, {{0x6178,7},{0xb7a,5}}, {{0xfb1,2},{0x4d56,4}}, + {{0xc29,2},{0x4882,3}}, {{0x172ec,5},{0xc6a8,4}}, {{0x251fe,2},{0x28685,3}}, {{0x2c46a,4},{0xff02,2}}, + {{0x27d24,3},{0x24,1}}, {{0x1054,4},{0xb65,2}}, {{0x24462,1},{0x251d8,2}}, {{0xbd1,2},{0x1d,1}}, + {{0x19b91,3},{0x25066,3}}, {{0x11ef,3},{0x28,1}}, {{0x1f,1},{0x193e,4}}, {{0x27b4,3},{0x1f2c4,2}}, + {{0xb4a,2},{0xb64,3}}, {{0x26e4,4},{0x2b1e,8}}, {{0xf46f,6},{0xc3e,2}}, {{0x10f6,1},{0x1d,1}}, + {{0x2a914,4},{0x2445e,1}}, {{0xddd5,7},{0x2939,3}}, {{0x1a808,6},{0x7681,3}}, {{0x65a2,8},{0xc32,5}}, + {{0x263d,5},{0x12b1,4}}, {{0xae7,1},{0xc89,2}}, {{0xd0b,3},{0xb2c,2}}, {{0x440f,2},{0x10ef,1}}, + {{0xae5,1},{0x130f,2}}, {{0x45e3,8},{0x1257,5}}, {{0xb7c,2},{0xc55,2}}, {{0x39ce,5},{0xadf,2}}, + {{0x147c,5},{0x2b,2}}, {{0xbe4,1},{0x1150,2}}, {{0x8506,9},{0x1257,3}}, {{0x41be,4},{0x5120,4}}, + {{0x1d2f5,6},{0xb48,2}}, {{0xf10,3},{0x12427,5}}, {{0x10f0,1},{0x2045,3}}, {{0xa4ce,9},{0x1930,3}}, + {{0x2986,6},{0xc7b,4}}, {{0x278a1,3},{0x278d5,2}}, {{0x2788f,3},{0x24,1}}, {{0xcf3e,2},{0xcce,3}}, + {{0x271e,3},{0x1cac0,4}}, {{0x1b72f,6},{0xfef0,4}}, {{0x27b95,4},{0x1171,2}}, {{0xf3a0,2},{0x1e,2}}, + {{0x3ee4,5},{0x1414d,5}}, {{0xfcc2,6},{0x1d,1}}, {{0xcb8,2},{0x4590,3}}, {{0x17ac,3},{0x13c19,4}}, + {{0xae5,1},{0x141e,3}}, {{0xb2f,1},{0xb54,3}}, {{0xbb4,4},{0x28da,4}}, {{0x2868,4},{0xefe5,5}}, + {{0x253b3,4},{0x70c8,4}}, {{0x326c,6},{0x3272,8}}, {{0x1e,1},{0xb7d,1}}, {{0x278a1,3},{0x278c9,2}}, + {{0xd0c,2},{0x2b09d,2}}, {{0x4354,4},{0xae6,2}}, {{0x10800,6},{0x67c0,3}}, {{0xba81,8},{0x1408,3}}, + {{0xca7,2},{0x1393,3}}, {{0x1f2bb,4},{0xaa98,2}}, {{0x290e,4},{0xae7,1}}, {{0x2c76,4},{0xbb56,6}}, + {{0x2c566,4},{0x410e,2}}, {{0xd001,4},{0xb85,2}}, {{0xcc7,3},{0xbb5,1}}, {{0x41be,3},{0x1a1f4,2}}, + {{0x1084,3},{0x3fb8,3}}, {{0x14f78,5},{0xfbb5,5}}, {{0x297f8,4},{0xd54,1}}, {{0x117c,1},{0x432,2}}, + {{0x4106,5},{0x19ef0,4}}, {{0x12ee,6},{0x3bc2,4}}, {{0x40f8,5},{0xcc9,3}}, {{0x2ae87,2},{0x2446f,2}}, + {{0x255c,8},{0x2564,7}}, {{0xccd,3},{0x13b37,3}}, {{0x40ec,3},{0x1dcf,3}}, {{0xbe0,1},{0xd0b,3}}, + {{0x27b4,3},{0x132f,3}}, {{0x10f7,1},{0x20,2}}, {{0x441c,3},{0xb8f,3}}, {{0xeeb8,8},{0xaf1,2}}, + {{0x28a2,4},{0x288a,10}}, {{0x29df1,4},{0xbeb,1}}, {{0x9e9,2},{0x532,28}}, {{0xeb9,5},{0xdd58,4}}, + {{0x25da,5},{0x1489,3}}, {{0x2445f,1},{0x27e16,3}}, {{0xcb5,3},{0x28cf,3}}, {{0x2b2ff,1},{0x251cb,1}}, + {{0x1f44,8},{0x48eb,4}}, {{0xf4df,3},{0xd0b,3}}, {{0xd0f,4},{0xbd1,2}}, {{0x264c,4},{0xe605,5}}, + {{0xadd0,3},{0x60fc,7}}, {{0x6103,5},{0xe1c,4}}, {{0x1906,4},{0xb48,2}}, {{0x2b,2},{0xb9c,2}}, + {{0x6d8e,3},{0x23cf6,4}}, {{0x159c,4},{0xd5e,7}}, {{0x4b45,9},{0xc63,3}}, {{0x703a,5},{0x703f,7}}, + {{0x278a1,3},{0x27b0f,2}}, {{0x41f6,4},{0x1a2fa,5}}, {{0xaf60,2},{0xbe4,1}}, {{0xd54,1},{0xe5d,2}}, + {{0x2214,6},{0x1a88,3}}, {{0x1a30,3},{0x1d,1}}, {{0x441c,3},{0x2b,1}}, {{0x178c,3},{0x14911,7}}, + {{0x14eb0,6},{0x6815,4}}, {{0x4351,2},{0x1ae3e,3}}, {{0x21bc,6},{0x1275,7}}, {{0x1e727,6},{0xd0d,2}}, + {{0x1f,1},{0x2dcb,4}}, {{0x12878,5},{0x1a,1}}, {{0x2471d,6},{0x2471d,6}}, {{0x24999,8},{0x1b8a5,4}}, + {{0x2f08,9},{0x2f11,5}}, {{0x25d4,11},{0xae7,1}}, {{0x278dc,1},{0x278b5,2}}, {{0x4286,2},{0x28475,3}}, + {{0x19417,7},{0x10dc,2}}, {{0x26c6,1},{0x10f0,1}}, {{0xe2f2,4},{0x261b5,4}}, {{0x3598,5},{0x1d8a,3}}, + {{0x26f9,5},{0x2b,3}}, {{0x3d78,9},{0x1719,3}}, {{0xba5,5},{0x2945,5}}, {{0xbd2,3},{0xa886,4}}, + {{0xab9a,3},{0x10ca,1}}, {{0xe308,6},{0xd101,5}}, {{0x26f1,4},{0xadf,2}}, {{0x278c9,2},{0x27a49,2}}, + {{0xd76,7},{0x29f9,7}}, {{0xb48,2},{0xcb8,3}}, {{0x181c,3},{0x1d98,3}}, {{0x279d1,2},{0x278a9,1}}, + {{0x271e,3},{0x1abd9,3}}, {{0xb2f,1},{0xae6,2}}, {{0x151c,4},{0xa26e,4}}, {{0x4194,6},{0x103a,3}}, + {{0xac8e,4},{0xac92,4}}, {{0x1095,3},{0x13e3,4}}, {{0x3ca6,8},{0x5306,4}}, {{0xae5,1},{0x1561,3}}, + {{0xf52a,5},{0x1037,6}}, {{0xe9a,4},{0x1514,4}}, {{0x2520a,2},{0x28439,3}}, {{0xf35c,7},{0xf363,4}}, + {{0xc1c,2},{0x13437,5}}, {{0x6b54,2},{0xc0c3,3}}, {{0x37f6,3},{0xf47,4}}, {{0x6b52,4},{0x6008,4}}, + {{0x55d5,8},{0x2b,2}}, {{0x10ef,1},{0x906e,5}}, {{0xb2f,1},{0xe78,3}}, {{0xd7d,5},{0xb52,5}}, + {{0x10f7,1},{0x1864,2}}, {{0xaeb,2},{0x2585,4}}, {{0x428d,2},{0xd5c,9}}, {{0x1abc2,8},{0xae7,1}}, + {{0x1f,1},{0x1f,2}}, {{0x1a3a,6},{0x12ff,3}}, {{0xc1c,2},{0xc8f,2}}, {{0x5915,6},{0x591d,5}}, + {{0x12fc,5},{0xb78,2}}, {{0x422e,3},{0xe1c,4}}, {{0x41da,3},{0x2d,1}}, {{0xbe4,1},{0x2279,4}}, + {{0x2748,2},{0x1a,2}}, {{0xadf,2},{0x1a,2}}, {{0x13a2,2},{0x1026e,6}}, {{0x4d9b,8},{0xce8,3}}, + {{0x14b6,2},{0x67c0,4}}, {{0xf6e4,5},{0xb54,3}}, {{0x27a3d,2},{0x116d,1}}, {{0x78ca,5},{0x78cf,4}}, + {{0x1afbf,3},{0x4351,2}}, {{0x6d8e,3},{0x25061,2}}, {{0xcf3e,2},{0x1d,1}}, {{0x10f6,1},{0x27112,3}}, + {{0x102f,6},{0xb87,3}}, {{0x27897,1},{0x1173,2}}, {{0x36b0,4},{0x107c8,6}}, {{0xf8cf,2},{0x10ed,2}}, + {{0x135c,6},{0x829c,6}}, {{0xd41,3},{0x187b,4}}, {{0xc30,2},{0x25c2,3}}, {{0x278a7,3},{0x279cb,2}}, + {{0x10f6,1},{0x269eb,2}}, {{0x279fb,2},{0x278a9,1}}, {{0x1627b,5},{0x23ce,4}}, {{0x278a7,3},{0x27a25,2}}, + {{0x8a3a,6},{0x4d08,4}}, {{0x8a49,2},{0xc67,2}}, {{0x1a0d,5},{0x1cc5,3}}, {{0x1afd,5},{0xf05,7}}, + {{0x13e28,6},{0x2693,4}}, {{0xb64,2},{0x1e6c,6}}, {{0xf292,2},{0xb64,2}}, {{0x10ca,1},{0x1a1f7,2}}, + {{0x1d8a,3},{0x2195,3}}, {{0x1040,6},{0x1372,3}}, {{0x532,66},{0x30,26}}, {{0x10f0,1},{0x14cbf,2}}, + {{0x1010a,4},{0x1010e,6}}, {{0xccd1,5},{0xf29,3}}, {{0x10114,3},{0x10117,7}}, {{0x270f,10},{0x1306,5}}, + {{0xaca4,2},{0xcc0,3}}, {{0x1f,1},{0x47ad,5}}, {{0x110c2,5},{0x1099,3}}, {{0x6eac,8},{0x345e,5}}, + {{0x6d8e,3},{0x3c20,3}}, {{0x1181a,6},{0xbac,4}}, {{0x47c4,8},{0x107e,5}}, {{0x6d8e,3},{0xd7d4,8}}, + {{0xebef,4},{0x1b,1}}, {{0xd54,1},{0x428b,5}}, {{0x6b61,2},{0x12f0,4}}, {{0x4db5,6},{0xb82,2}}, + {{0x1adf,5},{0x7ed0,6}}, {{0x5b1d,10},{0xc8e,3}}, {{0xbb5,1},{0x1b0a,2}}, {{0xd98,12},{0xc3d,3}}, + {{0x6d8e,3},{0xaf1,2}}, {{0x600c,8},{0xae7,1}}, {{0x21e9d,6},{0xae7,1}}, {{0x141e,5},{0x2c00,3}}, + {{0xbde,4},{0xd1b,1}}, {{0x7a56,10},{0xb65,2}}, {{0x8a49,2},{0xae2,1}}, {{0x209e4,5},{0x19f3f,2}}, + {{0xab9c,1},{0x17bea,5}}, {{0x6a8f,6},{0x3336,7}}, {{0x2c4e8,4},{0x1b887,2}}, {{0x2318,4},{0x11ef,2}}, + {{0xa2ca,8},{0x531d,4}}, {{0x6e03,7},{0xb71,2}}, {{0x414e,8},{0xb52,6}}, {{0x2859,5},{0xedcb,6}}, + {{0xa0fc,4},{0xd57,2}}, {{0x2c76,4},{0x125cc,4}}, {{0xf2e5,4},{0x2b,3}}, {{0x1b4e3,1},{0x2d753,2}}, + {{0x1b75,4},{0x1940,3}}, {{0xba7,3},{0xaf2,1}}, {{0x102c,3},{0x1930,3}}, {{0x12800,6},{0x1278,4}}, + {{0x10ef,1},{0xbbf,2}}, {{0xd51,2},{0x22e3,3}}, {{0x1095,3},{0x1dd8,3}}, {{0x6b5f,4},{0xc095,6}}, + {{0x1459e,3},{0x145a1,7}}, {{0x12fe,2},{0xb47,2}}, {{0x178c,3},{0x41ef,2}}, {{0xbb5,1},{0x2045,3}}, + {{0xd1a,2},{0x1d,1}}, {{0x27897,1},{0x278a3,2}}, {{0x1da0,5},{0xc55,2}}, {{0x9136,6},{0x9148,6}}, + {{0xb97,3},{0x1d,1}}, {{0x122c,4},{0x5c32,4}}, {{0x2465d,6},{0x2466f,6}}, {{0x27b6,1},{0x1434,3}}, + {{0xc67,2},{0xd51,2}}, {{0x1cec,5},{0xcd5,2}}, {{0x1f,4},{0x1489,3}}, {{0x14cc,4},{0xe695,4}}, + {{0xcd9,3},{0x20e7a,3}}, {{0x17bc,4},{0xb77,3}}, {{0x278dc,1},{0x1b140,2}}, {{0x6d81,3},{0x28da,1}}, + {{0xbe0,1},{0x2b,2}}, {{0x6c08,4},{0x11f2,3}}, {{0x10f2,1},{0x2abe,5}}, {{0x27,1},{0x1c8f,3}}, + {{0xf59,3},{0x1a,2}}, {{0x1ed49,3},{0x27e1c,2}}, {{0x5664,6},{0x1525,7}}, {{0x27b4,3},{0x1961,3}}, + {{0x278a1,3},{0x278bd,2}}, {{0xe64,5},{0x18d8,3}}, {{0x1d55,4},{0x8a0c,3}}, {{0xb8df,8},{0xdfb,3}}, + {{0xc77,2},{0xd91,3}}, {{0x278a7,3},{0x27a4f,2}}, {{0xa2e2,5},{0x21a0,3}}, {{0xb4b,2},{0xb63,3}}, + {{0xe49,4},{0x12be,3}}, {{0x51ee,3},{0x9f90,7}}, {{0x2cdb2,4},{0x6f64,2}}, {{0x1051,4},{0x1c1d1,4}}, + {{0x2868,4},{0xefda,5}}, {{0x16fc,4},{0xe6d,2}}, {{0x4346,11},{0x4351,3}}, {{0x2793d,4},{0x27905,2}}, + {{0x23cad,5},{0xc8f,2}}, {{0x10fb,11},{0x107e,6}}, {{0x278a1,3},{0x278cf,2}}, {{0xc67,2},{0x11ef,2}}, + {{0xc37,3},{0x1198f,7}}, {{0x5324,5},{0xfe5,6}}, {{0x257c,2},{0xa2b6,6}}, {{0x1a10,2},{0x5ef7,4}}, + {{0x2796,4},{0x1b12,9}}, {{0x20ac,7},{0x20b3,8}}, {{0xbde,3},{0x2af4,4}}, {{0xaea,1},{0xfff,7}}, + {{0x10ea,3},{0x14bb4,2}}, {{0x28cf,5},{0x28d4,6}}, {{0x126b6,5},{0x126bb,5}}, {{0x14bc,7},{0x352f,7}}, + {{0x13626,6},{0x2b,2}}, {{0x10f0,1},{0x1a73c,6}}, {{0xaea,2},{0x7e91,4}}, {{0x3694,4},{0x1839e,5}}, + {{0xbe7,1},{0x1307,3}}, {{0x522d,5},{0xe1c,4}}, {{0xba5,5},{0xfdd,8}}, {{0x30c8,7},{0x4076,4}}, + {{0x181c,3},{0xb85,2}}, {{0x43e3,1},{0xb71,2}}, {{0x1b265,3},{0xb063,5}}, {{0xcde,4},{0xd51,2}}, + {{0xb2e,2},{0x5444,3}}, {{0x177c,7},{0xd44,5}}, {{0xaea,1},{0xd57,2}}, {{0x88de,6},{0x103b,5}}, + {{0x10f7,1},{0xfdd,2}}, {{0xbde,3},{0x2288,4}}, {{0x1042,4},{0xb52,2}}, {{0x70be,8},{0x1b739,4}}, + {{0x5efb,10},{0xae7,1}}, {{0xcfd,5},{0x5bf1,7}}, {{0xc13,4},{0x1057a,6}}, {{0x134f,3},{0x750e,4}}, + {{0xc30,2},{0xec7,3}}, {{0xf59,3},{0xbb4,4}}, {{0xf96,4},{0xe7e9,5}}, {{0x5ce6,7},{0xdc0,6}}, + {{0x20bb,3},{0xed5d,5}}, {{0x2329b,4},{0xd54,1}}, {{0xcbdf,6},{0xae7,1}}, {{0x244b3,2},{0x6f78,2}}, + {{0x7a5e,4},{0xd17,3}}, {{0x13be4,5},{0xc32,5}}, {{0x2451f,2},{0x1019c,2}}, {{0x1ca1,11},{0x1cac,4}}, + {{0x1961,3},{0x1a,2}}, {{0x1b6ab,1},{0x1171,2}}, {{0x30,6},{0x532,2}}, {{0x12fe,2},{0x35fd,3}}, + {{0x20e8,6},{0x67c0,3}}, {{0x1a342,3},{0x2427,3}}, {{0x5d34,5},{0xb79,2}}, {{0x26f1,4},{0x4882,3}}, + {{0x15a82,4},{0x15a62,5}}, {{0x116d,1},{0x27af1,2}}, {{0x10ef,1},{0x696b,6}}, {{0x151c,4},{0xb7d,2}}, + {{0x2a94b,3},{0x117c,1}}, {{0xad62,4},{0xc77,2}}, {{0x57c3,8},{0x10c3,5}}, {{0x280e,6},{0x3ce4,7}}, + {{0x116d,1},{0x27acd,2}}, {{0x17765,6},{0x10dc,2}}, {{0xb72,2},{0x11ef,2}}, {{0x70f6,4},{0xbd3,3}}, + {{0x12fe,1},{0xaea,1}}, {{0x23dda,4},{0x2844,2}}, {{0x29,2},{0x2b,3}}, {{0xa2e2,5},{0xaf1,1}}, + {{0x2793d,4},{0x27917,2}}, {{0xc6d,7},{0x8879,5}}, {{0xeb2,1},{0xc34,2}}, {{0xcfd,14},{0xd0b,4}}, + {{0x1ada,2},{0xcd5,2}}, {{0xbeb,3},{0x2af8,4}}, {{0x1fc31,6},{0xb2c,2}}, {{0x177c,3},{0xb8a,2}}, + {{0x2862b,3},{0x2862e,2}}, {{0x1ed49,4},{0x22cec,3}}, {{0x6d8e,3},{0x150a7,7}}, {{0x7822,9},{0x10dc,2}}, + {{0x422e,4},{0xb70,2}}, {{0x15682,3},{0x94b5,5}}, {{0xfce3,5},{0xfce8,6}}, {{0xa22e,4},{0x5ae5,4}}, + {{0x1dcd,5},{0x10a2,4}}, {{0xaea,1},{0x715a,3}}, {{0xf5f6,2},{0x10f7,1}}, {{0x257a,4},{0x10e5c,4}}, + {{0xbd8,2},{0xb2c,4}}, {{0xb2f,1},{0xc0c3,3}}, {{0x1b140,3},{0x116e,1}}, {{0x445d,4},{0xa60f,3}}, + {{0x181c,3},{0xaf5c,2}}, {{0x151c,6},{0x1522,10}}, {{0xbeb,1},{0xdf5,4}}, {{0x20bb,3},{0x4d97,2}}, + {{0x3e92,3},{0x2742,3}}, {{0x30ac,8},{0xb52,6}}, {{0x178c,3},{0x1cee,3}}, {{0xca3,4},{0xf28,3}}, + {{0xfa14,4},{0x2b,3}}, {{0xf8de,7},{0x141e,3}}, {{0xd5c,1},{0x5eb0,4}}, {{0xe2ff,5},{0xba7,3}}, + {{0x4a27,4},{0x166ef,5}}, {{0x13cf2,5},{0x5269,5}}, {{0x14fc,4},{0x1ed0,4}}, {{0x1055,3},{0x1a,2}}, + {{0x28f6,2},{0x3a3b,3}}, {{0x1f2c5,2},{0x10f3,1}}, {{0x1a014,6},{0xaf2,1}}, {{0x5324,6},{0xff7,5}}, + {{0x27ce8,3},{0x948,1}}, {{0xe0e2,8},{0x2b,3}}, {{0x1b433,2},{0x1b435,6}}, {{0xaadc,3},{0x1444,7}}, + {{0xfee4,4},{0x1b815,8}}, {{0x6f74,4},{0x157a4,2}}, {{0xea2d,3},{0xb48,2}}, {{0x1b0c0,5},{0x4074,3}}, + {{0x12f1,2},{0xb55,2}}, {{0x9112,5},{0x16077,3}}, {{0x1c,1},{0xbbf,2}}, {{0x15fea,5},{0xa00d,4}}, + {{0x4088,9},{0xff7,5}}, {{0xdbf,7},{0x10dc,2}}, {{0x430,18},{0x432,12}}, {{0xb7d,1},{0xb52,2}}, + {{0x434d,2},{0x10f6,5}}, {{0x20a1c,4},{0x1abd9,3}}, {{0xd41,4},{0x4ab0,3}}, {{0x11b5,3},{0xdfb,3}}, + {{0x278c9,2},{0x278a3,2}}, {{0xcb8,3},{0xb55,2}}, {{0x972a,5},{0x1555,7}}, {{0x3f7e,7},{0x6b24,3}}, + {{0x118b0,5},{0xb4f,3}}, {{0xd57f,5},{0x1916,5}}, {{0x317e,6},{0xb65,2}}, {{0x6ac3,3},{0xbe4,1}}, + {{0xf96,4},{0xc62,4}}, {{0x9aae,6},{0xff7,5}}, {{0x20bb,3},{0x1a,2}}, {{0x10c8,3},{0xbd5,2}}, + {{0x6d8e,3},{0xcb8,2}}, {{0x27283,5},{0xae7,1}}, {{0x1095,3},{0xc39,2}}, {{0xe011,5},{0x8975,5}}, + {{0xd1b,1},{0x2b,2}}, {{0x51ec,5},{0xb4a,3}}, {{0xafd2,9},{0x1dd8,3}}, {{0x14106,4},{0xbbf,2}}, + {{0xb96e,5},{0x5af9,3}}, {{0x4998,7},{0x499f,6}}, {{0x951a,7},{0x103a,3}}, {{0x21be8,6},{0x28,1}}, + {{0x10fb,3},{0xdac,2}}, {{0xe64,4},{0xd1b,1}}, {{0x24461,1},{0x1ed53,1}}, {{0x40b2,4},{0xae2,1}}, + {{0x14e7e,4},{0xec2,2}}, {{0x278a7,3},{0x1b6b2,2}}, {{0x152c4,2},{0xd5c,1}}, {{0x2be4,6},{0x3a3b,3}}, + {{0x14b2c,6},{0x114d,2}}, {{0x4a68,5},{0x10f37,5}}, {{0x4124,5},{0xdfab,3}}, {{0xe3e4,5},{0x1866,3}}, + {{0x278a7,3},{0x1b6ab,2}}, {{0x178c,3},{0x10ed,2}}, {{0x17ae,1},{0x6ac5,1}}, {{0x30,2},{0x2b8b4,4}}, + {{0xba5,4},{0x11b0d,5}}, {{0x159c,4},{0xc1e,2}}, {{0x1ab2,4},{0x169fe,5}}, {{0x116d,1},{0x27977,2}}, + {{0x19c5a,4},{0x70f1,4}}, {{0x16637,5},{0xfc7c,4}}, {{0xbcf4,6},{0x3776,3}}, {{0x149ae,5},{0x284e,3}}, + {{0x14256,9},{0xae0,1}}, {{0x5277,2},{0x1a,1}}, {{0x15b3f,3},{0x15b42,6}}, {{0x13e28,6},{0x2db1,3}}, + {{0x500b,5},{0xc8f,2}}, {{0x3234,3},{0x1a11,2}}, {{0x27995,2},{0x278af,1}}, {{0x2789b,4},{0x27897,1}}, + {{0xbeb,2},{0x1c,1}}, {{0x244b3,2},{0x96b,2}}, {{0x924,1},{0x2797d,2}}, {{0x10f6,1},{0xd79,3}}, + {{0x732,3},{0x7c4,1}}, {{0x4178,4},{0xe8a,4}}, {{0x183c,6},{0x532,24}}, {{0xaf2,1},{0xa5de,4}}, + {{0xa252,5},{0xb65,2}}, {{0xf424,3},{0xb8f,2}}, {{0x1ce6d,5},{0xb67,2}}, {{0x278bd,2},{0x924,2}}, + {{0x253b1,6},{0x70d4,4}}, {{0x946,3},{0x948,8}}, {{0xf65,5},{0x1fe4,5}}, {{0x423e,1},{0xd5c,1}}, + {{0x179c0,6},{0xb78,2}}, {{0x915e,4},{0x22e3,3}}, {{0x3e92,3},{0x75cd,4}}, {{0xb2e,2},{0x14354,6}}, + {{0xbb5,1},{0xd1b,1}}, {{0x14ff0,7},{0xed0,3}}, {{0x768a,9},{0xd7f,3}}, {{0xaf1,1},{0x1717,5}}, + {{0x178c,3},{0x4119,3}}, {{0x284e,3},{0xaea,2}}, {{0x2ff8,6},{0xb2c,2}}, {{0x278a1,3},{0x116d,2}}, + {{0x2cf2e,2},{0x2445e,1}}, {{0xaf38,4},{0xaf1,1}}, {{0x2ce23,4},{0x2b,1}}, {{0xaf1,1},{0xd1b,1}}, + {{0xc34,2},{0xb48,2}}, {{0x209d,5},{0xe1d,3}}, {{0x19b3,4},{0x1bac9,4}}, {{0x271e,3},{0x3789,3}}, + {{0x1095,3},{0x411b,2}}, {{0x152c4,2},{0x10f8,2}}, {{0x1b095,3},{0x35ba,3}}, {{0x10ec,1},{0x10f8,2}}, + {{0x4268,3},{0x1491,7}}, {{0x116e,1},{0x278a9,2}}, {{0xbe4,1},{0xae2,1}}, {{0xbcb,3},{0x338a,4}}, + {{0x5b44,8},{0xae7,1}}, {{0xaf1,2},{0xb2f,1}}, {{0x19cc6,4},{0x1878,1}}, {{0x734,72},{0x734,4}}, + {{0xb2e,2},{0x368e,6}}, {{0x422e,3},{0x7065,5}}, {{0x9b1a,5},{0x1152,3}}, {{0x5949,4},{0x9851,5}}, + {{0x134c,5},{0x4f0c,8}}, {{0x278dc,1},{0x27a2b,2}}, {{0x2b,1},{0x58d0,4}}, {{0x14904,5},{0x46f8,3}}, + {{0xf85,4},{0x21f51,2}}, {{0x1f,1},{0x14d5,3}}, {{0xceb,3},{0x1fc0c,4}}, {{0x278a1,3},{0x27b09,2}}, + {{0x14b4a,7},{0xb8a,2}}, {{0x756a,7},{0x35d7,5}}, {{0x3704,7},{0x4df1,5}}, {{0xb2f,1},{0xb7d,1}}, + {{0x2986,6},{0x2574,2}}, {{0x1ff8,10},{0xb52,5}}, {{0xd76,12},{0x10dc,2}}, {{0x2789b,3},{0x278af,2}}, + {{0x5c76,4},{0xc7b,4}}, {{0x7a92,9},{0x101a,3}}, {{0x278a7,3},{0x279e3,2}}, {{0x27d71,6},{0x6f74,4}}, + {{0x10c8,3},{0xdf6,3}}, {{0x26c4,3},{0x10f8,2}}, {{0xaca4,2},{0xb85,2}}, {{0x1c67,4},{0x8e92,4}}, + {{0x2474d,2},{0x5c78,2}}, {{0x10c8,3},{0x110ed,6}}, {{0x422e,3},{0xc60,3}}, {{0x41be,3},{0x43a1,3}}, + {{0xc3e,3},{0xffeb,7}}, {{0x2d,1},{0xb85,2}}, {{0x265b,4},{0x1719,3}}, {{0x20b1f,6},{0x28634,1}}, + {{0x1a016,4},{0x2b,3}}, {{0x24531,6},{0x24537,6}}, {{0x22468,6},{0xaf2,1}}, {{0x2c99e,4},{0x20b23,2}}, + {{0x27b4,3},{0x20aa9,2}}, {{0x7a6e,4},{0x4f4d,3}}, {{0xc67,3},{0x2b,1}}, {{0x284a,4},{0xbd6,2}}, + {{0x2ae61,4},{0x2ae65,4}}, {{0xb2c,2},{0x67c0,3}}, {{0x474f,6},{0x3521,7}}, {{0xa7aa,6},{0xc34,2}}, + {{0x26c4,3},{0x434c,2}}, {{0x145e4,5},{0x408d,4}}, {{0xd506,8},{0x103a,3}}, {{0x1d1cd,6},{0xd0d,2}}, + {{0xceb,3},{0x134f,3}}, {{0xb44,3},{0x21071,4}}, {{0xa7da,3},{0x3203,4}}, {{0xf38e,4},{0xdf0,2}}, + {{0xbe4,1},{0xf8cf,2}}, {{0xbb5,2},{0x28,1}}, {{0x38e5,6},{0x3afc,4}}, {{0x2796,3},{0x1a1f4,2}}, + {{0x1b907,4},{0x1019a,4}}, {{0xab9c,1},{0x10f3,1}}, {{0xbd8,2},{0xb55,2}}, {{0x134c,5},{0xc518,6}}, + {{0x11ec,6},{0x14a6,6}}, {{0x30,2},{0x5203,3}}, {{0x278a1,3},{0x27acd,2}}, {{0x2798,2},{0x100c6,8}}, + {{0x13048,6},{0x4559,4}}, {{0xb64,2},{0x6dd7,3}}, {{0x278a7,3},{0x2796b,2}}, {{0x1015a,6},{0x1b173,8}}, + {{0x2592c,2},{0x10f6,1}}, {{0x19f0f,5},{0x2195,3}}, {{0x24a2d,2},{0x19,1}}, {{0x432,32},{0x432,9}}, + {{0x8470,4},{0x1c25,4}}, {{0x6d9b,5},{0xe121,3}}, {{0xbaa2,5},{0xbc2,2}}, {{0x11234,6},{0x2b3e,4}}, + {{0x14bb4,3},{0x1878,1}}, {{0x28be,3},{0x1b3f6,5}}, {{0xcd9,6},{0x97fc,6}}, {{0x6957,5},{0x2971,3}}, + {{0xea98,5},{0x4591,4}}, {{0x14780,4},{0xc34,3}}, {{0x1735a,6},{0x15583,3}}, {{0x2796,3},{0x15197,7}}, + {{0x219ef,4},{0x1a,1}}, {{0x24,1},{0x24461,1}}, {{0x1308,3},{0x1f,1}}, {{0x1099,3},{0xc8f,2}}, + {{0x278a1,3},{0x279dd,2}}, {{0x4a27,4},{0x5aab,3}}, {{0x278a1,3},{0x27ac7,2}}, {{0x4a27,4},{0x1b4b,3}}, + {{0xb75,2},{0x2c38,6}}, {{0x278a1,3},{0x27a3d,2}}, {{0x2b,2},{0x46ad,6}}, {{0xe86,8},{0x1d,1}}, + {{0x845e,6},{0xb54,4}}, {{0x2f6a,6},{0x16a4,4}}, {{0x1b,1},{0xd046,4}}, {{0xcc0,3},{0x2b,3}}, + {{0x423c,3},{0xa4c9,3}}, {{0xcfd,5},{0xb65,2}}, {{0x2ce6,9},{0x2939,3}}, {{0x2d12,4},{0xb9d,3}}, + {{0x1170c,6},{0xc593,4}}, {{0x2798f,2},{0x116c,1}}, {{0x273bd,2},{0x1878,1}}, {{0xcb5,3},{0x410c,4}}, + {{0x1cec,5},{0xc8ab,6}}, {{0x43a1,3},{0xf8e1,4}}, {{0xeca,5},{0xaea,2}}, {{0x10c8,5},{0xd0d,2}}, + {{0xea2a,8},{0xea32,3}}, {{0x14936,6},{0x1493c,4}}, {{0x4189,3},{0x103a,3}}, {{0xf52,6},{0x1ea5,5}}, + {{0x17ce,2},{0x1264c,5}}, {{0xb52,2},{0xaea,3}}, {{0x2789b,4},{0x278d6,1}}, {{0x679d,5},{0xbac,4}}, + {{0xd7dc,6},{0x6b24,3}}, {{0xf6b8,5},{0x6b99,4}}, {{0x6144,7},{0xb54,4}}, {{0x20d9,4},{0x1c25,3}}, + {{0x2711,3},{0x1a,2}}, {{0xb6c,3},{0xb78,2}}, {{0x966a,9},{0xb2e,2}}, {{0x2446c,1},{0x24462,1}}, + {{0xf367,5},{0xd9a1,3}}, {{0xce2,3},{0x1a,1}}, {{0x10ea,3},{0xb6ff,4}}, {{0x4362,4},{0x6a91,3}}, + {{0x29f18,3},{0x27a49,2}}, {{0x10c8,3},{0x28fc4,2}}, {{0x1878,1},{0xae0,1}}, {{0x6d81,3},{0x1b4f,3}}, + {{0x24531,4},{0x6f64,2}}, {{0x9232,9},{0x10dc,2}}, {{0x31e0,5},{0x31e5,7}}, {{0xf21,3},{0x2211,3}}, + {{0x3655,5},{0x12d7,5}}, {{0x11ef,2},{0x1d,1}}, {{0x183c,6},{0xfed0,4}}, {{0xb6c,3},{0xb8f,2}}, + {{0x428b,2},{0x10f3,1}}, {{0x142c,3},{0x21dff,4}}, {{0xae7,1},{0x3789,3}}, {{0xceb,3},{0x1f3a,3}}, + {{0xdef,3},{0xae7,1}}, {{0xadd,12},{0xb27,9}}, {{0xbeb,1},{0xb99,2}}, {{0x177c,3},{0x15ae2,3}}, + {{0x12b26,4},{0xd0d,2}}, {{0x70a8,4},{0xfef0,4}}, {{0x27983,2},{0x278af,1}}, {{0x1c,1},{0x12fe,1}}, + {{0x10c8,3},{0x28fe,6}}, {{0x1a3c7,5},{0x41ef,4}}, {{0x7216,7},{0xb2ed,4}}, {{0x10ef,1},{0x28efb,2}}, + {{0x167c,5},{0x1919d,4}}, {{0x2ce6,9},{0xbb4,4}}, {{0xf917,7},{0x1d,1}}, {{0x1150,2},{0x1a,1}}, + {{0x178c,3},{0x1864,2}}, {{0x3db0,5},{0xb52,2}}, {{0x1bde,6},{0x10dc,2}}, {{0xe9e8,8},{0xce8,3}}, + {{0x2789b,3},{0x1b6b3,2}}, {{0x68bb,11},{0xb65,2}}, {{0xc2f,2},{0xcb8,2}}, {{0x5adc,9},{0xcb8,3}}, + {{0x27b4,3},{0x23000,2}}, {{0xeca,4},{0xbb5,1}}, {{0xb7f,3},{0x89b9,4}}, {{0x22e6,5},{0xc77,2}}, + {{0x24a2d,2},{0x27e61,3}}, {{0x8aca,9},{0xb64,3}}, {{0x194a,5},{0x1b4f,3}}, {{0xeb2,1},{0xeb1,2}}, + {{0xcb8,2},{0xc63,3}}, {{0x2796,3},{0xd1b,1}}, {{0xbc1,2},{0x3ba5,5}}, {{0xacd2,6},{0x4a55,6}}, + {{0x1cbf,5},{0xaea,1}}, {{0x1e,1},{0x1b3c0,5}}, {{0x206c9,5},{0xd51,2}}, {{0x924,2},{0x278bd,2}}, + {{0xd8e,3},{0xd57,2}}, {{0x870a,6},{0xe1a,6}}, {{0xb44,6},{0xb4a,14}}, {{0xb44,3},{0x1be11,4}}, + {{0x7546,7},{0xb5ef,4}}, {{0x27232,2},{0xd54,1}}, {{0xa7da,5},{0x3a42,4}}, {{0x1019c,2},{0xff22,2}}, + {{0x116d,1},{0x278d5,2}}, {{0x2796,3},{0xfde,2}}, {{0x14ffa,7},{0x1081,3}}, {{0x122c,4},{0x28,1}}, + {{0x422e,3},{0x1bfc9,4}}, {{0x16ac,5},{0x2629,3}}, {{0x6c15,6},{0xf55e,5}}, {{0x29cf7,3},{0xbeb,1}}, + {{0x1b4e3,1},{0x27e51,4}}, {{0xcbd,3},{0x28,1}}, {{0xb2f,1},{0xb72,2}}, {{0x6e46,3},{0x18b0a,4}}, + {{0xcd9,3},{0xb6ff,4}}, {{0x70a0,2},{0x806,2}}, {{0x2520a,2},{0x24f9a,3}}, {{0x4194,5},{0x28,1}}, + {{0xea77,7},{0x2211,3}}, {{0x19954,6},{0x1372,3}}, {{0x209a5,3},{0xc905,4}}, {{0x122c,4},{0x9d69,4}}, + {{0xab9c,1},{0x10ef,1}}, {{0x10f2,1},{0xde2,4}}, {{0x14dc,7},{0x1bdb,3}}, {{0x4d40,10},{0xae6,3}}, + {{0x219c,4},{0x1307e,6}}, {{0x6c7d,5},{0xf639,6}}, {{0x10a7a,4},{0xb9d,3}}, {{0xb7f,3},{0x4402,2}}, + {{0x5365,5},{0x12085,5}}, {{0x11de,6},{0xae7,1}}, {{0x27229,4},{0xaf5d,2}}, {{0x20bb,3},{0x715a,3}}, + {{0x142e,1},{0x2574,2}}, {{0xa7da,5},{0x40b8,2}}, {{0x10c80,7},{0xaf2,1}}, {{0x10f2,1},{0x8a49,2}}, + {{0x9b1a,5},{0xcf6,7}}, {{0x24a40,2},{0x1b6cb,1}}, {{0x180c,5},{0x89ca,3}}, {{0x1ed58,1},{0x2a948,1}}, + {{0x1d46,4},{0x17499,5}}, {{0x2ad8f,4},{0x244ed,2}}, {{0x24a2d,2},{0x27e2f,3}}, {{0xbcb,3},{0xc64,2}}, + {{0x3678,6},{0xd850,5}}, {{0xf63c,2},{0xcf6,3}}, {{0x2aeae,3},{0x1b4e3,1}}, {{0x19b3,5},{0xb9f,2}}, + {{0x40b2,4},{0xaf2,1}}, {{0x2793d,4},{0x27911,2}}, {{0x4106,5},{0x148eb,5}}, {{0x227f,3},{0x2282,6}}, + {{0xb44,3},{0x2db0,4}}, {{0x28,3},{0xe6d,2}}, {{0xfc8b,5},{0xb55,2}}, {{0x4ec6,8},{0x7a6a,4}}, + {{0xfee4,8},{0xff00,4}}, {{0x924,1},{0x279c5,2}}, {{0x49ac,2},{0x187c,3}}, {{0x6ac3,3},{0x2a16,3}}, + {{0x14bb0,2},{0xf5f4,2}}, {{0x1b4e3,1},{0x251ea,2}}, {{0xaca2,3},{0xaad1,3}}, {{0xe830,5},{0x18fc9,4}}, + {{0x948,1},{0x28633,2}}, {{0x278c9,2},{0x278b5,2}}, {{0x219c,5},{0x187fb,4}}, {{0x26c6,1},{0x276b,3}}, + {{0x441c,3},{0xb64,2}}, {{0xf6e4,5},{0xcec5,5}}, {{0xd5c,2},{0xce1,4}}, {{0xb99,4},{0x1035,5}}, + {{0xc30,2},{0xb9d,3}}, {{0x1d73,8},{0x1498,3}}, {{0x1f6a3,2},{0x14bb5,2}}, {{0x11ba8,4},{0x187a,5}}, + {{0xc46e,7},{0xb65,2}}, {{0x27d9f,6},{0x27d95,4}}, {{0x131d8,7},{0x10dc,2}}, {{0x2864c,1},{0x734,2}}, + {{0x15dc,12},{0xd0b,4}}, {{0x105d0,7},{0xc63,3}}, {{0xb6c,3},{0xb7d,1}}, {{0xc13,4},{0x3e92,3}}, + {{0x27b6,1},{0x283e,2}}, {{0x1173,2},{0x27b09,2}}, {{0x1f2c4,2},{0x10fa,1}}, {{0x116e,1},{0x279ef,2}}, + {{0xaca2,3},{0x10f2,1}}, {{0xaea,2},{0xb2e,2}}, {{0x10fb,3},{0xdc0,6}}, {{0x17bfb,4},{0xc63,3}}, + {{0x41be,3},{0x4411,3}}, {{0x24531,4},{0x806,2}}, {{0xb96e,5},{0xb52,2}}, {{0x417a,4},{0xb8a,2}}, + {{0x62fe,10},{0xae7,1}}, {{0xc37,3},{0xe7b,3}}, {{0x28f6,2},{0x5c5b,3}}, {{0xaf0,2},{0xc4d,2}}, + {{0x162c,6},{0x28,1}}, {{0x1f63c,3},{0x1a,2}}, {{0x30,2},{0xfed0,4}}, {{0x2789b,4},{0x278dc,1}}, + {{0x142c,3},{0x2bfc,2}}, {{0x4812,6},{0x4818,7}}, {{0xceb,3},{0x83eb,5}}, {{0x27,1},{0x1cac0,4}}, + {{0x318c,5},{0x18ca,3}}, {{0x1b7bd,8},{0xff24,4}}, {{0xae5,1},{0x126c3,6}}, {{0x1084,3},{0x19474,6}}, + {{0x3694,7},{0xc57,3}}, {{0x1e,1},{0x2bfc,3}}, {{0x30,2},{0x9b41,3}}, {{0xacba,5},{0xfa3,4}}, + {{0xee55,8},{0xc8e,3}}, {{0x10fb,3},{0xc78,3}}, {{0x16bc,4},{0x2202,3}}, {{0xf0e,5},{0x1374,8}}, + {{0x75ca,7},{0x2b,3}}, {{0x94ba,6},{0x2af8,4}}, {{0x1b99d,5},{0x59f5,3}}, {{0xcc7,3},{0xb78,2}}, + {{0x6c63,4},{0xf5eb,7}}, {{0x10c8,3},{0xcf3e,2}}, {{0xb6b9,5},{0xbb4,4}}, {{0x141e,3},{0x5fc7,4}}, + {{0x924,4},{0x116c,1}}, {{0x11f2,3},{0x1a,2}}, {{0x13dc,9},{0x35fd,3}}, {{0x3fe0,5},{0xcbc,4}}, + {{0xeaae,6},{0xeab4,5}}, {{0x5d82,9},{0x1dd8,4}}, {{0x722e,7},{0x25c0,5}}, {{0xacb0,2},{0x2b,3}}, + {{0xaca2,3},{0xc1e,2}}, {{0xf579,5},{0x14b81,5}}, {{0x10ea,3},{0xd4b4,5}}, {{0xf1db,6},{0x1916,5}}, + {{0x10f2,1},{0x26042,2}}, {{0x11ba8,4},{0xa5dd,5}}, {{0xfde,2},{0x67a6,4}}, {{0x31c4,8},{0xb2c,2}}, + {{0x1a1f3,2},{0x1f58d,2}}, {{0x7e9a,5},{0x79f9,4}}, {{0x177c,5},{0x1f3b,4}}, {{0x20ac,6},{0x702a,4}}, + {{0xae7,1},{0x14d5,3}}, {{0x177c,3},{0x1615e,5}}, {{0xac96,8},{0xaf2,1}}, {{0xbb5,1},{0xde9,1}}, + {{0xd8f,3},{0xc67,2}}, {{0x3af4,8},{0xf8f,5}}, {{0x1088e,6},{0x1dac,3}}, {{0x24461,1},{0x27e2a,2}}, + {{0xae7,2},{0x151f,3}}, {{0x1e,1},{0xb2e,2}}, {{0xe6d,2},{0x1c,1}}, {{0x2098b,2},{0x10ef,1}}, + {{0x532,66},{0x30,24}}, {{0x12bc0,6},{0x1b07,4}}, {{0xb12e,3},{0xde9,1}}, {{0x1e,2},{0x27,1}}, + {{0x2796,3},{0xb79,2}}, {{0xf38f,3},{0x4d56,4}}, {{0x10ec,1},{0x43a5,3}}, {{0x7972,6},{0x5ba6,6}}, + {{0xc89,3},{0xdf9,5}}, {{0x142e,1},{0xb65,2}}, {{0x441c,3},{0x13719,4}}, {{0x29d6,5},{0x2b,3}}, + {{0x1afd,5},{0x7c77,7}}, {{0x70d4,4},{0x1b8a5,4}}, {{0x2c76,7},{0x1a35,5}}, {{0x10ca,1},{0x2844,3}}, + {{0xcb5,3},{0xbd6,2}}, {{0x25201,2},{0x2445e,1}}, {{0xcc4d,6},{0xb8f,2}}, {{0xcfd,4},{0x715a,3}}, + {{0x2c76a,4},{0x6f8a,2}}, {{0x10c8,3},{0x25002,2}}, {{0x2474d,4},{0x1016a,2}}, {{0x28f6,2},{0x1426e,4}}, + {{0x10f5,2},{0x1878,1}}, {{0x1b6cb,4},{0x1b6cb,4}}, {{0xc13,4},{0x296a,10}}, {{0x1062,8},{0x1140,4}}, + {{0xd322,6},{0x10504,4}}, {{0xb31,1},{0x1ed53,1}}, {{0xb44,3},{0x2ea9,5}}, {{0xcd76,7},{0xfe5,2}}, + {{0xf74,6},{0x15a1,3}}, {{0x92f2,8},{0xbb4,4}}, {{0xadf,2},{0x1498,3}}, {{0x1064,4},{0x48a4,3}}, + {{0xbe7,2},{0x1c25,3}}, {{0x6067,7},{0x606e,6}}, {{0x64cb,4},{0x158ac,5}}, {{0x27b4,3},{0x43e3,1}}, + {{0x705e,6},{0x7064,6}}, {{0xbe4,1},{0x2bfc,2}}, {{0xd0f,4},{0xa3f8,5}}, {{0x24a2d,2},{0x27e16,3}}, + {{0x27983,2},{0x278a9,1}}, {{0x78ca,4},{0xf10,3}}, {{0xc3d,3},{0xd1b,1}}, {{0xdba,4},{0x109e6,6}}, + {{0x2db1,3},{0x368c,3}}, {{0x2dfe,5},{0x11e6,6}}, {{0x6ac3,3},{0x10f6,1}}, {{0xab9a,3},{0xbeb,1}}, + {{0x1a96,3},{0xae5,1}}, {{0x279b9,2},{0x278af,1}}, {{0xfda0,2},{0xd54,1}}, {{0x119c,5},{0x12ff,2}}, + {{0x40b2,4},{0xaf1,1}}, {{0x248f1,8},{0x70ac,4}}, {{0x7bee,9},{0x1308,3}}, {{0x4e85,9},{0xd0b,4}}, + {{0x27905,2},{0x278d6,1}}, {{0x10ca,1},{0x10f2,1}}, {{0x2c332,4},{0x1dec4,2}}, {{0x3090,10},{0x10b3,4}}, + {{0x10fb,4},{0xb2e,2}}, {{0x2aefa,2},{0x2446f,2}}, {{0x2c96e,4},{0x6f78,2}}, {{0x7d6e,8},{0x5fa0,4}}, + {{0xeb2,1},{0xb7d,1}}, {{0x53ea,4},{0x760b,3}}, {{0x12fe,1},{0x2592c,3}}, {{0xd41,3},{0x969,4}}, + {{0x1cec,6},{0x10dc,2}}, {{0x6c65,2},{0x384a,3}}, {{0x112c,1},{0x159c8,1}}, {{0x6373,9},{0xb54,4}}, + {{0x100f,3},{0x1aff,8}}, {{0xdfe,9},{0x372a,4}}, {{0x4418,4},{0xbeb,1}}, {{0x1ffe1,6},{0xae6,2}}, + {{0x1cc6d,6},{0x10dc,2}}, {{0x2520a,2},{0x2520c,4}}, {{0xf96,4},{0x397c,4}}, {{0x10f0,1},{0x14d5,3}}, + {{0x6f23,3},{0xe560,5}}, {{0x470e,5},{0x2045,3}}, {{0xaf0,2},{0xc15,3}}, {{0x5b1d,5},{0x1257,5}}, + {{0x271e,3},{0x4284,2}}, {{0x532,2},{0x804,8}}, {{0x181c,3},{0xb79,2}}, {{0xdd3,3},{0xae7,1}}, + {{0x428b,2},{0x4351,2}}, {{0x3234,3},{0x27,1}}, {{0x6e53,3},{0x87b5,4}}, {{0x423e,1},{0xf55e,3}}, + {{0x2e8a,8},{0x2e92,6}}, {{0x10ca,1},{0x1a814,2}}, {{0x16cc,8},{0xbd6,8}}, {{0x2797d,2},{0x278af,1}}, + {{0x6d81,3},{0xc77,3}}, {{0xd0f,11},{0x1667,5}}, {{0xf85,13},{0xd0b,4}}, {{0xc25,5},{0x1498,3}}, + {{0x27f2,4},{0xbc4,4}}, {{0x24,1},{0x2b2ff,1}}, {{0x2eb4,9},{0x4e26,4}}, {{0xfdf,2},{0xb47,2}}, + {{0xe78,3},{0x1d,1}}, {{0x27a49,2},{0x278af,1}}, {{0x20011,5},{0x3a3b,3}}, {{0x16f44,6},{0x1152,3}}, + {{0x265b,4},{0x22c44,3}}, {{0xba5,4},{0xae1b,7}}, {{0x2c3b6,4},{0x1a328,2}}, {{0x21,1},{0xd1b,1}}, + {{0x40b2,4},{0xc77,2}}, {{0x29df1,4},{0x10f3,1}}, {{0x4450,4},{0xb20e,7}}, {{0xf85,4},{0x2324,5}}, + {{0x9b1a,5},{0x1d25,3}}, {{0x10ef,1},{0x2848,2}}, {{0x14922,6},{0xa55a,4}}, {{0x2c3fe,4},{0x24733,2}}, + {{0x2ce3c,4},{0x1b,1}}, {{0xaea,1},{0xae9,2}}, {{0x10f0,1},{0xca6,2}}, {{0xbeb,1},{0xd7f,4}}, + {{0x284c,2},{0xcd2,7}}, {{0xe31,10},{0xd1a,7}}, {{0x128d2,7},{0x2b,3}}, {{0x6839,8},{0xae7,1}}, + {{0x441c,3},{0x1150,2}}, {{0x530a,5},{0x15b0,2}}, {{0x10ec,1},{0x4dbb,5}}, {{0xd5c,2},{0x1861d,5}}, + {{0x14724,6},{0x2c37,4}}, {{0xb7c,2},{0xb336,7}}, {{0x2b,2},{0x21be,4}}, {{0xa14a,5},{0x28,1}}, + {{0xfb8e,6},{0x14a7,5}}, {{0xab9a,3},{0x21842,4}}, {{0x122c,4},{0x5396,3}}, {{0xf63,5},{0xb51d,5}}, + {{0xab9c,1},{0x2844,2}}, {{0x13a2,2},{0x1372,3}}, {{0xc6d,5},{0xcdf,3}}, {{0x16b50,5},{0x10c4,4}}, + {{0x122c,6},{0x21d2,6}}, {{0x12314,9},{0xaf2,1}}, {{0x6f21,4},{0xae7,2}}, {{0x1852f,6},{0xdfb,3}}, + {{0xb7d,1},{0xb8f,3}}, {{0xf3a0,2},{0xb55,2}}, {{0x19b3,5},{0x107a1,5}}, {{0x2c84,7},{0x2bff,6}}, + {{0xbc3,5},{0x2b,3}}, {{0x1ee0,3},{0xae3,2}}, {{0x14260,5},{0x2076,5}}, {{0x2322,6},{0x14e2,3}}, + {{0xae8,2},{0xfcfc,3}}, {{0x2b,1},{0xbd6,6}}, {{0x179e4,6},{0xb78,2}}, {{0xbe0,1},{0x202bc,5}}, + {{0x2451f,2},{0x244c7,2}}, {{0xc13,4},{0x7292,8}}, {{0x1b57,4},{0x101b,3}}, {{0x140c,8},{0x1df3,7}}, + {{0x1f,1},{0x67c0,3}}, {{0xbde,3},{0xf482,3}}, {{0x27b4,3},{0x23296,2}}, {{0xbde,3},{0x4ab0,3}}, + {{0x2106,8},{0xd1a,7}}, {{0xeb2,1},{0x1b25b,4}}, {{0x3234,3},{0x4687,5}}, {{0x27b4,3},{0x28522,2}}, + {{0x1b6ab,2},{0x116c,1}}, {{0x3782,9},{0x1fb7,5}}, {{0x6ac3,3},{0xb85,2}}, {{0xf96,4},{0x18f1f,3}}, + {{0x358a,10},{0x3594,4}}, {{0x1b6db,4},{0x70a6,2}}, {{0x20bb,3},{0x3389,5}}, {{0x1b863,6},{0x1b869,8}}, + {{0x1042,6},{0x1a,1}}, {{0x4362,4},{0x2891,3}}, {{0xd5c,2},{0x1b80,4}}, {{0x20bb,3},{0x222d3,4}}, + {{0xcb5,3},{0x3203,3}}, {{0x6f23,3},{0xd57,3}}, {{0xbe0,1},{0xc67,2}}, {{0x422e,3},{0xcd5,2}}, + {{0x432,32},{0x432,10}}, {{0x10f3,1},{0x27,1}}, {{0x432,64},{0x432,48}}, {{0x6de9,8},{0xb78,2}}, + {{0x924,1},{0x27a07,2}}, {{0x10e6a,6},{0xc63,3}}, {{0x2afa,2},{0x1cf1b,4}}, {{0xc25,3},{0x16af,3}}, + {{0x244f5,2},{0x244c7,2}}, {{0xac8c,2},{0x1cef,3}}, {{0x1f699,5},{0xdfb,3}}, {{0x17bc,4},{0xc1a,9}}, + {{0x5d5b,5},{0xb718,4}}, {{0x14fc,5},{0xb8f,2}}, {{0xfefc,4},{0xff00,4}}, {{0xc6d,5},{0xc78,3}}, + {{0x27b4,3},{0x23eee,4}}, {{0x1084,3},{0xb87,3}}, {{0xaab6,6},{0xff7,5}}, {{0xa7ac,3},{0x12f1,3}}, + {{0x10f2,1},{0x2b2e,6}}, {{0xfc8d,3},{0x1684,3}}, {{0xbb10,5},{0xbb15,6}}, {{0x10ec,1},{0x14dcd,6}}, + {{0xd76,4},{0x3e2a,4}}, {{0x1259,2},{0xe4a,4}}, {{0xf459,8},{0x1489,3}}, {{0x314d,4},{0x47ad,5}}, + {{0x422e,3},{0x1b3e,3}}, {{0x33f4,7},{0x33fb,7}}, {{0x10d20,6},{0x2bca,4}}, {{0x6d81,3},{0x35fd,3}}, + {{0x1f59b,2},{0xa5e6,4}}, {{0x30,128},{0x30,18}}, {{0xbb5,1},{0xb72,2}}, {{0xa546,6},{0xc32,5}}, + {{0xfd5c,5},{0xa084,4}}, {{0x13192,6},{0x151e,4}}, {{0x4d5a,8},{0x48eb,4}}, {{0x98fe,6},{0x11b8,4}}, + {{0x142e,1},{0x1e031,4}}, {{0xbb4,2},{0x4459,4}}, {{0x10684,7},{0xb63,2}}, {{0x2d,1},{0xa7ed,4}}, + {{0x2c93e,4},{0x96b,2}}, {{0x4126,3},{0xb52,6}}, {{0x2c1f4,2},{0x734,1}}, {{0x2c728,4},{0xc601,2}}, + {{0xc6d,7},{0xe121,3}}, {{0x133c,12},{0xd0b,4}}, {{0x1aff,3},{0x4d97,2}}, {{0xfed0,4},{0x30,10}}, + {{0x7076,3},{0x99e7,7}}, {{0x278a7,3},{0x27965,2}}, {{0x261f,4},{0x158ea,5}}, {{0xbc5,3},{0x1d,1}}, + {{0x6107,3},{0xb65,2}}, {{0x27e1c,2},{0x28634,1}}, {{0x1055,3},{0x10dc,2}}, {{0xaec,2},{0x263f,3}}, + {{0x780,2},{0x1b4e4,1}}, {{0x144c,6},{0x4694,5}}, {{0xcb8,2},{0xb54,2}}, {{0xbd6,2},{0xb63,2}}, + {{0x432,32},{0x432,11}}, {{0x16ac9,5},{0x10569,3}}, {{0x1ed53,1},{0x24461,1}}, {{0xe64,5},{0xde9,1}}, + {{0x1aac,3},{0xb2c,2}}, {{0x207be,4},{0xb9d,3}}, {{0x43e3,1},{0x10fa,1}}, {{0xab46,7},{0x4245,5}}, + {{0x1f,1},{0xb70,2}}, {{0x2daa,5},{0xeb3,3}}, {{0x2098,3},{0xc34,3}}, {{0x10f7,1},{0x26f6e,3}}, + {{0x180e,2},{0xa24a,3}}, {{0x11068,7},{0xb8f,3}}, {{0x44d2,5},{0xae2,1}}, {{0x9052,5},{0x12a5,7}}, + {{0x7a6e,5},{0xb52,6}}, {{0x25111,3},{0xa7d8,2}}, {{0x2796,3},{0xb13b,3}}, {{0xac06,6},{0x49f9,6}}, + {{0x181c,3},{0x243c5,4}}, {{0x2799b,2},{0x116c,1}}, {{0x4282,4},{0x4286,10}}, {{0x737e,9},{0xb65,2}}, + {{0x1573e,5},{0xb82,2}}, {{0x8d2e,8},{0xb7c,3}}, {{0x278c9,2},{0x27a4f,2}}, {{0x177e,5},{0x1916,5}}, + {{0x9b0e,6},{0xb72,2}}, {{0x9a9,1},{0x28633,2}}, {{0x278a1,3},{0x27a01,2}}, {{0x3996,5},{0x2f5f,4}}, + {{0xbb5,1},{0x2a16,3}}, {{0xf59,3},{0x103a,3}}, {{0x73c6,9},{0x2b,2}}, {{0x10f3,1},{0x2bfc,2}}, + {{0x1b,1},{0xf63c,2}}, {{0x2789b,3},{0x27a9d,2}}, {{0x415c,4},{0xc57,3}}, {{0x10ea,3},{0x28f69,2}}, + {{0x2445e,1},{0x1b6cb,1}}, {{0x10c8,3},{0x20aa9,2}}, {{0x27c5,3},{0xdf6,3}}, {{0xf490,7},{0x1016,4}}, + {{0xbb2,2},{0xc93c,4}}, {{0x2859,5},{0xd0d,2}}, {{0xdfe,5},{0xb9d,3}}, {{0xceb,4},{0x5d16,4}}, + {{0x28,1},{0xb2c,2}}, {{0xc67,2},{0xb9b,3}}, {{0xbde,3},{0xc51,2}}, {{0xc8a,2},{0xb2c,3}}, + {{0x251d1,7},{0x251d8,2}}, {{0x272f,2},{0x35fd,3}}, {{0x2971a,4},{0xd5c,1}}, {{0x423e,1},{0x423e,1}}, + {{0x12fe,1},{0x27,1}}, {{0x178c,3},{0x1c2b0,2}}, {{0x134c,5},{0x1f,4}}, {{0x446a,4},{0x7a6a,4}}, + {{0x10184,8},{0x1018c,4}}, {{0x10ef,1},{0xf69,3}}, {{0x2337d,3},{0x1c9da,3}}, {{0xc89,2},{0xeb5,4}}, + {{0x1704,3},{0x21,1}}, {{0xeb2,1},{0x1010a,2}}, {{0x17bc,4},{0xc29,2}}, {{0xb8a,2},{0xb71,2}}, + {{0x7a6e,4},{0x497b,3}}, {{0x152de,6},{0x2638,4}}, {{0xd44,5},{0xb7c,3}}, {{0xdcb,7},{0x4881,6}}, + {{0x6ac5,1},{0xbd93,6}}, {{0xf21,3},{0x3423,9}}, {{0x15e79,6},{0xdfb,3}}, {{0xae2,1},{0xc32,5}}, + {{0xbde,3},{0x1290,3}}, {{0x14f3c,4},{0xd578,5}}, {{0xc30,2},{0xb54,3}}, {{0x28,1},{0x22abe,4}}, + {{0x20bb,5},{0x982b,3}}, {{0x23dc5,4},{0x1ef2,3}}, {{0x13b08,7},{0x2939,3}}, {{0x2924d,4},{0x10f6,1}}, + {{0x6ac3,3},{0xb0d2,4}}, {{0x12936,7},{0xae7,1}}, {{0x27b4,3},{0x23d9,3}}, {{0x10c8,3},{0x26c6,1}}, + {{0x244f5,4},{0x96f,2}}, {{0x1426a,6},{0xb996,4}}, {{0x1195,2},{0xed0,3}}, {{0xcd9,3},{0x18c82,6}}, + {{0xa246,4},{0x1961,3}}, {{0x1bde,6},{0x2b,3}}, {{0x152c4,2},{0x24fff,4}}, {{0x17ac,3},{0xbe0,1}}, + {{0x102f,14},{0xc8e,3}}, {{0x1aafc,4},{0xd57,2}}, {{0x261b5,4},{0x1a,2}}, {{0x1f,1},{0xc1c,2}}, + {{0x257a,4},{0x5ae5,4}}, {{0x27e20,2},{0x112c,1}}, {{0xbd1,2},{0xb71,2}}, {{0xe64,5},{0x2ec7,9}}, + {{0x98fe,6},{0xce8,3}}, {{0xee8,3},{0x2b,3}}, {{0x14594,7},{0xd7f,3}}, {{0x1bead,6},{0xb2e,2}}, + {{0x24681,6},{0x2459d,6}}, {{0x139e,2},{0x2b,1}}, {{0xadf,2},{0xdbf,12}}, {{0x10f3,1},{0xa111,5}}, + {{0x10fb,3},{0x1f2c5,2}}, {{0x89f5,4},{0x673a,5}}, {{0xded,12},{0xdf9,5}}, {{0x10ef,1},{0x1b12f,2}}, + {{0x23de8,4},{0x23df3,3}}, {{0x1a766,6},{0x141e,3}}, {{0x2789b,3},{0x27b0f,2}}, {{0xaba6,5},{0x1960,7}}, + {{0x6cbe,4},{0xb095,3}}, {{0x1fb1,6},{0xb68,4}}, {{0x14a76,9},{0xae7,1}}, {{0xaaf2,5},{0x1016,4}}, + {{0xd2a9,10},{0xae7,1}}, {{0x17ae,1},{0xbeb,1}}, {{0x24475,6},{0x6fac,2}}, {{0x1cbf,5},{0x8427,7}}, + {{0xcca5,7},{0x5277,4}}, {{0x27,1},{0x2a24,4}}, {{0x2789b,3},{0x279ef,2}}, {{0x17be,2},{0xaef,3}}, + {{0x16bf,3},{0x47fd,6}}, {{0x27cea,1},{0x780,1}}, {{0x5562,8},{0x10dc,2}}, {{0x3c44,9},{0xce8,3}}, + {{0x27959,2},{0x278af,1}}, {{0x20bb,3},{0xaf1,2}}, {{0x40b2,4},{0xb70,2}}, {{0x16cc,4},{0x1f,2}}, + {{0x3df6,5},{0x2c2d,3}}, {{0x1045,2},{0x13437,5}}, {{0x12fc,4},{0xd1a,2}}, {{0xfd9e,4},{0x1a90,4}}, + {{0x1259,2},{0x4460,3}}, {{0xb99,2},{0x323c,2}}, {{0x10c3a,6},{0x2356,4}}, {{0x415c,5},{0x8879,5}}, + {{0x2ea6,9},{0x4d97,4}}, {{0x26f1,4},{0x2c0a,4}}, {{0x6f55,4},{0xe39a,4}}, {{0x245a9,6},{0x245af,6}}, + {{0x5630,6},{0xc77,2}}, {{0x3996,5},{0xe44,3}}, {{0x1b4db,2},{0x28,1}}, {{0x7f96,6},{0x2642,5}}, + {{0x10fa,1},{0xf82b,3}}, {{0xae7,2},{0x5277,2}}, {{0xb52,2},{0x1af8,5}}, {{0xfdd,2},{0x1a,2}}, + {{0xba5,4},{0xd5e,7}}, {{0x186e,5},{0x1873,5}}, {{0x16b59,6},{0xc6a9,3}}, {{0x441c,3},{0x27,1}}, + {{0x278dc,1},{0x278f3,2}}, {{0xb6c,5},{0xbe8,3}}, {{0x1053,5},{0x296f,5}}, {{0xf579,5},{0x1ba5,3}}, + {{0x5f70,8},{0xce8,3}}, {{0xe75,4},{0x253a,4}}, {{0x43e3,1},{0xf8cb,4}}, {{0x1b7d3,4},{0xfef0,4}}, + {{0x679d,5},{0x7a46,4}}, {{0x202c,5},{0xae7,1}}, {{0x5d5b,5},{0xb2f,1}}, {{0xae6,3},{0xaf2,1}}, + {{0x8111,5},{0x132f,3}}, {{0x45f0,9},{0x3afc,4}}, {{0x183eb,6},{0xb55,2}}, {{0x6cff,7},{0x55f6,6}}, + {{0x1c735,7},{0xae7,1}}, {{0xd41,3},{0x1150,2}}, {{0xb63,2},{0xaf1,1}}, {{0xd78f,5},{0x2eaf,5}}, + {{0x23dda,4},{0x23dde,3}}, {{0x85de,4},{0x1f,1}}, {{0x15182,3},{0x1081,3}}, {{0x41da,3},{0x1257,3}}, + {{0x2c7ee,4},{0x15798,2}}, {{0xbe0,1},{0xc78,3}}, {{0x70ea,3},{0x20b71,4}}, {{0xaca2,3},{0x1b4b,3}}, + {{0x278ed,2},{0x1173,2}}, {{0x27c67,4},{0x924,2}}, {{0x26f7a,2},{0x10f2,1}}, {{0x20ac,7},{0x12f1,3}}, + {{0xd78,3},{0xdfa,3}}, {{0x1e827,6},{0xb65,2}}, {{0x10ef,1},{0x4351,2}}, {{0x24ee2,3},{0xd1b,2}}, + {{0x28da,1},{0x1a,2}}, {{0xae7,1},{0x4815,3}}, {{0x1b140,3},{0x27897,1}}, {{0x1aa51,4},{0xb2c,2}}, + {{0x6efa,9},{0x1d8d,4}}, {{0x794e,7},{0xbb4,4}}, {{0x24531,4},{0x244ed,2}}, {{0x24591,6},{0x1578e,6}}, + {{0x158de,4},{0xbd2,3}}, {{0x16f3b,7},{0xb85,2}}, {{0x2878d,4},{0x1b6f5,2}}, {{0x36b0,6},{0x2d68,5}}, + {{0x116e,1},{0x27a01,2}}, {{0x58f1,3},{0xc63,3}}, {{0x1552c,6},{0xb56,2}}, {{0xf52,4},{0xb55,3}}, + {{0x14780,4},{0xb54,2}}, {{0xb7d,1},{0x14d5,3}}, {{0x924,1},{0x27977,2}}, {{0x20db0,5},{0xbd4,2}}, + {{0x30,2},{0x251fe,2}}, {{0x1aaed,1},{0xd54,1}}, {{0xd87,11},{0xb78,2}}, {{0xc25,4},{0x1c911,4}}, + {{0xc13,4},{0x1bcf1,4}}, {{0x98fe,6},{0x1717,5}}, {{0x6eed,6},{0x3dc4,7}}, {{0x1051,4},{0x6855,3}}, + {{0x3c28,9},{0x1719,3}}, {{0x10d9,5},{0x1915,3}}, {{0xe88,6},{0xe72,3}}, {{0x194a,5},{0x3cc7,4}}, + {{0x9f8e,9},{0xc63,3}}, {{0x6f55,4},{0x2dc3,3}}, {{0x8aa6,6},{0x74b1,5}}, {{0xc37,3},{0xaeb,2}}, + {{0x8ae2,6},{0x50fc,6}}, {{0x17ec,14},{0xb2e,2}}, {{0xd3d2,9},{0x10dc,2}}, {{0xa98c,5},{0x2b,2}}, + {{0xb85,2},{0x3bf9,5}}, {{0x20b39,4},{0x1f,1}}, {{0x2aa4b,4},{0x2aa3f,4}}, {{0x4617,6},{0x7b65,5}}, + {{0xc67,2},{0x43a1,3}}, {{0x3fa8,9},{0xdf9,5}}, {{0xb78,2},{0xc8f,2}}, {{0x12bc,5},{0x7d8b,7}}, + {{0xbde,3},{0xaaec,2}}, {{0x3a30,7},{0x8fe2,4}}, {{0xb2e,2},{0x198f5,5}}, {{0x27b4,3},{0x235a0,4}}, + {{0x4f65,3},{0x10dc,2}}, {{0x2e6e,10},{0x107d,4}}, {{0x27895,3},{0x1171,2}}, {{0x18a7,3},{0x82b7,3}}, + {{0xbcb,3},{0x16f8,3}}, {{0x2c362,4},{0x244af,2}}, {{0x116c,5},{0x1171,3}}, {{0x28da,4},{0x159ed,5}}, + {{0xeb2,1},{0xaea,1}}, {{0x21fc3,6},{0xae7,1}}, {{0x21,1},{0xbe0,1}}, {{0x2789b,3},{0x278e1,2}}, + {{0xfdb4,8},{0xb2c,2}}, {{0xb002,5},{0xb7c,2}}, {{0x36da,6},{0x1257,3}}, {{0x9802,8},{0x79f9,4}}, + {{0xd1b,1},{0xdf0,2}}, {{0x4881,4},{0xb78,2}}, {{0x1b6ab,1},{0x27a01,2}}, {{0x10fb,3},{0xaee7,2}}, + {{0x12fe,3},{0x1a,1}}, {{0xc37,4},{0xaf2,1}}, {{0x1afa9,5},{0x1afae,4}}, {{0x10fb,3},{0xb82,2}}, + {{0x422e,3},{0xae2,2}}, {{0x44b8,6},{0xf05,7}}, {{0x13dc,8},{0x5269,5}}, {{0x6853,7},{0x2b,2}}, + {{0x1a0f,3},{0xaef,3}}, {{0x1f,2},{0xaea,1}}, {{0x446a,5},{0x15583,3}}, {{0x27911,2},{0x116d,1}}, + {{0x1abb0,6},{0x1719,3}}, {{0xaf1,1},{0xc1e,2}}, {{0xae2,1},{0xcf6,3}}, {{0xb48,2},{0x141e,3}}, + {{0xe4c0,8},{0xb63,2}}, {{0x94de,6},{0x28d4,6}}, {{0x142c,3},{0x1d672,5}}, {{0x177c,3},{0x83de,5}}, + {{0x460a,7},{0x90f7,3}}, {{0x6450,8},{0xb52,5}}, {{0x2ae87,2},{0x432,1}}, {{0x27b6,1},{0x131b3,4}}, + {{0xa0ea,7},{0xa0f1,5}}, {{0xf98,5},{0xb71,2}}, {{0xd41,4},{0x16482,5}}, {{0x40c0,4},{0x28da,1}}, + {{0x10ea,3},{0xd7f,3}}, {{0x3f9a,4},{0x12a5,7}}, {{0xcb5,5},{0x42a7,3}}, {{0xaeca,4},{0x20135,4}}, + {{0x2474d,4},{0x2ae5b,2}}, {{0x14634,5},{0x35b9,4}}, {{0x3fe0,7},{0xb50,7}}, {{0x1e,1},{0xdf0,2}}, + {{0x30ba,7},{0x1667,5}}, {{0x10fb,3},{0x428b,2}}, {{0x150cc,6},{0x1b5a,4}}, {{0x2237,3},{0xd48,2}}, + {{0x4a27,4},{0x1d,1}}, {{0xb7d,1},{0xb64,2}}, {{0x1f,1},{0x20f1a,4}}, {{0x177c,3},{0xc55,2}}, + {{0x1b6cb,1},{0x9a9,1}}, {{0x278a1,3},{0x27af7,2}}, {{0x325e,5},{0xae7,1}}, {{0x10168,4},{0xfef0,4}}, + {{0xbe7,1},{0xc1c,2}}, {{0xc30,2},{0x2b,2}}, {{0xaf1,1},{0x16ec7,5}}, {{0x16f1,3},{0x4882,3}}, + {{0x5365,8},{0x10dc,2}}, {{0xb99,4},{0x1ec2,4}}, {{0x2c5d2,4},{0x6f8a,2}}, {{0xd5c,1},{0xdc0,3}}, + {{0x1014,3},{0xae5,1}}, {{0xb6c,3},{0x32f3,4}}, {{0xf5f5,2},{0x24fc3,4}}, {{0x1f,1},{0xd45,3}}, + {{0x4a27,4},{0x1675,2}}, {{0x4de1,3},{0xef8e,6}}, {{0xbeb,3},{0x23d9,3}}, {{0x10dc,2},{0xb65,2}}, + {{0xc30,2},{0xd7f,3}}, {{0x24,1},{0x1ed53,1}}, {{0x10ea,3},{0x4288,2}}, {{0xd6b3,7},{0x10dc,2}}, + {{0x449e,6},{0xc30,2}}, {{0x32c4,3},{0xb2c,2}}, {{0x6d81,3},{0xab9c,1}}, {{0x20b6,2},{0xb78,2}}, + {{0x27e2a,2},{0x24f87,2}}, {{0xadf,2},{0x1b0a,2}}, {{0x14dc,5},{0xb64,3}}, {{0xb87c,6},{0xca7,2}}, + {{0x1930,3},{0x16f9,3}}, {{0xf99b,7},{0xb9b,3}}, {{0xf5f4,2},{0xf5f6,3}}, {{0x2769,5},{0xb79,2}}, + {{0x67a6,3},{0xae7,1}}, {{0xb44,3},{0x2b,3}}, {{0xc37,3},{0x1bdb,3}}, {{0x27897,1},{0x279d1,2}}, + {{0xb2e,2},{0xb78,2}}, {{0x141e,3},{0x132f,3}}, {{0x71da,6},{0x1fb7,5}}, {{0x10b9,3},{0xf59,3}}, + {{0x43e3,1},{0x10f1,2}}, {{0x27ce8,3},{0x24461,1}}, {{0xbbf,2},{0xd51,2}}, {{0x1aee,6},{0x63d5,6}}, + {{0x116e,1},{0x1b6b3,2}}, {{0xd54,1},{0xa7d8,2}}, {{0x1f,4},{0xd8d,2}}, {{0xf52,4},{0xa60f,3}}, + {{0x7d7a,8},{0x22e3,3}}, {{0x43f0,4},{0x107e,6}}, {{0x278dc,1},{0x1173,2}}, {{0x51ab,5},{0xbb5,1}}, + {{0x70a0,4},{0x24771,4}}, {{0x2322,6},{0xcef3,4}}, {{0x2c4a0,4},{0x1019c,2}}, {{0xcd9,3},{0x12c33,5}}, + {{0x3f7e,5},{0xef0a,6}}, {{0xdf4,5},{0xf14,3}}, {{0x2796,3},{0x6815,4}}, {{0x264c,4},{0x3611,2}}, + {{0x17fe,3},{0x3cb9,4}}, {{0x20bb,3},{0x5f90,3}}, {{0x2ce28,4},{0x1d,1}}, {{0xd41,3},{0x1c,1}}, + {{0x1055,3},{0xdf0,2}}, {{0xa22e,4},{0xbe2e,4}}, {{0xaf1,1},{0x22a3,2}}, {{0x364e,4},{0x129a8,6}}, + {{0x16a4,4},{0x315d,5}}, {{0x1c,1},{0x600f,7}}, {{0xcc7,3},{0x1dea8,5}}, {{0x10e1a,6},{0x10e20,4}}, + {{0x10dc,2},{0xb2c,2}}, {{0xbde,3},{0xae4,2}}, {{0x26c4,4},{0x15f43,5}}, {{0x2061,5},{0x2066,10}}, + {{0x278a1,3},{0x27a73,2}}, {{0xda9,5},{0x760b,7}}, {{0xc37,3},{0x2af4,7}}, {{0x39dc,5},{0xb8c,2}}, + {{0x2446c,1},{0x27e43,3}}, {{0xb2f,1},{0x1c1d1,4}}, {{0x1d6ef,5},{0xeb3,3}}, {{0x203d9,5},{0x1fc4,3}}, + {{0x5295,8},{0x529d,5}}, {{0x8b2a,7},{0xb52,5}}, {{0xae5,1},{0x5fe0,4}}, {{0xb48,2},{0x8a92,4}}, + {{0x1095,3},{0x11102,5}}, {{0xae7,2},{0x1bb1a,2}}, {{0x1d95,6},{0x1d8d,4}}, {{0x2796,3},{0xaf2,1}}, + {{0xeb9,4},{0x1060f,5}}, {{0x19b82,6},{0x2b,3}}, {{0xfbb1,3},{0x3062,4}}, {{0x8c4,4},{0xfed2,8}}, + {{0xc39,2},{0x760b,3}}, {{0xb4a,3},{0x1b40,3}}, {{0xeb2,1},{0xcb8,2}}, {{0xd7f,3},{0x11e6,6}}, + {{0xe42,12},{0xb52,5}}, {{0x177c,7},{0xc1c,2}}, {{0x286bd,2},{0x2c394,4}}, {{0x2fda,6},{0x2fe0,8}}, + {{0x732,3},{0xb31,1}}, {{0xb64,2},{0x2b,2}}, {{0x12fe,2},{0x25da,3}}, {{0x261f,5},{0xae7,1}}, + {{0xa2e2,5},{0x15583,3}}, {{0x27b4,3},{0x24ba,3}}, {{0x244ad,2},{0xa4f,2}}, {{0x1cbf,4},{0x10ea1,5}}, + {{0x82a2,8},{0x2b3e,4}}, {{0xe69,3},{0xb79,2}}, {{0x20b1f,6},{0x251cb,1}}, {{0xb6c,3},{0x2b,3}}, + {{0x27d2,6},{0x3b16,8}}, {{0x116c,8},{0x116c,8}}, {{0x1e,1},{0xb48,2}}, {{0x177c,3},{0x14713,3}}, + {{0x3655,5},{0xdf7,5}}, {{0x20d9,4},{0xb8cf,5}}, {{0x4132,5},{0x1733,9}}, {{0x1b75,7},{0xb2c,2}}, + {{0x1b97d,5},{0x5c76,4}}, {{0x139e,4},{0x32d5,4}}, {{0x2912,5},{0xb75,2}}, {{0xb99,3},{0x240b,4}}, + {{0x1c47,6},{0x4f1a,7}}, {{0xcfd,9},{0x3b6d,5}}, {{0x415c,5},{0x1bc5,8}}, {{0x15b52,2},{0x15798,2}}, + {{0xcbbe,8},{0xb78,2}}, {{0xaee7,3},{0x14bb5,2}}, {{0xbcb,3},{0x24a11,5}}, {{0xae7,2},{0xbc4,4}}, + {{0x4034,7},{0x29b5,5}}, {{0x177c,3},{0x1a10,2}}, {{0x1031,4},{0x6604,6}}, {{0x19ba6,5},{0xee7,4}}, + {{0x112c,1},{0x2ae82,3}}, {{0x18a5,5},{0x1450b,4}}, {{0x7216,7},{0x1972,3}}, {{0x2798f,2},{0x278a9,1}}, + {{0x278a1,3},{0x27ab5,2}}, {{0x4d56,4},{0xc63,3}}, {{0x1095,3},{0x28,1}}, {{0x10c8,3},{0x1704,3}}, + {{0x423c,3},{0xf829,2}}, {{0x2920,4},{0x2bff,4}}, {{0x1cec,6},{0xc77,2}}, {{0xb75,3},{0xc3d,3}}, + {{0x3dda,5},{0xb8f,2}}, {{0x2d,1},{0xaf0,2}}, {{0x154dc,4},{0x16f48,2}}, {{0xb52,2},{0xca6,3}}, + {{0x14fe,6},{0xbb1,3}}, {{0xb8f,2},{0x28373,3}}, {{0xdf0,2},{0xae0,1}}, {{0x445d,4},{0xb8f,2}}, + {{0xbe7,1},{0xc89,2}}, {{0x20b2e,6},{0x139f,3}}, {{0x27b4,3},{0x1cef,3}}, {{0x15a1,3},{0x263f,3}}, + {{0x5dba,3},{0xc63,3}}, {{0x14dc,9},{0x1498,3}}, {{0x14f3c,5},{0x3511,5}}, {{0xb4e4,4},{0xd17,3}}, + {{0x286a,2},{0xa592,7}}, {{0x5b03,6},{0x222c,6}}, {{0x1f35,6},{0x1f3b,9}}, {{0xd5c,1},{0xee2,2}}, + {{0xbe1,2},{0xb2c,4}}, {{0xa29a,5},{0xd48,2}}, {{0x145e4,5},{0xb52,2}}, {{0x10f6,1},{0xaea,2}}, + {{0xae5,1},{0x1a10,2}}, {{0x11f2,3},{0xc63,3}}, {{0xf5f5,2},{0xf8cf,2}}, {{0x245e5,6},{0x1578e,6}}, + {{0xb7d,1},{0x1e,1}}, {{0xcd9,3},{0x42a6,4}}, {{0xdd0,3},{0x28,1}}, {{0xd54,3},{0x55f6,6}}, + {{0xed8f,5},{0xb7d,1}}, {{0xc58,3},{0x60e1,7}}, {{0xc956,4},{0xb71,2}}, {{0x532,66},{0x30,32}}, + {{0x27b6,1},{0x4460,3}}, {{0xe42,5},{0xcd5,2}}, {{0x1436e,5},{0x5fe0,5}}, {{0x10fa,1},{0x1d,1}}, + {{0xaea,2},{0x1f,2}}, {{0x16e2,2},{0xb85,2}}, {{0x7f6a,5},{0x1259,2}}, {{0x27c99,2},{0x9a9,1}}, + {{0xae5,1},{0xbbf,2}}, {{0xeb6,3},{0xcb8,2}}, {{0x1ff71,5},{0x3a3b,3}}, {{0x1d59,3},{0xfdd,2}}, + {{0x9e68,3},{0xb54,4}}, {{0x6971,8},{0x11b8,4}}, {{0x2c974,4},{0xfb8b,2}}, {{0x278a1,3},{0x27aeb,2}}, + {{0xd41,3},{0x1c1d9,4}}, {{0x27989,2},{0x116c,1}}, {{0xedb,5},{0xb71,2}}, {{0x4362,6},{0x16d2,2}}, + {{0xd54,1},{0x1e6c,6}}, {{0xc30,2},{0x11ef,2}}, {{0x26e4,4},{0x4501,5}}, {{0xab9c,1},{0xb8f,2}}, + {{0xfee4,12},{0x70a8,4}}, {{0xbe7,1},{0x7eb8,5}}, {{0x6d81,3},{0x3789,3}}, {{0x2098b,2},{0xd54,1}}, + {{0xc345,8},{0x2b,3}}, {{0x124c,5},{0x7cb3,6}}, {{0x227d,5},{0x2f54,5}}, {{0xaf1,1},{0x1dec2,4}}, + {{0x244a1,2},{0x1b205,2}}, {{0x26c6,1},{0xb2f,1}}, {{0xd65,3},{0xd1a,2}}, {{0x20,3},{0x4818,7}}, + {{0x113f,5},{0x15ad8,4}}, {{0xd5ad,3},{0xae7,2}}, {{0x142e,1},{0xb2f,1}}, {{0x1040,5},{0x104a9,5}}, + {{0xb2f,1},{0x11f2,3}}, {{0x1d,2},{0xc2e,2}}, {{0x14ca8,4},{0x6ac5,1}}, {{0xd41,3},{0x1826b,5}}, + {{0xcde,3},{0x40bc,4}}, {{0x30,2},{0x7c4,64}}, {{0x101e8,5},{0x1b0a,2}}, {{0x27d39,3},{0x1b4e4,1}}, + {{0xda9,5},{0x108c5,5}}, {{0x1b72f,6},{0x70b2,4}}, {{0xa10e,6},{0x499f,6}}, {{0xb7f,3},{0x25b72,5}}, + {{0x1361,2},{0xcf0,2}}, {{0x177c,4},{0x5f03,5}}, {{0x2866a,2},{0x28e7a,2}}, {{0x19e0,7},{0x4797,5}}, + {{0x26c6,2},{0x72da,4}}, {{0x27b4,3},{0x13e4a,5}}, {{0x70d4,4},{0x10192,4}}, {{0xd11d,7},{0x2b3c,3}}, + {{0x10ef,1},{0xb71,2}}, {{0x100d,5},{0xc21,4}}, {{0x27e1,9},{0xe1a,6}}, {{0x14938,4},{0x10ed,2}}, + {{0x1b,1},{0xcd5,2}}, {{0x27897,2},{0x27897,2}}, {{0x1490e,6},{0xbbf,2}}, {{0x6f55,4},{0x28,2}}, + {{0xf9b1,5},{0xbb56,6}}, {{0x2789b,3},{0x27ad3,2}}, {{0x70d8,4},{0x1b8a5,4}}, {{0xe9f,3},{0xae7,1}}, + {{0xa7aa,5},{0xc62,3}}, {{0x1d6e7,6},{0xb2c,2}}, {{0x46f4,5},{0x106bb,5}}, {{0x167c,6},{0xd101,5}}, + {{0x18b68,6},{0xae6,3}}, {{0x10ea,3},{0x1abd9,2}}, {{0x106ca,5},{0x103b,5}}, {{0x1d55,4},{0x11c10,6}}, + {{0x6f07,6},{0x96c4,6}}, {{0x145a0,1},{0xd54,1}}, {{0x10f7,1},{0x15b3f,2}}, {{0x17b3a,5},{0x3788,3}}, + {{0x20ac4,5},{0x10dc,2}}, {{0xaa4a,6},{0x1961,6}}, {{0x1b,1},{0x2bfc,2}}, {{0x1095,3},{0x26532,3}}, + {{0x17ac,4},{0x2b,2}}, {{0x3be2,9},{0xb9d,3}}, {{0xba5,4},{0x8517,7}}, {{0xf10,3},{0xc57,3}}, + {{0x924,2},{0x27ae5,2}}, {{0xa9f8,4},{0x1675,2}}, {{0xc52,2},{0xae7,1}}, {{0x174c,11},{0x2693,4}}, + {{0x278a1,3},{0x279f5,2}}, {{0x879a,7},{0x1d,1}}, {{0xd54,1},{0xf829,2}}, {{0xd8ce,5},{0x11b8,4}}, + {{0x5949,6},{0x5ab1,4}}, {{0x924,4},{0x1b6bf,4}}, {{0xc8dd,4},{0xc57,4}}, {{0x20bb,3},{0x1bc3,3}}, + {{0x6ac5,1},{0x28447,4}}, {{0x181c,3},{0x1dff,2}}, {{0x1ba2,10},{0xb7a,5}}, {{0x278dc,1},{0x27897,2}}, + {{0xc13,4},{0x3784,5}}, {{0xbcb,6},{0xec5,5}}, {{0x1ab0e,5},{0x19ccb,4}}, {{0x17ec,5},{0x1fe3,3}}, + {{0x1fadb,2},{0xca7,3}}, {{0xdfa,3},{0x103f5,5}}, {{0xa7d1,2},{0xd54,1}}, {{0x1ed69,3},{0x1a,2}}, + {{0xbcb,3},{0x410c,4}}, {{0x16aed,5},{0xaf2,1}}, {{0xaf0,2},{0xecb8,6}}, {{0xbeb,1},{0x762d,4}}, + {{0xbd1,2},{0x25c2,3}}, {{0x2a946,3},{0x9c9,1}}, {{0x1a4de,6},{0x130f,3}}, {{0x2445e,1},{0x2b7cd,2}}, + {{0x17ee,2},{0xd54,1}}, {{0x3234,3},{0x2dc3,3}}, {{0x5999,4},{0x1372,3}}, {{0x2c980,4},{0x5c78,2}}, + {{0xaef,3},{0xe7bd,5}}, {{0x24e3f,4},{0x1a,2}}, {{0xfef0,8},{0xff00,4}}, {{0xb6c,3},{0xae9,2}}, + {{0x22cf8,1},{0x27e43,3}}, {{0xbde,3},{0x43e3,1}}, {{0xcd5,2},{0xb55,3}}, {{0x1a945,4},{0x1aa6,3}}, + {{0x251e6,2},{0x28634,1}}, {{0x20bb,3},{0x969,4}}, {{0xeec,5},{0xc78,3}}, {{0x18e1,5},{0x4430,6}}, + {{0xae7,1},{0x13f13,5}}, {{0x2b890,2},{0x70ce,2}}, {{0x4cd8,6},{0x1408,3}}, {{0x20151,6},{0xc34,2}}, + {{0x278a1,3},{0x27a25,2}}, {{0xcae2,6},{0x1fe4,5}}, {{0x122c4,6},{0x2af8,4}}, {{0x1213e,7},{0x2b,3}}, + {{0x16cc,4},{0xbb5,1}}, {{0x1ae32,2},{0x10f2,1}}, {{0x1068e,7},{0xb78,2}}, {{0x13e78,7},{0xc6a9,3}}, + {{0x2796,3},{0x1aac0,6}}, {{0x1b8e1,6},{0x70c8,4}}, {{0x1a67,7},{0x49d3,6}}, {{0x17ce,2},{0x2d,1}}, + {{0x12ec,8},{0x12f4,8}}, {{0xcbd,3},{0xaf1,1}}, {{0xbeb,1},{0x4a51,4}}, {{0x177c,4},{0x674c,3}}, + {{0x244ad,2},{0x15798,2}}, {{0x1084,3},{0x1be10,5}}, {{0x122c,10},{0xae7,1}}, {{0x2b,2},{0xb68,4}}, + {{0x20e8,4},{0x323c,2}}, {{0x1b72f,6},{0x2526d,4}}, {{0x1af61,6},{0x1dac,3}}, {{0xc67,2},{0xae2,1}}, + {{0x27e1f,3},{0x2445e,1}}, {{0x2451f,2},{0x6f66,2}}, {{0x12fc,4},{0x1198f,5}}, {{0x193b4,5},{0x68c4,4}}, + {{0x1f,1},{0xfdd,2}}, {{0x286a,2},{0x1993d,3}}, {{0x135c,5},{0xbb1,3}}, {{0xf52,5},{0x3892,4}}, + {{0x1a28a,7},{0xf8d1,2}}, {{0xab9c,1},{0x2b,1}}, {{0x2877b,6},{0xa51,2}}, {{0xb70,2},{0xde1,2}}, + {{0xaea,2},{0xbbf,2}}, {{0x1cb0,6},{0x118ca,4}}, {{0x278a1,3},{0x27aaf,2}}, {{0x187c,3},{0x2b,1}}, + {{0x6ac3,3},{0x711d,6}}, {{0x12a30,5},{0xc63,3}}, {{0x10ca,1},{0x108b,3}}, {{0x1e367,7},{0xaf2,1}}, + {{0x116d,1},{0x27ac7,2}}, {{0xb70,2},{0x1498,4}}, {{0x6a8f,5},{0x18d8,4}}, {{0xba5,8},{0xbad,11}}, + {{0x6c08,4},{0xc55,2}}, {{0x28,1},{0xb82,2}}, {{0x279cb,2},{0x116c,1}}, {{0x2445f,1},{0x24a40,2}}, + {{0x10f3,1},{0x2ee4,8}}, {{0xb52,2},{0x1614,7}}, {{0x278a1,3},{0x27959,2}}, {{0xb9c,2},{0x13af,4}}, + {{0x14bf4,4},{0xb7c,3}}, {{0xbeb,1},{0x2b,2}}, {{0x159c,4},{0x7abd,5}}, {{0xc29,2},{0x4453,4}}, + {{0xebf,3},{0xb63,3}}, {{0x52af,10},{0xb64,3}}, {{0x1b,1},{0x5396,3}}, {{0x14260,5},{0xfe0,3}}, + {{0x278a1,3},{0x27a6d,2}}, {{0x177c,3},{0x40b6,3}}, {{0x1611,3},{0x25df,4}}, {{0xcb5,3},{0x989a,4}}, + {{0xb2f,1},{0xa4c9,3}}, {{0xc25,5},{0xae5,1}}, {{0x1aaec,2},{0xbe4,1}}, {{0x1f561,5},{0x28,1}}, + {{0xb44,3},{0xc27,4}}, {{0x278d6,1},{0x278ed,2}}, {{0x3234,3},{0x36dd,3}}, {{0x14922,5},{0x28,2}}, + {{0x1adf,5},{0x197f,7}}, {{0x1aa6,3},{0x1a,1}}, {{0xf018,8},{0xb7c,3}}, {{0xeb95,5},{0x24fd,5}}, + {{0xd498,7},{0x25ee,4}}, {{0x1960,4},{0xe08,7}}, {{0x9a9,1},{0x2a93a,2}}, {{0x21,1},{0x27b6,1}}, + {{0xdab,3},{0xb6bb,3}}, {{0x10ef,1},{0x292a5,2}}, {{0x6ac3,3},{0x1421,3}}, {{0xd57,2},{0x3bc2,4}}, + {{0x6ac3,3},{0x23d9,3}}, {{0x3c60,8},{0xbed,4}}, {{0x2445f,1},{0x2aebe,3}}, {{0x10c8,3},{0x10f7,1}}, + {{0x177c,3},{0x23f03,2}}, {{0x278a1,3},{0x27a31,2}}, {{0x2b545,2},{0xf8d0,2}}, {{0x283d,3},{0xaae8,2}}, + {{0x1a553,5},{0x542c,4}}, {{0x7a6e,4},{0x257c,2}}, {{0x415e,3},{0xbb5,1}}, {{0xb8e,2},{0x2b,1}}, + {{0x1b23f,4},{0x1b237,4}}, {{0x1e18,7},{0x3211,7}}, {{0x10e38,5},{0x2be6,4}}, {{0xcd5,2},{0x1d,1}}, + {{0x8abe,5},{0xc62,3}}, {{0xf9b1,5},{0xb52,6}}, {{0x10b7,12},{0x10c3,5}}, {{0x686d,7},{0x21d2,5}}, + {{0x10ec,1},{0x11f57,7}}, {{0xbeb,1},{0x763c,3}}, {{0x3004,9},{0xb78,2}}, {{0x1858,5},{0x1b4f,3}}, + {{0x1dddd,7},{0xaf2,1}}, {{0x11054,7},{0x2249,3}}, {{0xdae,3},{0x1254,3}}, {{0x1a,2},{0x3e2a,4}}, + {{0x2793d,4},{0x27923,2}}, {{0x6e6b,8},{0xce8,3}}, {{0xbe0,1},{0x323c,2}}, {{0xa7da,3},{0x9fa0,5}}, + {{0x7a6e,4},{0xb8f,2}}, {{0xcd9,3},{0x887b,3}}, {{0x36be,5},{0xb78,2}}, {{0x1a,2},{0xaa21,4}}, + {{0x4106,4},{0xc67,5}}, {{0x10ca,1},{0x16b02,4}}, {{0x27a07,2},{0x27a07,2}}, {{0x142c,3},{0x11ef,2}}, + {{0xbb5,1},{0x58d0,4}}, {{0x17bc,4},{0xb60,2}}, {{0x6d8e,3},{0xc45e,5}}, {{0x4108,2},{0x1260,4}}, + {{0x19bca,5},{0x2af8,4}}, {{0xadf,2},{0x5d97,5}}, {{0x4429,6},{0x442f,7}}, {{0x6144,6},{0xd17,3}}, + {{0x10ea,3},{0x2848,2}}, {{0x271e,3},{0xc4d,2}}, {{0x4bb1,4},{0x1dac,3}}, {{0x17ae,1},{0xd54,1}}, + {{0xc49,3},{0x1cf22,5}}, {{0xa82e,4},{0xcb8,3}}, {{0xd322,6},{0x1308,3}}, {{0xf63,5},{0xaf1,1}}, + {{0x10b7,4},{0xd51,2}}, {{0x181c,4},{0x15706,6}}, {{0xf4b1,8},{0x2b,3}}, {{0xca3,5},{0x17e47,4}}, + {{0x41be,3},{0xae7,2}}, {{0xfef0,8},{0xff20,4}}, {{0xe64,4},{0x1dec2,4}}, {{0x27d0c,5},{0x9a9,1}}, + {{0x27b4,3},{0x23e46,4}}, {{0xf63,12},{0xb52,5}}, {{0x251f9,2},{0x734,1}}, {{0x2c932,4},{0x6f8a,2}}, + {{0x10fb,3},{0xdf2,3}}, {{0x10c12,7},{0xc78,3}}, {{0x422e,3},{0x4ab0,3}}, {{0x1ab2,5},{0xb2c,2}}, + {{0x116d,1},{0x27af7,2}}, {{0x1b,1},{0xb8a,2}}, {{0x264c,4},{0xeb3,3}}, {{0x1a646,4},{0xb2e,2}}, + {{0x249d5,8},{0x1b8a5,4}}, {{0xbde,3},{0x10f8,2}}, {{0x1e45,3},{0x28,2}}, {{0x217e0,3},{0xcce,3}}, + {{0xd1b,1},{0x74fa,3}}, {{0x924,2},{0x27acd,2}}, {{0x2796,3},{0x29873,2}}, {{0xba5,5},{0xc34,2}}, + {{0x2c8d8,4},{0x70b4,2}}, {{0x7aaa,8},{0x2b,3}}, {{0x10f0,1},{0x1b12f,2}}, {{0xb7d,1},{0x1434,3}}, + {{0x2b,2},{0x220f,5}}, {{0xbcb,3},{0xaad1,3}}, {{0x90e2,4},{0x705f,4}}, {{0x6e37,5},{0xb55,2}}, + {{0xc828,4},{0xbc3,5}}, {{0x16ac,11},{0xc8e,3}}, {{0x3948,5},{0x25ee,4}}, {{0x10f0,1},{0xd57,2}}, + {{0x40c0,4},{0xf313,7}}, {{0x41da,3},{0x11d59,7}}, {{0xaca2,3},{0xc0c3,3}}, {{0xb92e,5},{0x10dc,2}}, + {{0x152fc,7},{0xb63,2}}, {{0x1ed69,3},{0xfe5,2}}, {{0x20121,6},{0xb2c,2}}, {{0xaf1,1},{0xf05,7}}, + {{0x244b3,2},{0xfefe,2}}, {{0x10ca,2},{0xc165,5}}, {{0xbe0,1},{0x1f3a,3}}, {{0x364e,4},{0x2a16,3}}, + {{0x2810,4},{0x9eb0,6}}, {{0x10c8,3},{0xaeb,2}}, {{0x122c,4},{0x6008,4}}, {{0x5372,12},{0xae7,1}}, + {{0xbeb,1},{0x1099,3}}, {{0x13a2,2},{0x4606,3}}, {{0x423e,1},{0xdf0,2}}, {{0x43e3,1},{0x1a6fd,2}}, + {{0xb55,2},{0x2b,2}}, {{0x265b,4},{0xfe5,2}}, {{0x27b4,3},{0x1f3ee,2}}, {{0xadd,7},{0x8f81,5}}, + {{0x53e0,5},{0x11ef,2}}, {{0xaca2,4},{0x7832,4}}, {{0x14be0,5},{0xb2c,4}}, {{0x1058,4},{0x1c25,4}}, + {{0x8d16,5},{0x8d1b,7}}, {{0x1ad0,5},{0xcc74,5}}, {{0xc37,3},{0xa60f,3}}, {{0x24531,4},{0x6f78,2}}, + {{0x11bb6,5},{0x2b,3}}, {{0x780,1},{0x2862e,2}}, {{0x2789b,3},{0x27ae5,2}}, {{0x1ae32,2},{0xd54,1}}, + {{0x1308,3},{0x1e6c,6}}, {{0xaeee,5},{0xaef3,7}}, {{0x278a1,3},{0x27aa9,2}}, {{0x27e1c,2},{0x27d8b,2}}, + {{0x1c,1},{0xd90,2}}, {{0xcb5,3},{0xb74,4}}, {{0x924,2},{0x27ad3,2}}, {{0x1561,7},{0x10dc,2}}, + {{0x2b,2},{0x4de1,3}}, {{0x24753,4},{0x6f72,2}}, {{0x103a,3},{0x1a,1}}, {{0x31c4,8},{0x107e,5}}, + {{0x55d5,8},{0xbb4,4}}, {{0x14d0c,5},{0x296f,5}}, {{0xd784,5},{0xc7b,4}}, {{0x20bb,3},{0x1d5a,3}}, + {{0xc25,3},{0xae0,1}}, {{0x1abcb,4},{0x23f0b,3}}, {{0x10ca,1},{0xae9,4}}, {{0xb2f,1},{0xc1e,2}}, + {{0xb44,3},{0x21,2}}, {{0x162c,8},{0xb2e,2}}, {{0x279c5,2},{0x116c,1}}, {{0x410c,4},{0xeb2,1}}, + {{0x422e,3},{0x9133,3}}, {{0xbb5,1},{0x229de,4}}, {{0x2d,1},{0x1fb7,5}}, {{0xe77,3},{0xb2e,2}}, + {{0x14ad2,3},{0x1377,5}}, {{0xc25,4},{0x1290,12}}, {{0x28f6,2},{0xadf,2}}, {{0xaca2,3},{0x8ba9,4}}, + {{0xcc7,3},{0xc17,3}}, {{0x1221a,7},{0xc63,3}}, {{0x780,1},{0x1ed58,1}}, {{0xbde,3},{0xb49,2}}, + {{0x6f55,4},{0xb85,2}}, {{0x145b2,7},{0xebe,3}}, {{0x8abe,5},{0x11e2,4}}, {{0xae5,1},{0x9133,3}}, + {{0xae0,1},{0x17921,4}}, {{0x17bc,3},{0x285d1,2}}, {{0x70c6,4},{0x806,2}}, {{0xd0f,4},{0x10e2b,3}}, + {{0x2446a,3},{0x117c,1}}, {{0x6d8e,3},{0xde2,4}}, {{0x422e,3},{0x1a10,2}}, {{0x6f62,4},{0xc601,2}}, + {{0xcfd,4},{0x41b3,4}}, {{0x1cf1b,4},{0x2c,2}}, {{0xab9a,3},{0x1a10,2}}, {{0xeb2,1},{0xc30,2}}, + {{0x12fb2,6},{0x2b,3}}, {{0x1308,3},{0xd1b,1}}, {{0xb63,4},{0x1621,4}}, {{0x709c,4},{0x247b1,8}}, + {{0x249e1,4},{0x2adcd,4}}, {{0xb44,3},{0x10ab9,5}}, {{0xc49,3},{0x2195a,6}}, {{0x1b6b3,2},{0x1173,2}}, + {{0xafb0,4},{0xb2e,2}}, {{0xb7d,1},{0xb7c,2}}, {{0x26306,3},{0x1f2c5,2}}, {{0xae9,2},{0xb9d,3}}, + {{0x1aaed,1},{0x28da,1}}, {{0xc25,3},{0xc1e,2}}, {{0x122c,4},{0x16629,5}}, {{0x146d4,7},{0xb63,3}}, + {{0xca3,4},{0x17e58,5}}, {{0x2a24,3},{0x28,1}}, {{0xdf0,2},{0xca6,3}}, {{0xbed,2},{0x12fe,3}}, + {{0x26e2,6},{0xd0d,2}}, {{0x5ed4,8},{0x1f13,4}}, {{0x1edf9,6},{0x443e,2}}, {{0x12ef4,7},{0xc8e,3}}, + {{0x27b4,3},{0x1402,3}}, {{0x2378e,6},{0xae7,1}}, {{0x1f621,5},{0xb48,2}}, {{0x256b,5},{0x32d8,4}}, + {{0x27e16,3},{0x1b4e3,1}}, {{0xe42,5},{0x9813,5}}, {{0x2ab13,4},{0xfef0,4}}, {{0x2971a,4},{0x10ec,1}}, + {{0x1ae2f,6},{0x1ae35,3}}, {{0xd41,3},{0x16a2,3}}, {{0x2796,3},{0xcca,3}}, {{0x6735,5},{0x2202,3}}, + {{0xf2b7,5},{0xb2c,4}}, {{0xb2e,2},{0x683e,7}}, {{0x283b,4},{0x14bb5,2}}, {{0x1f1d9,5},{0x132f,3}}, + {{0x9826,9},{0x2b,3}}, {{0x2441,6},{0x1f,1}}, {{0xb79,2},{0x5203,3}}, {{0x53f4,5},{0x11e6,6}}, + {{0xbe4,1},{0x3ce4,7}}, {{0x906a,7},{0x9071,5}}, {{0x24753,4},{0x6f64,2}}, {{0xf351,9},{0xb2c,2}}, + {{0x16fc,4},{0x8d86,6}}, {{0xa246,4},{0xb52,2}}, {{0x35ec,6},{0x10e20,4}}, {{0x100d,5},{0xe499,6}}, + {{0x10ef,1},{0x18e44,5}}, {{0x4db5,8},{0xb54,4}}, {{0xe6d,2},{0x51b0,4}}, {{0xd65,3},{0x6f50,4}}, + {{0x10ea,3},{0x554f,2}}, {{0x1051,4},{0x125c2,4}}, {{0xb47,2},{0xcedb,2}}, {{0x2bea,7},{0x7859,5}}, + {{0xadd,7},{0xbd6,8}}, {{0xb64,2},{0x1d,1}}, {{0x1fda,10},{0x1fe4,5}}, {{0x159c,5},{0x16e2,2}}, + {{0x2445e,1},{0x18,1}}, {{0x14c44,6},{0xd0b,4}}, {{0xb8a,2},{0x1cef,3}}, {{0x20e8,4},{0xb2d,3}}, + {{0xcb5,3},{0x1db20,5}}, {{0x1e,1},{0xed47,4}}, {{0xeb9,5},{0x353d,5}}, {{0x1f,1},{0x21024,4}}, + {{0x1b6ab,1},{0x279bf,2}}, {{0xc37,3},{0x1081,3}}, {{0xb44,3},{0xf9d,4}}, {{0x3234,6},{0x2b,3}}, + {{0x199f6,6},{0x13e4,3}}, {{0x3234,3},{0x19f75,4}}, {{0x10ea,3},{0x14d5,3}}, {{0x2793d,4},{0x1173,2}}, + {{0x26757,5},{0xae7,1}}, {{0x924,1},{0x279f5,2}}, {{0x1286e,5},{0x16a4,4}}, {{0x4429,6},{0x10220,4}}, + {{0x593c,5},{0xb2c,4}}, {{0x4905,4},{0xc3d,3}}, {{0x15819,4},{0xfde,2}}, {{0x16fc,4},{0x15b0,3}}, + {{0x5879,9},{0x588f,4}}, {{0x10ec,1},{0x14bb2,2}}, {{0xb002,5},{0xa6cb,7}}, {{0x2c866,4},{0xfb8b,2}}, + {{0xceb,4},{0xbb4,2}}, {{0x44df,4},{0x1e,1}}, {{0x3e4a,6},{0x3e50,8}}, {{0xf57b,3},{0xb9d,3}}, + {{0x6ac3,3},{0x10f1,3}}, {{0x1b140,3},{0x116c,1}}, {{0x253e,14},{0xae7,1}}, {{0x415c,4},{0x1408,3}}, + {{0x422e,3},{0xf8d0,2}}, {{0xaea,3},{0xb52,2}}, {{0x207ef,5},{0xb8f,2}}, {{0xb64,3},{0xb85,2}}, + {{0xb65,2},{0x1621,4}}, {{0x8eba,10},{0xb2e,2}}, {{0xb6c,3},{0x1c,1}}, {{0x1e45,3},{0x28bd2,2}}, + {{0xceb,4},{0x28,2}}, {{0xbde,3},{0x1c,1}}, {{0xc91,9},{0xc9a,2}}, {{0x2789b,3},{0x278db,2}}, + {{0xaf3,4},{0xab1,2}}, {{0xe75,4},{0xeb5,4}}, {{0x14ac,12},{0x14b8,4}}, {{0xaefa,4},{0xae2,1}}, + {{0x21ab4,4},{0x21ab8,3}}, {{0x2721d,4},{0x440f,2}}, {{0x1ed49,3},{0x251cb,1}}, {{0x278a7,3},{0x279d7,2}}, + {{0xb4b,2},{0x1acd,3}}, {{0x709c,2},{0x6f66,2}}, {{0x28e8,3},{0xb4b,2}}, {{0xddc,4},{0xb6ff,4}}, + {{0x278c9,2},{0x27a55,2}}, {{0xf212,3},{0x1d,1}}, {{0x10fb,3},{0x1a1f4,2}}, {{0x3f38,10},{0x2b3e,4}}, + {{0x2796,3},{0x10ac2,3}}, {{0x2421,7},{0x89b9,4}}, {{0x1f64,7},{0x10dc,2}}, {{0x18c7,4},{0x4875,5}}, + {{0xacc8,3},{0x1e6c,6}}, {{0xbde,3},{0xbe7,1}}, {{0xbeb,1},{0xec2,2}}, {{0x422e,3},{0xc24f,4}}, + {{0x1bf6,4},{0x2b,3}}, {{0x10188,4},{0xfef4,4}}, {{0x9a36,9},{0xc34,3}}, {{0x9532,6},{0xe7b,3}}, + {{0x10ea,3},{0xcd30,4}}, {{0x14ad0,6},{0x2d44,4}}, {{0x9a9,1},{0x2a948,1}}, {{0x5c76,4},{0x12fe,2}}, + {{0xf1f,5},{0x102f9,3}}, {{0xb609,6},{0xb60f,4}}, {{0x10ef,1},{0x10f1,2}}, {{0xcd9,5},{0x14b6,2}}, + {{0x1b871,6},{0x1b877,8}}, {{0x10c8,3},{0xb7c,2}}, {{0x10c8,3},{0xf8d1,2}}, {{0x19e0,7},{0x4797,6}}, + {{0xf330,5},{0xcf0,2}}, {{0x5a5c,3},{0x2bfc,2}}, {{0xb63,2},{0x25c2,3}}, {{0x24525,4},{0x24873,2}}, + {{0xd1b,1},{0xae0,1}}, {{0xab9a,3},{0xbb4,2}}, {{0xecb3,8},{0xc63,3}}, {{0x10f0,1},{0x28b1,3}}, + {{0xb7f,3},{0xc45e,5}}, {{0x2bfd,2},{0x28da,1}}, {{0x6f07,7},{0x5bb3,6}}, {{0x2aa8,6},{0xb099,4}}, + {{0x4e2a,8},{0xaf2,1}}, {{0x1701,3},{0xb52,5}}, {{0x101e,12},{0x10dc,2}}, {{0x238b,9},{0x2b3e,4}}, + {{0x14b9a,7},{0x1704,3}}, {{0x102f9,3},{0x2af8,4}}, {{0xb7d,1},{0x2045,3}}, {{0x15ac,5},{0x1704,3}}, + {{0xb22b,7},{0xae7,1}}, {{0x415e,3},{0x2a77,7}}, {{0x4831,4},{0xb64,2}}, {{0xb7f,3},{0x4ab0,3}}, + {{0x1f531,5},{0x10b3,3}}, {{0x7b52,8},{0xc7b,4}}, {{0x23249,3},{0xf63c,2}}, {{0xe34a,5},{0xd17,3}}, + {{0x6d8e,3},{0x115c,2}}, {{0xbb2,2},{0x443e,2}}, {{0xb60,2},{0x1d,1}}, {{0xf367,5},{0xb47,3}}, + {{0x187c,3},{0xc63,3}}, {{0xc9e,3},{0x1a,2}}, {{0xf2e5,4},{0x1b507,4}}, {{0x1fbb9,6},{0x1a,2}}, + {{0x2ec8,4},{0xaec,2}}, {{0x4106,6},{0x410c,10}}, {{0xb44,3},{0x3e1a,6}}, {{0xb73,2},{0x2237,3}}, + {{0xae2,2},{0x454b,7}}, {{0x193e1,5},{0xd48,2}}, {{0x90d6,6},{0x4978,5}}, {{0x27d2,6},{0x10c4,4}}, + {{0x15266,5},{0x134e1,5}}, {{0xbeb,1},{0xf63c,2}}, {{0x17ec,4},{0x153f0,6}}, {{0x24a40,3},{0x24468,2}}, + {{0x142c,3},{0x4ab0,3}}, {{0x4606,3},{0xb7d,1}}, {{0x14bf6,5},{0xb2c,2}}, {{0xb6e,2},{0x1d,1}}, + {{0x3624,6},{0x4a2e,6}}, {{0x26c6,1},{0x1bd60,5}}, {{0x5324,5},{0x1bdb,3}}, {{0x10f7,1},{0x198f7,3}}, + {{0x2bfd,2},{0x12be,3}}, {{0x74aa,8},{0x74b2,4}}, {{0x6e87,8},{0x2b,3}}, {{0xba7,3},{0x2b,1}}, + {{0xeec,5},{0x54fd,4}}, {{0xbd4,2},{0x11ef,2}}, {{0x357c,7},{0x19ca,7}}, {{0x277e1,4},{0x15a61,2}}, + {{0x278a1,3},{0x2797d,2}}, {{0x4290,4},{0xdacc,6}}, {{0x2796,3},{0xb8f,2}}, {{0xc1ae,6},{0x673a,5}}, + {{0x279cb,2},{0x278af,1}}, {{0xaf60,2},{0x1abd7,2}}, {{0x178e,2},{0x25da,3}}, {{0x6d8e,3},{0xc1c,2}}, + {{0x2789b,3},{0x116c,2}}, {{0x9bce,9},{0x10dc,2}}, {{0x2d,1},{0xb54,2}}, {{0xc25,3},{0xcb8,2}}, + {{0x1087a,6},{0xb63,2}}, {{0xb44,3},{0x36b7,6}}, {{0xc49,3},{0x21945,4}}, {{0x2061,5},{0xfbb5,5}}, + {{0x8902,5},{0x19c9,3}}, {{0x181c,3},{0x10f0,1}}, {{0x159c8,1},{0x27d8b,2}}, {{0x14d0e,3},{0xb2e,2}}, + {{0x17fe,6},{0xc8e,3}}, {{0x9826,7},{0x1704,3}}, {{0x10190,6},{0x70c8,4}}, {{0xb31,1},{0x432,1}}, + {{0xcd9,3},{0x182b3,6}}, {{0x30db,5},{0xd0b,4}}, {{0x1c,1},{0x33dd,9}}, {{0x17241,6},{0x4ab0,3}}, + {{0x6cff,7},{0xd57,5}}, {{0x2a16,3},{0xbd4,2}}, {{0x132e6,7},{0x1393,3}}, {{0x6672,5},{0xc77,2}}, + {{0x278a1,3},{0x27a9d,2}}, {{0x244f5,4},{0x24673,2}}, {{0x6853,7},{0xb52,6}}, {{0x257a,4},{0x1e,1}}, + {{0x2c76,4},{0xb63,4}}, {{0x16fb9,6},{0xb9d,3}}, {{0xc5b,10},{0xc65,8}}, {{0x4cff,7},{0xd1b,1}}, + {{0x195fd,4},{0x19601,5}}, {{0x116e,1},{0x278e1,2}}, {{0xb44,3},{0x10c4,4}}, {{0xf8cf,2},{0x2094e,3}}, + {{0x2b6ee,2},{0x27cea,1}}, {{0x271e,3},{0xfb1,2}}, {{0x6ac3,3},{0xe3b0,5}}, {{0xa246,4},{0xc67,3}}, + {{0x159c9,4},{0x1a328,2}}, {{0xda9,4},{0x3389,5}}, {{0xbe4,1},{0xe44,3}}, {{0x3c52,9},{0xb52,5}}, + {{0xc63e,7},{0xa8f2,4}}, {{0x102f,6},{0x2745,3}}, {{0x29e87,3},{0x432,1}}, {{0x1f2c5,2},{0x1aaed,1}}, + {{0x3a27,4},{0xb2c,2}}, {{0x265b,4},{0x16835,3}}, {{0xa2d6,5},{0xc30,2}}, {{0x27d2,6},{0x9cb8,5}}, + {{0x1ce6,4},{0x1257,5}}, {{0x178c,3},{0xaf63,2}}, {{0x1d55,8},{0xb65,2}}, {{0x17bc,4},{0xae8,2}}, + {{0x10260,6},{0xb67,2}}, {{0x8956,7},{0x1357,5}}, {{0xd17,3},{0x107fb,5}}, {{0x10ef,1},{0xa7d8,2}}, + {{0x2c440,4},{0x6f96,2}}, {{0xf0e,5},{0xbaa,6}}, {{0x423e,1},{0xe6d,2}}, {{0xcd9,3},{0x263f,3}}, + {{0xb64,3},{0x7b33,7}}, {{0x70b0,6},{0x1b7eb,8}}, {{0x19078,7},{0xd0d,2}}, {{0x423e,1},{0xae2,1}}, + {{0xbe4,1},{0xb057,6}}, {{0xa7d,4},{0x157a4,2}}, {{0x27b4,3},{0x981d,6}}, {{0x1d817,5},{0xdfb,3}}, + {{0xbb5,1},{0xbb1,3}}, {{0x177c,3},{0x75e5,5}}, {{0x106a2,6},{0x1b07,4}}, {{0x6b11,5},{0x27,1}}, + {{0x2214,6},{0x54af,4}}, {{0x8716,8},{0xc34,3}}, {{0x2e44,4},{0xae6,2}}, {{0xc39,2},{0x6fe2,4}}, + {{0x274e7,5},{0x1b,1}}, {{0xb7d,1},{0x35fd,3}}, {{0x2c42e,4},{0x1b709,2}}, {{0x679d,6},{0xeb6f,5}}, + {{0x437e,7},{0x3fa1,7}}, {{0xcd3,5},{0x1081,3}}, {{0xbb2,2},{0x5aab,3}}, {{0xd6a8,8},{0xae6,3}}, + {{0x1a727,5},{0xbb5,3}}, {{0x10ca,2},{0x12f0,4}}, {{0x19b3,5},{0xbd6,8}}, {{0xcc7,3},{0x715a,3}}, + {{0x3704,7},{0xa60f,3}}, {{0x14ffa,5},{0xe1d,3}}, {{0xb4a9,7},{0x43b0,4}}, {{0xae7,1},{0xc67,3}}, + {{0xae6,3},{0xb55,2}}, {{0x2789b,3},{0x27ac7,2}}, {{0xacbc,5},{0xce8,3}}, {{0xd76,4},{0x4459,3}}, + {{0x17bc,3},{0xb55,2}}, {{0x28da,1},{0x8ba7,6}}, {{0x16fc,4},{0x1597,3}}, {{0x16bc,6},{0xedd,3}}, + {{0x154aa,6},{0x11ef,2}}, {{0x19f69,5},{0xc67,3}}, {{0xaeea,2},{0x20aa9,2}}, {{0xaae8,2},{0x10fa,1}}, + {{0x2cae,4},{0x16a6a,5}}, {{0x1972,2},{0xb55,2}}, {{0x24abf,4},{0xae2,1}}, {{0x1a,1},{0x1a8d,5}}, + {{0x4290,4},{0xc1c,2}}, {{0xe42,7},{0x12e3,9}}, {{0x10a0d,3},{0x1152,3}}, {{0x12fe,2},{0x2098,3}}, + {{0x8446,9},{0x10dc,2}}, {{0x10ef,1},{0x1e5ea,5}}, {{0xbde,3},{0xa2d9,9}}, {{0x121c,7},{0x1058,9}}, + {{0x10fb,3},{0xb72,2}}, {{0xd0f,4},{0xc25a,4}}, {{0x2589,7},{0x1c7b,7}}, {{0xb70,2},{0x11ef,2}}, + {{0x162c,8},{0x1a,1}}, {{0x10ea,3},{0xce8,3}}, {{0xc5ff,4},{0x1d,1}}, {{0x116d,1},{0x27a0d,2}}, + {{0x279c5,2},{0x278a9,1}}, {{0xba5,4},{0x14a8,4}}, {{0x209d,4},{0xc89,2}}, {{0x17ec,5},{0xb9c,2}}, + {{0x261f,4},{0xb54,3}}, {{0x80ce,6},{0xc45e,5}}, {{0x15554,6},{0x14e50,4}}, {{0x1518a,7},{0xeb4,3}}, + {{0x1b81d,6},{0x1b7c1,8}}, {{0xeab9,8},{0x2b,3}}, {{0x6b52,4},{0x1254,3}}, {{0x26f1,4},{0xa886,4}}, + {{0xab9c,1},{0x7ac9,4}}, {{0x4fbd,4},{0xff7,5}}, {{0xb6e,2},{0xc4e,2}}, {{0x6d81,3},{0xd8b0,5}}, + {{0x256b,4},{0x15c61,3}}, {{0x2864c,1},{0x251d8,2}}, {{0x6ac5,1},{0xc829,4}}, {{0x6dd7,3},{0x5b7d,3}}, + {{0xb7d,1},{0x12ff,2}}, {{0x6d8e,3},{0x5af9,6}}, {{0x278a1,3},{0x2799b,2}}, {{0x10684,7},{0xae7,1}}, + {{0xde17,7},{0x43bd,4}}, {{0xaea,1},{0xd7a,3}}, {{0x145a8,5},{0x145ad,5}}, {{0x6d26,12},{0xae7,1}}, + {{0x6ac3,3},{0x27b6,1}}, {{0x7102,7},{0x2288,4}}, {{0x11ba8,4},{0xd101,5}}, {{0x29,2},{0xc55,2}}, + {{0x10ea,3},{0x16d2,2}}, {{0x14ea6,4},{0xd0ff,2}}, {{0x274e9,3},{0x1b,1}}, {{0x19e8a,3},{0x139f,3}}, + {{0x16dc,4},{0x1eb1b,6}}, {{0x4f55,10},{0xb2e,2}}, {{0x6d81,3},{0x290fe,2}}, {{0xd76,4},{0xcb8,2}}, + {{0x6f30,4},{0x6f34,7}}, {{0x1b6dd,4},{0x2aa67,4}}, {{0x20b7c,5},{0xb73,2}}, {{0x25081,3},{0x25084,3}}, + {{0x28f6,2},{0xb8e,2}}, {{0x10e42,6},{0xbac,4}}, {{0x1904,3},{0xb54,2}}, {{0x2878d,4},{0x70ca,2}}, + {{0x3694,4},{0xa4c9,3}}, {{0x16a5d,5},{0x2195,3}}, {{0xbd4c,6},{0x2195,3}}, {{0x2612,6},{0xbb4,4}}, + {{0xc67,2},{0x11b6,5}}, {{0x10c8,3},{0xb85,2}}, {{0x16b50,5},{0xb9d,3}}, {{0x26f1,4},{0x1b4e,5}}, + {{0x924,4},{0x1173,2}}, {{0xd65,3},{0xb718,4}}, {{0xc25,3},{0xc67,3}}, {{0x35fd,3},{0xae3,2}}, + {{0x58c7,6},{0x9028,6}}, {{0x10ef,1},{0x6f4b,2}}, {{0x287ee,4},{0x1a,1}}, {{0x1fae9,5},{0xc39,2}}, + {{0x10fb,3},{0xae9,2}}, {{0xbb4,2},{0x1d,1}}, {{0xcf6,3},{0xb73,2}}, {{0xf75d,6},{0x2b,3}}, + {{0x26c6,1},{0x1f,1}}, {{0x1f3e9,4},{0x2848,2}}, {{0xbb2,2},{0x151f,3}}, {{0x4d5a,8},{0x2dc3,3}}, + {{0x1140,3},{0xc77,2}}, {{0x195e2,5},{0x95a2,4}}, {{0xba5,4},{0x4d56,4}}, {{0xbd8,2},{0xb47,2}}, + {{0x70ac,4},{0xff00,4}}, {{0x2840,2},{0xd5c,1}}, {{0x200e9,7},{0xae7,1}}, {{0x422e,3},{0x6a91,3}}, + {{0x3234,3},{0x1719,3}}, {{0x251c5,3},{0x155dd,3}}, {{0x244ad,2},{0x6f6c,2}}, {{0x185b,3},{0xb63,2}}, + {{0x139c,6},{0x2c7d,6}}, {{0xa7d3,2},{0xbe7,1}}, {{0x167c,4},{0xfdf,2}}, {{0x116d,1},{0x27aaf,2}}, + {{0xab9c,1},{0x1d,1}}, {{0x422e,3},{0x10f2,1}}, {{0x440f,2},{0xd54,1}}, {{0xa8a6,5},{0xbc1,2}}, + {{0x278c9,2},{0x27a6d,2}}, {{0x24b7,5},{0xd641,4}}, {{0x1aee,6},{0x12d5,4}}, {{0xbde,3},{0x13fd9,7}}, + {{0xbd4,2},{0xcf6,3}}, {{0x422e,3},{0x173e,4}}, {{0x2871d,4},{0x6f72,2}}, {{0x8842,5},{0x67a5,5}}, + {{0x2844,2},{0x43e3,1}}, {{0x6e5e,5},{0x2cd1,7}}, {{0x1ac25,5},{0x1ac2a,4}}, {{0x41da,3},{0x8a49,3}}, + {{0x13f36,6},{0x2af8,4}}, {{0xac8c,2},{0xb52,2}}, {{0xbd83,5},{0x666c,6}}, {{0x2340e,5},{0xca7,2}}, + {{0x13e3,4},{0x103a,3}}, {{0xba7,3},{0x1d,1}}, {{0xd78f,6},{0x5fb9,5}}, {{0x445d,4},{0xb7c,3}}, + {{0x278a1,3},{0x27995,2}}, {{0x2769,7},{0x5e80,5}}, {{0x1d59,3},{0xb7d,2}}, {{0x89da,7},{0x1257,3}}, + {{0x1040,6},{0x8111,5}}, {{0x234f,12},{0xae7,1}}, {{0x1fe11,5},{0xcc0,3}}, {{0x22f5,11},{0x1498,4}}, + {{0x2106,4},{0xf905,4}}, {{0x1ccb5,6},{0xb55,2}}, {{0x1d8a,3},{0x372a,4}}, {{0x1d1d7,5},{0xaf2,1}}, + {{0x1150,2},{0x109f,3}}, {{0x161c,6},{0x4460,3}}, {{0x2b,1},{0x1d7ca,5}}, {{0xf14,2},{0x577d,4}}, + {{0x25c5,5},{0x6675,4}}, {{0x22e6,5},{0x1fc4,7}}, {{0xcd8c,5},{0x3427,5}}, {{0x10fb,3},{0xae0d,9}}, + {{0xaea,2},{0x6683,6}}, {{0xcfd,4},{0x1700,4}}, {{0x24549,10},{0x2456b,2}}, {{0x116d,1},{0x27ab5,2}}, + {{0x27b4,3},{0xbc1,2}}, {{0xcbdf,6},{0xec5,5}}, {{0xcfd,5},{0x18d8,4}}, {{0x4290,4},{0x1cc1,4}}, + {{0x1a30,3},{0x2b,3}}, {{0xb79,2},{0x69ad,4}}, {{0x783a,6},{0x12be,3}}, {{0x432,32},{0x432,12}}, + {{0xaeee,4},{0x202c,3}}, {{0x23b17,6},{0x2b,1}}, {{0x51ad,3},{0xb78,2}}, {{0x2dfe,5},{0x3e31,3}}, + {{0x159c8,1},{0x28634,1}}, {{0x1040,6},{0xe78,3}}, {{0xf30,5},{0x2ddc,6}}, {{0x2cd94,4},{0xff26,2}}, + {{0x1b6db,4},{0xc601,2}}, {{0x1f,4},{0xb66,2}}, {{0x177c,3},{0x12ff,2}}, {{0x43a5,3},{0x1a,2}}, + {{0xab9c,1},{0xb2e,2}}, {{0xae7,1},{0x265d,3}}, {{0x10ca,1},{0x6ac5,1}}, {{0x2d,1},{0xcf6,3}}, + {{0x152d2,2},{0xbe4,1}}, {{0x3ffc,6},{0xae6,2}}, {{0x27d24,3},{0x27cc5,2}}, {{0xf52,4},{0xaec,2}}, + {{0x5d34,5},{0x2279,4}}, {{0x11ec8,5},{0xc89,2}}, {{0x2060c,5},{0xb8a,2}}, {{0x1b4e4,1},{0x1ed58,1}}, + {{0x5442,4},{0x4590,5}}, {{0x22e3,3},{0x1257,3}}, {{0x1c,1},{0x2347,3}}, {{0x10f3,1},{0xf82b,3}}, + {{0x1c25,3},{0xfe5,2}}, {{0x10c8,3},{0x5af9,3}}, {{0x4c15,5},{0xbfc4,6}}, {{0xa7da,3},{0xc30,2}}, + {{0x2793d,4},{0x278b6,2}}, {{0x27b4,3},{0x19879,3}}, {{0x4459,3},{0xe49,4}}, {{0x3234,3},{0x12263,7}}, + {{0x10ea,3},{0x29082,2}}, {{0x285b,3},{0xa4a3,7}}, {{0x1935a,5},{0x1bdc,2}}, {{0x1a0d,9},{0x2b83,5}}, + {{0x43e3,1},{0x4687,5}}, {{0x2bfc,2},{0xc67,2}}, {{0xebf,5},{0xb2c,4}}, {{0x116d,1},{0x116d,2}}, + {{0xf280,6},{0x47ad,5}}, {{0x10ca,1},{0x21,1}}, {{0x2c9f8,4},{0x157b6,2}}, {{0x1760,3},{0x16a86,4}}, + {{0x1878,1},{0x1c,1}}, {{0x5191,5},{0xdf0,2}}, {{0x9406,8},{0xb54,4}}, {{0x10ec,1},{0x26c6,1}}, + {{0x51ad,3},{0x4905,4}}, {{0xb64,3},{0xae6,2}}, {{0x2789b,3},{0x278ed,2}}, {{0x30,128},{0x30,8}}, + {{0x84b2,5},{0x51f3,4}}, {{0x8aa6,5},{0xf01,4}}, {{0xceb,3},{0x97d8,3}}, {{0x9624,5},{0x3a81,3}}, + {{0xd1b,1},{0xde9,1}}, {{0x10ea,3},{0xfb1,7}}, {{0x10dc,2},{0x227a,3}}, {{0x14eec,8},{0xae6,2}}, + {{0x2c896,4},{0x1a328,2}}, {{0xb7d,1},{0xae2,1}}, {{0x41da,3},{0xf621,8}}, {{0x10fb,4},{0x13b98,6}}, + {{0xfed0,6},{0x30,2}}, {{0x8902,5},{0x8907,4}}, {{0x14364,7},{0x2b,3}}, {{0x1015a,10},{0x10176,8}}, + {{0xcc7,4},{0xec5,5}}, {{0xb98,2},{0xc1c,2}}, {{0x1b,2},{0x1f,1}}, {{0xaf1,1},{0x1d9dc,5}}, + {{0xcd9,3},{0xcd4,3}}, {{0x278a1,3},{0x116e,2}}, {{0x14cd0,5},{0x1a360,4}}, {{0x1a435,3},{0x17476,4}}, + {{0xbde,3},{0xb4b,2}}, {{0x41da,3},{0x145a0,1}}, {{0x27b4,3},{0x27598,3}}, {{0xebf,3},{0x2629,4}}, + {{0x41f6,4},{0x1d,1}}, {{0xde9,1},{0x5259,4}}, {{0x27911,2},{0x278a9,1}}, {{0x167c,6},{0xb54,2}}, + {{0xae7,1},{0x2bfd,2}}, {{0xcc0,3},{0x103a,3}}, {{0xde9,1},{0xc9f2,3}}, {{0x41e8,6},{0xba3a,5}}, + {{0xb7d,1},{0x284e,3}}, {{0x1ad45,6},{0x3a3b,3}}, {{0xceb,3},{0x1b00,3}}, {{0x27ce8,3},{0x1ed53,1}}, + {{0xa22e,4},{0x1d,1}}, {{0x24b7,5},{0x10cbe,4}}, {{0x1b12c,4},{0x10ef,1}}, {{0x1f591,4},{0x1f595,4}}, + {{0x1843c,7},{0xd0d,2}}, {{0x2ce6,9},{0x2b,3}}, {{0x106d4,5},{0x42a7,3}}, {{0x82ba,6},{0x45a9,6}}, + {{0xf6ce,4},{0xf6d2,7}}, {{0x2324,4},{0x4569,5}}, {{0x397c,4},{0x1555,7}}, {{0xc25,4},{0xb47,2}}, + {{0x16dc,5},{0xedb5,6}}, {{0x709c,4},{0x70a8,4}}, {{0x244f5,4},{0x1019c,2}}, {{0x20b13,2},{0x28da,1}}, + {{0x17ac,4},{0x25da,3}}, {{0x24f91,2},{0x251dc,2}}, {{0xc37,3},{0x67c0,4}}, {{0xadd,3},{0x25dfa,3}}, + {{0x716e,7},{0x595e,5}}, {{0xadf,2},{0x1f10,4}}, {{0x4aa9,7},{0x3062,4}}, {{0x264c,4},{0x13852,4}}, + {{0xf63,5},{0x9eb0,6}}, {{0x15268,3},{0x5277,2}}, {{0x19b3,4},{0x148eb,4}}, {{0xbde,3},{0x10e2b,3}}, + {{0x278a1,3},{0x279fb,2}}, {{0x3926,7},{0xdfc0,4}}, {{0x10472,4},{0x10715,5}}, {{0x43e3,1},{0xb78,2}}, + {{0x4839,10},{0xb65,2}}, {{0xb5a1,4},{0xb8f,2}}, {{0x17fbc,5},{0xde4,2}}, {{0xbde,3},{0x6ac5,1}}, + {{0x6ac3,3},{0xbe0,1}}, {{0xb7d,1},{0x621d,4}}, {{0x3560,8},{0x240c,6}}, {{0x924,1},{0x279b9,2}}, + {{0x285b,3},{0x874e,4}}, {{0x10758,6},{0xae7,1}}, {{0x15a62,5},{0x2848,2}}, {{0x3dcc,8},{0xb52,6}}, + {{0x3234,3},{0x5aab,3}}, {{0xfccd,5},{0xcb8,3}}, {{0xadf,2},{0xb72,2}}, {{0xbaa2,4},{0x5af9,3}}, + {{0x9b32,5},{0x9b43,7}}, {{0x1c7b,4},{0xb2c,2}}, {{0xfb08,6},{0xb78,2}}, {{0xbeb,1},{0x28,2}}, + {{0x6d81,3},{0x17ae,1}}, {{0x26f1,4},{0x1645e,4}}, {{0x2789b,3},{0x27a79,2}}, {{0x3100,7},{0x103b,5}}, + {{0x1095,3},{0x1ea5,4}}, {{0x178c,3},{0x1869,5}}, {{0xaae6,4},{0x26d11,2}}, {{0xfef8,12},{0x1b1a3,4}}, + {{0x3ffc,6},{0xa6fc,6}}, {{0xab9c,1},{0xaf2,1}}, {{0x6d8e,3},{0x10f2,1}}, {{0x1a,2},{0x101a,3}}, + {{0x27571,4},{0x4417,2}}, {{0x15bf1,6},{0x2b,3}}, {{0x16ee,2},{0xfe5,2}}, {{0xee1e,7},{0x193e,4}}, + {{0x6d81,3},{0x24289,2}}, {{0x364e,4},{0xb63,2}}, {{0xb64,2},{0x7047,5}}, {{0x18e38,6},{0xb78,2}}, + {{0xfd1a,6},{0xd101,5}}, {{0xadc4,3},{0x1d,1}}, {{0x5b78,8},{0xe70,5}}, {{0x13fe0,7},{0x2b,3}}, + {{0x265b,4},{0x1ed0,4}}, {{0x26c4,3},{0x4284,3}}, {{0x4124,5},{0x4ea6,6}}, {{0xb65,2},{0xc67,2}}, + {{0x27a43,2},{0x116c,1}}, {{0x1051,4},{0x19908,4}}, {{0x278c9,2},{0x27a5b,2}}, {{0x3d78,9},{0xae7,1}}, + {{0x244ad,4},{0xa51,2}}, {{0x70a0,2},{0x6fac,2}}, {{0x6d81,3},{0x505c,5}}, {{0x4971,5},{0x4326,4}}, + {{0xb12e,3},{0x1402,2}}, {{0x13f1d,5},{0x15958,4}}, {{0x6cbe,5},{0x674c,3}}, {{0x26c6,1},{0x4284,3}}, + {{0x1d,1},{0x5eb0,4}}, {{0x10ef,1},{0x1c,1}}, {{0xc6cd,5},{0x7a46,4}}, {{0x1095,3},{0xb7d,2}}, + {{0x6d81,3},{0x1be11,4}}, {{0x6b52,4},{0xc67,2}}, {{0xbeb,1},{0x67b2,5}}, {{0xfc07,5},{0x1e,1}}, + {{0x20069,6},{0xaf2,1}}, {{0x6f62,6},{0x6f68,18}}, {{0x11dce,6},{0x2af8,4}}, {{0x15a5e,2},{0xd54,1}}, + {{0xdf6,3},{0x2b,2}}, {{0x14cc,4},{0xcca,3}}, {{0x2840,2},{0x17ae,1}}, {{0x1346e,7},{0xc34,3}}, + {{0x27b4,3},{0x20,2}}, {{0x2098b,2},{0x2098b,2}}, {{0x20bb,3},{0xd7c9,8}}, {{0x14792,6},{0x2be6,4}}, + {{0xa22e,7},{0x2b,3}}, {{0x1089,2},{0x455b,6}}, {{0xd8ce,6},{0x10dc,2}}, {{0x1ab2,5},{0xcc3,4}}, + {{0x1459e,3},{0x1402,2}}, {{0x6e5e,5},{0x1ac69,4}}, {{0x11cc0,5},{0x1954,4}}, {{0x1aa48,5},{0x1099,3}}, + {{0xc73,2},{0xf99,4}}, {{0x1e,1},{0x2d12,3}}, {{0xee7,4},{0x385d,5}}, {{0x27b6,9},{0x1577,4}}, + {{0x19b3,4},{0xf14,2}}, {{0x6b6c,5},{0xdf0,2}}, {{0x43e3,1},{0x14934,2}}, {{0xf52,4},{0x2f0f,7}}, + {{0xa246,4},{0xae9,2}}, {{0x20e8,5},{0xfae,10}}, {{0x181c,3},{0x4c28,4}}, {{0x2474d,4},{0x6fac,2}}, + {{0x415e,2},{0xf6a,3}}, {{0xeb2,1},{0x1a9d,3}}, {{0x122c,6},{0xae7,1}}, {{0x17ac,3},{0x233c4,4}}, + {{0x2d5c9,2},{0x1ed58,1}}, {{0xd76,7},{0x1960,8}}, {{0x10756,8},{0x10dc,2}}, {{0x2c752,4},{0x70b4,2}}, + {{0x10fb,3},{0x292a5,2}}, {{0x2322,6},{0xfb1,2}}, {{0x1c29,6},{0xe70,4}}, {{0x6b45,6},{0xbb0b,5}}, + {{0x10ef,1},{0xbcc2,3}}, {{0x4a75,5},{0xb65,7}}, {{0x2aa4b,4},{0x1b6e1,4}}, {{0x780,1},{0x117c,1}}, + {{0x2445f,1},{0x2a93a,2}}, {{0x5396,3},{0x1b0a,2}}, {{0x236d1,5},{0x28,1}}, {{0xbb5d,8},{0xae7,1}}, + {{0x762a,4},{0x14d5,3}}, {{0xb87,3},{0xb8a,8}}, {{0x94ea,8},{0x10a2,4}}, {{0x2789b,3},{0x27a8b,2}}, + {{0x1372,3},{0xdd2,4}}, {{0x10fb,3},{0xd0d,2}}, {{0x8bf6,7},{0x674c,3}}, {{0x10fa,1},{0x1b4f,3}}, + {{0x1c,1},{0xb217,4}}, {{0x1579a,6},{0x1578e,6}}, {{0x43b4,6},{0x43ba,7}}, {{0x159c,5},{0xb9f,2}}, + {{0x12fc,4},{0x90f2,5}}, {{0xad62,8},{0x90f7,3}}, {{0x962e,8},{0x11b8,4}}, {{0x175eb,6},{0x1dac,3}}, + {{0x6eef,4},{0x3dc4,7}}, {{0xb6c,3},{0x16f33,4}}, {{0xd742,6},{0x1a,1}}, {{0xab6a,7},{0x1bdb,3}}, + {{0x2c71c,4},{0x15798,2}}, {{0xec50,5},{0x2b,1}}, {{0xf535,5},{0xb8f,2}}, {{0x16bbc,7},{0x140a,2}}, + {{0x41da,3},{0x10f6,1}}, {{0x14a18,4},{0x2b,2}}, {{0x19f47,2},{0x10f6,1}}, {{0xdcb,7},{0x76fd,5}}, + {{0x2d,1},{0xcab,3}}, {{0xb2ba,6},{0xb2c0,5}}, {{0x423c,5},{0x1d57,3}}, {{0x59be,8},{0x2585,4}}, + {{0xa252,5},{0x2b,3}}, {{0xad32,4},{0x28,1}}, {{0x152c4,2},{0xa7d3,2}}, {{0x2844,2},{0x1878,1}}, + {{0xb2f,1},{0x2ada9,4}}, {{0xcd9,5},{0x1e152,3}}, {{0xab9c,1},{0xe6d,2}}, {{0x6ac5,2},{0xb64,2}}, + {{0x3404,5},{0x3409,5}}, {{0x1ed58,1},{0x24461,1}}, {{0x2160,5},{0x5d05,8}}, {{0x1fda9,5},{0xc17,3}}, + {{0x2c6bc,4},{0xfb8b,2}}, {{0x1a634,6},{0xb2c,3}}, {{0x151c,4},{0xc1c,2}}, {{0x1a32,2},{0xeb2,1}}, + {{0x253e,7},{0xfb1,4}}, {{0x2c722,4},{0x1dec4,2}}, {{0xbc18,6},{0x2b,3}}, {{0x106a2,5},{0xc8a3,3}}, + {{0xa7f4,5},{0xe70,4}}, {{0x278a7,3},{0x279ad,2}}, {{0x1cbf,4},{0x72ad,5}}, {{0x10f2,1},{0xae2,1}}, + {{0xa246,4},{0x2ddc,6}}, {{0x29e80,2},{0x29e80,2}}, {{0x116e,1},{0x279d1,2}}, {{0xadd,4},{0x1869,5}}, + {{0x139e,2},{0x3f56,4}}, {{0x2b,2},{0xfe5,2}}, {{0xc37,3},{0x60fc,6}}, {{0x181c,3},{0x257c,2}}, + {{0x153c,6},{0x2329,5}}, {{0x10c8,3},{0x1b695,2}}, {{0x278a1,3},{0x27a79,2}}, {{0xfe59,6},{0xeedf,5}}, + {{0x6e10,4},{0x7fda,4}}, {{0xeee4,8},{0x12ff,3}}, {{0x10602,6},{0x10608,4}}, {{0x1f881,5},{0xb2c,2}}, + {{0x272f,3},{0xb2c,4}}, {{0xb79,2},{0x1e,1}}, {{0x27a49,2},{0x116c,1}}, {{0x17ac,4},{0x1cef,3}}, + {{0xccd,4},{0x2b,1}}, {{0x2c78e,4},{0x6f64,2}}, {{0x1089,2},{0x1d,1}}, {{0x1a81d,2},{0x1fce5,2}}, + {{0xaf1,1},{0x67b2,5}}, {{0x14dc,5},{0x9183,7}}, {{0x6c3c,5},{0xf594,4}}, {{0xb1ff,6},{0xd0fe,3}}, + {{0x423e,1},{0x12f0,4}}, {{0x14bae,4},{0x1492f,2}}, {{0x10fa,1},{0xd54,1}}, {{0x7a3e,6},{0xaf2,1}}, + {{0xb52,2},{0xb743,3}}, {{0x1c8f,3},{0x1d,1}}, {{0xc37,3},{0x28,3}}, {{0x1eae,8},{0x32ba,6}}, + {{0x323c,2},{0x1a,2}}, {{0x2af21,2},{0x2af21,2}}, {{0x30,2},{0x2b325,2}}, {{0x9c8e,8},{0x3afc,4}}, + {{0xcc7,6},{0xb65,2}}, {{0x2c8a2,4},{0x1b23d,2}}, {{0x2c57e,4},{0x6f72,2}}, {{0x4415,2},{0x10ec,1}}, + {{0x1e1a7,6},{0xb78,2}}, {{0x70dc,4},{0x2456b,2}}, {{0xf5b2,5},{0xae7,1}}, {{0x2445f,1},{0x28e8e,2}}, + {{0xb2c,2},{0x4f65,3}}, {{0xaf2a,5},{0x89f7,5}}, {{0x202c,4},{0x5d64,4}}, {{0x181c,3},{0xb73,2}}, + {{0x1c78d,5},{0x4031,3}}, {{0xbe4,1},{0x2b76,3}}, {{0x14c78,3},{0xb7a,5}}, {{0x6d81,3},{0xc63,3}}, + {{0xf868,4},{0xf86c,4}}, {{0xbb5,2},{0xaf1,1}}, {{0x278a7,3},{0x2795f,2}}, {{0x2674b,4},{0x10ef,1}}, + {{0x6e7a,6},{0x12ff,2}}, {{0x26c6,1},{0x10f8,2}}, {{0x113d8,9},{0xae7,1}}, {{0xb52,2},{0x10b3,4}}, + {{0x2796,3},{0x4859,7}}, {{0x13cf2,5},{0x13fa9,2}}, {{0x6cf2,8},{0x11b8,4}}, {{0xc49,3},{0x20b4d,4}}, + {{0xf77e,5},{0x28,1}}, {{0x27b4,3},{0xb71,2}}, {{0x181c,3},{0x1aaed,1}}, {{0x27905,2},{0x116d,1}}, + {{0x278a7,3},{0x27947,2}}, {{0x33b2,3},{0x1ed0,4}}, {{0x177c,4},{0x19a8,7}}, {{0x25200,2},{0x25202,2}}, + {{0x41ef,2},{0xaf2,1}}, {{0xb6e,2},{0xaea,1}}, {{0xcd5,2},{0xb85,2}}, {{0xc37,3},{0x1254,3}}, + {{0x5a74,6},{0xbc4,4}}, {{0x264c,4},{0x51b0,4}}, {{0x1e45,3},{0xde9,1}}, {{0x3bfe,9},{0xb7c,3}}, + {{0xccd,3},{0xbb5,1}}, {{0x13db0,7},{0x10dc,2}}, {{0xeb3,4},{0x1081,3}}, {{0xbeb,1},{0x23d9,3}}, + {{0x972a,7},{0xff7,5}}, {{0xaea,2},{0xb71,2}}, {{0x12512,7},{0xfe5,2}}, {{0x357c,7},{0x8ff9,5}}, + {{0x24475,6},{0x6f78,2}}, {{0x251ea,2},{0x2446c,1}}, {{0x100f,3},{0xb77,3}}, {{0x2882b,6},{0xaf1,1}}, + {{0x24f85,4},{0x24f89,2}}, {{0x27cea,1},{0x27cc5,2}}, {{0x6735,4},{0xec2,2}}, {{0x1760,4},{0x4a84,3}}, + {{0x278dc,1},{0x279d1,2}}, {{0xaaec,2},{0x2844,2}}, {{0xd5c,1},{0x127a9,5}}, {{0x10ec,1},{0xba7,3}}, + {{0x16cc,4},{0x1082,2}}, {{0x2ad8f,4},{0x96b,2}}, {{0xe49,4},{0x21a0,3}}, {{0x20,3},{0xd14,4}}, + {{0x12fe,1},{0xae7,1}}, {{0x98c2,6},{0x1651,4}}, {{0xb9d,3},{0x2b,2}}, {{0xc13,4},{0x45cd,5}}, + {{0x2b26,10},{0x2b3e,4}}, {{0xae0,1},{0x1934,4}}, {{0xc4c6,6},{0xc34,2}}, {{0xa7d,4},{0x1dec4,2}}, + {{0x27983,2},{0x116c,1}}, {{0x2469f,6},{0x246c3,6}}, {{0xa9f6,4},{0xf21,3}}, {{0x116d,1},{0x27a13,2}}, + {{0x1dbe,5},{0xb51d,5}}, {{0x24e57,4},{0xfdf,2}}, {{0x10f6,1},{0xc78,3}}, {{0x2868,4},{0x198f5,5}}, + {{0x20139,5},{0x16a2,3}}, {{0x2789b,3},{0x27b03,2}}, {{0x3f9a,4},{0x760b,3}}, {{0x1e20f,6},{0x12ff,2}}, + {{0x17bc,4},{0x1644,5}}, {{0xd1b,1},{0x2b2b3,4}}, {{0x5956,5},{0x125c2,4}}, {{0x1a56e,6},{0xbb1,3}}, + {{0x530a,5},{0xb55,2}}, {{0x10fb,3},{0xa45d,4}}, {{0x178c,3},{0xf8d1,2}}, {{0x24531,4},{0x1cf1d,2}}, + {{0x27905,2},{0x27897,1}}, {{0xb6c,9},{0xb75,10}}, {{0x1aff,3},{0x3e16,3}}, {{0xb63,4},{0xae6,3}}, + {{0xf945,3},{0x5ad4,6}}, {{0x438e,3},{0x2b,3}}, {{0x2c602,4},{0x1dec4,2}}, {{0xbaa2,4},{0x84f5,5}}, + {{0x7082,3},{0x7031,9}}, {{0xedb,4},{0xcb7,2}}, {{0x3712,8},{0xe70,5}}, {{0x278d6,1},{0x279fb,2}}, + {{0xd54,1},{0xb99,2}}, {{0x30c8,7},{0xc34,3}}, {{0x6b6e,4},{0xdd3,3}}, {{0x6d81,3},{0x19258,4}}, + {{0x732,4},{0x1ed53,1}}, {{0x18c37,7},{0x10dc,2}}, {{0xb48,2},{0x9ff5,4}}, {{0x1c29,6},{0x81e8,6}}, + {{0x1d,2},{0xb2f,1}}, {{0x782e,7},{0x7140,4}}, {{0xa7aa,10},{0xb55,2}}, {{0x278a1,3},{0x27a19,2}}, + {{0x2a,2},{0x13394,5}}, {{0x15092,4},{0x861c,4}}, {{0x4194,6},{0xae7,1}}, {{0x278a1,3},{0x279b9,2}}, + {{0x3218,5},{0x5391,8}}, {{0xdfe,9},{0x2d43,5}}, {{0x27b6,1},{0x2be70,2}}, {{0xcb8,3},{0x2b,1}}, + {{0x1a,1},{0xfe1,4}}, {{0xf6d0,2},{0x10ef,1}}, {{0x1459e,3},{0xb8f,2}}, {{0xaea,2},{0xb54,2}}, + {{0xc25e,5},{0x1d25,3}}, {{0x1e9ff,4},{0xb55,3}}, {{0x285b,3},{0xa497,7}}, {{0x10006,6},{0x7558,4}}, + {{0xbd6,2},{0xb9f,2}}, {{0xbb2,2},{0x2b,1}}, {{0x2474d,4},{0x1b6f5,2}}, {{0x180c,4},{0xa24a,3}}, + {{0x941e,9},{0xb7c,3}}, {{0x415e,3},{0x8037,6}}, {{0x6fc2,12},{0x6fc2,12}}, {{0x10f7,1},{0x5cd6,2}}, + {{0x17ee,5},{0x63c8,6}}, {{0x2d,1},{0x11f2,3}}, {{0x6d8e,3},{0xc1e,2}}, {{0x27d2,6},{0x10e1,9}}, + {{0x1459e,3},{0xb70,2}}, {{0x3f7e,8},{0x11e6,6}}, {{0x1b13e,4},{0x27897,2}}, {{0xcd2,6},{0xc34,3}}, + {{0x24432,4},{0x10f2,1}}, {{0x17fc,5},{0x1dcf,3}}, {{0xf0e,5},{0x4341,5}}, {{0x23007,2},{0xab9c,1}}, + {{0x28,2},{0xc67,2}}, {{0x1abcb,4},{0x28da,1}}, {{0x10fb,3},{0x4460,3}}, {{0xae2,2},{0xb73,2}}, + {{0x1e45,3},{0xcb8,2}}, {{0x43db,8},{0x43e3,5}}, {{0x1dec2,4},{0xaea,1}}, {{0x5bc6,7},{0x1037,6}}, + {{0xb6f0,6},{0xb6f6,5}}, {{0x19b70,5},{0x4a2a,4}}, {{0xacba,5},{0x345e,6}}, {{0x3e27,7},{0x1045,3}}, + {{0xd6d4,6},{0xb65,2}}, {{0x915a,8},{0x12b1,4}}, {{0x41dc,3},{0x1b58b,4}}, {{0xbe4,1},{0x440f,2}}, + {{0xe6d,2},{0x1614,3}}, {{0xbb5,1},{0xf38f,4}}, {{0xb99,2},{0x11ef,2}}, {{0x27b4,3},{0xf8cf,2}}, + {{0xaca2,3},{0x28cf,3}}, {{0x6d81,5},{0x1a7fb,4}}, {{0x1a49,8},{0x1667,5}}, {{0xf78,4},{0xfe5,2}}, + {{0x150ae,6},{0x2af8,4}}, {{0x27b6,1},{0x700f,3}}, {{0xbde,3},{0xbed,2}}, {{0x27911,2},{0x116c,1}}, + {{0x56b2,5},{0x1300,6}}, {{0xccd,4},{0xfe5,2}}, {{0xbb5d,8},{0x2b,3}}, {{0x6ac3,3},{0xc77,2}}, + {{0x41f8,2},{0x2045,3}}, {{0x6d81,3},{0x1307,3}}, {{0x422e,3},{0x2962c,2}}, {{0xae2,1},{0xde9,1}}, + {{0x1b140,3},{0x278af,1}}, {{0x6e37,5},{0x7a5e,4}}, {{0x663e,8},{0x11b8,4}}, {{0x27cea,1},{0x24468,2}}, + {{0x10ca,2},{0x2160a,3}}, {{0xbeb,1},{0x16322,6}}, {{0x24f90,2},{0x9c9,1}}, {{0xe75,6},{0xb2e,2}}, + {{0x2d184,2},{0x2446c,1}}, {{0x261f,5},{0x72da,4}}, {{0x70d0,4},{0x1019a,4}}, {{0xf681,5},{0xeb2,1}}, + {{0x679d,6},{0x2be6,4}}, {{0x11c4,6},{0xb2e,2}}, {{0x6e5e,5},{0x1023,7}}, {{0x251fe,2},{0x251f9,2}}, + {{0x319a,5},{0xcd86,6}}, {{0x318c,7},{0xd1a,7}}, {{0xceb,3},{0x2279,4}}, {{0x17bc,3},{0x14ee5,7}}, + {{0xebf,3},{0x16f8,3}}, {{0x9106,7},{0x1c25,4}}, {{0x304a,11},{0x2b,3}}, {{0x1aaee,3},{0x25060,3}}, + {{0x2340,8},{0x1e6c,6}}, {{0x119f0,7},{0x1704,3}}, {{0xaf2a,5},{0x2b,2}}, {{0x278a1,3},{0x279e9,2}}, + {{0x134c,5},{0xb56b,4}}, {{0x3392,6},{0x11b8,4}}, {{0xc038,8},{0xae7,1}}, {{0xc8bc,6},{0x1ed0,4}}, + {{0x4d74,8},{0xdf0,2}}, {{0x14eba,8},{0xb65,2}}, {{0x10472,4},{0x2b,1}}, {{0x139e,2},{0x103a,3}}, + {{0x56a5,7},{0x7fda,4}}, {{0x2c5b4,4},{0x6f78,2}}, {{0xbbf,2},{0xc1c,2}}, {{0x1ed3,3},{0x31f8,4}}, + {{0x4362,4},{0x140a,2}}, {{0x2c76,4},{0x5eb6,4}}, {{0x3694,4},{0x18401,5}}, {{0x40b6,3},{0x3a3b,3}}, + {{0x35b4,5},{0x24e9,5}}, {{0x414e,6},{0x7eb8,6}}, {{0x51df,7},{0xb52,6}}, {{0x10ec,1},{0x17ae,1}}, + {{0x202c,4},{0x2a9f,8}}, {{0x129b8,5},{0x3f48,5}}, {{0xf228,5},{0xf238,6}}, {{0x2c548,4},{0x6f8a,2}}, + {{0x27989,2},{0x278af,1}}, {{0xaca2,3},{0x297b8,2}}, {{0x2789b,3},{0x278d5,2}}, {{0x12fe,2},{0x2b,1}}, + {{0x24495,2},{0x286b7,4}}, {{0x37ac,9},{0x5ae5,4}}, {{0xb026,4},{0x30,18}}, {{0x20ae9,3},{0x1f2c4,2}}, + {{0xfee4,4},{0xff00,4}}, {{0x1c82d,6},{0x10dc,2}}, {{0x8a49,2},{0xb47,2}}, {{0x2796,3},{0xc39,2}}, + {{0xff0c,8},{0x70be,8}}, {{0x1f,1},{0xb52,2}}, {{0xcd4,4},{0xb2c,2}}, {{0x2076,5},{0xb2c,2}}, + {{0x3162,7},{0xce8,3}}, {{0xc751,8},{0x132f,3}}, {{0x117c,8},{0x117c,8}}, {{0x2843a,2},{0x1ed53,1}}, + {{0x3d6a,7},{0xb47,2}}, {{0x286bb,4},{0x6fac,2}}, {{0xcd76,7},{0xd7f,3}}, {{0x152a8,3},{0xb595,6}}, + {{0x278a1,3},{0x27a1f,2}}, {{0x130c,7},{0x1d,1}}, {{0xdcac,7},{0xc7b,4}}, {{0x10f3,1},{0xb2e,2}}, + {{0x1d5dd,6},{0x1a,2}}, {{0x3234,3},{0xca42,6}}, {{0xcf0,2},{0x1a,1}}, {{0xbb1,3},{0xd0d,2}}, + {{0xb7c,2},{0x621d,4}}, {{0xf537,3},{0x4fb5,6}}, {{0x15036,4},{0xb82,2}}, {{0xb2e,2},{0xa592,7}}, + {{0x177c,3},{0xa111,5}}, {{0x4f65,3},{0x1d,1}}, {{0x7e0a,5},{0x67b2,5}}, {{0x924,1},{0x27995,2}}, + {{0x19,1},{0x18,1}}, {{0x219c,4},{0x27,1}}, {{0x41da,3},{0x2742,3}}, {{0x3640,4},{0xbd8,2}}, + {{0xca5,2},{0x1cc1,4}}, {{0x20021,6},{0xdac,2}}, {{0x41f8,2},{0xc30,2}}, {{0x10ea,3},{0x1b4f,3}}, + {{0x181c,3},{0x4037,4}}, {{0x129b8,5},{0x2d,1}}, {{0xc25,4},{0xcde,3}}, {{0x3ed6,9},{0x1357,5}}, + {{0x924,2},{0x27a0d,2}}, {{0x1c,1},{0x13177,7}}, {{0x40f8,5},{0x4590,5}}, {{0x4bba,8},{0x79f9,4}}, + {{0xcfd,5},{0xe5e3,6}}, {{0x1a0f,3},{0xb889,6}}, {{0x2790b,2},{0x116c,1}}, {{0x522d,10},{0x1408,3}}, + {{0x709a,4},{0x159cb,2}}, {{0xbb5,1},{0x554f,2}}, {{0x1c,1},{0x11f2,3}}, {{0x1906,4},{0x10dc,2}}, + {{0xbe4,3},{0xbe7,10}}, {{0x1459e,3},{0x74fa,3}}, {{0x57d0,7},{0x57d7,6}}, {{0xb6c,3},{0x25aca,5}}, + {{0xbde,3},{0xc89,2}}, {{0xb7d,2},{0xc7b,4}}, {{0xb47,2},{0xe4c,7}}, {{0x4189,3},{0xb65,2}}, + {{0xaf1,1},{0x174e,3}}, {{0x2043,5},{0x315d,4}}, {{0xcd9,4},{0x628e,7}}, {{0xb54,3},{0xeb3,3}}, + {{0x2a94b,3},{0x2445f,1}}, {{0xf75d,4},{0x151f,3}}, {{0x131b2,4},{0x2b,3}}, {{0x2679,12},{0x2b,3}}, + {{0xa8a6,6},{0xdc0,6}}, {{0x972a,5},{0xcc0,3}}, {{0xb82,2},{0xbbf,2}}, {{0x15586,5},{0xaea,2}}, + {{0x415c,4},{0x9ff5,4}}, {{0x3a22,4},{0x1b81,3}}, {{0x178c,3},{0xec2,2}}, {{0x19981,7},{0xbd6,2}}, + {{0x6f62,4},{0x2ae5b,2}}, {{0x7d86,6},{0xaec,2}}, {{0x1f211,5},{0x2b,3}}, {{0x10ef,1},{0x6ac5,1}}, + {{0xe64,4},{0xc559,7}}, {{0x1195,4},{0x1719,3}}, {{0x5ca5,8},{0x1257,5}}, {{0xf09c,6},{0x14a7,5}}, + {{0x2789b,3},{0x27a5b,2}}, {{0xdd5,3},{0xc63,3}}, {{0xf1d0,7},{0xb54,4}}, {{0x19cd8,7},{0xc67,2}}, + {{0xcab,3},{0xe72,3}}, {{0x2ae0,5},{0x4831,8}}, {{0x89ca,3},{0x16ae,2}}, {{0xc956,4},{0xdf2,3}}, + {{0x48a4,3},{0xdf9,5}}, {{0x10ea,3},{0xcbd,3}}, {{0x3694,4},{0xa2ba,4}}, {{0x3f62,5},{0x6928,8}}, + {{0xfef8,12},{0x70b2,8}}, {{0x5a1c,3},{0xc57,3}}, {{0x10f3,2},{0x4284,2}}, {{0x24462,1},{0x27d04,2}}, + {{0x251d8,2},{0x9a9,2}}, {{0x969,32},{0x969,32}}, {{0x1e,1},{0x766c,6}}, {{0xc37,3},{0x18fc9,4}}, + {{0x1494d,5},{0x16ae,2}}, {{0xaca2,3},{0x23bf3,4}}, {{0x5915,6},{0x591b,7}}, {{0x2799b,2},{0x278af,1}}, + {{0x181c,3},{0x2500e,2}}, {{0x4f6f,5},{0x21d2,5}}, {{0xae0,2},{0xaf1,1}}, {{0x50ce,8},{0x50d6,5}}, + {{0x1ae2,2},{0xc30,2}}, {{0xd54,1},{0x1cee,4}}, {{0x24461,1},{0x28695,2}}, {{0x1b8e7,4},{0x253a3,4}}, + {{0x139e6,5},{0x1088,2}}, {{0x10c8,4},{0x111d4,6}}, {{0x1018c,4},{0x70a8,4}}, {{0x1a4b1,6},{0xf60,3}}, + {{0x2ae79,4},{0x2ae7d,4}}, {{0x494a,6},{0x1525,7}}, {{0xfef4,8},{0xfef0,4}}, {{0xe9f5,4},{0x1489,3}}, + {{0x1095,3},{0x21dc0,4}}, {{0x14bae,4},{0xfcaf,2}}, {{0x1a293,4},{0x2844,2}}, {{0xf92d,6},{0xb52,5}}, + {{0x12882,7},{0x132f,3}}, {{0xe3b0,5},{0xb54,3}}, {{0x1c,1},{0xa04b,3}}, {{0xb71,2},{0x21,1}}, + {{0x134c,5},{0x106a,9}}, {{0x24a19,5},{0x109f,3}}, {{0x2c398,4},{0x244af,2}}, {{0x1f8a9,6},{0xb85,2}}, + {{0x15ae3,2},{0x10ef,1}}, {{0x532,66},{0x30,28}}, {{0x27959,2},{0x116d,1}}, {{0xceb,3},{0x19533,4}}, + {{0xc675,5},{0xb511,6}}, {{0x278c9,2},{0x27a73,2}}, {{0x20a0,3},{0x1d,1}}, {{0xb6e,2},{0xd1b,1}}, + {{0x29f18,3},{0x1173,2}}, {{0x5288,5},{0x55f6,6}}, {{0x2bdc,7},{0x2be3,7}}, {{0x278a1,3},{0x27a13,2}}, + {{0xfdd,2},{0x4d97,2}}, {{0x232e1,5},{0xc34,2}}, {{0x69f3,7},{0xb52,6}}, {{0xc13,5},{0xb63,2}}, + {{0xaf1,1},{0xbb1,3}}, {{0x261f,4},{0xbbf,2}}, {{0x271e,3},{0xd0d,2}}, {{0xf870,5},{0xd1b,1}}, + {{0x3544,10},{0x1498,3}}, {{0x6f74,4},{0xfefe,2}}, {{0x2526d,4},{0x709c,4}}, {{0x422e,3},{0xb78,2}}, + {{0x44b8,5},{0xae7,1}}, {{0x1b7bb,6},{0x70a8,4}}, {{0xb68,4},{0x1306c,4}}, {{0x177c,4},{0x1393,3}}, + {{0x174ef,8},{0xae7,1}}, {{0x423c,3},{0x1425b,3}}, {{0x5cd9,8},{0x11b8,4}}, {{0x10ca,2},{0xc7ae,6}}, + {{0x40c0,4},{0x1a,2}}, {{0x924,2},{0x27ac7,2}}, {{0x6b52,4},{0xadf,2}}, {{0xbeb,1},{0x1934,4}}, + {{0x4a84,6},{0xb7c,3}}, {{0xf485,5},{0x8472,4}}, {{0x6a0d,7},{0xb52,5}}, {{0x278d6,1},{0x1b140,2}}, + {{0xade9,6},{0xee0,3}}, {{0x27b4,3},{0x19cb,4}}, {{0x2c93e,4},{0x70da,2}}, {{0xbc7b,8},{0x2b,3}}, + {{0x20bb,3},{0xae9,2}}, {{0x181c,3},{0x142e,1}}, {{0x271e,3},{0x10f1,2}}, {{0x1072e,8},{0xb48,2}}, + {{0x9e9,4},{0x30,12}}, {{0xc65f,7},{0x2288,4}}, {{0x5b51,8},{0xc8e,3}}, {{0x423c,3},{0x89ca,3}}, + {{0x1b,1},{0xb63,3}}, {{0xcbf,4},{0x10dc,2}}, {{0xae7,2},{0x1f3a,3}}, {{0xadf,2},{0x2c3a,4}}, + {{0xc13,4},{0x25da,3}}, {{0xc2e,2},{0xc30,4}}, {{0x1b57,8},{0x253a,4}}, {{0xf76b,4},{0x3203,4}}, + {{0xa9c6,5},{0xcc0,3}}, {{0x10c8,4},{0x103b,5}}, {{0xae6,2},{0x207b9,5}}, {{0xbe0,1},{0x1b497,4}}, + {{0x1321e,6},{0xb55,3}}, {{0xa7aa,4},{0xacec,2}}, {{0xbe8,3},{0xbb5,1}}, {{0x136c,6},{0x2c38,6}}, + {{0x219c,4},{0x4646,5}}, {{0xfb1,2},{0x1099,3}}, {{0x27b4,3},{0x14930,2}}, {{0x26f89,5},{0xae7,1}}, + {{0x1269e,4},{0x2b,2}}, {{0x3234,3},{0x700f,3}}, {{0x1cbf,5},{0x2ba9,9}}, {{0x109e,4},{0x10a2,4}}, + {{0x1e,1},{0xf8e1,4}}, {{0x27b4,3},{0x14bb4,2}}, {{0x36be,6},{0x1701,3}}, {{0x41da,3},{0x2358b,4}}, + {{0x177c,3},{0x35fd,3}}, {{0xee4,3},{0x1498,4}}, {{0x7162,4},{0xb095,3}}, {{0x2789b,3},{0x27aeb,2}}, + {{0xbcb,3},{0xc1e,2}}, {{0x5401,5},{0x665f,6}}, {{0x30,128},{0x30,20}}, {{0x178c,3},{0x15b40,2}}, + {{0x27b4,3},{0xf38f,3}}, {{0xb7f,3},{0x1f13,4}}, {{0x5102,5},{0xca7,3}}, {{0x27c3,4},{0x17a70,4}}, + {{0x24289,2},{0x1aaed,1}}, {{0x423e,1},{0x10ec,1}}, {{0xd12,3},{0xd91,2}}, {{0xafd4,4},{0x9fa0,5}}, + {{0xd54,1},{0x3e26,2}}, {{0xae9,2},{0xb76,3}}, {{0x19a4,6},{0xb78,2}}, {{0xec50,5},{0x2d5d,4}}, + {{0xb65,2},{0x37f6,3}}, {{0x26c4,3},{0x152cf,3}}, {{0x6b24,3},{0x1be3,2}}, {{0x41da,3},{0x43e3,1}}, + {{0x1675,2},{0x28,1}}, {{0xb52,2},{0x2211,3}}, {{0xcd9,3},{0x1e120,5}}, {{0xae2,2},{0x101c,2}}, + {{0x26e2,6},{0x2b1e,8}}, {{0x4450,4},{0xadf,2}}, {{0x1e029,7},{0x1e030,5}}, {{0x1b,1},{0xe78,3}}, + {{0xde9,1},{0x1a,3}}, {{0xae5,1},{0x1307,3}}, {{0xcd8c,5},{0x63d5,5}}, {{0xb7f,3},{0x1f3a,3}}, + {{0x554f,2},{0xb65,2}}, {{0x2a,2},{0x133bc,6}}, {{0x1395a,6},{0x4d08,4}}, {{0x24531,4},{0x6f96,2}}, + {{0x26b5,4},{0xc57,3}}, {{0x83eb,5},{0xb2e,2}}, {{0x12f26,7},{0x10dc,2}}, {{0xaca2,3},{0x25c2,3}}, + {{0x1805e,6},{0x10dc,2}}, {{0xaea,1},{0x25da,3}}, {{0x1f8c1,7},{0xae7,1}}, {{0x41ef,2},{0x2d,1}}, + {{0xaaf2,5},{0x2d5d,4}}, {{0xaf2,1},{0x67a6,4}}, {{0x27d0f,2},{0x2a93a,2}}, {{0xb9c,2},{0x1699b,5}}, + {{0x16f1,3},{0x4c27,5}}, {{0x1f443,4},{0xc8f,2}}, {{0xb92,5},{0x2745,3}}, {{0x1bfc,6},{0x4eb2,7}}, + {{0x244b3,2},{0x70b4,2}}, {{0x785e,6},{0x95c9,5}}, {{0x6d8e,3},{0x10fa,1}}, {{0x2866a,2},{0x2aea3,2}}, + {{0x245cd,6},{0x24579,6}}, {{0x2340,9},{0x2349,6}}, {{0x10192,4},{0x70c8,4}}, {{0x1da0,4},{0xb8f,2}}, + {{0xd76,7},{0xb54a,4}}, {{0x3dda,8},{0x66ef,5}}, {{0xbeb,1},{0xc4d,2}}, {{0xbcb,3},{0x1b25b,4}}, + {{0xddc,4},{0x1c151,4}}, {{0x1a0da,6},{0x5cd6,3}}, {{0x16b3e,6},{0xc63,3}}, {{0x181ab,5},{0xfaf,3}}, + {{0x10ec,1},{0x173e,3}}, {{0x12be,3},{0x600f,5}}, {{0x151e8,4},{0xb55,2}}, {{0x924,1},{0x279fb,2}}, + {{0x256b,4},{0xcb8,2}}, {{0x5b51,8},{0xb65,2}}, {{0x7702,6},{0xb55,3}}, {{0x181e,2},{0x1710,6}}, + {{0x139f,3},{0x3347,5}}, {{0x8ae2,6},{0x84f5,5}}, {{0x4230,2},{0xb469,4}}, {{0xbc5,3},{0x2b,3}}, + {{0xf9f3,8},{0xb7c,3}}, {{0x16ac,5},{0xb64,2}}, {{0x2c4ac,4},{0x1016a,2}}, {{0x5c76,4},{0x27,1}}, + {{0xc6b7,9},{0x28,1}}, {{0xdd0,3},{0x22e3,3}}, {{0x27b4,3},{0x10119,2}}, {{0x1b6cb,2},{0x2b5b9,2}}, + {{0xfcc2,6},{0xfcc8,5}}, {{0xaf1,1},{0x9484,6}}, {{0xcbc9,6},{0x68ea,5}}, {{0x10dc,2},{0x4d13,6}}, + {{0xcb5,3},{0xc9a,2}}, {{0xeca,5},{0xb52,6}}, {{0x14934,2},{0x17ae,1}}, {{0x18a5,5},{0x12a5,7}}, + {{0x10f0,1},{0x27232,3}}, {{0x1e,1},{0x2b,3}}, {{0x21630,5},{0xb63,2}}, {{0x209d,4},{0x11b8,4}}, + {{0x159c8,1},{0x251d8,2}}, {{0x1089,2},{0xae6,2}}, {{0x4106,4},{0x2211,3}}, {{0x5956,8},{0x595e,5}}, + {{0x249e5,4},{0x2d,1}}, {{0x278dc,1},{0x278d5,2}}, {{0x6d81,3},{0xaf62,2}}, {{0x35ee,3},{0x1099,3}}, + {{0x41da,3},{0x1961,3}}, {{0x14fb4,5},{0x40b8,2}}, {{0x178c,3},{0x1f154,5}}, {{0x1b693,2},{0xbe4,1}}, + {{0x17280,6},{0x1d,1}}, {{0xc25,4},{0x46fa,4}}, {{0xb67,2},{0x27,1}}, {{0x27b4,3},{0xa24a,3}}, + {{0xcd9,5},{0x2ce8,7}}, {{0xb57a,7},{0xd7f,3}}, {{0x519e,4},{0x11c60,6}}, {{0xde4,2},{0xb55,2}}, + {{0xb63,2},{0xaea,1}}, {{0x12ae,3},{0x3fd9,7}}, {{0x4282,4},{0x1a6f5,5}}, {{0x6d81,3},{0xfb1,2}}, + {{0x10f3,1},{0x760b,3}}, {{0x20bb,3},{0x2a85,7}}, {{0x2445c,3},{0x2a948,1}}, {{0x6ac3,3},{0x1a,2}}, + {{0x17cc,4},{0x57ee,9}}, {{0x5a8e,6},{0xe9b,3}}, {{0x2aacb,2},{0xf907,2}}, {{0x44df,4},{0x3fdb,5}}, + {{0xb2f,1},{0xcbd,3}}, {{0x278c9,2},{0x27a79,2}}, {{0xdd04,6},{0xbf6d,5}}, {{0x1f62,9},{0xc7b,4}}, + {{0x227d,11},{0x2288,4}}, {{0x27db3,4},{0x410e,2}}, {{0x4c63,10},{0x2b,3}}, {{0x709c,4},{0x247f1,4}}, + {{0x70dc,6},{0x70e2,3}}, {{0xa0de,6},{0xa0e4,6}}, {{0xab9a,3},{0x1f9cc,5}}, {{0x4a75,6},{0xb52,6}}, + {{0x2c90e,4},{0x1cf1d,2}}, {{0x2c338,4},{0x244ed,2}}, {{0x4132,5},{0x1e1f,8}}, {{0x1aaec,2},{0x14f61,2}}, + {{0x2c4d6,4},{0x2456b,2}}, {{0x178c,3},{0xe35b,5}}, {{0x2ff6,8},{0x35bb,5}}, {{0x10710,5},{0xc63,3}}, + {{0x20bb,3},{0x16ae,3}}, {{0x1b927,6},{0x1b92d,8}}, {{0x209d,5},{0xbc2,2}}, {{0x1714e,7},{0x10dc,2}}, + {{0xc4e,2},{0xb2e,2}}, {{0xf726,7},{0x14a8,4}}, {{0x27cea,1},{0x24a35,2}}, {{0x6ac3,3},{0x14fba,2}}, + {{0x1e45,3},{0x5277,2}}, {{0x2313,8},{0x55d1,4}}, {{0x1aa87,5},{0x187f2,4}}, {{0x1fe11,5},{0xae7,2}}, + {{0x283e,2},{0x1f3ef,2}}, {{0xc51,4},{0xc55,5}}, {{0x1adf2,4},{0x1489,3}}, {{0x27959,2},{0x278a9,1}}, + {{0x177c,3},{0x1b09,3}}, {{0x1b0c,6},{0x4c4f,7}}, {{0x271e,3},{0x1c,1}}, {{0x142c,3},{0x1b25b,4}}, + {{0x249e1,8},{0x249e9,4}}, {{0x154dc,4},{0x33b3,3}}, {{0x12c6a,6},{0xaea,1}}, {{0x178c,3},{0x67b2,5}}, + {{0x11ac,10},{0x11b6,6}}, {{0xc37,3},{0xc45f,4}}, {{0xab9a,3},{0xde1,2}}, {{0xb8c,3},{0xb78,2}}, + {{0x70b0,4},{0xab1,2}}, {{0xb44,3},{0x179ce,3}}, {{0x5288,5},{0xbb83,4}}, {{0x24e2d,3},{0x124e,3}}, + {{0x10ef,1},{0x68fe,5}}, {{0x14ee2,4},{0xb48,2}}, {{0xd79,3},{0x1d,1}}, {{0x74da,7},{0x2bca,4}}, + {{0x1e827,5},{0xb55,3}}, {{0x10f3,1},{0x2d,1}}, {{0x24462,1},{0x2b7e1,2}}, {{0xc55,2},{0xcdf,3}}, + {{0x41be,4},{0x1c,1}}, {{0x1a577,4},{0xbb1,3}}, {{0x61ac,8},{0x4ab0,3}}, {{0x14404,7},{0xc63,3}}, + {{0x2796,3},{0xae2,1}}, {{0x5324,6},{0x1f13,4}}, {{0x27911,2},{0x278dc,1}}, {{0x251cb,1},{0x24461,1}}, + {{0x40ea,5},{0x2b8d,7}}, {{0xacea,6},{0xacf0,6}}, {{0x3db0,5},{0x32d8,4}}, {{0xae9,2},{0x69ce,3}}, + {{0x21c27,5},{0xb8f,2}}, {{0x1ab2,4},{0x5dbc,3}}, {{0x1509a,4},{0x237d1,3}}, {{0x26c4,3},{0xae5,1}}, + {{0x1b,1},{0xb72,2}}, {{0xd0f,4},{0xaf1,1}}, {{0x2592c,2},{0x10ec,1}}, {{0x2045,3},{0xcce,3}}, + {{0x14780,4},{0x10c4,4}}, {{0x17f01,3},{0x101b2,4}}, {{0xaf2,1},{0xc64,2}}, {{0x26c4,4},{0xd17,3}}, + {{0xbbf,2},{0x16a72,6}}, {{0xf6e4,5},{0x2b,2}}, {{0x27b6,1},{0xc55,2}}, {{0xd0f,4},{0x8651,4}}, + {{0x1a39a,5},{0x7593,3}}, {{0xbe0,1},{0xfcdb,5}}, {{0xae0,1},{0xfb1,7}}, {{0x10c8,3},{0x16ec7,5}}, + {{0x278a1,3},{0x27989,2}}, {{0x2b8e,3},{0x3787,7}}, {{0x238ad,4},{0x1370,3}}, {{0x1490,3},{0x4875,5}}, + {{0xcd9,3},{0xd90,2}}, {{0x785e,9},{0x2b,3}}, {{0x112c,1},{0x7c4,1}}, {{0x27d24,3},{0x2a9ac,2}}, + {{0x14fc,5},{0xcb8,2}}, {{0x2610,6},{0x141b2,4}}, {{0x2787,6},{0x12d5,7}}, {{0x278c9,2},{0x278a9,2}}, + {{0x1361,2},{0x2c39,5}}, {{0x7a86,5},{0xb2c,2}}, {{0x146c0,6},{0x12f1,3}}, {{0x6b52,4},{0xe6d,2}}, + {{0x9a2f,3},{0x715a,3}}, {{0xa936,5},{0xae7,1}}, {{0x28,2},{0x5277,2}}, {{0xc2e,2},{0x1d,1}}, + {{0x143c,5},{0x5306,4}}, {{0xae4,2},{0x28,1}}, {{0x1a,2},{0x8a6f,2}}, {{0x7c4,24},{0x7c4,6}}, + {{0xa6c6,5},{0x76a8,6}}, {{0x22113,7},{0xc64,2}}, {{0xba5,4},{0xb73,2}}, {{0x1a5ec,6},{0xec6d,3}}, + {{0x1f881,5},{0x2b,2}}, {{0x3e14,3},{0x1098,4}}, {{0x14b0c,5},{0x14b11,7}}, {{0xc5ff,4},{0x1e,1}}, + {{0x278a1,3},{0x279ad,2}}, {{0x13e28,6},{0x8472,4}}, {{0xcc0b,6},{0xa049,4}}, {{0xfc96,6},{0x154c4,4}}, + {{0x218bd,5},{0xc39,2}}, {{0x244a1,2},{0xf907,2}}, {{0xcd9,3},{0x25db8,3}}, {{0x40b6,3},{0x2b,3}}, + {{0xf445,6},{0xae7,1}}, {{0x80c2,6},{0x2b,3}}, {{0xc37,3},{0x1762,3}}, {{0x10fb,4},{0xe8ce,7}}, + {{0x5949,6},{0xaea,1}}, {{0x14a12,4},{0xc2d2,5}}, {{0x22d87,3},{0x28,1}}, {{0xd41,3},{0x142e,1}}, + {{0x285f3,2},{0x43e3,1}}, {{0x30,2},{0x1b09,3}}, {{0x271e,3},{0x1934,4}}, {{0x13228,7},{0xae7,1}}, + {{0x164d8,6},{0xcce,3}}, {{0xe64,5},{0x25f9,6}}, {{0x30c8,5},{0xb82,3}}, {{0x43ce,6},{0x28c1,7}}, + {{0x1f931,6},{0x16ae,2}}, {{0x4194,4},{0x12b1,3}}, {{0x13ae4,4},{0xc67,2}}, {{0x14346,5},{0xb2e,2}}, + {{0x4116,4},{0xb82,2}}, {{0xbde,6},{0xbe4,13}}, {{0x27ce8,3},{0x2a934,2}}, {{0x7a7a,5},{0x29da,3}}, + {{0x2c416,4},{0xff02,2}}, {{0x8d2e,8},{0x2b,3}}, {{0xc13,4},{0x2b,1}}, {{0x2291,5},{0x2296,5}}, + {{0xb63,2},{0x139e,2}}, {{0xf74,4},{0x1269e,3}}, {{0x6144,9},{0x23ce,4}}, {{0xc37,3},{0x1a5c,3}}, + {{0x7e0a,9},{0x2b,3}}, {{0xae7,1},{0x2c00,3}}, {{0xae7,1},{0x1ae4,7}}, {{0x8a16,5},{0xc4d,2}}, + {{0x2451f,2},{0x159cb,2}}, {{0x41da,3},{0x1da3,3}}, {{0x6d8e,3},{0x5269,5}}, {{0x122c,4},{0x1712f,3}}, + {{0xb52,2},{0xb2f,1}}, {{0xc13,4},{0x7429,5}}, {{0x10ca,1},{0x1097,5}}, {{0x179cf,2},{0xbe4,1}}, + {{0x20a38,4},{0x1f3ed,3}}, {{0xcd9,3},{0x101ba,4}}, {{0x278a1,3},{0x279bf,2}}, {{0xf46,2},{0xca7,3}}, + {{0x10ba,2},{0x1d,1}}, {{0x10ec,1},{0xed5d,5}}, {{0x10fa,1},{0xae2,1}}, {{0x432,32},{0x432,14}}, + {{0x253e9,6},{0x251dc,2}}, {{0x2878b,6},{0x1b6f5,2}}, {{0x2e7c,7},{0x3e37,5}}, {{0x1b8e3,4},{0x70d4,4}}, + {{0xb8b,2},{0x9133,3}}, {{0x116e,1},{0x27897,2}}, {{0x278d6,1},{0x27a2b,2}}, {{0x46f4,4},{0xe5d,2}}, + {{0xd5c,2},{0xdf5,4}}, {{0x1bf6,4},{0x1a,2}}, {{0x804,64},{0x804,64}}, {{0x28840,6},{0x9a9,1}}, + {{0xb01a,6},{0x855e,6}}, {{0x423c,3},{0x1fa4c,5}}, {{0x2450d,6},{0x24513,6}}, {{0x1dacf,3},{0x1b4f,3}}, + {{0xb7f,3},{0x202c,3}}, {{0x272f,2},{0x28da,1}}, {{0xb72,3},{0x1906,4}}, {{0xfc9,6},{0x3892,8}}, + {{0xaf1,1},{0xc77,2}}, {{0x11b3a,7},{0xd0d,2}}, {{0x2cd94,4},{0x1b709,2}}, {{0xb2f,1},{0x1402,2}}, + {{0x6e03,7},{0x35d7,5}}, {{0x10ec,1},{0x21afd,4}}, {{0xee1e,7},{0x460d,4}}, {{0xb493,4},{0x2b,3}}, + {{0xcd9,5},{0x132e,4}}, {{0x1053,5},{0x1058,9}}, {{0xe31,5},{0xd48,2}}, {{0x3e82,5},{0xdc2,9}}, + {{0x1a1a0,5},{0xb6e,2}}, {{0x264c,6},{0x583f,3}}, {{0x6f62,6},{0x6f86,12}}, {{0x12d0a,6},{0xb217,4}}, + {{0xbb5,1},{0xf14,2}}, {{0x3234,3},{0xe6c,3}}, {{0x6e10,6},{0xf05,7}}, {{0xd54,1},{0x428a,2}}, + {{0x11ba8,5},{0xec5,5}}, {{0x116e,1},{0x27abb,2}}, {{0x2106,5},{0xc6a9,3}}, {{0xe75,4},{0x50fd,5}}, + {{0xb44,3},{0x1f,1}}, {{0x3640,8},{0xae7,1}}, {{0x152fc,5},{0xb52,5}}, {{0x41be,3},{0xb48,2}}, + {{0xb7d,1},{0xd0b,3}}, {{0xfd9e,5},{0x2dc0,6}}, {{0x12418,8},{0xc64,2}}, {{0xd5c,1},{0x43e3,1}}, + {{0x278c9,2},{0x27aa9,2}}, {{0x13626,6},{0x1b80,4}}, {{0x145a0,1},{0xb8a,2}}, {{0xae0,1},{0x14b6,2}}, + {{0x10c8,3},{0x20a1f,2}}, {{0x251fe,2},{0x25205,3}}, {{0x740e,5},{0xeb2,1}}, {{0x14166,6},{0x28,1}}, + {{0x4284,2},{0xbe7,1}}, {{0x285b,3},{0xd0d,2}}, {{0x159c,5},{0x2742,3}}, {{0x10e1,5},{0xb63,2}}, + {{0x14ca8,4},{0xbe7,1}}, {{0x278dc,1},{0x278db,2}}, {{0x10fb,3},{0x16ee,2}}, {{0xde9,1},{0xb63,2}}, + {{0x20bb,3},{0x1b80,4}}, {{0x9532,6},{0x75ea,4}}, {{0xaf1,1},{0x323c,2}}, {{0xfdd,2},{0xcc0,3}}, + {{0x155d6,5},{0x155db,5}}, {{0x25df1,4},{0xb85,2}}, {{0xd3f3,8},{0xb7c,3}}, {{0x12fc,4},{0x2b,2}}, + {{0xb66,2},{0x41b3,4}}, {{0xcb8,3},{0x2af8,4}}, {{0x4978,4},{0x10dc,2}}, {{0x1b98d,6},{0xc34,2}}, + {{0xddc,4},{0x28e2,4}}, {{0x27b95,4},{0x27947,2}}, {{0xa6c6,7},{0x1408,3}}, {{0x24b7,10},{0xce8,3}}, + {{0x27b4,3},{0x1e120,5}}, {{0x22525,6},{0x1f,1}}, {{0xca3,7},{0x5873,6}}, {{0xf63c,2},{0x2b,1}}, + {{0x27b95,4},{0x27a25,2}}, {{0x10f6,1},{0x1574b,2}}, {{0xddc,4},{0x89b9,4}}, {{0xc62,3},{0x1b,1}}, + {{0x264c,4},{0x142dc,6}}, {{0x17ec,5},{0x1930,4}}, {{0xa7da,3},{0x8ec8,4}}, {{0xdf0,2},{0xae8,2}}, + {{0xc13,4},{0x1c,2}}, {{0x142c,3},{0x1257,2}}, {{0x261f,4},{0xd17,3}}, {{0x27a31,2},{0x278af,1}}, + {{0x15252,6},{0x1ac3,3}}, {{0x159e,6},{0x1555,7}}, {{0xbe4,1},{0xa7d8,2}}, {{0x1687,3},{0xff7,5}}, + {{0x1053,5},{0xe858,4}}, {{0x1a0d,6},{0x11df,5}}, {{0x10ca,1},{0xfcb3,4}}, {{0xd1b,1},{0x2d,1}}, + {{0x10f7,1},{0xe6d,2}}, {{0xb99,3},{0x32d5,4}}, {{0xc37,3},{0x1a30,3}}, {{0x2d68,5},{0x2bff,6}}, + {{0x1878,1},{0xbc2,2}}, {{0x10c62,6},{0x2742,3}}, {{0xae0,1},{0xf6a,3}}, {{0x522d,5},{0xb70,2}}, + {{0xb48,2},{0x2b,1}}, {{0xcd9,3},{0xae5,1}}, {{0x16fc,4},{0x906c,5}}, {{0x278a1,3},{0x1b6ab,2}}, + {{0x13560,7},{0xae7,1}}, {{0x3eba,8},{0xb7a,5}}, {{0xc25,5},{0xbaa,6}}, {{0x116e,1},{0x27a0d,2}}, + {{0x2c3e0,4},{0x157f2,2}}, {{0x178c,3},{0x36c1,5}}, {{0x22daf,6},{0xaf2,1}}, {{0x276bb,4},{0x28da,1}}, + {{0x102f6,6},{0xae7,1}}, {{0x2c386,4},{0xa4f,2}}, {{0x1ee61,6},{0xb55,2}}, {{0x6735,4},{0x298a,2}}, + {{0xafc6,4},{0x4ae5,5}}, {{0x69f3,7},{0x2b,3}}, {{0x17ae,5},{0xd57,2}}, {{0x3a39,3},{0xb65,2}}, + {{0x161c,7},{0x64f3,6}}, {{0x2789b,3},{0x27897,2}}, {{0xd784,5},{0x10c3,5}}, {{0xae0,1},{0xb8b,2}}, + {{0xc2e,2},{0x1a,2}}, {{0x710e,6},{0x7114,6}}, {{0x14fc,5},{0x1f13,4}}, {{0xb2f,1},{0xc89,2}}, + {{0x1ab2,4},{0x2b,1}}, {{0x1f,1},{0x16182,5}}, {{0x1aee,6},{0x4b0a,7}}, {{0xebf,3},{0xc67,2}}, + {{0x55ae,8},{0xdfb,3}}, {{0xb4a,3},{0x1a05,8}}, {{0x10190,6},{0x1b88f,8}}, {{0x1bde,6},{0xb7a,5}}, + {{0x6d8e,3},{0x1434,6}}, {{0xddc,5},{0xe7bd,5}}, {{0xd7a,3},{0xdcbd,5}}, {{0x278a1,3},{0x2798f,2}}, + {{0xbc2e,5},{0x19f8,6}}, {{0x116d,1},{0x27abb,2}}, {{0xc37,3},{0x1f3a,3}}, {{0xded,5},{0xbf20,5}}, + {{0x4588,8},{0x28b1,3}}, {{0x1cbf,4},{0xc7a2,4}}, {{0x143c,5},{0x50f0,5}}, {{0x10ec4,6},{0x1ed0,4}}, + {{0x2c4b8,4},{0x6f8a,2}}, {{0x4f6f,5},{0xae7,1}}, {{0xebab,8},{0x5cd6,3}}, {{0x14dae,6},{0xde9,1}}, + {{0x2796,3},{0x209b9,2}}, {{0x71e6,5},{0x71eb,7}}, {{0xfcfc,4},{0xa8f3,4}}, {{0xceb5,8},{0xeb3,3}}, + {{0x2884e,6},{0xb2f,1}}, {{0x984a,10},{0x10dc,2}}, {{0x116e,1},{0x27ab5,2}}, {{0xaca2,3},{0x14b6,2}}, + {{0x1b57,4},{0x1e,2}}, {{0x257c,2},{0x1e90b,4}}, {{0xcd9,3},{0x225fa,4}}, {{0xd65,8},{0xd6d,9}}, + {{0x37f2,8},{0x21d2,6}}, {{0x278a1,3},{0x27a97,2}}, {{0x201f1,4},{0x201f5,4}}, {{0xfd25,4},{0x16ae,2}}, + {{0xae0,1},{0xf46,2}}, {{0x1cce,8},{0xcb8,2}}, {{0xc227,7},{0xbc1,2}}, {{0x114c,2},{0x74ae,4}}, + {{0x1b57,4},{0xf10,3}}, {{0xbe0,1},{0x6ac5,1}}, {{0x10ef,1},{0x1055,3}}, {{0x27959,2},{0x116c,1}}, + {{0x3218,5},{0x5396,3}}, {{0x6c8a,6},{0x2b,3}}, {{0x1a18e,6},{0x8bf2,3}}, {{0xbde,3},{0x1dff,2}}, + {{0x36da,6},{0x30a3,8}}, {{0xbe7,1},{0xae2,1}}, {{0xac74,3},{0x35b9,7}}, {{0x1489,3},{0xbd4,2}}, + {{0xb8b,2},{0x700f,3}}, {{0xeada,7},{0x2af8,4}}, {{0xe5bd,9},{0x10dc,2}}, {{0xe9b,3},{0xc89,2}}, + {{0x28f6,2},{0x37cf,3}}, {{0x27,1},{0x15f26,3}}, {{0x6b52,4},{0xc0c3,3}}, {{0x713e,5},{0x2bca,4}}, + {{0x57f7,6},{0x14a7,5}}, {{0x11c70,7},{0xae6,3}}, {{0x116d,1},{0x279f5,2}}, {{0x2aacb,2},{0x20b23,2}}, + {{0xb4a,4},{0x6581,7}}, {{0xb92,14},{0xb52,5}}, {{0x2016,10},{0x1fb7,5}}, {{0xae5,1},{0x15f4d,4}}, + {{0x2ce3c,4},{0xae7,1}}, {{0x20181,6},{0xb78,2}}, {{0xfe38,4},{0xae7,1}}, {{0x3492,4},{0xc57,3}}, + {{0xc8f3,4},{0xb65,2}}, {{0x5444,3},{0x1a,3}}, {{0xaf5d,2},{0xbe4,1}}, {{0x51c7,3},{0xa526,6}}, + {{0xfacf,5},{0xaf1,2}}, {{0x6e10,4},{0x32d8,3}}, {{0xcc7,3},{0xc52,2}}, {{0x2375d,4},{0xb55,2}}, + {{0x5428,8},{0xc34,3}}, {{0x10f7,1},{0xf688,3}}, {{0xc17,3},{0x3c65,7}}, {{0x1a0d,5},{0xf59,3}}, + {{0x18e1,5},{0x10553,5}}, {{0x24460,3},{0x1ed53,1}}, {{0x8b8a,8},{0x2d44,4}}, {{0x127a6,8},{0xae8,2}}, + {{0x432,2},{0x28634,1}}, {{0x27b6,1},{0x15c61,3}}, {{0xadf,2},{0xc57,3}}, {{0x53cd,5},{0xdf2,3}}, + {{0xedb,5},{0xe6d,2}}, {{0xbaa2,4},{0x1b09,3}}, {{0x20d9,10},{0x10dc,2}}, {{0xf8cf,2},{0xf82b,3}}, + {{0x10b7,9},{0x10c0,7}}, {{0x1dbe,5},{0xaec,2}}, {{0x443e,2},{0x700f,3}}, {{0x271e,3},{0xf82c,2}}, + {{0x1afd,5},{0xd324,4}}, {{0xaea,2},{0xb85,2}}, {{0x1ed69,3},{0xae2,1}}, {{0x2c5ea,4},{0xff26,2}}, + {{0x45e3,8},{0x1257,3}}, {{0x1704,3},{0x22e3,3}}, {{0x13bc,4},{0xb9c2,4}}, {{0x163dc,6},{0x2b,3}}, + {{0x286a,6},{0xe7f,7}}, {{0x2c2da,3},{0x24461,1}}, {{0x290c,2},{0xb4b,2}}, {{0x271e,3},{0x15b3f,2}}, + {{0x1a0d,5},{0x490e,8}}, {{0x278a1,3},{0x279cb,2}}, {{0x12b84,7},{0xae7,1}}, {{0xbd6,2},{0x12f1,3}}, + {{0x23e97,5},{0x12143,2}}, {{0x160cb,6},{0x1099,3}}, {{0x4106,4},{0x4459,3}}, {{0x2a934,2},{0x2446c,1}}, + {{0xd76,5},{0x7445,5}}, {{0x27a43,2},{0x278a9,1}}, {{0x10ea,3},{0x1aaed,1}}, {{0x1a0f,3},{0x1644,8}}, + {{0x2ac87,4},{0x70d0,4}}, {{0x1675,2},{0xae2,1}}, {{0x946,3},{0x9a9,1}}, {{0xe7b,4},{0xb52,6}}, + {{0x10f6,1},{0xb73,2}}, {{0x10ca,1},{0x440f,2}}, {{0x180c,4},{0x2a16,3}}, {{0xeec,7},{0x1ed3,8}}, + {{0x41be,4},{0xc4d,2}}, {{0xf96,5},{0xdd40,6}}, {{0xbc44,8},{0xe72,3}}, {{0xceb,3},{0x689b,6}}, + {{0xb75,2},{0x1d,1}}, {{0x188e9,5},{0x23ce,4}}, {{0x139e,2},{0x3a36,2}}, {{0x208f6,4},{0xf82b,3}}, + {{0x905e,8},{0x16ef,4}}, {{0xd76,4},{0x5c32,4}}, {{0x9af6,6},{0x2af8,4}}, {{0x430,18},{0x432,13}}, + {{0x29b0,3},{0x4039,4}}, {{0x27b4,3},{0x1614,7}}, {{0x2c902,4},{0x96f,2}}, {{0x271e,3},{0xe9b,3}}, + {{0x6ac3,3},{0xa7b9,9}}, {{0x28,1},{0x3626,4}}, {{0xb7c,2},{0x1408,3}}, {{0x6ac3,3},{0x1150,2}}, + {{0x9112,5},{0x22e3,3}}, {{0x17bc,3},{0x297bd,2}}, {{0x2854a,3},{0xf8d1,2}}, {{0x3402,7},{0x10c3,5}}, + {{0x78ca,4},{0x1c4d1,4}}, {{0x85de,5},{0x8230,6}}, {{0x218d,5},{0xcee,4}}, {{0x2866a,2},{0x27e52,3}}, + {{0x10056,3},{0xe08,7}}, {{0xe1b3,6},{0xdfb,3}}, {{0x18109,6},{0x2b,3}}, {{0xae9,3},{0x28,1}}, + {{0x10ca,1},{0xb55,2}}, {{0x4106,5},{0x2f5f,4}}, {{0x423e,1},{0xb78,2}}, {{0xff48,4},{0xd1b,1}}, + {{0x92ce,7},{0x11df,5}}, {{0x141c,4},{0x1035,4}}, {{0xf52,5},{0x1481,3}}, {{0xaf1,1},{0xc5ff,4}}, + {{0x20bb,3},{0xcf3e,2}}, {{0x278c9,2},{0x27ac7,2}}, {{0x1ae4e,2},{0x10f0,1}}, {{0x24549,10},{0x159cb,2}}, + {{0xe9a8,5},{0xbd8,2}}, {{0xd48,2},{0x1c,1}}, {{0xf74,8},{0xec4,6}}, {{0x732,3},{0x1ed53,1}}, + {{0xb72,2},{0xc30,2}}, {{0x23bdb,4},{0x23bdf,3}}, {{0x27ce8,3},{0x734,1}}, {{0x14bb8,6},{0x32d5,4}}, + {{0xcab,3},{0xdfb,3}}, {{0xb6c,3},{0xaf1,1}}, {{0x1b57,4},{0x1100b,3}}, {{0x1a703,5},{0x1a708,4}}, + {{0xf471,4},{0x9208,4}}, {{0x43f5,3},{0x12c33,5}}, {{0x554f,2},{0xae2,1}}, {{0x863e,7},{0x4a56,3}}, + {{0x422e,3},{0x434d,2}}, {{0xd54,1},{0x29938,2}}, {{0x116d,1},{0x278bd,2}}, {{0x28,3},{0x180e,5}}, + {{0xaf2a,5},{0xc30,2}}, {{0xfb1,2},{0xe9c3,4}}, {{0xca7,2},{0x4f84,5}}, {{0x4e2a,8},{0x4e32,5}}, + {{0x116e,1},{0x116c,2}}, {{0xb92c,7},{0x2be6,4}}, {{0x14346,5},{0xe39,3}}, {{0x5ac2,6},{0xb54,3}}, + {{0x508d,8},{0xff7,5}}, {{0xd8d9,7},{0x2bca,4}}, {{0xcf6,3},{0xaa81,5}}, {{0x734,1},{0x1b6cb,1}}, + {{0x1daf,4},{0xdf0,2}}, {{0x1761,3},{0x2db1,3}}, {{0x26c6,1},{0xeb2,1}}, {{0x2789b,4},{0x1b6ab,1}}, + {{0x10b9,3},{0x2b,1}}, {{0x8842,5},{0x8847,7}}, {{0x939a,8},{0xe1c,4}}, {{0x17238,5},{0xce8,3}}, + {{0xeb9,11},{0xec4,6}}, {{0x10ca,2},{0x2d14,5}}, {{0x53f4,7},{0x53fb,4}}, {{0x1aef5,7},{0xd0d,2}}, + {{0x6b5f,5},{0x1717,5}}, {{0x4412,3},{0x10fa,1}}, {{0xe313,5},{0x1930,3}}, {{0xb86,3},{0x28cf,11}}, + {{0x177c,3},{0xbc5,3}}, {{0x12fc,4},{0xc399,4}}, {{0xf0e,5},{0x7cb3,6}}, {{0xe78,3},{0x1a,2}}, + {{0x119c,7},{0x5fa9,5}}, {{0xdd5,4},{0xe72,3}}, {{0x2a8ce,4},{0x112c,1}}, {{0x116e,1},{0x278db,2}}, + {{0x1465c,6},{0x1a,1}}, {{0x14ba4,6},{0x1cac,4}}, {{0xba5,4},{0xb72,3}}, {{0xb9d,3},{0x2b,3}}, + {{0xaea,1},{0x3511,4}}, {{0x48c8,6},{0x7750,6}}, {{0x2700,12},{0xb8f,3}}, {{0xb22b,8},{0x2b,3}}, + {{0xe5d,3},{0x135f9,4}}, {{0xf6e4,5},{0x14d4,3}}, {{0x1aa51,4},{0xf25a,5}}, {{0x6d81,3},{0x2b76,3}}, + {{0xb79,2},{0x323c,2}}, {{0x41da,3},{0x4288,2}}, {{0xbec2,10},{0xae7,1}}, {{0x16ac,5},{0xae9,2}}, + {{0x12d5,4},{0x1372,3}}, {{0xae82,8},{0x2b,3}}, {{0xc13,4},{0xd8e,3}}, {{0x13db0,7},{0x2b,3}}, + {{0x16fc,10},{0xc63,3}}, {{0x20239,6},{0xb65,2}}, {{0xb82,2},{0x4f4d,3}}, {{0x29ecd,3},{0x278bc,2}}, + {{0x10b7,4},{0x804f,7}}, {{0xb7d,1},{0xb29c,3}}, {{0x42a3,3},{0xb78,2}}, {{0x30c8,7},{0x2b3e,4}}, + {{0x6d81,3},{0xbbf,2}}, {{0x23ae,3},{0x461c,4}}, {{0x432,32},{0x432,13}}, {{0xd54,1},{0xa5dd,5}}, + {{0xae0,1},{0x186db,4}}, {{0xd65,3},{0x254d6,5}}, {{0x62fe,10},{0x2b,3}}, {{0xb70,2},{0x674c,3}}, + {{0x6cbe,4},{0xf735,7}}, {{0x11ba8,4},{0x11bb6,6}}, {{0x21be,4},{0x1489,3}}, {{0xce2,3},{0x2976,3}}, + {{0x278a1,3},{0x279d7,2}}, {{0x10fd,2},{0x7e91,4}}, {{0x6742,5},{0x2db1,3}}, {{0x1612e,5},{0x1278,3}}, + {{0x27e55,3},{0x27d20,2}}, {{0xb52,2},{0xb63,3}}, {{0xc13,4},{0x2746,4}}, {{0xae6,2},{0xdf0,2}}, + {{0x78ca,4},{0x28,1}}, {{0x6631,5},{0x2566,4}}, {{0xf90c,7},{0x59f4,4}}, {{0xa56c,5},{0xce8,3}}, + {{0x152fc,7},{0x2b,3}}, {{0x194a,5},{0xb78,2}}, {{0x10fb,4},{0x1c25,4}}, {{0x70b0,4},{0x6f96,2}}, + {{0x1977,8},{0xff7,5}}, {{0xfd9e,5},{0x75cd,4}}, {{0x15b52,4},{0xff22,2}}, {{0x1b,1},{0x16e2,2}}, + {{0x24495,6},{0x24495,6}}, {{0x162c,6},{0xcab,3}}, {{0x1ffc9,4},{0xc52,3}}, {{0xcc7,3},{0x1fe84,4}}, + {{0xaea,1},{0xd54,1}}, {{0x177c,3},{0xce8,3}}, {{0xc13,3},{0xeb2,1}}, {{0x13acc,7},{0xeb3,3}}, + {{0x154dc,4},{0x26fb,5}}, {{0x27d95,6},{0x27d95,4}}, {{0xb31,1},{0x1b6cb,1}}, {{0x4106,5},{0xb82,2}}, + {{0x1051,4},{0x151f,3}}, {{0x1480,2},{0xfb1,2}}, {{0x10ef,1},{0x209c5,3}}, {{0xaf1,1},{0x12fe,1}}, + {{0x1a340,5},{0xeb2,1}}, {{0x102b0,5},{0x12766,4}}, {{0x1d053,7},{0xf28,3}}, {{0x119c,7},{0xb42c,4}}, + {{0xe75,5},{0x2b,3}}, {{0x4ed6,4},{0x5fa0,4}}, {{0x27b6,1},{0xaaec,2}}, {{0x193c6,5},{0x4905,4}}, + {{0x10e1,5},{0x1719,3}}, {{0x944e,6},{0x62ed,4}}, {{0xf0e,12},{0xb52,5}}, {{0x5c14,8},{0x102a,5}}, + {{0xbb47,7},{0x2af8,4}}, {{0x90d6,6},{0x4978,6}}, {{0x948,1},{0x27cc5,2}}, {{0xaca2,3},{0x15b40,2}}, + {{0xd41,4},{0x4459,3}}, {{0x5a19,5},{0x33b2,3}}, {{0x27911,2},{0x278af,1}}, {{0x2b87e,4},{0x6fac,2}}, + {{0x17bc,3},{0xc17,3}}, {{0x10c8,3},{0xb2c,3}}, {{0xa7f2,5},{0x23b1,7}}, {{0x40ec,3},{0x4652,6}}, + {{0x8a6a,6},{0x377c,6}}, {{0x244c5,6},{0x244cb,6}}, {{0x1260,4},{0xb65,2}}, {{0x10ef,1},{0x2b,1}}, + {{0x10ec,1},{0x26e7e,3}}, {{0xddc,4},{0x3bc2,4}}, {{0x1099,3},{0x2b,3}}, {{0xbe4,1},{0x1934,4}}, + {{0xcc0,3},{0x4a30,4}}, {{0x14cd0,6},{0xb55,2}}, {{0xf683,3},{0x9071,5}}, {{0x27,1},{0xb8a,2}}, + {{0x1f,1},{0x734a,4}}, {{0x762a,4},{0x2af8,4}}, {{0x437e,4},{0xae2,1}}, {{0x103fc,3},{0x1daa,4}}, + {{0xaea,1},{0xc4d,2}}, {{0x10ea,3},{0xdd3,3}}, {{0x1f3ed,3},{0x20aa9,2}}, {{0xc13,4},{0x15f1f,5}}, + {{0x5302,4},{0x1408,3}}, {{0x27d24,3},{0x251cb,1}}, {{0x6a00,6},{0x6a06,7}}, {{0x15eb8,6},{0x11ef,2}}, + {{0xe42,5},{0xb2e,2}}, {{0xbe4,1},{0xcb8,3}}, {{0x773e,9},{0x2b,3}}, {{0x14dc,7},{0x89e1,5}}, + {{0x27b95,4},{0x27959,2}}, {{0xbaa2,4},{0xce8,3}}, {{0x1cbf,5},{0xc714,6}}, {{0xb74,2},{0xb2e,2}}, + {{0x2c76,5},{0xdfa,3}}, {{0x939a,8},{0xb54,4}}, {{0x1a09d,4},{0x1704,3}}, {{0x10ca,1},{0xa04a,3}}, + {{0x4fa3,7},{0x72da,4}}, {{0x4a68,9},{0x1278,4}}, {{0x5102,5},{0xb7bc,5}}, {{0xe6d,3},{0xc63,3}}, + {{0x2dfe,6},{0x2e20,8}}, {{0x209d,4},{0x6a91,3}}, {{0xb52,2},{0xd641,4}}, {{0xf8cf,2},{0xa7d8,2}}, + {{0x142e,1},{0x1f,1}}, {{0x3090,6},{0x8524,6}}, {{0x3f80,4},{0x3f84,4}}, {{0x18268,5},{0x67c0,3}}, + {{0x423c,3},{0xb74,2}}, {{0xcf65,5},{0xcf6a,6}}, {{0x9e62,9},{0xe72,3}}, {{0x1aff,3},{0x4ea6,6}}, + {{0x8a6a,6},{0x377c,5}}, {{0xeb2,1},{0xbe0,1}}, {{0x1cce,6},{0x1b80,4}}, {{0x177e,3},{0xdfa,3}}, + {{0x17e30,7},{0xb2c,2}}, {{0x8a2e,6},{0x2683,5}}, {{0x1ac01,7},{0xdf0,2}}, {{0xa7d,4},{0x15798,2}}, + {{0x2c3c2,4},{0x70a2,2}}, {{0x2abe,4},{0x28,1}}, {{0xaef,3},{0xc57,3}}, {{0x15b0,2},{0xc30,2}}, + {{0xaea,2},{0xae7,1}}, {{0x27b4,3},{0xd7a,3}}, {{0x41be,3},{0x10f7,1}}, {{0xedb,6},{0xee1,11}}, + {{0xbeb,1},{0x550f,3}}, {{0x209d,4},{0x101b,3}}, {{0xf77e,5},{0x677d,6}}, {{0xc37,3},{0x599d,3}}, + {{0x15400,7},{0xf59,3}}, {{0x278f3,2},{0x2863c,3}}, {{0x9e9,2},{0xfed0,12}}, {{0x1b140,2},{0x278bd,2}}, + {{0xf8de,4},{0xc24f,4}}, {{0xcedb,2},{0xc67,2}}, {{0xcb5,3},{0xb63,2}}, {{0xcd9,4},{0x84f6,4}}, + {{0xa8ee,9},{0x25c2,3}}, {{0x41f6,4},{0xb2e,2}}, {{0x1c065,6},{0x10dc,2}}, {{0x14dc,5},{0x129e5,5}}, + {{0xaf36,5},{0x2742,3}}, {{0xaea,2},{0x11ef,2}}, {{0x6c97,5},{0x17476,4}}, {{0x3d40,9},{0x1717,5}}, + {{0x2032,2},{0x1954,3}}, {{0x1f2b1,4},{0x4417,2}}, {{0x20,2},{0xc89,3}}, {{0xd43,6},{0x354d,4}}, + {{0x1ae6e,6},{0x1014,3}}, {{0x1f,1},{0x35fd,3}}, {{0xa252,5},{0x1208c,3}}, {{0xd78f,6},{0xb55,3}}, + {{0x1d89,2},{0x20947,3}}, {{0x1f,1},{0x2c00,3}}, {{0xaada,5},{0x1444,7}}, {{0x3234,3},{0x1489,3}}, + {{0x6e05,5},{0x1513,5}}, {{0x2045,3},{0x25c2,3}}, {{0x4979,3},{0x11e6,6}}, {{0x4362,6},{0xafa8,6}}, + {{0x277a,8},{0x102a,5}}, {{0xcb5,3},{0x1822c,6}}, {{0x15788,6},{0x157b8,6}}, {{0x13946,8},{0xb63,2}}, + {{0xf275,4},{0x28be,3}}, {{0x285d1,2},{0x10ef,1}}, {{0x19f69,5},{0x2be6,4}}, {{0x10038,4},{0x1003c,6}}, + {{0x27a49,2},{0x278a9,1}}, {{0x12be,3},{0x1a,1}}, {{0xa0de,6},{0xbb5,1}}, {{0x10f0,1},{0xbb5,1}}, + {{0x24a2d,2},{0x2a96c,2}}, {{0x60cf,8},{0xce8,3}}, {{0xd6d4,7},{0x25da,3}}, {{0x116e,1},{0x278ed,2}}, + {{0x27,1},{0xde9,1}}, {{0x10fb,3},{0xa5de,4}}, {{0x24a30,2},{0x19,1}}, {{0xd41,3},{0x1e,1}}, + {{0x1760f,5},{0xb2e,2}}, {{0xf6e6,4},{0xb78,2}}, {{0x11e2a,6},{0xd57,2}}, {{0xc1e,2},{0x3fdb,5}}, + {{0x1f,1},{0x2cfba,2}}, {{0xa7aa,6},{0xae6,2}}, {{0x3234,3},{0x1c,1}}, {{0x4d19,6},{0x84ea,4}}, + {{0x178c,3},{0x10029,5}}, {{0x78ca,4},{0xb881,6}}, {{0x1c60d,5},{0x2195,3}}, {{0x1e,1},{0xcc0,3}}, + {{0x1084,3},{0x1e9d2,5}}, {{0xaec,2},{0x2a24,6}}, {{0x1a1a0,5},{0xc7b,4}}, {{0x734,1},{0x25201,2}}, + {{0x995e,8},{0xe1c,4}}, {{0x2793d,4},{0x278bc,2}}, {{0xb2f,1},{0xae7,2}}, {{0x1a326,4},{0xeb2,1}}, + {{0x43e3,1},{0xc30,2}}, {{0xcd9,3},{0x25aca,5}}, {{0xcb5,3},{0x10ba,2}}, {{0x6b52,4},{0x2aa0,3}}, + {{0x6b38,8},{0x67a5,5}}, {{0x10ef,1},{0xc1c,2}}, {{0x278a7,3},{0x279a7,2}}, {{0xa246,4},{0x4687,5}}, + {{0xf01,4},{0xbc5,3}}, {{0xc57,3},{0xb55,2}}, {{0x28f6,2},{0xcd65,4}}, {{0x6e03,4},{0x25da,3}}, + {{0x598a,5},{0xb55,2}}, {{0x1b4e4,1},{0x27d8b,2}}, {{0xcd2,5},{0x1cac,4}}, {{0x17fc,5},{0x1961,3}}, + {{0xaea,1},{0x83eb,5}}, {{0x39ce,5},{0xd324,4}}, {{0x10c8,4},{0xe57,7}}, {{0x161c,7},{0xb7c,3}}, + {{0x18634,8},{0x28,1}}, {{0xeb2,1},{0xadf,2}}, {{0x9bc2,9},{0xb63,2}}, {{0x13cd4,5},{0x18240,4}}, + {{0x225f,9},{0x3921,5}}, {{0xbe4,1},{0x1f3ee,2}}, {{0x2b0bf,2},{0xae0,2}}, {{0xbed,2},{0x1257,3}}, + {{0x1042,4},{0xbc4,4}}, {{0xb52,2},{0x22e3,3}}, {{0xceb,3},{0xc78,3}}, {{0x28e7a,2},{0x1ed53,1}}, + {{0x2c4ee,4},{0x6f64,2}}, {{0x17fe,3},{0x1960,7}}, {{0x1adf0,6},{0xb54,3}}, {{0x278a1,3},{0x27a37,2}}, + {{0x6ac3,4},{0x2b,1}}, {{0x2445e,2},{0x2b2ff,1}}, {{0x1fad9,4},{0xb73,2}}, {{0x278c9,2},{0x27a8b,2}}, + {{0x2bfc,2},{0xb79,2}}, {{0x14bb0,2},{0xa7d8,2}}, {{0xad32,4},{0x5c59,5}}, {{0xa14a,5},{0x33d3,5}}, + {{0x27c5,3},{0x1c40,6}}, {{0x19e66,2},{0x10d56,6}}, {{0x2810,4},{0xbe2e,4}}, {{0x14652,5},{0x114d,2}}, + {{0xb72,2},{0x411b,2}}, {{0x27e1c,2},{0x251cb,1}}, {{0x278b3,4},{0x278a9,2}}, {{0x3a5a,6},{0xec5,5}}, + {{0x142e,1},{0xc29,2}}, {{0x178c,3},{0x3e34,8}}, {{0x151c,6},{0xe49,4}}, {{0x1b20b,8},{0x70b2,4}}, + {{0x44d2,6},{0x222c,6}}, {{0x1ab2,5},{0xb99,3}}, {{0xc2e,2},{0xb47,2}}, {{0xa7da,3},{0x298a,2}}, + {{0x166c,4},{0x4524,4}}, {{0x1977,8},{0xe70,4}}, {{0x19b3,4},{0x13eff,5}}, {{0xbe4,1},{0x11f2,3}}, + {{0x1c,1},{0x2971,3}}, {{0xb2f,1},{0xc829,4}}, {{0x1a10,2},{0x1762,3}}, {{0x1b183,8},{0xfee4,4}}, + {{0x89e6,5},{0xb79,6}}, {{0xbe4,1},{0xb066,2}}, {{0x10ea,3},{0x187c,3}}, {{0x47f8,8},{0x35d7,5}}, + {{0x278a1,3},{0x27a7f,2}}, {{0x17ec,5},{0x1907,3}}, {{0x41ef,2},{0x904d,5}}, {{0xe64,4},{0xb4e4,4}}, + {{0x27b95,4},{0x27a0d,2}}, {{0x16fc,4},{0x455b,6}}, {{0x1912,9},{0x2b,3}}, {{0x2445c,3},{0x28634,1}}, + {{0x271e,3},{0xd0b,3}}, {{0x1e45,3},{0x104c5,2}}, {{0x26c6,1},{0x2977,9}}, {{0x27d2,6},{0x3b1a,4}}, + {{0x4106,5},{0xf469,6}}, {{0xb79,2},{0x253a,4}}, {{0x1408,3},{0xc67,2}}, {{0x37d6,9},{0x10c3,5}}, + {{0x27b4,3},{0x2a09,4}}, {{0x3a16,4},{0x2a16,3}}, {{0xc29,2},{0x290e,4}}, {{0x2ad93,4},{0x2ad97,4}}, + {{0xbeb,1},{0x182fb,6}}, {{0xbcb,3},{0x1393,3}}, {{0xbaa2,4},{0xd136,4}}, {{0xeaa3,5},{0x148cb,4}}, + {{0x2ade9,4},{0xb48,2}}, {{0x2769d,4},{0xaee7,2}}, {{0x27a3d,2},{0x278af,1}}, {{0x3678,8},{0x16d2,2}}, + {{0xaca2,3},{0xbed,2}}, {{0x17552,6},{0x3776,3}}, {{0x22cf8,1},{0x2446f,2}}, {{0x28f6,2},{0x3f82,3}}, + {{0xca6,2},{0xb9c,2}}, {{0x10fb,6},{0xb75,2}}, {{0xbd4,2},{0xb63,2}}, {{0x116e,1},{0x116d,2}}, + {{0x434f,2},{0x10ef,1}}, {{0x377c,3},{0xae7,2}}, {{0x167c,4},{0xc51,2}}, {{0xcb5,3},{0x7562,3}}, + {{0xaca2,3},{0x2098b,2}}, {{0x271e,3},{0x21842,4}}, {{0xc60,3},{0xaf2,1}}, {{0x1878,1},{0xcacf,7}}, + {{0xb7d,1},{0xae5,1}}, {{0x364e,4},{0x103a,3}}, {{0x2796,3},{0x2d,1}}, {{0x177c,3},{0x2d,1}}, + {{0x3988,10},{0x1719,3}}, {{0x193c6,5},{0x29da,3}}, {{0x142e,1},{0x145cd,3}}, {{0xecc,3},{0xb52,6}}, + {{0x27e2a,2},{0x1b6cb,1}}, {{0x441c,3},{0xbb15,3}}, {{0x27b95,4},{0x1b6ab,2}}, {{0x286a,2},{0x1aa6,3}}, + {{0x134c,5},{0x8193,7}}, {{0xb7f,3},{0x1208d,7}}, {{0x178c,3},{0x1f29c,5}}, {{0x1509a,4},{0xcbd,3}}, + {{0x15e79,5},{0xb8d,3}}, {{0x29ac,9},{0x29b5,5}}, {{0x511c,8},{0x1f13,4}}, {{0xb64,2},{0x4582,3}}, + {{0xeb9,5},{0xb54,2}}, {{0xae7,2},{0xbb4,2}}, {{0x6742,5},{0x8472,4}}, {{0x2445f,1},{0x28e51,3}}, + {{0xbe7,1},{0x750e,4}}, {{0x17ae,1},{0x423e,1}}, {{0x16f1,3},{0xdfb,3}}, {{0x1a3b5,6},{0x4189,3}}, + {{0x19afb,6},{0xec6d,3}}, {{0xcfd,5},{0x7445,5}}, {{0x271e,3},{0x1018,3}}, {{0x26c4,4},{0x1c,1}}, + {{0x1fad9,4},{0x2056,4}}, {{0x17ec,5},{0xb7d,1}}, {{0x279b9,2},{0x278a9,1}}, {{0x508d,5},{0x8c88,6}}, + {{0x6f4a,2},{0xd5b0,5}}, {{0xbe0,1},{0xb52,2}}, {{0x178c,3},{0x7681,7}}, {{0xfed0,8},{0x30,6}}, + {{0x110c2,5},{0xab28,4}}, {{0xb73,2},{0x9a6a,8}}, {{0x709a,4},{0x1b887,2}}, {{0xb2f,1},{0x1b25b,4}}, + {{0xee8,3},{0x2b,1}}, {{0x3782,9},{0x10c4,4}}, {{0xc6d,7},{0x10ec,1}}, {{0xab9a,3},{0x1b4f,3}}, + {{0xd54,1},{0xaf2,1}}, {{0xcc7,3},{0xb4a,2}}, {{0xc6f,5},{0x1403,9}}, {{0x89da,5},{0x43bd,4}}, + {{0xc77,2},{0x1bdc8,4}}, {{0x924,2},{0x279ef,2}}, {{0x19ae0,6},{0x2f3c,3}}, {{0xaf1,1},{0xcb8,3}}, + {{0x3234,3},{0x1862,3}}, {{0x61ac,6},{0x2bba,6}}, {{0x20d9,4},{0xc67,2}}, {{0x1ae4e,2},{0xd5c,1}}, + {{0x251cb,1},{0x432,2}}, {{0xba5,5},{0x11afa,4}}, {{0x2c8f0,4},{0x410e,2}}, {{0x1e45,3},{0xcd5,2}}, + {{0x142c,3},{0xc55,2}}, {{0x10f0,1},{0x135f,3}}, {{0xfe38,4},{0xeb2,1}}, {{0x24525,4},{0x244c7,2}}, + {{0x17ec,6},{0x9d00,6}}, {{0x2b,2},{0xae9,2}}, {{0x1bc0,10},{0xb65,2}}, {{0x3162,7},{0xb52,6}}, + {{0x12dc,8},{0x67c0,3}}, {{0x22cf8,1},{0x24,1}}, {{0x6b52,4},{0xb881,6}}, {{0x1b140,3},{0x924,3}}, + {{0xb87c,6},{0x8a43,3}}, {{0xc1c,2},{0x11b6,5}}, {{0x3234,3},{0x9b41,5}}, {{0x29e05,4},{0x10f6,1}}, + {{0x924,2},{0x27aaf,2}}, {{0x1abf8,7},{0xfe5,2}}, {{0x1084,3},{0x101b,3}}, {{0x1436e,5},{0x1439b,5}}, + {{0xeb95,6},{0x9133,3}}, {{0x10ef,1},{0x29386,2}}, {{0x283b,5},{0xaae8,2}}, {{0x6d81,3},{0x2c00,5}}, + {{0x5915,5},{0x497b,3}}, {{0x236d1,5},{0x1d,1}}, {{0xcd2,4},{0x1e,1}}, {{0x278a1,3},{0x27947,2}}, + {{0x16dc,5},{0x4ae5,5}}, {{0xae4,2},{0xc67,2}}, {{0x29e05,4},{0x10f3,1}}, {{0x8962,6},{0x8560,6}}, + {{0xbc0,2},{0x25da,3}}, {{0x6dd7,3},{0x3a39,3}}, {{0x143c,5},{0x173e,3}}, {{0x5fcb,7},{0x5fd2,6}}, + {{0x20a85,4},{0x9988,3}}, {{0x1a,3},{0x1563,5}}, {{0xc2e,2},{0x14e1,4}}, {{0x22e6,5},{0xb85,2}}, + {{0xfda,6},{0x5c76,4}}, {{0x4cff,9},{0xd0d,2}}, {{0x4fbd,6},{0xf8f,5}}, {{0xb2c,2},{0xcb8,2}}, + {{0x46a0,6},{0xd0d,2}}, {{0x1ff79,5},{0x12f1,3}}, {{0x139e,2},{0x21585,3}}, {{0x13f2e,3},{0x12ff,2}}, + {{0x122c,4},{0xd7c1,5}}, {{0xf40c,5},{0xf411,6}}, {{0x762a,4},{0xb63,3}}, {{0x1d697,5},{0x1a4ed,3}}, + {{0x8c4,4},{0x30,54}}, {{0x10fb,4},{0x1b695,2}}, {{0x362a,5},{0x67c0,3}}, {{0x177c,3},{0x2ea9,5}}, + {{0x10188,4},{0x1015c,4}}, {{0x10f7,1},{0xb8a,2}}, {{0x10ca,1},{0x20a1f,2}}, {{0xc25,3},{0xb52,5}}, + {{0xd0b,3},{0x92ec,3}}, {{0x16dc,5},{0x9ebc,6}}, {{0x24ee2,3},{0xb98,2}}, {{0x25210,6},{0x25216,4}}, + {{0x13bc,4},{0x1b,1}}, {{0x432,1},{0x117c,1}}, {{0x3694,4},{0x4119,3}}, {{0x1e029,7},{0x1e,1}}, + {{0x23c7,7},{0x6430,6}}, {{0xb2f,1},{0x19137,4}}, {{0xc13,4},{0x29a2,10}}, {{0x2cd58,4},{0x1b709,2}}, + {{0x27b6,1},{0x2844,2}}, {{0xabb4,4},{0xabc4,6}}, {{0x725e,5},{0x15e6c,4}}, {{0x2b87e,4},{0x1015e,2}}, + {{0x1089,2},{0x2d,1}}, {{0xb87c,6},{0x50fd,5}}, {{0x181c,3},{0x1560b,7}}, {{0x4cd8,6},{0xd1a,2}}, + {{0xcb8,3},{0x1c8f,3}}, {{0x1ed58,1},{0x9c9,1}}, {{0x1c,1},{0xdac,2}}, {{0x17fc,5},{0x1a7fb,4}}, + {{0x432,1},{0x27cf6,2}}, {{0x2451f,4},{0xfefe,2}}, {{0x249e5,4},{0xae0,1}}, {{0x4e51,9},{0xc7b,4}}, + {{0x2a38,12},{0xb2e,2}}, {{0xb70,2},{0x1257,3}}, {{0x139c,14},{0xd0d,2}}, {{0x147d8,7},{0xf59,3}}, + {{0xbeb,1},{0x24292,3}}, {{0x317e,9},{0xb8f,3}}, {{0xb12e,4},{0xb2e,2}}, {{0x278d6,1},{0x1173,2}}, + {{0x29b0d,3},{0x10ef,1}}, {{0xecc,3},{0x1058,9}}, {{0xadce,5},{0x4687,5}}, {{0x24460,3},{0x28634,1}}, + {{0xaae6,4},{0xf8d1,2}}, {{0xcfd,6},{0x9d00,6}}, {{0x30,2},{0x1712f,3}}, {{0xab9a,3},{0x102f9,3}}, + {{0x116e,1},{0x27aeb,2}}, {{0x152c4,2},{0xbeb,1}}, {{0x2c3e6,4},{0x1b25d,2}}, {{0x924,1},{0x27983,2}}, + {{0x6e10,4},{0x176e9,4}}, {{0x271e,3},{0xfcaf,2}}, {{0x278a1,3},{0x27a55,2}}, {{0xee1,3},{0x2b,3}}, + {{0x70e2,3},{0xc89,3}}, {{0x14fdc,6},{0xb60f,4}}, {{0x3e92,3},{0x11c4,6}}, {{0xddd5,7},{0x10dc,2}}, + {{0xcd9,3},{0xae0,1}}, {{0xab54,3},{0x14e1,4}}, {{0x70ea,3},{0x14d5,3}}, {{0xedb,4},{0xb78,2}}, + {{0x5fbe,9},{0x5fc7,4}}, {{0x1ad0,4},{0x1a,2}}, {{0xbde,3},{0x24179,4}}, {{0x251d8,2},{0x2445f,1}}, + {{0xf85,4},{0x12fde,6}}, {{0x276bd,2},{0x10ef,1}}, {{0x22ffb,5},{0x23000,2}}, {{0xbe7,1},{0x28da,1}}, + {{0x41da,3},{0xce8,3}}, {{0x2789b,3},{0x116d,2}}, {{0x1051,7},{0x1081,3}}, {{0x3170,5},{0x1a4f,9}}, + {{0x1a8aa,6},{0x10569,3}}, {{0x41be,3},{0x28da,1}}, {{0x17ac,7},{0x1058,9}}, {{0x116e,1},{0x27ac1,2}}, + {{0x1e45,3},{0xb70,2}}, {{0x145f8,5},{0x14a8,4}}, {{0x7052,3},{0xe49,4}}, {{0x2b852,4},{0x70a2,2}}, + {{0x1a29c,6},{0x2b,3}}, {{0x147c,5},{0x5fa0,4}}, {{0x4dcf,9},{0xb63,2}}, {{0xae5,1},{0xcbd,3}}, + {{0x1ed51,3},{0x948,1}}, {{0x20e8,5},{0xc7b,4}}, {{0x271e,3},{0x5562,8}}, {{0xbeb,2},{0x128d5,4}}, + {{0x10ef,1},{0x9b89,7}}, {{0x122c,4},{0xc905,4}}, {{0x4d9b,8},{0xff7,5}}, {{0x16ae,3},{0x16b1,6}}, + {{0x4fbd,4},{0x89b9,4}}, {{0x278a1,3},{0x279a1,2}}, {{0x1095,3},{0x11ef,3}}, {{0x177c,3},{0xf63c,2}}, + {{0xbace,7},{0xbad5,4}}, {{0x6bc7,9},{0x13a6,4}}, {{0x11234,6},{0xd7f,3}}, {{0xc25,4},{0x1700,4}}, + {{0x1b237,8},{0x1b23f,8}}, {{0xad26,8},{0xb68,4}}, {{0xaa98,2},{0x26c6,1}}, {{0x2790b,2},{0x278a9,1}}, + {{0xe64,5},{0xe69,12}}, {{0xd41,4},{0x10e1,3}}, {{0x2c17,3},{0xb52,5}}, {{0x1095,3},{0xcde,3}}, + {{0x4fbd,4},{0xc1e,2}}, {{0x4212,9},{0xc7b,4}}, {{0x116d,1},{0x27ad9,2}}, {{0x6d81,3},{0x1d,2}}, + {{0x10f3,1},{0xb47,2}}, {{0xa02a,6},{0x4797,5}}, {{0x144c,6},{0xf10,3}}, {{0x33fa,3},{0xbb1,3}}, + {{0x136ee,7},{0xae7,1}}, {{0x1084,3},{0xb2c,2}}, {{0xc89,2},{0xd51,2}}, {{0x7c4,4},{0x7c4,1}}, + {{0x2974,5},{0x16be,3}}, {{0x17ac,3},{0x2905e,2}}, {{0x17bc,3},{0x43e3,1}}, {{0xaf62,2},{0x1f95e,3}}, + {{0xd54,1},{0x1574b,7}}, {{0x147e,5},{0x12be,3}}, {{0xbafa,5},{0x74fa,3}}, {{0x498b,8},{0x4993,5}}, + {{0x244b9,2},{0xf907,2}}, {{0x4ab6,7},{0xb52,6}}, {{0x17241,6},{0xb8f,2}}, {{0x292a7,4},{0x6ac5,1}}, + {{0x1b,1},{0x2cfff,4}}, {{0xb64,2},{0xb9c,2}}, {{0x3ca6,8},{0xc63,3}}, {{0x19ba,3},{0xcb8,3}}, + {{0x181c,3},{0x273bd,2}}, {{0x3242,5},{0xff7,5}}, {{0x1b72f,6},{0x1b735,8}}, {{0xaf3,4},{0xc601,2}}, + {{0x3ee4,5},{0x9484,6}}, {{0x6ac5,1},{0x4351,2}}, {{0x177c,3},{0xc51,2}}, {{0x40c0,4},{0x10836,6}}, + {{0x15dc,7},{0x4076,4}}, {{0x27b4,3},{0x142e,1}}, {{0x6d81,3},{0x915e,4}}, {{0x5495,4},{0xb52,5}}, + {{0xaf1,1},{0xbc6,2}}, {{0x5442,4},{0xbd4,2}}, {{0x7102,5},{0xbb2,2}}, {{0x20ac,6},{0x25da,3}}, + {{0xb55,2},{0xd7f,3}}, {{0x16dc,4},{0x22e1,4}}, {{0xc37,3},{0xeb1,2}}, {{0x6ac3,3},{0xc1c,2}}, + {{0x2520a,2},{0x28633,2}}, {{0xd5c,2},{0x14d4,3}}, {{0x6d9b,6},{0x2976,3}}, {{0x21e7,11},{0xb63,2}}, + {{0x2742,3},{0x28,1}}, {{0xbd4c,5},{0x1260,4}}, {{0x432,64},{0x432,6}}, {{0x532,66},{0x30,46}}, + {{0xd6b3,7},{0x41ba,4}}, {{0x10038,4},{0x1387,4}}, {{0x4290,4},{0x2382,9}}, {{0x159c,5},{0xb55,2}}, + {{0xfda,11},{0xff6,6}}, {{0x31e0,5},{0x3fdb,5}}, {{0x251fe,2},{0x251d8,2}}, {{0x263d,8},{0x18d8,3}}, + {{0x27db3,4},{0x244c7,2}}, {{0x422e,3},{0x26f6e,3}}, {{0x3694,4},{0x1fc4,3}}, {{0xfa21,3},{0x55f6,6}}, + {{0x97ae,9},{0xb7c,3}}, {{0x23c52,5},{0xb63,2}}, {{0x40b2,4},{0x2891,3}}, {{0x1b721,6},{0x709c,4}}, + {{0xbde,3},{0xb8d,5}}, {{0x17ac,3},{0x2843,2}}, {{0x1a1f4,2},{0xa7d8,2}}, {{0x10c80,7},{0x2b,3}}, + {{0x28,2},{0xe6d,2}}, {{0x430,18},{0x432,14}}, {{0x28da,4},{0xae7,1}}, {{0x10fa,1},{0x10f2,1}}, + {{0x41da,3},{0x67c0,3}}, {{0x7c4,16},{0x7c4,1}}, {{0xb661,6},{0xb7a,5}}, {{0x1869,5},{0xeb2,1}}, + {{0xa582,7},{0x10c3,5}}, {{0xd41,3},{0x1762,3}}, {{0xfe38,4},{0x760b,7}}, {{0xddc,4},{0xb63,2}}, + {{0x617a,5},{0xb52,5}}, {{0x271e,3},{0x26754,2}}, {{0x4106,4},{0x28e2,4}}, {{0xbe7,1},{0xd0d,2}}, + {{0x6ac3,3},{0xdf0,2}}, {{0xf63,5},{0x1308,3}}, {{0x1f2f1,7},{0x28,1}}, {{0x26b5,8},{0x103b,5}}, + {{0xbde,3},{0x2bfc,3}}, {{0xcd9,5},{0x2c5c,7}}, {{0x2789b,3},{0x278cf,2}}, {{0xd149,6},{0xe7b,3}}, + {{0xac42,9},{0x25c2,3}}, {{0x27a31,2},{0x278a9,1}}, {{0x4604,4},{0xb9d,3}}, {{0x4fbd,4},{0x535b,5}}, + {{0x4bad,8},{0x1152,3}}, {{0x251cb,1},{0x9a9,1}}, {{0x14cc,4},{0x10dc,2}}, {{0xab9a,3},{0x14b6,2}}, + {{0xeee4,8},{0xae7,1}}, {{0x100f,3},{0xe483,6}}, {{0x416c,3},{0x32d5,4}}, {{0x13e0a,7},{0x2b,3}}, + {{0x27b4,4},{0xb8b,2}}, {{0x20bb,3},{0x1c25,3}}, {{0x16dc,5},{0x2409,5}}, {{0xaa98,2},{0xae7,1}}, + {{0x41c0,2},{0x2d,1}}, {{0x2d,1},{0xc8a3,3}}, {{0xcc7,3},{0x155b0,3}}, {{0xd0f,4},{0x46f8,3}}, + {{0x6b6c,5},{0x4bcc,8}}, {{0x2445c,4},{0x24460,3}}, {{0x178c,3},{0xa7d8,2}}, {{0x2c6c8,4},{0x70ce,2}}, + {{0xa7da,3},{0x1402,3}}, {{0x29f18,3},{0x278a9,2}}, {{0x2789b,3},{0x27aaf,2}}, {{0xd78,5},{0x46c7,6}}, + {{0x1929d,5},{0xae7,1}}, {{0x1c,1},{0x42a6,4}}, {{0x2b,1},{0xcb8,3}}, {{0x2445e,2},{0x1ed53,1}}, + {{0x35f1,2},{0x1b3bd,2}}, {{0x10ef,1},{0xbd3,3}}, {{0xb7d,1},{0x5c76,4}}, {{0x178c,3},{0x1a81d,2}}, + {{0x6d8e,3},{0xcc0,3}}, {{0x1cbf,5},{0x2b,2}}, {{0x10a1,3},{0xb52,5}}, {{0x1369e,7},{0xaf2,1}}, + {{0xceb,3},{0x7444,2}}, {{0xcd9,5},{0x197e,8}}, {{0x15ab8,4},{0x15a62,5}}, {{0x1e,1},{0x1308,4}}, + {{0xae2,2},{0x79f9,4}}, {{0x10fb,3},{0xbd90,3}}, {{0x2ada9,4},{0xaf1,1}}, {{0xf699,3},{0x13a3,3}}, + {{0x6d40,9},{0xc7b,4}}, {{0x5fbe,9},{0x2195,3}}, {{0x1f08,11},{0x1f13,4}}, {{0x20bb,3},{0x182fb,6}}, + {{0x235b2,5},{0x11ef,2}}, {{0xcab,3},{0x28,1}}, {{0x1b7bd,8},{0x1b203,4}}, {{0x256b,4},{0x1254,3}}, + {{0xdcb,7},{0x4867,6}}, {{0x17a3e,6},{0x748e,3}}, {{0x116e,1},{0x27b03,2}}, {{0x27b4,3},{0x1e1d4,3}}, + {{0x3e04,5},{0xe1d,3}}, {{0x6cc0,2},{0x9ff5,4}}, {{0x219c,4},{0xdcbb,7}}, {{0x9106,5},{0x84f6,4}}, + {{0xb7f,3},{0x1c68,3}}, {{0x422e,3},{0x6ac5,1}}, {{0xbd8,2},{0xae5,1}}, {{0xd5b6,6},{0x2195,3}}, + {{0xeb9,5},{0xd17,3}}, {{0x15b52,4},{0x6fae,2}}, {{0x10ea,3},{0x67c0,3}}, {{0x1b693,2},{0x285c4,3}}, + {{0xf95b,3},{0x4ae5,5}}, {{0xa07e,5},{0xb8f,2}}, {{0xaea,1},{0x8e92,4}}, {{0x1aa48,5},{0x69ce,3}}, + {{0x2445f,1},{0x251de,2}}, {{0x27b4,3},{0x15adc,2}}, {{0xbd1,2},{0xc55,2}}, {{0xbcb,3},{0x12ff,2}}, + {{0x1f,1},{0xb47,2}}, {{0x271e,3},{0x26bfc,3}}, {{0x5af6,9},{0xbb4,4}}, {{0xb31,1},{0x27cc5,2}}, + {{0x116d,1},{0x27aa9,2}}, {{0xeee,5},{0x11c3,7}}, {{0x1476c,3},{0x10a0f,5}}, {{0x1c,1},{0xd256,4}}, + {{0x1b140,2},{0x27897,2}}, {{0x1a32e,4},{0xaea,1}}, {{0x5a74,6},{0x12ad6,4}}, {{0x593c,7},{0x5943,6}}, + {{0xaea,1},{0x1089,2}}, {{0xb4a,3},{0x9f6f,6}}, {{0xfb1,3},{0x28,1}}, {{0xaec,2},{0x1d,1}}, + {{0x1ed69,3},{0xb401,2}}, {{0x6d81,3},{0x6661,4}}, {{0x2f32,11},{0x1719,3}}, {{0xc13,4},{0x104e4,6}}, + {{0x5a8e,6},{0x23ea,5}}, {{0x24462,1},{0x27e79,4}}, {{0x9b1a,5},{0x1d10,3}}, {{0x2c866,4},{0x159cb,2}}, + {{0xbe4,1},{0x16f1,3}}, {{0xff20,4},{0x70a4,4}}, {{0x16b59,6},{0x2b,3}}, {{0x2b,1},{0x10b3,4}}, + {{0x4f71,3},{0x1e1f,8}}, {{0xae7,2},{0x10e2b,3}}, {{0xbe7,1},{0xbfc4,6}}, {{0x1b140,2},{0x27aaf,2}}, + {{0xeb9,6},{0xbd6,6}}, {{0x159c9,6},{0x159cf,7}}, {{0x1a81a,6},{0x1a820,3}}, {{0x10f7,1},{0x1c68,3}}, + {{0x2789b,3},{0x27a7f,2}}, {{0x14fb4,5},{0xf594,4}}, {{0x10f0,1},{0x1cef,3}}, {{0x17ae,1},{0x10f6,1}}, + {{0x263f,3},{0xc34,2}}, {{0x273ab,2},{0x1b137,3}}, {{0x10fd2,8},{0x10dc,2}}, {{0xb7c,2},{0xb52,2}}, + {{0x16bc,4},{0x14106,6}}, {{0x1c1a,6},{0x116fe,4}}, {{0xc37,3},{0x3cba,3}}, {{0xa2be,7},{0xb77,3}}, + {{0x3234,3},{0x89f5,9}}, {{0x10196,4},{0x2ac7f,4}}, {{0xa62a,7},{0xff7,5}}, {{0x2ca22,4},{0x159cb,2}}, + {{0x1040,13},{0xd0b,4}}, {{0x2aa8b,4},{0x1b6f3,4}}, {{0x422e,3},{0x2bfc,2}}, {{0x71fe,7},{0xb8d,5}}, + {{0x10ee4,5},{0xb2e,2}}, {{0xff34,8},{0xff3c,12}}, {{0x244f5,6},{0x244fb,6}}, {{0xab9a,3},{0x165cf,5}}, + {{0x1213e,5},{0xb65,2}}, {{0x1529a,3},{0xae6,2}}, {{0xaf1,1},{0x19137,4}}, {{0x2c76,4},{0x16f8,3}}, + {{0x18e1,5},{0x4559,8}}, {{0xf52,5},{0x1907,3}}, {{0x474f,8},{0x11ef,2}}, {{0x2474d,4},{0x2456b,2}}, + {{0xb7f,3},{0x2b,3}}, {{0x423e,1},{0xab9c,1}}, {{0x142ba,6},{0x142c0,4}}, {{0xbde,3},{0x28da,1}}, + {{0x1b3bd,2},{0x1b3bf,6}}, {{0x780,1},{0x2875d,6}}, {{0x10fb,3},{0xab28,4}}, {{0xf65,5},{0x5bc0,6}}, + {{0x7c96,8},{0x11b8,4}}, {{0x177e,2},{0x8a41,5}}, {{0x7a6e,4},{0x1d,3}}, {{0xb60,2},{0xb8a,2}}, + {{0x84a6,5},{0xb63,2}}, {{0x3c9d,4},{0xcf0,2}}, {{0x14c26,7},{0x1257,3}}, {{0x180c,4},{0xcbd,3}}, + {{0x27897,1},{0x27897,2}}, {{0x5442,4},{0x2b,1}}, {{0x3758,4},{0x12373,5}}, {{0x5399,6},{0x20cd,7}}, + {{0x2789b,3},{0x27af1,2}}, {{0xb78,2},{0xb6e,2}}, {{0xc37,3},{0x11ef,2}}, {{0x3e58,4},{0x7b4e,3}}, + {{0xaad1,3},{0xae7,1}}, {{0x740e,5},{0x1062f,5}}, {{0x6074,8},{0x11b8,4}}, {{0x118c,5},{0x1191,5}}, + {{0x6ab6,9},{0xc7b,4}}, {{0x1a1d6,6},{0xc63,3}}, {{0xae9a,5},{0x11e2,3}}, {{0xca7,3},{0xb9c,2}}, + {{0x39f8,5},{0x2de9,7}}, {{0x10c8,4},{0xdfa,3}}, {{0x14d5,3},{0x1254,6}}, {{0xc13,4},{0x1036,3}}, + {{0x2eec,11},{0x1a,1}}, {{0x181c,3},{0x1197,4}}, {{0x6d8e,3},{0xaec,2}}, {{0x24519,4},{0x157f2,2}}, + {{0x278dc,1},{0x278e1,2}}, {{0x5aa8,6},{0x861c,4}}, {{0xcdd9,6},{0x10dc,2}}, {{0xb8f,2},{0xeb3,3}}, + {{0xf14,2},{0xfde,2}}, {{0xb30,2},{0x27d08,2}}, {{0x1408,3},{0x11e4,4}}, {{0x6f21,4},{0xc57,3}}, + {{0x6cf2,8},{0xb52,5}}, {{0x2796,3},{0x1942,4}}, {{0xf14,2},{0xd1b,1}}, {{0xfd30,7},{0x14a8,4}}, + {{0x142e,1},{0x2b0bc,3}}, {{0xaea,3},{0x1016,4}}, {{0x20,3},{0x4ae5,5}}, {{0x2c662,4},{0x70da,2}}, + {{0xbac,4},{0xee0,3}}, {{0xedb,5},{0x2a4d,6}}, {{0xd8e,3},{0xb75,2}}, {{0x4f62,5},{0xce37,4}}, + {{0x3234,3},{0x1b,1}}, {{0xb2e,2},{0x1a,2}}, {{0xc13,3},{0xb85,2}}, {{0xdd5,4},{0xb7c,3}}, + {{0x2ede,6},{0x4ae5,5}}, {{0x14fb4,7},{0x25c2,3}}, {{0xf6a2,8},{0xae6,3}}, {{0xbde,3},{0x229de,4}}, + {{0x97d8,3},{0x1b22,3}}, {{0xae0,1},{0x142e,1}}, {{0x1051,4},{0x1642,3}}, {{0x178c,3},{0x43e5,3}}, + {{0x2789b,3},{0x27ac1,2}}, {{0x2408,7},{0xb7c,3}}, {{0xbeb,1},{0x1abd7,2}}, {{0x10fb,3},{0x68fe,5}}, + {{0xf52,4},{0xc50d,6}}, {{0x2796,4},{0x42a2,10}}, {{0x2ada9,4},{0x287e7,4}}, {{0xaea,2},{0xf29,3}}, + {{0x1d1b5,5},{0x1081,3}}, {{0x10fb,3},{0x12141,3}}, {{0x67aa,6},{0x12baf,4}}, {{0x21075,7},{0xbd7,2}}, + {{0x278c9,2},{0x116e,2}}, {{0x3cde,8},{0xc9f,4}}, {{0xbcb,3},{0x1719,3}}, {{0x10ef,1},{0xc67,3}}, + {{0xb52,2},{0xfb89,4}}, {{0xb17b,7},{0x789d,4}}, {{0xde9,1},{0x5af9,3}}, {{0xd17,3},{0xb645,6}}, + {{0xe2dc,5},{0x25c2,3}}, {{0xbde,3},{0x1f13,4}}, {{0x16ae,3},{0x1964a,4}}, {{0x28da,1},{0xc63,3}}, + {{0x4196,4},{0xaf2,1}}, {{0x422e,3},{0xf5f4,2}}, {{0x9baa,5},{0x8ba7,6}}, {{0xaca2,3},{0x4288,2}}, + {{0xbe4,1},{0x1b4b,3}}, {{0x2b,1},{0x1b3c8,9}}, {{0x10ba,2},{0xc4b,3}}, {{0x48a1,6},{0x3bc2,4}}, + {{0xb7c,2},{0xc77,2}}, {{0x13d10,5},{0xc3b9,5}}, {{0x1a8b3,5},{0xa084,4}}, {{0x244f5,4},{0x6f66,2}}, + {{0x2912,5},{0x1a11,2}}, {{0x25ebb,5},{0xae7,1}}, {{0xc7eb,7},{0xc55,2}}, {{0x1f159,4},{0x13719,4}}, + {{0xaaf2,5},{0x8793,7}}, {{0x6d81,3},{0x1f2c4,2}}, {{0x10c8,3},{0x3e2a,4}}, {{0x1b22,3},{0x10dc,2}}, + {{0x19b3,4},{0x1073c,6}}, {{0x10ea,3},{0x1f965,2}}, {{0x16ac,5},{0xb64,3}}, {{0xaa26,8},{0xebf,3}}, + {{0x203bb,2},{0x1489,3}}, {{0x1d5a,3},{0x4246,4}}, {{0x10d9,5},{0x12d6,6}}, {{0x1ad0,4},{0x9133,3}}, + {{0x29f18,3},{0x1b140,2}}, {{0xb66,2},{0x6430,6}}, {{0xbaa2,4},{0x14139,4}}, {{0x26f1,4},{0xb70,2}}, + {{0xaf3,4},{0x1cf1d,2}}, {{0x1051,4},{0x12231,3}}, {{0x27e2a,2},{0x27e20,2}}, {{0xeb9,4},{0x1520,2}}, + {{0x866e,8},{0xbd3,3}}, {{0x1051,7},{0x1058,10}}, {{0x3de8,5},{0xc1c,2}}, {{0x1b7bb,6},{0x1b7c1,8}}, + {{0x2c554,4},{0x410e,2}}, {{0xcc7,3},{0xbc1,2}}, {{0x19f3c,4},{0x10ef,2}}, {{0x263d,10},{0x10c3,5}}, + {{0x11932,6},{0x2b3e,4}}, {{0x180e,2},{0x1a10,2}}, {{0xcd9,3},{0xf14,2}}, {{0x6f21,5},{0x7b33,7}}, + {{0x1b5c,3},{0xcc3,4}}, {{0x423c,3},{0x6008,4}}, {{0xddc,4},{0x16548,5}}, {{0x12be,3},{0x7b96,4}}, + {{0xbb5,1},{0xb9d,3}}, {{0x1935a,5},{0x2be6,4}}, {{0xd54,8},{0xd5c,9}}, {{0x18ceb,6},{0x1a9d,3}}, + {{0x159c,4},{0xaec,2}}, {{0x10f8,2},{0x10ef,1}}, {{0x278a1,3},{0x27953,2}}, {{0x162c,6},{0xc1e,2}}, + {{0xf304,8},{0xe7b,3}}, {{0xae6,3},{0xb8f,2}}, {{0x10fb,3},{0xe807,8}}, {{0xb8f,3},{0x2c,2}}, + {{0x7046,6},{0x704c,6}}, {{0x1b4e4,1},{0x24462,1}}, {{0x2931f,4},{0x10ef,1}}, {{0x178c,3},{0x14835,7}}, + {{0x278b3,4},{0x278bd,2}}, {{0x14c62,6},{0xc2ea,3}}, {{0x5d5b,5},{0x5d60,8}}, {{0x102c,3},{0xc39,2}}, + {{0x1b5b3,4},{0x15a70,4}}, {{0xf1f,11},{0xc9f,4}}, {{0x8d8e,7},{0xb52,5}}, {{0x285b,3},{0x2436,9}}, + {{0x178c,3},{0x1251,5}}, {{0x2798,2},{0x15f44,4}}, {{0x14bc2,5},{0x50ee,4}}, {{0xb2c,2},{0xb54,4}}, + {{0x2495d,8},{0x70a0,4}}, {{0x278dc,1},{0x27a01,2}}, {{0x10ea,3},{0x174bb,4}}, {{0x2789b,3},{0x27ab5,2}}, + {{0xaf2,1},{0x1016,4}}, {{0xae5,1},{0x459e,4}}, {{0x434f,2},{0x428d,3}}, {{0x48c8,6},{0xd14,4}}, + {{0x2d56,7},{0x2d5d,7}}, {{0x201f9,7},{0x10fa,1}}, {{0xbde,3},{0x1089,2}}, {{0xcd5,2},{0xb52,2}}, + {{0x16dc,4},{0xa45d,4}}, {{0x27b95,4},{0x27a19,2}}, {{0x1b4c,3},{0x700f,3}}, {{0x13cde,7},{0x2b,3}}, + {{0x14e58,4},{0x14a8,4}}, {{0x1144,4},{0x28da,4}}, {{0x2df0,8},{0x2df8,6}}, {{0x10fb,3},{0x1a1f7,2}}, + {{0x10b7,4},{0x9c66,4}}, {{0x3640,4},{0xbb5,1}}, {{0x5401,4},{0xb8f,2}}, {{0xede,3},{0x11f3c,4}}, + {{0xff20,4},{0x1018c,4}}, {{0x1175c,5},{0x4834,5}}, {{0x2935b,4},{0xbe0,1}}, {{0xb96e,7},{0x1668,4}}, + {{0xd1b,1},{0x35fd,3}}, {{0xcd5,2},{0xcc0,3}}, {{0x27d1b,2},{0x18,1}}, {{0x1878,1},{0x1f,1}}, + {{0x740e,5},{0xb511,6}}, {{0xbc2e,5},{0xc67,2}}, {{0x14dfc,7},{0xc8e,3}}, {{0xb0e1,4},{0xbb4,2}}, + {{0x17ee,4},{0x51ae,4}}, {{0x1b6ab,1},{0x1b6b3,2}}, {{0x14698,5},{0xeabc,5}}, {{0x278a1,3},{0x27965,2}}, + {{0x3996,5},{0x131b3,4}}, {{0xcf3e,2},{0x1489,3}}, {{0x4186,4},{0x10d89,4}}, {{0x287e7,2},{0x159cb,2}}, + {{0x1972,2},{0x1c25,4}}, {{0xc25,4},{0x2264,4}}, {{0x40b2,4},{0xbb15,6}}, {{0xaca2,3},{0xb82,2}}, + {{0x251fe,2},{0x25206,3}}, {{0x762a,7},{0x1278,4}}, {{0x4196,4},{0x103a,3}}, {{0xaea,3},{0x4240,3}}, + {{0xc0d2,8},{0xb54,3}}, {{0x116d,1},{0x27a07,2}}, {{0x1e,1},{0x1866,3}}, {{0x181c,3},{0x23bf2,2}}, + {{0x1509c,2},{0xae2,1}}, {{0x14fc,4},{0x28,1}}, {{0x248b5,8},{0x70a0,4}}, {{0x6ac5,1},{0xcd4,3}}, + {{0x16b8f,7},{0xaf1,2}}, {{0x1b,1},{0x142e,1}}, {{0xa7da,3},{0x23dde,3}}, {{0x432,32},{0x432,15}}, + {{0x25033,3},{0x25036,3}}, {{0x8b96,8},{0x1719,3}}, {{0xde2d,7},{0x5a52,4}}, {{0x17dc,5},{0xcb8,2}}, + {{0x36b0,6},{0x7639,4}}, {{0x1a5e3,6},{0x1408,3}}, {{0xecc,3},{0x2b,3}}, {{0x1ed58,1},{0x2445f,1}}, + {{0x178c,3},{0xfb1,2}}, {{0xb55,2},{0xb2c,3}}, {{0xca7,3},{0xb2f,1}}, {{0x1f6a1,5},{0x1493c,3}}, + {{0xbde,3},{0x1372,3}}, {{0x1a,1},{0xc095,6}}, {{0x17bc,4},{0xd1b0,7}}, {{0x41be,3},{0x197d,3}}, + {{0x1cbf,4},{0x3fdc,4}}, {{0x27aeb,2},{0x924,2}}, {{0xf6e4,5},{0xb8d,3}}, {{0x4b86,8},{0xc8c,5}}, + {{0x1ed51,3},{0x18,1}}, {{0x14a12,6},{0xd0b,3}}, {{0x116e,1},{0x278cf,2}}, {{0xbe7,1},{0x23006,3}}, + {{0xca3,7},{0x102c,3}}, {{0x17e93,6},{0xcc0,3}}, {{0x8482,7},{0x1761,4}}, {{0xb13f,3},{0xf954,5}}, + {{0x177c,7},{0x2a85,6}}, {{0x10300,6},{0x10306,4}}, {{0x178c,3},{0xa532,4}}, {{0x709c,4},{0x10164,8}}, + {{0x19c1b,4},{0xe0a,5}}, {{0xd645,7},{0xd64c,4}}, {{0xd5c,1},{0x1362,3}}, {{0x6f21,5},{0x4e98,7}}, + {{0x43e3,1},{0xcb8,2}}, {{0xd41,3},{0xfe5,2}}, {{0x10f6,1},{0x27,1}}, {{0x10c8,3},{0x2b03,5}}, + {{0x5b6b,9},{0xb7c,3}}, {{0x14cd0,5},{0xb9c,2}}, {{0x312c,3},{0xc55,2}}, {{0xc25,4},{0xc9a,2}}, + {{0x1cef,3},{0xaf2,1}}, {{0x968e,9},{0xc8e,3}}, {{0x1b6ab,1},{0x1173,2}}, {{0xda9,4},{0xb9e,2}}, + {{0xb63,3},{0xb2e,2}}, {{0xbe0,1},{0x1a1f4,2}}, {{0x219e5,5},{0xb67,2}}, {{0x21c20,5},{0x11ef,2}}, + {{0x17ac,4},{0x28,2}}, {{0x10f3,1},{0x18de2,4}}, {{0x162c,6},{0x1961,3}}, {{0xe7cd,8},{0xae6,3}}, + {{0x1b6ab,1},{0x278b5,2}}, {{0x159c8,1},{0x1ed57,2}}, {{0xe64,4},{0xfbeb,6}}, {{0x134c,5},{0x689b,6}}, + {{0x10f8,2},{0x1f2c5,2}}, {{0x1a36d,7},{0xd0d,2}}, {{0xb7d,1},{0x21,1}}, {{0x86da,5},{0xc4d,2}}, + {{0x14e24,8},{0x17be,2}}, {{0x532,6},{0x804,12}}, {{0x142c,3},{0x12231,3}}, {{0x5a19,9},{0xc7b,4}}, + {{0xb4bf,5},{0xb65,2}}, {{0x69cc,8},{0xb67,5}}, {{0xc25,4},{0xcf0,2}}, {{0xbb15,3},{0x1dac,3}}, + {{0xd0f,6},{0xe81c,4}}, {{0xae7,1},{0x1489,3}}, {{0x1cee,3},{0x849f,6}}, {{0x2313,9},{0xb54,4}}, + {{0xfa1f,5},{0x55f6,6}}, {{0x2844,2},{0xd5c,1}}, {{0xb44,3},{0xde1,2}}, {{0x364e,4},{0xa04a,3}}, + {{0x27a31,2},{0x116c,1}}, {{0x10ef,1},{0x1e3aa,5}}, {{0xaea,1},{0xaf1,2}}, {{0x2859,7},{0x2742,3}}, + {{0x97ea,9},{0xb2e,2}}, {{0x5f70,8},{0xc32,5}}, {{0xedb,4},{0x120d4,3}}, {{0xa4fe,6},{0xb52,6}}, + {{0x27b95,4},{0x2796b,2}}, {{0x423c,3},{0x2b,1}}, {{0x29064,2},{0x17ae,1}}, {{0x2311a,6},{0xae7,1}}, + {{0x1f019,4},{0x23006,3}}, {{0xa222,6},{0x173e,3}}, {{0x1e,1},{0x1f,2}}, {{0xb44,3},{0xcce,3}}, + {{0xd65,3},{0x4605,5}}, {{0x17be,2},{0xaf0,2}}, {{0xf96,4},{0x5306,4}}, {{0x27ce8,3},{0x27c9b,2}}, + {{0xff0c,8},{0xff14,12}}, {{0xfd25,5},{0x2db1,3}}, {{0x19174,6},{0xae7,1}}, {{0x406c,10},{0xc34,3}}, + {{0xa7da,3},{0xb29c,3}}, {{0xc37,3},{0x74b9,4}}, {{0x6b6c,9},{0x10c4,4}}, {{0x2322,6},{0x10e1,3}}, + {{0x219c,4},{0x4dc8,5}}, {{0x441c,3},{0xc4d,2}}, {{0x40f8,4},{0x290e,4}}, {{0x43e3,1},{0xc1c,2}}, + {{0x281d,5},{0x5444,3}}, {{0x1a9dc,6},{0xc63,3}}, {{0xb30,2},{0x2446d,2}}, {{0x28be,3},{0x43e8,8}}, + {{0xa8a8,3},{0xd17,3}}, {{0x116e,1},{0x27ad3,2}}, {{0x10ef,1},{0x3da5,4}}, {{0x12c6a,6},{0xaf2,1}}, + {{0x10fa,1},{0x10f7,1}}, {{0x27b4,11},{0x1577,4}}, {{0x14b90,5},{0x1d,1}}, {{0xbde,3},{0xdef,3}}, + {{0xb79,2},{0x1a,1}}, {{0x1cef,3},{0xb55,2}}, {{0x14620,6},{0xb68,4}}, {{0x116e,1},{0x278d5,2}}, + {{0xaea,2},{0xd48,2}}, {{0xc89b,9},{0x1bdc,2}}, {{0x208e,5},{0x19c9,8}}, {{0x14634,6},{0xb2c,4}}, + {{0x1a32e,4},{0xbd4,2}}, {{0xbde,4},{0xc78,3}}, {{0xbe0,1},{0x440f,2}}, {{0x3de8,5},{0x1c8f,3}}, + {{0x13aae,7},{0x1152,3}}, {{0x27e35,2},{0x1b4e3,1}}, {{0x5200,5},{0xfe5,2}}, {{0x1a560,2},{0x1aaed,1}}, + {{0x244b3,2},{0x6f72,2}}, {{0x13c70,6},{0x702a,4}}, {{0xce8,3},{0x1b22,3}}, {{0xae7,1},{0xb97,3}}, + {{0x6f62,4},{0x70da,2}}, {{0xaca2,4},{0x90f2,5}}, {{0x4354,7},{0x3e19,7}}, {{0x15590,7},{0xa60f,3}}, + {{0xaca2,4},{0xa5de,4}}, {{0x575b,10},{0xb9d,3}}, {{0x6769,7},{0xb51,6}}, {{0x30,2},{0x924,8}}, + {{0xb6b9,5},{0x1a8e,6}}, {{0x2657f,2},{0x24a30,3}}, {{0xa9c6,7},{0x80bd,5}}, {{0x12800,6},{0x2bca,4}}, + {{0x28634,1},{0x2446f,2}}, {{0xbb5,1},{0xbb4,2}}, {{0x446a,9},{0x3fdc,4}}, {{0xbcb,3},{0xc57,4}}, + {{0x6cbe,4},{0xc2e,2}}, {{0xeada,5},{0x10dc,2}}, {{0xb73,2},{0xc01b,6}}, {{0x1f8e1,5},{0x15b0,3}}, + {{0x3cc4,7},{0xdfb,3}}, {{0x70c6,4},{0x2ae5b,2}}, {{0x1fd81,5},{0x140a,2}}, {{0x11004,7},{0x2b,2}}, + {{0x6b11,5},{0x2abb,8}}, {{0x278d6,1},{0x279ef,2}}, {{0xae0,1},{0xb87,3}}, {{0x7e9a,5},{0xae8,2}}, + {{0x6812,5},{0x5e3f,6}}, {{0x1a76,6},{0xba45,5}}, {{0x26c4,3},{0xaeda,2}}, {{0x116d,1},{0x278c9,2}}, + {{0xb73,2},{0x114d,2}}, {{0x100ce,2},{0xfb1,2}}, {{0x12a62,7},{0xae7,1}}, {{0x9b62,8},{0x1408,4}}, + {{0xb44,4},{0xeb2,1}}, {{0x10ca,2},{0xb48,2}}, {{0x1b5c,3},{0x222c,6}}, {{0x5d27,8},{0xdc1,5}}, + {{0xb165,6},{0x1a35,5}}, {{0x2106,5},{0xb82,3}}, {{0x10ec,1},{0xccdf,8}}, {{0x159d7,3},{0xb13e,6}}, + {{0x8a0a,5},{0x8a0f,7}}, {{0xde2d,7},{0x1a,3}}, {{0xaaf4,3},{0x2d5d,4}}, {{0x2d64,6},{0x1a,2}}, + {{0xb54,3},{0xce8,3}}, {{0x1017e,6},{0x70a8,4}}, {{0x3db0,5},{0xd1b,1}}, {{0xbe0,2},{0x1a,1}}, + {{0x2912,4},{0x3fab,2}}, {{0x278d6,1},{0x27897,2}}, {{0x1f3a1,5},{0xb54,2}}, {{0xdba4,4},{0x79f9,4}}, + {{0x1713c,5},{0xae7,1}}, {{0x422e,3},{0x174e,3}}, {{0xd6be,7},{0x1278,4}}, {{0x1b801,6},{0x1b815,8}}, + {{0x3789,3},{0xbb5,1}}, {{0x24432,4},{0x10ef,1}}, {{0x142c,3},{0x50f0,5}}, {{0x1a39c,3},{0x7593,3}}, + {{0xa246,4},{0x5a52,4}}, {{0x286bb,4},{0x806,2}}, {{0xbd6,2},{0x2349,6}}, {{0xb4b,2},{0xb72,2}}, + {{0x441c,8},{0x2b75,5}}, {{0xfc07,5},{0xb9b,3}}, {{0x1a326,4},{0x1f,1}}, {{0x7222,5},{0x7200,3}}, + {{0x32c0,7},{0xb50,7}}, {{0xf8cf,2},{0xbeb,1}}, {{0xa222,8},{0xcc0,3}}, {{0x27d24,3},{0x112c,1}}, + {{0xd41,4},{0xd7f,3}}, {{0x1a,2},{0xaec,2}}, {{0xe69,3},{0x103a5,5}}, {{0xfcaf,2},{0x10ed,2}}, + {{0x8812,6},{0xb8f,2}}, {{0x2797d,2},{0x278a9,1}}, {{0x14cc,7},{0x14d3,9}}, {{0xdd5,2},{0x16a2,3}}, + {{0x422e,3},{0x459e,4}}, {{0x40b6,3},{0x10dc,2}}, {{0x180e,5},{0xe858,4}}, {{0x2789b,3},{0x27a91,2}}, + {{0x1e27,6},{0xc6a9,3}}, {{0xe86,8},{0xb63,2}}, {{0x139c,4},{0xb8f,3}}, {{0x2a964,4},{0x2446c,1}}, + {{0xf27c,3},{0xb48,2}}, {{0x22c0,3},{0xf5e,3}}, {{0x397c,4},{0x12d5,4}}, {{0x5bfa,7},{0xe70,5}}, + {{0x2c6f2,4},{0x96f,2}}, {{0x27e2a,3},{0x2446c,1}}, {{0x1a5d3,4},{0x5396,3}}, {{0xc25,3},{0x12ff,2}}, + {{0xd1b,1},{0x2ae7,4}}, {{0x30,2},{0x32f3,4}}, {{0x2350a,5},{0xb78,2}}, {{0xfc3e,6},{0xfc44,5}}, + {{0xaea,2},{0xaf2,1}}, {{0xbb5,2},{0x1d,1}}, {{0x1b09,3},{0x1b79,3}}, {{0x10fb,3},{0x10f2,2}}, + {{0x163f7,6},{0x2b,3}}, {{0x6e03,10},{0x1081,3}}, {{0x10ef,1},{0x4f65,3}}, {{0x10f6,1},{0x17ae,1}}, + {{0x1f,1},{0xd14,4}}, {{0x3af4,8},{0x6347,5}}, {{0x3a55,5},{0x2b,3}}, {{0x2b,2},{0x1644,5}}, + {{0x6b52,4},{0xc55,2}}, {{0x2523b,4},{0x1b6dd,4}}, {{0xb6c,3},{0x3203,5}}, {{0x20a00,6},{0xae7,1}}, + {{0x1a28a,4},{0xbe7,1}}, {{0x15b52,4},{0xfeee,2}}, {{0xf212,3},{0xcce,3}}, {{0x1361,2},{0x27,1}}, + {{0xbde,3},{0x1e983,4}}, {{0xb63,3},{0xc64,2}}, {{0x924,1},{0x1b6ab,2}}, {{0xae2,2},{0x139e,2}}, + {{0x1878,1},{0x30af,10}}, {{0x2a90,2},{0xcb8,2}}, {{0xd0fc,4},{0x4c0b,4}}, {{0x2cbf0,4},{0x1b205,2}}, + {{0xacba,4},{0x2c38,6}}, {{0x1395a,7},{0x25c2,3}}, {{0xab9a,3},{0x4446,6}}, {{0xbb2,2},{0xc1e,2}}, + {{0xb31,1},{0x27c9b,2}}, {{0x9a9,1},{0x251db,5}}, {{0x6c22,9},{0xeb3,3}}, {{0x27a01,2},{0x2797d,2}}, + {{0x19f18,6},{0xb79,2}}, {{0xb75,5},{0xd0b,4}}, {{0x136c,8},{0x1374,8}}, {{0xf52,4},{0x7fda,4}}, + {{0x177c,3},{0x5277,2}}, {{0x2867e,2},{0x28e7a,2}}, {{0x33fa,3},{0x1bdb,3}}, {{0xb79,2},{0x142e,1}}, + {{0xbde,3},{0xa7d1,2}}, {{0x26c6,2},{0xbb4,4}}, {{0x41be,4},{0x2a,3}}, {{0xb7f,3},{0x1685,3}}, + {{0xfde2,5},{0x1144,4}}, {{0x1fadb,2},{0x22dd,3}}, {{0x2c57e,4},{0xab1,2}}, {{0xc16c,8},{0x2b,3}}, + {{0x61c6,5},{0xcf0,2}}, {{0x236c3,5},{0x2b,2}}, {{0x8a16,5},{0xb64,2}}, {{0x42a2,4},{0xb2c,2}}, + {{0x1ab2,4},{0x9845,5}}, {{0xaf2,1},{0x16a1,3}}, {{0x178c,3},{0xeb2,2}}, {{0x67a6,3},{0xb48,2}}, + {{0x278d6,1},{0x278af,2}}, {{0x1e,1},{0x173e,3}}, {{0x70ac,4},{0xff20,4}}, {{0x1daf,5},{0x3789,3}}, + {{0xe397,5},{0xb64,2}}, {{0xbb4,2},{0x32f3,4}}, {{0x16dc,7},{0x40bc,4}}, {{0x78ca,4},{0xadf,2}}, + {{0x7426,6},{0x7438,6}}, {{0x16f8c,6},{0xeb2,3}}, {{0xbeb,1},{0x41b3,4}}, {{0x20b1f,6},{0x2864c,1}}, + {{0x1e9ff,4},{0xb55,2}}, {{0xb47d,5},{0xc30,2}}, {{0x278a1,3},{0x279a7,2}}, {{0x1d731,5},{0xae7,1}}, + {{0x19c24,4},{0x2195,3}}, {{0x2796,3},{0xdd5,2}}, {{0xb6a3,6},{0x11b7,4}}, {{0x1a32e,4},{0x1a33b,5}}, + {{0x1d73,6},{0xb7a,5}}, {{0x24ff3,2},{0x1a81d,2}}, {{0xb6c,3},{0xc3d,3}}, {{0x27,1},{0xcce,3}}, + {{0x30,128},{0x30,22}}, {{0xc25,4},{0xc52,2}}, {{0x145e6,3},{0x30f4,5}}, {{0xfbb2,5},{0xae7,1}}, + {{0x14134,7},{0xd7f,3}}, {{0xae0,1},{0x4fce,4}}, {{0x14fc8,6},{0xa5e6,4}}, {{0xbe7,1},{0xaea,1}}, + {{0x11da6,6},{0x14a8,4}}, {{0x1961,3},{0x1719,3}}, {{0x27b95,4},{0x27953,2}}, {{0x1459e,3},{0x1a,3}}, + {{0x2aacb,2},{0x1b25d,2}}, {{0xeb2,1},{0xc6a9,3}}, {{0x27989,2},{0x278a9,1}}, {{0x1051,4},{0xbd8,2}}, + {{0xeec,7},{0x1cd0,8}}, {{0xc89,2},{0xc9f,4}}, {{0x5e2d,4},{0x2d44,4}}, {{0x2796,3},{0xb52,2}}, + {{0x53e7,7},{0x101a,3}}, {{0x3234,3},{0x1444,7}}, {{0xfc6a,6},{0x2171,5}}, {{0x24,1},{0x28652,2}}, + {{0xcd9,3},{0xb7d,1}}, {{0x6d8e,3},{0x4694,5}}, {{0xf40c,5},{0xc6a9,3}}, {{0x16ee,2},{0xc63,3}}, + {{0x147c,5},{0x13852,4}}, {{0x3245,4},{0x1b371,4}}, {{0x142e,1},{0x12fe,1}}, {{0x2aa8,6},{0x1d11,5}}, + {{0xaefc,2},{0x1c1d1,4}}, {{0xcc7,3},{0xb7d,2}}, {{0x17157,6},{0x4031,3}}, {{0x1adf,5},{0x84ea,4}}, + {{0x287e5,4},{0x806,2}}, {{0xb6c,7},{0x1b77,5}}, {{0x41be,3},{0x29,2}}, {{0x144c,7},{0xe7b,9}}, + {{0x2c5de,4},{0x1b25d,2}}, {{0xb47,2},{0xae6,3}}, {{0x10ea,3},{0x1c7b,4}}, {{0xa7da,3},{0xb49,2}}, + {{0x17336,6},{0xaf1,2}}, {{0x17fc,5},{0xb2c,2}}, {{0x142e,1},{0xb47,2}}, {{0xc49,3},{0xd78,3}}, + {{0xe64,5},{0xc1a,9}}, {{0x3234,3},{0xc5ff,4}}, {{0xa248,5},{0x2b,3}}, {{0x16f44,6},{0x1dac,3}}, + {{0x24b1b,3},{0x4459,3}}, {{0x1c,1},{0xc30,2}}, {{0xd65,3},{0x4246,4}}, {{0x12c4c,5},{0xb70,2}}, + {{0xf747,5},{0xf74c,6}}, {{0x4d08,4},{0x1a,3}}, {{0x2b,2},{0xc2e,2}}, {{0xab9a,3},{0x14d5,3}}, + {{0xb55,3},{0xb55,2}}, {{0x244b3,2},{0x2456b,2}}, {{0x27b4,3},{0x1b12f,2}}, {{0x20129,6},{0x1972,2}}, + {{0xb67,2},{0xd46,3}}, {{0x27b4,3},{0xb54,3}}, {{0x26c4,3},{0xbb5,1}}, {{0x143be,5},{0x2b,3}}, + {{0xf8de,4},{0x20dd,6}}, {{0x2598,8},{0x25be,7}}, {{0x192dc,6},{0xc57,3}}, {{0x13dc,11},{0xb7a,5}}, + {{0x154f0,8},{0xfe5,2}}, {{0x3e04,8},{0xe70,4}}, {{0x177c,3},{0x1abd9,2}}, {{0x2daa,6},{0xc4d,2}}, + {{0x27895,3},{0x27a9d,2}}, {{0x2318,4},{0x10dc,2}}, {{0xb03a,3},{0x1b26c,2}}, {{0xca7,3},{0x2d,1}}, + {{0x2b8e,2},{0xae3,2}}, {{0x6d8e,3},{0x12d21,7}}, {{0x12fc,4},{0xc77,2}}, {{0x1084,3},{0x10cc0,6}}, + {{0x2d68,4},{0x25c2,3}}, {{0x20bb,3},{0x26042,3}}, {{0x1afd,5},{0xbff0,6}}, {{0x10fb,4},{0xaf1,1}}, + {{0x6ac3,5},{0x15583,3}}, {{0x20bb,3},{0xdef,3}}, {{0x1a0d,5},{0xb834,6}}, {{0x27a3d,2},{0x278a9,1}}, + {{0xa222,8},{0xd0d,2}}, {{0xaea,1},{0x2bfc,3}}, {{0xe6d,2},{0xbb5,3}}, {{0x4450,4},{0x41b3,4}}, + {{0x2c5ea,4},{0x1019c,2}}, {{0x24b1b,3},{0xb54,2}}, {{0x31fe,4},{0x1b08,3}}, {{0x10ec4,5},{0x29,5}}, + {{0x27c97,3},{0x1b4e3,1}}, {{0x6c08,4},{0xd7a,3}}, {{0x19cb4,5},{0xde2,4}}, {{0xb590,7},{0xb5a2,4}}, + {{0x3dd1,2},{0x28,1}}, {{0xc25,3},{0xaf2,1}}, {{0x1cbf,9},{0xb7a,5}}, {{0xb44,3},{0x10e1,5}}, + {{0x1adf,5},{0xc7b0,4}}, {{0xd881,10},{0xae7,1}}, {{0x924,1},{0x27903,3}}, {{0xd76,4},{0xc89,2}}, + {{0x24461,1},{0x24f87,2}}, {{0x1208a,5},{0xb48,2}}, {{0x1a592,5},{0xc8f,2}}, {{0x697e,8},{0xff7,5}}, + {{0x274b,5},{0x108c,3}}, {{0x42ac,6},{0x5f28,7}}, {{0x178c,3},{0xd256,4}}, {{0x278a1,3},{0x27a5b,2}}, + {{0xd0b,3},{0x2b,1}}, {{0x10ef,1},{0xe946,8}}, {{0x4fbd,4},{0x11814,6}}, {{0x10ca,1},{0x24ba,3}}, + {{0x35d2,6},{0xb2c,2}}, {{0x1aee,6},{0x2288,4}}, {{0xb67,2},{0x2b,2}}, {{0x8a49,2},{0xc63,3}}, + {{0x2324,4},{0xb71,2}}, {{0x5dd0,8},{0x1667,5}}, {{0x42ae,3},{0x9867,7}}, {{0x1499,2},{0xc1c,2}}, + {{0xfee4,8},{0x10176,8}}, {{0xba97,7},{0x2211,3}}, {{0x2061,5},{0x2086,8}}, {{0x10fb,3},{0xca6,2}}, + {{0x2ba9,3},{0xae7,1}}, {{0x278c9,2},{0x27a7f,2}}, {{0xba7,3},{0x7a5e,4}}, {{0x6f74,4},{0xff26,2}}, + {{0xb2f,1},{0xb48,2}}, {{0x6d8e,3},{0x4c9c,4}}, {{0xbd7,3},{0xae7,1}}, {{0x364e,4},{0x1d,1}}, + {{0x1b6ab,4},{0x1b6ab,4}}, {{0xb89,3},{0x9312,4}}, {{0xbb5,1},{0x14b6,2}}, {{0x7f96,6},{0x1761,3}}, + {{0xb44,3},{0x2ddc,6}}, {{0x18904,6},{0x1362,3}}, {{0x710e,6},{0x5360,5}}, {{0xae8,2},{0xfd27,2}}, + {{0xc675,5},{0xbd4,2}}, {{0x12bc,5},{0xc0c1,6}}, {{0x4ddc,8},{0x4df1,5}}, {{0x63f5,9},{0x3afc,4}}, + {{0xa096,7},{0x13b37,3}}, {{0x10f6,1},{0x1abd7,2}}, {{0x3ba5,4},{0x1001e,6}}, {{0xd1b,1},{0xfe5,2}}, + {{0x30,10},{0x532,4}}, {{0x1b907,4},{0x70d4,4}}, {{0x116e,1},{0x27a13,2}}, {{0x27b6,1},{0x423e,1}}, + {{0x122c,4},{0xb51d,5}}, {{0x3a3e,7},{0xbb4,4}}, {{0xaea,1},{0x4ab0,3}}, {{0xac8a,4},{0xac8e,8}}, + {{0xbd2,3},{0xbed,2}}, {{0x244f5,4},{0x6f96,2}}, {{0x161c,6},{0x1704,3}}, {{0x10f7,1},{0x250f6,2}}, + {{0x3789,3},{0xde2,3}}, {{0x2c7fa,4},{0x6fac,2}}, {{0x10fa,1},{0x10ec,1}}, {{0x1a,1},{0xc52,2}}, + {{0xeb2,1},{0x5c76,4}}, {{0xaca2,3},{0x43e3,1}}, {{0x135c,6},{0x2ec8,5}}, {{0x10f7,1},{0xce8,3}}, + {{0x39f8,5},{0xf99,4}}, {{0x4606,3},{0x7029,4}}, {{0x16bc,4},{0x7b62,8}}, {{0xca3,5},{0x9a2f,3}}, + {{0xf92d,6},{0xae7,1}}, {{0x10ca,1},{0x1c68,3}}, {{0x4106,4},{0xc67,2}}, {{0x2451f,2},{0x6f6c,2}}, + {{0x3e12,11},{0xae7,1}}, {{0x10ec,1},{0x5dee,4}}, {{0x6dd7,3},{0x14ef1,3}}, {{0x273c4,3},{0xf8d1,2}}, + {{0x177c,3},{0x1257,2}}, {{0x178c,3},{0x10ef,2}}, {{0x887e,9},{0xc3d,3}}, {{0x244a1,2},{0x96f,2}}, + {{0xb8f,2},{0x28e2,4}}, {{0x279b9,2},{0x116c,1}}, {{0xbaa2,4},{0x1675,2}}, {{0x14bb0,2},{0x4284,3}}, + {{0xb67,2},{0xb48,2}}, {{0x278d6,1},{0x116c,2}}, {{0x6d81,3},{0x5f90,3}}, {{0x80c2,6},{0x80c8,6}}, + {{0x279bf,2},{0x278af,1}}, {{0x2b7ca,2},{0x27cea,1}}, {{0xf56e,5},{0x4d13,6}}, {{0x28da,1},{0x2844,3}}, + {{0xde9,1},{0xe9b,3}}, {{0xa246,4},{0x11be9,5}}, {{0xd5e,4},{0x2d44,4}}, {{0x3234,3},{0xae6,2}}, + {{0x1b93,10},{0xdf9,5}}, {{0x181c,3},{0x434f,2}}, {{0xb7f,7},{0x5275,6}}, {{0x275c,3},{0x2c0a,3}}, + {{0x52a2,6},{0x2939,3}}, {{0xadd,7},{0x202c,8}}, {{0x1aaed,1},{0x10f6,1}}, {{0xf212,3},{0x1ee3,3}}, + {{0x10de8,8},{0x21,1}}, {{0xae2,2},{0x15f43,5}}, {{0x2796,3},{0x25002,2}}, {{0x1a4e7,6},{0x17f7a,3}}, + {{0x6dc2,4},{0x2067,3}}, {{0x14cb4,4},{0x5267,4}}, {{0x1b693,2},{0x10f3,1}}, {{0x116e,1},{0x2798f,2}}, + {{0x20bb,3},{0x13e4,3}}, {{0x8abe,5},{0x11e2,6}}, {{0xc71,3},{0x1e,2}}, {{0x7c5a,8},{0x2288,4}}, + {{0xf697,5},{0xd0fe,3}}, {{0x2904,3},{0xb7c,2}}, {{0x178c,3},{0xa7d1,2}}, {{0x8aca,5},{0x8878,6}}, + {{0xcd9,3},{0xae2,2}}, {{0x946,5},{0x1ed58,1}}, {{0xf26a,6},{0xe72,3}}, {{0x18,1},{0x7c4,1}}, + {{0x73d2,5},{0x15fc2,4}}, {{0x422e,3},{0x904d,5}}, {{0x2c710,4},{0xa4f,2}}, {{0x1b6db,4},{0x244c3,2}}, + {{0x30,2},{0x101b,3}}, {{0xae2,2},{0x2db1,3}}, {{0xab9c,1},{0x2045,3}}, {{0xc1e,2},{0xd57,2}}, + {{0xd7f,3},{0x2195,3}}, {{0x22cf8,1},{0x28652,2}}, {{0x16fc,5},{0x2b03,5}}, {{0x2c8f0,4},{0xfb8b,2}}, + {{0x17ec,5},{0xc85,3}}, {{0x253fb,3},{0x432,1}}, {{0xb6c,3},{0x11e2,4}}, {{0x27b4,3},{0x15c61,3}}, + {{0x3f62,5},{0xbb0,4}}, {{0x18244,6},{0xae7,1}}, {{0x446a,5},{0x1032d,5}}, {{0x1ab8c,5},{0x284e,3}}, + {{0xaf1,1},{0x1b25b,4}}, {{0x14b6,2},{0xcad0,6}}, {{0xcfcf,4},{0xae7,1}}, {{0x13b4e,6},{0xbac,4}}, + {{0x152c3,3},{0x10ed,2}}, {{0x101a2,7},{0x2939,3}}, {{0x1ff8,10},{0x11b8,4}}, {{0x423e,1},{0xa74f,5}}, + {{0xae7,2},{0xff7,5}}, {{0x10ea,3},{0x14a7,5}}, {{0x146e,4},{0x49f9,6}}, {{0x10fb,3},{0xf5f6,2}}, + {{0xb64,2},{0xc165,5}}, {{0xb52,2},{0x28995,4}}, {{0xb70,2},{0xb2c,2}}, {{0x1a76,4},{0x591e,4}}, + {{0x3610,2},{0xeb2,1}}, {{0x178c,3},{0x14731,7}}, {{0x2b88a,4},{0x1015e,2}}, {{0xb4a,2},{0x1a,1}}, + {{0x9b41,5},{0x4d56,4}}, {{0x2c866,4},{0x96b,2}}, {{0x41be,7},{0x1d3e,7}}, {{0x2403b,6},{0x2d,1}}, + {{0x1462a,7},{0xc67,2}}, {{0x142c,3},{0xc67,2}}, {{0xc63e,7},{0x1361,2}}, {{0xecc,3},{0x7a6a,4}}, + {{0x28,2},{0x132e1,5}}, {{0x1051,4},{0x82f2,4}}, {{0xab52,4},{0xe6d,2}}, {{0x1a0c8,7},{0xb55,2}}, + {{0xa938,3},{0x2de9,7}}, {{0x2c596,4},{0xfefe,2}}, {{0xd0a4,6},{0x21,1}}, {{0x6dd2,4},{0x9208,4}}, + {{0x3f3d,5},{0x2b3e,4}}, {{0xb6c,3},{0xadf,2}}, {{0x10f3,1},{0x21024,4}}, {{0x3787,4},{0xb68,4}}, + {{0x2376b,5},{0xaec,2}}, {{0x19b3,4},{0x5c76,4}}, {{0x924,2},{0x27897,2}}, {{0x432,48},{0x432,1}}, + {{0x90be,5},{0x1f0f,3}}, {{0xf212,3},{0x265fe,3}}, {{0x10f0,1},{0x250f6,2}}, {{0x159cb,2},{0x27d99,2}}, + {{0x28871,3},{0x251d8,2}}, {{0xb66,2},{0xb63,4}}, {{0x897a,6},{0x1f13,4}}, {{0x142e,1},{0x1d57,3}}, + {{0x6d81,3},{0xd892,5}}, {{0x3db0,6},{0x1d,1}}, {{0x1972,3},{0x17f01,3}}, {{0xa162,7},{0x295c,4}}, + {{0x10ea,3},{0x15abb,2}}, {{0x6b6c,5},{0x13f83,3}}, {{0x17ba8,6},{0xb65,2}}, {{0x1a9c1,6},{0xf5e,3}}, + {{0x27d24,3},{0x27c9b,2}}, {{0x5997,6},{0x599d,7}}, {{0x2b,2},{0x2a91,4}}, {{0x40ce,5},{0x2b01,9}}, + {{0x2c830,4},{0x6f66,2}}, {{0x2aadb,4},{0x10168,4}}, {{0x116e,1},{0x27959,2}}, {{0x27897,1},{0x27acd,2}}, + {{0x36b0,6},{0x9215,5}}, {{0x24f85,4},{0x24f8f,2}}, {{0xd54,1},{0xb48,2}}, {{0xd1b,1},{0xa04a,3}}, + {{0x3640,4},{0x1372,3}}, {{0xdac,2},{0x141e,3}}, {{0x1a0f,3},{0x1644,5}}, {{0x1f965,2},{0x269d8,2}}, + {{0x2964f,3},{0x10ca,1}}, {{0x1231e,9},{0xaf2,1}}, {{0x26c4,3},{0x10ec,1}}, {{0xab9a,3},{0x7438,5}}, + {{0x1a67,7},{0x1717,5}}, {{0x152c0,5},{0x152cf,5}}, {{0x734,2},{0x1b4e3,1}}, {{0x1253a,7},{0x2b,3}}, + {{0x28904,4},{0xae0,1}}, {{0xae7,1},{0x41b3,4}}, {{0xb65,2},{0x12fe,3}}, {{0x28,2},{0xae9,2}}, + {{0xc17,3},{0x1e43c,3}}, {{0x31fc,6},{0x3202,8}}, {{0x150c,10},{0x11e6,6}}, {{0x1389c,8},{0xb65,2}}, + {{0xaea,1},{0x5cd6,3}}, {{0x2d,1},{0x118e,3}}, {{0x27,1},{0xb47,2}}, {{0xbc0,3},{0x2746,3}}, + {{0xb7f,3},{0x1b97d,5}}, {{0x6103,5},{0x40bb,5}}, {{0x14e1,4},{0x28,1}}, {{0x24549,10},{0x1b887,2}}, + {{0x1dec2,4},{0x1b,2}}, {{0xad9e,7},{0x606e,5}}, {{0x762a,4},{0xee1,3}}, {{0xb79,2},{0xf10,3}}, + {{0x1b140,3},{0x116d,1}}, {{0x14a12,6},{0x14a18,4}}, {{0x1aaed,1},{0xbeb,1}}, {{0xb63,2},{0x28be,3}}, + {{0x19633,6},{0x12ff,3}}, {{0x177c,3},{0x14930,2}}, {{0x1cec,5},{0x10d39,5}}, {{0xeb74,6},{0xa049,5}}, + {{0x23e5f,6},{0x1b,1}}, {{0x1b8e7,4},{0x1019a,4}}, {{0xa846,6},{0x15b0,2}}, {{0xd7dc,7},{0x1c25,4}}, + {{0x2b,1},{0xcab,3}}, {{0x8056,9},{0xb54,3}}, {{0xac72,5},{0x35b9,4}}, {{0x18a7,3},{0xe08,7}}, + {{0x2c76,4},{0x174e,3}}, {{0xeb9,5},{0x18cd,5}}, {{0xb55,2},{0xb6e,2}}, {{0xbaa2,4},{0xbd8,2}}, + {{0xde9,1},{0xae2,1}}, {{0x13cf2,5},{0xb75,2}}, {{0x116e,1},{0x27b09,2}}, {{0xf2c2,5},{0x31d6,5}}, + {{0x3004,6},{0xd57,3}}, {{0x3e26,2},{0xb54,3}}, {{0x5ed4,8},{0x11b8,4}}, {{0x1c,1},{0x22480,4}}, + {{0x10f7,1},{0x1bfc9,4}}, {{0x18c40,6},{0x1719,3}}, {{0xae5,1},{0x139e,2}}, {{0xc6db,3},{0x2d,1}}, + {{0x1cbf,5},{0x3cb9,4}}, {{0xa22e,4},{0xcb8,3}}, {{0x12d82,8},{0xfb1,2}}, {{0x17fe,3},{0x2249,3}}, + {{0x193f,3},{0x14a8,4}}, {{0x41da,3},{0x1f63c,5}}, {{0x32ce,11},{0x2b,3}}, {{0x5365,6},{0xbc1,2}}, + {{0x152c3,3},{0xbeb,1}}, {{0x27905,2},{0x116c,1}}, {{0x4282,4},{0x27b6,1}}, {{0x6e12,2},{0xde9,4}}, + {{0x7c4,1},{0x27d08,2}}, {{0xb6cf,5},{0xfdd,3}}, {{0x17ae,1},{0x10f3,1}}, {{0x1095,3},{0xc30,2}}, + {{0x33f4,7},{0x33fb,5}}, {{0x244f5,2},{0x96f,2}}, {{0x2b,2},{0xc518,6}}, {{0x2350a,4},{0xcab,3}}, + {{0x10f3,1},{0x187c,3}}, {{0xb70,2},{0x2db1,3}}, {{0x3846,4},{0x10ebe,6}}, {{0x4186,5},{0xb2e,2}}, + {{0x142c,4},{0x7a5e,4}}, {{0xe410,6},{0xb55,2}}, {{0x11b2,4},{0x2944,6}}, {{0x11d1a,6},{0x2d69,4}}, + {{0x423e,1},{0xaf2,1}}, {{0xb6c,3},{0x22a3,2}}, {{0x114c,9},{0x1890,6}}, {{0x278dc,1},{0x27ab5,2}}, + {{0x10fb,3},{0x1866,3}}, {{0x7e2e,7},{0x1719,3}}, {{0xcde,4},{0xfb1,2}}, {{0xae5,1},{0xae0,2}}, + {{0x281f,3},{0x9b41,3}}, {{0x1c,1},{0x705a,4}}, {{0xea35,7},{0xc63,3}}, {{0x866e,8},{0x1698,4}}, + {{0x10ea,3},{0x15a61,2}}, {{0x22cf8,1},{0x28e89,2}}, {{0xb2f,1},{0x5c76,4}}, {{0x23f2a,5},{0xae7,1}}, + {{0xbd6d,7},{0x1278,4}}, {{0x30,2},{0xc51,2}}, {{0x1c,1},{0xff7,5}}, {{0xcd9,5},{0xdfc9,6}}, + {{0x27897,2},{0x28637,3}}, {{0x41be,7},{0xb2c,2}}, {{0x1084,3},{0x1e3aa,5}}, {{0x1f80,5},{0xe695,4}}, + {{0x134f,3},{0xae7,1}}, {{0xa096,7},{0x1bf6,4}}, {{0xa7da,3},{0xbe0,1}}, {{0xaeb,2},{0x2a25,3}}, + {{0x14bb5,2},{0x2515b,4}}, {{0x283d,3},{0xbe7,1}}, {{0x4362,4},{0x4de3,3}}, {{0x29c28,4},{0xab9c,1}}, + {{0x31ae,4},{0xec2,2}}, {{0x2c8c6,4},{0x6fac,2}}, {{0xb4a,4},{0x459e,4}}, {{0x15b36,3},{0xcb8,2}}, + {{0x152d2,2},{0x1878,1}}, {{0xc37,10},{0xb2e,2}}, {{0x1e,1},{0x59f5,6}}, {{0x20bb,3},{0x27,1}}, + {{0x1060c,6},{0x7a46,4}}, {{0x247e9,8},{0x247f1,4}}, {{0xd76,4},{0xb4e4,7}}, {{0x77a2,3},{0xae2,1}}, + {{0x244d1,6},{0x244d7,6}}, {{0x1459e,3},{0xadf,3}}, {{0x1a8e0,6},{0x2b,3}}, {{0xacba,5},{0x51b0,4}}, + {{0xfc6c,3},{0xbd6,2}}, {{0x251fe,3},{0x25201,2}}, {{0xcc4f,4},{0xaec,2}}, {{0x1ed51,3},{0x2b2ff,1}}, + {{0x2986,4},{0x1d,1}}, {{0x17b4c,6},{0x6f36,3}}, {{0x12fc,4},{0xc9e,3}}, {{0x13cf2,5},{0x1a11,2}}, + {{0xcbd,3},{0x1e,1}}, {{0x2c890,4},{0x1b205,2}}, {{0xbeb,1},{0x139e,2}}, {{0xc67,2},{0x25c2,3}}, + {{0x159c,4},{0x22db,4}}, {{0x6d8e,3},{0x6ac5,1}}, {{0x1e74f,4},{0x1a,1}}, {{0x1685,3},{0x11ef,2}}, + {{0x1912,9},{0x10dc,2}}, {{0x1ed58,1},{0x112c,1}}, {{0x10fb,3},{0x2bfc,3}}, {{0x12fc,4},{0xc1ff,7}}, + {{0x1459e,3},{0x2744,2}}, {{0xb47,2},{0xb2c,2}}, {{0x2445c,3},{0x27cca,6}}, {{0xbde,3},{0x13d31,6}}, + {{0x2506f,2},{0x423e,1}}, {{0x2c4be,4},{0x27d99,2}}, {{0x740e,5},{0x12f0,4}}, {{0x1fcf9,6},{0xb78,2}}, + {{0x2573,4},{0x4d08,4}}, {{0x10f3,1},{0x67c0,3}}, {{0x43e3,1},{0x15a5e,2}}, {{0x278a1,3},{0x2795f,2}}, + {{0x12f1,2},{0xcd5,2}}, {{0x16127,4},{0x21a0,3}}, {{0x19e9a,6},{0x15583,3}}, {{0x4194,6},{0xc34,3}}, + {{0x10ea,3},{0x20b13,2}}, {{0x2788f,3},{0x1b4e4,1}}, {{0x4f6f,5},{0xbc1,2}}, {{0xbb5,1},{0x766c,6}}, + {{0x1095,3},{0x1076d,4}}, {{0x1aafc,4},{0xfb1,2}}, {{0x42c8,12},{0xb2e,2}}, {{0xb8a,2},{0xb63,3}}, + {{0xf4df,3},{0x2df5,3}}, {{0xb78,2},{0x49f9,6}}, {{0x3af4,8},{0xae2,1}}, {{0x113a6,6},{0xb55,2}}, + {{0x25245,4},{0x2aa3f,4}}, {{0x19c65,3},{0xeb2,1}}, {{0x7a6e,4},{0x9ff6,3}}, {{0x1d,2},{0xfdf,2}}, + {{0x1a4cc,6},{0xae7,1}}, {{0x3e19,4},{0xae7,1}}, {{0x27e2a,2},{0x27e48,3}}, {{0x2c662,4},{0x1015e,2}}, + {{0xbc2,2},{0xae7,1}}, {{0x145e4,5},{0xb47,2}}, {{0x6ac3,3},{0x2af8,4}}, {{0x28,3},{0x113f,13}}, + {{0xb54,3},{0x3789,3}}, {{0x261b5,4},{0x1a,1}}, {{0x2796,3},{0x2672b,2}}, {{0x7a32,5},{0xc1c,2}}, + {{0x2904,8},{0x290c,6}}, {{0xb6c,3},{0x10dc,2}}, {{0x147c,5},{0x56eb,8}}, {{0x6d81,3},{0x459e,4}}, + {{0x4dc2,8},{0xb68,4}}, {{0xd14,4},{0xbb4,4}}, {{0x2796,3},{0xeb2,1}}, {{0x1509a,4},{0x12b92,3}}, + {{0x364e,6},{0x3654,8}}, {{0xf0a7,7},{0x11e4,4}}, {{0x21aad,6},{0x1d,1}}, {{0x9406,8},{0xb7c,3}}, + {{0xab9c,1},{0xb2f,1}}, {{0x51d2,6},{0x21,1}}, {{0xb609,6},{0x67c0,3}}, {{0x19c63,4},{0xd0fe,3}}, + {{0xae2,1},{0x10c4,4}}, {{0x319a,5},{0x25be,4}}, {{0xc6d8,5},{0x89f7,6}}, {{0xbd6,4},{0xfe5,2}}, + {{0x116c,2},{0x279e9,2}}, {{0x14fb4,5},{0xeb2,1}}, {{0x9c9,1},{0x2bb68,2}}, {{0x2cae,4},{0x21,1}}, + {{0x6e5e,5},{0xb77,3}}, {{0x15a1f,4},{0x20947,3}}, {{0x1084,3},{0x21705,4}}, {{0x1463,5},{0x1197,4}}, + {{0x441c,3},{0xb8a1,7}}, {{0x27c3,4},{0x2237,3}}, {{0x1e,1},{0x1701,3}}, {{0x1095,3},{0xc57,4}}, + {{0x2c92,6},{0xcc0,3}}, {{0x1f9e1,5},{0x1c9da,3}}, {{0xaeb,2},{0xb78,2}}, {{0xb68,3},{0x2202,3}}, + {{0xbeb,1},{0x20998,6}}, {{0xb8b,2},{0x188ca,4}}, {{0xfa16,2},{0x1197,4}}, {{0x19b3,7},{0xd0b,4}}, + {{0x73d2,5},{0x1e,1}}, {{0x73d2,5},{0x1d89,2}}, {{0x166c,7},{0xd0b,4}}, {{0x1c775,5},{0xb63,2}}, + {{0x9106,5},{0x50fd,5}}, {{0x8b06,4},{0x385b,4}}, {{0xac8a,4},{0x114d,2}}, {{0xbe7,1},{0x108b,3}}, + {{0x25c5,5},{0xce2,3}}, {{0x2445f,1},{0x27e66,3}}, {{0xd41,3},{0x1254,3}}, {{0x4088,9},{0xe70,4}}, + {{0x3234,3},{0x37f7,3}}, {{0x10fb,3},{0x26759,3}}, {{0x2dfe,5},{0x1357,5}}, {{0x257a,4},{0xeb2,1}}, + {{0x2428e,4},{0x24292,3}}, {{0x16f48,2},{0x1dac,3}}, {{0xbe7,1},{0x5a50,5}}, {{0x2a946,3},{0x2446c,1}}, + {{0x2859,5},{0xae7,1}}, {{0x6e53,3},{0xcd65,4}}, {{0xb48,2},{0xeb3,3}}, {{0xc37,3},{0x1c758,5}}, + {{0xcd9,3},{0x1d9dc,5}}, {{0x28,2},{0xae0,1}}, {{0x281d,5},{0x139af,5}}, {{0x6957,7},{0x8bb5,5}}, + {{0xb82,2},{0x1257,5}}, {{0xa936,5},{0x6695,3}}, {{0x27897,1},{0x278af,2}}, {{0x186e,3},{0xfde,2}}, + {{0xbe0,1},{0x46f8,3}}, {{0x177c,3},{0x25c2,3}}, {{0x2789b,3},{0x27a43,2}}, {{0xbb5,1},{0xd0d,2}}, + {{0xba5,4},{0x5bf1,4}}, {{0x12314,4},{0x142e,1}}, {{0xaf2,1},{0xb47,2}}, {{0x3e12,7},{0x1a35,5}}, + {{0x278d6,1},{0x278a3,2}}, {{0x384a,3},{0xae6,2}}, {{0xb52,2},{0x1408,3}}, {{0xf40c,5},{0x14855,5}}, + {{0x101b3,3},{0xbd4,2}}, {{0x423c,3},{0x296f5,2}}, {{0xc295,7},{0x58d0,4}}, {{0xc55,2},{0x3de2,6}}, + {{0x106d4,5},{0xc7b,4}}, {{0x1c,1},{0x2be6,4}}, {{0xbd1,2},{0x13c7f,5}}, {{0xc71,2},{0xf6a,3}}, + {{0x12bc,8},{0x10e1,8}}, {{0x1084,3},{0x92e9,5}}, {{0xeec,7},{0xece,2}}, {{0x1084,3},{0xd7a,3}}, + {{0x27c3,4},{0x16ee,2}}, {{0x1331,3},{0x30fb,5}}, {{0x6f23,3},{0x1aa6,3}}, {{0x14bae,4},{0xa7d8,2}}, + {{0x202c,4},{0xcd4,3}}, {{0x2c76,4},{0x74b2,4}}, {{0x423c,3},{0xd54,1}}, {{0x1c,1},{0x1e120,5}}, + {{0x278a1,3},{0x2794d,2}}, {{0x1e45,4},{0xc1c,2}}, {{0x1cee,4},{0x13d1,4}}, {{0x214ee,5},{0xb78,2}}, + {{0x271e,3},{0x16f7,4}}, {{0xa2ee,6},{0xc63,3}}, {{0x22cf8,1},{0x24f87,2}}, {{0xbe0,1},{0x1afb5,3}}, + {{0xd41,3},{0x4da1,3}}, {{0x1bfc,6},{0x46e1,5}}, {{0xffd4,5},{0xed74,5}}, {{0x178c,3},{0x1cef,3}}, + {{0x10c8,3},{0xb9d,3}}, {{0x17ac,3},{0xbeb,6}}, {{0x783a,6},{0x40bc,4}}, {{0x64df,9},{0xb54,4}}, + {{0xaada,4},{0x80be,4}}, {{0xb6d1,6},{0x10dc,2}}, {{0xceb,3},{0x84f5,5}}, {{0xae0,1},{0xc34,2}}, + {{0x29f18,3},{0x27a2b,2}}, {{0xb257,5},{0x1f0f,3}}, {{0xf789,5},{0xc3d,3}}, {{0x27897,1},{0x116c,2}}, + {{0x5bc6,7},{0x1a,1}}, {{0xfd27,2},{0xb52,2}}, {{0xac8a,4},{0x5c5b,3}}, {{0x6c56,4},{0x1a35,5}}, + {{0xb64,2},{0xc139,6}}, {{0x1a352,5},{0x2ae7,4}}, {{0xc17,3},{0x628e,7}}, {{0x2789b,3},{0x27acd,2}}, + {{0xd1b,1},{0xd54,1}}, {{0xba5,4},{0x2b,1}}, {{0xb7f,3},{0x2af4,4}}, {{0x244b9,2},{0xab1,2}}, + {{0x6d81,3},{0xdd3,3}}, {{0x12fc,4},{0xc34,3}}, {{0xaca2,3},{0xbb2a,4}}, {{0x2c020,2},{0x10f3,1}}, + {{0x1f8e1,5},{0xb55,2}}, {{0x6cc0,2},{0xb55,2}}, {{0x2cca,7},{0x2cd1,7}}, {{0x20b39,4},{0xae7,1}}, + {{0x157a0,6},{0x6f62,12}}, {{0xafc6,4},{0x1a,3}}, {{0xae0,1},{0xbd8,2}}, {{0x1db75,5},{0x2b,3}}, + {{0xb85,2},{0xb2c,2}}, {{0xaeee,4},{0xb52,2}}, {{0xbde,3},{0xcce,3}}, {{0x2843a,2},{0x27d20,2}}, + {{0x422e,3},{0x26c6,1}}, {{0x10ea,3},{0xc6a9,3}}, {{0x27905,2},{0x278a9,1}}, {{0xf52,4},{0x4df1,5}}, + {{0xf96,7},{0xb7c,3}}, {{0xb52,2},{0xae8,2}}, {{0x17ac,3},{0x2b,1}}, {{0x709c,4},{0x10176,8}}, + {{0x10fb,3},{0xb65,2}}, {{0x10ea,3},{0x1675,2}}, {{0x929e,8},{0x1dac,3}}, {{0x3234,3},{0xb54,4}}, + {{0xb2f,1},{0xff7f,5}}, {{0x17bc,3},{0x29581,2}}, {{0x1e,1},{0xfdf,2}}, {{0x1df1f,7},{0xae7,1}}, + {{0x6e5e,5},{0x1aff,8}}, {{0x15180,5},{0xc67,2}}, {{0x94de,6},{0xa379,5}}, {{0x1afd,5},{0xb7a,4}}, + {{0x17238,5},{0x1f13,4}}, {{0x177c,7},{0xe91,6}}, {{0xeb74,6},{0x2b,3}}, {{0xae0,1},{0xec5,5}}, + {{0xb47,2},{0x8a49,3}}, {{0x9a1e,7},{0x220f,5}}, {{0xa7d1,2},{0x24ffc,2}}, {{0x70ac,4},{0xfef0,4}}, + {{0xf96,11},{0xec2,2}}, {{0x1b13e,3},{0x924,6}}, {{0xbbf,2},{0x83c9,5}}, {{0x26c4,3},{0x1eed4,5}}, + {{0xf62b,3},{0x3a3b,3}}, {{0xf6fa,5},{0x5277,2}}, {{0x181c,3},{0x434c,2}}, {{0x4290,4},{0xda32,6}}, + {{0x271e,3},{0x152c4,2}}, {{0x252c1,6},{0xfee4,4}}, {{0x116e,1},{0x27983,2}}, {{0x27e2a,2},{0x432,1}}, + {{0x4ab0,4},{0xd0b,3}}, {{0x278dc,1},{0x27b03,2}}, {{0xa7da,3},{0x10ac3,5}}, {{0xeb2,1},{0x187c,3}}, + {{0xc8bc,7},{0xae7,1}}, {{0xab9a,3},{0xaec,2}}, {{0x12be,3},{0x12d6,6}}, {{0xcb8,2},{0xc89,2}}, + {{0x244cb,4},{0xfefe,2}}, {{0xceb,3},{0x1c170,3}}, {{0x23717,5},{0xb48,2}}, {{0x1b847,6},{0x1b797,8}}, + {{0x112c,1},{0x251cb,1}}, {{0x24475,6},{0x1b887,2}}, {{0x21abb,5},{0xb85,2}}, {{0x4412,3},{0x15ae2,3}}, + {{0x159c,4},{0xce1,4}}, {{0x10ca,2},{0xc165,6}}, {{0x3996,5},{0xbb0,3}}, {{0x773e,9},{0xae7,1}}, + {{0x16ee,2},{0x1a,2}}, {{0x10192,4},{0x70d8,4}}, {{0xfc9,10},{0x2200,5}}, {{0x1ab2,5},{0xb8d,4}}, + {{0x26c4,3},{0xb6e,2}}, {{0xc91,11},{0xc9c,7}}, {{0x6d81,5},{0x1362,3}}, {{0xf1f,5},{0x1d,1}}, + {{0x127d8,8},{0xd0d,2}}, {{0x14636,4},{0xb2c,4}}, {{0x2846,2},{0x20aa9,2}}, {{0x1e4a7,6},{0x2b,2}}, + {{0x5324,5},{0x11e6,6}}, {{0x116d,1},{0x27a01,2}}, {{0x187b,4},{0xaf1,1}}, {{0x181c,3},{0x16b0,4}}, + {{0xa246,4},{0xb8cf,5}}, {{0x5d36,6},{0x2683,5}}, {{0x3694,4},{0x5eb6,4}}, {{0x61ac,5},{0xb8d,5}}, + {{0x10c8,3},{0x2a16,3}}, {{0x278c9,2},{0x27a9d,2}}, {{0x27c5,3},{0x15a1,3}}, {{0x8536,6},{0xbd6,4}}, + {{0xbeb,1},{0x4288,2}}, {{0x10ea,3},{0xde1,2}}, {{0x278c9,2},{0x27aaf,2}}, {{0xc51,2},{0x1372,3}}, + {{0x9646,8},{0xb2c,4}}, {{0x10f7,1},{0x10f2,1}}, {{0xcfd,5},{0x3c11,4}}, {{0x278a1,3},{0x1b6b2,2}}, + {{0xf6e6,3},{0xc34,2}}, {{0x3f9a,4},{0x2d,1}}, {{0xcfd,5},{0x64e4,7}}, {{0x17930,5},{0xeb3,3}}, + {{0x12143,2},{0xd17,3}}, {{0x428b,5},{0xbeb,1}}, {{0x45fd,4},{0xc3d0,4}}, {{0x25111,3},{0x15a83,3}}, + {{0xd65,3},{0xb315,8}}, {{0x2d,1},{0xc30,2}}, {{0x1097,5},{0x2b,3}}, {{0x181c,3},{0x14bb0,2}}, + {{0x26f9,2},{0x33b3,3}}, {{0xbe7,1},{0xd79,3}}, {{0x2b,1},{0x7039,2}}, {{0x2070,7},{0x377c,3}}, + {{0x286bd,2},{0x244af,2}}, {{0xcd3,2},{0xf60,3}}, {{0x4284,2},{0x4286,2}}, {{0x3846,5},{0x14a7,5}}, + {{0x1ffc9,4},{0x1ffcd,4}}, {{0x98c2,8},{0x674c,3}}, {{0xb70,2},{0x2cd1,7}}, {{0xca7,3},{0xce8,3}}, + {{0x1e,1},{0xde2,4}}, {{0x423c,3},{0x10dc,3}}, {{0x2796,3},{0x17ae,1}}, {{0x290c,2},{0xae2,1}}, + {{0x1760f,5},{0xae7,1}}, {{0x23bdb,4},{0x10f1,3}}, {{0x278dc,1},{0x279ef,2}}, {{0xd65,3},{0x1dec2,4}}, + {{0x24531,4},{0xab1,2}}, {{0xa2d8,3},{0x89f7,5}}, {{0xbe4,1},{0x411c,4}}, {{0x30,128},{0x30,26}}, + {{0x1b6cb,2},{0x1ed58,1}}, {{0x2d,1},{0xbbf,2}}, {{0x17fe,3},{0x2b,3}}, {{0xb7f,8},{0xb87,11}}, + {{0x31d4,4},{0x31f8,4}}, {{0x6f86,6},{0x157b2,6}}, {{0x12a62,5},{0x1499,2}}, {{0x1f399,5},{0xcab,3}}, + {{0xae0,2},{0xcb8,2}}, {{0x251cb,1},{0x2a948,1}}, {{0xb44,3},{0x16ae,3}}, {{0x2ae0,5},{0x5195,7}}, + {{0x2324,4},{0x10e1,3}}, {{0x257c,2},{0x1d8a1,4}}, {{0x102f,6},{0x2af4,4}}, {{0x146c,6},{0x12496,4}}, + {{0x14d5c,5},{0x3a37,3}}, {{0x780,1},{0x27cea,1}}, {{0x5a8e,9},{0xbb4,4}}, {{0xd91,2},{0xb64,3}}, + {{0x2c4ac,4},{0x1019c,2}}, {{0x1d967,5},{0x1f,2}}, {{0x924,1},{0x2798f,2}}, {{0xb49e,4},{0x1b80,4}}, + {{0x15324,6},{0x7639,4}}, {{0xbb5,1},{0xec2,2}}, {{0x2862e,2},{0xb31,1}}, {{0x7c4,1},{0x20b1f,6}}, + {{0x441c,3},{0x1058,3}}, {{0x98fe,6},{0x1f13,4}}, {{0xaf1,1},{0x104c5,2}}, {{0xfdf,2},{0xc1c,2}}, + {{0x443e,2},{0x40b8,2}}, {{0xb6c,4},{0x19ba,8}}, {{0x1b8e3,4},{0x70c8,4}}, {{0x36ce,4},{0x36d2,8}}, + {{0xaea,1},{0x906e,5}}, {{0xc13,4},{0x1042,4}}, {{0xfffb,2},{0xb78,2}}, {{0x2451f,4},{0x70a6,2}}, + {{0x1084,3},{0x1cef,3}}, {{0x17930,5},{0x10dc,2}}, {{0x7db8,6},{0x10dc,2}}, {{0xd58a,8},{0xc57,3}}, + {{0x1fda,10},{0x1260,4}}, {{0x178c,7},{0x1213,9}}, {{0x3dcc,5},{0x3776,3}}, {{0x10ca,1},{0xb52,4}}, + {{0x13ac,8},{0x1d21,7}}, {{0x1084,3},{0xec08,6}}, {{0x1062,6},{0x11ef,2}}, {{0x281f,4},{0xf10,3}}, + {{0x201d1,6},{0x10dc,2}}, {{0xb71,2},{0xd1b,1}}, {{0x1b5f3,3},{0x10599,5}}, {{0x93fa,9},{0xce8,3}}, + {{0xbbf,2},{0xb2d,3}}, {{0xc34,2},{0x2b,1}}, {{0x1cbf,6},{0xc720,5}}, {{0x244d7,4},{0x157a4,2}}, + {{0x2a24,3},{0xcc0,3}}, {{0x10fb,3},{0x209c5,3}}, {{0xeb3d,7},{0x139f,3}}, {{0x12f1c,7},{0xb65,2}}, + {{0xae5,1},{0x265d,3}}, {{0xd41,3},{0x2af8,4}}, {{0x44d2,5},{0x5fa0,4}}, {{0x4971,7},{0x4978,6}}, + {{0x1c,1},{0xa24a,3}}, {{0xb44,4},{0x1a,1}}, {{0x28703,6},{0x244ed,2}}, {{0x1095,3},{0xbbf,2}}, + {{0xbde,3},{0xf8cf,2}}, {{0x10c8,3},{0x1f13,4}}, {{0x1494a,5},{0xb75,2}}, {{0x27b95,4},{0x27983,2}}, + {{0x116e,1},{0x27977,2}}, {{0x78ca,9},{0x1408,3}}, {{0x1a,3},{0x2b,1}}, {{0x1a,3},{0x3fdc,4}}, + {{0x29f18,3},{0x278b5,2}}, {{0xae5,1},{0xeb2,1}}, {{0xe7b,4},{0x11b8,4}}, {{0x1568a,5},{0x13e4,3}}, + {{0xc31,3},{0x20774,4}}, {{0x2ce6,9},{0x2b75,5}}, {{0x1e45,3},{0xb7d,1}}, {{0x27ca9,5},{0x18,1}}, + {{0x470e,5},{0xed5d,5}}, {{0x5bd3,7},{0x2e92,6}}, {{0xd41,3},{0xd5e,4}}, {{0x4266,5},{0xc34,3}}, + {{0x2a94b,3},{0x9a9,1}}, {{0xcbbe,8},{0x2b,3}}, {{0x3a36,2},{0xc93c,4}}, {{0x6d83,3},{0x6d86,5}}, + {{0x1f,4},{0x1b2b1,4}}, {{0x3203,4},{0xb8c,3}}, {{0x10ca,1},{0x15c61,3}}, {{0xb8b,2},{0x16629,5}}, + {{0x17fbc,6},{0xf60,3}}, {{0xae0,1},{0xa56c,5}}, {{0x1104a,6},{0xbb4,4}}, {{0x6b20,2},{0xc0c3,3}}, + {{0xaea,1},{0x3da5,4}}, {{0x1051,4},{0x443e,2}}, {{0xee1,3},{0x12a17,5}}, {{0xb2ba,6},{0x28,1}}, + {{0x1b58b,4},{0xbb4,4}}, {{0x10e6a,6},{0xaea,1}}, {{0x5288,5},{0x528d,8}}, {{0xf40c,5},{0xdf0,2}}, + {{0x43e3,1},{0x15057,7}}, {{0x24a2d,2},{0x2ae87,2}}, {{0x3774,4},{0xc25a,4}}, {{0xb6c,3},{0xc2e,2}}, + {{0x6d81,3},{0x6ac5,1}}, {{0xd101,5},{0x2b,3}}, {{0x24efb,4},{0x2b,2}}, {{0xa882,8},{0x4d56,4}}, + {{0x1e45,4},{0x904d,5}}, {{0x16997,6},{0xc63,3}}, {{0x28be,3},{0x1f,1}}, {{0x11ec8,5},{0xcab1,5}}, + {{0x4356,2},{0xcc0e,3}}, {{0xb48,2},{0x140a,2}}, {{0xb47,2},{0xfdd,2}}, {{0x100b0,2},{0xf8d1,2}}, + {{0x2c7ee,4},{0xfefe,2}}, {{0x30,24},{0x532,4}}, {{0x23232,5},{0xb67,2}}, {{0xaf1,1},{0x5203,3}}, + {{0xba5,5},{0x159f,5}}, {{0xf629,5},{0xce1,4}}, {{0xc37,6},{0x8fe2,4}}, {{0x1aaec,2},{0x2513d,4}}, + {{0x7e0a,5},{0x2af4,4}}, {{0x17873,6},{0x2b,3}}, {{0x1426a,6},{0x1719,3}}, {{0xfd25,4},{0x8a42,4}}, + {{0x1b49b,4},{0x21,1}}, {{0xd0b,3},{0x1d,1}}, {{0x2c4a6,4},{0x1dec4,2}}, {{0xde4,2},{0xae5,1}}, + {{0x1e45,3},{0xe71,3}}, {{0x2a16,3},{0xc64,2}}, {{0x286bb,6},{0x159cb,2}}, {{0x415e,3},{0x1e,1}}, + {{0xde9,1},{0xe1c,4}}, {{0xeb9,4},{0xde9,1}}, {{0x2bdc,7},{0x5fe0,4}}, {{0x26c6,2},{0x72fe,5}}, + {{0xfdd,2},{0xd17,3}}, {{0xaca2,3},{0xc67,2}}, {{0x12fc,7},{0x28,1}}, {{0x2096d,3},{0xc7b,4}}, + {{0xca7,2},{0x1e6c,6}}, {{0x14fc,5},{0x6ab8,3}}, {{0xa0de,6},{0xa0fc,6}}, {{0xf0e,5},{0x13564,4}}, + {{0x27,1},{0x1773,3}}, {{0xeb1,2},{0xaf2,1}}, {{0x4831,4},{0xc67,2}}, {{0x271e,3},{0xb55,2}}, + {{0x2789b,3},{0x278bd,2}}, {{0x1257,2},{0x2b,2}}, {{0xbde,3},{0x1afbe,2}}, {{0x13df6,5},{0xc67,2}}, + {{0xeb2,1},{0xb8a,2}}, {{0xc13,4},{0x2b2d,7}}, {{0xcedb,2},{0xae2,1}}, {{0xbeb,1},{0x12fe,2}}, + {{0x152d2,2},{0x19f42,3}}, {{0xacba,4},{0x1d,1}}, {{0xbb5,1},{0x2891,3}}, {{0x278d6,1},{0x278a9,2}}, + {{0x1ed49,3},{0x117c,1}}, {{0x4e97,3},{0x1362,3}}, {{0x6c99,3},{0x17476,4}}, {{0x4d97,2},{0xb65,2}}, + {{0xeb95,6},{0x107e,5}}, {{0xbeb,1},{0xbb5,1}}, {{0x2d921,2},{0xa51,2}}, {{0x12882,5},{0x1a,1}}, + {{0xd8e,4},{0xb52,6}}, {{0xfda,5},{0xfe0,4}}, {{0x2427,3},{0x4df1,5}}, {{0x178c,3},{0x2bfd,2}}, + {{0xd1a,2},{0x1b3d3,8}}, {{0xf85a,5},{0x1f,1}}, {{0x2ada9,4},{0xd1b,1}}, {{0xf5dc,8},{0xae7,1}}, + {{0xaf2c,3},{0x89f7,5}}, {{0x6e03,4},{0x22e1,3}}, {{0x432a,9},{0xc34,2}}, {{0xed42,9},{0xae7,1}}, + {{0x1e,1},{0x1c4d9,4}}, {{0x6b5f,4},{0x10dc,2}}, {{0x24461,1},{0x27cf8,2}}, {{0x2856d,3},{0xf8cf,2}}, + {{0x90e2,4},{0x20b5,3}}, {{0x19f3f,2},{0x2844,3}}, {{0xae5,1},{0xbd8,2}}, {{0x12f6,4},{0x114d,2}}, + {{0x178c,3},{0x5306,4}}, {{0x4290,4},{0xce1,4}}, {{0xb2f,1},{0xeb2,1}}, {{0x10c8,3},{0xc57,3}}, + {{0x20bb,3},{0x1c43,4}}, {{0x1ed56,3},{0x734,2}}, {{0xa19,4},{0x30,12}}, {{0xc25,4},{0x5275,4}}, + {{0x7e2e,7},{0xae7,1}}, {{0x8236,7},{0x16f8,4}}, {{0x1af3d,6},{0xcb8,3}}, {{0xeacf,7},{0x1278,4}}, + {{0x441c,3},{0xa5de,4}}, {{0xf2c2,5},{0x455a,3}}, {{0x84b2,6},{0x5684,6}}, {{0x6aab,3},{0xbd3,3}}, + {{0x4812,6},{0x7660,6}}, {{0xde9,1},{0x8a49,2}}, {{0xa252,5},{0xa257,7}}, {{0xf52,7},{0xf59,5}}, + {{0x39dc,9},{0x674c,3}}, {{0x1eadf,5},{0x1d8a,3}}, {{0x422e,3},{0x554f,2}}, {{0x2a9a,8},{0x1b80,4}}, + {{0xddd5,6},{0xd0d,2}}, {{0x28522,2},{0xf8cf,3}}, {{0x28,2},{0x1719,3}}, {{0xc1a,4},{0x62ed,4}}, + {{0x27dfd,5},{0x1b25b,4}}, {{0x177c,3},{0x10ed,2}}, {{0x10ea,3},{0x1402,3}}, {{0x29e8c,3},{0x27b03,2}}, + {{0x41f6,4},{0xc1e,2}}, {{0xb92,5},{0xc17,3}}, {{0x145ee,6},{0xae7,1}}, {{0xaefa,4},{0xba7,3}}, + {{0xd54,1},{0xbed,2}}, {{0xcd9,5},{0x1a30,3}}, {{0x460a,7},{0x2b,3}}, {{0x27,1},{0xc89,2}}, + {{0x1260,4},{0xbbf,2}}, {{0xfed0,4},{0x30,4}}, {{0x2c6f8,4},{0x6f66,2}}, {{0x17bc,3},{0xbb5,1}}, + {{0x36be,8},{0x36c6,6}}, {{0x17410,6},{0xae7,1}}, {{0x10ea,3},{0x10f6,2}}, {{0x27b4,3},{0x1fb2,5}}, + {{0x36b0,6},{0x1844b,3}}, {{0x10ec,1},{0x25c0,4}}, {{0xaca2,3},{0xb8cf,5}}, {{0x10f1,2},{0x24436,3}}, + {{0xfefc,4},{0xfef0,4}}, {{0x1e9ff,4},{0x1a,1}}, {{0x5288,5},{0x31ae,4}}, {{0x15794,6},{0x245df,6}}, + {{0x22e26,6},{0xae7,1}}, {{0x50a7,5},{0xc4d,2}}, {{0x4c2f,8},{0x1c25,4}}, {{0xc4d,2},{0xd91,3}}, + {{0x12fe,2},{0x17d16,3}}, {{0x8716,4},{0x21a7e,5}}, {{0x532,2},{0x30,512}}, {{0x26c6,2},{0x295c,5}}, + {{0x9556,10},{0x10dc,2}}, {{0x136da,6},{0x2be6,4}}, {{0xceb,11},{0xcf6,7}}, {{0x4c08,7},{0x4693,6}}, + {{0x1fb59,6},{0xb65,2}}, {{0x19f3c,5},{0x19f41,4}}, {{0x261f,4},{0x22db,4}}, {{0x16bc,4},{0x1cee,4}}, + {{0xca7,2},{0xb64,2}}, {{0x1da0,5},{0xe78,3}}, {{0x1cc1,4},{0x1cc5,3}}, {{0xaadc,2},{0x10f2,1}}, + {{0x178c,3},{0x269de,3}}, {{0x6b52,4},{0x19eb9,5}}, {{0x1cf37,7},{0x1362,3}}, {{0xfda0,2},{0x20af0,5}}, + {{0x6c3c,5},{0xbd4,2}}, {{0x5aa8,6},{0x2b,3}}, {{0x8a48,3},{0x10dc,2}}, {{0xb63,2},{0xb54,2}}, + {{0x278d6,1},{0x278e1,2}}, {{0x10f3,1},{0xab9c,1}}, {{0x41da,3},{0xcbab,8}}, {{0x6783,7},{0x10dc,2}}, + {{0xf73c,6},{0x535b,5}}, {{0x271e,3},{0xb68,4}}, {{0x2789b,3},{0x27af7,2}}, {{0x17fc,5},{0x16077,3}}, + {{0xfeec,4},{0x709c,4}}, {{0x10fb,3},{0x7705,3}}, {{0x1b1a7,8},{0x1b1af,8}}, {{0xc135,8},{0xb7c,3}}, + {{0x279bf,2},{0x116c,1}}, {{0x1d,1},{0x12fe,3}}, {{0x5442,4},{0xc25a,4}}, {{0x27b95,4},{0x27a13,2}}, + {{0x2884e,6},{0x10f7,1}}, {{0x12b7a,7},{0xbb1,3}}, {{0x1cec,5},{0xaea,2}}, {{0x6226,2},{0x1ac69,4}}, + {{0x3234,3},{0x323c,2}}, {{0xc25,3},{0x21,1}}, {{0x10b7,4},{0xeb5,4}}, {{0xce3,2},{0xb2f,1}}, + {{0x28e90,4},{0x734,1}}, {{0x244b3,2},{0x24873,2}}, {{0x1ab2,4},{0x16989,5}}, {{0x116e,1},{0x27995,2}}, + {{0x10ea,3},{0x3c13,3}}, {{0xeca,4},{0xc8a,2}}, {{0x26c4,4},{0xb066,2}}, {{0xca5,2},{0x2056,4}}, + {{0x2b878,4},{0x1015e,2}}, {{0x2c76,4},{0x4459,4}}, {{0xa1c5,5},{0x1f13,4}}, {{0xbe0,1},{0x2848,2}}, + {{0xbc2,2},{0x2af8,4}}, {{0x4c7d,9},{0x372a,4}}, {{0x10a1,3},{0xce8,3}}, {{0x1a0d,5},{0x3ae8,8}}, + {{0xf327,3},{0xb6bb,3}}, {{0x10f2,1},{0x1b4b,3}}, {{0x4417,2},{0xd54,1}}, {{0x18811,6},{0xd7a,3}}, + {{0x116e,1},{0x27b0f,2}}, {{0x10ea,3},{0x23296,2}}, {{0xf8ff,6},{0xf905,7}}, {{0x10f2,1},{0x2b446,3}}, + {{0x2c410,4},{0x1019c,2}}, {{0xac8a,4},{0xde9,1}}, {{0x197e,3},{0xb52,6}}, {{0xd41,3},{0x423f,4}}, + {{0x16f3b,4},{0xb71,2}}, {{0xb03a,3},{0xd51,2}}, {{0x5c62,7},{0x1f13,4}}, {{0x1e45,3},{0xaf2,1}}, + {{0x845e,6},{0xb78,2}}, {{0xaca2,3},{0xc4d,2}}, {{0xbaa2,4},{0x1c451,4}}, {{0xe70,3},{0xb65,2}}, + {{0x3234,3},{0x36c1,5}}, {{0x1b8e1,6},{0x1b903,8}}, {{0x1084,3},{0xc89,2}}, {{0xbde,3},{0xf36d,5}}, + {{0x1a11,2},{0x1c,1}}, {{0x20bb,3},{0xf10,3}}, {{0x26754,2},{0xab9c,1}}, {{0x2c812,4},{0x1dec4,2}}, + {{0x7b46,11},{0xae7,1}}, {{0x10fb,3},{0xbe8,3}}, {{0x1489,3},{0xc64,2}}, {{0x161c,10},{0xff7,5}}, + {{0xaeca,4},{0xfdf,2}}, {{0x10fb,4},{0x24023,3}}, {{0x70f6,4},{0x1b80,4}}, {{0xc25,4},{0xbf3f,7}}, + {{0xb64,2},{0x689b,6}}, {{0x229b,5},{0x1704,3}}, {{0xb64,2},{0x1621,4}}, {{0xaefc,2},{0x14b6,2}}, + {{0x99fa,8},{0x2b,3}}, {{0x178c,3},{0x1a1f4,2}}, {{0x422e,3},{0x14e84,4}}, {{0xc52,2},{0xfdd,4}}, + {{0x446a,5},{0xae7,1}}, {{0x1062,8},{0x1644,8}}, {{0x12fc,4},{0x33b3,3}}, {{0x6fda,6},{0xfdf,3}}, + {{0x10f7,1},{0xba7,3}}, {{0x10b5e,6},{0x13a6,4}}, {{0xd19,3},{0xb52,5}}, {{0x10f7,1},{0xcb8,2}}, + {{0xb92e,5},{0x2b,3}}, {{0x13bee,8},{0xb2c,2}}, {{0x3678,5},{0x2482,3}}, {{0x6701,7},{0x4e32,5}}, + {{0x47fd,6},{0xae7,1}}, {{0x20b1f,6},{0xa7d,6}}, {{0xc37,3},{0xd7a,3}}, {{0xae7,2},{0xb71,2}}, + {{0xfcf9,5},{0x3a3b,3}}, {{0x28,1},{0xb65,2}}, {{0xb78,2},{0xb2f,1}}, {{0x3ed0,3},{0xb52,5}}, + {{0x5be0,8},{0x296f,5}}, {{0x4a68,5},{0xfc6f,4}}, {{0x1b5c,3},{0x89b9,4}}, {{0xb7f,3},{0x2a16,3}}, + {{0xcb8,2},{0x1773,3}}, {{0x1cec,5},{0xc895,6}}, {{0x82de,7},{0xb52,5}}, {{0x143c,5},{0xcb8,2}}, + {{0x6e10,4},{0x151e8,6}}, {{0x929e,5},{0x2b,1}}, {{0x6ac5,1},{0xae2,1}}, {{0x2589,7},{0x67be,6}}, + {{0x1aaed,1},{0x10ec,1}}, {{0x30bc,3},{0xb2c,4}}, {{0x13a72,7},{0x2b,3}}, {{0xbeb,1},{0x13fa9,2}}, + {{0x1c,1},{0x142e,1}}, {{0x2eb4,9},{0x2ebd,5}}, {{0x10ea,3},{0x1a296,2}}, {{0x3e12,5},{0x92ca,4}}, + {{0xcf0,2},{0x2b,2}}, {{0xd0f,4},{0xd7c1,5}}, {{0xb66,2},{0xc3a,3}}, {{0x2500e,2},{0x10f6,1}}, + {{0x6178,7},{0xb52,6}}, {{0x10ca,1},{0x2098b,2}}, {{0xb75,2},{0xbb5,1}}, {{0x2a16,3},{0xc67,2}}, + {{0x1ac2e,7},{0xae7,1}}, {{0x6b3a,6},{0xb78,2}}, {{0x102c,2},{0x6dd7,3}}, {{0x6ac3,3},{0x1ba18,5}}, + {{0xeb2,1},{0xab9d,9}}, {{0x18b68,6},{0xb71,2}}, {{0x139c,4},{0xb52,2}}, {{0x181c,3},{0x29386,2}}, + {{0xe31,5},{0x5676,7}}, {{0x1f8c1,5},{0xaf2,1}}, {{0x2a24,3},{0x2af8,4}}, {{0xf773,5},{0xd1b,1}}, + {{0x1b6b3,2},{0x279c5,2}}, {{0x1077e,7},{0xc63,3}}, {{0x26c4,3},{0x15ab8,2}}, {{0xd78,5},{0x46ad,6}}, + {{0x43e3,1},{0xbb0,2}}, {{0xf681,5},{0x13fa9,2}}, {{0x2c8ae,4},{0x159cb,2}}, {{0x110c2,5},{0x2202,3}}, + {{0x5495,4},{0x11b8,4}}, {{0xc49,3},{0x4240,3}}, {{0xf0e,5},{0x502b,7}}, {{0xe006,5},{0xb52,5}}, + {{0xc17,3},{0x2c16,4}}, {{0x1869,5},{0x186e,10}}, {{0x24a34,3},{0x2446e,3}}, {{0x100f,3},{0xaf1,1}}, + {{0xbde,3},{0xbc5,3}}, {{0x273bd,2},{0x27b6,1}}, {{0x14cd0,6},{0x95a2,4}}, {{0x422e,3},{0x26bfc,3}}, + {{0x26b5,4},{0x1481,3}}, {{0xa7da,3},{0xf21,3}}, {{0x27b4,3},{0x15a61,2}}, {{0x6d81,3},{0x130f,2}}, + {{0xeb6,3},{0xbbf,2}}, {{0x1861,3},{0xbb5,3}}, {{0x2c4fa,4},{0xa51,2}}, {{0x423e,1},{0x5277,2}}, + {{0x65d6,9},{0x2b,3}}, {{0x22cf8,1},{0x27e1c,2}}, {{0x159c,4},{0x6155,9}}, {{0x4443,6},{0x102a,5}}, + {{0xc9e,3},{0x1b,1}}, {{0x2796,3},{0x6ac5,1}}, {{0x70dc,9},{0xdc1,5}}, {{0x3af4,8},{0x132f,3}}, + {{0x7a56,5},{0xaf1,1}}, {{0xc37,3},{0x969,4}}, {{0x1552c,7},{0x25c2,3}}, {{0x23e19,6},{0xae7,1}}, + {{0x25eaf,5},{0x1b,1}}, {{0x10ea,3},{0x21b2e,4}}, {{0x19b96,2},{0x10ec,1}}, {{0x244b9,2},{0x159cd,2}}, + {{0x10f8,2},{0x4417,2}}, {{0x24b7,6},{0xa00c,6}}, {{0x9aba,6},{0x1e6c,6}}, {{0x10fd,2},{0x4ab0,3}}, + {{0x15b4a,4},{0x70c8,4}}, {{0xd78,3},{0xb53d,6}}, {{0xb31,1},{0x2b5b9,2}}, {{0xbeb,1},{0x1a81d,2}}, + {{0x43e3,2},{0x173e,3}}, {{0xf3b4,6},{0x10e6d,3}}, {{0x23cfa,4},{0x10f6,2}}, {{0x1152c,7},{0x1489,3}}, + {{0x5c64,4},{0x190a,4}}, {{0x43e3,1},{0x4415,2}}, {{0x9b41,3},{0x1dac,3}}, {{0x6ac3,3},{0x1704,3}}, + {{0x27b95,4},{0x1b6b2,2}}, {{0x2480,3},{0xb9d,3}}, {{0x178c,3},{0x273ab,2}}, {{0x142e,1},{0x20cd,7}}, + {{0x7b22,7},{0xe70,4}}, {{0x28c1,2},{0xf9ec,7}}, {{0x4450,4},{0x9169,3}}, {{0x159c9,4},{0x410e,2}}, + {{0x116e,1},{0x27acd,2}}, {{0x27,1},{0xf10,3}}, {{0x6ac3,3},{0x8a49,2}}, {{0x54aa,6},{0x5396,3}}, + {{0x9929,4},{0xb54,3}}, {{0xb78,2},{0x28,2}}, {{0x2790b,2},{0x278af,1}}, {{0x5956,5},{0x1930,3}}, + {{0xde4,2},{0x2b,1}}, {{0x26c4,3},{0x28fce,2}}, {{0x10472,4},{0x10476,6}}, {{0x2d,1},{0xc1e,2}}, + {{0x6ac3,3},{0xb6ff,4}}, {{0x11ac,10},{0x11b6,5}}, {{0x2de2,7},{0x2de9,7}}, {{0x13d12,3},{0xc3b9,5}}, + {{0xbb8,12},{0xbc4,7}}, {{0x12d00,6},{0x2bca,4}}, {{0x8956,7},{0x1b,1}}, {{0x14d66,6},{0x14d6c,4}}, + {{0x2796,3},{0x114d,2}}, {{0x7972,6},{0x6f34,3}}, {{0x290c,2},{0xc67,2}}, {{0x287fa,6},{0x1f,1}}, + {{0xfefc,4},{0x10164,8}}, {{0x1c74,11},{0xb2c,2}}, {{0x1c,1},{0xfe5,2}}, {{0x430,3},{0x251f9,2}}, + {{0x11ba8,4},{0xae7,1}}, {{0xc3a,3},{0x1c,1}}, {{0x27b4,3},{0x28da,1}}, {{0x27b4,3},{0x17ae,1}}, + {{0xfdd,2},{0x1861,4}}, {{0x265b,4},{0xf6a,5}}, {{0x15252,6},{0x6dd2,4}}, {{0xbcb,3},{0x25aca,5}}, + {{0x900e,3},{0x2ae7,4}}, {{0x5dc3,7},{0x11e6,6}}, {{0x250f3,4},{0x1f2c5,2}}, {{0x32c0,7},{0x1a7f,6}}, + {{0x1d,1},{0xd8e,4}}, {{0xb8d,3},{0x2b,1}}, {{0x139e,4},{0x288a,10}}, {{0x687a,8},{0xe70,4}}, + {{0x924,1},{0x27989,2}}, {{0xaea,1},{0xfb88,6}}, {{0x91ea,7},{0x595e,5}}, {{0x82f6,7},{0x2683,5}}, + {{0x2867e,2},{0x734,1}}, {{0x278c9,2},{0x27a97,2}}, {{0x13bc,7},{0x8579,4}}, {{0x1b6ab,1},{0x27a19,2}}, + {{0xe6d,2},{0xae6,2}}, {{0x27d8b,2},{0x2446c,1}}, {{0x14c58,7},{0x25c2,3}}, {{0x82d2,6},{0x15b0,3}}, + {{0x43e3,1},{0x1fc44,5}}, {{0xa23a,8},{0x5fe0,4}}, {{0x17cc,4},{0xdbf,12}}, {{0x1b4eb,4},{0x46fa,4}}, + {{0x2971a,4},{0xd54,1}}, {{0x274b,10},{0x1af8,5}}, {{0xb7f,3},{0x5f90,3}}, {{0x2ada9,4},{0xae0,1}}, + {{0xaeb,2},{0x10dc,2}}, {{0x1a,2},{0x186b6,4}}, {{0x460a,7},{0xae7,1}}, {{0x14bba,4},{0xd8d0,4}}, + {{0x416a,5},{0x2f1b,8}}, {{0xc57,3},{0xb2e,2}}, {{0x278a1,3},{0x2796b,2}}, {{0xadd,5},{0xd256,6}}, + {{0x116e,1},{0x27ac7,2}}, {{0x6ac3,4},{0xebef,4}}, {{0x180c,7},{0xb65,2}}, {{0x11b4e,7},{0x1bdb,3}}, + {{0x19a1a,7},{0x10dc,2}}, {{0x1098,3},{0xb5f8,6}}, {{0x1574b,2},{0xbe7,1}}, {{0x1b6db,4},{0x244e7,2}}, + {{0x28b0,4},{0x288a,10}}, {{0x17280,6},{0xadf,2}}, {{0x238b,9},{0xb52,6}}, {{0x6d81,3},{0x440f,2}}, + {{0x2c76,4},{0x179ce,3}}, {{0x84b2,5},{0xce8,3}}, {{0x10fb,3},{0x4286,2}}, {{0x27a49,2},{0x27a49,2}}, + {{0xcb8,2},{0xbefd,7}}, {{0x5d2b,4},{0xcc0,3}}, {{0xc4d,2},{0x4b33,4}}, {{0x3598,5},{0x12e4,8}}, + {{0x415e,2},{0x8ec8,4}}, {{0x41da,3},{0x1a2d5,6}}, {{0x286d3,6},{0x806,2}}, {{0x274b,5},{0xc1c,2}}, + {{0x2c5ba,4},{0x70b4,2}}, {{0x253fb,3},{0x251cb,1}}, {{0x24a2d,2},{0x27e66,3}}, {{0xbb15,3},{0x2be6,4}}, + {{0x55ae,8},{0x296f,5}}, {{0xa132,6},{0x6430,6}}, {{0xaeb4,5},{0xc34,2}}, {{0x2c896,4},{0x6f78,2}}, + {{0xbde,3},{0x142e,1}}, {{0x4106,4},{0xb76,3}}, {{0x116e,1},{0x27a8b,2}}, {{0x1865,4},{0x10dc,2}}, + {{0x2c52a,4},{0xff02,2}}, {{0x20221,5},{0xeb2,1}}, {{0x432,48},{0x432,2}}, {{0x16cc,4},{0x19733,5}}, + {{0x27b95,4},{0x2794d,2}}, {{0x6672,5},{0x2bfd,2}}, {{0x14dc,4},{0x1d,1}}, {{0xbb5,1},{0xc60,3}}, + {{0x18874,5},{0x1a72,4}}, {{0x27,1},{0xb7d,1}}, {{0x3234,6},{0x89c8,5}}, {{0x27b95,4},{0x2797d,2}}, + {{0xa8ca,8},{0x1b80,4}}, {{0xfc6a,5},{0x2585,3}}, {{0x28ea4,4},{0x1878,1}}, {{0xcf0,2},{0xae7,1}}, + {{0x177c,4},{0x19c82,5}}, {{0x1daf,7},{0x1408,4}}, {{0x9232,9},{0x2b,3}}, {{0x6d81,3},{0x6d86,5}}, + {{0x286a6,3},{0x28652,2}}, {{0x10c8,3},{0x5c76,4}}, {{0xcd3,3},{0xb7d,2}}, {{0xb71,2},{0x12be,3}}, + {{0xcd9,4},{0xe6d,2}}, {{0xf30,5},{0x4ed6,4}}, {{0x40c0,4},{0x689b,6}}, {{0xddc,6},{0x1b0a,2}}, + {{0xb8f,2},{0x1e,1}}, {{0x58d4,5},{0x107e,5}}, {{0x6c56,5},{0x1a06,7}}, {{0x10fb,3},{0x38e3,4}}, + {{0x15abb,3},{0x10ef,2}}, {{0x256b,4},{0x2dc3,3}}, {{0x27983,2},{0x27a31,2}}, {{0xbb5,1},{0xfcfc,3}}, + {{0x2789b,3},{0x27a73,2}}, {{0x29f18,3},{0x27a07,2}}, {{0x2ade3,4},{0xb64,2}}, {{0x11cfc,6},{0x1f13,4}}, + {{0x22cf8,1},{0x28431,2}}, {{0xc39,2},{0x265d,3}}, {{0x1b,1},{0xbd1,2}}, {{0xbcb,3},{0xdf3,3}}, + {{0xcfd,5},{0xae9,2}}, {{0xbe7,1},{0x26f7a,2}}, {{0x6d81,3},{0x410c,4}}, {{0xa29a,8},{0x2af8,4}}, + {{0xa8fa,5},{0xb89,2}}, {{0xb44,3},{0xc77,2}}, {{0x36be,5},{0x12c33,5}}, {{0x285d1,2},{0x27592,3}}, + {{0xc52,2},{0x202c,3}}, {{0x2c662,4},{0x70ce,2}}, {{0xa4d,24},{0xa4d,24}}, {{0x116e,1},{0x27ae5,2}}, + {{0x232b9,3},{0xaf2,1}}, {{0x27b6,1},{0xae2,2}}, {{0x3e04,8},{0x1f13,4}}, {{0xa25e,8},{0xa266,4}}, + {{0xb2e,2},{0xe6d,2}}, {{0x10ea,3},{0x10119,2}}, {{0x27b4,3},{0x19f75,4}}, {{0xbed,4},{0xb65,2}}, + {{0x10ea,3},{0x92c9,4}}, {{0xfe38,4},{0x2977,3}}, {{0x1509c,2},{0x5af9,3}}, {{0x1c,1},{0x28,2}}, + {{0xae0,1},{0x28da,1}}, {{0x15adc,3},{0x15adf,6}}, {{0x1b,1},{0x28,2}}, {{0x734,2},{0x112c,1}}, + {{0x29ecd,3},{0x1173,2}}, {{0xd41,4},{0xb63,2}}, {{0x10f3,1},{0x26c6,1}}, {{0xb65,2},{0xb55,2}}, + {{0x114d,2},{0xdf0,2}}, {{0x1e9ff,4},{0xc21,4}}, {{0x14710,4},{0x12fe,1}}, {{0x40f8,4},{0x28,1}}, + {{0x924,2},{0x27a8b,2}}, {{0x2c76,4},{0xb0a1,4}}, {{0x2798f,2},{0x278af,1}}, {{0xaea,2},{0xd17,3}}, + {{0x12d3,6},{0x25df,4}}, {{0xc13,4},{0x450a,9}}, {{0x1cec,10},{0x1f13,4}}, {{0x30,2},{0xc30,3}}, + {{0x6d8e,3},{0x35f3,7}}, {{0x196f0,7},{0xb2c,2}}, {{0x1497c,6},{0x4831,4}}, {{0x15b3f,2},{0x10ec,1}}, + {{0x6deb,3},{0x4d56,4}}, {{0x14922,5},{0xaec,2}}, {{0x90e6,4},{0xac92,4}}, {{0x6c63,5},{0x1ec2,4}}, + {{0xa0f6,7},{0x32f3,5}}, {{0x1f449,6},{0xb78,2}}, {{0x156e4,7},{0xd7a,3}}, {{0x4881,4},{0xc6a9,3}}, + {{0x122c4,6},{0xc63,3}}, {{0x10ef,1},{0x25002,2}}, {{0x2344d,5},{0xc55,2}}, {{0x3df6,5},{0x16f9,3}}, + {{0x15450,7},{0x109f,3}}, {{0x1b173,8},{0xfee4,4}}, {{0x1931b,6},{0x3776,3}}, {{0x115a4,8},{0xca1,2}}, + {{0xbe7,1},{0xd7d4,8}}, {{0x29f18,3},{0x27905,2}}, {{0xcc4d,7},{0x2279,4}}, {{0x24a35,2},{0x24461,1}}, + {{0x6f14,9},{0x41ba,4}}, {{0x10fb,3},{0xd79,3}}, {{0x10ea,3},{0x26e7e,3}}, {{0x29f18,3},{0x27897,2}}, + {{0x20181,6},{0xaf2,1}}, {{0xce73,7},{0x1b80,4}}, {{0x27b4,3},{0x1a1f7,2}}, {{0x41be,4},{0xc62,4}}, + {{0x27ce8,3},{0x2a93f,2}}, {{0x24f85,4},{0x948,1}}, {{0x1a663,2},{0xbb1,3}}, {{0x28,1},{0xc1e,5}}, + {{0x1f161,4},{0xca6,3}}, {{0x27897,1},{0x278b5,2}}, {{0x244b9,2},{0x1a328,2}}, {{0xc67,2},{0x1683,3}}, + {{0xb8f,2},{0x11b2,4}}, {{0x1bfc,6},{0xbcc0,5}}, {{0x14b0c,5},{0x15af,4}}, {{0x1aa89,3},{0x10dc,2}}, + {{0x27b4,3},{0x1ff0c,5}}, {{0x1084,3},{0x7f9c,6}}, {{0xab9c,1},{0x4189,3}}, {{0x1b203,4},{0xfeec,4}}, + {{0x17bc,3},{0x21f51,2}}, {{0x6d8e,3},{0x36b7,6}}, {{0x36b0,7},{0x36b7,7}}, {{0xae0,1},{0x323c,2}}, + {{0x1f,4},{0x2748,2}}, {{0xd41,5},{0x9808,6}}, {{0x969,2},{0x244c7,2}}, {{0x27c85,4},{0x924,2}}, + {{0x1307,3},{0x1c,1}}, {{0x1ab2,5},{0xfdd,2}}, {{0x33b2,3},{0x3fdb,5}}, {{0x14e1c,3},{0x3789,3}}, + {{0x19d7a,5},{0xb4f,2}}, {{0x1c,1},{0x78a2,4}}, {{0xfc6a,5},{0xbb5,1}}, {{0x1a1a2,3},{0xc7b,4}}, + {{0x278a1,3},{0x279e3,2}}, {{0x61c6,5},{0xb52,6}}, {{0x3aa0,7},{0x3521,7}}, {{0x1d,1},{0x1704,3}}, + {{0x762a,4},{0xeb3,3}}, {{0x679d,5},{0x3fdb,5}}, {{0xc25,4},{0xf10,3}}, {{0x167c,5},{0x191d3,4}}, + {{0x2789b,3},{0x27a13,2}}, {{0x72b6,3},{0xb78,2}}, {{0xee0,3},{0x1362,3}}, {{0xcf68,2},{0x24a7d,4}}, + {{0x4d9b,8},{0xe70,4}}, {{0xb55,2},{0x1037,6}}, {{0xc25,4},{0x139f,3}}, {{0x202d1,6},{0xb78,2}}, + {{0x10fa,1},{0x1f2c5,2}}, {{0x26c6,2},{0xa249,4}}, {{0x70dc,6},{0x27,1}}, {{0x1817e,5},{0x1818c,4}}, + {{0x10f2,1},{0xbbf,2}}, {{0x1687,3},{0x1d,1}}, {{0x41c0,2},{0x1c,1}}, {{0x92c2,7},{0x92c9,4}}, + {{0x181c,3},{0x1574b,7}}, {{0xaea,1},{0xa469,5}}, {{0xcd9,3},{0xb2f,1}}, {{0x924,2},{0x27ab5,2}}, + {{0xd5c,2},{0xdb50,7}}, {{0x26f7a,2},{0xaa98,2}}, {{0x22cf8,1},{0x2b7cd,2}}, {{0x29c28,4},{0xae7,1}}, + {{0x1051,7},{0xa049,5}}, {{0x1685,3},{0x173e,3}}, {{0x4188,2},{0xb78,2}}, {{0x25855,7},{0x27,1}}, + {{0x177c,3},{0xab9c,1}}, {{0x6ac3,3},{0xf10,3}}, {{0x29f18,3},{0x278af,2}}, {{0x70f6,7},{0x70fd,5}}, + {{0xded,7},{0x7abd,5}}, {{0x1d96f,6},{0xb48,2}}, {{0xb4b,2},{0x1555,7}}, {{0xb7c,2},{0xae6,3}}, + {{0xb48,2},{0xc3e,3}}, {{0xeec,5},{0x54fd,8}}, {{0xadf,2},{0x1370,3}}, {{0xeec,7},{0x197e,3}}, + {{0x28be,3},{0x15a1f,4}}, {{0x7e16,7},{0x1af8,5}}, {{0x271e,3},{0x217e0,4}}, {{0x10fb,4},{0x9484,6}}, + {{0x67de,9},{0xae7,1}}, {{0x2c46a,4},{0x96b,2}}, {{0x15adc,2},{0xbeb,1}}, {{0x27b6,1},{0x1f3ee,2}}, + {{0x6d81,3},{0xb8a,2}}, {{0x1e45,3},{0xb52,2}}, {{0x151c,4},{0xb4b,2}}, {{0x24460,3},{0x2445f,1}}, + {{0xd17,3},{0xb2e,2}}, {{0xe0a0,8},{0xb9d,3}}, {{0x116d,1},{0x279c5,2}}, {{0xfee4,12},{0xfef0,8}}, + {{0x312c,3},{0xc34,2}}, {{0x423e,1},{0x1254,3}}, {{0x271e,3},{0x1f3ee,2}}, {{0xdcb,7},{0x1213,9}}, + {{0x3774,5},{0x1098,3}}, {{0x5c2e,9},{0x11b8,4}}, {{0xbe0,1},{0xaee9,2}}, {{0xbe7,1},{0xb47,2}}, + {{0xff20,4},{0x24759,4}}, {{0xdae,4},{0x1512,4}}, {{0x700f,3},{0xb55,2}}, {{0x27ce2,4},{0x734,2}}, + {{0xaca2,3},{0x298f7,2}}, {{0x423c,3},{0x10dc,2}}, {{0x271e,3},{0x411c,4}}, {{0x2cc4a,4},{0x244c3,2}}, + {{0x14b90,6},{0xc828,4}}, {{0x422e,3},{0xc4d,2}}, {{0x946,3},{0x948,32}}, {{0x2a923,4},{0x2445e,1}}, + {{0x5358,8},{0x5360,5}}, {{0x159c,4},{0x21,2}}, {{0xe338,3},{0xcab,3}}, {{0xb002,5},{0x2b,3}}, + {{0xadf,2},{0xdbf,3}}, {{0x2789b,3},{0x278c9,2}}, {{0xbde,3},{0x32f3,4}}, {{0x2499,12},{0xc63,3}}, + {{0xb7f,3},{0xbb5,1}}, {{0x6d8e,3},{0x46f8,3}}, {{0x30,2},{0x24467,2}}, {{0x2c91a,4},{0x244ed,2}}, + {{0x2520a,2},{0x159c8,1}}, {{0xb52,2},{0xb52,5}}, {{0x1dbf5,6},{0x10dc,2}}, {{0x118a6,6},{0x372a,4}}, + {{0x3640,8},{0x1719,3}}, {{0xa7d8,2},{0x10f0,1}}, {{0x29ac,5},{0x766c,6}}, {{0x271e,3},{0x26c08,3}}, + {{0x30c8,7},{0xb52,6}}, {{0x600e,3},{0x46fa,4}}, {{0xc29,5},{0xb996,4}}, {{0xb6c,3},{0x2a90,2}}, + {{0x20ac,7},{0xb65,2}}, {{0x265b,4},{0x19946,5}}, {{0xbde,3},{0x24298,4}}, {{0xfb2,2},{0x2b,1}}, + {{0xd7d,4},{0xb52,5}}, {{0x154e6,6},{0xae7,1}}, {{0x579c,8},{0x2b,3}}, {{0x1b4e4,1},{0x20b19,6}}, + {{0xcb8,2},{0xc57,3}}, {{0x41be,3},{0x49ac,2}}, {{0xba13,7},{0x2be6,4}}, {{0x10f6,1},{0xeb2,1}}, + {{0x116e,1},{0x27a7f,2}}, {{0x1ae4a,4},{0x1878,1}}, {{0x1b140,3},{0x278dc,1}}, {{0xf99b,6},{0x1517c,4}}, + {{0xdf0,2},{0x2b,1}}, {{0x10f7,1},{0x10f0,1}}, {{0xcb8,2},{0xb2c,2}}, {{0x1a3a,6},{0x1489,3}}, + {{0xb9d,3},{0x3559,3}}, {{0xc17,3},{0xaea,1}}, {{0x3598,5},{0xc30,3}}, {{0x12fc,4},{0x4d44,3}}, + {{0x28f6,2},{0x760b,7}}, {{0x27b4,3},{0x95c7,5}}, {{0x712f,3},{0x40b8,2}}, {{0xc25,3},{0x13dd2,5}}, + {{0xae0,2},{0xaea,1}}, {{0x1878,2},{0x187a,13}}, {{0x6b04,5},{0xc3e,2}}, {{0xb73,2},{0x2988,4}}, + {{0xe397,7},{0x2af8,4}}, {{0x1c47,8},{0x2f48,6}}, {{0x116e,1},{0x27af1,2}}, {{0xb8f,2},{0x1dec2,4}}, + {{0x10fb,3},{0x1257,3}}, {{0xd57,2},{0x47fe,5}}, {{0x2ade9,4},{0x2c,2}}, {{0x2214,7},{0x1468,4}}, + {{0x181c,3},{0x1308,4}}, {{0x271e,3},{0x1cc58,4}}, {{0xae7,2},{0x1a2f,6}}, {{0xb31,1},{0x24f92,2}}, + {{0xbe4,1},{0x28,6}}, {{0xd57,2},{0x1d89,2}}, {{0xaef,3},{0x1257,3}}, {{0xd0f,4},{0xc30,3}}, + {{0x74ba,3},{0xae7,1}}, {{0xae7,1},{0xaa21,4}}, {{0x3782,5},{0x5cd1,4}}, {{0x1aead,6},{0x1c32,3}}, + {{0x143c,5},{0x5f03,5}}, {{0x14bb4,2},{0xd54,1}}, {{0x14954,7},{0x25c2,3}}, {{0x3591,6},{0xd51,2}}, + {{0x10b7,5},{0x2745,3}}, {{0x10168,4},{0xff3c,8}}, {{0x176c,10},{0xb52,6}}, {{0x11ef,2},{0x132f,3}}, + {{0x1c,1},{0x2b1dc,3}}, {{0xcd9,5},{0xdfa8,6}}, {{0xba5,4},{0x8cf6,8}}, {{0x29b9c,4},{0x28da,1}}, + {{0x8a3a,10},{0xb78,2}}, {{0x10188,4},{0x70a4,4}}, {{0x3ffc,8},{0x2e92,6}}, {{0xdba,4},{0x1d,1}}, + {{0xd0f,11},{0x251c,4}}, {{0x10ec,1},{0x15a5e,2}}, {{0xc25,4},{0x16c23,5}}, {{0x257a,4},{0x1e983,4}}, + {{0xeb2,1},{0x24ce4,5}}, {{0xaca2,3},{0xcc0,3}}, {{0x55d7,6},{0x11b8,4}}, {{0xbde,3},{0x2c00,3}}, + {{0x709a,6},{0x70a0,16}}, {{0x2796,3},{0x158ad,4}}, {{0x28634,1},{0x19,1}}, {{0x14abc,7},{0x1489,3}}, + {{0x27b4,3},{0x7b33,7}}, {{0x26e6f,4},{0x20a1f,2}}, {{0x271e,3},{0x13dd2,5}}, {{0x3234,3},{0x69ce,3}}, + {{0x2769d,4},{0x1b693,2}}, {{0x10ca,1},{0x2b,3}}, {{0xf6e6,4},{0xdf0,2}}, {{0x214ee,5},{0xc55,2}}, + {{0xd1b,1},{0x4646,5}}, {{0x2789b,3},{0x27aa9,2}}, {{0xf1f,11},{0xcf7,6}}, {{0xcc7,11},{0xcd2,7}}, + {{0x1084,5},{0x4cec,6}}, {{0x6b45,4},{0x1878,1}}, {{0x10ca,1},{0x3e16,3}}, {{0xdcb,7},{0x1a05,8}}, + {{0x6d8e,3},{0x240c3,3}}, {{0xba9,4},{0x5f28,7}}, {{0x1878,1},{0x428b,2}}, {{0x75b2,8},{0x1278,4}}, + {{0x10f3,1},{0xc67,2}}, {{0x27451,4},{0x20aa9,2}}, {{0xaeb,2},{0xde9,1}}, {{0xb47,2},{0xe1d,3}}, + {{0x5442,4},{0x1a7fb,4}}, {{0x4290,4},{0x42a7,3}}, {{0xaea,3},{0xb7d,1}}, {{0x30c8,7},{0xd7f,3}}, + {{0x9a9,1},{0x19,1}}, {{0xc25,3},{0xbb5,1}}, {{0x70dc,6},{0xb7d,1}}, {{0xee34,7},{0xd256,4}}, + {{0x1084,3},{0xbed,2}}, {{0x2441,6},{0xb53,4}}, {{0x27d0f,2},{0x18,1}}, {{0x1cec,5},{0x3f82,3}}, + {{0x2a8ce,4},{0x9c9,1}}, {{0x6d8e,3},{0x1abd7,2}}, {{0xcd9,3},{0x217e0,3}}, {{0xd0fc,5},{0xd101,6}}, + {{0x46f4,4},{0xadf,2}}, {{0xc67,3},{0x1bdb,3}}, {{0xd0f,6},{0xc32,5}}, {{0x132f0,6},{0xc25a,4}}, + {{0xb257,5},{0x27,1}}, {{0x4fa3,7},{0xdfb,3}}, {{0x42a6,4},{0xb2c,2}}, {{0x25b31,4},{0xbd6,2}}, + {{0xa938,3},{0x750e,4}}, {{0x11c34,6},{0x31f8,4}}, {{0x675c,9},{0x1307,4}}, {{0x3234,3},{0xfe5,2}}, + {{0x17fe,3},{0xe70c,6}}, {{0x1e9f,9},{0x11e6,6}}, {{0x177c,3},{0xb8d,3}}, {{0x253fb,3},{0x2446e,3}}, + {{0xc60,5},{0xff7f,5}}, {{0x10ec4,5},{0x16ee,2}}, {{0xa89a,7},{0xa8a1,5}}, {{0x8836,9},{0x5cd6,3}}, + {{0x1189c,5},{0x1563,5}}, {{0x24f91,2},{0x24467,2}}, {{0x1aec8,5},{0x3e2a,4}}, {{0x156c6,5},{0x34a2,4}}, + {{0x7ee2,9},{0x2b,3}}, {{0x124c,5},{0x78ff,7}}, {{0x13748,7},{0x5203,3}}, {{0x10ca,1},{0xb2c,2}}, + {{0xcf68,2},{0x1a,1}}, {{0x1a2e,3},{0xb65,2}}, {{0x136da,5},{0x40bc,4}}, {{0xc49,3},{0xee8,3}}, + {{0x27b4,3},{0x323c,2}}, {{0x41be,3},{0x30af,5}}, {{0x1c2ad,5},{0x25da,3}}, {{0xba5,4},{0xd9e,9}}, + {{0x28431,2},{0x1b4e3,1}}, {{0x1d3fd,5},{0x4031,3}}, {{0xc52,2},{0x1d,1}}, {{0xadd,3},{0x10c2,2}}, + {{0x1f869,5},{0x1f86e,3}}, {{0x6e39,7},{0xb78,2}}, {{0x2c5ea,4},{0x1a328,2}}, {{0x269d8,2},{0x26e6d,2}}, + {{0x2ce3c,4},{0xaf1,1}}, {{0x1d89,2},{0x715a,3}}, {{0x131b0,5},{0x50fd,5}}, {{0x9b62,8},{0x1498,3}}, + {{0x1c,1},{0x23d9,3}}, {{0x4106,4},{0x9133,3}}, {{0x10fb,3},{0xade9,9}}, {{0x2070,7},{0x2066,7}}, + {{0x1b6dd,2},{0xff22,2}}, {{0xfb1,2},{0x392d,7}}, {{0x1d48,3},{0xaf2,1}}, {{0x2232,8},{0xdf0,2}}, + {{0x22bc2,6},{0x1c,1}}, {{0x278d6,1},{0x2791d,2}}, {{0x271e,3},{0x1307,3}}, {{0xd65,3},{0x39d3,3}}, + {{0x924,2},{0x27aa9,2}}, {{0xff7,4},{0xc2e,2}}, {{0x1cbf,6},{0x89b9,4}}, {{0xbde,3},{0x1f2c4,2}}, + {{0xc37,6},{0xbd6,2}}, {{0xfe59,6},{0x142ac,4}}, {{0x24a2d,3},{0x27e2b,2}}, {{0x1f881,5},{0x2db1,3}}, + {{0x437e,4},{0x10c4,4}}, {{0xf959,5},{0x4ae5,5}}, {{0xf773,6},{0x14e8e,4}}, {{0xc1c,2},{0x4ab0,3}}, + {{0x178c,3},{0x291bd,2}}, {{0x6d81,3},{0x14139,4}}, {{0xc34,2},{0x1b22,3}}, {{0xdfa,3},{0xb48,2}}, + {{0x26c6,1},{0xaa98,2}}, {{0x441c,3},{0xc29,2}}, {{0x2b7ca,2},{0xb31,1}}, {{0x6c63,8},{0xbb4,4}}, + {{0x10f2,1},{0xb52,2}}, {{0x10ea,3},{0xd1a,2}}, {{0x250c9,4},{0x1f2c4,2}}, {{0x271e,3},{0x4606,3}}, + {{0xeb1,2},{0xb79,3}}, {{0x2e44,5},{0xb75,2}}, {{0xc37,3},{0xd0d,2}}, {{0x27b4,3},{0x2947b,2}}, + {{0x1a7ff,6},{0xdd3,3}}, {{0x29ecd,3},{0x279fb,2}}, {{0xeb74,6},{0xae7,1}}, {{0x20bb,3},{0xc57,3}}, + {{0xbde,3},{0x1958b,6}}, {{0xf6c3,6},{0x2b,3}}, {{0xbda4,7},{0xc1c,2}}, {{0x10fb,3},{0x20adf,2}}, + {{0xc13,4},{0xc8d4,4}}, {{0xadd,4},{0x12a5,7}}, {{0x1098,3},{0x140a,2}}, {{0x1f2b1,4},{0xd5c,1}}, + {{0xf21,3},{0x1d,1}}, {{0x12116,5},{0xc63,3}}, {{0x4402,2},{0x139e,3}}, {{0x26c4d,4},{0xec2,2}}, + {{0xb2c,2},{0xd57,2}}, {{0x6d81,3},{0x19f75,4}}, {{0x10c30,7},{0x2b,3}}, {{0x2c494,4},{0x2456b,2}}, + {{0xb8f,2},{0x4de3,3}}, {{0x278c9,2},{0x27ab5,2}}, {{0x6c15,6},{0xcd2,6}}, {{0x18d96,6},{0x103a,3}}, + {{0x1040,5},{0x28,1}}, {{0xc3d,3},{0x31c8,8}}, {{0x11360,7},{0x1aa6,3}}, {{0xc77,2},{0xb2c,4}}, + {{0x18d4,3},{0xbb4,4}}, {{0x16a9c,6},{0xb63,2}}, {{0x278dc,1},{0x1b6b3,2}}, {{0xcde,3},{0x807f,6}}, + {{0x14618,3},{0x2693,3}}, {{0x19a98,6},{0xc63,3}}, {{0x6d81,3},{0x1701,3}}, {{0x16cc,4},{0xac8e,4}}, + {{0x22e6,7},{0x2b4b,5}}, {{0xcd9,3},{0x5c25,5}}, {{0x11ec3,5},{0x2b,3}}, {{0x2a94b,3},{0x24461,1}}, + {{0x1ab2,5},{0x1a,2}}, {{0x1a847,6},{0x141e,3}}, {{0x48c8,6},{0x48db,7}}, {{0x2798,2},{0xdc37,3}}, + {{0xf9e8,5},{0xc55,2}}, {{0x278dc,1},{0x27abb,2}}, {{0x22e6,5},{0x12dec,4}}, {{0x2467b,6},{0x245a9,6}}, + {{0x1bf65,5},{0x103a,3}}, {{0xbde,3},{0xbe8,3}}, {{0xae0,1},{0x5cd6,3}}, {{0x13ed2,5},{0xae7,1}}, + {{0x143c,5},{0x197f,7}}, {{0xbde,3},{0x290e,4}}, {{0xf30,5},{0x4f24,8}}, {{0x21542,6},{0xae7,1}}, + {{0x16aed,5},{0xafa8,4}}, {{0xbb5,1},{0xc8a3,3}}, {{0x10f2,1},{0xc67,2}}, {{0x3234,3},{0xcc0e,3}}, + {{0xb609,6},{0xb60f,5}}, {{0x14bf4,4},{0x8639,4}}, {{0xae5,1},{0x1e,1}}, {{0x1aaef,3},{0x209b6,4}}, + {{0xceb,3},{0x28a2,4}}, {{0xa230,5},{0xb8f,3}}, {{0x2d,1},{0xfe5,2}}, {{0xcd9,3},{0xc2e,2}}, + {{0x27b4,3},{0x1864,2}}, {{0x2cd8,10},{0xae7,1}}, {{0x15a79,5},{0x28da,4}}, {{0x16bc,4},{0x46e1,6}}, + {{0x1dec2,4},{0xeb2,1}}, {{0x422e,3},{0xeb1,2}}, {{0xd0f,4},{0xa0be,8}}, {{0x2c5c6,4},{0x6f64,2}}, + {{0x3a30,7},{0x3a37,7}}, {{0x1aa6,3},{0xd7f,3}}, {{0xbcb,3},{0x11ef,3}}, {{0xb49,2},{0xb2e,2}}, + {{0x70a0,2},{0x244ed,2}}, {{0x3774,4},{0x10a2,4}}, {{0x870a,6},{0xe70,4}}, {{0x10fb,3},{0xb2c,2}}, + {{0xb72,2},{0x1a,3}}, {{0x21967,5},{0xd0d,2}}, {{0xb2f,1},{0xc60,3}}, {{0x181c,3},{0xee8,3}}, + {{0xaa9e,5},{0xf8f,5}}, {{0x2445e,1},{0x9c9,1}}, {{0x278c9,2},{0x27abb,2}}, {{0x3162,5},{0xae8,2}}, + {{0x1b6e1,2},{0x6f8a,2}}, {{0x1294a,7},{0x2939,3}}, {{0x49ac,2},{0xc63,3}}, {{0x3faa,3},{0xb54,2}}, + {{0xb2e,2},{0xb8f,2}}, {{0x1098,3},{0x28,2}}, {{0x1b6ab,1},{0x1b140,2}}, {{0x41da,3},{0xc30,2}}, + {{0xd41,4},{0xd0b,3}}, {{0xceb,3},{0x1f,1}}, {{0xd1b,1},{0xbd6,2}}, {{0xab9a,3},{0xb72,2}}, + {{0x118c,5},{0x4518,8}}, {{0x27b95,4},{0x27a1f,2}}, {{0x430,18},{0x432,15}}, {{0x4460,3},{0xd1b,1}}, + {{0xae0,2},{0x25bbf,2}}, {{0x1ed69,3},{0x2b,2}}, {{0x1a81d,2},{0x4351,2}}, {{0xf57b,3},{0xa886,4}}, + {{0x1ab2,4},{0x443e,2}}, {{0x2324,5},{0xcb8,3}}, {{0x2446a,3},{0x251df,1}}, {{0x44b8,5},{0x28,1}}, + {{0x1465c,6},{0x10608,4}}, {{0xde4,2},{0x28,1}}, {{0x9a9,3},{0x2864c,2}}, {{0x5949,6},{0x10220,4}}, + {{0xb215,6},{0x1278,4}}, {{0xbcb,3},{0xde9,1}}, {{0x10ea,3},{0x2195,3}}, {{0x16ac,5},{0x1a8e,6}}, + {{0x256b,4},{0x13684,6}}, {{0x27b6,1},{0x19258,4}}, {{0x26c4,3},{0xbed,2}}, {{0x24705,4},{0x1b205,2}}, + {{0xbe0,1},{0x1675,2}}, {{0xf212,3},{0xf55e,3}}, {{0xa246,7},{0xb78,2}}, {{0xb609,6},{0x132f,3}}, + {{0x1084,3},{0x760b,3}}, {{0xd57f,4},{0x132f,3}}, {{0x24705,4},{0x24873,2}}, {{0x7076,6},{0xc9f,4}}, + {{0x27b6,1},{0xb70,2}}, {{0x17ec,5},{0xc1a,4}}, {{0x236ae,5},{0xc67,2}}, {{0x1abcb,4},{0x27581,2}}, + {{0x13b44,7},{0xcc0,3}}, {{0x2d,1},{0x220e5,4}}, {{0x10ffa,6},{0x2288,4}}, {{0xc52,2},{0xbbf,2}}, + {{0xede,3},{0x1269e,3}}, {{0x5f90,3},{0xb54,4}}, {{0xb002,5},{0x3167,7}}, {{0x1da0,7},{0x1da7,7}}, + {{0xfb1,2},{0x130f,2}}, {{0x6bd4,7},{0x1e6c,6}}, {{0xae0,1},{0x2bfc,2}}, {{0x1051,4},{0x18401,5}}, + {{0x2ae87,2},{0x2a96c,2}}, {{0x2c662,4},{0x6f8a,2}}, {{0xe9f,3},{0x1d8a,3}}, {{0x28,1},{0x10f6,1}}, + {{0x10fd,2},{0xcd5,2}}, {{0x1b,1},{0xd7f,3}}, {{0x27b4,3},{0x24ee2,3}}, {{0x115a4,8},{0xd48,2}}, + {{0x5254,9},{0xfa3,4}}, {{0xb8b,2},{0xae6,3}}, {{0x5c07,8},{0xdf9,5}}, {{0x38e5,6},{0x38eb,3}}, + {{0x10fb,3},{0x10f8,3}}, {{0x1cef,3},{0xb2c,2}}, {{0xc29,2},{0xcc3,4}}, {{0x4fbd,4},{0x11864,6}}, + {{0x152c4,2},{0xa7d1,2}}, {{0x286a,2},{0xc67,2}}, {{0x53cd,5},{0xbe8,3}}, {{0x1710f,6},{0x2b,3}}, + {{0x1878,1},{0xd1b,1}}, {{0xb9c,2},{0xeb2,1}}, {{0x17dc,5},{0xd0b,4}}, {{0xca3,5},{0xecc,3}}, + {{0x4a27,4},{0x5af9,3}}, {{0x5365,5},{0x101f7,5}}, {{0x1f3b1,5},{0x101b,3}}, {{0x638f,6},{0xb78,2}}, + {{0xd0f,4},{0xe6d,2}}, {{0x2789b,3},{0x27a6d,2}}, {{0x1c7b,4},{0x1408,4}}, {{0x1d57,6},{0x10dc,2}}, + {{0xd15,5},{0xfe5,2}}, {{0x14710,6},{0x32bb,4}}, {{0x43e3,1},{0x1a1f3,2}}, {{0x2789b,3},{0x279d1,2}}, + {{0x1bbe5,6},{0xc55,2}}, {{0x4a82,5},{0x10f5f,5}}, {{0x152c0,4},{0x10fa,1}}, {{0x1ed69,3},{0x10fa,1}}, + {{0x2674b,4},{0x1abd6,2}}, {{0x1c,1},{0x1257,2}}, {{0x2789b,3},{0x27a55,2}}, {{0x43e3,1},{0x1fc0c,4}}, + {{0x166c,4},{0xc30,2}}, {{0x20b39,4},{0xae0,1}}, {{0x3db0,5},{0x2683,5}}, {{0xd41,3},{0x16a72,6}}, + {{0xad64,6},{0x2574,2}}, {{0xde9,1},{0x16e15,4}}, {{0xa7da,3},{0xb78,3}}, {{0xed8f,5},{0x9ba5,5}}, + {{0x7a6e,5},{0x1f13,4}}, {{0x1095,3},{0x84dd,5}}, {{0x27,1},{0xb6ff,4}}, {{0x8c4,4},{0x532,12}}, + {{0xf0e,5},{0xe4a,4}}, {{0x2211,3},{0xc78,3}}, {{0x1b6d3,4},{0x1b6d3,4}}, {{0x1b06f,7},{0xcb8,2}}, + {{0xbde,3},{0xae6,2}}, {{0xd0f,4},{0x4446,6}}, {{0x19fb1,5},{0x108b,3}}, {{0x364e,6},{0xeb3,3}}, + {{0xaea,2},{0x3a48,4}}, {{0x6e44,5},{0x18b0a,4}}, {{0xfb06,8},{0x1a,1}}, {{0xab9c,1},{0xb78,2}}, + {{0x1773,3},{0xb65,2}}, {{0x6f68,12},{0x15794,6}}, {{0x1b5d3,4},{0x2349,4}}, {{0xbe7,2},{0xa7ed,4}}, + {{0x28c1,2},{0xb9c,2}}, {{0x10f0,1},{0xbd1,2}}, {{0xdac,2},{0x28,1}}, {{0x185da,7},{0xae7,1}}, + {{0xcd9,3},{0xb64,2}}, {{0x28633,2},{0x1b4e3,1}}, {{0xd8e4,8},{0xc3e,3}}, {{0x12800,6},{0x1282e,4}}, + {{0xf6e4,5},{0x12085,5}}, {{0xa29a,5},{0x1b4f,3}}, {{0x14bc,7},{0x11e6,6}}, {{0x1375c,6},{0x2b,3}}, + {{0x139c,6},{0x84d0,6}}, {{0x5288,5},{0xbd1,2}}, {{0x14cc,4},{0xee2,2}}, {{0x10c8,3},{0xfb1,2}}, + {{0x16ae,3},{0xb64,2}}, {{0x281f,3},{0x8099,4}}, {{0x12a94,7},{0xa04b,3}}, {{0x14c28,3},{0x4905,4}}, + {{0xcc9a,7},{0x1514,4}}, {{0x27cc5,2},{0x28634,1}}, {{0xea2a,5},{0x4bcf,4}}, {{0x423e,1},{0xbc5,3}}, + {{0x6d8e,3},{0x1719,3}}, {{0x4d08,4},{0xbc1,2}}, {{0xfdbf,6},{0xecf0,5}}, {{0x1084,3},{0x20a0,3}}, + {{0x22fd1,5},{0x19ca,2}}, {{0x364e,4},{0x3921,5}}, {{0x2d12,4},{0xcef3,4}}, {{0x48a1,6},{0x108e,7}}, + {{0x7a32,5},{0xc8e,3}}, {{0xc25,5},{0xe2c0,4}}, {{0x27b95,4},{0x27965,2}}, {{0x40b8,2},{0x1a,2}}, + {{0x39f8,8},{0xb52,6}}, {{0x569a,5},{0xc1c,2}}, {{0x4617,10},{0xc3d,3}}, {{0xbc0,2},{0x10ba,2}}, + {{0x1bd95,6},{0xb48,2}}, {{0xae7,2},{0x2b,1}}, {{0x278c9,2},{0x278cf,2}}, {{0x1035,5},{0xd0d,2}}, + {{0x2b8d,4},{0x3bf9,5}}, {{0x6d81,3},{0xbd8,2}}, {{0x19d7a,6},{0x700f,3}}, {{0x100b0,2},{0x27b6,1}}, + {{0x12a58,7},{0x2939,3}}, {{0x13e0a,7},{0x10dc,2}}, {{0x24440,4},{0xbe4,1}}, {{0x17fe,3},{0xb8b,2}}, + {{0x1f3e1,5},{0xc2f,2}}, {{0x15a8b,4},{0x2182,5}}, {{0x3234,3},{0x1f,1}}, {{0x1b75,7},{0x1b7c,8}}, + {{0xab9c,1},{0xa7d8,2}}, {{0x924,2},{0x279d1,2}}, {{0x139c,6},{0x84d0,4}}, {{0x1b57,4},{0xcf0,2}}, + {{0x24287,4},{0x1a81d,2}}, {{0x27897,1},{0x27a13,2}}, {{0x1b6cb,1},{0x24462,1}}, {{0x6f62,6},{0x6f6e,6}}, + {{0x1051,4},{0x28,2}}, {{0x17fc,5},{0x1773,3}}, {{0xd54,3},{0x38eb,3}}, {{0x924,2},{0x27abb,2}}, + {{0xdef,3},{0x1f,2}}, {{0xf369,3},{0x1140,3}}, {{0x188e0,6},{0x2b,3}}, {{0x24b7,5},{0x1514,4}}, + {{0x1257,3},{0xae7,1}}, {{0x1a76,4},{0x2bfc,2}}, {{0x27a49,2},{0x116d,1}}, {{0x4354,4},{0xc67,2}}, + {{0x9a2f,3},{0xb52,2}}, {{0x27a7,3},{0x2585,4}}, {{0xd1b,1},{0xbbf,2}}, {{0x252c1,6},{0x1015c,4}}, + {{0x197e,3},{0x11b8,4}}, {{0x23382,4},{0x22e3,3}}, {{0xb7d,1},{0x102f9,3}}, {{0x21,1},{0xae2,1}}, + {{0xbbf,2},{0x4b31,3}}, {{0x5c98,5},{0x28,1}}, {{0xf10,3},{0xdf0,2}}, {{0x1c62d,6},{0xb55,2}}, + {{0x12dbe,9},{0xaf1,1}}, {{0xa592,6},{0x140a,2}}, {{0x278d6,1},{0x278d5,2}}, {{0x15d23,6},{0xf6a,3}}, + {{0x1b463,6},{0xb89,2}}, {{0x2ae0,6},{0xe1c,4}}, {{0xded,5},{0x811c,6}}, {{0x16ac,5},{0x901b,7}}, + {{0x2c6ec,4},{0x1dec4,2}}, {{0x6d8e,3},{0x39d3,4}}, {{0xc29,2},{0x165f3,5}}, {{0xaf0,2},{0x19a8,9}}, + {{0x261f,5},{0xb85,2}}, {{0x6380,9},{0xc7b,4}}, {{0x15fea,5},{0xcf0,2}}, {{0xbc2,2},{0xae0,1}}, + {{0x6e53,3},{0xb72,3}}, {{0x3838,6},{0xfb89,4}}, {{0x278ad,4},{0x924,2}}, {{0x2e44,5},{0xe77,3}}, + {{0xbeb,1},{0x265d,3}}, {{0x272d,4},{0xd7a,3}}, {{0x1b135,6},{0x15a60,3}}, {{0x251cb,1},{0x2a9ac,2}}, + {{0xb7d,1},{0xeb2,1}}, {{0x423c,9},{0x4245,5}}, {{0x122c,5},{0x114d,2}}, {{0x2840,4},{0x2844,6}}, + {{0x2878d,4},{0x6f66,2}}, {{0x247f1,4},{0x24771,4}}, {{0xc4d,2},{0xbbf,2}}, {{0xf14,2},{0xd0d,2}}, + {{0x15fc,9},{0xc8e,3}}, {{0xc8b1,5},{0x2045,3}}, {{0x8f92,5},{0x8f97,7}}, {{0x279bf,2},{0x278a9,1}}, + {{0x709c,4},{0x1b173,8}}, {{0x10e1a,6},{0x21a0,3}}, {{0x1190,3},{0x7a2b,6}}, {{0xb63,3},{0x28,1}}, + {{0x10ec,1},{0xd4b4,5}}, {{0x27b4,3},{0xf5f4,2}}, {{0x732,3},{0x28633,2}}, {{0x5102,5},{0xd090,3}}, + {{0x6b52,4},{0xa24a,3}}, {{0xf63,12},{0x2b,3}}, {{0x1505e,5},{0x67c0,3}}, {{0xb79,2},{0xb85,2}}, + {{0xcbd,3},{0x2d31,9}}, {{0xed8f,5},{0xaea,1}}, {{0xc25,3},{0x1c990,5}}, {{0x20cd5,5},{0xb47,2}}, + {{0x10f3,1},{0xb64,2}}, {{0x20bb,3},{0x1961,6}}, {{0x10ea,3},{0x2b,3}}, {{0xaca2,3},{0xcd5,2}}, + {{0x1dbe,5},{0x7cb3,6}}, {{0xc13,4},{0x2994,10}}, {{0x423c,3},{0x270c4,3}}, {{0xf3ca,5},{0x1d,1}}, + {{0x4212,9},{0x10c3,5}}, {{0xcc0e,3},{0x11b6,3}}, {{0xcaa,4},{0xb63,2}}, {{0x1a1a0,5},{0x41b2,3}}, + {{0x24711,4},{0x806,2}}, {{0x10f7,1},{0x6ac5,1}}, {{0x1db0d,6},{0xd0d,2}}, {{0x947e,6},{0x9484,6}}, + {{0x142c,3},{0x1d6aa,5}}, {{0xadd,3},{0x21,1}}, {{0xaca2,3},{0x15057,4}}, {{0xf85,4},{0x5d2b,5}}, + {{0x187c,3},{0x1278,4}}, {{0x4290,4},{0xee7,4}}, {{0x126e8,7},{0x2b,3}}, {{0x1da3,3},{0x2b,1}}, + {{0x1b,1},{0x5c76,5}}, {{0xe6d,2},{0xc63,3}}, {{0xa7d8,2},{0x1abd1,3}}, {{0xfefc,4},{0x247b1,8}}, + {{0xaf60,2},{0xdf6,3}}, {{0xaf2,1},{0xd91,2}}, {{0xcab,3},{0x8e92,4}}, {{0x2840,2},{0xd54,1}}, + {{0x140a8,7},{0x101a,3}}, {{0xbd57,6},{0xbd5d,5}}, {{0x25c5,8},{0x2b,2}}, {{0xb215,6},{0xb21b,5}}, + {{0xffc,10},{0xd1a,7}}, {{0xaf1,1},{0xff7f,5}}, {{0xb7f,3},{0xae2,2}}, {{0xfda,6},{0x11ef,2}}, + {{0x45c9,9},{0xbb4,4}}, {{0xbe0,1},{0x2d,1}}, {{0xb6c,4},{0xbb5,1}}, {{0x244e9,4},{0x1019c,2}}, + {{0x128e6,7},{0x10dc,2}}, {{0xb7f,3},{0xa56c,5}}, {{0xe964,6},{0xb8f,2}}, {{0x12f26,5},{0xd60,5}}, + {{0x30,2},{0x101b3,3}}, {{0x89da,5},{0xcc3,4}}, {{0x5c6f,11},{0x5c7a,4}}, {{0xc13,4},{0xb2f,1}}, + {{0x18,1},{0x28631,4}}, {{0x27cea,1},{0x2864c,1}}, {{0xab9a,3},{0x1698,4}}, {{0x2789b,3},{0x279fb,2}}, + {{0x6d81,3},{0xc29,2}}, {{0xb8b,2},{0x1f,1}}, {{0x17bc,4},{0x1d753,4}}, {{0x15748,4},{0x10ec,1}}, + {{0xc57,3},{0x5c26,4}}, {{0x14fc,5},{0x1dec2,5}}, {{0x177c,3},{0x41b3,4}}, {{0x5949,4},{0xc45f,4}}, + {{0x1e,1},{0x10ca,1}}, {{0x7426,6},{0x108b,3}}, {{0x10dac,6},{0x7a46,4}}, {{0xc67,3},{0x2b,3}}, + {{0x2b,1},{0xc88a,3}}, {{0xb9d,3},{0xb64,2}}, {{0x2c76,7},{0x2279,4}}, {{0x1a58,5},{0xc30,2}}, + {{0xa7da,3},{0x1bbf0,5}}, {{0xa7da,3},{0x3789,3}}, {{0x10f3,1},{0x1a72,4}}, {{0x2ae0,5},{0x67b1,6}}, + {{0x540e,5},{0x27,1}}, {{0x27ca5,2},{0x1b4e4,1}}, {{0xaa56,9},{0x2195,3}}, {{0x2ae0,5},{0x4524,4}}, + {{0x14cc,4},{0xc8a,2}}, {{0x423c,3},{0x660e,3}}, {{0x2878d,4},{0x6f6c,2}}, {{0xa7d0,2},{0x10f8,2}}, + {{0x147f6,7},{0xf14,3}}, {{0x1e,1},{0x10504,4}}, {{0x122c,4},{0x165ab,5}}, {{0x2451f,2},{0x24733,2}}, + {{0x500b,5},{0x1ba5,3}}, {{0xce10,9},{0xb2e,2}}, {{0x1393,3},{0x28,1}}, {{0x422e,3},{0x10f4,2}}, + {{0xacc6,5},{0x101c,2}}, {{0x251cb,1},{0x2446f,2}}, {{0x17fc,5},{0xfb86,8}}, {{0x1561,3},{0x874e,4}}, + {{0x1a94,5},{0x2680,5}}, {{0x2789b,3},{0x27a97,2}}, {{0x145f8,5},{0x22bf,4}}, {{0x41be,3},{0x6ac5,1}}, + {{0xb72,2},{0xaec,2}}, {{0xaca2,3},{0x11ef,2}}, {{0x15437,4},{0x1a,1}}, {{0x18e1,5},{0x2c00,3}}, + {{0x119dc,7},{0x101a,3}}, {{0x29ecd,3},{0x27ab5,2}}, {{0x15748,4},{0x15a83,3}}, {{0xe64,5},{0x4cec,6}}, + {{0x2866a,2},{0x2b751,2}}, {{0x19c2d,4},{0x3ba5,5}}, {{0x1e035,6},{0x82f4,2}}, {{0x10ca,1},{0x187c,3}}, + {{0x1dcd,5},{0x14e2,3}}, {{0xc25,3},{0x2151c,2}}, {{0x3343,5},{0xb9d,3}}, {{0xb73,2},{0x1a,1}}, + {{0x30,18},{0x532,4}}, {{0x1f8f,8},{0xae7,1}}, {{0x14636,3},{0xb2bf,3}}, {{0x157ac,12},{0x157b8,6}}, + {{0x21,1},{0x15819,8}}, {{0x51c5,5},{0x51ca,8}}, {{0x27b95,4},{0x278a9,2}}, {{0x15d50,6},{0xb78,2}}, + {{0x117c,1},{0x2445e,1}}, {{0xd5c,1},{0x11b4,4}}, {{0xb64,2},{0x1aa6,3}}, {{0xbd6,2},{0x121f5,6}}, + {{0x2445e,2},{0xb31,1}}, {{0x2796,4},{0xd57,2}}, {{0x5cd9,6},{0xe4c,7}}, {{0xc7f,10},{0xc89,8}}, + {{0x10fa,1},{0x1866,3}}, {{0x10fb,3},{0x10f8,2}}, {{0x10ef,2},{0xd54,1}}, {{0x10fb,3},{0x24ff3,2}}, + {{0xc62,3},{0xb7c,2}}, {{0x2ae69,4},{0x2ae6d,4}}, {{0xaca2,3},{0x28da,1}}, {{0x670e,10},{0x2b,3}}, + {{0x25789,2},{0x244ed,2}}, {{0x9622,7},{0x2af7,5}}, {{0xbe0,1},{0xab9c,1}}, {{0x10f2,1},{0x15ab9,3}}, + {{0x10da2,5},{0x2b,3}}, {{0xbeb,1},{0xc6a9,3}}, {{0x2c50c,4},{0x1016a,2}}, {{0x4a68,5},{0x1dec2,4}}, + {{0x432,1},{0xb31,1}}, {{0x178c,3},{0xc07f,6}}, {{0x286a6,2},{0x24461,1}}, {{0x22b9,10},{0x11b8,4}}, + {{0x193b,11},{0xfa3,4}}, {{0x6d81,3},{0x43e3,1}}, {{0x1e45,3},{0xb8f,2}}, {{0xfd27,2},{0x114d,2}}, + {{0x20ccc,7},{0xb64,2}}, {{0xbe4,1},{0x8651,4}}, {{0xa8be,5},{0x1489,3}}, {{0x122c,4},{0xb63,4}}, + {{0x202a1,6},{0xc30,2}}, {{0xd41,4},{0x1d,1}}, {{0xcf3e,2},{0x1ac7,2}}, {{0x1878,1},{0x1a11,2}}, + {{0x24462,1},{0x2aefe,3}}, {{0x11e1,3},{0x10823,5}}, {{0x123c,9},{0x251c,4}}, {{0xaea,2},{0xae2,1}}, + {{0x1ae2,2},{0x1d,1}}, {{0x1ffa9,5},{0x3a3b,3}}, {{0xacbc,2},{0xcd2,7}}, {{0x170e,8},{0xe4d,6}}, + {{0x1ed53,1},{0x27cf6,2}}, {{0x10074,3},{0x10077,7}}, {{0x24,1},{0x22cf8,1}}, {{0xbeb,1},{0xaf1,1}}, + {{0x14616,5},{0x11ef,2}}, {{0x1aee,6},{0x4b0a,4}}, {{0x261f,5},{0xee44,6}}, {{0x1389c,8},{0x1a,1}}, + {{0x1f2b1,4},{0x10ec,1}}, {{0xd6c0,5},{0xb78,2}}, {{0x780,1},{0x24467,2}}, {{0xae5,1},{0x1b25b,4}}, + {{0xaea,1},{0xfdd,2}}, {{0x10c8,3},{0x20adf,2}}, {{0xbb15,3},{0xaf2,1}}, {{0x92b6,5},{0x1699,3}}, + {{0x5ea0,4},{0x2d44,4}}, {{0x19078,7},{0xae7,1}}, {{0xfc80,6},{0x2b,1}}, {{0x10f7,1},{0xff7,4}}, + {{0x2796,3},{0xff7,5}}, {{0xc37,10},{0xbd6,8}}, {{0x154dc,4},{0xf0c1,4}}, {{0xbe4,1},{0x14bb4,2}}, + {{0x27cc5,2},{0x286a8,2}}, {{0xaf3,4},{0x1dec4,2}}, {{0x244b9,2},{0x6f96,2}}, {{0xd65,3},{0x28904,4}}, + {{0x1afd,5},{0x197f,7}}, {{0x27cea,1},{0x2c11c,2}}, {{0x22cf8,1},{0x2b783,2}}, {{0x271e,3},{0x4ebc,10}}, + {{0x4415,2},{0x2b4a7,2}}, {{0xcd9,3},{0x1318b,7}}, {{0xbde,3},{0x14934,2}}, {{0x180e,2},{0xb8a,2}}, + {{0x7a6e,4},{0x331d,4}}, {{0x1961,3},{0xb78,2}}, {{0x53e7,7},{0x11e4,4}}, {{0x1084,5},{0x1089,12}}, + {{0x10ea,3},{0xaee9,2}}, {{0xc1a,4},{0x2b83,5}}, {{0xbe0,1},{0x3041,2}}, {{0x2be6,4},{0xb78,2}}, + {{0x1713c,5},{0x5cd6,3}}, {{0x12fe,2},{0x4882,3}}, {{0x1509a,4},{0x1d,1}}, {{0x14c62,5},{0x14c68,4}}, + {{0x2789b,3},{0x279cb,2}}, {{0x10e60,7},{0x3a81,3}}, {{0xaca2,3},{0xc4b4,4}}, {{0x245d,12},{0xce8,3}}, + {{0x2868,4},{0xae8,2}}, {{0x15dc,7},{0x12d7,5}}, {{0xb2f,1},{0xbd1,2}}, {{0x130e,5},{0xd57,2}}, + {{0xaea,3},{0xb55,2}}, {{0xc60,5},{0xc65,5}}, {{0xc8a3,3},{0x1a,2}}, {{0xd41,4},{0x6258,3}}, + {{0xa2be,5},{0xa2c3,7}}, {{0x1f9e1,5},{0x2098,3}}, {{0x152b6,5},{0x2195,3}}, {{0xbde,3},{0xbcc2,3}}, + {{0xae3a,10},{0x2b,2}}, {{0x1ee93,3},{0x14bb4,2}}, {{0xd91,2},{0xbb3,2}}, {{0xf59,3},{0x1d,1}}, + {{0x1b607,4},{0xae7,1}}, {{0x1becd,6},{0xb65,2}}, {{0x41be,3},{0xcacf,7}}, {{0x532,26},{0x532,24}}, + {{0x13ed2,8},{0xb2e,2}}, {{0xa8b2,6},{0x3728,6}}, {{0xc67,2},{0xb55,2}}, {{0x9982,8},{0xec2,2}}, + {{0x4230,3},{0xc8a3,3}}, {{0x209d,4},{0xd7c1,5}}, {{0x1d59,4},{0x2b,3}}, {{0x17ee,5},{0x12d5,7}}, + {{0x2630,5},{0xa4e1,5}}, {{0xbcb,6},{0xbd1,13}}, {{0x60b5,8},{0xb52,5}}, {{0xbd2,3},{0x353d,5}}, + {{0x28,2},{0xc34,3}}, {{0xfda,11},{0x1597,5}}, {{0xe9f,3},{0x2b,1}}, {{0xc85,4},{0x5268,3}}, + {{0xd5c,1},{0x10f0,1}}, {{0xb493,4},{0xc39,2}}, {{0xe75,6},{0x823c,6}}, {{0x2c6f8,4},{0x244ed,2}}, + {{0x24579,6},{0x24537,6}}, {{0x24531,4},{0x24733,2}}, {{0x16ae,2},{0xcf0,2}}, {{0x70ac,4},{0x1b7a5,8}}, + {{0x415e,3},{0x1341,9}}, {{0x1f,1},{0xc4d,2}}, {{0x6d81,3},{0x428b,2}}, {{0x27b4,3},{0xb9d,3}}, + {{0x145e4,4},{0x1baa1,4}}, {{0x12d6e,4},{0x1864,2}}, {{0x10fd,2},{0x15f26,3}}, {{0x2971,3},{0x28,2}}, + {{0x16e2,2},{0xfe5,2}}, {{0xfdf,2},{0xbb5,1}}, {{0x40b2,4},{0x2dcb,4}}, {{0xbb5,1},{0xb2c,2}}, + {{0x1f8f,8},{0xf05,7}}, {{0x272f,3},{0x5cd6,3}}, {{0x1a04a,6},{0x16eaf,3}}, {{0xe44,3},{0xb7d,1}}, + {{0xa7aa,5},{0x13a3,4}}, {{0xfd67,5},{0x1c25,4}}, {{0x1b6ab,1},{0x27989,2}}, {{0x397a,5},{0x13435,7}}, + {{0x184cc,5},{0xb78,2}}, {{0xfdf,5},{0x372a,4}}, {{0xc49,12},{0xc55,5}}, {{0x19f0f,5},{0x2af8,4}}, + {{0x12fe,2},{0x28,1}}, {{0x6d81,3},{0x4606,3}}, {{0xf96,4},{0x1dfbb,4}}, {{0xc675,5},{0x25ee,4}}, + {{0xf77e,5},{0xed0,3}}, {{0x232b7,5},{0xb54,2}}, {{0xc864,7},{0xc7b,4}}, {{0xca7,2},{0x2b,1}}, + {{0x27b4,3},{0x27232,2}}, {{0x8722,9},{0x5cd6,3}}, {{0x13748,7},{0x2045,3}}, {{0x2a16,3},{0xeb2,1}}, + {{0x1aff,9},{0x1b08,3}}, {{0x20bb,3},{0x1434,3}}, {{0xbc39,9},{0xb2e,2}}, {{0x2e7c,7},{0x4d54,6}}, + {{0x1b4e3,1},{0x1b6cb,1}}, {{0xc37,3},{0xf38f,3}}, {{0x2769,7},{0x32ff,4}}, {{0xaec,2},{0xb99,3}}, + {{0x415e,3},{0xae7,1}}, {{0xfa14,7},{0x1aab,4}}, {{0x116e,1},{0x1b6ab,2}}, {{0x20,2},{0x3442,6}}, + {{0xbcb,6},{0xbd6,6}}, {{0x2445e,2},{0x27c9b,2}}, {{0x4194,6},{0xb77,3}}, {{0x1cef,3},{0xc67,2}}, + {{0x5102,5},{0xc93a,6}}, {{0x178c,3},{0x209b9,2}}, {{0x1361,2},{0xb2f,1}}, {{0x27b95,4},{0x27995,2}}, + {{0x3dcc,8},{0x1f13,4}}, {{0x7bc0,6},{0x2b,3}}, {{0x2c5a2,4},{0x1dec4,2}}, {{0x70ea,3},{0x10ffe,3}}, + {{0x3368,10},{0x1719,3}}, {{0x30,2},{0x1b885,4}}, {{0x17bc,3},{0xaa94,2}}, {{0x6b5f,4},{0xf63c,2}}, + {{0x6c22,8},{0xca7,2}}, {{0x2b,1},{0xc6a9,3}}, {{0x3678,5},{0xae7,1}}, {{0x10ca,1},{0x2099f,6}}, + {{0x2b,2},{0x7445,5}}, {{0x105a8,6},{0x4459,3}}, {{0xbd6,2},{0x25da,3}}, {{0x10fb,3},{0x1c170,3}}, + {{0x27e2b,2},{0x28634,1}}, {{0x177c,3},{0x2094b,3}}, {{0xc89,3},{0x1719,3}}, {{0x29f18,3},{0x2791d,2}}, + {{0x6c56,5},{0x512e,8}}, {{0x2b852,4},{0xfeee,2}}, {{0x51b8,7},{0xb55,2}}, {{0x1b951,6},{0x1b8f1,8}}, + {{0x1836d,6},{0x2195,3}}, {{0xbb4,2},{0xc1c,2}}, {{0x2789b,3},{0x27abb,2}}, {{0x10c8,3},{0x95c7,5}}, + {{0xf5e,3},{0xcb8,2}}, {{0xa4aa,8},{0x1498,4}}, {{0xcd8c,6},{0xff7,5}}, {{0xab9a,3},{0xb71,2}}, + {{0xe97a,6},{0x103b,5}}, {{0x40fa,2},{0xc55,2}}, {{0x10bb,5},{0x8bb5,5}}, {{0x12f12,5},{0x4501,5}}, + {{0x42ae,3},{0x100db,7}}, {{0x4dc2,8},{0x1fb7,5}}, {{0x27897,1},{0x278db,2}}, {{0x1e4c7,5},{0x265d,3}}, + {{0xfd27,2},{0x1a,2}}, {{0xdf4,4},{0x1264,8}}, {{0x16fc,8},{0x1704,3}}, {{0x28f6,3},{0x1cd1,5}}, + {{0x2c45e,4},{0xfeee,2}}, {{0x2445f,1},{0x28e89,2}}, {{0xf52,5},{0xd7f,3}}, {{0x10ca,1},{0xff7,5}}, + {{0x4417,2},{0x15a5e,2}}, {{0x4e9f,7},{0x1942,3}}, {{0xdf0,2},{0xd17,3}}, {{0x24f91,3},{0x24460,3}}, + {{0xddc,4},{0x4459,3}}, {{0x27b95,4},{0x2795f,2}}, {{0x1aaef,3},{0x1abd1,3}}, {{0x2789b,3},{0x27a0d,2}}, + {{0x441c,3},{0x1ba68,5}}, {{0x41da,3},{0xaf5d,2}}, {{0x2789b,3},{0x2795f,2}}, {{0xb7d,1},{0xee1a,4}}, + {{0xcb5,3},{0x1d9f4,9}}, {{0xab6a,5},{0xe4c,7}}, {{0x2657d,4},{0x24a30,2}}, {{0x278dc,1},{0x27ac1,2}}, + {{0x145a0,1},{0x1aaed,1}}, {{0x271e,3},{0x23506,4}}, {{0xe75,6},{0x21d2,6}}, {{0x271e,3},{0x1ba5,3}}, + {{0xc5b,10},{0x1de6,5}}, {{0x1d817,5},{0x4031,3}}, {{0x177c,3},{0x2b,2}}, {{0xaf0,2},{0x423f,4}}, + {{0x14934,2},{0x152c4,2}}, {{0x4413,2},{0x10ef,1}}, {{0x38c4,13},{0xae7,1}}, {{0x10ec,1},{0x1abd9,2}}, + {{0x670e,5},{0xb47,2}}, {{0x6860,5},{0x5d05,8}}, {{0xcd9,3},{0xf38f,4}}, {{0x27,1},{0xbf20,5}}, + {{0x10fb,3},{0xaad1,3}}, {{0xaf1,1},{0x1058,9}}, {{0xcb8,2},{0xc67,2}}, {{0x532,66},{0x30,34}}, + {{0x12c92,5},{0xb70,2}}, {{0x2934c,4},{0x10f3,1}}, {{0x1b52b,3},{0xb52,5}}, {{0x72e2,7},{0x4ae5,5}}, + {{0x1a,1},{0x1f3b,9}}, {{0xde9,1},{0x2d,1}}, {{0xd41,3},{0x1bfc9,4}}, {{0x12f1,2},{0xb7d,1}}, + {{0x912a,7},{0x9131,5}}, {{0xc8a,2},{0xca6,3}}, {{0xaca2,3},{0x18d4,3}}, {{0x3fee,5},{0x2945,5}}, + {{0x2dfe,6},{0xbd6,8}}, {{0x116e,1},{0x27af7,2}}, {{0xaf2,1},{0x2748,2}}, {{0x27b4,3},{0x3e31,3}}, + {{0xbd3,3},{0x2b,1}}, {{0x2160,5},{0x108b,3}}, {{0xba5,4},{0x10fac,6}}, {{0x287e5,4},{0x157b6,2}}, + {{0x4520,8},{0x107e,5}}, {{0xae7,1},{0x48a4,3}}, {{0x272d,4},{0x31c8,8}}, {{0x1d55,4},{0x17532,5}}, + {{0x278d6,1},{0x27ab5,2}}, {{0xcc0,3},{0xaf1,2}}, {{0xab3a,5},{0x89d3,7}}, {{0x10f0,1},{0x1a814,2}}, + {{0x441c,3},{0xc52f,5}}, {{0x1459e,3},{0x190e7,3}}, {{0x167c,4},{0x3644,4}}, {{0x106d4,5},{0x12f1,2}}, + {{0x240ce,5},{0x152d2,2}}, {{0x26c4,3},{0xc64,2}}, {{0xae0,1},{0x5eb6,4}}, {{0x271e,3},{0x26c0e,3}}, + {{0x27b95,4},{0x278a3,2}}, {{0x2445f,1},{0x24a40,3}}, {{0x139c,6},{0x11aaa,4}}, {{0xc17,4},{0xae6,3}}, + {{0x122c,4},{0xcf6a,6}}, {{0xf52,4},{0x665f,6}}, {{0xa246,4},{0x9133,3}}, {{0x40f8,4},{0x1293,3}}, + {{0x10f7,1},{0x2732,4}}, {{0x70f6,4},{0x7526,5}}, {{0x5365,6},{0x2af8,4}}, {{0xbde,3},{0x4882,3}}, + {{0x2c6e0,4},{0xfefe,2}}, {{0x142e,1},{0x1b25b,4}}, {{0x11090,7},{0x2b,3}}, {{0x27,1},{0x1f0f,3}}, + {{0xa876,8},{0x25ee,4}}, {{0x4d19,6},{0x2c0a,3}}, {{0x181c,3},{0x203bc,5}}, {{0xc13,3},{0xb7d,1}}, + {{0x17ac,4},{0xcbd,3}}, {{0x285b,3},{0xedcb,6}}, {{0x1555e,8},{0xb55,2}}, {{0xf8a7,8},{0x2347,3}}, + {{0xb85,2},{0x16f8,3}}, {{0xfc6a,5},{0x1bdc,2}}, {{0x4134,3},{0x1733,9}}, {{0x9af6,6},{0x3043,6}}, + {{0x43e3,1},{0xbb4,2}}, {{0x51ec,6},{0x51f2,7}}, {{0x3fe4,3},{0x3edd,5}}, {{0x6d8e,3},{0xb64,3}}, + {{0x2796,3},{0x1a1f7,2}}, {{0x6c17,4},{0xbbf,2}}, {{0x2160,5},{0x1a,3}}, {{0x4c2f,8},{0x1aad,5}}, + {{0x5403,3},{0x15917,6}}, {{0x1f471,6},{0xb2e,2}}, {{0x42ae,3},{0xbb4,4}}, {{0x286a6,2},{0x2b81a,2}}, + {{0x1adf,5},{0xbd6,2}}, {{0xf325,4},{0xd14,3}}, {{0xcb5,3},{0xfb1,2}}, {{0x12be,3},{0x3d9d,5}}, + {{0x9b62,8},{0x253a,4}}, {{0x209d,4},{0x10cca,6}}, {{0xc13,4},{0xc99,3}}, {{0x7c4,32},{0x7c4,2}}, + {{0xd17,3},{0x20616,4}}, {{0xaca2,3},{0x23b67,4}}, {{0x113f,5},{0x33d3,5}}, {{0x58f1,3},{0xc6a9,3}}, + {{0x4364,4},{0xb7c,3}}, {{0xb6c,3},{0xcef3,4}}, {{0x21,1},{0x1013,3}}, {{0xaff6,8},{0x25df,4}}, + {{0x10f0,1},{0x12a1f,5}}, {{0xb7d,1},{0x2d,1}}, {{0xc25,5},{0xb2d,3}}, {{0x1cec,8},{0xb82,2}}, + {{0x2446a,4},{0x2446e,3}}, {{0x5f3c,9},{0xb54,4}}, {{0x15414,7},{0x109f,3}}, {{0x6b52,4},{0xb1e6,3}}, + {{0xfb1,2},{0x3c11,4}}, {{0xa7da,3},{0xb65,2}}, {{0x8c4,6},{0x532,2}}, {{0x1fe11,4},{0x2b,2}}, + {{0xb55,2},{0xcb8,2}}, {{0xc801,9},{0xd0d,2}}, {{0x2864c,2},{0x1ed58,1}}, {{0x2d5c9,2},{0x2445e,1}}, + {{0x1ed58,1},{0x24462,1}}, {{0x1a,2},{0xc4d,2}}, {{0x27b4,3},{0xf8cf,3}}, {{0x422e,3},{0x212fe,4}}, + {{0xb0d6,6},{0xb0dc,5}}, {{0xab9a,4},{0x13ff7,4}}, {{0x10ea,3},{0x5eb6,4}}, {{0xbafa,5},{0x5bc1,5}}, + {{0x21ba,5},{0xcf67,3}}, {{0x2d0da,2},{0x2b2ff,1}}, {{0xd11d,5},{0x677d,6}}, {{0x1ab2,4},{0xdaf,2}}, + {{0xbd3,3},{0xe6d,2}}, {{0xe44,3},{0xc829,4}}, {{0x1e98f,6},{0xb55,2}}, {{0x178c,3},{0x14bb0,2}}, + {{0x27c3,4},{0x1d98,3}}, {{0x139c,6},{0x11a96,4}}, {{0x1d,2},{0xae7,1}}, {{0x27cea,1},{0x159c8,1}}, + {{0x6ac3,3},{0x22de3,4}}, {{0x10ca,1},{0xbd6,2}}, {{0xae0,1},{0xbc5,3}}, {{0x1f019,5},{0x10ec,1}}, + {{0x2445c,3},{0x780,1}}, {{0x178c,3},{0x39d3,4}}, {{0xaea,2},{0x146e,3}}, {{0x3e04,5},{0xb63,2}}, + {{0x1f199,5},{0xec6d,3}}, {{0x139dc,7},{0xb54,3}}, {{0x27897,1},{0x27a07,2}}, {{0x10188,4},{0xfee4,4}}, + {{0x1f739,5},{0xb9d,3}}, {{0x20e8,8},{0x8579,4}}, {{0xd65,3},{0xaf2,1}}, {{0x1509a,4},{0xb63,4}}, + {{0x709c,4},{0x1b743,8}}, {{0xf71b,6},{0xf721,5}}, {{0x27b4,3},{0x2756e,3}}, {{0x14b6,2},{0xd3ce,3}}, + {{0x6f74,4},{0x70b4,2}}, {{0xdf2,3},{0xdf5,7}}, {{0xa7d0,2},{0x1f2ac,2}}, {{0x16e2,2},{0x1d,1}}, + {{0x242fe,5},{0xcb8,2}}, {{0x28695,2},{0x1b4e3,1}}, {{0x1b4e3,1},{0x1ed57,2}}, {{0x27565,4},{0x1abd7,2}}, + {{0x1563a,7},{0x25c2,3}}, {{0x2520a,2},{0x734,1}}, {{0x2c5e,3},{0x9071,5}}, {{0xd41,3},{0x2045,3}}, + {{0x178c,3},{0x1687,3}}, {{0xc6d,7},{0x2d,1}}, {{0x2ad8f,4},{0x6f64,2}}, {{0xab9a,3},{0x180e,2}}, + {{0x15180,5},{0xb2c,4}}, {{0x287f5,4},{0x1a,1}}, {{0x134c,5},{0x8230,6}}, {{0x10ba,2},{0x2b,1}}, + {{0x142e,1},{0xcc0,3}}, {{0x924,2},{0x27ad9,2}}, {{0x2c76,4},{0x16806,5}}, {{0x3e04,5},{0x39d3,4}}, + {{0x15b52,4},{0x70a2,2}}, {{0x6f62,4},{0xfb8b,2}}, {{0x7a7a,5},{0xb65,2}}, {{0x278d6,1},{0x27ac1,2}}, + {{0xb2e,2},{0x1994f,5}}, {{0x1f,1},{0xc8f,2}}, {{0xc67,2},{0xb9c,2}}, {{0x92f2,5},{0x12cf1,5}}, + {{0x1f6b9,5},{0xc62,3}}, {{0xedd,3},{0x1081,3}}, {{0x6d81,3},{0x1ae3e,3}}, {{0x325e,5},{0x2be4,6}}, + {{0xf959,5},{0xd14,4}}, {{0x2486d,8},{0xff24,4}}, {{0x2b,2},{0x17d0b,5}}, {{0x27b4,3},{0xbb5,1}}, + {{0x6d81,3},{0x10dc,2}}, {{0x26c4,3},{0x269d8,2}}, {{0x6ac5,1},{0xc9f2,3}}, {{0x10f3,1},{0x1bf18,5}}, + {{0x27b4,3},{0xe499,5}}, {{0x2843a,2},{0x1b4e3,1}}, {{0x4d9b,8},{0x11b8,4}}, {{0x6d81,3},{0xf44,5}}, + {{0x1175c,5},{0xc62,4}}, {{0x1ba2,6},{0x1058,4}}, {{0x19e40,7},{0xfe5,2}}, {{0x175ac,5},{0x175b1,4}}, + {{0xb2f,1},{0xcc0,3}}, {{0x27897,1},{0x27ad3,2}}, {{0x27,1},{0x141b2,4}}, {{0x134c,5},{0xc50d,6}}, + {{0xe53,8},{0x2ddc,6}}, {{0x1dec2,4},{0xdfa,3}}, {{0x3e92,4},{0xae7,1}}, {{0x43e3,1},{0x889f,3}}, + {{0x5ed4,4},{0x2bfd,2}}, {{0x1088e,6},{0x2be6,4}}, {{0x2182,5},{0xd0d,2}}, {{0xb71,2},{0x3a39,3}}, + {{0x2c202,3},{0xb31,1}}, {{0x10f3,1},{0x145a0,1}}, {{0x178c,3},{0x290ff,2}}, {{0x2b,1},{0x1a1f7,2}}, + {{0x1c,1},{0x9901,9}}, {{0xceaa,6},{0x2288,4}}, {{0x2c76,4},{0x41eb,4}}, {{0x1f3ee,2},{0x10fa,1}}, + {{0x3846,4},{0xd7c1,5}}, {{0x2598,8},{0x1313,7}}, {{0x100f,3},{0xce1,3}}, {{0xac72,5},{0x35b9,7}}, + {{0x6ac5,1},{0x28,1}}, {{0xe6d,2},{0xb85,2}}, {{0xc8bc,6},{0x2b75,5}}, {{0xbb5,1},{0x12bc4,3}}, + {{0x6359,9},{0xc9f,4}}, {{0xbde,3},{0xaaf0,2}}, {{0xb9c,2},{0xb7d,1}}, {{0x139e,4},{0x5276,3}}, + {{0x14ef6,7},{0xae6,3}}, {{0x6d9b,5},{0x11b2,4}}, {{0x19d85,3},{0x1362,3}}, {{0x43e3,1},{0x1ae47,2}}, + {{0x10fb,3},{0x11f2,3}}, {{0x411c,5},{0x4121,3}}, {{0x16f1,3},{0xfe5,2}}, {{0xd78f,6},{0xb55,2}}, + {{0x6d4d,8},{0xd7f,3}}, {{0xbeb,1},{0x10cd3,7}}, {{0xdcb,7},{0x2b49,7}}, {{0x1173,2},{0x278e1,2}}, + {{0xddc,4},{0x3789,3}}, {{0x78ca,5},{0x550f,3}}, {{0xc60,3},{0x1a,2}}, {{0x8a43,3},{0x1907a,5}}, + {{0xb47,2},{0xe7b,3}}, {{0x17fc,5},{0x1cc7,3}}, {{0x1b6db,10},{0x1b6f3,4}}, {{0xfb8e,6},{0xeb3,3}}, + {{0x29f18,3},{0x27a01,2}}, {{0x1084,3},{0xa4eb,7}}, {{0x17bc,4},{0xb60,3}}, {{0xfde,2},{0x1a,2}}, + {{0x1a502,5},{0xc1c,2}}, {{0x33b2,3},{0x140a,2}}, {{0x10fb,3},{0x4ab0,3}}, {{0x2b,3},{0x3789,3}}, + {{0x1435a,5},{0x6b8e,5}}, {{0x18,1},{0x117c,1}}, {{0xbd1,2},{0x141b2,4}}, {{0x430,3},{0x2445e,1}}, + {{0x90e2,4},{0x2734,4}}, {{0x1a326,4},{0x1b,2}}, {{0x5ff2,10},{0x2b,3}}, {{0x27cea,1},{0x2862e,2}}, + {{0x14e7e,4},{0x10929,5}}, {{0x1579a,12},{0x157a6,6}}, {{0x29f18,3},{0x27923,2}}, {{0xbcbd,8},{0x2b,3}}, + {{0xf49b,7},{0xae8,2}}, {{0x1c,1},{0x165b4,5}}, {{0xb2e,2},{0xaea,1}}, {{0xa854,4},{0x4874,6}}, + {{0x930a,5},{0x930f,7}}, {{0x152fc,7},{0xb65,2}}, {{0xc17,3},{0x9d17,7}}, {{0x145a0,1},{0xa04a,3}}, + {{0xc29,2},{0x9133,3}}, {{0xb068,4},{0x703f,7}}, {{0x2daa,5},{0x2b,2}}, {{0xbbf,2},{0x11ef,2}}, + {{0x272f,2},{0xdf0,2}}, {{0xbd7,3},{0xb2c,2}}, {{0xb87c,6},{0x10ad8,4}}, {{0xb2f,1},{0x25da,3}}, + {{0x6d8e,3},{0xab9c,1}}, {{0xae5,1},{0xa4c9,3}}, {{0x244b9,2},{0x1b23d,2}}, {{0x1f161,4},{0x1c4d9,4}}, + {{0x2a16,3},{0xd1b,1}}, {{0x670e,6},{0x68c4,4}}, {{0x202b9,5},{0x1acd,3}}, {{0xd41,3},{0xbc5,3}}, + {{0x10fb,4},{0x187c,3}}, {{0xfccd,7},{0xea89,4}}, {{0x6d81,3},{0xc1e,2}}, {{0x70a0,4},{0xff24,4}}, + {{0xf6ce,5},{0x298a,2}}, {{0x734,1},{0x28631,2}}, {{0xf85,4},{0x191d3,4}}, {{0x5a81,6},{0x1275,4}}, + {{0x3678,5},{0xd48,2}}, {{0x6d8e,3},{0x2c00,3}}, {{0xc13,4},{0x8280,7}}, {{0x460a,7},{0x4611,6}}, + {{0x18e1,5},{0x730b,7}}, {{0x159c,4},{0x4de3,3}}, {{0x15a83,3},{0x10f2,1}}, {{0x15a70,4},{0x43e3,5}}, + {{0x16fe,3},{0x12c33,5}}, {{0x26d3,7},{0x45a9,6}}, {{0x178c,3},{0x1675,2}}, {{0xaef,3},{0x24b16,5}}, + {{0x1a038,5},{0x1a4ed,3}}, {{0x12ae,3},{0x1733,9}}, {{0x246c,8},{0xe70,4}}, {{0x10fb,3},{0xae4,2}}, + {{0x2b,2},{0xc32,5}}, {{0x2787d,5},{0xab9c,1}}, {{0xa7d,6},{0x27cea,1}}, {{0x416c,3},{0x4ee5,8}}, + {{0xe83b,8},{0x2b,3}}, {{0xcc79,6},{0x2182,5}}, {{0x15202,6},{0x106a4,4}}, {{0x29c1e,4},{0x26c6,1}}, + {{0xbfad,3},{0xc34,2}}, {{0x141e,5},{0xcc0,3}}, {{0x41da,3},{0x1f2e4,4}}, {{0xd65,3},{0x28,2}}, + {{0xa7da,3},{0x10ed,2}}, {{0x14cc,4},{0x7b4f,3}}, {{0x6e5e,5},{0x2cd1,4}}, {{0x318c,7},{0x28,1}}, + {{0x2106,5},{0xc30,2}}, {{0x27905,2},{0x278af,1}}, {{0x10ea,3},{0xbb15,3}}, {{0xbeb,1},{0xd1b,1}}, + {{0xeb2,1},{0xc55,2}}, {{0xb47,2},{0xb55,2}}, {{0x6f62,4},{0xa4f,2}}, {{0xb54,3},{0xd1a,7}}, + {{0xab9c,1},{0x5277,2}}, {{0x180c,4},{0x9423,3}}, {{0xf6e4,5},{0xb2f,1}}, {{0xadf,2},{0xc3e,2}}, + {{0x2cf0d,2},{0x2445e,1}}, {{0x1095,3},{0xd57,5}}, {{0x78ca,4},{0xff7,5}}, {{0x1b57,8},{0xd1a,7}}, + {{0xf52,4},{0x5bf1,4}}, {{0xf367,5},{0x1b0a,2}}, {{0x19cab,5},{0xf63c,2}}, {{0x13e2a,4},{0xae7,1}}, + {{0xf540,7},{0xf547,6}}, {{0xc2f,2},{0xc88a,3}}, {{0x14aa8,7},{0xc8e,3}}, {{0xc7eb,7},{0x16ce,4}}, + {{0xa23a,5},{0x3e2a,4}}, {{0xbde,3},{0x29d1a,2}}, {{0x1bc3,3},{0xcab,3}}, {{0xae9,2},{0xae7,1}}, + {{0x27d8b,2},{0x28431,2}}, {{0xf96,7},{0x3418,5}}, {{0x20361,5},{0xd17,3}}, {{0xb44,3},{0x28,2}}, + {{0x1216,4},{0xd1b,1}}, {{0xddc,4},{0x108f6,6}}, {{0x428b,2},{0x10ef,1}}, {{0x48a1,6},{0xb949,4}}, + {{0x4350,2},{0xbe7,1}}, {{0xaea,1},{0xcab,3}}, {{0x893e,7},{0x1667,5}}, {{0x9b1a,5},{0xb7a,5}}, + {{0xd51,2},{0x28,1}}, {{0x278dc,1},{0x278ed,2}}, {{0x10c8,3},{0x69f7,3}}, {{0x27c9d,5},{0x18,1}}, + {{0x5102,5},{0x13eec,4}}, {{0xab9a,3},{0xee1,3}}, {{0xa7da,3},{0xeb3,3}}, {{0x25f45,5},{0x1f,1}}, + {{0x1a577,5},{0x1a57c,4}}, {{0x8902,9},{0x135f,3}}, {{0x1aee,6},{0x63c8,6}}, {{0x4106,4},{0x31e5,7}}, + {{0x14f82,6},{0x2af8,4}}, {{0x2445f,1},{0x27e1f,3}}, {{0xceb,3},{0xc829,4}}, {{0xe64,4},{0x23d9,3}}, + {{0x674c,3},{0x1258e,5}}, {{0x4fbd,4},{0x101ba,4}}, {{0x317e,9},{0x2584,5}}, {{0xae7,1},{0x762d,4}}, + {{0x142e,2},{0x2275,4}}, {{0x422e,3},{0x1a1f7,2}}, {{0x3694,4},{0xb881,6}}, {{0x14e4c,7},{0xb9b,3}}, + {{0x1f3c9,5},{0x14ef1,3}}, {{0x26835,4},{0x10f1,2}}, {{0x10d7a,7},{0x3776,3}}, {{0x600c,8},{0xe1c,4}}, + {{0x15b0,3},{0x2d5d,4}}, {{0xe5d,3},{0xcb8,2}}, {{0x1f989,5},{0x29da,3}}, {{0xc13,4},{0x257c,2}}, + {{0x2b76,3},{0xb8f,3}}, {{0x181c,3},{0x10f5,2}}, {{0x27d2,6},{0xcc0,3}}, {{0x24461,1},{0x27cea,1}}, + {{0xab9a,3},{0x27b6,1}}, {{0x1abcd,3},{0x155db,3}}, {{0x416a,5},{0x1140,4}}, {{0x2789b,3},{0x27ad9,2}}, + {{0x10f6,1},{0xcda8,3}}, {{0x17ae,1},{0x233c4,4}}, {{0x47b7,8},{0x354d,4}}, {{0x1c,1},{0x1bfb1,4}}, + {{0x27caf,5},{0x2445f,1}}, {{0x13f22,5},{0xe49,4}}, {{0x273bb,4},{0x1abd9,2}}, {{0x12141,3},{0x5a94,3}}, + {{0x177c,7},{0xb2f,1}}, {{0x318c,7},{0x251c,4}}, {{0x2b846,4},{0xf907,2}}, {{0x734,4},{0x734,1}}, + {{0x3fdc,4},{0xed0,3}}, {{0xb70,2},{0x2b,2}}, {{0x251fe,2},{0x159c8,1}}, {{0x4f65,3},{0x28,1}}, + {{0x6c08,4},{0x16629,5}}, {{0x11036,6},{0x1e,1}}, {{0x1a58,5},{0xc45f,4}}, {{0x1f9b1,5},{0x1f9b6,3}}, + {{0x40c0,4},{0x19d01,4}}, {{0x28871,3},{0x948,1}}, {{0x14fc,5},{0x69ce,3}}, {{0x37e4,11},{0x2b,3}}, + {{0x10f0,1},{0x1675,2}}, {{0x177c,3},{0xb72,2}}, {{0x4e63,4},{0x2b,3}}, {{0x136da,6},{0x1152,3}}, + {{0x1ba4d,5},{0x2b,3}}, {{0x7c4,1},{0x2b2ff,1}}, {{0x20bb,3},{0x11f2,3}}, {{0x3250,4},{0x21,1}}, + {{0x19b84,4},{0xb78,2}}, {{0x66f4,10},{0xc8e,3}}, {{0x29ecd,3},{0x27897,2}}, {{0x3e58,4},{0xb85,2}}, + {{0x1773,3},{0x345e,5}}, {{0xf6e4,5},{0x40b8,2}}, {{0x141c,7},{0xcef3,4}}, {{0x4415,2},{0xbe4,1}}, + {{0x135c2,7},{0x2b,3}}, {{0xb55,2},{0x12f1,2}}, {{0x6cc0,2},{0xc67,2}}, {{0x20e8,6},{0x1a4f,9}}, + {{0x1f2eb,3},{0xb78,2}}, {{0xbe7,1},{0x23cf6,4}}, {{0x43e3,1},{0x1e75a,2}}, {{0xc67,2},{0x139e,2}}, + {{0x261f,5},{0x1ba8,4}}, {{0x1095,3},{0x3e26,2}}, {{0xd7f,3},{0x3f3d,9}}, {{0x29f18,3},{0x278bc,2}}, + {{0x924,1},{0x2799b,2}}, {{0xae7,1},{0x41ef,2}}, {{0xb795,8},{0x674c,3}}, {{0x1fc59,6},{0xfe5,2}}, + {{0x3b10,8},{0x3b26,5}}, {{0x1b093,5},{0x1668,4}}, {{0xb7d,2},{0xae6,2}}, {{0x27cea,1},{0x2b783,2}}, + {{0x2b900,4},{0x6fac,2}}, {{0x287b5,6},{0xfb8b,2}}, {{0xa4d,2},{0x96f,2}}, {{0x10c8,3},{0xf47,3}}, + {{0x201f9,5},{0x10f2,1}}, {{0x244b3,2},{0x6f90,2}}, {{0xd99f,8},{0xc34,3}}, {{0xae6,2},{0xd91,2}}, + {{0x422e,3},{0xd7a,3}}, {{0x28e79,2},{0x2446c,1}}, {{0x244f5,4},{0x1b6f5,2}}, {{0xdf0,2},{0xb4e4,4}}, + {{0x6f62,4},{0xfefe,2}}, {{0x23286,6},{0xae7,1}}, {{0x1e,1},{0x3336,7}}, {{0x24495,2},{0x244c3,2}}, + {{0x12d6e,4},{0x10dc,2}}, {{0x753a,7},{0x1a35,5}}, {{0x6ac5,1},{0xba7,3}}, {{0x5dea,7},{0xcf7,6}}, + {{0x1ff59,5},{0x392d,3}}, {{0xbb5,1},{0xd0c8,4}}, {{0x146e,4},{0xae6,2}}, {{0x2796,3},{0xf82c,2}}, + {{0xcc37,7},{0xae7,1}}, {{0x243de,5},{0xcf0,2}}, {{0xde9,1},{0x19533,4}}, {{0x1408,3},{0x11ef,2}}, + {{0x15dc,6},{0x298a,2}}, {{0x5dea,7},{0xb9d,3}}, {{0x2a93f,2},{0x2a885,2}}, {{0x2c62c,4},{0xff22,2}}, + {{0xa098,5},{0x2b,3}}, {{0xbcb,3},{0x6f36,3}}, {{0x15630,5},{0x1b80,4}}, {{0x7162,4},{0x10929,5}}, + {{0x1ee0,3},{0x1bdb,3}}, {{0x278d6,1},{0x27af1,2}}, {{0x10f3,1},{0x10f4,2}}, {{0x2ce28,4},{0xaf2,1}}, + {{0x278dc,1},{0x278cf,2}}, {{0xb7d,1},{0x1b,2}}, {{0xb8f,2},{0xb71,2}}, {{0xf8cf,2},{0x2098b,2}}, + {{0x5949,6},{0x594f,7}}, {{0x2ada1,4},{0xc5ff,4}}, {{0xc1e,2},{0xbac,4}}, {{0x73de,7},{0xb52,5}}, + {{0x762a,4},{0xe9b,3}}, {{0x8a16,5},{0xb64,3}}, {{0xab9c,1},{0xb52,2}}, {{0x2867e,2},{0x26580,3}}, + {{0x244b9,4},{0x806,2}}, {{0x1719,3},{0xaea,3}}, {{0xae5,1},{0x54e4,4}}, {{0xceb,3},{0xbed,2}}, + {{0xbd4,2},{0x40b6,3}}, {{0x110c,16},{0x110c,16}}, {{0x207a9,4},{0x132f,3}}, {{0x10ca,1},{0xf8cf,3}}, + {{0x78b2,5},{0x139f,3}}, {{0x3242,7},{0xcfcf,4}}, {{0xa2e2,5},{0x28,1}}, {{0x1a4b1,5},{0xfe5,2}}, + {{0x8db2,7},{0x5306,4}}, {{0x27c3,5},{0xc45e,5}}, {{0x10f7,1},{0x2b47e,3}}, {{0x19,1},{0x27e35,2}}, + {{0x1084,3},{0xd7c1,5}}, {{0x70a0,4},{0x2ab13,4}}, {{0x4c9c,4},{0xc7b,4}}, {{0x122c,4},{0xc34,3}}, + {{0xe83d,5},{0xbc1,2}}, {{0x1edc9,5},{0xb77,3}}, {{0x12fe,1},{0x1b,1}}, {{0x9271,5},{0x151f,3}}, + {{0x2789b,3},{0x27a4f,2}}, {{0x24531,4},{0x15798,2}}, {{0xec50,5},{0x2d44,4}}, {{0x24a2d,2},{0x24a35,4}}, + {{0x2796,3},{0xf5f5,2}}, {{0x7f36,9},{0x1257,3}}, {{0x278dc,1},{0x27af7,2}}, {{0xbcb,3},{0x263f,4}}, + {{0x178c,3},{0x10f1,2}}, {{0x2094a,4},{0x2094e,3}}, {{0x80c2,6},{0x1f13,4}}, {{0x2789b,3},{0x27977,2}}, + {{0x1033c,5},{0x103b,5}}, {{0x1f059,5},{0x2067,3}}, {{0x41da,3},{0x100b0,2}}, {{0x27b6,1},{0xb74,2}}, + {{0xcb8,2},{0x11ef,2}}, {{0x116e,1},{0x27a73,2}}, {{0x27ce8,3},{0x2445f,1}}, {{0x101a2,7},{0xae7,1}}, + {{0x39dc,9},{0xb7a,5}}, {{0x27b6,1},{0xbd8,2}}, {{0x3fe4,3},{0xb75,2}}, {{0x2462,4},{0x10dc,2}}, + {{0xeada,5},{0x2bfc,2}}, {{0xcd9,3},{0x24fd,5}}, {{0x10c8,3},{0x2506f,2}}, {{0x40c0,4},{0x1062f,5}}, + {{0xb79,2},{0x2bfd,2}}, {{0x1b6ab,1},{0x279ef,2}}, {{0x10ca,1},{0x1c7b0,5}}, {{0xba7,3},{0x1a7f,6}}, + {{0xab9c,1},{0xce8,3}}, {{0x14cc,4},{0xc3e,2}}, {{0x90e2,4},{0x18074,5}}, {{0x276bb,4},{0x1a1f7,2}}, + {{0xb44,3},{0x8651,4}}, {{0xafde,7},{0xa5dd,5}}, {{0xae6,2},{0x5306,4}}, {{0x1e,1},{0xc45f,4}}, + {{0x1ed53,1},{0x24f92,2}}, {{0x6d81,3},{0xd57,3}}, {{0x1f2a9,4},{0x1f2ad,4}}, {{0x6812,7},{0x220f,5}}, + {{0xc77,2},{0x1152,3}}, {{0xedb,4},{0x715a,3}}, {{0xbeb,1},{0x4687,5}}, {{0xbb10,8},{0x2195,3}}, + {{0x14fc,5},{0x323c,2}}, {{0x2b,1},{0x1a,4}}, {{0xb6c,4},{0x21,1}}, {{0x22e3,3},{0xeb2,1}}, + {{0x2d64,6},{0x2d6a,8}}, {{0x2cf0d,2},{0x948,1}}, {{0x30da,3},{0x1ed0,4}}, {{0x181c,3},{0x29082,2}}, + {{0xb4a,3},{0x6573,7}}, {{0x20aaf,4},{0x14933,3}}, {{0xbde,4},{0xaf1,1}}, {{0x8b96,8},{0xb54,4}}, + {{0xe97a,6},{0xb7a,5}}, {{0x17bc,3},{0xfcaf,2}}, {{0x10d98,5},{0xfffb,2}}, {{0xbb5,1},{0x675f,6}}, + {{0xf63,5},{0x1308,4}}, {{0xbde,3},{0x20adf,2}}, {{0x6a91,3},{0xa65f,7}}, {{0x1e,1},{0x750e,4}}, + {{0x20bb,3},{0x1b3c0,5}}, {{0x1adf,5},{0xb7c,3}}, {{0x10f7,1},{0x1a814,2}}, {{0x271e,3},{0x6ac5,1}}, + {{0x4042,7},{0x3211,7}}, {{0x19b70,5},{0x3a3b,3}}, {{0x6ac3,3},{0xe9b,3}}, {{0x4284,2},{0x20a41,5}}, + {{0x6dcf,5},{0x6dd4,8}}, {{0xeb2,1},{0xcd5,2}}, {{0x27b4,3},{0x10dc,2}}, {{0xf85,4},{0x1ba5,3}}, + {{0x1e45,4},{0x14b6,2}}, {{0xd54,2},{0xaea,1}}, {{0x36be,5},{0xc62,3}}, {{0x29ecd,3},{0x279c5,2}}, + {{0xa7f2,5},{0x14643,5}}, {{0x148c8,6},{0xfe5,2}}, {{0xf21d,7},{0x2be6,4}}, {{0x271e,3},{0x1a296,2}}, + {{0x10f6,1},{0xb67,2}}, {{0x4fbd,4},{0xde2,4}}, {{0xceb,4},{0xce8,3}}, {{0x23be9,6},{0xbeb,1}}, + {{0xcd9,3},{0x166a6,5}}, {{0x1f2ab,2},{0x1f2ad,4}}, {{0x8c4,4},{0x532,16}}, {{0xb12e,3},{0xb2e,2}}, + {{0x8446,8},{0x14a8,4}}, {{0x6d81,3},{0x10fa,1}}, {{0x31d2,6},{0x1dac,3}}, {{0x12bb6,7},{0x2b,3}}, + {{0x194a,11},{0xc57,4}}, {{0xfcb7,5},{0xfcbc,6}}, {{0x43e3,1},{0xcc0,3}}, {{0x21a9f,5},{0x19ca,2}}, + {{0xbb4,2},{0xc67,3}}, {{0xebd7,8},{0x2b,3}}, {{0xb52,2},{0xd1a,7}}, {{0x261f,5},{0x72da,3}}, + {{0x278dc,1},{0x116c,2}}, {{0xe6d,2},{0xd51,2}}, {{0xb98,2},{0xb85,2}}, {{0x5949,6},{0x16835,3}}, + {{0x180e,2},{0x28,1}}, {{0x522d,10},{0xc8e,3}}, {{0xaaec,2},{0xaaee,4}}, {{0x5358,8},{0xaf2,1}}, + {{0x6f68,12},{0x6f86,12}}, {{0x2ad8b,2},{0x1dec4,2}}, {{0xcd9,3},{0xd57,2}}, {{0x6ac3,3},{0x187c,3}}, + {{0x17ac,3},{0x10ca,1}}, {{0xfed2,8},{0xfed2,4}}, {{0x271e,3},{0x2848,2}}, {{0x28,2},{0x35fd,3}}, + {{0x4196,4},{0x13d1,4}}, {{0x441c,3},{0xeb2,1}}, {{0xfccd,5},{0x4590,5}}, {{0xb2e,2},{0xb63,3}}, + {{0xb6c,3},{0x1cf44,5}}, {{0x3da2,7},{0x1498,4}}, {{0x27cf4,4},{0x27cf8,2}}, {{0x1a,3},{0xcb8,2}}, + {{0xfa61,6},{0xf595,5}}, {{0x27cea,1},{0x2864c,2}}, {{0x4443,6},{0x2939,3}}, {{0x22e6,5},{0x1d,1}}, + {{0xd57a,4},{0x3776,3}}, {{0x20bb,3},{0xc73,2}}, {{0x3234,4},{0x2c7e,5}}, {{0xbd6,2},{0xc1c,2}}, + {{0xbd6,2},{0x146e,3}}, {{0x5442,4},{0x88ce,4}}, {{0x10fa,1},{0xb98,2}}, {{0xaf2,1},{0xb63,2}}, + {{0xab9a,3},{0x14bb5,2}}, {{0xae7,1},{0x7681,7}}, {{0x1cec,6},{0xc833,5}}, {{0xc49,12},{0xc55,6}}, + {{0xd8ad,8},{0xb78,2}}, {{0x24f87,2},{0x24461,1}}, {{0x28832,6},{0x1b,1}}, {{0x9646,5},{0xbbf,2}}, + {{0x10ec,1},{0x17921,4}}, {{0x24a30,2},{0x734,1}}, {{0x27c73,4},{0x924,2}}, {{0x278c9,2},{0x27ac1,2}}, + {{0x9b1a,5},{0xaf1,2}}, {{0x1693,3},{0xaea,1}}, {{0x1865,2},{0x2bfd,2}}, {{0x423e,1},{0xcbc,4}}, + {{0xbe4,1},{0x6ac5,1}}, {{0xbcb,3},{0x9851,5}}, {{0x167c,5},{0x10a1,3}}, {{0xe2f2,4},{0xa738,6}}, + {{0xc52,2},{0x2b,2}}, {{0x1d,2},{0xc8f,2}}, {{0x4268,3},{0x11ef,3}}, {{0x27897,1},{0x279c5,2}}, + {{0x6f74,6},{0x157a0,6}}, {{0x26d19,4},{0x10f5,2}}, {{0xc13,4},{0x10502,6}}, {{0xb47d,7},{0xb2c,4}}, + {{0x278d6,1},{0x27ae5,2}}, {{0xd0a4,7},{0xd0b,4}}, {{0x278af,2},{0x924,2}}, {{0x2380e,3},{0xae6,2}}, + {{0x151a8,6},{0x1f13,4}}, {{0x17ac,3},{0x10ef,1}}, {{0x30,2},{0x532,18}}, {{0x11022,7},{0x2b,3}}, + {{0xcfd,5},{0xb2c,4}}, {{0xb9f,2},{0x1260,4}}, {{0xbe0,1},{0x292a5,2}}, {{0x3688,6},{0x368e,6}}, + {{0x2214,6},{0x38ae,8}}, {{0xae6,2},{0xb47,2}}, {{0xed79,8},{0x2b,3}}, {{0xbb5,1},{0xede,3}}, + {{0xcc7,3},{0xc25a,4}}, {{0x4288,2},{0xf82b,3}}, {{0x1084,3},{0xc21,3}}, {{0x4124,11},{0x1b08,3}}, + {{0x30,14},{0x532,4}}, {{0xf6e4,5},{0x40bc,3}}, {{0x1040,6},{0x9911,5}}, {{0x2d,1},{0x2891,3}}, + {{0x6d8e,3},{0x67a7,3}}, {{0x14dc,4},{0x1a,2}}, {{0x2445c,3},{0x2a8ef,2}}, {{0xeec,5},{0x20a0,3}}, + {{0xaea,1},{0x140a,2}}, {{0x24a2d,2},{0x9a9,1}}, {{0xfe38,4},{0xae8,2}}, {{0xbaa2,4},{0x11f2,3}}, + {{0xb60,3},{0x2884,3}}, {{0x6bd6,7},{0xae7,1}}, {{0x20990,4},{0x20994,3}}, {{0x28871,3},{0x24a41,2}}, + {{0xd301,7},{0x461c,4}}, {{0x6d81,3},{0x1a7d5,6}}, {{0x1c8f,3},{0x3f72,4}}, {{0x2aeaa,2},{0x2446f,2}}, + {{0xb8a,2},{0x2810c,3}}, {{0x8abe,9},{0x1081,3}}, {{0x14404,7},{0x1719,3}}, {{0xd0f,4},{0x1be11,4}}, + {{0x24a2d,2},{0x27c9b,2}}, {{0x252c1,6},{0xfef4,4}}, {{0x4134,3},{0x7cfb,7}}, {{0xbb5,1},{0xc34,3}}, + {{0x4d74,8},{0xc32c,3}}, {{0x1084,3},{0xd57,2}}, {{0xba5,4},{0x38e5,6}}, {{0xc25,4},{0x1b0a,2}}, + {{0x416c,3},{0xb7d,1}}, {{0x364e,4},{0x6008,4}}, {{0x251cb,1},{0x2842b,3}}, {{0x6d8e,3},{0x15f26,3}}, + {{0x6d8e,3},{0x1685,3}}, {{0x28da,1},{0x2844,2}}, {{0x6d8e,3},{0xf8cf,2}}, {{0xf63,5},{0x1a06,7}}, + {{0x2574,2},{0x2574,2}}, {{0x271e,3},{0x2506b,2}}, {{0xddc,5},{0x12f6,3}}, {{0x1b13e,5},{0x924,3}}, + {{0x192af,6},{0xc6a9,3}}, {{0xaf1,1},{0xfb89,4}}, {{0x5f90,3},{0x10dc,2}}, {{0x286a,2},{0x1ad2,5}}, + {{0x5949,4},{0x11e2,4}}, {{0xcd5,2},{0xeb3,3}}, {{0xde2,3},{0xbb5,1}}, {{0xaadc,3},{0xfd5e,3}}, + {{0x10c8,3},{0x15b3f,2}}, {{0xac72,4},{0x139e,4}}, {{0xc37,3},{0x1089,2}}, {{0x768a,6},{0xcd30,4}}, + {{0x1b,1},{0xc6a9,3}}, {{0x1b6ab,1},{0x2797d,2}}, {{0x6ac3,3},{0x208f7,3}}, {{0x281d,5},{0x4c75,8}}, + {{0x178c,3},{0x2848,2}}, {{0x1675,2},{0x1a,2}}, {{0xbeb,1},{0xf82b,3}}, {{0x13504,7},{0x2b,3}}, + {{0x675c,5},{0x5277,4}}, {{0xb8f,2},{0xb52,2}}, {{0x28cf,3},{0x1d,1}}, {{0x2b,1},{0x281fb,4}}, + {{0x17ec,5},{0x10569,3}}, {{0x10fd,2},{0x2b,1}}, {{0xa9f6,4},{0x2c3a,4}}, {{0x10fb,3},{0x14bb0,2}}, + {{0x10c8,3},{0x21,1}}, {{0xcbd,3},{0x3343,9}}, {{0x2789b,3},{0x116e,2}}, {{0x6e10,4},{0xed0,3}}, + {{0x6631,5},{0x460d,3}}, {{0x4356,2},{0xa15d,4}}, {{0x1ebc1,6},{0xae7,2}}, {{0x253d9,4},{0x1a2e,3}}, + {{0x50a7,8},{0x50af,5}}, {{0xa612,6},{0xa618,6}}, {{0xded,5},{0xaf1,2}}, {{0xd91,3},{0x1081,3}}, + {{0xf943,5},{0x1bdb,3}}, {{0x470e,5},{0x4446,6}}, {{0x7e52,6},{0xb52,6}}, {{0x432,48},{0x432,4}}, + {{0xf98,5},{0x1513,5}}, {{0x716e,5},{0xcbf,3}}, {{0xf85,4},{0x18a7,3}}, {{0xbde,3},{0x25c2,3}}, + {{0x5483,4},{0x8b22,8}}, {{0x10ef,1},{0x26e78,3}}, {{0xab9c,1},{0xf82b,3}}, {{0xfa40,5},{0xfa45,6}}, + {{0x28,1},{0x2b232,5}}, {{0x12d6e,6},{0x2891,3}}, {{0x6f74,4},{0x96b,2}}, {{0x16640,6},{0x18ca,3}}, + {{0x1095,4},{0x5c76,4}}, {{0x1b4e4,1},{0x9a9,1}}, {{0x30,2},{0x2b8ba,4}}, {{0xd41,5},{0x79e3,7}}, + {{0xbb5,1},{0xf482,3}}, {{0x3694,4},{0x715a,3}}, {{0xe8e0,8},{0xeb3,3}}, {{0x1b,1},{0xb066,2}}, + {{0x12936,7},{0x2b,3}}, {{0xe75,4},{0x1710a,5}}, {{0x169c,8},{0x16a4,8}}, {{0x133c,6},{0xc3b9,5}}, + {{0x2b,2},{0x4dd4,7}}, {{0x10f8,2},{0xd54,1}}, {{0x1ed58,1},{0xa7d,6}}, {{0xb2f,1},{0xcab,3}}, + {{0x2b87e,4},{0x1b25d,2}}, {{0x1d69f,6},{0x10dc,2}}, {{0xd0fc,4},{0xeb3,3}}, {{0xb67,2},{0x12fe,1}}, + {{0xb64,2},{0xbd4,2}}, {{0x10652,7},{0xc63,3}}, {{0xfd7d,5},{0x258e,6}}, {{0x271e,3},{0xc240,7}}, + {{0xbcb,3},{0xb7d,1}}, {{0x26c6,1},{0x6ac5,1}}, {{0x1d55,4},{0x8a24,5}}, {{0xc37,3},{0x7f90,4}}, + {{0xec50,5},{0x1916,5}}, {{0x422e,3},{0x92c9,5}}, {{0xaca2,3},{0x169f,3}}, {{0x18d21,7},{0x10dc,2}}, + {{0x136e,4},{0xbbf,2}}, {{0xcc7,3},{0xb84a,6}}, {{0x15a1f,4},{0x15a23,5}}, {{0x11de,3},{0x11e7,4}}, + {{0xdfe,5},{0xbf35,6}}, {{0xcdf,3},{0x1698,4}}, {{0xab9c,1},{0x43e3,1}}, {{0x22cf8,1},{0x18,1}}, + {{0x6e03,4},{0x4569,4}}, {{0x2043,9},{0xb7a,5}}, {{0xbf7d,8},{0x2b,3}}, {{0x2b,1},{0x3bc2,4}}, + {{0x112c,1},{0x24f91,2}}, {{0x6e60,3},{0x2cd1,4}}, {{0x10fa,1},{0x1a,1}}, {{0x422e,3},{0x18e9,3}}, + {{0xae22,9},{0xae7,1}}, {{0x27565,4},{0x10ec,1}}, {{0xbaa2,4},{0x11b8,4}}, {{0x1d59,3},{0x23ce,4}}, + {{0x2c47c,4},{0xa4f,2}}, {{0x4d33,7},{0x1197,4}}, {{0x3df6,5},{0x1bdb,3}}, {{0xcfd,4},{0x3610,2}}, + {{0x1961,3},{0x38eb,3}}, {{0x27e2a,2},{0x27e43,3}}, {{0x1b8e3,4},{0x249a9,8}}, {{0x1f,1},{0x1d8a,3}}, + {{0x19279,6},{0x1152,3}}, {{0xe468,8},{0x1719,3}}, {{0xc1e,2},{0xc34,3}}, {{0x10fb,3},{0x298a,2}}, + {{0x10fb,3},{0x10f4,2}}, {{0x1b48,10},{0xdc1,5}}, {{0xaec,2},{0xb78,2}}, {{0x209d,4},{0xe6d,5}}, + {{0x14ea8,3},{0x14eab,5}}, {{0x12ac,5},{0x4569,5}}, {{0xd76,7},{0x1e,1}}, {{0x177e,3},{0x14a7,5}}, + {{0x27,1},{0xcd30,4}}, {{0x11b94,6},{0x1278,4}}, {{0x152b6,5},{0x152bb,5}}, {{0x1fb91,6},{0xc67,2}}, + {{0xa666,10},{0xd0d,2}}, {{0x1540a,5},{0x6636,4}}, {{0x181c,3},{0xa7d8,2}}, {{0x27b6,1},{0xb63,2}}, + {{0x762a,5},{0xff7,5}}, {{0x27b4,3},{0x20b13,2}}, {{0xdf2,3},{0xb9c,2}}, {{0x201f1,4},{0x10ec,1}}, + {{0x6d8e,3},{0x187fb,4}}, {{0x2769,7},{0xef3,4}}, {{0x13c16,7},{0xc89,3}}, {{0x30,2},{0x2b783,2}}, + {{0x27c3,4},{0x1a,1}}, {{0x24531,4},{0x24673,2}}, {{0x1c,2},{0xaea,2}}, {{0xc6cd,5},{0x4bcf,5}}, + {{0x6a91,3},{0xb63,2}}, {{0x59b1,6},{0x1555,7}}, {{0xb31,1},{0x948,1}}, {{0x969,2},{0x2ae5b,2}}, + {{0xb87,3},{0x207b3,4}}, {{0xaca2,3},{0x1701,3}}, {{0x1dbe,5},{0xe4c,7}}, {{0x911e,7},{0x2b75,5}}, + {{0xa7b6,5},{0xaea,2}}, {{0x734,1},{0x24f9a,3}}, {{0xd5c,1},{0x2744e,3}}, {{0xc37,3},{0xc89,3}}, + {{0x2067b,3},{0x1b3bd,2}}, {{0xe3e4,8},{0xc63,3}}, {{0xaeb,2},{0xff7,5}}, {{0xb7f,3},{0x1c4d9,4}}, + {{0x1c25,3},{0xa24a,3}}, {{0x10800,6},{0x1719,3}}, {{0x1b61b,4},{0x1b61b,4}}, {{0x1a541,5},{0xfe1,4}}, + {{0x6d8e,3},{0xf951,8}}, {{0x125e,6},{0x1058,4}}, {{0x1e,1},{0xd7f,3}}, {{0xd8e,4},{0x7a06,5}}, + {{0x6520,10},{0xd7f,3}}, {{0x1f473,4},{0xae7,1}}, {{0x6ac5,1},{0xeee,5}}, {{0x532,66},{0x30,36}}, + {{0x135fe,6},{0x2bca,4}}, {{0x1d897,6},{0x10dc,2}}, {{0xddc,4},{0xcbd,3}}, {{0xc3d,4},{0xc52,2}}, + {{0xbe4,1},{0xc6db,7}}, {{0x1040,5},{0xdf0,2}}, {{0xefc0,8},{0xc34,3}}, {{0x6d8e,3},{0xd7a,3}}, + {{0xbb5,1},{0x4a30,4}}, {{0x10c8,4},{0xaf2,1}}, {{0x357c,7},{0x5c5b,3}}, {{0x1089,2},{0xb52,2}}, + {{0xbeb,1},{0xce1,4}}, {{0x177c,3},{0x10f5,2}}, {{0xeb5,4},{0x28,1}}, {{0xf75d,4},{0xa24a,3}}, + {{0x24a2d,2},{0x27cea,1}}, {{0xd1b,1},{0xfb1,2}}, {{0x181c,3},{0x1e6c,6}}, {{0x10c8,4},{0x2a85,6}}, + {{0x5af6,9},{0x10dc,2}}, {{0xa7da,7},{0xa7e1,5}}, {{0x1f,1},{0x187c,3}}, {{0x1077e,6},{0xd0d,2}}, + {{0x176f0,5},{0x11ef,2}}, {{0x27d24,3},{0xb32,3}}, {{0xbde,3},{0x1c4d9,4}}, {{0xabfa,5},{0x139e,2}}, + {{0x2769,5},{0xe03,4}}, {{0xc654,8},{0x10dc,2}}, {{0x10ca,1},{0xc67,3}}, {{0x181c,3},{0x1016,4}}, + {{0x12fe,2},{0x1308,4}}, {{0x159c,4},{0xc8e,3}}, {{0x2c274,2},{0x27cea,1}}, {{0xab9a,3},{0x10fa,1}}, + {{0x10ca,2},{0x12fe,1}}, {{0xe97,9},{0xeb1,8}}, {{0x10ef,1},{0x15b3f,2}}, {{0xd1a,2},{0x16f7,4}}, + {{0x173e,3},{0xb55,2}}, {{0x1ab29,5},{0x8472,4}}, {{0x116e,1},{0x27989,2}}, {{0x1b6ab,1},{0x27ab5,2}}, + {{0x43e3,1},{0x20918,2}}, {{0xb2e,2},{0x20,2}}, {{0x1e45,4},{0xf482,3}}, {{0x101e,15},{0xd0d,2}}, + {{0xaea,2},{0x89b9,4}}, {{0xdba4,4},{0xaea,2}}, {{0x7156,6},{0xae7,1}}, {{0x2b5e,9},{0xdf9,5}}, + {{0x3996,5},{0x484c,7}}, {{0xafea,5},{0xa5e7,7}}, {{0x245b5,6},{0x24549,6}}, {{0xeb2,1},{0x1f,2}}, + {{0x16cc,4},{0x196fd,5}}, {{0x27b4,3},{0xaf5d,2}}, {{0x1a7db,6},{0x1a7e1,3}}, {{0x3511,4},{0x1257,3}}, + {{0xfde,2},{0xc32,3}}, {{0x27ce8,3},{0x1b6cb,1}}, {{0x1051,7},{0xa055,5}}, {{0x1f2b1,5},{0x152c7,3}}, + {{0x10f7,1},{0xfb1,2}}, {{0x1e,1},{0x92e9,5}}, {{0xba5,5},{0xae6,2}}, {{0x2ae3f,4},{0x1f,2}}, + {{0x2ba9,3},{0xbac,4}}, {{0x2789b,3},{0x27a31,2}}, {{0xa762,8},{0xb63,2}}, {{0xa6a2,6},{0x377c,6}}, + {{0x3e92,3},{0x57bc,7}}, {{0x2c362,4},{0x1016a,2}}, {{0x12ae,3},{0xb54,4}}, {{0x709c,2},{0xa4f,2}}, + {{0xba5,4},{0x64d7,8}}, {{0x16d2,2},{0x28,1}}, {{0xeb95,5},{0x3a39,3}}, {{0x6b61,2},{0x28,1}}, + {{0x13cd4,7},{0xc6a9,3}}, {{0x734,2},{0x159c8,1}}, {{0xb60,2},{0x2a16,3}}, {{0x6f23,2},{0x25c2,3}}, + {{0x1d8a,3},{0x18ca,3}}, {{0xb71,2},{0xb7d,2}}, {{0xb75,3},{0xfa3,4}}, {{0x1b6cb,2},{0x22cf8,1}}, + {{0xfeec,4},{0x1b1f7,8}}, {{0x40c0,4},{0x887b,3}}, {{0x29f18,3},{0x27911,2}}, {{0x39ce,5},{0xc77,2}}, + {{0x3642,10},{0xb2e,2}}, {{0xd0fe,3},{0xc828,5}}, {{0x15a5e,2},{0x15a60,7}}, {{0xba22,4},{0xce8,3}}, + {{0x27015,2},{0x2756e,3}}, {{0x27e2b,2},{0x1b4e3,1}}, {{0x19c63,5},{0x40b8,2}}, {{0xcd9,6},{0xd256,4}}, + {{0xbe7,1},{0x1290,3}}, {{0xf63,5},{0xdf7e,4}}, {{0xb4a9,5},{0xb53,2}}, {{0x30,2},{0x2b872,4}}, + {{0x1504a,7},{0x15051,3}}, {{0x244f5,4},{0x27d99,2}}, {{0x149c,10},{0x14a6,6}}, {{0x27b4,3},{0xb066,2}}, + {{0xbc1,2},{0x7abd,5}}, {{0x6d8e,3},{0x1fd24,5}}, {{0xae9,2},{0xb52,6}}, {{0x1f503,4},{0xb64,2}}, + {{0xae5,1},{0x5dbb,4}}, {{0xb52,2},{0xcb8,2}}, {{0xb31,1},{0x2864c,2}}, {{0xd0f,4},{0x7a06,5}}, + {{0x1ae2,2},{0x4246,4}}, {{0xddc,5},{0xc57,4}}, {{0xb75,3},{0xf25a,5}}, {{0x432,48},{0x432,3}}, + {{0x13ea0,5},{0x4f90,5}}, {{0x2b,2},{0xfdf,3}}, {{0x1f3a,3},{0x2be6,4}}, {{0xb44,3},{0xb64,3}}, + {{0x14dc,5},{0xb4b,2}}, {{0x3c65,7},{0xd0d,2}}, {{0xb55,2},{0x1a,2}}, {{0x10fd,9},{0x107e,6}}, + {{0x876e,3},{0x6008,4}}, {{0x17ec,5},{0x6a38,4}}, {{0x2711,5},{0xb54,4}}, {{0xb7d,1},{0x17279,7}}, + {{0x17bc,3},{0x28,1}}, {{0xab9a,3},{0xf76b,8}}, {{0xc1c,2},{0xd57,2}}, {{0x6b54,2},{0xd0b,3}}, + {{0x1017e,6},{0x10184,12}}, {{0xc30,2},{0xce8,3}}, {{0x11e78,5},{0xb65,2}}, {{0x26c6,1},{0xaa95,3}}, + {{0x505c,5},{0xb9d,3}}, {{0x5562,8},{0x2b,3}}, {{0x10190,14},{0x70d0,4}}, {{0x278d6,1},{0x1b6b3,2}}, + {{0x10fb,3},{0x1abd9,2}}, {{0xaf1,1},{0x1a5c,3}}, {{0xd41,3},{0x166a6,6}}, {{0xb8f,2},{0xb77,3}}, + {{0x17bc,3},{0x2168,4}}, {{0x14d5,3},{0x1f,1}}, {{0x2c5a2,4},{0x6f66,2}}, {{0x116e,1},{0x27aaf,2}}, + {{0x17d61,7},{0xb75,2}}, {{0x2270f,6},{0xaea,1}}, {{0xcd9,3},{0x260fa,3}}, {{0x3758,4},{0x173e,3}}, + {{0x58f1,3},{0xaf2,1}}, {{0xbe07,9},{0xd57,2}}, {{0x26c4,4},{0xa60f,3}}, {{0x41e8,7},{0x41ef,7}}, + {{0x1a0d,5},{0x14d4,8}}, {{0x442e,2},{0x442e,2}}, {{0x1abb9,7},{0xf63c,2}}, {{0x1b,1},{0x8975,5}}, + {{0xc30,2},{0xbc5,3}}, {{0x253d9,4},{0x1f,1}}, {{0x269ed,4},{0x10119,2}}, {{0xb123,4},{0xb123,7}}, + {{0x29f18,3},{0x279fb,2}}, {{0x40f8,4},{0x67a6,3}}, {{0x1a433,5},{0xadf,2}}, {{0x2061,5},{0x2195,3}}, + {{0xfe0c,8},{0xeb3,3}}, {{0x6c3e,3},{0x21be,4}}, {{0x10508,5},{0xae6,3}}, {{0x6fda,9},{0x22e3,3}}, + {{0x14cc,4},{0xd61d,7}}, {{0xceb,4},{0x2349,4}}, {{0x159c,4},{0x257c,2}}, {{0x1c47,6},{0x4f1a,6}}, + {{0xef7e,8},{0x5cd6,3}}, {{0x1878,1},{0xde9,1}}, {{0xd0f,6},{0xae7,1}}, {{0xf5dc,8},{0xb7c,3}}, + {{0x3296,7},{0x329d,7}}, {{0x10f3,1},{0xa7d8,2}}, {{0x274b,5},{0x5d97,5}}, {{0x139e6,6},{0xf46,3}}, + {{0xab9a,3},{0xeb1,2}}, {{0x6b2b,6},{0x62ed,4}}, {{0x1f961,4},{0x14930,2}}, {{0xbe4,1},{0x1d8a,3}}, + {{0xb7f,3},{0x2bfc,2}}, {{0x3854,5},{0x3859,9}}, {{0xfeec,4},{0x1b7a5,8}}, {{0xaeca,5},{0xc62,3}}, + {{0x4f71,3},{0xbc1,2}}, {{0x422e,3},{0xf63c,2}}, {{0x319a,6},{0xc4d,2}}, {{0xaeb,2},{0x2b,1}}, + {{0x265b,4},{0x1994f,5}}, {{0x30,128},{0x30,24}}, {{0x92b6,5},{0xbbf,2}}, {{0xcd9,3},{0x1614,8}}, + {{0xab9a,3},{0x10f7,1}}, {{0xf535,5},{0xb2c,2}}, {{0x7076,6},{0xcf7,6}}, {{0xddc,4},{0x1073c,6}}, + {{0xeb1,2},{0x122b3,7}}, {{0x236d1,5},{0xb78,2}}, {{0xf6e4,6},{0xc6a9,3}}, {{0x21e7,11},{0x1719,3}}, + {{0x1af4f,5},{0xa5e6,4}}, {{0xd5c,1},{0xb70,3}}, {{0x6ac3,3},{0xf482,3}}, {{0x11da6,6},{0x1b,1}}, + {{0x1a10,2},{0x1a,2}}, {{0x70a0,4},{0x24871,4}}, {{0x5b1d,5},{0x10dc,2}}, {{0x2796,4},{0xb7d,1}}, + {{0x50e8,7},{0x37f7,3}}, {{0x24f8e,2},{0x2b363,2}}, {{0x148c,12},{0x1498,4}}, {{0xc34,2},{0x142e,1}}, + {{0x1f3ee,2},{0x1a814,2}}, {{0x7170,3},{0x2211,3}}, {{0x27b6,1},{0x187c,3}}, {{0xc49,3},{0xbed,2}}, + {{0x6ac3,3},{0x70f9,4}}, {{0x16ac,5},{0xb63,3}}, {{0xafc6,4},{0xb8b,2}}, {{0x272d,4},{0xb52,2}}, + {{0x14c08,5},{0x2746,3}}, {{0x423e,1},{0x298a,2}}, {{0xbb5,1},{0xb7d,1}}, {{0xaf1,1},{0x43e5,3}}, + {{0xae2,1},{0xf10,3}}, {{0x2935b,4},{0x28,1}}, {{0x42ae,3},{0x13327,5}}, {{0x130e,5},{0xc8e,3}}, + {{0xb47,2},{0x27,1}}, {{0x14e74,6},{0x6815,4}}, {{0xbb52,6},{0x10c3,5}}, {{0x26f1,4},{0x187c,3}}, + {{0xa162,6},{0x1f,1}}, {{0x193c6,6},{0xcce,3}}, {{0x10ec,1},{0x26e78,3}}, {{0x135e,4},{0x1362,3}}, + {{0x3694,4},{0x1b4f,4}}, {{0x29b8d,4},{0x10f7,1}}, {{0x19,1},{0x24f87,2}}, {{0x14cc,4},{0x1773,3}}, + {{0x1ca8d,6},{0xdf0,2}}, {{0xbb4,2},{0xb8f,2}}, {{0x24729,6},{0x2472f,6}}, {{0xfcee,6},{0xeaca,5}}, + {{0x1f941,5},{0xc34,3}}, {{0x29e8c,3},{0x27b0f,2}}, {{0x70f6,7},{0xd0d,2}}, {{0xf21,3},{0xaeb,2}}, + {{0xb382,6},{0xae7,1}}, {{0x9c9,1},{0x27cea,1}}, {{0x762a,5},{0x2349,4}}, {{0x108d,3},{0xb51d,5}}, + {{0x8c4,4},{0x30,62}}, {{0x16ae,3},{0xb64,3}}, {{0x11bb6,3},{0xb52,5}}, {{0x147a6,7},{0xc63,3}}, + {{0xd5c,1},{0xae5,1}}, {{0x29f18,3},{0x27a79,2}}, {{0x709c,2},{0x27d99,2}}, {{0x1a94,6},{0x3a39,5}}, + {{0x4411,2},{0x2672b,2}}, {{0x25039,2},{0x5259,4}}, {{0xaca2,3},{0x2891,3}}, {{0xa7d3,2},{0x6ac5,1}}, + {{0x10c8,3},{0x15ae3,2}}, {{0x2a90,2},{0x2b2b3,4}}, {{0x139c,6},{0xc90f,5}}, {{0x22cf8,1},{0x27cc5,2}}, + {{0x1b,1},{0x528f,6}}, {{0xfb1,2},{0xc9f,4}}, {{0x6d81,3},{0x4430,6}}, {{0xbd6,2},{0x9c05,5}}, + {{0x2986,6},{0x10dc,2}}, {{0x2c9aa,4},{0x157b6,2}}, {{0xeec,7},{0x32f1,7}}, {{0x1ae6e,6},{0x21,1}}, + {{0x4c15,5},{0x5d7a,4}}, {{0x2c830,4},{0x20b23,2}}, {{0x98c2,8},{0x715a,3}}, {{0x27b4,3},{0xf14,2}}, + {{0x14b6,2},{0x158fb,7}}, {{0xd0d,2},{0xbc6,2}}, {{0xf0e,5},{0x21d2,6}}, {{0x6f74,4},{0xf907,2}}, + {{0xbed,4},{0xb78,2}}, {{0x434d,2},{0x10ec,1}}, {{0x1b6ab,1},{0x279f5,2}}, {{0xb44,3},{0xd1b,1}}, + {{0xddc,4},{0x1762,3}}, {{0xab9a,3},{0x1f994,5}}, {{0xa9f6,4},{0xeee,5}}, {{0x11ba8,4},{0xde9,4}}, + {{0x17bc,4},{0x4de1,8}}, {{0x6b5f,4},{0x13af,4}}, {{0x100f,3},{0x1023,10}}, {{0x2ada9,4},{0xeb2,1}}, + {{0x2518f,4},{0xdf0,2}}, {{0x26c6,1},{0x1a6fd,2}}, {{0xe6d,2},{0x1081,3}}, {{0xe64,4},{0xc2bc,5}}, + {{0xe70,4},{0x5cd6,3}}, {{0x4d33,7},{0x88ce,4}}, {{0x9226,7},{0x31f8,4}}, {{0x264c,4},{0xa590,3}}, + {{0xa246,4},{0x9c4d,5}}, {{0x29661,4},{0x6ac5,1}}, {{0x178c,3},{0xc828,4}}, {{0x41da,3},{0x1b22,4}}, + {{0xbd1,2},{0xfa0,5}}, {{0x19cbd,5},{0x10b9,4}}, {{0xeee,5},{0x48dc,6}}, {{0x1f2ab,2},{0x24ff3,4}}, + {{0xf445,6},{0xb8f,3}}, {{0x3a68,10},{0x11b8,4}}, {{0x2844,2},{0x10f2,1}}, {{0x319a,5},{0x8a55,3}}, + {{0xadf,2},{0xcb8,2}}, {{0x13bc,5},{0x619a,3}}, {{0x43e3,1},{0x3643,5}}, {{0xb2e,2},{0xb9f,2}}, + {{0xf844,5},{0x1e,1}}, {{0xb9d,3},{0xc34,3}}, {{0x1ef69,5},{0xd7a,3}}, {{0x2674b,4},{0xbeb,1}}, + {{0x10f7,1},{0xe78,3}}, {{0x6748,3},{0x43e5,3}}, {{0x422e,3},{0x26754,2}}, {{0x114b4,6},{0x12fe,4}}, + {{0x1a76,4},{0xba9c,6}}, {{0x142c,4},{0x21,2}}, {{0x9a9,1},{0x1b6cb,1}}, {{0x6d81,3},{0x180e,2}}, + {{0x7c4,32},{0x7c4,1}}, {{0x1cf15,6},{0x1cf1b,4}}, {{0x14bc,7},{0x584c,6}}, {{0x709a,4},{0x244c7,2}}, + {{0x7276,4},{0x108e,7}}, {{0x13a18,6},{0x25df,4}}, {{0xad86,6},{0x139e,4}}, {{0x1c,1},{0x103a,3}}, + {{0x6595,8},{0x2d68,5}}, {{0x172ec,5},{0x18a7,3}}, {{0xb1ff,6},{0xca7,4}}, {{0x10fb,3},{0x15a61,2}}, + {{0xcd9,5},{0xde5e,6}}, {{0x27c79,4},{0x924,2}}, {{0x4282,4},{0x14f5e,6}}, {{0x20379,6},{0xb55,2}}, + {{0xbe7,1},{0x26d04,3}}, {{0xbcb,3},{0xb6ff,4}}, {{0x31e2,4},{0xfff6,6}}, {{0xfe38,4},{0x16e4,7}}, + {{0x181c,4},{0xbed,2}}, {{0x20bb,3},{0x101f7,5}}, {{0x4338,8},{0xb8d,3}}, {{0xf6fa,5},{0xb9f,2}}, + {{0xab9a,3},{0xd57,2}}, {{0x5d5b,5},{0x2af8,4}}, {{0x2804e,3},{0x139e,2}}, {{0x6ac3,3},{0xbb1,3}}, + {{0xbe7,1},{0xc593,4}}, {{0xb44,3},{0xbb5,2}}, {{0xc55,2},{0xb54,4}}, {{0x17ac,4},{0x5c76,4}}, + {{0xf388,6},{0xf38e,5}}, {{0xaeb,2},{0x1362,3}}, {{0x12cba,6},{0xb78,2}}, {{0xab9c,1},{0x2b,2}}, + {{0xcb8,2},{0x31f8,4}}, {{0xbcb,6},{0x8878,6}}, {{0x17645,6},{0x2b,3}}, {{0x1f049,5},{0x554f,3}}, + {{0xb64,3},{0xc48a,5}}, {{0xb6e,2},{0xc1e,2}}, {{0x70c6,6},{0x70d0,4}}, {{0xcbc9,6},{0x1961,3}}, + {{0xd0f,4},{0xc67,2}}, {{0x3fb8,3},{0x103a5,5}}, {{0x20cd,7},{0xb2e,2}}, {{0x41be,3},{0xfde,4}}, + {{0xfe38,7},{0x2eb0,4}}, {{0x177c,3},{0x2a90,2}}, {{0x423c,3},{0x4e98,3}}, {{0x8cda,9},{0x2939,3}}, + {{0x2789b,3},{0x27995,2}}, {{0x5915,5},{0x101c,2}}, {{0x2f9b,3},{0xb2c,2}}, {{0x3d32,12},{0xae7,1}}, + {{0x1858,5},{0x10c2b,5}}, {{0xf46f,6},{0xd91,2}}, {{0x181c,3},{0x26532,3}}, {{0x278c9,2},{0x27a91,2}}, + {{0x26c6,2},{0xc8e,3}}, {{0x1f299,5},{0xd0d,2}}, {{0x278d6,1},{0x116d,2}}, {{0xb55,2},{0x1c25,4}}, + {{0x177c,3},{0x22ea7,4}}, {{0x3e58,4},{0x25c2,3}}, {{0x2769,7},{0x4cec,6}}, {{0x287e7,2},{0x157f2,2}}, + {{0x26f1,4},{0x19dd8,5}}, {{0x21da,3},{0x55f6,6}}, {{0xb70,2},{0x24fd,5}}, {{0xa2ee,6},{0xb78,2}}, + {{0x2445f,1},{0x2b5b9,2}}, {{0x29f18,3},{0x278f3,2}}, {{0xf90f,4},{0x2b,3}}, {{0x3df6,5},{0xc73,2}}, + {{0x1aaef,3},{0x15adc,2}}, {{0x10ef,1},{0x440f,2}}, {{0x29512,2},{0xbe4,1}}, {{0x177c,3},{0x101f7,5}}, + {{0x29ecd,3},{0x1b140,2}}, {{0xb8a,3},{0xeb3,3}}, {{0xbcb,3},{0xbd8,2}}, {{0x18ca3,5},{0xb2c,4}}, + {{0x3234,3},{0xe7e9,4}}, {{0xaca2,3},{0xe6d,4}}, {{0x16ac,6},{0xb996,4}}, {{0x24065,5},{0xc30,2}}, + {{0x26c6,1},{0xfcb4,2}}, {{0xbcb,3},{0x1cf1b,4}}, {{0x265b,4},{0xc55,2}}, {{0x14bf4,4},{0xb7c,2}}, + {{0x1878,1},{0x1b0a,2}}, {{0x3f9a,4},{0x2f48,6}}, {{0x90e2,4},{0x1ee0,3}}, {{0x4196,3},{0x28,1}}, + {{0x244ad,6},{0x244b3,6}}, {{0xde9,1},{0x711d,6}}, {{0xfcd8,5},{0xae2,2}}, {{0x14a26,5},{0x2b4b,4}}, + {{0x1b8c5,10},{0x70d0,4}}, {{0x9534,4},{0x5d6f,6}}, {{0xae5,1},{0x2d,1}}, {{0x522d,8},{0x1bdb,3}}, + {{0x4417,2},{0x1ae4f,2}}, {{0x178c,3},{0x4459,3}}, {{0xce1,3},{0x28,1}}, {{0x2b7cb,2},{0x251fe,2}}, + {{0x25657,4},{0xc29,2}}, {{0x27b4,3},{0xf8f,5}}, {{0x2789b,3},{0x27a3d,2}}, {{0x4484,6},{0xf05,7}}, + {{0xd76,4},{0x16024,5}}, {{0x1aea4,6},{0x2b,3}}, {{0x6c8a,4},{0xaf2,1}}, {{0xae7,1},{0xc51,2}}, + {{0xf38f,3},{0xb48,2}}, {{0x68fe,5},{0xb52,6}}, {{0x3f80,4},{0x142ac,4}}, {{0x2445e,1},{0x2864c,1}}, + {{0xae7,1},{0x1089,2}}, {{0x2920,4},{0x2b02,6}}, {{0x287b5,6},{0x157a4,2}}, {{0x14454,6},{0xd48,2}}, + {{0x2061,5},{0xd5e7,6}}, {{0x6221,11},{0x10dc,2}}, {{0xbe0,1},{0x1150,2}}, {{0xbeb,1},{0x269e4,2}}, + {{0x2c6f8,4},{0x1016a,2}}, {{0x1b,1},{0xde9,1}}, {{0xc25,3},{0x1c,1}}, {{0x2a94b,4},{0x117c,1}}, + {{0x142e,1},{0xc89,2}}, {{0x2b325,2},{0x24468,2}}, {{0xc72,3},{0x1c8b,7}}, {{0x423c,3},{0x9271,4}}, + {{0xfd72,4},{0xb7c,2}}, {{0x2ac6b,4},{0x1b237,4}}, {{0x1286e,6},{0x4881,4}}, {{0x1835b,6},{0xae7,1}}, + {{0x1257,2},{0xf238,6}}, {{0xbed,2},{0xdf0,2}}, {{0x2523b,4},{0x2aa67,4}}, {{0xb78,2},{0x27,1}}, + {{0x1a51f,3},{0xd17,3}}, {{0x2441,6},{0x11b9,3}}, {{0x8716,6},{0xb2c,4}}, {{0xb55,2},{0xdf0,2}}, + {{0x1051,4},{0xc21,4}}, {{0x10670,7},{0xc63,3}}, {{0x40b2,4},{0xa7ed,4}}, {{0xdfe,5},{0x1d22,6}}, + {{0x2c93e,4},{0xff02,2}}, {{0x196f,3},{0x24c74,3}}, {{0xb7d,1},{0x14fba,2}}, {{0x5b51,8},{0xc32,5}}, + {{0x4288,3},{0x428b,2}}, {{0xb44,3},{0xd0b,4}}, {{0x4617,5},{0xae6,2}}, {{0x3c7c,10},{0x1498,4}}, + {{0x1709d,5},{0x13b37,3}}, {{0xa9c8,5},{0x13d3,4}}, {{0xaea,2},{0xae7,2}}, {{0xb8b,2},{0xbf6d,5}}, + {{0xcb7,2},{0xcce,3}}, {{0xfd93,8},{0xeb3,3}}, {{0x18a5,5},{0x8e92,4}}, {{0xaca2,3},{0xf14,2}}, + {{0x948,2},{0x9a9,1}}, {{0x58c7,6},{0x12766,4}}, {{0xb01a,4},{0xa2d8,3}}, {{0xbde,3},{0x1aaed,1}}, + {{0x10ec,1},{0xfb1,3}}, {{0x19b3,4},{0x1bf79,4}}, {{0x31b6,10},{0xb2c,4}}, {{0xaeb,2},{0xcd5,2}}, + {{0xcd9,3},{0x4979,4}}, {{0xcbd,3},{0x240c,6}}, {{0x1cbf,5},{0xe9f,3}}, {{0xb052,4},{0xb056,7}}, + {{0xb48,2},{0xde9,1}}, {{0x1ed69,3},{0x24430,2}}, {{0x10f3,1},{0x26f7a,2}}, {{0x1465c,5},{0x1bdb,3}}, + {{0x4a27,4},{0x1a,1}}, {{0xd892,3},{0xaf2,1}}, {{0x7a32,5},{0x12a5,7}}, {{0x1b4e3,4},{0x1b4e3,2}}, + {{0x1cbf,4},{0x2d,1}}, {{0x19d7a,5},{0x4075,2}}, {{0x422e,3},{0x2b,3}}, {{0xbd8,2},{0x2b,1}}, + {{0x12be,3},{0x12a5,7}}, {{0x1b87f,6},{0x1b8a1,8}}, {{0x271ab,5},{0x43e3,1}}, {{0x159c,4},{0x4500,6}}, + {{0x272d,4},{0xae5,1}}, {{0x14652,7},{0x90f7,3}}, {{0xbb5,1},{0xd8bd,5}}, {{0xae2,2},{0xa69c,6}}, + {{0xf30,5},{0x125b7,5}}, {{0x42ae,3},{0x9807,5}}, {{0x5949,4},{0xde9,1}}, {{0x10fb,4},{0xae2,1}}, + {{0x69f7,3},{0xbd1,2}}, {{0x75b2,5},{0xb78,2}}, {{0x1479c,9},{0xae7,1}}, {{0x2474d,6},{0x24753,6}}, + {{0xc77,2},{0xc17,3}}, {{0x30,12},{0x532,4}}, {{0x1a3a,6},{0x1d,1}}, {{0xb01a,4},{0x2745,3}}, + {{0x41e8,5},{0x107d,3}}, {{0x14b18,5},{0x14b1d,5}}, {{0x27d24,3},{0x27d08,2}}, {{0x2789b,3},{0x27a25,2}}, + {{0x103b4,5},{0x1daa,4}}, {{0x27b95,4},{0x27989,2}}, {{0x28ce,3},{0xe415,5}}, {{0x27cc5,2},{0x2a9a8,2}}, + {{0x2c746,4},{0x70a6,2}}, {{0x6aa9,8},{0x1577,5}}, {{0xc4e,2},{0xbd8,2}}, {{0xb92,5},{0xcd2e,6}}, + {{0xa022,5},{0xc8e,3}}, {{0xbd1,2},{0x2c00,3}}, {{0x19930,7},{0x10dc,2}}, {{0x4403,2},{0xc34,2}}, + {{0x122c,4},{0xc2d2,5}}, {{0x10fb,3},{0xe72,3}}, {{0x5476,6},{0xec6d,4}}, {{0xb63,2},{0xb67,2}}, + {{0xbaa2,4},{0xe6d,2}}, {{0xaca2,3},{0xbbf,2}}, {{0x11ff,3},{0x12a5,7}}, {{0x3598,5},{0xe0a,5}}, + {{0xc227,6},{0x4b33,4}}, {{0x145c6,6},{0x145cc,4}}, {{0x10f0,1},{0x10f2,1}}, {{0x1b57,4},{0x10d89,4}}, + {{0x27b0f,2},{0x27b0f,2}}, {{0x1b,1},{0xcc0,3}}, {{0xe78,3},{0x11e4,4}}, {{0xcde,3},{0x2d,1}}, + {{0x130de,8},{0x10dc,2}}, {{0x1b6ab,1},{0x278af,2}}, {{0xa7da,3},{0x4605,5}}, {{0xaeb,2},{0xb48,2}}, + {{0x16fcf,3},{0x1a,2}}, {{0x2cd58,4},{0x6f64,2}}, {{0x2b76,3},{0xae7,1}}, {{0x37d6,5},{0xa4d5,5}}, + {{0x1a4ce,4},{0xbc1,2}}, {{0x43e3,1},{0x20a0,3}}, {{0x278d6,1},{0x278f3,2}}, {{0x780,1},{0x1ed53,1}}, + {{0xd973,7},{0x2b,3}}, {{0x3a3e,9},{0x3a55,5}}, {{0x249f9,6},{0x1a,2}}, {{0x6d8e,3},{0x273c4,3}}, + {{0xf417,5},{0x17a70,4}}, {{0xb05d,5},{0xb062,6}}, {{0x29ecd,3},{0x27911,2}}, {{0xaf1,1},{0x2045,3}}, + {{0xddc,4},{0x16e15,4}}, {{0x2788f,3},{0x29e85,2}}, {{0x7526,5},{0xb55,2}}, {{0x6e03,4},{0x1190,2}}, + {{0x19b5e,5},{0xf594,4}}, {{0x2451f,2},{0x6f64,2}}, {{0x142e,1},{0x5277,2}}, {{0x4491,6},{0xaea,2}}, + {{0xf4df,3},{0xc829,4}}, {{0xf945,3},{0xbb1,3}}, {{0xea40,6},{0x103b,5}}, {{0xae7,1},{0x21,1}}, + {{0x51ad,3},{0x7c25,5}}, {{0x17202,6},{0x38eb,3}}, {{0x5d34,5},{0x10bf,4}}, {{0xfd93,8},{0x11ef,2}}, + {{0x1b57,4},{0x34a2,4}}, {{0x1aee,10},{0x1af8,5}}, {{0x4186,4},{0xb78,2}}, {{0x124c,4},{0x167e2,5}}, + {{0x2f94,10},{0x2f9e,4}}, {{0x6e78,8},{0x3afc,4}}, {{0x10ca,1},{0x2592c,2}}, {{0xb9c,2},{0xec2,2}}, + {{0x26f1,4},{0xb71,2}}, {{0x25311,6},{0x24871,4}}, {{0x1abd7,2},{0x27b6,1}}, {{0x41dc,3},{0x583f,3}}, + {{0xded,5},{0xd82f,5}}, {{0x156c8,3},{0x1a,2}}, {{0xaca4,2},{0xc57,3}}, {{0x1f899,5},{0x3594,3}}, + {{0x278dc,1},{0x27af1,2}}, {{0x79c6,8},{0x25df,4}}, {{0x929e,8},{0x12b1,4}}, {{0x6f1b,5},{0x28,1}}, + {{0x1805e,6},{0xb78,2}}, {{0xd784,6},{0x1a35,5}}, {{0x10f7,1},{0x24bd,4}}, {{0x4ac3,8},{0xb52,5}}, + {{0x23b8,7},{0xbaf,2}}, {{0x8716,4},{0x9911,4}}, {{0x6ac5,1},{0xae6,2}}, {{0x158de,4},{0x3cc7,5}}, + {{0x141e,3},{0x1dff,5}}, {{0x2ca0,5},{0x2992,4}}, {{0x6d8e,3},{0xfcdb,3}}, {{0x106ba,2},{0xf63c,2}}, + {{0xbe0,1},{0x15b3f,2}}, {{0x5d82,9},{0xbed,2}}, {{0x41ef,2},{0x1a11,2}}, {{0x1b6c5,2},{0xb31,1}}, + {{0x1ab8c,5},{0xae6,2}}, {{0x14e60,5},{0x12f1,3}}, {{0xd54,2},{0x1b,1}}, {{0x283b,5},{0x2840,10}}, + {{0x357c,5},{0xe4d,6}}, {{0x28,1},{0x739b,7}}, {{0x5d34,5},{0x5a1c,3}}, {{0xae2,1},{0xb7d,2}}, + {{0x283e,2},{0xd54,1}}, {{0x10d48,4},{0x9808,6}}, {{0xa9f6,6},{0xb2e,2}}, {{0xad3e,6},{0x2b,3}}, + {{0x13ec8,5},{0xb8c,2}}, {{0x2445f,1},{0x27e1f,4}}, {{0x3203,3},{0x1538,4}}, {{0x1572a,5},{0xa7a3,5}}, + {{0xde9,1},{0x3656,4}}, {{0x1e45,4},{0x2a24,6}}, {{0x5b46,3},{0x1c8f,3}}, {{0xd5c,1},{0x2f53,2}}, + {{0x2b,2},{0x1d753,4}}, {{0xbd4,2},{0x2b,1}}, {{0x364e,4},{0xd915,6}}, {{0xc4d,2},{0xb2f,1}}, + {{0xc51,2},{0xb78,2}}, {{0xde4,2},{0x4590,5}}, {{0x432,48},{0x432,7}}, {{0xd5c,1},{0xaea,1}}, + {{0x2451f,2},{0xfeee,2}}, {{0x5949,4},{0xc30,2}}, {{0xbc6,2},{0x1b25b,4}}, {{0x40f8,4},{0xaf2,1}}, + {{0x14cc8,3},{0xc34,2}}, {{0xd8ce,5},{0x715a,3}}, {{0x73d2,6},{0x43bd,4}}, {{0x1a1f4,2},{0x2848,2}}, + {{0x26c4,3},{0x28fc9,2}}, {{0xb55,2},{0x1b347,6}}, {{0x52a2,6},{0x10dc,2}}, {{0x13a3,3},{0x1e,1}}, + {{0x13eaa,6},{0x2af8,4}}, {{0x1a146,5},{0x1f13,4}}, {{0x22cf8,1},{0x2bdac,2}}, {{0x10fb,3},{0x2958f,2}}, + {{0x1040,6},{0x62ed,4}}, {{0x20ca,6},{0xb54,3}}, {{0xf212,3},{0xcb8,2}}, {{0x278d6,1},{0x27977,2}}, + {{0x1b6ab,1},{0x278a3,2}}, {{0x92b6,5},{0x2af8,4}}, {{0x18a5,5},{0xcb8,2}}, {{0x10c8,4},{0x4ee5,8}}, + {{0x98fe,6},{0xe70,4}}, {{0x7366,8},{0x1c43,4}}, {{0xbe7,1},{0x1d,1}}, {{0x1b6ab,1},{0x278a9,2}}, + {{0x434f,2},{0x1a820,3}}, {{0x43e3,1},{0xae2,2}}, {{0x2c76,4},{0x28,1}}, {{0x278c9,2},{0x27ad3,2}}, + {{0x70c6,4},{0x244ed,2}}, {{0x9442,8},{0xb54,4}}, {{0x10fb,3},{0xaf5d,2}}, {{0xae7,1},{0xc34,2}}, + {{0xb8a,2},{0xb47,2}}, {{0x29f18,3},{0x279d1,2}}, {{0xf6fa,8},{0x25c2,3}}, {{0xc25,3},{0xb7d,1}}, + {{0xbd3,3},{0xae7,1}}, {{0x4c15,5},{0xb8f,2}}, {{0x178c,3},{0x2915e,2}}, {{0xbaa2,4},{0xc1e,2}}, + {{0x10ef,2},{0x20ae9,5}}, {{0x2af3,5},{0x10dc,2}}, {{0x2e7c,7},{0x353d,5}}, {{0x141e,3},{0x2195,3}}, + {{0x28626,3},{0x27d08,2}}, {{0xcb5,3},{0xdd3,3}}, {{0x1761,3},{0x18d8,3}}, {{0x278dc,1},{0x27a0d,2}}, + {{0x10ea,3},{0xec2,2}}, {{0xb85,2},{0x23ce,4}}, {{0x10fd,2},{0xc67,2}}, {{0x2c17,3},{0xe70,5}}, + {{0x10ef,1},{0x12a5,7}}, {{0x29f18,3},{0x278e1,2}}, {{0xbb5,1},{0x1b4b,3}}, {{0xb2f,1},{0x2bfc,3}}, + {{0x271e,3},{0x2045,3}}, {{0x5c76,4},{0xb7d,1}}, {{0xf212,6},{0xb78,2}}, {{0x286a,2},{0x198f5,5}}, + {{0x4fa3,7},{0xb2c,2}}, {{0xb87,3},{0x11ef,2}}, {{0x116e,1},{0x278bd,2}}, {{0x10fb,3},{0x19ec2,5}}, + {{0xaf1,1},{0x1b80,4}}, {{0x1d3bd,5},{0xb78,2}}, {{0x2d,1},{0x5277,2}}, {{0x27897,1},{0x278f3,2}}, + {{0xe011,7},{0xd0b,4}}, {{0x167c,5},{0xc34,3}}, {{0x51d7,4},{0x11ef,2}}, {{0xc4c6,8},{0x12be,3}}, + {{0xaf1,1},{0x583f,6}}, {{0x122c,4},{0x23d9,3}}, {{0x41da,3},{0x1a816,4}}, {{0x20d9,4},{0xc4d,2}}, + {{0x13cf2,5},{0xd0d,2}}, {{0x27db3,4},{0x6f6c,2}}, {{0xb64,2},{0x2a85,6}}, {{0xa9f8,6},{0xa9fe,4}}, + {{0xd41,3},{0x2d,1}}, {{0x1c,1},{0x24ba,3}}, {{0x1da0,5},{0x1150,2}}, {{0x2c3a4,4},{0x6f72,2}}, + {{0x27,1},{0x125b7,4}}, {{0x27895,3},{0x1173,2}}, {{0x1a0ec,6},{0x1434,3}}, {{0x1481e,8},{0xdf0,2}}, + {{0x6026,7},{0x1536,6}}, {{0x5ff2,10},{0xb65,2}}, {{0x16cc,4},{0x1972a,5}}, {{0x6e10,4},{0x34a2,4}}, + {{0x5b03,6},{0x1555,7}}, {{0xbbf,2},{0xc32,5}}, {{0x5288,5},{0x377c,5}}, {{0x6ac5,1},{0xbd6,2}}, + {{0x10ea,3},{0xb9d,3}}, {{0x4cff,6},{0x1aff,3}}, {{0xfd72,4},{0x8470,6}}, {{0xffe,8},{0xeb3,3}}, + {{0xb6c,3},{0x1b,1}}, {{0x2c76,4},{0xbd90,3}}, {{0xbe7,1},{0xf8e1,4}}, {{0xd41,4},{0x4f65,3}}, + {{0x1502c,6},{0xac92,4}}, {{0xe399,5},{0x2b,3}}, {{0xd687,8},{0x2b,3}}, {{0x1051,4},{0x13a44,6}}, + {{0xbe0,1},{0xbd7,2}}, {{0xaea,2},{0x107d,4}}, {{0x10b7,5},{0xa72b,7}}, {{0x67c0,3},{0xdfa,3}}, + {{0x10f1e,6},{0x1d,1}}, {{0xfa14,4},{0x3825,5}}, {{0x27b4,3},{0xb8a,2}}, {{0xe2bb,9},{0xd0d,2}}, + {{0x1a3db,3},{0x1013,3}}, {{0xbde,3},{0xfcfc,8}}, {{0x4350,2},{0x1a81d,2}}, {{0xf32,3},{0xc89,3}}, + {{0x10fb,3},{0x2098b,2}}, {{0x4415,2},{0x283e,2}}, {{0xfbfe,3},{0x5396,3}}, {{0xcf3,3},{0xaf1,1}}, + {{0x2769,7},{0x2a85,6}}, {{0x27d1e,4},{0x19,1}}, {{0xddc,4},{0xd2db,5}}, {{0xbde,3},{0x1927c,5}}, + {{0xcf3e,2},{0xae2,1}}, {{0x1adde,7},{0xbd8,2}}, {{0xbcb,3},{0x14b6,2}}, {{0x6d8e,3},{0x100b0,2}}, + {{0x12b52,5},{0x12d7,5}}, {{0xbe7,1},{0xbb1,3}}, {{0x271e,3},{0xaaed,2}}, {{0xa162,6},{0x2288,4}}, + {{0xddc,10},{0x2bca,4}}, {{0x27897,1},{0x27a2b,2}}, {{0x1f92b,4},{0xd0d,2}}, {{0x27895,3},{0x924,3}}, + {{0x4106,5},{0x28,1}}, {{0x10f1,2},{0x10f6,1}}, {{0xc67,3},{0x2683,5}}, {{0x20a8c,3},{0xc7b0,4}}, + {{0x2421,12},{0xb8f,3}}, {{0x6d81,3},{0xa7d1,2}}, {{0x30,128},{0x30,30}}, {{0x1cec,5},{0xb67,2}}, + {{0x27b95,4},{0x2798f,2}}, {{0x3686,8},{0x368e,6}}, {{0x112c,1},{0x251d8,2}}, {{0x27b95,4},{0x27a73,2}}, + {{0xc51,2},{0x28,1}}, {{0x38fc,9},{0x1c43,4}}, {{0x10ec,1},{0xbb5,1}}, {{0xc13,4},{0x18d6,11}}, + {{0x2214,10},{0x11b8,4}}, {{0x10ef,1},{0x42a3,3}}, {{0xb7f,3},{0x24ba,3}}, {{0xc2e,2},{0x67c0,3}}, + {{0xce2,3},{0x103b,5}}, {{0x27b95,4},{0x279fb,2}}, {{0x1b693,2},{0xd54,1}}, {{0x1058a,5},{0x15f83,4}}, + {{0x5483,4},{0xc6a8,4}}, {{0x6b04,5},{0x19d6,8}}, {{0x70dc,4},{0x96f,2}}, {{0x181c,4},{0xbeb,1}}, + {{0x187ff,7},{0x10dc,2}}, {{0x17fbc,5},{0x1f,2}}, {{0x27a5,7},{0x5d14,6}}, {{0x1c,1},{0x10e51,2}}, + {{0x27e2b,2},{0x2445f,1}}, {{0xcf44,6},{0x14a7,5}}, {{0x1aa6,3},{0xb55,2}}, {{0x177c,7},{0x1916,5}}, + {{0xb63,2},{0x2b,2}}, {{0x1045,3},{0x1a,1}}, {{0x3e58,4},{0xb55,3}}, {{0x2e54,4},{0xbb1,3}}, + {{0xaca2,3},{0x410c,4}}, {{0xcf6,3},{0x1f,2}}, {{0x20d9,6},{0x1c24,5}}, {{0x11a04,6},{0xcb8,2}}, + {{0xadd,7},{0x1498,4}}, {{0x19b3,5},{0xbd6,4}}, {{0x3234,3},{0x1089,3}}, {{0x27ce8,3},{0x251cb,1}}, + {{0xaaec,2},{0xbe7,1}}, {{0xfb74,8},{0xfb7c,5}}, {{0xcb5,3},{0x2b,2}}, {{0xcfd,5},{0x1b5c,3}}, + {{0x41f6,4},{0x25ee,4}}, {{0xf0e,5},{0x5642,8}}, {{0x27b6,1},{0xaf5d,2}}, {{0x1062,4},{0x1e56b,4}}, + {{0x92c2,7},{0x92c9,5}}, {{0x2789b,3},{0x279d7,2}}, {{0x20,2},{0xdacc,6}}, {{0x6742,10},{0x674c,3}}, + {{0x20139,5},{0x132f,3}}, {{0x9106,7},{0x24fd,5}}, {{0xb7d,1},{0x51f3,4}}, {{0xcc7,3},{0x43bd,4}}, + {{0xb03a,3},{0xae7,1}}, {{0xb52,2},{0x1277,5}}, {{0xceb,3},{0x21,1}}, {{0x10b7,4},{0xc52,2}}, + {{0xb48,2},{0x10e5c,4}}, {{0x423c,3},{0x108b,3}}, {{0x24a3f,4},{0x2446f,2}}, {{0xab9c,1},{0xc67,2}}, + {{0xbb5,1},{0xd1a,2}}, {{0x24e31,3},{0xb70,2}}, {{0x174c,11},{0x1757,5}}, {{0x2445c,3},{0x251cb,1}}, + {{0x612a,8},{0x2b,3}}, {{0x350c,9},{0xff7,5}}, {{0xd0d,2},{0xee2,3}}, {{0xd76,7},{0xb75,4}}, + {{0x2328,3},{0xee1a,4}}, {{0x178c,3},{0x1b137,3}}, {{0x278d6,1},{0x278db,2}}, {{0xaec,2},{0xcb8,2}}, + {{0xcd9,3},{0xb5e1,5}}, {{0xebab,8},{0x2b,1}}, {{0xaec,2},{0x1961,6}}, {{0x257c,2},{0xae5,1}}, + {{0x1499,2},{0xd1b,1}}, {{0xf275,5},{0xdf0,2}}, {{0xf79,3},{0x12d1,5}}, {{0x2016,6},{0x346a,8}}, + {{0xbe4,1},{0xf8d1,2}}, {{0x70a0,2},{0x6f66,2}}, {{0xe9a8,5},{0xb8d,3}}, {{0x25225,6},{0x1ed53,1}}, + {{0x78ca,4},{0xc93c,4}}, {{0x24711,4},{0x1b6f5,2}}, {{0xed6e,6},{0xb71,2}}, {{0x29ecd,3},{0x278ed,2}}, + {{0x62fe,10},{0x10dc,2}}, {{0xab9a,3},{0x28,2}}, {{0x2c76,7},{0x1a,2}}, {{0x415c,4},{0x986a,4}}, + {{0x1fa69,5},{0x1fa6e,3}}, {{0x10ca,1},{0x17ae,1}}, {{0x10c8,3},{0x1494d,7}}, {{0x193e1,5},{0x1016,4}}, + {{0x6b52,4},{0xd0b,3}}, {{0x40c2,2},{0x1aaed,1}}, {{0xd1b,1},{0xd1b,2}}, {{0x14ec4,6},{0x2af8,4}}, + {{0x16fa7,5},{0x2a,4}}, {{0xbe7,1},{0x2bfc,3}}, {{0x4884,3},{0xaea,2}}, {{0xb8a,2},{0xc63,3}}, + {{0xb6d1,6},{0xae7,1}}, {{0x1040,6},{0xce2,3}}, {{0x41dc,3},{0xbb4,4}}, {{0x278dc,1},{0x27aaf,2}}, + {{0xae7,1},{0xb8f,2}}, {{0xcd9,3},{0x1150,2}}, {{0x278dc,1},{0x27ac7,2}}, {{0x6ac3,3},{0x535b,4}}, + {{0x14fc,5},{0xbbf,2}}, {{0x2054b,6},{0x4351,2}}, {{0x12c6a,7},{0xdfb,3}}, {{0xb33e,5},{0xc8e,3}}, + {{0x10ef,1},{0xf5f6,2}}, {{0x178c,3},{0x48a4,3}}, {{0x16fc,4},{0xdd5,4}}, {{0xd76,4},{0xb52,2}}, + {{0x17bc,4},{0x1480,12}}, {{0xaaea,2},{0x2506f,2}}, {{0x2693,3},{0x21,1}}, {{0x1f629,6},{0xc67,2}}, + {{0xa7d,4},{0x244ed,2}}, {{0x1cee,3},{0x2b,3}}, {{0x26f1,4},{0x11e4,4}}, {{0x29ecd,3},{0x27917,2}}, + {{0x102b2,3},{0xc8d4,4}}, {{0x4290,4},{0xdb50,7}}, {{0xf282,4},{0x47ad,5}}, {{0x11ef,2},{0xe6d,3}}, + {{0xfd5c,5},{0x29da,3}}, {{0x116e,1},{0x279c5,2}}, {{0xf96,4},{0x48eb,4}}, {{0x1a038,5},{0x1a03d,4}}, + {{0x20bb,3},{0x1318b,4}}, {{0x28db,3},{0x24dc8,3}}, {{0x21d8,10},{0x2b,3}}, {{0x2151,5},{0x253a,4}}, + {{0x1bb85,5},{0xb64,2}}, {{0x12512,7},{0x103a,3}}, {{0x2ce18,2},{0x1cf1d,2}}, {{0xa7da,3},{0xae2,1}}, + {{0xdf0,2},{0xbb4,4}}, {{0xc17,5},{0x63d5,6}}, {{0xceb,3},{0xade9,6}}, {{0x2ca0,9},{0x10dc,2}}, + {{0x6d8e,3},{0x273e2,3}}, {{0x8c4,4},{0x30,40}}, {{0x114e,2},{0xa24a,3}}, {{0xdf4,3},{0xcc9,3}}, + {{0x3218,5},{0x321d,9}}, {{0x10150,3},{0xa7a3,7}}, {{0x27897,1},{0x27aaf,2}}, {{0x12fe,2},{0x51f3,4}}, + {{0x284a,4},{0xa26e,4}}, {{0x27b95,4},{0x2799b,2}}, {{0xf3e0,5},{0x14841,5}}, {{0x10ec,1},{0x5eb6,4}}, + {{0x253fb,3},{0x2445e,1}}, {{0x29ecd,3},{0x27af1,2}}, {{0x251cb,3},{0x24460,3}}, {{0x4620,4},{0x16f8,3}}, + {{0xb6c,3},{0x11d59,7}}, {{0x6c97,5},{0x62ed,4}}, {{0x540e,5},{0xcd86,6}}, {{0xfc6a,5},{0x154a5,5}}, + {{0xfd67,6},{0xb2c,2}}, {{0xf330,5},{0xf335,6}}, {{0x9316,7},{0x2b75,5}}, {{0x1ed58,1},{0x1b6cb,1}}, + {{0x29f18,3},{0x1b6b3,2}}, {{0xd511,8},{0x2b,3}}, {{0xa98a,7},{0xc8a,2}}, {{0x7ac2,9},{0x2b,3}}, + {{0x2182,5},{0x2187,6}}, {{0x1a778,5},{0x101b2,4}}, {{0xd54,1},{0xbd4,2}}, {{0x423c,3},{0x270be,3}}, + {{0x94f6,7},{0x1717,5}}, {{0x10c30,7},{0x10dc,2}}, {{0x17280,7},{0xcb8,2}}, {{0xc37,3},{0x67af,2}}, + {{0x10fb,3},{0xb64,3}}, {{0x12fe,2},{0x5cd1,8}}, {{0x16e2,2},{0x24b9b,4}}, {{0xcb5,3},{0xc77,2}}, + {{0x1a,1},{0xb52,2}}, {{0xd866,5},{0xee0,3}}, {{0x12aa0,4},{0xbd4,2}}, {{0x1eb69,5},{0x1dac,3}}, + {{0x29f18,3},{0x27917,2}}, {{0x133c,9},{0xb54,4}}, {{0x24705,6},{0x24705,6}}, {{0x2151,5},{0x13852,4}}, + {{0x15036,4},{0x1503a,6}}, {{0x1adf2,3},{0x13c7f,5}}, {{0xb9a5,5},{0x1a,2}}, {{0x414e,5},{0x272f,3}}, + {{0x10828,8},{0xb64,2}}, {{0x162f2,5},{0x2693,4}}, {{0x6b04,5},{0x1d,1}}, {{0xe0d7,8},{0x90f7,3}}, + {{0x8c4,68},{0x30,26}}, {{0x17ae,5},{0xc8e,3}}, {{0x8bea,8},{0x38eb,3}}, {{0xc25,4},{0x43ce,6}}, + {{0xaefa,4},{0x40b6,3}}, {{0x3234,4},{0x16ee,2}}, {{0xea4b,8},{0x103a,3}}, {{0xc25,5},{0x7048,4}}, + {{0xc3a,3},{0xb67,2}}, {{0x26f1,4},{0x715a,3}}, {{0x8c4,68},{0x30,18}}, {{0xfdf,2},{0xdf0,2}}, + {{0x6c08,4},{0x2b3e,4}}, {{0x14dc,4},{0x6008,4}}, {{0xb7d,1},{0x3787,4}}, {{0x3996,5},{0x1434,6}}, + {{0x2801,4},{0x3c20,3}}, {{0x432,1},{0x27cea,1}}, {{0x1b6e9,12},{0x6f96,2}}, {{0x2732,4},{0xce8,3}}, + {{0xacba,5},{0x345e,5}}, {{0x1471a,7},{0x2745,3}}, {{0xa7da,3},{0xd0b,3}}, {{0xacbc,3},{0xe4c,7}}, + {{0x264c,4},{0x13e3,4}}, {{0xdba4,5},{0xb2c,2}}, {{0x9813,5},{0x2b,3}}, {{0xbc5,3},{0x1a,2}}, + {{0x11824,7},{0x1fc4,3}}, {{0x2445f,1},{0x2ae93,2}}, {{0xb6c,3},{0x1afb7,4}}, {{0x123c,9},{0xd1a,7}}, + {{0x10fb,3},{0x19c9,3}}, {{0xd65,3},{0xc5ff,4}}, {{0xb12e,3},{0x6dd7,3}}, {{0x22f5,6},{0xc1c,2}}, + {{0x278d6,1},{0x27ad3,2}}, {{0x1a730,5},{0x1a,1}}, {{0x3162,5},{0xb47,2}}, {{0xa9b0,7},{0x2b,3}}, + {{0xadd,3},{0xf905,4}}, {{0x17336,6},{0x1489,3}}, {{0x238e5,5},{0x12143,2}}, {{0x1f,1},{0xd57,2}}, + {{0x1084,3},{0xbb5,1}}, {{0x10ea,3},{0xaee7,2}}, {{0x5e73,5},{0x14c0a,2}}, {{0x89da,7},{0x1c25,4}}, + {{0x2c500,4},{0x15798,2}}, {{0x1ad0,11},{0x1278,4}}, {{0xbe7,1},{0xb78,2}}, {{0xaca2,3},{0x2720,2}}, + {{0x20221,5},{0x2db1,3}}, {{0x293c,8},{0x2944,6}}, {{0xb12e,3},{0xc4d,2}}, {{0x430,3},{0x1ed58,1}}, + {{0x10d48,4},{0x37f7,3}}, {{0x70ea,3},{0xb78,2}}, {{0x1099,3},{0xaea,3}}, {{0xb8a,2},{0x3cba,3}}, + {{0x124e,3},{0xb8b,2}}, {{0xbd4c,5},{0xb55,2}}, {{0x270fd,4},{0xbe4,1}}, {{0x14dc0,6},{0xaf2,1}}, + {{0x14b6,2},{0x16e2,2}}, {{0x177c,7},{0x1960,7}}, {{0x1ae32,2},{0x4417,2}}, {{0x1a76,4},{0xc55,2}}, + {{0x30,2},{0x532,20}}, {{0x10c8,3},{0xadf,2}}, {{0x17fc,5},{0x2408,10}}, {{0x2c90e,4},{0xfeee,2}}, + {{0x150a4,5},{0x13a6,4}}, {{0x41da,5},{0xaad3,7}}, {{0xf417,5},{0x6430,6}}, {{0x19c26,2},{0x33d3,5}}, + {{0x1f15b,2},{0xc55,2}}, {{0x531d,4},{0x2be6,4}}, {{0x6f23,2},{0x84eb,3}}, {{0x10ef,1},{0x4606,3}}, + {{0x159c,4},{0xb8b,2}}, {{0x74da,7},{0x1a35,5}}, {{0x1a94c,6},{0xc63,3}}, {{0x6ac3,3},{0xdac,2}}, + {{0x423c,3},{0xd5c,1}}, {{0x10ec,1},{0xae4,2}}, {{0x5aaa,4},{0x5aae,4}}, {{0xbde,3},{0x2b,3}}, + {{0xab9a,3},{0xde9,1}}, {{0x10d98,5},{0xde9,1}}, {{0x29dd,5},{0x701b,7}}, {{0x244ad,2},{0x1b6f5,2}}, + {{0x82ba,6},{0x82c0,6}}, {{0x14ff0,4},{0xbb4,2}}, {{0x14a8,4},{0xb78,2}}, {{0x271e,3},{0x428b,2}}, + {{0x5c48,8},{0x11b8,4}}, {{0x14918,6},{0x1491e,4}}, {{0x10ca,1},{0x4459,3}}, {{0x6c15,6},{0xcd2,7}}, + {{0x1509a,4},{0x1d8e,3}}, {{0x15b4a,4},{0x70d4,4}}, {{0x85de,5},{0x2ddc,6}}, {{0x278dc,1},{0x924,3}}, + {{0x1b5f3,4},{0x1b607,4}}, {{0x1b5db,4},{0x28da,4}}, {{0x1f,1},{0x16f8,3}}, {{0xd0c,2},{0x1d,1}}, + {{0x1095,6},{0xae6,3}}, {{0xab9c,1},{0x1cb4,4}}, {{0x10ca,1},{0xb52,2}}, {{0x2c566,4},{0x1dec4,2}}, + {{0xc25,4},{0x9873,6}}, {{0xb49e,5},{0x2bfc,2}}, {{0x6dc2,5},{0x1354,8}}, {{0x151c,4},{0x5ef2,3}}, + {{0xb8a,2},{0xcf60,5}}, {{0x3242,7},{0xc32,5}}, {{0xc99,3},{0x60fc,7}}, {{0x1b5f3,4},{0x1b5ff,4}}, + {{0x52bc,10},{0x52c6,3}}, {{0xaca2,3},{0x1361,2}}, {{0x128e6,7},{0x2b,3}}, {{0xcc7,3},{0x21be,4}}, + {{0x3c98,9},{0x2b03,5}}, {{0xc63e,7},{0x2b,3}}, {{0x1424,4},{0x1156,6}}, {{0xad4c,4},{0x28d4,6}}, + {{0x1a457,6},{0xae6,3}}, {{0x1f409,5},{0x1f40e,3}}, {{0x152c4,2},{0x1ae3e,3}}, {{0x179c9,5},{0x179ce,4}}, + {{0xc55,2},{0xaf1,2}}, {{0x24440,4},{0x24444,3}}, {{0xfd25,6},{0xf25a,5}}, {{0x1a62b,6},{0xc77,3}}, + {{0x122c,4},{0x1c339,4}}, {{0x6c0a,2},{0x1675,2}}, {{0x177c,3},{0x10f4,2}}, {{0x87ee,6},{0x1dd8,4}}, + {{0x178c,3},{0x1a32,2}}, {{0x28da,1},{0x2098,3}}, {{0xfc9,6},{0x460d,4}}, {{0x15e0d,6},{0x1372,3}}, + {{0x176e7,6},{0x1254,3}}, {{0x10ec,1},{0xbc5,3}}, {{0xbde,3},{0xa27c,5}}, {{0x10d9,5},{0xae7,1}}, + {{0xc6d,5},{0x1ba5,3}}, {{0x6d81,3},{0x2984b,2}}, {{0x3cb4,9},{0xc32,5}}, {{0x2a91e,4},{0x1ed53,1}}, + {{0x6f2e,6},{0x6f34,7}}, {{0x7c4,16},{0x7c4,10}}, {{0x25205,3},{0x2445e,1}}, {{0x2442b,5},{0x24430,2}}, + {{0x177c,3},{0xc77,2}}, {{0x381c,7},{0x3823,7}}, {{0x51b8,7},{0xb52,5}}, {{0x244a1,2},{0x5c78,2}}, + {{0x2b,1},{0xb4b,2}}, {{0x29751,4},{0x10ef,1}}, {{0xd41,4},{0x392d,3}}, {{0xb7f,3},{0x5af9,3}}, + {{0x10ea,3},{0x15b3f,2}}, {{0x1af22,5},{0x4039,4}}, {{0xc17,3},{0x1abb,6}}, {{0xbe4,1},{0x1e,1}}, + {{0x10ea,3},{0xbb5,1}}, {{0xf30,5},{0x139e,4}}, {{0xaea,3},{0x1694,2}}, {{0xc04e,6},{0x3921,5}}, + {{0x10f2,1},{0x6ac5,1}}, {{0xbeb,1},{0x114f,3}}, {{0x36cc,6},{0x36d2,8}}, {{0x15068,7},{0x35fd,3}}, + {{0x26b5,4},{0xaf2,1}}, {{0x19b70,5},{0x1c,1}}, {{0x3624,6},{0x2746,3}}, {{0x4106,5},{0xb2f,1}}, + {{0x6a34,8},{0x10dc,2}}, {{0x278d6,1},{0x27aeb,2}}, {{0x1459e,3},{0xb8a,2}}, {{0xa22e,4},{0x1015,5}}, + {{0xaa98,2},{0x10f1,2}}, {{0x6b54,2},{0xbd1,2}}, {{0x116e,1},{0x279fb,2}}, {{0xbeb,1},{0x145a0,1}}, + {{0x1ed53,1},{0x948,1}}, {{0x177c,3},{0x16182,6}}, {{0x17ac,3},{0x10f3,1}}, {{0xa98a,7},{0xf10,3}}, + {{0xaa04,3},{0x1525,7}}, {{0x26c4,4},{0xbb4,4}}, {{0x12ae,3},{0x21d2,5}}, {{0x2a9d0,2},{0x28633,2}}, + {{0x162c,8},{0x1408,3}}, {{0xaab6,6},{0xe70,4}}, {{0x245e5,6},{0x157ee,6}}, {{0x1fa63,3},{0x12ff,2}}, + {{0xd54,1},{0x1878,1}}, {{0xae2,1},{0x1377,5}}, {{0xb6b9,5},{0x10dc,2}}, {{0x2cc4a,4},{0xa51,2}}, + {{0xebcc,5},{0x7fda,4}}, {{0x41da,3},{0x14d5,3}}, {{0x290e,4},{0x1142e,4}}, {{0xe2f2,4},{0xb8f,2}}, + {{0x177c,3},{0x1100b,3}}, {{0xd0f,4},{0x84ea,4}}, {{0x5eba,5},{0x5873,6}}, {{0x1e107,4},{0x1b,1}}, + {{0x4222,3},{0x4bcf,4}}, {{0x29f18,3},{0x278ed,2}}, {{0x2674b,4},{0x209b9,2}}, {{0x14ee4,2},{0x28,1}}, + {{0x1e45,3},{0xf10,3}}, {{0x26f1,4},{0xf14,2}}, {{0x4292,3},{0x940b,6}}, {{0xd78f,5},{0xc89,3}}, + {{0xddc,4},{0x4e98,3}}, {{0x1393,5},{0x1081,3}}, {{0xf25f,5},{0x2a,4}}, {{0x26b5,4},{0x1bc3,3}}, + {{0xb73,2},{0x1a,2}}, {{0x15806,12},{0x15806,6}}, {{0x181c,3},{0x5f90,3}}, {{0x281d,5},{0xb55,2}}, + {{0x2c76,5},{0x10ea1,5}}, {{0x142e,1},{0x4e98,3}}, {{0xedb,4},{0xae2,1}}, {{0x2867e,2},{0x18,1}}, + {{0x27871,4},{0x2098b,2}}, {{0x19e2,5},{0xb2c,4}}, {{0x708e,2},{0x108b,10}}, {{0xc2e,2},{0x6ab8,3}}, + {{0x1015a,6},{0x70a8,8}}, {{0x1a96,4},{0x12b1,4}}, {{0xcfd,4},{0xfa46,4}}, {{0xebd7,8},{0x10dc,2}}, + {{0xcb5,3},{0x142e,1}}, {{0x16dc,4},{0x1df3,7}}, {{0x1e,1},{0x1719,3}}, {{0x6f62,4},{0x159cd,2}}, + {{0x53f4,5},{0xbbf,2}}, {{0x6c08,4},{0xb52,2}}, {{0x22e8,3},{0x87b5,4}}, {{0x41be,3},{0x21945,4}}, + {{0x27895,3},{0x27983,2}}, {{0x3e12,5},{0xaea,2}}, {{0x1a,1},{0x26f01,4}}, {{0xb7c,2},{0xb9d,3}}, + {{0x1b695,2},{0x20a2c,5}}, {{0x19b3,7},{0x19ba,8}}, {{0x17bc,3},{0x29082,2}}, {{0x5b1d,5},{0xeb3,3}}, + {{0x4189,3},{0xb47,2}}, {{0xf2ee,5},{0x1a9d,3}}, {{0xaf42,6},{0x1af94,3}}, {{0xae2,1},{0xca7,2}}, + {{0x70a0,2},{0x6f96,2}}, {{0x27b4,3},{0x16482,5}}, {{0xa17a,8},{0x23ce,4}}, {{0x5eee,7},{0x5ef5,6}}, + {{0x15a1,3},{0x1d,1}}, {{0x29e8c,3},{0x1b6ab,2}}, {{0x2789b,3},{0x279c5,2}}, {{0x1b12c,4},{0xd54,1}}, + {{0xaea,2},{0xa0ca,7}}, {{0xde9,1},{0xce2,3}}, {{0xaf2,1},{0xb6e,2}}, {{0x2469f,6},{0x246ab,6}}, + {{0x364e,6},{0x16a4,4}}, {{0x1f,2},{0x2851,8}}, {{0xbe4,1},{0xcb8,2}}, {{0x1ab2,4},{0x8afc,2}}, + {{0xccd,3},{0x13c43,4}}, {{0x10fb,5},{0xbbf,2}}, {{0x12d3,6},{0x25ee,4}}, {{0x1f3e9,4},{0x1f3ed,4}}, + {{0x116e,1},{0x27a79,2}}, {{0x40b6,3},{0xba7,3}}, {{0x741a,7},{0xc34,3}}, {{0xfa14,5},{0x7585,5}}, + {{0x1a1a2,3},{0x5f01,4}}, {{0x29ecd,3},{0x27923,2}}, {{0x1f161,4},{0xb8a,2}}, {{0xdf3,3},{0x680d,5}}, + {{0x41da,3},{0xb8d,3}}, {{0x4362,4},{0x4bcf,4}}, {{0x92aa,9},{0x1b09,3}}, {{0x2796,3},{0xb4a,2}}, + {{0x154e6,8},{0x2b,2}}, {{0x271e,3},{0xb066,2}}, {{0x30,2},{0x2b86c,4}}, {{0xde9,1},{0x1e,1}}, + {{0xae8,2},{0xbbf,2}}, {{0x4196,4},{0x1916,5}}, {{0xfb1,2},{0x392d,3}}, {{0x41da,3},{0xa7d3,2}}, + {{0x423e,1},{0x1a,2}}, {{0x166c,4},{0x1306c,4}}, {{0x2c590,4},{0x806,2}}, {{0xf870,5},{0x7029,5}}, + {{0x2aeb2,2},{0x2446f,2}}, {{0x28da,1},{0x24430,2}}, {{0xd54,1},{0xb66,2}}, {{0x256b,4},{0x192c5,5}}, + {{0x1257,2},{0xb60,2}}, {{0x82ba,6},{0x2939,3}}, {{0x6c08,4},{0x1675,2}}, {{0x145da,8},{0xb55,2}}, + {{0xc25,3},{0x5d97,5}}, {{0xc1c,2},{0x1275,7}}, {{0x23f7e,6},{0xae7,1}}, {{0x278dc,1},{0x27aa9,2}}, + {{0xbb5,2},{0x151f,3}}, {{0x1b,1},{0xb54,2}}, {{0x27,1},{0x166a6,5}}, {{0x12c92,7},{0x1408,3}}, + {{0x5ead,9},{0x5eb6,4}}, {{0x261f,4},{0x19838,5}}, {{0x16cc,4},{0x257c,2}}, {{0x6137,5},{0x7f9c,6}}, + {{0x40f8,5},{0x14805,5}}, {{0x1fe19,6},{0xaec,2}}, {{0x17ae,2},{0x25da,3}}, {{0x5d41,9},{0xbb4,4}}, + {{0x1b82b,6},{0x1b1ef,8}}, {{0x11cde,9},{0xae7,1}}, {{0x381c,7},{0x5e80,6}}, {{0x136c,6},{0x4fd0,7}}, + {{0x5428,8},{0x25c0,5}}, {{0xa246,7},{0xc63,3}}, {{0xf3d5,5},{0x3a6b,4}}, {{0x1b,1},{0x1372,3}}, + {{0x10d98,7},{0xaf2,1}}, {{0xee4,3},{0xae8,2}}, {{0xbe7,1},{0x18e6,10}}, {{0x1d46,5},{0x1d22,6}}, + {{0xf86c,4},{0xae7,1}}, {{0xad9e,7},{0x10b3,4}}, {{0xaca2,3},{0x102f9,3}}, {{0xaa98,2},{0x10ef,1}}, + {{0xfda0,3},{0x75cd,4}}, {{0x6067,7},{0x9911,5}}, {{0x10bfe,8},{0xd0d,2}}, {{0x897a,6},{0x8980,6}}, + {{0xb2f,1},{0x1d550,5}}, {{0x1abd0,2},{0x1aaed,1}}, {{0x1f971,5},{0x4d1d,3}}, {{0xe64,5},{0x8e3a,3}}, + {{0x4701,5},{0xcd2,7}}, {{0x147c,5},{0x763c,3}}, {{0xeec,5},{0x25fa,7}}, {{0x4284,2},{0x1878,1}}, + {{0x422e,3},{0x1ae4e,2}}, {{0x139c,6},{0x5a94,3}}, {{0x10f0,1},{0x21afd,4}}, {{0x41be,3},{0x285d1,2}}, + {{0xd1a,2},{0x1b3c7,10}}, {{0x29f18,3},{0x2790b,2}}, {{0x3db0,6},{0xc55,2}}, {{0x145a0,1},{0x1878,1}}, + {{0x422e,3},{0xb2e,2}}, {{0xf0e,5},{0x12431,5}}, {{0xa1c7,3},{0x1b,1}}, {{0xdc07,9},{0xb65,2}}, + {{0x2d,1},{0x3643,5}}, {{0xf8f4,6},{0x56b9,3}}, {{0x177c,3},{0xbb5,1}}, {{0x1ffd9,5},{0x1704,3}}, + {{0x2445f,1},{0x159c9,6}}, {{0x199ff,6},{0x16f8,3}}, {{0xfdf,2},{0xb52,2}}, {{0x1bf6,4},{0xb76,4}}, + {{0x2c3e6,4},{0x6fae,2}}, {{0xbed,2},{0xcb8,2}}, {{0x29f18,3},{0x27acd,2}}, {{0x2c980,4},{0x1b887,2}}, + {{0x27c3,8},{0x1555,7}}, {{0x44b8,5},{0xa48c,6}}, {{0xc29,2},{0x889f,3}}, {{0x10870,6},{0x139e,4}}, + {{0x244f5,2},{0x6f72,2}}, {{0x6d8e,3},{0xf27c,3}}, {{0x178c,3},{0x2a92,5}}, {{0xa7dc,2},{0x5396,3}}, + {{0x1e,1},{0xc593,4}}, {{0x27d24,3},{0x2a9a8,2}}, {{0xfc9,6},{0x1d22,6}}, {{0x432,48},{0x432,6}}, + {{0x10ea,3},{0xcc0e,3}}, {{0x29f18,3},{0x278d5,2}}, {{0x156c6,5},{0xc34,3}}, {{0x10ca,1},{0xbb5,1}}, + {{0x6ac3,3},{0x1b,1}}, {{0x422e,3},{0x1675,2}}, {{0x2539d,6},{0x253a3,4}}, {{0x243f,12},{0x10dc,2}}, + {{0x1084,4},{0xeaff,7}}, {{0x1b6db,4},{0x1cf1d,2}}, {{0xb74,2},{0x2d,1}}, {{0x177c,3},{0xf58,2}}, + {{0x20,2},{0xda32,6}}, {{0xb8e,2},{0x1a,1}}, {{0x23007,2},{0x23007,2}}, {{0x595e,3},{0xc63,3}}, + {{0x1a,2},{0xc5ff,4}}, {{0x10c8,3},{0x1a044,6}}, {{0x278d6,1},{0x27b0f,2}}, {{0x780,2},{0x432,64}}, + {{0x10b9,3},{0xd57,2}}, {{0xaea,1},{0x5af9,3}}, {{0xac8a,4},{0x21,1}}, {{0xe42,5},{0x69f7,3}}, + {{0x18268,5},{0xb70,3}}, {{0x10fb,3},{0xdc0,3}}, {{0xae6,2},{0xcc0,4}}, {{0x29f18,3},{0x116c,2}}, + {{0x177c,3},{0x16ae,2}}, {{0xb64,2},{0x81f3,4}}, {{0x92e6,5},{0xb55,2}}, {{0x7c2,3},{0x2a948,1}}, + {{0x1e,2},{0xf6a,3}}, {{0x5288,5},{0xdf0,2}}, {{0x15788,12},{0x15794,6}}, {{0x10f3,1},{0x2dcb,4}}, + {{0x6ac5,1},{0x2b392,3}}, {{0xc3e,2},{0xb511,6}}, {{0xbe0,1},{0xbd7,3}}, {{0x10e3,3},{0x16fd9,4}}, + {{0xcfd,4},{0x1c43,4}}, {{0x30,2},{0x2b5b9,2}}, {{0x6d8e,3},{0xa7dd,3}}, {{0x6f23,2},{0xfe5,2}}, + {{0xacd4,4},{0xbd4,2}}, {{0x2c5fc,4},{0x1cf1d,2}}, {{0xde9,1},{0xc30,2}}, {{0xfee4,12},{0x70a0,4}}, + {{0x6d8e,3},{0x10f0,1}}, {{0x41be,3},{0x3788,3}}, {{0x50e8,7},{0x84f5,5}}, {{0xbcc3,4},{0x385d,5}}, + {{0x87b2,7},{0xe70,4}}, {{0xc37,3},{0x4818,7}}, {{0x10f7,1},{0xdac,2}}, {{0x69b2,8},{0x69ba,5}}, + {{0x271e,3},{0x2098,3}}, {{0x2789b,3},{0x27989,2}}, {{0x2b767,2},{0x27d08,2}}, {{0x2a90,2},{0xc67,2}}, + {{0xbe7,1},{0x10fa,1}}, {{0xaea,1},{0xb54,3}}, {{0x8692,7},{0xcb6d,4}}, {{0x6ac3,3},{0xc9e,3}}, + {{0x2cc4a,4},{0xff22,2}}, {{0x1f26,14},{0xae7,1}}, {{0xeb3,3},{0xb8f,2}}, {{0x18e38,6},{0xae7,1}}, + {{0x1055,3},{0xb2c,2}}, {{0x6d8e,3},{0xf8d1,2}}, {{0x43e3,5},{0xe858,4}}, {{0xb3ac,5},{0xb3bc,6}}, + {{0x3774,7},{0x377b,7}}, {{0x19ba,3},{0x1cc21,4}}, {{0xf6ad,6},{0x8470,5}}, {{0x1f951,6},{0xa7d1,2}}, + {{0x16ac,5},{0x666c,6}}, {{0x1fae9,5},{0xd7a,3}}, {{0xaca2,3},{0xf5f4,2}}, {{0x698b,8},{0x2b,3}}, + {{0xeff,6},{0xf05,7}}, {{0x3a30,7},{0xbd6,2}}, {{0xd5c,1},{0xf258,7}}, {{0x6ac3,3},{0x3656,4}}, + {{0xc9e,3},{0x1241,3}}, {{0x6cbe,4},{0xf63c,2}}, {{0x2c3d4,4},{0x24515,2}}, {{0x6d8e,3},{0x1a816,2}}, + {{0x290c,2},{0x750e,7}}, {{0xceaa,6},{0xdf9,5}}, {{0x1a,1},{0x13131,7}}, {{0x1084,3},{0xae7,1}}, + {{0x12fe,2},{0xc1c,2}}, {{0xbc5,3},{0xb65,2}}, {{0xc13,4},{0xb3f2,7}}, {{0x41be,3},{0xf28,3}}, + {{0x1748c,6},{0x101b,3}}, {{0x278d6,1},{0x27a0d,2}}, {{0xa7d,4},{0xff02,2}}, {{0x3a39,3},{0xb55,3}}, + {{0xcfff,8},{0xc8e,3}}, {{0x1760f,5},{0x2a,4}}, {{0x15092,4},{0x5aae,4}}, {{0x41b0,5},{0x2b,2}}, + {{0x20bc9,5},{0xbb5,1}}, {{0xaea,1},{0xf14,2}}, {{0x271e,3},{0x4e98,3}}, {{0xab9a,3},{0xbe4,1}}, + {{0x2045,3},{0xc89,2}}, {{0x422e,3},{0x7ac9,4}}, {{0x6b5f,4},{0xaf2,1}}, {{0xb68,3},{0x103a,3}}, + {{0x100f,3},{0x27,1}}, {{0x397a,5},{0xc77,2}}, {{0x14e1a,5},{0x2bfd,2}}, {{0x194a,11},{0xc57,3}}, + {{0x27e35,2},{0x24f8a,3}}, {{0x15a0,6},{0xb52,5}}, {{0x8716,4},{0x876e,2}}, {{0x26f1,4},{0xb63,4}}, + {{0x116e,1},{0x2797d,2}}, {{0x10f0,1},{0x1b4f,3}}, {{0xc58,3},{0x46e1,5}}, {{0x1ab20,5},{0x1503a,4}}, + {{0x10fd,2},{0x28,1}}, {{0x24549,6},{0x24573,6}}, {{0x20f56,5},{0xaf2,1}}, {{0xde9,1},{0xeb3,3}}, + {{0x780,1},{0x251df,1}}, {{0x2aa8,6},{0xae6,2}}, {{0x70dc,4},{0x2ae5b,2}}, {{0xeb2,1},{0x1150,2}}, + {{0x2c44c,4},{0x1b887,2}}, {{0x20595,2},{0x20597,5}}, {{0x6ac3,3},{0x700f,3}}, {{0x14dc,4},{0xb4b,2}}, + {{0xde9,3},{0x1e,1}}, {{0x25210,6},{0x27d99,2}}, {{0x25249,6},{0x2523b,4}}, {{0x1a4a8,8},{0xbeb,1}}, + {{0x947e,6},{0x95c7,5}}, {{0x116e,1},{0x27a91,2}}, {{0xb44,3},{0x24c74,2}}, {{0x438c,5},{0x1434,6}}, + {{0xa396,8},{0xc7b,4}}, {{0x10fb,3},{0x21,1}}, {{0x30,128},{0x30,28}}, {{0x10188,4},{0x70b2,4}}, + {{0x1e,1},{0x3c20,3}}, {{0x6221,5},{0x9c03,7}}, {{0x1432,2},{0xb2f,1}}, {{0x2c8de,4},{0x1b205,2}}, + {{0x177c,4},{0x2b,2}}, {{0xee81,7},{0x1c25,4}}, {{0xfd9e,5},{0xec6b,6}}, {{0xb236,8},{0x2b,3}}, + {{0x5d79,3},{0xfde,2}}, {{0xab9c,1},{0x21dff,4}}, {{0x10ea,3},{0x57e2,8}}, {{0xe42,5},{0x7fda,4}}, + {{0x1efc1,5},{0xd7a,3}}, {{0x16ec,4},{0xfdf,6}}, {{0x619a,3},{0x74ba,3}}, {{0xb7f,3},{0x6dd7,3}}, + {{0xbb5,1},{0x40b6,4}}, {{0x244b3,2},{0x1a328,2}}, {{0xfd25,4},{0xae5,1}}, {{0x2742,3},{0x1d,1}}, + {{0xab9a,3},{0xab9d,9}}, {{0xb24c,8},{0x2211,3}}, {{0x6e03,5},{0x1140,3}}, {{0xebf,3},{0x5203,3}}, + {{0x27b4,3},{0xbc4,4}}, {{0x17bc,4},{0x21be,4}}, {{0xaf5a,6},{0xaf60,6}}, {{0x1a1fa,6},{0x1a200,3}}, + {{0x6d81,3},{0x20adf,2}}, {{0x278d6,1},{0x27995,2}}, {{0x10c8,4},{0x2d68,5}}, {{0x719e,5},{0xf05,7}}, + {{0x43e3,1},{0xb8f,3}}, {{0xbe8,3},{0x28,1}}, {{0x27897,1},{0x279ef,2}}, {{0xceb,3},{0x6f4b,2}}, + {{0x8b66,5},{0x1498,4}}, {{0x1a52f,6},{0x1489,3}}, {{0xd54,1},{0x179cf,2}}, {{0x6ac3,4},{0x2bfc,2}}, + {{0xb54,3},{0x2195,3}}, {{0xfccd,5},{0xc1c,2}}, {{0x23dda,4},{0xae7,1}}, {{0xbcb,3},{0x1190,2}}, + {{0xc5f,3},{0xee7,3}}, {{0xac66,9},{0x3a3b,3}}, {{0xc5ff,4},{0xb7d,1}}, {{0x1b8e7,4},{0x2ac5b,4}}, + {{0xaf63,2},{0x10f8,2}}, {{0x1b6ab,1},{0x27b03,2}}, {{0xeb2,1},{0xb70,2}}, {{0x16bc,4},{0x1621,4}}, + {{0xa4c2,7},{0xa4c9,5}}, {{0x19e64,6},{0x1036,3}}, {{0x10f2,1},{0x11c9b,7}}, {{0x10ea,3},{0x53a9,10}}, + {{0x1c9c5,5},{0x4031,3}}, {{0xd65,3},{0xb76,4}}, {{0x21,1},{0xb55,2}}, {{0x55d7,6},{0xb2e,2}}, + {{0x15b52,2},{0x6f8a,2}}, {{0x1015a,6},{0x1b7b3,8}}, {{0x2ce8,7},{0xdf9,5}}, {{0x26c4,4},{0x72da,4}}, + {{0x3234,3},{0xc829,4}}, {{0x14cc,4},{0xb56,2}}, {{0xaca2,3},{0x1fc74,5}}, {{0x27b95,4},{0x279ad,2}}, + {{0x6dc2,5},{0x700f,3}}, {{0x1a2de,4},{0xb63,2}}, {{0xcc9a,7},{0x16f8,3}}, {{0x10f7,1},{0xb2c,2}}, + {{0x6d81,3},{0x159f,4}}, {{0x27b4,3},{0x166a6,5}}, {{0x5949,4},{0xbcf0,4}}, {{0xb44,3},{0xa4c9,3}}, + {{0x261f,4},{0x11b6,5}}, {{0xdba,4},{0x5306,4}}, {{0x20e8,4},{0x18d8,3}}, {{0xae4,2},{0x1d,1}}, + {{0x16706,6},{0xae7,1}}, {{0x1ae6e,6},{0x1499,2}}, {{0x23f00,4},{0x1a28c,3}}, {{0x151c,6},{0xfbcc,4}}, + {{0x142c,3},{0xb82,2}}, {{0x1c68,3},{0x35fd,3}}, {{0xb889,6},{0x583f,3}}, {{0x1042,4},{0xc45f,4}}, + {{0x12864,5},{0xb205,5}}, {{0x6d8e,3},{0xf38f,3}}, {{0x17ec,6},{0xaea,1}}, {{0xd41,3},{0xae6,2}}, + {{0xcfd,4},{0xaf2,1}}, {{0x1a9dc,5},{0x1362,3}}, {{0xee8,3},{0x28,1}}, {{0xd973,7},{0x3bc2,4}}, + {{0x41da,3},{0x28fc4,2}}, {{0x6cbe,4},{0xde2,3}}, {{0x2474d,4},{0x159cb,2}}, {{0x23787,5},{0x1a,1}}, + {{0x113f,2},{0x6604,6}}, {{0x506c,5},{0xb2c,2}}, {{0x298a,2},{0x1d,1}}, {{0x1035,4},{0x284e,3}}, + {{0xbe0,1},{0xf14,2}}, {{0x1ac6d,6},{0xc34,3}}, {{0x17ac,3},{0xb70,2}}, {{0x2912,5},{0x583f,6}}, + {{0x515d,6},{0x47fe,5}}, {{0x415e,3},{0x1a05,8}}, {{0x1bc0,10},{0x2b,3}}, {{0xaefa,7},{0xa24d,5}}, + {{0x271e,3},{0x20ae6,2}}, {{0x27b4,3},{0x29122,2}}, {{0xa246,4},{0xbfc4,6}}, {{0x6fc2,6},{0x9a9,2}}, + {{0xaaea,2},{0xaaec,6}}, {{0x2b884,4},{0x6f8a,2}}, {{0x2cc4a,4},{0x70ce,2}}, {{0x27897,1},{0x278cf,2}}, + {{0x27d24,3},{0xb33,2}}, {{0x175c,9},{0xd7f,3}}, {{0x1abcd,3},{0x4284,2}}, {{0x30,16},{0x532,4}}, + {{0x6e03,4},{0x18a7,3}}, {{0xae0,1},{0xeabc,5}}, {{0x52d6,8},{0x11b8,4}}, {{0x924,2},{0x27a31,2}}, + {{0xca7,3},{0x1e,1}}, {{0x6107,3},{0xb2e,2}}, {{0x27b4,3},{0x1aaed,1}}, {{0x16e2,2},{0xa5e6,4}}, + {{0x6f2e,6},{0x25c2,3}}, {{0xb63,2},{0x6430,6}}, {{0xba5,4},{0x3484,10}}, {{0xbe0,1},{0x10dc,2}}, + {{0x26c4,3},{0x10ca,1}}, {{0x2aa8,6},{0x583f,6}}, {{0x10f2,1},{0xb4b,2}}, {{0xba5,4},{0x5779,9}}, + {{0x1ed51,3},{0x9c9,1}}, {{0x26c6,2},{0x454b,7}}, {{0x1ebb9,6},{0xc2e,2}}, {{0x1051,4},{0x2b,3}}, + {{0x1d59,3},{0x49f9,6}}, {{0x25c5,5},{0x108b,3}}, {{0x14e7e,4},{0x167c8,4}}, {{0xcab,3},{0x1d,1}}, + {{0x6f74,4},{0x70a6,2}}, {{0x15b40,2},{0x20986,3}}, {{0xe006,5},{0x2dc3,3}}, {{0x9aae,6},{0x715a,3}}, + {{0x271e,7},{0xbd6,8}}, {{0xd0f,4},{0x13ae4,6}}, {{0x3ffc,6},{0xf147,5}}, {{0x120d0,5},{0x1719,3}}, + {{0xc52,2},{0x9911,5}}, {{0x1509c,4},{0x23b1,3}}, {{0x177c,3},{0x37ae,4}}, {{0x1f019,5},{0x1f01e,3}}, + {{0x26e7b,4},{0x250c9,2}}, {{0x18421,6},{0x12b1,3}}, {{0x7a4a,10},{0x10dc,2}}, {{0x70dc,4},{0xfb8b,2}}, + {{0x8e12,6},{0x2d43,5}}, {{0x2c85a,4},{0x1b709,2}}, {{0xb70,2},{0x1254,3}}, {{0x26dbb,4},{0x180e,2}}, + {{0x10fa,1},{0x28,1}}, {{0xb72,2},{0xb55,2}}, {{0xd78,5},{0xd44,5}}, {{0x6ac3,4},{0xf258,7}}, + {{0x4978,4},{0xb2c,4}}, {{0x1a703,5},{0x6ab9,4}}, {{0x278dc,1},{0x1b6ab,2}}, {{0xfdd,2},{0x2c00,3}}, + {{0x1a5c,3},{0x1ba5,3}}, {{0xa972,6},{0xe4a,4}}, {{0x1f1b1,6},{0x12143,2}}, {{0x10ec,1},{0x23759,4}}, + {{0x2474d,2},{0x70d2,2}}, {{0x6d81,3},{0x14fc1,7}}, {{0xb55,3},{0xd256,4}}, {{0x24f92,2},{0x28633,2}}, + {{0x18244,6},{0x12e5,3}}, {{0x3f70,7},{0x3f77,7}}, {{0xf629,5},{0xc29,2}}, {{0xa25e,8},{0x25da,3}}, + {{0xd5c,2},{0x5581,6}}, {{0x229d,3},{0x7a5e,4}}, {{0xad62,4},{0x1cd1,5}}, {{0x10ea,3},{0x29513,2}}, + {{0xaec,2},{0xae6,2}}, {{0x271e,3},{0x20986,3}}, {{0x153c,9},{0x222c,6}}, {{0x23010,5},{0x15b3f,2}}, + {{0x1afbb,5},{0x1afc0,4}}, {{0xd57,2},{0xc63,3}}, {{0x10c8,4},{0x12a0,12}}, {{0x4075,2},{0x28,1}}, + {{0xd41,3},{0x109e,4}}, {{0x3e90,5},{0xb2c,2}}, {{0x14bb0,2},{0x10f7,1}}, {{0x10f7,1},{0xb2f,1}}, + {{0x1015c,8},{0x10176,8}}, {{0xf52,12},{0xf5e,5}}, {{0xc55,2},{0x2b,1}}, {{0x15694,5},{0xf548,5}}, + {{0xcfd,6},{0x6676,4}}, {{0x1687,3},{0x27,1}}, {{0x14fdc,6},{0x109f,3}}, {{0x286c3,6},{0x1016a,2}}, + {{0xcd9,3},{0xbb4,2}}, {{0x2796,3},{0xaaec,4}}, {{0x50ce,6},{0xb67,2}}, {{0x278dc,1},{0x27ad3,2}}, + {{0xaf2,1},{0x22d26,4}}, {{0x3250,4},{0x8a9e,8}}, {{0x2c3f2,4},{0x244e7,2}}, {{0x10fb,3},{0x14d5,7}}, + {{0x10508,8},{0x2bfc,2}}, {{0x10f3,1},{0x1dd8,4}}, {{0x145a0,1},{0x28,1}}, {{0xf14,3},{0xae7,1}}, + {{0x2b76,3},{0x10dc,2}}, {{0xeb2,3},{0x22e3,3}}, {{0x3552,10},{0x355c,4}}, {{0x81fa,8},{0xb68,4}}, + {{0x6f21,4},{0xdac,3}}, {{0x17792,6},{0x2b,3}}, {{0x10ea,3},{0xd0ff,2}}, {{0x17ee,3},{0x12d3,6}}, + {{0xb7f,3},{0xbb1,3}}, {{0x6dc2,4},{0x12fe,1}}, {{0xb55,3},{0x14cfe,4}}, {{0x2c5c6,4},{0x1b709,2}}, + {{0xae5,1},{0x5277,2}}, {{0x10ea,3},{0x1a326,8}}, {{0x1a,3},{0x2683,5}}, {{0xae7,2},{0x4b0a,4}}, + {{0x74ba,3},{0x1f,1}}, {{0x87ee,10},{0xd0d,2}}, {{0xc30,2},{0x1a,2}}, {{0xcab,3},{0xaea,2}}, + {{0x1098,3},{0x530c,3}}, {{0x3012,6},{0x5f90,6}}, {{0x1e,1},{0x184cf,6}}, {{0x1459e,3},{0x28,1}}, + {{0x1929d,5},{0x2a,4}}, {{0xaaf2,5},{0x1d,1}}, {{0xd76,5},{0xe0dd,5}}, {{0xd57,2},{0xae2,1}}, + {{0x29e8c,3},{0x1171,2}}, {{0x4d97,2},{0xb55,2}}, {{0x23c7,7},{0x1260,4}}, {{0x1502c,5},{0xbd9,2}}, + {{0x20,2},{0xc50d,5}}, {{0x278d6,1},{0x279d1,2}}, {{0xc1c,2},{0xb47,2}}, {{0x19f8f,6},{0xb78,2}}, + {{0x893e,5},{0x11b6,3}}, {{0x6ac3,3},{0xc67,2}}, {{0xcd9,3},{0x1f68,4}}, {{0xaa98,2},{0x4380,2}}, + {{0x4d19,8},{0xb7a,5}}, {{0x23645,6},{0xaf2,1}}, {{0x159c,5},{0x1f,2}}, {{0xbeb,1},{0x1089,2}}, + {{0x422e,3},{0x1a81d,2}}, {{0x2912,4},{0x21,1}}, {{0x1b855,6},{0x70a8,4}}, {{0xa7da,3},{0xee1,3}}, + {{0x27b95,4},{0x279a7,2}}, {{0x19b3,5},{0x2a9f,9}}, {{0xaca2,3},{0x2844,2}}, {{0xf85,4},{0xbef2,7}}, + {{0x40f8,4},{0xb55,3}}, {{0xb86,3},{0xdf50,6}}, {{0xae7,1},{0x3e34,5}}, {{0x139f,3},{0x2b,3}}, + {{0x1cef,3},{0x1a,2}}, {{0x1abd4,5},{0x1abd9,3}}, {{0x141c,5},{0xb2c,2}}, {{0xac5a,7},{0x22e3,3}}, + {{0x768a,6},{0x2b,3}}, {{0x8e14,6},{0x1dd8,4}}, {{0xa9ba,8},{0x25df,4}}, {{0xbe0,1},{0x1701,3}}, + {{0x6ac5,2},{0x2bfc,2}}, {{0x278c9,2},{0x1b6b3,2}}, {{0xbcb,3},{0xae7,1}}, {{0x2c57e,4},{0x1b205,2}}, + {{0x26c6,2},{0xe2bd,7}}, {{0xc52,3},{0x3062,4}}, {{0xa2e2,5},{0x13f81,5}}, {{0x40fa,2},{0x11f2,3}}, + {{0xff34,8},{0xff3c,8}}, {{0x181c,3},{0x13e4,3}}, {{0x3846,4},{0x1c4d9,4}}, {{0x278bd,2},{0x1b140,2}}, + {{0xa6ea,8},{0xbb4,4}}, {{0x281f,3},{0x89f5,4}}, {{0x3d40,9},{0xe70,4}}, {{0xae6,3},{0x2b,1}}, + {{0x1409,2},{0x1a,2}}, {{0x5288,5},{0x988c,6}}, {{0x17157,6},{0xae7,1}}, {{0x830e,8},{0xae6,3}}, + {{0x15006,4},{0x1260,4}}, {{0x1051,4},{0xeb2,1}}, {{0xf65,5},{0x14f3,7}}, {{0x1084,3},{0x10e1,3}}, + {{0x1ed69,3},{0x17f5d,5}}, {{0x6c08,4},{0xa623,4}}, {{0x422e,3},{0x26f7a,3}}, {{0x242b1,5},{0x2b,1}}, + {{0x1a32e,4},{0xcccc,5}}, {{0x177c,3},{0x12ae,3}}, {{0x1a0d,5},{0xdd5,2}}, {{0x24a30,3},{0x24461,1}}, + {{0x1e18,7},{0x1e1f,8}}, {{0x4561,8},{0x4569,5}}, {{0x3678,5},{0x12b39,5}}, {{0x1257,2},{0xeb2,1}}, + {{0x2ce3c,4},{0xae0,1}}, {{0x136ee,7},{0x2b,3}}, {{0x711a,9},{0x2b,3}}, {{0x23df6,4},{0x2840,2}}, + {{0x27b6,1},{0x443e,2}}, {{0xbe7,1},{0x77c7,4}}, {{0x134c,5},{0x2742,3}}, {{0x2445e,2},{0x2862e,2}}, + {{0xf5f4,2},{0x2848,2}}, {{0x2a90,2},{0xae2,1}}, {{0x10f7,1},{0x142e,1}}, {{0x1a,1},{0xb78,2}}, + {{0x6d81,3},{0xcd65,4}}, {{0xff14,8},{0xff3c,8}}, {{0x1ac6d,6},{0xc34,2}}, {{0xbe4,1},{0x17ae,1}}, + {{0xfef4,4},{0xff0c,8}}, {{0xfb1,2},{0x1f,1}}, {{0x24391,5},{0x1a,2}}, {{0x10ef,1},{0xa141,9}}, + {{0xbe7,1},{0x1864,2}}, {{0x46f4,4},{0x9c4d,5}}, {{0x7c5c,4},{0x88ce,4}}, {{0x217e,9},{0x2bca,4}}, + {{0xdf0,2},{0xeb3,3}}, {{0xfdb4,8},{0x1081,3}}, {{0x145a0,1},{0x10f0,1}}, {{0xeb9,6},{0x1df3,7}}, + {{0x13437,5},{0x1035,5}}, {{0x253d7,6},{0xb9e,2}}, {{0xb31,1},{0x432,2}}, {{0x26ac5,4},{0x1a560,2}}, + {{0x1a,1},{0x4d97,2}}, {{0xb85,2},{0xb63,2}}, {{0x734,1},{0x2b72b,6}}, {{0x41da,3},{0x27232,2}}, + {{0xa65a,7},{0x46e4,3}}, {{0xadf,2},{0xb8f,2}}, {{0xf5b2,5},{0xc95d,4}}, {{0x1b6ab,1},{0x278f3,2}}, + {{0x43a5,3},{0xc34,2}}, {{0x6d81,3},{0x269de,3}}, {{0xac8a,4},{0xf88a,7}}, {{0x27b95,4},{0x27a07,2}}, + {{0x309e,8},{0xff7,5}}, {{0xc3e,2},{0xdf0,2}}, {{0xb858,3},{0xff4e,4}}, {{0xceb,3},{0xb52,6}}, + {{0xb7f,3},{0x2dc3,3}}, {{0x27b4,3},{0x139e,4}}, {{0x17bc,4},{0x17c72,5}}, {{0x4a68,5},{0xbd1,2}}, + {{0xca3,8},{0xcab,10}}, {{0x5c55,9},{0xb2c,4}}, {{0x1dab,4},{0x37b4,4}}, {{0x177fe,6},{0xc63,3}}, + {{0x203e1,5},{0x46f8,3}}, {{0xdf0,2},{0xb79,2}}, {{0x1e9ff,4},{0xb48,2}}, {{0x17c2f,5},{0xc8a3,3}}, + {{0x27db3,6},{0x70d0,4}}, {{0xb82,2},{0xfdd,2}}, {{0xbe4,1},{0xf82b,3}}, {{0xae5,1},{0xc77,2}}, + {{0xcd9,3},{0x7a6a,4}}, {{0xcce,3},{0x28,1}}, {{0xcd9,5},{0x11b48,4}}, {{0x1f8d9,5},{0x2b,2}}, + {{0x1573e,5},{0x15743,5}}, {{0xcfd,5},{0xb60,2}}, {{0x1aba9,7},{0xae7,1}}, {{0xd5d7,7},{0xbb4,4}}, + {{0xe75,6},{0xe7b,11}}, {{0x3e04,5},{0x2a95,4}}, {{0x40ea,5},{0x4652,6}}, {{0x10ef,1},{0xb8c,2}}, + {{0xaf2,1},{0x1499,3}}, {{0x265b,4},{0x12bf8,4}}, {{0x924,2},{0x27977,2}}, {{0x1b927,6},{0x1b93b,8}}, + {{0x1a811,5},{0x1a816,4}}, {{0xf0f4,8},{0xb7c,3}}, {{0xf212,3},{0x15b5b,6}}, {{0x2b846,4},{0x70a2,2}}, + {{0x1c,1},{0xf8e1,4}}, {{0x27b6,1},{0xab9c,1}}, {{0xbe7,1},{0x3cba,3}}, {{0x1173,2},{0x278af,2}}, + {{0x274d,3},{0x5fc7,4}}, {{0xf823,5},{0x14f69,5}}, {{0x1c,1},{0x1dac,3}}, {{0x1505e,5},{0xc657,3}}, + {{0xd65,3},{0x20cfb,4}}, {{0xfe59,6},{0xbd8,2}}, {{0x10f3,1},{0xc55,2}}, {{0xbb5,1},{0x257c,2}}, + {{0x1a4d7,4},{0x10dc,2}}, {{0xbeb,1},{0x23af,4}}, {{0x1b6ab,1},{0x27983,2}}, {{0x1c,1},{0x11ef,3}}, + {{0x21,1},{0x15819,4}}, {{0x228c,5},{0x2291,10}}, {{0xd0f,4},{0xd7f,3}}, {{0x10fb,3},{0x1719,3}}, + {{0xdc00,3},{0xb65,2}}, {{0x11cca,5},{0xb78,2}}, {{0xa252,8},{0xd0d,2}}, {{0x10ef,1},{0x1b08,3}}, + {{0xb75,2},{0xb55,3}}, {{0x29f18,3},{0x278db,2}}, {{0xb380,8},{0x2b,3}}, {{0x160ef,6},{0x2b,3}}, + {{0x152e0,4},{0x2638,4}}, {{0x27b6,1},{0x26e6d,2}}, {{0xbeb,1},{0x14bb4,2}}, {{0x18d8,4},{0xb7c,3}}, + {{0x28f6,2},{0xb6e,2}}, {{0xa7da,3},{0x101a,3}}, {{0x4bfb,12},{0xae7,1}}, {{0x1cec,5},{0x2742,3}}, + {{0xbeb,1},{0xae9,2}}, {{0xbeb,1},{0xbd5,2}}, {{0x27,1},{0x67c0,3}}, {{0x4116,6},{0x411c,8}}, + {{0x1084,3},{0xaea,1}}, {{0x6d81,3},{0xc73,2}}, {{0x1b75,7},{0x10a2,4}}, {{0xafec,3},{0xe626,5}}, + {{0xaae6,4},{0xaaea,8}}, {{0x6dc2,5},{0x5277,2}}, {{0x61ac,8},{0xce8,3}}, {{0x27b4,3},{0xfb1,2}}, + {{0xa7da,3},{0xf8cf,2}}, {{0x278d6,1},{0x27af7,2}}, {{0x26c6,1},{0x2b,1}}, {{0x17bc,4},{0x4de1,3}}, + {{0xcaa5,3},{0xb79,2}}, {{0xae9,2},{0x23ce,4}}, {{0x10850,6},{0x1152,3}}, {{0xe410,6},{0xb55,3}}, + {{0x10ea,3},{0x26754,2}}, {{0xbeb,2},{0x16f8,3}}, {{0x13d6a,6},{0x2693,4}}, {{0x31c9,3},{0x2b,1}}, + {{0x2c49a,4},{0x70ce,2}}, {{0x10ef,1},{0x5575,5}}, {{0x10ea,3},{0x2c00,3}}, {{0x1459e,3},{0xfb1,2}}, + {{0x8386,8},{0xc57,3}}, {{0x6d81,3},{0x152d2,2}}, {{0x3e2a,3},{0x2211,3}}, {{0x2ea6,9},{0x2eaf,5}}, + {{0x27b4,3},{0xb64,2}}, {{0x3e58,4},{0x13c19,4}}, {{0x177c,4},{0x359b,4}}, {{0x2ab6,8},{0x1d11,5}}, + {{0x24b1b,3},{0x39d2,3}}, {{0x8e3a,3},{0xcc0,3}}, {{0xb7f,3},{0x23d9,3}}, {{0x178c,3},{0x1924f,5}}, + {{0x17ac,3},{0x2b,3}}, {{0x2b325,2},{0x27e3a,2}}, {{0x10dc,2},{0x7fda,4}}, {{0x415c,5},{0xdf4,5}}, + {{0x762a,7},{0x7631,5}}, {{0x1aaf3,5},{0x1aaf8,4}}, {{0x1107c,6},{0x2288,4}}, {{0x6d8e,3},{0x1a30,3}}, + {{0x2789b,3},{0x279f5,2}}, {{0xfe38,4},{0xaea,1}}, {{0x280e,6},{0x2af4,4}}, {{0xf77e,5},{0xf63c,2}}, + {{0x181c,3},{0x1878,1}}, {{0x1ed49,3},{0x251dc,2}}, {{0xae0,1},{0xc51,2}}, {{0x4106,5},{0x41ef,2}}, + {{0x1abd9,2},{0x10f3,1}}, {{0x2c788,4},{0x1b205,2}}, {{0x20bb,3},{0xae0,1}}, {{0x1051,4},{0xb55,2}}, + {{0x2330b,6},{0xaf2,1}}, {{0x159e,3},{0x1ed4,6}}, {{0x20b11,4},{0x155dd,3}}, {{0x1b25b,5},{0x1035,5}}, + {{0x271e,3},{0x1c25,3}}, {{0xc13,4},{0x72b6,8}}, {{0x4196,4},{0xae7,1}}, {{0xcb5,3},{0x12a1f,7}}, + {{0x279d1,2},{0x27a4f,2}}, {{0x42ac,5},{0xdf0e,6}}, {{0x2348c,5},{0xec8,2}}, {{0xb44,3},{0x2ec8,5}}, + {{0x3694,4},{0x116fe,4}}, {{0x5317,5},{0xaf1,2}}, {{0xd5c,1},{0x2859b,4}}, {{0x287e7,2},{0x70a6,2}}, + {{0x10fb,4},{0x1150,2}}, {{0x253cf,6},{0x1b,1}}, {{0x13d44,5},{0x2b,3}}, {{0xb72,2},{0xb4b,2}}, + {{0x6d81,3},{0xae0,2}}, {{0x11cb6,5},{0xe0a,5}}, {{0x6c0a,2},{0x97e5,5}}, {{0x1434,6},{0x2584,5}}, + {{0x1b365,5},{0xce8,3}}, {{0x116e,1},{0x278c9,2}}, {{0x1aafc,4},{0x18974,5}}, {{0x14dc,6},{0xb2e,2}}, + {{0xf10,3},{0x14b8,4}}, {{0x24b7,10},{0x11b8,4}}, {{0x7590,6},{0x1408,3}}, {{0xa7da,3},{0x284e,3}}, + {{0x19c63,6},{0x2b,3}}, {{0x118c,5},{0x7287,7}}, {{0x11ef,3},{0x2683,5}}, {{0x19cc,3},{0xdfb,3}}, + {{0x1b030,6},{0xcdf,3}}, {{0x423e,1},{0x26e66,3}}, {{0x1361,2},{0x47b3,3}}, {{0x14c62,5},{0xbd6,2}}, + {{0x6c2f,10},{0xc63,3}}, {{0xcfd,5},{0xdd5,3}}, {{0xa156,6},{0xa15c,6}}, {{0x4356,2},{0xc67,3}}, + {{0xb9d,3},{0x3fdc,4}}, {{0xa28e,7},{0x74b1,5}}, {{0x422e,4},{0x2d68,5}}, {{0xde4,2},{0xb79,2}}, + {{0x1687,3},{0xe70,4}}, {{0xab9a,3},{0xab9c,1}}, {{0x4491,6},{0x4497,7}}, {{0x41da,3},{0xadf,2}}, + {{0x2789b,3},{0x27a01,2}}, {{0xf4df,3},{0xb8a,2}}, {{0x190c2,5},{0xdf0,2}}, {{0xb44,3},{0x1862,3}}, + {{0x122c,4},{0x4076,4}}, {{0x27b6,1},{0x166a6,5}}, {{0xe64,4},{0x1408,3}}, {{0x244bf,4},{0x1b709,2}}, + {{0xfcae,3},{0x10fa,1}}, {{0xd645,7},{0xaf2,1}}, {{0x256d,3},{0x92c9,4}}, {{0x1adf,5},{0x1704,3}}, + {{0x2aefa,2},{0x432,1}}, {{0xdbe6,9},{0xae6,2}}, {{0x1f133,3},{0x2098,3}}, {{0x177e,2},{0xadf,2}}, + {{0x176c,10},{0xff7,5}}, {{0x253b3,4},{0x1019a,4}}, {{0xfac4,8},{0xc63,3}}, {{0xede,3},{0xb2c,4}}, + {{0x29f18,3},{0x278cf,2}}, {{0x879a,7},{0x1f13,4}}, {{0x1f,1},{0x1081,3}}, {{0x3686,8},{0x2b,2}}, + {{0x2866a,2},{0x1b6cb,1}}, {{0xb77f,9},{0x10dc,2}}, {{0xc37,3},{0x1b25b,4}}, {{0xae9,2},{0xb64,2}}, + {{0x1aafc,4},{0x384a,3}}, {{0x162c,6},{0x1a,3}}, {{0xe867,7},{0x2b3e,4}}, {{0x2ede,6},{0x811c,6}}, + {{0xb9c,2},{0xee8,3}}, {{0x1b4db,4},{0x1b4db,4}}, {{0xde9,1},{0xc63,3}}, {{0xbeb,1},{0x12e94,6}}, + {{0x28da,1},{0xbe7,1}}, {{0x7636,9},{0x2b,3}}, {{0xbcf4,6},{0xb2c,2}}, {{0x6d81,3},{0x14cbf,2}}, + {{0x6c0a,2},{0xb6bf,5}}, {{0x2c6f8,4},{0x1b205,2}}, {{0x19,1},{0x24,1}}, {{0x10b7,4},{0xaeb,2}}, + {{0x1051,7},{0x583f,6}}, {{0xddd5,7},{0x2288,4}}, {{0xc67,2},{0xcd65,4}}, {{0x10b7,4},{0xb6e,2}}, + {{0x2aacb,2},{0x1dec4,2}}, {{0x186a9,7},{0xaec,2}}, {{0x1d62d,7},{0xb9c,3}}, {{0x27897,1},{0x278d5,2}}, + {{0x55d5,8},{0x1f13,4}}, {{0xa249,4},{0x2b,3}}, {{0xca1,2},{0xae7,2}}, {{0x3368,10},{0xb7c,3}}, + {{0x1b11a,5},{0x887b,3}}, {{0x4436,10},{0x2b,3}}, {{0x1095,9},{0x109e,8}}, {{0x6c08,4},{0x89b9,4}}, + {{0x2cc4a,4},{0x6fae,2}}, {{0xbeb,1},{0x10ef,2}}, {{0x10ea,3},{0x20b5,3}}, {{0x23e5,10},{0x2b,3}}, + {{0x181c,3},{0x2b,1}}, {{0x13bc,4},{0x12086,4}}, {{0x2789b,3},{0x27959,2}}, {{0x234af,6},{0x2b,1}}, + {{0xd5c,1},{0x29937,3}}, {{0x8ce6,8},{0xb54,4}}, {{0x10e2a,4},{0xb78,2}}, {{0x12878,5},{0x1513,5}}, + {{0x162c,6},{0x2b83,5}}, {{0xf3b6,4},{0xdb7f,4}}, {{0x70ea,5},{0x29d8,4}}, {{0x422e,3},{0x53ea,4}}, + {{0x14a26,5},{0xdbf,3}}, {{0x58f5,4},{0x6714,4}}, {{0x178c,3},{0x24ff3,2}}, {{0xb44,3},{0xf02,3}}, + {{0x261f,4},{0x31e4,4}}, {{0xadd,3},{0x19e5,2}}, {{0x734,16},{0x734,8}}, {{0x10bb,5},{0x1934,4}}, + {{0x14738,6},{0xb7c,2}}, {{0x27ce2,4},{0x734,1}}, {{0xdde0,5},{0xd0fe,3}}, {{0x1b5ff,4},{0xadd0,3}}, + {{0x1b75,7},{0x10b3,4}}, {{0x10f7,1},{0x16ae,2}}, {{0x16125,6},{0x21a0,3}}, {{0x27d24,3},{0x432,2}}, + {{0xdd5,2},{0xd0d,2}}, {{0x4d33,7},{0x7f19,5}}, {{0x177c,3},{0x986a,4}}, {{0xb75,2},{0x4fdd,7}}, + {{0xbeb,1},{0xef98,4}}, {{0x1055,3},{0x1b48e,5}}, {{0xbb3,2},{0xb47,2}}, {{0xb66,2},{0xbb0b,5}}, + {{0xf894,4},{0xfe5,2}}, {{0x1150,2},{0x14d5,3}}, {{0xab9a,3},{0xcc0e,3}}, {{0x14fc,5},{0xaf1,1}}, + {{0x2097b,3},{0x2268,4}}, {{0xc79e,8},{0x103a,3}}, {{0x1f80,7},{0x1f87,8}}, {{0x3694,4},{0xb63,2}}, + {{0x13bc,7},{0xae6,2}}, {{0x59f5,3},{0xb48,2}}, {{0x1afc4,4},{0x461f,5}}, {{0x20bb,3},{0x2200,5}}, + {{0x9b1a,5},{0xd0d,2}}, {{0x278dc,1},{0x27995,2}}, {{0x27,1},{0xbb15,3}}, {{0x6d9d,3},{0x28be,3}}, + {{0xcb5,3},{0xb82,2}}, {{0x2cae,4},{0x5203,3}}, {{0x16e97,6},{0xc34,3}}, {{0xaec,2},{0x4646,5}}, + {{0xcfd,4},{0xa469,5}}, {{0x1ed69,3},{0x2660a,3}}, {{0x1abcb,4},{0x2848,2}}, {{0x24b7,10},{0x1717,5}}, + {{0x423e,1},{0xbbf,2}}, {{0x2aa8,6},{0x1ce6,6}}, {{0xb2f,1},{0x21,1}}, {{0x2702,3},{0x4875,5}}, + {{0x15e0f,4},{0x1372,3}}, {{0xd1b,1},{0xb9d,3}}, {{0x24461,1},{0x27e20,2}}, {{0x26c4,3},{0x2748,2}}, + {{0x7950,5},{0x11b8,4}}, {{0x2ae2,3},{0x1637e,4}}, {{0xaee9,2},{0xbe4,1}}, {{0x145e6,2},{0x4606,3}}, + {{0x1e45,3},{0xb73,2}}, {{0x2d,1},{0x69ce,3}}, {{0x4a4e,8},{0x4a56,5}}, {{0x256b,5},{0xa45d,5}}, + {{0x10f0,1},{0xb98,2}}, {{0xae5,1},{0x24e28,5}}, {{0x251fe,2},{0x251cb,1}}, {{0xf367,9},{0xb55,2}}, + {{0x1974a,5},{0xc5ff,4}}, {{0x278dc,1},{0x27acd,2}}, {{0x7c4,1},{0x2446c,2}}, {{0x2789b,3},{0x279dd,2}}, + {{0x10056,3},{0x2d5d,4}}, {{0x278dc,1},{0x27aeb,2}}, {{0x441c,3},{0x1bb70,5}}, {{0x100b0,3},{0x100b3,7}}, + {{0xb9f,2},{0x1308,3}}, {{0xbe0,1},{0x102f9,3}}, {{0x2cd88,4},{0xff26,2}}, {{0x245af,6},{0x2467b,6}}, + {{0xad62,4},{0x151a2,6}}, {{0xb4a,3},{0x257c,2}}, {{0x17fe,3},{0x9ed3,7}}, {{0x159c,4},{0xc165,5}}, + {{0x4e6f,3},{0x19bd,5}}, {{0x118c,10},{0x1196,6}}, {{0x6cbe,4},{0x16f8,3}}, {{0x5587,11},{0x10dc,2}}, + {{0x1b6e1,2},{0x6f78,2}}, {{0xbcb,3},{0x1ca08,4}}, {{0x26e8a,2},{0x10f3,1}}, {{0x84d6,7},{0x84dd,5}}, + {{0x251cb,1},{0x28652,2}}, {{0xae2,1},{0x1423,4}}, {{0x122c,4},{0x3921,5}}, {{0x5c76,4},{0x1c8f,3}}, + {{0x364e,4},{0x24fd,5}}, {{0xeec,5},{0x2ddc,6}}, {{0xe006,5},{0x11b8,4}}, {{0x1fad1,5},{0x4412,3}}, + {{0xaee7,2},{0x24292,3}}, {{0x6c97,5},{0xae6,3}}, {{0x1490e,5},{0xc8a,2}}, {{0x2aa4b,4},{0x2aa67,4}}, + {{0xbe4,1},{0x10dc,2}}, {{0xc55,2},{0xb49,2}}, {{0x180e,2},{0x2b4c,4}}, {{0x207f6,6},{0xaf2,1}}, + {{0x432,1},{0x24729,6}}, {{0x1c,1},{0x5f8d,9}}, {{0xc13,4},{0x1912,11}}, {{0x100d,13},{0x101a,4}}, + {{0xb72,2},{0xb47,2}}, {{0x1b8e7,4},{0x2acaf,4}}, {{0xc13,7},{0x11c3,9}}, {{0x278dc,1},{0x27983,2}}, + {{0x61c6,5},{0x10929,5}}, {{0xf905,4},{0xcb8,2}}, {{0x6b45,6},{0x2abe,5}}, {{0x1e,1},{0x15051,3}}, + {{0x10150,3},{0xa7a3,5}}, {{0x22cf8,1},{0x27d20,2}}, {{0xe1d,3},{0xd17,3}}, {{0x1c25,4},{0xc7b,4}}, + {{0x240ce,4},{0x10f6,1}}, {{0x9a9,1},{0x117c,1}}, {{0xb73,2},{0xb64,2}}, {{0x278c9,2},{0x27acd,2}}, + {{0x1f9a1,5},{0x15583,3}}, {{0x2f5e,5},{0x1498,4}}, {{0x660e,4},{0xd7f,3}}, {{0x3fe0,5},{0x20cd,4}}, + {{0x2796,3},{0x10116,2}}, {{0x3a36,2},{0xf10,3}}, {{0xae5,1},{0x10da4,4}}, {{0x2789b,3},{0x27a1f,2}}, + {{0x2445c,3},{0x24,1}}, {{0xca7,3},{0x1d,1}}, {{0xde9,1},{0x2a09,5}}, {{0x1ed51,3},{0x2658c,3}}, + {{0xd041,5},{0x30fb,5}}, {{0x182a7,6},{0x2b,2}}, {{0x5943,5},{0x28,1}}, {{0x3db0,5},{0x82f4,2}}, + {{0x256b,5},{0x13d79,5}}, {{0x27897,1},{0x27a79,2}}, {{0xadf,2},{0x3492,5}}, {{0x4881,4},{0x151e,4}}, + {{0x1ab2,4},{0x22abe,4}}, {{0xb8a8,8},{0x1719,3}}, {{0x2451f,2},{0x1dec4,2}}, {{0xb99,7},{0xb52,5}}, + {{0xcfd,5},{0x8d9e,7}}, {{0x6f21,5},{0xdf0,2}}, {{0x177c,3},{0x3789,3}}, {{0x7162,4},{0x13f13,5}}, + {{0xbde,3},{0x29a4b,2}}, {{0x35ee,3},{0xab28,4}}, {{0x58e1,7},{0x2e22,6}}, {{0xb64,2},{0x2a91,4}}, + {{0x14b6,2},{0x1f,1}}, {{0x2070,7},{0x360f,4}}, {{0x181c,3},{0x100b0,2}}, {{0xcde,4},{0x2f57,5}}, + {{0x14bf4,4},{0x12f1,3}}, {{0xa972,6},{0x7edc,6}}, {{0xbed,2},{0xc55,2}}, {{0xcd9,5},{0xdbf,3}}, + {{0x1b72f,6},{0x1b739,4}}, {{0xae5,1},{0x109f,3}}, {{0x27b4,3},{0x4b0a,4}}, {{0xaeb,2},{0x11b8,4}}, + {{0xbb5,2},{0xb70,2}}, {{0x86da,5},{0x1e98,7}}, {{0x10ec,1},{0x263f,3}}, {{0x5cd9,6},{0x345e,5}}, + {{0x3f00,11},{0xb54,3}}, {{0xae1,2},{0x21,1}}, {{0x1ab2,5},{0xae6,2}}, {{0x423e,1},{0xb70,2}}, + {{0x2322,6},{0x4687,5}}, {{0xc25,4},{0xc17,5}}, {{0x1aa90,5},{0x284d,3}}, {{0x244b9,6},{0x244bf,6}}, + {{0x430,6},{0x1ed58,1}}, {{0x30,2},{0x2a9a8,2}}, {{0x177c,3},{0x5575,4}}, {{0xcd5,2},{0x1ed0,4}}, + {{0x244dd,4},{0x6f90,2}}, {{0x14be0,5},{0xadf,2}}, {{0x1ba77,6},{0xae7,1}}, {{0x7a6e,4},{0x6008,4}}, + {{0x285d6,3},{0xf5f6,2}}, {{0x178c,3},{0x989a,4}}, {{0x163f7,5},{0x1152,3}}, {{0xc4d,2},{0xb55,2}}, + {{0x6d8e,3},{0x23c0f,4}}, {{0xd0f,4},{0xcb8,3}}, {{0x6cc0,3},{0xb2e,2}}, {{0x24,1},{0x2446d,2}}, + {{0xeefa,9},{0xb2c,2}}, {{0x43e3,1},{0xb79,2}}, {{0xc345,8},{0xae7,1}}, {{0x189d5,6},{0xb2e,2}}, + {{0xc49,3},{0x1960,8}}, {{0x422e,3},{0x1b4f,4}}, {{0x27897,1},{0x278ed,2}}, {{0x10fb,3},{0xccc,3}}, + {{0x4266,5},{0xaf2,1}}, {{0x178c,3},{0xa8f1,3}}, {{0x116e,1},{0x27a97,2}}, {{0x1e,1},{0x12d21,7}}, + {{0xe78,3},{0xff7,4}}, {{0x122c,4},{0x43bd,4}}, {{0x14d89,4},{0x3594,3}}, {{0x3af4,8},{0x10c4,4}}, + {{0x178c,3},{0x1b4b,3}}, {{0x1c29,6},{0x1a7f,6}}, {{0xbe0,1},{0xbb4,2}}, {{0x10f3,1},{0x4b0a,4}}, + {{0x41da,3},{0x1055,3}}, {{0xb7d,1},{0xae6,3}}, {{0x236d,10},{0xd60,5}}, {{0x791e,8},{0x10dc,2}}, + {{0x278d6,1},{0x278cf,2}}, {{0x3694,4},{0x37f7,3}}, {{0x6f16,4},{0x2b,2}}, {{0x1d,1},{0x1d,2}}, + {{0xddc,5},{0x2b3c,3}}, {{0xc1ae,6},{0x4459,3}}, {{0x7c4,16},{0x7c4,11}}, {{0xd78,5},{0x1387,5}}, + {{0x6081,6},{0xf6a,5}}, {{0x178c,3},{0x700f,3}}, {{0xb01a,4},{0xb47,2}}, {{0xaa3e,8},{0xd0b,4}}, + {{0x29f18,3},{0x27abb,2}}, {{0x52a2,6},{0x52a8,7}}, {{0xb64,3},{0x1035,5}}, {{0x4450,7},{0x4457,6}}, + {{0xd54,1},{0x1197,4}}, {{0x10f3,1},{0x4288,2}}, {{0xddc,4},{0xe70,4}}, {{0x2789b,3},{0x1b6ab,2}}, + {{0x1b919,10},{0x70d8,4}}, {{0x4e63,4},{0x10dc,2}}, {{0x2598,8},{0x1667,5}}, {{0x9826,7},{0x253a,4}}, + {{0x35b4,5},{0x177b2,4}}, {{0xeb2,1},{0xb85,2}}, {{0xc5ff,4},{0xae7,2}}, {{0xf52,6},{0x4694,5}}, + {{0xfc07,6},{0xfc0d,5}}, {{0x2446a,3},{0x1b6cb,1}}, {{0xd41,4},{0x2a9f,4}}, {{0x2745,3},{0xd57,2}}, + {{0xb8f,2},{0xc34,2}}, {{0x1da0,5},{0xae9,2}}, {{0xbb10,5},{0x16fcf,3}}, {{0x2c76,4},{0x8a92,4}}, + {{0x1b45b,5},{0x25c2,3}}, {{0xb7f,3},{0x4446,6}}, {{0x7702,5},{0x13a6,4}}, {{0x8a49,2},{0x712e,3}}, + {{0x10f2,1},{0x1afbe,2}}, {{0x283b,5},{0xaee7,7}}, {{0x8986,8},{0xbb4,4}}, {{0x5db6,9},{0xc7b,4}}, + {{0xca7,2},{0x1a,1}}, {{0x23159,5},{0xc8f,2}}, {{0x1a,3},{0xb79,2}}, {{0x3162,7},{0xf05,7}}, + {{0x5c76,4},{0xe4d,6}}, {{0x767e,6},{0x11e6,6}}, {{0xae7,1},{0x1c120,5}}, {{0x2446a,3},{0x25202,2}}, + {{0x6443,6},{0x20cd,4}}, {{0x20bb,3},{0xbb5,1}}, {{0x1051,4},{0x1090a,6}}, {{0x10ef,1},{0xbd1,2}}, + {{0x16fc,4},{0x266e,11}}, {{0x1098,3},{0xb56,2}}, {{0x14e26,4},{0x10dc,2}}, {{0xfff,4},{0x1bdb,3}}, + {{0xbeb,1},{0x48b1,6}}, {{0x17ac,3},{0x4b32,4}}, {{0x1568a,8},{0xc67,2}}, {{0xa17e,4},{0x10dc,2}}, + {{0xc51,2},{0xb9d,3}}, {{0xaa98,2},{0x27b6,1}}, {{0xd41,3},{0xaf1,1}}, {{0xf63,5},{0x4ae5,5}}, + {{0x1b203,4},{0x1b739,4}}, {{0x1a107,6},{0x1362,3}}, {{0x2160,6},{0xdac3,5}}, {{0xb6e,2},{0xbb5,1}}, + {{0xb7c,3},{0x16ae,2}}, {{0xe75,6},{0x8230,6}}, {{0x274b,5},{0xb63,2}}, {{0xdc28,5},{0x38eb,3}}, + {{0x1ab2,9},{0xdd5,4}}, {{0x5a4d,8},{0x1b07,5}}, {{0xbe7,1},{0xc67,2}}, {{0x43e3,1},{0x20adf,2}}, + {{0xa4b,4},{0x286cf,4}}, {{0x1bdc,2},{0x1a,2}}, {{0x27b6,1},{0x152c3,3}}, {{0xcb5,3},{0x1d8a,3}}, + {{0x114d,2},{0x1d,1}}, {{0x18094,6},{0x1152,3}}, {{0xa80a,4},{0xaf0,2}}, {{0x1051,7},{0x584c,6}}, + {{0x75e2,8},{0x75ea,4}}, {{0xd57,2},{0xcb8,2}}, {{0x23af,4},{0x11b8,4}}, {{0x6c08,6},{0x2b,3}}, + {{0x432,2},{0x1ed53,1}}, {{0x41da,5},{0x1058,9}}, {{0x4356,3},{0x1098,4}}, {{0x27,1},{0x8651,5}}, + {{0x177c,3},{0x323c,2}}, {{0x28,2},{0xb82,3}}, {{0x10d20,6},{0x1a,2}}, {{0xc25,3},{0x1c25,3}}, + {{0xfc07,5},{0x15437,5}}, {{0x4d26,11},{0xb2e,2}}, {{0x1b6dd,2},{0x70b4,2}}, {{0x10c8,3},{0x2af8,4}}, + {{0x4362,4},{0xa7bb,7}}, {{0x24b7,6},{0x18f1f,3}}, {{0x159c,4},{0xc144,7}}, {{0x177c,3},{0xc1e,2}}, + {{0x1459e,3},{0xe6d,2}}, {{0x449e,6},{0x25df,4}}, {{0x2b,1},{0x32f3,4}}, {{0x10192,2},{0x6fac,2}}, + {{0x7216,7},{0x721d,5}}, {{0xfb1,2},{0xd13,3}}, {{0x6ac5,2},{0x102b4,5}}, {{0x8afc,3},{0x22e3,3}}, + {{0xbd6,2},{0xae2,1}}, {{0x6ac3,3},{0xb9d,3}}, {{0x443d,3},{0xb2f,1}}, {{0x6e03,5},{0x151b7,5}}, + {{0x139c,6},{0xc904,5}}, {{0x10f7,1},{0x1b80,4}}, {{0x1dec2,4},{0x1c,1}}, {{0xe31,5},{0x1915,6}}, + {{0x1a31a,7},{0xc34,2}}, {{0x2cbfc,4},{0x70ce,2}}, {{0x271e,3},{0xb65,2}}, {{0x1402,2},{0x1d,1}}, + {{0x2c9f8,4},{0x1b25d,2}}, {{0x1760,3},{0xe415,5}}, {{0x2c6da,4},{0x6f64,2}}, {{0xae7,1},{0x20b3,5}}, + {{0xcd9,4},{0x967e,4}}, {{0x16cc,4},{0x7a46,4}}, {{0xaea,3},{0xd1b,1}}, {{0xc37,3},{0x760b,3}}, + {{0x42ac,5},{0x9813,5}}, {{0x14cd0,5},{0xc67,2}}, {{0x1b032,4},{0x760b,3}}, {{0x27f0,10},{0x141e,3}}, + {{0x4a9c,8},{0x11b8,4}}, {{0x713e,5},{0x1a35,5}}, {{0xf212,3},{0x130f,3}}, {{0xdfe,6},{0x13437,5}}, + {{0x10db,3},{0x600f,5}}, {{0x16b53,4},{0xb2e,2}}, {{0xaea,1},{0xe3bb,7}}, {{0x6b52,4},{0xc1e,2}}, + {{0x9a9,1},{0x2864c,1}}, {{0xc13,4},{0x15f43,5}}, {{0x29f18,3},{0x27b03,2}}, {{0x27895,3},{0x278b5,2}}, + {{0xaeee,4},{0x129f,2}}, {{0x2ce18,2},{0xff22,2}}, {{0x170c,5},{0x4582,6}}, {{0x164c,7},{0x5cd6,3}}, + {{0xbed,2},{0x1499,3}}, {{0x19c12,5},{0x19c17,4}}, {{0x6d81,3},{0x7859,3}}, {{0x13a2c,6},{0x4d97,2}}, + {{0x416c,3},{0x80d3,7}}, {{0x12fe,1},{0xaf1,1}}, {{0x27d24,3},{0x28431,2}}, {{0x27ff,6},{0x647d,4}}, + {{0x10ca,1},{0x19f47,2}}, {{0x27b95,4},{0x279cb,2}}, {{0xb7f,3},{0x2a24,3}}, {{0x114d,2},{0x2b,1}}, + {{0x1cee,4},{0x1ce6,6}}, {{0x1925e,6},{0xb78,2}}, {{0x1f,1},{0x28b1,3}}, {{0x3678,5},{0x5d97,5}}, + {{0x857e,5},{0x4569,5}}, {{0x10d48,4},{0xb8f,2}}, {{0x5aa8,6},{0xb78,2}}, {{0x91ba,8},{0x2af8,4}}, + {{0xa3ba,6},{0xecf0,5}}, {{0x15504,5},{0x13b49,5}}, {{0x146b6,7},{0x3a3b,3}}, {{0xbd62,6},{0x10dc,2}}, + {{0xe78,3},{0x1693,3}}, {{0x6783,7},{0x2b,3}}, {{0xceb,3},{0x535b,4}}, {{0xbd3,3},{0xb4b,2}}, + {{0x10ef,1},{0x21,1}}, {{0xb8a,2},{0x2f5f,4}}, {{0x16ee,2},{0x21,1}}, {{0xe77,4},{0x10dc,2}}, + {{0xcd9,3},{0x2b,3}}, {{0x168c,10},{0x1696,6}}, {{0x1b801,6},{0x1b807,8}}, {{0x2d8e,9},{0xb7a,5}}, + {{0x2a934,2},{0x2445e,1}}, {{0x16137,6},{0x12ff,3}}, {{0xf10,4},{0x12d5,7}}, {{0x3846,6},{0xb52,2}}, + {{0xab9a,3},{0xdf0,2}}, {{0x6d8e,3},{0x10e2b,3}}, {{0x17afb,5},{0x4459,4}}, {{0x102c,2},{0xb4b,2}}, + {{0x7e9a,5},{0x7a46,4}}, {{0x10f3,1},{0x12ff,2}}, {{0x27ce8,3},{0xb32,3}}, {{0x15018,6},{0x41b3,4}}, + {{0xb2e,2},{0x11ef,2}}, {{0x2789b,3},{0x2798f,2}}, {{0x16ccc,6},{0x1bdb,3}}, {{0x2070,7},{0x1d,1}}, + {{0x3234,3},{0xdac,2}}, {{0x27b4,3},{0x4417,2}}, {{0x1084,4},{0x4dd4,7}}, {{0xeb2,1},{0x27,1}}, + {{0x30,2},{0xc9c,3}}, {{0x17bc,3},{0x4415,2}}, {{0xe2e7,6},{0x5fe0,5}}, {{0xd288,8},{0x2b,3}}, + {{0xb07e,6},{0x2abe,5}}, {{0x28da,1},{0xf02,3}}, {{0xadf,2},{0x2282,6}}, {{0x15abb,2},{0x4284,2}}, + {{0x2756b,4},{0x10f6,1}}, {{0x3100,9},{0x1667,5}}, {{0xa3d2,8},{0xc7b,4}}, {{0x178c,3},{0xcab,10}}, + {{0x8c4,4},{0x30,34}}, {{0xeb4,3},{0x1f,1}}, {{0x1cbf,5},{0xb67,2}}, {{0xd76,5},{0x2d5d,4}}, + {{0xd020,8},{0xc8e,3}}, {{0x22041,5},{0x28,2}}, {{0x10ca,1},{0xab9c,1}}, {{0x6b5f,4},{0x7562,3}}, + {{0x135e,3},{0x5396,3}}, {{0x278dc,1},{0x27b0f,2}}, {{0x26c6,2},{0x159fd,7}}, {{0x857e,5},{0xcc3,4}}, + {{0x1062,8},{0x106a,9}}, {{0x134c,5},{0x1062f,5}}, {{0xd91,2},{0xb85,2}}, {{0x13680,5},{0x69ad,4}}, + {{0xb44,3},{0xee1,3}}, {{0x17bc,3},{0x283d,2}}, {{0x2c14,8},{0x206a,6}}, {{0x244a1,2},{0x806,2}}, + {{0xb8b,2},{0xb2f,1}}, {{0x16ae,3},{0x258e,6}}, {{0x4194,4},{0xaa7e,8}}, {{0xb44,3},{0x37f7,3}}, + {{0xbbf,2},{0x19517,3}}, {{0x397a,5},{0xe13f,6}}, {{0x16b86,6},{0x10569,3}}, {{0x3f70,7},{0x353d,5}}, + {{0xc1c,2},{0x1f,2}}, {{0x6d8e,3},{0x1b4f,3}}, {{0xd76,4},{0x6dd7,3}}, {{0x125c,8},{0x1264,8}}, + {{0x10ec,1},{0x2844,2}}, {{0xc67,2},{0x445a,3}}, {{0x27b4,3},{0x1719,3}}, {{0x1f159,4},{0x1089,2}}, + {{0x6f92,6},{0x6f68,18}}, {{0x10ca,1},{0x11f2,3}}, {{0x265b,4},{0x1c,1}}, {{0xa6ae,7},{0x674c,3}}, + {{0xccc,5},{0x103a,3}}, {{0xc7eb,7},{0x10a2,4}}, {{0x217e,9},{0x2187,6}}, {{0x166c,6},{0x66ac,7}}, + {{0xfdd,3},{0x4074,3}}, {{0x1a4e7,6},{0x1a4ed,3}}, {{0xa8e2,5},{0x12be,3}}, {{0x41be,3},{0x23537,4}}, + {{0xdd30,6},{0xce8,3}}, {{0xbe0,1},{0xc77,2}}, {{0x263d,5},{0x10b32,4}}, {{0x10ef,1},{0x2c00,3}}, + {{0xbeb,1},{0x17ae,1}}, {{0x240c3,3},{0x1493d,3}}, {{0x26963,5},{0x2b,1}}, {{0x189a6,6},{0xd7f,3}}, + {{0x6d81,3},{0xb6ff,4}}, {{0x1a4ba,7},{0x1ac7,2}}, {{0x271e,3},{0xb98,2}}, {{0x1aeda,5},{0x1208c,3}}, + {{0x449e,6},{0x31f8,4}}, {{0x13124,4},{0x2986,5}}, {{0xd54,1},{0x2f53,2}}, {{0xcd9,15},{0xce8,3}}, + {{0xae6,3},{0xb65,2}}, {{0xae0,1},{0xde9,1}}, {{0xc34,2},{0x5c5b,3}}, {{0xd13,3},{0xae4,2}}, + {{0x8716,4},{0x13dd3,4}}, {{0x2805d,2},{0x600e,3}}, {{0x10fb,3},{0xec2,2}}, {{0x5428,7},{0x11b8,4}}, + {{0x1d46,5},{0xbc4,7}}, {{0x5956,5},{0x180cf,4}}, {{0xdac,2},{0x284e,3}}, {{0x177e,5},{0xe91,6}}, + {{0xbcb,3},{0xbb4,3}}, {{0xeb95,6},{0x47b3,4}}, {{0x1084,3},{0xadf,2}}, {{0x278c9,2},{0x116c,2}}, + {{0x10f1e,6},{0xb2c,2}}, {{0x181c,3},{0x1438f,7}}, {{0x9b1a,5},{0xae7,1}}, {{0x364e,4},{0x181b8,4}}, + {{0x7c5a,6},{0x3291,5}}, {{0x1a038,5},{0xbbf,2}}, {{0x201eb,3},{0x20adc,4}}, {{0x27b95,4},{0x27a01,2}}, + {{0x969a,8},{0x11b8,4}}, {{0x278d6,1},{0x27a8b,2}}, {{0x2dfe,5},{0x8ba9,4}}, {{0x4c15,5},{0x2bfc,3}}, + {{0x102a6,5},{0x2af7,5}}, {{0x14260,5},{0xb79,2}}, {{0x10fb,3},{0xb8f,3}}, {{0xd1a,2},{0x108e,7}}, + {{0x13e14,7},{0x10dc,2}}, {{0x1b1cf,8},{0x10168,4}}, {{0x1b1f7,8},{0xfef0,4}}, {{0xc89,2},{0xae0,1}}, + {{0x26f1,8},{0x26f9,7}}, {{0xb6e,2},{0xb095,3}}, {{0x6b93,5},{0x1864,2}}, {{0x1e54,6},{0x7a5e,4}}, + {{0xb0d6,6},{0xb066,2}}, {{0x16ce,4},{0x2b,3}}, {{0x1095,3},{0x1843f,4}}, {{0x2700,5},{0x253a,4}}, + {{0x142e,1},{0xc6a9,3}}, {{0x209d,4},{0xbc1,2}}, {{0xbb5,1},{0x33b3,3}}, {{0xd41,3},{0x103a,3}}, + {{0x16140,6},{0x109f,3}}, {{0x278d6,1},{0x27a01,2}}, {{0xc1c,2},{0xb55,3}}, {{0x271e,3},{0x1b695,2}}, + {{0x177c,3},{0x11ef,2}}, {{0x36dd,3},{0x11b8,4}}, {{0x5a74,6},{0x296f,5}}, {{0xfdf,5},{0x18ca,3}}, + {{0x14bc2,5},{0x11b0d,5}} +}}; +constexpr std::array mpt_vocab = {{ + {0x18,13}, {0x25,11}, {0x1b4e4,1}, {0xb31,1}, {0x9c9,1}, {0x2446c,1}, {0x117c,1}, {0x2a948,1}, + {0x27cea,1}, {0x2445e,1}, {0x2445f,1}, {0x734,1}, {0x1b6cb,1}, {0x1ed58,1}, {0x432,1}, {0x9a9,1}, + {0x780,1}, {0x924,1}, {0x116c,1}, {0x278af,1}, {0x278a9,1}, {0x116d,1}, {0x116e,1}, {0x278dc,1}, + {0x278d6,1}, {0x27897,1}, {0x1b6ab,1}, {0x251cb,1}, {0x28634,1}, {0x18,1}, {0x7c4,1}, {0x24,1}, + {0x2864c,1}, {0x251df,1}, {0xd54,1}, {0xbe0,1}, {0x10ef,1}, {0x27b6,1}, {0xd5c,1}, {0xbe7,1}, + {0x43e3,1}, {0x10f0,1}, {0x10f6,1}, {0x423e,1}, {0xab9c,1}, {0x10f7,1}, {0x10ec,1}, {0x10f2,1}, + {0x1878,1}, {0xbe4,1}, {0x17ae,1}, {0x10ca,1}, {0xbeb,1}, {0x10f3,1}, {0x26c6,1}, {0x28da,1}, + {0x6ac5,1}, {0x1aaed,1}, {0x10fa,1}, {0x145a0,1}, {0x1ed53,1}, {0x1b4e3,1}, {0x22cf8,1}, {0x159c8,1}, + {0x948,1}, {0x2b2ff,1}, {0x28,1}, {0xbb5,1}, {0xaea,1}, {0x1c,1}, {0x1a,1}, {0x1e,1}, + {0x2d,1}, {0xae5,1}, {0x2b,1}, {0x142e,1}, {0xeb2,1}, {0xb2f,1}, {0xae0,1}, {0x1b,1}, + {0x1d,1}, {0x27,1}, {0x12fe,1}, {0xaf1,1}, {0xae7,1}, {0x1f,1}, {0xae2,1}, {0xb7d,1}, + {0xde9,1}, {0x21,1}, {0xaf2,1}, {0xd1b,1}, {0x24461,1}, {0x19,1}, {0x24462,1}, {0x112c,1}, + {0x1dec4,2}, {0x24733,2}, {0x6f96,2}, {0x1b25d,2}, {0x1cf1d,2}, {0x6f6c,2}, {0xf907,2}, {0x157a4,2}, + {0x5c78,2}, {0x1b6f5,2}, {0x2456b,2}, {0x244c3,2}, {0x244e7,2}, {0x70ce,2}, {0x70a2,2}, {0x70a6,2}, + {0xfeee,2}, {0xfb8b,2}, {0x1016a,2}, {0x70ca,2}, {0x410e,2}, {0x1019c,2}, {0xff22,2}, {0x70da,2}, + {0x70b4,2}, {0xfefe,2}, {0x1a328,2}, {0x70d2,2}, {0x6f8a,2}, {0x1015e,2}, {0x804,2}, {0x969,2}, + {0x25789,2}, {0x287e7,2}, {0x2ad8b,2}, {0x2dc04,2}, {0x287e0,2}, {0x2d951,2}, {0x2dc02,2}, {0x2dc00,2}, + {0x2dbfe,2}, {0x2dbfc,2}, {0x70c8,2}, {0x10192,2}, {0x70a0,2}, {0x709c,2}, {0x2dbfa,2}, {0x2dbf8,2}, + {0x2dbf6,2}, {0x2ce18,2}, {0x2d921,2}, {0x2aacb,2}, {0x1b6dd,2}, {0x1b6e1,2}, {0x2b890,2}, {0x2aa97,2}, + {0x2dbf4,2}, {0x2dbf2,2}, {0x2dbf0,2}, {0x2dbee,2}, {0x2474d,2}, {0x15b52,2}, {0xa4d,2}, {0x6f62,2}, + {0x244cb,2}, {0x244f5,2}, {0x244b9,2}, {0x2451f,2}, {0x244b3,2}, {0x244ad,2}, {0x2b854,2}, {0x244a1,2}, + {0x286bd,2}, {0x2c362,2}, {0x2dbec,2}, {0x24495,2}, {0x25212,2}, {0x2dbea,2}, {0x2dbe8,2}, {0x2dbe6,2}, + {0x2dbe4,2}, {0x2dbe2,2}, {0x2dbe0,2}, {0x2dbde,2}, {0x2d753,2}, {0x2dbdc,2}, {0x2dbda,2}, {0x2dbd8,2}, + {0x2dbd6,2}, {0x2dbd4,2}, {0xfed2,2}, {0x532,2}, {0x2dbd2,2}, {0x1b149,2}, {0x9e9,2}, {0x2dbd0,2}, + {0x2d755,2}, {0x2dbce,2}, {0x2d751,2}, {0x2dbcc,2}, {0x2dbca,2}, {0x2dbc8,2}, {0x2dbc6,2}, {0x2dbc4,2}, + {0x2dbc2,2}, {0x2dbc0,2}, {0x2dbbe,2}, {0x2dbbc,2}, {0x2d74e,2}, {0x2dbba,2}, {0x2dbb8,2}, {0x2dbb6,2}, + {0x2dbb4,2}, {0x30,2}, {0x2dbb2,2}, {0xa51,2}, {0x6f64,2}, {0x96f,2}, {0x96b,2}, {0x6f72,2}, + {0x1b23d,2}, {0x157f2,2}, {0xff26,2}, {0x159cb,2}, {0x1b887,2}, {0x24673,2}, {0x6f78,2}, {0xff02,2}, + {0x1b709,2}, {0x24873,2}, {0x1b205,2}, {0x6fae,2}, {0x244ed,2}, {0x159cd,2}, {0xab1,2}, {0xa4f,2}, + {0x6fac,2}, {0x244c7,2}, {0x6f66,2}, {0x27d99,2}, {0x6f90,2}, {0x2ae5b,2}, {0x157b6,2}, {0x244af,2}, + {0x20b23,2}, {0x24515,2}, {0x15798,2}, {0x806,2}, {0xc601,2}, {0x30,4}, {0xb44,3}, {0x1095,3}, + {0xaeb,2}, {0x2b,2}, {0xb64,2}, {0xb55,2}, {0x30,8}, {0x19b3,5}, {0xb78,2}, {0xb52,2}, + {0xd41,3}, {0x1a,2}, {0xc49,3}, {0x441c,3}, {0xceb,3}, {0xae6,2}, {0xc1c,2}, {0xb63,2}, + {0x10dc,2}, {0xb65,2}, {0xc67,2}, {0xb2e,2}, {0xc37,3}, {0x20bb,3}, {0x1084,3}, {0x261f,4}, + {0x2b,3}, {0x85de,4}, {0xb8f,2}, {0xba5,4}, {0x1257,2}, {0xcd9,3}, {0xb7f,3}, {0xb54,3}, + {0xb2c,2}, {0x46f4,4}, {0xb48,2}, {0x432,2}, {0xcb8,2}, {0x14260,5}, {0x30,16}, {0xb71,2}, + {0xbcb,3}, {0x19b3,4}, {0xb9d,3}, {0xc8a,2}, {0xdf0,2}, {0xb47,2}, {0xc25,4}, {0xb6c,3}, + {0xae7,2}, {0xb4b,2}, {0x3234,3}, {0xcc7,3}, {0xc30,2}, {0xb85,2}, {0xc55,2}, {0xadf,2}, + {0xc4d,2}, {0xcb5,3}, {0xb7d,2}, {0xc1e,2}, {0x177c,3}, {0x17bc,3}, {0x5483,4}, {0xbd6,2}, + {0xe6d,2}, {0x2445c,3}, {0xd0d,2}, {0x432,4}, {0x11ef,2}, {0xc89,2}, {0xb52,5}, {0x1150,2}, + {0x257a,4}, {0xb70,2}, {0x178c,3}, {0x3678,5}, {0x28,2}, {0xa7d,4}, {0x20f9c,6}, {0x11ba8,4}, + {0xae2,2}, {0x181c,3}, {0x10fb,3}, {0xddc,4}, {0x139f,3}, {0x5277,2}, {0xed0,3}, {0xb82,2}, + {0xb67,2}, {0x1b13e,3}, {0xfdd,2}, {0xb9c,2}, {0x70ea,3}, {0x30,6}, {0x4429,6}, {0xc77,2}, + {0x14cc,4}, {0xcfd,5}, {0x27d24,3}, {0x16bc,4}, {0xaea,2}, {0x30,32}, {0xd17,3}, {0xb72,2}, + {0x8b06,4}, {0x10ea,3}, {0xe64,5}, {0x265b,4}, {0xfb1,2}, {0xbb4,2}, {0xaec,2}, {0x7162,4}, + {0xd57,2}, {0x924,2}, {0xd65,3}, {0xbed,2}, {0x4450,4}, {0xca7,2}, {0xce8,3}, {0x271e,3}, + {0x70ea,5}, {0x716e,5}, {0x2446a,3}, {0x12fe,2}, {0x159c,4}, {0xb64,3}, {0x278ad,3}, {0xbbf,2}, + {0xb79,2}, {0xbc2,2}, {0xbde,3}, {0x1099,3}, {0x6b04,5}, {0x7c4,2}, {0xae6,3}, {0xcc0,3}, + {0xde4,2}, {0xf52,4}, {0xd7f,3}, {0x1095,4}, {0x6d81,3}, {0x1040,5}, {0x13bc,4}, {0xc25,3}, + {0x20b6,2}, {0x1ed49,3}, {0xbd4,2}, {0xc67,3}, {0x1ab2,4}, {0x432,8}, {0xc63,3}, {0x27b4,3}, + {0xb7c,2}, {0x6d8e,3}, {0xdba,4}, {0x22b5e,5}, {0x11f2,3}, {0xbc5,3}, {0xae9,2}, {0x1e74f,4}, + {0x2045,3}, {0xbe8,3}, {0xb63,3}, {0x6ac3,3}, {0xbd1,2}, {0x2bfd,2}, {0xc8e,3}, {0x1761,3}, + {0x10c8,3}, {0xeca,5}, {0x422e,3}, {0x5949,4}, {0xc7b,4}, {0x12d7,5}, {0xb7c,3}, {0x1a,3}, + {0x734,2}, {0xb6c,4}, {0x7c2,3}, {0x41da,3}, {0x430,3}, {0xde2,4}, {0xce2,3}, {0xcf0,2}, + {0x25f95,6}, {0x12be,3}, {0x2db8e,2}, {0x1cef,3}, {0x25633,6}, {0x14d5,3}, {0x323c,2}, {0x2c76,4}, + {0xc13,4}, {0x7276,4}, {0x1f,2}, {0xaca2,3}, {0x2796,3}, {0xcf6,3}, {0xb8b,2}, {0xc34,3}, + {0xd0f,4}, {0x27cc5,2}, {0xbb2a,4}, {0x103a,3}, {0x21f5a,6}, {0xfdf,2}, {0x1d8a,3}, {0xd0b,3}, + {0x11b8,4}, {0x20b19,6}, {0x5442,4}, {0x1489,3}, {0xeb3,3}, {0x11ef,3}, {0xbd8,2}, {0xb75,2}, + {0x2446f,2}, {0x1e45,3}, {0xc34,2}, {0x30,14}, {0xca7,3}, {0x6dd7,3}, {0x922,3}, {0x174e,3}, + {0xcce,3}, {0x41be,3}, {0xb2c,4}, {0x732,3}, {0x3df6,5}, {0x532,8}, {0xd1a,2}, {0xedb,4}, + {0x142c,3}, {0x251d8,2}, {0x1862,3}, {0x4459,3}, {0xbc1,2}, {0xc3d,3}, {0x2195,3}, {0xc2e,2}, + {0x4450,5}, {0x12ff,2}, {0x26b5,4}, {0xc62,3}, {0xd76,4}, {0xe78,3}, {0xbb4,4}, {0x278a7,3}, + {0x17bc,4}, {0x20c40,6}, {0xc52,2}, {0x4fbd,4}, {0x423c,3}, {0xc25,5}, {0x1051,4}, {0xb82,3}, + {0xc57,3}, {0xcb8,3}, {0xbd3,3}, {0xd7a,3}, {0x1098,4}, {0x1040,6}, {0x6b06,3}, {0x22e3,3}, + {0x6957,5}, {0x151c,4}, {0xc89,3}, {0x1055,3}, {0xadd,4}, {0x2af4,4}, {0x2bfc,2}, {0x16fc,4}, + {0x1173,2}, {0xbcb,5}, {0xcd5,2}, {0x2322,6}, {0x7c4,4}, {0x1aa6,3}, {0xd8f,3}, {0xba7,3}, + {0x1257,3}, {0x3e2a,3}, {0x26c4,3}, {0x16f8,3}, {0xb8a,2}, {0xea2a,5}, {0xb20a,7}, {0x8c4,4}, + {0xeb1,2}, {0x9a9,2}, {0x1a10,2}, {0x1916,5}, {0xeec,5}, {0x24475,6}, {0x30,64}, {0x23d9,3}, + {0x1ed51,3}, {0xc39,2}, {0xf85,4}, {0x5396,3}, {0x7102,5}, {0x16cc,4}, {0x10ba,2}, {0x253fb,3}, + {0xb8f,3}, {0xf6a,3}, {0xb98,2}, {0xc8f,2}, {0x17fbc,5}, {0xcd9,5}, {0x28633,2}, {0x2a891,3}, + {0xbc4,4}, {0xcab,3}, {0x5102,5}, {0xdd5,2}, {0x3640,4}, {0xcbd,3}, {0xb68,4}, {0xfde,2}, + {0xb30,2}, {0xb52,6}, {0xb6e,2}, {0xfe5,2}, {0x12fc,4}, {0x432,16}, {0x12878,5}, {0x804,4}, + {0x532,18}, {0x278a1,3}, {0x24a30,2}, {0xf14,2}, {0x1089,2}, {0x174c2,5}, {0x27d8b,2}, {0x1372,3}, + {0x1393,3}, {0xc17,3}, {0x532,4}, {0x67c0,3}, {0x4443,6}, {0x29da,3}, {0xe72,3}, {0x1cbf,5}, + {0x10c4,4}, {0x1c25,4}, {0x1a76,4}, {0xd0b,4}, {0x40b2,4}, {0x25639,6}, {0x2920,4}, {0x24a2d,2}, + {0xdfb,3}, {0x12f1,2}, {0x3e2a,4}, {0x1308,3}, {0x28c55,4}, {0x780,2}, {0x1b4f,3}, {0x2742,3}, + {0x2789b,3}, {0x2a16,3}, {0xaf1,2}, {0xab9a,3}, {0x3758,4}, {0x1b4b,3}, {0x25da,3}, {0xb73,2}, + {0x1bff5,7}, {0x5915,5}, {0x2cae,4}, {0x8716,4}, {0xd0c,2}, {0xb54,4}, {0x16dc,5}, {0xfed2,4}, + {0xfe1,4}, {0x11dd8,6}, {0x2db8c,2}, {0x7546,7}, {0x151f,3}, {0x1cec,6}, {0xd8e,4}, {0xce1,4}, + {0x5401,4}, {0x21,2}, {0x70ea,6}, {0x94a5,4}, {0xf59,3}, {0x141c,5}, {0x134c,5}, {0x3f9a,4}, + {0x2bfc,3}, {0x1719,3}, {0xeca,4}, {0xc956,7}, {0x263e1,6}, {0x28b1,3}, {0xdf6,3}, {0x108b,3}, + {0x532,16}, {0x1e,2}, {0x209d,4}, {0x1b9dd,7}, {0xdfa,3}, {0x122c,4}, {0x2788f,3}, {0x2793d,4}, + {0xec2,2}, {0xa7da,3}, {0x392d,3}, {0x26f1,4}, {0xd41,4}, {0x40b8,2}, {0x46f8,3}, {0x13e4,3}, + {0x41ef,2}, {0xb1f4,5}, {0x9423,3}, {0x141f2,5}, {0x20b1f,6}, {0x27cf4,4}, {0x22cda,7}, {0x26511,6}, + {0x10260,6}, {0xb590,6}, {0x30,10}, {0x2dcb,4}, {0x763c,3}, {0x1d5a,3}, {0xede,3}, {0x31e2,4}, + {0x1865,2}, {0xb4a,3}, {0x2b3c,3}, {0x251de,2}, {0x1f13,4}, {0x107ba,6}, {0x27ce8,3}, {0x7a6e,4}, + {0x17be,2}, {0x139c,6}, {0xba4a,6}, {0x1d55,4}, {0x1058,4}, {0x15a1,3}, {0x1e45,4}, {0x1c8f,3}, + {0x24f91,2}, {0x1d6bf,5}, {0x700f,3}, {0x591e,4}, {0x2f9b,3}, {0x13ed2,5}, {0x1761,4}, {0x10ec4,5}, + {0x20e8,4}, {0x122c,5}, {0x14b6,2}, {0x18d8,3}, {0x2a946,3}, {0x134f,3}, {0x139e,3}, {0x397a,5}, + {0x1843f,4}, {0xdbf,3}, {0xf212,3}, {0x32c0,6}, {0xb44,4}, {0x264c,4}, {0x25c5,5}, {0x2237,3}, + {0x2a91,4}, {0x29f18,3}, {0xfda,5}, {0x2af8,4}, {0x27e1c,2}, {0x10e1,3}, {0xda9,4}, {0x2349,4}, + {0x2971,3}, {0x139e,2}, {0x14dc,5}, {0x755e,6}, {0xf99,4}, {0x1a646,4}, {0xeec,7}, {0x2318,4}, + {0x2891,3}, {0xcd3,2}, {0x21be,4}, {0x1961,3}, {0x1b140,2}, {0x9e37,4}, {0x2211,3}, {0xfe38,4}, + {0x2c00,3}, {0x85de,5}, {0x278c9,2}, {0x51ec,5}, {0x28871,3}, {0x1a0d,5}, {0xbb15,3}, {0x8a46,6}, + {0x7156,6}, {0x25843,6}, {0xac8a,4}, {0x181e1,5}, {0x10b7,5}, {0x25c2,3}, {0x18ca,3}, {0x1cbf,4}, + {0x25a8b,6}, {0xe42,5}, {0x119c,7}, {0xbb1,3}, {0x162c,6}, {0x6f62,4}, {0x141b2,4}, {0x2896a,5}, + {0x24a41,2}, {0xa6c6,5}, {0x2a24,3}, {0x1dbe,5}, {0xcfd,6}, {0x25223,8}, {0x1afd,5}, {0x10fb,4}, + {0xc94b,5}, {0x114d,2}, {0x21bb0,5}, {0x17eff,5}, {0x132f,3}, {0x187c,3}, {0x4882,3}, {0x1098,3}, + {0x23ce,4}, {0xd91,2}, {0x20b5,3}, {0xa246,4}, {0x28be,3}, {0x710e,6}, {0xb55,3}, {0x13f2c,5}, + {0x12b1,4}, {0x1b0a,2}, {0x20bb,5}, {0x946,3}, {0x173e,3}, {0x1701,3}, {0xde2,3}, {0x10a78,6}, + {0xb7a,5}, {0xba5,5}, {0x219c,4}, {0xe75,5}, {0xbed,4}, {0x278f3,2}, {0x1843c,7}, {0x1b9bd,6}, + {0xdf5,4}, {0x39f8,5}, {0x12ac,5}, {0xd76,7}, {0x1e3b7,7}, {0x101b3,3}, {0x1675,2}, {0xc37,4}, + {0x1e54,6}, {0x9c9,2}, {0x29ecd,3}, {0xe64,4}, {0xcfd,4}, {0x725e,5}, {0x7c4,8}, {0x3fee,5}, + {0x256dd,6}, {0xa24a,3}, {0x3250,4}, {0x28db,3}, {0x143c,5}, {0x18d8,4}, {0x3678,6}, {0x267db,6}, + {0xc9a,2}, {0xc25a,4}, {0x1a5c,3}, {0x4450,7}, {0x1d8e,3}, {0x202c,3}, {0x1bfc,6}, {0xff7,5}, + {0x2563f,6}, {0x20f8e,7}, {0xcbc,4}, {0x159c,5}, {0x6ac3,4}, {0xfda,7}, {0xa5d6,7}, {0x24b7,5}, + {0x278c5,5}, {0x17e81,5}, {0x1260,4}, {0xded,5}, {0x11e0,4}, {0xb72,3}, {0x27895,3}, {0xf8a3,4}, + {0xcde,3}, {0xdd3,3}, {0x22525,5}, {0xbc6,2}, {0x5c76,4}, {0x1aa3,6}, {0xbd6,4}, {0x3e90,5}, + {0xc3a,3}, {0x2864c,2}, {0xf63,5}, {0x4c15,5}, {0x1dac,3}, {0xeb9,5}, {0x27c9b,2}, {0x1e45,6}, + {0x4d19,6}, {0x4a5b,5}, {0xe0a,5}, {0x194dd,9}, {0x948,2}, {0x135c,5}, {0x17660,6}, {0x704e,4}, + {0x24467,2}, {0x4979,4}, {0x1434,3}, {0x1b6b3,2}, {0x1b13e,4}, {0x1704,3}, {0xb49,2}, {0x21bd,5}, + {0x1035,5}, {0x24f87,2}, {0xc1e,5}, {0xadd,3}, {0x3694,4}, {0xb9f,2}, {0xe964,6}, {0xb066,2}, + {0x67aa,6}, {0x7276,5}, {0x29e8c,3}, {0x298a,2}, {0xb54,2}, {0xd8b0,5}, {0x1a9d,3}, {0x3e29,5}, + {0x27cb9,2}, {0x26583,4}, {0xbe33,8}, {0x1498,3}, {0x2554d,6}, {0xb74,2}, {0x2b5b9,2}, {0x20,2}, + {0x1b4f,4}, {0x10b7,4}, {0x26c4,4}, {0xdba,6}, {0xd5e,4}, {0x2d44,4}, {0x1ad2,5}, {0x2ae0,5}, + {0x14a8,4}, {0x10e6a,6}, {0x16ef,4}, {0xbc18,5}, {0x4a27,4}, {0x1480,2}, {0x1611,3}, {0xd461,8}, + {0x67a6,3}, {0x70b0,4}, {0x51ab,5}, {0xf01,4}, {0x1bdb,3}, {0x924,3}, {0xbb5,3}, {0x532,24}, + {0xae8,2}, {0x2a9a8,2}, {0x278b5,2}, {0x1520,2}, {0xfc9,6}, {0xe2fd,6}, {0x10c3,5}, {0xbb26,8}, + {0x100d,5}, {0x44b8,5}, {0x122c,6}, {0x10ed,2}, {0x124c,5}, {0x74e6,9}, {0xacd5,4}, {0xca1,2}, + {0x172c8,8}, {0xa60f,3}, {0x1d0d5,6}, {0x12ff,3}, {0xd8ad,8}, {0x12d5,4}, {0x2106,6}, {0x7fda,4}, + {0x1e6c,6}, {0x1362,3}, {0x2b76,3}, {0xb493,4}, {0x20563,3}, {0xb8c,2}, {0x1051,7}, {0x1c43,4}, + {0xf10,3}, {0x1995d,7}, {0x20d86,7}, {0x15d3e,6}, {0x30f5,4}, {0xb215,6}, {0xd14,4}, {0x2e55,5}, + {0x74ba,3}, {0x202c,5}, {0xf0e,6}, {0x30,12}, {0x25df,4}, {0x1af8,5}, {0x1081,3}, {0x140a,2}, + {0x1955b,9}, {0x11dc,8}, {0x2520a,2}, {0x1ad0,7}, {0xfed0,6}, {0xcc3,4}, {0x5d5b,5}, {0x4d97,2}, + {0x66d0,4}, {0xe77,3}, {0x2160,5}, {0x28652,2}, {0xfed0,4}, {0x2d10,6}, {0xbeb,2}, {0x1864,2}, + {0x1ee0,3}, {0x67a6,4}, {0x2ed0,7}, {0xdc1,5}, {0x16e2,2}, {0xc32,5}, {0x14dc,7}, {0x17981,6}, + {0x2bdb2,4}, {0x27e2b,2}, {0x278e1,2}, {0x43e5,3}, {0x278ed,2}, {0x432,32}, {0x94ba,6}, {0x532,32}, + {0x260b1,6}, {0x5dbb,4}, {0xd0f,6}, {0x24460,2}, {0x2939,3}, {0xf52,5}, {0xb4e4,4}, {0x6b5f,4}, + {0x11c66,5}, {0x1498,4}, {0xb66,2}, {0xfda,11}, {0xc51,2}, {0x35ec,6}, {0xcfd,7}, {0xf60,3}, + {0x4ab0,3}, {0xc29,2}, {0xde9,4}, {0x24468,2}, {0x278db,2}, {0x11e6,6}, {0xdd2,4}, {0x254a9,5}, + {0x2bb3e,3}, {0x2202,3}, {0x4284,2}, {0x532,12}, {0x290c,2}, {0xf96,4}, {0x94a2,7}, {0x116c,2}, + {0x3234,6}, {0x16dc,4}, {0xf05,7}, {0x9a9,3}, {0x27901,5}, {0xdde0,5}, {0x318c,5}, {0x21ba,8}, + {0x1d315,6}, {0x1e105,6}, {0xd0fc,4}, {0x3a39,3}, {0x5915,6}, {0x1cec,5}, {0xbcc2,3}, {0x2db1,3}, + {0x1866,3}, {0x1045,3}, {0x151c,6}, {0x13cac,6}, {0x70a8,4}, {0x6107,3}, {0x1152,3}, {0x2aa8,6}, + {0x25837,6}, {0xcd9,4}, {0x1421,3}, {0x11c4,6}, {0xbac,4}, {0x25523,6}, {0xa2ca,8}, {0x3789,3}, + {0xe70,4}, {0x6735,4}, {0x2445e,2}, {0x22827,6}, {0x24f9a,3}, {0x30,128}, {0x22e6,5}, {0xb99,2}, + {0x290e,4}, {0x36cc,6}, {0x8ec8,4}, {0xbddb,8}, {0x28e8e,2}, {0x278cf,2}, {0x1307,3}, {0x9b1a,5}, + {0x6008,4}, {0x13df6,6}, {0x1a3a,6}, {0x278af,2}, {0x43bd,4}, {0xeec,6}, {0x1ba5,3}, {0x2b3e,4}, + {0x3d9d,5}, {0x1361,2}, {0x10569,3}, {0x20b60,7}, {0x2522c,8}, {0xd90,2}, {0x20f72,7}, {0x31e0,5}, + {0xa29a,5}, {0x167c,5}, {0x5288,5}, {0x3f7e,6}, {0x16ce,4}, {0x1cec,8}, {0x1a88,3}, {0x5a67,7}, + {0x11b2,4}, {0x1d46,4}, {0xd45,4}, {0x4460,3}, {0x6045,4}, {0x16ac,5}, {0x24a30,3}, {0xc65f,7}, + {0xa7d,6}, {0x5324,5}, {0x140f,5}, {0x2279,4}, {0x82ba,6}, {0x5949,6}, {0x734,4}, {0xbc1,3}, + {0x263f,3}, {0x2dc3,3}, {0x2862e,2}, {0x283e,2}, {0xd76,5}, {0x3402,7}, {0x25c27,6}, {0x1934,4}, + {0x14fc,5}, {0x28f6,2}, {0x1e92f,7}, {0x15a70,2}, {0x1cee,3}, {0x90e2,4}, {0x3242,5}, {0x4a68,5}, + {0x70a0,4}, {0x1cce,6}, {0x1621,4}, {0x229f,5}, {0x1f,4}, {0x2a88c,3}, {0x1077e,7}, {0x20ca,10}, + {0x25c39,6}, {0x3db0,5}, {0xdba4,4}, {0x29e87,3}, {0x40b6,3}, {0x17ac,3}, {0x278d5,2}, {0x88ea,5}, + {0x2a885,2}, {0x88ce,4}, {0x4590,5}, {0x1d,2}, {0xf63,7}, {0x1ae2,2}, {0x374a,6}, {0x12972,6}, + {0x17fc,5}, {0x2abe,5}, {0x2746,3}, {0xb2d,3}, {0x11c52,8}, {0x24460,3}, {0xb12e,3}, {0xc25,6}, + {0x2841e,3}, {0x600c,6}, {0x28765,6}, {0x12f0,4}, {0x532,34}, {0x139e,4}, {0xd51,2}, {0xaf3,4}, + {0x16dc,7}, {0x92b6,5}, {0xf8cf,2}, {0x194a,5}, {0x250c,5}, {0x19c9,3}, {0x6d9b,5}, {0x21aad,6}, + {0xbb2,2}, {0xb141,3}, {0x27cf6,2}, {0x593c,5}, {0x1408,3}, {0x1a30,3}, {0xaf0,2}, {0xfef0,4}, + {0x3788,3}, {0x1930,3}, {0xf0e,5}, {0xc8f3,5}, {0x1561,3}, {0xddc,5}, {0x2c0fe,3}, {0xd256,4}, + {0xb77,3}, {0x27e20,2}, {0x1b57,4}, {0x2868,4}, {0x78b2,5}, {0xdef,3}, {0xee8,3}, {0x20c32,7}, + {0x7526,5}, {0x5af9,3}, {0x1097,5}, {0x27c97,3}, {0x251fe,2}, {0x278a9,2}, {0x33d3,5}, {0x6ac5,2}, + {0x8056,9}, {0x4d33,7}, {0xdfe,5}, {0x1171,2}, {0x17b3a,5}, {0x27ad3,2}, {0x101a,3}, {0xc1ae,6}, + {0xf63c,2}, {0xc8a3,3}, {0xdf9,5}, {0x4569,5}, {0x15694,5}, {0x296f,5}, {0x1bfc,9}, {0x1292,3}, + {0xd8e,9}, {0x27c7f,4}, {0x10504,4}, {0x2c,2}, {0x278c7,3}, {0xaad,6}, {0x26583,6}, {0x1278,4}, + {0x13b5,7}, {0x257c,2}, {0xb60,2}, {0x1db15,5}, {0xba4a,5}, {0x1140,3}, {0x153c,6}, {0x10a78,7}, + {0x20f6b,7}, {0xb92c,7}, {0x3fab,2}, {0x152c4,2}, {0x1d4c5,7}, {0xb03a,3}, {0xd6be,7}, {0x7a5e,4}, + {0x7297,3}, {0xbc65,8}, {0x28a2,4}, {0x2daa,5}, {0x145f0,4}, {0xa7d1,2}, {0x10e2b,3}, {0x4074,3}, + {0x13c05,7}, {0x1a51d,5}, {0x5fe0,4}, {0x27b95,4}, {0x6f21,4}, {0x3062,4}, {0x101b2,4}, {0x229b,9}, + {0x1972,2}, {0x364e,4}, {0x1c65,6}, {0x1687,3}, {0x20209,5}, {0x15c03,9}, {0x415c,5}, {0x4326,4}, + {0x10f1e,6}, {0x4875,5}, {0x3782,5}, {0x3a3b,3}, {0x104f9,5}, {0xee1,3}, {0xe3fa,7}, {0xd57,5}, + {0x7bbe,8}, {0x3996,5}, {0x4606,3}, {0x474f,6}, {0x256b,4}, {0x1e045,8}, {0x2bfba,4}, {0x1b693,2}, + {0x9001,4}, {0xedb,5}, {0x1f0f,3}, {0x20d9,4}, {0x5f90,3}, {0x887b,3}, {0x1bc6d,7}, {0x103b,5}, + {0xd1a,7}, {0x35fd,3}, {0x179cf,2}, {0x3e58,4}, {0x1b46f,5}, {0x70dc,4}, {0x1904,3}, {0x51c5,5}, + {0xac8c,2}, {0x76c6,9}, {0x1f3b,4}, {0x261f,5}, {0x140c,8}, {0x1c705,5}, {0xe4a,4}, {0x2113b,7}, + {0x1ed0,4}, {0x28e7a,2}, {0xdc0,6}, {0x17a3e,5}, {0x11b3a,7}, {0x22804,7}, {0x141e,3}, {0x20ed,3}, + {0xaef,3}, {0x2e52,8}, {0x1b80,4}, {0x3004,9}, {0x27b03,2}, {0xeb9,4}, {0xe39a,4}, {0x1254,3}, + {0x27e35,2}, {0x2db90,2}, {0xcd4,4}, {0x10d70,7}, {0xe2c0,4}, {0x6f74,4}, {0x2d386,3}, {0x1a730,5}, + {0x1915,6}, {0x127ce,6}, {0xdac,2}, {0x11964,10}, {0x176ba,6}, {0x1357,5}, {0x27e3a,2}, {0x70ac,4}, + {0xae4,2}, {0x28cf,3}, {0xcf3e,2}, {0xc9f,4}, {0x4351,2}, {0x4d56,4}, {0x32d5,4}, {0x782e,7}, + {0x3e16,3}, {0x1c25,3}, {0xce3,2}, {0x10870,6}, {0x27c9d,4}, {0x286a6,2}, {0x40bc,4}, {0x2a93a,2}, + {0x278b3,4}, {0x3a3e,7}, {0x8a3a,6}, {0x128aa,7}, {0x135d6,5}, {0xff20,4}, {0x17b31,6}, {0xe830,5}, + {0x1b25b,4}, {0x68ae,6}, {0x19a76,3}, {0x579c,8}, {0xa6c6,7}, {0x101c,2}, {0x3988,6}, {0x166c,6}, + {0x2844,2}, {0x732,4}, {0x889f,3}, {0x443e,2}, {0x80ce,6}, {0xc3e,2}, {0xc78,3}, {0x5ea0,4}, + {0x16ac9,5}, {0x4e6b,8}, {0xa7d8,2}, {0x1995d,9}, {0x5aab,3}, {0x15484,8}, {0x3704,6}, {0x1aa3,10}, + {0xcbd4,6}, {0x2288,4}, {0x924,4}, {0x583f,3}, {0x11e4,4}, {0x8a8e,6}, {0x19a74,5}, {0x27b0f,2}, + {0x61c6,5}, {0x251d1,7}, {0x1065,3}, {0x1525,7}, {0x220f,5}, {0xe8d5,7}, {0x108e,7}, {0x5b1d,5}, + {0x2a90,2}, {0x10f8,2}, {0xd15,5}, {0x6604,6}, {0x1cce,8}, {0x12fc,7}, {0x27897,2}, {0xecc,3}, + {0x2748,2}, {0xfffb,2}, {0x36be,5}, {0xa7ed,4}, {0x5136,6}, {0x3ed6,5}, {0x51af,5}, {0x251dc,2}, + {0x39ce,5}, {0x278a3,2}, {0x29e80,2}, {0x19e4,3}, {0x12fe,3}, {0x62ca,9}, {0x70c6,4}, {0x290f,3}, + {0x1b08,3}, {0xf629,5}, {0x27c6d,4}, {0x44b8,6}, {0x2e44,5}, {0x102f,6}, {0x2bea,7}, {0x7f5a,8}, + {0xee5,3}, {0xca3,4}, {0x1a51f,3}, {0x2944,4}, {0x3a57,3}, {0x2204f,7}, {0x150ba,3}, {0x15ac,5}, + {0x2d6a7,3}, {0xe5d,2}, {0x229b,5}, {0x1ead7,8}, {0x2a9d0,2}, {0x288cf,2}, {0x30ba,5}, {0x8a49,2}, + {0x600c,8}, {0x3624,6}, {0x1fe4,5}, {0x1377,5}, {0xc13,3}, {0xf1f,5}, {0x5ca5,5}, {0xc57,4}, + {0x70f6,4}, {0x59f5,6}, {0x25202,2}, {0x1f8f,13}, {0xd0c8,4}, {0x8fee,4}, {0xe99,3}, {0xd041,6}, + {0x8c4,10}, {0xec5,5}, {0x1d59,4}, {0xbaa2,4}, {0xf40c,5}, {0xe75,6}, {0x9133,3}, {0x1459e,3}, + {0xc60,3}, {0xbe85,5}, {0x411c,4}, {0xc6a9,3}, {0x27b09,2}, {0x845e,6}, {0x31d2,6}, {0x10594,6}, + {0x16125,5}, {0xe9b,3}, {0x5cd6,3}, {0x1555,7}, {0xf96,7}, {0x256b,5}, {0x27903,3}, {0xaad1,3}, + {0x31f8,4}, {0x12332,5}, {0x1d448,5}, {0x18eb,5}, {0x4cd8,6}, {0x1b6ab,2}, {0xba65,6}, {0x11b94,6}, + {0x22c0,3}, {0x197ec,9}, {0xfb1,3}, {0xceb,4}, {0x432,3}, {0xb170,7}, {0x1aa3,13}, {0x177c,4}, + {0x145e4,4}, {0x1d1d5,7}, {0x1961,6}, {0x10f1,2}, {0x27a13,2}, {0xb75,3}, {0xd8e,3}, {0x16c55,9}, + {0x14e2,3}, {0xc99,3}, {0x25ee,4}, {0x3598,5}, {0x14bc,7}, {0x27a2b,2}, {0x89b9,4}, {0x1aee,6}, + {0x267dd,4}, {0xdf5,3}, {0xb7f,6}, {0x741a,7}, {0x2848,2}, {0xa162,6}, {0x3af4,8}, {0xbb5,2}, + {0x14e1,4}, {0x1ba1d,8}, {0xf47,4}, {0xd8ad,11}, {0x295c,5}, {0x2ab6,5}, {0xcd1e,7}, {0xc7b0,4}, + {0x4453,4}, {0xd08e,5}, {0x2843a,2}, {0x159c,8}, {0x2867e,2}, {0x6a39,6}, {0x1fb7,5}, {0x4f65,3}, + {0x10e20,4}, {0x2bb2,8}, {0x14fc,4}, {0x540e,5}, {0xbace,7}, {0xef9f,7}, {0x5eb6,4}, {0x267e1,6}, + {0x284e,3}, {0x43ac,7}, {0xdd5,4}, {0x27d1b,2}, {0x2075c,7}, {0xe4d,6}, {0x46fa,4}, {0x3cba,3}, + {0xfdf,3}, {0xc20,5}, {0x1ed69,3}, {0x3e92,3}, {0x102f9,3}, {0x94b5,5}, {0x3bc2,4}, {0x533e,6}, + {0x5560,10}, {0x1865,4}, {0x6783,5}, {0x24a35,2}, {0x16fc,5}, {0x27c3,4}, {0x20bc9,5}, {0xf30,5}, + {0x6b52,4}, {0x30c8,5}, {0x27acd,2}, {0x15fea,5}, {0x1175c,7}, {0xfe6f,8}, {0x105a8,6}, {0x12143,2}, + {0x5365,6}, {0x3c36,11}, {0xcfe9,6}, {0x27aeb,2}, {0x30f2,7}, {0x41da,4}, {0x127a9,5}, {0x1a266,4}, + {0x1037,6}, {0x1a94,6}, {0x1425b,3}, {0xff56,6}, {0x25225,6}, {0x78ca,4}, {0x27af1,2}, {0xb9a,6}, + {0x673a,5}, {0xba60,11}, {0xe1d,3}, {0x3fee,10}, {0x30,48}, {0x14316,5}, {0x27c73,4}, {0x180c,4}, + {0xfef4,4}, {0xd48,2}, {0x1eaa7,5}, {0x2226e,5}, {0xe1c,4}, {0xc12a,6}, {0xbc18,6}, {0x428b,2}, + {0xfdd,3}, {0x18a5,5}, {0x12e90,9}, {0xbcc0,5}, {0x1d445,8}, {0x4905,4}, {0xd692,6}, {0xe376,9}, + {0x28438,4}, {0x52c6,3}, {0xcdf,3}, {0x4fbd,7}, {0x7d6e,6}, {0x1aff,3}, {0x43a2,3}, {0x1c95d,8}, + {0x8c45,4}, {0x12f1,3}, {0xa2d6,5}, {0x2988,4}, {0x27c67,4}, {0x25cf3,6}, {0x2912,4}, {0x27ac1,2}, + {0xd5c,2}, {0x1dd95,7}, {0xfee4,4}, {0x2ce6,9}, {0xc65,5}, {0x220a3,7}, {0x29,2}, {0x17a59,6}, + {0x14ee2,4}, {0x162c,8}, {0x263bd,6}, {0x13b8a,7}, {0x4f6f,5}, {0x6735,5}, {0xb401,2}, {0xd44,5}, + {0xe8d,3}, {0xbd5,2}, {0xd461,11}, {0x114e6,5}, {0xca6,3}, {0x7c5a,6}, {0x1daad,5}, {0x1931,6}, + {0x21e8a,3}, {0x709c,4}, {0x12116,5}, {0x14a7,5}, {0x2b4c,4}, {0x253a,4}, {0x7c4,16}, {0xf8d1,2}, + {0x1ed3,3}, {0x1395a,6}, {0x27ac7,2}, {0xa846,7}, {0x541b,7}, {0x3eba,8}, {0x2eb9,4}, {0x1cefd,5}, + {0x2bb6a,4}, {0x948,4}, {0xe7b,3}, {0x159f,4}, {0x17ec,5}, {0x27ae5,2}, {0x143c,8}, {0x15b3f,2}, + {0x10c8,4}, {0x4f2e,5}, {0x2a715,4}, {0x1a730,9}, {0x3e04,5}, {0x35ec,5}, {0x3640,7}, {0x5a52,4}, + {0x58c7,6}, {0x3de8,5}, {0x1c68,3}, {0x27af7,2}, {0x19e0,7}, {0x3162,5}, {0xc32c,3}, {0x25b43,6}, + {0xed8f,5}, {0x145ee,6}, {0x2a896,4}, {0x69f7,3}, {0x12a9e,6}, {0x1491,4}, {0x1bde,6}, {0x27e43,3}, + {0x8c4,6}, {0xb493,5}, {0x1a30,5}, {0x12ae,3}, {0x1700,4}, {0x2793d,5}, {0xe867,7}, {0xb76,3}, + {0xbb4,3}, {0x12fc,5}, {0x22a75,7}, {0x4701,5}, {0x18094,6}, {0x1dec2,4}, {0xb8d,3}, {0x1d55,8}, + {0x532,10}, {0xcd4,3}, {0x2791d,2}, {0xf21,3}, {0x2a982,5}, {0x4e98,3}, {0xa22e,4}, {0xbe1,2}, + {0x1a11,2}, {0x24531,4}, {0x1772f,7}, {0x3776,3}, {0x532,6}, {0x17ee,3}, {0x579c,11}, {0x1105e,5}, + {0x14a6,6}, {0x4178,4}, {0x5734,7}, {0x10fd,2}, {0x4362,4}, {0x17b3a,7}, {0x10e1,5}, {0x1429c,10}, + {0x6103,5}, {0x10ca,2}, {0x90a6,8}, {0x27ab5,2}, {0x2de9,7}, {0x5191,8}, {0x78d6,5}, {0x5442,5}, + {0xf5e,3}, {0x250a,7}, {0x1084,4}, {0x3e12,5}, {0x2574,2}, {0x278bd,2}, {0x3058,12}, {0x2610,8}, + {0x999a,9}, {0x133c,6}, {0xeb3d,7}, {0x48ae,6}, {0x48ae,9}, {0x1e90f,8}, {0x2b70f,7}, {0xf38f,3}, + {0xf02,3}, {0x3640,8}, {0x4106,4}, {0x28e2,4}, {0x27abb,2}, {0xc70,4}, {0x1971,2}, {0xae1,3}, + {0xb6d2,5}, {0x20c52,3}, {0x190ed,8}, {0xfef8,6}, {0x79d6,4}, {0x88de,5}, {0xb70,3}, {0xca95,5}, + {0xb24c,7}, {0x37f7,3}, {0x51ee,3}, {0x14bc,5}, {0x26a9,5}, {0x21db,7}, {0x4415,2}, {0xce1,3}, + {0x715a,3}, {0x2d6aa,3}, {0x4ae5,5}, {0x9c9,4}, {0x1d5b0,5}, {0x3846,4}, {0x14bb4,2}, {0x27aaf,2}, + {0x22cd3,7}, {0x1bfcd,8}, {0x18898,5}, {0x1f2c5,2}, {0x2d12,4}, {0x415e,3}, {0x6595,8}, {0x6c08,4}, + {0x14934,2}, {0x2d6a4,3}, {0x6137,5}, {0x5444,3}, {0x2c2da,3}, {0x159c9,4}, {0xeb9,6}, {0xcc2c,5}, + {0x4de1,3}, {0x116d,2}, {0x2c5f,4}, {0xb2c5,6}, {0x13e3,4}, {0xe6d,4}, {0x22567,4}, {0x762a,4}, + {0xaa98,2}, {0x3bfe,7}, {0xf29,3}, {0x27aa9,2}, {0x80be,4}, {0x7522,9}, {0x1197,4}, {0x2db92,2}, + {0xbcb,6}, {0x92ce,6}, {0x28632,3}, {0x3921,5}, {0x156c6,5}, {0x1058,9}, {0x21d31,7}, {0xf8de,4}, + {0x15c6f,9}, {0x16973,6}, {0x84f6,4}, {0x705a,4}, {0x278a7,4}, {0x2ed0,9}, {0x15c61,3}, {0x1402,3}, + {0x4491,6}, {0x4290,4}, {0x27d20,2}, {0x12d3c,6}, {0x12800,6}, {0xf39e,4}, {0xd0f,11}, {0x4e6b,9}, + {0x1178e,10}, {0x261bf,6}, {0x28f6,3}, {0x4f55,10}, {0x1ebd9,8}, {0x54aa,7}, {0x373c,8}, {0x27c85,4}, + {0x22525,6}, {0x28753,8}, {0xae1,2}, {0x1d957,8}, {0x15ec,10}, {0x6f23,2}, {0x23bb,4}, {0x28,3}, + {0x441c,5}, {0x2a85,6}, {0xc9e,3}, {0xcf3,3}, {0xa82e,4}, {0x10ee2,7}, {0x2209c,6}, {0x20dcc,7}, + {0x16ae,3}, {0x12ec,8}, {0xf5f6,2}, {0xed47,4}, {0x7db6,8}, {0x1e737,8}, {0x2bb4a,4}, {0x2d02,6}, + {0x12cb0,6}, {0x21d8c,7}, {0x10e1a,6}, {0x106ca,5}, {0x30,22}, {0x251ff,2}, {0xaf5d,2}, {0xb264,4}, + {0x446a,5}, {0x1d46,5}, {0x2c2d,3}, {0xe36,5}, {0xb4a,2}, {0xdb6d,10}, {0x9319,3}, {0x194b9,5}, + {0xcedb,2}, {0x4119,3}, {0x2ddc,6}, {0xa4c9,3}, {0xcc00,5}, {0x4b0a,4}, {0xc5ff,4}, {0x8c46,4}, + {0x16ae,2}, {0x12fc,10}, {0xfb89,4}, {0x28d79,5}, {0xa2c1,4}, {0xe0f,11}, {0x1491,7}, {0xd7dc,6}, + {0xe3fa,6}, {0x3e58,7}, {0xaea,3}, {0x13bc,7}, {0x4db5,6}, {0x348e,7}, {0x3598,7}, {0x279ef,2}, + {0xd0c7,5}, {0x430,4}, {0x2ffb,3}, {0x741a,11}, {0x24fd,5}, {0xea35,7}, {0x674c,3}, {0xbd6,8}, + {0x279d1,2}, {0x2646b,6}, {0x17bf9,6}, {0x1c4ed,6}, {0x3242,7}, {0x2be6,4}, {0x2674b,4}, {0xcd65,4}, + {0x193ab,6}, {0x2dfe,5}, {0x1eea9,8}, {0x2324,4}, {0x34a2,4}, {0x2020b,3}, {0x24a40,3}, {0x20763,6}, + {0xa830,2}, {0x5275,4}, {0xca5,2}, {0x120d3,4}, {0xd0a4,7}, {0x14ff0,4}, {0x4ee7,6}, {0xeb5,4}, + {0x24a2f,2}, {0xba2c,4}, {0xc77,4}, {0x1cee,4}, {0x7524,6}, {0x1c1d9,4}, {0x181c,4}, {0x59f2,9}, + {0x1fb2,5}, {0x21a0,3}, {0xdd1a,6}, {0x21333,7}, {0x146c,6}, {0x16f1,3}, {0xbac3,8}, {0x734,8}, + {0xd892,3}, {0x974e,5}, {0x18532,4}, {0x180e,2}, {0x7702,5}, {0x1ddfd,8}, {0x53a6,6}, {0x251ea,2}, + {0x1daa,4}, {0x15adc,2}, {0x24a2f,3}, {0x1538,4}, {0x16272,6}, {0x2aea3,2}, {0x278ad,4}, {0x27a8b,2}, + {0x2557d,6}, {0x2c132,4}, {0x4a84,3}, {0x4694,5}, {0x8686,5}, {0x4c27,5}, {0x198f5,5}, {0x85de,7}, + {0x443d,3}, {0x2137,4}, {0x2bfbc,2}, {0xa2c0,5}, {0x314d,3}, {0x80ce,10}, {0x12d6e,4}, {0xcd2,6}, + {0x5b6b,12}, {0x24a8,6}, {0xe69,3}, {0x2859,5}, {0xe9f,3}, {0x22f92,7}, {0x5a40,5}, {0x27983,2}, + {0xd91,3}, {0x1dfbf,8}, {0xfd9e,4}, {0xf46,2}, {0x148c,12}, {0x1290,3}, {0x511c,6}, {0x1c29,6}, + {0x267ed,6}, {0x281d,5}, {0x1f3a,3}, {0x168d1,9}, {0x20,3}, {0xb590,7}, {0x6cbe,4}, {0xaefa,4}, + {0xb8e,2}, {0x27d0f,2}, {0x2c5a,9}, {0x11946,5}, {0xc27,4}, {0x1f0e9,8}, {0x8a46,5}, {0x1d22,6}, + {0x12d0a,5}, {0x2d5d,4}, {0x27a0d,2}, {0xb68,3}, {0x1762,3}, {0xc2cc,9}, {0x2eb4,9}, {0x14dc,9}, + {0x1ae4e,2}, {0xff52,4}, {0x279f5,2}, {0x145e4,6}, {0xf6a,5}, {0x6672,5}, {0xc0c3,3}, {0x3e50,8}, + {0x119c,12}, {0x21ba2,7}, {0x82de,6}, {0xff52,10}, {0x1062,6}, {0x40f8,4}, {0x4266,5}, {0x539c,3}, + {0x26571,6}, {0x1375c,6}, {0x159c9,6}, {0x38eb,3}, {0x5575,4}, {0x1b,2}, {0xc22,3}, {0x1fff1,7}, + {0xef94,7}, {0x80bd,4}, {0x734a,4}, {0x17fe,3}, {0x14eb3,3}, {0x6a8f,5}, {0xcc2c,6}, {0x1c0bd,6}, + {0x2213f,6}, {0xb857,4}, {0x3fdc,4}, {0xd57,3}, {0x19908,4}, {0x27923,2}, {0x95fe,8}, {0x2270f,6}, + {0xd11d,5}, {0x1029c,6}, {0xebf8,11}, {0x2680,5}, {0x19929,7}, {0x2636f,6}, {0x37cd,5}, {0x4d08,4}, + {0x6735,10}, {0xb257,5}, {0x2aebe,3}, {0x288eb,5}, {0x49ac,2}, {0x70d4,4}, {0x2e69,5}, {0xbcbd,8}, + {0x8956,10}, {0x27c79,4}, {0x109f,3}, {0x79f9,4}, {0xc52,3}, {0xb996,4}, {0x1c92,6}, {0x13af4,10}, + {0x1d59,3}, {0x21afd,4}, {0x1490,3}, {0x24705,4}, {0x41eb,4}, {0x3392,6}, {0x2683,5}, {0x2c76,7}, + {0x2c92,6}, {0xdf3,3}, {0x1a7a,3}, {0x15b0,3}, {0x2a625,4}, {0x12a30,6}, {0x4653,5}, {0x7522,8}, + {0x198f1,9}, {0x1d8b7,8}, {0x22b65,6}, {0xfda,6}, {0xd51,3}, {0x122c,10}, {0x15c2a,5}, {0x16424,9}, + {0xe938,9}, {0x18a5,4}, {0x30bc,3}, {0x40bb,5}, {0x2ff6,8}, {0x1bfcd,7}, {0x2b03,5}, {0x255d1,6}, + {0xc4e,2}, {0xaf62,2}, {0x1279c,6}, {0x75cd,4}, {0xae0,2}, {0xe49,4}, {0x198a0,7}, {0xec6d,3}, + {0x147c,5}, {0x1bc6d,8}, {0x28e89,2}, {0x27d39,3}, {0xa5de,4}, {0x7972,6}, {0x107d,4}, {0x4dcf,9}, + {0xf8e1,4}, {0x120d0,7}, {0xb0d2,4}, {0xe2ff,4}, {0x4e97,3}, {0x15583,3}, {0x2cae,5}, {0x41be,4}, + {0x3640,12}, {0x5d34,5}, {0x19216,6}, {0xe7b,4}, {0x675f,6}, {0x6b6c,5}, {0x6d9d,3}, {0x132f0,6}, + {0x60cf,8}, {0x1df47,8}, {0x2613f,6}, {0x22827,7}, {0x25559,6}, {0xdcb,7}, {0x27959,2}, {0x21960,7}, + {0xb56,2}, {0x1dcf,3}, {0x5bc6,7}, {0x27995,2}, {0x1def7,7}, {0x9b11,5}, {0x1960,7}, {0xc095,6}, + {0xf96,5}, {0x1b13e,5}, {0xd0fc,5}, {0x4e85,5}, {0x8482,7}, {0x535b,5}, {0x122ba,6}, {0x29e78,3}, + {0x257a,5}, {0x1ae4,7}, {0x17afb,5}, {0x11e28,5}, {0x1b22,3}, {0xc5ce,6}, {0x2585,4}, {0x1d11,5}, + {0x80c2,6}, {0x2a96c,2}, {0xa6ea,8}, {0x27a01,2}, {0x12b26,4}, {0x2ae93,2}, {0x1140,4}, {0x20bc9,7}, + {0x7792,9}, {0x17966,5}, {0x3a3e,6}, {0x2aa0,3}, {0x1d5af,6}, {0x67b2,5}, {0x2b783,2}, {0xaeca,5}, + {0x106ca,7}, {0xd89f,3}, {0xb871,8}, {0x24430,2}, {0x9b62,6}, {0xdd0,3}, {0x27977,2}, {0x72da,4}, + {0x47ad,5}, {0x5a8e,6}, {0x256ec,3}, {0x3dd1,2}, {0x2b54,8}, {0x1ae32,2}, {0xbdaf,8}, {0x62ed,4}, + {0xceaa,6}, {0x21637,6}, {0x18dc3,8}, {0x1c56,7}, {0xde1,2}, {0xb6a3,6}, {0x30,18}, {0x459e,4}, + {0x4a75,6}, {0x26a6,8}, {0x177e,2}, {0x31c8,4}, {0x2e55,3}, {0x1f3ee,2}, {0x8092,6}, {0x7c2,4}, + {0x25819,6}, {0x312a,5}, {0x1daf,5}, {0x17e81,9}, {0x1abd7,2}, {0x319a,5}, {0x41dc,2}, {0xb6cf,8}, + {0x5365,5}, {0x294ca,4}, {0x24a40,2}, {0x1773,3}, {0x1d4c5,8}, {0xbddd,6}, {0xcf68,2}, {0x27e2a,2}, + {0x162e0,6}, {0x1b140,3}, {0x4fa3,7}, {0xc46e,7}, {0x2153b,6}, {0x789a,7}, {0xc675,5}, {0x5f8a,9}, + {0x16ee,2}, {0x3203,3}, {0xe08,7}, {0x2b5e,9}, {0xb63,4}, {0xfd25,4}, {0x25801,6}, {0x2745,3}, + {0x972a,5}, {0x1436e,5}, {0xa3ea,12}, {0x2df5,3}, {0x1be25,7}, {0x8986,7}, {0xe97a,6}, {0x255b9,6}, + {0x2912,5}, {0x20bd,3}, {0x48a4,3}, {0x41b3,4}, {0x143c,10}, {0x1df5f,8}, {0x9aae,8}, {0x3234,4}, + {0x2106,5}, {0xcc0e,3}, {0x2b8d,4}, {0x1a732,3}, {0x2bca,4}, {0x218d,5}, {0x440f,2}, {0xc8c,5}, + {0x101b,3}, {0xa2be,5}, {0x2840,2}, {0x3409,5}, {0x1468,4}, {0x279c5,2}, {0x279fb,2}, {0x136c,6}, + {0xcb50,7}, {0x7bbe,10}, {0x94ba,7}, {0x143be,5}, {0xd0fe,3}, {0xa564,6}, {0x10706,10}, {0x2a955,5}, + {0x28d4,6}, {0xae3,2}, {0x2a95,5}, {0x77a2,3}, {0xa252,5}, {0x295c,4}, {0x1878,2}, {0x1dff,2}, + {0xc1a,4}, {0x1a0f,3}, {0x25a91,6}, {0x9e9,4}, {0xbe5f,10}, {0x410c,4}, {0x10e1,8}, {0x702e,3}, + {0x76bd,6}, {0x27a73,2}, {0x2446e,3}, {0x2c202,3}, {0xeee,5}, {0x1d395,6}, {0x1da3d,8}, {0x9a9,4}, + {0x1717,5}, {0x22453,7}, {0xeb2b,6}, {0x175c,9}, {0x1a8d,5}, {0x2d64,6}, {0xf6e4,5}, {0x1d89,2}, + {0x4031,3}, {0x3787,4}, {0xe858,4}, {0x1d30d,8}, {0x5ceb,4}, {0x27ad9,2}, {0x12116,7}, {0x24c9b,6}, + {0x142c4,8}, {0xd5e,7}, {0x15dc,6}, {0xc76,5}, {0x53f4,5}, {0x21e8a,4}, {0x2237,4}, {0xf5f4,2}, + {0x101d4,6}, {0x27a49,2}, {0xf37d,7}, {0x8ffe,7}, {0x18be,5}, {0x760b,3}, {0x286a,2}, {0x12b69,4}, + {0x111d0,10}, {0x144e0,10}, {0x20fb8,7}, {0x2549d,6}, {0x22bc7,2}, {0x13914,10}, {0x2d10,9}, {0xaaec,2}, + {0xb28e,5}, {0x10b3,4}, {0x17ec,4}, {0x4c90,4}, {0x5220,8}, {0x1053,5}, {0x3fb6,5}, {0x1ecf1,8}, + {0x229b,13}, {0x1ed4,6}, {0x4f2e,11}, {0xddd5,5}, {0x15bdf,9}, {0xc50d,5}, {0x115c,2}, {0x26c6,2}, + {0xfe6f,10}, {0x428d,3}, {0x8d16,5}, {0xa096,7}, {0x2282,6}, {0x61ac,6}, {0x12d5a,6}, {0x94a2,6}, + {0x2789b,4}, {0x18457,7}, {0x41ba,4}, {0x263d,5}, {0x17e03,7}, {0x19cdc,4}, {0x2a94b,3}, {0x532,20}, + {0x2b6ee,2}, {0x228e,3}, {0xe03,4}, {0x70a0,6}, {0x11df,5}, {0x17336,6}, {0x27ce2,4}, {0x1e26f,7}, + {0x5ead,5}, {0xe70,5}, {0x1434,6}, {0x1040,8}, {0xd60,5}, {0x4189,3}, {0x2abe,6}, {0x2a8e7,5}, + {0x4c28,4}, {0x82ee,7}, {0x11f57,6}, {0x2878d,4}, {0x13a2,2}, {0xcb7,2}, {0x12576,9}, {0x4a30,4}, + {0x2598,8}, {0x19552,8}, {0xa19,4}, {0x1c99d,7}, {0xfe5,6}, {0x1afd,11}, {0xc6d,7}, {0x21581,6}, + {0x89ca,3}, {0x27e48,3}, {0x28420,3}, {0xa7fe,12}, {0xb49e,4}, {0x288f,5}, {0x12bc,5}, {0xee2,2}, + {0x27a79,2}, {0xb609,6}, {0x1e105,7}, {0x2151,5}, {0xe0e2,8}, {0x224ed,7}, {0x227a,3}, {0x2797d,2}, + {0xa848,5}, {0x14ee4,2}, {0x1f0f,4}, {0x9e02,12}, {0x14eb0,6}, {0x2976,3}, {0x432,64}, {0x804,8}, + {0x25635,4}, {0x66ae,5}, {0x3626,4}, {0x1d6cf,7}, {0xff4e,4}, {0x11f9a,6}, {0x27a07,2}, {0x3cc8,4}, + {0x14fc,8}, {0xe124,11}, {0x1155e,10}, {0x107e,5}, {0x1826b,5}, {0x794e,7}, {0xa2e2,5}, {0x3cc2,9}, + {0x2b808,4}, {0x27a6d,2}, {0x18859,9}, {0xc25,9}, {0x11c2a,10}, {0x1023,7}, {0x11b6,5}, {0x31c4,8}, + {0x190ed,9}, {0x6de9,5}, {0x22b2d,7}, {0xbe85,6}, {0x1b5ff,4}, {0x5a5a,7}, {0x1e6f7,8}, {0x10cbe,4}, + {0x236d1,5}, {0x10974,9}, {0x21557,6}, {0x24ba,3}, {0x6a34,11}, {0x31d2,9}, {0x5080,9}, {0xd44b,11}, + {0x36dd,3}, {0x4bba,10}, {0x2732,4}, {0xf74,4}, {0x52a2,6}, {0x3a3e,5}, {0xcbf,4}, {0x18ea4,9}, + {0x288b9,5}, {0x7a06,5}, {0x3cb4,9}, {0x1ce75,8}, {0xd440,10}, {0x14bb5,2}, {0x2b8e,2}, {0xcd30,4}, + {0x1712f,3}, {0x1694,2}, {0x740e,5}, {0x10f1e,9}, {0x532,40}, {0x1c975,8}, {0x24f88,2}, {0x21afa,7}, + {0x160b0,8}, {0xf482,3}, {0x61e0,9}, {0x9169,3}, {0xacba,5}, {0x3c28,9}, {0xe830,7}, {0xd7c1,5}, + {0x2130b,5}, {0xbc39,9}, {0x1f211,5}, {0x45a9,6}, {0x293a6,5}, {0x27989,2}, {0xf3a0,2}, {0x10196,4}, + {0x6373,9}, {0x11572,9}, {0x10d20,6}, {0x16640,8}, {0x415c,4}, {0x77aa,11}, {0x2900,4}, {0x1d0fd,8}, + {0x10468,6}, {0x256eb,4}, {0x16a2,3}, {0x1cec,10}, {0x4575,2}, {0x13f54,6}, {0x1e87f,7}, {0xfc8b,5}, + {0x18565,9}, {0x22a3,2}, {0x17de,2}, {0x17253,6}, {0x25fe9,6}, {0x9813,5}, {0x1d73,8}, {0x1089,3}, + {0xe34a,5}, {0x791e,8}, {0x20f79,7}, {0xc51,4}, {0x25da3,5}, {0x2bea,10}, {0x9eaa,8}, {0x1019,4}, + {0x6b6e,3}, {0xb065,3}, {0x2bd32,3}, {0x267e7,6}, {0x166c,4}, {0xf82b,3}, {0x4e63,4}, {0xfc6a,5}, + {0x278bc,2}, {0x417a,2}, {0x131b0,5}, {0x101e,7}, {0xb1f4,7}, {0x3a22,4}, {0x16a4,4}, {0x12008,8}, + {0x2098b,2}, {0xb9e,2}, {0x112c,2}, {0x702a,4}, {0x4354,4}, {0xd0ff,2}, {0x14bc,4}, {0x2b8e,3}, + {0x27283,5}, {0xfed0,8}, {0x21b2e,4}, {0x8aa6,6}, {0x2ab6,8}, {0x3e04,8}, {0x1fb2,8}, {0xbd90,3}, + {0xfed0,10}, {0x18e6,5}, {0x114f,3}, {0x150b8,5}, {0x21060,7}, {0xa59a,6}, {0x212df,6}, {0xc76,9}, + {0xf49e,4}, {0x2a912,2}, {0x30,20}, {0xba81,8}, {0xcf5,2}, {0x130c,7}, {0x1ac2e,6}, {0xa45d,4}, + {0x1710,6}, {0xa02a,6}, {0xb6ff,4}, {0x3c20,3}, {0xc788,11}, {0xd8ce,6}, {0x144d6,10}, {0x13612,5}, + {0x3d0e,7}, {0xebf,3}, {0x24c83,6}, {0x2798f,2}, {0x1c54d,8}, {0x27905,2}, {0x78a2,4}, {0x6f36,3}, + {0x1abd9,2}, {0x1a1f7,2}, {0x27cbf,2}, {0x363a,5}, {0x288cf,3}, {0x540e,7}, {0x3948,5}, {0xb889,6}, + {0x27e20,3}, {0x12d5,7}, {0x7a46,4}, {0x8c4,18}, {0x229fe,7}, {0xcc21,10}, {0x15e3a,9}, {0x265d,3}, + {0x141fc,10}, {0x4de3,3}, {0x123c,9}, {0x103c8,9}, {0x18055,6}, {0x175d0,9}, {0x16316,9}, {0x10c8,5}, + {0x80aa,7}, {0x1499,2}, {0x2132c,7}, {0x101e,12}, {0x6783,7}, {0x15ac,7}, {0x19ace,6}, {0x72b6,3}, + {0x132f0,9}, {0xa469,5}, {0x24,2}, {0x1308,4}, {0xafde,7}, {0x22100,5}, {0x13a18,6}, {0x24bd,4}, + {0x995e,8}, {0xf99e,5}, {0x1342,6}, {0x22187,6}, {0x3e20,7}, {0x7f6c,6}, {0x1614,7}, {0x7cf6,8}, + {0x9d18,6}, {0x40c0,4}, {0x6894,10}, {0x1757,5}, {0x7b76,9}, {0x2e8a,8}, {0x257a,7}, {0x17476,4}, + {0x1a32e,4}, {0xda9,5}, {0x3ba5,4}, {0x2c38,4}, {0xfebc,6}, {0x71da,6}, {0x88f6,9}, {0x2799b,2}, + {0x28d1,3}, {0x1ebf1,8}, {0x825a,10}, {0x30,256}, {0x9b41,5}, {0x1144,4}, {0x2aeb3,2}, {0xb8d,5}, + {0x1cf1b,4}, {0x2cf34,2}, {0x12b66,7}, {0x1018,3}, {0x1687,5}, {0x267ef,4}, {0x11e28,8}, {0x10ef,2}, + {0xbeb,6}, {0x5c62,6}, {0xdfab,3}, {0x1d4a5,8}, {0x44df,4}, {0x893e,5}, {0x9e3e,8}, {0x9d12,12}, + {0x50fd,5}, {0x2bb3e,4}, {0x161c,9}, {0x279b9,2}, {0x554f,2}, {0x21bf6,7}, {0xf579,5}, {0x5365,8}, + {0x1cbd5,8}, {0x5bac,12}, {0x18d60,8}, {0xfcaf,2}, {0x2a8f1,4}, {0x11c02,10}, {0xd645,7}, {0x5f01,4}, + {0x16772,5}, {0xb22b,8}, {0x28743,8}, {0x2106,8}, {0x8a49,3}, {0x12fc,3}, {0x1e8af,7}, {0x2a9ac,2}, + {0xbd7,3}, {0x6b54,2}, {0x18f7c,7}, {0x4452,5}, {0x1a67,7}, {0x18ac6,8}, {0xc21,4}, {0x2427,3}, + {0xf212,6}, {0x11ec,5}, {0xf018,8}, {0x17981,9}, {0x1bdcd,8}, {0x84dd,5}, {0x17672,6}, {0xb4a,4}, + {0x1b09,3}, {0xbb73,5}, {0x5143,7}, {0x3774,4}, {0x4338,8}, {0x47aa,7}, {0xbafa,5}, {0xe397,7}, + {0x21e88,5}, {0x9b92,7}, {0x3942,11}, {0x2a24,6}, {0xe011,5}, {0x15ac,10}, {0xa7f4,3}, {0xc1c4,5}, + {0x9b0e,8}, {0x1a9a8,6}, {0x582d,4}, {0x3fb8,3}, {0x372a,4}, {0xe44,3}, {0x26285,6}, {0x1e67f,7}, + {0xd0b2,7}, {0x1e27,6}, {0x251db,2}, {0x10e51,2}, {0x18268,8}, {0x2043,5}, {0x22499,6}, {0x12d3,6}, + {0xe2fd,5}, {0x30,30}, {0x10e3,3}, {0x1d8c,3}, {0x2061,5}, {0x27d4,4}, {0x12f94,8}, {0x1b237,4}, + {0x9ad2,7}, {0xb87,3}, {0x6fc2,6}, {0x115b8,10}, {0xeb48,9}, {0x2474d,4}, {0x4971,5}, {0xfef0,6}, + {0x101b6,7}, {0x5254,5}, {0x1172,3}, {0xb173,4}, {0xb887,8}, {0x5e73,5}, {0x33b3,3}, {0x22ca2,7}, + {0x2098,3}, {0x5268,3}, {0x3baa,9}, {0x92f2,5}, {0x1509a,4}, {0x50ce,8}, {0x14fba,2}, {0x5a94,3}, + {0x25205,2}, {0x522d,5}, {0xc33,4}, {0xb6b9,5}, {0x17eed,9}, {0x8c2a,6}, {0x152d2,2}, {0x3838,8}, + {0xbde,4}, {0x3f62,5}, {0x3f2a,13}, {0x55d5,8}, {0xba6b,10}, {0x19a4,6}, {0x384a,3}, {0x6f21,5}, + {0x2790b,2}, {0x16d5c,9}, {0xd54,2}, {0x21d2,6}, {0x12580,10}, {0x177b6,9}, {0x5aae,4}, {0x2a96b,2}, + {0x432,12}, {0x1b9bf,4}, {0x12a62,7}, {0xdb7f,4}, {0x2322,7}, {0x884,4}, {0x25e6d,6}, {0x112e8,8}, + {0x2b75,5}, {0xdf2,3}, {0x27911,2}, {0x19204,8}, {0x1318b,4}, {0x10f4,2}, {0x2bdc,7}, {0x2604b,6}, + {0xee4a,6}, {0xc8b1,7}, {0x3ce4,7}, {0x18bcb,9}, {0x1adc3,6}, {0x24432,4}, {0x17e27,6}, {0x750e,4}, + {0x10472,4}, {0x331c,5}, {0x3694,5}, {0x6846,8}, {0x15d47,6}, {0x278b6,2}, {0x4037,4}, {0x5269,5}, + {0x3a14,6}, {0x27a97,2}, {0x285b,3}, {0x2b34d,4}, {0x579e,6}, {0x4282,4}, {0x27a7f,2}, {0xf367,5}, + {0x10fd2,8}, {0xa6ba,9}, {0x1afd,14}, {0x13a3,3}, {0x4194,5}, {0x1d3bd,6}, {0x2e52,6}, {0x113ce,10}, + {0x6164,3}, {0x5fc7,4}, {0x1c63d,8}, {0xe75,4}, {0x10188,4}, {0x18538,6}, {0x43a5,3}, {0xc64,2}, + {0x9af6,6}, {0x10de8,8}, {0x181e1,9}, {0x1016,4}, {0xa246,7}, {0x281f,3}, {0x25e21,4}, {0x2ce6,14}, + {0x1b5a,5}, {0x5d97,5}, {0x17a74,8}, {0x3bf9,5}, {0x1a35,5}, {0x16e3,2}, {0x53a6,7}, {0xecb3,8}, + {0xadd,7}, {0x317e,6}, {0x670e,6}, {0xb17b,7}, {0x20e7a,3}, {0x70d8,4}, {0x8686,9}, {0x254f3,6}, + {0x1ed57,2}, {0xf40e,3}, {0x17eff,9}, {0x16fcf,3}, {0x4df1,5}, {0xa762,8}, {0x951e,8}, {0x2610,6}, + {0x20bbb,7}, {0x2c11a,4}, {0x22dd,3}, {0x1f019,5}, {0x4652,6}, {0x22566,5}, {0x1667,5}, {0x24b7,6}, + {0x72da,3}, {0x1152,5}, {0x14ce4,6}, {0x27a3d,2}, {0x1aa3,15}, {0x5d16,4}, {0x2b4b,4}, {0x253e9,6}, + {0xaee9,2}, {0xc2ea,3}, {0xdbf,7}, {0x27d06,4}, {0xc95d,4}, {0x2562d,6}, {0x8a48,4}, {0xc50,2}, + {0xeb4,3}, {0x7445,5}, {0x46e4,3}, {0x100b0,2}, {0xeb6,3}, {0x616b,7}, {0x7562,3}, {0x2793f,3}, + {0xac7e,5}, {0xa22e,7}, {0x193b,5}, {0x2796,4}, {0x12c4c,5}, {0x1221a,7}, {0x21e8f,7}, {0x145e6,4}, + {0x1b2e3,3}, {0x11ef0,9}, {0x1193,3}, {0xb32,3}, {0xf6ce,4}, {0x3004,13}, {0x27a31,2}, {0x28a02,5}, + {0x179e4,6}, {0x70f0,6}, {0x272d,5}, {0x1299e,4}, {0xafc6,4}, {0x16529,9}, {0x1c215,8}, {0xc416,9}, + {0xa04b,3}, {0x9cbe,9}, {0x1cff1,8}, {0x30,24}, {0xf99b,8}, {0xe2b0,10}, {0x59fb,4}, {0x20f17,7}, + {0x605a,12}, {0x4ee5,8}, {0xb2db,5}, {0x3fe0,5}, {0xb0ce,3}, {0x2a8b2,4}, {0x392c,4}, {0x27917,2}, + {0x4f6f,12}, {0x27c9a,3}, {0x156c8,3}, {0xc8bc,6}, {0x22a9f,5}, {0x10f6,2}, {0x1bb2d,8}, {0x27a91,2}, + {0x27e16,3}, {0x3fee,12}, {0x177ec,9}, {0x274b,5}, {0x8d52,7}, {0x92c2,6}, {0x12c33,5}, {0xbfc4,6}, + {0x1c,2}, {0x667f,7}, {0x1a326,4}, {0x168ad,7}, {0x3296,9}, {0xc30,3}, {0x6e5e,5}, {0x16664,9}, + {0xacba,4}, {0x16af,3}, {0x21ba,5}, {0x1960,4}, {0x3245,4}, {0x1771d,8}, {0x8446,9}, {0xb5f3,11}, + {0x21ce4,7}, {0x41da,5}, {0x1bfc9,4}, {0x40b6,4}, {0x56cc,7}, {0x4687,5}, {0xc801,9}, {0x9844,6}, + {0x681f,7}, {0xecf,4}, {0xe76a,11}, {0x4b30,3}, {0x1da35,8}, {0x2866a,2}, {0x1042,4}, {0x7b33,7}, + {0x167c,6}, {0x279cb,2}, {0x27ca5,2}, {0x1b695,2}, {0x1b280,5}, {0x4286,2}, {0xf85,13}, {0x2a6bb,4}, + {0x2188c,7}, {0x102c,2}, {0xf535,5}, {0x9a2f,3}, {0x8e12,6}, {0x21407,7}, {0x240c,6}, {0xa2be,7}, + {0x2c0a,3}, {0x2421,7}, {0x27d3b,2}, {0x1d6bf,8}, {0x92d0,4}, {0x279bf,2}, {0x1b6dd,4}, {0x4034,7}, + {0x68c2,4}, {0x28da,4}, {0xe7f,7}, {0x70d0,4}, {0x97de,9}, {0x125cc,4}, {0x98f2,5}, {0x21944,5}, + {0x145e6,2}, {0x8a0a,6}, {0x397a,6}, {0x1b79,3}, {0x27a9d,2}, {0x348e,9}, {0x16edf,7}, {0x15bf1,6}, + {0x128d5,4}, {0x1bc5,5}, {0xb002,5}, {0x1101e,4}, {0x11662,10}, {0xc593,4}, {0xfa14,4}, {0xd5b6,6}, + {0x1ba95,7}, {0x20869,5}, {0xca6,2}, {0x1c4d9,4}, {0x4417,2}, {0x17cc,4}, {0x5aa8,6}, {0x14bb0,2}, + {0x68ae,8}, {0xa38a,9}, {0x169f,3}, {0x2275,4}, {0x967e,4}, {0xb592,5}, {0x81e7,6}, {0x2df0,8}, + {0x4076,4}, {0x17cda,9}, {0xbc70,8}, {0x20bb,6}, {0x10283,4}, {0x272d,4}, {0x19cb,4}, {0xc30,7}, + {0x1c08d,8}, {0x2c338,4}, {0x1e5fc,3}, {0x4ab6,6}, {0x1aafc,4}, {0x13852,4}, {0x21a24,7}, {0x84a6,5}, + {0x17714,8}, {0x7e91,4}, {0x28e6d,4}, {0x30,26}, {0xb469,4}, {0x67c0,4}, {0x12378,10}, {0xaee7,2}, + {0x27a43,2}, {0x1b3c0,5}, {0x1d145,8}, {0x15f44,4}, {0x1e93f,8}, {0x10b4a,6}, {0xc845,7}, {0x2ede,6}, + {0x5956,8}, {0x11b0d,5}, {0x24525,4}, {0x2ec7,4}, {0x1a330,2}, {0x1852f,7}, {0x55f6,6}, {0x1644,5}, + {0x184cf,6}, {0x185b,3}, {0x9166,6}, {0xbb3,2}, {0x27637,6}, {0xc58,3}, {0x3718,3}, {0x20aa9,2}, + {0x170c,10}, {0x1010a,4}, {0x948,8}, {0x1f013,5}, {0x855a,10}, {0x11658,10}, {0x10f1e,10}, {0x218d9,6}, + {0x21699,7}, {0xf28,3}, {0x18619,7}, {0x2182,5}, {0x944e,6}, {0x279a1,2}, {0x15ae3,2}, {0x54af,4}, + {0xb9b,3}, {0x226e5,7}, {0x2b72b,6}, {0x6b61,2}, {0x28522,2}, {0x94ae,12}, {0x5306,4}, {0x27cc3,4}, + {0xe695,4}, {0x9aae,11}, {0x19bd,5}, {0x28137,5}, {0x25d55,6}, {0x1d3d5,8}, {0xaca2,4}, {0x532,66}, + {0x12e18,10}, {0x5c98,5}, {0x16e3,3}, {0x27d2,6}, {0x21e7,14}, {0x1574b,2}, {0x261f,6}, {0x1a81d,2}, + {0x2bb00,4}, {0x446a,4}, {0x1955e,6}, {0x4e44,12}, {0x2ab6,13}, {0x17ac,4}, {0x121e1,6}, {0x2baf8,6}, + {0x1d72f,7}, {0x354d,4}, {0x1c65d,7}, {0x4eed,9}, {0x966a,9}, {0x2a530,4}, {0xde6f,10}, {0x2a9ac,3}, + {0x1402,2}, {0x36b0,6}, {0x16f1e,9}, {0x24f92,2}, {0x13f13,5}, {0x17a59,5}, {0x246c,8}, {0x9fbe,7}, + {0xaeb,3}, {0x16505,6}, {0x1b4c,3}, {0x269d8,2}, {0x1ab2,5}, {0x179c0,6}, {0x146c,9}, {0x27e39,3}, + {0x17cf5,8}, {0xb60f,4}, {0x21da,8}, {0x2a689,4}, {0x267d5,6}, {0xcb9d,11}, {0x3ae6,10}, {0x94f6,7}, + {0xfb7c,4}, {0x14c8a,10}, {0xf905,4}, {0xadaa,5}, {0x8e12,8}, {0x227d,5}, {0x27d1e,4}, {0x3a36,2}, + {0x14dc,6}, {0x1a05,8}, {0x1a1f4,2}, {0x1a874,6}, {0x13d42,7}, {0x51b8,7}, {0x3656,4}, {0x416a,6}, + {0xe4c,7}, {0x434f,2}, {0x15c15,5}, {0x5a4d,8}, {0x113ba,8}, {0x2d0ee,2}, {0x1f62,9}, {0x1b5c,3}, + {0x5ea0,6}, {0x2dc0,6}, {0x25002,2}, {0x1e1f,8}, {0x951a,12}, {0x8560,6}, {0x24af9,2}, {0x15d50,6}, + {0x1a622,5}, {0x17405,9}, {0x27caf,5}, {0x21230,5}, {0x16d2,2}, {0x2a562,4}, {0x13e8c,5}, {0x17ce,2}, + {0x807a,8}, {0x28431,2}, {0x1036,3}, {0xaf49,4}, {0x1d3dd,8}, {0x27a55,2}, {0x1861,3}, {0xf30,11}, + {0x10e4,6}, {0x116ee,10}, {0xc229,4}, {0x27e34,3}, {0x13b37,3}, {0x1c4f5,8}, {0xadce,5}, {0x1cce,10}, + {0xf63,12}, {0x189af,6}, {0x319d,4}, {0x5476,4}, {0xc4c,3}, {0xdd1,2}, {0x1d6cf,8}, {0x1615b,6}, + {0x1c83,5}, {0x69ce,3}, {0x12496,4}, {0x1168a,7}, {0x30,28}, {0x256d,3}, {0xa036,10}, {0x2c24a,4}, + {0xa4b,4}, {0x20a0,3}, {0x12cc4,10}, {0x278a1,4}, {0x14012,9}, {0x21d8,10}, {0x2693,4}, {0x80d3,5}, + {0x184f0,8}, {0x70c8,4}, {0x1de95,8}, {0x1e95f,8}, {0x89c8,5}, {0x107e,6}, {0x1cac,4}, {0x1d98,3}, + {0x11554,10}, {0x2a93f,2}, {0x1bb35,6}, {0xe9f3,6}, {0xfda0,2}, {0xddc,6}, {0x2030,4}, {0x22a1a,7}, + {0x1cccd,7}, {0x5e80,5}, {0x16a78,8}, {0x3a84,8}, {0x5194,5}, {0x9952,12}, {0x4a5b,6}, {0xfefc,4}, + {0x20bd0,7}, {0x1660a,9}, {0xc828,4}, {0x437e,4}, {0xce52,7}, {0x6a37,8}, {0x8fe2,4}, {0x67a5,5}, + {0x1b6cb,2}, {0xbb94,10}, {0x3cc2,10}, {0x12c92,5}, {0xf69,3}, {0xb0d1,5}, {0x70f6,7}, {0xb86,3}, + {0x2ae0,6}, {0x1259,2}, {0x18850,8}, {0x2a594,4}, {0x2a5c6,4}, {0x29c28,4}, {0x12af8,8}, {0x27a4f,2}, + {0xcc00,7}, {0xf5e,5}, {0x23eae,5}, {0x5ed4,4}, {0x64d7,7}, {0x10029,3}, {0xb31,2}, {0xb5f8,6}, + {0xd0af,10}, {0x2cae,8}, {0x1a06,7}, {0x61fa,9}, {0xaeee,4}, {0x1740e,8}, {0xe367,4}, {0x251e8,4}, + {0xb99,3}, {0x6067,7}, {0x1ed4b,2}, {0xd9f,8}, {0x3336,7}, {0x162c,10}, {0x1513,5}, {0xbe0,2}, + {0xbfd5,8}, {0x19533,4}, {0x4834,5}, {0xbc0,2}, {0x16706,6}, {0x3996,8}, {0xd7b0,11}, {0x14dc,4}, + {0x3afc,4}, {0xc46e,10}, {0xc17,5}, {0xc8dd,4}, {0x27ca3,4}, {0x260a5,6}, {0xccd1,6}, {0x179ce,3}, + {0x17b70,6}, {0x293d8,4}, {0x82ea,11}, {0x77da,9}, {0x10a82,10}, {0x2be4,6}, {0xd511,8}, {0x151e,4}, + {0x135c,6}, {0x2844,3}, {0x1dc85,7}, {0x6221,6}, {0x1bbe5,7}, {0x6c0a,2}, {0xf44,7}, {0x2a657,4}, + {0x326c,4}, {0x15c27,8}, {0x2b265,2}, {0x35b4,5}, {0xca3,5}, {0xceb,5}, {0x7512,4}, {0x2b325,2}, + {0x1b203,4}, {0x4e85,7}, {0xb01a,4}, {0x279a7,2}, {0x47b3,3}, {0x1c47,6}, {0x20e04,7}, {0x17e93,5}, + {0x4194,6}, {0xc63e,8}, {0x971a,4}, {0x16ad2,9}, {0x9071,5}, {0x1c3b5,6}, {0x2a85,7}, {0x4288,2}, + {0x831a,10}, {0xb87c,6}, {0x135ea,6}, {0x10b0e,6}, {0xd5cc,6}, {0xb78,3}, {0xa15d,4}, {0x1ecf9,6}, + {0x10119,2}, {0x20f9e,4}, {0x16a78,9}, {0x1bd9d,8}, {0x41f6,4}, {0xc1f0,11}, {0x25f63,6}, {0x12a5,7}, + {0x13b84,5}, {0x3f7e,7}, {0x6103,7}, {0x1eb1c,4}, {0x1068e,7}, {0x1d25d,8}, {0x15b8e,9}, {0x26007,6}, + {0x12bc4,3}, {0x6c3c,5}, {0x2798,2}, {0x279e3,2}, {0x28c23,5}, {0x124e,3}, {0x1bf6,4}, {0x1e467,8}, + {0x61c6,6}, {0x1d4fd,7}, {0x3db0,6}, {0x2700,5}, {0x172b2,4}, {0x1ab7,4}, {0x88f6,8}, {0xc49a,11}, + {0x12b5c,10}, {0x9b41,3}, {0x18d69,9}, {0xd0a4,6}, {0x1283c,7}, {0x85de,10}, {0x279d7,2}, {0x5f28,7}, + {0x9e9,10}, {0x4fb0,11}, {0x1c835,8}, {0x27a19,2}, {0x2bb32,4}, {0x127d8,6}, {0x10d98,5}, {0x8484,5}, + {0x21ba,11}, {0x27cf8,2}, {0x75b2,5}, {0x9232,9}, {0x11630,10}, {0x10008,4}, {0x15837,5}, {0x27a5b,2}, + {0xc8d2,6}, {0x1adf,5}, {0x4186,4}, {0x1332c,10}, {0x725e,7}, {0x254af,6}, {0x78a6,7}, {0x1590a,2}, + {0x2747,3}, {0x279ad,2}, {0x43e3,2}, {0x5c62,7}, {0x160c,8}, {0x20ea7,7}, {0xcfd,9}, {0x6e03,4}, + {0x6742,5}, {0x79d2,8}, {0x848e,12}, {0x13110,10}, {0x3c13,3}, {0x1253a,7}, {0x3fdb,5}, {0x7f5a,12}, + {0x220c6,7}, {0x4a82,8}, {0x1409,2}, {0x9ff5,4}, {0x734b,3}, {0x2a9d2,4}, {0x21e8a,5}, {0xd11,4}, + {0x1ae77,6}, {0xacae,4}, {0x20c55,7}, {0x6e10,4}, {0x229d,3}, {0x112b0,5}, {0x143aa,5}, {0x8742,4}, + {0x13d63,4}, {0x1702e,9}, {0xcba8,9}, {0x12b1,3}, {0x13564,4}, {0x3402,12}, {0x15b97,7}, {0x280e,6}, + {0x1b57,8}, {0x1a86d,3}, {0x9c9a,9}, {0x1756d,6}, {0x8fb6,12}, {0x18364,9}, {0x9ce2,10}, {0x1d8d,4}, + {0x1e45,11}, {0xb92,4}, {0xb8c,3}, {0x4194,4}, {0x135fe,6}, {0x22d46,7}, {0x1712a,8}, {0x1536,6}, + {0x10b7,7}, {0x10b9,3}, {0x41dc,3}, {0x638d,8}, {0xea35,10}, {0x9946,11}, {0x6957,7}, {0x279dd,2}, + {0x42ac,6}, {0x80da,9}, {0x1156,6}, {0x1563,5}, {0x145f8,5}, {0x62ca,10}, {0xee4a,8}, {0x25c6f,6}, + {0x2a9bc,2}, {0x920e,7}, {0x6e44,5}, {0x4132,5}, {0x51ec,6}, {0x39d3,4}, {0x57ea,8}, {0x82f4,2}, + {0x22b65,7}, {0x19375,6}, {0xcf44,6}, {0xd78,5}, {0x18bef,6}, {0x279e9,2}, {0xcb5,5}, {0x5bf1,4}, + {0x27a37,2}, {0xe6d,3}, {0x14edb,4}, {0x5203,3}, {0xf39e,7}, {0xfb7c,5}, {0x1665b,6}, {0x18100,9}, + {0x8b96,11}, {0x6c97,5}, {0xac5a,5}, {0xfaf,3}, {0x20c24,7}, {0xebe2,7}, {0x10d20,10}, {0x19f5,9}, + {0x114e,2}, {0x4106,5}, {0x102ce,7}, {0x50c8,6}, {0x2a54,10}, {0x20cc,8}, {0xbd3d,4}, {0xc73,2}, + {0x734,16}, {0x118b0,6}, {0x2c13a,3}, {0x2151,8}, {0x1c1fd,8}, {0x12578,7}, {0x179f6,9}, {0x1208a,5}, + {0x116e,2}, {0x27e2f,3}, {0x1b75,4}, {0xe095,11}, {0x2a69,7}, {0x285d1,2}, {0xd973,7}, {0x29774,4}, + {0x22a59,7}, {0x70b2,4}, {0x13f22,5}, {0x6f48,4}, {0x2720,2}, {0x2b335,2}, {0x267e3,4}, {0x112ac,9}, + {0x889d,5}, {0x41e8,7}, {0x4c7d,7}, {0xb92,5}, {0x1976e,9}, {0x10652,10}, {0x14940,6}, {0x21f53,7}, + {0x2c106,3}, {0xb2c,3}, {0x14300,10}, {0xce47,9}, {0x1c13d,7}, {0x1daa,5}, {0x10bf,4}, {0x169ec,5}, + {0x5a19,5}, {0x19a50,9}, {0x755e,12}, {0xfd93,5}, {0x88de,9}, {0x2769,8}, {0x1c9da,3}, {0x95c7,5}, + {0x6f14,6}, {0x1d033,8}, {0x25bf1,6}, {0x1a2f,4}, {0xcd2,7}, {0xfb2,2}, {0x13b7a,5}, {0xf3eb,5}, + {0x1dd8,4}, {0x12026,7}, {0x1bfe5,8}, {0x27a1f,2}, {0x13af,4}, {0x1c1a,6}, {0x10cd6,4}, {0xc3e,3}, + {0xebcc,4}, {0x79ba,7}, {0xae9,3}, {0x1a5d1,6}, {0x2589,7}, {0x171a8,9}, {0x23136,4}, {0x7591,5}, + {0x1015a,6}, {0x16de3,9}, {0x22ed5,7}, {0xbd4c,5}, {0x1eb51,8}, {0x1eacf,7}, {0x3058,14}, {0x3e31,3}, + {0x18af8,4}, {0x16f9e,6}, {0x80ce,12}, {0x32ff,4}, {0x15abb,2}, {0x3b26,5}, {0x11090,7}, {0x1d46,10}, + {0x8099,4}, {0x103fa,5}, {0x4b45,9}, {0x9f52,8}, {0x1cd1,5}, {0x12576,10}, {0x15ec1,9}, {0x24b69,6}, + {0xb2c0,4}, {0x26f7a,2}, {0x10d48,4}, {0x10d89,4}, {0x1480,3}, {0x9136,6}, {0x7d56,11}, {0x119c,5}, + {0xf3b4,6}, {0x12d00,6}, {0x12f37,3}, {0x1d435,8}, {0xddbf,6}, {0xf2d8,11}, {0xf27c,3}, {0x22c08,7}, + {0xe31,5}, {0x1e7f7,5}, {0xe53,8}, {0x12c56,7}, {0xec50,5}, {0x1a26f,5}, {0x27e61,3}, {0x3da5,4}, + {0x2939c,5}, {0x5ba6,6}, {0x15298,5}, {0x92e9,5}, {0x17b04,7}, {0x102b0,6}, {0x282ef,4}, {0x6380,9}, + {0x27a25,2}, {0x5b7d,3}, {0xa7c5,6}, {0x13702,7}, {0x7ed0,6}, {0x181e,2}, {0xf9d,4}, {0xd779,11}, + {0x6d8e,9}, {0x6676,4}, {0x4bfb,6}, {0x2c142,4}, {0xa45d,5}, {0x1869,5}, {0xe2e7,6}, {0x3610,2}, + {0x27c5,2}, {0x4bbf,5}, {0xc3b9,5}, {0x24f91,3}, {0xc905,4}, {0x2d5c9,2}, {0x19d71,9}, {0x1942,4}, + {0x271a5,6}, {0x2c2a2,4}, {0x5a4d,9}, {0x15a5e,2}, {0x25e25,6}, {0x4d33,6}, {0x3e12,7}, {0xc269,11}, + {0x17ae,2}, {0xa4fe,6}, {0xd43,6}, {0x4446,6}, {0x10192,4}, {0x9216,4}, {0x1275,4}, {0x26754,2}, + {0x522d,10}, {0x2431d,4}, {0x106a2,6}, {0x10a2,4}, {0xfb89,5}, {0x861a,6}, {0x1ce2,3}, {0xa2b2,10}, + {0x131b0,6}, {0xdc37,3}, {0x29ad9,5}, {0xd128,10}, {0x6019,11}, {0x10c80,7}, {0xf5f5,2}, {0x1f2c4,2}, + {0x1d79f,8}, {0xb33e,5}, {0x5b6b,9}, {0x2a8d3,5}, {0x66d3,3}, {0x532,14}, {0x2c84,7}, {0xe8a,4}, + {0xb96e,5}, {0x1d3bd,5}, {0xf30,6}, {0xedd,3}, {0x22d93,7}, {0x222c,6}, {0x1b3f6,5}, {0x8907,4}, + {0x17564,9}, {0x422e,4}, {0x11bc6,8}, {0x1fad,13}, {0x782e,11}, {0x1ceed,8}, {0x605a,13}, {0x11b76,6}, + {0x46f4,5}, {0x2d6a,7}, {0x2a916,2}, {0x1f2b1,4}, {0x1e55f,8}, {0x245af,6}, {0x416a,11}, {0x23710,7}, + {0x3203,4}, {0x1ed51,4}, {0x7681,3}, {0x9f8e,9}, {0x1c27d,7}, {0x29f95,4}, {0x13188,5}, {0x2584,5}, + {0x20001,8}, {0x14116,9}, {0x15806,6}, {0x1408,4}, {0x23175,7}, {0xa71a,7}, {0x5aa3,5}, {0x11f54,9}, + {0x21059,7}, {0x21945,4}, {0x15f26,3}, {0x144f4,8}, {0xa1c2,6}, {0xbb2a,3}, {0xe4c5,3}, {0x15f2d,6}, + {0x21e88,6}, {0x15a0,4}, {0xc560,10}, {0x3cde,8}, {0x5d34,8}, {0xb2d0,6}, {0xf8f,5}, {0x28e51,3}, + {0x1b8e7,4}, {0x2795f,2}, {0x293e7,5}, {0x1b23f,4}, {0xbd0,3}, {0xab28,4}, {0x22105,7}, {0xca1c,7}, + {0x265b,8}, {0xeb8a,6}, {0x840a,9}, {0x12ac,9}, {0xee0,3}, {0x1cb35,8}, {0x18658,5}, {0xbd2,4}, + {0xfe6f,9}, {0x101e,15}, {0x5ec7,7}, {0x16b86,6}, {0x14fc8,5}, {0x1a970,7}, {0x70dc,6}, {0x15630,5}, + {0x10fb,6}, {0x28b6e,5}, {0x2702b,6}, {0x292a5,2}, {0x41c0,2}, {0x1c705,8}, {0x192d3,9}, {0x25428,3}, + {0x10ca8,7}, {0x4463,6}, {0x11464,7}, {0x13a6,4}, {0x10f96,10}, {0x239a,11}, {0xbf1,34}, {0x2601,10}, + {0x14d4,4}, {0xe1a,6}, {0xdc28,5}, {0x23a30,7}, {0x6e12,2}, {0x12cba,6}, {0x1e7ef,7}, {0x1d783,4}, + {0x7a6e,5}, {0x126c3,6}, {0x4246,4}, {0x1ec2,4}, {0xe91,6}, {0xf422,6}, {0x3594,3}, {0x2eec,11}, + {0x3e19,4}, {0xa7f2,5}, {0x2aefa,2}, {0xd79,3}, {0xc69a,6}, {0x26c49,2}, {0xb44,6}, {0x6cc0,2}, + {0x86ce,10}, {0x4d33,9}, {0x27e1b,3}, {0xd1b,2}, {0x16dc,10}, {0x18994,8}, {0x278d7,6}, {0xeb95,6}, + {0x222c,5}, {0xef3,4}, {0x102f9,6}, {0x2868f,3}, {0x101d4,9}, {0x2249,3}, {0x1dd45,6}, {0x17dc,4}, + {0xbc0,4}, {0xfd5c,5}, {0xc3d,4}, {0xe50d,10}, {0x857e,5}, {0xaf63,2}, {0x18b71,9}, {0xcca,3}, + {0x2f54,5}, {0x293a8,3}, {0x262e,7}, {0x5479,6}, {0xca95,8}, {0xfa16,2}, {0x67a0,5}, {0x14ed8,7}, + {0x1c7b,4}, {0x670e,5}, {0x278ef,6}, {0x1a859,4}, {0xbb0b,5}, {0x11c3,7}, {0x45fd,5}, {0x13bc6,8}, + {0x1a2b,8}, {0x2ba44,6}, {0xf870,5}, {0x278e3,6}, {0x1bf1d,7}, {0x10116,2}, {0x19a4,11}, {0x1cc5,3}, + {0xb5ef,4}, {0x11e7,4}, {0xbd2,3}, {0x1d595,8}, {0x17a2f,6}, {0x4646,5}, {0xd5d7,5}, {0x5277,4}, + {0x278e9,6}, {0xb8a8,8}, {0x1dff,5}, {0x37d6,5}, {0xe83b,7}, {0x3ee4,5}, {0x166af,6}, {0x6695,3}, + {0x11fcc,10}, {0x1159a,10}, {0x1ad57,5}, {0x5acf,8}, {0x26fa,4}, {0x727a,4}, {0x1c77d,6}, {0x1257,5}, + {0x254a9,6}, {0xd645,6}, {0x8940,3}, {0x1e90b,4}, {0x4a68,9}, {0x1a96,4}, {0x41f0,6}, {0x18ac6,9}, + {0x11504,9}, {0x1b12c,4}, {0x12922,7}, {0x1060f,5}, {0xa592,6}, {0x357c,7}, {0x113ba,10}, {0x7c7e,10}, + {0x278dd,6}, {0x17106,6}, {0xa2cd,5}, {0x5a5a,5}, {0x168df,4}, {0x4728,5}, {0x270fd,4}, {0x14b40,6}, + {0x78d6,11}, {0xbb0,2}, {0x67aa,12}, {0x89f7,5}, {0xec7c,11}, {0x2b7ca,2}, {0x9c9,3}, {0x532,48}, + {0x14d0e,3}, {0x1c1d1,4}, {0x1d8af,8}, {0xd7e,2}, {0x7047,5}, {0x293e9,3}, {0x6714,4}, {0x16032,9}, + {0x600f,5}, {0x156bc,10}, {0x12ec2,10}, {0x11dce,9}, {0x1595a,2}, {0x8a22,7}, {0x1b8e3,4}, {0x24026,7}, + {0x198fa,9}, {0x178c,4}, {0x3ec8,8}, {0x10f21,6}, {0x19d73,7}, {0x247f1,4}, {0x21637,7}, {0x71c2,7}, + {0x6f37,3}, {0x1a28a,4}, {0x19d7a,5}, {0x7e8e,7}, {0x2794d,2}, {0x628e,7}, {0x286f3,8}, {0x1f8f,8}, + {0x6ab9,4}, {0x2352f,5}, {0xed8f,10}, {0x19d3b,8}, {0x1299a,8}, {0xdf4,4}, {0x1343c,10}, {0x20b83,7}, + {0x51c7,3}, {0x2672b,2}, {0x2431a,7}, {0x27037,6}, {0x2043,4}, {0xf417,5}, {0x25aa3,5}, {0xa497,6}, + {0x5581,6}, {0xff00,4}, {0x225f3,4}, {0x3ffc,6}, {0x1ad0,4}, {0x1013,3}, {0xb906,2}, {0x43a1,3}, + {0x48a1,6}, {0x783a,6}, {0x4ba0,7}, {0x190d2,8}, {0x133c,9}, {0xde90,10}, {0x1693,3}, {0xfeec,4}, + {0xefd,8}, {0x27947,2}, {0xd154,6}, {0x21d2,5}, {0xc37,6}, {0x1b72f,6}, {0x16f1,4}, {0x6790,7}, + {0x6701,7}, {0xc2f,2}, {0x25885,5}, {0x2106,4}, {0x27953,2}, {0x11644,10}, {0x2e8a,6}, {0x1f87c,5}, + {0xaaf2,5}, {0x13e8c,7}, {0x2c7d,6}, {0x2ae87,2}, {0xe2f2,4}, {0xcc37,7}, {0xc45f,4}, {0x28439,3}, + {0x711d,6}, {0x2b50,12}, {0x1964a,4}, {0x10d16,6}, {0x20d8d,7}, {0xbd7,2}, {0xf8bd,9}, {0x1577,5}, + {0xd6d4,7}, {0x7276,8}, {0xaecc,3}, {0x251c,4}, {0x23bcf,5}, {0x4196,3}, {0x16cc,6}, {0xfd93,8}, + {0x16c1,3}, {0x115f0,4}, {0x924,8}, {0x8cb6,10}, {0x1c20d,8}, {0x22205,7}, {0x90be,5}, {0x1e27,5}, + {0x5c8b,13}, {0xec8,2}, {0xbf6d,5}, {0x6b1e,4}, {0x10f6e,10}, {0x1aaec,2}, {0x7170,3}, {0xf77,3}, + {0x278d1,6}, {0xf5de,6}, {0x1de15,8}, {0x21893,7}, {0x27e66,3}, {0x2209c,7}, {0x15292,6}, {0x1a622,9}, + {0x18bb9,8}, {0x3043,6}, {0x17f6b,6}, {0x1208c,3}, {0x67be,5}, {0x2d5fc,3}, {0x5136,11}, {0x6ac3,6}, + {0x9e9,6}, {0xf62b,3}, {0xba55,7}, {0xff4b,7}, {0x8842,5}, {0xbf20,5}, {0x4e5e,9}, {0x520e,5}, + {0xdc33,7}, {0x28995,4}, {0x1d05d,8}, {0x278fb,6}, {0xf77e,5}, {0x1e687,8}, {0x228ca,7}, {0x5838,10}, + {0x189f7,9}, {0xeb95,5}, {0xe2dc,5}, {0x6699,9}, {0x2859,4}, {0xff4c,6}, {0x18ad8,9}, {0xbc44,8}, + {0x15a61,2}, {0xadc2,5}, {0x441c,8}, {0x17af2,9}, {0x1355e,9}, {0x5317,5}, {0xe302,5}, {0x288a,10}, + {0x7426,8}, {0x126c0,9}, {0x1a814,2}, {0x3892,4}, {0x571a,13}, {0xadd,5}, {0xd7d1,11}, {0x9eaa,12}, + {0x2afc,7}, {0xbaf,2}, {0x3720,10}, {0x1ed51,5}, {0x263d,8}, {0x14c33,7}, {0x75ee,12}, {0x1354,8}, + {0x15f28,5}, {0x1b3bd,2}, {0x5fa0,4}, {0x1b9f5,8}, {0x4957,6}, {0x6103,12}, {0xa2ee,6}, {0x1c6ed,7}, + {0x15a1f,4}, {0xc1c4,7}, {0x96a6,7}, {0x1d2a5,8}, {0x4108,2}, {0x90f7,3}, {0x1bba5,7}, {0x43a2,5}, + {0x17aaa,7}, {0x188b3,9}, {0x470e,8}, {0x8986,12}, {0x11572,10}, {0x27307,6}, {0x1a1c,10}, {0x19066,8}, + {0xcfb2,10}, {0xd0a4,5}, {0xb76,4}, {0x508d,5}, {0x278f5,6}, {0x30,38}, {0xff48,4}, {0x17025,7}, + {0x9ee6,12}, {0x1499,3}, {0x29d9,3}, {0xaaf0,2}, {0x2cbde,6}, {0x197f,7}, {0x12c1a,10}, {0xe41b,11}, + {0x12d32,6}, {0xa59a,11}, {0x20cd,7}, {0xf65,3}, {0xa249,4}, {0x1097,4}, {0x19f47,2}, {0x4591,4}, + {0x127a6,5}, {0x45ce,4}, {0x1e011,8}, {0x23b1,3}, {0x30,34}, {0x27c99,2}, {0x17b31,5}, {0xa01e,7}, + {0x8e92,4}, {0x11432,9}, {0x16f0,4}, {0x7140,4}, {0xc9e,5}, {0x762a,5}, {0x860e,8}, {0x92ce,7}, + {0xc2e8,4}, {0x1b75,7}, {0x26151,5}, {0x18e5,4}, {0x430,18}, {0xca3,7}, {0x159d7,3}, {0x212df,7}, + {0x1cb25,7}, {0x14e74,6}, {0x14d48,6}, {0xa5e6,4}, {0x904d,5}, {0x1d82,7}, {0x3c7c,10}, {0x1aa63,9}, + {0x102b0,5}, {0x3d40,9}, {0x6c63,4}, {0x2e54,6}, {0x1ec51,5}, {0xbd57,5}, {0xe376,11}, {0x190f6,9}, + {0x1f019,4}, {0x4bb1,4}, {0x174c2,6}, {0x21ac9,7}, {0x16f48,2}, {0xf422,11}, {0x2bd6e,4}, {0xb855,5}, + {0x184cc,9}, {0x1dfa,10}, {0x6ff2,8}, {0xa532,4}, {0x160b0,9}, {0x59f5,3}, {0x5dea,7}, {0x1b855,6}, + {0x1615b,8}, {0x7102,7}, {0x10d9,5}, {0x4b31,3}, {0x1522a,10}, {0xe754,11}, {0x2bd38,2}, {0x1f2b,4}, + {0x150e0,5}, {0x18e38,6}, {0x1b7bb,6}, {0x111c6,10}, {0x116fe,4}, {0x37f6,3}, {0x102b0,9}, {0x164af,5}, + {0xfde,4}, {0xe2bb,9}, {0x132c,6}, {0x2566,4}, {0x13806,10}, {0xb5c7,7}, {0x1eadf,5}, {0x2e92,6}, + {0xc135,8}, {0x12d3c,9}, {0x461b,5}, {0xff24,4}, {0x79f6,6}, {0x1a26f,9}, {0x87b2,6}, {0x112b6,10}, + {0x57f7,6}, {0x179ae,9}, {0x12b89,5}, {0x219c,5}, {0x82de,7}, {0x9eaa,11}, {0x131b0,7}, {0x1dc75,8}, + {0x107d,3}, {0x29386,2}, {0x13e14,7}, {0x72d6,8}, {0x1264,8}, {0x21c7b,7}, {0xcbd4,7}, {0x1c68d,8}, + {0x4c22,10}, {0x1e907,8}, {0x2769,5}, {0x13c34,7}, {0x11c70,7}, {0xa049,4}, {0x18d4,3}, {0x12e3,3}, + {0x25201,2}, {0xf52,7}, {0x13658,9}, {0x1b6e1,4}, {0x9e3e,9}, {0xda23,11}, {0x5671,5}, {0xb7f,7}, + {0x1477e,6}, {0x9e4a,9}, {0x4f62,5}, {0x2548b,6}, {0x6e46,3}, {0x19645,9}, {0x146e,4}, {0x2bd88,2}, + {0x177c,7}, {0x1ccbd,7}, {0x4403,2}, {0x1ec09,8}, {0x18e2f,6}, {0x432,6}, {0x2c00,5}, {0xadb6,12}, + {0x19ba,3}, {0x1e757,5}, {0x1f965,2}, {0x1251c,10}, {0x179e6,4}, {0x1062,8}, {0x3988,10}, {0x533e,9}, + {0x17184,8}, {0xa7b8,4}, {0x21230,6}, {0x62fe,10}, {0x858a,8}, {0xfb88,6}, {0x193b,7}, {0x12f44,7}, + {0xe626,5}, {0x1b5f3,4}, {0x9436,7}, {0x4cec,6}, {0x9ca6,12}, {0xbe7,4}, {0x134c,8}, {0x789d,4}, + {0xbaa2,8}, {0x1577,4}, {0x65af,8}, {0xa5dd,5}, {0xb7a0,11}, {0x460a,7}, {0x18fcd,9}, {0xff48,10}, + {0x51ab,7}, {0x3549,5}, {0xb590,5}, {0x26d04,3}, {0xc60,5}, {0x48eb,4}, {0x2cf0d,2}, {0x14c0a,2}, + {0x227f,3}, {0x2796b,2}, {0x411b,2}, {0xa8a8,3}, {0x4471,3}, {0x16b3e,6}, {0x18a7,3}, {0x24a75,6}, + {0xba55,11}, {0x1046a,4}, {0xa8c0,3}, {0x118e,3}, {0x5fcb,7}, {0x16edf,9}, {0x619a,3}, {0x1d73,5}, + {0x670e,10}, {0x3fc4,8}, {0x1cc05,8}, {0x9ea4,5}, {0x1a6fd,2}, {0xede7,8}, {0xa4e1,5}, {0x3203,5}, + {0x6797,4}, {0xafe0,5}, {0x3a22,5}, {0x18619,9}, {0x2c1f4,2}, {0x12fe,5}, {0x16d2f,9}, {0x14d0c,5}, + {0x12c1a,9}, {0xd76e,11}, {0x2a4d1,4}, {0x17ec,6}, {0x18dde,8}, {0x1528e,10}, {0x25f21,6}, {0x2a49f,4}, + {0xf4dd,5}, {0x2601,13}, {0x43de,5}, {0x1e3b7,8}, {0x32ce,11}, {0x1bd61,4}, {0x3643,5}, {0x69e6,8}, + {0x20a1f,2}, {0x166fd,9}, {0x7c4,32}, {0x187ff,7}, {0xb29c,3}, {0x1e50f,8}, {0x1413e,7}, {0x173ea,9}, + {0x92c9,4}, {0x17f08,9}, {0x13c43,4}, {0x2b7b0,2}, {0x144d6,8}, {0x1e9ff,4}, {0x27965,2}, {0xf789,4}, + {0x12832,10}, {0x382a,7}, {0x156e4,7}, {0xd13,3}, {0x14c30,10}, {0x27c3,5}, {0xb32,6}, {0xaecf,5}, + {0x10d98,7}, {0xcf7,6}, {0x6436,12}, {0x1993d,3}, {0xbe7,2}, {0x26f1,8}, {0x16e22,9}, {0xbff6,7}, + {0x531d,4}, {0xb20c,5}, {0x17468,9}, {0xe70,3}, {0xadd0,3}, {0xa1c2,8}, {0x1907,3}, {0x28e79,2}, + {0x11cc,11}, {0x8f1a,7}, {0x713e,6}, {0x9b86,10}, {0x19780,9}, {0x2c18,4}, {0x251cd,4}, {0x112a2,10}, + {0x7601,5}, {0x14f61,2}, {0xb46d,5}, {0x20dc5,5}, {0xd282,6}, {0x25aa0,3}, {0x2bb2,6}, {0x5a06,3}, + {0x2bb96,4}, {0x827e,9}, {0xdf51,5}, {0x1ac4,3}, {0x12e94,5}, {0x14e38,9}, {0xf14,3}, {0x273bd,2}, + {0xf96,9}, {0xaa9a,2}, {0x3823,3}, {0x30,36}, {0x15d59,8}, {0x1680b,9}, {0x1d27d,8}, {0x141a2,7}, + {0x25547,6}, {0xa58e,10}, {0x2af3,5}, {0x17375,9}, {0x9271,4}, {0x14bae,4}, {0x2539d,6}, {0x187b,4}, + {0x2cd8,10}, {0x1c1ad,7}, {0x39d2,3}, {0x21b4,6}, {0x7822,9}, {0xfc07,5}, {0xa886,4}, {0x1253c,5}, + {0xa7c5,9}, {0xeec,11}, {0x219c9,6}, {0x11a18,6}, {0x11efa,10}, {0x2600d,6}, {0x584e,4}, {0x13d1,4}, + {0x1b6d3,2}, {0x6b5f,5}, {0x1ed3,7}, {0xf41,10}, {0x17351,9}, {0x18484,8}, {0xfd27,2}, {0x5b9f,13}, + {0x1077e,10}, {0x2843b,2}, {0x11d88,5}, {0x14c08,4}, {0x3bfe,9}, {0x18f0,15}, {0xc518,6}, {0x6b86,10}, + {0x184e7,5}, {0x24a2f,4}, {0x14ef0,4}, {0x3218,5}, {0x1da3,3}, {0x1f879,8}, {0x4874,6}, {0x27907,6}, + {0x14ef1,3}, {0xd101,5}, {0x4881,4}, {0x2792e,3}, {0x27e52,3}, {0x150e5,5}, {0x9262,11}, {0x8470,4}, + {0x21622,7}, {0x12797,4}, {0x79ba,5}, {0x21fc3,6}, {0x4413,2}, {0x184d5,6}, {0x10724,7}, {0xc3c9,9}, + {0xa6c6,12}, {0x2a8e0,2}, {0xb217,4}, {0x1221a,10}, {0xf85a,5}, {0x438e,3}, {0x28695,2}, {0x161c,15}, + {0x18457,9}, {0xaee,5}, {0x5560,13}, {0x18c91,8}, {0x22252,7}, {0x27c97,4}, {0x19ef4,8}, {0x26e4,4}, + {0x2b88,9}, {0xaecf,7}, {0x5ea0,11}, {0x27f0,6}, {0xb299,6}, {0x1b8a5,4}, {0xc25e,5}, {0x12cc4,9}, + {0x2205d,6}, {0x1cadd,7}, {0x7c4,6}, {0x1b6b2,2}, {0x535b,4}, {0x14bb2,2}, {0x13fa9,2}, {0x11b76,9}, + {0xf6e4,6}, {0x57ea,13}, {0x2cbe4,6}, {0x667f,10}, {0x27901,6}, {0xf3ed,3}, {0x211ab,7}, {0x2213f,7}, + {0x1014,3}, {0xce9f,11}, {0xb139,5}, {0xca8a,9}, {0x23d2d,5}, {0x1a2b,10}, {0x10f0a,9}, {0x9112,7}, + {0x171a8,8}, {0x628f,6}, {0xb97,3}, {0xc161,9}, {0x848e,11}, {0x278cb,6}, {0x1d1dd,8}, {0x1c21d,8}, + {0x74f2,12}, {0x152a8,4}, {0x15f75,6}, {0x168fe,8}, {0x946,4}, {0x15f7b,3}, {0x1b12,5}, {0xac96,8}, + {0x12882,5}, {0x24fb,7}, {0xb333,10}, {0x274d,3}, {0x1bc0,10}, {0x5aaf,4}, {0x1ae77,9}, {0x25f0f,6}, + {0x1dcd,5}, {0x1b12f,2}, {0xd8e,2}, {0x7ee6,4}, {0x74ae,4}, {0x2032,2}, {0x10029,5}, {0x2a409,4}, + {0x24fb,6}, {0xe303,4}, {0x6f55,11}, {0xbe33,11}, {0x16dda,8}, {0x22987,6}, {0x6f14,9}, {0x27e42,4}, + {0x27e6f,2}, {0xec6b,5}, {0xe5e9,11}, {0x21503,7}, {0x11f9a,9}, {0x1b40,3}, {0x2bdc,5}, {0x276b,3}, + {0x1c4cd,6}, {0x196cc,8}, {0xa7aa,7}, {0x16d80,9}, {0x8c26,10}, {0x5bd3,7}, {0x26fd9,3}, {0x226a6,7}, + {0x2a914,4}, {0x1cd5d,8}, {0x135e,3}, {0x4354,5}, {0x6ff2,12}, {0xe518,11}, {0x3d78,9}, {0x3be2,9}, + {0x191aa,9}, {0xad62,4}, {0xd4f,5}, {0x15a83,3}, {0x3a3e,9}, {0x1d001,8}, {0x11ba8,6}, {0xe1df,8}, + {0x5acf,11}, {0x8d9a,11}, {0x101ac,10}, {0x946b,4}, {0x1c065,6}, {0x8111,5}, {0x27928,3}, {0xa0ba,8}, + {0xcdd9,6}, {0x24cd7,6}, {0x251f9,2}, {0x1685,3}, {0x1026e,6}, {0x1cc4d,8}, {0x25205,3}, {0xa79e,7}, + {0x7a7a,5}, {0x65f0,12}, {0x25f4b,6}, {0x6631,5}, {0xcfd3,7}, {0x18bc2,8}, {0x127e2,9}, {0x1a793,6}, + {0x21abd,3}, {0x17a50,8}, {0x7966,10}, {0x21cdd,7}, {0xd41f,11}, {0x3a81,3}, {0x1b2f5,8}, {0xdf7e,4}, + {0x13d60,7}, {0x13eaa,9}, {0xcc2c,10}, {0x19c5a,4}, {0x1c6c5,7}, {0x1782b,9}, {0xc3d4,11}, {0x1ba6d,7}, + {0xd020,8}, {0x434c,2}, {0xcfff,6}, {0x12b92,3}, {0x17a50,9}, {0x1abd6,2}, {0x1a340,5}, {0x219a6,7}, + {0x1b6c5,2}, {0x1370,3}, {0x17196,9}, {0x283f,2}, {0xc1b9,10}, {0x17676,5}, {0x1d0a5,8}, {0x4c70,9}, + {0x183c,6}, {0x29ddd,5}, {0x2a9b9,4}, {0x78be,7}, {0x46f4,6}, {0x3f2a,14}, {0x1b3e,3}, {0x11112,10}, + {0x9215,5}, {0x9fc0,5}, {0x909a,8}, {0xaa94,2}, {0xd57f,5}, {0x216f,7}, {0xba9b,4}, {0xb333,11}, + {0x27,2}, {0x1009f,4}, {0xe415,5}, {0x21a55,7}, {0x933a,9}, {0x1b4a6,4}, {0x1dd95,8}, {0xdf5,7}, + {0x5324,7}, {0xf58f,6}, {0x58d0,4}, {0x27871,4}, {0x19552,9}, {0x101c0,7}, {0x161f4,9}, {0x9beb,7}, + {0xcc4d,6}, {0xa176,4}, {0x14cd0,5}, {0x1af58,9}, {0xd7de,4}, {0x16e6a,9}, {0x9988,3}, {0x124c,4}, + {0xa19,6}, {0x13d38,9}, {0x30db,5}, {0x172ad,9}, {0x27e4d,3}, {0x1db15,8}, {0x25d73,6}, {0x24a34,3}, + {0x20ac,7}, {0x47de,7}, {0x6855,3}, {0x7029,5}, {0x36c1,5}, {0xa938,10}, {0x7c7e,12}, {0x271a7,4}, + {0x1840f,5}, {0x532,28}, {0x1972,3}, {0x180e,5}, {0x22179,7}, {0x2bff,4}, {0x11108,10}, {0xddc,10}, + {0xad3e,6}, {0x2abe,4}, {0x1b6db,4}, {0x13bc,5}, {0x7132,6}, {0x21e11,7}, {0x103fa,9}, {0x1983d,9}, + {0x72fe,5}, {0x1de75,8}, {0x26169,6}, {0x89bc,6}, {0x1d837,6}, {0x1568a,5}, {0xf8cf,3}, {0x28f19,3}, + {0x16125,6}, {0x1f44,8}, {0x125c,8}, {0x1906,4}, {0x15e28,8}, {0x16640,9}, {0x40ea,5}, {0x1d74f,8}, + {0x20b13,2}, {0x202c,4}, {0xac92,4}, {0xd87,11}, {0x1d13d,8}, {0x44df,6}, {0x2d710,3}, {0x10bb8,10}, + {0x25d91,6}, {0x1fce4,2}, {0x1a90,4}, {0x8ffe,6}, {0xee7,4}, {0x52a7,2}, {0x43ab,8}, {0x4b33,4}, + {0x1019a,4}, {0x12bca,5}, {0xc48a,5}, {0x3b6d,5}, {0x144c,6}, {0x20cc,4}, {0x49ae,4}, {0xbd57,6}, + {0x24a2e,3}, {0xc085,11}, {0xaeca,12}, {0x1490e,5}, {0x1e81f,8}, {0x1dab,4}, {0xeaa3,5}, {0x16946,6}, + {0x15dc,12}, {0xff7,4}, {0xc956,11}, {0x4dbb,5}, {0x16c9f,9}, {0x2b7cd,2}, {0x3082,14}, {0x162e0,9}, + {0x3330,13}, {0x16412,7}, {0x21149,7}, {0x3d5c,13}, {0x120d0,10}, {0x32f3,4}, {0x969,4}, {0x2a8fd,3}, + {0x22437,6}, {0x12f6,3}, {0x753a,7}, {0x2331,11}, {0x189c1,8}, {0x2b79c,3}, {0x1175c,5}, {0xfee4,8}, + {0x28e54,3}, {0x315d,4}, {0x345e,5}, {0x1f213,3}, {0xcc9,3}, {0x1ab20,5}, {0x7065,5}, {0x4402,2}, + {0xc17,4}, {0xa7c2,12}, {0x28e4a,3}, {0x259ab,6}, {0xeb7f,7}, {0xb949,4}, {0x21bb7,7}, {0x4831,4}, + {0x13b80,9}, {0xe8a9,9}, {0x1fbc,7}, {0x8cf9,5}, {0x7b2e,12}, {0x1cc45,8}, {0x3838,10}, {0x1cca5,8}, + {0x2894,4}, {0x1a86b,5}, {0x20b52,6}, {0x8879,5}, {0x11bd5,5}, {0x118c,5}, {0x112a,3}, {0x13327,5}, + {0x29e7a,2}, {0x2810,4}, {0x8dd6,11}, {0x9bc2,9}, {0xa2be,11}, {0x13437,5}, {0x2d68,5}, {0x884,8}, + {0x272f,2}, {0x33b2,3}, {0x19819,9}, {0x7162,6}, {0x14ce4,10}, {0x2592c,2}, {0x161c,10}, {0x3da2,7}, + {0x150e0,10}, {0x2a8ce,4}, {0x1b9dd,8}, {0x1bdd5,7}, {0xe7cd,8}, {0x20de1,7}, {0x21bef,6}, {0x25a43,6}, + {0x26771,4}, {0xf2e5,4}, {0x1b3fb,3}, {0x29eaa,4}, {0x1aac,3}, {0x4a4e,7}, {0x2a8f1,5}, {0x28e77,4}, + {0x27895,4}, {0x1bf08,4}, {0x22956,7}, {0x142c,5}, {0x14fc,11}, {0x109a6,5}, {0x198f7,3}, {0x1682f,6}, + {0x1100b,3}, {0xdba4,5}, {0x28fa3,5}, {0x5129,13}, {0xd69d,8}, {0x4e32,5}, {0x11798,9}, {0xb47d,4}, + {0x1fd09,8}, {0x17540,9}, {0xf26,3}, {0x4034,9}, {0x10599,5}, {0x1b23b,4}, {0xa1f2,12}, {0x15298,7}, + {0x1514,4}, {0x30,40}, {0x891a,11}, {0x68c4,4}, {0xe86,8}, {0xb7d7,11}, {0xfef0,8}, {0x14292,8}, + {0x152ac,6}, {0x10168,4}, {0x12d6e,5}, {0xf5b0,7}, {0x47b7,8}, {0x178c4,8}, {0x4075,2}, {0x5428,5}, + {0x286a7,2}, {0x2d6cb,3}, {0x2c51e,4}, {0x12314,4}, {0x239a,14}, {0x7d7a,11}, {0x11e1,3}, {0x14eec,8}, + {0x30,42}, {0xcf4f,9}, {0x9c9,6}, {0xc696,10}, {0x52f0,7}, {0x445d,6}, {0xdbdb,10}, {0x6f6e,6}, + {0x13cf2,5}, {0x35d0,8}, {0x4d46,4}, {0x8bb5,5}, {0x166a6,5}, {0x48e7,7}, {0x1637e,4}, {0x122c4,6}, + {0x1b739,4}, {0x226ad,6}, {0x806e,12}, {0x101f5,4}, {0x20ca,12}, {0xa49e,10}, {0x2500e,2}, {0x4812,6}, + {0x2a,2}, {0x2638,4}, {0x20dc5,7}, {0x234af,6}, {0x445d,4}, {0x2a91,2}, {0x4978,5}, {0x16221,9}, + {0x16d02,9}, {0x2430,9}, {0x29cac,3}, {0x362c,5}, {0x2bdac,2}, {0x74b6,7}, {0x1dd8,3}, {0x39b2,14}, + {0xd5cc,5}, {0x3baa,12}, {0x249e1,4}, {0x1ad64,5}, {0x325e,5}, {0x133ea,10}, {0x2b2ff,2}, {0xbad,4}, + {0x6f55,4}, {0xb2ba,6}, {0xa59a,7}, {0x498b,8}, {0xe641,11}, {0x1add5,8}, {0x52fd,7}, {0x807a,11}, + {0x1bdc,2}, {0x42ac,5}, {0x20ebc,6}, {0xd0c5,7}, {0x2c1be,4}, {0x3100,6}, {0x1905d,8}, {0x25491,6}, + {0x1b135,4}, {0x53f8,3}, {0x1278,3}, {0x21f99,7}, {0x120e4,10}, {0xefd,15}, {0xa7d3,2}, {0x2790d,6}, + {0x20fb1,7}, {0x3782,9}, {0x2daad,2}, {0x22d8c,7}, {0x27841,6}, {0x377c,4}, {0x1d73,6}, {0x69f3,7}, + {0xd414,10}, {0x2c51e,6}, {0x41b0,5}, {0x1a3a,9}, {0xdc00,3}, {0x275a9,2}, {0x1c7dd,6}, {0x199ed,9}, + {0xf92f,4}, {0x16e85,7}, {0xb6fb,8}, {0x15e43,9}, {0x2847,2}, {0x127ec,6}, {0x148b4,9}, {0x257dd,6}, + {0x1c2f,4}, {0x1cd1d,6}, {0x3f82,3}, {0xd041,5}, {0x3203,7}, {0x3aa0,7}, {0x1269f,2}, {0xe6c,3}, + {0x19174,6}, {0x191bc,8}, {0x689b,6}, {0xfbb2,5}, {0x1c745,8}, {0x181bd,7}, {0x1dccd,7}, {0x1efc1,5}, + {0x5d5f,3}, {0x75b2,6}, {0xc13,5}, {0x414e,8}, {0x1b26c,2}, {0x713e,5}, {0x211f1,7}, {0xed79,8}, + {0x2862e,3}, {0x58f1,3}, {0x500b,10}, {0x1dd7,2}, {0x18fb2,8}, {0x10866,5}, {0x1f011,7}, {0xfd7d,5}, + {0x12ec,12}, {0x140e8,6}, {0x2bfce,4}, {0x17672,9}, {0x1cac5,7}, {0xc2c1,11}, {0x1b399,4}, {0x14bba,4}, + {0xd6d,4}, {0x1c5d5,7}, {0x6637,3}, {0x14454,7}, {0xf99b,10}, {0x3825,5}, {0x172c,16}, {0xce26,7}, + {0x10ec,2}, {0x77aa,12}, {0x2b342,3}, {0x2c12e,4}, {0x15051,3}, {0x51d2,6}, {0x2db9e,2}, {0x2c274,2}, + {0x28ae9,5}, {0xb89,2}, {0xcbf,3}, {0x325e,7}, {0xbe80,11}, {0x656e,12}, {0xe605,5}, {0x4a75,5}, + {0x18a5,8}, {0x29082,2}, {0x254d,6}, {0x27937,6}, {0xf86c,4}, {0x5478,2}, {0xbb47,7}, {0x13e28,6}, + {0x225f0,7}, {0x1cc8d,7}, {0xbad5,4}, {0x53cd,5}, {0x4bcf,4}, {0x1a9a6,8}, {0x2138,5}, {0x1073,17}, + {0x5b51,8}, {0x214a1,6}, {0x1cfb1,6}, {0x1222e,6}, {0xfcb5,2}, {0x29e96,4}, {0xbfa9,7}, {0x3343,5}, + {0x1dacd,6}, {0x2a21a,4}, {0xd5c,9}, {0x1911a,9}, {0x423c,6}, {0x10eba,7}, {0x2403,7}, {0x63c8,5}, + {0x7295,5}, {0x2048,4}, {0x13f1d,5}, {0x1d615,8}, {0xc6a1,7}, {0xbb4c,5}, {0x4dd4,7}, {0x184ba,8}, + {0x297a,6}, {0x2a3a5,4}, {0x29d34,4}, {0xa186,9}, {0x12d23,5}, {0x2c20a,4}, {0x13c7a,10}, {0x186db,4}, + {0x91ea,7}, {0x9206,3}, {0x4818,7}, {0x25207,2}, {0x102a,5}, {0x6c7d,5}, {0x10010,6}, {0x106cd,4}, + {0xfdeb,5}, {0x2a,4}, {0xbcf4,6}, {0x1b07,4}, {0xadc2,8}, {0x2bece,4}, {0x1e9f7,5}, {0xc2a,2}, + {0x12e36,10}, {0x18e1,5}, {0x1cded,7}, {0x7158,4}, {0x11e4,8}, {0x13ee6,10}, {0x1b10,4}, {0x6a91,3}, + {0x2787,6}, {0x1abcf,2}, {0x2c17,3}, {0xc1a,9}, {0x16821,4}, {0xb24c,5}, {0x21e11,6}, {0x2769,7}, + {0x87ee,6}, {0x13680,5}, {0x16cf9,8}, {0x1e03d,5}, {0x1171,3}, {0x6790,11}, {0x7756,8}, {0x146e,3}, + {0x7140,3}, {0xcdfa,11}, {0xd892,5}, {0x12017,5}, {0x4266,8}, {0x160e,6}, {0xc4c6,6}, {0x432a,12}, + {0x19939,7}, {0x5eb0,4}, {0x265cb,6}, {0x27913,6}, {0x647d,4}, {0x14e60,5}, {0x118b0,9}, {0x2d64,13}, + {0x2214,6}, {0x359b,4}, {0x1440,4}, {0x583f,6}, {0x2626d,6}, {0x2b341,4}, {0x1eed4,2}, {0x3af4,12}, + {0x186df,8}, {0x2978d,4}, {0x241d1,7}, {0x7e9a,5}, {0x141d4,10}, {0x1642d,9}, {0x6038,8}, {0x1d731,5}, + {0x126b6,5}, {0x584c,5}, {0x616b,12}, {0x4266,7}, {0xf8d0,2}, {0x1b157,8}, {0x10e6d,3}, {0xb493,11}, + {0x6b22,3}, {0x12ac,7}, {0xe313,8}, {0xe3b8,6}, {0x50fc,6}, {0x20b39,4}, {0x79a2,11}, {0x1c9bd,8}, + {0x6221,5}, {0x22324,7}, {0x16629,5}, {0x43f0,5}, {0x24681,6}, {0xda2e,10}, {0x24440,4}, {0xe2fd,10}, + {0x15c27,6}, {0xd8d0,4}, {0x2c37,4}, {0x1925e,6}, {0x9e9,18}, {0x22740,6}, {0x74aa,7}, {0x1b607,4}, + {0x24f8a,2}, {0x264c,6}, {0x1372,4}, {0xd440,11}, {0x10eec,8}, {0x19b3,7}, {0x1a4ed,3}, {0x1cb4,4}, + {0x51f3,4}, {0xcfcf,4}, {0xa8be,5}, {0x19684,8}, {0xa0b4,6}, {0xdf40,11}, {0xe9e2,2}, {0x12cb0,9}, + {0x434d,2}, {0x2d35d,2}, {0x21d8,5}, {0x15a70,4}, {0x128a0,7}, {0x4d46,3}, {0xb92e,5}, {0x155dd,3}, + {0x11702,10}, {0xe0c1,11}, {0xba6b,11}, {0x60fc,6}, {0x131c4,7}, {0x1cedd,8}, {0x11fd6,7}, {0x15de0,8}, + {0x6d8e,13}, {0x6b79,10}, {0x2399d,7}, {0x7a6a,4}, {0x2168b,6}, {0x6815,4}, {0x2c9f8,4}, {0xc6db,3}, + {0x2690b,4}, {0x1daf,4}, {0x14d9c,3}, {0x319a,6}, {0x26207,5}, {0x1463,5}, {0x2a38,12}, {0x4d44,3}, + {0x7b96,4}, {0x6f21,8}, {0x4b38,13}, {0x20ccf,4}, {0x10c62,6}, {0x15c2a,6}, {0x1224c,6}, {0x162c,15}, + {0x25f2,15}, {0x93ca,9}, {0x9aba,5}, {0xf49b,7}, {0x6d81,5}, {0x711a,9}, {0x14930,2}, {0x1be11,4}, + {0x125c6,10}, {0x29fa,5}, {0x11a2c,9}, {0x2791c,3}, {0x1929d,5}, {0x27922,3}, {0x35d7,5}, {0x4c9c,4}, + {0x100f,3}, {0x19f3f,2}, {0xf69e,4}, {0x26c47,4}, {0x13a36,7}, {0x193bd,6}, {0x1ba05,6}, {0x104b8,5}, + {0x21f4c,7}, {0x3728,6}, {0x1444,7}, {0x10010,10}, {0x2a3d7,4}, {0x5401,5}, {0xb8c9,8}, {0x1ae3e,3}, + {0xda5a,11}, {0xddd5,7}, {0xccd,3}, {0x2b6c,12}, {0x2aeae,3}, {0x1da0,4}, {0x2a91e,4}, {0xe02,5}, + {0x1f899,6}, {0x2dfe,7}, {0x2db22,2}, {0x9911,5}, {0x30ba,7}, {0xbd62,6}, {0xcfff,8}, {0x1fc49,8}, + {0x1760,5}, {0x16b59,6}, {0x804,16}, {0xcd8c,5}, {0x5cea,5}, {0xebab,8}, {0x14c08,5}, {0xa3fb,6}, + {0x386a,3}, {0x179a5,6}, {0x1ec71,7}, {0x29efa,4}, {0xc9c4,10}, {0x30c8,7}, {0x1064,4}, {0xefcb,9}, + {0x2e20,8}, {0x1b395,8}, {0x2935b,4}, {0x2be56,4}, {0x16961,6}, {0x28a7a,3}, {0x31c9,3}, {0xe53,11}, + {0x28685,3}, {0x2195,7}, {0x8482,6}, {0x40f8,6}, {0x2ada9,4}, {0x28080,5}, {0x3559,3}, {0x2be3e,4}, + {0x3d32,9}, {0x11fc2,10}, {0x8afc,4}, {0x26d5b,6}, {0x68bd,4}, {0x981a,9}, {0x3639,6}, {0x25eb5,5}, + {0x1977,8}, {0x2f16,8}, {0x1a49f,5}, {0x1736c,6}, {0xe943,11}, {0x20c94,7}, {0x3758,11}, {0x23007,2}, + {0x1c625,8}, {0x75fa,12}, {0x9484,6}, {0x8bde,12}, {0xa8fa,6}, {0x1b87f,6}, {0x1cc21,4}, {0xbb73,8}, + {0xdc0,3}, {0x2ce3c,4}, {0x2a935,2}, {0xf325,4}, {0x16a1,3}, {0x1dc85,8}, {0xaefc,2}, {0x40ec,3}, + {0x25200,2}, {0x2769,15}, {0x1f3ed,3}, {0x251fd,2}, {0x1ad60,9}, {0xbcfa,4}, {0x1954,4}, {0xacae,8}, + {0xb61a,5}, {0xf789,5}, {0x5442,7}, {0xad32,4}, {0x2313,9}, {0x380e,10}, {0x9a9,8}, {0x9286,9}, + {0x30,46}, {0x789c,5}, {0x1ae4a,4}, {0x1a2e,3}, {0x21d3f,7}, {0xda91,8}, {0x1bd5f,6}, {0x2d728,3}, + {0x15b40,2}, {0xeb32,9}, {0x1614,3}, {0x25c1,4}, {0xfdf,6}, {0x23cd9,5}, {0x25ec7,5}, {0x10024,5}, + {0x10f1,3}, {0x20efb,7}, {0x7066,3}, {0x1161c,10}, {0x3edd,5}, {0x14ec,14}, {0x21950,7}, {0xa29a,8}, + {0x10024,10}, {0x2aee,10}, {0x5bc1,5}, {0x5c98,11}, {0x29af,2}, {0x8ce6,8}, {0x1685,7}, {0x25da,5}, + {0xe581,4}, {0x8c3e,11}, {0x522d,8}, {0x1809d,9}, {0x15b4a,4}, {0x7052,3}, {0x13978,10}, {0x1fa29,5}, + {0xa23a,8}, {0x7385,5}, {0x1abc2,5}, {0x19c2f,2}, {0x13540,9}, {0x1a874,8}, {0x22941,6}, {0x14abc,7}, + {0x13f4,8}, {0x1f3e9,4}, {0x244cb,4}, {0xa0c6,11}, {0x30af,5}, {0x2a184,4}, {0x875e,7}, {0x17e05,5}, + {0xaa9b,2}, {0x21e65,7}, {0x449e,6}, {0x1d81f,6}, {0x10af0,10}, {0x1393c,10}, {0x133c,14}, {0x1a016,4}, + {0x2c3a,4}, {0x10a50,10}, {0xfd9e,5}, {0x283d,3}, {0x8abe,5}, {0x24f90,2}, {0xf78,4}, {0x1ae3,2}, + {0x4124,5}, {0x36da,5}, {0xcae,7}, {0x2a902,3}, {0x24a36,3}, {0x107ba,7}, {0x164ab,9}, {0x1790e,4}, + {0x1f0b1,8}, {0xacf6,4}, {0x13fe0,7}, {0xb6c,6}, {0x878e,9}, {0xeabc,5}, {0xca7,4}, {0x15c8a,9}, + {0xe7d8,11}, {0x416a,5}, {0x15c0c,6}, {0x15f00,8}, {0x3c66,6}, {0x438c,5}, {0x1bd0d,8}, {0x90e6,4}, + {0x1ae4f,2}, {0x251fc,3}, {0x130f,2}, {0x1c1cd,7}, {0x3988,13}, {0xf47,3}, {0x2c4c,14}, {0xa6d2,12}, + {0xfcdb,3}, {0x16a5d,5}, {0x90f2,5}, {0x18af3,9}, {0xc9a3,9}, {0x2c2fa,4}, {0x3fc4,11}, {0x3e26,2}, + {0x168fe,7}, {0x25d67,6}, {0xc421,8}, {0x315d,5}, {0x14d6c,4}, {0xaa95,3}, {0x7f6a,4}, {0x27f0,10}, + {0x137b6,10}, {0x28fd5,5}, {0x1c015,8}, {0xdac8,10}, {0x250b1,6}, {0x720a,6}, {0x223e3,6}, {0x6c8a,6}, + {0x1c0ed,8}, {0x19f2a,5}, {0x2bc46,4}, {0x26acb,5}, {0x8ae2,5}, {0x5a1c,3}, {0x28646,3}, {0xba9c,6}, + {0x1b907,4}, {0x10d8e,10}, {0x13504,7}, {0x1f471,6}, {0xbfd5,11}, {0x1b4db,2}, {0x2e98,9}, {0xe620,11}, + {0xccf,2}, {0x4134,3}, {0x24bc3,6}, {0xccdc,11}, {0x10956,10}, {0x28684,4}, {0xff0c,8}, {0x1aad8,6}, + {0xb83,2}, {0xa08a,10}, {0x14dc0,6}, {0x265b,13}, {0x84b2,5}, {0xb095,3}, {0x3dda,5}, {0x388c,10}, + {0x1431,3}, {0xae5,2}, {0x17d73,9}, {0x1f6a1,5}, {0xfc8d,3}, {0xbb56,6}, {0xd91b,8}, {0x1ac1,5}, + {0x30,44}, {0x44d2,5}, {0xa0ae,12}, {0x92ec,3}, {0x26d01,6}, {0x18496,5}, {0x8c4,14}, {0x27439,6}, + {0x177a4,9}, {0x28775,6}, {0x16ba1,6}, {0x1ad57,6}, {0x15be8,9}, {0x1ec69,8}, {0x1b801,6}, {0x25bb5,4}, + {0xaeea,2}, {0x519e,5}, {0x27919,6}, {0x217d6,7}, {0x7222,5}, {0x109c,3}, {0x1be3,2}, {0x1b6bf,4}, + {0x6f74,6}, {0x9ef2,11}, {0x13c0c,7}, {0x22499,7}, {0x283b,5}, {0x1d3e,7}, {0x23573,6}, {0x143c,15}, + {0x67af,2}, {0x2286d,7}, {0x5aa8,10}, {0x1b6e5,4}, {0x491a,2}, {0x8bf2,4}, {0x2523b,4}, {0x1b93,6}, + {0x1c2b0,2}, {0x31d6,5}, {0xfca3,9}, {0x27232,2}, {0xc2d2,5}, {0x75fa,11}, {0x1aa6c,9}, {0x15ced,6}, + {0x1ac81,7}, {0x223c0,7}, {0x2462,4}, {0x1102c,9}, {0x1304,4}, {0x16df5,9}, {0xa786,7}, {0x19c2d,4}, + {0x3eba,13}, {0xe011,9}, {0x11be4,10}, {0x14288,10}, {0x1e1ff,8}, {0x16379,9}, {0x12d1e,10}, {0x85d2,12}, + {0x267e9,4}, {0xd893,4}, {0xa7aa,5}, {0x17f7d,9}, {0x143f0,10}, {0x1279c,9}, {0x11e78,5}, {0xfed2,8}, + {0x1e2cf,7}, {0x1c2d,4}, {0x12bde,6}, {0x276bd,2}, {0x881e,7}, {0x16ae4,5}, {0x1afd,10}, {0x178c,5}, + {0x218d,8}, {0x3ca6,13}, {0x15d2c,6}, {0x6f62,6}, {0x4292,3}, {0x19819,8}, {0x35ba,3}, {0xd641,4}, + {0xcec5,5}, {0x4776,8}, {0x1b951,6}, {0x19a4,13}, {0x167c,7}, {0x1fbe9,7}, {0x104c5,2}, {0xa098,5}, + {0x1d2f,8}, {0xa014,3}, {0x1196,5}, {0x1750a,9}, {0x11bc6,9}, {0x11b9e,9}, {0x2a43b,4}, {0xb51d,5}, + {0x4e78,13}, {0x1026a,10}, {0xeb2,3}, {0x283d,2}, {0xfc6d,3}, {0x108ca,10}, {0xd78f,5}, {0x5e86,11}, + {0x20d9,6}, {0x3a84,13}, {0x2a46d,4}, {0xf0e,7}, {0x12f85,5}, {0x46c7,6}, {0x13192,6}, {0x177bf,9}, + {0x19a3e,9}, {0x251e6,2}, {0x683e,7}, {0x1e62f,7}, {0x27e1f,3}, {0xa58e,11}, {0x17ef0,6}, {0x22ffb,4}, + {0x109ec,10}, {0x164c,7}, {0x126b6,9}, {0x5f22,13}, {0x29ba,5}, {0x244f5,4}, {0x1a4af,2}, {0x2afa,2}, + {0x3a92,8}, {0x9fa0,5}, {0xfe5,3}, {0x1062,5}, {0x166ac,9}, {0x113f,5}, {0x1139c,10}, {0x194a,6}, + {0xacde,7}, {0x103a5,5}, {0x1aad,5}, {0x5f8a,12}, {0x65d6,9}, {0x7bab,7}, {0x1146e,6}, {0x244bf,4}, + {0x2aeaa,2}, {0x2295d,6}, {0x194b9,9}, {0xd133,7}, {0x1a1f6,2}, {0x58d4,5}, {0x186cd,9}, {0x9000,5}, + {0x2c14,8}, {0x6dd6,4}, {0x1df3,7}, {0x1900c,9}, {0x17f11,9}, {0x7039,2}, {0x10a82,9}, {0x2313,8}, + {0x2a2b0,4}, {0x2b7e1,2}, {0x59d8,12}, {0xf6fa,5}, {0x30,112}, {0x9256,8}, {0x10a0a,8}, {0x27cea,2}, + {0xc8a0,5}, {0xeb2,2}, {0x24199,7}, {0x21e88,7}, {0x256b,8}, {0x24f3,15}, {0xaaea,2}, {0x1e031,4}, + {0x159e,3}, {0x1f58d,2}, {0x17027,5}, {0x108e8,6}, {0xe77,4}, {0x1e67f,8}, {0xdbba,11}, {0x78d6,6}, + {0xad32,7}, {0xd41,8}, {0x360f,2}, {0x13bc,14}, {0xf2e3,6}, {0x20d9,5}, {0x159c8,7}, {0x675c,6}, + {0x1e009,5}, {0x9316,7}, {0x163a6,9}, {0x53ea,4}, {0x18b3b,9}, {0x11509,5}, {0x2904,3}, {0x7bfa,10}, + {0x12850,8}, {0x1705,3}, {0x14e7e,4}, {0x251ec,3}, {0x2b7b3,4}, {0x17da0,8}, {0xaf36,6}, {0x26e2,6}, + {0x935e,10}, {0xc895,6}, {0x1935a,5}, {0x2ba64,4}, {0x2843,2}, {0x15586,5}, {0xb7e5,5}, {0x18850,9}, + {0xba97,8}, {0x12086,4}, {0x123fa,10}, {0x16f7,4}, {0x17c1d,7}, {0x156d0,5}, {0x2b7cb,2}, {0xfc96,5}, + {0x163f0,6}, {0x15dc,14}, {0x4978,4}, {0xaa0e,11}, {0x1031e,6}, {0x7593,3}, {0x1cf79,7}, {0xaeca,4}, + {0x2a905,4}, {0x28f17,5}, {0x7109,5}, {0x1597,5}, {0x6c3e,3}, {0x178c,7}, {0x2158f,6}, {0x4d33,12}, + {0x6c85,5}, {0x21d85,7}, {0x2693,3}, {0x3511,4}, {0x20af0,5}, {0x14bb8,6}, {0x2f5f,4}, {0xffc,7}, + {0x4b79,12}, {0x417a,3}, {0x8c4,26}, {0x2939e,3}, {0x25eb5,6}, {0x17591,9}, {0x1de55,8}, {0x6375,7}, + {0x26e6d,2}, {0xb743,3}, {0x6d1b,4}, {0xf419,3}, {0x3dcc,6}, {0x2ae7,4}, {0x287e5,4}, {0x1e065,5}, + {0xf3b6,4}, {0x8579,4}, {0x5193,6}, {0x1ec71,8}, {0x114d,5}, {0xdbfc,7}, {0x1fc91,8}, {0x2657f,2}, + {0x157a0,6}, {0xa7b6,6}, {0xfa3,4}, {0xd8d,2}, {0x24a2d,3}, {0x1839e,5}, {0x6783,8}, {0x2d10,14}, + {0x1c5cd,8}, {0x2aa25,6}, {0x251cb,3}, {0x252c1,6}, {0xab46,5}, {0x15680,5}, {0x26891,6}, {0x779e,8}, + {0x40fa,2}, {0x13aa4,8}, {0x134e1,5}, {0x18db1,9}, {0x17ab3,9}, {0x1d14d,8}, {0x8c4a,12}, {0x1bfb1,4}, + {0x22fa7,7}, {0x1082,2}, {0x21188,7}, {0x1fbf9,7}, {0xf4df,3}, {0x1a820,3}, {0x1c61,4}, {0x17b9f,5}, + {0xe074,11}, {0xaa21,4}, {0xe2f2,10}, {0x2cdb2,4}, {0x2761b,4}, {0x7ba6,12}, {0x1a2b,6}, {0x1195a,10}, + {0xbe5f,11}, {0x27b4,4}, {0x3c11,4}, {0x1cf05,8}, {0xdd67,10}, {0xc30,4}, {0x30fb,5}, {0x189ca,6}, + {0xc74c,5}, {0xe284,11}, {0xee97,11}, {0x34aa,8}, {0x415e,2}, {0x27c9d,5}, {0x7e0a,5}, {0x8651,5}, + {0x201b1,8}, {0x12d5d,7}, {0xcb0e,7}, {0x6226,2}, {0x2275,3}, {0x5ead,7}, {0xbc70,5}, {0x18bbe,4}, + {0xe3c3,8}, {0x136d0,10}, {0x432,48}, {0x2801,6}, {0x108a,2}, {0x2791f,6}, {0x1d555,8}, {0x10f5,2}, + {0x122e,8}, {0x3d94,5}, {0xa9f6,6}, {0x4240,3}, {0xeeb8,5}, {0x28099,5}, {0x26d3,7}, {0x2d80,8}, + {0xee4,3}, {0x4245,5}, {0xc930,5}, {0xdcd8,11}, {0xa248,5}, {0x277c,6}, {0x264c9,6}, {0x22d95,5}, + {0x1a874,9}, {0x2d64b,2}, {0x224d1,6}, {0x15d50,9}, {0x15a23,5}, {0x1a90d,8}, {0x2a9f,4}, {0x141c,7}, + {0x5efb,10}, {0xb2b,3}, {0xb7ab,8}, {0x16f33,4}, {0xa04a,3}, {0x177e,5}, {0x2b08f,4}, {0x530a,5}, + {0x14f3c,5}, {0xfd25,5}, {0x10652,7}, {0x8a16,5}, {0x18aa2,6}, {0xbbd6,10}, {0x4a2e,5}, {0x2318c,5}, + {0x16a30,7}, {0x40ce,5}, {0x1abcb,4}, {0x2378e,6}, {0x50ee,4}, {0x70ba,8}, {0xb614,11}, {0x18d21,6}, + {0x1d0b5,7}, {0xcaa,4}, {0xb215,5}, {0x6631,7}, {0x23136,7}, {0x2c38,6}, {0xaba2,4}, {0xbb52,6}, + {0x16a86,4}, {0xaf60,2}, {0x15794,6}, {0xc97,4}, {0x1fbc,10}, {0xe544,11}, {0x11626,9}, {0x112c,3}, + {0x214c4,7}, {0x21126,7}, {0x14d4,3}, {0x26fb,4}, {0xbfe6,5}, {0x29512,2}, {0x1481,3}, {0x8ba9,4}, + {0x940b,6}, {0x13160,6}, {0x28842,4}, {0x149ae,5}, {0x14b8,4}, {0x2b50,6}, {0x2c34a,6}, {0x8a22,12}, + {0x1ecd1,8}, {0xbaf4,6}, {0xdaa7,11}, {0x2264,4}, {0x1cc25,8}, {0x8493,6}, {0x201f1,4}, {0x278c5,6}, + {0x47f8,6}, {0x11ec,6}, {0x2cc20,6}, {0x11bc6,10}, {0xb6ae,6}, {0x17b3a,9}, {0x18931,8}, {0xce05,8}, + {0x24a21,4}, {0x251f2,6}, {0x1ff71,5}, {0x3c65,7}, {0x142a6,10}, {0x6f68,6}, {0x12f12,5}, {0x24a3b,4}, + {0x3d32,12}, {0xec3a,11}, {0xe119,10}, {0x2a934,2}, {0x289c6,5}, {0x17fc,8}, {0x14698,5}, {0x430,10}, + {0x242fe,5}, {0x1bb8d,6}, {0x1b37d,8}, {0x19bc,4}, {0x18928,9}, {0x1a3d0,9}, {0x10bfe,8}, {0x28ed1,5}, + {0x2878b,6}, {0x164a2,9}, {0x14bc2,5}, {0x115c2,10}, {0xd225,11}, {0xdaf,2}, {0x3275,5}, {0x21c74,6}, + {0x100b3,4}, {0x11338,10}, {0x194ef,5}, {0x542c,4}, {0x19cc,3}, {0x10756,8}, {0x10e42,6}, {0x27715,6}, + {0x1d77f,8}, {0x891a,12}, {0x167d5,9}, {0x161c,16}, {0x1a5d3,4}, {0x1860,5}, {0x286a6,3}, {0x5358,8}, + {0x15266,5}, {0x929e,5}, {0x10bd6,10}, {0x27619,6}, {0xb984,6}, {0x1e56,4}, {0xe9a6,7}, {0x17ac5,9}, + {0xe707,11}, {0x1ca85,6}, {0x12f58,6}, {0xe9e8,8}, {0x5f33,6}, {0x235b9,6}, {0x16f15,9}, {0x2bad0,4}, + {0xe35,6}, {0x73e1,3}, {0x1959,14}, {0x1d55d,8}, {0x1b4e,5}, {0x223e3,7}, {0x76ba,10}, {0xaf5c,2}, + {0x1f2ac,2}, {0x25093,2}, {0x1193c,7}, {0x164b4,9}, {0x1def7,8}, {0x17777,8}, {0x2d587,3}, {0x17a2c,9}, + {0x1d9dc,5}, {0x1b57,5}, {0xca11,11}, {0xf25a,5}, {0x190a,4}, {0x31d2,14}, {0x23ea,5}, {0xc904,5}, + {0x2467b,6}, {0xea77,8}, {0x1d91,10}, {0xf443,8}, {0x1458c,4}, {0x8f3e,12}, {0x2360b,2}, {0x1825f,6}, + {0xc9f2,3}, {0xc838,11}, {0xf9b1,4}, {0x3330,14}, {0x3f59,2}, {0xb2d,2}, {0x37b4,3}, {0x19b1f,9}, + {0x10cd3,7}, {0x1a72,4}, {0x8afc,2}, {0x1710f,6}, {0x989a,4}, {0x4204,5}, {0x4412,3}, {0x17d75,7}, + {0x16077,3}, {0x10f2,2}, {0x51ad,3}, {0x1022e,6}, {0x1c14,6}, {0x3f0e,8}, {0x5e11,6}, {0x1bc3,3}, + {0x11270,10}, {0x12766,4}, {0x11504,10}, {0xe279,10}, {0x59cb,9}, {0x5630,6}, {0xc63e,7}, {0xe355,11}, + {0xce26,10}, {0x11ec8,5}, {0x22c86,7}, {0x4f3b,13}, {0x54aa,9}, {0x18514,6}, {0x10ab9,5}, {0x13d10,8}, + {0x283b,4}, {0x14db6,6}, {0x2446d,2}, {0x2c258,2}, {0x142c,8}, {0x4220,5}, {0x22e8f,7}, {0x1da0,5}, + {0x21c27,6}, {0x27ca3,5}, {0x1a560,2}, {0x22b5e,6}, {0x1de00,5}, {0x23b8,9}, {0x16475,8}, {0x1a972,5}, + {0x1fe91,8}, {0x1924c,8}, {0x8ba7,6}, {0x68bb,7}, {0xfbc5,8}, {0x19d68,9}, {0xbfe0,11}, {0xc6ac,7}, + {0x4338,11}, {0x28e2,6}, {0x24693,6}, {0x2200,5}, {0xba29,7}, {0x19ca,2}, {0x1175c,10}, {0x600c,10}, + {0xe3b8,10}, {0x3782,12}, {0x8a43,3}, {0x67de,9}, {0x7c4,10}, {0x141c,4}, {0xbb94,11}, {0xdb2b,10}, + {0x4188,2}, {0x4797,6}, {0x1d83b,3}, {0x2c020,2}, {0x1a732,7}, {0xc135,10}, {0x591d,5}, {0x40c0,7}, + {0x1d0ad,7}, {0x196f,3}, {0x2934c,4}, {0x1282e,4}, {0x687a,7}, {0x1a607,5}, {0x56b2,5}, {0x72fa,9}, + {0x10a92,4}, {0x2caf4,6}, {0x70cc,4}, {0x1293,3}, {0x64d2,12}, {0x4352,2}, {0x11b08,9}, {0x9c16,9}, + {0x1ac49,9}, {0x2ae3f,4}, {0x1331,3}, {0x128dc,10}, {0x1275,7}, {0x1f734,5}, {0x16b02,4}, {0x25245,4}, + {0x1fc4,3}, {0xe954,5}, {0xb67,5}, {0x70b0,6}, {0x21f5a,7}, {0x27925,6}, {0x14922,5}, {0x2cd1,4}, + {0xb8cf,5}, {0x1254,6}, {0x1c29d,8}, {0x8a92,4}, {0x1b4e3,2}, {0x23a1,8}, {0xdd30,6}, {0x13d24,6}, + {0x2a373,4}, {0x32d8,3}, {0x3544,10}, {0xa14a,5}, {0x3f48,5}, {0xda65,8}, {0x12bfc,8}, {0x1ace2,9}, + {0x150c,10}, {0x12684,10}, {0x29779,5}, {0x1f529,8}, {0xd414,11}, {0x11612,10}, {0x675c,9}, {0x1a83e,7}, + {0xfe71,6}, {0x92e6,6}, {0xc9da,11}, {0xb84a,6}, {0xdbd0,11}, {0x22041,7}, {0x18727,6}, {0xd27d,11}, + {0x276b,5}, {0x1d4fd,8}, {0x265df,4}, {0xd8d9,6}, {0x12da0,10}, {0x66cd,7}, {0x511c,8}, {0x8c45,5}, + {0x1af22,5}, {0xea98,5}, {0x1dcb5,7}, {0x6b2b,6}, {0xabee,11}, {0x2151,11}, {0x1d907,8}, {0x10c8a,8}, + {0x5ac2,6}, {0x21ad0,7}, {0x2a923,4}, {0x1c695,8}, {0x94ba,12}, {0xdb31,5}, {0x28053,5}, {0x428d,2}, + {0x438c,10}, {0x4569,4}, {0x8c4,16}, {0x170be,6}, {0x1cc1d,8}, {0x5259,4}, {0x2aa4b,4}, {0x28dd0,2}, + {0x3846,5}, {0x9c3a,12}, {0x11c10,4}, {0xafd2,6}, {0x14d9d,5}, {0x250c9,2}, {0xfde2,5}, {0x2542,7}, + {0x3f1c,9}, {0x1de6,5}, {0x5ddd,6}, {0x9e37,7}, {0x16c28,9}, {0x4524,4}, {0x180c,7}, {0xb6c,7}, + {0x9496,8}, {0x443c,4}, {0x1e14,3}, {0x51b0,4}, {0x21ec7,7}, {0x430,14}, {0x53b3,10}, {0x46e1,4}, + {0x41f8,2}, {0xbc65,11}, {0x133c2,6}, {0x86da,5}, {0x1017e,6}, {0xc829,4}, {0x13f04,10}, {0x2d5b7,2}, + {0x19216,8}, {0x18004,9}, {0x15a62,5}, {0x1d0d5,8}, {0x177c,5}, {0x153d0,5}, {0xcd81,7}, {0x1b5a,4}, + {0x68bb,11}, {0xaeda,2}, {0x132f0,10}, {0x21024,4}, {0x27e2a,3}, {0x15d98,7}, {0x276cd,4}, {0x3c1a,9}, + {0xc76,2}, {0x27931,6}, {0x15a79,5}, {0x2675a,2}, {0x1f979,6}, {0x29df1,4}, {0x22244,7}, {0xb69,3}, + {0x22116,5}, {0x5a74,7}, {0x4991,3}, {0x2585,3}, {0x532,56}, {0x3f72,4}, {0x2a9f4,7}, {0xf69a,8}, + {0xebcc,7}, {0xfda0,3}, {0x2b751,2}, {0xaae8,2}, {0x17c1d,6}, {0x7756,11}, {0x131b3,4}, {0x4be1,13}, + {0x6224,8}, {0xdf0e,6}, {0x1a99d,9}, {0x4979,3}, {0x16e2b,9}, {0x25873,6}, {0x9f6f,6}, {0x3dcc,8}, + {0x176d5,8}, {0x1e357,7}, {0xa8a6,5}, {0x1c8e5,8}, {0x278df,4}, {0x22abe,4}, {0x278eb,4}, {0x1509c,2}, + {0x2a9a7,3}, {0xf49b,5}, {0xed5d,5}, {0xa222,8}, {0x4f4d,3}, {0x16a1e,9}, {0x10960,8}, {0x14878,9}, + {0x4ed3,7}, {0x43cf,5}, {0x1cf27,8}, {0xd763,10}, {0x190db,9}, {0x10c94,10}, {0x107c8,5}, {0xc6a8,4}, + {0x14ca8,4}, {0x7222,7}, {0xdbaf,10}, {0x2aeb2,2}, {0x10de3,5}, {0x10b86,9}, {0x92e9,4}, {0x1b123,4}, + {0x1a7e1,3}, {0x2868d,3}, {0xefda,5}, {0x29976,5}, {0x1d38d,5}, {0x8651,4}, {0x13f90,9}, {0xcef3,4}, + {0x25c0,5}, {0x8a8e,8}, {0x213d6,7}, {0x948,16}, {0x2b36e,3}, {0x160c,15}, {0x20bb,11}, {0x29330,2}, + {0x11c9b,7}, {0xdac,3}, {0x1db20,5}, {0x12e90,10}, {0x5b22,5}, {0x20adf,2}, {0xe011,7}, {0x21005,7}, + {0x90ae,4}, {0x8902,5}, {0xb062,6}, {0x9c9,8}, {0x26e0f,6}, {0xd69,2}, {0x1190,2}, {0x16a4,5}, + {0x679d,8}, {0x535a,3}, {0x7558,3}, {0x2f53,2}, {0x9922,12}, {0xd9e1,11}, {0x2469f,6}, {0x6067,6}, + {0x3442,6}, {0x2201,3}, {0x133a7,5}, {0x1a3d9,5}, {0x14ed8,10}, {0x15682,3}, {0x14616,5}, {0x1daf,7}, + {0xf89c,6}, {0x1196,6}, {0x5476,9}, {0x12c10,10}, {0xab0a,5}, {0x1bffd,8}, {0xd787,5}, {0x21e34,7}, + {0x1c51d,8}, {0x29f40,4}, {0x16ec,4}, {0x1a014,6}, {0x7bb9,5}, {0x35d3,5}, {0xe6d,5}, {0x377c,3}, + {0x5422,6}, {0x10fcc,5}, {0x5c07,8}, {0x24771,4}, {0x1313,7}, {0x6f23,3}, {0x1031e,9}, {0x30fb,4}, + {0xd6d,9}, {0x250f6,2}, {0x1904b,9}, {0x24300,3}, {0x19fb1,5}, {0x14936,4}, {0x1dc8d,8}, {0x4617,5}, + {0x21cba,7}, {0xf5e7,7}, {0x12eae,10}, {0xbe2e,4}, {0x2b083,4}, {0x96b2,12}, {0x2445c,4}, {0x18c40,6}, + {0x22e1,3}, {0x35c7,6}, {0x2c76,5}, {0x28fc4,2}, {0x289d0,5}, {0x26fb,5}, {0x134dc,10}, {0xf917,7}, + {0x42ae,3}, {0x15108,10}, {0xd784,5}, {0x17657,9}, {0x5f03,5}, {0x28c73,5}, {0x2b810,4}, {0x4d5a,8}, + {0x2792b,6}, {0x2589,6}, {0x1b1cf,8}, {0x278f1,4}, {0xbe84,6}, {0x1ec81,8}, {0x22d9a,7}, {0x278e5,4}, + {0xdb8e,11}, {0x18e6,10}, {0xfca1,11}, {0xb5c7,11}, {0x273ab,2}, {0x2c830,4}, {0x1574c,2}, {0x15833,5}, + {0x26135,4}, {0x3d6a,7}, {0x6f1b,5}, {0xee7,5}, {0x16de,5}, {0xd8e4,6}, {0x2b88,12}, {0xc419,6}, + {0x13626,6}, {0x1e5b7,8}, {0x4178,6}, {0xe20,16}, {0x35ec,11}, {0x2a882,5}, {0xf070,7}, {0x2789b,5}, + {0x26042,2}, {0x1b1f,3}, {0x1451c,10}, {0x1058,10}, {0x2b6fd,3}, {0x1921f,9}, {0x3244,5}, {0x236d3,3}, + {0x2409,5}, {0x110c2,6}, {0x1fd01,8}, {0xb05d,5}, {0x15833,9}, {0x39dc,5}, {0x1fa01,7}, {0x18b17,9}, + {0x1f883,3}, {0xefe1,7}, {0x10ca,3}, {0x6846,12}, {0x21b2b,7}, {0x25d4,11}, {0x2ba62,6}, {0xacde,12}, + {0x1d6d7,8}, {0x162f2,5}, {0x2b900,4}, {0xb53,2}, {0xf369,3}, {0xab3a,5}, {0x31d2,13}, {0x11cca,5}, + {0xd915,6}, {0x1ad57,9}, {0x1bd7d,8}, {0x6661,4}, {0x1fb1,9}, {0xb9a5,5}, {0x1ad06,9}, {0x5af9,6}, + {0x28880,5}, {0x19fc5,7}, {0xacb0,2}, {0x294ca,5}, {0x13336,10}, {0x2ad8f,4}, {0x11784,10}, {0x139b4,9}, + {0x1a1c,13}, {0x1e09,13}, {0xec66,10}, {0x333e,10}, {0x1ef2,3}, {0x30cc,3}, {0x220aa,7}, {0xf10,4}, + {0x1c419,4}, {0x24a11,5}, {0x750e,7}, {0x93be,10}, {0x2b7c0,2}, {0xa7da,5}, {0x432,7}, {0x10698,5}, + {0xc8bc,7}, {0x20d40,7}, {0x7eb8,5}, {0x2573,3}, {0x15220,5}, {0x47fe,5}, {0x3879,4}, {0x1195,2}, + {0x50f0,5}, {0x1a7f,6}, {0x26453,6}, {0x97d8,3}, {0x1f17,8}, {0xa552,5}, {0x25206,4}, {0x74da,7}, + {0x1e1df,7}, {0x22f68,6}, {0x13694,10}, {0xb493,9}, {0x1a94,5}, {0x17ee,2}, {0xbe35,6}, {0x1d6e7,6}, + {0x22f94,5}, {0x28efb,2}, {0x10f14,9}, {0x148dc,9}, {0x4797,5}, {0x7c4,7}, {0x1ac30,5}, {0x29edc,4}, + {0x936a,11}, {0x3fe4,3}, {0x3c28,6}, {0xc156,11}, {0x1f901,8}, {0xc303,11}, {0x2447d,6}, {0xc5c3,11}, + {0x983e,12}, {0x15e31,6}, {0x13b8a,10}, {0xcbbe,8}, {0xfc09,3}, {0xf90c,7}, {0x83eb,5}, {0x2070,7}, + {0xc8d4,4}, {0xaada,4}, {0x1dd85,8}, {0x19d0e,9}, {0x2aa3f,4}, {0x1a201,2}, {0x5a50,5}, {0x2a875,3}, + {0x2d184,2}, {0x152c3,3}, {0x1077e,6}, {0x1eb79,7}, {0x26e7b,4}, {0x9982,9}, {0x26c85,4}, {0xf49b,8}, + {0x155ae,5}, {0x1760f,5}, {0x27939,4}, {0x22e50,7}, {0x2c93e,4}, {0x1bb1a,2}, {0x1ce39,4}, {0x9226,10}, + {0x26f80,2}, {0x27cfd,2}, {0x24a2e,4}, {0x17c0b,6}, {0xc65,8}, {0x1cbf,6}, {0x19d7a,8}, {0x1e019,8}, + {0x11cf2,10}, {0xb9c2,4}, {0x27ca5,3}, {0x2a341,4}, {0x606e,5}, {0x4a55,4}, {0xf55e,3}, {0x1f8e1,5}, + {0x1c4d5,8}, {0xd090,3}, {0xf85,15}, {0xf681,5}, {0x21cc1,7}, {0x1431e,10}, {0xf6a4,6}, {0x284a,4}, + {0x7372,12}, {0x265b,5}, {0x53e7,7}, {0x10c6c,7}, {0x166ef,5}, {0x3288,14}, {0x2a16,4}, {0x13b9e,7}, + {0x530c,3}, {0x43ce,6}, {0x377c,6}, {0x23296,2}, {0xaaf2,4}, {0x157a6,6}, {0x152a4,4}, {0x251ff,3}, + {0x1745f,9}, {0x278d9,4}, {0x19f1,13}, {0x17bb1,6}, {0xdd5,3}, {0x84f5,5}, {0x10ea6,7}, {0x6035,11}, + {0x14cbf,2}, {0x5b44,5}, {0x1e2e7,7}, {0x19f3e,2}, {0x15b0,2}, {0x11b08,10}, {0x16a27,8}, {0x14e2e,6}, + {0x6f14,11}, {0x748e,3}, {0x2958,9}, {0x17dfa,9}, {0x4e85,9}, {0x196ba,7}, {0x1887d,9}, {0xc16c,8}, + {0x1a496,5}, {0x29d6,5}, {0x13560,7}, {0x2974,5}, {0x33fd,5}, {0x1b4eb,4}, {0x265b,7}, {0xc7ae,6}, + {0x1954,3}, {0x2655f,6}, {0x2f5c,7}, {0x2787,5}, {0x24549,6}, {0x174c,8}, {0x43e3,5}, {0x27d08,2}, + {0x133fe,10}, {0x198cd,6}, {0x1dc4d,8}, {0x20b3,5}, {0x1eaa7,8}, {0xc9e5,4}, {0xe6c5,11}, {0x1240e,9}, + {0x3ed0,3}, {0x4186,5}, {0x2842b,3}, {0x12346,10}, {0x1418e,10}, {0x5dd0,6}, {0x1b3c8,9}, {0x19078,7}, + {0x21229,7}, {0x177b6,8}, {0xdba,5}, {0x20e19,7}, {0x1612e,5}, {0x234cb,7}, {0x2575,5}, {0x14907,7}, + {0x18b56,9}, {0x2945,5}, {0x1d797,8}, {0x8a52,5}, {0x17885,9}, {0x1b7a5,8}, {0xe6d,8}, {0x1370c,10}, + {0x191f2,9}, {0x16d53,9}, {0x28e8,3}, {0x270f,5}, {0x161c,6}, {0x3cec,9}, {0x8a8e,9}, {0xfb53,11}, + {0x432,5}, {0x3a55,5}, {0x1c351,4}, {0x214b6,6}, {0x7a56,5}, {0xd98,12}, {0xba08,6}, {0x1b5f3,3}, + {0xa492,11}, {0x1617f,6}, {0x28c1,7}, {0x150c,12}, {0x10a96,10}, {0x1843e,5}, {0x3e22,5}, {0x19c63,5}, + {0x2c866,4}, {0x273c,4}, {0x4350,2}, {0x13b84,6}, {0x4a27,7}, {0x1a781,6}, {0x44d2,6}, {0x1677b,9}, + {0x78ac,2}, {0xff14,8}, {0x19b43,5}, {0x1dd0,3}, {0x385b,4}, {0x19d83,5}, {0xb8a,3}, {0xe258,8}, + {0x1b945,4}, {0x29938,2}, {0xeb5e,8}, {0x758e,8}, {0x897c,4}, {0x16be,3}, {0x432,128}, {0x2c1de,4}, + {0x2347,3}, {0x4f48,9}, {0x2b7cc,2}, {0xc71,2}, {0x29122,2}, {0x21f1b,6}, {0x28423,3}, {0x41e8,5}, + {0x1a847,6}, {0xe2b0,11}, {0x2ba3a,4}, {0x13084,10}, {0xf30,16}, {0x265cd,4}, {0x12f9e,10}, {0x2c0a,4}, + {0x5be3,2}, {0x15a4,8}, {0x209d,5}, {0xf87b,5}, {0xbc3,5}, {0x12062,8}, {0x90e2,7}, {0x5c62,12}, + {0x159ed,5}, {0xe7b,9}, {0x18391,9}, {0x16ed6,7}, {0xfe6f,11}, {0x1f,3}, {0x2295,3}, {0x24519,4}, + {0x6f34,3}, {0x1e029,7}, {0x10800,6}, {0x6f21,13}, {0x7288,6}, {0x1d45d,8}, {0x10fb4,10}, {0x8eba,10}, + {0x217cf,7}, {0x1f2f1,7}, {0x1817e,5}, {0x21317,7}, {0x5997,6}, {0xed8f,11}, {0xdb4c,11}, {0x2a24c,4}, + {0x323a,4}, {0x2d70d,3}, {0x6f57,9}, {0x19c78,6}, {0x278d3,4}, {0xd246,11}, {0x153c,9}, {0x4a84,6}, + {0x1b873,4}, {0x46e7,9}, {0x13db0,7}, {0x20ebc,7}, {0x13c02,10}, {0x1c1b5,8}, {0x14f68,2}, {0x260f1,6}, + {0x364e,5}, {0x18e14,8}, {0x187a,5}, {0x1bc0d,8}, {0x3712,8}, {0x6f8c,6}, {0x4cff,9}, {0x4884,3}, + {0x21da,3}, {0x6cbe,5}, {0x1e7a7,8}, {0x5080,12}, {0x131ec,7}, {0xc15,3}, {0x6a34,8}, {0x9aae,12}, + {0x22fa0,7}, {0x19b0f,5}, {0x9dba,12}, {0x51df,5}, {0x1c9b5,7}, {0x251d0,2}, {0x142c,4}, {0x269e1,4}, + {0x21c5f,6}, {0x1812d,9}, {0x69bf,9}, {0x19564,6}, {0x20f1a,4}, {0x284d,3}, {0x27916,3}, {0x5a81,6}, + {0x19b8e,3}, {0xde0c,11}, {0x11978,9}, {0x1015c,4}, {0x47aa,8}, {0x1d55,7}, {0x2aefa,3}, {0x2cc4a,4}, + {0x550f,3}, {0x12a94,9}, {0x23db,8}, {0x5aae,3}, {0x14634,5}, {0x8e72,7}, {0x1241,4}, {0xf92d,6}, + {0x734e,12}, {0xc45e,5}, {0x1d32d,8}, {0x1ef91,8}, {0x2a946,4}, {0xb165,7}, {0xf943,5}, {0x278fd,4}, + {0x14530,10}, {0x27cee,6}, {0x15f24,9}, {0x1858,8}, {0x5476,6}, {0x120c6,9}, {0x5184,7}, {0x1cb0,8}, + {0x91f6,12}, {0x1fc0c,4}, {0x7260,5}, {0x2199f,7}, {0x3678,9}, {0xf25f,5}, {0x26c2f,6}, {0x5c25,5}, + {0x1f731,8}, {0x10378,10}, {0x52fd,9}, {0x1187e,10}, {0x23de8,4}, {0x318c,7}, {0x845e,5}, {0x218d9,7}, + {0x2446a,4}, {0x202d1,6}, {0x27d95,4}, {0xbd6d,7}, {0x9e68,3}, {0x15986,3}, {0x1509a,6}, {0xbff6,11}, + {0xf594,4}, {0x1552c,7}, {0x782e,12}, {0x8b66,5}, {0x1dbf5,6}, {0x12ed6,9}, {0x26099,5}, {0x16f3b,4}, + {0x168c3,4}, {0xc2e2,10}, {0x1ed19,7}, {0x26c35,6}, {0x1970b,9}, {0x19b94,4}, {0x115c,4}, {0x14940,9}, + {0x4c56,12}, {0x2c980,4}, {0x8975,5}, {0x29f36,4}, {0xa7aa,9}, {0x169d6,9}, {0x28423,5}, {0x170c,11}, + {0x2ade3,4}, {0x9a36,9}, {0x1afbe,2}, {0x807a,12}, {0x190d2,9}, {0xa889,2}, {0x19d6,4}, {0x106d4,5}, + {0x90ee,9}, {0x53a8,4}, {0x28a5a,4}, {0x1d672,5}, {0x1ebd,14}, {0x14436,10}, {0x1e68f,8}, {0xdd1c,4}, + {0x13b98,5}, {0xf829,2}, {0xa456,12}, {0x74ce,5}, {0x8472,4}, {0x1390a,9}, {0x37d6,9}, {0x238b,9}, + {0x1db1f,6}, {0xa156,6}, {0x291bd,2}, {0x23bf2,2}, {0x1502c,6}, {0x11b62,10}, {0x68ae,12}, {0x223d7,5}, + {0x2a030,4}, {0x214c4,6}, {0x11102,5}, {0x9b62,8}, {0x15437,4}, {0xe187,11}, {0x24a3f,3}, {0xacae,12}, + {0x640f,13}, {0x2451f,4}, {0x1ad76,5}, {0x2482,3}, {0xd7f,4}, {0x193a2,6}, {0xc8f3,7}, {0x178df,9}, + {0x23123,5}, {0x423f,4}, {0x152de,4}, {0x253e1,4}, {0xfed0,12}, {0x1ae41,4}, {0x19b91,3}, {0xbd9,2}, + {0x15ec1,7}, {0x30e4,14}, {0x16fc,8}, {0x75d6,12}, {0x216c3,7}, {0x2ba9,3}, {0x167c,4}, {0x169df,6}, + {0x1cab5,8}, {0x11e46,10}, {0x55d1,4}, {0x100d,6}, {0x3cde,13}, {0x25fa,7}, {0x2ada1,4}, {0x1fd89,7}, + {0x4957,8}, {0x18589,9}, {0x278f7,4}, {0x16ac,4}, {0x1a32,2}, {0x2f3c,3}, {0x2b4b,5}, {0x1f159,4}, + {0x14f00,10}, {0x1015,5}, {0x1ed3,4}, {0x2043,9}, {0x4a75,13}, {0x600e,3}, {0x2205d,7}, {0x407a,10}, + {0x6477,10}, {0x189d3,8}, {0x27c7f,5}, {0x15dfb,6}, {0xa7a5,5}, {0x3a5a,5}, {0x13888,10}, {0x195e2,5}, + {0x1e75a,2}, {0x762a,7}, {0x23c7,7}, {0x11388,10}, {0x10b36,7}, {0x255fb,6}, {0x4042,7}, {0x20479,5}, + {0x1713c,5}, {0x1c81d,5}, {0xd41,5}, {0x1c6c5,8}, {0x540e,13}, {0x1fad,10}, {0x1f10,4}, {0x1ce9d,8}, + {0xa01e,9}, {0x1113a,10}, {0xeee4,8}, {0x22d9c,5}, {0x10b04,8}, {0xaed,2}, {0x6957,6}, {0x25da3,6}, + {0x146b0,6}, {0xfc9,10}, {0x4443,9}, {0x1eed9,4}, {0x92c9,5}, {0x8a6f,2}, {0xd866,5}, {0x14d5,7}, + {0x140b2,10}, {0x37ae,4}, {0x295a4,2}, {0xeada,5}, {0x269ed,4}, {0x7585,5}, {0x1d89,4}, {0xfcfc,3}, + {0xcc7,6}, {0x1c9e5,5}, {0x18217,6}, {0xa7aa,6}, {0x20986,3}, {0x1290,5}, {0x2aef2,3}, {0x6f50,5}, + {0x10f8,3}, {0x2237,7}, {0x223dc,7}, {0x29b8d,4}, {0x8058,7}, {0x2b354,2}, {0xab46,7}, {0x5bb9,13}, + {0x73ea,6}, {0x3288,13}, {0xcfd,14}, {0xee1a,4}, {0x20553,4}, {0xfdd,8}, {0x2958f,2}, {0x27e6f,3}, + {0x1d687,8}, {0xd45,3}, {0x11c48,10}, {0xa4b6,7}, {0x416c,3}, {0x30,512}, {0x14940,8}, {0x1286e,6}, + {0xdbdb,11}, {0xe006,5}, {0x5bf1,7}, {0x1b6dd,8}, {0x1bb3d,8}, {0x12f80,10}, {0xcee,4}, {0xa1c2,11}, + {0x1a96,3}, {0x2d10d,3}, {0xc37,10}, {0x182a7,6}, {0x909c,6}, {0x1cc8d,8}, {0x986a,4}, {0x2a9f,6}, + {0x4bba,9}, {0x159c,15}, {0x30ac,8}, {0x1da09,4}, {0x251cc,5}, {0x17e27,7}, {0x4bee,8}, {0x11a5,4}, + {0x781,2}, {0x922,4}, {0x16f5f,6}, {0x193a6,5}, {0x29834,5}, {0x4b2b,9}, {0x14c12,8}, {0x7c25,5}, + {0x1487a,7}, {0x863e,6}, {0x26033,6}, {0x12dec,4}, {0x16ed6,5}, {0x16b0,4}, {0x209d,6}, {0x14120,7}, + {0x19ae9,9}, {0xb937,11}, {0x9406,11}, {0xddb4,10}, {0x5377,7}, {0x278a7,5}, {0x109d8,10}, {0xc23d,10}, + {0xdb83,10}, {0x3686,8}, {0x1a3ed,7}, {0xacbc,3}, {0x2349,6}, {0x11ee6,6}, {0x7dda,12}, {0x8f1a,12}, + {0x4fdd,7}, {0x2657b,2}, {0x13228,7}, {0x1142e,4}, {0x1181a,6}, {0xa54a,7}, {0x1015a,10}, {0x102ce,10}, + {0x80fe,8}, {0x1a25d,6}, {0x1b885,4}, {0xeac4,6}, {0x208e,5}, {0x148c8,7}, {0x38d2,7}, {0xc8dd,6}, + {0xd6b3,7}, {0x1d80f,8}, {0x2702,3}, {0x273a9,4}, {0x26835,4}, {0xb257,9}, {0xf264,6}, {0xb299,9}, + {0x15114,8}, {0x26333,5}, {0x24a36,2}, {0x2441,6}, {0x1b1f7,8}, {0x2d22,7}, {0xacf8,2}, {0x1a4b1,4}, + {0x136c,7}, {0x8a48,3}, {0xe678,11}, {0x140d0,10}, {0x21c4a,6}, {0x317e,9}, {0x14faa,5}, {0xaf5e,2}, + {0x1c97d,6}, {0x2a9fb,7}, {0x18472,6}, {0xde9,3}, {0x2889b,5}, {0xe662,10}, {0x10cc0,6}, {0xb5a1,5}, + {0xfccd,5}, {0xc89b,10}, {0xa623,4}, {0x156e4,8}, {0x273c,6}, {0x10f0a,10}, {0x3e3c,12}, {0x1eca9,8}, + {0x20947,3}, {0x7a3e,6}, {0xaaed,2}, {0x2bb04,6}, {0x80bd,5}, {0x6aba,5}, {0x23177,5}, {0x2a1b6,4}, + {0x2793d,6}, {0x5bb3,6}, {0x696b,6}, {0x2b804,3}, {0x13de2,10}, {0x15c7,5}, {0x1e347,6}, {0x4501,5}, + {0x13f2c,10}, {0xece,2}, {0x278a9,3}, {0x39d0,3}, {0x7654,6}, {0x705e,4}, {0x19030,9}, {0xacbc,2}, + {0x2c06,7}, {0x1ba7d,8}, {0x17bf9,9}, {0x1929d,8}, {0x257c,3}, {0x23dcc,7}, {0x9cb8,5}, {0xa936,5}, + {0x39a4,13}, {0xd0db,7}, {0x155db,3}, {0x142c,14}, {0x1341,4}, {0x40c2,2}, {0x5a74,6}, {0x1a1f3,2}, + {0x10b7,9}, {0xe8ba,5}, {0xe5bd,9}, {0x7c2a,8}, {0x27a7,3}, {0x15dc,8}, {0x259a,6}, {0xd973,10}, + {0x2a152,4}, {0x102b2,3}, {0x16784,8}, {0x1be25,8}, {0xee7,3}, {0x142e,2}, {0x500b,5}, {0x1bd4d,8}, + {0x22502,6}, {0x23121,7}, {0x30f4,5}, {0x12a44,7}, {0x4617,9}, {0x2af15,4}, {0xdfe,9}, {0x170c,5}, + {0x258eb,6}, {0xbb05,11}, {0x103f0,10}, {0x54e4,4}, {0xd78,3}, {0x1a3a,13}, {0x6738,7}, {0x14562,10}, + {0x19cab,5}, {0x2a2e2,4}, {0x2b131,4}, {0x209b9,2}, {0x14d5c,5}, {0x21f0d,7}, {0x289d2,3}, {0x5b1d,10}, + {0xb9dc,11}, {0xe2bb,8}, {0x1548c,7}, {0x131e2,7}, {0xff34,8}, {0x135f4,7}, {0x1c7a5,7}, {0x11d1a,6}, + {0x161eb,9}, {0x4f6f,13}, {0x8afa,6}, {0x35b4,7}, {0x2aea2,3}, {0x44b8,11}, {0x972a,7}, {0x734,32}, + {0x219c9,7}, {0x532,22}, {0x20221,5}, {0x470e,5}, {0x21c58,7}, {0x2607b,6}, {0xf537,3}, {0x3167,7}, + {0x1642,3}, {0xfd1a,6}, {0xdba,7}, {0x30,50}, {0xcd9,6}, {0x7c16,5}, {0xb677,10}, {0x4230,2}, + {0x1a8f2,6}, {0x897a,6}, {0xafae,6}, {0x1f6a1,4}, {0x2a27e,4}, {0x11914,6}, {0x10ac8,8}, {0x165b4,5}, + {0x10f3,2}, {0x1b51b,8}, {0x63c1,12}, {0x6e51,5}, {0x1408a,10}, {0x7aaa,8}, {0x2d31,9}, {0x7db6,11}, + {0x101f2,7}, {0xefe1,9}, {0x17bea,5}, {0x1505e,5}, {0xd16a,11}, {0x1abd9,3}, {0x23965,7}, {0x1a9ca,9}, + {0x2b793,3}, {0x14ce6,4}, {0x13cd4,5}, {0xb61,2}, {0xa938,3}, {0x77c2,7}, {0x5c76,5}, {0x2ce28,4}, + {0x2331,14}, {0x479d,11}, {0x1ab8c,5}, {0x229f,9}, {0x3090,4}, {0xd578,5}, {0x90e6,8}, {0x21967,4}, + {0x1afd,15}, {0x1b63b,3}, {0x50a7,5}, {0x1e4a7,5}, {0x16aed,5}, {0x24c74,2}, {0x1d0d,3}, {0x4bc2,5}, + {0xbe64,5}, {0x53ad,6}, {0x7abd,5}, {0x7a32,5}, {0xe2e0,3}, {0x11d92,8}, {0x5d9c,8}, {0x16997,6}, + {0x3e15,4}, {0x273cd,5}, {0x32d8,4}, {0x7438,5}, {0x10534,6}, {0xe804,6}, {0x294cc,2}, {0x15ae2,3}, + {0xf3e0,6}, {0x3f84,4}, {0x5372,12}, {0x92e6,8}, {0x1f6a3,2}, {0x22f68,7}, {0x282ef,5}, {0x2c79a,4}, + {0x2a92,5}, {0x2a9e5,7}, {0x2915e,2}, {0x261d7,6}, {0x14878,6}, {0x21da1,5}, {0xd20f,10}, {0xa8fa,9}, + {0x19a6b,4}, {0x21f14,7}, {0xe796,11}, {0xe355,10}, {0x17289,9}, {0x145b2,6}, {0x2bb2e,4}, {0xa77a,7}, + {0x8458,6}, {0x16b1,6}, {0x7726,12}, {0x2c2b8,2}, {0x926e,8}, {0xbe80,10}, {0xc1e5,11}, {0xf438,8}, + {0x13928,10}, {0x1a4ce,4}, {0x16272,9}, {0x1ecb1,8}, {0x2658c,3}, {0x1b6b9,3}, {0x18531,5}, {0x1a66a,6}, + {0x1b81,3}, {0x5956,5}, {0x2337b,5}, {0x3d78,7}, {0x348e,13}, {0x23ab5,7}, {0x1a955,9}, {0x18bb9,9}, + {0x18681,4}, {0x19d3d,6}, {0x1b1a3,4}, {0xa47a,12}, {0x1f4c9,8}, {0x2121b,6}, {0x25b7a,5}, {0x5d41,9}, + {0x1ce35,8}, {0x81e7,7}, {0x7c4,12}, {0x5ac2,5}, {0x24753,4}, {0xb2ba,9}, {0x14116,10}, {0x286bb,4}, + {0xae9,5}, {0x20e76,7}, {0x9873,6}, {0x595e,5}, {0x27e1f,4}, {0x1010e,6}, {0xe1ef,6}, {0x27c6d,5}, + {0x2278,3}, {0x1f559,7}, {0x709a,4}, {0x1d495,8}, {0xe50d,11}, {0xea98,8}, {0x8fb1,5}, {0x17731,5}, + {0x920e,11}, {0x21ec0,6}, {0x196cc,9}, {0xeb3,4}, {0x140e4,10}, {0x64d7,8}, {0x278cd,4}, {0x1c39d,8}, + {0xe97,7}, {0x53fc,3}, {0x11e78,9}, {0x253eb,4}, {0x232a9,6}, {0x202c,8}, {0xc39,4}, {0x2056,4}, + {0x1c45d,8}, {0x8e66,12}, {0x20555,3}, {0x612a,12}, {0xaaf2,6}, {0x26eff,6}, {0x14904,10}, {0x6631,10}, + {0xba24,5}, {0x434e,2}, {0x1485,7}, {0x20e2e,7}, {0x1a68e,9}, {0x143e,3}, {0x1698,4}, {0x117de,10}, + {0x15d47,9}, {0xa6ae,7}, {0x4f2e,13}, {0x2313,14}, {0x30,52}, {0x1e39f,8}, {0x11946,9}, {0xb6d1,6}, + {0x303c,9}, {0x532,26}, {0x4196,4}, {0x1c395,8}, {0x28dd9,2}, {0xc6bb,5}, {0x666e,4}, {0x6d86,5}, + {0x2329b,4}, {0xcf3e,5}, {0x13bda,10}, {0x1fc4,7}, {0x2645f,6}, {0x1f4cb,6}, {0x6812,5}, {0x117c,2}, + {0xa5e2,8}, {0x13684,6}, {0x296fc,5}, {0x6c80,5}, {0x26e69,4}, {0x8d86,6}, {0x1a661,4}, {0x5c44,4}, + {0x1d967,5}, {0x27903,4}, {0x1b133,2}, {0xb61f,11}, {0x1b3d3,8}, {0x17241,5}, {0x6443,6}, {0xceaa,9}, + {0x2506b,2}, {0x1b68b,4}, {0x1c225,8}, {0x5059,8}, {0xebf,4}, {0xfef8,8}, {0x5ec7,9}, {0x21302,7}, + {0x858c,6}, {0x783c,4}, {0xacd2,6}, {0xcec0,10}, {0x29b1,3}, {0x227d,11}, {0xfe71,8}, {0x19c5a,9}, + {0xa79e,10}, {0xa0c6,12}, {0xb963,11}, {0x22d87,3}, {0x2867d,2}, {0x5278,3}, {0xa7ec,5}, {0x750a,11}, + {0x6588,13}, {0x19f18,6}, {0x22e57,5}, {0xcc58,11}, {0x28dcd,4}, {0x8844,3}, {0x4ab0,4}, {0x10faa,8}, + {0x1b00,3}, {0xee4a,5}, {0xc843,9}, {0xa71a,10}, {0x19b0d,7}, {0x27973,6}, {0x1a5fe,9}, {0x1a433,5}, + {0x2a1e8,4}, {0x1286e,5}, {0x10760,10}, {0x612a,8}, {0x12bc0,6}, {0xa2ba,4}, {0x28fd7,3}, {0x1cb25,8}, + {0xfd5e,3}, {0x24e32,2}, {0xeec,16}, {0x5eba,5}, {0x17afd,6}, {0x9726,4}, {0x23b8e,6}, {0x10594,10}, + {0xb0a1,4}, {0x7c66,7}, {0x140c6,10}, {0x135c,9}, {0x1fa11,6}, {0x1767b,8}, {0x7df2,7}, {0x5d6f,6}, + {0x22ca9,7}, {0xd5ab,5}, {0x18ee8,4}, {0x27910,3}, {0x111f8,10}, {0x5220,13}, {0x1c3dd,6}, {0xf0e,12}, + {0x20bb,13}, {0x10a0d,3}, {0x1dded,8}, {0x1d47d,8}, {0xde38,8}, {0x277e3,2}, {0x262bb,6}, {0x2520,15}, + {0x1615b,9}, {0xe66d,11}, {0x1ceb5,6}, {0x22bf,4}, {0x19c75,9}, {0x19e88,5}, {0x17b3a,6}, {0x2056b,6}, + {0x18fa9,9}, {0x2756b,4}, {0x3678,4}, {0x1fb1,3}, {0x29c23,4}, {0xea89,4}, {0x16f47,2}, {0x21c04,6}, + {0x1d245,8}, {0x2a09,4}, {0x26f1,5}, {0x136c,8}, {0x9a96,12}, {0x9aae,6}, {0x3694,9}, {0x29caa,5}, + {0x118b0,10}, {0x74b2,4}, {0x14238,8}, {0x36f6,9}, {0x52c9,9}, {0x7e0e,5}, {0x96d,4}, {0x18376,6}, + {0xe192,11}, {0x19270,8}, {0x57dd,7}, {0xb6f0,6}, {0xf917,9}, {0x121de,9}, {0x177e3,8}, {0x760b,4}, + {0x4362,6}, {0x15d86,9}, {0x15c72,6}, {0x1ba2,8}, {0x20ae6,2}, {0xd99f,5}, {0x2144d,7}, {0x20d0f,7}, + {0xf95b,3}, {0xaa32,7}, {0x14636,4}, {0x1a943,6}, {0xbbec,11}, {0x3368,14}, {0x2c31a,4}, {0x4284,3}, + {0x4088,7}, {0x2841f,4}, {0x45cc,3}, {0x1e507,8}, {0x10d70,10}, {0x7ee2,9}, {0x18cd,5}, {0x18c2e,9}, + {0x3330,10}, {0x9208,4}, {0xaa92,4}, {0x2d104,2}, {0x27909,4}, {0x82d2,9}, {0xb5c7,10}, {0x23dea,3}, + {0x1b61a,2}, {0x2973d,4}, {0x17ddf,9}, {0x2bfc2,4}, {0x1af4b,2}, {0x1aaea,4}, {0x1a296,2}, {0xe7e9,4}, + {0x1fe11,4}, {0x1968d,9}, {0x2a008,4}, {0xd099,8}, {0xcfe9,8}, {0x62ea,7}, {0xd742,6}, {0x10bea,7}, + {0x11b6,3}, {0x14ef6,7}, {0x136da,5}, {0x1b042,9}, {0x7b65,5}, {0x25f6f,5}, {0xd2d5,11}, {0x17e8a,9}, + {0x1adf0,5}, {0xa37e,8}, {0x17133,9}, {0x183eb,6}, {0x30,54}, {0x4a51,5}, {0x1878a,8}, {0x2db0,4}, + {0x2d17b,2}, {0x14a76,9}, {0x1e9a7,6}, {0x2542,10}, {0x28,6}, {0x1d6ba,5}, {0x1927c,5}, {0x766c,6}, + {0x915e,4}, {0x26edb,6}, {0x1cad5,8}, {0x6491,12}, {0x1924e,6}, {0x40b4,6}, {0x13174,10}, {0x80b6,11}, + {0x22138,7}, {0x27943,6}, {0x1cc55,5}, {0x5b44,8}, {0x1ad72,9}, {0x5e93,13}, {0x1ce6,6}, {0x7e2e,7}, + {0x299e4,5}, {0x2a0c1,4}, {0x6809,4}, {0x43b0,4}, {0xb51,3}, {0x78e2,7}, {0x22eab,6}, {0x1fab1,8}, + {0x1d8d7,6}, {0xa9f6,4}, {0x2b88a,4}, {0x1bd25,7}, {0x256e9,6}, {0xb9a5,7}, {0x687a,8}, {0x1148c,6}, + {0x251dc,4}, {0xb413,4}, {0x1d53d,8}, {0xc838,10}, {0x14210,10}, {0x7058,6}, {0xccd1,11}, {0x1b8e1,6}, + {0xafc8,2}, {0x449e,5}, {0x1277,5}, {0x20ca2,7}, {0xaf5d,3}, {0x89f6,3}, {0x1433,4}, {0x5191,11}, + {0x19660,9}, {0x1087a,6}, {0x1da05,8}, {0x110ea,9}, {0xb383,5}, {0x76d2,12}, {0x1bb85,5}, {0x12d74,4}, + {0x29a31,3}, {0x15d74,8}, {0x2a948,2}, {0x25c21,6}, {0xaf50,4}, {0x2495d,8}, {0x156e4,9}, {0x2499,12}, + {0x30d6,10}, {0xdd7d,8}, {0xbc4,7}, {0x13b80,10}, {0xd8e,6}, {0x25c0,4}, {0xa012,5}, {0x17b43,9}, + {0x26013,6}, {0xa19,10}, {0x77da,12}, {0xc4f2,11}, {0x1ad0,5}, {0x16f56,9}, {0x1b721,6}, {0x1c5a5,7}, + {0x17348,9}, {0x14bc,16}, {0x716e,7}, {0x2876b,8}, {0x6430,6}, {0xf388,6}, {0x5af6,9}, {0x2fda,6}, + {0xf3ca,5}, {0x27892,3}, {0x7b22,7}, {0x1a28f,3}, {0xfbaf,5}, {0x54c4,12}, {0xb57a,7}, {0xd95d,6}, + {0x600f,7}, {0x29760,4}, {0x126c0,5}, {0xba9,4}, {0x1140a,10}, {0x2bb16,6}, {0xeb74,6}, {0xb38e,2}, + {0x26c65,4}, {0x28bd2,2}, {0x62e4,12}, {0x84ea,4}, {0x1f53,9}, {0xd8b0,8}, {0x1d57d,7}, {0xadda,11}, + {0x28e81,4}, {0x11f54,10}, {0x1adcc,9}, {0x2d64,9}, {0xcb3f,6}, {0x9e9,26}, {0x14ea6,4}, {0x1e822,5}, + {0xa666,10}, {0x5c72,4}, {0x19b70,5}, {0x10d24,6}, {0x15ec,15}, {0x1b6f3,4}, {0xab52,4}, {0xdcd8,10}, + {0x1c525,7}, {0x1ad25,5}, {0xd7d,5}, {0x29ee6,4}, {0x2dfe,6}, {0x12a0b,7}, {0x38e5,6}, {0x124b8,10}, + {0x1f881,5}, {0x27c81,3}, {0x79f6,7}, {0x1b044,7}, {0x2a802,3}, {0xdbaf,11}, {0x9532,6}, {0x1a816,2}, + {0x1ed56,3}, {0xb881,6}, {0xee87,3}, {0x3b10,8}, {0x24871,4}, {0x114f0,7}, {0x1ba7,4}, {0x4268,3}, + {0x1f17,11}, {0x20206,3}, {0x27949,6}, {0x330f,5}, {0x9e9e,11}, {0x1783d,9}, {0xda70,11}, {0x299f8,4}, + {0x146ac,10}, {0x24321,7}, {0x1c8b,7}, {0x1eaff,8}, {0x2b57c,2}, {0xaada,5}, {0x21bc,6}, {0x2ca0,9}, + {0x1a47d,7}, {0x10710,5}, {0x35bb,5}, {0x2b5e,5}, {0x21ff4,7}, {0x1f161,4}, {0x19405,6}, {0x1891f,9}, + {0x20b4b,6}, {0x2a9f,8}, {0x33fb,5}, {0x101b9,4}, {0x1f0f,5}, {0x14616,8}, {0x1e57f,8}, {0x2d58a,3}, + {0x1ac2e,7}, {0xdae,5}, {0x1a28c,3}, {0xb9c,3}, {0x18f85,9}, {0x13f5e,10}, {0x6bc7,9}, {0xaf4e,6}, + {0x1e867,8}, {0x125c,12}, {0x5290,5}, {0x15ce4,6}, {0x147bc,5}, {0x12b8e,7}, {0x24e4,6}, {0x2a05d,4}, + {0x6c70,6}, {0x124c,8}, {0x16a4,8}, {0x1031,4}, {0x6b24,3}, {0x25a9d,6}, {0x297e1,3}, {0xbcf0,4}, + {0x2227c,5}, {0x312c,3}, {0x2218e,6}, {0xad34,5}, {0x5c14,8}, {0x5442,8}, {0x1cac0,4}, {0x3eca,6}, + {0x1254,8}, {0x19e5b,9}, {0x12724,8}, {0x3784,5}, {0x102f6,6}, {0x1b7c9,6}, {0x132a0,8}, {0x7ac7,4}, + {0x288cd,5}, {0x1c80d,7}, {0x2947b,2}, {0xfaf0,11}, {0x2d10,13}, {0x16bc,6}, {0x428b,5}, {0x3211,7}, + {0x10ca8,10}, {0x1432,2}, {0x2634b,6}, {0x2db70,2}, {0x1cc1,4}, {0x1a5d1,9}, {0x127c,16}, {0xdce3,10}, + {0x2660a,3}, {0xcbd,4}, {0xfc9b,6}, {0x30f9,7}, {0x13dd2,5}, {0x270b2,3}, {0x23949,7}, {0x10e1,9}, + {0x18661,8}, {0x1fad9,4}, {0xd14,3}, {0x126c0,10}, {0x14d34,10}, {0x5cdb,3}, {0x1d55,13}, {0xb4f,2}, + {0xe313,11}, {0x2bae8,4}, {0x7a86,5}, {0x3a06,7}, {0x705d,2}, {0x24b7,10}, {0x2521e,4}, {0x2a0f3,4}, + {0x278a3,3}, {0x225f,9}, {0x19897,9}, {0x15c27,9}, {0x43db,8}, {0x22a44,6}, {0x190b7,7}, {0x18b0e,8}, + {0xc07f,6}, {0x51ae,4}, {0xf25f,11}, {0x1960,8}, {0x4d26,11}, {0xc560,11}, {0x10e2e,6}, {0x1c5ad,7}, + {0x1e88f,8}, {0x3ce3,3}, {0x12dbe,9}, {0x6d19,13}, {0x13d12,3}, {0x82ea,12}, {0x82ea,7}, {0xe50a,3}, + {0x175c7,9}, {0x1b4a6,5}, {0x21911,7}, {0x15428,7}, {0x2ac87,4}, {0x4459,4}, {0x2bb2,12}, {0xb656,10}, + {0xf660,7}, {0x638d,13}, {0x21ab8,3}, {0xfef4,8}, {0x2589,15}, {0xbc23,6}, {0x5dbc,3}, {0xf6b8,5}, + {0x27457,4}, {0x2ba14,6}, {0x1828c,9}, {0x28ab6,5}, {0x2284a,7}, {0x6f2e,6}, {0x50e8,7}, {0x2932e,4}, + {0x374a,13}, {0x30,192}, {0x14954,7}, {0xf1ba,8}, {0x1afc1,2}, {0xaf2a,5}, {0xd04c,5}, {0x2d72e,3}, + {0x144c,7}, {0xf8e9,5}, {0xf6a2,8}, {0x2b6c,14}, {0x2006b,4}, {0x2ae75,4}, {0x29b0,3}, {0x18199,9}, + {0x25b45,4}, {0xa402,12}, {0x17bde,6}, {0x1aefe,5}, {0x20e8,5}, {0xac80,3}, {0x4c0b,4}, {0x2409,6}, + {0x224bc,7}, {0x1724a,5}, {0x2e98,12}, {0x2aeb6,3}, {0xeffe,4}, {0x6e37,5}, {0x40b4,5}, {0x11bd0,9}, + {0x24b1b,3}, {0x133cc,10}, {0xcd62,7}, {0xbc0,3}, {0xf3d5,8}, {0x541b,5}, {0x15b97,8}, {0xbd5a,3}, + {0x312a,7}, {0x174ef,8}, {0x95fe,12}, {0x71da,11}, {0x700a,7}, {0x78ca,5}, {0x1382e,10}, {0x10d02,7}, + {0xd905,8}, {0x297b8,2}, {0x1eb3b,6}, {0xf393,7}, {0xa8f3,4}, {0x439a,4}, {0x2c1d0,2}, {0x10a0a,10}, + {0x10b5e,6}, {0x46e0,5}, {0x122e2,9}, {0x254f9,6}, {0x24e31,3}, {0x2e44,4}, {0x156be,8}, {0x9e9,14}, + {0x4582,3}, {0x40b9,2}, {0x5671,7}, {0x1d0e,2}, {0x81fa,8}, {0x2a873,5}, {0x23957,5}, {0x19f8d,8}, + {0xc21,3}, {0x2794f,6}, {0x18484,9}, {0x3ee4,8}, {0xaeb2,9}, {0x16997,9}, {0xec50,10}, {0x1a2a7,6}, + {0x107f1,5}, {0x2891b,5}, {0x5bac,13}, {0x1a64f,8}, {0x22d85,5}, {0x2c68,14}, {0x28e45,4}, {0x1007e,5}, + {0x25d9f,4}, {0x1af5a,7}, {0x262c7,6}, {0x8962,8}, {0x16dbf,8}, {0x82a2,6}, {0x1f3f9,4}, {0x25be5,6}, + {0x1aa48,5}, {0xa7d,12}, {0x722e,7}, {0x289e4,5}, {0x16922,8}, {0xaca4,2}, {0x1c37d,8}, {0x5a4f,6}, + {0x17a74,5}, {0x9622,7}, {0x1693d,8}, {0x6242,6}, {0x1500,3}, {0x2936a,5}, {0x4356,2}, {0x19150,9}, + {0x77f,2}, {0x1fc21,7}, {0x48c8,6}, {0xc6cd,5}, {0x19c26,2}, {0x1bc45,6}, {0x27c5,3}, {0x2bc16,4}, + {0x17a1a,6}, {0x10cee,10}, {0x23c9f,6}, {0x802b,3}, {0x1e8f7,6}, {0x1134c,10}, {0x149b0,3}, {0xa582,7}, + {0x1b7eb,8}, {0x23575,4}, {0x40bc,3}, {0xdba,12}, {0xf58,2}, {0xb60,3}, {0x151f8,4}, {0x27e55,3}, + {0x15a66,2}, {0xa49e,12}, {0x23000,2}, {0x1764e,6}, {0xe6c5,10}, {0x6f86,6}, {0x594f,4}, {0xf41,4}, + {0x1763c,9}, {0x17e5d,6}, {0x61ac,4}, {0xc0c3,4}, {0x228e6,7}, {0x3655,5}, {0xb50,7}, {0x29a2,7}, + {0x1b237,8}, {0x4ca4,13}, {0x1d4e,4}, {0xd37a,11}, {0x1f6b9,5}, {0x10988,10}, {0x4460,4}, {0x8c6e,12}, + {0x29a9b,2}, {0xad02,5}, {0x12d14,8}, {0x15f77,4}, {0x36b7,6}, {0x8c4,68}, {0x1ece9,8}, {0x41ef,4}, + {0xe5ce,5}, {0x1668,4}, {0x22be,5}, {0x2d6d1,3}, {0x18c91,9}, {0x129bb,4}, {0x4f21,11}, {0x1abb,6}, + {0x264c3,6}, {0x380e,12}, {0x40fa,4}, {0x3b23,8}, {0x18fb2,9}, {0xe1ea,11}, {0x577c,6}, {0x924,6}, + {0x5f8d,6}, {0x1453a,10}, {0xd65,5}, {0xc6d,5}, {0x6805,8}, {0x218cb,7}, {0xc437,11}, {0x11f56,7}, + {0xcde,4}, {0x297bd,2}, {0x2d13a,3}, {0x99ee,7}, {0x12648,9}, {0x1f931,6}, {0x18ead,9}, {0x28a66,3}, + {0x249e9,4}, {0x36be,6}, {0x16d0b,9}, {0x162b1,9}, {0x2bba,6}, {0x123dc,10}, {0x1e4af,8}, {0x270be,2}, + {0x17b9f,9}, {0x15fb4,9}, {0x163ee,8}, {0x2b767,2}, {0x1c435,7}, {0x1c1ff,6}, {0x6b11,5}, {0x2c0b,3}, + {0x8bcd,5}, {0x1aa4d,4}, {0x87b5,4}, {0x244c5,4}, {0x15cdb,9}, {0x2cef5,2}, {0x15358,7}, {0xc35b,9}, + {0x505c,5}, {0xcfb2,11}, {0xcae4,3}, {0xabb2,6}, {0x1ec59,5}, {0x18b05,6}, {0x40f8,5}, {0x20fe9,7}, + {0xbf9e,8}, {0x10a1,3}, {0x2790f,4}, {0x27915,4}, {0x43c1,13}, {0x28e90,4}, {0x36ce,4}, {0x4bc7,13}, + {0xe5d,3}, {0xb5dd,9}, {0x1ae2f,5}, {0x286e3,6}, {0xe0f,16}, {0x1f0f,7}, {0x1d83f,7}, {0x12c56,10}, + {0x2d1d0,3}, {0x2358,5}, {0x1c115,7}, {0x1672,3}, {0x1a849,4}, {0xbb3,3}, {0x767e,6}, {0x3229,5}, + {0x4e85,11}, {0x1ae3,3}, {0x2446c,2}, {0x205b4,4}, {0x15612,5}, {0x1756f,4}, {0x183d0,8}, {0xe119,11}, + {0x22e8,3}, {0x2ae9e,3}, {0x2d58d,2}, {0x591d,3}, {0x1ac7,2}, {0x2232,12}, {0x8d6a,12}, {0x2034b,6}, + {0x17779,6}, {0x4d9b,8}, {0x18f7c,9}, {0x19f40,2}, {0x198cd,9}, {0x1db65,8}, {0x2b2e,6}, {0x154aa,6}, + {0x9422,5}, {0x2070,5}, {0x244e9,4}, {0x31c4,12}, {0x23844,5}, {0xdec7,11}, {0x1747a,9}, {0x1300c,10}, + {0x35ee,4}, {0xb52,3}, {0xd43,3}, {0x11b9,3}, {0x22468,6}, {0x1c27d,8}, {0x10fd,4}, {0x27817,6}, + {0x9e3e,12}, {0xf5b2,5}, {0x7026,8}, {0x878e,12}, {0x2fbe,13}, {0x26a4d,6}, {0x16f8c,6}, {0x199a5,9}, + {0x117b6,10}, {0xf7c,9}, {0x289e9,5}, {0x1b147,4}, {0x2a08f,4}, {0x28c1,2}, {0xf24c,3}, {0x24192,5}, + {0x12cba,10}, {0x29788,4}, {0x1a124,5}, {0x1492e,2}, {0x4220,6}, {0x1df07,5}, {0x1e817,8}, {0x1236e,10}, + {0x29e8c,4}, {0x1858,5}, {0x139fa,7}, {0xd99f,6}, {0x1f8f,6}, {0x1f92b,4}, {0xa98a,7}, {0x6c7f,3}, + {0x25cb7,6}, {0xefd6,9}, {0x14dc0,8}, {0x2cf09,3}, {0xd0b1,4}, {0xae5,3}, {0x265f5,5}, {0x25206,3}, + {0x2aee,13}, {0x1cf22,4}, {0xbf7d,8}, {0x7048,4}, {0x17444,9}, {0x16490,9}, {0x1a421,9}, {0x3846,6}, + {0x321d,3}, {0x1b7bb,10}, {0x6b45,6}, {0x25e9d,6}, {0x4bbe,6}, {0x1492c,4}, {0x25a9d,4}, {0xb75,5}, + {0x29064,2}, {0xf9b1,5}, {0x8986,8}, {0xcd60,9}, {0x22db,5}, {0x18577,9}, {0x1a979,6}, {0x6f50,4}, + {0x29d04,4}, {0x8afa,4}, {0x1ed4b,4}, {0x15884,9}, {0x14eb2,4}, {0x247b,6}, {0x13afe,7}, {0x202bc,5}, + {0xdcbd,5}, {0x5fe0,5}, {0x9a2a,8}, {0x32f3,5}, {0xa4da,12}, {0xf47a,4}, {0x26ec9,5}, {0x28631,2}, + {0x2cf2e,2}, {0x99fa,8}, {0x188f2,6}, {0x205dd,5}, {0x8a9a,6}, {0x4c63,10}, {0x1e8ef,8}, {0x1692d,7}, + {0x205a3,7}, {0x2ca0,5}, {0xde9,2}, {0x2382f,7}, {0xe42,7}, {0xa7aa,10}, {0x6c70,5}, {0x79d5,5}, + {0x4db5,8}, {0x133c,12}, {0x25743,6}, {0x1d8c7,8}, {0x102a6,5}, {0xc948,3}, {0x1424,4}, {0x192c,11}, + {0x15ab8,2}, {0x2b323,2}, {0x6783,11}, {0xf6ce,5}, {0x288d7,5}, {0x18673,8}, {0x163a8,7}, {0x762d,4}, + {0x169bb,8}, {0xb858,3}, {0x1dca5,5}, {0x3521,7}, {0x18fb4,6}, {0x9cb2,11}, {0x1d0f,7}, {0x25c69,6}, + {0xfd72,4}, {0x13c34,10}, {0x6b86,12}, {0x70a4,4}, {0x15cf6,8}, {0xe410,10}, {0x1a0d,6}, {0x1eb49,8}, + {0xba63,8}, {0x1b81d,6}, {0x519e,4}, {0x27d04,2}, {0x114f0,6}, {0x1a340,8}, {0x208d3,7}, {0x19b79,6}, + {0x13f36,6}, {0x1fae9,7}, {0x19c24,4}, {0x12882,7}, {0x1b797,8}, {0x1c1bd,7}, {0x2b50,5}, {0x108c,3}, + {0x3a42,4}, {0x208cc,4}, {0x21cd9,4}, {0xbecd,11}, {0x6144,7}, {0x3712,13}, {0x27e4c,4}, {0x1d84f,7}, + {0xa9f8,2}, {0x60fc,7}, {0x63b4,13}, {0x51f0,2}, {0xba08,9}, {0xe652,5}, {0x208cc,7}, {0xb812,3}, + {0x25f7e,5}, {0x2123e,6}, {0x4620,4}, {0x1b391,4}, {0x1b38d,8}, {0x8d2e,11}, {0x2322,8}, {0x1a66a,5}, + {0x15819,4}, {0x1b45b,4}, {0x1b4a3,8}, {0x19b96,2}, {0x1f52b,6}, {0x1bdb5,8}, {0x89aa,12}, {0xa79e,12}, + {0x1d37d,8}, {0x2c63e,4}, {0xfc49,6}, {0x864a,7}, {0x24f3d,6}, {0x16ccc,6}, {0x2842,2}, {0x1073,16}, + {0x1f44,13}, {0x1029c,9}, {0x27ce4,2}, {0x1bbe5,6}, {0x18f4f,7}, {0x14c08,7}, {0x24cdf,4}, {0x7c19,5}, + {0x13c43,5}, {0x13b76,9}, {0x5e73,6}, {0xc6ac,8}, {0x205b1,7}, {0x205db,7}, {0x1b9ad,8}, {0x1b157,10}, + {0x1107c,4}, {0x439e,9}, {0x88ae,8}, {0x439a,13}, {0x1dcad,6}, {0xe3d9,10}, {0xc1c4,10}, {0x17253,9}, + {0x16aae,5}, {0x223c2,5}, {0x6f55,5}, {0x1493c,3}, {0x1d285,8}, {0x1e07d,8}, {0x27955,6}, {0x1ebd5,3}, + {0x2020b,6}, {0x18c49,8}, {0x9c9c,7}, {0xb6bf,5}, {0x13590,10}, {0x1940,3}, {0x1e52f,7}, {0x29864,2}, + {0x1790c,6}, {0x1d28,15}, {0x113e6,6}, {0x1e347,8}, {0x21021,7}, {0x19bde,7}, {0x2a98c,4}, {0x11e2,3}, + {0x14f6e,10}, {0x2790a,3}, {0x22bde,7}, {0x25ee5,6}, {0xdf4b,11}, {0x155f,3}, {0x6aab,3}, {0x4380,2}, + {0x285f3,2}, {0x1122a,8}, {0x44e1,4}, {0x1f209,8}, {0x1f95d,4}, {0x21967,5}, {0x21b7f,6}, {0x1fa31,8}, + {0x763a,5}, {0xa2ee,5}, {0x15ced,9}, {0x430,5}, {0x1f459,7}, {0x274e9,3}, {0x189ca,9}, {0xc49,4}, + {0x101a2,7}, {0xb8df,9}, {0x10c0,7}, {0x1e26f,8}, {0x28745,6}, {0x608e,13}, {0x8c4,8}, {0x855a,12}, + {0x9b4a,10}, {0x28de,10}, {0x17c53,8}, {0x5852,11}, {0x155ba,4}, {0x10b7c,7}, {0x6deb,3}, {0x15c93,6}, + {0x4887,10}, {0x293b0,5}, {0x5aaa,4}, {0x6c2f,5}, {0x532,36}, {0x57bc,7}, {0x2b310,4}, {0x5c3b,9}, + {0x23138,2}, {0xdcee,11}, {0xe846,11}, {0x1683,3}, {0x236df,7}, {0x29fa,6}, {0x368c,3}, {0x240ce,4}, + {0xe39,3}, {0x4582,6}, {0x12a62,5}, {0x1e185,8}, {0xa74a,12}, {0x2ae0,7}, {0xd0d0,9}, {0xc345,8}, + {0x426b,4}, {0x24759,4}, {0xf292,2}, {0x1889b,6}, {0xc3d0,4}, {0x26405,6}, {0x23aa7,7}, {0x157c,14}, + {0x11400,9}, {0x19cc6,5}, {0x27c6f,3}, {0x27933,4}, {0x27904,3}, {0xaae6,4}, {0x10c01,5}, {0x2008b,6}, + {0xa022,5}, {0x258e,6}, {0x29fc2,4}, {0x10e92,6}, {0x13eaa,6}, {0x4ccb,13}, {0xb0f7,5}, {0x1f473,4}, + {0x980e,10}, {0x1e8df,8}, {0x1ba55,8}, {0x1f799,8}, {0x29fea,4}, {0x17873,6}, {0x27877,5}, {0x5ddd,11}, + {0x11ec3,5}, {0x57ea,11}, {0x2bd6a,4}, {0x20c01,6}, {0x80fe,12}, {0x14c0a,3}, {0x25084,2}, {0x9eb0,6}, + {0xedf2,7}, {0x1c2d5,8}, {0x22d54,6}, {0x249e5,4}, {0x4c8a,6}, {0x1e4f7,7}, {0x1574a,2}, {0x5cd5,4}, + {0x2f16,13}, {0x57a9,13}, {0x22236,7}, {0x290b6,5}, {0x1224c,7}, {0xc4e7,11}, {0x2b36d,4}, {0x1084,5}, + {0x28dc0,3}, {0xd9f7,8}, {0x41f6,7}, {0x1b101,6}, {0xbaa,6}, {0x2331,15}, {0x88de,6}, {0x115f4,9}, + {0x8dda,8}, {0xde22,10}, {0xabc4,6}, {0x20b18,7}, {0x15b48,6}, {0x10e6c,4}, {0x1a85b,2}, {0x6e10,6}, + {0x884,16}, {0x27592,3}, {0x100ce,2}, {0x33bc,7}, {0xdd58,4}, {0x12f58,9}, {0x1a7f,5}, {0x3e04,6}, + {0x21957,4}, {0x130f,3}, {0x27573,2}, {0xbc2e,5}, {0x148aa,10}, {0x13c87,4}, {0x1830a,9}, {0x15d08,9}, + {0x2ee4,8}, {0x185f5,9}, {0xa13e,12}, {0xa7d7,2}, {0xf959,5}, {0x2b87e,4}, {0x223ce,7}, {0xeff7,11}, + {0x2ce6,12}, {0xba58,8}, {0x1be2d,7}, {0x1eaff,7}, {0x200e9,7}, {0x67d1,13}, {0x752e,6}, {0x20ac4,5}, + {0x22f7d,7}, {0x20ba6,7}, {0xb6e5,11}, {0x14f78,6}, {0xb69,2}, {0xf794,6}, {0xbbc0,11}, {0xd8ce,5}, + {0xb873,6}, {0x17f2c,9}, {0x1fd81,5}, {0x1c055,7}, {0xd5e2,7}, {0x7cde,12}, {0x2c47c,4}, {0x8fc2,12}, + {0xe069,10}, {0x227c5,7}, {0x2ab13,4}, {0x14b42,4}, {0x1033c,5}, {0x22bd,6}, {0x16e85,9}, {0x29b29,4}, + {0x7548,5}, {0x4d13,6}, {0xca8a,11}, {0x1d46,15}, {0x1bf35,5}, {0x5c98,13}, {0xb139,4}, {0x29a6,6}, + {0x19042,8}, {0x26151,6}, {0x1b13e,6}, {0x3bf0,14}, {0x10c6c,10}, {0xb732,9}, {0x2445f,2}, {0x29dd3,5}, + {0x278fe,3}, {0x36c2,4}, {0x160e6,9}, {0x14828,10}, {0x3e14,3}, {0x1a5f5,9}, {0x28ecc,5}, {0x10e3,2}, + {0x4126,3}, {0xe473,11}, {0x29b2,3}, {0x4859,7}, {0x9202,7}, {0x4978,6}, {0x720a,10}, {0x3170,5}, + {0x168d4,6}, {0x28e63,4}, {0x26ac8,2}, {0x1e009,8}, {0x287ee,4}, {0x1eb07,8}, {0x1ec94,5}, {0x2978,8}, + {0x181f3,8}, {0x19846,9}, {0x11978,10}, {0xa2cc,6}, {0x21b9b,6}, {0xff72,6}, {0x115ba,8}, {0x29fd6,4}, + {0x1cb55,8}, {0xcecb,11}, {0x1b140,4}, {0x4728,8}, {0x1db2d,6}, {0x69ad,4}, {0x73ba,12}, {0x461d,4}, + {0xcb5,6}, {0x19123,8}, {0x24645,6}, {0xf57b,3}, {0xb9a7,5}, {0x2c0ba,4}, {0x6e53,3}, {0x29b2b,2}, + {0x1983f,7}, {0x25b31,4}, {0x4a51,4}, {0xd46,3}, {0x19d1,9}, {0x438c,14}, {0xc9c4,11}, {0xca1c,10}, + {0x709a,6}, {0x2c156,4}, {0x1051,16}, {0x6dd2,4}, {0x83e6,10}, {0x944e,11}, {0x278a1,5}, {0x29b56,5}, + {0x1d91,14}, {0x278bf,6}, {0x14cb2,6}, {0x1104a,6}, {0x197e3,9}, {0x18b83,8}, {0x3220,6}, {0xae22,9}, + {0x1189c,5}, {0x5dba,5}, {0x279af,6}, {0x19fbc,6}, {0x24ff3,2}, {0x13762,4}, {0x22e26,6}, {0xa1c2,12}, + {0xfda,8}, {0x36be,8}, {0x12e9a,9}, {0xe397,5}, {0x1aa5,4}, {0x9322,12}, {0x276c3,3}, {0x1e2e7,8}, + {0xd79a,6}, {0x222a6,7}, {0x2817e,2}, {0xea35,11}, {0xc6d8,5}, {0xcbf5,11}, {0x13e2a,4}, {0x27c85,5}, + {0x10ec4,6}, {0x11f3c,4}, {0x1ec91,8}, {0x253a3,4}, {0x2791b,4}, {0x767e,10}, {0xf5dc,8}, {0x1000,3}, + {0x2ab6,14}, {0x8e8a,8}, {0x1684,3}, {0x2aa67,4}, {0x6839,8}, {0x2aeb2,3}, {0x503f,12}, {0xbb26,10}, + {0x381c,7}, {0x1dd2,6}, {0x1f9e1,5}, {0x30,56}, {0xfed0,14}, {0x14fb4,5}, {0xed42,9}, {0x2472b,4}, + {0x14b2c,6}, {0xa972,6}, {0x1035,4}, {0x26e4,13}, {0x2b750,2}, {0x13bc8,6}, {0x2b2b3,4}, {0x4b33,5}, + {0x13c5c,9}, {0x2922f,4}, {0x2b726,3}, {0x271ff,4}, {0x1942,3}, {0xb6f0,10}, {0x3100,9}, {0x21f68,6}, + {0x22f84,7}, {0x80b6,12}, {0x19f3c,4}, {0x15b61,9}, {0x178e,2}, {0xbc7,2}, {0x25ced,6}, {0xff3c,8}, + {0x19258,4}, {0x5575,5}, {0xff90,4}, {0x14ba4,5}, {0x17410,6}, {0x210bd,7}, {0xd322,6}, {0x22b34,7}, + {0x239c7,6}, {0xe9d2,11}, {0xf595,5}, {0x2b7d0,3}, {0x333e,14}, {0xd87,16}, {0xb824,11}, {0x26f9,2}, + {0x734,3}, {0x1438f,7}, {0xffc,9}, {0x1a85,5}, {0x18898,6}, {0x1cb6d,8}, {0xf924,5}, {0xab6a,5}, + {0x233c8,5}, {0xbc86,11}, {0x8140,6}, {0x28a84,3}, {0x29797,4}, {0x19b8b,6}, {0x24fca,3}, {0x12a58,7}, + {0x28840,6}, {0x26c43,4}, {0x2a9a,13}, {0x7b4e,3}, {0x16da4,9}, {0x139e6,5}, {0x941e,9}, {0xbfbf,8}, + {0x144fe,10}, {0xb341,5}, {0xccd,4}, {0x53e9,4}, {0xb6bb,3}, {0xdf4,3}, {0x100b3,7}, {0x7daa,9}, + {0xb79,3}, {0x22437,7}, {0x2d02,8}, {0xc52f,5}, {0x15f09,9}, {0x26cb5,4}, {0x773e,9}, {0xa26a,6}, + {0xaaf4,3}, {0x28a25,5}, {0x16f9,3}, {0x359b,3}, {0x28fc9,2}, {0x1a886,7}, {0x1321e,6}, {0x2e52,13}, + {0x2a811,3}, {0x11482,6}, {0x1557f,3}, {0x27f7c,5}, {0x1f2ab,3}, {0xcfa7,7}, {0x2d14f,3}, {0x822a,7}, + {0x13b94,9}, {0x314c,3}, {0x169c,8}, {0x17ee,4}, {0x2506f,2}, {0xa55a,4}, {0xb769,10}, {0xc93a,3}, + {0x2563b,4}, {0xc1cf,9}, {0x29eb4,4}, {0x1dddd,7}, {0x1cd80,5}, {0x15220,10}, {0x15b44,2}, {0xb4f,3}, + {0x2bd60,2}, {0x5a1e,4}, {0x22c1d,7}, {0x269eb,2}, {0x19fbc,7}, {0xa1fe,12}, {0x101e8,5}, {0x2592c,3}, + {0x5193,3}, {0x1578e,6}, {0x5ae5,4}, {0x146c,7}, {0x14346,5}, {0x140e,6}, {0x1ed49,4}, {0x21db6,7}, + {0x212fe,4}, {0x9f6a,11}, {0x2795b,6}, {0x171e7,9}, {0x1269e,3}, {0x42a7,3}, {0x2ec8,5}, {0x1c405,5}, + {0xdf09,11}, {0xc94b,11}, {0x23e74,5}, {0x53a6,13}, {0xd477,11}, {0x22332,7}, {0xba4a,11}, {0x18fc9,4}, + {0x201d1,6}, {0xd69d,11}, {0x136f8,7}, {0x17f35,9}, {0x1e3af,8}, {0x8536,6}, {0x59a4,6}, {0x40b2,8}, + {0x681f,12}, {0x192e5,7}, {0x19588,9}, {0x6c65,2}, {0x1cde5,8}, {0x7a6e,10}, {0x8afd,4}, {0x9baa,5}, + {0x232ef,6}, {0x14616,10}, {0x441c,11}, {0x4196,2}, {0x12b2,3}, {0x4610,3}, {0x10861,5}, {0xd78f,6}, + {0x24f49,6}, {0x1ba8,4}, {0x1b093,5}, {0x11bb6,6}, {0x1f939,6}, {0x46e1,6}, {0x15ce4,9}, {0x3f3d,3}, + {0x1611c,7}, {0xc77,3}, {0x29d6,6}, {0x11ca2,10}, {0x29b9c,4}, {0x23a3e,5}, {0x6971,8}, {0x6860,5}, + {0x10c9e,9}, {0x6d89,4}, {0x137e8,10}, {0x103fa,10}, {0xbd83,5}, {0x5fa4,10}, {0x16e4f,8}, {0x811b,7}, + {0x2240d,5}, {0x168f5,9}, {0x2c14a,4}, {0x4ddc,8}, {0x15720,8}, {0x10974,10}, {0xfe38,5}, {0x24042,7}, + {0x1f699,6}, {0x5358,5}, {0x1adf0,6}, {0x2aa6b,4}, {0x76ba,9}, {0x838c,5}, {0x27921,4}, {0xaaef,2}, + {0xd12,3}, {0x141a2,10}, {0x209c5,3}, {0x1dec2,5}, {0x6289,12}, {0x1406c,10}, {0xcad0,6}, {0x924,5}, + {0x1035,8}, {0x56e6,7}, {0x17cd1,9}, {0x2c29e,4}, {0x17552,6}, {0x1b6db,10}, {0x7dce,11}, {0x11de2,7}, + {0x101a,4}, {0xfbdb,11}, {0x197e,3}, {0x6221,11}, {0x1e18,7}, {0x10262,4}, {0x99ca,12}, {0x12300,9}, + {0x13395,4}, {0x2168,4}, {0xa230,5}, {0x112f2,8}, {0x2428a,4}, {0x21526,6}, {0xfc8b,10}, {0x23dda,4}, + {0xd98,15}, {0x2094b,3}, {0x24292,3}, {0x24579,6}, {0xf79,3}, {0x11996,8}, {0x5b5e,11}, {0x2b80c,4}, + {0x153ce,7}, {0x2bb40,2}, {0x2322,12}, {0x4e92,8}, {0x7a06,8}, {0x30a1,5}, {0x1247c,10}, {0x16892,7}, + {0x1820e,5}, {0x10d9b,4}, {0xa7d1,3}, {0x2403,12}, {0x108e8,8}, {0x2bede,4}, {0xc418,7}, {0x197c3,5}, + {0x6ab6,9}, {0x1bb1,15}, {0x3113,5}, {0x14878,10}, {0x1d8c,2}, {0x35d0,12}, {0x14fac,3}, {0x46b3,13}, + {0x24a3f,4}, {0xab46,4}, {0x2d6fb,3}, {0x14e80,2}, {0x1e0cd,5}, {0x24c7d,6}, {0x28433,2}, {0x21557,7}, + {0x2c75e,4}, {0x1f0db,6}, {0x1774a,9}, {0x1ae31,3}, {0x103c8,10}, {0x12d50,10}, {0x13e0a,7}, {0x58c9,4}, + {0x1220c,4}, {0x1e94f,8}, {0x1b863,6}, {0x3347,5}, {0x6d81,10}, {0xafae,11}, {0xa563,7}, {0x278af,3}, + {0x18e5,11}, {0xbf25,11}, {0xbd6,6}, {0x29f22,4}, {0x2971a,4}, {0x32ff,7}, {0xf438,11}, {0xe308,5}, + {0x23af,4}, {0x10190,6}, {0x714a,7}, {0x30,58}, {0x22cbe,7}, {0xfe01,5}, {0x78d6,12}, {0x2778,10}, + {0x26d33,4}, {0x6e6b,6}, {0x1ddb5,7}, {0x18d2a,7}, {0x33bf,3}, {0x1a76f,9}, {0x6513,13}, {0x422e,7}, + {0xb5d2,11}, {0x1aa90,5}, {0x10602,6}, {0x4222,3}, {0x186b2,8}, {0x1c84d,6}, {0x8a8e,12}, {0xb6ae,10}, + {0x212c3,7}, {0x2171,5}, {0x55d5,13}, {0x174c,11}, {0x1fa29,8}, {0xcbd4,5}, {0x1410c,8}, {0xd9e1,9}, + {0x18d18,9}, {0x7c16,4}, {0x8470,5}, {0x21629,7}, {0xce2,6}, {0x151dd,4}, {0x28475,3}, {0x2777b,6}, + {0x25855,7}, {0x8bd2,11}, {0x4868,4}, {0x1ae47,2}, {0x1c245,8}, {0x3e92,4}, {0xebb6,10}, {0x21230,7}, + {0x4f71,3}, {0x1422e,10}, {0x9be6,12}, {0x615e,8}, {0x91ba,8}, {0x2a09,5}, {0x16a3d,5}, {0x1871e,9}, + {0xec6b,4}, {0x27631,6}, {0x113f,4}, {0x1b497,4}, {0x17897,9}, {0x2ae71,4}, {0x4e3d,7}, {0x83f2,12}, + {0x3402,14}, {0x1aab,4}, {0xc2e,9}, {0x2793f,4}, {0xc001,10}, {0x1ab2,9}, {0x1300,6}, {0x12b90,5}, + {0x90e2,12}, {0xf6c3,6}, {0xbb47,10}, {0xc3be,11}, {0x14988,8}, {0x13be4,5}, {0x10a00,10}, {0xd94a,7}, + {0x25aca,5}, {0x21dff,4}, {0xbf51,11}, {0x627c,12}, {0x14198,10}, {0x20349,8}, {0x1eff4,5}, {0x6dc2,4}, + {0x2ae96,3}, {0xdfcf,11}, {0x3368,10}, {0x1a1c,15}, {0x1a1d6,5}, {0x1095,5}, {0x621d,4}, {0xa8f1,3}, + {0x1a4d7,4}, {0x430,34}, {0x1561,7}, {0x1480,5}, {0x1689b,9}, {0x7b78,7}, {0x11298,10}, {0x1c20,5}, + {0x73f6,9}, {0x218f5,7}, {0x2b83,5}, {0x1e3a7,8}, {0x28a42,7}, {0x1ec4,8}, {0x278c7,4}, {0x152c4,3}, + {0x1b727,8}, {0x4f0e,6}, {0x2b8d,9}, {0x1ae80,9}, {0x17ace,6}, {0xeacf,7}, {0x1da9d,7}, {0x10d16,10}, + {0x1de0d,8}, {0x14f61,3}, {0x2acaf,4}, {0x1f4a1,8}, {0x8aae,4}, {0x2c016,4}, {0x29f4a,4}, {0x1d4ed,6}, + {0x1f2c5,4}, {0x2a8aa,4}, {0x24352,7}, {0x83ce,8}, {0x532,30}, {0x5c32,4}, {0x1ad21,9}, {0x287e7,4}, + {0xf697,11}, {0x28c5d,2}, {0x21237,7}, {0x13824,9}, {0xa083,4}, {0x65ff,4}, {0xc793,11}, {0x1aba9,7}, + {0x2a8f3,2}, {0x4a56,3}, {0x2b88,14}, {0x15ab8,3}, {0xd574,9}, {0x1b57b,8}, {0x10c3a,7}, {0x2b7bc,3}, + {0x23c7,11}, {0x9ff5,5}, {0x663e,8}, {0x7064,6}, {0x1a435,3}, {0x288f0,5}, {0x2d713,2}, {0x6e94,5}, + {0x28943,5}, {0x1b1a7,8}, {0x25be,4}, {0xb0d6,6}, {0x114c,2}, {0x202b9,8}, {0x741a,12}, {0xa62a,7}, + {0x186a0,9}, {0x6e6b,8}, {0x12cf1,5}, {0xe804,11}, {0x1f5c1,7}, {0x1447c,10}, {0x2ccb0,4}, {0x1e5b7,7}, + {0xaab6,6}, {0x14b7,3}, {0x13052,10}, {0xf5f5,3}, {0x16c8b,6}, {0xf6e6,3}, {0x43f0,4}, {0x1c505,8}, + {0x794e,12}, {0xf0d3,11}, {0xd50,4}, {0x26759,3}, {0xc253,11}, {0x23d2b,5}, {0x14d7a,7}, {0x8f6e,7}, + {0x30db,3}, {0xb13e,6}, {0x2a973,5}, {0x9131,4}, {0xb9f9,4}, {0x27961,6}, {0x2a609,3}, {0x21ac2,7}, + {0x17ae9,8}, {0x19312,8}, {0x14d66,5}, {0xa0de,6}, {0x10832,9}, {0x1f979,7}, {0x102f6,9}, {0x22979,6}, + {0x6f92,6}, {0x70c6,6}, {0x13a38,5}, {0x286a8,2}, {0x532,64}, {0x18325,8}, {0x10bec,5}, {0x29f59,4}, + {0x20918,2}, {0x13d42,10}, {0x5cd1,4}, {0x1216,4}, {0x27967,6}, {0xd569,9}, {0x33fa,3}, {0x1df62,5}, + {0x1a038,5}, {0x6e37,13}, {0x924,16}, {0x27927,4}, {0x15496,10}, {0x1b05d,9}, {0x52d6,8}, {0x1bfc,14}, + {0x13cf,6}, {0xcd5,3}, {0x111da,10}, {0x62d7,12}, {0x74b9,4}, {0x14314,7}, {0x141c,10}, {0xafea,5}, + {0x86b6,8}, {0x2052,8}, {0x19b45,3}, {0xa56a,7}, {0x12263,6}, {0x1ee39,5}, {0x309e,8}, {0x3368,13}, + {0x20181,6}, {0x89c2,11}, {0x1e1a7,6}, {0x16482,5}, {0x26e8a,2}, {0xd078,11}, {0x2bc32,4}, {0x2aeee,3}, + {0x6597,6}, {0xa7d7,3}, {0x1b22,4}, {0x8e1e,12}, {0x1aa3,5}, {0x220e5,4}, {0x11ef0,10}, {0x1c56,5}, + {0x15202,6}, {0x27d00,4}, {0x432,9}, {0x19fb3,3}, {0x92f2,8}, {0x22b0a,7}, {0xb6ae,7}, {0xa4d,4}, + {0x244e,8}, {0x12cb0,5}, {0x19532,4}, {0x1a81e,2}, {0x2884e,6}, {0x28628,2}, {0x1f26,7}, {0x1a25f,4}, + {0x423c,5}, {0x214a8,7}, {0x106d4,6}, {0x122c4,9}, {0x29751,4}, {0x124f4,10}, {0x110e0,10}, {0x31a1,6}, + {0x14f5c,3}, {0x14e30,4}, {0x14933,3}, {0x2869b,2}, {0xb13b,3}, {0x18e9,3}, {0x4f8e,4}, {0x6c8a,4}, + {0x1fd83,6}, {0x141f2,10}, {0x11b30,10}, {0xfda,17}, {0x1cbfd,8}, {0x1d175,8}, {0x1e487,8}, {0x2bc56,4}, + {0x6b13,3}, {0x14152,10}, {0xa6bc,4}, {0x72be,12}, {0x13278,10}, {0x2ade9,4}, {0x1b0c,6}, {0x17265,5}, + {0x263b7,6}, {0x21a01,7}, {0x1c40,6}, {0xcd3f,10}, {0x1d205,5}, {0x216f,11}, {0x4445,4}, {0xf2c2,5}, + {0x65e3,13}, {0x1f6e9,5}, {0x24525,6}, {0x17f8f,7}, {0x50fe,3}, {0xc227,6}, {0x2d5ca,2}, {0x2b81a,2}, + {0x7cea,12}, {0x423c,9}, {0xfc80,6}, {0x1f929,6}, {0x22010,6}, {0xb774,11}, {0x33a6,8}, {0xd216,4}, + {0x4a41,12}, {0x1042c,10}, {0x1305,2}, {0x150b0,4}, {0xc822,10}, {0x1054,3}, {0x1a4cc,6}, {0x135c,7}, + {0x28ff8,5}, {0x6e60,3}, {0x8afd,9}, {0x8aac,5}, {0x23e5f,6}, {0x1668,2}, {0x18934,5}, {0x10c9e,10}, + {0x15c15,9}, {0x1844e,9}, {0x13d2e,9}, {0x19e1c,9}, {0x2d0ea,2}, {0x9676,11}, {0x2638d,6}, {0x16de,6}, + {0x1911c,7}, {0x4c75,8}, {0x1a646,9}, {0xc8f3,8}, {0x1b01e,9}, {0x20141,6}, {0x172a4,9}, {0x415c,9}, + {0x70e2,3}, {0x28882,3}, {0x188ca,4}, {0x24f7f,6}, {0xf9ef,3}, {0x29f68,4}, {0x1c1a5,7}, {0x506d,3}, + {0x18de7,9}, {0x180af,9}, {0x10006,6}, {0x20d24,7}, {0x845e,9}, {0xd272,10}, {0x1d827,8}, {0xb911,5}, + {0x13e78,7}, {0x27c69,3}, {0x23005,2}, {0x2705b,5}, {0x14954,5}, {0x27843,4}, {0xfcdb,5}, {0xeca8,11}, + {0x42a3,3}, {0xce31,10}, {0xadc2,12}, {0x3d99,9}, {0x138d8,10}, {0x1018c,4}, {0x7f5f,7}, {0x19525,8}, + {0x5059,11}, {0x2a969,4}, {0x18ee3,9}, {0x1d5b5,5}, {0x3204,4}, {0x112e8,10}, {0x29f18,4}, {0x157ee,6}, + {0x3bf0,13}, {0x1ab7a,9}, {0x4a41,13}, {0x861c,4}, {0xe26e,11}, {0x1c9d5,8}, {0x23bdb,4}, {0x6f14,12}, + {0x2db68,2}, {0x62f1,13}, {0x126a2,10}, {0x23294,4}, {0x2ad97,4}, {0xb3a1,6}, {0xd742,8}, {0x28832,6}, + {0x24f8e,2}, {0xd3fe,11}, {0x1438c,10}, {0x2841e,2}, {0x2153b,7}, {0xa642,8}, {0xb7e2,11}, {0x13a04,10}, + {0x2ae2,3}, {0xb81,4}, {0x432,10}, {0x29f1d,4}, {0xf26a,8}, {0x8ab2,12}, {0xfa4b,10}, {0xfb1,7}, + {0x18cb5,9}, {0xc1b9,11}, {0x20ff0,7}, {0x16b11,9}, {0x239ab,7}, {0xb126,2}, {0x1645a,8}, {0x19f45,4}, + {0x18c2e,8}, {0x3892,7}, {0x213bf,7}, {0x16fcb,7}, {0x1643f,8}, {0xfcb3,4}, {0x515d,6}, {0x2db30,2}, + {0xf38f,4}, {0x150ae,6}, {0x81e6,4}, {0x6214,7}, {0x1bde5,7}, {0x24289,2}, {0x7816,12}, {0xde38,11}, + {0x278c2,3}, {0x9450,4}, {0x2eaf,5}, {0x1db0d,6}, {0x2a7e,13}, {0x23247,5}, {0x432,11}, {0x2d48,14}, + {0x26315,6}, {0x2b7f1,2}, {0x28af,3}, {0x3376,14}, {0xf42f,6}, {0x4df6,13}, {0x1d135,7}, {0xcd08,8}, + {0x398a,11}, {0x3926,7}, {0x2eb0,4}, {0x291ab,4}, {0x1079c,9}, {0x12954,6}, {0x1bfed,7}, {0x18f6a,9}, + {0x2792d,4}, {0x16cb1,9}, {0xcacc,9}, {0x855e,6}, {0x1ab2,6}, {0xf04f,9}, {0x6f55,13}, {0x4f48,12}, + {0xab25,5}, {0xa2f4,6}, {0x3042,7}, {0x135c2,7}, {0x19930,7}, {0x16c2d,4}, {0x26fd7,5}, {0x1f751,7}, + {0x2160,6}, {0x30,62}, {0x2744,3}, {0x26daf,6}, {0x1b0db,7}, {0x16e15,4}, {0xcc7,4}, {0x6b38,8}, + {0x8b06,6}, {0x2c76a,4}, {0x2c1ba,4}, {0x232be,7}, {0x253d7,6}, {0x24de9,4}, {0x10aa0,10}, {0x6576,5}, + {0xbd2b,11}, {0xf28b,5}, {0xa24d,5}, {0x181c,10}, {0x9901,9}, {0x1fec9,8}, {0x1cd25,8}, {0x5f8d,9}, + {0x119b4,9}, {0x446a,9}, {0x255ef,6}, {0x15f83,4}, {0x25789,4}, {0x4e5e,13}, {0x1c085,8}, {0xfd04,6}, + {0x15057,4}, {0x172ec,5}, {0x17483,9}, {0x7eca,12}, {0x2f1c,7}, {0xf92f,6}, {0xd65,8}, {0x185ad,9}, + {0x8c4,12}, {0xa3f6,8}, {0x201f9,5}, {0x3655,4}, {0xbcf4,10}, {0x247b1,8}, {0x3066,13}, {0x1468e,6}, + {0x2aadb,4}, {0x1a,4}, {0x2fdf,3}, {0x2a77,7}, {0x2afc,12}, {0x176c,10}, {0x1c07d,6}, {0x20d9,10}, + {0x21cf,9}, {0xe81a,6}, {0x25d1d,6}, {0x2aa97,4}, {0x1fa11,8}, {0x2bab2,4}, {0x849f,6}, {0x16826,9}, + {0x9a12,12}, {0x21d8,15}, {0x12242,10}, {0x234fe,4}, {0x208a3,4}, {0x12706,6}, {0x110a4,5}, {0x98da,12}, + {0x11626,10}, {0xceb,7}, {0x20db7,7}, {0x2a8cb,2}, {0x3f5b,7}, {0x2400a,7}, {0x193c6,6}, {0x1c1ad,8}, + {0x1027e,9}, {0x26853,6}, {0x10f0,2}, {0x20ac,6}, {0x27229,4}, {0x12abf,6}, {0x422e,5}, {0x21cac,6}, + {0x22dc,2}, {0x1746a,7}, {0x2c112,4}, {0x16c04,9}, {0xd088,5}, {0x1e3ff,8}, {0x1a3a,15}, {0x37f6,4}, + {0x26c47,6}, {0x17846,9}, {0xbcde,10}, {0x15f75,9}, {0x4c56,13}, {0x27ded,6}, {0x28967,3}, {0x17ba8,6}, + {0x1b264,2}, {0x2bf26,4}, {0x15fc,9}, {0x2ac7f,4}, {0x61ed,13}, {0x1908a,9}, {0x3392,14}, {0x986e,11}, + {0xa4fa,4}, {0x19a11,9}, {0x17fa3,6}, {0x1abd1,3}, {0x2869c,4}, {0x25d6d,6}, {0xdd04,7}, {0x1d011,8}, + {0x1ce6,4}, {0x4b65,7}, {0x1f309,7}, {0x13d92,10}, {0x16961,9}, {0x31b2,4}, {0xfda9,10}, {0x7cf6,12}, + {0x3090,6}, {0x70be,8}, {0x1dcd,11}, {0x193b4,5}, {0x41be,7}, {0x19066,9}, {0x16068,9}, {0x185a,6}, + {0x22d5b,7}, {0x1788e,9}, {0x15dd7,9}, {0x54aa,13}, {0x29d1a,2}, {0xa1e6,11}, {0x2b6e4,4}, {0x25885,6}, + {0x1f6b1,6}, {0x191c5,9}, {0x1287a,3}, {0x315e,3}, {0xebed,6}, {0x1480,12}, {0xe9d2,9}, {0x98e6,12}, + {0x1ca6d,8}, {0xc135,11}, {0xb172,5}, {0x27e14,4}, {0x6d9b,6}, {0x2099d,2}, {0x2cf22,2}, {0xc66a,6}, + {0xb99,4}, {0x362c,6}, {0x21165,7}, {0x26e11,4}, {0x11b80,9}, {0x2721d,4}, {0x16475,9}, {0x32a4,14}, + {0x431c,8}, {0x29828,2}, {0x8a0f,7}, {0xacbc,5}, {0x30,60}, {0x1edf1,7}, {0x29a4b,2}, {0xe5e4,3}, + {0x184cc,5}, {0x26cb3,6}, {0x1aeda,5}, {0x4dc7,6}, {0x20c78,7}, {0x1abc2,8}, {0x137c0,10}, {0x14652,7}, + {0x4ec6,8}, {0x665f,5}, {0x74e6,6}, {0x11fc,9}, {0x3704,7}, {0x2986,6}, {0x3fa1,7}, {0x6c08,6}, + {0x22316,7}, {0xc657,3}, {0x2796d,6}, {0x1b929,4}, {0xcd87,5}, {0x2203a,7}, {0xa4b6,11}, {0x22d0e,7}, + {0x9226,7}, {0x3736,5}, {0x1986,13}, {0x3d94,13}, {0x1ab2,15}, {0x7a7a,8}, {0x19336,7}, {0x6255,8}, + {0x12e94,6}, {0x27e49,2}, {0x8b96,8}, {0x1f8b1,6}, {0xf3eb,11}, {0x5d7a,4}, {0xfd25,6}, {0x825c,8}, + {0xb9c6,8}, {0x2beec,2}, {0x15d47,5}, {0x5dd0,8}, {0x10db,3}, {0x151da,7}, {0x11e28,10}, {0x153ba,8}, + {0x1c045,8}, {0x278ad,5}, {0xedb,6}, {0x14486,7}, {0x180f7,9}, {0x112c,4}, {0x116e4,10}, {0x13200,9}, + {0x1dfa,15}, {0x11ec,9}, {0x85c6,12}, {0xab0c,3}, {0x1de25,8}, {0x13ea0,5}, {0x135f,3}, {0x2d999,4}, + {0x3e04,13}, {0x9fa0,4}, {0xbb15,6}, {0x56b2,8}, {0x9eb6,12}, {0x4957,13}, {0x261b5,4}, {0x17927,5}, + {0x7bfa,8}, {0xcfd,16}, {0x145b4,4}, {0x6b45,4}, {0x8a57,4}, {0x3e34,5}, {0x6e10,11}, {0xbeb,3}, + {0xb336,7}, {0x13c3e,9}, {0x87be,10}, {0x6436,13}, {0x6c99,3}, {0x4002,7}, {0x1b39c,2}, {0x17be7,8}, + {0x2ac4,14}, {0x1f013,3}, {0x70d4,8}, {0x12bac,7}, {0x23b8e,7}, {0x4b2b,12}, {0x138ce,10}, {0x3d94,14}, + {0x1caf5,7}, {0x1d3c5,8}, {0x354d,5}, {0x1312e,10}, {0x1a49,8}, {0x12800,10}, {0x29423,4}, {0x1f6a3,3}, + {0x90e2,6}, {0xbdd0,8}, {0xaa1c,2}, {0xf726,7}, {0x1e7af,8}, {0x24b2,5}, {0x267f3,6}, {0x2605d,6}, + {0x4121,3}, {0xd0b2,8}, {0x7025,9}, {0xeb7f,11}, {0x10176,8}, {0x10530,10}, {0x2d37c,2}, {0x1492f,2}, + {0x256df,4}, {0xd784,8}, {0x1569e,10}, {0xb698,5}, {0x8dd6,12}, {0x279eb,6}, {0x47aa,5}, {0x4971,6}, + {0x25d4,14}, {0x4290,7}, {0x23733,6}, {0x24ffc,2}, {0x1045,8}, {0xed9a,11}, {0x26d5d,4}, {0x13572,9}, + {0x5d14,5}, {0x20c40,7}, {0xcd8c,11}, {0x116f8,9}, {0x274e7,5}, {0x15de0,9}, {0x17ec,14}, {0x1a9dc,5}, + {0xa2d8,3}, {0x406c,10}, {0x14ea6,5}, {0x10520,6}, {0x21818,4}, {0xb396,5}, {0x17157,6}, {0x7762,11}, + {0xfd88,8}, {0x286c5,4}, {0x16ae4,8}, {0x271e,4}, {0x1b7c,7}, {0x5df7,7}, {0x20b75,5}, {0xe38,3}, + {0x3b18,6}, {0xbb89,11}, {0x675c,5}, {0xb0dc,5}, {0x1ad9f,9}, {0x43ac,8}, {0x2386e,5}, {0xd9ec,11}, + {0x114fa,10}, {0x108de,10}, {0xf868,4}, {0xea2a,8}, {0x1666d,9}, {0xf75d,4}, {0x7936,8}, {0x4457,5}, + {0x19765,9}, {0x8092,9}, {0x16188,5}, {0xd463,9}, {0x4116,4}, {0x1941,3}, {0xd5d7,7}, {0x67a7,3}, + {0x2b75b,3}, {0x20d94,7}, {0x11de,6}, {0x10056,3}, {0x19e0a,9}, {0x197bf,9}, {0xaea,4}, {0x2958d,4}, + {0xaa3e,6}, {0x6067,12}, {0x2266e,6}, {0x1ee93,3}, {0x11de,3}, {0x7702,8}, {0x14bf4,7}, {0x45dc,7}, + {0x4dd1,7}, {0x4c22,7}, {0x13acc,7}, {0x24815,4}, {0x2268a,7}, {0x10929,5}, {0x7d56,12}, {0x4460,9}, + {0x1d7ef,6}, {0x1a00b,6}, {0x698b,8}, {0xc33a,10}, {0x107fb,5}, {0x152a2,6}, {0xec05,3}, {0x1b387,6}, + {0xc4b,3}, {0x109b,4}, {0x3e04,14}, {0x27709,5}, {0x432,13}, {0x17a62,9}, {0x16946,9}, {0x29581,2}, + {0x12e68,10}, {0x11f4f,5}, {0x1ea7f,8}, {0x234f,9}, {0x79d6,5}, {0x3f46,9}, {0xc4dc,11}, {0x15c93,9}, + {0x1ca1,12}, {0x106ba,2}, {0x6ab8,3}, {0x1a664,6}, {0x1f08,14}, {0x161d9,9}, {0x1579a,6}, {0x2c17e,4}, + {0x1c85,3}, {0x2b392,3}, {0x12cb0,10}, {0x14fd2,6}, {0x2506c,3}, {0xff2c,8}, {0x9ec2,12}, {0xade9,6}, + {0x10be0,10}, {0x1fe93,6}, {0x160cb,7}, {0xe489,11}, {0x244b9,4}, {0x1c159,4}, {0x461f,5}, {0x185c8,6}, + {0x679d,5}, {0x199ff,6}, {0x17de8,9}, {0x1a4b1,5}, {0x1d48,3}, {0x1b066,9}, {0x166c7,9}, {0x303c,10}, + {0xf44,5}, {0x5d41,13}, {0x2100c,7}, {0xdd6,3}, {0x4839,10}, {0x2c150,2}, {0x17fa1,8}, {0x2090,5}, + {0x1be05,7}, {0x2b50,14}, {0x8638,6}, {0xdf7c,5}, {0x29ed2,4}, {0x15ced,8}, {0x124c,16}, {0x27c6a,3}, + {0x1bfad,8}, {0x3e27,7}, {0x21d0e,7}, {0x1105e,10}, {0x1e821,6}, {0x2a950,4}, {0x2c2a4,2}, {0xde6,7}, + {0x278e0,3}, {0x242e9,6}, {0x24073,6}, {0xce89,11}, {0x176b1,8}, {0x16ac,11}, {0x21588,7}, {0xfc49,10}, + {0x1d7ca,5}, {0x3a27,4}, {0x27e52,2}, {0x21ef8,6}, {0x2c152,4}, {0xa05a,12}, {0x1f1c5,4}, {0x14eab,5}, + {0x2bf96,4}, {0x18d60,9}, {0x10164,8}, {0x1f789,8}, {0x14e26,4}, {0x7a1a,9}, {0x154dc,10}, {0x22d1c,6}, + {0x1ed99,8}, {0x432,14}, {0x10846,10}, {0x29ecd,4}, {0x4617,6}, {0x13394,5}, {0x20b62,5}, {0x19d1,13}, + {0xffa0,4}, {0xb65c,5}, {0x1b713,6}, {0x966c,7}, {0x1adf,12}, {0x9c66,4}, {0xc529,11}, {0x14fdc,6}, + {0x2722b,2}, {0xec4,6}, {0x4f55,7}, {0xd89d,4}, {0x26ebd,6}, {0x20f02,6}, {0x197a4,9}, {0x2db9c,2}, + {0x18823,9}, {0x7cae,12}, {0x12864,5}, {0x23f3f,7}, {0x2789,4}, {0x35fa,6}, {0x204a3,8}, {0x87ee,9}, + {0x2430,15}, {0x1f87,8}, {0x4eed,12}, {0xcd2,5}, {0x1bbed,8}, {0xdf82,11}, {0x13170,4}, {0x1f599,4}, + {0x15ae1,4}, {0x28904,4}, {0x22a21,6}, {0x83a5,5}, {0xf136,11}, {0x4d97,4}, {0x26d25,4}, {0xbe28,8}, + {0xbf1a,11}, {0x25061,2}, {0x15180,5}, {0xc843,11}, {0x24411,5}, {0x17ae4,3}, {0x46ad,6}, {0x7252,12}, + {0x10b22,6}, {0xcbf5,10}, {0x263d,10}, {0x428a,2}, {0xcd3,5}, {0x1b48,6}, {0x37cf,3}, {0x912a,7}, + {0x1d85f,6}, {0x1cabd,7}, {0x14814,10}, {0xd5d,2}, {0x28de,7}, {0x22fd8,6}, {0xa61e,5}, {0x4c7d,6}, + {0x266c4,3}, {0x20cd,4}, {0xbc70,6}, {0x281d,6}, {0xedfd,11}, {0x72ad,5}, {0x760b,7}, {0xa6ae,10}, + {0x1d57,3}, {0x23cfa,4}, {0xc7a,2}, {0x1208a,9}, {0x22a8a,7}, {0xfad1,7}, {0x2b7c9,3}, {0x1d42d,8}, + {0x2b846,4}, {0x20755,7}, {0xe846,9}, {0x26757,5}, {0x1f15b,2}, {0x10f20,7}, {0x21842,4}, {0xab5e,5}, + {0x10ea,4}, {0x25cff,6}, {0x6207,12}, {0x21abd,5}, {0x135cc,9}, {0x1a85,6}, {0x26bd5,4}, {0x15b52,4}, + {0x887a,4}, {0x189c1,9}, {0x2aad3,4}, {0x1fd49,7}, {0x21705,4}, {0x1ac3,3}, {0xe565,10}, {0x92a0,3}, + {0x2bd98,2}, {0x1fe3,3}, {0x4418,4}, {0x2425d,7}, {0xdae9,11}, {0x2a60e,3}, {0x884,3}, {0x159e0,5}, + {0xebd0,7}, {0x594f,2}, {0x15649,5}, {0x1aa51,4}, {0x2024b,6}, {0x418d,5}, {0x15c78,9}, {0x22113,8}, + {0x19ea3,6}, {0x10684,7}, {0x26850,3}, {0x1d7b7,6}, {0x26547,6}, {0x24c5f,6}, {0x1d4ad,8}, {0x2a866,3}, + {0x171c,16}, {0xf5a5,5}, {0x870a,6}, {0x133ae,9}, {0xbf88,7}, {0x4f89,9}, {0x95a2,4}, {0x1a815,2}, + {0x6d81,4}, {0x3bc6,14}, {0x51d7,4}, {0x2bd7a,4}, {0x16e4f,9}, {0x1bf05,7}, {0x21e7,15}, {0x114c8,10}, + {0x14ffa,5}, {0x2c91a,4}, {0x2c72e,4}, {0x3e12,11}, {0xccc,5}, {0x2c17a,4}, {0x131c4,10}, {0x120ee,10}, + {0x8d52,11}, {0x2b878,4}, {0x1009f,7}, {0x2863a,3}, {0x26921,6}, {0x15a1f,3}, {0x161c,7}, {0x4436,10}, + {0x13982,8}, {0x28688,3}, {0x28441,2}, {0x8956,7}, {0x25d23,6}, {0x1d97f,8}, {0x29e91,4}, {0x27897,3}, + {0x33a0,14}, {0xfc6c,3}, {0x104f4,10}, {0x21542,6}, {0x106a4,4}, {0x14c6c,9}, {0x13106,10}, {0x234fc,6}, + {0x51ab,11}, {0x17897,8}, {0x4979,5}, {0xde17,6}, {0xff55,7}, {0x73d2,5}, {0x27565,4}, {0x1be95,7}, + {0x20563,4}, {0x228b5,6}, {0x287b5,6}, {0x159ed,4}, {0x2c4dc,4}, {0x4e10,13}, {0x1a44e,8}, {0xd237,4}, + {0x22260,7}, {0x1791e,7}, {0x529c,4}, {0x1307,4}, {0x1caa5,7}, {0x16d38,6}, {0x1df27,8}, {0x273a9,6}, + {0x2720b,4}, {0xd435,11}, {0xf717,4}, {0x4aae,5}, {0x175b5,8}, {0x14c30,5}, {0x1a01d,5}, {0x3dc4,7}, + {0x288a0,4}, {0xfe7a,11}, {0x5bd3,9}, {0x257c9,6}, {0x2aacb,4}, {0xebb6,11}, {0x392d,7}, {0x1b20f,8}, + {0x1a6fa,4}, {0x3920,6}, {0x98b6,12}, {0x3a39,5}, {0xcba8,11}, {0x46fa,6}, {0x4500,6}, {0x1bf55,5}, + {0x12ee,6}, {0x184ba,9}, {0x14636,3}, {0x123f0,10}, {0x133a4,8}, {0x13c7f,5}, {0x26c37,4}, {0xf872,3}, + {0x3654,6}, {0xcdce,11}, {0x11946,10}, {0x1e967,8}, {0x1c5c5,8}, {0xf917,11}, {0x1f989,5}, {0x4b58,7}, + {0x1b6b3,3}, {0x3ebc,6}, {0x1c91d,8}, {0x2bc7e,4}, {0x1547a,4}, {0x26a8,6}, {0xe53,7}, {0x1d04b,8}, + {0x21c19,7}, {0x1e367,7}, {0x2da01,4}, {0x45e7,4}, {0x2aeaa,3}, {0x3560,8}, {0x1e8c7,8}, {0x619f,5}, + {0xa85e,12}, {0x15bb2,7}, {0x245a9,6}, {0x5ab1,4}, {0x190c4,4}, {0xe994,4}, {0x104f6,8}, {0x24a35,4}, + {0x8962,6}, {0x10260,10}, {0x8bc6,7}, {0x23e61,4}, {0x13dc,8}, {0x6de9,8}, {0x21bef,7}, {0xc529,9}, + {0x174b9,9}, {0xdc85,6}, {0x12b84,7}, {0xc263,6}, {0x641c,8}, {0x18538,9}, {0x63c1,13}, {0x24287,7}, + {0x17d6a,8}, {0x27cfa,5}, {0x29344,3}, {0xc50d,6}, {0x397c,4}, {0xac06,6}, {0x28d65,5}, {0xe334,7}, + {0x1cd0,6}, {0x2862b,3}, {0x272f,3}, {0x2cf01,2}, {0x1d70f,8}, {0x18244,6}, {0xd737,6}, {0xfaae,11}, + {0x1bdfd,8}, {0xa3a2,12}, {0x2beea,4}, {0x111bc,10}, {0xac08,4}, {0x1a0d,9}, {0x1f8db,6}, {0x10910,6}, + {0x4588,8}, {0x377c,5}, {0x22dd9,5}, {0xa56c,5}, {0x146c6,4}, {0x10e06,9}, {0xdc6a,7}, {0xb4bf,5}, + {0xf4b1,8}, {0x3cc7,4}, {0x25e22,3}, {0x5469,13}, {0x83e6,12}, {0xaa94,3}, {0x196e7,9}, {0x5ff7,5}, + {0x13c66,10}, {0x28fe,6}, {0x23bd4,6}, {0x7076,3}, {0xf8f4,6}, {0x2aefe,3}, {0x15204,4}, {0x1cc0d,8}, + {0x1e747,7}, {0xe86,11}, {0x4a5b,12}, {0x4108,3}, {0x2094e,3}, {0x16757,7}, {0x13b4,8}, {0x28c1e,5}, + {0x1db35,7}, {0x18931,9}, {0xb1ff,6}, {0x1a8b3,5}, {0x14f4b,5}, {0xfcd8,8}, {0x9f46,12}, {0x27a5,7}, + {0xd2bf,11}, {0x106e8,10}, {0x16b8f,5}, {0x5428,7}, {0x14bf4,4}, {0x17702,9}, {0x27e51,4}, {0x91f6,10}, + {0x21bd3,7}, {0xf9ee,5}, {0x1fac9,7}, {0x304a,11}, {0xbddb,11}, {0x12846,10}, {0x98fe,6}, {0x71fe,7}, + {0xb27,9}, {0xedcb,5}, {0x292f2,4}, {0x65fd,7}, {0xecb8,6}, {0x1f26,11}, {0x21cc8,7}, {0x135f4,9}, + {0xa52e,11}, {0x24711,4}, {0x4547,11}, {0x2382,9}, {0x30d6,7}, {0x5e2b,6}, {0x25425,6}, {0x1c15d,8}, + {0x14472,10}, {0x11baa,4}, {0x804,32}, {0x22a83,7}, {0xf393,6}, {0x29ed7,4}, {0xa0fc,4}, {0x1d5e5,5}, + {0x1415c,10}, {0x1800d,6}, {0x2984b,2}, {0xc13,7}, {0xf84f,5}, {0x22b1f,7}, {0x38fc,9}, {0x215ea,7}, + {0x36a2,7}, {0xbd99,8}, {0x11464,10}, {0x5cd1,8}, {0x162c,16}, {0x9a9,16}, {0x4c3c,6}, {0xbe61,8}, + {0x5191,5}, {0xf697,5}, {0x26d11,2}, {0x418d,7}, {0xc961,11}, {0x18ac8,6}, {0xbd62,9}, {0x179c0,9}, + {0x27fa5,2}, {0x6ed5,7}, {0x62ca,13}, {0x1fad,15}, {0x6787,3}, {0xe749,11}, {0x5b03,6}, {0x22cfe,2}, + {0x3131,7}, {0x112d4,10}, {0x174f1,6}, {0x1ee89,8}, {0x26c0e,3}, {0x1e397,8}, {0x79ea,12}, {0xf445,6}, + {0x28e5b,3}, {0x3c98,9}, {0x10832,10}, {0xa28e,7}, {0x1fd99,8}, {0xde2d,8}, {0x5698,7}, {0x5102,4}, + {0x210f5,7}, {0x248b5,8}, {0x244dd,4}, {0x3cfa,14}, {0x5bfa,7}, {0x2048,9}, {0xec4,3}, {0xaf3,10}, + {0x1f131,5}, {0x26b5,10}, {0x2d6f8,3}, {0x1a99f,7}, {0x8a76,7}, {0x1e36,8}, {0xbe6a,11}, {0x193a4,4}, + {0x1a244,7}, {0x253b3,4}, {0xd91d,6}, {0x12260,9}, {0x1a8e0,6}, {0xdde,4}, {0x206a,6}, {0x28773,8}, + {0xa8ff,4}, {0x13702,10}, {0xcbc,2}, {0x26f9,5}, {0x10b90,10}, {0x2be70,2}, {0x291eb,3}, {0x6170,7}, + {0xec03,5}, {0x1fce3,2}, {0x47fd,6}, {0x136c6,10}, {0xaab8,4}, {0x163af,6}, {0x16f7,5}, {0x12fe,4}, + {0x3823,6}, {0x14cb4,4}, {0x1c81d,8}, {0x29eaf,4}, {0x158ac,5}, {0x148eb,4}, {0xe69,4}, {0x4338,7}, + {0x224df,7}, {0x143be,10}, {0x28bea,5}, {0x1a661,9}, {0x18c7f,7}, {0x7c2,5}, {0x219ef,4}, {0x11c6c,4}, + {0x2c44c,4}, {0x11040,6}, {0xdd2,7}, {0x1d245,6}, {0x1bc5,8}, {0x7052,6}, {0x27,3}, {0x13d12,6}, + {0x2995d,5}, {0x1463,7}, {0x1b9a5,8}, {0x278d4,3}, {0x17d16,3}, {0x1c61d,8}, {0xaa88,5}, {0x1f591,4}, + {0x1f6b1,8}, {0x1683,9}, {0x155c,12}, {0x174e6,9}, {0xbd1,5}, {0x1213e,5}, {0x12026,10}, {0x24591,6}, + {0x28508,2}, {0xb328,10}, {0x19d4d,6}, {0x2c812,4}, {0x164bd,6}, {0x2657d,4}, {0xbcae,4}, {0x7029,4}, + {0x13658,10}, {0x2c12a,4}, {0x2b793,4}, {0x6e03,7}, {0x9ad2,12}, {0x10cd0,10}, {0x2ae9a,3}, {0x6e92,7}, + {0x22f53,7}, {0x1a2a5,8}, {0xa786,12}, {0x1bc65,7}, {0xb2a,4}, {0x2288b,7}, {0x17d2b,9}, {0xf6e6,4}, + {0xf485,5}, {0x27e4e,2}, {0xb139,11}, {0x23159,5}, {0x17001,9}, {0xe0ed,11}, {0x29246,2}, {0x70f1,4}, + {0x136ee,7}, {0xf1ba,10}, {0x7426,6}, {0x147ba,7}, {0x31e0,10}, {0x18f2b,8}, {0xbed,3}, {0x3f7e,8}, + {0x752e,10}, {0x154c,16}, {0x88d2,12}, {0x1cfe1,7}, {0x27c79,5}, {0x27571,4}, {0xaf2a,4}, {0x29ee1,4}, + {0x2403,15}, {0xb7e2,8}, {0x14f3c,4}, {0x1b93,10}, {0x1d852,5}, {0x7f96,6}, {0xf219,4}, {0x1636c,4}, + {0x7ada,12}, {0x12bcc,3}, {0x1a94,10}, {0x19bdc,9}, {0x2103d,6}, {0x22e6,7}, {0x29ef0,4}, {0x154fa,7}, + {0xa342,11}, {0x25db8,3}, {0x2278d,7}, {0x2c15a,4}, {0x89e1,5}, {0x1a8d,7}, {0x2ae92,3}, {0xbb10,5}, + {0x1b927,6}, {0x1045,2}, {0x217e0,3}, {0x17b0d,8}, {0x1b06f,8}, {0x18a00,9}, {0x7912,11}, {0x1144,8}, + {0x93be,12}, {0x1bfc5,8}, {0xa89a,7}, {0x12a44,10}, {0x28639,3}, {0xc9b,2}, {0x27cd9,9}, {0x27e79,4}, + {0x1ff89,5}, {0xcc37,10}, {0x29eb9,4}, {0x26fbc,3}, {0x667f,13}, {0xf4a8,8}, {0x1d1cd,6}, {0xcdc,3}, + {0x1e947,8}, {0x148c8,6}, {0xd4ae,11}, {0xd7d,4}, {0x2a80f,5}, {0xd54,3}, {0x13b44,7}, {0x939a,8}, + {0xaefc,5}, {0x92c8,4}, {0x2380c,5}, {0x15abf,3}, {0x6e39,3}, {0x1a122,7}, {0x800e,7}, {0x1029e,4}, + {0x13afe,9}, {0x2bb2a,4}, {0x28db6,3}, {0xa8f2,4}, {0x26e78,3}, {0x21c2e,7}, {0x2583,3}, {0x1e152,3}, + {0x1f35,6}, {0x27979,6}, {0xedbb,11}, {0x1bb8d,8}, {0x19f42,3}, {0x13586,9}, {0x13156,9}, {0x2c2ac,2}, + {0x1a8e,4}, {0xdccd,10}, {0x21f51,2}, {0xbd5,3}, {0x10404,10}, {0x21028,6}, {0x8e3a,3}, {0x236e1,5}, + {0x353d,5}, {0xb47,3}, {0x13866,4}, {0x15dfb,8}, {0x11d95,3}, {0x11fba,8}, {0xb85b,10}, {0x15f02,6}, + {0x2226e,7}, {0x6e46,11}, {0x11c98,10}, {0x418b,9}, {0x26c05,4}, {0x2af02,3}, {0x2bb12,4}, {0x14904,5}, + {0x75ea,4}, {0x16dc,15}, {0x361c,4}, {0x4a4e,8}, {0x18f73,9}, {0x20179,6}, {0x27a5,5}, {0x2baee,4}, + {0x22f4e,5}, {0x6676,7}, {0x2b2ff,3}, {0x16202,4}, {0x27ff,6}, {0x22c6a,7}, {0x220e2,7}, {0xb8e4,6}, + {0xa74f,5}, {0xc399,4}, {0x25e97,6}, {0x19504,6}, {0x6b47,4}, {0x1835b,6}, {0xe97,9}, {0xebef,4}, + {0x1d3ad,6}, {0x341e,14}, {0x282c,14}, {0x1764e,9}, {0x3e40,10}, {0x9b0e,6}, {0x264f9,6}, {0xad64,2}, + {0x107f,4}, {0x445d,12}, {0x22221,7}, {0x27e5c,3}, {0xaeee,5}, {0x4532,8}, {0x1a40,7}, {0x438e,8}, + {0x3edb,7}, {0x25ca5,6}, {0xc66a,11}, {0x7c5c,4}, {0x269e4,2}, {0x1dbe,14}, {0x2a86b,3}, {0x40b2,7}, + {0x203c1,7}, {0x19c2f,6}, {0x92d0,5}, {0x1a17c,9}, {0x1b4eb,3}, {0xe08a,11}, {0x27c7b,3}, {0x1b507,4}, + {0x26d19,4}, {0x5915,8}, {0x8eae,11}, {0x1eae,8}, {0x27598,3}, {0x9d06,12}, {0x9916,11}, {0x19b82,6}, + {0x1b7dd,8}, {0x43e8,8}, {0x122bc,4}, {0x30ac,13}, {0x229db,7}, {0x532,130}, {0x154dc,4}, {0x1f7c1,7}, + {0x2f12,4}, {0xb682,11}, {0x29e9b,4}, {0x1c775,5}, {0x2310c,7}, {0x15f00,9}, {0xfb06,8}, {0x14b90,6}, + {0x280b9,6}, {0x63d5,6}, {0xad62,5}, {0x2c176,4}, {0x1eff1,8}, {0x9b32,5}, {0xcc0,7}, {0x19fba,9}, + {0x1e757,8}, {0xa2d6,8}, {0x19a8,3}, {0x166d0,7}, {0xc675,10}, {0xed2,2}, {0xd76,12}, {0xb66c,11}, + {0x11888,7}, {0x2c162,4}, {0x14e7e,5}, {0x227b7,6}, {0xb323,5}, {0x17fc,6}, {0x6e6b,13}, {0x17dcd,9}, + {0x1c2af,3}, {0x1e6b,7}, {0xcfe9,11}, {0x2799d,6}, {0x1ba97,5}, {0x276df,6}, {0x1bc05,8}, {0x71eb,5}, + {0x4119,4}, {0xd4b4,5}, {0x17f50,9}, {0x6957,13}, {0x1fc09,7}, {0xd343,7}, {0x43ab,9}, {0x432,15}, + {0x82b1,4}, {0xa111,5}, {0x14d48,10}, {0xb90b,11}, {0x2b00a,2}, {0x142f,3}, {0x19a6f,5}, {0x147c,16}, + {0x17145,8}, {0x1d0ad,8}, {0x11176,9}, {0x2654d,6}, {0x277e1,4}, {0x278c8,3}, {0x24f96,2}, {0x19b5e,5}, + {0x23ecf,7}, {0x4a82,5}, {0x1163a,10}, {0x5ea0,13}, {0xb68d,6}, {0xa58e,12}, {0x2a850,5}, {0x27c93,3}, + {0x6c72,4}, {0x2bd52,4}, {0xcf39,10}, {0x1c155,8}, {0x16f61,4}, {0xa672,11}, {0x36b2,4}, {0x2a83c,5}, + {0x21e8b,3}, {0x12231,3}, {0x186fa,9}, {0x502b,7}, {0x3694,14}, {0xe565,11}, {0x3f9a,7}, {0xa69c,6}, + {0x6144,8}, {0x18d6,6}, {0xab2e,12}, {0x16dda,9}, {0x2bf1a,4}, {0x2a8a5,5}, {0xdd1a,11}, {0x21dd9,7}, + {0x1326e,10}, {0xa64e,12}, {0x204eb,5}, {0xea98,7}, {0xaedb,2}, {0x91a2,12}, {0x23afb,6}, {0x253df,6}, + {0x2d028,3}, {0x5d34,13}, {0x8e06,12}, {0x168ec,9}, {0x22339,7}, {0x1c43d,8}, {0xfa82,11}, {0x2bff,6}, + {0x2440f,7}, {0x959e,8}, {0x1b815,8}, {0xb33,2}, {0x2db42,2}, {0x1137a,4}, {0xfc12,6}, {0x5a5a,13}, + {0x24da7,4}, {0x21ec0,7}, {0x18c37,7}, {0x28464,3}, {0x2dbb0,2}, {0x6d90,7}, {0x15e28,9}, {0x417e,4}, + {0xc090,11}, {0x214fc,7}, {0x13f72,9}, {0x27c63,3}, {0x29e78,4}, {0x1a50b,9}, {0x179ce,4}, {0x11aae,10}, + {0x27e57,3}, {0x275a,8}, {0x2273,6}, {0x257fb,6}, {0x3492,4}, {0x1ff19,8}, {0x16f8,4}, {0x12e54,10}, + {0xe0f8,11}, {0x1b735,8}, {0x18793,9}, {0x1be85,8}, {0x2360d,7}, {0xcda8,3}, {0x1a8ce,6}, {0x712e,3}, + {0x203b5,4}, {0x1b111,9}, {0x1f779,8}, {0x31b6,6}, {0x18301,9}, {0x109e8,4}, {0x2c166,4}, {0x68fe,5}, + {0x12df0,10}, {0xbb28,6}, {0x95bb,7}, {0x7444,2}, {0x2c06,8}, {0x77c7,4}, {0x129f,2}, {0x23c3d,6}, + {0x14dfc,7}, {0x20b67,7}, {0x89c8,6}, {0x68a1,12}, {0x10585,4}, {0x2ba32,4}, {0xcc2c,11}, {0x2c16e,4}, + {0x9c6a,12}, {0xf894,4}, {0x14c3a,10}, {0x2a914,5}, {0x27e47,4}, {0x1f2e9,5}, {0x2306d,5}, {0x22e57,6}, + {0x4611,5}, {0x23e5,10}, {0xd0f,5}, {0x6e44,13}, {0xc161,10}, {0x12a6c,10}, {0x1cfd1,8}, {0x90e5,3}, + {0x2c15e,4}, {0x4487,8}, {0xa4d,6}, {0x2056b,8}, {0xc75c,11}, {0x3ee4,13}, {0x17013,9}, {0x1088e,6}, + {0x1cacd,8}, {0x21534,7}, {0x2ae79,4}, {0x16b1a,9}, {0x2aede,2}, {0xf41,8}, {0x2d6d4,3}, {0x14f3,7}, + {0x177ad,8}, {0x2466f,6}, {0x19cea,8}, {0x8c4,34}, {0xa666,7}, {0x2b489,3}, {0xaef0,2}, {0x25ebb,5}, + {0x25b07,6}, {0x41b0,8}, {0x6178,7}, {0x1961,7}, {0x21ba9,6}, {0x9ce2,12}, {0xa7d1,6}, {0x29ebe,4}, + {0x1fce1,4}, {0x1ada,2}, {0x57c3,8}, {0x1a59b,9}, {0x123be,10}, {0x7f9c,6}, {0x1173,3}, {0x238a8,5}, + {0x27945,4}, {0x1cec,15}, {0x1c6ed,8}, {0x134e,4}, {0x5c5b,3}, {0x1b6a3,6}, {0x29498,3}, {0x10b2,5}, + {0x1882c,7}, {0x6cb1,6}, {0x6bad,13}, {0x2b78e,3}, {0xd20f,11}, {0xa974,4}, {0xe02,4}, {0xdf14,11}, + {0x11176,10}, {0x2797f,6}, {0x2ab0b,4}, {0xd0af,11}, {0xe4d6,11}, {0x25410,3}, {0x23b8,14}, {0x141c5,5}, + {0xf9ec,7}, {0x222fa,7}, {0x1cf81,8}, {0x2067,3}, {0x1b97d,5}, {0x1d857,8}, {0xbce9,11}, {0x107ec,10}, + {0x8026,8}, {0x80d3,7}, {0x14780,4}, {0x8d5e,12}, {0x13efa,10}, {0x26e66,3}, {0x1837f,8}, {0x1a56a,4}, + {0x18892,4}, {0x1f311,4}, {0x285b,2}, {0xcaf2,6}, {0x17de,5}, {0x11914,9}, {0x19363,9}, {0x1051c,10}, + {0x159c,10}, {0x14f46,10}, {0x2b75,4}, {0x864a,11}, {0xf32,3}, {0x2bd72,4}, {0x3611,2}, {0xc0c1,5}, + {0xb4bf,6}, {0x1a1e8,9}, {0x17ba1,3}, {0xb3a1,9}, {0x1e73f,7}, {0x10e74,7}, {0x6137,9}, {0x16451,9}, + {0x1e2b9,6}, {0x10dfc,8}, {0x836e,12}, {0x27079,6}, {0x26c31,4}, {0x25c33,6}, {0xea2a,6}, {0xa7ce,9}, + {0x1ab4d,5}, {0xd05a,8}, {0xc73b,11}, {0x719e,5}, {0x1cc7d,7}, {0x1f891,8}, {0x11255,4}, {0x1bbdd,8}, + {0x189d3,9}, {0x8c28,8}, {0x23787,5}, {0xfacf,5}, {0x15d6b,9}, {0x5ed4,8}, {0xa492,8}, {0x29ea5,4}, + {0x26f81,2}, {0x7ace,8}, {0x1eeab,6}, {0x16c7c,6}, {0x262a,4}, {0x290c,6}, {0x2421e,6}, {0x9646,5}, + {0x6c72,3}, {0x35b4,12}, {0xacc8,8}, {0x12094,8}, {0x239b9,7}, {0x15b97,9}, {0x16a03,7}, {0x15f4d,4}, + {0x1956d,7}, {0x2a841,5}, {0x2b820,7}, {0x6477,9}, {0xfacf,9}, {0x14a12,4}, {0x32f8,11}, {0x2efa,9}, + {0x1612e,9}, {0x1e155,6}, {0x314e,6}, {0x14206,9}, {0x14062,10}, {0x1b47e,5}, {0x2c16a,4}, {0xa8ca,8}, + {0x9e6e,12}, {0x1e22f,8}, {0x2b09d,2}, {0xc86f,7}, {0x2a891,5}, {0x1060c,6}, {0x13a2,4}, {0x4b86,8}, + {0x26099,6}, {0x125c2,4}, {0x11b76,10}, {0x623b,13}, {0xa942,7}, {0x237c6,7}, {0x2acff,4}, {0xb0cb,6}, + {0x20ca,6}, {0x2a84b,5}, {0xa379,5}, {0xe5b,4}, {0x1935a,6}, {0x4186,14}, {0x3abc,12}, {0x3862,9}, + {0x1040e,10}, {0x15478,6}, {0x23df6,4}, {0x23af4,7}, {0x1b7c,8}, {0x154d9,3}, {0x2270f,7}, {0x247f5,8}, + {0xdb78,11}, {0x45bc,13}, {0x242e9,7}, {0x9fee,12}, {0x8032,11}, {0x21934,7}, {0x1831c,9}, {0x1d3bd,8}, + {0xdf0,3}, {0xf8cf,4}, {0x11b8a,10}, {0x3e58,14}, {0x1e983,4}, {0x251e7,5}, {0x1e09,14}, {0x4c97,7}, + {0x92e6,5}, {0xa619,5}, {0x1583c,9}, {0x12e92,7}, {0x22ff4,6}, {0x1fe29,8}, {0x14713,3}, {0x2c268,2}, + {0x19231,9}, {0x4728,6}, {0x11680,10}, {0x5f8f,3}, {0xafa9,5}, {0x2769,6}, {0x94a2,12}, {0x2da11,4}, + {0x6e85,10}, {0x2c172,4}, {0x12d0,12}, {0x4370,13}, {0x18b95,9}, {0x27205,6}, {0x8e2a,10}, {0x11766,8}, + {0xa9f8,4}, {0x3322,14}, {0x6197,6}, {0x1c6cd,8}, {0x8ffe,11}, {0x10670,7}, {0x139e6,6}, {0x14a78,7}, + {0x303c,13}, {0x83aa,12}, {0x1393,5}, {0x7cb3,6}, {0x2912e,5}, {0x348e,14}, {0x4998,7}, {0x2adcd,4}, + {0x6a4e,13}, {0xb87c,7}, {0x23095,7}, {0x9114,5}, {0x1f2bb,4}, {0x19d9e,9}, {0x14939,3}, {0x974e,7}, + {0xb205,5}, {0xb4a,6}, {0x353a,3}, {0x7a02,12}, {0xc2cc,10}, {0x535a,6}, {0x278da,3}, {0xc06f,11}, + {0x25da9,5}, {0xa07e,5}, {0x892c,6}, {0x90a6,12}, {0xe7fd,7}, {0x17bba,8}, {0xa906,6}, {0x834a,12}, + {0x6f57,3}, {0x101f7,5}, {0x28d02,5}, {0x29c23,5}, {0x1a124,7}, {0x820d,5}, {0x12fa8,10}, {0x1abb2,3}, + {0xeada,7}, {0x193b,4}, {0x2cfff,4}, {0x265dd,6}, {0x1ee81,7}, {0x18541,9}, {0xc3df,11}, {0x191e0,9}, + {0x1022e,10}, {0x130c,14}, {0x21b81,4}, {0x20c0,3}, {0x19c63,6}, {0x1aa02,7}, {0x679d,6}, {0x665f,6}, + {0x26d5,5}, {0x8f83,3}, {0x1f549,8}, {0x2212a,7}, {0xfda0,9}, {0x1e47f,8}, {0x2bafe,6}, {0x23d2b,7}, + {0x155b8,6}, {0x261a5,6}, {0xb170,11}, {0x24da7,6}, {0x1d46d,7}, {0x24af5,6}, {0x1c97d,8}, {0x2a90f,5}, + {0x2d13e,2}, {0xae7,3}, {0x2b954,6}, {0xe728,11}, {0x254c7,6}, {0xf6d0,2}, {0x10c2,2}, {0x195fd,4}, + {0x1bcb5,5}, {0x1a39a,5}, {0x23aef,4}, {0x295b2,3}, {0x1727b,4}, {0x1dbcd,8}, {0xfde0,7}, {0xcf02,6}, + {0x110fe,9}, {0x15dc,7}, {0xd700,10}, {0x2aeda,2}, {0x98ee,4}, {0x2589d,6}, {0x22bb4,7}, {0x1c1f5,8}, + {0x1c1ed,8}, {0x2676f,6}, {0x7966,12}, {0x1bf3d,8}, {0x15632,3}, {0x12422,10}, {0x601c,8}, {0x7ac9,4}, + {0x244b3,4}, {0x21bc,3}, {0x42a6,4}, {0x1641b,8}, {0x290ff,2}, {0x2a846,5}, {0x11af9,4}, {0x1ddff,6}, + {0x19d85,3}, {0x18b20,9}, {0x500b,12}, {0x2135d,7}, {0x189e5,9}, {0x10792,10}, {0x67ac,10}, {0x64d2,13}, + {0x14b3,3}, {0x4dd4,8}, {0xcf9,4}, {0xf367,7}, {0x740e,6}, {0x11798,10}, {0x7924,6}, {0x17e15,8}, + {0x2aef6,2}, {0x28169,3}, {0xac72,4}, {0x2c692,4}, {0x69c3,5}, {0x59f2,5}, {0x297f,2}, {0x22f7f,5}, + {0x2311a,5}, {0x98c2,6}, {0x19501,9}, {0x1465c,5}, {0x14cc,7}, {0x2083f,4}, {0x116c,3}, {0x15eaf,9}, + {0x1fce5,2}, {0x1fc61,8}, {0xda9,10}, {0x1d2b5,8}, {0x15e04,9}, {0x2ae7,7}, {0xad3e,7}, {0x65af,12}, + {0x12e22,10}, {0x1d30f,6}, {0x53b3,13}, {0xb421,4}, {0x1996f,9}, {0x10cf8,10}, {0x15748,4}, {0x5bed,11}, + {0x28948,5}, {0xb6fb,6}, {0x27c73,5}, {0x13874,10}, {0x79da,4}, {0x1b2bd,8}, {0x240c3,3}, {0x22989,4}, + {0x1a3c7,5}, {0x21877,7}, {0x2447d,8}, {0x1aad8,9}, {0x73d2,6}, {0x11148,5}, {0x20f2c,7}, {0x2ca22,4}, + {0x1c7b0,5}, {0x12210,6}, {0x1e727,6}, {0x26f1f,4}, {0x11dc,5}, {0x1f281,7}, {0x1c96d,8}, {0x232b7,5}, + {0x26541,6}, {0x2d5cc,3}, {0x9cee,9}, {0x10942,9}, {0xd0a4,9}, {0x6b86,13}, {0x1426a,6}, {0xb2ed,4}, + {0x22e52,5}, {0xac8e,4}, {0x9c9,16}, {0xebcc,11}, {0xfe0,3}, {0x1ce3d,7}, {0x2c4ac,4}, {0x8aca,5}, + {0x7d92,7}, {0x3c7c,9}, {0x21348,7}, {0x2a8db,2}, {0x4b52,13}, {0x1339a,6}, {0x1ac69,4}, {0x893e,7}, + {0x1695,2}, {0x1a793,5}, {0x4dc2,11}, {0x218d,11}, {0x245c1,6}, {0x2801,13}, {0x249a9,8}, {0x17777,9}, + {0x25241,4}, {0x10f6,5}, {0x1c405,8}, {0xf2ac,4}, {0x14094,8}, {0x2744,2}, {0x1adf9,9}, {0xb071,3}, + {0x24ae9,6}, {0xa77a,11}, {0x11220,10}, {0x35c7,9}, {0x1310,4}, {0xfff,4}, {0x15bcd,9}, {0x20b12,2}, + {0x26e6f,4}, {0x7786,8}, {0x14e1c,8}, {0x3ffc,13}, {0xbe9b,6}, {0x1a7fb,4}, {0x3226,8}, {0x1081e,10}, + {0x19ee2,5}, {0x52f0,8}, {0x4590,3}, {0x16eaf,3}, {0x2055b,4}, {0x19618,9}, {0x25ec7,6}, {0x1c32,3}, + {0x4eb9,8}, {0x1e2cf,8}, {0x2a807,3}, {0x1607a,9}, {0xe8d5,11}, {0xdd04,6}, {0xb46b,7}, {0x119f0,7}, + {0xb21b,5}, {0x273bb,4}, {0x1b7d3,4}, {0x2c46,6}, {0x7e54,4}, {0x232e1,5}, {0x1e8b1,5}, {0x139f0,6}, + {0xfd67,5}, {0x615e,13}, {0x15e31,9}, {0x29926,5}, {0x1d839,4}, {0x1fad3,3}, {0x3fd2,14}, {0xc2cc,11}, + {0x8db2,10}, {0x33c0,5}, {0xa83a,9}, {0x27e33,4}, {0x10758,6}, {0x1522,10}, {0x1bb05,8}, {0x12a17,5}, + {0x2d0da,2}, {0xf938,11}, {0x25ef7,6}, {0x12616,10}, {0x1ac6d,6}, {0x1f499,8}, {0x19e64,4}, {0xd674,3}, + {0x3cc4,8}, {0x5f8a,13}, {0x37a2,10}, {0x6fe1,4}, {0xfc96,11}, {0x15540,7}, {0x2244c,6}, {0x2928b,3}, + {0x13cc,9}, {0x1168a,10}, {0x27a27,6}, {0x1b743,8}, {0x19375,8}, {0xa82e,6}, {0x933a,12}, {0x1cd4d,8}, + {0x20139,5}, {0x2cde8,6}, {0x6a8f,10}, {0x1ea5,5}, {0x2d134,3}, {0x2c8ae,4}, {0xe1b3,6}, {0x24829,8}, + {0x25511,6}, {0xc038,8}, {0x6c15,6}, {0x27e1a,4}, {0x2aa1e,7}, {0x1b9c5,8}, {0xbaef,11}, {0x13a2c,6}, + {0x9a5a,7}, {0x1f059,5}, {0x113f,2}, {0x6b6c,6}, {0x2bde2,4}, {0xb845,11}, {0x136f,3}, {0x1f1eb,6}, + {0x15036,4}, {0xa6bc,7}, {0x5276,5}, {0x132a0,9}, {0x186c4,9}, {0x1f8c9,5}, {0xbe4,3}, {0xbaa2,5}, + {0xf9f3,8}, {0x253fb,4}, {0x27985,6}, {0x2a828,5}, {0x27c67,5}, {0x4042,14}, {0x26f9,7}, {0xcd6,3}, + {0x2ad93,4}, {0x269f3,4}, {0x13df8,3}, {0x7f90,4}, {0x1656c,5}, {0x226b4,6}, {0xec71,10}, {0xfac4,8}, + {0xac66,5}, {0xe8ce,7}, {0x6676,9}, {0xf23e,5}, {0xd671,5}, {0x1ffd9,5}, {0x7e22,12}, {0xaad,12}, + {0x24447,4}, {0x1725c,9}, {0x278ce,3}, {0x198df,9}, {0x1dca5,8}, {0xb78a,7}, {0x2c216,4}, {0x27e5c,2}, + {0x15057,7}, {0x25acf,8}, {0xa7e6,6}, {0x173c,6}, {0xf7fd,5}, {0x5324,6}, {0x2360a,3}, {0x25feb,4}, + {0x345e,6}, {0x15298,4}, {0x1d84f,8}, {0xe279,11}, {0x1514,6}, {0x2589,11}, {0x17c89,9}, {0x1fda1,8}, + {0xb6be,3}, {0x7639,4}, {0x11dc,12}, {0x1c370,5}, {0x24f81,2}, {0x6554,13}, {0xe7bd,5}, {0x129cc,10}, + {0x2104b,7}, {0x6998,13}, {0x19ec7,9}, {0x5b6b,13}, {0x23abe,5}, {0xe6af,11}, {0xfb6b,7}, {0x397a,13}, + {0x1a886,9}, {0x1732d,7}, {0x295ee,5}, {0x1d789,4}, {0x11324,8}, {0x29513,2}, {0x1736c,9}, {0x1dbb5,8}, + {0x27e29,3}, {0x2c644,6}, {0x1427e,9}, {0x7efa,12}, {0x1847b,8}, {0x5582,4}, {0x5aaa,3}, {0x2565,3}, + {0x12ba2,10}, {0xc828,5}, {0x2bd96,4}, {0x2a82a,3}, {0x2ac6b,4}, {0xf2b9,3}, {0xfb13,9}, {0xb380,8}, + {0xe3e4,5}, {0x1b0ff,8}, {0x2a9af,4}, {0x19a6b,9}, {0x1bc85,8}, {0x1ed31,8}, {0x2324e,7}, {0x1912c,9}, + {0x1f431,7}, {0xfc9,13}, {0x45fd,4}, {0x2a869,5}, {0x3638,2}, {0xe121,3}, {0x22187,7}, {0xc89,8}, + {0x2da09,4}, {0x1e357,8}, {0xf964,6}, {0x16bc,8}, {0x2798b,6}, {0x1da1d,7}, {0x102a6,9}, {0x276fd,5}, + {0xf393,10}, {0x1e827,6}, {0x15054,4}, {0x10ee2,10}, {0x137f2,10}, {0x11a2c,10}, {0x1d987,8}, {0xab76,6}, + {0xf52a,5}, {0x5a67,12}, {0x10f14,10}, {0x442e,2}, {0x13cf2,6}, {0x1955d,7}, {0x209f,4}, {0x24f85,4}, + {0x2be32,4}, {0x14b92,4}, {0x4e5e,12}, {0x16cfb,6}, {0x1099c,10}, {0xc21c,11}, {0x28891,4}, {0x1479c,9}, + {0x1effb,6}, {0x20111,8}, {0xb1bd,11}, {0x179b7,9}, {0x2a870,3}, {0x1e5ef,8}, {0x14fe6,7}, {0x22d80,5}, + {0x261f5,6}, {0x8a46,12}, {0x455b,6}, {0x22b70,3}, {0x1b008,4}, {0x240df,4}, {0x68fc,7}, {0x28469,5}, + {0x7942,12}, {0xdcd,5}, {0x5768,6}, {0x2bab6,6}, {0x4eb5,4}, {0x691e,5}, {0x228a7,7}, {0x27e15,4}, + {0x255e3,6}, {0x251fe,4}, {0x1f131,8}, {0x168bf,8}, {0x2c252,4}, {0x27c91,5}, {0xcad,3}, {0xbcd3,7}, + {0x194ef,8}, {0x12bc0,7}, {0x14e84,4}, {0xbc70,11}, {0xba22,4}, {0x19aeb,6}, {0x13f36,9}, {0xa76e,12}, + {0x8da6,12}, {0x1dc6d,7}, {0x27991,6}, {0x28c48,3}, {0x80e6,12}, {0x4693,6}, {0x1ebd,15}, {0x90ee,11}, + {0xea2d,5}, {0x16841,9}, {0x2521c,6}, {0x11806,9}, {0x17f6b,9}, {0x1fea1,5}, {0x12dfa,10}, {0x1e1d4,3}, + {0x2a85c,3}, {0x11f9a,10}, {0x29661,4}, {0xb30,8}, {0x446a,8}, {0x1f2b9,6}, {0x1cbf,9}, {0x2a834,3}, + {0x10346,7}, {0x587d,4}, {0x1f1f1,8}, {0x1eabf,8}, {0x1b0f8,7}, {0x18996,6}, {0x23aed,6}, {0x2329,5}, + {0x9ece,12}, {0x23006,3}, {0xebe,3}, {0x2288b,6}, {0xfb3d,11}, {0x22f8b,7}, {0x194c2,5}, {0x225f7,5}, + {0x23010,4}, {0x1a5ad,6}, {0x2d12,3}, {0x2a9c8,5}, {0x215d5,7}, {0x12fc,12}, {0xadda,12}, {0x1e5ff,8}, + {0x176c3,9}, {0x41f6,14}, {0x11306,10}, {0x992e,12}, {0x10503,5}, {0x25065,2}, {0xb6cf,11}, {0xa8e8,6}, + {0x1b84,15}, {0x13748,9}, {0x22f29,7}, {0x21da8,6}, {0x2b884,4}, {0x19e25,8}, {0xddc5,5}, {0x280c2,5}, + {0x2877d,4}, {0x1f6f9,8}, {0x12b7a,7}, {0x1cc55,7}, {0x424a,14}, {0x1ea87,8}, {0xaa02,5}, {0x7a26,8}, + {0x276bb,4}, {0xc55,5}, {0x225cd,7}, {0xba3a,5}, {0x27403,6}, {0x1a502,5}, {0x1a1a0,5}, {0x18fdb,4}, + {0x8cda,9}, {0x906e,5}, {0xc24f,4}, {0x540e,12}, {0x11b5,3}, {0x164ea,9}, {0xac72,5}, {0x272e5,2}, + {0x28c2d,5}, {0x1b622,2}, {0x60b5,8}, {0xfcea,4}, {0x26a41,6}, {0x3009,8}, {0x12e72,10}, {0x10a4a,2}, + {0x152b6,5}, {0x1773d,4}, {0xb135,4}, {0x226e,11}, {0x90be,9}, {0x14ba6,3}, {0xbd20,11}, {0x12974,4}, + {0x3642,3}, {0x1bd60,5}, {0x18205,9}, {0x25b9d,6}, {0x115fe,10}, {0x1db6d,6}, {0x1fb81,6}, {0x16e8e,9}, + {0xc51e,11}, {0xb71c,11}, {0xdab2,11}, {0x202d3,4}, {0xf2ee,5}, {0x264b1,6}, {0x1bf85,8}, {0xe3b0,5}, + {0x19cb,6}, {0x6e78,8}, {0x20ffe,7}, {0x2560d,6}, {0x4372,11}, {0x17bcc,8}, {0xcc79,6}, {0x2451f,6}, + {0x19822,9}, {0xdd67,11}, {0xb2a4,9}, {0x172e3,9}, {0x5143,12}, {0x200e,5}, {0x13892,10}, {0x1754d,5}, + {0x255c,6}, {0x1e9a7,8}, {0x2b8b4,4}, {0x27c8d,3}, {0x27202,3}, {0xa7c2,5}, {0x3fb6,8}, {0xc7a9,11}, + {0x20b2,2}, {0x1ece1,7}, {0x1088,2}, {0xdb1,3}, {0x18e2f,9}, {0x139c,10}, {0x5324,12}, {0x1119e,10}, + {0x22b50,7}, {0xcbd6,9}, {0xf2f9,6}, {0x2c7fa,4}, {0x11054,7}, {0x1874b,8}, {0x176f0,5}, {0x1c495,6}, + {0x1dec7,6}, {0x19b04,9}, {0x1a568,6}, {0xb1b2,11}, {0xc114,11}, {0x51ca,8}, {0x2a905,5}, {0x30,70}, + {0xbb6c,7}, {0x2bb26,4}, {0x4dcf,12}, {0x122ec,10}, {0x1912,9}, {0x68e9,5}, {0xa16e,11}, {0x430,66}, + {0xa049,5}, {0x2da2d,4}, {0x16137,6}, {0x2a832,5}, {0x24985,8}, {0x11cc0,5}, {0x17684,9}, {0x2bb06,4}, + {0x10a78,10}, {0xe032,11}, {0x13a2c,7}, {0x5fb9,5}, {0x169e8,9}, {0xc5df,4}, {0x18e38,9}, {0x2d6eb,2}, + {0x2cd8,13}, {0x1051c,8}, {0x2bae2,4}, {0x1529a,3}, {0x4e70,4}, {0x183ac,9}, {0x4c90,7}, {0x839e,7}, + {0x35f1,2}, {0x1a73c,6}, {0x2da05,4}, {0x192b8,5}, {0x15a8b,4}, {0x106a2,5}, {0x19ace,9}, {0x10800,9}, + {0xbcfa,5}, {0xe523,9}, {0x1a592,5}, {0x193a2,9}, {0xa582,11}, {0x11478,10}, {0x184c3,9}, {0x16cc,5}, + {0xd0c8,3}, {0x1e4b7,8}, {0x4f4d,7}, {0x46ee,6}, {0x197e,8}, {0x14dac,6}, {0x2794b,4}, {0x1e021,8}, + {0xe9d,3}, {0x192af,6}, {0x27c75,3}, {0x2c14,11}, {0xa084,4}, {0x26306,3}, {0x4c97,9}, {0x2974,12}, + {0x1bcf,15}, {0xfc49,5}, {0x4206,3}, {0x5c4c,4}, {0x247e9,8}, {0x1cf89,8}, {0x2a864,5}, {0x232e8,6}, + {0x24549,10}, {0x8470,6}, {0x16e46,9}, {0x13ee2,3}, {0xbc91,8}, {0xf0c8,11}, {0x5b2a,12}, {0x6b20,2}, + {0x1eed3,2}, {0x9c4d,5}, {0x2aa47,4}, {0x27997,6}, {0x27e38,4}, {0x519e,11}, {0x2c8f0,4}, {0xd046,6}, + {0x1a51d,6}, {0x39ce,9}, {0x95c9,5}, {0x9f90,7}, {0xd112,5}, {0x242b1,5}, {0x17c80,9}, {0x1cded,8}, + {0x2a837,5}, {0x20616,4}, {0xa342,12}, {0x1cccd,8}, {0x1aa12,4}, {0x17875,4}, {0x13a5e,10}, {0x2904,8}, + {0x1d155,8}, {0x22f2b,5}, {0xa756,12}, {0x2b86c,4}, {0x1f309,8}, {0x3eba,14}, {0x26edd,4}, {0x27951,4}, + {0x5838,13}, {0x2a9a,8}, {0x5fed,5}, {0x26121,6}, {0xdfd2,8}, {0x14b86,10}, {0x849a,11}, {0xf74,8}, + {0x12aa0,4}, {0x334c,14}, {0x6c97,6}, {0x24a32,2}, {0x25327,8}, {0x233ca,3}, {0x2af21,2}, {0x99ee,12}, + {0x20c4e,7}, {0xc66,3}, {0x2bc1a,4}, {0x2b9f8,4}, {0xb29c,6}, {0x10024,4}, {0x21ba,15}, {0x1cb65,8}, + {0xbec,3}, {0x2747,4}, {0x47de,6}, {0xf6c5,4}, {0x25935,6}, {0x78a1,5}, {0x17088,6}, {0x1a028,5}, + {0x27d3b,4}, {0x20411,5}, {0x278f2,3}, {0x27e2e,4}, {0x22f5,8}, {0x911e,7}, {0x26c4,15}, {0x19789,9}, + {0x16835,3}, {0x1a4e7,6}, {0x2d5dd,3}, {0x15e79,5}, {0xc366,11}, {0x53da,9}, {0xa3ec,10}, {0x6c58,2}, + {0x60a8,13}, {0xea03,6}, {0x10440,9}, {0x98c2,5}, {0xc74,3}, {0xbec2,10}, {0x36a9,7}, {0x1f64,7}, + {0x1068e,10}, {0x10ebe,6}, {0x12fd0,7}, {0x29040,3}, {0x2950e,2}, {0x7b22,11}, {0x70ec,4}, {0x14be0,5}, + {0x1ffc9,4}, {0x73ba,10}, {0xb97,9}, {0x2bad6,4}, {0xb661,6}, {0x2c2c,4}, {0x27b6,2}, {0x1b7b3,8}, + {0xf966,4}, {0xea82,11}, {0x70a8,8}, {0x26513,4}, {0x989e,12}, {0xa7fe,9}, {0x2932,7}, {0x2db4b,2}, + {0x23bd4,7}, {0x2746,4}, {0xccd1,10}, {0x29a61,5}, {0x1ab05,6}, {0x464b,13}, {0x4831,6}, {0x17241,6}, + {0x1f9d9,5}, {0x28e79,3}, {0x299a8,5}, {0x1387,4}, {0x1c83,4}, {0x49b8,7}, {0x2b5de,3}, {0x58f5,3}, + {0x7859,3}, {0x13e1e,6}, {0xd3ce,3}, {0x1b1ff,8}, {0x16478,4}, {0x1d01d,4}, {0x2c146,4}, {0x16b50,5}, + {0xf1f,8}, {0x110c,8}, {0x2646d,4}, {0x225a3,6}, {0xb2f7,5}, {0x17ac,7}, {0x385d,5}, {0x237c8,5}, + {0x112ca,10}, {0xaa0e,12}, {0x23072,7}, {0x2b68e,4}, {0x23924,5}, {0x6c56,4}, {0x28e0e,5}, {0x164bd,9}, + {0x6f4c,4}, {0xd6a8,8}, {0x16f48,4}, {0x4eb9,13}, {0x148b6,7}, {0x2c8de,4}, {0x19cd,4}, {0x11488,4}, + {0x17265,8}, {0xade6,4}, {0x1fb83,6}, {0x6137,13}, {0x379e,14}, {0x229db,6}, {0xac2a,8}, {0x1d40d,8}, + {0x12012,10}, {0x1921,7}, {0x2c22a,4}, {0x43ba,6}, {0x25ddf,4}, {0x208ea,5}, {0x2c136,4}, {0x2160a,3}, + {0xc62,4}, {0x22195,7}, {0xc35b,10}, {0xced9,5}, {0x19d32,5}, {0xc597,11}, {0xd614,5}, {0xa9ae,9}, + {0x641c,13}, {0x23dea,5}, {0x42a2,4}, {0x2a82d,5}, {0xb6c,5}, {0xe53,17}, {0x132c8,10}, {0x63db,12}, + {0x28fce,2}, {0x1974a,5}, {0x8626,12}, {0xae6a,12}, {0x2a855,5}, {0xced9,8}, {0xb2fc,8}, {0x29ec,6}, + {0x373c,14}, {0x1320a,7}, {0x23e97,5}, {0x7c1e,12}, {0x27c61,5}, {0x11590,9}, {0x1d897,6}, {0x1a561,4}, + {0x1edd9,6}, {0x23adf,5}, {0x19702,8}, {0x286e3,8}, {0x224a0,7}, {0x13b26,10}, {0x173e,4}, {0x15dfb,9}, + {0xe699,11}, {0x27319,6}, {0x2eec,14}, {0x10c8,11}, {0x2c602,4}, {0xfcb4,2}, {0xc675,6}, {0x2faa,5}, + {0xd251,9}, {0x7b82,12}, {0x21356,7}, {0xf275,5}, {0x36b0,4}, {0xb24c,8}, {0x7e52,6}, {0x1c29,10}, + {0x26f47,6}, {0x11036,6}, {0x1195,4}, {0x130d4,10}, {0x1f62,14}, {0x2675d,4}, {0xf9e8,11}, {0x4411,2}, + {0x56b2,13}, {0x1a771,7}, {0xc25e,11}, {0x1387e,9}, {0x22bbb,7}, {0x10e92,10}, {0x121b6,10}, {0x30,68}, + {0x2998,5}, {0x1b027,7}, {0xc9c,3}, {0x20c65,5}, {0x2a85f,5}, {0xe4c0,8}, {0x12770,4}, {0x8a6a,6}, + {0xe4f7,11}, {0x1eb1c,5}, {0x6839,12}, {0x1f3ef,2}, {0x13810,10}, {0x10850,6}, {0x1c3e5,8}, {0x1f599,8}, + {0x1f26,14}, {0x2c264,2}, {0xb86,4}, {0x2b5a7,2}, {0x3baa,14}, {0x9a4e,9}, {0xbf5c,10}, {0x4da1,3}, + {0x1f021,7}, {0x2df8,6}, {0x2a83e,3}, {0x27957,4}, {0x2952e,4}, {0x1186a,7}, {0xf509,11}, {0x314c,8}, + {0x5317,7}, {0x63d5,5}, {0x1e4b7,5}, {0x34aa,14}, {0x2aec2,3}, {0x8dca,8}, {0x377e,4}, {0x14c12,9}, + {0x15f63,9}, {0x4d7c,5}, {0x153c4,10}, {0x15c9f,6}, {0x3942,14}, {0x2898a,3}, {0x1b2cd,8}, {0x6b93,5}, + {0x15a82,3}, {0x14c28,3}, {0x37ac,8}, {0x2c57e,4}, {0x1b9df,5}, {0x15428,10}, {0x21918,7}, {0x1daad,8}, + {0x1f921,7}, {0xf697,7}, {0xb144,4}, {0x19c9,6}, {0xac80,2}, {0x2d10e,2}, {0xf535,7}, {0x10616,10}, + {0x224d1,7}, {0x13e8f,4}, {0xf82c,2}, {0x269e9,4}, {0x273a3,6}, {0x121f2,9}, {0xb96e,6}, {0x15adc,3}, + {0xae76,6}, {0x3053,5}, {0x232cc,7}, {0xbef2,6}, {0x2897b,3}, {0x13f2e,3}, {0x276b,4}, {0x2291e,7}, + {0xadf,3}, {0xb640,11}, {0x3d78,12}, {0x18b8,4}, {0x11422,5}, {0x5882,4}, {0x12bc2,5}, {0xde17,10}, + {0x1429e,8}, {0x152a2,5}, {0x8d82,10}, {0x17921,4}, {0xdcbd,4}, {0xb6fb,11}, {0x21d9a,7}, {0x14d16,5}, + {0x5811,13}, {0x11b4e,7}, {0x7ac2,9}, {0x1e03d,8}, {0x19c1d,4}, {0x23f7e,6}, {0x17afb,8}, {0x186b2,9}, + {0x14e7e,6}, {0x170b8,6}, {0xfcc2,5}, {0x2c8c6,4}, {0x18801,5}, {0x3cb9,4}, {0x5539,13}, {0x16ec7,5}, + {0x10866,8}, {0x5bf1,9}, {0x1faf1,5}, {0x12cce,10}, {0x725e,12}, {0x1172a,10}, {0x2bf28,2}, {0xe6a4,11}, + {0x1aaab,8}, {0x10698,7}, {0x532,44}, {0x3ed0,5}, {0x294fc,5}, {0x2375d,4}, {0x25e49,6}, {0xbb5d,8}, + {0xcfde,11}, {0x37ac,9}, {0x18bdd,9}, {0x182a7,9}, {0x2cc26,6}, {0x2986,4}, {0x1f961,4}, {0x13c70,6}, + {0x1b496,5}, {0x17e1e,9}, {0x2a800,5}, {0xf51f,8}, {0x1062f,5}, {0x1045e,10}, {0x12ae,7}, {0x2ba8,2}, + {0x1bc55,8}, {0x30,66}, {0xe35,4}, {0xc8f3,11}, {0x2a857,3}, {0x18b83,9}, {0x10b9,4}, {0xc76,3}, + {0x1f84,3}, {0xf471,4}, {0x253e,7}, {0x2aad3,6}, {0x1d94f,8}, {0x1e237,8}, {0xc2e8,5}, {0x3a48,4}, + {0x22ff6,4}, {0x53e7,4}, {0x22829,5}, {0x15090,6}, {0x18472,9}, {0x16aff,5}, {0x12f1c,7}, {0x1aedc,3}, + {0xe6f1,11}, {0x9d42,12}, {0x29bc4,5}, {0x292a7,4}, {0x4039,4}, {0xa34e,12}, {0x830e,11}, {0x1b2b1,4}, + {0x25307,10}, {0xc6d8,6}, {0x2875d,6}, {0x176cc,6}, {0x284e9,3}, {0xf865,7}, {0x2b315,4}, {0x24e09,6}, + {0x8c0e,12}, {0x7bfa,12}, {0x2bb24,2}, {0x29fbd,5}, {0x2884,3}, {0x1eaef,7}, {0x3290,5}, {0x29d0e,4}, + {0xb855,6}, {0x25117,6}, {0x398a,4}, {0x26b9f,6}, {0x273bd,4}, {0xb2a8,4}, {0x5ccc,13}, {0x2742,5}, + {0x5ddd,9}, {0xa938,9}, {0x4c70,12}, {0x25dc7,6}, {0x13d5,7}, {0x5eba,13}, {0xb7f,4}, {0x20321,8}, + {0xa282,12}, {0xbee3,11}, {0x20b72,3}, {0x1545,6}, {0x20bfa,6}, {0xacc6,10}, {0x17b1f,9}, {0xa9b0,7}, + {0x2bc0a,4}, {0xdd7d,6}, {0x21415,7}, {0x40fa,3}, {0x1d82,8}, {0x12896,10}, {0x18112,9}, {0x1cf1f,7}, + {0x1cdc7,6}, {0x2977,3}, {0x999a,12}, {0x2baac,4}, {0x145c6,5}, {0x19f0f,5}, {0x55ae,8}, {0x2eb8,5}, + {0xef94,11}, {0x5447,3}, {0x2be7a,4}, {0x13b4e,6}, {0xd154,11}, {0x1bbbd,8}, {0x1035a,10}, {0x2642,5}, + {0x290fe,2}, {0x2af0d,4}, {0xd180,11}, {0x15c21,6}, {0x13cde,7}, {0x318c,6}, {0x10f0d,7}, {0x14c62,5}, + {0xca48,11}, {0xcbd4,11}, {0x15be8,8}, {0x1040e,9}, {0x199e4,9}, {0x16c16,9}, {0x1da1d,8}, {0x11f72,10}, + {0x2d80,14}, {0x15504,6}, {0x273c,5}, {0xfcd8,5}, {0x2da8b,2}, {0x28fd,3}, {0x22628,5}, {0xf228,6}, + {0x23717,5}, {0x2150a,7}, {0x11a68,10}, {0x2a861,3}, {0x235ab,7}, {0xd8bd,5}, {0xd267,11}, {0x2bff,7}, + {0x16ea0,9}, {0x28423,2}, {0xa7ac,4}, {0x23cad,5}, {0x73c6,4}, {0x4aa9,10}, {0xd0b1,8}, {0x20e8,6}, + {0x27cca,4}, {0x1e741,5}, {0x315b,7}, {0x25dc3,3}, {0x23df3,3}, {0x1bef5,8}, {0x82ae,7}, {0x2076,5}, + {0x29c37,4}, {0x6450,8}, {0xa35a,12}, {0x1f2c3,6}, {0x2c1e2,4}, {0xb718,4}, {0x13dba,10}, {0xa0ea,7}, + {0x4270,4}, {0x597d,13}, {0x9382,12}, {0x2854a,3}, {0x46bb,5}, {0x49e6,13}, {0x52d8,6}, {0x3a84,14}, + {0x20cea,7}, {0x1dc3d,8}, {0x2962c,2}, {0x2b5ab,3}, {0x16f3,9}, {0xbd6,3}, {0x219ec,7}, {0x7481,5}, + {0x8aa6,11}, {0x18459,5}, {0x13eac,7}, {0x1f8c3,5}, {0x46e0,6}, {0x2337d,3}, {0x25b77,8}, {0x251fb,2}, + {0x19714,9}, {0x235d5,5}, {0x2ba7c,4}, {0x819a,12}, {0x10220,4}, {0x5dba,3}, {0x6cb3,4}, {0x17792,6}, + {0x12f76,10}, {0x2ba74,6}, {0x2795d,4}, {0x136e4,7}, {0x14aa8,7}, {0x12a08,10}, {0x346a,8}, {0x14e56,6}, + {0x146c0,6}, {0x1cc6,2}, {0x17930,5}, {0x1b173,8}, {0x1bf8d,8}, {0x1aaef,3}, {0x3faa,3}, {0x5d77,5}, + {0x1d787,8}, {0x2041d,4}, {0x5ae9,6}, {0x15694,10}, {0x21d07,7}, {0x89da,5}, {0x2380c,7}, {0xaa21,5}, + {0x1772f,9}, {0x1153,4}, {0x7c4,20}, {0x264db,6}, {0xa8a1,5}, {0x2aec6,3}, {0x2a86e,5}, {0x203b9,4}, + {0x6026,7}, {0x863e,4}, {0x13c84,6}, {0x18bc2,9}, {0x108d,3}, {0x2ce37,4}, {0x127d0,4}, {0x5073,12}, + {0x1357c,10}, {0xd82f,5}, {0x106cc,5}, {0x30,82}, {0x28707,4}, {0xea2d,3}, {0x24efb,4}, {0x21ea4,7}, + {0x1b21f,8}, {0xc49,6}, {0x187db,9}, {0xe4db,6}, {0xe4b5,11}, {0xcfd,10}, {0x1adbc,6}, {0x1614,8}, + {0xcc9,4}, {0x2708b,6}, {0x253d7,7}, {0x10436,10}, {0xf752,4}, {0x1b4e3,4}, {0x34a0,6}, {0x30,72}, + {0x22371,5}, {0x6737,3}, {0x197ad,9}, {0x44c5,13}, {0x17765,6}, {0x22806,5}, {0x24cb9,6}, {0x1960f,9}, + {0x26ca7,6}, {0x15572,6}, {0x149d6,10}, {0x19e5,2}, {0x182fb,6}, {0x159f,5}, {0xae1b,7}, {0xadf,5}, + {0x1ea67,6}, {0x30,74}, {0x269ff,6}, {0xf5a5,10}, {0x21bc,9}, {0x14ea8,2}, {0x11c0,4}, {0x1ac13,8}, + {0x11cc,16}, {0xbcf,4}, {0x2a7e,14}, {0x47f8,11}, {0xf99b,7}, {0xe2de,5}, {0x6bd4,9}, {0x2c9da,4}, + {0x208a3,6}, {0x15788,6}, {0x17b79,9}, {0x124fe,8}, {0x34c6,9}, {0x2cd8,14}, {0x1a3b5,6}, {0x2052b,8}, + {0x9c0a,8}, {0x1da7,8}, {0x173bd,8}, {0x2db10,2}, {0x24241,7}, {0x1b58b,4}, {0x453e,9}, {0x2d377,3}, + {0x278ec,3}, {0x29e14,4}, {0x2d125,2}, {0x109e,4}, {0x1623c,8}, {0x1860,9}, {0x4182,4}, {0x5d6d,8}, + {0x29873,2}, {0x23fc4,7}, {0x1ddb5,8}, {0x1796f,7}, {0x1b21,3}, {0x879a,7}, {0x2574,3}, {0xa7f4,5}, + {0x17bc,5}, {0x16948,4}, {0x4300,14}, {0x57dd,13}, {0x185d1,9}, {0xa2ee,12}, {0xd3ce,4}, {0x206ab,4}, + {0xf3b4,11}, {0x1b003,9}, {0x26d2b,5}, {0xaa62,12}, {0x180e0,5}, {0x6e03,5}, {0x704c,6}, {0x20ca,15}, + {0x1a58,7}, {0x8dee,6}, {0x1e62f,8}, {0xeab9,8}, {0x2c46a,4}, {0x2bd92,4}, {0x2e46,3}, {0x214b2,4}, + {0x163b8,9}, {0x2a1c,10}, {0x17ee,5}, {0x243e5,6}, {0x17d07,8}, {0x13d38,10}, {0xaedc,5}, {0x10992,10}, + {0x1b847,6}, {0x239ea,7}, {0x12e4a,9}, {0x1925e,9}, {0x281c3,5}, {0x121b0,4}, {0x1abf8,5}, {0x788e,9}, + {0xd716,11}, {0x97ae,9}, {0x1f8c1,5}, {0x1306c,4}, {0x19279,8}, {0x998e,12}, {0x9db3,6}, {0x22a13,7}, + {0x2d579,2}, {0x1afb2,5}, {0x2a839,3}, {0xb50,8}, {0x2cbc,14}, {0x66cd,9}, {0x5782,12}, {0x3db0,14}, + {0x5018,13}, {0x21cd8,5}, {0x9238,6}, {0x271e,7}, {0x20aa8,2}, {0x1a4ff,3}, {0x20f64,7}, {0x1e185,5}, + {0x102f,11}, {0x55ef,13}, {0x959e,12}, {0x1dcd,15}, {0x461c,4}, {0x173ab,5}, {0x1940e,9}, {0x89da,7}, + {0x2583d,6}, {0x102c,3}, {0x2ae0,14}, {0x1421a,10}, {0xb698,7}, {0xd6f5,11}, {0x433a,6}, {0xa055,5}, + {0xd5c1,11}, {0xd737,9}, {0x2428e,4}, {0x17f01,3}, {0x36da,6}, {0x13eac,4}, {0x286f3,6}, {0x1f979,8}, + {0xf282,3}, {0x623b,12}, {0x1855c,9}, {0xeeb8,8}, {0x6745,5}, {0x10884,6}, {0x417e,8}, {0x17f86,9}, + {0xa590,3}, {0x2be54,2}, {0x2c6ce,4}, {0x3f2c,11}, {0x681f,13}, {0x20b71,4}, {0x2472f,4}, {0x8230,6}, + {0x26813,4}, {0x1bd85,8}, {0x14f5e,3}, {0x44a4,7}, {0x1fa19,8}, {0x2b6a8,3}, {0x284fa,5}, {0x71e6,5}, + {0x2cf45,2}, {0x1e531,5}, {0x145e4,5}, {0x69cc,8}, {0x1878a,9}, {0x1a3e2,9}, {0x27c8b,5}, {0x2192d,7}, + {0xbe1d,8}, {0x1a658,9}, {0xb732,11}, {0x21f8b,6}, {0xc227,7}, {0x22f39,4}, {0x9e9,34}, {0x2133,7}, + {0x10f82,10}, {0x154e6,5}, {0x58ee,5}, {0x25dd9,6}, {0x18b5f,6}, {0x2d961,4}, {0x173ab,9}, {0x27e1,9}, + {0xcbdf,6}, {0x7ef5,5}, {0x70ea,7}, {0x9cb4,9}, {0xa19,18}, {0x1d5d5,8}, {0x146e8,6}, {0x145d0,6}, + {0x666c,6}, {0x12f58,10}, {0x24ee2,3}, {0x2181,2}, {0x1bb65,8}, {0x2b7de,2}, {0x2a8c,9}, {0x17eb2,5}, + {0xfffc,2}, {0xe263,8}, {0xac7e,8}, {0x323a,8}, {0xaf2c,3}, {0x2007b,6}, {0x831a,12}, {0x12792,9}, + {0x13282,7}, {0x3a5a,6}, {0x1c4ed,8}, {0x439a,3}, {0xe91,3}, {0x23735,4}, {0x2160,7}, {0xf1fc,7}, + {0x1735a,6}, {0x5d9c,11}, {0x225c6,7}, {0x1f1e9,8}, {0x21a32,5}, {0x9f2e,12}, {0x2d707,3}, {0x6103,13}, + {0x1e207,8}, {0x76f1,5}, {0x153ce,10}, {0x211c,8}, {0xc51,3}, {0x162ba,5}, {0x18c82,6}, {0x1a0da,6}, + {0x74fe,7}, {0x3ed6,12}, {0x18892,6}, {0x8773,3}, {0x2d9e5,4}, {0x416c,4}, {0x3cc7,5}, {0x2d599,3}, + {0x1baa1,4}, {0x1c0bd,8}, {0x2ea9,5}, {0x2c2ca,4}, {0xb6c0,4}, {0x2c30e,4}, {0x13304,10}, {0x604d,13}, + {0x1e4fb,4}, {0x2bc3e,4}, {0x21f8d,4}, {0xa7d0,2}, {0xad4c,4}, {0x1e0ad,7}, {0x19309,9}, {0x4c3c,13}, + {0xb41a,11}, {0x1e66f,8}, {0x176d5,9}, {0x1299a,6}, {0xa3f6,11}, {0x1784f,9}, {0x80c4,4}, {0x1f679,8}, + {0x6f48,8}, {0x2ba5e,4}, {0xfbb1,3}, {0x19525,9}, {0x24f88,3}, {0x2a80c,3}, {0x3c9d,4}, {0x16f5f,9}, + {0x2e52,5}, {0xffca,7}, {0x1bf9d,8}, {0x1e89f,7}, {0x103be,10}, {0x14eec,9}, {0x28e18,5}, {0x2a843,3}, + {0x18a09,9}, {0x12852,6}, {0x4812,12}, {0xe7e9,5}, {0x2526d,4}, {0x2a816,3}, {0x1396e,9}, {0x3b10,14}, + {0x1244a,10}, {0x2b03,3}, {0x279a9,6}, {0x22964,7}, {0x21a3,4}, {0x18d3c,9}, {0x7c36,12}, {0x108a2,10}, + {0x22f63,5}, {0xd7e,3}, {0x130e8,10}, {0x5875,4}, {0x6b22,5}, {0xca27,11}, {0x26139,6}, {0x275f5,6}, + {0x148dc,10}, {0x25f7b,8}, {0x9502,12}, {0x1cc7,3}, {0xd11,3}, {0x14d2a,10}, {0x1f233,6}, {0x1bb85,8}, + {0x1c92,15}, {0xf8bf,7}, {0x1b030,6}, {0x3250,5}, {0x1393,9}, {0x19219,4}, {0x26e81,5}, {0xc88a,3}, + {0x23bf5,2}, {0x26369,6}, {0x1c6fd,8}, {0x27975,4}, {0xb67c,6}, {0xfdc,4}, {0x1345a,8}, {0x1bc0,13}, + {0x167c,16}, {0x2c212,4}, {0x6f68,12}, {0x6bd6,7}, {0x18bb0,9}, {0x9cee,12}, {0x8aa6,7}, {0x23f2a,5}, + {0x287f5,4}, {0xeac6,4}, {0x18df9,5}, {0x1c6dd,8}, {0x1c2ed,8}, {0x5977,6}, {0x8110,6}, {0xc371,9}, + {0x21585,3}, {0xae60,10}, {0x117fc,10}, {0x4073,4}, {0x44b8,4}, {0x15cae,9}, {0x2742,9}, {0xc92a,11}, + {0x1d88a,5}, {0x1dc55,8}, {0x8362,11}, {0xf98,5}, {0x58d9,8}, {0x9652,11}, {0x1f4f9,7}, {0x1e7d7,8}, + {0x18b3d,7}, {0xe71,3}, {0x12db4,8}, {0x30,78}, {0x21c4a,7}, {0x1384c,10}, {0x1fac9,8}, {0x1692b,9}, + {0x14a1c,6}, {0x2d66,7}, {0x2a7fd,3}, {0x7e6a,12}, {0x2ca16,6}, {0x1d7a1,6}, {0x2c854,4}, {0x10c12,7}, + {0x27e7e,4}, {0x152fc,7}, {0xb7a,4}, {0x1d39d,8}, {0x237e2,7}, {0x17834,9}, {0xd7d4,8}, {0xccdf,8}, + {0x12f3a,10}, {0xc8bc,10}, {0xc696,11}, {0x2c416,4}, {0x182c,16}, {0x152fc,5}, {0x42a0,3}, {0x243f,12}, + {0x25235,6}, {0x251d,3}, {0xb6da,11}, {0x29a43,4}, {0x3e98,6}, {0x10281,6}, {0xfac6,6}, {0x4dd3,2}, + {0x21423,7}, {0x254e1,6}, {0xe401,4}, {0x16838,9}, {0x20069,6}, {0x189c3,6}, {0x31b8,4}, {0x18dc3,9}, + {0x1bd5d,8}, {0x4e1d,11}, {0x2b784,2}, {0xfed0,18}, {0x20f6d,5}, {0x1fcf9,6}, {0xa4d,12}, {0xc064,11}, + {0x29c1e,4}, {0x1a2b7,9}, {0x6573,7}, {0x14c44,6}, {0x1840f,9}, {0x19cab,9}, {0x241fb,7}, {0xb85,3}, + {0xaff6,5}, {0x484c,7}, {0x80f2,12}, {0x18401,5}, {0x3f3d,5}, {0x1f739,5}, {0x12094,10}, {0x9209,5}, + {0x2db28,2}, {0xa9c6,7}, {0xca95,11}, {0x1de05,8}, {0x3854,5}, {0x27963,4}, {0xe3fc,5}, {0xe7e3,10}, + {0x6114,4}, {0x3d5c,14}, {0x1be2d,8}, {0x18cc7,9}, {0x29dfb,5}, {0x4fa3,13}, {0xa9c6,5}, {0x6672,13}, + {0x1fa6e,3}, {0x2711,3}, {0xe0b6,10}, {0x279a3,6}, {0x17a70,4}, {0x50ee,7}, {0x2aeca,3}, {0xf02e,11}, + {0xc6ae,5}, {0x15268,3}, {0x1f743,6}, {0x1617f,8}, {0x18c9a,9}, {0x2bdfa,4}, {0xbb26,11}, {0x2911a,4}, + {0xeb53,11}, {0xca42,6}, {0x804f,7}, {0x14dde,6}, {0x4bcf,5}, {0x2882b,6}, {0x30,80}, {0x574e,11}, + {0x17ad7,6}, {0x101ea,4}, {0xb6cf,5}, {0x24fc3,4}, {0x1038c,10}, {0x18cd,4}, {0x17f98,9}, {0x26fa1,6}, + {0xa60b,4}, {0xf773,5}, {0x14fdc,5}, {0x191e9,9}, {0x21862,7}, {0x1e27f,8}, {0x11bf8,10}, {0x21ef1,6}, + {0x13af,5}, {0x4484,6}, {0x152f2,6}, {0x13322,10}, {0x19003,8}, {0xea4b,6}, {0x13719,4}, {0x377b,4}, + {0x51ee,4}, {0x2ca34,6}, {0x2c764,6}, {0x2ceee,2}, {0x16e07,8}, {0xa71a,12}, {0xaecc,2}, {0x1e13,4}, + {0x18cb,3}, {0x1ada1,7}, {0x27285,3}, {0x2375d,5}, {0x2a7e2,5}, {0x2aac7,4}, {0x5c07,11}, {0xdfc9,6}, + {0x166e2,7}, {0x26a29,6}, {0x29383,5}, {0x598a,6}, {0x260ab,6}, {0x23b48,7}, {0x984a,10}, {0x10abe,10}, + {0xe6e,3}, {0xd9f7,11}, {0x20b4d,4}, {0x1a28e,3}, {0x2d197,3}, {0x13662,10}, {0x127c9,5}, {0x157b8,6}, + {0x3074,14}, {0xadc4,3}, {0x16a54,9}, {0x498e,5}, {0x11536,10}, {0xdd40,5}, {0xecf0,5}, {0x25b01,5}, + {0x14dca,6}, {0x1dbad,8}, {0x4eed,13}, {0xfe9b,11}, {0x1a298,2}, {0x25ab5,6}, {0x12b66,10}, {0xe86,17}, + {0xf5f5,4}, {0x46a6,13}, {0x40f8,14}, {0x1c030,5}, {0xb49e,5}, {0x1706d,9}, {0x2901b,5}, {0x251e6,5}, + {0x1a293,4}, {0xf75d,6}, {0xf2b7,5}, {0xea61,8}, {0x2b7f9,4}, {0x26cdd,6}, {0x21979,3}, {0x164f3,9}, + {0x13937,5}, {0xba13,7}, {0xa22e,12}, {0xf46f,6}, {0x19f75,4}, {0x204f3,8}, {0x10e2a,4}, {0x61ac,5}, + {0x14fd2,8}, {0x135fe,5}, {0x245cd,6}, {0x78cf,4}, {0x12936,7}, {0x14229,4}, {0x15c29,6}, {0x4a8f,11}, + {0x15c1e,8}, {0x266b1,4}, {0x273c9,4}, {0xd083,8}, {0x8a42,4}, {0x8716,6}, {0xfa42,3}, {0x13b82,7}, + {0x229f0,6}, {0x11216,10}, {0x26535,6}, {0x7516,12}, {0xc165,5}, {0x14fc,15}, {0x1e095,8}, {0x1ee3,3}, + {0xaf3,20}, {0xd9e,9}, {0x528f,6}, {0xb6f,3}, {0x2b26,8}, {0x1b82b,6}, {0x2be76,4}, {0x21ffb,7}, + {0x78ad,5}, {0xbc29,5}, {0x10ac8,10}, {0x14d7a,10}, {0x16e73,8}, {0xced6,11}, {0x2a7f1,5}, {0x22259,7}, + {0x1487a,4}, {0x1b6b3,4}, {0x992e,11}, {0x1da8d,7}, {0x2d734,2}, {0x188e0,6}, {0x77c2,9}, {0x8ba2,11}, + {0xf2f9,5}, {0x1a835,5}, {0x1cd65,8}, {0x1a76,6}, {0x8056,11}, {0x11040,10}, {0x171d9,4}, {0x1cead,8}, + {0x1f5f3,6}, {0xd1a1,9}, {0x9112,5}, {0x3a92,13}, {0x26963,5}, {0x4f2e,8}, {0x2602d,6}, {0x2a7e4,3}, + {0x2c932,4}, {0x275f7,4}, {0x183f4,8}, {0xd057,11}, {0x2cbd8,6}, {0x1001f,5}, {0x7666,12}, {0xb9c6,11}, + {0x2cbd2,6}, {0x29430,2}, {0x27232,3}, {0x2139c,7}, {0xa38a,12}, {0x30ba,14}, {0x19bc1,6}, {0x200b,8}, + {0xcfa7,9}, {0xb585,11}, {0xe4aa,11}, {0x1bf07,5}, {0x2c50c,4}, {0x13a86,10}, {0x20985,4}, {0xded,7}, + {0x2133a,7}, {0xa17,6}, {0x13d9c,8}, {0x1f3a9,8}, {0x1bacd,8}, {0x27b4,11}, {0x14d95,3}, {0xe5f4,11}, + {0x1ba78,5}, {0x3d6c,5}, {0xe88,6}, {0x229f7,6}, {0x14bb2,4}, {0xa462,12}, {0x1040,13}, {0x584c,6}, + {0xdf87,6}, {0x84a6,6}, {0x6c2f,10}, {0x17576,9}, {0x1a342,3}, {0x3de8,14}, {0x13c98,8}, {0x3d16,13}, + {0x2428b,3}, {0x2b8c6,4}, {0x1c99d,8}, {0x1be4d,8}, {0x4354,7}, {0x1bcb5,8}, {0x1a09b,6}, {0x198b2,9}, + {0x6506,13}, {0x209c7,2}, {0x2af4,7}, {0x2b9f6,6}, {0x14fca,3}, {0x1ea67,8}, {0x1132e,10}, {0xae9,4}, + {0x5495,3}, {0x2796,13}, {0x1b8a9,10}, {0x1ed53,3}, {0x388c,13}, {0x19a82,4}, {0x1f3f9,8}, {0x1a4a1,3}, + {0x41ee,2}, {0x19e0,6}, {0x21abb,4}, {0x703f,4}, {0x26e83,3}, {0x44fd,7}, {0x18b68,6}, {0xebce,5}, + {0x1c5df,6}, {0xed74,5}, {0x2744e,3}, {0xb900,7}, {0xc4bb,11}, {0x14e24,6}, {0x2bd3a,4}, {0x1dc15,8}, + {0x1b0cd,5}, {0x17549,9}, {0x708e,2}, {0x172bf,8}, {0x275c,3}, {0x28571,2}, {0x443b,2}, {0x14ad2,3}, + {0x25fef,6}, {0x2bf8,7}, {0x279b5,6}, {0x97fc,6}, {0xe2dc,7}, {0x10f4,7}, {0x177c8,7}, {0x3fa8,12}, + {0x1dccf,5}, {0xde90,11}, {0x1b943,6}, {0x2a74e,3}, {0x5c59,5}, {0xcab1,5}, {0x2ae5d,4}, {0x1f289,5}, + {0x2363e,7}, {0xd989,11}, {0x2db14,2}, {0x2847,3}, {0xc8b1,5}, {0x2b189,4}, {0x135fe,10}, {0x20b3,8}, + {0x17184,9}, {0x11f8c,4}, {0x1d73f,8}, {0x38c4,8}, {0x16a5d,8}, {0x19d3b,9}, {0x25a55,6}, {0xeaca,5}, + {0x17a47,9}, {0x30,76}, {0x29bc4,4}, {0x3db5,6}, {0x10210,10}, {0x201a9,8}, {0x68ef,9}, {0x2daa1,2}, + {0x26159,4}, {0x1a7a7,6}, {0x7a92,4}, {0x14ae6,8}, {0x11b7,4}, {0x13b76,6}, {0x5642,7}, {0x13ac2,10}, + {0x296cc,3}, {0x22461,7}, {0x2be4,4}, {0x110ea,10}, {0x1d1b5,5}, {0x1b93,13}, {0x15e9d,7}, {0x27969,4}, + {0x13950,10}, {0x55d7,6}, {0x1bf5d,5}, {0x27f2c,4}, {0x2a7e7,5}, {0xe69,12}, {0x4324,6}, {0x1e121,4}, + {0x1aab6,4}, {0x10cbc,6}, {0x10ea1,5}, {0x1aa9,7}, {0x1805e,6}, {0x19978,9}, {0x172d1,9}, {0x5fcb,12}, + {0x2c1f0,2}, {0x2ac5b,4}, {0x3a41,6}, {0xcd81,6}, {0x1a835,6}, {0x4407,3}, {0x27a63,6}, {0x12f44,10}, + {0x406c,11}, {0x1f5c3,5}, {0x270af,6}, {0x953e,12}, {0x243bd,2}, {0x278f8,3}, {0x127d8,8}, {0x22f61,7}, + {0x6675,4}, {0x2d56,7}, {0x2b5d0,4}, {0x4f8d,3}, {0x18de2,4}, {0x7141,9}, {0x57c7,4}, {0x4287,2}, + {0x2715d,6}, {0x21eab,7}, {0x2c326,4}, {0x2157a,7}, {0xa852,6}, {0x2b77b,3}, {0xec6b,6}, {0x8f0e,12}, + {0x148d2,10}, {0x12486,10}, {0x2948c,5}, {0x13522,10}, {0x18727,9}, {0x30d6,14}, {0x197da,6}, {0x2337b,7}, + {0x1436e,9}, {0x25aef,6}, {0x25f9,6}, {0x4631,13}, {0xf0a0,4}, {0xfae,10}, {0x1fe39,8}, {0x9442,8}, + {0x27f2c,5}, {0x359a,5}, {0x193c6,5}, {0x2aacb,6}, {0x14080,10}, {0x14364,7}, {0xf207,11}, {0x14be2,3}, + {0x16556,9}, {0xe5c8,11}, {0xb4e0,6}, {0x1d7c7,8}, {0x1645f,4}, {0x2cb6c,6}, {0x5dc3,7}, {0x10364,10}, + {0x27d39,4}, {0x211c7,7}, {0x5e5f,13}, {0x3124,4}, {0x8cf6,8}, {0x30ae,6}, {0x3d42,7}, {0x1cc5d,6}, + {0x10e5c,4}, {0x28880,4}, {0x23e0b,7}, {0x251fe,3}, {0x1882c,9}, {0x2e8a,13}, {0x18811,6}, {0x48ae,13}, + {0x23ef2,7}, {0x29556,4}, {0x9b10,6}, {0x2ceff,2}, {0xf374,4}, {0x28c28,4}, {0xc5f,3}, {0xfbfc,5}, + {0x69e6,12}, {0x22cb0,7}, {0x3df6,8}, {0xc479,10}, {0x20dbe,7}, {0x4ee3,9}, {0x143c,16}, {0x2b3f0,2}, + {0xccd1,5}, {0x2a6ef,3}, {0x2465d,6}, {0x5734,12}, {0x15644,5}, {0x224a,6}, {0x5562,8}, {0x2b593,3}, + {0x246ab,6}, {0xf3e2,4}, {0x16137,8}, {0x5aa1,7}, {0xe94e,11}, {0x13098,10}, {0x430,9}, {0x656e,13}, + {0x24a2e,5}, {0x27157,6}, {0x14fbe,5}, {0x1aec8,5}, {0x2a654,3}, {0xf99b,6}, {0x2c1da,4}, {0x1e3d7,8}, + {0x1f66c,5}, {0x5ad4,6}, {0x2a85a,5}, {0x600c,5}, {0x1eae,15}, {0x139f0,9}, {0x1fbe1,5}, {0xacd4,4}, + {0x1ab0e,5}, {0x177fe,6}, {0x1c3cd,8}, {0x717a,12}, {0x2801,4}, {0x4d74,8}, {0x15b4,7}, {0xa336,12}, + {0x1d997,8}, {0x169a9,9}, {0x18fbf,5}, {0x1166c,10}, {0x14b11,5}, {0x11e5a,10}, {0xa526,4}, {0xfcac,5}, + {0xe5e3,4}, {0x1c74,11}, {0xf67c,5}, {0x294d7,2}, {0x1a624,3}, {0x13ff7,4}, {0x2b8ba,4}, {0x1463,9}, + {0x1b251,5}, {0x166d4,4}, {0x1176a,2}, {0x1ab7c,7}, {0xc93c,4}, {0x77c7,3}, {0x273c,15}, {0x12dce,4}, + {0x1dacd,8}, {0x2bcfe,4}, {0x1eeab,4}, {0x21c76,4}, {0x20b67,4}, {0x84d0,4}, {0x1becd,6}, {0x4d67,13}, + {0x884e,12}, {0x1b137,3}, {0x2a946,5}, {0xb057,6}, {0xbc7b,8}, {0x23d42,5}, {0x18b7a,7}, {0x438e,10}, + {0x2571f,6}, {0x14fc8,6}, {0x15a67,5}, {0x10a7a,4}, {0x3427,5}, {0xcf65,5}, {0x1bff7,5}, {0x90da,4}, + {0x259bb,4}, {0x10c30,7}, {0x13f22,9}, {0x23c7,15}, {0x2948c,4}, {0x2b71e,3}, {0x40d0,3}, {0x8de6,3}, + {0xb658,8}, {0x362a,8}, {0x2c350,6}, {0xdab,3}, {0x15630,9}, {0x68a1,13}, {0xdf77,11}, {0x28dcf,3}, + {0x545c,13}, {0x25d9d,6}, {0x2a7ec,5}, {0x1df61,6}, {0xb727,11}, {0x438c,12}, {0x15d59,9}, {0x13e4a,5}, + {0x1302a,10}, {0x8a0a,5}, {0x11cac,6}, {0x405e,14}, {0x12ad6,4}, {0x1951c,9}, {0x222d7,7}, {0x7a1a,12}, + {0x18e14,6}, {0x2c4b8,4}, {0xf258,7}, {0x267d7,4}, {0x1010a,2}, {0x1c595,7}, {0x6c26,5}, {0x2905e,2}, + {0x2980c,5}, {0x1e075,8}, {0x3846,10}, {0xf325,5}, {0x1a0bf,6}, {0x2bc5a,4}, {0x1ece1,8}, {0x8674,4}, + {0x3bd4,14}, {0x17501,9}, {0xad88,10}, {0x4815,3}, {0x2c0ee,4}, {0x130ac,10}, {0x1eac7,7}, {0x3ba5,5}, + {0xff91,4}, {0x51d7,8}, {0x23ec3,5}, {0x12184,10}, {0x9196,11}, {0x29e7f,3}, {0x1346e,7}, {0x1c885,7}, + {0x29937,3}, {0x2d083,3}, {0xf3d5,5}, {0xefcb,11}, {0x11cc0,10}, {0x1ec21,7}, {0x4971,7}, {0x17c26,9}, + {0x31e0,6}, {0x241a7,7}, {0x67f8,12}, {0x1b20b,8}, {0x12076,7}, {0x1c83d,5}, {0x13a90,10}, {0x19879,3}, + {0xd70b,10}, {0x20e99,7}, {0x42ae,4}, {0x22de7,7}, {0x1fbf9,6}, {0x29d65,4}, {0x27547,6}, {0x23518,4}, + {0x15626,10}, {0x10df2,9}, {0x18955,9}, {0x22667,7}, {0xfa14,5}, {0x4f89,12}, {0x16e61,9}, {0x19c5c,2}, + {0x170b5,9}, {0x2c130,2}, {0x15b3f,3}, {0x25a6d,6}, {0x19e91,7}, {0xd046,4}, {0x41b0,10}, {0x88f6,12}, + {0x20c1d,7}, {0x11bb6,2}, {0x24537,6}, {0x1800d,9}, {0x3dbe,13}, {0x1e787,8}, {0xb34,2}, {0x1619a,9}, + {0x2bbf6,4}, {0x2796f,4}, {0x165f3,5}, {0x17954,7}, {0x27895,5}, {0x1cccf,5}, {0x424c,12}, {0x13784,10}, + {0x203c9,8}, {0x16331,9}, {0x1cd05,6}, {0x27891,4}, {0x24436,3}, {0x221b1,7}, {0x532,72}, {0x23f0b,3}, + {0xa23c,6}, {0xf8cb,4}, {0x9b6e,11}, {0x185da,7}, {0x1c0a5,7}, {0xb73d,8}, {0x13a18,9}, {0x2a7bc,3}, + {0x7e9a,12}, {0x5078,8}, {0x13a0e,10}, {0xa02a,8}, {0x2c356,6}, {0xe20,17}, {0xc2e2,11}, {0x2877b,6}, + {0x19042,9}, {0x11e32,7}, {0x1d29d,8}, {0x532,42}, {0x732,5}, {0x224ae,7}, {0x139c,4}, {0x12dfa,9}, + {0x102b0,10}, {0x2d66d,2}, {0x1ffb4,5}, {0xd7fd,11}, {0x16f9e,9}, {0xa7d2,2}, {0xc2b6,10}, {0x2868,8}, + {0x2a6b8,3}, {0xb299,11}, {0xbd68,5}, {0x7906,12}, {0xbcb,4}, {0x1e0c5,5}, {0x2c85a,4}, {0x27343,6}, + {0xbeac,11}, {0x1241,3}, {0x167de,5}, {0x13c04,8}, {0x18e41,9}, {0xcd76,7}, {0xe3a2,10}, {0x25e1f,6}, + {0x24375,7}, {0xc9fd,4}, {0x2ca46,6}, {0x33e6,14}, {0x1fc44,5}, {0x2c124,2}, {0xe59c,11}, {0x23f02,2}, + {0x20fdb,7}, {0xc3c9,10}, {0x8932,12}, {0xcc74,5}, {0x10906,7}, {0x20cf1,7}, {0x3f1c,13}, {0x1d4b5,8}, + {0x5bed,13}, {0x4178,14}, {0x9742,12}, {0x1b3c7,10}, {0x1414d,5}, {0xb2bf,3}, {0x10b7,12}, {0x1e3ef,8}, + {0x1a739,9}, {0xfea6,11}, {0x445a,3}, {0x15054,10}, {0x356e,14}, {0x219c,7}, {0x6b99,4}, {0x13ff4,7}, + {0x279bb,6}, {0x1f2ab,2}, {0x17040,6}, {0x1eef9,8}, {0x616b,13}, {0xf710,6}, {0x1f921,5}, {0x19f57,5}, + {0xc350,11}, {0x2472f,6}, {0x37d6,13}, {0x1bb0d,8}, {0x1f88b,6}, {0x3a3e,13}, {0x2c8c0,4}, {0x22bf,3}, + {0x1e23f,8}, {0x246e7,6}, {0x2a848,3}, {0xcdb,4}, {0x1b5b3,4}, {0x20459,8}, {0xc31,3}, {0x2216b,7}, + {0x29324,4}, {0x75e8,5}, {0x2ae07,6}, {0x8e96,12}, {0xaf42,6}, {0x26477,6}, {0x4220,7}, {0x5d68,13}, + {0x2067c,7}, {0xc6fe,4}, {0x18cd9,9}, {0xc09b,11}, {0x1b37c,2}, {0x14ce,3}, {0x6d81,13}, {0x10d98,10}, + {0x1a8f4,4}, {0x258c,3}, {0x2290,2}, {0x18f22,6}, {0x13e8c,10}, {0x129b8,5}, {0x26511,5}, {0x2a820,3}, + {0x20579,10}, {0x5cd6,2}, {0xe8ca,11}, {0x24391,5}, {0xe6e1,4}, {0xb22b,7}, {0x27717,4}, {0x11e2,4}, + {0x4c26,6}, {0x25207,3}, {0x1010a,3}, {0x7856,5}, {0x1aaee,3}, {0x2cde,7}, {0xc956,4}, {0x22aa1,3}, + {0xc059,10}, {0x70fd,3}, {0x25edf,6}, {0x39a4,14}, {0x2194,4}, {0x16c31,9}, {0x148c,9}, {0x2b47e,3}, + {0x1aa65,7}, {0x2c61a,6}, {0x2c446,4}, {0x5cdb,4}, {0x2a7ee,3}, {0x15de6,3}, {0x57bb,4}, {0x1a862,5}, + {0x9aa2,12}, {0xbc5a,11}, {0x10698,10}, {0x7631,5}, {0x1f621,5}, {0xf5b0,4}, {0x1cd7d,7}, {0x22f45,5}, + {0x17d10,9}, {0x169f1,6}, {0x244a1,4}, {0x22a6e,7}, {0x79d4,6}, {0xe237,11}, {0x1c780,4}, {0x16ae,4}, + {0x56a5,7}, {0x2124,8}, {0x118b0,5}, {0x27ae3,3}, {0x105e4,6}, {0x89f5,4}, {0xd1e9,4}, {0x1054,4}, + {0x1177a,8}, {0x4018,13}, {0x20a77,4}, {0x2b757,3}, {0x2bdbe,4}, {0x165f8,6}, {0x713e,12}, {0xc442,11}, + {0x223ab,7}, {0x8bb3,7}, {0xf7d8,9}, {0x120bc,10}, {0x76fd,5}, {0x181ea,9}, {0x26923,4}, {0x29c9b,5}, + {0x11b52,5}, {0x1eec9,8}, {0x1294a,7}, {0x191cb,3}, {0x114e,4}, {0x12f8a,10}, {0x1ca0d,7}, {0x1771d,9}, + {0x1b6ab,4}, {0x12cc,16}, {0x27d24,9}, {0x160dd,9}, {0x1c7ed,8}, {0x2d985,4}, {0x28a37,4}, {0x2498d,8}, + {0x14d1c,4}, {0x21abb,5}, {0x911e,10}, {0x1d0cd,7}, {0x2678f,4}, {0x215a4,7}, {0x2322b,7}, {0x8ce8,6}, + {0x24d5,15}, {0xf89c,5}, {0x1da0,7}, {0x74fa,3}, {0x17d85,9}, {0xec0,4}, {0xd860,11}, {0x1fb1,6}, + {0x1299c,6}, {0x2b221,4}, {0x2c78,5}, {0xd93c,9}, {0x8579,5}, {0x14106,4}, {0x17714,9}, {0x177e,3}, + {0x35d0,10}, {0xdd51,11}, {0x2aa25,7}, {0x1f5bc,5}, {0x24130,7}, {0x23a3e,7}, {0x1233c,10}, {0x16c8b,8}, + {0x1c325,8}, {0x1fb39,5}, {0x6b38,5}, {0x19738,9}, {0x2b45e,3}, {0x6438,10}, {0x29529,5}, {0x53e0,5}, + {0x5317,6}, {0xd385,11}, {0x1f1a1,8}, {0xe1d4,11}, {0x18268,5}, {0x2cf83,3}, {0x2c5de,4}, {0x216be,5}, + {0x113c4,10}, {0x2b872,4}, {0x2c11c,2}, {0x194bb,4}, {0x18c13,9}, {0x1e80f,8}, {0x5d9c,13}, {0x2e98,14}, + {0x10d52,6}, {0xa6a2,6}, {0x17b4c,6}, {0x15130,6}, {0xfa21,8}, {0x76de,12}, {0x3c52,8}, {0x12373,5}, + {0xec52,4}, {0x1bf1d,8}, {0x15818,2}, {0x24729,6}, {0x16e4,7}, {0x2a7d8,5}, {0x75b2,8}, {0x870a,11}, + {0x190ff,9}, {0xfa4b,8}, {0x68e9,6}, {0xabfa,5}, {0x21e96,7}, {0x2b6f0,2}, {0x1c485,7}, {0x269de,3}, + {0x2da0,10}, {0x2b6a0,3}, {0x2778,15}, {0x4839,13}, {0x26879,4}, {0x13ac,8}, {0x1c5ad,8}, {0x11586,10}, + {0x21c51,7}, {0x23cc,6}, {0x17390,6}, {0x49f9,6}, {0x29165,4}, {0x6efa,9}, {0x17819,6}, {0x273c4,3}, + {0x3242,14}, {0xc654,8}, {0x1f081,8}, {0xd149,6}, {0x239f1,7}, {0x5a69,5}, {0x107c4,9}, {0x3041,2}, + {0x4ba0,10}, {0x21118,7}, {0x29be4,2}, {0x3f62,6}, {0x2aef6,3}, {0xc751,8}, {0x209dd,3}, {0x11c34,6}, + {0x15c0c,5}, {0x2af06,3}, {0xf655,4}, {0x2a7ad,3}, {0x5e86,13}, {0x355d,3}, {0x29974,2}, {0x1f119,8}, + {0x17ce,4}, {0xcb3a,11}, {0x3846,7}, {0x2f5c,14}, {0x24305,6}, {0x21edc,7}, {0x1fb89,8}, {0x16b98,5}, + {0x7702,6}, {0x22f55,5}, {0x24e45,6}, {0x2b8d,3}, {0x16b3e,9}, {0xcf3,2}, {0x2d677,3}, {0x4bb1,5}, + {0xc88,2}, {0x18bbb,6}, {0xea77,11}, {0x25d7f,5}, {0x1da75,8}, {0x6b47,2}, {0xded,8}, {0xe560,5}, + {0x79d2,9}, {0x2aa8b,4}, {0x1dbe,15}, {0x115c,8}, {0x16d53,8}, {0x13e3c,10}, {0x1033c,9}, {0xb44,5}, + {0x15959,2}, {0x21d77,6}, {0x19d7c,3}, {0x2a971,2}, {0x16505,9}, {0x1dbed,8}, {0x251dd,2}, {0x114a0,8}, + {0x1da7,7}, {0x18418,9}, {0x2b666,4}, {0xa1b6,12}, {0x1959a,7}, {0x1c067,4}, {0x8afc,10}, {0x27e74,4}, + {0x216f,15}, {0x29cf7,3}, {0x25687,6}, {0xceac,4}, {0x1da38,5}, {0xa2b2,12}, {0x4266,9}, {0x131b2,4}, + {0x1f009,5}, {0x24dc9,2}, {0x14cc,5}, {0x27981,4}, {0x287bb,7}, {0x25be,7}, {0x4dc8,5}, {0x13f68,10}, + {0x18b5f,9}, {0x797e,12}, {0xaf0,3}, {0xc81d,5}, {0x19dcb,9}, {0x8ed6,5}, {0x1945a,5}, {0x3766,14}, + {0xb850,10}, {0x2992d,2}, {0x7a44,4}, {0x264bd,6}, {0x1eb79,8}, {0xe591,11}, {0x59b1,6}, {0xbb83,4}, + {0x27e5b,4}, {0x24b9,4}, {0x11ba8,5}, {0x2797b,4}, {0x107bc,4}, {0x23ec8,7}, {0x1d82,11}, {0x4288,3}, + {0xa2d6,12}, {0x59d8,13}, {0x50fe,4}, {0xfc98,3}, {0x187a9,5}, {0xd7c0,6}, {0xd8e4,5}, {0x232be,5}, + {0x15324,6}, {0x15dc5,9}, {0x2521a,8}, {0x95e6,12}, {0x26f01,4}, {0x22480,4}, {0x1dd1d,8}, {0xc6c2,11}, + {0x13d10,6}, {0xed6e,6}, {0xffc,10}, {0x11130,10}, {0x7750,6}, {0x3e1a,6}, {0x244d7,4}, {0x24ca7,4}, + {0x9ef2,12}, {0xf63f,9}, {0x18057,4}, {0x648a,7}, {0x12a0,5}, {0x2d341,2}, {0x10d2e,4}, {0x1c475,7}, + {0x2c116,4}, {0x2ae69,4}, {0x4ee0,12}, {0xbbd6,11}, {0x12d6,6}, {0x2bc58,2}, {0x30,84}, {0x3082,13}, + {0x3e82,5}, {0x12706,9}, {0x14dac,8}, {0xddf6,11}, {0x2a4d,7}, {0x19216,9}, {0xbe2c,4}, {0x1a4fc,6}, + {0x1928d,6}, {0x8ef6,10}, {0x2317c,7}, {0x34a2,3}, {0xcc37,11}, {0x13092,6}, {0x277d5,6}, {0xfe59,6}, + {0x5df7,12}, {0x5360,5}, {0x1b7cf,8}, {0x15d3e,9}, {0x2b81c,3}, {0x1d657,7}, {0x28832,7}, {0x2a82f,3}, + {0x2ab6,6}, {0x28ca6,5}, {0xf90f,4}, {0x1a02,4}, {0x2bad4,6}, {0x22e6,15}, {0x118ca,4}, {0x1b59,6}, + {0xc182,11}, {0x11f1,4}, {0x9676,12}, {0xf7aa,11}, {0xe35b,5}, {0x14a46,8}, {0x1a311,9}, {0xf243,6}, + {0x1686e,9}, {0x11628,7}, {0x18898,9}, {0x13644,10}, {0x240c0,7}, {0x1b8e7,8}, {0x460d,3}, {0x89ca,4}, + {0x1f231,8}, {0x1fa51,7}, {0x28c8,4}, {0x3ed0,2}, {0x158ad,4}, {0x2932e,5}, {0x248f1,8}, {0x142bc,3}, + {0x29f15,3}, {0xdc1,4}, {0xc8dd,11}, {0x117c,4}, {0xf676,11}, {0xaadc,3}, {0x25de2,2}, {0x8182,11}, + {0x279cd,6}, {0x25fbf,6}, {0xd7e7,8}, {0x16a15,9}, {0xb12e,4}, {0x17d6a,9}, {0x23b95,6}, {0xf865,11}, + {0x142dc,6}, {0x776e,8}, {0x9b89,7}, {0x7200,3}, {0x29cc,6}, {0x1a526,6}, {0x2bb42,4}, {0x24f89,2}, + {0x1851d,9}, {0x3239,3}, {0x549d,7}, {0x13e6e,10}, {0x23860,7}, {0x1e0f5,7}, {0x16bf,3}, {0x2a8c0,4}, + {0x1551b,3}, {0x217c8,7}, {0x1ba77,6}, {0x12fd0,10}, {0x26f6e,3}, {0x15d98,9}, {0x25449,6}, {0x2a7f3,3}, + {0x28efe,5}, {0x52a4,4}, {0x1fc79,5}, {0x50f5,9}, {0x2d5c3,3}, {0x26e75,4}, {0x1ab6d,4}, {0x1f501,6}, + {0x29084,4}, {0x1bf45,8}, {0x2789,3}, {0x21eb9,7}, {0x430,13}, {0x1f69,3}, {0xa606,9}, {0xccc,3}, + {0x1d72f,8}, {0x141c0,8}, {0x9946,12}, {0x29354,2}, {0x22572,7}, {0x2c1a2,4}, {0x32c2,4}, {0x2165,7}, + {0x2cc38,6}, {0x29d9c,5}, {0xee81,7}, {0x46f4,12}, {0x2086,8}, {0x15f87,9}, {0x19260,4}, {0x22d38,7}, + {0x21395,7}, {0x29104,2}, {0x5a26,5}, {0x1f3fb,2}, {0x26b51,6}, {0x2a7dd,5}, {0x2124c,7}, {0x53cd,7}, + {0x2188e,5}, {0x17779,7}, {0x1fd71,8}, {0x6748,3}, {0x279c7,6}, {0x23d8,4}, {0x24e9,5}, {0x24a57,2}, + {0x2a69f,3}, {0x2b693,4}, {0x1201c,10}, {0x1886b,9}, {0x4927,2}, {0x1a197,6}, {0x189ca,8}, {0xdce3,11}, + {0x2a72b,3}, {0x15d1a,6}, {0x1c47,8}, {0x807f,6}, {0xfc7c,4}, {0x14356,4}, {0xd0f,18}, {0x15612,10}, + {0x1edf9,6}, {0x81f3,6}, {0x2d67d,3}, {0x16520,9}, {0x1a03e,3}, {0x28576,2}, {0x3234,14}, {0x7162,10}, + {0x12a0a,8}, {0x29057,5}, {0x1b92d,8}, {0x12dd2,10}, {0x4a56,5}, {0x2679f,6}, {0xa2e2,6}, {0x259d7,6}, + {0x20faa,5}, {0xaa92,6}, {0x6c8c,4}, {0x2403b,6}, {0xb0e1,4}, {0x17ec,7}, {0xa0d2,12}, {0x7e3a,12}, + {0x1ba05,8}, {0xe9c3,4}, {0x229e9,7}, {0x349c,10}, {0x48ae,12}, {0x19aeb,7}, {0x2bfda,4}, {0x1ae4e,5}, + {0x2798d,4}, {0x158de,4}, {0x6110,8}, {0x969a,8}, {0x1a62b,6}, {0x12ee,10}, {0x5ff2,10}, {0xfee4,12}, + {0x8d2e,8}, {0xeaa5,3}, {0x270df,6}, {0x3654,8}, {0x4db5,11}, {0x1476a,5}, {0xa294,3}, {0x2b798,3}, + {0x25473,6}, {0xfd8a,6}, {0xd041,11}, {0x4dc8,4}, {0xe5b2,11}, {0x19c6c,6}, {0x414e,4}, {0x168fe,9}, + {0x5184,12}, {0x8a76,12}, {0xedcd,3}, {0x16b79,4}, {0x1890,6}, {0x1a271,3}, {0x2295d,7}, {0xea77,7}, + {0x23e74,7}, {0x27475,6}, {0x28f9e,5}, {0x5d2b,4}, {0x15ffc,9}, {0x1870c,9}, {0xaa04,3}, {0x10c0d,5}, + {0x15c05,7}, {0x30,86}, {0x26d1c,2}, {0x59e5,13}, {0xa762,12}, {0x10cb2,9}, {0x85f6,11}, {0x430,50}, + {0x5483,5}, {0x14a26,5}, {0x1b546,5}, {0x25212,4}, {0x215ce,7}, {0x1b7bd,8}, {0x4994,4}, {0x25cdb,6}, + {0x3926,10}, {0xdcac,7}, {0x1c8fd,8}, {0x27451,4}, {0x6296,13}, {0xf36c,4}, {0x295b3,2}, {0x23908,7}, + {0xa26e,4}, {0x2c4be,4}, {0x11fb8,10}, {0x22d48,5}, {0xbefd,7}, {0x3af4,14}, {0x229de,4}, {0xcb03,10}, + {0x278c1,4}, {0x1854a,9}, {0x1dd3d,8}, {0x1080a,10}, {0xf24c,4}, {0x1c13d,8}, {0xa1c7,3}, {0x17037,8}, + {0x279c1,6}, {0x8722,9}, {0x825a,12}, {0x2308e,7}, {0x150c2,10}, {0x1e92f,8}, {0x8b22,8}, {0x21bb0,7}, + {0x146f4,8}, {0x4026,14}, {0x4bee,13}, {0x1ab95,9}, {0x1db3d,7}, {0x8a57,7}, {0x12b8e,10}, {0x830e,12}, + {0x28493,3}, {0xb538,8}, {0xdb0a,11}, {0xfe0c,5}, {0x27883,4}, {0x2933a,2}, {0x2b7f1,3}, {0x3f80,4}, + {0x1fe23,6}, {0x1a73,3}, {0x287c9,7}, {0x1b705,6}, {0x18904,6}, {0x9ba5,5}, {0x23369,4}, {0x170c,7}, + {0xef7e,8}, {0x2140e,7}, {0x14643,5}, {0x1a67,11}, {0x2eb6,7}, {0x1617f,9}, {0x1ce25,8}, {0x17b70,9}, + {0x1f111,8}, {0x3e34,8}, {0x19b8b,9}, {0x27135,4}, {0x1930,4}, {0x219c,11}, {0x29788,5}, {0x445f,4}, + {0x110fe,7}, {0x2c14,6}, {0x18553,9}, {0x165ab,5}, {0x2b545,2}, {0x10f78,6}, {0x1c22d,8}, {0x11914,10}, + {0xc1a,11}, {0x2b65a,4}, {0x1c65,15}, {0x5200,5}, {0x2a8ef,2}, {0x2689f,4}, {0x153f6,10}, {0x23144,7}, + {0xbe82,8}, {0x1aeda,9}, {0xa546,7}, {0xfa1f,10}, {0x20b25,6}, {0x1c5d5,8}, {0x4714,4}, {0xf2ff,5}, + {0xfa21,3}, {0x2700,12}, {0x86da,12}, {0x12db6,6}, {0x1c59d,8}, {0x57e2,8}, {0x3c60,8}, {0x876a,5}, + {0xda65,11}, {0x706a,3}, {0x11144,9}, {0x2c39,5}, {0x10c00,6}, {0xe47e,11}, {0x2a744,3}, {0x104a4,9}, + {0x18aa2,9}, {0x8c40,9}, {0x1c7a5,8}, {0x25084,3}, {0x5a26,8}, {0x36b7,7}, {0x2a78a,3}, {0xc501,3}, + {0x475c,13}, {0x2b9ae,6}, {0x1ab32,8}, {0x108bb,5}, {0x1d93f,8}, {0xaadc,2}, {0x2214,7}, {0x8902,7}, + {0x11be9,5}, {0x12c24,9}, {0x1ca05,8}, {0x1d195,8}, {0xb99,7}, {0x1dd97,6}, {0x1610a,6}, {0x120c6,10}, + {0x7ace,12}, {0x19fe7,9}, {0x2c362,4}, {0x1308e,10}, {0x10eb0,10}, {0x12b19,4}, {0x2a932,4}, {0x1ae1,3}, + {0x737e,9}, {0x13a7c,10}, {0xb421,3}, {0x3706,4}, {0x116a2,6}, {0x5120,4}, {0xa25e,5}, {0x11716,9}, + {0xbc4f,11}, {0x27987,4}, {0x15abb,3}, {0x1222e,9}, {0x1ed89,8}, {0xb292,4}, {0x1523e,6}, {0x252c1,10}, + {0x1e8a7,7}, {0x2ba58,4}, {0x3a92,6}, {0x1b5db,4}, {0x4559,4}, {0x1a778,5}, {0x4b45,13}, {0xfd46,5}, + {0x2788f,6}, {0x13df6,8}, {0xcc2e,4}, {0x26207,6}, {0x17dc,7}, {0x7a26,11}, {0x19204,9}, {0xf6e4,8}, + {0x29179,4}, {0x36a2,14}, {0x4b2b,13}, {0x1cc55,8}, {0x18460,9}, {0x27993,4}, {0x27811,6}, {0x21b35,4}, + {0xa14a,8}, {0x27581,2}, {0x2756e,3}, {0xfdbf,5}, {0x157c4,12}, {0x15af,4}, {0x12fc,15}, {0x115ea,10}, + {0x2931f,4}, {0xa546,11}, {0x2b476,3}, {0xf9f5,6}, {0x2943c,4}, {0x18433,9}, {0x1150e,10}, {0x1ae38,6}, + {0x5220,5}, {0x14b3,5}, {0x11667,5}, {0x51f2,6}, {0x19993,9}, {0xbcc3,4}, {0x16f71,8}, {0xd99f,11}, + {0x2a825,3}, {0x5a50,6}, {0x104c2,10}, {0x1b1eb,12}, {0x2a7d5,3}, {0x258b,4}, {0x1c845,8}, {0x57c3,12}, + {0x530f,4}, {0xb522,11}, {0x216bc,7}, {0xaaf4,2}, {0x11ed2,10}, {0x1ae3d,3}, {0x5b63,8}, {0x5fff,13}, + {0x94a4,5}, {0x2a613,3}, {0x1a9dc,6}, {0x27753,4}, {0xd55,2}, {0x17b5e,9}, {0x3df6,9}, {0x19a7d,9}, + {0x6dc4,2}, {0x1ccbd,8}, {0xf24c,8}, {0x1ecc,14}, {0xdac3,5}, {0x29b88,4}, {0x22c94,7}, {0x27df4,8}, + {0x2cd6a,4}, {0x8e0b,7}, {0x17645,6}, {0x5d36,6}, {0x1040,15}, {0x1f459,5}, {0xb13f,3}, {0x184bd,5}, + {0xab82,5}, {0xa86a,9}, {0x14c76,5}, {0x15222,3}, {0x120d4,3}, {0x7ca8,6}, {0x26e6c,3}, {0x17157,8}, + {0x2937e,4}, {0x3643,9}, {0x2d98d,4}, {0x1a266,5}, {0x25713,6}, {0x1fb09,8}, {0x22275,7}, {0x10b2c,10}, + {0xef68,7}, {0x5d64,4}, {0x22740,7}, {0x2b159,4}, {0xaefa,7}, {0x20ef4,7}, {0x593c,7}, {0x27e6f,4}, + {0xc32,3}, {0x9932,6}, {0x8ec6,8}, {0x188bc,7}, {0x1ca15,8}, {0x1721d,5}, {0x2b1a5,3}, {0x2a60c,5}, + {0xbcf4,11}, {0x12abc,9}, {0x97ea,9}, {0x1ee73,6}, {0x2a7df,3}, {0x22874,6}, {0x1af07,9}, {0x26039,6}, + {0x10596,5}, {0x1cba5,8}, {0xfafd,9}, {0x9cff,4}, {0x14d4a,4}, {0x1e2af,6}, {0x1010,5}, {0x1ea7f,7}, + {0xb96e,7}, {0x7f06,12}, {0x1b885,8}, {0xfbb5,5}, {0xa276,9}, {0x14404,7}, {0x1ed54,5}, {0x21276,6}, + {0x5bf3,5}, {0x58ee,6}, {0x225fa,4}, {0x2ae86,3}, {0x24609,12}, {0x6631,9}, {0xddc,17}, {0xd36f,11}, + {0x2d97d,4}, {0x17c02,9}, {0x816a,12}, {0xa4aa,8}, {0x121c,7}, {0x270b1,2}, {0x22a91,7}, {0x2bf4e,4}, + {0x7c4,64}, {0x144f4,10}, {0x1f01e,3}, {0x13cac,10}, {0x20bb,4}, {0x214a3,4}, {0x106f2,7}, {0x1b0c9,9}, + {0x13d10,5}, {0x3162,7}, {0x858a,10}, {0x1b155,6}, {0x186e,5}, {0x165ef,8}, {0x2a7d0,3}, {0xa7dc,3}, + {0xe615,11}, {0x238ec,7}, {0x6402,13}, {0x2459d,6}, {0x1e9f,11}, {0xf1f1,11}, {0x11cd4,6}, {0x453a,13}, + {0x11211,5}, {0x2f48,6}, {0x1d717,8}, {0x1f393,6}, {0x26447,6}, {0xb8d4,11}, {0x269f6,3}, {0xa57c,4}, + {0xab48,2}, {0xaf62,4}, {0x2abf3,8}, {0x2bec,8}, {0xad86,6}, {0x2846,2}, {0x1672,5}, {0x10596,8}, + {0xc484,11}, {0x1a6f,7}, {0x1acd,3}, {0x1cfb,15}, {0x29597,4}, {0x8e4e,11}, {0x135f4,10}, {0x4d5a,12}, + {0x159cf,7}, {0x1307e,6}, {0x499f,6}, {0x47aa,4}, {0x161e2,9}, {0xff14,12}, {0x2713b,4}, {0xbdeb,5}, + {0x15ba9,9}, {0x18b32,8}, {0x569f,6}, {0x1a634,5}, {0x2ff6,10}, {0xa8d6,12}, {0x2a23,7}, {0x200a1,7}, + {0x1003d,5}, {0x3448,8}, {0x6dc2,5}, {0x224a7,7}, {0xbc44,7}, {0x8517,7}, {0x12bf8,4}, {0x163dc,6}, + {0x5276,3}, {0xb099,4}, {0x17d4f,9}, {0x160ef,6}, {0x27443,2}, {0x2b2df,4}, {0x29cdc,4}, {0x85de,12}, + {0xeb74,10}, {0xbdb1,6}, {0xcd4a,10}, {0x1755b,7}, {0xe36b,6}, {0x20269,5}, {0x18496,9}, {0x1af24,3}, + {0x243bb,4}, {0xacba,7}, {0x164c,9}, {0x14a6c,10}, {0x1f953,4}, {0x20dd,6}, {0x29cbe,5}, {0x8716,8}, + {0x7db8,6}, {0x3291,4}, {0x3255,3}, {0x373c,13}, {0x90a8,6}, {0x1d5c,6}, {0x1ef09,5}, {0x20381,6}, + {0xa9f6,8}, {0x219e5,5}, {0x948,3}, {0x12ecc,10}, {0xb595,6}, {0x20203,6}, {0xf768,4}, {0x244e9,6}, + {0x10c76,7}, {0x430,15}, {0xaa32,8}, {0x29275,4}, {0xad62,8}, {0x18dba,6}, {0x164cf,9}, {0xf3e6,5}, + {0x297e,4}, {0x12472,10}, {0x9dae,12}, {0x11a01,3}, {0x13ba8,6}, {0x5275,6}, {0x23ad8,7}, {0x241d3,5}, + {0x1ce95,8}, {0x2aa02,7}, {0x968e,9}, {0xc85,3}, {0x14f78,5}, {0x1095,6}, {0x145b2,7}, {0x1f9c1,8}, + {0xfa61,6}, {0x360f,3}, {0xdfae,10}, {0xa3ba,6}, {0x176b1,9}, {0xf3eb,9}, {0x15752,18}, {0xde2d,7}, + {0x14bb4,3}, {0x2116c,7}, {0xaa88,9}, {0xce26,11}, {0x150f4,4}, {0x1f8c9,6}, {0x6658,12}, {0x21cac,7}, + {0x9ca8,10}, {0xe302,6}, {0x2a7d3,5}, {0x17a62,8}, {0x1f3b,9}, {0x14fc0,3}, {0xd136,4}, {0x5a0c,13}, + {0x8009,5}, {0x8ba6,7}, {0x1529a,5}, {0x5c64,4}, {0x22dfc,7}, {0x1a919,6}, {0x51d4,4}, {0x2115,15}, + {0x8f4a,10}, {0x14fe,6}, {0x10074,3}, {0x1f5b9,8}, {0x167cc,9}, {0x2a75d,3}, {0x143dc,10}, {0x53da,13}, + {0x132b4,10}, {0x1848d,9}, {0xec08,6}, {0x1a1b2,9}, {0x804e,3}, {0x9911,4}, {0x110c2,5}, {0x18b05,9}, + {0x251d2,7}, {0x152c0,4}, {0x28cc4,5}, {0x220b8,7}, {0x222de,7}, {0x1cb3f,6}, {0x2c902,4}, {0x221d4,7}, + {0x8776,12}, {0x701d,5}, {0x9706,12}, {0x1b97b,7}, {0x7ea6,9}, {0x26b8,2}, {0x20289,8}, {0x3bb8,14}, + {0x43a1,6}, {0x1da05,7}, {0x23247,7}, {0x2743f,4}, {0x17660,8}, {0x1b6c6,2}, {0x268cf,4}, {0x14dca,7}, + {0x10648,6}, {0x10d02,9}, {0xa7ce,12}, {0x13e0c,5}, {0x2a7e9,3}, {0x1bebd,7}, {0x2a7ce,5}, {0x8266,12}, + {0x2cdc4,6}, {0x29724,5}, {0x195ac,8}, {0x9718,6}, {0x22012,4}, {0x8b46,8}, {0x2ce23,4}, {0xb6b9,6}, + {0x33ae,7}, {0x29ce6,5}, {0x1cce5,6}, {0x225d4,7}, {0x4e6e,4}, {0x16149,5}, {0xa59a,12}, {0xd0fc,10}, + {0x1235c,5}, {0x7c4,24}, {0x1ff73,3}, {0x6ac5,4}, {0x1db45,8}, {0x14d02,5}, {0x1c8ed,8}, {0x13c3e,10}, + {0x1372a,10}, {0x2a7da,3}, {0x2fe8,7}, {0x14ffc,5}, {0x2ae65,4}, {0x29d18,5}, {0x193e,4}, {0x5392,7}, + {0xcb92,11}, {0x177b8,6}, {0x12602,10}, {0x10c82,5}, {0x9b22,4}, {0x2992b,4}, {0x14dc2,4}, {0x20912,4}, + {0x1c495,7}, {0x1cfa1,8}, {0xec7,3}, {0x212d8,7}, {0xea09,11}, {0xe99b,7}, {0x532,38}, {0x15c9c,9}, + {0x22e65,4}, {0x680d,5}, {0x26d03,4}, {0x1726e,8}, {0xbae4,11}, {0x1cd30,5}, {0x15464,7}, {0x1ee91,5}, + {0x25153,3}, {0x225f,11}, {0xca7f,11}, {0x244dd,6}, {0x7511,5}, {0x30,88}, {0xf52,6}, {0x17eb7,8}, + {0x1ca1,11}, {0x4411,3}, {0x579c,13}, {0x216d8,7}, {0xfed2,6}, {0xf844,6}, {0xf395,5}, {0x14710,4}, + {0xff6,6}, {0x2425f,5}, {0x139c8,10}, {0x1bba5,8}, {0x1ca55,8}, {0xe0cc,11}, {0xb54e,11}, {0xf6ad,6}, + {0x6bad,6}, {0x3660,10}, {0x240ad,5}, {0x2174a,7}, {0x911e,6}, {0x1f8c1,7}, {0xf23e,11}, {0x26730,3}, + {0x119c,6}, {0x8a16,12}, {0xab6a,7}, {0x2340,8}, {0x24461,2}, {0x21e13,5}, {0x15aee,7}, {0x2a819,5}, + {0x1a3e4,7}, {0x1ae26,5}, {0x2d0fb,2}, {0x93ca,12}, {0xe0f,17}, {0x13a9a,5}, {0x1fce9,8}, {0x15ae2,2}, + {0x2730,4}, {0x11d6a,8}, {0x5943,5}, {0x186bb,9}, {0x24fc6,2}, {0x28de3,3}, {0x8d52,9}, {0x2f6a,6}, + {0x26f1d,6}, {0x801a,10}, {0x779e,12}, {0x4b45,12}, {0x8176,12}, {0x17c2f,5}, {0xf280,5}, {0x2d574,2}, + {0xb60f,5}, {0xc87,3}, {0x1f069,6}, {0x32c4,3}, {0x2187e,7}, {0x15958,4}, {0x90ca,8}, {0x29e69,5}, + {0xaea6,12}, {0x1f6a9,5}, {0xeddc,11}, {0xe46,8}, {0x4f91,3}, {0x432a,14}, {0x1720b,9}, {0x503f,13}, + {0x8028,6}, {0x11027,5}, {0x2a805,5}, {0x1a840,5}, {0x2043,8}, {0x4e51,6}, {0x1adf2,3}, {0x1531a,5}, + {0x19927,9}, {0x13df8,4}, {0xb56b,4}, {0x2505e,3}, {0x2322,15}, {0x279d9,6}, {0x2205,15}, {0xb123,4}, + {0x27999,4}, {0x6f86,12}, {0x142b0,10}, {0x1de7,3}, {0x1b5c3,4}, {0xa3de,11}, {0x2c182,4}, {0xd3dd,11}, + {0x12198,10}, {0xaf50,10}, {0x1a727,5}, {0x1f704,5}, {0x1500e,10}, {0x1465c,6}, {0x2a948,3}, {0x9f0a,9}, + {0x2bdc6,4}, {0x97ea,12}, {0x13c19,4}, {0x23dd3,7}, {0x69f3,12}, {0x1170,3}, {0x12e40,10}, {0x2ab8b,8}, + {0x19ff9,9}, {0x25565,4}, {0x1f5d9,8}, {0x1b61b,4}, {0x700a,12}, {0x2b700,3}, {0x232ce,5}, {0x9586,8}, + {0x154af,2}, {0x1f2c9,5}, {0x9eac,9}, {0x26e85,2}, {0x13cca,5}, {0x1c1c5,8}, {0x2bcc8,2}, {0x83b6,12}, + {0x20b75,7}, {0x134d2,10}, {0x3e2e,6}, {0x2a95c,3}, {0x22ead,5}, {0x12d3f,6}, {0x1abd4,4}, {0xdd40,4}, + {0x6a34,13}, {0x879a,12}, {0x310e,10}, {0x166a6,6}, {0x1e77f,8}, {0x2b8f4,6}, {0x83c9,5}, {0x29944,4}, + {0xf32,4}, {0x4bbe,3}, {0x23fe7,7}, {0xfbf,3}, {0x2d12,7}, {0x8e72,12}, {0x1e90,15}, {0x263d,14}, + {0x16b6b,7}, {0x4150,6}, {0x1d25,3}, {0x273c7,6}, {0x25f1b,6}, {0xd763,11}, {0xaa3e,8}, {0x1a58,5}, + {0x6c7d,8}, {0x1615e,5}, {0x1fa09,6}, {0x1a203,9}, {0xae5,4}, {0x2cfbb,2}, {0x1f949,8}, {0x2c032,4}, + {0xd692,11}, {0x178e,5}, {0xbf67,11}, {0x28e54,5}, {0x9fca,11}, {0x10cca,6}, {0x1b3b0,5}, {0x15ec,16}, + {0x1b183,8}, {0x23a7d,6}, {0x28e8,4}, {0x30c8,4}, {0x2f70,8}, {0x1316f,5}, {0x25189,3}, {0x2739,3}, + {0xbd92,7}, {0x1c5d7,5}, {0xc6d8,10}, {0xacec,2}, {0x152c0,5}, {0xf35c,7}, {0x1801f,9}, {0x20b59,7}, + {0x2aeba,3}, {0x1d817,5}, {0x253e,14}, {0x15504,5}, {0xa7e6,9}, {0x254d,5}, {0x2b747,4}, {0x45da,9}, + {0x1844b,3}, {0x7246,12}, {0x61d9,7}, {0x414e,6}, {0x54fd,4}, {0x28cc6,3}, {0xc940,10}, {0x26bf5,4}, + {0x1dc35,8}, {0x22f86,5}, {0x21da8,7}, {0x257b7,6}, {0x125b7,4}, {0x28ada,4}, {0x279df,6}, {0x41f8,5}, + {0x4a3c,5}, {0xf61e,4}, {0x2cdfa,6}, {0xfb69,9}, {0x2c5ea,4}, {0x42c8,12}, {0xed68,5}, {0x6033,13}, + {0xc824,8}, {0x5949,5}, {0x31ae,4}, {0xacba,6}, {0x20369,8}, {0x7c4,11}, {0x408d,4}, {0x24ce4,5}, + {0x23b90,5}, {0x1c3e,9}, {0x24453,2}, {0x1c8dd,8}, {0x1f44,15}, {0xd95d,11}, {0x2bb1e,4}, {0x2863f,5}, + {0xd57f,7}, {0x89df,4}, {0x1493b,2}, {0x16140,5}, {0x1b811,8}, {0x2a708,3}, {0x27886,3}, {0xcfbd,11}, + {0x291e9,5}, {0x1d235,7}, {0x7462,12}, {0x170e,5}, {0x279d3,6}, {0x20b67,6}, {0x1fc51,8}, {0x4a2e,6}, + {0x1c74d,8}, {0x175e,7}, {0x15090,10}, {0x181a2,6}, {0x10d16,9}, {0x26739,6}, {0x27c94,3}, {0x1ba3d,8}, + {0x2066,4}, {0x13fd2,4}, {0x2d9d1,4}, {0x28fa1,2}, {0x251c5,3}, {0x2232,8}, {0x1cf61,8}, {0xe6aa,5}, + {0x15068,7}, {0x14c03,5}, {0xa344,9}, {0x5dee,4}, {0x14db6,10}, {0x10d7a,6}, {0x191a1,9}, {0x24531,6}, + {0xa792,8}, {0x2722f,4}, {0x2da19,4}, {0x1696,6}, {0x2168b,7}, {0x1a47b,9}, {0x1ba35,6}, {0xa29a,11}, + {0x11b3a,10}, {0x8e42,8}, {0x194d4,4}, {0x2240d,6}, {0x846a,11}, {0x3265,7}, {0x2658b,2}, {0x2cd1,7}, + {0x5671,12}, {0xcb71,11}, {0x6a91,8}, {0x1434,8}, {0x1adba,8}, {0x6c15,7}, {0x18dcc,9}, {0x1a943,9}, + {0x5ac2,13}, {0x2bc8a,4}, {0xcc4d,10}, {0x19c17,4}, {0x1b6d3,3}, {0x2288d,5}, {0x1ca85,8}, {0x132e,4}, + {0x6192,11}, {0x16a27,9}, {0x6262,13}, {0x17091,8}, {0xaa7c,6}, {0xfd95,3}, {0xc3b,3}, {0x4531,9}, + {0x21699,6}, {0x10114,3}, {0x26fcb,4}, {0x20029,8}, {0x237d1,3}, {0xe9e,3}, {0x26f89,5}, {0x8092,11}, + {0x19462,4}, {0xa642,11}, {0x211d5,7}, {0x92d3,3}, {0x2d8a5,4}, {0x24ca1,6}, {0xb3e7,7}, {0x272e3,4}, + {0x5a40,8}, {0x7a8d,5}, {0x6853,7}, {0x15ba3,6}, {0x4cb8,6}, {0x1eaef,8}, {0x1f929,5}, {0x432,20}, + {0x17a59,9}, {0x7475,5}, {0x2a780,3}, {0x1469a,3}, {0x2965c,4}, {0x209d,8}, {0x27a7,5}, {0x6c22,8}, + {0x1ee83,6}, {0xafc6,5}, {0xa732,12}, {0x9166,4}, {0x28e4a,4}, {0xb698,10}, {0x1f0f9,8}, {0x3678,13}, + {0x128fa,10}, {0x750f,3}, {0x196d5,5}, {0x2c806,4}, {0x1f0c3,5}, {0x16a9c,6}, {0x25393,6}, {0x2179e,6}, + {0x20231,8}, {0x4c65,8}, {0xe3ce,10}, {0x2a721,3}, {0xf82e,5}, {0x128e6,7}, {0x10b0e,10}, {0x244fd,4}, + {0x9632,4}, {0x23c91,6}, {0xa7da,4}, {0x1a4f9,9}, {0xd676,4}, {0x111b2,9}, {0x106a2,7}, {0x22a7c,7}, + {0x208e,7}, {0x14490,10}, {0x1d4bd,8}, {0x263a5,6}, {0xfd67,6}, {0xea61,11}, {0x20bfa,7}, {0x71da,12}, + {0x4ff1,13}, {0x17552,9}, {0x1a81d,3}, {0xccc0,6}, {0x1ec3d,4}, {0x2aa01,7}, {0xd784,6}, {0x17588,8}, + {0x245e5,6}, {0x35d6,4}, {0x13f72,10}, {0xf660,10}, {0x2330b,6}, {0x14ffa,7}, {0x5136,13}, {0x2b001,4}, + {0x220db,6}, {0x16733,7}, {0xaa1a,6}, {0x84a6,10}, {0x20419,8}, {0x25b72,5}, {0x10724,10}, {0xb2d0,5}, + {0x567e,12}, {0x23115,5}, {0x2c3fe,4}, {0xacc6,5}, {0x2873b,8}, {0x2c55a,4}, {0xc1a3,11}, {0x18d9,4}, + {0x278b6,3}, {0x1abc4,3}, {0x2c998,6}, {0x14c8a,8}, {0x29510,4}, {0x31e0,14}, {0x13016,10}, {0x14a18,4}, + {0x19fb3,6}, {0x7d92,12}, {0x81be,12}, {0x183c,8}, {0x5cd9,6}, {0xc4d,3}, {0xa6ba,12}, {0x15fa2,7}, + {0x200b,11}, {0x1efb1,8}, {0x33ca,14}, {0x3ad8,14}, {0x11b4,4}, {0x563d,12}, {0x1ab61,6}, {0x1f191,5}, + {0x19cc6,4}, {0x1e677,6}, {0x7186,12}, {0x105d5,5}, {0x2210c,7}, {0xfcc9,4}, {0x1ec79,8}, {0x7762,12}, + {0x1f163,2}, {0x2405e,7}, {0xc27,7}, {0x198a0,9}, {0x2cefe,2}, {0x266fd,6}, {0x3f38,10}, {0x1eea1,8}, + {0x1729b,9}, {0xfcf9,5}, {0xe75,15}, {0x1b88f,8}, {0x2999e,4}, {0x1d0a,12}, {0x1d65f,8}, {0x7756,12}, + {0x14d9c,6}, {0x17cc,5}, {0xec66,11}, {0xe334,11}, {0x160c,16}, {0x76ae,12}, {0xb2c0,5}, {0x1fd41,8}, + {0x10404,5}, {0xf291,5}, {0xe19d,11}, {0x14b4a,7}, {0x1924c,9}, {0x947e,6}, {0x948a,12}, {0x350c,7}, + {0x16284,6}, {0x2c092,4}, {0x243e5,7}, {0x25601,6}, {0x3f70,7}, {0xcf55,5}, {0x563d,9}, {0x75ca,7}, + {0x3343,9}, {0x18f37,4}, {0x4a1e,7}, {0x150fe,5}, {0xa80a,5}, {0x21261,5}, {0x3162,12}, {0x12440,10}, + {0x23400,7}, {0x1e45f,8}, {0x18df0,9}, {0xf38a,4}, {0x168c3,5}, {0x16149,9}, {0x73fa,5}, {0xbfad,3}, + {0xf330,5}, {0x193e1,5}, {0x24d2f,6}, {0x1c78d,5}, {0x27e41,5}, {0x1cbdd,8}, {0x6f4b,2}, {0x192f7,9}, + {0x10c64,4}, {0x167b1,8}, {0x103d2,10}, {0x21a9f,5}, {0x1c6e5,8}, {0x23080,7}, {0x1eea9,6}, {0x9052,7}, + {0x176cc,8}, {0xb6fd,6}, {0x1f6f1,8}, {0x364e,6}, {0xa15c,5}, {0x11ce8,10}, {0x1ebd,10}, {0xab25,9}, + {0x2313,15}, {0x22e3b,5}, {0x73ca,5}, {0x18646,9}, {0x22510,7}, {0x82b0,2}, {0x1cc88,4}, {0x28698,4}, + {0x2801c,5}, {0x430,8}, {0x423e,4}, {0x31e4,4}, {0x125e4,7}, {0x30,90}, {0x17025,8}, {0x29052,5}, + {0x8e8a,12}, {0x13aa8,6}, {0x1aa00,8}, {0xf2f9,11}, {0x16ed6,9}, {0x2686b,6}, {0x5ab5,13}, {0x17a7d,9}, + {0x2982,10}, {0x1916,7}, {0x29bec,5}, {0x17b0d,9}, {0x5d0d,12}, {0x3f7e,12}, {0x1da5d,7}, {0x2418b,7}, + {0xb71,3}, {0x1c135,8}, {0x1f0c1,7}, {0x33fb,7}, {0x1d235,8}, {0x18c88,6}, {0x2daa,6}, {0x6f48,13}, + {0xc14b,11}, {0x10ff0,10}, {0xde5,2}, {0x167a8,9}, {0x17ee4,9}, {0x3de2,6}, {0x7660,5}, {0x173f3,6}, + {0xf42d,5}, {0x17e6f,9}, {0xda91,11}, {0x1582a,4}, {0x2d95d,4}, {0xd6df,10}, {0x92c8,6}, {0x2c662,4}, + {0x7a45,4}, {0x27b5b,3}, {0x1c87,2}, {0xf776,8}, {0x1ab4d,9}, {0x29a34,4}, {0x279b1,4}, {0x1fcfb,4}, + {0x16b8f,7}, {0x1fbb9,6}, {0x1e1ef,8}, {0x1094c,10}, {0x19fb1,8}, {0x24493,4}, {0x19e4e,4}, {0x25066,3}, + {0x1c09d,8}, {0x1cc58,4}, {0x23699,7}, {0xd79,4}, {0x1387,5}, {0x1bc4d,8}, {0x2a7c1,3}, {0x1fe84,4}, + {0x67f8,8}, {0x13b62,10}, {0xc421,11}, {0xf964,11}, {0x1ee21,8}, {0x16d26,9}, {0x23232,7}, {0x28c5c,3}, + {0x2d5d5,3}, {0x16688,9}, {0x2124,15}, {0x287e0,4}, {0x21c89,7}, {0x3322,10}, {0x27d0c,5}, {0x20dda,7}, + {0x1dfdf,8}, {0x29648,5}, {0x24ee3,6}, {0xf49b,9}, {0x1787c,6}, {0x1e4f7,8}, {0x691a,4}, {0xdba4,8}, + {0x2a436,5}, {0x6c63,8}, {0x8d9a,12}, {0x4867,5}, {0x1ae07,4}, {0x284a,5}, {0x52e3,13}, {0x1ce2,4}, + {0x17b67,6}, {0x1477e,9}, {0x3782,4}, {0x1d23,5}, {0x4bad,7}, {0x283ac,3}, {0x4ad3,4}, {0x10f70,8}, + {0x3c59,2}, {0xc720,5}, {0x23152,5}, {0x166c,11}, {0x38e0,11}, {0x26721,4}, {0x2a785,3}, {0x1b6c4,3}, + {0x88ba,12}, {0x3088,8}, {0x18778,9}, {0x1769f,6}, {0x3a14,13}, {0x2ac4b,8}, {0x27cb7,4}, {0x27d1e,6}, + {0x8a92,5}, {0x17dc4,8}, {0x1e5ea,5}, {0x20151,6}, {0xfccf,3}, {0x430,12}, {0x857e,7}, {0x4220,10}, + {0x262d3,6}, {0xf65,5}, {0x9851,5}, {0x22fdf,5}, {0x11d3,9}, {0x279f7,6}, {0x18ab4,9}, {0x7bc0,6}, + {0xcafd,6}, {0xf26a,10}, {0x3004,14}, {0x6c17,5}, {0x232a9,7}, {0x18240,4}, {0x16fc,10}, {0x1af81,4}, + {0xe9a0,6}, {0x2d22,10}, {0x1a3d9,9}, {0x22f37,6}, {0x2aa09,7}, {0x1e827,5}, {0x2817d,5}, {0x11e6e,10}, + {0xa7bc,6}, {0x2f11,5}, {0x2d14,5}, {0x18c40,8}, {0x1fe51,7}, {0x1995f,5}, {0x296e3,5}, {0xea32,3}, + {0xe7c2,11}, {0x16b5b,4}, {0x1abcf,5}, {0xac66,4}, {0x4ba0,13}, {0x14454,10}, {0x17214,9}, {0x22213,7}, + {0x16fef,9}, {0xf6c3,11}, {0x1ec31,8}, {0x2ab1,4}, {0x1600e,8}, {0x2c19e,4}, {0x2db96,2}, {0x21edc,6}, + {0x173a2,9}, {0x24a33,4}, {0x70de,5}, {0x185e3,8}, {0x1c72d,8}, {0x17abc,9}, {0x144fe,9}, {0x2a794,3}, + {0x21583,4}, {0x8ed2,9}, {0x17df1,9}, {0x23cde,6}, {0x239a,9}, {0x1d4d5,8}, {0x12fca,6}, {0x14c01,7}, + {0x194ef,9}, {0x41b2,3}, {0x14870,7}, {0x874e,4}, {0x234e9,5}, {0xc88b,5}, {0x1f719,8}, {0x1b8f1,8}, + {0x25d7f,4}, {0x1863d,9}, {0xbbe1,11}, {0x13c8a,4}, {0x79fd,5}, {0x90fa,12}, {0x8d52,12}, {0x232ab,4}, + {0x2d71f,2}, {0x7a5b,6}, {0x255bf,6}, {0x1a99d,7}, {0x2ec8,4}, {0x14d20,10}, {0x24a2d,4}, {0x1c26d,8}, + {0xb4a9,7}, {0x62bd,13}, {0x2ab8,4}, {0x4665,13}, {0x21222,7}, {0x1f189,8}, {0x532,52}, {0x1da85,8}, + {0x6c22,9}, {0x58f4,5}, {0x1cadf,5}, {0x1a1f1,4}, {0x275a7,4}, {0x99a6,12}, {0x5908,13}, {0x285d7,3}, + {0x276b,6}, {0x1b26c,4}, {0x38c4,13}, {0x1862b,9}, {0x19ffb,6}, {0xea40,6}, {0x22c5c,5}, {0x20d9b,7}, + {0x14c68,4}, {0x11fc,16}, {0xaa40,4}, {0x2c186,4}, {0x25443,6}, {0x6c7d,13}, {0x1c7bd,8}, {0x19ee2,9}, + {0x290f7,5}, {0x143d2,10}, {0x16796,6}, {0x1af00,3}, {0x1cc2d,8}, {0x293bf,5}, {0x431c,14}, {0x14354,6}, + {0x94d2,12}, {0xcaef,9}, {0x17a11,8}, {0x16a5d,9}, {0x1a76,11}, {0x1f749,8}, {0x19e66,2}, {0x2b05d,4}, + {0x2b5ab,2}, {0x200b1,7}, {0x2d16d,3}, {0x86c2,12}, {0x8c02,12}, {0x6eed,4}, {0x1b039,9}, {0x4a5b,8}, + {0x15b99,6}, {0x28c12,5}, {0xec87,11}, {0x26d67,6}, {0x60e1,7}, {0xd947,10}, {0x3a16,4}, {0x14166,6}, + {0x288ac,3}, {0x28e97,2}, {0x1fe8d,4}, {0x1962a,9}, {0x83eb,3}, {0x1434b,5}, {0x5d2b,5}, {0x2a991,4}, + {0x13419,3}, {0x14fb4,7}, {0x880b,7}, {0x239a6,5}, {0x2b4e0,2}, {0xd758,10}, {0x21b94,7}, {0x5102,13}, + {0x101e8,6}, {0x2c90e,4}, {0x84eb,3}, {0xccbb,11}, {0x7bfe,4}, {0x1d1df,6}, {0x2998,6}, {0x21de7,6}, + {0x2829c,3}, {0x41f6,5}, {0x18f46,9}, {0x14e1c,3}, {0x21380,7}, {0x62b0,13}, {0xaca2,7}, {0x1062,4}, + {0x139c,14}, {0x2452b,6}, {0x140da,10}, {0xf1d0,10}, {0x1ae9b,7}, {0x1444,3}, {0x7bf3,4}, {0x88ea,7}, + {0x1abd0,2}, {0x10ac2,3}, {0x16d9b,8}, {0x2ac73,8}, {0x1191,5}, {0x9e9,8}, {0x147c,7}, {0x1540a,5}, + {0x1d787,6}, {0x1eacf,8}, {0x18220,9}, {0x2156c,7}, {0x13d31,6}, {0x133b8,10}, {0x6373,12}, {0x2abcb,8}, + {0x1442c,10}, {0x19741,9}, {0x22a9f,7}, {0xb6f,2}, {0x1ee59,7}, {0x1aff,8}, {0x1501b,3}, {0x1e877,8}, + {0x29560,4}, {0x2da99,2}, {0x10ac3,5}, {0x6146,6}, {0x24543,6}, {0xe83d,5}, {0x253cf,6}, {0x181ab,5}, + {0x1a2b9,7}, {0x8765,5}, {0x294ed,5}, {0x76a8,6}, {0x24de9,5}, {0x2d6b6,3}, {0x2cf40,2}, {0xe313,5}, + {0x2364c,7}, {0x29a2a,4}, {0x9a6a,8}, {0x4e26,4}, {0x245f,7}, {0x1d135,8}, {0x12850,9}, {0x1bbe7,5}, + {0xaf36,5}, {0x126de,10}, {0x1b08,4}, {0x26c83,6}, {0x2799f,4}, {0x81f3,4}, {0x1abce,2}, {0x13d1a,7}, + {0x79e3,7}, {0x224f4,5}, {0xd671,8}, {0x1a687,7}, {0x8a41,5}, {0x1cac2,3}, {0x18163,9}, {0xb2ca,2}, + {0x9df6,12}, {0x13554,10}, {0x1bda,4}, {0xde6f,11}, {0x13a4f,5}, {0x5f70,8}, {0x6eb2,4}, {0x846a,12}, + {0x1b108,9}, {0x18fdf,9}, {0x27db3,4}, {0x3758,14}, {0x5fa9,5}, {0x1215c,9}, {0x28b64,5}, {0x2230f,7}, + {0x690e,8}, {0x2b78f,4}, {0x273e,2}, {0x2570d,6}, {0x1a340,9}, {0x2a823,5}, {0x1abb0,6}, {0xf3e0,5}, + {0x1f701,8}, {0x7456,11}, {0x22621,6}, {0xe90,7}, {0xad0e,9}, {0x11bb6,3}, {0x48e2,12}, {0x11ea0,10}, + {0x3694,7}, {0x113a6,6}, {0x22b03,5}, {0x17a59,8}, {0x1572a,5}, {0x24567,6}, {0x4c97,13}, {0x16269,8}, + {0x7a8b,7}, {0x1ee99,8}, {0x442f,7}, {0x197b6,5}, {0x2e52,14}, {0x10f14,5}, {0x5d34,10}, {0x1d5a5,5}, + {0x28268,5}, {0x14d1b,5}, {0x23ef9,5}, {0x15ad8,4}, {0x128d2,7}, {0x432,256}, {0x595e,3}, {0x296bb,5}, + {0x22b9,10}, {0x123b4,10}, {0x1df87,8}, {0x26969,6}, {0x4881,6}, {0xb80a,4}, {0x1e3b9,5}, {0x263cf,6}, + {0x7c4,3}, {0xa7dd,3}, {0x2992,4}, {0x2d266,3}, {0x1c9b5,8}, {0xf7ec,11}, {0x3d32,7}, {0x27823,6}, + {0x1c365,8}, {0x15bb2,9}, {0x6b6c,9}, {0x96e2,5}, {0x19fb1,9}, {0x2c8a2,4}, {0x2d65f,3}, {0xf42d,8}, + {0x2a438,3}, {0x23981,7}, {0x19ec2,5}, {0x1dee7,7}, {0x17b4c,8}, {0xa65a,5}, {0x1119e,9}, {0x30da,3}, + {0x26a37,4}, {0xac49,5}, {0x13bbc,10}, {0x5411,4}, {0x1bcf1,4}, {0x4a55,6}, {0x85ea,12}, {0x28c78,5}, + {0x19c14,2}, {0x2d1f7,3}, {0xcc73,6}, {0x1bbf5,8}, {0x110b8,7}, {0x216a2,4}, {0x23f77,7}, {0x752e,12}, + {0x7114,6}, {0x1a700,3}, {0xc2a0,8}, {0x17fbc,6}, {0x10cd4,5}, {0x262af,6}, {0x298f7,2}, {0xb4bf,8}, + {0x10454,9}, {0x9832,12}, {0x9813,7}, {0x2a406,3}, {0x72d6,7}, {0xc387,11}, {0x1ff01,8}, {0xad10,7}, + {0xc8c7,9}, {0x1bd2d,8}, {0x2bde4,2}, {0x25223,9}, {0x1e09,15}, {0x1ca8d,5}, {0x1a5b6,9}, {0xe399,5}, + {0x1a5bf,6}, {0x149d8,8}, {0x29a1b,4}, {0x4858,8}, {0x2b698,3}, {0x2d9bd,4}, {0x159f,3}, {0x2a7b2,3}, + {0x1edb,10}, {0x279e5,6}, {0x20cc5,6}, {0x23f54,7}, {0x1213e,7}, {0x175e2,9}, {0x2b363,2}, {0x2710b,4}, + {0x2c236,4}, {0xaa1a,4}, {0x8f86,12}, {0x20161,6}, {0x1ea0f,8}, {0x284c,2}, {0x2a8e5,2}, {0x1450c,6}, + {0x2115e,7}, {0x93e2,7}, {0x12a0,12}, {0xacf1,5}, {0x6e87,8}, {0x4a1a,11}, {0x10a72,6}, {0x27523,6}, + {0x1ba2d,8}, {0x18388,9}, {0xe2fd,11}, {0xb9b4,7}, {0x2924d,4}, {0x9ed3,7}, {0x236c3,5}, {0xf2b7,4}, + {0x1babd,5}, {0xace0,5}, {0x32bb,4}, {0x2d9fd,4}, {0xec2f,11}, {0x13f9a,10}, {0x3234,5}, {0x146c0,10}, + {0x279f1,6}, {0x12ef4,7}, {0x1fd29,8}, {0x12b68,5}, {0x208f7,3}, {0x28b7d,5}, {0x96c1,8}, {0x6637,4}, + {0xf1f,7}, {0xe33f,10}, {0xc2e7,5}, {0x1ca57,6}, {0xafd2,5}, {0x2bb68,2}, {0x132e1,5}, {0x694a,13}, + {0xc8e8,11}, {0x21cb3,7}, {0x227b7,7}, {0xafb0,9}, {0x15c29,4}, {0x3ee4,14}, {0x12e5e,9}, {0x35d7,7}, + {0x3ca6,14}, {0x13390,9}, {0x1aa12,5}, {0x1cf49,8}, {0x1a4d5,6}, {0x2c4dc,6}, {0x1f1d9,5}, {0x19a98,6}, + {0x16c57,7}, {0x9046,12}, {0x1ba9d,8}, {0x217e0,4}, {0x20675,7}, {0x312a,14}, {0x23e19,6}, {0x6ed5,10}, + {0x2422c,7}, {0xe1b3,11}, {0x112ae,7}, {0x14de,7}, {0x1651,4}, {0x287e5,6}, {0x8d0a,12}, {0x12427,4}, + {0xe3ad,8}, {0x1970,3}, {0x15150,7}, {0x276b7,4}, {0x1ffb1,8}, {0x12436,10}, {0xd89,9}, {0x2c196,4}, + {0x14866,8}, {0x15f92,7}, {0x343a,14}, {0xc371,11}, {0x23cd7,7}, {0x102b4,5}, {0x29ba1,5}, {0xc96c,11}, + {0x2e54,3}, {0x3a3a,3}, {0x229d,7}, {0x19ccb,4}, {0x1ece,6}, {0x2a7a3,3}, {0x33f7,4}, {0x1e1e1,5}, + {0x19135,9}, {0x285db,5}, {0x100b3,6}, {0x64d9,6}, {0x2872b,8}, {0xbdaf,11}, {0x1d10,3}, {0x30,94}, + {0x2228a,7}, {0xf9dd,6}, {0x13bb2,10}, {0x28e95,4}, {0x19f18,9}, {0x11252,7}, {0x1c118,4}, {0x9a3a,5}, + {0x1014,4}, {0x18ba7,9}, {0xa65a,7}, {0x1f031,5}, {0x2ca52,6}, {0x1af4a,5}, {0x1b6ab,3}, {0x229b,15}, + {0x9766,10}, {0x1c5dd,8}, {0x24a47,4}, {0xa036,12}, {0x1c8c5,8}, {0xc4cc,4}, {0xf28,4}, {0xcee1,10}, + {0x22d9,4}, {0x2175f,6}, {0x20515,6}, {0x1b132,3}, {0x12d8c,10}, {0x63a7,13}, {0x2d0c5,3}, {0x23dde,3}, + {0x14c8c,8}, {0x3c6e,14}, {0xa6cb,7}, {0x2a703,3}, {0xda7b,11}, {0x1fae9,5}, {0x9c05,5}, {0x2863c,3}, + {0x1ee96,3}, {0x287d0,7}, {0x1b633,8}, {0x20ca9,7}, {0x11cfc,6}, {0x21645,6}, {0x5dc3,11}, {0x1948c,9}, + {0x360f,4}, {0x1042,6}, {0x91ba,11}, {0x24759,8}, {0x1d64f,8}, {0x4672,12}, {0x13b9e,10}, {0x52d6,13}, + {0x112ac,10}, {0x75e5,5}, {0x1ff13,6}, {0x2c464,4}, {0x2da6f,2}, {0x11144,10}, {0x154fa,10}, {0x1db9d,8}, + {0xa7ac,5}, {0x2160,12}, {0x15ba4,5}, {0x1f4a9,8}, {0x6f16,4}, {0x12c6a,6}, {0x709c,8}, {0x2db82,2}, + {0x2c9aa,4}, {0x207b9,5}, {0xd17a,6}, {0xe9b1,10}, {0x277cf,6}, {0x2c82a,4}, {0x7950,5}, {0xa526,6}, + {0x29744,3}, {0x1ad0f,6}, {0x430,11}, {0x20db0,5}, {0x23097,5}, {0x14e8e,4}, {0x13dd0,5}, {0xb30,14}, + {0x74da,4}, {0xbf5c,11}, {0x2c99e,4}, {0x263f3,6}, {0x5bfa,12}, {0x3846,14}, {0xaf38,4}, {0x6c56,5}, + {0x1adb1,9}, {0x2804e,3}, {0x29e05,4}, {0x5ae2,6}, {0x10184,8}, {0x2153,6}, {0x1a17e,7}, {0x2bbaa,4}, + {0x13cb6,10}, {0x14d52,8}, {0x18d21,7}, {0xf839,6}, {0x13fd8,4}, {0x38d2,14}, {0x1c57d,7}, {0x8bf6,7}, + {0xf78e,6}, {0xe36b,11}, {0x1f041,8}, {0xc2a0,6}, {0x2c104,2}, {0x2cce6,6}, {0x16814,8}, {0xf6d5,4}, + {0x16a7a,6}, {0x2c896,4}, {0x1a7dd,4}, {0x25f2,13}, {0xdf1f,11}, {0xc1d,2}, {0x29068,2}, {0x2a23,4}, + {0x599d,3}, {0x2b852,4}, {0x52a8,7}, {0x26fe6,3}, {0x254bb,6}, {0xf3e0,11}, {0x1941a,6}, {0x20161,8}, + {0x1733f,9}, {0x2311a,6}, {0x9f52,11}, {0x21a5c,7}, {0xf56e,5}, {0x1a6a9,9}, {0xa266,4}, {0xc9b9,10}, + {0xabbe,12}, {0x107c8,6}, {0x275ad,6}, {0xd1c2,6}, {0x1bfed,8}, {0x24507,6}, {0x10ffe,3}, {0x18526,9}, + {0xf699,9}, {0x948,32}, {0xa2b6,6}, {0x3c1a,14}, {0x79ca,4}, {0x20efd,5}, {0x2217,4}, {0xb73,3}, + {0x8962,10}, {0xd112,10}, {0xf844,5}, {0x1e13d,8}, {0x35b4,9}, {0x1c9fd,8}, {0x29a2,10}, {0x17159,6}, + {0x2b314,2}, {0x116b2,10}, {0xac5a,7}, {0x2a6ea,3}, {0x4605,5}, {0x1d5b5,8}, {0x4351,3}, {0x2797b,3}, + {0xa4fe,11}, {0x14cd0,6}, {0xa5d6,12}, {0xbc18,11}, {0x27535,6}, {0x17696,9}, {0x152a8,3}, {0x3ed0,6}, + {0x6d4d,8}, {0x430,16}, {0x7522,6}, {0x25f51,5}, {0x203d1,8}, {0x46cd,13}, {0x2a652,5}, {0x20b2e,6}, + {0x170e2,9}, {0x4f62,6}, {0x24398,7}, {0xd881,10}, {0x131d8,7}, {0xf422,5}, {0x7152,3}, {0x23575,5}, + {0x253e,10}, {0xa89c,5}, {0x20b03,7}, {0x481f,13}, {0x23a9,10}, {0x9bce,12}, {0x1d92f,8}, {0x1558b,5}, + {0x3950,14}, {0x2480,3}, {0x87b2,7}, {0xedd1,11}, {0x5324,13}, {0x8ce6,11}, {0xad32,12}, {0x24f8a,3}, + {0x2c0aa,4}, {0x25203,2}, {0xebf,5}, {0x1164e,10}, {0x97e5,5}, {0x16ab7,6}, {0x1928b,8}, {0x2a404,5}, + {0x27a9f,6}, {0xb871,6}, {0x47b3,4}, {0x1ad96,9}, {0x14be2,6}, {0xfdf,4}, {0x837a,11}, {0x1d505,7}, + {0xad10,10}, {0x21ba9,7}, {0x2ba02,6}, {0x621b,6}, {0x1d9e1,8}, {0x213e4,7}, {0x115f4,10}, {0x1a553,5}, + {0x15da1,8}, {0x5f22,12}, {0x14085,5}, {0xcb5,8}, {0xb14f,7}, {0x833a,4}, {0xf27,4}, {0x2954c,4}, + {0x27321,4}, {0xdc2,9}, {0x19aac,6}, {0x20d2e,4}, {0x282b3,5}, {0xb026,4}, {0x14c62,6}, {0x182fa,2}, + {0x54d1,13}, {0x884,32}, {0x251ff,5}, {0x2c192,4}, {0x63db,13}, {0x2a7a8,3}, {0x969,8}, {0xf96,11}, + {0xeb8a,11}, {0x1974d,6}, {0x34b8,14}, {0x1ba25,8}, {0x27e29,4}, {0xb511,6}, {0x2c5c6,4}, {0x21341,7}, + {0x8d3a,12}, {0xa68e,3}, {0x1ea77,8}, {0x29dbf,5}, {0xfa16,3}, {0x10866,6}, {0x5630,13}, {0x18b8c,9}, + {0x1b767,10}, {0x4b7e,8}, {0x58ad,13}, {0xb451,11}, {0xf2c2,11}, {0x2a127,3}, {0x1c758,5}, {0x2a7f8,3}, + {0xc6ee,11}, {0x1381a,10}, {0xaad4,6}, {0xa11a,11}, {0x27591,4}, {0x2caca,6}, {0x25d49,5}, {0x1c795,8}, + {0x7cb3,7}, {0x1ed71,8}, {0x1a281,5}, {0x3591,6}, {0x14932,4}, {0x12cc,13}, {0x969,16}, {0x26dff,4}, + {0x8dbe,11}, {0x4cff,7}, {0x1817b,3}, {0x2c27c,2}, {0xb2db,11}, {0x20912,7}, {0x13282,9}, {0xe10e,10}, + {0x7c66,12}, {0x2089f,10}, {0x2af05,3}, {0x36e8,6}, {0x2b4a7,2}, {0x1c995,8}, {0x1a58,13}, {0x265fe,3}, + {0x2b69c,3}, {0x10da2,6}, {0x111d4,6}, {0x17edb,8}, {0x1092e,7}, {0x12256,10}, {0x19ae0,6}, {0x9fe2,12}, + {0x16ecf,7}, {0x8e12,12}, {0x1085a,6}, {0x161a3,9}, {0x262fd,6}, {0x22ef8,7}, {0x1423,4}, {0xe150,11}, + {0x1a8bc,6}, {0x151f8,5}, {0x245d,9}, {0x30,92}, {0x89b6,12}, {0x5c6f,6}, {0x1aa02,6}, {0x3a5f,3}, + {0x2cb60,6}, {0x7216,7}, {0xb1e6,3}, {0x3678,8}, {0xd79a,11}, {0xa40e,11}, {0x6ed3,12}, {0x27edc,5}, + {0x20e51,7}, {0x21e9d,6}, {0x177e3,9}, {0x19c9,8}, {0x1a2b,12}, {0x1e72,15}, {0x196b1,9}, {0x119d2,10}, + {0x7f96,12}, {0x8718,3}, {0x2d9a9,4}, {0x8c4,22}, {0x2657f,4}, {0x5804,12}, {0xb9c,4}, {0x1c38,15}, + {0x7546,12}, {0x14cc6,6}, {0x27e3d,4}, {0x194f8,5}, {0x1f811,7}, {0x12bc2,4}, {0xc39d,11}, {0x279a5,4}, + {0x22e59,5}, {0x1a6b2,9}, {0x1a308,9}, {0x2a68b,3}, {0x2d60e,3}, {0x28ab1,5}, {0xe8f6,11}, {0x19c51,9}, + {0x147d8,7}, {0x1191e,6}, {0x1e15d,8}, {0x2a81e,5}, {0x27103,6}, {0xd7e7,11}, {0x1da3a,2}, {0x1e9e7,8}, + {0x10910,10}, {0x66ac,6}, {0x1dc65,6}, {0xa252,8}, {0xd6c0,5}, {0x2866a,3}, {0x15588,3}, {0x11838,10}, + {0x2671b,4}, {0x12044,7}, {0x121e0,8}, {0x1f7fe,3}, {0x16652,9}, {0x1e437,8}, {0x1d89f,6}, {0x13bf3,5}, + {0x1f061,8}, {0x27e60,4}, {0x15676,10}, {0x18d45,9}, {0xe9f5,4}, {0x27dc7,6}, {0xb4eb,11}, {0x147f6,7}, + {0x74b1,5}, {0x1a577,4}, {0x2b247,4}, {0x18bd4,9}, {0x233f4,5}, {0x130e,5}, {0x758e,11}, {0x1fadb,2}, + {0x6cbe,8}, {0x1990c,8}, {0xe171,8}, {0x3dcc,5}, {0x1abe6,9}, {0x21f50,3}, {0x2056b,10}, {0x124f6,8}, + {0x11ee6,9}, {0x2a78f,3}, {0x2c0fc,2}, {0xd88c,6}, {0x1b613,3}, {0x14bf4,10}, {0xb986,4}, {0x1803a,9}, + {0x2d70b,2}, {0x2c31e,4}, {0xf157,11}, {0x4349,3}, {0x1cefd,8}, {0x2bf58,2}, {0x2351a,2}, {0xfb8e,6}, + {0x2d074,2}, {0x2264b,6}, {0x116da,10}, {0x1507c,10}, {0x26580,3}, {0x2a7fb,5}, {0x16774,3}, {0x13d4,3}, + {0x2a726,3}, {0x22d8e,5}, {0x24999,8}, {0x112ea,6}, {0xcad1,5}, {0x8c9e,12}, {0x18340,9}, {0x113d8,9}, + {0x13f3,9}, {0xd23b,11}, {0xcc42,11}, {0x1ed39,8}, {0x20acb,7}, {0x1d8bf,8}, {0x1ba18,5}, {0x885a,12}, + {0xc00c,11}, {0x1c31d,7}, {0x21fed,7}, {0x19d95,8}, {0x6c28,4}, {0x12bc,8}, {0x1f561,5}, {0x1323c,10}, + {0x1e085,8}, {0x11b80,10}, {0x2164c,7}, {0x1cb0,11}, {0x2c1b6,4}, {0x1ee5b,5}, {0x1ab3d,7}, {0x15356,9}, + {0x13cd4,7}, {0x49ad,5}, {0x15180,4}, {0x27051,4}, {0x2a776,3}, {0xbc02,11}, {0x1ef0b,3}, {0x2a6e0,3}, + {0xe6ba,11}, {0x1389c,8}, {0x293b5,5}, {0x22c8,15}, {0x1e697,8}, {0x26aa3,4}, {0x22755,6}, {0x14b90,5}, + {0x19f2c,3}, {0x14942,4}, {0x1fe61,8}, {0x1ad9f,6}, {0x121e8,10}, {0x2d9cd,4}, {0x30c8,12}, {0x234b1,4}, + {0x532,80}, {0x1ac2e,9}, {0x22e03,7}, {0x1d741,6}, {0x1f274,5}, {0x1e9ef,8}, {0x15bbb,9}, {0x14e38,5}, + {0x2e7c,7}, {0x1d215,8}, {0x26ca1,5}, {0x19c2d,8}, {0xfd7d,6}, {0x134aa,10}, {0x29b5,5}, {0x2f48,5}, + {0x1152c,7}, {0x15e0d,6}, {0x29567,3}, {0x210c7,4}, {0x4417,5}, {0x20cfc,2}, {0x143aa,6}, {0x16548,5}, + {0x5476,12}, {0x16bfb,9}, {0x2b7ac,3}, {0x22a2f,7}, {0xe3ce,11}, {0x1da2d,8}, {0x17bd8,6}, {0x2a6cc,3}, + {0x2c19a,4}, {0x41be,14}, {0x2859,7}, {0x28713,8}, {0x16355,9}, {0x2777d,4}, {0x2b31d,4}, {0x7e16,7}, + {0x2c322,4}, {0x2b773,4}, {0x1004c,6}, {0x77ea,8}, {0xf278,4}, {0xd107,11}, {0xfd6d,5}, {0x29967,5}, + {0xb803,11}, {0x2c6f8,4}, {0x4573,4}, {0x5ff5,4}, {0x16aff,7}, {0x183c,14}, {0x2a814,5}, {0x28651,3}, + {0x28307,2}, {0x3a22,9}, {0x16188,9}, {0x1006a,6}, {0x1bf75,7}, {0x193b4,7}, {0xbe12,11}, {0x1653b,9}, + {0x22d3a,5}, {0x37d8,3}, {0x27c09,3}, {0x1b803,8}, {0x4088,9}, {0xd6d4,6}, {0x17807,7}, {0xf655,5}, + {0x2afe7,2}, {0x2924d,5}, {0x1f3b1,5}, {0x17dc,5}, {0xe7d2,4}, {0x287fa,6}, {0x1587b,9}, {0xe200,11}, + {0xf63f,5}, {0x24513,4}, {0xf1fc,11}, {0x23550,7}, {0x7bbe,12}, {0x1e477,8}, {0x1e9df,8}, {0xeb5a,4}, + {0x11248,10}, {0xdc07,10}, {0x1a7e4,9}, {0x24db9,6}, {0x3c4a,8}, {0x27,7}, {0x2a950,5}, {0x21720,7}, + {0x3c60,12}, {0x13446,9}, {0x2a56,8}, {0x8b2a,7}, {0x3f9a,14}, {0x20c9b,7}, {0x279fd,6}, {0x234f,12}, + {0x734,64}, {0xaf3,6}, {0x154e6,6}, {0x4ab6,7}, {0x1d0ff,6}, {0x13ba8,10}, {0x112f2,7}, {0x663e,13}, + {0x194df,7}, {0x19afb,6}, {0x111d2,8}, {0xb979,11}, {0x220fe,7}, {0x1c465,8}, {0x23abc,6}, {0x901b,7}, + {0x14bfe,10}, {0x1f031,8}, {0x737e,12}, {0xad32,5}, {0x2a7c6,3}, {0x5ca5,8}, {0x254d6,5}, {0x1a266,9}, + {0x57f7,13}, {0x15648,3}, {0x290fc,4}, {0x10644,4}, {0x1ab68,9}, {0x25f27,6}, {0x5aa8,5}, {0x10288,10}, + {0x6074,8}, {0x181d8,9}, {0x2b81c,4}, {0x192c5,5}, {0x1c1bd,8}, {0x17159,4}, {0x1df0f,8}, {0xc5ea,5}, + {0xae4,5}, {0x6443,13}, {0x1d847,8}, {0x1109a,10}, {0x6de9,13}, {0xa8fc,4}, {0x1ea9f,8}, {0x2a6f4,3}, + {0x15d1a,9}, {0x24f9d,6}, {0x4a2d,2}, {0xa083,6}, {0xcef7,11}, {0x853c,6}, {0xf945,3}, {0x268cd,6}, + {0xf85,5}, {0xe53,16}, {0x1c0cd,8}, {0x6e51,6}, {0xe20b,10}, {0xe499,6}, {0x5574,6}, {0x167c8,4}, + {0x204d7,4}, {0x25eaf,5}, {0x19f4e,9}, {0x11450,10}, {0xed37,11}, {0x22f45,7}, {0x133a4,10}, {0x4cb1,13}, + {0xeeaf,4}, {0x21c74,7}, {0x22b6e,5}, {0x1fc41,8}, {0x9fb2,9}, {0x1ebc1,6}, {0x1a8d7,5}, {0x28f96,3}, + {0xb854,2}, {0x9b65,5}, {0x1db85,8}, {0xab22,12}, {0x2f54,8}, {0x7822,12}, {0x743e,12}, {0x8e3b,7}, + {0xc61d,11}, {0x119c,8}, {0x28826,5}, {0x133c2,10}, {0x150a4,5}, {0x27adb,6}, {0x20fa3,7}, {0x12d0,9}, + {0x18933,6}, {0x1572c,8}, {0x264c,15}, {0x2829d,2}, {0x29941,2}, {0x1dbb2,3}, {0x22fd1,5}, {0x19fa,3}, + {0x1144,2}, {0x5be0,8}, {0x2bf36,4}, {0x2611b,6}, {0x45fd,7}, {0x1495e,10}, {0x142ec,10}, {0x25da5,3}, + {0x113a8,4}, {0x1774,3}, {0x19147,9}, {0xac7e,4}, {0x3492,5}, {0x12a3d,7}, {0x372e,8}, {0x189dc,6}, + {0x299fd,4}, {0x5410,5}, {0x28559,5}, {0x24344,6}, {0xf8de,7}, {0x1a11d,5}, {0x13fd9,5}, {0x2d060,3}, + {0x2a799,3}, {0x1a15d,4}, {0x2c974,4}, {0x24c73,2}, {0x21a74,6}, {0x1e07f,6}, {0x1e46f,7}, {0x12c44,8}, + {0xbad0,5}, {0x79c6,8}, {0x532,46}, {0x287fc,4}, {0xb5fe,11}, {0xbcff,11}, {0x20379,6}, {0x1e91f,6}, + {0x19606,5}, {0x25bf7,6}, {0x278b5,3}, {0xfaf2,4}, {0x2ca10,6}, {0x96be,11}, {0x10f0c,8}, {0x83df,5}, + {0x2b0a4,3}, {0x55c8,13}, {0x166a3,8}, {0x2add7,5}, {0x2202c,7}, {0xf5b0,11}, {0x1cbdd,6}, {0x16e73,9}, + {0xa996,12}, {0xa592,7}, {0xac46,4}, {0x188fb,7}, {0x17f1a,9}, {0x29a98,5}, {0x7636,9}, {0xa150,6}, + {0x14224,9}, {0x19054,9}, {0xd8ce,8}, {0x1974a,9}, {0xc139,6}, {0xb30,5}, {0x5fd8,12}, {0x22c16,7}, + {0x2c004,2}, {0x163f7,6}, {0x1401c,10}, {0x8448,7}, {0xa01e,12}, {0x7b3e,3}, {0x26811,6}, {0x965e,12}, + {0x1b0e4,9}, {0x102e2,10}, {0x6c90,7}, {0x2cb8a,6}, {0x1cd75,7}, {0x4fa8,4}, {0x266ff,4}, {0xfa09,8}, + {0x907b,4}, {0x2a6a4,3}, {0x23cb4,7}, {0x1a781,5}, {0x2da9d,2}, {0x12148,10}, {0x19471,5}, {0x181bd,9}, + {0x1b83f,8}, {0x4258,7}, {0x17c53,9}, {0xaab8,9}, {0x2b349,4}, {0x2921b,5}, {0x508d,7}, {0x1e120,3}, + {0x1e18d,8}, {0x2b6cb,4}, {0x1b59,4}, {0x2b34e,2}, {0x19e2,4}, {0xf6fc,3}, {0x2a607,5}, {0x2c4ca,4}, + {0x27847,6}, {0xf12b,10}, {0x1e48f,8}, {0xfe8a,4}, {0x22948,6}, {0xdb57,11}, {0xcf0d,11}, {0x27cfd,3}, + {0xb3f9,11}, {0x2a686,3}, {0x26801,4}, {0x1c685,8}, {0x1ae0b,9}, {0x6d5a,5}, {0x2a80a,5}, {0x20cc5,7}, + {0x2c94a,6}, {0x28fd,7}, {0x29935,5}, {0x2bb6e,4}, {0x15c81,9}, {0x18dde,9}, {0x155dc,4}, {0x2da0d,4}, + {0x1bf18,5}, {0x2d62c,3}, {0xf49d,5}, {0x25a25,6}, {0xf93a,9}, {0x2757a,3}, {0x25ae9,6}, {0x8f96,3}, + {0x58ee,11}, {0x4430,6}, {0x296ca,4}, {0x275a,5}, {0x2176d,7}, {0x4701,13}, {0x2c680,4}, {0x27bd3,3}, + {0x20351,6}, {0x2a760,5}, {0x113e2,10}, {0x11af4,9}, {0x449e,13}, {0x28637,3}, {0x2c30,10}, {0x271ff,6}, + {0x22304,4}, {0x108fc,10}, {0xb278,11}, {0xdf77,10}, {0x8e42,12}, {0xa908,4}, {0x2c84,6}, {0x2a52d,3}, + {0xf362,2}, {0xb35f,11}, {0xb354,11}, {0x2133,13}, {0x5623,13}, {0xa56a,12}, {0x45e9,3}, {0x740e,9}, + {0x19e93,5}, {0xe410,6}, {0x1a874,5}, {0x5741,11}, {0x128be,6}, {0x8878,6}, {0x22f5,6}, {0x104ea,10}, + {0x1c0b,14}, {0x1ee39,8}, {0xbd41,11}, {0x270b1,4}, {0x29e7a,3}, {0x2d63b,3}, {0x259ec,3}, {0x13b08,7}, + {0x2d5e8,2}, {0x2c0ca,4}, {0x1a00d,4}, {0x24299,3}, {0xaba6,5}, {0x263e7,6}, {0x1d4f5,8}, {0x78ee,12}, + {0x10196,8}, {0x1e3bf,8}, {0x1ee19,8}, {0x16b98,8}, {0x224ca,7}, {0x258fd,5}, {0xf1db,6}, {0x51f2,4}, + {0x72f2,8}, {0x127b0,9}, {0x1efe1,8}, {0x15a8a,2}, {0x6207,13}, {0x1eff9,8}, {0x21dc0,4}, {0x1759a,9}, + {0x1fc4b,6}, {0x2cdb2,6}, {0xf8c8,7}, {0x23fdb,5}, {0x15cc,16}, {0x28b50,5}, {0x170f,2}, {0x9cb2,12}, + {0x1a472,6}, {0x2af0a,3}, {0xc01b,6}, {0x2745d,6}, {0xcd3,3}, {0x30,96}, {0x17025,9}, {0xee55,11}, + {0x4088,14}, {0xd808,10}, {0x6894,13}, {0x68d5,13}, {0x1adde,7}, {0x17b85,5}, {0x1b88d,10}, {0xf710,7}, + {0x13b98,6}, {0x4ea6,6}, {0x13070,10}, {0xc534,11}, {0x12fbc,10}, {0x33dd,9}, {0x2cad0,6}, {0x594f,7}, + {0x1f201,8}, {0x64b8,13}, {0x26619,6}, {0x28e09,5}, {0x1a4f,9}, {0x73de,7}, {0x4290,5}, {0xa2f0,4}, + {0x619f,8}, {0xe3ad,11}, {0x29cc3,5}, {0x235a0,4}, {0xdf50,6}, {0x1a14f,9}, {0x2511,14}, {0xd81e,11}, + {0x6cf2,8}, {0x5eba,4}, {0x220b1,7}, {0x9bce,9}, {0x20d63,6}, {0x963a,7}, {0x1866a,9}, {0x2d9d5,4}, + {0xaf4e,12}, {0xa7e6,4}, {0xf6bd,6}, {0x9e9,12}, {0xf6d9,10}, {0x697e,8}, {0x27a2f,3}, {0x1baad,8}, + {0x1e0f5,8}, {0x23f8c,7}, {0x16d92,9}, {0x5e7c,5}, {0x2ba80,6}, {0x28f00,3}, {0x17aaa,9}, {0x1d59d,8}, + {0x14e3a,7}, {0x2bb0c,4}, {0x24a3a,5}, {0x1e7df,8}, {0xaaee,4}, {0x73a2,8}, {0x69d4,5}, {0x15f89,7}, + {0x1cb3d,8}, {0x1adf2,4}, {0x149fe,10}, {0x9f9a,11}, {0xfa40,5}, {0x12fb2,10}, {0x2903e,5}, {0x1c9a5,8}, + {0x1198f,5}, {0xf705,11}, {0x1de2d,8}, {0xec5b,11}, {0xf2da,9}, {0x2ad23,8}, {0x2b694,3}, {0x13b2,10}, + {0x1ec11,8}, {0xf48d,3}, {0xfdd5,11}, {0x23557,5}, {0xcfd9,5}, {0x2d5f9,3}, {0x1f5f9,8}, {0x1cb05,7}, + {0x2d18f,2}, {0x3bfe,14}, {0x21f92,7}, {0x14cda,8}, {0xc02d,11}, {0x5494,5}, {0x95b6,12}, {0x1a3eb,9}, + {0x122c,15}, {0x1faf,11}, {0x2d58a,2}, {0x2d36e,3}, {0xf922,7}, {0xf827,4}, {0x198c8,3}, {0x2c3e6,4}, + {0x20183,4}, {0x1fc11,8}, {0x27c4b,3}, {0x1d2dd,8}, {0x2b18d,2}, {0x7a56,11}, {0x26bfc,3}, {0x47b7,13}, + {0x1a406,8}, {0x17e30,7}, {0xfe0c,8}, {0x1647e,9}, {0x2c18e,4}, {0x84d6,7}, {0x1ef19,5}, {0x13339,7}, + {0x1e32f,8}, {0x7e5e,12}, {0x1ed91,8}, {0xa7d,24}, {0x16ec,7}, {0x6520,10}, {0x14b24,8}, {0x4c7d,9}, + {0x11db0,10}, {0x2a749,3}, {0x38a0,8}, {0x1ee71,8}, {0x1409e,10}, {0xb354,10}, {0x15162,10}, {0x7804,6}, + {0x13ffe,10}, {0xff8e,6}, {0x122b0,9}, {0x22510,6}, {0x2a3bb,3}, {0x1a567,7}, {0x5076,4}, {0xce7e,11}, + {0x10ec4,9}, {0x144b8,10}, {0x270d9,6}, {0x73d8,6}, {0x1232a,8}, {0x1456c,10}, {0x17bc3,8}, {0x1f7c3,5}, + {0x1df97,7}, {0x1f06b,4}, {0x181cf,8}, {0x23d65,5}, {0x15e67,8}, {0x30f2,14}, {0x29e73,4}, {0x1967b,9}, + {0x2aece,3}, {0x4f0e,4}, {0x1aefe,9}, {0x17a35,9}, {0x21103,7}, {0x16e7c,5}, {0xb4a9,5}, {0xd4b9,11}, + {0x13a0e,7}, {0x28992,7}, {0x5af9,4}, {0x2d64a,3}, {0xa738,6}, {0xae78,4}, {0x7792,12}, {0x23167,6}, + {0x59be,11}, {0x1d7b7,4}, {0x46c0,13}, {0x19d8,8}, {0x10dca,10}, {0x1439b,5}, {0x269e7,4}, {0x7c4,22}, + {0x2a717,3}, {0x6faa,4}, {0x2bc9,4}, {0x5fd2,6}, {0x2669d,6}, {0x417d,3}, {0x1b12c,6}, {0xa7b6,5}, + {0x16922,9}, {0xba62,9}, {0x219d7,7}, {0xc109,11}, {0x16ec4,8}, {0x18d0f,7}, {0xfb1c,7}, {0x29c14,5}, + {0x1742c,3}, {0x3100,7}, {0x2c276,4}, {0x872e,12}, {0x2b664,3}, {0x1ab05,9}, {0x1295e,10}, {0x12ce2,10}, + {0x1ef2,7}, {0x1e287,8}, {0x1b3d,4}, {0x10fe6,10}, {0x1795d,9}, {0x6b22,9}, {0x4fce,4}, {0xf49d,3}, + {0x2b21d,4}, {0x1aab4,9}, {0x1bbb5,7}, {0x1dac5,8}, {0x3774,5}, {0x1c5a7,5}, {0x1377a,10}, {0x770e,12}, + {0x62e4,13}, {0xe1df,11}, {0x2d0fb,3}, {0xfd88,11}, {0x8b66,4}, {0x406c,14}, {0xc0d2,8}, {0x2ff8,6}, + {0x3be2,14}, {0xf789,11}, {0x10ece,6}, {0x8ae6,2}, {0x19444,7}, {0x26dbb,4}, {0xacf6,5}, {0xf22e,5}, + {0x8c15,5}, {0x17a2e,7}, {0x19b62,2}, {0x1190a,10}, {0x426e,6}, {0x207e3,5}, {0x27a0f,6}, {0x1cabd,8}, + {0x4b93,8}, {0x3624,14}, {0x8f62,12}, {0x2b732,3}, {0xd11,9}, {0x29c55,4}, {0x1047c,10}, {0x255cb,6}, + {0xf688,3}, {0x12d0c,4}, {0x61c6,13}, {0x29c0f,4}, {0x1dd2d,8}, {0x1c5e5,7}, {0x16c70,8}, {0x1b4e,4}, + {0x17169,9}, {0x1aaf,2}, {0x2acdb,8}, {0x5b85,13}, {0xd15f,11}, {0x2ba32,6}, {0x16934,9}, {0x244b9,6}, + {0x2b56,6}, {0x1fc29,8}, {0x2578d,6}, {0x2d88d,4}, {0x1fa61,5}, {0x5879,9}, {0xef89,11}, {0x1f021,8}, + {0x148c8,10}, {0x150e2,3}, {0x2a758,3}, {0x138ec,10}, {0x269a1,4}, {0xa55e,12}, {0x1ee01,8}, {0xf3a0,5}, + {0x2d647,3}, {0x237c,15}, {0xdfda,11}, {0x4ee0,13}, {0x21949,7}, {0x5184,13}, {0x1ddbd,8}, {0x1f009,8}, + {0x219c6,3}, {0x2da43,2}, {0x25311,6}, {0x266f7,6}, {0x24f0d,6}, {0x2b787,4}, {0x20579,6}, {0xaa9a,4}, + {0x2a5e1,3}, {0x951a,5}, {0xaa88,10}, {0x2c122,4}, {0x7eb8,6}, {0x1a8c,8}, {0x2d632,3}, {0x21c6d,6}, + {0x23b1,7}, {0x319c,4}, {0x13df6,5}, {0x18c7,4}, {0xb94d,7}, {0x6361,5}, {0xe830,11}, {0x10cb2,10}, + {0x135a4,10}, {0x117a2,10}, {0x2b219,4}, {0x5adc,9}, {0x26e7e,3}, {0xed21,11}, {0x1d2f5,6}, {0x2b914,4}, + {0x95d3,7}, {0x238ad,4}, {0x18efe,9}, {0x65fd,6}, {0x1740e,9}, {0x4446,5}, {0xc3c9,11}, {0xfe8a,6}, + {0x1bf0d,7}, {0xb1ff,11}, {0x56a5,9}, {0x19564,9}, {0x29478,4}, {0xb26d,6}, {0x24f98,5}, {0x8dca,12}, + {0x16760,9}, {0x29a7f,5}, {0x25f0b,4}, {0x2851,8}, {0x12922,10}, {0x12166,10}, {0x1fe63,6}, {0x2b5b7,4}, + {0xb3b7,6}, {0x1a161,7}, {0x3d37,7}, {0x1dead,8}, {0x25069,3}, {0x460d,4}, {0x2c7c,2}, {0xa80a,4}, + {0x2a6fe,3}, {0x1a56a,3}, {0x68e2,13}, {0x1d6b1,4}, {0x122dc,6}, {0x6a5b,13}, {0xa7a3,5}, {0xc5ce,9}, + {0xd46c,11}, {0x1492,3}, {0x48b1,3}, {0x7ea6,12}, {0x4a00,13}, {0x2ed0,14}, {0x368e,6}, {0x222c9,7}, + {0x1490e,6}, {0x21d2a,7}, {0x1d3e,8}, {0x19a8f,4}, {0x11a04,6}, {0xd76,17}, {0xc9b9,11}, {0x14eb0,5}, + {0x14766,4}, {0xe92d,11}, {0xd947,6}, {0x21d69,6}, {0xde3,2}, {0xd968,11}, {0x194d4,9}, {0x2745f,4}, + {0x262f7,5}, {0x2bb4e,4}, {0x19e8a,3}, {0x3f8c,14}, {0x4e2a,8}, {0x14e24,5}, {0x2ceeb,2}, {0xa612,6}, + {0x106de,10}, {0x2d89d,4}, {0xb99a,11}, {0x1b4e4,2}, {0x23f7e,5}, {0x22d1e,4}, {0xf46,3}, {0x687a,13}, + {0x22e42,7}, {0x1b027,9}, {0xe8eb,11}, {0x1b10a,7}, {0x2b680,3}, {0xb3ac,5}, {0xaa99,2}, {0x2d12b,2}, + {0x6c15,5}, {0x11266,8}, {0x1dc0d,8}, {0x2023b,6}, {0x2842,3}, {0x18f1f,3}, {0x4222,4}, {0x2b7a3,3}, + {0x27b92,3}, {0x5a5c,3}, {0x20cb7,7}, {0x1da15,8}, {0x579e,9}, {0x110a4,10}, {0xd2a9,10}, {0x25c5,8}, + {0x1c56,12}, {0x12b91,4}, {0x684b,7}, {0x99e7,7}, {0x2c266,4}, {0x261cb,6}, {0x532,50}, {0x28c6e,5}, + {0xea1f,11}, {0x2a767,3}, {0x138ec,9}, {0x86ce,12}, {0x887e,9}, {0x1044a,10}, {0x3df9,6}, {0x280a8,7}, + {0x152d1,2}, {0x2b455,4}, {0x22ed7,5}, {0x18a75,6}, {0x5779,9}, {0x138f6,10}, {0x124ea,10}, {0xc4f,6}, + {0x53fb,4}, {0x1b12e,3}, {0x13d6a,6}, {0x4292,5}, {0x2c33e,6}, {0x1ef04,5}, {0x242b3,3}, {0x2672d,6}, + {0x1a76,15}, {0x162b6,4}, {0x2a753,3}, {0x27505,6}, {0x244f5,6}, {0x936a,12}, {0x26e27,6}, {0x47b2,5}, + {0x2b89a,6}, {0x1173e,10}, {0x1e0dd,6}, {0x78a6,5}, {0x2bf16,4}, {0x29a81,3}, {0xf115,11}, {0x1eac7,8}, + {0x6c2f,12}, {0x278bb,3}, {0x11568,10}, {0xd7d3,9}, {0xbf9e,11}, {0x203c1,8}, {0x3476,10}, {0xe2f5,8}, + {0x5684,6}, {0x2964f,3}, {0x431e,6}, {0x5b5e,13}, {0x8e4e,12}, {0x20c39,7}, {0x250ca,3}, {0x1a781,9}, + {0x1cff9,6}, {0x1605f,7}, {0x1da0,15}, {0x23f79,5}, {0x16c5e,9}, {0xdf4,5}, {0x11a5e,8}, {0x11928,7}, + {0x249d5,8}, {0x7126,12}, {0x9148,6}, {0x129aa,4}, {0x2c18a,4}, {0x23fd2,7}, {0xf3bf,11}, {0xfad1,3}, + {0x20b4b,7}, {0x1aba7,9}, {0x1f3a1,5}, {0x16056,9}, {0xab8e,12}, {0x5342,5}, {0x2bbae,4}, {0x1f681,8}, + {0x1645a,9}, {0x15cbb,5}, {0x2a6f9,3}, {0xe54f,11}, {0x1a0c1,4}, {0x89e6,5}, {0x10f7,2}, {0x1df17,8}, + {0x227f6,7}, {0x21d62,6}, {0x1e74f,8}, {0x177e8,4}, {0xa6ae,12}, {0x1d5cd,8}, {0x2bd7e,4}, {0x18d4e,7}, + {0xda44,11}, {0x16eb2,9}, {0x430,6}, {0x1debd,9}, {0x145c8,3}, {0x2ba82,4}, {0xec71,11}, {0x238d7,4}, + {0xde9b,11}, {0x9929,5}, {0x10ea,5}, {0xc6f,5}, {0x26d2b,6}, {0x1b68b,8}, {0x64f9,12}, {0xedcb,6}, + {0x14e6a,6}, {0xc65,3}, {0x9106,5}, {0xc038,11}, {0x4f21,13}, {0x23bd6,4}, {0x4f84,5}, {0x27cd0,9}, + {0x2165a,7}, {0x5ef4,3}, {0x1186a,9}, {0x269e3,2}, {0x2d1ac,3}, {0x2c686,4}, {0x25057,6}, {0x26eab,6}, + {0x1d38d,8}, {0x4c2f,8}, {0x14a12,6}, {0x249e1,8}, {0x1b0c0,8}, {0x163af,5}, {0x1d7ef,8}, {0x28dd4,3}, + {0x359a,3}, {0x28631,4}, {0x15fcf,8}, {0x11e5,4}, {0x1a40,9}, {0xa5e2,12}, {0x12fee,10}, {0x279ab,4}, + {0x1b2a5,8}, {0x176bc,4}, {0xb53d,6}, {0x1afe8,9}, {0x14940,4}, {0x29086,2}, {0x10eec,10}, {0x1a0ec,6}, + {0x2d0c2,3}, {0x15ff3,9}, {0x1d525,8}, {0x19387,9}, {0x1b66,13}, {0x82ae,11}, {0x29e26,2}, {0x1058,3}, + {0x11b6,6}, {0x1f1cb,5}, {0x1eb69,5}, {0xddd5,6}, {0x2bd40,2}, {0x1bb95,5}, {0xa4a3,7}, {0x103b4,5}, + {0x41ef,7}, {0x812e,12}, {0x11b4e,9}, {0x28ece,3}, {0x26e2,15}, {0x490e,8}, {0x8ffe,12}, {0x2d58d,3}, + {0x26da3,6}, {0x2daba,2}, {0xd860,8}, {0xad0e,12}, {0x6b2b,13}, {0x1d2ed,8}, {0x7b8e,11}, {0x5804,13}, + {0xd98,17}, {0xbeae,9}, {0xd3c7,11}, {0x966a,12}, {0x236d1,7}, {0x6f62,12}, {0x10150,3}, {0x45fd,6}, + {0x233f2,7}, {0x2737,5}, {0x3a30,7}, {0x286eb,8}, {0x2c86,5}, {0x1483,9}, {0x2684f,4}, {0xd2b4,11}, + {0x10af,8}, {0x1931d,4}, {0x14dac,9}, {0x1e8cf,8}, {0x14a3a,10}, {0xc998,11}, {0xc2a0,11}, {0x11b6c,10}, + {0x1b0d2,9}, {0x13496,10}, {0x25271,10}, {0x2b7af,4}, {0x11a86,10}, {0x2a95c,2}, {0xae9,10}, {0x5f63,8}, + {0x1fff3,5}, {0x1850b,6}, {0x1b9e5,8}, {0x2a8c9,4}, {0x2d362,2}, {0x2b950,4}, {0x240dc,7}, {0x20da9,7}, + {0x7dfe,11}, {0x1c375,7}, {0x2d672,2}, {0x8cde,5}, {0x2b690,3}, {0x9466,12}, {0x2db3e,2}, {0x27247,6}, + {0xfcb1,2}, {0x1316a,10}, {0x1b05d,7}, {0x28f69,2}, {0xb96,2}, {0x1e5a3,4}, {0x29db,5}, {0x27b97,3}, + {0xa606,11}, {0xb8c9,11}, {0x61e2,7}, {0x1ffa9,5}, {0x74fe,8}, {0x28733,8}, {0x5594,13}, {0x2bcdc,2}, + {0x1a916,9}, {0xcb87,9}, {0x14e7e,10}, {0x1a107,6}, {0x135e,4}, {0x1d55,5}, {0x1488c,6}, {0x4923,8}, + {0x474f,8}, {0x25701,6}, {0x1f8db,3}, {0x51b8,12}, {0x4805,13}, {0x2b009,4}, {0x2b5e,6}, {0x15b48,10}, + {0x15d2c,9}, {0x1a1f1,5}, {0x1bb50,5}, {0x37e4,11}, {0x25f6f,6}, {0x11a4a,10}, {0x2a681,3}, {0x2471d,6}, + {0x2a631,3}, {0x18c9,3}, {0xb63,9}, {0x827e,12}, {0xeec,10}, {0x352f,7}, {0x13b1,3}, {0x13d62,5}, + {0x1e85f,5}, {0xa9a4,10}, {0x297ee,5}, {0x2958,14}, {0x84a6,12}, {0x92c4,4}, {0x65f0,13}, {0x293ec,5}, + {0x82f2,4}, {0xd8b8,11}, {0x14dfc,5}, {0x30,98}, {0xa7c4,3}, {0x2d13d,3}, {0x1386a,10}, {0x23e9b,3}, + {0x19c6c,9}, {0x27a09,6}, {0xdac8,11}, {0x21b2,4}, {0xc8d2,11}, {0x227b9,4}, {0x26b2d,6}, {0x10f37,5}, + {0x2ae8e,3}, {0x103aa,9}, {0x2be66,4}, {0x31ad,5}, {0x8688,7}, {0x214ee,5}, {0x10396,10}, {0x19ec9,7}, + {0x13a2,3}, {0x1ce0d,8}, {0x2c83c,6}, {0x19d83,9}, {0x25fe3,6}, {0x71ec,4}, {0x10ad8,4}, {0x60c2,11}, + {0x1d2cd,8}, {0x28f8c,3}, {0x30d9,3}, {0x1f2b1,5}, {0xf76b,4}, {0x225bf,7}, {0x299a5,2}, {0x40c0,6}, + {0x2399f,5}, {0xf5f6,3}, {0x29f13,5}, {0x1ffe9,8}, {0x2b185,4}, {0x27dfd,5}, {0xc8f3,4}, {0x2d9f9,4}, + {0x27751,6}, {0xac42,9}, {0x2abb,8}, {0x2db50,2}, {0x2be7e,4}, {0x31ee,14}, {0x5d8f,13}, {0x2ce6e,5}, + {0x8ea2,12}, {0x25e3d,6}, {0x1514e,9}, {0x2a762,3}, {0x4fa3,12}, {0x15b41,2}, {0x229cd,6}, {0x27b17,6}, + {0x3558,4}, {0x7c77,7}, {0x2b7b0,3}, {0xfbb2,8}, {0x1363a,10}, {0x1fbc4,5}, {0x6b99,7}, {0x21c82,6}, + {0x1f91,11}, {0x2882d,5}, {0x14e06,6}, {0x100a6,10}, {0x1c495,8}, {0x2991c,5}, {0x2a4ec,3}, {0x18b0a,4}, + {0x220e9,7}, {0x23712,5}, {0xc0c7,8}, {0x7bb2,12}, {0x3720,14}, {0x279b7,3}, {0x1d225,8}, {0x1c6ad,8}, + {0x1af46,9}, {0xfc82,4}, {0x2436,9}, {0x18b29,9}, {0x221db,7}, {0x7a56,10}, {0x20776,5}, {0x109a,4}, + {0x2bbce,4}, {0x1dd15,8}, {0x23f11,4}, {0x1f7db,6}, {0xc2bc,5}, {0x198c4,9}, {0x2aff1,4}, {0x9f22,12}, + {0x930a,5}, {0x253d9,4}, {0x246f9,12}, {0xfe2,4}, {0x702d,2}, {0x15144,10}, {0xba37,8}, {0x21c90,7}, + {0xbda4,10}, {0x1f6e9,7}, {0x1a85,7}, {0x73c6,9}, {0x1f68,4}, {0x5ec7,11}, {0x29be2,4}, {0xf5de,3}, + {0x48e2,13}, {0x27112,3}, {0x14930,6}, {0x6c8a,13}, {0x13090,8}, {0x73a2,12}, {0x1e4f9,5}, {0x2356,4}, + {0x1426a,8}, {0x2d8c1,4}, {0x2ceaa,5}, {0x69b2,8}, {0x2328,3}, {0x14f60,4}, {0x21815,7}, {0x671b,13}, + {0x1ac25,5}, {0x9a2a,12}, {0x3eca,4}, {0x1eb41,4}, {0x19d85,7}, {0xc65,4}, {0x2a13b,3}, {0x4364,4}, + {0xafd4,4}, {0x1d6af,8}, {0xf424,4}, {0x2918d,5}, {0x258fd,6}, {0x20bc2,7}, {0x2bbca,4}, {0x1fa09,5}, + {0x221a3,7}, {0x25849,5}, {0x1fb8b,6}, {0x17499,5}, {0xefaa,11}, {0xff20,8}, {0x1e107,4}, {0x24336,6}, + {0xfff,6}, {0x17f3a,2}, {0x69e8,6}, {0x1412a,10}, {0x11022,7}, {0x22c18,5}, {0x2d5a2,3}, {0x686d,7}, + {0x2be00,2}, {0x168b6,9}, {0xe4aa,10}, {0x12175,5}, {0x22ad2,7}, {0x26965,3}, {0x27213,2}, {0x2a8cb,3}, + {0xfef8,12}, {0x1d3bf,4}, {0x2a9be,5}, {0x15b45,3}, {0x10300,6}, {0xfa1f,5}, {0x1fc63,6}, {0x23f0c,2}, + {0x430,17}, {0x14c94,5}, {0x252d7,8}, {0xc33a,11}, {0x6cc0,3}, {0x16fc2,9}, {0xf943,11}, {0x7ef4,6}, + {0x3a14,8}, {0x2be14,2}, {0x9028,5}, {0x1fec1,8}, {0x1127a,7}, {0x1f229,8}, {0x780a,12}, {0xd25c,8}, + {0x6e53,4}, {0x1c170,3}, {0xfbcc,4}, {0x7cc6,12}, {0x222ec,7}, {0x7c4,21}, {0x6f36,5}, {0x1d8a1,4}, + {0x21d23,7}, {0x2d87d,4}, {0xf6fa,8}, {0x2b7d6,2}, {0x82b7,3}, {0x1e427,8}, {0x2a38,9}, {0x1ae6e,6}, + {0x202b9,5}, {0xbd5d,5}, {0x2cc32,6}, {0x11ad6,10}, {0x127d3,5}, {0x13bf8,10}, {0x1b04b,8}, {0xcccd,4}, + {0x3384,9}, {0x10fb,11}, {0x4d9b,13}, {0x1a945,4}, {0x2b329,3}, {0x2894,14}, {0x131f6,7}, {0xcbc3,6}, + {0x2894,3}, {0xc305,9}, {0x3300,3}, {0x23cfd,4}, {0x298d6,5}, {0xb335,8}, {0x67b0,7}, {0x279b7,4}, + {0x1dd35,8}, {0x1e277,8}, {0x18b7,2}, {0x252f3,10}, {0xdccd,11}, {0x115e0,10}, {0x26495,6}, {0x68ae,13}, + {0x706a,2}, {0x191d,11}, {0x19f8f,6}, {0x254db,6}, {0x1e0ad,8}, {0x22a3d,7}, {0xc68b,7}, {0x2a77b,3}, + {0x2abb3,8}, {0x29b51,5}, {0x1af61,6}, {0x112c,8}, {0x26c4d,4}, {0x7c4,13}, {0xd5cc,11}, {0x1a469,8}, + {0x2a742,5}, {0x2410d,7}, {0x3a92,14}, {0xade8,2}, {0x19456,9}, {0x15985,2}, {0x2c854,6}, {0x289ae,7}, + {0x5476,13}, {0x6b61,3}, {0x14e60,10}, {0x8904,3}, {0x136da,6}, {0xe483,6}, {0x14f7a,4}, {0x22564,7}, + {0x1f95e,3}, {0x13b2,4}, {0x2b45d,4}, {0x1e035,6}, {0xa557,7}, {0x184e7,9}, {0x236ae,5}, {0x174cb,5}, + {0x3c82,4}, {0xfbfe,3}, {0x24b53,2}, {0x7b46,11}, {0x19ff9,8}, {0xc211,11}, {0x11720,10}, {0x237c1,4}, + {0x1c725,8}, {0x1c29,15}, {0x70ba,12}, {0x2725f,6}, {0x1a64f,9}, {0x1df6,3}, {0x10af5,5}, {0x600e,6}, + {0xadd0,10}, {0x25216,4}, {0x2151,13}, {0x1a1d6,6}, {0x1b713,14}, {0x2bf90,2}, {0x14896,9}, {0x52f0,10}, + {0x1264c,5}, {0x3df9,5}, {0x260eb,5}, {0x9a36,12}, {0x19e64,6}, {0x10526,7}, {0x1ec61,8}, {0x166d9,9}, + {0x2cf86,3}, {0x10e38,5}, {0x26691,6}, {0x1f289,8}, {0x20149,8}, {0x1a8c5,8}, {0x1bf05,5}, {0x22080,7}, + {0x2d61d,3}, {0x16e7c,6}, {0xf1af,11}, {0x28e13,5}, {0x1e9f7,8}, {0x149ae,10}, {0x1523e,9}, {0x12410,7}, + {0x1a3d2,7}, {0x55a1,13}, {0x1f2b9,8}, {0x2bcde,4}, {0x12c38,10}, {0x24279,7}, {0x16f7a,7}, {0x2d845,4}, + {0x13192,10}, {0x118a6,6}, {0xd6d,3}, {0x7e76,12}, {0xab52,7}, {0x246b1,12}, {0x712f,3}, {0x14c58,5}, + {0x1adc5,4}, {0x9e9,22}, {0xd156,4}, {0x22ffb,5}, {0x244b3,6}, {0x19cec,6}, {0x8ed2,12}, {0x1bc2d,7}, + {0x37c8,8}, {0x269ea,2}, {0x26d55,6}, {0x14e1a,5}, {0x2daa9,2}, {0x19a86,5}, {0x532,60}, {0x2b890,4}, + {0x9796,9}, {0x13aa4,10}, {0x2484d,8}, {0x19186,6}, {0x6fc2,12}, {0x2521a,9}, {0xbc6a,4}, {0x226fa,6}, + {0x1be55,8}, {0x29066,5}, {0x6ebb,10}, {0x2beb0,2}, {0x141a4,5}, {0x72f1,3}, {0x3a37,3}, {0x21d00,6}, + {0x18c76,9}, {0x297df,5}, {0x17bb1,9}, {0x2a79e,3}, {0x15f63,7}, {0x1f531,5}, {0x494a,6}, {0x12e76,6}, + {0x1abcd,3}, {0xc5ad,11}, {0x5f15,13}, {0x18e14,9}, {0x2a730,3}, {0x1f759,8}, {0x1b90b,14}, {0x3a3a,4}, + {0x1f983,4}, {0xa9ba,11}, {0x2814b,5}, {0x25fdd,6}, {0x14d68,3}, {0x2dc6,7}, {0x12a30,5}, {0x1bb98,5}, + {0x1fb39,8}, {0x4124,11}, {0x5442,13}, {0x1c35d,8}, {0x68e2,12}, {0x19e1e,4}, {0x2a87d,5}, {0x14ec4,6}, + {0x27a81,6}, {0x39c0,13}, {0x2282e,7}, {0x1a607,6}, {0x23f09,5}, {0x218b6,7}, {0x19978,8}, {0x99ee,9}, + {0x2b668,3}, {0x27ebe,5}, {0xc2d9,9}, {0x2805d,2}, {0x2a7ba,5}, {0x1f1a3,6}, {0x21e7,11}, {0x12fc6,10}, + {0x3c11,9}, {0x139b4,8}, {0x28f6,7}, {0xa48c,6}, {0x470e,13}, {0x29f9,6}, {0x12141,4}, {0x14e6a,10}, + {0x1be1,3}, {0x9b32,12}, {0x47aa,13}, {0x1adb3,7}, {0xa83c,7}, {0x6d83,2}, {0x14ec4,5}, {0x20e68,7}, + {0x2b5a4,2}, {0x1e6e7,8}, {0x876e,2}, {0xd2db,5}, {0x570d,13}, {0x23ba3,4}, {0x3d08,13}, {0x19279,6}, + {0x93a6,11}, {0x677d,6}, {0x2b71e,4}, {0x1c5cf,6}, {0x1f87b,6}, {0x26893,4}, {0x47de,5}, {0x2080d,5}, + {0x77b6,12}, {0x2a9a5,4}, {0x1f139,7}, {0x103dc,9}, {0x107b0,9}, {0x1a9a8,7}, {0x13dc,9}, {0x1bf25,8}, + {0x1c105,7}, {0x2a6b6,5}, {0x20f56,5}, {0x5d75,9}, {0x98f2,12}, {0x276e5,6}, {0xee8,4}, {0x2bdea,4}, + {0x49e0,6}, {0x28aac,5}, {0x25df1,4}, {0x1c6c7,5}, {0x1e12d,8}, {0x139d2,10}, {0x1a541,5}, {0x2a6ae,3}, + {0x28f2b,5}, {0xc421,10}, {0x172cc,5}, {0x6728,13}, {0x54c4,13}, {0xad32,6}, {0xc0f3,11}, {0x16784,9}, + {0x293d0,3}, {0xf93a,6}, {0x2aa6f,8}, {0x15428,5}, {0x6b1e,13}, {0x338a,4}, {0x765a,11}, {0x2a4ce,3}, + {0x1cdc5,8}, {0xf99d,6}, {0x2d0f8,2}, {0x16304,8}, {0x159e,6}, {0x1374,8}, {0xeece,11}, {0x146ea,4}, + {0x2471,4}, {0x8ee2,5}, {0xcf23,11}, {0x1955f,5}, {0x209d,15}, {0x9a06,12}, {0x21c27,7}, {0x679d,4}, + {0x226e,14}, {0x24432,7}, {0x864a,12}, {0x2be30,2}, {0x13bc6,10}, {0xf75f,2}, {0x2263d,7}, {0x15f99,9}, + {0x6455,3}, {0x238da,4}, {0x1a594,3}, {0x1bcf7,6}, {0x6f14,4}, {0x25839,4}, {0x1fbfb,5}, {0x14454,6}, + {0x2d0d1,3}, {0x2962a,5}, {0x1170f,4}, {0x2c5ae,4}, {0x2702d,4}, {0x2540d,6}, {0x2a514,3}, {0x1b23f,8}, + {0xf372,6}, {0x155ea,5}, {0x7576,9}, {0x2446d,4}, {0x1ffbc,3}, {0x244bf,6}, {0x2d114,2}, {0x10780,5}, + {0x1c10d,8}, {0x14776,7}, {0x2a7cb,3}, {0x1b6d3,4}, {0x7d32,12}, {0x2cf43,2}, {0x23b56,7}, {0x1ba4d,5}, + {0x14cd2,3}, {0x15f43,5}, {0x7113,3}, {0x29466,2}, {0x2bdf6,4}, {0x149e0,8}, {0x7492,12}, {0x272cb,6}, + {0x22064,4}, {0x3020,14}, {0xf6c5,9}, {0x16ec,16}, {0x1f9b6,3}, {0x28cbf,5}, {0xbcd5,6}, {0x800e,12}, + {0x173f3,9}, {0x14ea6,10}, {0x1d11,4}, {0x102f,14}, {0x16640,6}, {0x23ae,3}, {0x24f8f,2}, {0x32ff,3}, + {0x19fe0,7}, {0x1867c,9}, {0x2d9f5,4}, {0x179d2,6}, {0x1616d,9}, {0x1d35d,8}, {0x12648,10}, {0x26c0d,4}, + {0x1a28d,2}, {0x13600,4}, {0x2aef9,3}, {0x5ad5,4}, {0x7a0e,7}, {0x27139,6}, {0x15ed3,9}, {0x99fa,12}, + {0x1a498,3}, {0x13a36,10}, {0x12ef,3}, {0xa497,7}, {0x1195,6}, {0x281f,4}, {0x8bf2,3}, {0xbdfc,9}, + {0x20f7b,5}, {0x3cb6,7}, {0x41b0,13}, {0x187e4,9}, {0x29b4,3}, {0x12d0a,6}, {0x24a41,4}, {0x14bfe,4}, + {0x1a1f6,4}, {0x16fd4,8}, {0x12c92,7}, {0x1f669,8}, {0x265e9,6}, {0xaa73,6}, {0x148a2,8}, {0x1bf7d,8}, + {0x14dcd,6}, {0x15db3,6}, {0x98fe,12}, {0x2b64a,4}, {0x14684,10}, {0xb4f6,10}, {0x2d32c,3}, {0xa936,11}, + {0x9a96,10}, {0x1e1cf,8}, {0x2a519,3}, {0x29b65,5}, {0x2a528,3}, {0x8adb,7}, {0x15586,10}, {0x1574f,3}, + {0x2671b,5}, {0x2c1d2,4}, {0x13d7e,10}, {0x26f3b,6}, {0x9724,6}, {0x3831,7}, {0x6909,13}, {0x20e92,7}, + {0xaa10,9}, {0x1d8c9,6}, {0x1f2a9,4}, {0x3f7e,5}, {0x1b77,3}, {0x4346,7}, {0x28cf,5}, {0x25b01,6}, + {0x497b,3}, {0x151e8,4}, {0x1046,7}, {0x1579a,12}, {0x11a9a,10}, {0x8c3e,12}, {0x15d5,4}, {0x3410,13}, + {0x13048,6}, {0x25393,10}, {0x12141,3}, {0xf74,6}, {0x45a2,13}, {0xc400,11}, {0x146e,7}, {0x2b0a,14}, + {0x1e54f,8}, {0x5664,6}, {0x7a86,12}, {0xd905,11}, {0x27f7c,2}, {0xc47f,5}, {0x1d9af,6}, {0x777a,12}, + {0x14c84,6}, {0xdab,2}, {0x2841,2}, {0x7794,7}, {0x2a7b5,5}, {0x2094a,4}, {0x1352c,9}, {0x1412,3}, + {0x1aa87,5}, {0x28979,5}, {0x1db4d,7}, {0xdd30,11}, {0x2a591,3}, {0x1ca0d,8}, {0x72b6,5}, {0x28407,5}, + {0x4567,5}, {0x27c51,3}, {0xe502,11}, {0x19fc3,9}, {0x174bb,4}, {0xe922,5}, {0x218a8,7}, {0x2629,3}, + {0xb31d,11}, {0x1b81d,10}, {0x26291,6}, {0x2919c,5}, {0x1f961,5}, {0xbe0,4}, {0x23a08,5}, {0x2d7f1,4}, + {0xf77e,4}, {0x26a3b,6}, {0x27eaf,2}, {0x15eee,8}, {0x8b42,12}, {0x962e,8}, {0x1eb21,7}, {0x2c3d4,4}, + {0x2678d,6}, {0x1022e,5}, {0x627c,13}, {0x161f,4}, {0x125bc,10}, {0x9586,12}, {0x20d78,7}, {0x2cf0f,3}, + {0x2a67c,3}, {0x1a0d,14}, {0x2732,5}, {0xb7bc,5}, {0x1a28a,7}, {0x19206,7}, {0xe6af,10}, {0x2afc,14}, + {0x2c8f6,6}, {0x5a19,9}, {0x1bead,6}, {0x26b5,15}, {0x19027,9}, {0x1314c,10}, {0x1067a,9}, {0x194cb,6}, + {0x1059e,7}, {0x12b98,6}, {0x17ae,5}, {0x188e9,5}, {0x1d37,14}, {0x20a70,7}, {0xf327,3}, {0x23dd5,5}, + {0x1b01e,8}, {0xc698,8}, {0xc8d2,5}, {0x9c10,6}, {0x855c,8}, {0x1e64f,8}, {0xf938,8}, {0x28703,8}, + {0x242c1,5}, {0x8a2e,5}, {0xc7d5,11}, {0x2907a,4}, {0x27511,6}, {0xf9e8,5}, {0x153a8,7}, {0x16637,5}, + {0x21800,6}, {0xdd99,5}, {0x1a0ad,6}, {0x15374,10}, {0x3204,3}, {0x251ce,4}, {0x2bd8c,2}, {0x674f,13}, + {0xd101,6}, {0x1e4cf,8}, {0x12b02,10}, {0xbf04,11}, {0x17238,5}, {0x1ae79,4}, {0xfa09,10}, {0x77e6,12}, + {0x2bde,5}, {0x29464,4}, {0xf481,4}, {0x10b86,10}, {0x279f3,3}, {0x1454e,10}, {0x28b0,4}, {0x8afa,5}, + {0x2866e,2}, {0x126fc,10}, {0x355c,4}, {0x1d671,6}, {0x1cf59,8}, {0xaf49,5}, {0x6d4f,6}, {0x5757,3}, + {0x269e1,6}, {0x1cb27,5}, {0x16127,4}, {0x13cd4,9}, {0x24ffa,4}, {0x27a03,6}, {0x250dc,2}, {0xa65f,7}, + {0x1f85,3}, {0x6deb,6}, {0x2c524,4}, {0x2a95a,5}, {0x2993a,5}, {0xbcbf,6}, {0x24f1f,6}, {0x19c63,4}, + {0x1ab4f,3}, {0x46e7,7}, {0x28f94,5}, {0xb635,11}, {0xfed0,16}, {0x1ae5c,6}, {0x88f1,5}, {0x457b,7}, + {0x3008,2}, {0x2a118,3}, {0xf3c1,9}, {0x18e1,15}, {0xb4fb,6}, {0xaa26,8}, {0x1ff53,6}, {0x14f91,5}, + {0x1fad3,6}, {0x16ef1,9}, {0xf4a6,11}, {0xedf,3}, {0x2787,8}, {0x2ab93,8}, {0x183a3,9}, {0x1f2bb,5}, + {0x1d867,8}, {0x1419e,4}, {0x1eed4,5}, {0x192b8,8}, {0x26c5b,3}, {0x2429c,5}, {0x261f,7}, {0x1099,4}, + {0x4258,14}, {0xa51d,5}, {0xf728,5}, {0x10da4,4}, {0x1934,7}, {0x2573,4}, {0x1a09d,4}, {0x29216,5}, + {0xfd08,3}, {0xebc1,10}, {0x9d2a,11}, {0x138c,16}, {0x46e1,5}, {0xeac4,7}, {0x11acc,9}, {0x390a,14}, + {0x16ccc,8}, {0x28cc9,5}, {0x4f55,13}, {0x2c7e,5}, {0xff7f,5}, {0x26f8d,2}, {0xb5e1,5}, {0x2b7db,3}, + {0x7331,5}, {0x2da15,4}, {0x2d383,3}, {0x2c18,3}, {0x23ca1,5}, {0x8de2,7}, {0x1d147,6}, {0x26b3b,4}, + {0x8346,4}, {0x2aec1,4}, {0x25071,4}, {0x14eda,5}, {0x2c2f2,4}, {0x2b2d,7}, {0x1681d,9}, {0x1492c,10}, + {0x146ca,7}, {0xd4a3,11}, {0xfcc2,6}, {0xf218,5}, {0x15c58,5}, {0x1d61d,8}, {0xfa7,17}, {0x803e,12}, + {0x1269a,7}, {0x294a0,5}, {0x145af,3}, {0xfa14,7}, {0xa41a,9}, {0x1cd2d,7}, {0x13e64,7}, {0x4429,5}, + {0x430,7}, {0x1d64,14}, {0x240b9,7}, {0x17e8d,6}, {0x8212,12}, {0x5478,7}, {0x2a15,7}, {0x2a5f5,3}, + {0x2b569,4}, {0x2a51e,3}, {0x30d6,12}, {0x3322,11}, {0x61ac,8}, {0x16583,9}, {0xd49,11}, {0x1e517,7}, + {0x19606,9}, {0x27019,6}, {0x1ac40,9}, {0x207f,15}, {0x27a6b,3}, {0x2221a,7}, {0x1a1a2,3}, {0x1ebc6,3}, + {0x17b8d,9}, {0xbb0b,4}, {0x18dba,8}, {0xa800,10}, {0x1b981,4}, {0x12797,5}, {0x14ff0,7}, {0xdf7,5}, + {0x75a6,12}, {0x14cc6,5}, {0x14910,3}, {0x1670f,9}, {0x1efa1,8}, {0xe990,8}, {0x367a,7}, {0x15d9a,7}, + {0x19f35,6}, {0x14ad0,5}, {0x22298,7}, {0x17e9c,9}, {0x14139,4}, {0xee71,5}, {0xce73,7}, {0xf5f2,7}, + {0x14576,10}, {0x217b3,6}, {0x20c08,7}, {0x1256c,10}, {0x15a3a,4}, {0x22195,6}, {0x2054e,3}, {0xe2f2,11}, + {0x2345b,7}, {0x1b11f,3}, {0x2daa,10}, {0x14986,10}, {0x27ae1,5}, {0x11b26,10}, {0x3052,4}, {0x9efe,12}, + {0xee6b,8}, {0x185a,15}, {0xdf9c,4}, {0xeb11,11}, {0x29441,4}, {0x1a457,6}, {0x11324,10}, {0x1f889,8}, + {0x7b4f,3}, {0x554f,3}, {0x1d6b7,8}, {0x11ff,3}, {0x1eee1,8}, {0x15f1f,5}, {0x1de77,6}, {0x44fd,9}, + {0x7afe,12}, {0x15060,3}, {0x1d63f,8}, {0x2b418,2}, {0x2db72,2}, {0x5977,3}, {0x2b660,3}, {0x1a8dc,4}, + {0x226d0,6}, {0xe5a7,11}, {0x7f5c,10}, {0xded,15}, {0xb73d,11}, {0x6f4a,2}, {0x2cfa4,3}, {0x16bbc,8}, + {0x4617,10}, {0x24705,6}, {0x27d1b,3}, {0x28dc5,3}, {0x11ebe,6}, {0x1df2f,8}, {0xdc54,11}, {0x29351,5}, + {0xc5d5,4}, {0x60d1,6}, {0x18f58,9}, {0x63e8,13}, {0x17cbf,9}, {0x1db1d,5}, {0x28afd,5}, {0x1fb61,6}, + {0x4fb5,6}, {0x1a0e3,9}, {0x102dd,5}, {0xf091,11}, {0x1c1c,4}, {0x5a4d,12}, {0x30af,4}, {0x20bd,4}, + {0x1caf5,8}, {0x4415,3}, {0x1fa4c,5}, {0x198da,5}, {0xf367,8}, {0x15eca,9}, {0x660e,3}, {0x987a,12}, + {0xc53f,11}, {0x250bd,3}, {0xd58a,8}, {0x2a6c7,3}, {0x10512,8}, {0x1ca75,8}, {0x27e65,4}, {0x20143,4}, + {0x2d1e,14}, {0x455a,3}, {0x2daf6,2}, {0x13394,4}, {0xc89,5}, {0x1156d,5}, {0x18634,8}, {0x8dfa,12}, + {0x212fb,7}, {0xd0af,6}, {0x44a1,6}, {0x1c485,8}, {0xb866,11}, {0x18742,9}, {0x7ee7,7}, {0x14508,10}, + {0x14b68,6}, {0x169bb,9}, {0x27709,6}, {0xab6c,3}, {0x1ca3d,7}, {0xabb4,4}, {0x2bb46,4}, {0xf0b2,11}, + {0xe83e,5}, {0x1c3b5,8}, {0xb9b0,11}, {0x35c6,3}, {0x1db95,8}, {0x6506,10}, {0x7e82,9}, {0x2a9a0,4}, + {0x169ff,4}, {0x2bd62,4}, {0x22eb5,4}, {0x23bf0,4}, {0x8490,9}, {0x215ff,7}, {0x84ca,7}, {0x1c1cd,8}, + {0x25c03,5}, {0x190c9,9}, {0x2a63b,3}, {0x46fb,6}, {0x2264b,7}, {0x10a72,5}, {0xc680,7}, {0x13322,9}, + {0x228ae,6}, {0x25d79,6}, {0x19dc2,9}, {0x28572,5}, {0x15f4e,3}, {0xea8d,11}, {0x8b06,11}, {0x1b12,9}, + {0x1a67e,7}, {0xd64c,4}, {0x17f7a,3}, {0x10eba,10}, {0xb871,11}, {0x2285f,7}, {0x863e,7}, {0x215d0,5}, + {0x23854,5}, {0x25565,6}, {0x2d5b7,3}, {0x1a5c1,4}, {0xa7aa,4}, {0x27211,4}, {0x1b40f,4}, {0x210d2,7}, + {0x202f1,8}, {0x5423,5}, {0x13d3,4}, {0x154dc,5}, {0x5d27,8}, {0x1df9f,8}, {0xfd5f,5}, {0x1ae38,9}, + {0x1f2e9,7}, {0x4916,12}, {0x2065,3}, {0x57e2,3}, {0x11928,10}, {0x2b209,4}, {0x180c6,4}, {0x16b74,9}, + {0x41e8,6}, {0x235bb,4}, {0x216d1,7}, {0x1cac5,8}, {0x1a94c,6}, {0xa582,5}, {0x10a8c,6}, {0xd1ac,11}, + {0x23fbd,7}, {0x233df,5}, {0x2b4e8,2}, {0x19f2a,6}, {0x1f701,5}, {0xbdf7,5}, {0x18e41,8}, {0x24753,6}, + {0x27cbd,4}, {0xbde6,10}, {0x167c3,9}, {0xa07e,11}, {0x302e,14}, {0x7c4,15}, {0xe50a,2}, {0x312e,3}, + {0x9360,6}, {0x11540,10}, {0x2b359,4}, {0xf96f,11}, {0x17420,8}, {0x21710,6}, {0x19aaa,7}, {0x1c4bd,7}, + {0x2a66d,3}, {0x2a500,3}, {0x250e7,6}, {0x269ff,4}, {0x11aaa,4}, {0x3b1e,10}, {0x25ddf,6}, {0x44df,13}, + {0x250e7,4}, {0x1144,6}, {0x29b0d,3}, {0x1373,9}, {0xa8fa,5}, {0xc88a,6}, {0x2007,15}, {0x10dea,6}, + {0x19684,9}, {0xfd67,11}, {0x123e,7}, {0x141e8,7}, {0x8f56,12}, {0xaa40,6}, {0x26441,6}, {0x2431c,5}, + {0x1fa01,8}, {0x2a7f6,5}, {0x15158,10}, {0x16d4a,9}, {0x19f69,5}, {0x2c6b0,4}, {0x135fa,4}, {0x944e,8}, + {0x7eb2,11}, {0x1ca08,5}, {0x2933d,5}, {0x2a76c,3}, {0x9dde,12}, {0x22c2b,7}, {0xb53,4}, {0x21ef1,7}, + {0x1f641,8}, {0x9166,12}, {0x20f95,7}, {0x2844b,5}, {0x1afb7,4}, {0x13e2c,3}, {0xf7f7,11}, {0x25645,6}, + {0x4a0d,12}, {0x30,100}, {0x21ad2,5}, {0x26c41,6}, {0x1dac0,5}, {0x1b6e9,12}, {0x1a6f7,3}, {0xfdc,9}, + {0x1063e,10}, {0x13c84,10}, {0x11bd0,10}, {0x8536,12}, {0x432,80}, {0x14dca,10}, {0x2a550,3}, {0x27aa7,3}, + {0x17fd7,9}, {0x12d96,10}, {0x2b684,3}, {0x2b642,4}, {0x1fafc,5}, {0x172f9,5}, {0x2c22,14}, {0x27d8d,7}, + {0x44d2,13}, {0x2248b,4}, {0x2be40,2}, {0x17903,9}, {0x17e47,4}, {0x124c,14}, {0x31ad,9}, {0x40ba,6}, + {0x125fc,6}, {0x129f4,10}, {0x35b9,7}, {0xa126,12}, {0x1dce5,6}, {0x130c0,9}, {0x7db6,12}, {0x290d4,5}, + {0xa0ca,7}, {0x2324,5}, {0x1ae4c,7}, {0x1466b,5}, {0x1f011,5}, {0x20e12,6}, {0x26909,6}, {0x16691,9}, + {0x28803,5}, {0x139a0,10}, {0x11004,7}, {0x19dfc,5}, {0x110c,6}, {0x241e6,7}, {0x19d17,9}, {0x835c,6}, + {0x1feb1,7}, {0x195eb,9}, {0x1073c,6}, {0x24497,4}, {0x16ac,16}, {0xe9a6,11}, {0xbdd0,11}, {0x179ff,9}, + {0x26d3d,6}, {0x19ca,7}, {0x664b,13}, {0x8a55,3}, {0x120d0,5}, {0x2be52,4}, {0x1afbf,3}, {0x3404,5}, + {0x19d4d,9}, {0x26d25,5}, {0xd91b,11}, {0x29a2f,5}, {0x1ccc8,5}, {0xdcc2,11}, {0x1462a,7}, {0x21be8,6}, + {0x282e0,5}, {0x195a3,6}, {0x6d74,4}, {0x1afb5,3}, {0x8ff9,5}, {0x1f491,8}, {0x12e5,3}, {0x97de,12}, + {0x9d5a,9}, {0x203f9,6}, {0x3cbc,3}, {0x21387,7}, {0x1d6af,6}, {0x1e263,4}, {0xa98c,5}, {0x204ed,3}, + {0x2db1c,2}, {0x2bf56,4}, {0x195be,9}, {0xc25,18}, {0xf275,4}, {0x6ee0,13}, {0x18256,9}, {0xf689,3}, + {0x1cdef,5}, {0x1046a,8}, {0x12c42,10}, {0x1e5f7,7}, {0x2d674,3}, {0x16005,7}, {0x19007,5}, {0x147a6,7}, + {0xfacf,11}, {0x6916,8}, {0x2722f,6}, {0x1c9d7,6}, {0x121fc,7}, {0x19180,6}, {0x21b39,7}, {0x23b90,4}, + {0x11694,9}, {0xa5b2,11}, {0x8c4,42}, {0x12318,5}, {0x28ea4,4}, {0x22be0,5}, {0x6281,3}, {0x1f181,8}, + {0x67b7,12}, {0x1b173,12}, {0x1fd59,5}, {0x1b46b,8}, {0x1babd,8}, {0x21c27,5}, {0x22979,7}, {0x12fe,8}, + {0x296f5,2}, {0x24a34,5}, {0x16737,5}, {0x11e32,10}, {0x21d7e,7}, {0x1f169,8}, {0x2d0d7,3}, {0xf794,11}, + {0x27739,6}, {0x1af4f,5}, {0x1e120,5}, {0x1e18,14}, {0x14fc,6}, {0x2b63e,4}, {0x1674,2}, {0x243f,15}, + {0x7cae,11}, {0x2bc22,4}, {0x1900e,7}, {0x12a6e,8}, {0x7fd2,12}, {0x17bfb,4}, {0xacc8,4}, {0x26333,6}, + {0x9fb2,12}, {0xc60,6}, {0x2313d,7}, {0x16343,7}, {0x2d7a1,4}, {0x1d87f,8}, {0x270f,10}, {0xc89d,8}, + {0x26bf3,4}, {0x7681,7}, {0x1da8d,8}, {0x1f1b1,6}, {0xc817,11}, {0x52fd,13}, {0x29464,5}, {0x279bd,4}, + {0x1f5d1,8}, {0x7482,4}, {0x1b07,5}, {0x1e7ef,8}, {0x8716,12}, {0x4034,13}, {0x88ae,12}, {0x24354,5}, + {0x18a51,6}, {0x1630d,8}, {0xfbaf,11}, {0x20dd,3}, {0x149e0,10}, {0x2bf38,2}, {0x2ce5a,5}, {0x29f24,3}, + {0x10715,5}, {0x29a20,5}, {0x1f5b1,8}, {0x29d60,5}, {0x57b6,6}, {0x279c9,4}, {0x20b37,6}, {0x14cc8,4}, + {0x2a73f,3}, {0x2bea,14}, {0xe01c,8}, {0x2ae6d,4}, {0x2b551,2}, {0x26175,6}, {0xd850,5}, {0xdcbb,7}, + {0x14c6e,7}, {0x177b2,4}, {0x221c6,7}, {0x11dec,9}, {0x924,32}, {0x13ed2,8}, {0x4d0c,13}, {0x47de,9}, + {0x239d5,7}, {0x2532f,10}, {0x15b5b,6}, {0xc4e,3}, {0x175d9,9}, {0x8c62,11}, {0x1f551,8}, {0xff73,7}, + {0x1e60f,8}, {0x349c,14}, {0x285f6,3}, {0x1901e,9}, {0xa0f1,5}, {0x14b1d,5}, {0x41ea,5}, {0x9316,6}, + {0x1ed21,8}, {0x164c,16}, {0xcbd,10}, {0x165c2,9}, {0x7361,5}, {0x22acb,7}, {0xb8d,4}, {0x16c67,9}, + {0x21717,8}, {0x2cb96,6}, {0x1317e,4}, {0x21fdf,4}, {0xb9a5,11}, {0x1e7ff,5}, {0xdc28,10}, {0x149fe,8}, + {0x17c77,8}, {0x1ce2,10}, {0x2322b,6}, {0x1e87f,8}, {0xd60e,11}, {0x20329,6}, {0x1e2c7,8}, {0x2d32f,3}, + {0x23d08,7}, {0x20b11,3}, {0x3cbb,4}, {0x104bb,2}, {0x26069,6}, {0x270f3,4}, {0x284aa,5}, {0x62d9,10}, + {0x13056,3}, {0x3921,4}, {0xdae,3}, {0x106c0,10}, {0x27c97,5}, {0x23cc2,6}, {0x7d6e,8}, {0x1e69f,8}, + {0x287ec,6}, {0xe9a6,8}, {0xeeef,11}, {0x62d0,7}, {0x6b56,6}, {0xde92,8}, {0x151b7,5}, {0xac98,6}, + {0x1552c,6}, {0x1ff29,8}, {0x14bf4,9}, {0x83c2,7}, {0x2710f,4}, {0x10b32,4}, {0x114be,10}, {0x7edc,6}, + {0xaa92,8}, {0x51f9,10}, {0x267ff,6}, {0x24fe5,4}, {0xd6d4,9}, {0x165cf,5}, {0x28a70,3}, {0x13ac,16}, + {0x179ae,8}, {0x1e717,7}, {0x134cb,7}, {0x3aa0,14}, {0x1709a,8}, {0x1af7c,9}, {0xe334,10}, {0xc46e,11}, + {0x10a2d,5}, {0x10ee,2}, {0x655a,7}, {0x5478,4}, {0x72ad,3}, {0x1cd2d,8}, {0xf6ad,5}, {0x70d0,8}, + {0x20e43,6}, {0x2161b,7}, {0x1fdd9,8}, {0x2117a,7}, {0x20a8c,3}, {0xea40,5}, {0x1eb23,5}, {0x28e40,5}, + {0x1e577,8}, {0x6eed,6}, {0x13932,10}, {0x2a75b,5}, {0x79bf,7}, {0x240ea,6}, {0x26915,6}, {0x1ecc1,8}, + {0x57d7,6}, {0x5cbf,13}, {0x46a0,6}, {0x1146e,9}, {0x2a38e,3}, {0x27a15,6}, {0x23eb3,7}, {0x1193c,10}, + {0x1b9d5,8}, {0x2254b,4}, {0x14e74,4}, {0xc80c,11}, {0x2a69d,5}, {0x2c578,4}, {0x16a81,9}, {0x1972,5}, + {0x28725,6}, {0x16853,9}, {0x2302c,7}, {0x16dad,9}, {0x2da21,4}, {0xb467,11}, {0x14bd2,4}, {0xf351,6}, + {0x4356,3}, {0xcacc,10}, {0x10ef,5}, {0x1d887,8}, {0x39f8,13}, {0x299f6,2}, {0x10c8,16}, {0x4d1d,3}, + {0x1a4ab,5}, {0x1c4a,5}, {0xeb5e,11}, {0x30,1024}, {0x14d16,10}, {0xb79,6}, {0x10b38,5}, {0x1e3c7,8}, + {0x201fc,4}, {0x1b82d,8}, {0x18a90,9}, {0xaa1a,7}, {0xf280,6}, {0x237bf,6}, {0x12c7e,10}, {0x1ba95,8}, + {0x218c4,6}, {0x8086,12}, {0x12ad0,9}, {0x1f6b9,8}, {0x14f0c,8}, {0x1afa9,5}, {0x1a136,6}, {0x740e,12}, + {0x234a1,7}, {0x1db75,5}, {0x19fde,9}, {0x1a87d,9}, {0x1f339,8}, {0x244d1,6}, {0x2ae61,4}, {0x1fec3,6}, + {0x18421,6}, {0x114e6,10}, {0x229e,3}, {0x2d593,3}, {0x2c470,6}, {0x29848,4}, {0x193f,3}, {0x2998a,4}, + {0x10b72,7}, {0x17be7,5}, {0x218a8,6}, {0x15e1f,6}, {0xcf2,4}, {0x161fd,9}, {0xa246,12}, {0x7342,12}, + {0x25c8d,6}, {0x2c530,6}, {0x18dd9,4}, {0x29c70,3}, {0x15ac,15}, {0x2a788,5}, {0x6e99,6}, {0x2c3e0,4}, + {0x191d,15}, {0x74aa,8}, {0xc74,11}, {0x2586d,6}, {0x612a,13}, {0x1aea4,6}, {0xc8ab,6}, {0xb65,3}, + {0x437e,7}, {0x79de,9}, {0x29476,2}, {0xe4d0,6}, {0x1bdc0,5}, {0x1c3a5,8}, {0x22cb7,7}, {0x19bb8,5}, + {0x2a6e8,5}, {0x20513,8}, {0x48dc,5}, {0x1b9cd,7}, {0x20f25,6}, {0x6bc9,7}, {0x2ae59,4}, {0x1fda9,5}, + {0x83c2,6}, {0x179e4,9}, {0x146a2,10}, {0x3f7e,10}, {0x29657,4}, {0xb89d,11}, {0x1a729,3}, {0x16071,8}, + {0x251f7,2}, {0x1fea9,5}, {0x1bb4d,8}, {0x17be,3}, {0xef26,11}, {0xf87b,6}, {0x2a71c,3}, {0x1191e,9}, + {0x1abd2,2}, {0x16499,9}, {0xf47e,7}, {0x1c75d,8}, {0x7912,12}, {0x163ee,9}, {0x28824,6}, {0x18d57,9}, + {0x1ac6,5}, {0x1eff9,5}, {0xa30d,5}, {0x22de9,5}, {0x2a48d,3}, {0xb382,6}, {0x1c4ad,8}, {0x279c3,4}, + {0x17993,9}, {0x20778,7}, {0x25abb,6}, {0x23f00,4}, {0x223a4,7}, {0x28d88,5}, {0x15c71,7}, {0x22cf2,7}, + {0x186df,9}, {0xe662,11}, {0x1e7bf,7}, {0x1988,11}, {0x1a19b,5}, {0x12d3c,10}, {0x532,58}, {0x1a1f1,9}, + {0x13cae,8}, {0x2a729,5}, {0xa8e2,5}, {0x5428,8}, {0x14aaa,5}, {0x2d43,5}, {0xc7eb,7}, {0xcd86,6}, + {0x14a58,9}, {0x244d7,6}, {0x5505,13}, {0x14652,5}, {0xcd2,4}, {0x168e3,9}, {0x3f38,13}, {0xe0e4,6}, + {0x27661,5}, {0x3988,14}, {0xfe89,2}, {0x129c,16}, {0x7d0e,9}, {0xd4f0,7}, {0x168ad,9}, {0x14c00,2}, + {0xd86b,11}, {0x3642,10}, {0x24b2,4}, {0x25c87,6}, {0x2dca,5}, {0x1a450,6}, {0xe308,6}, {0xb144,5}, + {0x14cc1,5}, {0x12e38,8}, {0x197b6,9}, {0x2163e,7}, {0x270f7,6}, {0x225db,6}, {0x227e1,7}, {0x1ece9,7}, + {0x20b11,4}, {0x14dde,10}, {0x1acfd,9}, {0x117ac,10}, {0x6e37,9}, {0x9fc3,5}, {0x20b25,9}, {0x2b678,3}, + {0x270b5,4}, {0x169f,5}, {0x1cd7f,6}, {0x2581f,6}, {0x2a247,5}, {0xefd6,11}, {0x377b,7}, {0x1a227,9}, + {0x2c042,4}, {0xec6d,4}, {0x7ebe,12}, {0x154aa,10}, {0x23957,7}, {0x19c12,4}, {0x1a55c,5}, {0x14c46,6}, + {0xebc6,2}, {0x5483,13}, {0x30,384}, {0xb236,8}, {0x16c23,5}, {0x16b47,8}, {0x40c0,14}, {0x22d1c,7}, + {0x14c80,10}, {0x5dea,8}, {0x9e4a,12}, {0x114d,8}, {0xcdb8,11}, {0x922,5}, {0x19093,9}, {0x768a,6}, + {0xf16d,11}, {0x16bc,12}, {0x19bc1,9}, {0x8956,6}, {0x22207,5}, {0x1fae1,8}, {0xefd8,7}, {0x5f90,4}, + {0x302e,10}, {0x15cf6,9}, {0x9646,8}, {0xbd0a,7}, {0x169c4,9}, {0x1ed53,2}, {0x29cf3,2}, {0xbac5,6}, + {0x26133,6}, {0x201ec,3}, {0x1555e,6}, {0xd54c,7}, {0xb9c6,10}, {0x1caa5,8}, {0x18e44,5}, {0x2a4f6,3}, + {0x27a1b,6}, {0xb404,5}, {0x2863b,3}, {0x12f30,7}, {0x15092,4}, {0x74ce,12}, {0xaad,24}, {0x6846,13}, + {0x2a357,3}, {0x2b151,4}, {0xb8df,10}, {0x1e227,8}, {0x4776,13}, {0x1f3b9,8}, {0x23041,7}, {0x5e6c,13}, + {0x1ac6,8}, {0x2d13b,2}, {0x1a408,6}, {0xd9a1,3}, {0xe1c9,6}, {0x1bbfd,6}, {0xcc00,11}, {0x269e1,5}, + {0xfb1,4}, {0xfd51,7}, {0x182b3,6}, {0x270af,4}, {0x2d9c5,4}, {0x1ead3,4}, {0x12852,7}, {0x2260c,7}, + {0xf1bc,3}, {0x2c54e,4}, {0x4338,14}, {0x16ac9,9}, {0x288b4,4}, {0x6faa,6}, {0x3d98,9}, {0x16e07,9}, + {0x192c,8}, {0x1539c,10}, {0x26bed,4}, {0xda0d,11}, {0x1d88f,8}, {0xa2d9,5}, {0x292ed,5}, {0x2881f,5}, + {0x2a5c3,3}, {0xb4e,3}, {0x35fa,10}, {0x6b56,9}, {0x1c83d,7}, {0x14302,8}, {0x26532,3}, {0x2c2de,4}, + {0xb24f,5}, {0xd390,11}, {0xfd95,6}, {0x8d22,12}, {0x14bcc,6}, {0x17e6f,6}, {0x27c15,3}, {0x2131e,7}, + {0x2986b,5}, {0x2a925,2}, {0x1be95,8}, {0x1cb15,8}, {0x4e6b,13}, {0x1cdd,15}, {0x19174,9}, {0x22283,7}, + {0x1cb85,8}, {0x2c9da,6}, {0x2da69,2}, {0x1a8e,3}, {0x17a1a,9}, {0x3a40,7}, {0x2c62c,4}, {0x244fb,6}, + {0x237cd,4}, {0xfdb4,5}, {0x68ea,5}, {0x1fa69,5}, {0x69cc,13}, {0x23f03,2}, {0x17fe,6}, {0x261fb,6}, + {0x1d5c5,8}, {0x2cae,14}, {0x2a4ab,3}, {0x2775d,6}, {0x15a3a,9}, {0x131e2,10}, {0x22b93,5}, {0x19576,9}, + {0x8afc,3}, {0x1227a,4}, {0x855e,8}, {0x2bffa,4}, {0x14e10,10}, {0x10e78,6}, {0x1a49f,6}, {0xc3ea,11}, + {0x10256,10}, {0x1760,3}, {0x13ec8,5}, {0x65a2,8}, {0x2796,15}, {0x277a7,4}, {0x26f80,3}, {0xda9,6}, + {0xa58e,5}, {0x19375,9}, {0x2a94b,4}, {0x2d051,3}, {0x25b3d,6}, {0x10f28,10}, {0x2ca64,6}, {0xc55,6}, + {0x11c93,5}, {0x15b1d,7}, {0xfa4d,9}, {0x2d045,3}, {0x703f,7}, {0x2a73a,3}, {0x137fc,10}, {0x2da25,4}, + {0x1b11e,5}, {0x89d3,7}, {0x1b49b,4}, {0x10146,3}, {0x9a9,5}, {0x1f601,8}, {0x173bd,9}, {0x20be5,7}, + {0x150cc,6}, {0x2c794,4}, {0xc4d1,11}, {0x13a5,2}, {0x21c8b,5}, {0x416c,9}, {0x1b695,3}, {0x170a3,9}, + {0x1afc4,4}, {0x245b5,6}, {0xa6fc,6}, {0x18c7,6}, {0x148ac,8}, {0x23789,3}, {0x19cbd,5}, {0x2322d,5}, + {0x2a6a9,3}, {0x292cf,5}, {0xecb3,11}, {0x13bd3,6}, {0x1f0d9,8}, {0x8a2e,7}, {0x1b7c1,8}, {0xe386,6}, + {0x54de,10}, {0xad02,12}, {0x1726e,9}, {0x14bb0,3}, {0x1bcf5,8}, {0x2a384,3}, {0x1e9bf,8}, {0x13160,10}, + {0x14318,4}, {0x16322,6}, {0xf459,8}, {0x81ee,11}, {0x532,54}, {0x208e8,7}, {0xbc3b,9}, {0xaa92,12}, + {0x4b11,13}, {0x1999c,7}, {0x10ef,12}, {0x6a0d,7}, {0x2c2a,6}, {0x26cd1,6}, {0x28dcd,5}, {0x1c40d,8}, + {0x25ad7,6}, {0x21e81,7}, {0x263e3,4}, {0x2a5fa,3}, {0xf8c8,11}, {0x2c2f0,2}, {0xdebc,8}, {0x8fe6,9}, + {0x19ed0,7}, {0x1ea73,4}, {0xe8db,2}, {0x3004,6}, {0x48fc,10}, {0x290b8,3}, {0x187fb,4}, {0x246c,13}, + {0x5e11,13}, {0xbb2,3}, {0x2abfb,8}, {0x25dfa,3}, {0x1732d,9}, {0x29e5a,5}, {0xbd1,3}, {0x1a879,4}, + {0x24a3b,3}, {0x19e0,15}, {0x192c,15}, {0xd770,9}, {0x2601,15}, {0x152ac,10}, {0x2c332,4}, {0xd288,8}, + {0x14b36,5}, {0x18b73,7}, {0xa15,10}, {0xe946,8}, {0x26fe9,6}, {0x24c8f,6}, {0x9982,8}, {0x1f45b,5}, + {0x951c,10}, {0x326c,5}, {0x2d73e,4}, {0x22a44,7}, {0x1ee91,8}, {0xc022,11}, {0x2a61d,3}, {0x1f49b,6}, + {0x7705,3}, {0x1bedd,8}, {0xb2ba,5}, {0x27039,4}, {0x705f,4}, {0x1ccb5,6}, {0x486d,13}, {0xaedb,6}, + {0x2840c,5}, {0x2cfba,2}, {0x2a5aa,3}, {0xc94b,6}, {0x1cbf,14}, {0xf10a,9}, {0x11edc,10}, {0x25051,6}, + {0x5c3b,6}, {0x124a4,10}, {0x25407,6}, {0x27069,3}, {0x14990,9}, {0x29298,4}, {0xe103,11}, {0x22371,9}, + {0x7f36,9}, {0xb28,8}, {0x24287,4}, {0x2721d,5}, {0xa222,12}, {0x1ffb9,5}, {0x2103d,7}, {0x753e,5}, + {0x4993,5}, {0xf5fd,5}, {0xed4d,11}, {0x2d9b9,4}, {0xd09b,6}, {0xd41,9}, {0x2732,10}, {0x187f2,4}, + {0x2322d,4}, {0x2d15e,3}, {0x1e2f7,8}, {0x2bf0e,4}, {0x29751,5}, {0x253e9,10}, {0x9dae,11}, {0x2a659,3}, + {0x2534d,10}, {0x2cde2,6}, {0x1b9ed,8}, {0x9087,7}, {0x2beee,4}, {0x10e5a,6}, {0x1cfd9,8}, {0xa23a,5}, + {0xf94e,5}, {0x3450,6}, {0x1b00c,8}, {0x2da49,2}, {0x10ba4,9}, {0x4cf2,13}, {0x1424,7}, {0xe7a1,11}, + {0x2a684,5}, {0x28d7e,4}, {0x9ffa,12}, {0xa942,8}, {0xff28,8}, {0x12724,10}, {0xa9f6,5}, {0xdd7f,6}, + {0x10ed8,10}, {0x50d5,5}, {0x29949,4}, {0x2b620,4}, {0x27dc7,10}, {0x1b0dd,5}, {0x1d205,7}, {0x25bbf,2}, + {0x2a62c,3}, {0x29db,9}, {0x5999,4}, {0xc42c,11}, {0x1aa12,9}, {0x2328f,5}, {0x152f2,10}, {0x7bc0,8}, + {0xd89d,5}, {0x3655,7}, {0x1a406,9}, {0x25a9f,3}, {0xcf3e,6}, {0x1a66a,9}, {0x19549,6}, {0x2aae,8}, + {0x19fe9,7}, {0x12040,4}, {0x9826,6}, {0x22e73,7}, {0x1e59f,7}, {0x18352,9}, {0x124ae,10}, {0xa086,4}, + {0xb8be,11}, {0x89da,12}, {0x17fa1,9}, {0x2da41,2}, {0x24e51,6}, {0x2982,14}, {0x6f68,18}, {0x1d753,4}, + {0x1bde,15}, {0x4dcf,13}, {0x1f5e9,8}, {0x1ca8d,6}, {0xed1,3}, {0x2c590,4}, {0xcb0e,6}, {0x9807,5}, + {0x10a28,9}, {0x7031,9}, {0x2b519,4}, {0x9106,7}, {0x2868,15}, {0x16a4b,9}, {0xe733,11}, {0x14e74,7}, + {0x1aeee,7}, {0x1bf55,6}, {0x2b67c,3}, {0x1288c,9}, {0x2d981,4}, {0x13bc,9}, {0x1a8fb,9}, {0x1acf4,9}, + {0x1a690,7}, {0x23f62,7}, {0x1d575,8}, {0x15004,6}, {0xa8b2,6}, {0x171f0,9}, {0x971e,12}, {0x1567,2}, + {0x245df,6}, {0x1d8ef,8}, {0x168bf,9}, {0x2d9e9,4}, {0x115d6,10}, {0x25e25,4}, {0x2962a,4}, {0x20f10,6}, + {0x2804f,3}, {0x274f3,6}, {0x48dc,6}, {0x5ee5,9}, {0x255ef,5}, {0x15342,10}, {0x293b2,3}, {0x1514e,10}, + {0x1904b,7}, {0xcda7,6}, {0x28d35,3}, {0x246c3,6}, {0x1ae36,2}, {0x3e9e,7}, {0x5963,13}, {0x1a50d,7}, + {0xe468,8}, {0x1fd99,5}, {0x22f14,7}, {0x2a32f,3}, {0x638f,6}, {0x2be46,4}, {0x23932,5}, {0x29d8,3}, + {0x2c3f2,4}, {0x314d,4}, {0x1dc9d,8}, {0xd7b2,9}, {0x235e,15}, {0x50e8,10}, {0x2c482,6}, {0xe9bc,9}, + {0xd175,11}, {0x180cf,4}, {0x1f9c1,5}, {0xf64a,6}, {0x1f279,8}, {0x28e95,5}, {0x362b,4}, {0x9e43,4}, + {0x261c5,6}, {0x2bd22,4}, {0x764e,12}, {0x1f699,5}, {0x12a76,10}, {0x2b26,10}, {0x97ba,12}, {0xe2e7,10}, + {0x1cab,4}, {0x21a16,5}, {0x13676,10}, {0xf683,3}, {0x168c1,6}, {0xbcd5,5}, {0x152cf,3}, {0x2c7ee,4}, + {0x10314,5}, {0x120c8,7}, {0x2479d,8}, {0x13ef0,10}, {0x141de,10}, {0x1eed1,4}, {0x18811,9}, {0xf90e,5}, + {0xf278,7}, {0x1c451,4}, {0x90a6,6}, {0x2350a,5}, {0xf6f4,6}, {0x16718,9}, {0x191d3,4}, {0x2985c,4}, + {0x2a771,3}, {0xb677,11}, {0x17da2,6}, {0x5206,13}, {0x1eb2,5}, {0x2866f,4}, {0x1eea,10}, {0x1a94e,4}, + {0x23787,7}, {0x165b0,9}, {0x18043,6}, {0x73cb,5}, {0xa9d2,10}, {0x8134,4}, {0x23870,3}, {0x2b59f,3}, + {0x2a32a,3}, {0x2386e,7}, {0xb38b,8}, {0x3389,5}, {0xf4b3,6}, {0xa396,8}, {0x279ed,4}, {0x79ea,11}, + {0x2ce1e,5}, {0x1e3df,8}, {0x23f70,7}, {0x2cbba,6}, {0x315b,6}, {0xe96a,5}, {0x2a690,3}, {0x29560,5}, + {0x19ad0,7}, {0x294a,14}, {0x1e96f,8}, {0x1a703,5}, {0x2a70d,3}, {0xdd93,11}, {0x414e,13}, {0x2066,7}, + {0x1d25f,6}, {0x193bd,9}, {0xe81a,11}, {0x4a2a,4}, {0x1216,6}, {0x23dbe,5}, {0x1485a,7}, {0xee1e,7}, + {0xaaee,3}, {0x1ed4,7}, {0x15b6a,9}, {0x2737f,6}, {0xb3ac,11}, {0x1599d,7}, {0x14d70,10}, {0xf28e,8}, + {0x2ca4c,6}, {0x15c1e,9}, {0x1f58c,2}, {0xf78b,2}, {0x2f16,14}, {0x13c2a,6}, {0x24a5d,6}, {0x14e56,10}, + {0xec1e,6}, {0x2d96d,4}, {0xc5fa,9}, {0xc597,8}, {0x2769d,4}, {0x2b01,7}, {0x1ff31,8}, {0x2a6b3,3}, + {0xadc2,10}, {0xb656,11}, {0xaa92,5}, {0xd574,7}, {0x1e647,8}, {0x153c,11}, {0x26531,4}, {0x2be94,2}, + {0x2b5a3,4}, {0x26b75,6}, {0x8bea,8}, {0xb283,8}, {0x6dcf,5}, {0xe9a8,5}, {0x15056,2}, {0x2626,8}, + {0xfb0,3}, {0x29c73,5}, {0x27607,6}, {0x20670,5}, {0x19c15,4}, {0x1eef1,8}, {0xf827,7}, {0x1ebe1,8}, + {0x1b40b,8}, {0xa9fe,4}, {0x2152d,6}, {0xa846,6}, {0xcac1,11}, {0x19915,9}, {0x1a077,9}, {0x2a9d2,5}, + {0x1aa4a,3}, {0x272ec,3}, {0x2b908,4}, {0x108b,10}, {0x14774,9}, {0x2151c,2}, {0x30ca,5}, {0x28da,14}, + {0x246d5,12}, {0x2a50a,3}, {0x279cf,4}, {0x31c8,8}, {0x20935,7}, {0x17b82,7}, {0xb123,7}, {0x12774,10}, + {0xb262,6}, {0x2a695,3}, {0x28ce9,5}, {0x101ba,4}, {0x12512,7}, {0x12b25,4}, {0x8650,5}, {0x3c28,14}, + {0x15a0,6}, {0x63ce,13}, {0x14906,3}, {0x2c2ce,4}, {0x1ce6d,5}, {0x2be1a,4}, {0x259e9,6}, {0x238e5,5}, + {0x1155,6}, {0x1743b,9}, {0xdabd,11}, {0x56cc,13}, {0xb3c2,11}, {0x2c240,2}, {0xf3b6,9}, {0x29a9d,4}, + {0x16f68,9}, {0x20897,7}, {0x26c6,13}, {0x1af30,4}, {0x2b658,3}, {0x2fc4,8}, {0xdc9b,6}, {0x14cb2,10}, + {0x1ef51,8}, {0x2b8ee,6}, {0x183d0,9}, {0x1ef31,7}, {0xc5e4,11}, {0x6a1a,13}, {0x12968,7}, {0x5102,6}, + {0xbcd3,8}, {0x2a7ab,5}, {0x2b670,3}, {0x2c500,4}, {0x6971,13}, {0x204e3,8}, {0x1d205,8}, {0x13d7e,6}, + {0x1bb6d,7}, {0x2c78e,4}, {0x60f1,5}, {0x10382,9}, {0x11287,5}, {0xc57b,6}, {0xf471,6}, {0x1f9d1,8}, + {0x26ba5,6}, {0x7dfe,12}, {0xf395,8}, {0x1233c,9}, {0x5403,3}, {0x1c03d,8}, {0x1d5e5,4}, {0x10dc0,10}, + {0x446a,11}, {0x5bd3,12}, {0x256d7,6}, {0x27ff,8}, {0x75da,3}, {0x253b1,6}, {0x87ee,10}, {0x244c5,6}, + {0x105e4,10}, {0xb75,4}, {0xc8bc,11}, {0x1a0ad,9}, {0xf9bc,10}, {0x159b1,5}, {0x1631f,9}, {0x10ea,17}, + {0x8cc2,12}, {0x1520e,8}, {0x1b3ad,8}, {0xdc1,3}, {0x2d6fe,3}, {0x2919e,3}, {0x4624,13}, {0x2d5c2,2}, + {0x25081,3}, {0x1ed29,8}, {0xa042,11}, {0x56b9,3}, {0x126c,12}, {0x235e3,5}, {0x73fa,3}, {0x2db36,2}, + {0x1d053,7}, {0x7164,4}, {0x23edd,7}, {0x2520c,4}, {0x14d3e,10}, {0xfc23,5}, {0x2a8c4,5}, {0xf548,5}, + {0x22d26,4}, {0x2256b,6}, {0x2bd32,4}, {0xb9d,4}, {0x4f0c,8}, {0x1799c,9}, {0xc2d9,5}, {0x2a712,3}, + {0xa276,12}, {0x17a5d,4}, {0xf6d9,11}, {0xa2ff,7}, {0x19dbb,7}, {0x15392,10}, {0x2208e,7}, {0x165f8,7}, + {0x27679,6}, {0x29d99,3}, {0x1c765,8}, {0x1195,7}, {0xd102,4}, {0x1feb9,7}, {0x17040,9}, {0x6d33,13}, + {0xedd,4}, {0xe683,11}, {0x2a523,3}, {0x18283,9}, {0xa330,6}, {0x1a2de,4}, {0x7292,8}, {0x2bb0a,6}, + {0x19c38,7}, {0x28db4,5}, {0x2a55a,3}, {0x19ddd,9}, {0x2d158,3}, {0x29895,4}, {0x2bcf2,4}, {0x8158,6}, + {0xad4a,6}, {0x1a134,8}, {0x1f1c9,7}, {0x1af19,6}, {0x2bbcc,2}, {0x2d949,4}, {0x2ccda,6}, {0x1240e,10}, + {0x5138,9}, {0x4fe4,13}, {0x1046,3}, {0xe2b0,7}, {0x28e45,5}, {0x2c030,2}, {0x102f6,10}, {0x67eb,8}, + {0x22b42,7}, {0x7438,6}, {0x2b5e,12}, {0x2148c,7}, {0x1413e,10}, {0xcf4f,11}, {0xc72,3}, {0x1177a,10}, + {0x1a8aa,6}, {0x255a1,5}, {0x29fab,3}, {0x29b0b,5}, {0x14af8,10}, {0xf63c,3}, {0x156c6,10}, {0x286c5,6}, + {0x10774,6}, {0x8df4,6}, {0x122d8,10}, {0x5be2,3}, {0x6d90,11}, {0x6a8f,6}, {0x1fcb4,5}, {0x310e,14}, + {0xfaf2,9}, {0x116b6,6}, {0x1fcd9,8}, {0x5358,6}, {0x166d4,5}, {0x6e92,13}, {0x16c2a,7}, {0x12af8,10}, + {0x2ba9,9}, {0x27e7d,5}, {0x121fc,5}, {0x25204,4}, {0x1b77,5}, {0xd6ea,11}, {0x1f596,3}, {0x289c1,5}, + {0x1d627,6}, {0x15dce,9}, {0x1df7f,8}, {0x3ae8,8}, {0x1a0bf,9}, {0x16e1d,5}, {0x1ab8e,3}, {0x2a663,3}, + {0x245d,12}, {0x22009,7}, {0x108f2,10}, {0x2a7a6,5}, {0x5b10,13}, {0x1096a,9}, {0x12c60,10}, {0x24c89,6}, + {0x22abe,5}, {0x415c,6}, {0x29b0,5}, {0x151d0,10}, {0x15e28,5}, {0x16acb,7}, {0x9eda,12}, {0x10472,8}, + {0x20a07,5}, {0xaba6,4}, {0x78e2,12}, {0x3996,14}, {0x9e86,12}, {0x10bb,5}, {0x2ce8,7}, {0xc51a,4}, + {0x7e8e,12}, {0x18d7,5}, {0x551f,13}, {0x94de,6}, {0x6c0a,4}, {0x11d9c,10}, {0xe166,11}, {0x21f6f,7}, + {0xa19,26}, {0x9196,12}, {0x25f9,8}, {0x2ad07,8}, {0x828a,12}, {0x70a0,8}, {0x2489d,12}, {0x9cd6,12}, + {0x1e98,7}, {0x16b23,8}, {0xfd0f,7}, {0x24d8f,6}, {0x96ee,11}, {0x9274,4}, {0x9b86,12}, {0xc6a1,10}, + {0x13ae4,4}, {0x162fb,9}, {0x18a5a,9}, {0x2a77e,5}, {0x18b0e,9}, {0x2d56c,3}, {0x14c26,5}, {0x6964,13}, + {0x274b7,5}, {0x1ca0f,5}, {0x266af,6}, {0x14238,10}, {0x11d97,5}, {0x2c38c,4}, {0x27a21,6}, {0xcc6e,11}, + {0x1ac93,7}, {0x549d,13}, {0x16c4c,8}, {0x11770,7}, {0x385c,4}, {0x4b7b,10}, {0x2d90d,4}, {0x1907a,5}, + {0x8ae2,6}, {0x25dbb,5}, {0x108b6,10}, {0x287e5,7}, {0x2d2c,14}, {0x4686,6}, {0x2d991,4}, {0x3626,3}, + {0x1403,9}, {0x9fc3,7}, {0x14f0a,10}, {0x140bc,10}, {0x1badd,8}, {0x2be9a,4}, {0x226f3,7}, {0x2bac8,6}, + {0x110f4,10}, {0x28d33,5}, {0x145fa,3}, {0x2a928,4}, {0x1b39,8}, {0x11b28,8}, {0xa132,6}, {0x250b0,2}, + {0x23702,7}, {0x178eb,5}, {0x182d4,8}, {0xf261,3}, {0x27c5d,3}, {0x27639,4}, {0xd6e5,5}, {0x2a43d,3}, + {0x19b33,7}, {0x5782,9}, {0x18aea,6}, {0xc4b4,4}, {0xd19,3}, {0x16cc,8}, {0x2c0da,4}, {0x27f09,5}, + {0x3868,5}, {0x1ba8d,8}, {0x23c52,5}, {0x868b,7}, {0x1a014,9}, {0xaede,4}, {0x1713c,9}, {0x3594,4}, + {0x14756,10}, {0xedc6,10}, {0x10da2,5}, {0x1e4c7,5}, {0x212d1,7}, {0x125da,10}, {0x24b75,4}, {0x22113,7}, + {0x8c4,20}, {0x2c5d2,4}, {0x23973,7}, {0xa852,5}, {0x11356,10}, {0x23c70,5}, {0x21cd6,7}, {0xe9a,4}, + {0x26fcb,6}, {0x1488e,4}, {0x27829,6}, {0x1ce05,8}, {0x1f194,5}, {0x10f28,9}, {0x14486,10}, {0x13f54,10}, + {0x2bc12,4}, {0x8787,7}, {0x26ff5,6}, {0x75e2,8}, {0x134f0,10}, {0x29c6e,5}, {0xa492,12}, {0x1dcb5,8}, + {0x1bac9,4}, {0x110cc,6}, {0x2b960,6}, {0x1db05,7}, {0x35b9,4}, {0x2a640,3}, {0x7c12,7}, {0x2a735,3}, + {0x25dc1,5}, {0xb1c8,11}, {0x7a97,4}, {0x20429,5}, {0x29121,3}, {0x23875,7}, {0xb5f,4}, {0x28871,4}, + {0x6f07,6}, {0x27e6e,3}, {0x22a4b,7}, {0x2c80c,4}, {0x11bb6,5}, {0x21606,7}, {0x6d1b,11}, {0x804,64}, + {0x1e797,8}, {0x13232,10}, {0xc98d,7}, {0xad7a,10}, {0x29999,5}, {0x1a3b7,4}, {0x2700d,5}, {0x259e3,6}, + {0x3879,5}, {0x1ccf0,5}, {0x15018,6}, {0x21efa,4}, {0x26ad7,5}, {0x609b,10}, {0x12d6e,6}, {0x238b,14}, + {0x969a,11}, {0x1981d,5}, {0x25a5b,6}, {0x5c6f,4}, {0x749e,12}, {0x22902,7}, {0xaa7a,8}, {0xd76,6}, + {0xe8b9,3}, {0x2316e,7}, {0x28dd7,4}, {0x25fb9,6}, {0x5e80,6}, {0x2a6db,3}, {0x10ae6,10}, {0x90ca,12}, + {0x24c23,6}, {0x19946,5}, {0x15581,5}, {0x28505,4}, {0x2ae2d,6}, {0xd74d,11}, {0x1a90,3}, {0x106d4,9}, + {0x2c0e2,4}, {0x13cc,11}, {0x5ca5,11}, {0xc0bc,10}, {0x7bb7,7}, {0x14580,8}, {0x6b2d,11}, {0x11422,6}, + {0x3e25,3}, {0x19be5,6}, {0x2be12,4}, {0x235d5,6}, {0x10866,10}, {0x10b3,3}, {0x1994f,5}, {0x1218e,10}, + {0x270f,7}, {0x2db64,2}, {0x2dac8,2}, {0x1b877,8}, {0xb21c,4}, {0xdc80,10}, {0x4c08,7}, {0x1f4c9,5}, + {0x2c464,6}, {0xbf93,6}, {0x606e,6}, {0x1fa41,7}, {0x239a4,6}, {0x2d5d2,3}, {0xd758,11}, {0x6b23,2}, + {0x15464,10}, {0x2ac3b,8}, {0x1db55,8}, {0x24a19,5}, {0xe52e,9}, {0x16733,9}, {0x19de6,9}, {0x285f1,3}, + {0x15e79,7}, {0x15540,10}, {0xa37e,12}, {0x56a5,13}, {0x293d3,5}, {0x1dd05,7}, {0x2738,3}, {0x28c46,4}, + {0x142ce,7}, {0xd87,17}, {0x1fd0b,6}, {0x17a08,9}, {0x10fd,9}, {0x26e45,6}, {0xba76,11}, {0x2344d,5}, + {0x5d14,6}, {0x1b0c0,7}, {0x13a2c,10}, {0x26523,6}, {0x10440,10}, {0x5a05,4}, {0xc44d,11}, {0x27214,3}, + {0x2ee3,9}, {0x2963b,3}, {0x2b65c,3}, {0x2c9bc,6}, {0x1fda3,6}, {0x1a026,7}, {0x6812,7}, {0x1afbd,2}, + {0x315e,4}, {0x735a,12}, {0x25401,6}, {0x2cd94,4}, {0x2b4e9,4}, {0x601b,9}, {0xc04e,6}, {0x2e56,4}, + {0x2c29c,2}, {0xc39,3}, {0x1c5f5,7}, {0x2173c,7}, {0x2520d,3}, {0x28a78,5}, {0x12688,6}, {0x18a51,9}, + {0x1307,5}, {0x71af,4}, {0x29333,4}, {0x4e53,4}, {0x2a7a1,5}, {0xacf6,8}, {0x133ae,10}, {0x2990d,5}, + {0x2ae51,6}, {0x2689d,6}, {0x2045,5}, {0x1f4d9,7}, {0x257a5,6}, {0xf49d,6}, {0xcf6a,6}, {0x5059,13}, + {0xf2a1,11}, {0xdcf9,11}, {0x297b5,5}, {0x16182,5}, {0x2cf39,2}, {0x2a5dc,3}, {0x2055b,5}, {0x1952e,8}, + {0xf05,9}, {0x1b6cb,4}, {0x2cb90,6}, {0xe57b,11}, {0x1bd25,8}, {0x292b1,5}, {0xfd88,6}, {0x18325,9}, + {0x14a14,2}, {0x3f41,3}, {0x6d26,12}, {0x5c32,5}, {0x182dd,7}, {0x23402,5}, {0x2275c,7}, {0x2f94,10}, + {0x30,102}, {0xe55a,11}, {0x141e,5}, {0xc96c,10}, {0x2a569,3}, {0x190b9,5}, {0x14ce6,8}, {0x7e54,3}, + {0x11a5e,10}, {0x2a69a,3}, {0xf823,5}, {0xed5d,6}, {0x2b674,3}, {0x1299a,10}, {0x7cfb,7}, {0x2a6d1,3}, + {0x2400a,5}, {0x131ce,7}, {0x224b5,7}, {0x14938,4}, {0x1e247,8}, {0x4ed6,4}, {0x2a668,3}, {0x23bdf,3}, + {0x14350,10}, {0x2a627,3}, {0x9b22,3}, {0x7e0c,3}, {0x3c6e,13}, {0x2d7c9,4}, {0xd63a,11}, {0x2cd52,4}, + {0x14648,10}, {0x2da1,9}, {0x2a970,3}, {0x17145,9}, {0x251d2,8}, {0x5676,7}, {0x1c52d,8}, {0x28425,2}, + {0x11d59,7}, {0x18b87,5}, {0x2a65e,3}, {0x220f0,7}, {0x254d5,5}, {0x1a97b,4}, {0x2b819,2}, {0x8bf6,10}, + {0x28331,3}, {0x1f3e1,5}, {0x14c44,8}, {0xff34,12}, {0x326c,6}, {0x43db,4}, {0x21730,5}, {0x2d719,3}, + {0x1bc75,8}, {0x28e10,3}, {0x2acbb,8}, {0x1b4f3,8}, {0xc227,11}, {0x2a4ba,3}, {0x1a04a,6}, {0x7788,6}, + {0x83c9,4}, {0xe9b,4}, {0x1717b,6}, {0x1d56d,8}, {0x1313,9}, {0x26619,5}, {0x10b68,10}, {0xf12,4}, + {0x1f683,6}, {0xe565,9}, {0x17324,9}, {0x20691,7}, {0x19517,3}, {0x260fd,6}, {0x9c0a,12}, {0x28be,10}, + {0x22b70,2}, {0xb42c,4}, {0x1daf,15}, {0x12f37,2}, {0x53e7,13}, {0x3a3e,14}, {0x2c542,4}, {0x17030,7}, + {0xf039,10}, {0x1249a,10}, {0x19513,9}, {0xd98,8}, {0x95ba,3}, {0x14184,9}, {0xf8c8,4}, {0x2b5a2,2}, + {0x14a3,4}, {0x2878b,8}, {0x10472,6}, {0x357c,5}, {0x7246,11}, {0x13ad6,10}, {0xfc1d,11}, {0x746e,12}, + {0x1d83f,8}, {0x139aa,10}, {0x9c02,8}, {0x20c47,7}, {0x1aeb6,7}, {0x2a7bf,5}, {0xfce3,5}, {0x6f92,12}, + {0x2d0cc,2}, {0xe242,11}, {0x192ee,9}, {0x2a622,3}, {0xc725,11}, {0x18313,9}, {0x1ed3,8}, {0x1131a,10}, + {0x5494,9}, {0x1a51f,4}, {0x2c794,6}, {0x29349,3}, {0x2180e,7}, {0x1ad3c,9}, {0x63c8,6}, {0x16544,7}, + {0x11f4a,10}, {0x244a7,6}, {0x2d318,2}, {0x11d10,10}, {0x11eaa,10}, {0x804,12}, {0x1bd01,4}, {0x3146,14}, + {0x10a64,10}, {0x12288,10}, {0x125f8,10}, {0x1b7f5,8}, {0x14f82,6}, {0xe8d5,5}, {0x24495,6}, {0x24645,12}, + {0x84dd,4}, {0x50f5,13}, {0x1fde9,8}, {0x1f111,7}, {0x23138,5}, {0x6b6c,12}, {0x2bcba,4}, {0x1bf0d,8}, + {0x5f49,13}, {0x15d4a,6}, {0x1ddcd,8}, {0x1f5c9,8}, {0x9916,12}, {0x2d0b9,3}, {0x739b,7}, {0x18337,9}, + {0x9622,11}, {0xa1c5,5}, {0x2a24,4}, {0x12bb6,7}, {0xd324,4}, {0x2631b,6}, {0x2981b,4}, {0x2917e,5}, + {0x1c04d,5}, {0x218db,5}, {0x17fc,16}, {0x5970,13}, {0x19f69,6}, {0xcc7,5}, {0x1bde5,8}, {0x27cca,6}, + {0x1c2ad,5}, {0x1a3a,5}, {0x1d395,7}, {0x3ca6,8}, {0x287cb,5}, {0x12a94,7}, {0x1410c,10}, {0xf47a,11}, + {0x103a0,10}, {0x26a17,6}, {0x789a,6}, {0x291e4,5}, {0x20339,6}, {0x1f001,8}, {0x1085a,5}, {0x248e5,12}, + {0x2bfb,4}, {0x28b3,2}, {0x1424c,10}, {0x1b27d,4}, {0x591b,7}, {0x19a4,15}, {0x2b94e,6}, {0xcf9c,10}, + {0x1f8d9,5}, {0x2ac0b,8}, {0x204eb,7}, {0x1d73,15}, {0x22587,5}, {0xc68b,11}, {0x1908c,7}, {0x31b6,7}, + {0x11dc,6}, {0x10526,10}, {0x8c56,12}, {0x39ce,14}, {0xb748,11}, {0x2c1c8,2}, {0x7e0a,9}, {0x188b6,6}, + {0x11f4c,8}, {0x2a604,3}, {0x1bb7d,5}, {0x2c6bc,4}, {0x417a,4}, {0x1be10,5}, {0x8b7e,12}, {0x6f0c,7}, + {0xf2c2,7}, {0xad86,12}, {0x67ed,5}, {0x152ae,8}, {0x3774,7}, {0x81ca,12}, {0x2a32d,5}, {0x2128b,7}, + {0x2986,3}, {0x14f7a,3}, {0x1a589,8}, {0x1ede9,8}, {0x423c,4}, {0x1716,5}, {0x1d592,3}, {0x29061,5}, + {0x1e31a,4}, {0x23748,7}, {0x1520c,10}, {0x2a792,5}, {0x146e2,6}, {0x2be42,4}, {0x216d8,6}, {0x1e627,8}, + {0xb1e4,5}, {0x1a49f,9}, {0x90d6,6}, {0x27049,6}, {0x2bf1e,4}, {0x1abd9,4}, {0x1b463,5}, {0x27067,5}, + {0x1a71,3}, {0x1e25f,8}, {0xae82,8}, {0x1f183,6}, {0x5efd,8}, {0x1e3aa,5}, {0xf8cc,3}, {0x12e4c,7}, + {0x8812,12}, {0xfc6f,4}, {0x2476d,8}, {0x2a78d,5}, {0x17633,9}, {0x1f33b,6}, {0xdc6a,6}, {0x6547,13}, + {0x2cf6e,3}, {0x272d,15}, {0x2d386,2}, {0x2d20c,3}, {0x254d,15}, {0x25e37,6}, {0x13c48,10}, {0x2b996,6}, + {0x6737,8}, {0x1733,9}, {0x15644,10}, {0xa591,2}, {0x8886,4}, {0x3dcc,13}, {0x2b0cb,6}, {0x1d215,7}, + {0x1d565,8}, {0x116cc,4}, {0x20f33,7}, {0x2aed5,4}, {0x20201,8}, {0x21a08,7}, {0x2cfe4,3}, {0xd1a,3}, + {0x1f579,8}, {0x3fe0,7}, {0xc2d7,7}, {0x1cef5,7}, {0x7859,5}, {0x2e68,6}, {0x22fbc,7}, {0x748d,5}, + {0x2a7b0,5}, {0x4e9f,7}, {0x26838,2}, {0xe5ff,11}, {0x8493,7}, {0x2a50f,3}, {0x1c80d,8}, {0x23f0e,7}, + {0x11f86,6}, {0x1852f,6}, {0x1ba65,5}, {0x28d4c,5}, {0x131c,16}, {0x1791e,9}, {0xc48f,11}, {0x2d359,3}, + {0x4a8f,13}, {0x14ec,16}, {0x11bc1,5}, {0x2040b,6}, {0xcc0b,6}, {0x1a496,9}, {0x48b1,6}, {0x4230,3}, + {0x1a445,6}, {0x1ad84,6}, {0x41a2,14}, {0x20a2e,3}, {0x17ea5,9}, {0x2a7c4,5}, {0x2c2c2,4}, {0x15818,3}, + {0x1adc3,9}, {0x157c,16}, {0x5845,12}, {0x1e2b9,3}, {0x858c,8}, {0x2b920,4}, {0x8070,10}, {0x4a27,12}, + {0x3336,8}, {0x218fc,7}, {0x3686,7}, {0x2450d,4}, {0x1967b,8}, {0x25ce7,6}, {0x20b0e,3}, {0x2445f,4}, + {0x1f7b1,8}, {0x7151,5}, {0x1e917,8}, {0x1ab73,7}, {0x17b31,9}, {0xe893,5}, {0x22582,5}, {0x271b1,6}, + {0x1477e,10}, {0x14316,4}, {0x197da,9}, {0x9076,9}, {0x2d821,4}, {0xd59c,4}, {0x6a82,13}, {0x19954,6}, + {0xf5f,3}, {0xeb81,5}, {0x23a8b,7}, {0x294cc,3}, {0x29643,4}, {0x271ab,5}, {0x1ad45,6}, {0x16568,9}, + {0x2da9f,2}, {0x295b0,5}, {0x2db5c,2}, {0x2b962,4}, {0xce1,7}, {0x18e6,8}, {0x12c77,7}, {0x8e2a,12}, + {0x1934b,3}, {0x21630,5}, {0x200d1,8}, {0x734,72}, {0x8766,4}, {0x13a4a,10}, {0x23d63,7}, {0x152b8,3}, + {0x4526,4}, {0x2b96,14}, {0x1ac1,13}, {0xe87d,10}, {0x27b59,5}, {0x231b7,3}, {0x2c6d4,6}, {0x2268,4}, + {0x2184d,7}, {0x14e38,10}, {0x9316,10}, {0x14e42,9}, {0x14b72,7}, {0x1f6c1,8}, {0x255c,8}, {0xb880,4}, + {0xcf02,11}, {0x6359,9}, {0x12bd4,10}, {0x1a99f,5}, {0x2a74c,5}, {0x6e05,5}, {0x4a75,8}, {0xb4da,5}, + {0x1d5a,8}, {0x155f4,9}, {0xc23d,11}, {0x30a3,8}, {0x14c0a,5}, {0x2a8ec,4}, {0x2582b,6}, {0x996a,12}, + {0x2d350,2}, {0x1bf05,8}, {0x2cecd,5}, {0x134c8,10}, {0xb50c,10}, {0x1bc25,8}, {0x24291,3}, {0x24bfc,3}, + {0x1c65d,8}, {0x19d01,4}, {0x9a9,32}, {0x2978b,2}, {0xa878,6}, {0x16c86,5}, {0xbd62,11}, {0x2be8e,4}, + {0x236a3,4}, {0x269ed,5}, {0x1a8ce,9}, {0x67de,12}, {0x13200,10}, {0xed6e,11}, {0xd3f3,8}, {0x4f89,13}, + {0x20223,3}, {0x2da3f,2}, {0x2a797,5}, {0x120a8,9}, {0x1a793,9}, {0x29cb9,5}, {0x7cba,12}, {0x1665b,5}, + {0xd67c,11}, {0x1a296,3}, {0x2596f,6}, {0x2d6fd,2}, {0x2ade3,5}, {0x1058e,6}, {0x156f8,10}, {0x22c7f,4}, + {0x10038,4}, {0xf6ef,11}, {0x1258a,10}, {0x233e4,7}, {0x27787,6}, {0x133bc,6}, {0xacae,5}, {0x2a783,5}, + {0x20f74,5}, {0x1a158,9}, {0x26589,4}, {0x11f22,10}, {0x23573,7}, {0x13734,10}, {0x10870,5}, {0x9c5e,12}, + {0x1850b,9}, {0x21cf9,7}, {0xf6b8,11}, {0xb283,11}, {0x1cd35,8}, {0x6518,7}, {0x1f16b,6}, {0x567e,13}, + {0x2d9dd,4}, {0x1e517,8}, {0x1a565,9}, {0xee34,7}, {0x2d161,3}, {0x12e4,4}, {0xbe82,9}, {0xad88,4}, + {0x22ef1,7}, {0xd55e,11}, {0x18cac,9}, {0x18891,7}, {0x145ee,10}, {0x2cf48,3}, {0x18a67,5}, {0x3c36,14}, + {0x2b555,4}, {0xc2d7,11}, {0xf0de,10}, {0x16f44,6}, {0x19930,5}, {0x474a,5}, {0x2bd9a,4}, {0x14936,6}, + {0x111a4,3}, {0x29bdd,5}, {0x129c2,9}, {0x269d8,3}, {0x5ead,9}, {0xb191,11}, {0x7e9a,8}, {0x139fa,10}, + {0x6c3c,13}, {0xdbf,12}, {0x18a87,9}, {0xf424,9}, {0x2767f,6}, {0x50a7,8}, {0x2bdf4,2}, {0x18fa0,9}, + {0x1679f,9}, {0x29579,5}, {0x2a6d6,3}, {0x21f3e,5}, {0x258df,5}, {0x234f5,6}, {0x106a,9}, {0x25627,6}, + {0x23469,7}, {0x100ec,10}, {0x2a4bf,3}, {0x1a4c6,5}, {0x13d7e,7}, {0x5c8d,11}, {0x10860,6}, {0xd5b0,6}, + {0x47b2,4}, {0x1a304,4}, {0x26999,5}, {0x305e,8}, {0x1d23d,8}, {0x181f3,9}, {0x2a7c9,5}, {0x25331,8}, + {0x2df2,6}, {0x2d4c7,3}, {0x293d8,5}, {0x9352,12}, {0xa7ac,3}, {0x20553,5}, {0xa7f2,4}, {0x2f32,11}, + {0x1825f,9}, {0x1f561,7}, {0xa19,8}, {0x1d55,15}, {0xe7e3,11}, {0x2857e,3}, {0x23bb1,7}, {0x8362,12}, + {0x127c4,10}, {0x2743f,5}, {0x3104,5}, {0x15716,10}, {0x6faa,12}, {0xf023,11}, {0xf8bd,11}, {0x1f7b3,6}, + {0x16b62,8}, {0x2868,5}, {0x149b0,8}, {0x85f6,12}, {0xb564,11}, {0x3d32,14}, {0x2cb0c,6}, {0x19ab3,9}, + {0x2d0f2,3}, {0x17279,7}, {0x10f20,8}, {0x22406,6}, {0x1f851,8}, {0x14ba4,6}, {0x25141,3}, {0x4fbd,6}, + {0x26fa1,5}, {0x360f,7}, {0x27a87,6}, {0x2b8c0,4}, {0x29994,4}, {0x946,5}, {0x3bf5,8}, {0x10f78,9}, + {0x18c1c,9}, {0x36c6,6}, {0x22cef,10}, {0x26411,6}, {0x278bc,3}, {0x1cd0,8}, {0x7972,11}, {0xc54d,5}, + {0x2c572,4}, {0x19ba,8}, {0x29c55,5}, {0x9616,12}, {0x1c0e5,8}, {0x145cd,3}, {0x145b4,5}, {0x5c2e,9}, + {0x2189a,7}, {0x53f4,7}, {0x1573e,5}, {0xa4d5,5}, {0x27b6,9}, {0x263c9,6}, {0x14e76,4}, {0xdc90,6}, + {0x23859,7}, {0x2573d,6}, {0x234db,5}, {0x1e7ff,8}, {0x27df4,9}, {0x268d3,6}, {0x2db84,2}, {0x2197c,7}, + {0x21550,7}, {0x21a71,9}, {0x15d5b,6}, {0x1d5e7,3}, {0x1add7,6}, {0x185b6,9}, {0x59b1,5}, {0x1b0c0,5}, + {0x222e5,7}, {0xdd7d,11}, {0xf37d,11}, {0x1fc31,5}, {0x2a1b3,3}, {0x9e9,42}, {0x2a79c,5}, {0x2bc9a,4}, + {0x26e33,6}, {0x2269f,7}, {0x1cb5d,8}, {0x29414,5}, {0x14d5c,6}, {0x519e,13}, {0x2a6de,5}, {0x2c6a4,6}, + {0x2b021,4}, {0x1ea52,5}, {0x22f37,5}, {0x1f299,5}, {0x2984a,2}, {0x121e0,7}, {0x2c6da,4}, {0x2912,14}, + {0x2a505,3}, {0x2aee2,3}, {0x9c9,5}, {0x46e7,13}, {0x1ed49,6}, {0xcb57,4}, {0xae3a,10}, {0x210a1,7}, + {0x1a685,9}, {0x2c5e,3}, {0x2ca0a,6}, {0x2a4a1,3}, {0x1abd4,5}, {0x21684,7}, {0x5a26,13}, {0x2ae7d,4}, + {0x2214,10}, {0x4b32,4}, {0x6805,13}, {0xd1fe,6}, {0x15ac,6}, {0xd727,5}, {0x9c16,12}, {0x29bbf,5}, + {0x6b52,13}, {0xf6db,9}, {0x1ae35,3}, {0x17b7b,7}, {0x6347,5}, {0x2a5ff,3}, {0x1e997,8}, {0x265f5,6}, + {0xa86c,7}, {0x26c13,4}, {0x22db,3}, {0xb6a5,4}, {0xfd06,4}, {0x2947d,5}, {0x278b9,5}, {0x23017,4}, + {0x59be,8}, {0x8490,10}, {0xfdbf,6}, {0x16c3a,9}, {0x2c848,6}, {0x9cc0,7}, {0xecf,12}, {0x2bf68,2}, + {0x114d2,10}, {0x2522c,9}, {0x273ab,4}, {0x291ba,4}, {0xf47c,2}, {0x1503a,4}, {0x235c0,7}, {0x2aab,4}, + {0x17a11,9}, {0xae76,11}, {0x2b753,3}, {0x3704,9}, {0xf0c3,5}, {0xfe0,4}, {0x279d5,4}, {0xdc6a,9}, + {0x10c2b,5}, {0x18580,8}, {0x4bad,8}, {0x2a618,3}, {0x1b693,5}, {0xa532,8}, {0xc165,6}, {0x13d94,8}, + {0x25ed9,6}, {0x17c65,8}, {0x13d06,9}, {0x6c22,13}, {0x13e1,3}, {0x12210,9}, {0x1a6e8,5}, {0x2ac43,8}, + {0x516a,13}, {0x179a5,9}, {0x28cba,5}, {0x28a1b,5}, {0xecf,2}, {0x14fb4,8}, {0x9e56,12}, {0xc319,11}, + {0x20afc,3}, {0x17f91,5}, {0x7a6e,12}, {0x24a01,8}, {0x2d16a,3}, {0xf22a,4}, {0xb6b9,10}, {0x11284,10}, + {0xacc8,3}, {0x19cad,3}, {0x1aa53,2}, {0x1873,5}, {0x6636,5}, {0x256ad,6}, {0x2d77,9}, {0xf0ff,11}, + {0x11b79,6}, {0xb850,11}, {0xf4a6,10}, {0x2a0e,14}, {0x9360,8}, {0x1cd7d,8}, {0xfe89,7}, {0xbde6,11}, + {0x1bad5,8}, {0x1a1e1,7}, {0x22d00,7}, {0x141b6,7}, {0x1dcd,14}, {0x1a271,7}, {0x21181,7}, {0xaa1a,12}, + {0x13bd3,7}, {0x2a58f,5}, {0xfff6,6}, {0xa46e,11}, {0x1d999,6}, {0xfb88,5}, {0xf28b,11}, {0x9eac,10}, + {0x16d38,9}, {0x103aa,10}, {0x2a4a6,3}, {0xa083,7}, {0x172c8,9}, {0x2287b,6}, {0x1cecd,8}, {0x798a,11}, + {0x1d67f,8}, {0x2aff5,3}, {0x29d5b,5}, {0x18016,9}, {0x2b6bf,4}, {0x2da91,2}, {0xeb3d,11}, {0x2cddc,6}, + {0x2253a,7}, {0x8506,9}, {0x2a5f3,5}, {0x14b92,8}, {0xed68,6}, {0x193ea,6}, {0x2c746,4}, {0x12f5c,5}, + {0xac7e,6}, {0x1711,4}, {0x5e3f,6}, {0xdcb,14}, {0xfd7f,4}, {0x7e0e,8}, {0x2a884,3}, {0x18970,8}, + {0x24519,6}, {0x12c60,9}, {0x1fad1,5}, {0x28ce,3}, {0x2933,3}, {0x22dd9,7}, {0x19e0c,7}, {0xc9fb,11}, + {0x2176,8}, {0x2776f,6}, {0x3ae6,13}, {0x12396,10}, {0x22b0c,5}, {0x1c9e5,6}, {0x9ce4,8}, {0x960a,11}, + {0x6d83,3}, {0x30,104}, {0x25033,3}, {0x27b1f,3}, {0x28411,5}, {0x28dd9,3}, {0x9b1a,8}, {0x15182,3}, + {0x1be15,7}, {0x7a0e,12}, {0x22445,7}, {0x2a677,3}, {0x14710,5}, {0x20a31,5}, {0x2ab2b,8}, {0x19b06,7}, + {0x18183,4}, {0x2a8fb,5}, {0x20dc,3}, {0x19fba,8}, {0x23952,4}, {0x27265,6}, {0x1c9ed,8}, {0x119fa,10}, + {0xaeb2,7}, {0xb0a7,3}, {0x2c5c,7}, {0xb442,4}, {0x1543c,10}, {0x192af,8}, {0x24981,12}, {0x21797,7}, + {0x6dd7,4}, {0x2bdf2,4}, {0x6eb1,3}, {0x23f38,6}, {0x1aa75,9}, {0x10b22,10}, {0x164ad,7}, {0x1b523,8}, + {0x18916,9}, {0x5c7a,4}, {0xf8f4,8}, {0x2d695,3}, {0x949b,5}, {0x1d207,3}, {0x27241,5}, {0x82f6,7}, + {0x2cdd0,6}, {0x250ed,4}, {0x2d34a,2}, {0x2908b,3}, {0xcb7,3}, {0x2bd84,2}, {0x1699b,5}, {0xaed6,11}, + {0x2a64a,3}, {0xbc91,11}, {0x24424,7}, {0x4de1,8}, {0x1e6d7,8}, {0x1d3fd,5}, {0xebd7,7}, {0x2628b,6}, + {0x14206,10}, {0x11770,5}, {0xad34,10}, {0xced,5}, {0x17819,9}, {0x124e0,10}, {0x1542a,8}, {0xcab,10}, + {0x1ee31,8}, {0x1f243,6}, {0x28f35,5}, {0x1e75f,8}, {0x2b181,4}, {0x1c63f,6}, {0x24a2d,5}, {0x1a8e,6}, + {0x2c22c,2}, {0x13056,6}, {0x1e837,8}, {0xb29b,7}, {0x4d81,13}, {0xef52,7}, {0x6e7a,6}, {0x53e0,6}, + {0x24bab,6}, {0x20409,8}, {0x156c,16}, {0xdd0a,3}, {0x266c1,6}, {0x18ffa,9}, {0x2a546,3}, {0x1d8e7,8}, + {0x1a7db,6}, {0xeaa3,11}, {0x24fd3,6}, {0x1be0,4}, {0x14422,8}, {0x92c8,5}, {0x14c03,3}, {0x1a0af,7}, + {0x1f961,8}, {0x5e52,11}, {0x1a408,7}, {0xf275,10}, {0x1568c,3}, {0x1e0dd,8}, {0x2aefd,3}, {0x2a779,5}, + {0xa141,9}, {0x2d031,3}, {0x18ef5,9}, {0xee4a,11}, {0x2b998,4}, {0x12062,10}, {0x229e2,7}, {0x28da1,7}, + {0x76ea,12}, {0x1df19,6}, {0xb942,7}, {0x18d2a,9}, {0x14e2e,10}, {0x1fdf9,8}, {0x10230,4}, {0x2949b,5}, + {0xee4e,4}, {0x2c6ec,4}, {0x20399,8}, {0x1a1f5,2}, {0x2a55f,3}, {0x288ed,3}, {0x2b9c0,6}, {0x27dbd,6}, + {0xc87,5}, {0x2a5d7,3}, {0x29e89,2}, {0x3b32,8}, {0xb068,4}, {0x13124,4}, {0xc998,10}, {0x291f3,5}, + {0xfd3b,7}, {0xed65,8}, {0xff70,10}, {0x15788,12}, {0x25903,6}, {0x10de8,10}, {0x10332,10}, {0xe258,11}, + {0x17eef,7}, {0x2c82a,6}, {0x29ede,3}, {0x18795,7}, {0x1628d,9}, {0x165a7,8}, {0x1e070,5}, {0x479d,13}, + {0x221cd,7}, {0x18d6b,7}, {0x145bc,6}, {0x28be,14}, {0x80d0,4}, {0x2a41f,3}, {0xf424,3}, {0x26a23,5}, + {0x2326a,7}, {0xa8f1,6}, {0x1fc21,6}, {0x23668,5}, {0x756d,4}, {0x137d4,10}, {0x6325,12}, {0x203bb,2}, + {0xcf0,3}, {0x1a876,6}, {0x1190,3}, {0x1ee93,5}, {0xfb48,11}, {0x14b8,3}, {0x2bb84,2}, {0x2a3ed,3}, + {0x23c8a,5}, {0x23a92,7}, {0x29544,3}, {0x20724,5}, {0x1f0b9,8}, {0x2bb82,4}, {0x23741,7}, {0x2b832,4}, + {0x1a388,9}, {0xd529,5}, {0x2d2ed,3}, {0x1aafc,8}, {0x2b34e,3}, {0x1ac91,9}, {0x13db2,5}, {0x1c915,8}, + {0x1fe89,8}, {0x1c315,8}, {0x9f82,12}, {0x2cd58,4}, {0xbd93,6}, {0x20eca,7}, {0x45af,13}, {0x17b11,2}, + {0x148ca,5}, {0x4cff,13}, {0x5302,4}, {0xde22,11}, {0xd54,8}, {0xab5e,12}, {0x18982,9}, {0x2a4b0,3}, + {0x17d07,9}, {0x1fc69,5}, {0xceb,11}, {0x19f47,3}, {0x28fa5,3}, {0x1a502,9}, {0x2d203,3}, {0xc340,4}, + {0x1aaee,5}, {0x1a76b,2}, {0x1615e,6}, {0x39f8,8}, {0x233c8,7}, {0x2365a,7}, {0x1742,7}, {0x16dc8,9}, + {0xc90f,5}, {0x31e5,7}, {0x26042,3}, {0x5032,8}, {0x18bf1,4}, {0x13482,10}, {0xc7ca,11}, {0x1d9f8,5}, + {0xeee,9}, {0x27d4f,6}, {0x2db24,2}, {0x29930,4}, {0x27a93,6}, {0x13b36,2}, {0x16a5,5}, {0x1a624,7}, + {0x126ea,5}, {0x90f6,4}, {0x2d6c0,2}, {0x41ea,3}, {0x26d0d,5}, {0x219b4,7}, {0x1644,8}, {0x18f4f,9}, + {0xdb6f,8}, {0x90e4,5}, {0x1a4b3,3}, {0xd506,8}, {0xcfde,9}, {0x151da,10}, {0x27fbd,5}, {0x2b604,3}, + {0x10468,10}, {0x25fd7,6}, {0xcdf4,5}, {0x74b6,11}, {0x2d311,3}, {0x15c5d,7}, {0x414e,5}, {0x2936f,5}, + {0x2cabe,6}, {0x14cb2,7}, {0x1196e,10}, {0x1ccc7,6}, {0x13826,7}, {0x2c92,12}, {0x23017,7}, {0x236ed,7}, + {0x1f2e9,8}, {0x15992,9}, {0x11c70,5}, {0xcb87,11}, {0xf2b7,11}, {0x16b50,6}, {0x214cb,7}, {0x1495e,7}, + {0xfa8d,8}, {0x2be5e,4}, {0x240a7,4}, {0x8f92,5}, {0x136e,4}, {0xf5d1,11}, {0x2c67a,4}, {0x1dadd,8}, + {0x22340,6}, {0x13e7a,5}, {0xdc49,11}, {0xe13d,4}, {0x3dda,8}, {0x14186,7}, {0x8a24,5}, {0x26f65,6}, + {0xbf35,6}, {0x1aa00,6}, {0x20a85,4}, {0x1b0f6,9}, {0x28f5d,5}, {0x173b4,9}, {0x1c17d,8}, {0x28ee0,5}, + {0x2a31b,3}, {0x1e407,8}, {0x83df,7}, {0x22972,6}, {0x2da87,2}, {0x2af29,4}, {0xb0a6,4}, {0x14cb4,5}, + {0xcb5,18}, {0x1f619,8}, {0xfdf,5}, {0x23cc2,7}, {0x845e,12}, {0x2b722,2}, {0x17f11,6}, {0x2cfbf,3}, + {0x2be8a,4}, {0x114c,9}, {0x1053a,10}, {0xe10e,11}, {0x23a06,7}, {0xab9a,4}, {0x2c92,5}, {0x22db,8}, + {0x1a7ae,6}, {0x22ab4,7}, {0x14e4c,7}, {0x1b217,16}, {0x2d022,3}, {0x13177,7}, {0x15819,8}, {0x2a483,3}, + {0x2ba6e,6}, {0x2a89d,3}, {0x13aae,7}, {0x195d0,8}, {0x72d8,6}, {0x1709d,5}, {0x1502e,4}, {0x981d,6}, + {0x5fbe,9}, {0x19c65,4}, {0x21183,5}, {0xf115,10}, {0x2733f,4}, {0x2c08a,4}, {0x217dd,7}, {0x23de8,5}, + {0x12e86,10}, {0xadd,12}, {0x14d84,10}, {0x2906b,4}, {0x2a5c1,5}, {0x14763,7}, {0x298cc,5}, {0x2a456,3}, + {0x26109,6}, {0x27d7b,6}, {0x1100e,10}, {0x1af10,9}, {0x5587,11}, {0x2db58,2}, {0x26f74,2}, {0x2431a,5}, + {0xfded,3}, {0x1ef89,8}, {0x2b1e,8}, {0x1cb0,15}, {0x19cd8,5}, {0x27a6f,6}, {0x2153,9}, {0xf48,3}, + {0x2d0b6,3}, {0x28653,5}, {0x17be9,6}, {0x4bfb,12}, {0x1adf,15}, {0x19eac,9}, {0x22ca4,5}, {0x1c24d,8}, + {0x250a5,6}, {0x1224c,10}, {0x23df6,7}, {0x6f16,7}, {0x289a7,7}, {0x18766,8}, {0x25003,6}, {0xcf39,11}, + {0x7b3a,7}, {0x2af82,3}, {0x11446,9}, {0x26fb9,6}, {0x2c5c0,4}, {0x68fc,12}, {0x1f383,6}, {0x18502,9}, + {0x25a67,6}, {0x2350c,3}, {0xb186,10}, {0x2c0de,4}, {0x287bd,5}, {0x7406,4}, {0x12958,6}, {0x1da0d,8}, + {0x8782,12}, {0x5d39,4}, {0xe99b,6}, {0x10ffa,6}, {0x1748c,6}, {0x532,62}, {0x25bb5,6}, {0xd910,11}, + {0x6b3a,6}, {0xf60d,6}, {0x21036,6}, {0xdba4,6}, {0x2b1d7,4}, {0x2beca,4}, {0x14b40,10}, {0xf228,5}, + {0xb2c5,5}, {0xf71b,5}, {0x2c100,2}, {0x13b58,7}, {0x288f5,5}, {0x2aeed,3}, {0x1cfe1,8}, {0x7d8b,7}, + {0x381c,4}, {0xf896,6}, {0x14b4a,10}, {0x17c72,5}, {0x2c5a,14}, {0x8a0c,4}, {0x1ca08,4}, {0xe329,11}, + {0x1a8e2,4}, {0x1b207,16}, {0x22698,7}, {0x1e2ef,8}, {0x1cdb8,5}, {0x156c,15}, {0x1823b,9}, {0xe70c,6}, + {0x28049,5}, {0x180c,5}, {0x4484,11}, {0x22cec,3}, {0x6081,6}, {0x233ac,7}, {0x10e56,10}, {0x16164,9}, + {0x1cd8d,8}, {0x1a205,7}, {0x37f2,8}, {0x1488e,3}, {0x5413,8}, {0x268d9,6}, {0x2954c,5}, {0x1c66d,8}, + {0x2093c,7}, {0x8faa,12}, {0x15819,3}, {0x29d9,4}, {0xa52e,12}, {0x1a4b3,2}, {0x21b4e,7}, {0x2ca82,6}, + {0x25010,5}, {0x12bf2,9}, {0x25d05,6}, {0xb056,7}, {0x1fe49,8}, {0x256c5,6}, {0x1f819,6}, {0x1fba1,8}, + {0x144cc,6}, {0x18c7,11}, {0xee4,4}, {0x17b28,9}, {0x232f6,6}, {0x11e1e,10}, {0x1463,4}, {0x1ae14,9}, + {0x532,88}, {0x23d6,13}, {0x22fa2,5}, {0x19a8,9}, {0x12cd8,9}, {0x24a21,8}, {0x1eb41,8}, {0x4212,9}, + {0xe0ab,11}, {0x147c4,10}, {0x1015c,8}, {0x128f,3}, {0x173fc,9}, {0x19657,9}, {0x30,106}, {0x28058,5}, + {0x1c64d,6}, {0xaa4a,6}, {0x2b9c2,4}, {0x21766,7}, {0x25210,6}, {0x2a4c9,3}, {0xbe75,11}, {0x1aceb,9}, + {0x14fc,16}, {0x4c72,7}, {0x11ac,10}, {0x1f411,8}, {0x279db,4}, {0x2c5b4,4}, {0x12f30,10}, {0x1906,8}, + {0xff10,8}, {0x1faeb,5}, {0xfe22,10}, {0x26eed,6}, {0x23f41,5}, {0xf485,8}, {0x7426,12}, {0x238b7,4}, + {0x430,21}, {0x1ed11,8}, {0x18b8,7}, {0x27a99,6}, {0x27a3f,6}, {0x4362,11}, {0x6ca4,13}, {0x2d665,3}, + {0x232c5,7}, {0x12085,5}, {0x2ae13,6}, {0x26975,6}, {0x21e91,5}, {0x22b6c,7}, {0x4350,3}, {0x292e,11}, + {0x158f7,3}, {0x6ed3,9}, {0x1590b,9}, {0x27016,3}, {0x1d1d7,5}, {0x298ea,4}, {0x2d6b0,3}, {0x1662e,9}, + {0x1abb0,8}, {0x22d5d,5}, {0x18240,3}, {0x1f3d9,8}, {0x23fd4,5}, {0x1d31d,8}, {0xef1b,11}, {0x2a751,5}, + {0x2b930,6}, {0x27aa5,6}, {0x27d2d,4}, {0x2a964,4}, {0x26cfb,6}, {0x212e6,7}, {0x2a701,5}, {0x29c69,5}, + {0x2a639,5}, {0x104b8,10}, {0xd687,8}, {0x2402d,7}, {0x21356,6}, {0x2989a,5}, {0x1fb79,8}, {0x225e9,7}, + {0xa4b,6}, {0x2a76f,5}, {0x2885c,7}, {0x1d437,6}, {0x19d8c,9}, {0x1e5e7,6}, {0x2070,15}, {0xdfc0,4}, + {0xbd59,4}, {0x2a774,5}, {0x7d02,8}, {0x35fd,4}, {0xd179,7}, {0x957a,8}, {0x1cb0d,8}, {0xe9cd,5}, + {0x2974c,5}, {0x106ac,9}, {0x26e75,6}, {0x26531,3}, {0x4bc7,12}, {0x2d9c,14}, {0x1b5c3,8}, {0x1ab8c,9}, + {0x15290,8}, {0x1af2b,9}, {0x4cd8,13}, {0x27673,6}, {0x2b58f,3}, {0x24c53,6}, {0x876a,10}, {0xa28e,11}, + {0xb8a,8}, {0x22595,6}, {0x9b92,12}, {0x1a663,2}, {0x22739,6}, {0x4e92,13}, {0x11042,4}, {0x20179,7}, + {0x24028,5}, {0xf367,9}, {0x17c0b,9}, {0x16718,6}, {0xf4a8,9}, {0x2b35d,4}, {0x26ac5,4}, {0x6ebb,11}, + {0xf710,11}, {0x3787,7}, {0x1fa21,8}, {0x47f1,7}, {0x17c2f,7}, {0x1c6a5,8}, {0x2b8cc,4}, {0x12f62,7}, + {0x5490,13}, {0x276b,13}, {0x2a5a5,3}, {0x29d18,4}, {0x16071,9}, {0x1f9a1,5}, {0x11eb4,9}, {0x273dc,3}, + {0x27a2d,6}, {0x24264,7}, {0x21372,7}, {0x29098,4}, {0x13446,10}, {0xd3e1,4}, {0x8122,9}, {0x8c92,12}, + {0x1ae79,7}, {0x27caf,6}, {0xaa81,5}, {0x11f90,10}, {0x1def9,6}, {0x15eb8,6}, {0x23780,7}, {0x4573,8}, + {0x1a982,6}, {0x5f3c,12}, {0x1aff,9}, {0x23c83,7}, {0x2158f,7}, {0x20291,8}, {0x1dc5d,8}, {0x2387f,4}, + {0x28ee7,3}, {0x11fd6,10}, {0x904c,6}, {0xc559,4}, {0x1dc65,8}, {0x1e7a,6}, {0xdfb3,6}, {0x164d8,6}, + {0x2a6a2,5}, {0x1bfdd,8}, {0x2a54b,3}, {0x11347,5}, {0xbc7d,6}, {0x1e54,15}, {0x244e,15}, {0x2a3b1,3}, + {0xf8ff,5}, {0x50ce,6}, {0x2cf1d,2}, {0x20645,6}, {0x4e63,8}, {0x148cb,4}, {0x22308,7}, {0xb7f,5}, + {0x1712c,6}, {0x432,21}, {0x25d17,5}, {0x4903,5}, {0x1abbf,3}, {0xd808,11}, {0x1e977,7}, {0x86b6,12}, + {0x1b88d,14}, {0x1d4ed,8}, {0xbc46,6}, {0x20401,8}, {0x169b2,9}, {0x1fb59,6}, {0x29af7,4}, {0x26a59,6}, + {0x11036,7}, {0x2770f,6}, {0x1ee54,5}, {0x6cbe,13}, {0x47f8,8}, {0x1fb83,4}, {0x1e75f,7}, {0x1e14,4}, + {0x131ce,10}, {0x273e2,3}, {0x49bf,13}, {0x29861,5}, {0x29c91,5}, {0x14fe6,10}, {0x9c9,32}, {0x23e76,3}, + {0xf2cf,9}, {0x1e909,3}, {0x7d02,9}, {0x1e667,7}, {0x29eaa,5}, {0x3712,14}, {0x1672a,8}, {0x5b44,13}, + {0x10a0f,5}, {0x2a5cd,3}, {0xdb15,11}, {0x13160,9}, {0x22502,7}, {0x23f0a,2}, {0x48ef,13}, {0x29338,4}, + {0x58c7,9}, {0x23d94,5}, {0xcfca,9}, {0x2bb86,4}, {0x4a60,3}, {0x8f9e,12}, {0x1e5cf,8}, {0x2c1f6,4}, + {0x432,18}, {0xfd30,7}, {0xf87d,3}, {0x13d24,7}, {0x21fe2,4}, {0xbb4b,6}, {0x13e34,7}, {0x2c10e,4}, + {0x49d9,13}, {0xa19,14}, {0xad9e,7}, {0x14594,7}, {0x1915,3}, {0xe499,5}, {0x2bd12,4}, {0x1421a,6}, + {0x18979,9}, {0xe415,6}, {0xc5d9,10}, {0xde1a,3}, {0x1fe11,5}, {0x240de,5}, {0x11fea,10}, {0x10fb,5}, + {0x10fdc,10}, {0x1256,4}, {0x12f6c,10}, {0x153a6,9}, {0x152de,6}, {0x309e,14}, {0x4c4f,7}, {0x9fca,12}, + {0x27f2,4}, {0xa67e,12}, {0xa8ca,5}, {0x29171,3}, {0x17954,9}, {0x68fe,10}, {0x4404,4}, {0x159b3,4}, + {0x16880,6}, {0x2d356,3}, {0x1c7d5,8}, {0x430,19}, {0xd834,8}, {0x52c9,13}, {0x1b4e3,3}, {0x2c650,6}, + {0xf8ff,6}, {0x12b2a,10}, {0x2aeda,3}, {0x64e4,7}, {0x13a54,10}, {0x2a6c2,3}, {0x2d2f9,3}, {0x2c3aa,4}, + {0x2bfec,2}, {0x2c710,4}, {0x29277,2}, {0x4c3e,4}, {0xd48d,7}, {0x1b39,15}, {0x17662,4}, {0x1f17,13}, + {0x1aae1,6}, {0x2682,6}, {0x1198f,7}, {0x1ed41,8}, {0x23d6,15}, {0x156a0,8}, {0xaed6,12}, {0x28e4,4}, + {0x3fee,14}, {0x147ec,10}, {0x2aeea,3}, {0x111b2,10}, {0x282c,15}, {0x1c905,8}, {0x11162,10}, {0x127ec,10}, + {0x1d8f7,6}, {0x1217a,9}, {0x28d29,5}, {0x292d9,5}, {0x19f45,5}, {0x21395,6}, {0xd128,11}, {0x4416,3}, + {0x1a609,3}, {0x2699f,6}, {0x226ad,7}, {0x1c2b5,5}, {0x7d86,6}, {0xf6ba,3}, {0x2ba5c,6}, {0x7b10,6}, + {0x1ec49,8}, {0x2a578,3}, {0xf2e3,5}, {0x956e,12}, {0x98ce,12}, {0x2efa,14}, {0x14d5e,3}, {0x1317e,7}, + {0x14f32,10}, {0x335a,14}, {0x20f10,7}, {0xf162,8}, {0x14612,4}, {0x1d,3}, {0x1b869,8}, {0x2ccc8,6}, + {0x515d,10}, {0xac7e,10}, {0x1165d,5}, {0x5ec7,13}, {0x1fe84,5}, {0x1ff1b,6}, {0x1e2df,8}, {0xbbe,3}, + {0x257ab,6}, {0x2be96,4}, {0x1f659,8}, {0x2cfec,3}, {0x105c6,9}, {0x21cdf,5}, {0x1b0f8,4}, {0x2bbba,4}, + {0xfd5f,8}, {0x28d5b,5}, {0x16b1,11}, {0x25689,4}, {0x26c7d,6}, {0x19f2a,9}, {0x1b5a3,4}, {0xa162,7}, + {0x1a0ee,4}, {0x534b,13}, {0x11cde,9}, {0x273e,4}, {0x2ce06,6}, {0x13e78,9}, {0xd36f,10}, {0x16892,9}, + {0x2b8ea,4}, {0x228b8,3}, {0x284af,5}, {0x4fb0,13}, {0x12904,10}, {0x146b6,6}, {0xdac,7}, {0x9b08,6}, + {0x1f923,3}, {0x5495,4}, {0x7d7a,12}, {0x2096d,3}, {0x27a33,6}, {0x1b06f,7}, {0x22948,7}, {0x1eb81,7}, + {0xfd53,5}, {0x26e51,6}, {0x2868e,4}, {0x14ab2,10}, {0x14b2e,4}, {0x1c7ad,8}, {0x2a76a,5}, {0x285a1,3}, + {0x20a1,3}, {0x2949d,2}, {0x2b3d2,3}, {0x263f,4}, {0x2a3f2,3}, {0x27dbd,10}, {0x2aead,4}, {0x8cce,8}, + {0x1950a,6}, {0x1436e,4}, {0x23950,7}, {0x214d9,7}, {0x1fc93,6}, {0x1467a,10}, {0x190ba,4}, {0x1265c,10}, + {0x1bf17,6}, {0x924,7}, {0x71ce,12}, {0x17789,9}, {0x2b768,2}, {0x12738,10}, {0x19044,6}, {0x1545a,9}, + {0x21f1b,7}, {0x170c,15}, {0x12558,10}, {0xc059,11}, {0x2701f,5}, {0x2aff5,4}, {0x2a47e,3}, {0x2c04e,4}, + {0x187c0,9}, {0x1da9d,8}, {0x432,22}, {0x2b3a1,4}, {0xf535,11}, {0x2a706,5}, {0x8a59,5}, {0x6f57,11}, + {0x10850,5}, {0x4612,5}, {0x1bb35,8}, {0x2a3d4,3}, {0xe938,11}, {0x18610,9}, {0x1f141,6}, {0x25dfd,6}, + {0x35f3,7}, {0x18862,9}, {0x2d08f,3}, {0x1e3cf,8}, {0x77c2,12}, {0x3a68,7}, {0x19a08,9}, {0xceda,3}, + {0xb149,6}, {0x2cd6a,6}, {0x258df,6}, {0xfff,3}, {0x26187,6}, {0x1d535,8}, {0x14328,10}, {0x9b62,12}, + {0xc576,11}, {0x1f001,5}, {0x20b40,11}, {0x2a596,3}, {0x21880,5}, {0x2f6a,14}, {0x15c17,7}, {0x26f8b,3}, + {0x13b76,10}, {0x2d10,5}, {0x193a4,7}, {0x8058,9}, {0x1952b,3}, {0x13e35,6}, {0x146de,10}, {0x79ba,12}, + {0xede7,11}, {0x271e7,6}, {0x17780,9}, {0x123aa,10}, {0xea40,8}, {0x14602,10}, {0x229dd,4}, {0x1ef59,5}, + {0x2753b,5}, {0x2a53c,3}, {0x10afa,8}, {0x1538,3}, {0x51d2,13}, {0x11d88,6}, {0x12972,10}, {0x1e1bf,6}, + {0x22b5e,7}, {0x12792,10}, {0xfba4,6}, {0x24217,7}, {0x2f57,5}, {0x2c77c,6}, {0x11f68,10}, {0x26727,6}, + {0x15877,3}, {0xe145,11}, {0x230b1,7}, {0x1ed61,4}, {0x25343,10}, {0x18376,9}, {0x1be15,8}, {0x25249,6}, + {0x14ac6,10}, {0x1f17,15}, {0x5ac4,4}, {0x10dac,8}, {0x4204,7}, {0x2c078,2}, {0xcaa5,3}, {0x2da1d,4}, + {0x2b1aa,5}, {0x178c7,6}, {0x1035a,9}, {0x23b87,7}, {0x10770,4}, {0x19123,9}, {0x27e1,14}, {0xc5bd,6}, + {0xa7c2,4}, {0xcda2,11}, {0x24ca1,4}, {0x2ad8b,4}, {0x15e9d,9}, {0x281e1,5}, {0x1fb49,8}, {0x29d4c,5}, + {0x20644,4}, {0x13d88,9}, {0x47b7,7}, {0x1f2c1,8}, {0x5aa8,13}, {0x11cd6,4}, {0x17f74,7}, {0x27097,6}, + {0x3ee4,9}, {0x176c,15}, {0x1043,3}, {0x24367,7}, {0x22056,6}, {0x8686,12}, {0x120d3,3}, {0x2625b,6}, + {0xcf3e,3}, {0x26b45,6}, {0x2d428,3}, {0x1864f,9}, {0x1bc15,7}, {0x1a754,9}, {0x125d0,10}, {0x1418e,9}, + {0x2bc0e,4}, {0x6d8e,4}, {0x906c,5}, {0x29738,5}, {0x2a636,3}, {0xdb2b,11}, {0x1a01f,3}, {0x2ba38,6}, + {0x27529,6}, {0x634c,13}, {0x230d4,7}, {0x16bce,9}, {0x1a96a,6}, {0x1c4ef,6}, {0x284c,3}, {0xaff6,8}, + {0x2b470,2}, {0x5adc,13}, {0x11c7a,10}, {0x13ea2,5}, {0x12ae4,10}, {0x482c,11}, {0x77fe,11}, {0x974e,12}, + {0xac12,9}, {0xcaed,10}, {0x11f57,7}, {0x4604,4}, {0x127ec,8}, {0x1c9f5,8}, {0x159c8,14}, {0x2d03d,5}, + {0xd595,7}, {0x944e,12}, {0x16fa0,4}, {0x178e,3}, {0x2a5c8,3}, {0x18e1,13}, {0xfe85,11}, {0x122d0,7}, + {0x15a60,3}, {0x2a95,4}, {0x25d11,6}, {0x12206,10}, {0x198cf,4}, {0x2b15d,4}, {0x26e5d,6}, {0x27fa9,5}, + {0x6742,6}, {0x27a39,6}, {0x7f8a,12}, {0xaa3e,10}, {0x18232,9}, {0x2a765,5}, {0x26f59,4}, {0xed8f,6}, + {0x29825,5}, {0x1d697,5}, {0xa085,5}, {0x2696b,4}, {0x20179,8}, {0x140a8,7}, {0xf039,11}, {0x2787d,5}, + {0x213c1,5}, {0x16f71,9}, {0x5313,4}, {0xaf7e,12}, {0x7a4a,7}, {0x23f4d,7}, {0x1a78a,9}, {0x1231e,9}, + {0xcbc9,6}, {0x2ffc,4}, {0x715c,6}, {0x229d4,7}, {0xe87d,11}, {0x5f01,7}, {0x2cf07,2}, {0x2b54d,4}, + {0xd7c,3}, {0x26ebf,4}, {0x2daa0,2}, {0xa10e,6}, {0xac42,11}, {0x2a,3}, {0x1b4db,4}, {0xa436,8}, + {0x6c2a,4}, {0x12116,10}, {0x70b0,10}, {0x16cd5,9}, {0x2bf2a,4}, {0x2a4cc,5}, {0xde89,5}, {0xab9d,5}, + {0x12170,10}, {0x1cb4,3}, {0x1c02d,8}, {0x10508,5}, {0x2043,14}, {0x26309,6}, {0x25361,10}, {0x1a4cc,9}, + {0x2a573,3}, {0x2558f,6}, {0x200a1,6}, {0xa88e,12}, {0x1acc,4}, {0x365c,12}, {0x244cb,6}, {0x288aa,5}, + {0x1630d,9}, {0x4411,4}, {0x1eb29,5}, {0x2c73a,6}, {0x1013c,10}, {0x2c88a,6}, {0x1e6c7,8}, {0x14c32,8}, + {0x2c316,4}, {0x286fb,8}, {0x7d62,12}, {0xff30,8}, {0x432,17}, {0x7b52,8}, {0x1d5dd,5}, {0x1718d,9}, + {0x76c6,12}, {0x28b5f,5}, {0x1b2c5,8}, {0xab76,8}, {0x2b2fb,4}, {0x125f,5}, {0x8752,8}, {0x1bb55,8}, + {0x23f38,7}, {0xdacc,6}, {0x21f0d,5}, {0x1cfb1,8}, {0x22636,7}, {0x235e3,7}, {0x2be04,2}, {0x1bf95,8}, + {0x8fda,8}, {0x15806,12}, {0x2a541,3}, {0x81b2,11}, {0x7a92,5}, {0x2b7cf,3}, {0x13a0e,5}, {0x5d79,3}, + {0x1ae41,5}, {0x1ee81,8}, {0x14b86,9}, {0x1a994,9}, {0x2a3eb,5}, {0xb28,6}, {0x2a116,5}, {0xd18b,11}, + {0x1cfe9,6}, {0x13842,10}, {0x2bc3a,4}, {0x1a053,9}, {0x18514,9}, {0x25d9d,4}, {0x2b471,4}, {0x929e,8}, + {0x25b5b,6}, {0xfc54,11}, {0x4894,8}, {0x27fd1,5}, {0x1a9e5,6}, {0x2400c,3}, {0x27a8d,6}, {0x282c,7}, + {0x1c89,9}, {0x2711,8}, {0x10f64,10}, {0x19b90,2}, {0x2016,6}, {0x8ede,9}, {0x27a45,6}, {0x109ba,8}, + {0x2429c,7}, {0x15252,6}, {0x23ac3,7}, {0x14ad0,6}, {0x22892,7}, {0x28c9c,5}, {0x29ccd,4}, {0x1ec39,8}, + {0x11c6b,5}, {0x2432f,7}, {0x6b6e,4}, {0x47aa,12}, {0xc5b,10}, {0x114f0,10}, {0x18ada,7}, {0x26763,4}, + {0x135f9,4}, {0xb8df,8}, {0x1334a,10}, {0x20a32,2}, {0x256d1,6}, {0x430,20}, {0x13b94,10}, {0xcb5b,10}, + {0x9862,10}, {0x1d5bd,8}, {0xf54d,5}, {0x1dccd,8}, {0xff3c,12}, {0x1eb69,7}, {0x13f86,9}, {0xd0db,11}, + {0x20089,8}, {0x122ce,9}, {0xf42f,9}, {0xfc4b,3}, {0x1dd45,8}, {0x81b2,12}, {0x289f3,5}, {0x17a9c,5}, + {0x25cbd,6}, {0x13b50,4}, {0x279e1,4}, {0x25b0d,6}, {0x12368,6}, {0x58f5,4}, {0x20a38,4}, {0xa158,4}, + {0x1a51d,8}, {0x935e,8}, {0xb85b,11}, {0xcaed,11}, {0x17bfb,7}, {0x1e3e7,7}, {0x1485a,10}, {0x1f4fb,5}, + {0x1102c,10}, {0x192e5,8}, {0xad56,12}, {0xe426,11}, {0xfe01,7}, {0x327a,7}, {0x28598,3}, {0x1b1b,7}, + {0x2a747,5}, {0x2863f,3}, {0x1917d,9}, {0x1c36d,8}, {0x108c5,5}, {0x2b2c3,4}, {0x739a,4}, {0x22abe,6}, + {0x27c49,5}, {0xaa4c,4}, {0x6561,12}, {0xeb6f,5}, {0x2cf27,3}, {0x1185a,6}, {0x27a75,6}, {0x26ec3,5}, + {0x1e4b2,5}, {0x92ca,4}, {0x107e7,5}, {0x1235a,10}, {0x289cb,4}, {0x2a645,3}, {0x20311,8}, {0xac14,7}, + {0x1ffb9,8}, {0xe867,10}, {0x28c03,5}, {0x2721d,6}, {0x508d,8}, {0x19f02,4}, {0x1328c,10}, {0x12968,10}, + {0x26a49,4}, {0x35ff,3}, {0x38e3,4}, {0x1e8ff,8}, {0x2a66b,5}, {0x2a756,5}, {0x28b1d,4}, {0xbd15,11}, + {0x28619,3}, {0x2a5a0,3}, {0x2a5d2,3}, {0x2d117,2}, {0xfd08,7}, {0x15202,5}, {0x26231,6}, {0x8452,12}, + {0x18781,9}, {0xd934,4}, {0x18622,8}, {0x1fb19,8}, {0x28f21,4}, {0xf31a,11}, {0x2a537,3}, {0x1d09d,8}, + {0xaf36,12}, {0x1990c,9}, {0x25111,3}, {0xa0be,8}, {0x29342,5}, {0x1c597,5}, {0x2724d,6}, {0x21790,7}, + {0x2a447,3}, {0x12ab2,10}, {0x33f4,7}, {0x22b03,7}, {0x48e7,8}, {0x91d2,12}, {0x189a6,6}, {0x8fec,6}, + {0x2b5bf,3}, {0x28e68,4}, {0x36c8,4}, {0x124d6,10}, {0x2a4e7,3}, {0x763d,5}, {0x353b,5}, {0x1a514,9}, + {0x2640b,6}, {0x132be,10}, {0x11ce8,8}, {0x4a50,5}, {0x26e39,6}, {0xd33c,7}, {0x7eee,12}, {0x29783,5}, + {0x1629f,6}, {0x188e2,4}, {0xbb8,9}, {0x112de,10}, {0xa19e,11}, {0x2cf03,3}, {0x5e45,13}, {0x1bbb5,8}, + {0x876e,3}, {0x1cc35,8}, {0x1faf9,8}, {0x1c9c5,5}, {0x2d368,3}, {0x1b2f1,4}, {0x9a2f,7}, {0x14c08,10}, + {0x33ae,9}, {0x2e44,14}, {0x234e7,7}, {0x1543,3}, {0x1a234,5}, {0xc5ff,5}, {0x8a2e,6}, {0x2db5a,2}, + {0x35d7,4}, {0x1d37,15}, {0x17e39,9}, {0x8c88,6}, {0x5c6f,7}, {0x218ee,4}, {0x4462,4}, {0xab87,7}, + {0x3c49,4}, {0x2a4c4,3}, {0x20309,8}, {0x27a2d,5}, {0x2b325,3}, {0x1bd65,8}, {0x2b8ac,6}, {0x15164,8}, + {0x90ee,12}, {0x13720,10}, {0x1e7e7,7}, {0x1d7f7,8}, {0x2262f,6}, {0x1a6fe,5}, {0x20994,3}, {0x1283c,10}, + {0xaaf8,3}, {0x26f7d,6}, {0x8a0c,3}, {0x2b6c7,4}, {0x1ad59,3}, {0x1fd71,6}, {0xcb5,4}, {0xb4a9,10}, + {0xae84,10}, {0x16a6f,6}, {0x1f7d9,8}, {0x1d5fd,8}, {0x80aa,9}, {0x2133,10}, {0x194d7,2}, {0x28227,5}, + {0x1e6bf,8}, {0x1df1f,7}, {0x21379,7}, {0x251eb,2}, {0x9168,4}, {0x21b78,7}, {0x1f689,8}, {0x18c3,15}, + {0x22628,7}, {0x2d979,4}, {0xfd27,3}, {0x1d5b,2}, {0x5c21,9}, {0x29d6,14}, {0x2a724,5}, {0x2b70c,2}, + {0xdde0,10}, {0x289df,5}, {0x1124c,6}, {0x199db,9}, {0x29802,5}, {0xa42e,4}, {0xf183,11}, {0x11da6,6}, + {0x11eeb,5}, {0x29db5,5}, {0x186b6,4}, {0xfa02,7}, {0xa7ac,7}, {0x196fd,5}, {0x25467,6}, {0x1eed3,6}, + {0x2a46f,3}, {0x758e,12}, {0x1b48,7}, {0x1ab71,9}, {0x2c4a0,4}, {0x19e2,5}, {0x795a,12}, {0x2a46a,3}, + {0x2da31,4}, {0x5a81,9}, {0x14fd2,10}, {0x16a23,4}, {0x141e8,10}, {0x1aafc,5}, {0x10823,5}, {0x5e1e,13}, + {0x19b90,3}, {0x1d57,6}, {0x23ae,5}, {0x29ae3,4}, {0x16963,7}, {0xadce,12}, {0x28579,3}, {0x43aa,10}, + {0x4036,4}, {0x1f83,2}, {0x72fc,7}, {0x2b6f8,4}, {0x103f5,5}, {0x1ea6f,8}, {0x8d9e,7}, {0x29d51,5}, + {0xdbc5,11}, {0x2160,14}, {0x13a72,7}, {0x26377,4}, {0x22d62,7}, {0x1c0c8,5}, {0x51df,12}, {0x1c3f5,8}, + {0x15658,10}, {0x2121b,7}, {0xaf5a,4}, {0x2b0b3,2}, {0x25541,6}, {0x6cff,7}, {0x1ed51,8}, {0x2a5af,3}, + {0xae82,12}, {0x1c785,6}, {0x1dfcf,8}, {0x23c9,9}, {0x9532,8}, {0x2dab1,2}, {0x19483,9}, {0x2cf3c,3}, + {0xb6dd,8}, {0xff8e,10}, {0xdd9e,5}, {0x7b95,5}, {0x2b232,5}, {0x3da2,14}, {0xef98,4}, {0x242b3,5}, + {0x26abf,6}, {0x17ae0,9}, {0x1d9c7,6}, {0x29cc8,4}, {0x18594,7}, {0x1b65b,8}, {0x2b4f1,4}, {0x28705,6}, + {0x27201,4}, {0x21a39,7}, {0x1665b,9}, {0x454f,3}, {0x28c32,5}, {0x2c00e,4}, {0x253a7,10}, {0x1950a,9}, + {0x6839,13}, {0xedd6,6}, {0x64ca,5}, {0x3e90,10}, {0x1f23b,6}, {0x26a71,6}, {0x14c80,5}, {0x7b8e,12}, + {0x1c01d,8}, {0xfd46,6}, {0x1770b,8}, {0x19d8e,7}, {0x26709,6}, {0x22cfc,4}, {0x14a08,7}, {0x5288,6}, + {0x430,22}, {0x105f8,10}, {0x1b3a5,8}, {0x15b0,4}, {0x244ef,6}, {0x22d07,7}, {0x269bd,6}, {0x2c2ae,4}, + {0x28ba2,5}, {0x13f13,4}, {0x2d9d9,4}, {0x10608,4}, {0x432,19}, {0x226e,15}, {0x193bf,4}, {0xf6fa,10}, + {0x1bb8d,7}, {0xf84f,7}, {0x285f6,2}, {0x54de,13}, {0x12017,4}, {0x128c8,6}, {0x21a6a,6}, {0xf282,8}, + {0x26261,6}, {0x16dbf,9}, {0x380e,14}, {0x14474,8}, {0x17420,9}, {0x1390c,7}, {0x2d989,4}, {0x44ab,13}, + {0x10238,10}, {0x811c,6}, {0x6ab8,4}, {0x1c4d1,4}, {0x61d3,13}, {0x15cf1,4}, {0x111e4,10}, {0x244e3,4}, + {0x2978,6}, {0x2d841,4}, {0x2cbc0,6}, {0x9af6,8}, {0x22a05,7}, {0x2a479,3}, {0xd08e,11}, {0x16806,5}, + {0x11632,8}, {0xa8fc,7}, {0x15dad,6}, {0x1352c,10}, {0x1f4c3,6}, {0x9d1e,12}, {0x1521,2}, {0x235f5,3}, + {0x232e8,7}, {0x13f00,4}, {0xa522,8}, {0xf773,6}, {0x1d58d,8}, {0x274db,6}, {0x171de,9}, {0x2bdde,4}, + {0x1be35,8}, {0x13860,10}, {0x2a370,3}, {0xef68,11}, {0xaa34,5}, {0xc71,3}, {0x259d1,6}, {0x2329d,3}, + {0x14c58,9}, {0x2092e,5}, {0x1aed1,9}, {0x1148c,10}, {0x28ffd,5}, {0x171d5,8}, {0x13c0c,10}, {0x1e45a,4}, + {0x14d89,4}, {0x2de6,7}, {0xdde0,11}, {0x2b17d,4}, {0xaf96,12}, {0x2db3c,2}, {0x1d9e9,8}, {0x2ba08,6}, + {0x2cafa,6}, {0x1403a,7}, {0x10283,5}, {0xf332,3}, {0x7476,4}, {0x16c3,3}, {0x9fbe,12}, {0x2a62,14}, + {0x21157,7}, {0xfe17,11}, {0x2cf4b,3}, {0x183c,22}, {0x12706,10}, {0xcd3f,11}, {0xec50,11}, {0x2b7fd,7}, + {0x145a8,4}, {0x22db,4}, {0x27a5,15}, {0x2201e,7}, {0x4e98,7}, {0xa05,26}, {0x22e96,7}, {0x23c9f,7}, + {0x16166,7}, {0x598c,4}, {0x222f3,6}, {0x2bcb2,4}, {0x1a577,5}, {0x13fd9,7}, {0x27253,6}, {0x227fd,7}, + {0x21c97,7}, {0x2546d,6}, {0x15e1f,8}, {0x33eb,9}, {0x255a1,6}, {0x1d3d1,3}, {0x14a8a,10}, {0x2b813,2}, + {0x1a0a6,7}, {0x30,110}, {0x2597b,6}, {0x84b2,6}, {0x1bc35,8}, {0x2a6cf,5}, {0xf851,3}, {0xdc33,6}, + {0xfc75,7}, {0x22ece,7}, {0x2a474,3}, {0x854e,12}, {0x1ec01,7}, {0x2b0bf,2}, {0x2a3de,3}, {0x69e6,13}, + {0x26351,6}, {0x28de1,5}, {0xec19,11}, {0x86f2,12}, {0x415c,14}, {0x2ba2c,6}, {0x2695d,6}, {0xf070,6}, + {0x2ce12,6}, {0x121de,10}, {0x100c4,4}, {0xb81,5}, {0x6eef,4}, {0x1959c,5}, {0xd498,7}, {0x9183,7}, + {0x122c,16}, {0x261f,15}, {0x24e3f,4}, {0xe006,7}, {0x15478,5}, {0x98c2,12}, {0x2430,14}, {0x2b0ed,4}, + {0x1a0d1,9}, {0x27133,6}, {0x24307,4}, {0x197ee,7}, {0x2c52a,4}, {0x16517,8}, {0x24abf,4}, {0x2d269,3}, + {0x14292,9}, {0x296b1,5}, {0x1433c,10}, {0x2662,6}, {0xb7f,8}, {0x1ecc,11}, {0x1e497,8}, {0x1700,6}, + {0x8572,10}, {0x2b888,6}, {0x8bd2,12}, {0x80aa,12}, {0x2713f,6}, {0xbb10,8}, {0x28482,5}, {0x732a,7}, + {0x152a8,2}, {0x2b9cc,6}, {0xceb,8}, {0x11103,4}, {0x17b1a,5}, {0x19702,9}, {0x16ac0,6}, {0x2c10a,4}, + {0x1b35d,8}, {0x594e,2}, {0x890e,12}, {0xe397,6}, {0x2cff2,3}, {0x1e85f,8}, {0x619f,13}, {0x16005,9}, + {0x19c65,3}, {0x109b0,10}, {0x3dc4,8}, {0x1bc0,6}, {0x6581,7}, {0x1b27d,8}, {0x9dd2,11}, {0x2d8e,9}, + {0xafa8,3}, {0x10118,3}, {0xcacf,7}, {0x1a85f,3}, {0xf846,4}, {0x28925,5}, {0x1aaab,9}, {0x1d375,5}, + {0x1faf1,8}, {0x1386,6}, {0x267ab,6}, {0x19429,9}, {0x1169e,8}, {0x3164,3}, {0xe8bf,11}, {0x277a,8}, + {0x14a94,9}, {0x2c542,6}, {0x21d1c,6}, {0xcd8c,6}, {0x112f2,9}, {0x130f2,6}, {0xdd04,11}, {0x2bfe8,2}, + {0x900e,3}, {0x9da2,12}, {0xec03,11}, {0x18a75,9}, {0x20b8a,7}, {0x2d9a1,4}, {0xe221,11}, {0x12364,10}, + {0x1c735,7}, {0xe42,12}, {0xcf6,7}, {0x2390f,7}, {0x1b871,6}, {0xfccd,7}, {0x13612,10}, {0x26465,6}, + {0x7ff6,12}, {0xc437,7}, {0xb97d,7}, {0x8de2,12}, {0x31fe,4}, {0x3544,14}, {0x19f33,8}, {0xd2f0,6}, + {0x7aaa,12}, {0x1fcb,15}, {0xcd34,7}, {0x23bb3,5}, {0xca3,8}, {0x23074,5}, {0x15088,8}, {0x14e58,4}, + {0x28bfe,5}, {0xf95b,9}, {0xed91,8}, {0x204bb,8}, {0x2d6ec,3}, {0x17037,9}, {0x2a715,5}, {0x14dc6,4}, + {0x23988,5}, {0x1414d,4}, {0x1a28c,5}, {0x1796f,6}, {0x29289,5}, {0xf27b,2}, {0x2a49c,3}, {0x1d315,8}, + {0x902e,11}, {0x1b8a9,14}, {0x45e3,8}, {0x247b,7}, {0x272c5,6}, {0x92b6,12}, {0x2539,4}, {0x5903,4}, + {0x1ef93,6}, {0x1731b,8}, {0x1d5ad,6}, {0x40ea,14}, {0x14aee,10}, {0x1699,3}, {0x2c75e,6}, {0x1645e,4}, + {0x26099,4}, {0x2d179,3}, {0x230f7,7}, {0x3f64,4}, {0x1d82,15}, {0x1a5f7,7}, {0x1c1e5,8}, {0xf85c,3}, + {0xc12a,8}, {0x2635,8}, {0x17309,9}, {0x150e2,8}, {0x28ef9,4}, {0x175ac,5}, {0x2a8c,14}, {0xacea,6}, + {0x180a6,9}, {0x27421,6}, {0x2944,6}, {0x14dbb,4}, {0x106f2,8}, {0x2ff6,6}, {0xfcd8,11}, {0x17159,7}, + {0x26eb7,6}, {0x27a51,6}, {0x2415a,7}, {0x19b7b,4}, {0x7a44,3}, {0x2a56e,3}, {0x299d0,5}, {0x27d71,6}, + {0x22e6c,7}, {0x1fdd3,6}, {0x14094,10}, {0x2daa7,2}, {0xf54,5}, {0x2bb22,4}, {0x1ffd1,6}, {0x181c,5}, + {0xbde,6}, {0xf891,11}, {0x4eca,2}, {0x238bb,7}, {0x6a49,4}, {0x2b63a,4}, {0x3da2,5}, {0xafb0,4}, + {0x19abc,9}, {0x2a3a2,3}, {0x14972,6}, {0x1f8cb,3}, {0xb795,7}, {0x1950,5}, {0x2bae6,6}, {0x1a39c,3}, + {0x2bf9e,4}, {0x166be,9}, {0xfcee,6}, {0x1c32d,7}, {0xac36,12}, {0x24573,6}, {0x14c51,7}, {0x152a4,8}, + {0x47eb,13}, {0x1dec7,7}, {0x1acd9,9}, {0x9d72,8}, {0x210a8,7}, {0xcb8,5}, {0x232c7,5}, {0x3006,11}, + {0x2c4e2,6}, {0x1b0db,9}, {0x8ba2,8}, {0x15b09,9}, {0x6170,8}, {0xed63,11}, {0x11a2e,8}, {0x26580,2}, + {0x2c7b2,6}, {0x2c3aa,6}, {0x11e78,10}, {0x11d24,10}, {0x9028,6}, {0xd742,11}, {0x75a6,11}, {0x205e2,7}, + {0x2403e,4}, {0x24711,6}, {0x27a4b,6}, {0x204d3,8}, {0x2764f,6}, {0x11dc,16}, {0xc28,3}, {0x1e27,10}, + {0x927a,7}, {0x29f2e,3}, {0x25a61,5}, {0x5ec7,5}, {0x10c3a,6}, {0x1896,15}, {0x19468,9}, {0x1be75,8}, + {0x1127a,10}, {0xb7ed,11}, {0x1e5f7,8}, {0x1f4a3,6}, {0x11fa4,10}, {0x19fa8,9}, {0x19ba6,5}, {0xcff4,10}, + {0x2318a,7}, {0x25aa3,6}, {0x26847,6}, {0x1002e,10}, {0x1bc5,3}, {0x32c0,7}, {0x29098,5}, {0x19aa1,9}, + {0x2a564,3}, {0x14666,10}, {0x936c,9}, {0x705e,6}, {0x122c6,4}, {0x24b7b,6}, {0x1d4dd,6}, {0x24769,8}, + {0x2731f,6}, {0x18592,9}, {0x297a3,3}, {0x29657,5}, {0x16ad4,7}, {0x1f9e3,3}, {0x2d5ea,3}, {0x73ae,10}, + {0x9624,5}, {0xba55,10}, {0x1b507,3}, {0x15a61,3}, {0x6860,11}, {0x20b37,9}, {0xcdef,10}, {0x13dd2,6}, + {0x2a71f,5}, {0x4c70,13}, {0x1a9de,3}, {0x2a5e6,3}, {0x14408,6}, {0x2b6e8,4}, {0xcaab,11}, {0x28ee2,3}, + {0xa65a,12}, {0x259fb,6}, {0x1d667,8}, {0x28f0a,3}, {0x14d2a,6}, {0x30,122}, {0x2be6e,4}, {0x2a5c,6}, + {0x2aae3,8}, {0xb057,7}, {0x12a8a,10}, {0x20e4a,7}, {0xad26,7}, {0xfa09,4}, {0x2bd5a,4}, {0x2b7df,4}, + {0x6192,13}, {0x2a488,3}, {0x6e85,13}, {0x250ef,3}, {0x2da67,2}, {0x9c01,5}, {0x30,116}, {0x4186,6}, + {0x2a316,3}, {0x1a200,3}, {0x5025,9}, {0x139b4,10}, {0x25719,6}, {0xb4f8,8}, {0xbc25,4}, {0x2a52b,5}, + {0x26279,6}, {0x122b0,10}, {0x2be8c,2}, {0xa1c9,5}, {0x1ffd,5}, {0x27f96,4}, {0x14166,10}, {0x815e,12}, + {0x508d,13}, {0x2a96e,5}, {0x28447,4}, {0x21789,7}, {0x21e7a,7}, {0x2b814,4}, {0x7524,7}, {0x15f2d,9}, + {0x19863,4}, {0x284c8,5}, {0x1100a,4}, {0xebc1,11}, {0x2b9de,6}, {0x26502,3}, {0x2637b,6}, {0x1caa5,6}, + {0x21e0a,7}, {0xfae5,11}, {0x133d0,6}, {0x2c434,4}, {0x15526,6}, {0x16fe,3}, {0x2fbe,14}, {0x2aee6,3}, + {0x9406,8}, {0xa848,4}, {0x1fd8b,6}, {0x1d967,8}, {0x2c656,6}, {0x1d28d,8}, {0x1b721,14}, {0x10486,10}, + {0x13dce,9}, {0x29234,4}, {0x1a504,5}, {0x13368,10}, {0x8fce,12}, {0x2a90a,5}, {0x6258,3}, {0x1fbc,15}, + {0x1d31d,7}, {0x1e195,8}, {0x1d9d,3}, {0x14b0c,5}, {0x1ee09,8}, {0x1772f,6}, {0x1bfef,5}, {0x156d2,3}, + {0x12fde,6}, {0x1cc6d,6}, {0x120d2,5}, {0x1230a,10}, {0x135b8,10}, {0x2a140,3}, {0x28d7e,5}, {0xdab,4}, + {0x1f819,8}, {0x1c6f5,8}, {0x2d331,2}, {0x2cfad,3}, {0x17d7c,8}, {0x2b650,3}, {0x5136,7}, {0x4181,2}, + {0x27a69,6}, {0x28e8b,5}, {0x11e32,5}, {0x2a738,5}, {0xaf2c,2}, {0x23959,3}, {0x1aaa2,9}, {0xea4b,8}, + {0x15a60,7}, {0x87cc,5}, {0x1f6bb,3}, {0x2ba0e,6}, {0x30,108}, {0x133e0,10}, {0x15ab8,4}, {0x106ac,10}, + {0x5d82,9}, {0x1f2e4,4}, {0x17807,8}, {0x8806,12}, {0xdaf4,11}, {0x34c6,14}, {0x9d5a,12}, {0x23113,5}, + {0x2abbb,8}, {0x1ac52,6}, {0x2c602,6}, {0x11252,10}, {0x2d9f1,4}, {0x23ff5,7}, {0x1861d,5}, {0x24444,3}, + {0x16044,9}, {0x284e,11}, {0x260fa,3}, {0x2c4e8,4}, {0x2658f,6}, {0x2878d,6}, {0x4b09,5}, {0x1c5a5,8}, + {0x286b7,4}, {0xbf72,11}, {0x4901,7}, {0x23abc,7}, {0x1123e,10}, {0x2052,15}, {0x178a9,9}, {0x1f3bb,6}, + {0x119b4,10}, {0xfd32,5}, {0x35de,14}, {0x237cd,7}, {0x1e065,8}, {0x1a4ce,7}, {0x15cb7,9}, {0x55e2,13}, + {0x3fc4,14}, {0x2296b,7}, {0x191b3,7}, {0x671b,8}, {0x2ca6a,6}, {0x56b2,12}, {0x69ba,5}, {0x29dbc,3}, + {0xfb08,6}, {0x7222,12}, {0x1ca7d,8}, {0x1e0d5,8}, {0x2c7ac,6}, {0x1a1f6,3}, {0x2e6e,10}, {0x1ad3c,7}, + {0x17c67,6}, {0xf5f2,4}, {0xaed,3}, {0xa98a,9}, {0x26835,6}, {0x554f,4}, {0x209be,3}, {0x24ed7,6}, + {0x2a415,3}, {0x1af85,6}, {0x18a5,15}, {0x287e0,5}, {0x10c62,10}, {0xf66b,5}, {0x2bdae,4}, {0x2361d,5}, + {0x1c56,15}, {0x7b76,12}, {0x276d5,4}, {0xb51,6}, {0x29218,3}, {0x289f8,5}, {0x1985c,5}, {0x2b10d,4}, + {0x27499,6}, {0x14e62,3}, {0x136e,5}, {0xb9fd,11}, {0x155b0,3}, {0x23fd9,7}, {0x2c9e0,6}, {0x2a267,3}, + {0x27e6a,4}, {0x2ba8c,6}, {0x1fce6,3}, {0x1696a,8}, {0x283e9,3}, {0x1277,4}, {0x2a40b,3}, {0x25db5,6}, + {0x1a8e9,9}, {0x2c13e,4}, {0x24ff7,6}, {0x182b9,9}, {0x1f2d1,8}, {0xbff0,5}, {0x1cbb5,8}, {0x29be,10}, + {0x20c57,5}, {0x2729b,6}, {0x1f7e9,8}, {0x14d93,5}, {0x8d76,12}, {0x27574,3}, {0x3253,3}, {0x1a0b6,9}, + {0x295fd,5}, {0x8dee,12}, {0xac74,3}, {0x2748f,4}, {0xb1ff,9}, {0x2aaab,8}, {0x20ed8,7}, {0x588f,4}, + {0xf36d,5}, {0x1d447,6}, {0x27883,6}, {0x16a6a,5}, {0x1e1df,8}, {0xc9c,7}, {0x1a077,6}, {0x2afdd,4}, + {0xe7ac,11}, {0x6682,4}, {0x1465e,3}, {0x296a,10}, {0xd57f,11}, {0x7a02,9}, {0x29cc0,3}, {0x1fd49,8}, + {0x1f861,8}, {0xf1a4,11}, {0x35fa,14}, {0x288a0,5}, {0x18df9,6}, {0x2adbd,6}, {0x1aa5,3}, {0x23542,7}, + {0x23d5c,7}, {0x2283c,7}, {0x5873,6}, {0xf38e,4}, {0x79a5,8}, {0x17d61,7}, {0x16cba,9}, {0x16191,9}, + {0x27ee1,5}, {0x1a119,9}, {0x2a532,3}, {0x26b99,6}, {0x10924,7}, {0x22e65,7}, {0x26a95,6}, {0x2a6f2,5}, + {0xf99b,5}, {0x2a6ca,5}, {0xefcb,8}, {0x1fea9,8}, {0x25de1,3}, {0xab48,3}, {0x1abc4,6}, {0x238a6,7}, + {0x110fe,10}, {0x9808,6}, {0x3138,14}, {0xfb32,8}, {0x1ac1,15}, {0x154e9,4}, {0xf620,2}, {0xcce,4}, + {0xe381,11}, {0x1d737,8}, {0x1557c,10}, {0x2d371,3}, {0x3f0e,14}, {0x2067b,3}, {0x136b2,10}, {0x2175f,7}, + {0x230db,7}, {0x2c6f2,4}, {0x30,114}, {0x2383d,7}, {0x20827,7}, {0x2a73d,5}, {0x67aa,13}, {0x3c58,3}, + {0x2a64f,3}, {0x2c9b6,6}, {0x2864e,5}, {0x1638b,9}, {0x1155,7}, {0x12d5c,8}, {0x2a6bd,3}, {0x10dc,3}, + {0xb611,3}, {0x11ef2,7}, {0x2a3c0,3}, {0x26199,6}, {0x292aa,2}, {0xe216,10}, {0x107ce,6}, {0x12e4,8}, + {0x17794,4}, {0x22dbd,7}, {0xcf34,5}, {0x17471,9}, {0x2b978,6}, {0xfe71,7}, {0x14e74,5}, {0x4150,4}, + {0x2db32,2}, {0x1e607,7}, {0x1c7b,3}, {0xb645,6}, {0x2b4dc,2}, {0x27c8e,3}, {0x20ae9,3}, {0x15b5a,7}, + {0x24fc8,3}, {0x17a74,9}, {0x4595,13}, {0x24fc8,5}, {0x6631,13}, {0x95ce,12}, {0x1c645,8}, {0x1d355,8}, + {0x23e46,3}, {0x184f0,9}, {0x12cc6,7}, {0x4e6f,3}, {0xe062,4}, {0x1e33f,8}, {0x132a0,10}, {0x1d07d,8}, + {0x10f3c,10}, {0x21d00,7}, {0x29066,4}, {0x6be1,6}, {0x14cee,10}, {0x23f2a,6}, {0xb5a1,4}, {0x153e2,8}, + {0x23019,5}, {0xfb69,11}, {0x1685c,9}, {0x1fb99,8}, {0x7156,12}, {0x222d3,4}, {0x2a230,3}, {0x1b985,4}, + {0xe99,5}, {0x157b2,6}, {0x23cde,7}, {0x23033,7}, {0xaca2,12}, {0xfe68,7}, {0x9226,12}, {0x27a7b,6}, + {0xa612,11}, {0x2d9b1,4}, {0x1e0b5,8}, {0x1d99f,8}, {0x76ba,12}, {0x1f749,6}, {0x117c,8}, {0x10adc,10}, + {0x1ff0c,5}, {0x2151f,7}, {0x13808,8}, {0x12526,10}, {0xaab6,11}, {0x179ed,9}, {0x2d11c,3}, {0xfd5c,11}, + {0xf296,8}, {0x19939,9}, {0x9b1a,12}, {0x1076d,4}, {0xb4a2,7}, {0x3f58,3}, {0xae16,12}, {0xf2b0,7}, + {0x6477,13}, {0x488f,5}, {0x26d0f,3}, {0x1cf69,8}, {0x27a57,6}, {0x19380,7}, {0xc4c6,9}, {0x10b4a,10}, + {0x14318,6}, {0xfe3a,3}, {0x1086,3}, {0x14242,10}, {0xe4cb,11}, {0x2866f,3}, {0x1dd8d,8}, {0x59cb,13}, + {0x843f,7}, {0x27b95,5}, {0x1056c,10}, {0x12552,4}, {0x4518,8}, {0x39d3,3}, {0xa020,7}, {0x2bf0a,4}, + {0x1987c,6}, {0xf876,5}, {0x11e2,6}, {0xd21,34}, {0x1028a,8}, {0x2a389,3}, {0x7c2a,12}, {0x1cea5,8}, + {0x44ec,13}, {0x1f73b,3}, {0x10fa0,10}, {0xef52,11}, {0x22995,7}, {0xc9cf,11}, {0x1e747,8}, {0x2a733,5}, + {0x2968e,5}, {0xfd7d,7}, {0x2d9a5,4}, {0x2d212,3}, {0x13ca2,10}, {0x160e,13}, {0x29ac0,5}, {0x1972a,5}, + {0x1157c,10}, {0x1570c,10}, {0x2a352,3}, {0x18e26,9}, {0x5b20,7}, {0x21142,7}, {0x432,25}, {0x23c28,7}, + {0x1f7d1,8}, {0xbbf7,10}, {0x11e7a,3}, {0x24192,7}, {0x5ed4,5}, {0x1f841,8}, {0x56f7,9}, {0x6c8c,2}, + {0x7bfc,6}, {0x28662,7}, {0xde64,11}, {0x3640,14}, {0x6085,4}, {0x22285,5}, {0x1851d,8}, {0x1095,9}, + {0x29908,5}, {0xac74,2}, {0x2a911,2}, {0x2750d,4}, {0x2a5eb,3}, {0x14738,6}, {0xcc3a,7}, {0x2a72e,5}, + {0x2d5c7,2}, {0x22de3,4}, {0x1b12c,9}, {0x1f933,4}, {0x22a3d,6}, {0x67eb,7}, {0xc006,5}, {0xf9a9,6}, + {0x16468,4}, {0x26249,6}, {0x88c6,12}, {0x23e6d,7}, {0x1cbbd,6}, {0x4443,13}, {0x15e1f,9}, {0x2982f,5}, + {0x1f381,8}, {0x70c8,8}, {0x188a1,9}, {0x1f099,8}, {0x2d245,3}, {0x16b08,9}, {0x2cfbc,3}, {0x10836,6}, + {0x1f199,5}, {0x22e75,5}, {0x5ef7,4}, {0x139af,5}, {0x297d5,5}, {0x23a40,3}, {0x29057,4}, {0x27e23,4}, + {0x1986a,9}, {0x1d829,6}, {0x108e8,10}, {0x3725,4}, {0xcf18,11}, {0x1c67,4}, {0x29602,5}, {0x1ba1f,6}, + {0x27e56,4}, {0x2a320,3}, {0x1a9c1,6}, {0x2312f,7}, {0x1396e,10}, {0x639a,12}, {0xfd69,3}, {0xc1c4,11}, + {0x6e46,4}, {0x297f8,4}, {0x2eab,4}, {0xdf73,4}, {0x7021,2}, {0x3aca,14}, {0x22843,7}, {0x21fae,7}, + {0x1dfb7,7}, {0xf452,4}, {0x83df,4}, {0x16fd9,4}, {0x202b3,6}, {0x5073,13}, {0x25036,3}, {0x1c71d,8}, + {0x2a49a,5}, {0x1f9b1,5}, {0x14940,10}, {0x95fe,6}, {0x12d3e,4}, {0x1b855,10}, {0x208f6,4}, {0x136bc,9}, + {0x2cef6,2}, {0x23862,5}, {0x5177,12}, {0x2a59b,3}, {0x1fab3,6}, {0x1cd95,8}, {0x106f2,10}, {0x39ce,12}, + {0x9826,9}, {0x109e6,6}, {0x27b8f,6}, {0x21c9e,7}, {0x1d727,8}, {0x16bc5,9}, {0x21071,4}, {0x2d0f9,3}, + {0x952a,8}, {0x1e0c5,8}, {0x1d951,6}, {0x1468e,5}, {0x2993f,5}, {0xd65,4}, {0x10a3c,10}, {0x2aabb,8}, + {0x10206,10}, {0x25da9,6}, {0x29cc,10}, {0x21a8c,5}, {0xa7a3,7}, {0x2bd82,4}, {0x74ad,4}, {0x29de4,3}, + {0x286ed,6}, {0x2a71a,5}, {0xb98f,11}, {0x9f52,12}, {0x1407,3}, {0xa94e,12}, {0x8e5a,12}, {0x19cb4,5}, + {0x29bfd,3}, {0x1611e,5}, {0x35d0,14}, {0x53a6,5}, {0x169f1,9}, {0x26221,4}, {0xa192,12}, {0x16b35,9}, + {0x1c74,14}, {0x11c8e,10}, {0x6f30,4}, {0x21470,7}, {0x11004,10}, {0x19312,9}, {0x2a325,3}, {0x262f7,6}, + {0x2d0ee,3}, {0x16a72,6}, {0x15182,2}, {0x2be18,2}, {0x248cd,12}, {0x17091,9}, {0x2f5e,5}, {0x20d08,7}, + {0x19ef,15}, {0x263cb,4}, {0x1be0d,8}, {0x2bc18,2}, {0x2880f,7}, {0x2c1c2,4}, {0x2d951,4}, {0x295ce,5}, + {0x1a352,5}, {0x3688,6}, {0x116c6,10}, {0x12427,5}, {0x278b3,5}, {0x2a33c,5}, {0xd532,9}, {0x2bf46,4}, + {0x2a3a7,3}, {0x14a00,8}, {0x1f5a1,8}, {0x6c70,13}, {0xeac6,9}, {0x2495d,12}, {0x205f7,7}, {0x114b4,6}, + {0x9bda,11}, {0x143e,6}, {0x1fda,10}, {0x6214,13}, {0x57d0,7}, {0x2c5ae,6}, {0xe70d,5}, {0x1d64a,5}, + {0x16ac,6}, {0xb1f4,8}, {0x5df7,13}, {0x2c980,6}, {0x151fa,2}, {0x2bc92,4}, {0x8f1e,8}, {0xf5fd,4}, + {0x22bd7,7}, {0x3639,7}, {0x19b8d,4}, {0x1f441,6}, {0x14120,10}, {0x1a36d,7}, {0x22414,7}, {0x3c28,7}, + {0x853c,3}, {0x9b64,4}, {0x21d62,7}, {0x2d6ad,3}, {0x15536,10}, {0x1d3f5,8}, {0x27d12,6}, {0x2694b,6}, + {0x237c,10}, {0x151fa,8}, {0x15ef7,9}, {0x239c7,7}, {0x1835b,9}, {0xe76c,9}, {0x96c4,6}, {0x1ba45,8}, + {0x2565d,6}, {0x13620,6}, {0x1509e,6}, {0x2c066,4}, {0x257e3,6}, {0x8836,9}, {0xd666,10}, {0x19405,9}, + {0x9532,12}, {0x28500,4}, {0x3aca,13}, {0x4fbd,5}, {0xf490,7}, {0x1a56e,5}, {0x1fd31,8}, {0x2cf57,3}, + {0x1a526,5}, {0x7bca,12}, {0x1cf7b,5}, {0xc7a9,10}, {0x2a339,3}, {0x218d9,5}, {0x10b54,6}, {0x1bc2,8}, + {0x26d25,6}, {0x23afd,4}, {0x5698,13}, {0x19e2e,9}, {0xd527,8}, {0x96d6,12}, {0x1b11a,9}, {0x39c5,9}, + {0x229b1,7}, {0x5c98,6}, {0x23518,7}, {0x284e6,5}, {0x120f8,10}, {0x281d,10}, {0x1151,2}, {0x1e92f,5}, + {0x6079,4}, {0x42e4,14}, {0x2d971,4}, {0xaf09,9}, {0x7d50,6}, {0x104d6,6}, {0x1209e,7}, {0x1a1ab,7}, + {0x1a10,3}, {0x12503,5}, {0x2a6e3,5}, {0x19b69,7}, {0x1c41d,7}, {0x1d82f,8}, {0x16571,9}, {0x18cfd,9}, + {0x8e36,12}, {0x2cac4,6}, {0x1f971,5}, {0xfc0c,2}, {0x894a,12}, {0x2bf80,2}, {0x2aad7,4}, {0x20628,7}, + {0x14e9c,10}, {0x1fc1,5}, {0x28416,8}, {0x1bc77,6}, {0x1ca1,14}, {0xc6db,7}, {0x4ad0,7}, {0x231b4,6}, + {0x14db8,4}, {0xebed,11}, {0x126bb,5}, {0x4679,6}, {0x1bdb0,5}, {0x23087,7}, {0x184f9,9}, {0x164e6,4}, + {0x2a41a,3}, {0xc3c,3}, {0xad3e,12}, {0x88f8,7}, {0x4497,7}, {0x104a8,6}, {0x26357,6}, {0x17399,9}, + {0x11e48,8}, {0x1a146,5}, {0x14720,4}, {0x25ac1,6}, {0x2d4dc,3}, {0x9cca,12}, {0x70b2,8}, {0x5e6c,12}, + {0x1cda5,8}, {0x2b5c7,3}, {0x19a23,9}, {0xc87a,10}, {0xef8e,6}, {0x3511,5}, {0x24455,7}, {0x48db,7}, + {0xd7a5,11}, {0xd036,11}, {0x22b49,7}, {0x1aed3,7}, {0x11194,10}, {0x109ab,5}, {0x9a8a,12}, {0x2a424,3}, + {0x124c2,10}, {0x26d7b,4}, {0xe73e,11}, {0x1b7f3,14}, {0x17049,9}, {0x178f1,9}, {0x154ac,4}, {0x64f9,13}, + {0x7de6,12}, {0x17851,7}, {0x13324,8}, {0x2cd04,6}, {0x14dfe,5}, {0x23f15,6}, {0x14eee,6}, {0x26c08,3}, + {0x1ed61,8}, {0x121fc,10}, {0x194fa,7}, {0xbb1,4}, {0x10b7c,10}, {0x1622a,9}, {0x23924,7}, {0x1aead,6}, + {0xbdf1,11}, {0x1a197,9}, {0x1d1b5,7}, {0x1591d,9}, {0x21c5f,7}, {0x266bb,4}, {0x9ff6,3}, {0xcb55,3}, + {0x15c30,9}, {0x2cf63,2}, {0x23146,5}, {0x2b7aa,2}, {0x26fd9,4}, {0x2b96c,6}, {0x11808,7}, {0x28f28,3}, + {0x241df,6}, {0x1fa89,8}, {0x1daa5,8}, {0x12b1a,4}, {0x23622,7}, {0x2a37a,3}, {0x2871d,4}, {0x20f41,6}, + {0x1306a,6}, {0x247b9,12}, {0x10f9,2}, {0xdfe5,11}, {0x3a68,10}, {0x14cf8,6}, {0x11e2a,6}, {0x1f589,6}, + {0xefc0,8}, {0x5c7e,13}, {0x2a6d9,5}, {0xc5a2,11}, {0x908e,8}, {0x3e09,8}, {0xbc39,6}, {0xaeb9,5}, + {0x2a1c,14}, {0x20d1d,6}, {0x1d3e5,8}, {0x2b6f8,3}, {0x1d415,8}, {0x8afa,12}, {0x22f8d,5}, {0x296ca,5}, + {0x6658,13}, {0xfe59,7}, {0x1a8a3,7}, {0x9af8,4}, {0x1510a,8}, {0x22cd5,5}, {0x5a05,7}, {0x18370,4}, + {0x29437,5}, {0x2a5b9,3}, {0x115cc,10}, {0xf3d7,6}, {0x27a5d,6}, {0xc240,7}, {0x6742,9}, {0x2c03a,4}, + {0x1899d,9}, {0x2b4c5,4}, {0x8abe,4}, {0x15b36,3}, {0x25707,6}, {0x2a22b,3}, {0x1656a,4}, {0x2aec9,4}, + {0x1a06e,9}, {0x2c28e,4}, {0x2daea,2}, {0x2a3ac,3}, {0x2a3e3,3}, {0xe3c3,11}, {0x8b06,12}, {0x170e,8}, + {0x51ec,12}, {0x5db6,9}, {0xd7bb,11}, {0x132aa,10}, {0x1ab56,9}, {0x12efe,10}, {0x1f409,5}, {0xd674,4}, + {0x16a39,9}, {0x7dce,12}, {0x18d4e,9}, {0x6bbc,8}, {0x29b94,3}, {0x6f14,5}, {0x1dbe5,8}, {0x2cdb8,6}, + {0x2cd1c,6}, {0x1ac7f,9}, {0x7a4a,10}, {0x70fd,5}, {0x23160,7}, {0x27c07,5}, {0x68ef,12}, {0x22e1,4}, + {0x8ba4,9}, {0x29625,4}, {0x151be,8}, {0x6769,5}, {0x9dc6,9}, {0xaa9e,10}, {0x1487a,8}, {0x22716,7}, + {0x15e5e,6}, {0x1122a,7}, {0x207ef,5}, {0x1570e,8}, {0x212ca,7}, {0x29811,5}, {0x7046,6}, {0x1400a,4}, + {0x1bdad,8}, {0xa7bb,7}, {0x21a2b,7}, {0xaddc,9}, {0x1b9fd,8}, {0x2cca,7}, {0x21c2a,4}, {0x159e0,4}, + {0x5aad,2}, {0x2a6fc,5}, {0x1d95,6}, {0x21276,7}, {0x230c6,7}, {0x279e7,4}, {0x270a3,5}, {0xac66,6}, + {0xdf61,11}, {0x15ab9,3}, {0x20555,6}, {0x635f,5}, {0x20bde,7}, {0x6074,13}, {0xe2de,3}, {0x1b52b,3}, + {0x2a334,3}, {0xc6da,4}, {0xac90,6}, {0x2292c,7}, {0x29487,5}, {0x1027e,10}, {0x4404,5}, {0x2bd16,4}, + {0x23789,5}, {0x250d5,2}, {0x1341,9}, {0x13ec,16}, {0x2b39a,3}, {0x2564,6}, {0x12ff8,10}, {0xc30e,10}, + {0x1dd4,3}, {0x1555e,8}, {0xcacc,11}, {0x27015,2}, {0x1f7f9,8}, {0x15f6c,9}, {0x1a33,7}, {0x365c,14}, + {0x3e37,5}, {0x2bd44,2}, {0x653a,13}, {0x28842,5}, {0x14cbc,5}, {0x1d91,15}, {0x2d4df,3}, {0x11d06,10}, + {0x2b381,4}, {0x7e52,11}, {0x2add1,6}, {0x1dc5d,6}, {0x1cc7d,8}, {0xc982,11}, {0x2db88,2}, {0x19137,4}, + {0x350c,14}, {0x7f6a,5}, {0x5082,7}, {0xd099,11}, {0x24de9,6}, {0xe7f9,11}, {0x1e8a7,8}, {0x2a5a8,5}, + {0xaaf8,6}, {0x2251e,7}, {0x1c92,7}, {0x96a6,10}, {0x1fb71,8}, {0x2500d,3}, {0x1bafd,8}, {0x26b53,4}, + {0x16d1d,9}, {0x28dbb,3}, {0x16a42,9}, {0x1141e,10}, {0x1da6,8}, {0x2b912,6}, {0x1a98b,9}, {0x2baf2,6}, + {0x17be9,4}, {0x39dc,9}, {0x1d095,8}, {0x8ec6,11}, {0x2c698,6}, {0x2aa16,7}, {0x1dc6d,8}, {0x16772,9}, + {0xaee7,4}, {0x2b19d,4}, {0x19186,9}, {0x255dd,5}, {0x2179e,7}, {0xff68,8}, {0x17387,9}, {0x1f3f1,8}, + {0x1cc65,8}, {0x2a442,3}, {0x2bcb6,4}, {0x23eac,7}, {0xaf5c,4}, {0x268c7,6}, {0x6366,11}, {0x23a0d,5}, + {0x21f30,7}, {0x25a49,6}, {0x1f501,8}, {0x26ab9,6}, {0x2927f,5}, {0x3d4e,10}, {0x1fc33,3}, {0x20229,6}, + {0x1e881,5}, {0x27bd1,5}, {0x5025,13}, {0x2d30,10}, {0x1d6a7,5}, {0xcc63,10}, {0xfd1c,4}, {0x29797,5}, + {0x17669,9}, {0x1faf,4}, {0x2dabe,2}, {0x362a,5}, {0x750e,8}, {0x193ea,9}, {0x2de6,10}, {0x1e4d7,8}, + {0x29f38,3}, {0x19a0,3}, {0x7830,9}, {0x2c246,4}, {0x14ea8,3}, {0x16e7c,9}, {0x2ad2b,8}, {0x21a8a,7}, + {0x166a5,6}, {0x2684d,6}, {0x1b157,16}, {0x1a2fa,5}, {0x25299,10}, {0x11cac,10}, {0xc0fe,11}, {0xeff,6}, + {0x279b5,5}, {0x2e00,5}, {0xbb0,3}, {0xdf35,11}, {0x15e0f,4}, {0x11b2a,5}, {0x25aaf,6}, {0xf37f,9}, + {0x60cf,13}, {0x791e,12}, {0x21daf,7}, {0x2315b,3}, {0xe338,3}, {0x251fe,6}, {0x2d591,2}, {0x16f44,8}, + {0x27cfa,6}, {0xf8eb,3}, {0x10028,6}, {0xb92,14}, {0x1de9d,8}, {0x353b,9}, {0x29fa6,3}, {0x17c8b,7}, + {0x2b09a,3}, {0x19f3c,5}, {0x21313,3}, {0x18fbb,9}, {0x4923,13}, {0x127f6,10}, {0x1cb8d,8}, {0x1058a,10}, + {0x1e667,8}, {0x456e,13}, {0x1f2ad,4}, {0x2d9c9,4}, {0x1f623,3}, {0xf96f,8}, {0x2cfa7,3}, {0xe6db,10}, + {0x1ad3e,5}, {0x15ba2,7}, {0x2aa87,4}, {0x89f7,6}, {0x14968,10}, {0x142ac,4}, {0x14bae,5}, {0x1640d,5}, + {0x27c13,5}, {0x1ffcb,2}, {0x2992b,5}, {0x29b10,5}, {0x1ff61,8}, {0x9fd6,11}, {0x1d1ed,8}, {0x89eb,7}, + {0x1f893,6}, {0x2523f,6}, {0x9d7e,12}, {0x110c,16}, {0x1b643,8}, {0x1dcb7,5}, {0x2b902,4}, {0x147e2,5}, + {0x100d2,6}, {0x5f9f,5}, {0x1558b,3}, {0x19bdc,6}, {0x2bac2,6}, {0x1c7e5,6}, {0x2b299,4}, {0x10a32,10}, + {0x2853d,3}, {0x1abcd,7}, {0x1931b,6}, {0x23a0d,7}, {0x27517,6}, {0x1fa41,8}, {0x6c17,4}, {0xd88c,11}, + {0x24f97,6}, {0x1727b,5}, {0x1f9d9,8}, {0x15a82,4}, {0x29a63,3}, {0xe0b6,11}, {0x6484,13}, {0x101b6,10}, + {0x250d5,3}, {0x28891,5}, {0x15388,10}, {0x1d1d5,8}, {0x2af89,4}, {0x93ac,5}, {0xcd83,4}, {0x4ad5,4}, + {0x7ed6,12}, {0x21fd8,7}, {0x2450d,6}, {0x29872,2}, {0x11414,10}, {0x17483,8}, {0x27345,4}, {0x11a07,5}, + {0xbf6d,4}, {0x217e,9}, {0x16c0d,9}, {0x217b3,7}, {0x28441,5}, {0x25c7,4}, {0x4ff7,7}, {0x9202,12}, + {0x280e2,5}, {0x28358,5}, {0x8632,6}, {0x12652,10}, {0x27bda,3}, {0x2b031,4}, {0x1f1c1,6}, {0x8427,7}, + {0x1a2ff,9}, {0x256d1,5}, {0x19b79,9}, {0x9fee,11}, {0x1155,3}, {0x1369e,7}, {0x3fd9,7}, {0x1b140,5}, + {0x7bca,11}, {0xedf2,11}, {0xc833,5}, {0x1b5a3,8}, {0x25204,3}, {0x2a05f,3}, {0xb3e3,11}, {0xd595,11}, + {0x2a4b5,3}, {0x9982,12}, {0x202a9,8}, {0x14f28,10}, {0x2985,3}, {0xd57f,4}, {0x1a7ff,6}, {0x166b9,5}, + {0x1ef49,6}, {0xe3b8,11}, {0x1cf9c,5}, {0x181bf,5}, {0x270fd,6}, {0x193c6,9}, {0x2bd8e,4}, {0x1ae9b,9}, + {0x5734,13}, {0x1b3eb,8}, {0x2684f,3}, {0x17265,9}, {0x2bd46,4}, {0x3b2c,14}, {0xaaa0,8}, {0xd456,11}, + {0x21774,6}, {0x1c7f5,8}, {0x298d1,5}, {0x2630,5}, {0x2d9ad,4}, {0x94ed,3}, {0xa426,12}, {0x2684d,5}, + {0xd3d2,9}, {0x6040,13}, {0xe468,10}, {0x13b58,10}, {0xadb8,10}, {0x1f3ed,4}, {0x1b73d,14}, {0x30,118}, + {0x18498,3}, {0x130f,4}, {0x33ae,14}, {0x1259e,10}, {0x286d3,6}, {0x25094,5}, {0x2b96e,4}, {0x1141e,9}, + {0x1a49,6}, {0x21f1d,5}, {0xe2ff,8}, {0x2b279,4}, {0x1c0fd,8}, {0x12d34,4}, {0x130a2,6}, {0x101d4,10}, + {0x108d4,10}, {0x2db8,14}, {0x1c49d,8}, {0x9422,4}, {0xf622,3}, {0x1f8e3,3}, {0xe1f5,11}, {0x2c30,14}, + {0x1bd1d,8}, {0x12eb8,10}, {0x2c626,6}, {0xa07e,12}, {0xc66a,8}, {0x2c5a2,4}, {0x16436,7}, {0x18f97,9}, + {0x2bfa2,4}, {0x3d0e,8}, {0xcb45,11}, {0x182c2,9}, {0xe9c7,11}, {0x10e1a,5}, {0x2651d,6}, {0x2541f,6}, + {0x100c6,8}, {0x21505,5}, {0x1742,10}, {0xf162,11}, {0x1f389,8}, {0x1d8ff,8}, {0x24579,10}, {0x14eda,8}, + {0x16784,6}, {0x2b57c,4}, {0x47fb,8}, {0x9690,7}, {0xfc75,11}, {0x1a364,9}, {0x2fe8,14}, {0x1091a,10}, + {0x2b90,4}, {0x2a2df,3}, {0x703a,5}, {0xa8ee,9}, {0x12a3a,10}, {0x9a08,10}, {0x10c8,17}, {0xdd5c,11}, + {0x1c1a7,5}, {0xe888,10}, {0x1b2a,15}, {0x1ad84,9}, {0x6aec,11}, {0x20be,4}, {0x1a0d3,7}, {0x27cf7,3}, + {0x1bb95,8}, {0x26b1b,6}, {0x29ac5,5}, {0x29506,4}, {0x2859c,2}, {0x2a6f7,5}, {0x1290,12}, {0xa00d,4}, + {0x2a375,3}, {0x2d5e7,3}, {0x257d7,6}, {0x29c6b,3}, {0x2679,12}, {0x2a6ed,5}, {0xe126,9}, {0x3b13,4}, + {0x17fe,4}, {0x29ba6,5}, {0x8d2e,12}, {0x1feb3,6}, {0x6900,8}, {0x17c65,9}, {0x29d9e,3}, {0x29266,4}, + {0x5c48,8}, {0xfa1,6}, {0x4070,7}, {0xc07a,11}, {0x21709,7}, {0x25daf,6}, {0x22af5,7}, {0x159c,7}, + {0x29fa1,3}, {0x294aa,5}, {0xf1d0,7}, {0x2971a,5}, {0x16adb,8}, {0x18f34,7}, {0x1cd9d,8}, {0x29b7e,5}, + {0x29419,5}, {0x1eed9,8}, {0xa9a2,12}, {0x20479,8}, {0x1b8b7,14}, {0x14014,7}, {0x8518,4}, {0x1ef79,5}, + {0x4290,14}, {0x180c1,9}, {0x1b1d7,16}, {0x26a05,6}, {0x10dde,10}, {0x1ac2a,4}, {0x10938,10}, {0x2421,12}, + {0x28d74,5}, {0x58c7,13}, {0x8e77,3}, {0x22f39,3}, {0x1a6b4,7}, {0x9ab0,9}, {0x216e2,4}, {0x29e6b,3}, + {0x16880,9}, {0x163af,9}, {0x3c52,9}, {0x2d94d,4}, {0xe223,9}, {0x2a6ac,5}, {0x2d4e2,3}, {0xa7c4,10}, + {0x3dd1,4}, {0x2cd88,4}, {0x1004,3}, {0xfc3e,6}, {0x995e,11}, {0x17ace,9}, {0x17606,9}, {0x19279,9}, + {0x26829,6}, {0xdf98,11}, {0x1a55c,9}, {0x5195,7}, {0xa516,12}, {0x4404,11}, {0x2a136,3}, {0x2a5b4,3}, + {0x126d4,10}, {0x24e57,4}, {0x38e5,8}, {0x5c5d,5}, {0x2a57d,3}, {0xa3a7,7}, {0x14cc6,10}, {0x133a6,6}, + {0x1267a,10}, {0x26a6b,6}, {0x21676,6}, {0x19c24,9}, {0x28513,3}, {0x2bcce,4}, {0x26e1b,6}, {0x8092,12}, + {0x13df9,7}, {0x20429,8}, {0x2d602,3}, {0x1c825,5}, {0x2b411,4}, {0x2211f,4}, {0xf6e4,11}, {0x2bffc,2}, + {0x2bfd4,2}, {0x1aa16,2}, {0x1f473,6}, {0x9856,12}, {0x14d8e,10}, {0xe28f,11}, {0x2b18,14}, {0x27e6e,4}, + {0x2237a,7}, {0x2b9a8,6}, {0x4477,13}, {0x1afb2,6}, {0xebd7,8}, {0x9d69,4}, {0x1d637,8}, {0x14170,10}, + {0x698b,13}, {0x145f0,8}, {0x27601,6}, {0x2c716,4}, {0x1b131,2}, {0x26be1,6}, {0x71af,7}, {0x29583,5}, + {0x5ae9,13}, {0x4cff,6}, {0xd931,7}, {0x1d6ef,5}, {0x3cc9,4}, {0x1cd19,4}, {0x2710f,6}, {0x41c0,5}, + {0x204b3,8}, {0x19b4c,9}, {0x28c4b,4}, {0x2d380,3}, {0x139c,5}, {0x1633e,5}, {0x240d0,5}, {0x6e12,4}, + {0xf04,8}, {0x1ebdb,6}, {0x445d,13}, {0xd8af,6}, {0x15dfe,5}, {0x5d75,8}, {0x2b1fd,4}, {0x2423a,6}, + {0x9442,11}, {0x2a37f,3}, {0x15fc3,3}, {0x1e035,7}, {0xb5f,13}, {0x7a3e,10}, {0x19baf,9}, {0x1090a,6}, + {0x10ab4,10}, {0x18d8d,9}, {0xcc84,10}, {0x92f5,5}, {0x65b1,6}, {0x19111,9}, {0x975a,12}, {0x105a8,10}, + {0x974e,6}, {0x11dd8,10}, {0x2c4f4,4}, {0xb87e,5}, {0x24c35,6}, {0x22f9,7}, {0x9ff,32}, {0x95f2,12}, + {0x17280,6}, {0x2bae0,6}, {0x2a253,3}, {0xf608,11}, {0x2a3e8,3}, {0x1adba,9}, {0x13540,10}, {0x1d48d,8}, + {0x16416,5}, {0x2c296,4}, {0x2ba7a,6}, {0xbf3f,7}, {0xf922,11}, {0xce7,3}, {0x29edc,5}, {0x8b12,12}, + {0x15fe1,9}, {0x825f,7}, {0xd94d,5}, {0xa32a,12}, {0x14f69,5}, {0xc177,8}, {0x1c525,6}, {0x16e8e,6}, + {0x1f519,8}, {0x1ff8,10}, {0x15270,10}, {0x1395a,7}, {0xdad3,11}, {0x2a33e,3}, {0x61c8,4}, {0x3b48,14}, + {0xac5c,5}, {0x9d66,9}, {0xe393,4}, {0x219f3,7}, {0x22fda,4}, {0x29f9c,3}, {0x1dd4d,8}, {0x2252c,6}, + {0x18d33,9}, {0x1b1af,8}, {0xf699,5}, {0x2d746,4}, {0x194cb,9}, {0x18afc,9}, {0x2d563,3}, {0x8206,12}, + {0x593c,12}, {0x5546,9}, {0x2544f,6}, {0x1001e,6}, {0xd180,10}, {0x153a8,8}, {0x48ae,5}, {0x1ee2c,5}, + {0x104cc,10}, {0x3250,7}, {0x163df,6}, {0x29ba8,3}, {0x18cbe,9}, {0x191bc,9}, {0x2c2f6,4}, {0x1ea7,3}, + {0x12071,5}, {0x1bd6f,6}, {0x11d6a,10}, {0x532,258}, {0x7938,6}, {0x15820,2}, {0x19c09,9}, {0xe8d0,5}, + {0x2bf66,4}, {0x11878,6}, {0x1582a,9}, {0x2360f,5}, {0x2b4ad,4}, {0x1a8e9,8}, {0x13630,6}, {0x15068,5}, + {0x2a3b6,3}, {0x2b8c4,6}, {0x164e1,9}, {0x278a3,4}, {0x1a553,6}, {0xf51f,11}, {0x18055,9}, {0x1ebf3,6}, + {0x26f8f,6}, {0x13e8e,5}, {0x32d5,3}, {0x9bc2,12}, {0x1354a,10}, {0x1170c,6}, {0x1574b,4}, {0x10d5c,10}, + {0x2069c,4}, {0xc649,11}, {0x13ebe,10}, {0x28f67,4}, {0xfb1c,11}, {0x1da37,6}, {0x272b9,6}, {0xd4f,3}, + {0x25461,6}, {0x410c,5}, {0x16f3b,7}, {0x25189,6}, {0x2b565,4}, {0x2b0bf,3}, {0x30,120}, {0x2beaa,4}, + {0x2c1fa,4}, {0x1e72,14}, {0x21150,7}, {0x137ca,9}, {0xe86c,4}, {0x1c22d,7}, {0x217e4,7}, {0x1b26c,3}, + {0x2a1b1,5}, {0x1ee3b,6}, {0x2cea5,5}, {0x29ab1,4}, {0x279f3,4}, {0xd083,11}, {0x1d4cd,8}, {0x1ca7,8}, + {0x2bd4e,4}, {0x1fd03,6}, {0x20d08,5}, {0x6248,13}, {0x1a6fa,9}, {0x2a6d4,5}, {0x13324,7}, {0xddeb,10}, + {0x3c44,9}, {0x2a5da,5}, {0x1fed3,6}, {0x1d0cd,8}, {0xd8b0,4}, {0xda32,6}, {0x10350,10}, {0x2a567,5}, + {0xb5a2,4}, {0x2734f,6}, {0x21aaf,4}, {0x20659,7}, {0x432,23}, {0x6520,13}, {0xfde2,3}, {0x10514,6}, + {0xdb41,11}, {0x27c4f,5}, {0x24b0,7}, {0x55db,4}, {0x19417,7}, {0xa9d4,8}, {0x18c6d,9}, {0x532,74}, + {0x24dc8,3}, {0x279f9,4}, {0x33bc,14}, {0x16cc3,9}, {0x1592f,9}, {0xd18,3}, {0x2bf86,4}, {0x1edd3,6}, + {0x10d9,8}, {0xb795,8}, {0xeec3,11}, {0x1568a,6}, {0x10c4e,7}, {0x26335,4}, {0x2b784,3}, {0xdba,17}, + {0x19462,6}, {0x37ba,14}, {0x130a2,10}, {0x9ab2,3}, {0x9a1e,7}, {0x2c938,6}, {0x18768,6}, {0xad56,5}, + {0x1494a,5}, {0x29f42,3}, {0x20463,6}, {0xc6f0,9}, {0x1a91f,9}, {0x11f5e,10}, {0x24279,5}, {0x2d4e5,3}, + {0x1932d,9}, {0x1e6a7,8}, {0x72e2,7}, {0x12a9e,10}, {0x17542,7}, {0x21bc5,7}, {0x1c7a7,5}, {0x13cd7,4}, + {0x20219,8}, {0x2648f,6}, {0x21052,7}, {0x273d3,5}, {0x6c0e,7}, {0x184de,9}, {0x2a3a,10}, {0x1519e,6}, + {0x251e0,6}, {0x2334c,4}, {0x914e,12}, {0x13478,10}, {0xeb1,4}, {0x23f03,4}, {0x206e5,7}, {0x12f94,10}, + {0x2d6ef,3}, {0x2a70b,5}, {0x1ea27,8}, {0x1445e,10}, {0x374a,14}, {0x24323,5}, {0xf9fe,11}, {0x11f0e,10}, + {0x297fd,5}, {0xcc21,11}, {0x1b791,14}, {0x1125c,10}, {0x5317,10}, {0x23f80,4}, {0xafba,12}, {0x1f59b,2}, + {0x16441,6}, {0xb18d,4}, {0x23f85,7}, {0x2cb2a,6}, {0x5bd3,5}, {0x1ab1b,5}, {0xfd72,11}, {0x29ac,5}, + {0x4188,3}, {0x1860b,5}, {0x14a4e,10}, {0x14d4,8}, {0xa4aa,11}, {0x20469,8}, {0x74aa,11}, {0x1de65,8}, + {0x457b,13}, {0x13eec,4}, {0x93e2,12}, {0x221fe,7}, {0xc2b6,11}, {0x1af09,7}, {0x22a3f,5}, {0x10bc2,9}, + {0xf66b,11}, {0x2cf30,3}, {0x5080,13}, {0x2256b,7}, {0x23c8c,5}, {0x2be62,4}, {0x22b26,7}, {0x154de,3}, + {0x138ee,7}, {0x2a41d,5}, {0x1c3ad,8}, {0x29dec,5}, {0x2c566,4}, {0xe68e,9}, {0x2b593,4}, {0x4710,6}, + {0x1a979,9}, {0x1ea37,7}, {0x1edf3,5}, {0x432,24}, {0x1c1c5,7}, {0x2b5fd,3}, {0xfebc,12}, {0x25440,3}, + {0x2303a,7}, {0x4dba,6}, {0x13ce8,7}, {0xfcb1,6}, {0x27b23,6}, {0x2894d,5}, {0x31a0,7}, {0x1c50d,8}, + {0x1afcd,9}, {0x261ab,6}, {0x2952e,5}, {0xa344,10}, {0x2c0f6,4}, {0x183c,10}, {0x1ff49,8}, {0x16b53,4}, + {0x1f869,5}, {0xbae4,10}, {0x20279,8}, {0x193dd,4}, {0x146cc,5}, {0xa4d,24}, {0x23113,7}, {0x2512f,6}, + {0x1b783,14}, {0x23ec1,7}, {0xcec5,6}, {0x430,23}, {0x1434a,3}, {0x2d377,2}, {0x23c46,5}, {0x20239,6}, + {0x4f24,8}, {0x2d26c,3}, {0x3913,5}, {0x8152,12}, {0x209c3,5}, {0xb257,11}, {0x1d043,8}, {0x22041,5}, + {0x2b5ef,4}, {0x2359d,7}, {0x1f2b9,7}, {0x178d6,9}, {0x24ce8,3}, {0x57fb,4}, {0x1ea81,6}, {0x2b76,4}, + {0x1f979,5}, {0x70cc,8}, {0x1bea5,8}, {0x1204e,9}, {0x23dc5,4}, {0x1cfb9,8}, {0x1488e,8}, {0x1f08,11}, + {0x4aa9,13}, {0x289d5,5}, {0x423e,3}, {0x2a9af,5}, {0x1709a,9}, {0x1623e,6}, {0xe45d,8}, {0x13214,10}, + {0x55ae,13}, {0x1460c,6}, {0xce31,11}, {0x923e,12}, {0x4118,2}, {0xf655,9}, {0x1a21e,5}, {0x251cd,5}, + {0xa672,12}, {0x235c7,5}, {0x1393e,8}, {0x23846,3}, {0x29620,4}, {0x6b9b,3}, {0x1dd05,8}, {0x29565,5}, + {0xdb50,7}, {0x1a6e,8}, {0x287d2,5}, {0x225b1,7}, {0x3e2e,14}, {0x27d33,6}, {0x20421,8}, {0x275e3,6}, + {0x2ae91,4}, {0x51f2,5}, {0x27aa5,5}, {0x256f,4}, {0x2a44c,3}, {0x4860,12}, {0x175d2,7}, {0x2422e,5}, + {0x3854,10}, {0x14d98,10}, {0xa2e2,12}, {0x28849,5}, {0x5f90,6}, {0x286a,6}, {0xab82,12}, {0x2d859,4}, + {0x23b95,7}, {0x20543,5}, {0x14292,10}, {0x20afc,7}, {0x1d20d,8}, {0x1a254,9}, {0x2ab8,11}, {0x2139,3}, + {0x17edb,9}, {0x5600,8}, {0xae2,3}, {0x150d9,5}, {0x140e6,8}, {0x2c0b2,4}, {0x3a5a,14}, {0x265b3,5}, + {0x24c1d,6}, {0x8566,12}, {0x14e6c,8}, {0x15743,4}, {0x2da4b,2}, {0x29946,3}, {0x17ff2,9}, {0x18e31,4}, + {0x25881,4}, {0xaebe,6}, {0x1d3cf,6}, {0xbe1d,11}, {0xfb90,4}, {0xa6ba,6}, {0x4cbe,13}, {0x1be65,8}, + {0x26fbf,5}, {0x1cb5,3}, {0x2be2c,2}, {0x407a,14}, {0x145df,3}, {0x19bca,5}, {0x1ed8b,6}, {0x4282,5}, + {0x2426b,7}, {0xc56b,11}, {0x23cfa,7}, {0x16182,6}, {0xf878,3}, {0x269b7,6}, {0x25c99,4}, {0x2ab1b,8}, + {0x2dba8,2}, {0x13f38,7}, {0x1450c,4}, {0x1fea1,8}, {0x1995f,7}, {0x19c14,3}, {0x1dc1,3}, {0x433a,9}, + {0x4b0a,7}, {0x162e2,4}, {0x5f97,13}, {0x14760,10}, {0xe657,11}, {0x532,68}, {0x4611,6}, {0x9e32,12}, + {0xafec,3}, {0x2b0dd,4}, {0x2da29,4}, {0x10ee4,5}, {0x24c74,3}, {0x2a348,3}, {0x58ad,9}, {0xdd04,8}, + {0xea14,11}, {0x130fc,10}, {0x6ac3,5}, {0x1a85d,5}, {0x362c,4}, {0x1ee51,8}, {0x950e,12}, {0x14986,9}, + {0x6574,4}, {0x2d3fd,3}, {0x1d76f,8}, {0x27c5b,5}, {0x2b69f,4}, {0x3d24,14}, {0x17b67,5}, {0x2598,15}, + {0x2a710,5}, {0x443b,3}, {0x1361c,6}, {0x25ac7,7}, {0x142c,16}, {0x11864,6}, {0x25d97,6}, {0x1e79f,8}, + {0xcd2e,6}, {0x2a68e,5}, {0x19def,9}, {0x14cb2,5}, {0x26601,6}, {0xa876,8}, {0x14f96,10}, {0xd001,4}, + {0x43f5,3}, {0x3b1a,4}, {0x160f8,6}, {0xeba0,11}, {0x430,130}, {0x2d9ed,4}, {0x3f54,7}, {0xca53,8}, + {0xcd08,11}, {0x2cd10,6}, {0x2214d,8}, {0xfde0,11}, {0x24059,5}, {0xf68c,5}, {0x2c770,6}, {0x28863,7}, + {0x3b02,14}, {0x72aa,8}, {0x2a45b,3}, {0x2bd2e,4}, {0x215f8,7}, {0x17c1d,9}, {0xcd1e,11}, {0xa2fa,12}, + {0x21dc4,7}, {0x5e2b,13}, {0x17e66,9}, {0x20bd7,7}, {0x2aeb1,3}, {0x1794b,5}, {0xd328,5}, {0x8848,6}, + {0x2ce91,5}, {0x830e,8}, {0x3b80,14}, {0x23ba3,7}, {0x1cf0f,6}, {0x36f9,3}, {0x37c8,14}, {0x11734,10}, + {0x11a04,10}, {0x166c,7}, {0x26ccb,6}, {0x143c8,10}, {0x1697,5}, {0x21ab4,4}, {0x48fc,11}, {0x2d36b,3}, + {0x1ff91,8}, {0x4c8a,13}, {0x87cd,4}, {0xf27,5}, {0x2f24,14}, {0x1cbf,15}, {0x209bc,5}, {0xfe50,9}, + {0x1a3a,11}, {0x2b626,4}, {0xee55,8}, {0xaf42,7}, {0x9984,7}, {0x91cb,7}, {0x20794,7}, {0x242b1,7}, + {0x20f35,5}, {0x21a32,7}, {0x21727,7}, {0x1085a,12}, {0xc2e4,8}, {0x2a88c,5}, {0x1bb15,8}, {0xfdb4,8}, + {0xcc5b,5}, {0x265ad,6}, {0x149e2,6}, {0x1d46d,8}, {0x2bc9e,4}, {0x7832,7}, {0x23a7d,7}, {0x2d781,4}, + {0x201eb,3}, {0x17537,9}, {0x2a3f7,3}, {0x86aa,11}, {0xa546,12}, {0x3ebc,4}, {0x25d01,4}, {0x9ea3,6}, + {0x2b926,4}, {0x16ec4,6}, {0x28fa0,3}, {0x10f78,10}, {0x1e4ff,8}, {0xd34e,8}, {0x15c4b,9}, {0x1cc9d,8}, + {0x70ea,4}, {0xefb5,7}, {0x24513,6}, {0x14ece,10}, {0xcfd8,6}, {0x25845,4}, {0x1d90f,8}, {0x251f7,3}, + {0x11948,7}, {0x134e6,10}, {0x2888a,7}, {0x1839a,7}, {0x1c911,4}, {0xf9a9,8}, {0x19b72,3}, {0x6110,13}, + {0x8164,6}, {0x279ff,4}, {0xb900,11}, {0x2d473,3}, {0xad92,12}, {0x22acb,5}, {0x3afc,6}, {0x1d465,8}, + {0x1721d,7}, {0x20091,8}, {0x2336d,7}, {0x10e38,10}, {0x2d68,9}, {0x23294,7}, {0x58ee,13}, {0x1fdb3,6}, + {0x11234,6}, {0x14712,2}, {0x26b09,5}, {0x2be1e,4}, {0x127e2,10}, {0x84be,12}, {0x187a5,9}, {0x23454,7}, + {0xad6e,9}, {0x266bb,5}, {0x19f33,9}, {0x1ba85,8}, {0x177c,11}, {0x27979,5}, {0x2b30b,4}, {0x2bf44,2}, + {0x1ec51,8}, {0x20bb,15}, {0x2a517,5}, {0x231c4,5}, {0x29870,4}, {0x2ca0,14}, {0xce37,4}, {0x6a12,3}, + {0x10a28,10}, {0x2b5d7,4}, {0x11ccf,5}, {0xaa32,6}, {0xc680,10}, {0x2639f,6}, {0xe4e1,11}, {0x1c7dd,8}, + {0x25cf9,6}, {0x2940a,5}, {0xdd9e,11}, {0x24018,7}, {0x78b2,7}, {0x27aab,6}, {0x2a410,3}, {0x29353,3}, + {0x1fcb1,8}, {0x13d38,7}, {0x60c2,13}, {0x22d7,12}, {0x1f883,6}, {0x20f25,7}, {0x64f3,6}, {0x2bdd0,2}, + {0x3296,7}, {0x705e,3}, {0x4853,13}, {0x2c1c6,4}, {0x147e2,7}, {0x2c3c8,4}, {0x9dc6,12}, {0x2d5db,3}, + {0x16894,5}, {0xf065,11}, {0x15f48,9}, {0x2c338,6}, {0x27ded,7}, {0x126e8,7}, {0x7c4,14}, {0xde01,11}, + {0x23a32,5}, {0x2573,7}, {0x28be5,5}, {0x219cb,5}, {0x2d5d0,2}, {0x241fb,5}, {0x8988,10}, {0x47c4,8}, + {0x19bb8,9}, {0x1f039,8}, {0x1e8e1,6}, {0x64c5,10}, {0x880b,4}, {0x270b7,2}, {0x89ce,12}, {0xd5e8,5}, + {0x1a5a4,6}, {0x1e46f,8}, {0x1aca3,9}, {0xa9f6,12}, {0x660e,9}, {0x1468e,10}, {0x6ddc,12}, {0x1cb6,3}, + {0x2a693,5}, {0x28703,6}, {0x161c7,9}, {0xe9f3,11}, {0x4362,5}, {0x1eddb,4}, {0x27b3b,6}, {0x7d4a,12}, + {0x1de45,8}, {0x8aee,12}, {0x1a18e,6}, {0x273b5,4}, {0x279f1,5}, {0xf8f4,11}, {0x25e85,6}, {0x2c722,4}, + {0x4672,13}, {0x9826,7}, {0xf147,5}, {0x1d23,4}, {0x11f36,10}, {0x932e,12}, {0x1ea4f,8}, {0x28123,5}, + {0x22d54,7}, {0x2d066,3}, {0x2bf94,2}, {0xd787,4}, {0x2f0f,4}, {0x26837,4}, {0x23860,6}, {0x20449,8}, + {0x105da,10}, {0x100d,8}, {0x8c26,12}, {0x82d2,6}, {0x19afd,4}, {0x3314,11}, {0x1dbf5,5}, {0xf870,6}, + {0x2563c,3}, {0xa372,12}, {0x2bef2,4}, {0x1caa0,5}, {0x954a,8}, {0x2a6c5,5}, {0x463e,13}, {0xc6fe,6}, + {0x21722,5}, {0x14f84,4}, {0x29efc,3}, {0x10e74,10}, {0x115a4,8}, {0x243de,5}, {0x537f,12}, {0x110cc,10}, + {0x1c305,8}, {0xf2e3,11}, {0x10b36,10}, {0x211ce,7}, {0x2b85a,4}, {0xd926,10}, {0x23e7e,4}, {0x89da,4}, + {0x11720,9}, {0x2268e,3}, {0x17d22,9}, {0x164e,5}, {0x227d3,6}, {0x2d48b,3}, {0x22786,6}, {0x1a4b1,6}, + {0x19932,5}, {0x3934,14}, {0x1b79f,14}, {0xb83a,8}, {0x2837b,5}, {0x1c38d,8}, {0x106c4,4}, {0x8637,7}, + {0x2c620,6}, {0x14076,10}, {0xb2af,11}, {0x10976,7}, {0x10f8c,10}, {0x8d82,12}, {0x23e46,4}, {0x706a,12}, + {0x2a5f0,3}, {0x265af,4}, {0x28f23,2}, {0xae9a,6}, {0x155d6,4}, {0x110ae,10}, {0x28da8,7}, {0xfa4d,6}, + {0x2b307,4}, {0xeada,10}, {0x18874,5}, {0x237db,6}, {0x295b5,5}, {0x2b559,4}, {0x1be3d,8}, {0x16ab7,9}, + {0x2da93,2}, {0x2db65,2}, {0x2a6c0,5}, {0xc557,6}, {0x202c9,8}, {0x2c752,4}, {0xa5ee,11}, {0x23756,4}, + {0x27ee6,5}, {0x3e90,14}, {0x16cf9,9}, {0x19e13,9}, {0xc696,6}, {0x1a6eb,6}, {0x21df8,4}, {0x11c34,9}, + {0x2b4cd,4}, {0x177c,16}, {0x157e2,12}, {0x200d1,7}, {0x1a349,9}, {0x1765a,6}, {0x14ae4,10}, {0xa27c,5}, + {0x23559,3}, {0x2d8b9,4}, {0x40f8,10}, {0x18d06,8}, {0x1d605,8}, {0x152c0,6}, {0x1dc70,4}, {0x2a90f,4}, + {0xfc96,6}, {0x13dce,10}, {0x2ab23,8}, {0x1c47,15}, {0x25b67,7}, {0xde71,8}, {0xce94,11}, {0x24360,7}, + {0x17861,9}, {0x19517,4}, {0x1403a,10}, {0x1f63c,3}, {0x4491,7}, {0x11224,6}, {0x2bf06,4}, {0x2b968,4}, + {0xa3de,12}, {0x30,124}, {0x1538a,8}, {0x23cf6,4}, {0x2e76,4}, {0x1f5ad,4}, {0x28128,5}, {0x29330,3}, + {0x1b365,5}, {0x6f37,4}, {0x10fd2,6}, {0x28644,5}, {0xb8df,11}, {0x28e4a,5}, {0x26213,6}, {0x57ee,9}, + {0xa3ae,12}, {0x568b,12}, {0x1f7f1,8}, {0x31bb,5}, {0x21a1d,5}, {0x20209,8}, {0x292a4,2}, {0x14dc,16}, + {0x14caa,8}, {0x1ce37,6}, {0xcc00,10}, {0x631f,6}, {0x2cf8b,2}, {0xfe64,11}, {0xf249,11}, {0x1749e,9}, + {0x241f4,7}, {0x7c4,19}, {0x1a93a,9}, {0x29d42,5}, {0x939a,11}, {0x13c70,9}, {0x1390a,10}, {0x9016,9}, + {0x20e12,7}, {0x1cb95,8}, {0xf363,4}, {0x3df6,14}, {0xa5ca,12}, {0x2d653,3}, {0x1aab4,6}, {0x372e,13}, + {0x69f5,5}, {0x2a3d9,3}, {0xfff,7}, {0x2a54e,5}, {0x272e9,6}, {0x9bb6,12}, {0x2d104,3}, {0x2b475,4}, + {0x2c35c,6}, {0x123b6,8}, {0x750a,12}, {0x141c,16}, {0x5879,13}, {0x838c,6}, {0x26ffb,6}, {0x18381,6}, + {0x29ad4,4}, {0xf62e,6}, {0xa02a,12}, {0x1013,4}, {0x14a50,8}, {0x1e597,8}, {0x1bd15,8}, {0x11af9,5}, + {0x10634,9}, {0x28052,2}, {0x1fa93,6}, {0xded2,11}, {0x14c78,3}, {0x81f4,5}, {0x21dbd,7}, {0xfc28,11}, + {0xe03d,11}, {0x29792,5}, {0x1ba75,8}, {0x8809,4}, {0x3d78,14}, {0x26993,6}, {0x21469,7}, {0x2a55d,5}, + {0x27805,6}, {0x26733,6}, {0x11ffe,6}, {0x2b731,4}, {0xf0f4,8}, {0x9b88,8}, {0x26a35,6}, {0xe3e8,7}, + {0x2744b,6}, {0x1e307,6}, {0x14b2c,10}, {0x2d116,3}, {0x15e55,9}, {0x2cb9c,6}, {0x16fb9,6}, {0x1a816,4}, + {0x248a,15}, {0x2692d,6}, {0x14cfe,4}, {0x10966,4}, {0x1c60,4}, {0x1ed79,8}, {0xcc9a,7}, {0x2314b,7}, + {0x3b56,14}, {0x14eba,8}, {0x12292,10}, {0x12d1,5}, {0x256a7,6}, {0x24f3,14}, {0x160b9,9}, {0x11c3,9}, + {0x3862,13}, {0x14634,6}, {0x22fc3,7}, {0xfad1,9}, {0x2bcd6,4}, {0xe31,10}, {0xdb20,11}, {0x4034,14}, + {0x28b69,5}, {0x10088,10}, {0x125f2,6}, {0x1f4f9,8}, {0x284d6,2}, {0xc675,7}, {0xdfd1,9}, {0x1c755,8}, + {0x2a25,3}, {0x12422,9}, {0xe24d,10}, {0xf73c,6}, {0x2b633,4}, {0xaa94,4}, {0x18079,9}, {0x1ba2,10}, + {0x866e,8}, {0x1e8af,8}, {0x18f34,9}, {0x27a69,5}, {0x2c8c0,6}, {0x2dfe,14}, {0x18246,4}, {0xab52,5}, + {0x605d,10}, {0x98aa,11}, {0x2db1a,2}, {0x14e56,7}, {0x2a689,5}, {0x27da9,6}, {0x2b23b,4}, {0x292a2,4}, + {0x1d7af,8}, {0x4018,14}, {0x2a8dd,5}, {0x694a,12}, {0x1f733,6}, {0x26c8f,6}, {0x2f9e,4}, {0x183f4,9}, + {0x1f841,5}, {0x214b6,7}, {0x1a2ae,6}, {0x2c43a,6}, {0x1c408,5}, {0x925c,4}, {0xf28e,4}, {0x7702,11}, + {0x5c3b,13}, {0x190b7,9}, {0xe9fe,11}, {0x35ee,3}, {0xd43,7}, {0x27e0d,5}, {0x720c,8}, {0x4410,2}, + {0x43a7,13}, {0x2844a,2}, {0x270df,4}, {0x2b7db,4}, {0x155ae,10}, {0x29eed,3}, {0xe7b7,11}, {0x863e,12}, + {0x25619,6}, {0x45a9,3}, {0xee18,6}, {0xf924,9}, {0x223b9,7}, {0x2bfbe,4}, {0x139e8,4}, {0x20faa,7}, + {0x25d9,3}, {0x1c84d,8}, {0xb62,2}, {0x4ebc,5}, {0xa46e,12}, {0x2748d,6}, {0xd6f5,9}, {0x12986,8}, + {0xcdad,9}, {0xe807,8}, {0xbb4c,4}, {0x840a,12}, {0x2d5ae,3}, {0x189b8,9}, {0x12418,8}, {0xa854,4}, + {0x6957,12}, {0x9f5e,12}, {0x2bd5e,4}, {0xb1a7,11}, {0x2c59c,4}, {0x24194,3}, {0xaf06,12}, {0x160d4,9}, + {0x2c27e,4}, {0x4de1,5}, {0x3678,14}, {0x1fde1,5}, {0x20ae,5}, {0x1af19,9}, {0x1669a,7}, {0x1b8c5,10}, + {0x2bc86,4}, {0x2d569,3}, {0x1f2c9,8}, {0x2901d,3}, {0x114aa,10}, {0xae9a,5}, {0x14c4e,10}, {0x2474d,6}, + {0x1fe81,7}, {0x26d1f,6}, {0x214a1,7}, {0x2ac5b,8}, {0x969,32}, {0x1012,4}, {0x2629,4}, {0x13d02,4}, + {0x26ec9,6}, {0x136a8,10}, {0x24ccb,6}, {0x11496,10}, {0x14c62,10}, {0x1e51f,8}, {0x19df8,9}, {0x2a6a7,5}, + {0x17fc5,9}, {0x2b5d2,3}, {0x60b5,6}, {0x25aa9,6}, {0x14332,10}, {0x12c6a,8}, {0x50af,5}, {0x26be7,5}, + {0x24161,7}, {0x1574e,2}, {0x29fb0,3}, {0x15482,10}, {0x66f4,10}, {0x1d7b7,8}, {0xcde,10}, {0x1305c,10}, + {0x1d807,8}, {0x10e4c,10}, {0xefe5,5}, {0x22533,7}, {0x54be,6}, {0x1d887,5}, {0x4aa9,9}, {0x1be1d,8}, + {0x1f0e3,6}, {0x18a63,6}, {0x2a145,3}, {0x16f33,8}, {0x255c5,6}, {0x2be5a,4}, {0x2b7b7,4}, {0x8ec6,12}, + {0x1b54b,6}, {0x9dea,12}, {0x28191,5}, {0x135c,16}, {0x27ac9,6}, {0x23d49,5}, {0x1e6bf,6}, {0xb89,3}, + {0xd04c,11}, {0x13bc,16}, {0x1b6c3,4}, {0x18a3f,9}, {0xb1de,11}, {0x71fe,5}, {0x2881d,7}, {0x2b071,4}, + {0xe2e9,4}, {0xa017,7}, {0x199ae,8}, {0x2ca2,3}, {0x225e2,5}, {0x2a34d,3}, {0x166d0,9}, {0x2af7,5}, + {0x1daed,8}, {0x2d4d9,3}, {0x18cd0,6}, {0xaf3,40}, {0x1afd6,9}, {0x23759,4}, {0x29f06,3}, {0x22fb0,5}, + {0x1d13f,6}, {0x15aa6,9}, {0x26db1,4}, {0x28263,5}, {0x2af85,4}, {0x4728,13}, {0x2d086,3}, {0x2b34,13}, + {0x127ce,10}, {0x22eb2,7}, {0x1684,8}, {0x7858,3}, {0xc5ef,11}, {0x24401,5}, {0xafd2,9}, {0x24b24,4}, + {0x1da17,6}, {0xc9a3,7}, {0xad1a,12}, {0x154d7,3}, {0x17cad,9}, {0x16c3a,7}, {0x18339,7}, {0x8056,12}, + {0x2ad9b,6}, {0x2d8d9,4}, {0x25ecd,5}, {0x10fac,6}, {0x2a67a,5}, {0x6452,6}, {0x2c5fc,4}, {0x1e271,5}, + {0xa53e,8}, {0x5bfe,8}, {0x262a,3}, {0x21717,9}, {0x25093,3}, {0x5422,3}, {0xcaab,10}, {0x28196,5}, + {0x21de7,7}, {0x4e87,5}, {0x1e4e7,6}, {0x1d395,8}, {0x1dad5,8}, {0x29d3d,5}, {0x278a9,4}, {0x28e86,5}, + {0x23a14,7}, {0x1fd91,8}, {0x21d93,6}, {0x1a297,5}, {0x22858,7}, {0x24f8e,3}, {0x20904,7}, {0x292c0,4}, + {0x11f86,10}, {0x1c875,8}, {0x273db,4}, {0x2b7bd,3}, {0xfcae,3}, {0x16d89,9}, {0x2438a,7}, {0xdb6d,11}, + {0x95c7,7}, {0x609b,13}, {0x2cd4c,6}, {0x9d00,6}, {0x101c0,10}, {0x11266,10}, {0x276fd,6}, {0xfbba,9}, + {0x20261,8}, {0xc18d,11}, {0x2a433,3}, {0x11158,10}, {0x27667,6}, {0x1edd1,8}, {0x21dee,7}, {0x2542b,6}, + {0x3004,8}, {0x15dce,8}, {0xe993,5}, {0x1e891,6}, {0x28a50,5}, {0x28b44,7}, {0x13d2e,10}, {0x1afc6,2}, + {0x15980,6}, {0x2c638,6}, {0x177ad,9}, {0x23967,5}, {0x14e1a,10}, {0xaab6,12}, {0x7c80,8}, {0x64ab,13}, + {0x569a,5}, {0x2798,11}, {0x259bf,6}, {0x27946,3}, {0x24b39,6}, {0x19d44,9}, {0x1fb2b,6}, {0x1a0a4,9}, + {0x1ab5f,8}, {0xca5,5}, {0x12bf2,10}, {0xf485,11}, {0x25fc5,5}, {0x18ca,6}, {0x159ad,9}, {0x229d,11}, + {0x24a6f,6}, {0x23128,7}, {0xc40,3}, {0x29f97,3}, {0x259b7,8}, {0x19cd8,7}, {0x27b29,6}, {0xdbc,5}, + {0x29857,5}, {0x1ddad,7}, {0x92c2,7}, {0x125ee,10}, {0x1b5cb,8}, {0x154b4,10}, {0x2bf42,4}, {0x28c5a,5}, + {0x1d26d,8}, {0x1be2,3}, {0x1b433,2}, {0x2bdaa,4}, {0xddb6,8}, {0x1ac39,7}, {0x277ff,6}, {0x276af,6}, + {0x1ff79,5}, {0x2b750,3}, {0x28b82,7}, {0x2bf0,3}, {0x189af,9}, {0x452d,13}, {0xb396,11}, {0x2a235,3}, + {0x16ff,2}, {0x1022a,4}, {0x2a54,14}, {0x27c6d,6}, {0x181b4,7}, {0xc13,18}, {0x1929f,3}, {0x15c29,7}, + {0x56bf,13}, {0x1e4d1,6}, {0x2465d,12}, {0x12d21,7}, {0xa7ce,4}, {0x2a12c,3}, {0x29be7,5}, {0x946,19}, + {0x1ff89,8}, {0x181b4,9}, {0x4afd,7}, {0x2d79d,4}, {0x5ead,12}, {0x22e2,3}, {0xecd4,11}, {0x2503f,6}, + {0x1a35,4}, {0x6e51,13}, {0x2b6f0,4}, {0x145e6,3}, {0x1b0f,2}, {0x28edb,5}, {0x2bf6e,4}, {0x2babc,6}, + {0x200b1,8}, {0x1f0eb,6}, {0x2a555,3}, {0x1b18b,8}, {0x24f37,6}, {0x22a28,7}, {0x1da0,6}, {0x29117,3}, + {0x2699b,3}, {0xaa40,8}, {0x71b6,12}, {0x268a3,6}, {0x296fe,3}, {0x2a131,3}, {0xb262,11}, {0x16c1f,6}, + {0x13d08,7}, {0x1e89f,8}, {0x1f621,8}, {0x209cf,7}, {0x15fa2,9}, {0x155c2,10}, {0xf3e5,3}, {0x1db25,8}, + {0x1534c,10}, {0x22f3e,7}, {0x2a63e,5}, {0xac96,12}, {0x1064,3}, {0xa6de,12}, {0x20bf3,7}, {0xb3bc,6}, + {0x395e,13}, {0xaea0,6}, {0x1bf5,4}, {0x18c49,9}, {0x10d07,5}, {0xaef0,3}, {0x2d476,3}, {0x20d9,15}, + {0x9112,12}, {0xd952,11}, {0x1d6f7,8}, {0x5c62,13}, {0x255b3,6}, {0xb380,5}, {0xa522,12}, {0xe57,7}, + {0x2c048,2}, {0x20fba,5}, {0x17432,8}, {0x163c1,9}, {0x8386,8}, {0x1609e,9}, {0x27d0f,3}, {0xeead,6}, + {0x29bba,5}, {0xe29a,11}, {0xa552,12}, {0x20d2b,7}, {0x19d7c,6}, {0x374c,11}, {0x285ab,3}, {0x10cab,4}, + {0x51ab,13}, {0x91de,12}, {0x8980,6}, {0x29bc6,3}, {0x22909,7}, {0x3291,5}, {0x131b2,5}, {0x28dc3,4}, + {0x1be5d,8}, {0x41dc,12}, {0x20c7f,7}, {0x430,24}, {0x29bd8,5}, {0x2a46,14}, {0x3511,3}, {0x1554a,10}, + {0x2665b,6}, {0x13bee,8}, {0x293dd,4}, {0x1d375,8}, {0x25fcb,6}, {0x15d35,9}, {0x6a06,7}, {0xe30a,4}, + {0x2c02c,2}, {0x100b0,3}, {0x13e1e,10}, {0xf351,9}, {0x2d176,3}, {0xea98,11}, {0x1227e,10}, {0x224c3,7}, + {0x3ea0,5}, {0x23798,4}, {0x29469,4}, {0x1fbe1,8}, {0x20a0e,7}, {0x1e257,8}, {0x2a460,3}, {0x1ad62,7}, + {0x2d1a6,3}, {0x25060,3}, {0x17dd6,9}, {0x2bef6,4}, {0x1bfc,15}, {0xf712,4}, {0x26eff,5}, {0x53c0,13}, + {0x2cf32,3}, {0x28a87,7}, {0x1561c,10}, {0x15504,10}, {0x22504,4}, {0x102d8,9}, {0x23dbe,7}, {0x265f7,3}, + {0x7c4,23}, {0x19fcc,9}, {0x98c2,8}, {0x2911f,5}, {0x2d3f3,3}, {0xecfb,5}, {0x8386,5}, {0x15180,8}, + {0x8640,4}, {0x12418,9}, {0x25ef9,4}, {0x1e6b7,8}, {0x2b149,4}, {0x270b5,6}, {0x251a3,4}, {0xf752,11}, + {0x18207,7}, {0x1a2ce,4}, {0x2d7cd,4}, {0x18295,9}, {0x150ec,7}, {0x1f9f1,7}, {0x7732,12}, {0x1958b,6}, + {0x1f801,7}, {0x1fe33,6}, {0x7fba,12}, {0x2a42e,3}, {0x23139,4}, {0x14256,7}, {0x154de,8}, {0x1905f,6}, + {0x16b2c,9}, {0xf96,17}, {0x810a,12}, {0x22492,7}, {0x148e,10}, {0x27c91,6}, {0xca1c,11}, {0x1493c,4}, + {0x2940f,5}, {0x23c8c,3}, {0x14b02,10}, {0x23996,7}, {0xaa26,12}, {0x3290,6}, {0x1f461,8}, {0x21de0,7}, + {0x26d9d,6}, {0x8926,12}, {0x1ad50,7}, {0x10774,10}, {0x2320f,7}, {0x6255,13}, {0x11f40,10}, {0x278a7,6}, + {0x56f3,13}, {0x6636,4}, {0xea0b,4}, {0x11506,7}, {0x1f2c3,3}, {0x6e92,6}, {0xf780,3}, {0x14c32,3}, + {0x21b40,7}, {0x8793,7}, {0x2b419,4}, {0x2d0f0,2}, {0x1f049,5}, {0x10418,10}, {0x140be,8}, {0x626f,13}, + {0xa5fa,12}, {0x196f,8}, {0x1ae02,9}, {0x14c46,4}, {0x15a7a,4}, {0x21ca5,6}, {0x2a5df,5}, {0x2361b,7}, + {0x17588,9}, {0x35ec,14}, {0x2a4fe,5}, {0x532,76}, {0x2bb3a,4}, {0x23064,7}, {0x258c1,6}, {0x23169,4}, + {0x1b1e7,16}, {0x1586c,7}, {0x3a22,11}, {0xe97,17}, {0x2a661,5}, {0x1e72f,8}, {0x1a5a4,5}, {0x17a98,9}, + {0x1e417,8}, {0x1de17,6}, {0xc87a,11}, {0x2b91a,4}, {0x1128e,10}, {0x1fa2b,3}, {0x1fa13,4}, {0x11a22,9}, + {0x2871b,6}, {0x1bf65,5}, {0x26e3b,4}, {0x1a86d,7}, {0x2a4fb,3}, {0x29592,5}, {0xd1c2,11}, {0x101b9,5}, + {0x1bed5,8}, {0x1a74b,9}, {0x125b2,9}, {0x4d5a,13}, {0x2af55,4}, {0x14be0,8}, {0x25fad,6}, {0x17552,5}, + {0x2a576,5}, {0x18f2b,9}, {0x2da9b,2}, {0x1f3fb,6}, {0xd737,11}, {0x16b94,4}, {0x222fc,5}, {0x175b5,9}, + {0x1b388,5}, {0x125ca,6}, {0x25b13,6}, {0x4a0d,13}, {0x24921,12}, {0x1a281,9}, {0x2c4ee,4}, {0xcdd,3}, + {0xab16,8}, {0x8dbe,12}, {0x2988,8}, {0x21cc3,5}, {0xb8e,3}, {0xcb3d,6}, {0x83ce,12}, {0x1a6a2,7}, + {0x24fa3,6}, {0x2a497,3}, {0x27ab7,6}, {0x79f6,12}, {0x1dc3f,6}, {0x60e9,13}, {0x20dce,5}, {0xea9a,6}, + {0x22079,7}, {0xf1f,11}, {0x20d63,7}, {0x29ac7,3}, {0x2dba2,2}, {0x14942,7}, {0x14620,6}, {0x2badc,4}, + {0x1ba2,6}, {0xa19,12}, {0x1502c,5}, {0x206c9,5}, {0x2ac53,8}, {0x21ccf,6}, {0x8f97,7}, {0x1a006,5}, + {0x1cef5,8}, {0x20011,5}, {0x1a2f,6}, {0x203f9,8}, {0x22d15,7}, {0x285a3,2}, {0xf313,7}, {0x2be48,2}, + {0x185a4,9}, {0x2306b,7}, {0x1512,4}, {0xab9d,9}, {0xa642,12}, {0x1154,2}, {0x511e,6}, {0x79a4,9}, + {0xac7e,12}, {0x20984,5}, {0x1572a,10}, {0x36fd,7}, {0x2bb5e,4}, {0x24b29,4}, {0x2707f,5}, {0x2297b,4}, + {0x2241b,7}, {0x5c14,11}, {0x1f191,8}, {0x2acfb,8}, {0x15ba0,9}, {0x257ef,6}, {0xaaf2,12}, {0x1290e,8}, + {0x29380,2}, {0x6b8e,5}, {0x9d4e,11}, {0x270c7,6}, {0x180b8,8}, {0x10f46,9}, {0x27b1d,5}, {0x34db,7}, + {0x5d05,8}, {0xf238,6}, {0x13aea,7}, {0x2bc82,4}, {0xf985,11}, {0x1f2ae,3}, {0x65fd,13}, {0x1b49b,6}, + {0x1a2ae,9}, {0x15e82,9}, {0x16029,9}, {0x12729,5}, {0x273af,6}, {0x1f899,5}, {0x10c8f,5}, {0x2a35c,3}, + {0x19f9f,9}, {0x1ae2f,6}, {0x10292,10}, {0xdd7,4}, {0x28e68,5}, {0x207be,4}, {0x2999e,5}, {0x17e03,9}, + {0x2af71,4}, {0x25deb,6}, {0x2c088,2}, {0x2b192,3}, {0x1a9a6,9}, {0x1aad8,8}, {0x2743f,6}, {0x2c1b2,4}, + {0x20f9,4}, {0x13338,8}, {0x2aea6,2}, {0x2b79f,4}, {0xca3d,10}, {0xf2ac,11}, {0x14b9a,7}, {0x287de,7}, + {0xfac4,10}, {0x2f1b,8}, {0x22a00,5}, {0x1c055,8}, {0x4370,14}, {0x29de,3}, {0x1c497,5}, {0x21f06,7}, + {0x2b5c3,3}, {0x8d18,3}, {0x19ef4,9}, {0xa7ec,6}, {0x2b3f5,4}, {0x28e81,5}, {0x1a766,6}, {0x433a,5}, + {0x23255,7}, {0x2548d,4}, {0x251cb,2}, {0xb092,3}, {0x2c102,4}, {0x28043,2}, {0x4340,4}, {0x11c3e,10}, + {0x1ae8c,6}, {0x16dec,9}, {0x1f71,8}, {0xaeb4,7}, {0xf3b4,5}, {0x20ff7,7}, {0x2a65c,5}, {0x18aea,9}, + {0x1af4a,3}, {0x370a,3}, {0x1a90d,9}, {0x14972,10}, {0x2375f,2}, {0x1675b,5}, {0xa9de,12}, {0x10117,4}, + {0xafae,12}, {0x23c44,7}, {0x1d0d2,3}, {0x155c,16}, {0x1879c,9}, {0x1b1b,11}, {0x22acd,5}, {0x1d485,8}, + {0x1a4c6,6}, {0x23790,4}, {0x2a195,3}, {0x108f6,6}, {0x1a376,9}, {0x1945f,9}, {0xb54a,4}, {0x1552e,5}, + {0xfa3,3}, {0x43bb,4}, {0x19d37,4}, {0xfda0,4}, {0x29dab,5}, {0x24c6,15}, {0x1ae31,4}, {0xb6b9,11}, + {0x2c01a,4}, {0x15e04,6}, {0x6672,6}, {0x15a0d,5}, {0x7d7a,8}, {0x282c,11}, {0xf30,17}, {0x21e6c,7}, + {0x1ac9a,9}, {0x8639,4}, {0x3fa8,9}, {0x215ab,7}, {0x1d427,6}, {0x2c0a2,4}, {0x18bf8,8}, {0x10a32,9}, + {0x2adb7,6}, {0x20c1,7}, {0x34aa,13}, {0x2a58c,3}, {0x293c,8}, {0xf28d,3}, {0x17f47,9}, {0x23b02,7}, + {0x5acf,13}, {0xccfd,11}, {0x9862,12}, {0xd6c9,11}, {0x253c7,8}, {0x1a8d7,9}, {0x2521c,4}, {0x1700,11}, + {0x6683,6}, {0x94ba,10}, {0x26157,6}, {0x2a6b1,5}, {0x20aaf,4}, {0x231af,5}, {0x2a25d,3}, {0x734,6}, + {0x21e2f,5}, {0x19696,9}, {0x125e4,10}, {0x2394b,5}, {0x2b30f,5}, {0x25001,3}, {0x27ab1,6}, {0x18f7c,8}, + {0x221a,4}, {0x28380,5}, {0x11d7e,10}, {0x20a00,6}, {0x1ab3b,9}, {0xad4a,12}, {0xbf88,11}, {0x2b07b,4}, + {0xf275,11}, {0x4df1,4}, {0x1ad59,4}, {0x1b97b,10}, {0x27e28,4}, {0x11842,10}, {0x29220,5}, {0x23614,7}, + {0x25e27,4}, {0x3e90,6}, {0x27d03,3}, {0x2566,5}, {0x219c2,7}, {0x16438,5}, {0x1bd55,7}, {0x2a328,5}, + {0x16cf0,9}, {0x228c,5}, {0x22ff4,7}, {0x14256,9}, {0x6d4d,13}, {0x5a67,13}, {0x2ceaf,5}, {0x6069,5}, + {0x2d3ef,3}, {0xd8e4,8}, {0x2ea6,9}, {0x45cd,5}, {0x1f481,8}, {0x27e1e,5}, {0x1c24,5}, {0x2a51c,5}, + {0x2cf71,3}, {0x17fa3,7}, {0x6e94,7}, {0xfcfc,4}, {0x7920,6}, {0x2442b,5}, {0x2addd,6}, {0x46fa,7}, + {0x2a698,5}, {0x29a4d,4}, {0x287ec,7}, {0xc77d,11}, {0x2daa5,2}, {0x26b5d,6}, {0xe410,11}, {0x27d00,6}, + {0xf796,4}, {0x2bc02,4}, {0x11cec,4}, {0x1f091,8}, {0x25093,6}, {0x2d779,4}, {0x1ce4d,8}, {0x753c,5}, + {0x28fe4,5}, {0xe027,11}, {0x283da,5}, {0xdedd,11}, {0x10fc8,10}, {0x1a86b,9}, {0xbe28,11}, {0xfaf0,6}, + {0x11f7c,10}, {0x251ff,4}, {0x2b28d,4}, {0xadaa,12}, {0x13054,8}, {0x1c69d,8}, {0xcbce,3}, {0x1874,4}, + {0x2afed,4}, {0x6eef,2}, {0x1f98b,3}, {0x2909f,3}, {0x1f00d,2}, {0x2892f,5}, {0x2da89,2}, {0x1a230,9}, + {0x1531a,6}, {0x237a5,5}, {0x141b6,10}, {0x6491,13}, {0x14a9e,10}, {0x20431,8}, {0xbda4,7}, {0x1f501,5}, + {0x948,12}, {0xd196,11}, {0x27b35,6}, {0xf26a,6}, {0x6b52,5}, {0xb74,4}, {0x18974,5}, {0x2684d,4}, + {0x298ce,3}, {0x290a7,5}, {0x2d566,3}, {0x2c806,6}, {0x1a526,9}, {0x265ef,6}, {0x3536,14}, {0x15628,8}, + {0x2c458,4}, {0xccc,4}, {0x7d9e,12}, {0xe68e,11}, {0x1dacf,4}, {0xf73c,5}, {0x1b965,8}, {0xdebc,11}, + {0x251e6,6}, {0x146b9,4}, {0x8812,6}, {0x3090,5}, {0x197f9,5}, {0x21885,7}, {0x192dc,6}, {0x2c812,6}, + {0x532,194}, {0x26a47,6}, {0x54fd,8}, {0x1bebd,8}, {0x27b6,4}, {0x19b21,7}, {0x1ea47,8}, {0x21a98,6}, + {0x198d6,9}, {0x29ca5,5}, {0x203b1,8}, {0x2cbf0,4}, {0xfb11,11}, {0x1509a,10}, {0xfaa3,11}, {0x4f7c,8}, + {0x2a314,5}, {0x11a9c,8}, {0xab52,12}, {0x179d2,9}, {0xf99d,8}, {0x259fb,5}, {0x2c39e,4}, {0x19be5,9}, + {0xd301,7}, {0x11414,9}, {0x28dc3,5}, {0x158fb,7}, {0x239ff,7}, {0x208ef,7}, {0x9802,8}, {0x262b5,6}, + {0x10d56,6}, {0xf393,11}, {0x2aee,14}, {0x29e85,2}, {0x1710a,5}, {0x62d7,13}, {0x1edc9,5}, {0x2d18e,2}, + {0x1c4c5,7}, {0x5365,13}, {0x21f30,6}, {0x262cd,6}, {0x25d85,6}, {0x241c3,7}, {0x178a0,9}, {0x1e175,8}, + {0x14382,9}, {0x23606,7}, {0x176e9,4}, {0x2719f,6}, {0xb047,6}, {0x2db62,2}, {0x27e1e,4}, {0x1af73,6}, + {0xb538,11}, {0x21a63,7}, {0x25cc3,6}, {0x14404,10}, {0xf2fb,3}, {0xc8d,4}, {0x24a39,6}, {0x8356,12}, + {0x15c54,9}, {0x1216,5}, {0xf26a,11}, {0xce1b,11}, {0x1beb5,7}, {0x23d6,10}, {0x1e31f,8}, {0x1409e,9}, + {0x432,26}, {0xda9,17}, {0x1ed01,8}, {0x1e519,5}, {0x2c44c,6}, {0x2808a,5}, {0x67bd,6}, {0x8bea,12}, + {0x26b27,6}, {0x2758f,6}, {0x13020,10}, {0xae8e,12}, {0x2a670,5}, {0x19dd8,5}, {0x5ded,5}, {0xd65b,11}, + {0x29e1e,5}, {0x23167,5}, {0x28f62,5}, {0xb45c,11}, {0x2d3e9,3}, {0x4c2f,11}, {0x2b97a,4}, {0x2d233,3}, + {0x28b3d,7}, {0x2aea9,3}, {0x1c785,8}, {0x3e08,2}, {0x1f361,8}, {0x2b351,3}, {0x28a34,7}, {0x1f991,5}, + {0x2d1ee,3}, {0x175be,9}, {0x8026,12}, {0x28d0c,5}, {0x951a,7}, {0x1f313,2}, {0xeec,17}, {0x6790,13}, + {0x23382,4}, {0xcb7c,11}, {0x1947a,9}, {0x2513d,4}, {0xa432,12}, {0xdbfc,11}, {0x1087a,10}, {0x176f0,8}, + {0x156d0,6}, {0x14a94,6}, {0x2368b,7}, {0x17fce,9}, {0x2a8af,7}, {0xd4f0,11}, {0x1b705,14}, {0x8392,12}, + {0x2965c,5}, {0x1260c,10}, {0x21085,7}, {0x105b2,9}, {0x2d0e3,3}, {0xbd64,4}, {0x2a657,5}, {0x3a22,14}, + {0x2d290,3}, {0x2a041,3}, {0xc3a8,11}, {0xbb9f,11}, {0x1e327,8}, {0x2416a,5}, {0x25785,8}, {0xa2e2,9}, + {0x29e00,5}, {0x15590,7}, {0x1f349,8}, {0xd4fb,7}, {0x22fb5,7}, {0xfbd0,7}, {0x15720,10}, {0x1a1d8,3}, + {0x2a5d0,5}, {0x8002,12}, {0x13fcc,10}, {0x9802,10}, {0x21075,7}, {0x4a5b,13}, {0xd43,17}, {0x25a1f,6}, + {0x23eca,5}, {0x2b00d,4}, {0x23249,3}, {0x1ac37,9}, {0x192b8,9}, {0x2a4f1,3}, {0xa5a6,12}, {0xead1,5}, + {0x24525,12}, {0x1ef69,5}, {0x28627,2}, {0x153ba,10}, {0x14792,6}, {0x2be20,2}, {0x2b3d5,4}, {0x25105,6}, + {0xc416,11}, {0x16f91,2}, {0xe2a5,11}, {0x276eb,6}, {0x221f7,6}, {0x99be,12}, {0x26f4d,5}, {0x2762b,5}, + {0x3102,7}, {0x8896,12}, {0x14da7,5}, {0x16973,9}, {0x232b9,3}, {0x24049,7}, {0x1426e,4}, {0x273e5,5}, + {0xb861,4}, {0x1a242,9}, {0x1f671,6}, {0x211dc,7}, {0x21400,7}, {0x26399,6}, {0x19ce1,9}, {0x2aeb5,4}, + {0x3418,5}, {0x21e03,7}, {0x7daa,12}, {0xdd88,11}, {0x25793,6}, {0xfc44,5}, {0x25e3,15}, {0xd700,11}, + {0x1ffe1,6}, {0x2c7c4,6}, {0x1122a,10}, {0x39ea,14}, {0x2c38c,6}, {0xd5ad,3}, {0x282ea,5}, {0x22c44,3}, + {0xeedf,5}, {0x215c7,7}, {0x238fa,7}, {0x1cadd,8}, {0x66cd,13}, {0xd834,11}, {0x23a45,7}, {0x9e39,5}, + {0xb408,7}, {0x17f59,9}, {0x223d5,7}, {0x23ce5,7}, {0x114fd,7}, {0x852a,12}, {0xf75f,4}, {0x8476,12}, + {0x22355,7}, {0xfbc5,11}, {0x73a9,5}, {0x2cf89,3}, {0x1d69f,6}, {0x22917,7}, {0x25e55,6}, {0x1a0c1,7}, + {0x2b948,6}, {0x248bd,12}, {0x269b9,4}, {0x142e6,6}, {0x9bda,12}, {0x25767,6}, {0x1ea5f,8}, {0x7c12,12}, + {0x2db4e,2}, {0x292ca,5}, {0xb3a5,7}, {0x2dad0,2}, {0x10b72,10}, {0x1f241,6}, {0x23bc6,7}, {0xfa8d,11}, + {0x20aa8,3}, {0x22484,6}, {0x24ca7,6}, {0x29b83,5}, {0x2d350,3}, {0x2677b,6}, {0xd12a,8}, {0x1aebf,9}, + {0x13a9d,7}, {0x27397,6}, {0x1ad8f,5}, {0x12a1f,7}, {0x30bf,9}, {0x2c386,4}, {0x15f36,9}, {0x1272e,7}, + {0x189ca,5}, {0x27976,3}, {0x253e,11}, {0xf75d,11}, {0x2cef1,3}, {0x17738,8}, {0x21e5e,7}, {0x14906,8}, + {0x292e,14}, {0x11de2,10}, {0x4eb2,7}, {0x16e51,6}, {0xda2e,11}, {0xe057,7}, {0x19ef6,6}, {0x1f86e,3}, + {0x15bac,6}, {0x29b3,3}, {0x2c082,4}, {0x4894,13}, {0x2a675,5}, {0x6e03,10}, {0x2bf8,14}, {0x219de,7}, + {0x17f5d,5}, {0x31d4,4}, {0xcb50,11}, {0x20d39,7}, {0x11e14,10}, {0x23d71,7}, {0x1213,9}, {0x233c4,4}, + {0x1f12,5}, {0x1ed4c,2}, {0x2b0bb,2}, {0x693d,13}, {0x142f6,10}, {0x12b84,10}, {0x3f62,14}, {0x21ab,15}, + {0x29c0c,3}, {0x131a1,5}, {0x27f6d,5}, {0x2a59e,5}, {0xad10,4}, {0xeb1c,5}, {0xeee4,10}, {0x264fb,4}, + {0xa713,7}, {0x25d5b,6}, {0x2673b,4}, {0x14422,9}, {0x26583,5}, {0x27952,3}, {0x8f86,11}, {0x19d1,15}, + {0x22131,7}, {0x2d4a6,3}, {0xacbc,4}, {0x2b6c3,4}, {0xf9dd,11}, {0x258a3,6}, {0x529d,5}, {0x18a7e,9}, + {0x16fc,15}, {0x11ec8,9}, {0x22e18,7}, {0x1375c,9}, {0x12314,9}, {0xb4ca,11}, {0x22786,7}, {0x10d3e,10}, + {0x41b0,14}, {0x2ae95,4}, {0x2e80,4}, {0x8b66,12}, {0x224ed,5}, {0x19c15,3}, {0x175f4,9}, {0x6f3b,13}, + {0x25fa7,6}, {0x20fc6,7}, {0x240b,4}, {0x237f7,7}, {0x292e8,5}, {0x240ce,7}, {0x209ea,2}, {0x256ef,6}, + {0x309e,13}, {0x168da,9}, {0x6742,10}, {0x10c03,4}, {0x26a6,15}, {0x23aed,7}, {0x138be,2}, {0x8fda,12}, + {0x10382,10}, {0xa222,6}, {0xaf06,5}, {0xcd3f,8}, {0x22e57,7}, {0x2b2a9,4}, {0x10553,5}, {0x1c74,15}, + {0xaed9,3}, {0xf282,4}, {0xb7ab,11}, {0xfe24,8}, {0x8aa6,8}, {0x2c036,4}, {0x10924,10}, {0x4290,12}, + {0x170d9,9}, {0x5752,7}, {0x18da8,9}, {0x16865,9}, {0xc0a6,11}, {0xd57a,4}, {0x2d14b,3}, {0x256d9,4}, + {0x2b7da,2}, {0x2a6bb,5}, {0x2447d,10}, {0x217f2,7}, {0x2bdf0,2}, {0xc1c,7}, {0x105ee,10}, {0x27433,6}, + {0x25204,6}, {0x22c32,7}, {0x27e56,3}, {0x2a666,5}, {0x1c10,10}, {0x1d699,3}, {0x1bf79,4}, {0x1c025,8}, + {0x9592,12}, {0x20c16,7}, {0x61b9,13}, {0x22d70,6}, {0x15db3,9}, {0x1e06d,7}, {0x2c09e,4}, {0x29b24,4}, + {0x438e,12}, {0x21ee3,7}, {0x18151,9}, {0xcbab,8}, {0x12fe4,10}, {0x11342,10}, {0x14882,10}, {0x1004c,9}, + {0x1ed03,6}, {0x22b9,15}, {0x2c518,6}, {0x30c8,14}, {0x263ed,6}, {0x126b9,3}, {0x82c0,6}, {0x258d3,6}, + {0x1f2f1,8}, {0x14c26,7}, {0x244a1,6}, {0xc334,6}, {0x722e,12}, {0x15e6c,4}, {0x29f01,3}, {0x247f5,12}, + {0xf07b,11}, {0x21d77,7}, {0x1e28f,8}, {0x24ed1,6}, {0x204ed,5}, {0x17ec9,9}, {0x13c5c,10}, {0x10117,7}, + {0x16f95,9}, {0xfe6f,6}, {0x14922,6}, {0x2c06,14}, {0x108ac,10}, {0x1cf51,8}, {0x1f561,8}, {0x115c,3}, + {0xf699,3}, {0x2b75b,4}, {0x238d7,7}, {0x16c8b,9}, {0x23304,7}, {0x2136b,7}, {0x1be05,8}, {0x146de,6}, + {0x10f66,8}, {0x10bcc,10}, {0x10e88,10}, {0x2a544,5}, {0x162cc,9}, {0x13d30,7}, {0xc730,11}, {0x2d683,3}, + {0x1a433,9}, {0xa7dc,2}, {0x27958,3}, {0x8ef6,12}, {0x26add,6}, {0xaad1,4}, {0x104d0,4}, {0x102f8,7}, + {0x11a18,10}, {0x2a5be,3}, {0x150d9,7}, {0xaaf4,4}, {0x4076,2}, {0x1122c,6}, {0xf660,11}, {0x2c5ba,4}, + {0x11ef,6}, {0x22509,7}, {0x19c1b,6}, {0x277b7,6}, {0x24711,12}, {0x2da73,2}, {0x20563,5}, {0x72b2,5}, + {0x1918f,9}, {0x6bba,10}, {0x17c2f,9}, {0x196de,9}, {0x1049a,10}, {0x2d68f,3}, {0x26a23,6}, {0x24f96,3}, + {0x20f02,7}, {0x67fa,4}, {0x6a68,13}, {0x1c95f,6}, {0xcee1,11}, {0x1d023,7}, {0x268b5,6}, {0x29293,5}, + {0x2d19a,3}, {0x236a7,7}, {0x4a1c,5}, {0x15f75,4}, {0x1b0ed,9}, {0x756a,7}, {0xad04,3}, {0x28e77,5}, + {0x12daa,10}, {0x87be,12}, {0x4776,7}, {0xb9d1,11}, {0x287f3,6}, {0x26b59,4}, {0x2459d,12}, {0x1f1f9,8}, + {0x4a15,5}, {0x1fcb9,6}, {0x1f1d1,8}, {0x2be10,2}, {0x1fc81,8}, {0x4f90,5}, {0x400a,10}, {0x1627b,5}, + {0x2da59,2}, {0xb7b6,11}, {0x19c77,7}, {0xeea2,11}, {0x78d2,3}, {0x1221c,8}, {0x1ef99,8}, {0x2b61d,3}, + {0x30,126}, {0x28a5a,5}, {0x1f8cb,4}, {0xb36a,11}, {0x9482,8}, {0x1c67d,8}, {0xd0bf,3}, {0xa5d6,11}, + {0x1f711,6}, {0x1a811,5}, {0x18aab,9}, {0x152fc,10}, {0x2c84,14}, {0x1f371,8}, {0xa72b,7}, {0x5a76,5}, + {0x8e53,6}, {0xfbd0,9}, {0x2231d,7}, {0x24290,5}, {0x1fd3b,6}, {0x13c0e,5}, {0xcca5,7}, {0x2937e,5}, + {0x9d72,12}, {0x11932,6}, {0x2b225,4}, {0x1ae5c,9}, {0x2340e,5}, {0x16ec4,5}, {0x84d0,6}, {0x20985,3}, + {0x182ef,9}, {0x2c3da,6}, {0x2789d,4}, {0x1ecf9,8}, {0x17d8e,9}, {0x28b0e,5}, {0x1fdd1,8}, {0x1bd8d,8}, + {0x163ea,4}, {0x2376b,5}, {0x15bc4,9}, {0x2794c,3}, {0x1d901,6}, {0x277ab,6}, {0xf938,5}, {0x1a83e,9}, + {0x2916a,5}, {0x2a05a,3}, {0xaa9e,5}, {0x19b55,9}, {0x15fc,14}, {0x2a4b3,5}, {0x1480c,8}, {0x2c860,6}, + {0x6f34,7}, {0x7eb2,12}, {0x1ecbd,4}, {0x14d52,10}, {0x19540,6}, {0x2a21c,3}, {0x2d2cc,3}, {0x22812,7}, + {0x14a00,6}, {0x2b8e4,4}, {0x228fb,7}, {0x2d426,3}, {0x14ac6,5}, {0x29d2c,5}, {0xbd1,13}, {0x1af00,7}, + {0xf41,17}, {0xa8fa,12}, {0xcf02,5}, {0x10e60,7}, {0x285d6,3}, {0x982b,3}, {0x27e0d,7}, {0x1fd39,8}, + {0x2bf84,2}, {0x92e8,3}, {0x1b8e1,14}, {0x27a05,4}, {0xef4c,6}, {0x25f09,6}, {0x1e27,15}, {0x19d95,9}, + {0x29987,2}, {0x822c,5}, {0x23b3a,7}, {0x6bd4,12}, {0x23240,7}, {0x2d5d8,2}, {0x1a49,15}, {0x1bc65,8}, + {0x74ee,2}, {0x10cbc,10}, {0x23dc,9}, {0x2907f,5}, {0x2d9e1,4}, {0x1af97,6}, {0x5ef2,3}, {0x287d7,7}, + {0x4ed3,6}, {0x26aa7,5}, {0xdc6a,11}, {0x2aea6,3}, {0x1776e,9}, {0x29d31,7}, {0x2cec3,5}, {0xb4a,14}, + {0x20bad,6}, {0xb49e,11}, {0xd092,2}, {0x47de,13}, {0x432,27}, {0x26be3,4}, {0x20f41,7}, {0x2b57f,2}, + {0x2177b,7}, {0x78ca,7}, {0x165ef,9}, {0x20d71,7}, {0x147ba,10}, {0x236d,10}, {0x13e50,10}, {0x89f8,6}, + {0x25f2d,6}, {0x1e2ff,7}, {0x1195,3}, {0x27a0b,4}, {0x4b93,13}, {0x2cae8,6}, {0x24298,4}, {0x25afb,6}, + {0x19f4a,4}, {0x1ce6d,8}, {0x17ef6,9}, {0x7c96,8}, {0x268b1,4}, {0x1b74b,14}, {0x2982f,4}, {0x2a648,5}, + {0x2a14d,5}, {0x10670,10}, {0x2a2d5,3}, {0x13112,8}, {0x94ed,5}, {0x22d7,15}, {0x261ef,6}, {0x4ab6,12}, + {0x1ac2e,5}, {0x5f56,13}, {0x122ba,10}, {0x17c9b,9}, {0xfc4f,5}, {0x424a,6}, {0x26b21,6}, {0x268df,6}, + {0x1b0c,11}, {0x2de2,7}, {0x2ad6b,8}, {0x1b9b5,8}, {0x24129,7}, {0x17157,9}, {0x11036,10}, {0x27eaf,5}, + {0x2705d,3}, {0x541b,13}, {0xb763,6}, {0x15450,7}, {0x4e17,6}, {0x20cc,10}, {0x720a,12}, {0x1748c,8}, + {0x14dc2,6}, {0x14b22,10}, {0x1977,15}, {0x23f31,7}, {0x18ff1,9}, {0x14cbc,10}, {0xdc96,11}, {0x27d85,8}, + {0x13b5c,6}, {0x7cbf,7}, {0x2a3b9,5}, {0x2a465,3}, {0x3dbe,14}, {0x6a27,13}, {0x128b4,10}, {0x1499c,8}, + {0x1c655,8}, {0x132dc,10}, {0x23fcb,7}, {0x1905d,9}, {0x222ad,7}, {0x202b1,5}, {0x25e19,6}, {0x1756d,9}, + {0x137a2,10}, {0x178cd,9}, {0x1940,4}, {0x8e14,6}, {0x27a29,4}, {0x2b3a5,4}, {0x21511,7}, {0x2d70a,3}, + {0xb6ae,11}, {0x1f289,6}, {0x6761,3}, {0x123a0,10}, {0x2b5dd,4}, {0x2a61b,5}, {0x2d58,5}, {0x1338a,6}, + {0x1b095,3}, {0x21bb9,5}, {0x13568,10}, {0xb063,5}, {0x2c728,4}, {0x19bf7,5}, {0x1aeec,5}, {0x14918,6}, + {0x19c1b,4}, {0x1dc97,6}, {0xccf2,10}, {0x5317,13}, {0x248a9,12}, {0x6325,13}, {0x4964,13}, {0x2ae9d,4}, + {0x268af,6}, {0x432,96}, {0x1c7b,7}, {0x27ac3,6}, {0xb14f,11}, {0x270a9,6}, {0x29c1b,3}, {0x2b5a3,3}, + {0x29b53,3}, {0x2c13a,4}, {0x126e,10}, {0x2faa,6}, {0x915a,8}, {0x22f71,5}, {0x1fbc1,8}, {0x74e6,12}, + {0x2c1b0,2}, {0x6f23,11}, {0x8692,5}, {0x6a82,12}, {0x16d65,9}, {0x1ad8d,7}, {0x28071,5}, {0x430,25}, + {0x2a468,5}, {0x99b2,12}, {0x29478,5}, {0x4268,6}, {0x2d72b,3}, {0x22ea7,4}, {0x2a5c6,5}, {0x2403,11}, + {0x29c8,14}, {0x1979b,9}, {0x1a811,4}, {0x154c4,4}, {0x298c2,5}, {0x26917,4}, {0x2bb76,4}, {0x27d18,6}, + {0x21a7e,5}, {0x2c06a,4}, {0x29ea5,5}, {0x25b2b,6}, {0x12990,10}, {0x146ae,8}, {0x1c94d,8}, {0xeac4,11}, + {0x598a,5}, {0xa7c2,6}, {0x2aeb9,4}, {0x15b52,6}, {0x1e98f,6}, {0x2ff6,14}, {0x1bd0f,6}, {0x1fc31,6}, + {0x2a4d8,3}, {0x5ddd,13}, {0x28aa2,5}, {0x1071a,10}, {0x2a058,5}, {0x1e36,15}, {0x168c,10}, {0xd4cf,11}, + {0x23fee,7}, {0x29473,5}, {0x23c38,5}, {0x2d713,3}, {0x143fa,10}, {0xa4b6,12}, {0x254d3,7}, {0x173bf,6}, + {0x1e40f,8}, {0xa25e,8}, {0x1aa92,3}, {0x1bfcf,6}, {0x1eb21,8}, {0x2a4e2,3}, {0x1c435,8}, {0x1494d,5}, + {0xd1b0,7}, {0x241ca,7}, {0x2c740,6}, {0x1be6d,8}, {0x65fd,10}, {0x2375d,7}, {0xa4eb,7}, {0x2bdba,4}, + {0x2884e,7}, {0x2384b,7}, {0x1d2e5,8}, {0x20f09,7}, {0x2133,15}, {0x115c,16}, {0xacba,12}, {0x28847,7}, + {0x129d6,8}, {0xbbfc,6}, {0x28f8a,4}, {0x100cf,9}, {0xc0c7,11}, {0x2bfe4,2}, {0x2334a,6}, {0x2c410,4}, + {0x6eed,5}, {0x1f831,8}, {0x2c7a6,6}, {0x298ef,4}, {0x2908e,5}, {0x2bea6,4}, {0x26c5b,4}, {0x2a3fc,3}, + {0x28ad5,5}, {0x10f0c,7}, {0x1cce5,8}, {0x10983,5}, {0x2685f,6}, {0x162e9,9}, {0x26ecf,6}, {0x153a6,10}, + {0x143aa,9}, {0xab60,3}, {0x14b4,4}, {0x2bb48,2}, {0x1e1af,8}, {0x860e,12}, {0xa53a,12}, {0xbcde,11}, + {0x454b,7}, {0x2d6a,8}, {0x4204,14}, {0xf14c,11}, {0x1bcbd,8}, {0x72a6,12}, {0x1fa6,7}, {0x199f6,6}, + {0x2a62a,5}, {0x11fae,9}, {0xfe59,5}, {0x1b49b,8}, {0x21442,4}, {0x1eea3,6}, {0x4747,8}, {0x295d0,3}, + {0xb9f2,11}, {0x2ad03,8}, {0x2c96e,4}, {0x1a6e8,9}, {0x26c61,4}, {0x2b33e,3}, {0x15cff,9}, {0x24489,12}, + {0x2cab2,6}, {0x107a1,5}, {0x2c008,2}, {0x1b9af,6}, {0x72b6,8}, {0x7e82,12}, {0x137ea,8}, {0x25153,6}, + {0x10df2,7}, {0x11eb4,10}, {0x8ad6,12}, {0xd343,11}, {0xdb62,11}, {0x28974,4}, {0x1fbb1,8}, {0x10960,10}, + {0x1d27f,6}, {0x4d74,13}, {0x1486e,9}, {0x23c83,5}, {0xd272,11}, {0x1c475,8}, {0x1ad2a,9}, {0x1fd89,8}, + {0x1f759,5}, {0x19b0d,9}, {0xdc43,3}, {0x2bb64,2}, {0x85a2,12}, {0x449e,9}, {0x22517,7}, {0x12fc,16}, + {0x22406,7}, {0x26751,5}, {0x175fd,9}, {0x28662,8}, {0x616d,10}, {0x432,30}, {0xef96,5}, {0x252b7,10}, + {0x1574b,7}, {0xae6,4}, {0x17a86,6}, {0x882a,12}, {0x22a23,3}, {0x23e3c,7}, {0x18114,7}, {0x2d437,3}, + {0x683b,6}, {0x1361,3}, {0x1a742,9}, {0x231ad,7}, {0x197b9,2}, {0x4590,4}, {0x2755f,6}, {0x2aecd,4}, + {0x23709,7}, {0xb68d,10}, {0xcd34,11}, {0x16bbc,7}, {0x2b209,3}, {0x110ed,6}, {0x1c775,8}, {0xa156,11}, + {0x57fb,3}, {0x199c9,9}, {0x15284,10}, {0x1a4aa,3}, {0x2bc8e,4}, {0x191fb,8}, {0x2247d,7}, {0x1655f,9}, + {0xeefa,9}, {0x130c0,10}, {0x6d19,6}, {0x122ce,10}, {0x2aafb,8}, {0x2879d,6}, {0xda4f,11}, {0x11918,6}, + {0x2c37a,6}, {0x165dd,7}, {0x1924f,5}, {0x2d71f,3}, {0x12f6,4}, {0xd1f9,11}, {0x215b2,7}, {0x6b7b,8}, + {0x2a226,3}, {0x2b8dc,6}, {0x1a538,9}, {0x1a27a,7}, {0xa942,12}, {0xab78,4}, {0x23676,7}, {0xc232,11}, + {0x19e27,7}, {0x1f469,8}, {0x13ce0,5}, {0x2231d,6}, {0x1c11,9}, {0x2a1b8,3}, {0xc21e,9}, {0x9b07,6}, + {0x4dc2,8}, {0x2b01,9}, {0xc680,11}, {0x20f9c,7}, {0x2d6fe,2}, {0x66c0,13}, {0x27b5c,3}, {0x19d7a,6}, + {0x1cdcd,8}, {0x28150,5}, {0x15bfa,9}, {0x1a6a0,9}, {0xebe2,11}, {0x184b1,9}, {0x286bd,4}, {0x23b4f,7}, + {0x1a2c0,9}, {0xac68,2}, {0x2056b,12}, {0x2cb3c,6}, {0x24d41,6}, {0xf261,9}, {0x233ae,5}, {0x2974e,3}, + {0x201fb,5}, {0xb052,3}, {0xa83a,12}, {0x14f8c,10}, {0xbeee,10}, {0x2c0d2,4}, {0x14346,10}, {0x2c578,6}, + {0x1ee69,8}, {0x2bbc2,4}, {0x1a1d8,4}, {0x10f5f,5}, {0x15fcf,9}, {0x4602,8}, {0x1f9f1,8}, {0x11432,10}, + {0x160cb,6}, {0x15108,6}, {0x10c3a,10}, {0x1e561,6}, {0x2a67f,5}, {0x1f399,5}, {0x1169e,10}, {0x2af31,4}, + {0x1116c,10}, {0x7ca2,12}, {0x27727,6}, {0x23c85,3}, {0x2d7f5,4}, {0x5c55,9}, {0x20461,8}, {0x2568d,6}, + {0x8d1b,7}, {0x28793,8}, {0x1fbe9,8}, {0xba08,11}, {0x12f0d,5}, {0x5a86,5}, {0x1d3ed,8}, {0x12328,10}, + {0x18ceb,6}, {0x15a67,9}, {0x4efa,13}, {0xfcac,11}, {0x17d19,9}, {0x1ae5e,3}, {0x6d9d,4}, {0x188d7,9}, + {0x2ac9b,8}, {0x1667f,9}, {0xda93,6}, {0x1172,4}, {0x2d4ca,3}, {0x1c46d,8}, {0x1beb7,6}, {0x1cc5d,8}, + {0x1ec21,8}, {0x174f8,9}, {0xb77f,9}, {0x1fa83,6}, {0x2d626,3}, {0x2499,14}, {0x26bf3,6}, {0x21608,5}, + {0x1505e,10}, {0x84e2,12}, {0x10d9a,5}, {0x1c815,8}, {0x20381,8}, {0x2133c,5}, {0x1f571,8}, {0xf687,5}, + {0x1f911,6}, {0x2066f,6}, {0x18e5c,9}, {0x20ae,4}, {0x13df6,10}, {0xccc,6}, {0x12cc6,8}, {0x3949,4}, + {0x28491,5}, {0x1c85d,8}, {0x6d5a,13}, {0x1ad0,11}, {0x263d5,6}, {0x1f80,5}, {0x21991,7}, {0x2a26c,3}, + {0x4e6d,7}, {0x2a14a,3}, {0x21beb,4}, {0x2a62f,5}, {0x2657f,3}, {0x227a9,7}, {0x1b12c,5}, {0x28635,3}, + {0x29ed4,3}, {0x26f7d,4}, {0x27f68,5}, {0x2d3c7,3}, {0x12666,10}, {0x29cf5,4}, {0x1aada,4}, {0x2680b,5}, + {0x2d8b5,4}, {0x2be0c,2}, {0x200d9,8}, {0x7ae6,11}, {0x19d10,7}, {0x4289,2}, {0x18217,9}, {0x1ff8b,3}, + {0x24272,7}, {0x26b33,6}, {0x2a3cf,3}, {0x2a587,3}, {0x1e53f,7}, {0x22701,7}, {0x44d4,3}, {0x287c2,7}, + {0x22920,5}, {0x2b7ac,2}, {0x51f9,13}, {0x1a36f,5}, {0xda14,3}, {0x1e767,6}, {0x2d742,4}, {0x69cc,12}, + {0x159c8,15}, {0x1458a,10}, {0x2cd40,6}, {0x2d889,4}, {0x4bd8,9}, {0x2d891,4}, {0x2be72,4}, {0x241d8,7}, + {0x1c7cd,8}, {0xb590,11}, {0x22e0a,7}, {0x19956,4}, {0x4998,9}, {0x2b20d,4}, {0x15446,7}, {0x2d3f2,3}, + {0x264d7,4}, {0x29870,5}, {0x2d02,13}, {0xef73,11}, {0x4ba0,8}, {0x2a582,3}, {0x2f32,13}, {0x1cd07,4}, + {0x43b9,7}, {0x258a9,4}, {0xbb3c,10}, {0x474f,13}, {0x23a6f,5}, {0x2863a,4}, {0x2a70,14}, {0x2a258,3}, + {0x17e4f,5}, {0x29d65,5}, {0xef2,2}, {0x2255d,7}, {0x2f53,3}, {0x2b637,4}, {0x2b5c1,3}, {0x28965,4}, + {0x133f4,10}, {0x2d3f5,3}, {0x37b2,3}, {0x14c94,8}, {0x1660c,7}, {0x7c19,4}, {0x1760,4}, {0x12d32,10}, + {0xc35b,11}, {0x557a,13}, {0x1f3c9,5}, {0x23b8,15}, {0x1644d,4}, {0xb52,4}, {0x1bc2d,8}, {0x8aa6,5}, + {0x1ee33,6}, {0x4f6f,7}, {0x294de,5}, {0x16add,6}, {0x10b40,9}, {0x4b31,6}, {0x1d2fd,6}, {0xff84,10}, + {0xa276,11}, {0x2dc6,14}, {0xe07f,11}, {0xf89c,8}, {0x19b31,9}, {0x2683b,5}, {0x14dc0,10}, {0x12c1c,7}, + {0x230b8,7}, {0x9c18,7}, {0x27351,4}, {0x21596,7}, {0x21991,5}, {0x19608,3}, {0x21431,7}, {0x1a835,9}, + {0x588c,7}, {0x1ad5,3}, {0xa9ea,12}, {0x29b42,5}, {0x21f55,5}, {0x26d33,3}, {0x16257,8}, {0xbb8,12}, + {0x13506,5}, {0x27cc1,6}, {0xc914,11}, {0x25161,3}, {0x26093,6}, {0x10800,10}, {0x2db1e,2}, {0x29441,5}, + {0x1aeee,4}, {0xe8a9,11}, {0x6a1a,12}, {0x20535,6}, {0x1a360,4}, {0x28432,5}, {0x14dc,8}, {0x263db,6}, + {0x1426c,6}, {0x193fc,6}, {0x17c41,9}, {0x19db9,9}, {0x29dad,3}, {0x29075,5}, {0xa546,6}, {0x17b16,9}, + {0x26781,6}, {0x22621,7}, {0x1b0c0,9}, {0x1a51d,9}, {0xae5e,12}, {0x4a82,13}, {0x149c4,8}, {0x1f951,6}, + {0x201f9,7}, {0xab3c,3}, {0x11842,9}, {0x1b275,2}, {0x15392,9}, {0x2ab2,4}, {0x26a89,6}, {0x1c29,13}, + {0x1aeb6,9}, {0x15658,9}, {0x1208c,7}, {0xcc4f,4}, {0x2a526,5}, {0x280d7,6}, {0x1f02b,6}, {0x1fff1,6}, + {0x17bde,9}, {0x29b5b,4}, {0x11d8a,3}, {0x233a5,7}, {0x2d8fd,4}, {0x240f1,7}, {0x88ea,6}, {0x4c22,13}, + {0x6c8a,5}, {0xe922,6}, {0x2b111,4}, {0x35d2,6}, {0x2172e,7}, {0x714c,5}, {0x26afd,6}, {0x27ae1,6}, + {0x23211,5}, {0x19e30,7}, {0x235dc,7}, {0x2789b,6}, {0x2326a,6}, {0x1bbe5,5}, {0xc977,11}, {0x14ada,10}, + {0x17363,9}, {0x2181c,6}, {0x280c0,6}, {0x19d1,7}, {0x51f2,7}, {0x1f7a9,8}, {0x1023,10}, {0x31bc,8}, + {0xae3c,8}, {0x6bee,6}, {0x2d095,3}, {0x2be3a,4}, {0x19cea,9}, {0x20079,8}, {0x139e6,10}, {0x164c6,9}, + {0xfe90,11}, {0xae9a,12}, {0x7076,6}, {0x1c2d,3}, {0x1fa09,8}, {0x1928b,9}, {0x24feb,6}, {0x22146,7}, + {0x24a57,6}, {0xc470,8}, {0x28abb,5}, {0x6b95,3}, {0x2d72,14}, {0x104ae,10}, {0xe825,11}, {0x10ea6,10}, + {0x7be2,12}, {0x5391,8}, {0x13cca,7}, {0x94f6,11}, {0x1db05,8}, {0x1f1a9,8}, {0x4d33,13}, {0xa5b2,12}, + {0x8fe6,12}, {0x1ee73,3}, {0x458f,6}, {0x134be,10}, {0x10ef6,10}, {0x2a4e5,5}, {0x692b,5}, {0x2b75f,4}, + {0x29574,5}, {0x16595,9}, {0x1f281,8}, {0x9f6a,12}, {0x101f2,10}, {0x5a33,13}, {0x5353,5}, {0x2aa8,14}, + {0x281fb,2}, {0xf3ed,9}, {0x1fc19,6}, {0x21702,7}, {0x14940,5}, {0x768a,9}, {0x20ec3,7}, {0x2877b,8}, + {0x2671b,6}, {0x2a429,3}, {0x470e,10}, {0x14b88,8}, {0x22d10,5}, {0xe6fc,11}, {0xa1aa,12}, {0x1adbc,7}, + {0x1bd6d,8}, {0x27b1d,6}, {0x15006,4}, {0x2bfca,4}, {0x116c,5}, {0xe1d9,6}, {0xfa4d,8}, {0x2be0e,4}, + {0x27d21,3}, {0x1f013,6}, {0x20e6f,7}, {0x1a7a,4}, {0x22980,7}, {0x3384,14}, {0x957a,12}, {0x2da47,2}, + {0x2d557,3}, {0x1f0f1,8}, {0x532,96}, {0x11522,10}, {0x26e3f,6}, {0x28e8,2}, {0x1009c,10}, {0x4dd1,4}, + {0x2652f,4}, {0x2349a,7}, {0x196d5,9}, {0x1a715,9}, {0x10bf4,10}, {0x4c3f,4}, {0x1599b,9}, {0x27abd,6}, + {0x2beba,4}, {0x13900,10}, {0x1e7c7,8}, {0x24b63,6}, {0x28db9,4}, {0x22e91,5}, {0x15bc,16}, {0x20371,8}, + {0x48fc,13}, {0x2a24e,3}, {0x10320,4}, {0x3838,14}, {0x199ff,5}, {0x56d9,13}, {0x4aea,13}, {0x13222,6}, + {0xe96f,11}, {0x1f953,3}, {0x19474,6}, {0x2d4cd,3}, {0x2829a,5}, {0x2b03,4}, {0x21581,7}, {0xb33e,11}, + {0x2b575,7}, {0x1c045,5}, {0x25bd9,6}, {0xafaa,4}, {0xd721,11}, {0x22755,7}, {0x1cc57,5}, {0x22064,7}, + {0xed2c,11}, {0x168a4,9}, {0x7d26,12}, {0xefaa,10}, {0x18d84,9}, {0x24f61,6}, {0x15400,7}, {0x1fc79,8}, + {0x215dc,7}, {0xbeee,11}, {0x156d0,10}, {0x26fbf,6}, {0x24819,12}, {0xaf5a,6}, {0x239b2,7}, {0x24471,12}, + {0x81a6,12}, {0x26e89,4}, {0x2a594,5}, {0x2893e,5}, {0xac5c,3}, {0x53fb,6}, {0x2735b,6}, {0xae0a,5}, + {0xef35,7}, {0x13a44,6}, {0x2da9e,2}, {0x26caf,4}, {0x1b015,9}, {0x152c6,4}, {0x11950,6}, {0x11b9e,10}, + {0x159c,16}, {0x1aaf3,5}, {0x1abb0,5}, {0x294e8,5}, {0x2d287,3}, {0x1d3a5,5}, {0x26429,6}, {0x1d0c5,8}, + {0xf3ca,11}, {0x27b68,3}, {0x26f41,6}, {0x2d506,3}, {0x26347,4}, {0x29a3e,5}, {0x1368a,10}, {0xf52c,3}, + {0x2bed6,4}, {0x56f3,6}, {0x2befa,4}, {0xb33e,8}, {0x1f8f1,8}, {0x5a4f,7}, {0x16083,9}, {0x29c82,5}, + {0x19e91,5}, {0x17532,5}, {0x1e911,6}, {0x1339a,10}, {0x2d815,4}, {0xe60a,11}, {0x2aea1,4}, {0x1fba9,8}, + {0x25e91,6}, {0x11018,10}, {0x2118f,7}, {0xdc07,9}, {0xc12a,11}, {0x27b4,6}, {0x2a937,5}, {0x1f75b,6}, + {0x2b972,6}, {0x1271a,10}, {0x1654d,7}, {0x23799,3}, {0x617a,5}, {0x27549,4}, {0x25a01,6}, {0x2cb36,6}, + {0x2d3ec,3}, {0x105e7,7}, {0xd230,11}, {0x25205,5}, {0x21846,7}, {0x20966,7}, {0xc2e,3}, {0x432,28}, + {0x256f5,6}, {0x2c92c,6}, {0xf686,6}, {0xed00,11}, {0x19b84,4}, {0x1b04b,9}, {0x11324,9}, {0xbbfb,4}, + {0x1446d,5}, {0xcccb,6}, {0x1a610,9}, {0x3e9e,11}, {0x190c0,9}, {0x3aa2,5}, {0xaf42,12}, {0x13fda,4}, + {0x12a12,10}, {0xf59a,11}, {0x23557,7}, {0x7786,12}, {0x27c61,6}, {0x29677,3}, {0x1dc45,8}, {0x6be3,4}, + {0x9c52,12}, {0x2720b,6}, {0x23ca6,7}, {0x139dc,7}, {0x20fe2,7}, {0x18d18,6}, {0x22bad,7}, {0x2d4b2,3}, + {0x11590,10}, {0x1804c,9}, {0x22f24,5}, {0x1d5ad,8}, {0x1c3e1,4}, {0x2b83c,4}, {0x1d8bf,5}, {0x17429,9}, + {0x20199,6}, {0x13542,7}, {0x17417,9}, {0x1abcb,9}, {0x9e43,7}, {0x20fcd,7}, {0x1ca5d,5}, {0x1221c,5}, + {0x1ea6,4}, {0x6ac9,7}, {0x24995,8}, {0x26bbd,6}, {0x28b93,5}, {0x14f5f,3}, {0x28927,3}, {0x1a44e,9}, + {0x2054b,4}, {0x102d8,10}, {0x2aceb,8}, {0x23950,6}, {0x45d6,13}, {0x103b4,10}, {0x18d96,6}, {0x14855,5}, + {0x2a361,3}, {0xa9c8,5}, {0x29f2,13}, {0x73f8,7}, {0x2a189,5}, {0x621b,4}, {0x2ab3b,8}, {0x1fce4,5}, + {0x22e81,7}, {0x28648,2}, {0x72da,2}, {0xc50,5}, {0x2db86,2}, {0x28ef9,5}, {0x2514d,6}, {0x3306,14}, + {0x29e55,5}, {0x18c03,6}, {0x207e1,7}, {0x32ba,6}, {0xba1e,11}, {0xd1ee,8}, {0x1f379,8}, {0x11ee6,10}, + {0x27f9f,5}, {0x21518,7}, {0xb68d,9}, {0x10dfc,10}, {0x7a26,12}, {0x9312,4}, {0xc161,11}, {0x2fda,13}, + {0x24ef5,4}, {0x1c945,8}, {0x130de,8}, {0xbe3e,11}, {0x119eb,5}, {0x1001e,4}, {0x14468,10}, {0x66ac,7}, + {0x285e5,5}, {0x25b4f,6}, {0x901c,4}, {0x13798,10}, {0xb9c2,3}, {0x274b,10}, {0xe49f,11}, {0x2b6bb,4}, + {0xc9d,3}, {0xb88,3}, {0x242fe,7}, {0x18658,9}, {0x2a3ca,3}, {0x2b88e,6}, {0x23939,9}, {0x2d048,3}, + {0x1afac,3}, {0x19471,8}, {0x2166f,7}, {0xdaa9,9}, {0x20135,4}, {0x23366,7}, {0x117ca,10}, {0x1e17d,7}, + {0x532,70}, {0x18cf8,5}, {0x95da,12}, {0x2c7a0,6}, {0x10c58,8}, {0x2ca2,7}, {0x26697,6}, {0x20183,6}, + {0x2d5de,3}, {0xb517,11}, {0x25e4f,6}, {0x2a221,3}, {0xd149,11}, {0x10d0c,10}, {0x1ec99,8}, {0x2bcc2,4}, + {0x2c9f2,6}, {0xaee7,3}, {0x271cf,6}, {0x22daf,6}, {0x18b4,11}, {0xba0c,5}, {0x29ad4,5}, {0x221bf,7}, + {0x20b39,7}, {0x20a77,7}, {0x21e3b,7}, {0x13138,10}, {0x26595,6}, {0xa98c,4}, {0x14cb4,8}, {0x281be,5}, + {0xf76a,2}, {0xa4c9,5}, {0x9a66,12}, {0x1a2f6,5}, {0x11518,10}, {0x13946,8}, {0x2d4af,3}, {0x24519,12}, + {0x146fc,5}, {0x2cefa,3}, {0x13afe,10}, {0x29de9,3}, {0x2db7e,2}, {0x15f26,7}, {0x2c368,6}, {0x6d9b,13}, + {0x45f0,9}, {0x23aa9,5}, {0x157e2,18}, {0x155a4,10}, {0x11806,10}, {0x1d9d7,10}, {0x13856,10}, {0x10898,10}, + {0x19e76,9}, {0x2dadc,2}, {0x28f53,5}, {0x3ff0,8}, {0x1a1a9,9}, {0x2c8ea,6}, {0x31af,5}, {0x70f9,4}, + {0x2157c,5}, {0x1a607,9}, {0x41e8,11}, {0x8c86,12}, {0xd9b5,11}, {0xcb2f,11}, {0x29a11,5}, {0x1b919,10}, + {0x1d03e,4}, {0x242a3,7}, {0x1cb45,8}, {0x5b2a,13}, {0x5eaf,5}, {0x2a611,5}, {0x256bf,6}, {0x2a625,5}, + {0x10224,10}, {0x25baf,6}, {0x151a2,6}, {0x26529,4}, {0x2193b,7}, {0x1abef,9}, {0xcb19,11}, {0x29a02,5}, + {0x16ce7,9}, {0x2bfde,4}, {0x1cced,8}, {0x1a862,9}, {0x270cd,6}, {0x228d1,7}, {0xb43b,11}, {0x18e3a,4}, + {0x19e1e,7}, {0x17bd5,9}, {0x1127a,9}, {0x2c226,4}, {0x81d6,11}, {0x9db0,9}, {0x29df3,3}, {0x2bd02,4}, + {0x75e2,11}, {0x1b60b,8}, {0x1186a,10}, {0x1a9e5,5}, {0x1fc23,5}, {0x2c920,6}, {0xf0b2,8}, {0x155f4,10}, + {0x7df9,5}, {0x2922c,3}, {0x29c32,5}, {0x1f5a9,8}, {0x25825,6}, {0x1395e,6}, {0xf85f,6}, {0x2d4bc,3}, + {0x1519e,5}, {0x2b0a3,4}, {0x2a3c5,3}, {0x2b33d,4}, {0x28dfa,5}, {0xefd,17}, {0x182b0,9}, {0x13402,6}, + {0x1f981,6}, {0x1d2c5,8}, {0x2c692,6}, {0x1ebb9,6}, {0x8db2,12}, {0x22b9f,7}, {0x9845,5}, {0x14864,10}, + {0x203e1,5}, {0xb186,11}, {0x6e92,9}, {0x13e00,10}, {0x10db6,10}, {0x2733d,6}, {0x1df4f,8}, {0x1b98d,6}, + {0x24bd2,4}, {0x23082,5}, {0x88de,12}, {0x1a35,3}, {0x200c1,8}, {0xa852,12}, {0x1f179,8}, {0x1d8d7,8}, + {0x20624,2}, {0x13a08,6}, {0x29962,5}, {0x2a19f,3}, {0x20319,8}, {0xb349,11}, {0x27423,4}, {0x2581,4}, + {0x21a6a,7}, {0x5af8,7}, {0x14134,7}, {0x2d21e,3}, {0x1df3,6}, {0x159a4,9}, {0x1276a,7}, {0x2b757,4}, + {0xcfd3,11}, {0xf346,11}, {0x26e47,4}, {0x22a0,3}, {0x1525e,6}, {0x2c398,4}, {0x2b91e,6}, {0x7260,10}, + {0xfa35,11}, {0x14026,10}, {0x1a4c3,9}, {0xe4d,5}, {0x4a9c,13}, {0x7e2e,12}, {0xce0,4}, {0x6887,13}, + {0x12210,10}, {0x90e2,11}, {0x1a8e2,7}, {0xbafa,11}, {0x9646,10}, {0x1770b,9}, {0x7366,11}, {0xc767,11}, + {0x28b13,5}, {0x15358,8}, {0x6e39,7}, {0x16a29,6}, {0x2d8f1,4}, {0x150ea,10}, {0xb7b6,10}, {0x6296,10}, + {0xa966,12}, {0xf443,11}, {0x2d7f9,4}, {0x1f9db,3}, {0x2b25b,4}, {0x1a026,9}, {0x22db6,7}, {0x2b5c2,3}, + {0x266cd,6}, {0x131a8,8}, {0x21fd1,7}, {0xb8a1,7}, {0x1eec1,4}, {0x29971,5}, {0x23be9,6}, {0x27a11,4}, + {0x2be22,4}, {0xbad,7}, {0x1c18d,8}, {0x780c,10}, {0x1c2c5,8}, {0x2c9c8,6}, {0x7d3e,12}, {0x395e,14}, + {0x432,29}, {0xccb0,11}, {0x2d0e0,3}, {0x25200,3}, {0x11dec,10}, {0x6cf4,6}, {0x1a5c8,6}, {0x26d4f,6}, + {0x8f8c,5}, {0x2d284,3}, {0x1c77d,7}, {0x29450,5}, {0x511c,13}, {0x25c5d,5}, {0x2af51,4}, {0x1f941,5}, + {0xf59,5}, {0x1029c,10}, {0x149c2,10}, {0x2a4dd,3}, {0x268e5,6}, {0x2a56c,5}, {0xe7b,11}, {0x255a7,6}, + {0x6a0d,13}, {0x2beb6,4}, {0x11d4,4}, {0xffc0,10}, {0x2d08f,2}, {0x27865,6}, {0x2b6ec,4}, {0x10d52,10}, + {0x2b48,4}, {0x21ab8,2}, {0x1f8b1,8}, {0x15764,10}, {0x10bf4,9}, {0x1b183,12}, {0x151c6,10}, {0x2c63e,6}, + {0x8f4a,12}, {0x71eb,7}, {0x2b980,4}, {0x166c,16}, {0x21ba,4}, {0xc98d,10}, {0x202cb,6}, {0x2d55a,3}, + {0x1c60d,5}, {0xc7ca,7}, {0x747a,12}, {0x2905e,3}, {0x19d5f,9}, {0x1dd45,7}, {0x20503,8}, {0xc177,7}, + {0x2ad33,8}, {0x18df9,9}, {0x21afc,5}, {0x2a9b9,5}, {0x182dd,9}, {0x3e20,14}, {0xa8b4,4}, {0x6a38,4}, + {0x14684,7}, {0x11ebe,10}, {0x2b9bc,4}, {0x2aede,3}, {0x2a332,5}, {0xbd4c,6}, {0x2bf5e,4}, {0x1f4e1,8}, + {0xc730,10}, {0x2061,12}, {0x2a949,2}, {0x26115,6}, {0x26ed7,4}, {0x216e6,7}, {0x1fd69,8}, {0xf43a,6}, + {0x2b68b,4}, {0x2480d,12}, {0x203d9,5}, {0x1787c,9}, {0x29698,5}, {0x2cb5a,6}, {0x2c572,6}, {0x15db5,4}, + {0xc89b,9}, {0x25737,6}, {0x649e,13}, {0x27c3,8}, {0x7402,12}, {0x246ed,12}, {0xcf2e,11}, {0x14e24,8}, + {0x2be2a,4}, {0x88ea,12}, {0x1fff9,8}, {0x64c5,13}, {0x27e3c,5}, {0x2c0d4,2}, {0xee3f,7}, {0x1e9b7,8}, + {0xbb2b,3}, {0x27f36,5}, {0x2a64d,5}, {0x1a5dd,6}, {0x963c,5}, {0x1c42d,8}, {0x6c65,6}, {0x2a8f3,3}, + {0x27381,4}, {0x23684,7}, {0x15980,9}, {0xaee8,2}, {0x6c31,3}, {0x122f,7}, {0x2ca28,6}, {0x2641d,6}, + {0x27fc7,5}, {0x91bf,5}, {0x1ee41,8}, {0x16e58,9}, {0xeaae,6}, {0x2108c,7}, {0x13450,10}, {0x942a,12}, + {0x1747c,7}, {0xb46,4}, {0x2706d,6}, {0x6bf0,4}, {0x1956d,9}, {0x6853,5}, {0x29c64,5}, {0x2b049,4}, + {0x190e4,9}, {0x2c6c8,4}, {0x2271f,5}, {0x1a065,9}, {0x7132,8}, {0x2b7e3,7}, {0x2d485,3}, {0x11ff4,10}, + {0x2bd86,4}, {0x62a3,13}, {0x2daa,14}, {0x15132,4}, {0x22e67,2}, {0xf3a9,11}, {0x46e2,4}, {0x1df67,8}, + {0x10a1,5}, {0x2099f,6}, {0x2b8a0,6}, {0x176de,9}, {0x20489,8}, {0x27bec,3}, {0x22f37,7}, {0x22fff,3}, + {0xb57a,11}, {0x21f3e,7}, {0x18c01,9}, {0x2773f,6}, {0x7022,4}, {0xdbdd,8}, {0x7204,4}, {0x19ef0,4}, + {0x1a876,4}, {0x7e52,5}, {0x250c0,3}, {0x1f6dc,5}, {0x10454,10}, {0x1083c,6}, {0x1fbf1,8}, {0x14dae,4}, + {0x23389,4}, {0x2d692,3}, {0x263f9,6}, {0x2a366,3}, {0x1eb81,8}, {0x19a32,3}, {0x2b9f0,6}, {0x696a,7}, + {0x2d7dd,4}, {0xcf67,3}, {0x27183,4}, {0x1faf1,6}, {0x627e,10}, {0x1c0d5,8}, {0x54aa,6}, {0x2b469,4}, + {0x22422,7}, {0x1eb29,8}, {0x24ac1,4}, {0x22123,7}, {0xd702,8}, {0xfc14,4}, {0x411b,3}, {0x14713,4}, + {0x2da7b,2}, {0x230c1,5}, {0xf9a6,11}, {0x3e19,7}, {0x2d785,4}, {0xd2e0,11}, {0x2246f,7}, {0x22aad,7}, + {0x298e5,5}, {0x5b46,3}, {0x24362,5}, {0x1f6fb,6}, {0x28362,5}, {0x1bec5,7}, {0x24825,12}, {0x1e1bf,8}, + {0x27571,6}, {0x3644,4}, {0x15e16,9}, {0x3cc2,14}, {0x2d4a3,3}, {0x290e8,5}, {0xe3c3,10}, {0x1713e,3}, + {0xad94,10}, {0x7a2b,6}, {0xd5cc,9}, {0x2fa2,13}, {0xf26a,5}, {0x4e51,9}, {0x1bc5,4}, {0x24dca,3}, + {0x26b3f,6}, {0x668c,13}, {0x4dbb,7}, {0x9312,3}, {0x146d4,7}, {0xa312,12}, {0xd6d4,11}, {0x2980e,3}, + {0x28222,5}, {0x1d545,8}, {0x27e6b,3}, {0x1f241,8}, {0xd5ed,11}, {0x18697,7}, {0x1eae7,8}, {0x29db0,5}, + {0x11810,6}, {0x14b5e,10}, {0x1c185,8}, {0x2810c,3}, {0x28a98,5}, {0x1ccc5,8}, {0x26cad,6}, {0x2cdf4,6}, + {0x15130,10}, {0x4bba,8}, {0x276f1,6}, {0x1885b,7}, {0xcde4,11}, {0xa22e,5}, {0x13748,7}, {0x2be82,4}, + {0x1ae89,9}, {0x22c34,5}, {0x2b535,4}, {0xfdeb,11}, {0x2017b,4}, {0x2a401,3}, {0x2c7ca,6}, {0x180ee,9}, + {0x11748,10}, {0xd6b3,10}, {0x6c9c,8}, {0xed58,11}, {0x2b539,4}, {0x2b818,3}, {0x1a82c,9}, {0x23511,6}, + {0x26193,6}, {0x1015a,18}, {0x1fac1,8}, {0x12f62,10}, {0x17be7,6}, {0x8a76,9}, {0xd93c,11}, {0x2cf5f,3}, + {0x1a01d,9}, {0x2d8e5,4}, {0x1c7e5,8}, {0x16d9b,9}, {0x10b54,10}, {0x2d49d,3}, {0x532,78}, {0xbd68,4}, + {0x23afb,7}, {0x530f,8}, {0x29e2d,4}, {0x9b06,8}, {0x16ec4,9}, {0x2a530,5}, {0x2ce00,6}, {0x158f0,9}, + {0x17faa,9}, {0xf44e,8}, {0x236e6,7}, {0x10580,7}, {0x16cde,9}, {0xc274,11}, {0x263c3,6}, {0xdc80,11}, + {0xe3e8,6}, {0x290e3,5}, {0x1c525,8}, {0x283ad,5}, {0x8512,12}, {0x3f80,5}, {0x11e82,10}, {0x11036,8}, + {0x24ca7,5}, {0x2995f,3}, {0x22a36,7}, {0x2a2a,14}, {0x27c97,6}, {0x1150,3}, {0xdce,4}, {0x18148,6}, + {0x185f,2}, {0x256a1,6}, {0x24eb7,8}, {0xcb0e,11}, {0x2a521,5}, {0x1ffeb,4}, {0x8485,4}, {0x2d02e,3}, + {0x529e,4}, {0x128a0,10}, {0x6b45,13}, {0x2db52,2}, {0x24acb,6}, {0x26eb1,6}, {0x22652,7}, {0x50db,13}, + {0x227cc,7}, {0x4bb4,6}, {0x3154,14}, {0x4ad0,13}, {0x27ce8,4}, {0x1dcf2,3}, {0xfe08,4}, {0x981a,12}, + {0x181e,5}, {0x2953d,5}, {0x26745,6}, {0x24219,5}, {0x2c3fe,6}, {0x1cb0,6}, {0x21364,7}, {0x20595,2}, + {0x20e58,9}, {0x186a9,7}, {0x2bf2c,2}, {0x27685,6}, {0x1a5c8,5}, {0x28d24,5}, {0x24209,7}, {0x170c,16}, + {0x1a634,6}, {0xcae2,6}, {0x214e0,7}, {0x2993f,4}, {0x1303e,10}, {0x1af85,9}, {0x16f98,6}, {0x18180,3}, + {0x2b1b7,4}, {0x171ba,9}, {0x6701,13}, {0x22aa,15}, {0x231de,7}, {0x17e17,6}, {0x1ba68,5}, {0x36d2,8}, + {0x2b5fb,4}, {0x165cb,9}, {0x4ddc,13}, {0x1f1bb,5}, {0x24c77,6}, {0xd02b,6}, {0x14b36,9}, {0x1bcad,8}, + {0x16412,9}, {0x2d99d,4}, {0x28c41,5}, {0x1be09,4}, {0x1658c,9}, {0x2337d,5}, {0x14580,10}, {0x60dc,12}, + {0x8f6e,12}, {0x14dcf,5}, {0x1501e,4}, {0x1b435,6}, {0x1ee61,6}, {0x7558,4}, {0xe0d7,8}, {0x1cc85,8}, + {0x2b551,4}, {0x2a48b,5}, {0x16889,9}, {0x2afd9,4}, {0xd574,11}, {0x1cc57,3}, {0xd65b,10}, {0x13f9c,8}, + {0x1536c,8}, {0x20121,6}, {0x269f3,6}, {0x16c3a,8}, {0x149ea,10}, {0x5e04,13}, {0x288a5,5}, {0x2b0e9,4}, + {0x2a36b,3}, {0x1f741,8}, {0x7c06,7}, {0x2d959,4}, {0x12578,8}, {0x2c8cc,6}, {0x6081,13}, {0x2aef9,4}, + {0x21614,7}, {0x17ce,3}, {0x809e,12}, {0x150e,8}, {0xdca1,6}, {0x163f7,5}, {0x2c440,4}, {0x57f7,8}, + {0x2c42e,4}, {0x1a5ec,6}, {0xd57,4}, {0x1d255,8}, {0x2a602,5}, {0x2c6e0,4}, {0x2d689,3}, {0x2500f,6}, + {0x22115,6}, {0x12eea,7}, {0x22d56,4}, {0x22bf3,7}, {0x3f56,4}, {0x1120c,10}, {0xb4f6,11}, {0x282fe,5}, + {0x2442d,3}, {0x2bd0e,4}, {0x255dd,6}, {0x1e454,3}, {0x211c0,7}, {0x1462a,10}, {0x2ccc2,6}, {0x1c075,8}, + {0x299e9,5}, {0x24289,5}, {0x1ff59,5}, {0x15694,8}, {0x1ab17,9}, {0x10422,10}, {0x2d1bb,3}, {0x2a8d8,5}, + {0x42a2,6}, {0x2107e,7}, {0x3598,14}, {0x233b3,7}, {0x1cfe9,7}, {0x10502,6}, {0x2b0e1,4}, {0x2cf9e,3}, + {0x1facb,6}, {0x26213,5}, {0x20cdc,5}, {0x5db1,5}, {0xf8e,6}, {0x298b3,5}, {0x161d0,9}, {0x2a616,5}, + {0x1f011,8}, {0x5188,4}, {0x2311c,3}, {0x2896f,5}, {0x1a39a,9}, {0x158d5,9}, {0x247b,10}, {0x29ade,5}, + {0x21ff6,5}, {0x24a40,5}, {0x2e54,4}, {0x15186,4}, {0x2b7f1,4}, {0x23c1a,7}, {0xe7ee,11}, {0x1e59f,8}, + {0x152c7,3}, {0x3736,6}, {0x14bcc,10}, {0x2735d,4}, {0x14314,10}, {0x15de9,9}, {0x887e,12}, {0x23c8a,7}, + {0xa0e5,4}, {0x21d69,7}, {0x20eed,7}, {0x2120d,7}, {0x29684,5}, {0x184be,4}, {0x3a37,7}, {0x15522,10}, + {0x15504,7}, {0x2a39d,3}, {0x193ab,9}, {0x218e7,7}, {0x177ee,7}, {0x294f2,5}, {0x23805,7}, {0x1b943,14}, + {0x2a1cc,3}, {0xba81,11}, {0x4867,6}, {0x4a34,13}, {0x1d01d,6}, {0x25bcd,6}, {0x29bf6,5}, {0x1f4b3,6}, + {0x2b9a4,4}, {0xf12b,11}, {0x14b68,10}, {0xf327,2}, {0x2a643,5}, {0x2b583,2}, {0x132e6,7}, {0x1e21f,8}, + {0x3eac,14}, {0x1f571,6}, {0x1a418,9}, {0x7396,12}, {0x14846,6}, {0x1b99d,5}, {0x141c,15}, {0x5b37,13}, + {0x14b36,10}, {0x167f0,9}, {0x125e,6}, {0x28b07,7}, {0x13b32,8}, {0x3557,5}, {0x15038,2}, {0x197f5,9}, + {0x1096a,10}, {0x82a4,4}, {0xd0d0,11}, {0x3704,14}, {0x23de3,5}, {0x1f623,6}, {0x12c06,10}, {0x6617,10}, + {0x25135,6}, {0xde8,2}, {0x3a06,14}, {0x3f1c,14}, {0x23bdd,5}, {0xd855,11}, {0x129ea,10}, {0x1a52f,6}, + {0x4d40,10}, {0x2c27a,4}, {0x19c12,5}, {0x11ab8,10}, {0x1abf8,7}, {0x1e7a9,6}, {0x8976,4}, {0x1e4e7,8}, + {0x2b0bc,3}, {0x4ae2,8}, {0x23d40,7}, {0x150f6,2}, {0x171f9,9}, {0x1cfa9,8}, {0x31d4,7}, {0x7a3e,9}, + {0xf6db,8}, {0xe8fc,5}, {0x9082,12}, {0x29b88,5}, {0x1319c,10}, {0x138a6,10}, {0x12350,10}, {0x5261,10}, + {0x173c,16}, {0xeb9,11}, {0x13fc,16}, {0x19f43,2}, {0xc84e,11}, {0x2268,6}, {0xf4e8,11}, {0x2d80d,4}, + {0xf58f,11}, {0x1b2ed,8}, {0x68d5,12}, {0x9412,12}, {0x15432,6}, {0x11428,10}, {0x2b446,3}, {0x776e,12}, + {0x107fc,4}, {0x2d8ed,4}, {0x24b4b,6}, {0x2bf3e,4}, {0x12bfc,10}, {0x22595,7}, {0x1a85,15}, {0x26d57,4}, + {0x1c6e5,7}, {0x298fe,5}, {0x1a619,9}, {0x1e43c,3}, {0x2714b,6}, {0x2b2e7,4}, {0x29188,5}, {0xe1c9,11}, + {0x23010,5}, {0x9f16,12}, {0x432,33}, {0x21e1f,7}, {0x299a3,4}, {0x4b79,13}, {0x7552,11}, {0x3598,4}, + {0x1b4fb,8}, {0x102f8,4}, {0x17b82,9}, {0x2645c,2}, {0xfcb3,3}, {0x12233,5}, {0xded,12}, {0x8dd8,9}, + {0x27357,4}, {0x2243e,7}, {0xfac6,8}, {0x1540a,10}, {0x4fbd,13}, {0x1f1f3,6}, {0x1d33d,6}, {0x2d945,4}, + {0x2593b,6}, {0x285b,5}, {0x1b613,8}, {0xf199,11}, {0x26855,4}, {0x29a43,5}, {0x1927b,6}, {0x2d415,3}, + {0x18e14,7}, {0x42ac,14}, {0xac06,12}, {0x1b705,10}, {0xc49,12}, {0xfcbb,3}, {0x71aa,12}, {0x6fe2,4}, + {0x67eb,13}, {0x1b13e,7}, {0x232b0,5}, {0x2124c,5}, {0x27d53,10}, {0x19d6,6}, {0x285f9,3}, {0x10710,10}, + {0xd1cd,11}, {0x2c9fe,6}, {0x241a0,7}, {0x1b6db,14}, {0x8b8a,8}, {0x366a,14}, {0x1c5b5,8}, {0x2345d,5}, + {0x1dab8,5}, {0x2da98,2}, {0x2abe3,8}, {0x11b50,5}, {0x1c84d,7}, {0x2502,15}, {0x1aed3,4}, {0x6d40,9}, + {0x1057a,6}, {0x111f2,6}, {0x18082,9}, {0x9436,12}, {0x58fb,13}, {0x2d47c,3}, {0x5917,11}, {0x3ce3,8}, + {0x195d9,8}, {0x1919d,4}, {0x1ab29,5}, {0x12a30,10}, {0xb09f,7}, {0xdc3e,11}, {0x18c01,8}, {0x2384d,5}, + {0x19a1a,7}, {0x10562,10}, {0xfb0,4}, {0x22a98,7}, {0x8482,9}, {0x15b36,9}, {0xa4d4,6}, {0xa012,12}, + {0x27303,4}, {0x29270,4}, {0x1eea,15}, {0xb09f,11}, {0x29da6,5}, {0x1c858,5}, {0xa77a,12}, {0x5fa4,13}, + {0x7456,12}, {0x28c1,3}, {0x6dd7,5}, {0x6fda,6}, {0xcdef,11}, {0x275c,6}, {0x4a29,5}, {0xaab6,7}, + {0x2b41d,4}, {0xef5d,10}, {0x1f1db,3}, {0x12cd2,6}, {0x5768,13}, {0xfccf,5}, {0xa58e,6}, {0x7f42,12}, + {0x26ad7,6}, {0xa4f2,12}, {0x1bce5,6}, {0x25123,6}, {0x1f2d9,8}, {0x20269,7}, {0xda9c,11}, {0x2225d,3}, + {0x80aa,8}, {0xfc8b,7}, {0x22675,7}, {0x296e8,5}, {0xe888,11}, {0x117c0,8}, {0x22c55,7}, {0x5340,7}, + {0xcc16,11}, {0x6067,5}, {0x6624,12}, {0xbd4c,11}, {0x2c1aa,4}, {0x2a1d1,3}, {0x81f3,7}, {0x9076,12}, + {0x6b2b,5}, {0x1359a,10}, {0xcff4,11}, {0xaeb4,5}, {0x2c5d8,6}, {0x1813f,8}, {0x20ccc,7}, {0x2c884,6}, + {0x2bf78,2}, {0x2b449,4}, {0xbe96,11}, {0xb711,11}, {0xf3cc,3}, {0xe964,11}, {0x1f5db,6}, {0x14a28,3}, + {0x920e,6}, {0x31fc,6}, {0x34a1,5}, {0x23c13,7}, {0x9929,4}, {0x2610,15}, {0x26e7b,5}, {0x2a634,5}, + {0x2160,15}, {0xf5a8,4}, {0x153f6,8}, {0x180dc,9}, {0x73f6,12}, {0xfc33,11}, {0x25879,6}, {0x17bba,9}, + {0x1724a,9}, {0x1fe81,8}, {0x16487,9}, {0x16adb,9}, {0x2a186,3}, {0xddbf,11}, {0x1a1df,9}, {0x2e28,14}, + {0x241a9,5}, {0x7522,12}, {0x239f3,5}, {0x218bd,5}, {0x11fe0,10}, {0xf2fb,4}, {0x8c4,50}, {0x28021,5}, + {0x2b211,4}, {0x20e8,8}, {0x153f8,8}, {0x2d48e,3}, {0x622e,13}, {0x21b3,5}, {0x1355e,10}, {0xd317,11}, + {0x327a,14}, {0x1b11a,5}, {0xf5aa,6}, {0x230f9,5}, {0x299fa,2}, {0x2920,14}, {0x1a29c,6}, {0x2b654,3}, + {0x2bf22,4}, {0x9b56,12}, {0x5cd9,8}, {0x271c9,6}, {0x23b80,6}, {0x28871,5}, {0x1e987,8}, {0x1347d,5}, + {0x27a17,4}, {0x24cad,6}, {0x1e6af,8}, {0x2b42d,4}, {0x2ad2,14}, {0x5990,7}, {0xe0dd,5}, {0x13e9a,6}, + {0x11bc8,6}, {0xbd62,5}, {0x55fc,12}, {0x2ab0f,8}, {0x291a6,5}, {0x732a,12}, {0x269e4,3}, {0x29d8d,5}, + {0x2b035,4}, {0x10e7e,10}, {0x1dee7,8}, {0x294fe,3}, {0x2ed0,6}, {0x2590f,6}, {0xbff0,6}, {0x2b161,4}, + {0x1a489,4}, {0x3f46,14}, {0x25879,5}, {0x575b,10}, {0x2d29c,3}, {0x23f70,5}, {0x21710,7}, {0x26d3f,4}, + {0x3252,3}, {0x26dd3,6}, {0x2b335,3}, {0x4288,8}, {0x632b,6}, {0x902e,12}, {0xbe2e,5}, {0x28bd4,5}, + {0x2a393,3}, {0x277e9,4}, {0x2223,14}, {0x1b613,2}, {0x234db,4}, {0x2350a,4}, {0x1d7bf,4}, {0x82d2,12}, + {0x1007e,10}, {0x24467,3}, {0x5220,7}, {0xecbe,10}, {0xaf72,12}, {0x2d3f0,3}, {0x2352d,4}, {0x1b75,8}, + {0x31a1,7}, {0xbb73,11}, {0x1c697,6}, {0x10dac,6}, {0x1c825,8}, {0x15360,10}, {0x2b174,2}, {0x1c3dd,8}, + {0x17738,9}, {0x1c5f5,8}, {0x701b,7}, {0x9cbe,12}, {0xf89c,11}, {0xb609,5}, {0x18815,4}, {0x19858,9}, + {0x1cbad,8}, {0xd671,11}, {0x14594,6}, {0x4214,7}, {0x13fae,10}, {0x18730,8}, {0x1d0a,15}, {0x19609,2}, + {0x5675,3}, {0x11bbc,10}, {0x2daec,2}, {0x17653,4}, {0x22e6,8}, {0x138a1,5}, {0x14956,5}, {0x678a,4}, + {0xaa62,6}, {0x4ffe,13}, {0x1bf4d,8}, {0x1fd4b,5}, {0x26ecb,3}, {0x2a4f4,5}, {0x13680,7}, {0x2098b,5}, + {0x1d64,15}, {0x21e6e,5}, {0x13d12,4}, {0x17121,9}, {0x29930,5}, {0x28586,5}, {0x2d7c5,4}, {0x22739,7}, + {0x116d,3}, {0x1987c,9}, {0x2ab0b,8}, {0x968e,7}, {0x1200a,6}, {0x1fd9b,3}, {0x28795,6}, {0xda18,11}, + {0xe898,6}, {0x229aa,7}, {0x153c,16}, {0x291a1,5}, {0x24bf9,6}, {0x17b96,8}, {0x3bfe,6}, {0x1074c,10}, + {0xeed4,2}, {0x23de1,7}, {0x2a5d5,5}, {0x1e37f,8}, {0x2bfac,2}, {0xe45d,11}, {0x3472,14}, {0x1f9b9,8}, + {0x2516b,6}, {0x176f0,9}, {0x7342,11}, {0x1fce1,8}, {0x1bccd,8}, {0x61ac,13}, {0x20d6a,7}, {0x2348c,5}, + {0x2db46,2}, {0x25607,6}, {0x2a15e,3}, {0xd8d9,7}, {0xbdba,11}, {0x234fc,7}, {0xf372,9}, {0x16152,7}, + {0x2935d,3}, {0xee4,8}, {0x2b76b,4}, {0x230d6,5}, {0x2c284,2}, {0xd54d,4}, {0x6eac,8}, {0x434d,4}, + {0x2a89b,5}, {0xa9f8,3}, {0x2a2dd,5}, {0x107e2,10}, {0x11260,6}, {0x25a0d,6}, {0x1fd9b,6}, {0xf64a,11}, + {0x142a6,9}, {0x875e,12}, {0x176f9,9}, {0x2d488,3}, {0x2868d,5}, {0x1d44d,8}, {0x1cd45,8}, {0x99e2,12}, + {0x2498d,12}, {0xaa02,12}, {0x19b60,3}, {0x1fa81,8}, {0x19ae9,8}, {0x1ba95,6}, {0x23506,4}, {0x40c2,4}, + {0x40b7,2}, {0x2588b,6}, {0x3eca,5}, {0xdfe,6}, {0xceb5,8}, {0x2a620,5}, {0x21036,7}, {0xe83b,8}, + {0xf64a,5}, {0x24d9b,6}, {0x23335,7}, {0x28f44,5}, {0x2c788,4}, {0x14bae,8}, {0x20ed1,7}, {0xe216,11}, + {0x236a7,6}, {0x1b93b,8}, {0x250f2,2}, {0x20211,8}, {0x325e,14}, {0x15c0c,9}, {0x5698,9}, {0x25d7f,6}, + {0x2905c,4}, {0x28dbe,5}, {0x12959,5}, {0xbcac,6}, {0x4f18,3}, {0x2a163,3}, {0x29048,4}, {0x5f63,13}, + {0xf4c7,11}, {0x29b85,2}, {0x28a3,3}, {0x1f19,6}, {0x2a893,3}, {0x1a3c9,3}, {0x1684a,9}, {0x35ee,9}, + {0x24fff,4}, {0x9f22,8}, {0x23d4e,7}, {0x2ae59,8}, {0xb2f1,11}, {0x13386,10}, {0x48fc,12}, {0x170ca,6}, + {0x1c34d,8}, {0x74b8,5}, {0x5145,5}, {0x2d419,3}, {0xb356,8}, {0x2a562,5}, {0x19a8,7}, {0x53da,12}, + {0x53a9,10}, {0x12698,10}, {0x28cf8,5}, {0x2cbb4,6}, {0x1fceb,6}, {0x29897,2}, {0x285f7,3}, {0x6318,13}, + {0x29d92,5}, {0x27d95,6}, {0x10516,6}, {0x1aa89,3}, {0x1bcd5,8}, {0xf0e9,11}, {0x36e8,14}, {0x2b22d,4}, + {0x18e16,4}, {0x2734,4}, {0x2657a,3}, {0x2716f,5}, {0xd973,11}, {0x434e,3}, {0x9016,12}, {0x28de6,5}, + {0x28896,5}, {0x3c8a,14}, {0x1e847,8}, {0x22a21,5}, {0x2dacc,2}, {0x160a7,9}, {0x19d29,9}, {0x21a91,7}, + {0x276c7,6}, {0x36f6,14}, {0x2d57b,3}, {0x15bd6,9}, {0xf87b,11}, {0x191b3,9}, {0x97e3,7}, {0x236b5,7}, + {0x19c2f,7}, {0x2a50d,5}, {0x141c0,10}, {0x27507,4}, {0x266bd,4}, {0x2adf5,6}, {0x1cf44,5}, {0x2dca,8}, + {0x2d47a,3}, {0x1b071,6}, {0xd338,11}, {0x87ca,7}, {0x10c4e,10}, {0x10a6e,10}, {0x4c15,9}, {0x2b7ea,7}, + {0xe2f4,5}, {0x10caa,8}, {0x1a6c4,9}, {0x26c49,4}, {0x27d06,6}, {0x19a62,9}, {0x2492,7}, {0x2a5cb,5}, + {0x2bf9c,2}, {0x28ea6,2}, {0x1c977,6}, {0xdbd0,7}, {0x13d44,5}, {0x1f9b9,5}, {0x25ae3,6}, {0xd42f,6}, + {0x2bff6,4}, {0x2ad0b,8}, {0x2bf4a,4}, {0xa70e,12}, {0xca74,11}, {0x2b02d,4}, {0x1306,5}, {0x21ba4,5}, + {0x217ba,6}, {0x2aa93,8}, {0x209a5,3}, {0x29e78,5}, {0xc5ce,11}, {0x2a5f8,5}, {0x1a79c,9}, {0x11d74,10}, + {0x2c8ae,6}, {0x5553,13}, {0x1fa61,7}, {0x1e5bf,6}, {0xeca,17}, {0x1d21,7}, {0xbaad,11}, {0x1fb91,6}, + {0x179e6,7}, {0xa162,12}, {0x954a,12}, {0x13f12,6}, {0x13996,10}, {0x7876,11}, {0x1eb53,5}, {0x5401,13}, + {0x12698,9}, {0x255c,14}, {0x2ac03,8}, {0xa8a6,6}, {0x22b7c,7}, {0x46f8,6}, {0x190c2,5}, {0xef31,11}, + {0xa618,6}, {0x574e,13}, {0x2ad8b,8}, {0x4370,6}, {0x2cec8,5}, {0x6fdb,11}, {0x1b294,2}, {0xcd9,15}, + {0x13dc,11}, {0x27f0,15}, {0x18f00,7}, {0x2d755,4}, {0xba16,4}, {0x22b57,7}, {0x2236,4}, {0x1721d,9}, + {0x2aebd,4}, {0xa4e6,12}, {0x2097,6}, {0x27219,4}, {0x232c5,6}, {0x1350e,10}, {0x9712,12}, {0x12dc,8}, + {0x2ce73,5}, {0x1bf77,5}, {0x15632,7}, {0x3926,14}, {0x1dabd,8}, {0xb85,4}, {0x2942,6}, {0x2b5ab,4}, + {0x27493,6}, {0x276d3,5}, {0x23ee4,7}, {0xf8de,5}, {0x16367,9}, {0x601c,10}, {0x24060,5}, {0x8c4,32}, + {0x2cfc8,3}, {0x1861,4}, {0x2c0e6,4}, {0x172af,7}, {0x28adf,5}, {0x1786a,9}, {0x450a,9}, {0x1552,10}, + {0x150ec,8}, {0x22605,7}, {0x14f52,8}, {0x28528,4}, {0x1b295,8}, {0x1c345,8}, {0x2c734,6}, {0x1981b,7}, + {0x1d777,8}, {0x2a311,3}, {0x24c55,2}, {0xb0f7,11}, {0x27f0e,5}, {0x2b0af,4}, {0xbb7e,9}, {0xb60,5}, + {0x24179,4}, {0x1430a,10}, {0x2af3,3}, {0x8c1a,12}, {0x12f26,7}, {0x2aa9b,8}, {0x19db0,9}, {0x2c458,6}, + {0x146b6,7}, {0x2d56,6}, {0x1229c,10}, {0xa7e6,12}, {0xfdd,4}, {0x18fd6,9}, {0x2a190,3}, {0xcc02,5}, + {0x1f0a9,6}, {0x1a48d,9}, {0x1bd35,8}, {0x20aaa,5}, {0x2d6e3,3}, {0x2c16,4}, {0x17fc,15}, {0x2d5f6,3}, + {0x27b6e,3}, {0xf558,8}, {0x254ff,6}, {0xde5d,4}, {0x11360,7}, {0x2b478,2}, {0x1f7c9,8}, {0xe29f,6}, + {0x29ba3,3}, {0x25731,6}, {0xf03,2}, {0x2c00a,4}, {0x27d15,3}, {0x32fa,9}, {0x1f1cb,6}, {0x1b957,8}, + {0x2d2d2,3}, {0x27729,4}, {0x1c8f5,8}, {0x15daa,9}, {0x13f83,3}, {0x2638,5}, {0x25ec1,6}, {0x1f5fb,6}, + {0x236a0,7}, {0x13d60,10}, {0x14d98,5}, {0x26c71,6}, {0x26d0a,3}, {0x295a1,5}, {0x810a,9}, {0xd0ba,10}, + {0x27891,2}, {0x27acf,6}, {0x1b7c9,14}, {0x962e,11}, {0x29b79,5}, {0x4f71,10}, {0x6b93,6}, {0x1790c,9}, + {0x89e6,12}, {0x28cda,5}, {0x2cf8c,3}, {0x1e3f7,8}, {0xf57e,6}, {0x2a307,3}, {0x25431,6}, {0x29f0b,3}, + {0x1876a,5}, {0x2d56f,3}, {0x2d734,3}, {0xaecc,10}, {0x2693f,6}, {0x2642f,6}, {0x16c4c,9}, {0x1ca1d,8}, + {0x7f5c,6}, {0x2a2f8,3}, {0x10966,3}, {0x1f859,8}, {0x1ca95,8}, {0x1ebd5,4}, {0x20361,5}, {0xe523,11}, + {0x28876,5}, {0x14866,7}, {0x6448,3}, {0x8e77,7}, {0x1dcad,8}, {0x26591,4}, {0x175c,16}, {0x265d,6}, + {0x3862,14}, {0x4a1a,13}, {0x284d7,5}, {0x63c3,10}, {0x2b71a,4}, {0x24ba,4}, {0x14956,3}, {0x2b132,2}, + {0x107ce,10}, {0x1c235,8}, {0x582b,13}, {0x153e2,10}, {0x2a4db,5}, {0x66b9,4}, {0x50d6,5}, {0x112e0,8}, + {0x2539f,8}, {0x10e2e,10}, {0x4f0c,3}, {0x2d146,3}, {0xca3,6}, {0x2d3b3,3}, {0x26e6b,3}, {0xfa09,11}, + {0x2baaa,6}, {0xef14,7}, {0x1c8d5,8}, {0x40c2,5}, {0x5c6f,11}, {0x11892,9}, {0xcc0b,11}, {0x16f3b,5}, + {0x2b263,4}, {0x2bcaa,4}, {0x23b80,7}, {0x159e8,2}, {0x2c312,4}, {0x6e03,12}, {0x1eb1b,6}, {0x2b52,10}, + {0x12de6,10}, {0x2298e,7}, {0x2bff4,2}, {0x190e7,3}, {0x29f3d,3}, {0x22d77,7}, {0x28723,8}, {0x27ad5,6}, + {0x2cf15,3}, {0x1318b,7}, {0x27cc4,3}, {0x789a,12}, {0x1b6b3,8}, {0x183d2,6}, {0x94ea,8}, {0x2ce18,4}, + {0x28a50,4}, {0x19e49,9}, {0x11c52,10}, {0x289b5,7}, {0x1404e,6}, {0x2b779,3}, {0xb6ff,7}, {0x2d49a,3}, + {0x17fe0,9}, {0x28fc1,5}, {0x28a8e,5}, {0x232f1,4}, {0x29508,2}, {0x2669f,4}, {0x79f8,5}, {0x5ee1,13}, + {0x1e309,4}, {0x10fbe,10}, {0x5d3a,3}, {0x3cde,14}, {0x19c5c,7}, {0x2779f,5}, {0x2beac,2}, {0x145c6,6}, + {0x8c4,30}, {0x208fc,2}, {0x45d0,6}, {0x152d4,10}, {0x2ced7,5}, {0x298ef,5}, {0x14faa,6}, {0x25efd,6}, + {0xfd27,4}, {0x2cd34,6}, {0x1bd95,6}, {0x1f429,8}, {0x1ccfd,8}, {0x29281,3}, {0x23fb6,7}, {0x1aa1d,5}, + {0x109f6,10}, {0x5a86,4}, {0x1510a,4}, {0x66da,13}, {0x22f22,7}, {0x2b4b5,4}, {0x987f,7}, {0x2b3bd,4}, + {0x251db,5}, {0x2cfd4,3}, {0x1d0e8,5}, {0x2d5d,7}, {0x29c5a,5}, {0xee76,11}, {0x22e05,5}, {0x4bcc,8}, + {0xc859,11}, {0x57b6,13}, {0x19a59,9}, {0x2bf2e,4}, {0x20c5e,4}, {0x11dba,10}, {0x2a398,3}, {0x27c93,4}, + {0x1d2ad,8}, {0x1dda5,8}, {0x113f6,10}, {0x107ba,10}, {0xf6d2,7}, {0x2d3aa,3}, {0x2a3a0,5}, {0x2b663,4}, + {0x407a,12}, {0x23653,6}, {0x86fe,12}, {0x1f7b9,8}, {0x16ee8,9}, {0x2ae89,4}, {0xed91,9}, {0x1a859,9}, + {0x1f8a9,6}, {0x2c6b6,6}, {0xfd74,9}, {0x200a1,8}, {0x22c0f,7}, {0x2a4a9,5}, {0xafa8,6}, {0x1f6ab,3}, + {0x29397,5}, {0x1ee9b,6}, {0x234af,7}, {0x8242,12}, {0xeed9,11}, {0x20a54,7}, {0xe78b,11}, {0x237db,7}, + {0x2d04e,3}, {0x163d3,9}, {0x1a9f0,7}, {0xb68d,11}, {0x2b777,3}, {0x14404,9}, {0x1314c,9}, {0xb12e,7}, + {0x10a46,7}, {0x3789,5}, {0x67de,13}, {0x1b0cb,3}, {0x12120,10}, {0xd603,7}, {0x4b09,8}, {0x2b8a6,6}, + {0x15d11,9}, {0x9556,10}, {0x150d6,10}, {0x20a4d,7}, {0x28595,5}, {0x2b87c,6}, {0x13b2,7}, {0x3410,14}, + {0x1cf71,8}, {0x2d036,2}, {0xea56,11}, {0x15af7,9}, {0xdd25,11}, {0x2cb24,6}, {0xa7ac,8}, {0xf1e6,11}, + {0x297cd,2}, {0x19d6a,7}, {0x27ddf,6}, {0x20bf3,6}, {0x5c67,3}, {0x14724,6}, {0x2b60f,4}, {0xaaed,3}, + {0x2a38c,5}, {0x19a8b,4}, {0x6bd4,7}, {0x1bff5,8}, {0x20119,8}, {0x1f13b,5}, {0x26d09,4}, {0x5e52,13}, + {0x1bb7d,8}, {0x2da45,2}, {0xc001,11}, {0x119a0,10}, {0x5a74,13}, {0x1edb,15}, {0xf228,11}, {0x1efc9,8}, + {0x16708,4}, {0x6e94,4}, {0x2b6b7,4}, {0x2d417,3}, {0x28a5f,5}, {0x22fdf,7}, {0xe12f,11}, {0x1f9e,8}, + {0x204db,7}, {0x281d,15}, {0x90cd,4}, {0x1999e,5}, {0x19338,5}, {0x2a23a,3}, {0x9baa,8}, {0x8ede,12}, + {0x1adfb,7}, {0x28ace,7}, {0x14012,10}, {0x2d1f1,3}, {0x2abeb,8}, {0xc479,11}, {0x5032,13}, {0x1c3ed,8}, + {0x11614,8}, {0x920e,12}, {0x170be,9}, {0x51b8,13}, {0x24a01,5}, {0x2ca7c,6}, {0x22d23,7}, {0x200a9,8}, + {0x137c,16}, {0x23e5,15}, {0x2895e,7}, {0xaa1a,5}, {0x194a,11}, {0xed37,10}, {0x788e,12}, {0x3b80,13}, + {0xeb1,3}, {0x26f29,6}, {0x2a599,5}, {0x1226a,10}, {0x1562,3}, {0xc772,11}, {0x27b2f,6}, {0x1ade7,6}, + {0x18ee5,7}, {0x2d239,3}, {0x295bf,5}, {0xd211,8}, {0x199fb,4}, {0x2b5d1,4}, {0x2d43a,3}, {0x7d02,12}, + {0x2681d,6}, {0xd48d,11}, {0x2dab3,2}, {0xb57a,10}, {0x568b,13}, {0x13630,9}, {0x25f75,6}, {0xb715,7}, + {0x1ae3a,4}, {0x2809e,5}, {0x1a8d0,4}, {0xcdd9,11}, {0x27c7f,6}, {0x8860,6}, {0x1a5ad,9}, {0x14db9,4}, + {0x2b6b3,4}, {0x36b0,7}, {0x29611,5}, {0x2d272,3}, {0x20882,7}, {0xf905,5}, {0x10341,5}, {0x2366f,7}, + {0xfe5b,4}, {0x95c2,12}, {0x2a5b2,5}, {0x10cda,10}, {0x1cbbd,5}, {0x1971d,9}, {0x19b94,5}, {0xc75,2}, + {0x13ff4,10}, {0x1597,3}, {0x3dc6,6}, {0x1a0c8,7}, {0x2967a,5}, {0x26d3,15}, {0x1d5d7,6}, {0x20708,7}, + {0x5840,2}, {0x2306b,5}, {0x6be1,13}, {0xf594,6}, {0x295da,5}, {0x13a0e,6}, {0x2bdd6,4}, {0x200e1,8}, + {0x162d5,11}, {0x2b399,4}, {0x1e8f7,8}, {0x14828,6}, {0x1ac76,9}, {0x29772,2}, {0x5d41,5}, {0x1d3ad,8}, + {0x2348,5}, {0x9136,12}, {0x1714e,7}, {0x14654,5}, {0x23d78,7}, {0x1e547,8}, {0xff28,12}, {0x1eca1,8}, + {0xd979,5}, {0x1a58,15}, {0x237f0,7}, {0x7060,4}, {0x9c1b,7}, {0x202eb,6}, {0x1751c,9}, {0x7292,7}, + {0x1fb31,8}, {0xd6df,11}, {0x11664,8}, {0x22f5,11}, {0x137a7,5}, {0x263fb,4}, {0x5700,13}, {0x135d6,10}, + {0x23247,6}, {0x1238c,10}, {0x2433d,7}, {0x2a1c0,5}, {0x1f9e9,7}, {0x2f08,9}, {0xe24d,11}, {0x20e3c,7}, + {0x2123e,7}, {0x1d36d,8}, {0x9af6,9}, {0x1d52d,8}, {0x2ab83,8}, {0x19f8d,9}, {0x28692,5}, {0x1af34,9}, + {0x1a8b5,3}, {0x2d2b4,3}, {0x24c4d,6}, {0x2cb78,6}, {0x16334,6}, {0x27cf4,5}, {0x2a159,3}, {0x869e,12}, + {0x18766,9}, {0xb94d,11}, {0x2a18b,3}, {0x9aba,6}, {0x2bde6,4}, {0x226d7,7}, {0x14e50,4}, {0x280cc,5}, + {0xd926,11}, {0x3a47,5}, {0x1cedf,6}, {0x1cbc5,8}, {0xd569,11}, {0x22d85,7}, {0x2624f,6}, {0x389a,14}, + {0x91ae,12}, {0x24aa5,6}, {0x72ee,12}, {0x2cef7,3}, {0x4443,5}, {0x246c,15}, {0x80da,12}, {0x2da4f,2}, + {0x1536,4}, {0x28a82,4}, {0x2bc2e,4}, {0xc361,4}, {0x1da7d,7}, {0x2a4ef,5}, {0x2095,8}, {0x1bfb5,8}, + {0x13c2a,10}, {0x2b2cf,4}, {0x20c71,7}, {0x2bfb0,2}, {0xaa56,9}, {0x14652,9}, {0x1e2b7,5}, {0x2a535,5}, + {0x19efd,9}, {0x18754,9}, {0xb28e,11}, {0x17b33,7}, {0xfcbc,6}, {0x1a808,6}, {0xc8be,4}, {0xf5f4,3}, + {0x2a1d6,3}, {0x76de,11}, {0x7de6,11}, {0x1f4b1,8}, {0x26e6b,4}, {0xad64,6}, {0x1bc0,15}, {0x228c3,6}, + {0x2d3ad,3}, {0x24003,7}, {0x13408,10}, {0x26daf,5}, {0x12e3,9}, {0x5ae3,5}, {0x2d140,3}, {0xc508,10}, + {0x1ee29,8}, {0xf657,2}, {0x2550b,6}, {0xd34e,11}, {0x1ebf9,8}, {0x8bae,12}, {0x16ac0,9}, {0x25cb1,6}, + {0x19f24,6}, {0xf002,11}, {0x1ca4d,8}, {0x16a4,6}, {0x2d45d,3}, {0x51ab,9}, {0xba29,11}, {0x31a0,8}, + {0x2859c,3}, {0x3d08,14}, {0x1eb89,8}, {0x2c16,6}, {0x18b4d,9}, {0xa696,12}, {0x195f4,9}, {0x15ab8,6}, + {0x4341,5}, {0x1f6e9,8}, {0x20bcb,5}, {0x25455,6}, {0x2232b,7}, {0x8fed,3}, {0x18ff,15}, {0x1ad1a,7}, + {0x12abe,7}, {0x2077f,6}, {0x8746,12}, {0x29fb5,3}, {0xb2c5,11}, {0x25235,10}, {0x2b597,3}, {0x1b0c9,5}, + {0x9384,10}, {0x19c87,9}, {0xf7b5,11}, {0x2b53d,4}, {0x2d919,4}, {0x1cf63,5}, {0x32e3,7}, {0x7276,12}, + {0x2396c,7}, {0x48fe,9}, {0x16aa5,9}, {0x201c1,8}, {0x1b127,5}, {0x5bc8,5}, {0xfc8d,8}, {0x295f8,5}, + {0x1c095,8}, {0xcd2,3}, {0x1646c,8}, {0x24faf,6}, {0x19f62,7}, {0x5fa9,3}, {0x244e9,12}, {0x2a9cd,5}, + {0x1bcdd,8}, {0x100ba,10}, {0x28f82,3}, {0x20e3e,5}, {0x25159,3}, {0x234e0,7}, {0x258e5,6}, {0x1482a,8}, + {0x1b707,4}, {0x422e,14}, {0x2d8a9,4}, {0x2a508,5}, {0x1d647,8}, {0x2054b,6}, {0x2a95a,4}, {0x9e4c,7}, + {0x61e0,13}, {0x2125a,7}, {0x265b,15}, {0x2a57b,5}, {0x1aef5,7}, {0x46e0,7}, {0x1e117,6}, {0xcbc,3}, + {0xf92d,8}, {0x27061,6}, {0x217f9,7}, {0x19f1a,4}, {0xf277,2}, {0x281c8,5}, {0x11a54,10}, {0x154f0,8}, + {0x12152,10}, {0x13318,10}, {0x2871b,8}, {0x14184,10}, {0x25433,4}, {0x107a6,10}, {0x2b90,3}, {0x1435a,5}, + {0x8f80,3}, {0x1a4ba,7}, {0x25e43,6}, {0x1e155,8}, {0x10884,10}, {0x17cec,9}, {0x1a16a,9}, {0x151f0,7}, + {0xd133,11}, {0x10c8a,10}, {0xd7a5,9}, {0x77ce,12}, {0x155cc,6}, {0x1ad69,9}, {0xb165,6}, {0x2a27b,3}, + {0x29f3b,5}, {0x2d335,3}, {0x20b7c,5}, {0x2d0f8,3}, {0x7a62,12}, {0xb453,9}, {0x287c4,5}, {0x3170,7}, + {0x10306,4}, {0x11e0a,9}, {0x2c3bc,4}, {0xae22,12}, {0x18c64,9}, {0x1e557,6}, {0x4348,5}, {0x26063,6}, + {0x1bc07,6}, {0xd548,11}, {0x16e10,9}, {0x1460c,10}, {0x9772,12}, {0xa92a,12}, {0x1fb69,8}, {0x22a60,7}, + {0x2046b,6}, {0x2da77,2}, {0x29ac,9}, {0x20e54,4}, {0xe2bd,7}, {0xa98a,12}, {0x202a1,6}, {0x282c,10}, + {0x2daca,2}, {0x14f5e,6}, {0xbf0f,11}, {0x1e09d,8}, {0x1ee11,6}, {0x1f751,8}, {0x1bb45,8}, {0x1488c,10}, + {0x120da,10}, {0x9b9e,12}, {0x1b0e,3}, {0x7832,4}, {0x19f08,4}, {0x430,26}, {0xb26d,11}, {0xa290,5}, + {0x227f,5}, {0x290d9,5}, {0x228a0,7}, {0xe397,11}, {0x2421e,7}, {0x1ebd1,8}, {0x7bfe,6}, {0x298b5,3}, + {0x2cbea,4}, {0xb81,3}, {0x2d8f5,4}, {0x23f46,7}, {0x29884,5}, {0x2a5fd,5}, {0x14a1c,10}, {0x1b413,8}, + {0x36a2,13}, {0xbb15,4}, {0x27af9,6}, {0xf04f,11}, {0xec45,11}, {0x24fc7,6}, {0x1559a,7}, {0x7617,7}, + {0xf401,8}, {0x30,140}, {0x1b839,14}, {0x2a4c2,5}, {0x25165,6}, {0x2b4d5,4}, {0x4994,3}, {0x2250,15}, + {0x28a93,5}, {0x5e2d,4}, {0x2859f,5}, {0x28ac7,7}, {0x2030b,3}, {0xc052,7}, {0x14b88,7}, {0x729e,8}, + {0x15f87,7}, {0x22f06,7}, {0xf74,17}, {0x28fd0,5}, {0x21206,7}, {0xe85c,11}, {0x1993b,5}, {0x14f14,10}, + {0x7a7a,12}, {0x291fd,5}, {0x2387c,7}, {0x1aaea,9}, {0x199dd,7}, {0x14846,5}, {0x2195,4}, {0x1e1f7,8}, + {0x1c6b5,8}, {0x1afd8,7}, {0x10f46,10}, {0x243fa,5}, {0x221c8,5}, {0x178b2,9}, {0x7132,12}, {0xc20,4}, + {0x189b8,8}, {0x777c,6}, {0x12f08,10}, {0x1859f,5}, {0x21e26,7}, {0x24065,5}, {0x26de5,6}, {0x2c010,2}, + {0xee2,3}, {0x98c4,3}, {0x27375,4}, {0x2b355,4}, {0x5847,10}, {0x25f57,6}, {0x2bd3e,4}, {0x2d482,3}, + {0x19162,9}, {0x186e,3}, {0x1fa63,3}, {0x3272,8}, {0x1b54c,7}, {0x175eb,6}, {0x266b5,6}, {0x2b1c3,4}, + {0x4e2a,12}, {0x14ca8,10}, {0x2b942,6}, {0x2bed2,4}, {0x397a,14}, {0x29ce8,3}, {0x1bbf0,5}, {0x27aed,6}, + {0x25761,6}, {0xa5ff,7}, {0x11f04,9}, {0x881e,12}, {0x1f079,8}, {0x21d38,7}, {0x2d1c1,3}, {0x660e,4}, + {0x1a921,7}, {0x28a82,5}, {0x24639,12}, {0x2a1c7,3}, {0x285c7,5}, {0xbfb4,11}, {0x190ae,9}, {0x1006a,10}, + {0x28f0d,5}, {0x101e8,10}, {0x20259,8}, {0x27b53,6}, {0x11452,8}, {0x79ca,3}, {0x1d21d,8}, {0x1522c,8}, + {0x2caac,6}, {0x28e7c,5}, {0x1c1dd,8}, {0x28254,5}, {0x29834,4}, {0xafd2,7}, {0x18a6f,6}, {0x26acb,6}, + {0x1c04d,8}, {0x19e9a,6}, {0x27a48,3}, {0x43ba,7}, {0x2978f,3}, {0x19c03,6}, {0x275fb,6}, {0x23877,5}, + {0x5a7a,2}, {0xe3bb,7}, {0x2d4e8,3}, {0x18c88,9}, {0x1dd57,6}, {0xdc33,11}, {0x303c,14}, {0x11c66,10}, + {0x2b531,4}, {0x467f,13}, {0x22cab,5}, {0x229f0,7}, {0x86aa,12}, {0x29298,5}, {0xf2b9,2}, {0x2b30f,6}, + {0x81ee,12}, {0x6561,13}, {0x1e76f,8}, {0x7a92,9}, {0x1c37f,6}, {0x272c5,5}, {0x2b9d2,6}, {0x27ae7,6}, + {0x23d0f,7}, {0x250c9,4}, {0xb52d,11}, {0x237b1,7}, {0x30ae,11}, {0x1c840,4}, {0x176a8,9}, {0x28631,3}, + {0x1717b,8}, {0x11874,10}, {0x29d29,3}, {0x45fd,13}, {0x15df2,9}, {0xfa98,11}, {0x2db12,2}, {0xa246,5}, + {0x9ac6,12}, {0x2f78,14}, {0x2c31c,2}, {0x1262a,10}, {0x12f4,8}, {0x2342a,7}, {0x2a276,3}, {0xa7f4,2}, + {0x18ae1,9}, {0x2333e,5}, {0x11a72,10}, {0xb30,17}, {0xa7f4,10}, {0x17202,8}, {0x2ae25,8}, {0x6069,4}, + {0x2ab53,8}, {0x18934,6}, {0x5b1d,7}, {0x151ee,4}, {0x11cca,10}, {0x22cf9,7}, {0x299da,5}, {0x22660,7}, + {0x145ad,5}, {0x7cd2,12}, {0x2856f,2}, {0x1d957,5}, {0x15678,8}, {0x18dfc,4}, {0xa132,10}, {0x151ee,9}, + {0x16745,9}, {0x262e5,6}, {0x28f4e,5}, {0x1d923,4}, {0x21983,4}, {0x26b81,6}, {0x22899,7}, {0x2d6d7,3}, + {0x1d771,6}, {0xcb6d,4}, {0xd58c,6}, {0x2c49a,4}, {0x25dd3,6}, {0x3423,9}, {0x15090,5}, {0xdfa8,6}, + {0xea7c,6}, {0x18967,9}, {0x24771,12}, {0x2a1bd,3}, {0x2b9a2,6}, {0x3bc0,6}, {0x1ef79,7}, {0x2bddc,2}, + {0x1317e,10}, {0x68fc,13}, {0x26bd1,4}, {0x1a6f5,5}, {0x2b882,6}, {0x20cbe,7}, {0x2d5a5,3}, {0x264a3,6}, + {0x4ac3,8}, {0x1e2af,8}, {0xa554,4}, {0x21e73,7}, {0x11370,4}, {0x23232,5}, {0x22e60,5}, {0xb052,4}, + {0x1aae3,7}, {0x2d6ea,3}, {0x16257,9}, {0x27ff,15}, {0x298e5,4}, {0x1a2b,15}, {0x500b,13}, {0xd7dc,7}, + {0x12d64,10}, {0x1f3c1,6}, {0x146c,16}, {0xf42d,11}, {0x225f,15}, {0x26ca9,4}, {0x1d24d,8}, {0x25929,6}, + {0x135f,6}, {0x26dcd,6}, {0x28e59,4}, {0x6c63,5}, {0x2bfb6,4}, {0x201c,5}, {0xa2d9,9}, {0x165f8,9}, + {0x21253,7}, {0xdd3b,10}, {0x25b97,6}, {0x2d638,3}, {0x218d,15}, {0x2bec2,4}, {0x4268,5}, {0x6b13,4}, + {0x26d85,6}, {0x21278,4}, {0x19e40,7}, {0x2d17c,3}, {0x3e14,5}, {0xf823,11}, {0x23b17,6}, {0x286a,3}, + {0x5b78,8}, {0xf802,11}, {0x88ef,7}, {0x22a21,7}, {0x20533,8}, {0x32f1,7}, {0x1a4d7,7}, {0x1509c,4}, + {0x1936c,8}, {0x145be,4}, {0x22df5,6}, {0x257c,5}, {0x22dc,3}, {0x18411,7}, {0x2215d,7}, {0x2c746,6}, + {0x9a5a,12}, {0x23795,7}, {0xc144,7}, {0x2dba6,2}, {0x1f81b,4}, {0x17cb6,9}, {0x2d875,4}, {0x1f829,8}, + {0x1ed49,8}, {0x37ac,14}, {0x2291,5}, {0xb6a3,11}, {0xdba4,11}, {0x2914c,5}, {0x1f909,5}, {0x24c17,6}, + {0x244a1,12}, {0xfe38,7}, {0xf681,11}, {0x3b10,11}, {0x1ef69,7}, {0x16aae,9}, {0x20f4f,7}, {0x216a0,7}, + {0x10c08,10}, {0x2211c,7}, {0x2094c,2}, {0xcc0,4}, {0x2627f,6}, {0x9496,12}, {0x5aa8,12}, {0x6b45,5}, + {0x22abb,9}, {0xba5,8}, {0xd9f9,6}, {0x6aa9,8}, {0x2da61,2}, {0x26a11,6}, {0x2bc4a,4}, {0xabee,12}, + {0x21d70,7}, {0xe80f,11}, {0x2a30f,5}, {0x833e,12}, {0x2bb9a,4}, {0x1c120,5}, {0x1d90f,6}, {0x17108,4}, + {0xe3fa,8}, {0x3f40,4}, {0xee6b,11}, {0xbfca,11}, {0x377b,6}, {0x2c5c0,6}, {0x2a512,5}, {0x16c79,9}, + {0x258ab,3}, {0x2d0a7,3}, {0x174e,6}, {0x1fca1,8}, {0x2c3b6,4}, {0x29ba,14}, {0x1aee3,9}, {0x1a002,9}, + {0x1a185,9}, {0x2b597,4}, {0x201c3,6}, {0x2521a,6}, {0xc592,5}, {0x148b4,10}, {0x2b4ed,4}, {0x2ba4,14}, + {0xae84,6}, {0xf369,5}, {0x18ca3,5}, {0x12b20,10}, {0x1146e,10}, {0xdb2f,7}, {0x2be3,7}, {0xb720,7}, + {0x1a4de,6}, {0x6dd4,8}, {0x5ce6,7}, {0x8cb6,12}, {0x232ab,5}, {0x77c6,5}, {0x2c4c4,6}, {0x2dad2,2}, + {0xee4c,6}, {0x9aba,8}, {0x71b6,11}, {0xbac,3}, {0xa13,12}, {0x2b98a,6}, {0x1a592,9}, {0x218d2,7}, + {0xea09,7}, {0x26877,6}, {0x1d3cd,8}, {0x11aea,10}, {0x23f72,5}, {0x161d5,4}, {0x1bca5,8}, {0x26df7,6}, + {0x1f6d1,8}, {0x6873,7}, {0x2a3d2,5}, {0x1f253,6}, {0x2c48e,6}, {0x27379,6}, {0x2a1db,3}, {0x3a42,5}, + {0x290de,5}, {0x14958,5}, {0x1916b,9}, {0x1386,5}, {0x21a6c,4}, {0x68cd,8}, {0xd204,11}, {0x6c49,13}, + {0x1a9f7,9}, {0x2b906,6}, {0x234d9,6}, {0x8a2e,12}, {0x2c4d0,6}, {0x26f71,6}, {0x256fb,6}, {0x2957b,3}, + {0x1abd4,9}, {0x28555,4}, {0x2d7c1,4}, {0x7c5a,8}, {0xf639,4}, {0x15c4,8}, {0x25699,8}, {0x2403d,4}, + {0xaa86,12}, {0x1c06d,8}, {0x2187,6}, {0x22ddb,3}, {0x29588,5}, {0x2bfee,4}, {0xe8e0,8}, {0x6491,8}, + {0x22f47,3}, {0x1c665,8}, {0x1f509,8}, {0x9961,5}, {0x2db40,2}, {0x12e92,8}, {0x12f08,6}, {0x2a53a,5}, + {0x6547,12}, {0x1876f,9}, {0x6b88,8}, {0xd041,7}, {0xb64b,11}, {0x2c782,4}, {0x2d434,3}, {0x14b81,5}, + {0x29e7f,2}, {0x26ed5,6}, {0x1c825,6}, {0xdeb1,11}, {0x840c,7}, {0x25941,6}, {0xfed2,10}, {0x441c,4}, + {0x26fdd,6}, {0x25bb7,4}, {0x2d257,3}, {0x1069,2}, {0x1bde8,4}, {0x292e3,5}, {0x7b9a,12}, {0x23c0f,4}, + {0x1beed,8}, {0x17f23,7}, {0x29e87,5}, {0x28067,5}, {0x254db,5}, {0x285f4,5}, {0x2a492,3}, {0xac2a,12}, + {0x28e63,5}, {0xf35c,5}, {0x2b95a,6}, {0x22002,7}, {0x12274,10}, {0x51df,7}, {0xac80,6}, {0x1e20f,6}, + {0x1ace4,7}, {0x1c79d,8}, {0x20b18,13}, {0x28330,5}, {0x31ca,4}, {0x13c8e,10}, {0x1c175,8}, {0x2d572,2}, + {0xc2e,4}, {0x8caa,11}, {0x1ae26,9}, {0x1d41d,8}, {0x200eb,5}, {0x14da2,10}, {0xf5d3,9}, {0x16706,9}, + {0x1a9ee,9}, {0x11486,6}, {0x19ea3,9}, {0x432,31}, {0x899e,12}, {0x17b67,9}, {0x1274c,10}, {0x1f6d9,8}, + {0x130f2,10}, {0x2224b,7}, {0x16ca8,9}, {0x286bb,6}, {0x5d75,13}, {0x177b8,7}, {0x234e9,4}, {0x20868,5}, + {0x2c758,4}, {0x17bbd,4}, {0x1be8d,8}, {0x58e1,7}, {0x1de35,7}, {0x73d2,12}, {0x1321e,10}, {0x2016,10}, + {0x1087e,4}, {0xf5f9,4}, {0x244e3,6}, {0x2d698,3}, {0x17ae9,9}, {0x23d9b,7}, {0x29c96,5}, {0x19792,9}, + {0xf403,6}, {0x1ae46,4}, {0x221e2,7}, {0x7312,12}, {0x101fc,10}, {0x27da9,10}, {0x1ea4f,5}, {0x28030,5}, + {0xcc58,8}, {0x7936,12}, {0x167b1,9}, {0x138b0,10}, {0x60f6,13}, {0x29f5b,3}, {0x283cb,5}, {0x268f1,6}, + {0x19afd,7}, {0x26051,6}, {0x2727d,6}, {0x28f30,5}, {0x2d119,3}, {0x243d7,7}, {0x27c81,4}, {0x23c93,5}, + {0x1837f,9}, {0x19fde,6}, {0x298e7,2}, {0x25c63,6}, {0x4106,6}, {0x2c9a4,6}, {0x2ca9a,6}, {0xb6e,4}, + {0x2b5bc,3}, {0x4735,13}, {0x19bb1,7}, {0xffeb,7}, {0xc5de,6}, {0x2266e,7}, {0x27c4c,3}, {0x2b2f3,4}, + {0x9b0e,12}, {0xc15a,7}, {0xc746,11}, {0x16999,4}, {0x2190a,7}, {0xe851,11}, {0x10df,4}, {0x1209e,10}, + {0x52fd,12}, {0x29733,5}, {0x2d635,3}, {0x2d054,3}, {0xe89e,7}, {0x55d0,5}, {0xc0c2,4}, {0x287a5,6}, + {0x1a4a1,7}, {0x2a5a3,5}, {0x3ec8,14}, {0x2ab63,8}, {0x112c0,10}, {0x19ab5,7}, {0x1b081,9}, {0x195a3,9}, + {0xaee7,7}, {0x2d201,2}, {0x146f,3}, {0x1a4ba,5}, {0x1ae4a,9}, {0x10d2d,5}, {0x24dfb,8}, {0x297b0,5}, + {0xe9b1,11}, {0x2957e,5}, {0x2a279,5}, {0x26f9b,6}, {0xf5fd,11}, {0x7162,12}, {0x2b339,4}, {0x2db20,2}, + {0x148be,10}, {0x2111f,7}, {0x2a2c6,3}, {0x11054,5}, {0x26e69,6}, {0x2329b,7}, {0x27e55,5}, {0x4db5,13}, + {0x267b3,3}, {0x25c51,6}, {0x91c1,5}, {0x19bc3,4}, {0x227f6,5}, {0x2aa43,8}, {0x27211,6}, {0x3006,7}, + {0x769c,6}, {0x25c45,6}, {0xaaa0,10}, {0x201b3,6}, {0x2a4f9,5}, {0x4274,14}, {0x20f56,7}, {0x22bd0,7}, + {0xc958,9}, {0xfba4,11}, {0xc7f,10}, {0x721d,5}, {0x1efa3,6}, {0x1efab,6}, {0x27f4a,5}, {0xb84,3}, + {0x13934,8}, {0x16ecd,9}, {0x21078,5}, {0x1ba5d,8}, {0x24073,7}, {0xba34,11}, {0x27067,6}, {0x24859,8}, + {0x2061a,7}, {0x180e5,7}, {0x1aa5,11}, {0xf487,3}, {0x296d9,5}, {0x23056,7}, {0x287b3,8}, {0x264c,5}, + {0x2b319,4}, {0x8866,12}, {0x160f8,9}, {0x258a9,6}, {0x512e,8}, {0x14618,3}, {0x3782,7}, {0x145e4,10}, + {0x2b415,4}, {0x861f,7}, {0x19270,9}, {0x16a4,3}, {0xba29,6}, {0x1fa8b,6}, {0x27ddf,7}, {0x1826a,6}, + {0x16a32,5}, {0x10d02,10}, {0x2a1a4,3}, {0x2c8d8,4}, {0xb650,6}, {0x2167d,7}, {0x19d20,9}, {0x24a11,8}, + {0x101ca,10}, {0x106a4,3}, {0x17e78,8}, {0x1b3fb,8}, {0x2564b,6}, {0x6ed5,11}, {0x2ae45,5}, {0x27b47,6}, + {0x2a168,3}, {0x11856,10}, {0x93d6,12}, {0x1c585,8}, {0x2b6d6,7}, {0xef9f,11}, {0x2be84,2}, {0x275a9,4}, + {0xaaf7,2}, {0x16ef1,6}, {0x2236a,7}, {0xba57,9}, {0x26219,6}, {0x1b8ef,14}, {0x2bf3c,2}, {0x20a1c,4}, + {0xf80d,11}, {0x2c50c,6}, {0xe49,3}, {0x3eca,12}, {0x65af,13}, {0x10a6,17}, {0x2db08,2}, {0x27097,5}, + {0xfb86,8}, {0x11af4,10}, {0x29579,4}, {0x1611c,9}, {0x1ffd1,8}, {0x1dd75,8}, {0x16dd1,9}, {0x29ccd,5}, + {0x1c380,5}, {0x2667f,6}, {0x29469,5}, {0x1ac1e,7}, {0x2d413,3}, {0x22429,7}, {0x24abf,6}, {0x1c097,6}, + {0x1a600,7}, {0x8302,12}, {0x1de8d,8}, {0x2fcc,14}, {0xe582,3}, {0x21bcc,7}, {0x28ee0,4}, {0x1bde,10}, + {0x29a13,3}, {0x14c58,7}, {0x1e83f,8}, {0x23f9a,7}, {0x11814,6}, {0x19633,6}, {0x2d0ef,3}, {0x1ac30,7}, + {0xae78,9}, {0x1c56d,8}, {0x22d3f,7}, {0xb45c,9}, {0x21dcb,7}, {0x1fbeb,6}, {0x15d02,6}, {0xc6a1,11}, + {0xd624,11}, {0x187d2,9}, {0x1a7f9,6}, {0x2d7e5,4}, {0x2054d,3}, {0x2c818,6}, {0x2632d,6}, {0x15ac,16}, + {0x29d8d,4}, {0x21c3c,7}, {0x23c60,7}, {0x1f919,8}, {0x15eee,9}, {0x1caf7,5}, {0x2d034,3}, {0x55d7,11}, + {0x3b1e,14}, {0x23d47,7}, {0x2c9b0,6}, {0xd624,10}, {0x3e12,14}, {0x27be0,3}, {0x29c7f,3}, {0x2a217,3}, + {0xae52,12}, {0xb1d3,11}, {0x8a52,12}, {0xae8,3}, {0x276d3,6}, {0x19733,5}, {0x1d265,8}, {0x9c76,12}, + {0x1a134,9}, {0x26957,6}, {0x29dba,5}, {0x2da40,2}, {0x23898,7}, {0x113a6,10}, {0x23ef9,7}, {0x430,258}, + {0x2d18e,3}, {0xab54,3}, {0x15dbc,9}, {0x2d84d,4}, {0x1fed9,5}, {0x2294f,7}, {0x26e81,6}, {0xb727,9}, + {0xde7a,11}, {0x8386,6}, {0x2afd5,4}, {0x12c92,10}, {0x28bf4,5}, {0x22a98,6}, {0x6ffe,12}, {0xfd51,11}, + {0x1b701,4}, {0x2c45e,4}, {0x29a6b,5}, {0xc6d2,6}, {0x1bdbd,8}, {0xd5c7,5}, {0x12c74,10}, {0x29081,3}, + {0x14864,9}, {0x1f8c9,8}, {0x20835,7}, {0x6735,13}, {0x22987,7}, {0x21232,4}, {0x506c,5}, {0x23b33,7}, + {0x1351,11}, {0x294e3,5}, {0x18abd,9}, {0x11ec,16}, {0x14c94,10}, {0x2b8d,7}, {0x1e82f,7}, {0x66cd,6}, + {0x29ec3,5}, {0xf74c,6}, {0x28e0b,3}, {0x2b894,6}, {0x2a90,3}, {0x2ac13,8}, {0x27f72,5}, {0x5d0d,13}, + {0x1e289,6}, {0x12918,10}, {0x7d1a,12}, {0x13eff,5}, {0x3d16,14}, {0x2cf1b,3}, {0x1dc2d,8}, {0x2a5e9,5}, + {0x10d88,5}, {0x1e001,8}, {0x28d6f,5}, {0x26b5,8}, {0x13b82,8}, {0x284b4,5}, {0x19a6d,2}, {0x201e9,4}, + {0x1d85f,8}, {0x23bf3,4}, {0xf825,3}, {0xbcd3,11}, {0x124fe,10}, {0x1c4fd,8}, {0x8a52,6}, {0x19c36,9}, + {0x1aacf,9}, {0x23c3f,4}, {0x343e,10}, {0x2518f,4}, {0x1a3db,3}, {0x2b6dd,7}, {0x1476c,3}, {0x2a4b8,5}, + {0xc177,11}, {0x1654d,6}, {0x170eb,9}, {0xf818,11}, {0x222c2,7}, {0x19380,4}, {0x1f78b,6}, {0x11a36,10}, + {0x2a9ca,3}, {0xddbf,10}, {0x237e4,5}, {0x18607,9}, {0x14c6c,10}, {0x2ab9b,8}, {0x537f,13}, {0x152c,16}, + {0x187ae,9}, {0x17a86,9}, {0x206d2,5}, {0x19218,6}, {0x269d5,6}, {0x25195,6}, {0x19bb,7}, {0x22fae,7}, + {0x2930b,5}, {0x2555f,6}, {0x29912,5}, {0x29e14,5}, {0x97a2,12}, {0x1fc89,8}, {0x11072,10}, {0x7590,6}, + {0x14e6c,4}, {0x2a5b7,5}, {0x110ec,7}, {0x2a5e4,5}, {0x29d79,5}, {0x1089,12}, {0x411a,3}, {0x1d637,7}, + {0x2493d,8}, {0x23c7c,7}, {0x27a65,4}, {0x286db,8}, {0x291ee,5}, {0x1bfe7,6}, {0x2a571,5}, {0x29da1,5}, + {0x253cf,8}, {0x29059,3}, {0x2916f,5}, {0xb0ac,9}, {0x1cebf,6}, {0x235a4,7}, {0xa4c2,7}, {0x10684,10}, + {0xa2a6,12}, {0x1f121,8}, {0x2626f,4}, {0x18469,9}, {0x3314,14}, {0xa111,6}, {0x5213,13}, {0x1f449,6}, + {0x1ad74,7}, {0x17660,9}, {0x5546,13}, {0x1ea17,8}, {0xf10,5}, {0xb592,9}, {0x1a092,9}, {0x4b1e,13}, + {0xa096,12}, {0x264b7,6}, {0x2525d,10}, {0x3448,14}, {0xe062,7}, {0x3e06,4}, {0x1b385,8}, {0x2b677,4}, + {0x2825e,5}, {0x1868e,9}, {0x2a31e,5}, {0x25855,8}, {0xf0c1,4}, {0x1a2d,4}, {0xcaf8,11}, {0xd866,4}, + {0x2d2c6,3}, {0x1f8d9,8}, {0x102ec,10}, {0x1dfc7,8}, {0x48bb,13}, {0x20a2c,5}, {0x240ea,7}, {0x2a481,5}, + {0x2787,15}, {0x23263,7}, {0x4bdc,5}, {0x269f9,5}, {0x23bb8,5}, {0x30bc,5}, {0x20cd5,5}, {0xeb1f,3}, + {0x166a3,6}, {0x4286,10}, {0x1b473,8}, {0x259f5,6}, {0x504c,13}, {0x2c29a,4}, {0x4da0,3}, {0x3d6a,14}, + {0x23ad1,7}, {0xa792,12}, {0x2c5e4,6}, {0x2ccb0,6}, {0x3b16,8}, {0x2a4bd,5}, {0xfd04,11}, {0xa2c3,7}, + {0x16ee1,5}, {0x2cd3a,6}, {0x1258e,5}, {0x24ad1,6}, {0x2c0e8,2}, {0x6769,7}, {0x2b49,7}, {0x15cdd,7}, + {0x207f6,6}, {0x22bde,6}, {0xae0d,5}, {0x2daf8,2}, {0x2d07e,5}, {0x1ad0f,9}, {0x2bea2,4}, {0x2d629,3}, + {0xc1e,3}, {0x2ce96,5}, {0x1fa13,6}, {0x15743,5}, {0xeab0,5}, {0x20edf,7}, {0x1c595,8}, {0x2b43d,4}, + {0x59a4,5}, {0x19d32,9}, {0x27c01,6}, {0x2c92,14}, {0x17338,4}, {0x6dd1,3}, {0x273c7,5}, {0x2a2fd,3}, + {0x2660d,6}, {0x1450b,4}, {0xc7a2,4}, {0x6c97,13}, {0x7dc2,12}, {0x3406,5}, {0x4520,8}, {0x26e63,4}, + {0x7c4,25}, {0x20abd,7}, {0x1a43c,9}, {0x53f4,13}, {0x1698e,6}, {0x183e2,6}, {0x24fc9,2}, {0xb6c,9}, + {0x1ef41,8}, {0xf43,8}, {0x210c4,7}, {0x1dacf,3}, {0x1b613,4}, {0x2c890,4}, {0x2c3b0,4}, {0xf8f6,4}, + {0x1d3b9,4}, {0x2b5a7,4}, {0x6d77,2}, {0x25a85,6}, {0x908e,12}, {0xb30,3}, {0x24a8,12}, {0x251bf,6}, + {0x2436e,7}, {0x14e92,10}, {0x2daaf,2}, {0x8280,7}, {0x275a,10}, {0x1ca87,4}, {0x2a44f,5}, {0xaf62,3}, + {0x7287,7}, {0x27e4b,5}, {0x13038,6}, {0xa8fe,5}, {0x20189,8}, {0x1c82d,6}, {0x40b2,14}, {0x25a79,6}, + {0x19faa,7}, {0x1b87f,14}, {0x1d757,8}, {0x204cb,8}, {0x257a,10}, {0x1d7cf,8}, {0xef47,11}, {0x24f4f,6}, + {0x1e6e9,6}, {0x2a14f,3}, {0x1a71a,4}, {0x24f67,6}, {0x260e5,6}, {0x28373,3}, {0x2941e,5}, {0xc5df,5}, + {0x132c,16}, {0x2b98c,4}, {0x26775,6}, {0x7486,12}, {0x1cf99,8}, {0xa486,12}, {0x23caf,3}, {0x430,27}, + {0x2857c,5}, {0xfb32,11}, {0x290ed,5}, {0x1518a,7}, {0x22941,7}, {0x95aa,12}, {0x14d0c,6}, {0x1b807,8}, + {0x1c0dd,8}, {0x1cf4,7}, {0x1ef59,8}, {0xeb27,10}, {0x2b1e7,6}, {0x771a,12}, {0x27441,3}, {0x1096f,4}, + {0x2b619,3}, {0x17c14,9}, {0x2cf45,3}, {0x430,29}, {0x1894c,9}, {0x14c76,10}, {0x26d7f,6}, {0xabfa,12}, + {0x297b5,4}, {0x4070,6}, {0x1031e,10}, {0x103fc,3}, {0x21f76,7}, {0x27fa9,4}, {0x5a8e,9}, {0x20aa8,7}, + {0xac80,4}, {0x298c7,5}, {0x1a56e,6}, {0x25553,6}, {0x24291,4}, {0x22aa6,7}, {0x195b1,4}, {0x19294,9}, + {0x29be4,3}, {0x2d560,3}, {0x151ee,5}, {0x1beb8,4}, {0x217a5,7}, {0x8f02,12}, {0x2d7a5,4}, {0x16c43,9}, + {0x172d1,6}, {0xf215,8}, {0xa8ea,4}, {0x2b6fc,4}, {0x24cff,6}, {0x2b9ba,6}, {0x2066e,7}, {0x32c5,4}, + {0x145d0,10}, {0x24408,7}, {0xfc07,6}, {0x1cc2f,6}, {0x7846,12}, {0x2bcf6,4}, {0x1fbc1,6}, {0x2cf06,3}, + {0x22aee,7}, {0x29112,3}, {0xbb5f,6}, {0x5671,13}, {0x27889,6}, {0x1cb9d,8}, {0xa9ae,12}, {0x1060c,8}, + {0xa17,8}, {0x17930,9}, {0x7134,4}, {0x786a,12}, {0x29347,5}, {0x1a4aa,6}, {0x1b404,7}, {0x26cd3,4}, + {0x1a4d5,9}, {0x171d9,2}, {0x2da51,2}, {0x243bb,7}, {0x753a,5}, {0x27bcb,6}, {0x244ad,4}, {0x1cf0d,8}, + {0x12d82,8}, {0x1ad18,9}, {0x26c89,6}, {0x6665,13}, {0x27a1d,4}, {0x1e9f1,6}, {0x1db3d,4}, {0x277bd,6}, + {0x89c2,12}, {0x691c,7}, {0xbcfb,4}, {0x2a2a3,3}, {0x1ca65,8}, {0x1ae2,4}, {0x13282,10}, {0x1efe9,5}, + {0x1cf91,8}, {0x5741,13}, {0x15c4e,3}, {0x7102,12}, {0x18889,6}, {0x2067,6}, {0x25141,6}, {0x2bfd6,4}, + {0xa7a0,8}, {0x26ef9,6}, {0x1dcf5,7}, {0x179db,9}, {0x2977,9}, {0xaad,48}, {0xe922,11}, {0x29b1f,5}, + {0x1e6f9,6}, {0x7774,4}, {0x26823,6}, {0x128aa,10}, {0x17765,9}, {0x6489,4}, {0x28b73,4}, {0x1ab9e,9}, + {0x2691d,4}, {0x154d2,10}, {0x2d4eb,3}, {0x2a337,5}, {0x283d5,5}, {0xce52,11}, {0xd61d,7}, {0x260d8,5}, + {0xefe1,11}, {0x26699,4}, {0x1f343,6}, {0x29ae0,3}, {0x312d,3}, {0x2b74b,3}, {0xfc8b,11}, {0x2916c,3}, + {0x24e81,6}, {0x20303,6}, {0x165e6,8}, {0x10884,5}, {0x1e7b7,8}, {0xa14a,12}, {0x4cd0,8}, {0x2a5bc,5}, + {0x12ac6,10}, {0x285c4,3}, {0x2a5ee,5}, {0x209f9,7}, {0x2c206,4}, {0x1cc75,8}, {0x2615d,5}, {0xf839,11}, + {0x10a8c,10}, {0x2db63,2}, {0x1272e,10}, {0x27415,6}, {0x6e12,9}, {0x20473,6}, {0x5fd8,13}, {0x2dabc,2}, + {0x2406c,7}, {0x38fc,14}, {0x238f3,7}, {0x2868d,4}, {0x23f9c,5}, {0x12eea,10}, {0x179c9,5}, {0x26b39,6}, + {0x29423,5}, {0xb887,11}, {0x1b811,12}, {0x2798,3}, {0x1b75,5}, {0x23b10,7}, {0xabca,12}, {0x29054,3}, + {0x11491,2}, {0x24bff,6}, {0xdcb,17}, {0x17d97,9}, {0x1d069,4}, {0xfcda,3}, {0x227a2,7}, {0x97f6,9}, + {0x15150,8}, {0x17186,6}, {0x9c8e,8}, {0x289cb,5}, {0x2a5ad,5}, {0x2d135,2}, {0xcc7,11}, {0x21f37,7}, + {0x1f4d1,8}, {0x19cc6,9}, {0x15e79,6}, {0x275a,15}, {0x19c2,15}, {0xb795,6}, {0xcda6,4}, {0x1feb1,8}, + {0x5fb1,13}, {0x27775,6}, {0x1fb3b,3}, {0xf662,5}, {0x9843,7}, {0x20249,8}, {0x52bc,10}, {0x9131,5}, + {0x232fd,7}, {0x27aff,6}, {0x2af2d,4}, {0x14ac6,7}, {0x2106,7}, {0x20dd3,7}, {0x2559b,6}, {0x63d4,7}, + {0x20820,7}, {0x17202,6}, {0x9cb9,5}, {0x17e4b,9}, {0x246e1,12}, {0x16fc,16}, {0x1ccad,8}, {0x2454f,6}, + {0x21067,7}, {0x1c93a,3}, {0x2c72e,6}, {0x1ceb5,8}, {0x9d50,10}, {0x2a091,3}, {0x2a16d,3}, {0x35a6,14}, + {0x19f41,4}, {0x134b4,10}, {0x148fa,10}, {0x18b4,15}, {0x3c7e,8}, {0x1a09b,9}, {0x13d56,10}, {0x25325,10}, + {0xfd0f,11}, {0x22f39,5}, {0x4292,12}, {0x1ddd5,8}, {0x2b18d,4}, {0x223ea,7}, {0x1ade7,9}, {0x2db8a,2}, + {0x2a343,3}, {0x10977,6}, {0x2752f,6}, {0xf4f5,9}, {0x27e50,5}, {0x12686,8}, {0x2d686,3}, {0x243c9,7}, + {0x1c48d,8}, {0x26bdd,4}, {0x36be,13}, {0x15ae,4}, {0x8c4,28}, {0xbd0a,10}, {0x23e90,7}, {0x1cdbd,8}, + {0x217ac,7}, {0x1fb89,5}, {0x9e04,10}, {0x21b86,7}, {0x11bfa,8}, {0x1d5a5,8}, {0xae9a,4}, {0x20c5c,6}, + {0x1ae41,9}, {0x1215c,10}, {0x1827a,9}, {0x46bb,4}, {0x14788,10}, {0x2bbc6,4}, {0x61a1,3}, {0x112fc,10}, + {0x69bf,13}, {0x460c,5}, {0x2419b,5}, {0x25bd3,6}, {0x13770,10}, {0x14990,10}, {0x2aef5,4}, {0x2dafe,2}, + {0x2a503,5}, {0x1b054,9}, {0x26bed,6}, {0x27559,6}, {0x1a8f2,9}, {0x1f3d1,5}, {0xd931,11}, {0x1af07,5}, + {0xc2ce,8}, {0x17d0b,5}, {0x125c,5}, {0x2ac63,8}, {0x31b6,10}, {0x16269,9}, {0x4ea6,3}, {0x7c4,48}, + {0x20021,6}, {0xfc5f,11}, {0x24501,12}, {0x7751,5}, {0x2af5d,4}, {0x9a9,6}, {0x1edd9,8}, {0x2515b,4}, + {0x1bdd7,5}, {0x220b,9}, {0x2d107,3}, {0x2b129,4}, {0x15926,9}, {0x2aed0,2}, {0x1d17d,8}, {0x29f47,3}, + {0x7950,3}, {0x198bb,6}, {0x1a6bb,9}, {0x6303,4}, {0x1b1c7,16}, {0xc0d2,11}, {0x27897,4}, {0x28aa7,5}, + {0x1b483,8}, {0xa846,12}, {0x2409d,7}, {0x13716,10}, {0x2d28d,3}, {0x1d5e5,8}, {0x128c8,10}, {0x2a878,5}, + {0x977e,12}, {0x17f9a,7}, {0x267c3,6}, {0x2a9aa,5}, {0x28ba7,5}, {0x7022,12}, {0x25e8b,6}, {0x181a2,9}, + {0xec7c,8}, {0x2d765,4}, {0x1e125,8}, {0x2d751,4}, {0x2bd0c,2}, {0x1d8a7,8}, {0x1566c,10}, {0x24aef,6}, + {0x8d8e,7}, {0x1c2ef,6}, {0x1b285,8}, {0x28d1f,5}, {0x2633,3}, {0x2d1eb,3}, {0x4266,14}, {0xa7fe,5}, + {0x1aa24,9}, {0x1d43d,8}, {0x23f2a,7}, {0x186e8,9}, {0x82a2,8}, {0x3552,10}, {0x25b55,5}, {0x73c6,12}, + {0x13b78,7}, {0x1d837,8}, {0x15b42,6}, {0x17753,9}, {0x1497c,6}, {0x15e8b,8}, {0xd5c,6}, {0x42f2,14}, + {0x1de1d,8}, {0x28705,4}, {0x1fd93,6}, {0x13bd0,10}, {0x1d9b7,8}, {0xc392,11}, {0x2d155,3}, {0x53c6,5}, + {0x228d8,7}, {0xfc49,11}, {0xa7d,48}, {0xf296,11}, {0x23aa0,5}, {0x12a5,4}, {0x29379,5}, {0x1986,15}, + {0x2b842,4}, {0x903a,11}, {0xf7d6,11}, {0x52f2,5}, {0x8032,12}, {0x2d6f2,2}, {0x1e70f,8}, {0x22291,7}, + {0x19495,9}, {0x1d41f,6}, {0x3b9c,14}, {0x1ab05,5}, {0x24765,12}, {0x2617b,6}, {0x136f8,10}, {0x230e9,5}, + {0x2d3b0,3}, {0xf1c5,11}, {0x152b9,4}, {0x1f391,8}, {0x245fd,12}, {0xb9b0,5}, {0x25411,2}, {0x7fea,12}, + {0x17ffb,9}, {0x12c24,10}, {0x29496,5}, {0x28deb,5}, {0x5c9a,9}, {0x26db5,6}, {0x23d39,7}, {0x26fa7,6}, + {0xe55c,9}, {0x17ce7,5}, {0xd112,11}, {0x1d7bf,8}, {0x35d6,6}, {0x2a4a4,5}, {0x1a67c,9}, {0x243d0,7}, + {0x753f,3}, {0x34e2,14}, {0xe2dc,11}, {0x8f81,5}, {0x21c0b,7}, {0x23c4b,7}, {0x215b9,7}, {0x16477,6}, + {0x2a4e0,5}, {0x102ba,10}, {0xc5fa,13}, {0x264ff,6}, {0x6ba0,12}, {0x6b93,13}, {0x27d5d,10}, {0x29d53,3}, + {0x2cc56,6}, {0x217eb,7}, {0x1fe21,8}, {0x26321,6}, {0x29caf,5}, {0xa8e7,7}, {0x14f1e,10}, {0x228e8,5}, + {0x9e7a,12}, {0x29c46,5}, {0xa306,12}, {0x357c,6}, {0x11202,10}, {0x118d8,10}, {0x4be3,11}, {0xf5eb,4}, + {0x21ade,7}, {0x4f30,9}, {0x89f2,6}, {0xd8d0,6}, {0x152a2,10}, {0x266c7,6}, {0xd947,11}, {0x137ca,10}, + {0xa40e,12}, {0xacc6,12}, {0x2b57c,3}, {0x29f9,7}, {0x4a27,13}, {0x2d6e6,3}, {0x2c25a,4}, {0x2358b,4}, + {0x250db,6}, {0x17bcc,9}, {0x148eb,5}, {0xdc22,6}, {0x2d02,14}, {0x7c4,9}, {0x2a4ea,5}, {0x1a3fd,9}, + {0xd7c9,5}, {0x52f0,13}, {0x5344,5}, {0x206a6,7}, {0x26201,6}, {0x32b9,3}, {0x19b94,9}, {0x24969,12}, + {0x265bf,6}, {0x25d3b,4}, {0x26e57,6}, {0x1b903,8}, {0x26b09,6}, {0xfed0,20}, {0x210cb,7}, {0x4923,6}, + {0x27091,6}, {0xb4b4,11}, {0x4ec6,13}, {0x27013,6}, {0x2d55d,3}, {0x2ad7b,8}, {0x28b18,5}, {0xd93e,7}, + {0x1fab9,8}, {0x2cda6,6}, {0x68ef,13}, {0x2960c,5}, {0xf8e0,3}, {0x2db7c,2}, {0x18697,9}, {0x14596,4}, + {0x2a30a,5}, {0xf0b4,3}, {0x28d88,4}, {0x9e9,20}, {0x1cc80,4}, {0xb0cb,11}, {0x23389,7}, {0x2b14d,4}, + {0x23e82,7}, {0x181c,16}, {0x25add,6}, {0x1bd0d,6}, {0x23af6,5}, {0x20129,6}, {0x23de8,7}, {0x15e21,6}, + {0x16c4,8}, {0x1eedb,6}, {0x432,34}, {0x2a4c7,5}, {0x2434b,7}, {0x15678,6}, {0xc654,11}, {0x11086,10}, + {0x66ac,4}, {0xd8a2,11}, {0xef57,6}, {0x443e,3}, {0x1ce85,8}, {0x27877,6}, {0x15ac,8}, {0x196bc,5}, + {0x14bf6,5}, {0x10580,10}, {0x600c,13}, {0x2fa2,14}, {0x26d07,6}, {0xbe54,11}, {0x29270,5}, {0x11d59,5}, + {0xdc75,11}, {0x2c4ca,6}, {0x2a3e6,5}, {0x23adf,7}, {0x20269,8}, {0x198a3,4}, {0x14bae,10}, {0x1d91f,8}, + {0x29843,5}, {0xab30,10}, {0x264e,4}, {0x1fc39,8}, {0x2b3e1,4}, {0x1c2e,5}, {0x6d89,5}, {0x27b0b,6}, + {0x1076a,10}, {0x1b48,10}, {0x5041,10}, {0x2d491,3}, {0x786a,11}, {0xf741,6}, {0x23aae,7}, {0x849a,12}, + {0x13cc5,5}, {0x2d4d6,3}, {0x23b04,5}, {0x8847,7}, {0x6dc4,3}, {0x251fa,4}, {0x110d6,10}, {0x20b52,7}, + {0x2d3df,3}, {0x1895e,9}, {0x2b966,6}, {0x2d9c1,4}, {0x23105,7}, {0x2fdc,4}, {0x13d24,10}, {0x2a4d1,5}, + {0x22a46,4}, {0x20169,8}, {0x2a2c4,5}, {0x1fbf9,8}, {0x2eae,4}, {0x2af39,4}, {0x1ce27,6}, {0x14bf6,2}, + {0x2ceb4,5}, {0x2c07c,2}, {0x142ce,10}, {0x858a,12}, {0x1c19d,7}, {0x314e,5}, {0xebcc,5}, {0xa86c,10}, + {0x1fd81,8}, {0x113f,13}, {0x1531a,10}, {0xc2f,3}, {0x2d06f,3}, {0x29ff1,3}, {0x154a0,6}, {0x12ee0,10}, + {0x25ed3,6}, {0x270c4,3}, {0x5303,3}, {0x1adce,7}, {0x1fa91,8}, {0x20341,8}, {0x25f45,5}, {0x5267,4}, + {0xb4bf,11}, {0x8f32,12}, {0x259dd,6}, {0x22f9b,5}, {0xd11d,7}, {0x110e2,8}, {0x1d54d,8}, {0x1ad60,6}, + {0x12f12,8}, {0x1a87,3}, {0x2cf4a,3}, {0x202b3,3}, {0x1e2e9,5}, {0x204fb,8}, {0x2cdbe,6}, {0x250f3,4}, + {0x2110a,7}, {0x21eff,6}, {0x1d08d,8}, {0x2b041,4}, {0x2815a,4}, {0x25cc9,6}, {0x432a,9}, {0x10042,10}, + {0x1a9e5,9}, {0x2d865,4}, {0x29cff,5}, {0x169df,9}, {0x13048,8}, {0x21945,3}, {0x1e4a7,6}, {0x945a,12}, + {0x2d137,2}, {0x23286,6}, {0x2a92d,5}, {0xa26a,8}, {0x16a7a,7}, {0x25669,6}, {0x441e,3}, {0x1501f,3}, + {0x8b4e,12}, {0x10d22,8}, {0x1affa,9}, {0x1c1a5,8}, {0x243a8,5}, {0x2b900,6}, {0x12bae,5}, {0x20621,7}, + {0x2cf8c,2}, {0xa8be,12}, {0x7082,3}, {0x4a4e,11}, {0x26407,4}, {0xf3ed,7}, {0xb220,11}, {0x29cdc,5}, + {0x16260,9}, {0x28e5e,5}, {0xf18e,11}, {0x24699,12}, {0x1cd1d,8}, {0x4588,13}, {0x235d5,7}, {0x23e04,7}, + {0x19a35,9}, {0x231bd,5}, {0x1d075,5}, {0x19c00,9}, {0x19d61,7}, {0x28d8d,5}, {0x23493,7}, {0x11cc0,7}, + {0x2b6af,4}, {0x1fff1,8}, {0x1504a,7}, {0x4ce5,13}, {0x29d47,5}, {0x154c8,10}, {0x25583,6}, {0x311c,14}, + {0x2be08,2}, {0x2bcda,4}, {0x2da76,2}, {0x2341c,7}, {0xf070,11}, {0x129e5,5}, {0x1db35,8}, {0x12eb2,6}, + {0xc704,11}, {0x87ca,12}, {0xedb5,6}, {0x785e,6}, {0x1aa00,9}, {0x1c8bd,8}, {0x2830d,5}, {0xaf60,6}, + {0x2bd9e,4}, {0x25069,6}, {0x22708,7}, {0x13cf4,4}, {0xe570,11}, {0x139f2,4}, {0xfce8,6}, {0xa80c,3}, + {0x12759,7}, {0x1cb2d,8}, {0x12332,10}, {0x204bd,6}, {0x6776,13}, {0x10970,3}, {0x22bfa,7}, {0x1930,7}, + {0xbaa2,11}, {0x1c339,4}, {0x169fe,5}, {0x4ddc,10}, {0x2406e,5}, {0x1e5a1,5}, {0x21d93,7}, {0xaa6e,12}, + {0x35b6,10}, {0x2879b,8}, {0x1ac6f,4}, {0x243e7,4}, {0x28fd,2}, {0x23b72,7}, {0x206d7,7}, {0x27e32,5}, + {0x1a326,5}, {0x15a43,9}, {0x2c680,6}, {0xe2f4,8}, {0x2b459,4}, {0x18e1d,9}, {0x18994,9}, {0x21c43,7}, + {0x1b693,8}, {0x2c1f2,4}, {0xec9d,11}, {0x24110,4}, {0x1949e,9}, {0x2a0df,5}, {0x12508,10}, {0x117e8,10}, + {0xeab4,5}, {0xf563,11}, {0x17741,9}, {0xbe84,7}, {0x9960,6}, {0xcccc,5}, {0x115a4,9}, {0x177e,9}, + {0xbd2e,8}, {0x1c73d,8}, {0x1a109,4}, {0x2c782,6}, {0x243ad,7}, {0x8b36,12}, {0x9d4e,12}, {0x1c425,7}, + {0x1b463,6}, {0x2d399,3}, {0x29252,5}, {0x25ad9,4}, {0x26deb,6}, {0xf825,9}, {0x10314,10}, {0x966c,4}, + {0x235f1,7}, {0x9274,6}, {0x298a4,5}, {0x26b8d,6}, {0x2e67,7}, {0x1722f,9}, {0x1643f,9}, {0x2688b,6}, + {0x9baa,12}, {0xf3ca,10}, {0x25439,4}, {0x14a62,6}, {0xa1c5,8}, {0xfebc,8}, {0x14512,10}, {0xf8b4,9}, + {0x9e9,50}, {0x29932,3}, {0x12230,4}, {0x27b11,6}, {0x2c80c,6}, {0x235ce,7}, {0xfd3b,5}, {0xd897,11}, + {0x82f6,6}, {0x13e96,10}, {0x26a05,5}, {0x2d242,3}, {0x2b80a,3}, {0x2ce37,5}, {0xaed,4}, {0x2cfb6,3}, + {0x255ad,6}, {0x195ac,9}, {0x27bd4,3}, {0x29c78,5}, {0x2caee,6}, {0x21926,7}, {0x285d5,3}, {0x1ff51,8}, + {0xc4c6,10}, {0x3fe2,3}, {0x27af3,6}, {0x2ede,14}, {0x6c49,10}, {0x2adfb,6}, {0x16d77,9}, {0x451a,5}, + {0x1bf5d,6}, {0x7df2,12}, {0x18dd9,3}, {0x1222e,10}, {0x2b50d,4}, {0xbcb2,11}, {0x29a34,5}, {0x25891,6}, + {0x7914,9}, {0x2bf6a,4}, {0x1b003,6}, {0x15680,10}, {0x1ef79,8}, {0x796b,5}, {0x5bc0,6}, {0x16409,9}, + {0x247dd,12}, {0x14c14,6}, {0x6144,6}, {0x896e,12}, {0x2cfe6,3}, {0xf844,11}, {0x14d66,6}, {0x2b2b8,3}, + {0x17927,9}, {0x432,35}, {0xef0a,6}, {0x21196,7}, {0x1c83,6}, {0x1add5,9}, {0x1aa5a,9}, {0x23f1c,7}, + {0x58d4,13}, {0xe07,8}, {0x21bab,4}, {0x126d4,7}, {0x17a74,6}, {0x2a212,3}, {0x2cfc2,3}, {0x8cfe,12}, + {0xc6ac,11}, {0x1809f,7}, {0x19c90,9}, {0x26e93,6}, {0x287f3,7}, {0x1373e,10}, {0x10373,5}, {0x2d39c,3}, + {0x27baa,3}, {0x29a5c,5}, {0x5542,4}, {0x152e0,4}, {0x1a837,4}, {0x15eb8,9}, {0xf490,5}, {0x2329e,3}, + {0xa00c,6}, {0x28b5a,5}, {0x1c035,8}, {0x10e24,10}, {0x229a3,7}, {0x11482,10}, {0x23596,7}, {0xefb5,11}, + {0x2a477,5}, {0x285ef,5}, {0x159e0,9}, {0x2ac83,8}, {0x20289,6}, {0x249a5,12}, {0x5cc5,7}, {0x10850,10}, + {0x17088,9}, {0x297dc,3}, {0x532,84}, {0x174e,9}, {0xee13,11}, {0x1c0c5,8}, {0x6d74,13}, {0x1a90f,6}, + {0x532,82}, {0x14841,5}, {0xe2b2,8}, {0x12134,10}, {0x10f50,10}, {0xeb2b,7}, {0x274f9,6}, {0x1d851,5}, + {0x27b62,3}, {0x26bd5,6}, {0x1208d,7}, {0x24370,5}, {0xff0c,12}, {0x2b321,4}, {0x17bf0,9}, {0x26933,6}, + {0x2d7e9,4}, {0x1dce5,8}, {0x2bd04,2}, {0x1036,4}, {0x2d19d,3}, {0x134a0,10}, {0x35c2,14}, {0x12abc,10}, + {0x2cffb,3}, {0x1a472,9}, {0x1dae5,8}, {0x14378,10}, {0x14b72,10}, {0x2314d,5}, {0x288e1,5}, {0xf99b,11}, + {0x1e78f,8}, {0x25c2d,6}, {0xb8b3,11}, {0x1b5d3,4}, {0x5efb,13}, {0x260d5,8}, {0x1d9f4,9}, {0x17810,9}, + {0x23b1e,7}, {0x1de27,6}, {0xfe2d,11}, {0xe7e5,8}, {0x732,6}, {0x2b09f,4}, {0x24202,7}, {0x2810f,5}, + {0x14cda,10}, {0x2c7d,7}, {0x1e05d,8}, {0x963a,12}, {0x2c244,2}, {0x217ba,7}, {0x1c685,7}, {0x2cd52,6}, + {0xd650,11}, {0x29b29,5}, {0x18cf4,9}, {0x12d3e,7}, {0x2d799,4}, {0x2a896,5}, {0x2616f,6}, {0x1d405,8}, + {0x7df2,10}, {0x2a4d6,5}, {0x1d023,8}, {0x20c01,7}, {0x12594,10}, {0x2072,5}, {0x18b07,7}, {0x284a5,5}, + {0xa186,12}, {0x2b6a3,4}, {0x2cf1e,3}, {0x28603,5}, {0x1867,2}, {0x26fb3,6}, {0x20221,8}, {0x64cb,4}, + {0x230eb,5}, {0x6928,8}, {0x981f,7}, {0x2a53f,5}, {0x4d35,7}, {0x29ccf,3}, {0x12a80,10}, {0x2d3fa,3}, + {0x1d767,8}, {0x11ba0,7}, {0x2a023,3}, {0x27651,4}, {0x143a0,10}, {0xe9bc,11}, {0x139f0,10}, {0x2d2a5,3}, + {0x1a67,15}, {0x1cf79,8}, {0xfc98,9}, {0x24b01,6}, {0x21e18,7}, {0x1a648,7}, {0x1f82,4}, {0x148b4,6}, + {0x20927,7}, {0x3da6,3}, {0x2723b,6}, {0x20411,8}, {0x1f003,6}, {0x1cf22,5}, {0x2c1ae,4}, {0x2612,6}, + {0x272e5,4}, {0x20081,8}, {0x2568f,4}, {0x556d,13}, {0x21493,7}, {0x268bb,6}, {0x21310,7}, {0x2dad8,2}, + {0x2db9a,2}, {0xcab,5}, {0x1eed5,4}, {0xb30,20}, {0x1817e,9}, {0x2854e,2}, {0x22933,7}, {0xe053,11}, + {0x147bc,8}, {0x27643,6}, {0x1fe53,5}, {0x10115,3}, {0x1d51d,8}, {0x17ed2,9}, {0x144cc,10}, {0x2a30c,3}, + {0xd2ca,11}, {0x1f9e,15}, {0x11e3,5}, {0x28478,5}, {0xb20e,7}, {0x1341c,10}, {0x1af7c,6}, {0x13a38,4}, + {0x22301,7}, {0x1c3d5,8}, {0x28a73,5}, {0xea03,5}, {0x11ce,9}, {0x230fe,7}, {0x2a58a,5}, {0x1da65,8}, + {0x209c1,3}, {0x1cfe9,8}, {0x2d35e,2}, {0x271c3,6}, {0x657b,13}, {0x10c76,10}, {0x1f503,4}, {0xed69,5}, + {0x7bf6,4}, {0x136bc,10}, {0x16ba1,9}, {0x4831,8}, {0x1e5e7,8}, {0x24f8b,5}, {0x2ce7d,5}, {0x2b448,3}, + {0x19ed0,9}, {0x1968,15}, {0x59f2,13}, {0x204ab,8}, {0x1f583,6}, {0xacea,4}, {0x23cfc,5}, {0xca3d,11}, + {0x1c748,5}, {0x38ee,14}, {0xafc8,3}, {0x1a4a8,5}, {0x2c24e,4}, {0x1a541,8}, {0x15236,8}, {0xe775,11}, + {0x1f74b,6}, {0x2160d,7}, {0x12dbe,10}, {0xe81c,4}, {0x173d8,9}, {0xee3a,5}, {0x2b291,4}, {0x27151,6}, + {0xacb0,10}, {0x26d79,6}, {0x9940,6}, {0x20866,7}, {0x2d7e1,4}, {0x1065c,9}, {0x1aa1b,7}, {0x2b924,6}, + {0x8673,4}, {0x2d009,3}, {0xbace,9}, {0x20191,8}, {0x11f56,8}, {0x1bfd5,7}, {0xdf8d,11}, {0x2d4c1,3}, + {0x21565,7}, {0x1fca9,8}, {0x11560,8}, {0x1f899,8}, {0x22691,7}, {0x1c125,8}, {0x2d68,4}, {0x1951,2}, + {0x27c6f,4}, {0x24c95,6}, {0x2b275,4}, {0x2c632,6}, {0xc9e5,10}, {0x26e09,6}, {0x23f33,5}, {0x282e5,5}, + {0x25773,6}, {0x1fed1,8}, {0x11e3,9}, {0xaa6e,11}, {0x27b9e,3}, {0x21f84,7}, {0x2db38,2}, {0x13a9a,10}, + {0xbab8,11}, {0x2cf36,3}, {0x5c4c,9}, {0x66ef,5}, {0x9c9a,12}, {0x2418d,5}, {0xf2f0,3}, {0xf621,4}, + {0x249f9,6}, {0x27b05,6}, {0x7f66,12}, {0x2a319,5}, {0x4ff8,6}, {0x2db7a,2}, {0x74dc,5}, {0x2b9d8,6}, + {0x12e9a,10}, {0x22a93,5}, {0x1288c,10}, {0x19a86,9}, {0x1a8c5,9}, {0x25c3f,6}, {0x29556,5}, {0x174c2,9}, + {0x29652,4}, {0x4710,11}, {0x80dc,7}, {0x2a4d3,3}, {0x2a355,5}, {0xe07f,10}, {0xb892,11}, {0x1999c,9}, + {0x1f459,8}, {0x23b41,7}, {0x20c63,7}, {0x9256,12}, {0x29110,5}, {0x28e06,3}, {0x2d1d9,3}, {0x6e78,13}, + {0xce6,5}, {0x183b5,9}, {0x2b44d,4}, {0x280ec,5}, {0x185da,9}, {0x26529,6}, {0x291c4,5}, {0x1a8ac,4}, + {0x27b41,6}, {0x1079e,7}, {0x2d230,3}, {0x2d5f3,3}, {0xe3fa,11}, {0x15394,7}, {0x18271,9}, {0x2234e,7}, + {0x2da7f,2}, {0x207b3,4}, {0x2a120,5}, {0x238cb,5}, {0x26a0b,6}, {0x2a3fa,5}, {0x16e97,6}, {0x2ec7,6}, + {0x28a11,5}, {0xa7f2,7}, {0x239a4,7}, {0x2ae71,8}, {0xb3a1,11}, {0x19f60,9}, {0x21028,7}, {0xb453,5}, + {0xc043,11}, {0x2183f,6}, {0x27457,6}, {0x21b24,7}, {0x292a2,5}, {0x2d2e1,3}, {0x68c8,13}, {0xa224,6}, + {0x29935,4}, {0x2a1e0,3}, {0x2043,15}, {0x2b3fb,3}, {0x2a36e,5}, {0x21245,7}, {0xada0,5}, {0x26f85,4}, + {0x20774,4}, {0x21f29,6}, {0xf3d5,6}, {0x10a1e,10}, {0x2a177,3}, {0xd4e9,7}, {0x207da,7}, {0xb67,3}, + {0x6e2a,13}, {0x18175,9}, {0x19ad7,9}, {0x28a16,5}, {0x23ae1,3}, {0xc607,11}, {0x3c44,14}, {0xa80a,12}, + {0x2d4ee,3}, {0x19d6,8}, {0x111a8,10}, {0x4fb2,9}, {0x239cc,2}, {0x2206b,7}, {0x6c63,13}, {0xa95c,9}, + {0x201e9,6}, {0x26145,6}, {0x36a5,3}, {0x250bd,6}, {0x243d9,5}, {0x29703,3}, {0x171ab,6}, {0x4e6b,10}, + {0x2aacb,8}, {0x1afcf,7}, {0x152d4,6}, {0x29542,5}, {0x27eb4,5}, {0x1bc8d,8}, {0x14262,5}, {0x289e1,3}, + {0x1263e,10}, {0x1a94,15}, {0x72d6,12}, {0x1d515,8}, {0x2d122,3}, {0x10900,6}, {0xba99,6}, {0x119c,16}, + {0x1ac52,9}, {0x22bc2,6}, {0xc0c4,3}, {0x142e2,10}, {0x1f789,6}, {0x27859,6}, {0xf05a,11}, {0x67ed,4}, + {0x2b1e3,4}, {0x2241,9}, {0xed16,11}, {0x3800,14}, {0x181fc,9}, {0x2041b,6}, {0x15896,9}, {0x2994,10}, + {0x25c5,15}, {0x1143c,10}, {0x29e3c,5}, {0x2a987,5}, {0x176cc,9}, {0x74fe,12}, {0x1cdb5,8}, {0x1f3d1,8}, + {0x29639,5}, {0x21c04,7}, {0x21653,7}, {0x1072e,8}, {0x12d6e,10}, {0x1d927,8}, {0x20aa1,7}, {0x13cc,16}, + {0x12c88,10}, {0x2850e,5}, {0x1d550,5}, {0x68be,3}, {0x13572,10}, {0x1c4bd,8}, {0x3eca,11}, {0x177fe,9}, + {0x102c4,10}, {0x1251,5}, {0x15248,10}, {0x15aee,9}, {0x242b8,7}, {0x4348,4}, {0x1810d,5}, {0x2b257,4}, + {0x6b97,9}, {0x21ece,7}, {0x1c30d,8}, {0x26681,4}, {0xc822,11}, {0x235ff,7}, {0x26e69,5}, {0x2b6a7,4}, + {0x8aca,9}, {0x2974,14}, {0x2865e,3}, {0x1bc15,8}, {0x2a2ab,5}, {0x26dc7,6}, {0x1ef01,8}, {0x12986,10}, + {0x24023,3}, {0x2305d,7}, {0x13278,6}, {0x28fe9,5}, {0x23eee,4}, {0x209b6,4}, {0x1c11d,8}, {0x17d22,8}, + {0x350c,9}, {0x13156,10}, {0x2bcbe,4}, {0xbb12,3}, {0x20543,8}, {0x21b08,7}, {0x1e61f,8}, {0x2a1ef,3}, + {0x20637,4}, {0x2804f,4}, {0x3abc,14}, {0x2c968,6}, {0xc963,9}, {0xdade,11}, {0x1c241,4}, {0x10c58,10}, + {0x25eeb,6}, {0x18ab4,8}, {0x4220,14}, {0x12cd8,10}, {0x2da5d,2}, {0x2b401,4}, {0x2501b,6}, {0x1a708,4}, + {0x3e4a,6}, {0x2423a,7}, {0x35bb,7}, {0x1a7ed,8}, {0x273ed,4}, {0x2b64c,3}, {0x226bb,7}, {0x10ed,3}, + {0x1bda5,8}, {0x255f,3}, {0x1a1ea,7}, {0x1b593,8}, {0xae76,12}, {0x25959,8}, {0x344c,10}, {0xa3f8,5}, + {0x151d0,5}, {0xce3c,11}, {0x21c9,15}, {0x2c374,6}, {0x2704f,6}, {0x23cbb,5}, {0x234f,15}, {0x2be92,4}, + {0x2a47c,5}, {0x299df,5}, {0x24447,7}, {0x1be45,8}, {0x42a2,10}, {0x28985,3}, {0xf710,5}, {0x1b54b,8}, + {0x156ee,10}, {0x251a1,6}, {0x2d7d9,4}, {0x6a05,3}, {0xf85a,11}, {0x27e06,5}, {0x19b28,9}, {0x9aba,11}, + {0x47eb,9}, {0x28308,5}, {0x295ee,4}, {0x274e1,6}, {0x232a2,7}, {0x183eb,9}, {0x109ba,10}, {0x12fb2,6}, + {0x2be16,4}, {0x1bca7,6}, {0x2befe,4}, {0x70b0,22}, {0x150ae,9}, {0x142e,3}, {0xb2d0,11}, {0x14faa,10}, + {0x2c524,6}, {0xcdad,11}, {0x1404e,10}, {0xc49,5}, {0x196ab,3}, {0xc7bf,11}, {0x2bfaa,4}, {0x22dcb,7}, + {0x1dab5,8}, {0x5f2f,13}, {0x2159d,6}, {0x13cc0,10}, {0x2844,6}, {0x20d7f,7}, {0x66b9,7}, {0x2c60e,6}, + {0x2083c,7}, {0x8692,7}, {0x8f26,12}, {0x2c842,6}, {0x12770,3}, {0x14f60,3}, {0x1aa02,4}, {0x91ea,6}, + {0x1edf1,8}, {0xd675,3}, {0x26d61,6}, {0x187a,13}, {0x12bca,9}, {0x18675,6}, {0x468c,13}, {0x148de,7}, + {0x20141,8}, {0x2907a,5}, {0x2d37a,3}, {0xf55e,5}, {0x23b79,7}, {0x20451,8}, {0x2cb00,6}, {0x13ce8,10}, + {0x200b3,5}, {0xb65,7}, {0x187ed,9}, {0x15c66,6}, {0x2ca5e,6}, {0x2a409,5}, {0x5b20,4}, {0x26631,6}, + {0x262d9,6}, {0x533e,13}, {0x2d9b5,4}, {0x1a3b5,9}, {0x5bfe,9}, {0x29405,5}, {0x14ad2,4}, {0x2687d,8}, + {0x96ca,12}, {0x2531b,10}, {0x77b8,10}, {0x9496,7}, {0x2232,15}, {0x1aa90,6}, {0xf3f8,9}, {0x2b125,4}, + {0x7696,12}, {0x2be02,4}, {0x25f69,6}, {0x2cf33,3}, {0x1ae67,7}, {0xa07,24}, {0x2a2ad,3}, {0x7f19,5}, + {0x104a4,10}, {0x1e0e5,8}, {0x23efb,3}, {0x17cdc,7}, {0x9052,5}, {0x2a23f,3}, {0xf89e,3}, {0x27751,5}, + {0x27a36,3}, {0x15fc,16}, {0x4645,6}, {0x17e27,9}, {0x25657,4}, {0x9804,8}, {0x20aaf,3}, {0x1c445,8}, + {0x1c635,8}, {0xde4e,11}, {0x2b281,4}, {0xa0a2,12}, {0x22e6e,5}, {0x2653b,6}, {0x8662,12}, {0x1a079,4}, + {0x9262,12}, {0x27733,6}, {0x19279,5}, {0x10908,5}, {0x2c446,6}, {0x13124,10}, {0x14954,9}, {0xcc23,8}, + {0x26607,4}, {0x47d1,13}, {0xb0a5,4}, {0x24be1,5}, {0x679d,13}, {0x24d6b,6}, {0x12263,7}, {0x2b85e,6}, + {0x21e50,7}, {0x27e46,5}, {0x4ca8,9}, {0x1f711,8}, {0x2b0b7,4}, {0x2a271,3}, {0xa606,12}, {0x22a4b,6}, + {0xaeca,7}, {0x4558,3}, {0x10914,6}, {0x27b4d,6}, {0x27ba4,3}, {0x598a,13}, {0xa140,10}, {0x26c61,3}, + {0x11900,10}, {0x26b63,6}, {0x1339d,7}, {0x1f28,5}, {0x29e91,5}, {0x372e,14}, {0x19d05,9}, {0x30ca,3}, + {0x15092,3}, {0x2b460,2}, {0x1bfa5,8}, {0x2ace3,8}, {0x1be21,4}, {0x11e3c,10}, {0x15f90,9}, {0x107d8,10}, + {0x16343,9}, {0x27bf2,3}, {0x17513,9}, {0x2795e,3}, {0x9796,12}, {0x18a7,6}, {0xc91f,11}, {0x2d6c8,3}, + {0x2a13e,5}, {0x14dac,10}, {0x28187,5}, {0x28f2d,3}, {0x2852c,5}, {0x1bc7d,8}, {0x13228,10}, {0x201e9,8}, + {0x237f2,5}, {0x29272,3}, {0x528d,8}, {0x178c4,9}, {0x824e,12}, {0xa86a,12}, {0x312a,13}, {0x1f849,8}, + {0x6ac3,13}, {0x15ca5,9}, {0x14ef8,5}, {0x29836,3}, {0xed63,10}, {0x2a20d,3}, {0x1f721,8}, {0x28369,4}, + {0x22d00,4}, {0x26abb,4}, {0xddc4,2}, {0x7654,4}, {0x27331,6}, {0x2b8d0,6}, {0x13342,8}, {0x201e1,8}, + {0x229b,6}, {0x2d22d,3}, {0x2c0fe,4}, {0x148e6,6}, {0x46da,13}, {0x23565,7}, {0x1cee5,8}, {0x1c62d,6}, + {0x16796,9}, {0x2b70b,4}, {0x2d24b,3}, {0x4620,3}, {0x1136d,6}, {0x25ccb,4}, {0xafc6,12}, {0xf348,9}, + {0x2a580,5}, {0x204b5,6}, {0x5c26,4}, {0x2796a,3}, {0x44d4,4}, {0x23e5f,5}, {0x2ab5f,8}, {0x11b1c,10}, + {0x2b7cb,4}, {0x1960f,5}, {0x1a469,6}, {0xb819,11}, {0x2d7b9,4}, {0x205bf,7}, {0x19bc1,7}, {0x188aa,9}, + {0x262eb,6}, {0x2db6d,2}, {0x25529,6}, {0x23a53,7}, {0x2c758,6}, {0x28cee,5}, {0x1f309,5}, {0x3823,7}, + {0x2d392,3}, {0x4887,13}, {0x23b02,6}, {0x2bf12,4}, {0x10334,8}, {0x2c560,6}, {0x18a63,9}, {0x2c39e,6}, + {0x29234,5}, {0x1f9cc,5}, {0x78be,12}, {0x14da6,4}, {0x14a12,5}, {0x2c6bc,6}, {0x2a95f,5}, {0x1476a,10}, + {0x20786,7}, {0x12ff,4}, {0xe893,11}, {0x19218,4}, {0x1beb5,8}, {0xf49b,11}, {0xeaf0,11}, {0x209ba,7}, + {0x25ae3,5}, {0x1a484,9}, {0x1fbd1,8}, {0x26ebd,5}, {0x1ae92,9}, {0x19e88,9}, {0x1ba6d,8}, {0x284c3,5}, + {0x91f9,9}, {0x2d15d,2}, {0x2b34d,3}, {0x2b7cf,4}, {0x581e,13}, {0xf212,11}, {0x59a4,11}, {0x4998,10}, + {0x702e,12}, {0x1b493,8}, {0x17e5d,9}, {0x2066,10}, {0x1abcb,5}, {0x2914e,3}, {0x2259c,7}, {0x2d76d,4}, + {0x1b1b,15}, {0x2c7b,3}, {0x1a5da,9}, {0x19fd7,7}, {0xfe71,9}, {0x100b3,3}, {0xf591,4}, {0x2c974,6}, + {0x2b39d,4}, {0x2ba86,6}, {0x1fcc1,5}, {0xedc6,11}, {0x2c0a6,4}, {0xfd1a,5}, {0x2c434,6}, {0x13fa4,10}, + {0x152de,10}, {0x2c2e2,4}, {0x27259,6}, {0x454c,6}, {0x8122,12}, {0x2d05c,2}, {0x2c21e,4}, {0x20667,7}, + {0xd4fb,11}, {0x1cf6b,6}, {0x2a08c,3}, {0x1839c,5}, {0x1a045,5}, {0x14e2e,5}, {0x2701b,2}, {0x29820,5}, + {0x1b7d7,14}, {0x2cf21,3}, {0x4ebc,10}, {0x10bc4,7}, {0x28626,3}, {0x1cb4d,8}, {0x25af5,6}, {0x26e2d,6}, + {0x18acf,9}, {0xf82e,11}, {0x2a1ae,3}, {0x1bae5,8}, {0x2d731,3}, {0x28efb,3}, {0xaaa0,6}, {0x2920c,5}, + {0x191e2,7}, {0x10b40,10}, {0x1dd5d,8}, {0x2b0fd,4}, {0x17270,6}, {0x13684,4}, {0x79c6,11}, {0x26d31,6}, + {0x27e79,3}, {0x11ffe,10}, {0xc8d,3}, {0x1b75f,8}, {0x1dbef,6}, {0x27a23,4}, {0x2841e,5}, {0x912c,5}, + {0xe405,11}, {0x1bc95,8}, {0x1cff3,6}, {0x849f,4}, {0x2acf3,8}, {0x17be7,9}, {0x1c8a,8}, {0x750c,9}, + {0x2d1be,3}, {0x2bbe2,4}, {0x2a413,5}, {0x19981,7}, {0x29c7a,3}, {0x2a46d,5}, {0x19003,9}, {0x29a7a,5}, + {0x19669,9}, {0x4e1d,12}, {0x1cce,15}, {0x30af,10}, {0xb698,11}, {0x188ce,9}, {0x299a3,5}, {0x13e14,10}, + {0x291c9,5}, {0x2949b,4}, {0x59a4,13}, {0x4346,6}, {0x1a7d5,6}, {0x29bee,3}, {0x188c5,9}, {0xb78f,6}, + {0x12f1c,10}, {0x13b78,4}, {0x1a31a,7}, {0x8b5a,12}, {0x2859b,4}, {0x271d5,6}, {0x2661f,6}, {0x10906,10}, + {0x2a1f7,5}, {0x133d6,10}, {0xf5a5,11}, {0x242f7,7}, {0x2922a,5}, {0x646a,13}, {0xba2b,5}, {0xb984,11}, + {0x4e9f,13}, {0x2927a,5}, {0x27853,6}, {0x2955e,2}, {0x1a1f7,3}, {0x3a6e,3}, {0x9286,12}, {0x19fb3,7}, + {0x1506a,5}, {0x15b73,9}, {0x2a893,2}, {0x5a81,13}, {0x2d8b1,4}, {0x198e8,9}, {0x2853b,5}, {0x24d06,5}, + {0xd13e,11}, {0x285ea,5}, {0x1bb1d,8}, {0x1c1a,11}, {0x5ae2,7}, {0x273f1,6}, {0x14911,7}, {0x24336,7}, + {0x20553,8}, {0x26fc5,6}, {0x1bbc5,8}, {0x1a30a,7}, {0x183c7,9}, {0xcb61,5}, {0xb7f8,11}, {0x922,34}, + {0x1b26c,8}, {0x1c28d,8}, {0xad6e,12}, {0x2219c,7}, {0x27e51,3}, {0x2a1ca,5}, {0x73ae,12}, {0x22742,4}, + {0x1f71,15}, {0xf54f,3}, {0x133e,4}, {0xde17,7}, {0x18ec8,9}, {0x22b98,7}, {0xe357,8}, {0x18f8e,9}, + {0xaa32,12}, {0x839e,12}, {0x2bdd2,4}, {0xf8bf,9}, {0x83c2,12}, {0x21645,7}, {0x58a0,13}, {0xa7fe,6}, + {0x27373,6}, {0x194e6,9}, {0x6332,13}, {0x1f595,4}, {0x170d0,9}, {0x21879,5}, {0x2aa4b,8}, {0x28e4f,5}, + {0x2d1a0,3}, {0x2c4f4,6}, {0x1bdc8,4}, {0x29576,3}, {0x2b26,14}, {0x1ea5,4}, {0x10ac8,7}, {0x2bc0,14}, + {0x2db2e,2}, {0x4af7,13}, {0x2bfc6,4}, {0xabb2,12}, {0x18bef,9}, {0x19d56,9}, {0xe05e,11}, {0x15edc,9}, + {0x2aa10,7}, {0x266a9,6}, {0x1d707,8}, {0x2b0c7,4}, {0x284a,15}, {0xf469,6}, {0x7cfd,3}, {0x26c6b,6}, + {0x211ad,5}, {0x30f9,4}, {0x283c1,5}, {0x1c32d,8}, {0x238d7,5}, {0x2a2b2,3}, {0x432,36}, {0x19810,9}, + {0x10077,7}, {0xaebe,12}, {0x12a62,10}, {0x15c61,4}, {0x1fc69,8}, {0x18406,9}, {0x40b2,6}, {0x10e6a,10}, + {0x2d69,4}, {0x2d6f5,3}, {0x250c2,2}, {0x2d435,3}, {0x12db4,10}, {0x29de7,5}, {0x9892,12}, {0x1548c,10}, + {0x2945c,3}, {0xa494,9}, {0x5177,13}, {0x2b3eb,3}, {0x26cbf,6}, {0x145c,14}, {0x12a1f,5}, {0xa08a,12}, + {0x170c7,9}, {0xf7e1,11}, {0x2235c,7}, {0x12de6,9}, {0x9a4e,12}, {0xc6af,4}, {0x2c32a,4}, {0x2c67a,6}, + {0x16a03,9}, {0x1542,5}, {0x20919,7}, {0x2b41b,3}, {0x14eb0,7}, {0x12620,10}, {0x2a215,5}, {0x97d2,12}, + {0x1d0a,6}, {0x1818c,4}, {0x10d9,17}, {0x2c2fe,4}, {0x10f00,10}, {0xf02,4}, {0x2711,5}, {0x20109,8}, + {0x11d88,10}, {0x26b7b,6}, {0x97d7,7}, {0x27c69,4}, {0xaf72,11}, {0x2d895,4}, {0x1aa90,9}, {0x2a2f6,5}, + {0x1d19d,8}, {0x1fdc9,8}, {0x2c422,6}, {0xfdc1,3}, {0xb834,6}, {0x1f6d9,5}, {0xb26d,8}, {0xb96e,4}, + {0x1ecfb,4}, {0x9346,12}, {0x1f05b,3}, {0x214e7,6}, {0x7d0e,12}, {0x18fe8,9}, {0x276cd,5}, {0x648b,6}, + {0x1abef,5}, {0x1641b,9}, {0x21bfd,7}, {0x1a76,5}, {0x1494,4}, {0xf2cd,11}, {0xfd3b,11}, {0x7b82,7}, + {0x11c10,6}, {0x1aaa4,7}, {0x22eea,7}, {0xf4f3,11}, {0x22156,7}, {0xf280,10}, {0x100db,7}, {0x1d86f,8}, + {0x9526,12}, {0xd527,11}, {0x26951,6}, {0x27ff9,5}, {0x11966,8}, {0x285ae,5}, {0x19e25,9}, {0xed0b,11}, + {0x358a,13}, {0x2b4d1,4}, {0x238de,6}, {0x274b3,4}, {0x13d2e,8}, {0x1d2bd,8}, {0x794e,5}, {0x182cb,9}, + {0x2ca04,6}, {0x1f959,8}, {0x28cb5,5}, {0x1fe31,8}, {0x20998,6}, {0x2b876,6}, {0x2b145,4}, {0x2933f,3}, + {0x4356,5}, {0x1757,2}, {0x16dc,16}, {0xffca,10}, {0x21d54,7}, {0x43f5,13}, {0x2d17f,3}, {0xc198,11}, + {0x927d,3}, {0x24463,7}, {0x27efa,5}, {0x1769f,9}, {0x2dab8,2}, {0x2c002,4}, {0x2682b,4}, {0x159fd,7}, + {0x69ad,5}, {0x2d494,3}, {0xfb8,17}, {0xd2eb,11}, {0x2dace,2}, {0x28f8a,5}, {0x11d42,10}, {0x2a0ee,5}, + {0x35e3,3}, {0x145f8,10}, {0x1920d,9}, {0x13390,10}, {0x27007,6}, {0x1f729,8}, {0x15b99,7}, {0x59f4,4}, + {0x270c7,4}, {0x5fc6,5}, {0x1b7a,4}, {0x215f1,7}, {0x2b596,2}, {0x15b5,7}, {0x2a26a,5}, {0xbac3,9}, + {0x50a7,12}, {0x109a6,10}, {0x29538,5}, {0x2bd1a,4}, {0x1998a,9}, {0x83ca,3}, {0x14a7,4}, {0x20739,7}, + {0x104d6,10}, {0x2b7a3,4}, {0x2d395,3}, {0x1a290,3}, {0x290ac,5}, {0x34fe,14}, {0x23d94,7}, {0x8236,7}, + {0x1d628,5}, {0x22e9d,7}, {0xc29,5}, {0x2c686,6}, {0x2d2a2,3}, {0x2842e,4}, {0xd8af,9}, {0x1c56,14}, + {0x2cd46,6}, {0x2c3c8,6}, {0xbb7e,11}, {0x2413e,7}, {0x28f3a,5}, {0x18393,7}, {0x1eb99,8}, {0x119dc,7}, + {0x22123,6}, {0x265b9,6}, {0x11cd4,10}, {0xfd30,5}, {0x150a7,7}, {0x6f07,7}, {0xab48,5}, {0x1bf15,8}, + {0x1bf87,6}, {0x2543d,6}, {0x2dbaa,2}, {0x1217a,10}, {0x1467c,8}, {0x9867,7}, {0x1d12d,8}, {0x26075,6}, + {0xf514,11}, {0x1a7a5,9}, {0x2b2ff,4}, {0x28d97,5}, {0x1be30,5}, {0x27cb5,6}, {0x24a32,3}, {0x2ec7,9}, + {0x17a3e,6}, {0x1d1f,9}, {0xc714,6}, {0x280d1,5}, {0x13586,10}, {0x1e63,15}, {0x1ec29,8}, {0x1b06f,9}, + {0x5ed6,3}, {0x24741,12}, {0x2c022,4}, {0x1230c,8}, {0x18e77,9}, {0x22fe6,7}, {0x73ea,12}, {0x21eb2,7}, + {0x1696a,9}, {0x21eea,6}, {0x20989,7}, {0x2a8b6,7}, {0x270e7,4}, {0x136e4,10}, {0x20874,7}, {0x1083c,10}, + {0x13bc8,8}, {0x91c6,12}, {0xbe7,10}, {0x178e8,9}, {0x29093,5}, {0x238f3,6}, {0xaa58,7}, {0x19108,9}, + {0x4a9c,8}, {0x1979,6}, {0x149f4,10}, {0x1bdfd,7}, {0x27655,6}, {0xcd60,11}, {0x16a6f,5}, {0x1610a,9}, + {0x1387e,10}, {0x23a9,15}, {0x79de,6}, {0xd328,4}, {0x2a22e,5}, {0x1b614,3}, {0xc940,11}, {0x272a7,6}, + {0x1ef29,6}, {0x2a4ae,5}, {0x1d98f,8}, {0x1697c,9}, {0x2bc1e,4}, {0x1e44f,8}, {0x761e,12}, {0x19420,9}, + {0x27d39,6}, {0x23baa,7}, {0x2a19a,3}, {0x163ca,9}, {0x28a2f,5}, {0x1f609,8}, {0x28017,5}, {0x18dc6,6}, + {0x2c292,4}, {0x1a469,9}, {0x2d23f,3}, {0x26841,6}, {0x29742,5}, {0x15b48,16}, {0x286cf,4}, {0x922,6}, + {0x27a3c,3}, {0x1f069,8}, {0x71e6,10}, {0x41b8,5}, {0x906a,7}, {0x23226,5}, {0xa60c,3}, {0x11dce,6}, + {0x152c0,10}, {0x17a6b,9}, {0x3ef2,14}, {0x1e0cd,8}, {0x2666d,6}, {0x23b25,7}, {0x23ef4,5}, {0x1f2eb,3}, + {0x11d1c,4}, {0xa83c,10}, {0x2d3c5,3}, {0xce10,6}, {0x273ac,3}, {0x18a24,9}, {0x2af05,4}, {0xcfe0,7}, + {0x15614,3}, {0x5295,8}, {0x238b4,7}, {0xa82e,12}, {0x2930d,3}, {0x2d2f0,3}, {0x15d23,6}, {0x1f80,7}, + {0x1d8f7,8}, {0x14008,10}, {0x2db33,2}, {0x21af3,7}, {0x9b02,12}, {0x29bce,5}, {0x2a558,5}, {0x149b8,10}, + {0x14e80,3}, {0x4000,9}, {0x188f2,9}, {0x2a0f0,3}, {0x29c3c,5}, {0x5782,13}, {0x10a7a,5}, {0x14d18,3}, + {0x28980,3}, {0x15a8b,3}, {0x290bb,5}, {0x28554,5}, {0x15574,4}, {0x2a932,5}, {0xc1f2,9}, {0xbd99,11}, + {0x216b,4}, {0x2c14e,4}, {0x2bcca,4}, {0xd996,9}, {0x2c232,4}, {0x23c2f,7}, {0x23079,7}, {0x83fe,12}, + {0x1b123,9}, {0x2ae51,8}, {0xb241,11}, {0x2b648,3}, {0x2bfc8,2}, {0xd322,11}, {0x2994e,5}, {0x29e4,14}, + {0x23e12,7}, {0x2d5b6,2}, {0xbb68,11}, {0x29d8,4}, {0x2b864,6}, {0x2577f,6}, {0x6675,5}, {0x271f9,6}, + {0x432,37}, {0x128c8,7}, {0x6438,11}, {0x1cd0d,8}, {0x29666,5}, {0x2b984,6}, {0x16436,9}, {0x1d89f,8}, + {0x31c4,14}, {0x24ca8,5}, {0x209c1,7}, {0x132c,15}, {0x10ca,9}, {0x26a83,6}, {0x1d7a7,8}, {0x1486e,10}, + {0x1975c,9}, {0x2ba56,6}, {0x20061,8}, {0x29a2,8}, {0x235c7,7}, {0x4561,8}, {0x1715c,4}, {0xf547,6}, + {0x26bf3,5}, {0x24b8d,6}, {0x22ae9,5}, {0x49a5,13}, {0x1f871,8}, {0x257a,15}, {0x199ae,9}, {0x14f02,8}, + {0xb144,11}, {0x2a943,3}, {0x14fb6,3}, {0x1c285,8}, {0x4c15,13}, {0x138e2,10}, {0x1fc01,8}, {0x173e1,9}, + {0xca5,3}, {0x17e78,9}, {0x24d3b,6}, {0x2b489,4}, {0x138ee,8}, {0x1c487,5}, {0x3c60,14}, {0x270be,3}, + {0x1ca95,7}, {0x2c07e,4}, {0x12742,10}, {0x78b2,12}, {0x4362,14}, {0x2274e,7}, {0x88f6,6}, {0xb58,20}, + {0x1796f,9}, {0x1db3d,8}, {0x210d9,7}, {0x278a1,6}, {0x28349,5}, {0x2c3ce,6}, {0x226fa,7}, {0x270f9,4}, + {0x2d1f4,3}, {0x80d0,8}, {0x29e73,5}, {0x14bba,8}, {0x2cfe9,3}, {0x292b6,5}, {0x1e81,15}, {0x2ccf8,6}, + {0x2d871,4}, {0x12b16,10}, {0x53cf,5}, {0xf5bb,7}, {0xde22,7}, {0x15344,8}, {0x1731e,4}, {0x207e8,7}, + {0x2ae0d,6}, {0xecea,10}, {0x2379e,5}, {0xb25a,6}, {0x23183,7}, {0x1b75,14}, {0x1bdd5,8}, {0x29d3f,3}, + {0x1b6c3,8}, {0x16a9c,9}, {0x23f69,7}, {0x96e2,12}, {0x861a,12}, {0x1e3e7,8}, {0x198a2,5}, {0xeec3,10}, + {0x15fd8,9}, {0x22f4c,7}, {0x29cd2,5}, {0x1aa99,9}, {0x2a445,5}, {0x14cc8,3}, {0x125a8,10}, {0x4916,13}, + {0x7fc6,12}, {0x1bab5,7}, {0xb3b9,4}, {0x2a490,5}, {0x1ac30,4}, {0x11d81,7}, {0xfc33,9}, {0x19f3e,3}, + {0x1a0f5,9}, {0x2d995,4}, {0x4547,13}, {0xeb27,11}, {0x19ff0,9}, {0x2d584,3}, {0xb118,10}, {0x24132,5}, + {0x14ac,12}, {0x16b6b,9}, {0xa8fa,10}, {0x25bbb,6}, {0x7b3a,12}, {0x132b4,9}, {0x1b9bd,8}, {0x24b16,5}, + {0x7b62,8}, {0x1dedf,8}, {0x16140,6}, {0x12634,10}, {0x2232,9}, {0xcf91,7}, {0x2778d,6}, {0xc6b7,9}, + {0x17e15,9}, {0x8193,7}, {0x28e72,5}, {0x4150,3}, {0xa4aa,5}, {0x226ec,7}, {0x11a0e,10}, {0x47b7,9}, + {0x686d,13}, {0x2a585,5}, {0x29bb0,5}, {0x273e,3}, {0x14229,5}, {0x1377d,7}, {0x25285,10}, {0xf2ee,6}, + {0x6223,9}, {0x2b7e2,2}, {0x2d901,4}, {0x16baa,9}, {0xa26a,12}, {0x188ff,5}, {0xedf4,5}, {0x1f51b,6}, + {0x1fc41,5}, {0x33fa,6}, {0x7366,8}, {0x29c39,3}, {0x2142a,7}, {0x2ccbc,6}, {0x1f1e9,7}, {0x2d0a4,3}, + {0x2a549,5}, {0x2d761,4}, {0xb3f2,7}, {0x627c,9}, {0x321d,9}, {0x2b64f,4}, {0x6783,13}, {0x19ebe,9}, + {0x14882,7}, {0x2cc9e,6}, {0x1e337,8}, {0x2d440,3}, {0xd4da,11}, {0x28cff,3}, {0x17118,7}, {0x2987c,3}, + {0x1aca5,7}, {0xbbf7,11}, {0x1cb05,8}, {0x2145b,7}, {0x5bfa,13}, {0x4a5e,5}, {0xca69,11}, {0x2a122,3}, + {0x130f2,8}, {0x2736d,6}, {0x269c3,6}, {0x22874,7}, {0xf120,11}, {0x261d1,6}, {0x18e6e,9}, {0x2874d,6}, + {0x22c71,6}, {0x2c9c2,6}, {0x1d22,5}, {0x26811,5}, {0x2551d,6}, {0x185bf,9}, {0x145a1,5}, {0x42ae,12}, + {0xe097,9}, {0xdf9,4}, {0xaf1e,12}, {0x1fe01,8}, {0x198a9,9}, {0x19e6d,8}, {0x112f2,10}, {0x16630,7}, + {0x2d4be,3}, {0x27ea0,5}, {0x29a75,5}, {0x13a72,6}, {0x4860,8}, {0x1b0c,15}, {0xb1f4,11}, {0x28a07,5}, + {0x13838,10}, {0x1a0d,15}, {0xf4fe,11}, {0x14b42,8}, {0x6c08,13}, {0x8c32,12}, {0x272d7,6}, {0x20bad,7}, + {0xa480,6}, {0xbb2a,6}, {0x25865,8}, {0xab0a,12}, {0x2a8c4,4}, {0x2d668,3}, {0x2a80,11}, {0x5254,9}, + {0x6812,13}, {0x2c716,6}, {0x2a8ee,3}, {0x1e9ca,4}, {0x10404,8}, {0x70cc,16}, {0x1e9df,5}, {0x759a,12}, + {0x2756d,4}, {0x243c5,4}, {0xce57,5}, {0x202e1,8}, {0xe006,11}, {0x2bc62,4}, {0x174cb,9}, {0x23ea,3}, + {0x2b97e,6}, {0x2d74a,4}, {0xa97e,12}, {0x27d7b,10}, {0x2304,15}, {0x1d55f,6}, {0x1f141,8}, {0x20faa,6}, + {0x144d8,8}, {0x27be6,3}, {0xf655,11}, {0x1047c,5}, {0x184d5,9}, {0x2af3d,4}, {0x1ceaf,6}, {0x176e7,6}, + {0x2a2f1,5}, {0x192ca,9}, {0xfe01,11}, {0x94b5,4}, {0x2d469,3}, {0x251b9,6}, {0x1b95f,14}, {0x1015,4}, + {0x249c9,12}, {0x13cfc,10}, {0x8542,11}, {0x1f589,8}, {0x23692,7}, {0x2987a,5}, {0x29428,5}, {0xf39e,11}, + {0x22ec0,7}, {0x26f1,6}, {0x291df,5}, {0x29d6a,5}, {0x26401,4}, {0xdecc,6}, {0x2fe0,8}, {0x17738,6}, + {0x2c3bc,6}, {0x8a5e,12}, {0x3a14,14}, {0x3250,14}, {0x2468d,12}, {0x2b07f,4}, {0x2a17f,5}, {0x5f3c,9}, + {0x2d3f8,3}, {0x286c3,6}, {0x1a2a5,9}, {0x23bbf,7}, {0x192bb,5}, {0x298e0,5}, {0x26c65,6}, {0xadd,22}, + {0x2a382,5}, {0xad34,4}, {0xb5cb,7}, {0xd42a,11}, {0x20982,7}, {0xdaff,11}, {0x2712d,6}, {0x6916,13}, + {0x2564,7}, {0x2c54e,6}, {0x3298,5}, {0x2d3fb,3}, {0x129c2,10}, {0x15330,8}, {0x4411,6}, {0x1931,4}, + {0x1e7cf,8}, {0x6eb9,13}, {0x16fd4,9}, {0x539d,2}, {0xf99d,2}, {0x70fc,2}, {0x24034,7}, {0xf584,11}, + {0x273ca,3}, {0x2a172,3}, {0x1f843,6}, {0x1c0b5,5}, {0x2a1a9,3}, {0xe64c,11}, {0x21831,7}, {0x2a98e,2}, + {0x2412b,5}, {0x1a2ae,7}, {0x1a970,9}, {0x1033c,10}, {0x297e6,3}, {0x432,38}, {0x1c5e7,5}, {0x783a,12}, + {0x2643b,6}, {0x1cec5,8}, {0x1dde5,8}, {0x7336,12}, {0x2d497,3}, {0x4d19,8}, {0xbf8a,5}, {0x26885,6}, + {0x10dd,12}, {0x13766,10}, {0x2a42c,5}, {0x15180,10}, {0x27a3b,4}, {0x1ffe9,6}, {0x279b2,3}, {0x9d66,12}, + {0x23852,7}, {0x13da6,10}, {0x19abe,6}, {0xdbf1,11}, {0x2547f,6}, {0x13264,10}, {0x552c,13}, {0xeead,11}, + {0x232e3,3}, {0x49b2,13}, {0x2963e,5}, {0x28674,5}, {0x2412,15}, {0xaec,3}, {0x1ef49,8}, {0x2a387,5}, + {0x276ff,3}, {0x11180,10}, {0x26a1f,4}, {0x2c76,14}, {0x17c38,9}, {0xfcb0,2}, {0x178bb,9}, {0x25813,6}, + {0x2d81d,4}, {0x54b7,13}, {0x2366a,3}, {0x19ec7,7}, {0x4a2e,4}, {0x1e5bf,8}, {0x11310,8}, {0xe013,7}, + {0x27c5e,3}, {0x1815a,9}, {0x2b580,4}, {0x1f649,8}, {0x1a418,6}, {0x2080d,4}, {0x28290,5}, {0x2074e,7}, + {0x21d15,7}, {0x1c5bd,7}, {0x27964,3}, {0x24951,12}, {0x153f6,6}, {0x113d0,8}, {0x2756f,2}, {0x1184c,10}, + {0x1a5c8,9}, {0x1f2c4,3}, {0x10f3f,7}, {0xf26c,6}, {0x24a46,5}, {0x76ec,10}, {0x1735c,4}, {0x1c545,8}, + {0x1db25,6}, {0x29afc,4}, {0x24d0b,6}, {0x283e,3}, {0x1912,11}, {0x2d8e9,4}, {0x2b201,4}, {0x225f2,5}, + {0x27c0a,3}, {0x12bde,10}, {0xdf6c,11}, {0xe586,11}, {0x23e51,7}, {0xb4a,13}, {0x1f8c3,3}, {0x23831,5}, + {0x11d2e,10}, {0x1a11,3}, {0x56eb,8}, {0x362a,7}, {0x237b8,7}, {0x1a850,9}, {0x28536,5}, {0x2d2b1,3}, + {0xc91,9}, {0x15aca,9}, {0x2d69b,3}, {0x1b157,14}, {0x29239,5}, {0x2a49f,5}, {0x23374,7}, {0xf89e,4}, + {0x305a,12}, {0x2ce32,5}, {0x2b854,4}, {0xf629,11}, {0x26859,6}, {0x27a30,3}, {0xbe4,2}, {0x23891,7}, + {0x206d0,7}, {0x1300e,8}, {0x2a03c,3}, {0x11bcb,4}, {0x29b08,3}, {0x1a20c,9}, {0x19b43,9}, {0x171d9,3}, + {0x26799,6}, {0x23cf6,3}, {0x2b974,4}, {0xaa86,11}, {0x24184,7}, {0x7ddc,10}, {0xe6a,2}, {0x22c78,7}, + {0x23b95,5}, {0x1b623,8}, {0x2cb42,6}, {0xbb10,6}, {0xf35e,5}, {0xf992,9}, {0x547a,5}, {0x28437,5}, + {0x2d4ac,3}, {0x2c986,6}, {0x2b5b3,2}, {0x12ca6,10}, {0x10ea8,5}, {0x24afc,5}, {0x177f5,9}, {0x2a9d4,2}, + {0x251f8,6}, {0xf5f2,11}, {0x2c59c,6}, {0xad62,12}, {0x1ce2d,8}, {0x1bfff,6}, {0x1fef9,8}, {0x26a2f,6}, + {0x2b238,3}, {0x13220,4}, {0x429e,5}, {0x2e8f,9}, {0xc67,5}, {0x48e4,11}, {0x2d003,3}, {0x258f1,6}, + {0x14d5c,10}, {0x17f74,9}, {0xbd36,11}, {0x1fe2b,6}, {0x13066,10}, {0x1e857,8}, {0x2a900,5}, {0x1596e,9}, + {0x960a,12}, {0x2cfe3,3}, {0x1eec1,8}, {0x189cc,6}, {0x11c16,10}, {0x13ec8,10}, {0x241b5,5}, {0xdc8b,11}, + {0x13a3,4}, {0x17e83,7}, {0x12c88,9}, {0x16db6,9}, {0x14954,6}, {0x116c6,9}, {0xc261,8}, {0x1a9cc,7}, + {0x2b13d,4}, {0x2d39e,3}, {0x292fc,5}, {0x281fb,4}, {0x27469,6}, {0x26e63,6}, {0x29706,5}, {0x2a292,5}, + {0x1a445,9}, {0x7429,5}, {0x11ce4,4}, {0x1b2b5,8}, {0x1478a,8}, {0xe2ff,5}, {0x157be,18}, {0xe5e3,6}, + {0xdca1,11}, {0x25a13,6}, {0x1cce,9}, {0x1a0fe,9}, {0x2a02d,3}, {0x20a31,7}, {0x4402,13}, {0x10afc,6}, + {0x16613,9}, {0x2504b,6}, {0xf353,4}, {0xa16e,12}, {0x288c8,4}, {0x1805e,9}, {0x25505,6}, {0x2753d,3}, + {0x909a,12}, {0x254a3,6}, {0x2b0d1,4}, {0xbdeb,6}, {0x299b5,2}, {0x2b499,4}, {0x21fbc,7}, {0x235b2,5}, + {0x3e9e,14}, {0x1edfe,3}, {0x1a7ae,7}, {0x25ee1,4}, {0x9652,12}, {0x2506f,6}, {0x4846,13}, {0x5131,5}, + {0x23b8,7}, {0x2a3f0,5}, {0x4f48,13}, {0x16fa7,5}, {0x2913d,5}, {0x1ba15,8}, {0xe5de,9}, {0x2a472,5}, + {0x234d9,7}, {0x1ed4b,6}, {0x24b87,6}, {0x16f30,11}, {0x25ef1,6}, {0x2a2b0,5}, {0x1dbfd,8}, {0x1da45,8}, + {0x10648,10}, {0x2c87e,6}, {0x2c0ce,4}, {0x1a326,8}, {0x21e42,7}, {0x3e3c,14}, {0x11a96,4}, {0x23358,7}, + {0x1ca3d,8}, {0x2cf80,3}, {0x1cc15,8}, {0x1e055,8}, {0x599d,7}, {0x27ca9,5}, {0x216df,7}, {0x25d4,15}, + {0x19ff2,7}, {0x15e8b,9}, {0x3090,10}, {0x29d7b,3}, {0x240ce,5}, {0x1c87f,6}, {0xa3ba,12}, {0xac4e,12}, + {0xa91e,12}, {0x28f6c,5}, {0x12b54,3}, {0xf865,6}, {0x180c,16}, {0xe360,11}, {0x2a2f3,3}, {0x10390,6}, + {0x2b7bb,4}, {0x1398c,10}, {0x2828b,5}, {0x85ba,12}, {0x2c6ce,6}, {0x7612,12}, {0x15a31,9}, {0x14835,7}, + {0x48b0,7}, {0xc416,8}, {0x225db,7}, {0x2cb54,6}, {0x13cca,10}, {0x29d97,5}, {0x1a8bc,9}, {0x2b0a7,4}, + {0x7b22,12}, {0x26d27,3}, {0x21b32,7}, {0x10df2,10}, {0x1dbcd,5}, {0x221b8,7}, {0x9930,9}, {0x29cf0,5}, + {0x2239d,7}, {0x1f8d1,8}, {0xc22b,3}, {0x1aaf8,4}, {0x2b171,4}, {0x1fe51,8}, {0x20099,7}, {0x2435,10}, + {0x131b0,10}, {0x2416f,7}, {0x135ae,10}, {0x26fd1,6}, {0xe17c,11}, {0x29cdf,2}, {0x20742,5}, {0x2527b,10}, + {0x2b409,4}, {0x15857,9}, {0x177c1,7}, {0x21838,7}, {0x2cf9b,3}, {0x230a3,7}, {0x23169,3}, {0x1004c,10}, + {0x1b62b,8}, {0x1ce55,8}, {0x1c8ad,8}, {0x17a23,9}, {0xb5df,7}, {0x2398f,7}, {0x184bc,6}, {0x2b176,2}, + {0x22b8a,7}, {0x1c4e5,6}, {0x57f9,4}, {0x25389,10}, {0x108b9,7}, {0x1ff81,8}, {0x1682f,9}, {0x1c1bf,6}, + {0x1717b,9}, {0x2819c,4}, {0x17277,9}, {0x1f651,8}, {0x731e,12}, {0xb75e,11}, {0x1550e,10}, {0x1ed19,8}, + {0x1730b,7}, {0xce36,5}, {0x2071d,7}, {0x138b2,6}, {0x40fa,8}, {0x29310,4}, {0x2a431,5}, {0x11704,8}, + {0x1b82d,12}, {0x13131,7}, {0x1fbbc,5}, {0x23ce,8}, {0xe636,11}, {0x213b1,7}, {0x2cee6,5}, {0x1eb59,8}, + {0x274b1,6}, {0x29eeb,5}, {0x7052,12}, {0x23b4a,5}, {0x2ca22,6}, {0x20c6a,7}, {0x2d4d0,3}, {0x83de,5}, + {0xa2ee,10}, {0x2aeb1,4}, {0xbeb7,11}, {0x16fcb,9}, {0x1aa48,9}, {0x20da2,7}, {0x2976f,5}, {0xf747,5}, + {0x1b453,8}, {0x1f443,4}, {0x38ee,12}, {0x1ffc1,8}, {0x15e5e,9}, {0x4f30,6}, {0x21214,7}, {0x1f311,7}, + {0x5194,2}, {0x27d3f,10}, {0xa68a,12}, {0x277b1,6}, {0xa366,12}, {0x4aa9,7}, {0x1361c,10}, {0xa5ee,12}, + {0x6794,7}, {0x12e9e,6}, {0xff66,10}, {0xde85,11}, {0x4fdb,4}, {0xdb2d,8}, {0x142c7,7}, {0x2da55,2}, + {0x24f19,6}, {0x6f16,10}, {0x286b3,8}, {0x287d9,5}, {0x2a926,2}, {0x16284,9}, {0x65d6,13}, {0x3a27,9}, + {0x2b716,4}, {0x20413,3}, {0x16af6,9}, {0x2a305,5}, {0x152cf,5}, {0x94b0,10}, {0x1f53,15}, {0x19e91,9}, + {0x1fcf9,5}, {0x9273,7}, {0x1bcfd,8}, {0x28d6a,5}, {0x1f7c1,8}, {0xd7c9,8}, {0x2c47,5}, {0x1fe19,6}, + {0x2af8d,4}, {0xa3f6,12}, {0x2a553,5}, {0x23198,7}, {0x127a6,8}, {0x18fc7,5}, {0x2d909,4}, {0x2d4b5,3}, + {0xdaeb,9}, {0x5ed4,13}, {0x2050b,8}, {0x1fc7b,3}, {0x96ca,11}, {0x2c200,2}, {0x2411b,7}, {0x27e37,5}, + {0x113f0,6}, {0x2c548,4}, {0x2089e,11}, {0x15daa,5}, {0x1423,8}, {0x2d078,3}, {0x42e4,11}, {0xecf5,11}, + {0x27b86,3}, {0x1c1d5,8}, {0x14d3,9}, {0x26dbd,2}, {0x112c,16}, {0x1e56b,4}, {0x22ec0,5}, {0x2a459,5}, + {0x11f0e,9}, {0x2284c,5}, {0x498b,9}, {0x4346,11}, {0x15ffc,6}, {0x163e5,9}, {0x22b91,7}, {0xbbaa,11}, + {0x28653,4}, {0xcb50,5}, {0x1a727,9}, {0x9bf2,12}, {0x27c0d,6}, {0x2a427,5}, {0x2d137,3}, {0x239a,15}, + {0x29d67,2}, {0x2a2e9,3}, {0x1db8d,8}, {0xf335,6}, {0xb12e,11}, {0x116fa,7}, {0x114c,16}, {0x1705b,9}, + {0x1e387,8}, {0x2b109,4}, {0x4472,5}, {0xfd46,11}, {0x5f8c,7}, {0x12e7c,10}, {0x78a6,12}, {0x9886,8}, + {0x1a888,5}, {0x2707f,6}, {0x298b8,5}, {0x10a5a,10}, {0x1523e,10}, {0x1a6cd,9}, {0x14fe8,5}, {0x25849,6}, + {0x24b27,6}, {0x2277f,7}, {0x186c6,7}, {0x17dc,16}, {0x2b0c3,4}, {0x6a36,9}, {0x1667b,4}, {0x299b2,5}, + {0x29652,5}, {0x18028,9}, {0x2d3b9,3}, {0x2d200,3}, {0x1269e,4}, {0x2b331,4}, {0x1689d,7}, {0x257b1,6}, + {0x11bda,10}, {0xc1da,11}, {0x15e70,9}, {0x233d1,5}, {0x235ea,7}, {0xee1,11}, {0x16ddc,6}, {0x1192,3}, + {0xe22c,11}, {0x660a,13}, {0x169c,6}, {0xff20,20}, {0xf73f,4}, {0x131db,4}, {0x63f5,9}, {0x24233,7}, + {0x2151,15}, {0x1efe9,8}, {0xa1ce,12}, {0x16206,9}, {0x928c,5}, {0x19a2c,9}, {0x28545,5}, {0x26c07,4}, + {0x1fc21,8}, {0x2b481,4}, {0xb83a,11}, {0x3df8,6}, {0x1b985,8}, {0x2580d,6}, {0xee36,5}, {0x5a8e,7}, + {0x387e,14}, {0x1929d,9}, {0x232c0,3}, {0xe62b,11}, {0x1d49d,8}, {0x17c92,9}, {0x1c3bd,8}, {0x2bd66,4}, + {0x1ca5d,8}, {0x577d,4}, {0x23ab7,5}, {0x53cd,13}, {0x28f6,14}, {0x129d6,10}, {0x27e36,2}, {0x3e82,9}, + {0x1678d,9}, {0x5c48,13}, {0xeb48,11}, {0x2bec4,2}, {0x1e9d2,5}, {0x23813,6}, {0x28b2c,5}, {0x25b55,6}, + {0x257c3,6}, {0x275b3,6}, {0x2c8d2,6}, {0xd5f,3}, {0x1e887,8}, {0x256af,4}, {0x13dd0,7}, {0x13ed2,10}, + {0x9292,12}, {0x27e19,5}, {0x19f41,3}, {0x29bc1,3}, {0xc8b1,11}, {0x2db0a,2}, {0x1a71e,9}, {0x26303,6}, + {0x1b078,8}, {0x17ba8,9}, {0xecb5,6}, {0x1f28b,4}, {0x83da,12}, {0x39c0,14}, {0xa17,12}, {0x21815,6}, + {0xc633,11}, {0x2446a,5}, {0x10bae,10}, {0x20563,8}, {0x22659,7}, {0x118ba,10}, {0x59ff,13}, {0x25f89,6}, + {0x2d25d,3}, {0x140c,16}, {0xc6d,18}, {0x27ed7,5}, {0x1b543,8}, {0x2c2a8,2}, {0x2181c,7}, {0x2b657,4}, + {0x1e06d,8}, {0x295d3,7}, {0x1f149,8}, {0xfbd0,11}, {0xf44e,11}, {0x2c394,4}, {0x2bdda,4}, {0x6c3e,11}, + {0x145a1,7}, {0x198bb,9}, {0x1d5dd,4}, {0x17dc4,9}, {0x6e6d,4}, {0x14f50,10}, {0x6078,4}, {0x1633a,5}, + {0x530a,13}, {0x38e0,14}, {0x1943b,9}, {0xe6ca,5}, {0x1d065,8}, {0xb4c2,5}, {0x2cc2c,6}, {0x174e6,6}, + {0x6d8e,5}, {0xbd8e,11}, {0x26fcd,2}, {0x876a,12}, {0x1e6ff,8}, {0x3c0c,14}, {0x26a1d,6}, {0x5b57,4}, + {0x268eb,6}, {0x23322,5}, {0x2a032,3}, {0x2acd3,8}, {0x12756,10}, {0x2afa9,4}, {0x2d0aa,3}, {0xe539,11}, + {0x7b92,8}, {0x195d9,9}, {0x29969,3}, {0x20313,6}, {0x18109,6}, {0xe01c,11}, {0x1d5ed,8}, {0x1bb75,8}, + {0x2b606,3}, {0x27d9f,6}, {0x1276a,10}, {0x16721,9}, {0xea0b,9}, {0x18b08,3}, {0x1e489,6}, {0x5a9b,13}, + {0x2a9f,9}, {0x121f2,10}, {0x29701,5}, {0x2a486,5}, {0x2c2ea,4}, {0x271b7,6}, {0x2ad43,8}, {0x1493a,2}, + {0x28b22,5}, {0x2d62f,3}, {0x1877a,7}, {0x202b1,8}, {0x16345,5}, {0x25dcd,6}, {0x2b371,4}, {0xd21a,11}, + {0x2407a,7}, {0x1b135,6}, {0x111c8,8}, {0x2a208,3}, {0xac66,9}, {0x4d5a,7}, {0x980e,12}, {0xa500,9}, + {0x41f8,12}, {0x105d0,7}, {0x17fe9,9}, {0x1a589,9}, {0x1acac,9}, {0x2d2ff,3}, {0x1e1a7,7}, {0x2437c,7}, + {0x430,28}, {0x10c1c,6}, {0x24a5f,2}, {0x4411,11}, {0x1d019,10}, {0x6197,8}, {0x1f55b,5}, {0x1a63d,9}, + {0x1c83d,8}, {0x2d939,4}, {0x2d248,3}, {0xef10,11}, {0x154e8,3}, {0x25f8f,6}, {0x12bac,10}, {0x2b11,6}, + {0x1aae1,9}, {0x63a9,11}, {0x5c21,13}, {0x24ab7,8}, {0x2a463,5}, {0x730a,8}, {0xb86,12}, {0x29192,5}, + {0x130ca,10}, {0x271e9,4}, {0x93ee,12}, {0x3113,9}, {0x2a148,5}, {0x1c58d,8}, {0x27fb3,5}, {0x2d85d,4}, + {0x26735,4}, {0x9198,9}, {0x1a982,9}, {0x1a3f4,9}, {0x1531c,3}, {0x11c60,6}, {0x133e,12}, {0xede9,6}, + {0x29482,5}, {0x2397a,7}, {0x22675,6}, {0x29a1b,5}, {0x18cd0,9}, {0x1de2f,6}, {0x11716,10}, {0x1203a,10}, + {0x14828,5}, {0xf579,11}, {0x78d1,5}, {0x19966,9}, {0xc0e8,11}, {0x25d49,6}, {0x2a1e3,5}, {0x1a293,9}, + {0x262a3,6}, {0x2c06e,4}, {0x2c55a,6}, {0xb0d7,4}, {0x1782d,7}, {0x2a8f6,5}, {0x16233,9}, {0x24bd5,6}, + {0x29151,5}, {0x29980,5}, {0x27a2f,4}, {0x25de5,6}, {0x269e7,6}, {0x2ba68,6}, {0x19f21,9}, {0x16ae4,9}, + {0x35b4,14}, {0x21261,7}, {0x2a43b,5}, {0x1319c,9}, {0x43b4,6}, {0x10320,7}, {0x2843c,5}, {0x2a0bc,5}, + {0x20db,8}, {0x10544,10}, {0xb7cc,11}, {0x1fa71,8}, {0x1eba1,8}, {0x20baf,4}, {0x250d5,6}, {0x1b66,15}, + {0x1e3c2,4}, {0xa9d2,12}, {0x21a98,7}, {0x255e9,6}, {0x4808,10}, {0xde1b,6}, {0x1cd15,8}, {0x196f0,7}, + {0x900a,12}, {0x2a45e,5}, {0x218f0,3}, {0x146d9,4}, {0x20cff,9}, {0x23ba,7}, {0xbbb5,11}, {0xd99f,8}, + {0x2d33b,3}, {0x22a0c,7}, {0x1ba0d,8}, {0x33d8,14}, {0x2935b,5}, {0x857e,12}, {0x1cff9,8}, {0x4971,8}, + {0x2ca58,6}, {0x149ce,8}, {0xd976,7}, {0x293dd,5}, {0x23cc9,7}, {0xfcf0,4}, {0x9f8e,12}, {0x29101,5}, + {0x27a42,3}, {0x2214d,9}, {0x2c3c2,4}, {0x22fa9,5}, {0x1f921,8}, {0x26643,6}, {0x12c4c,10}, {0x18bf8,9}, + {0x24eab,6}, {0x28999,7}, {0xfa4b,11}, {0x1e5ef,7}, {0x25915,8}, {0x23645,6}, {0xfc80,10}, {0x1e115,8}, + {0x291b5,5}, {0x13e2b,7}, {0x294f7,5}, {0xf4c9,9}, {0x2bcfa,4}, {0x14b11,7}, {0x13eb4,10}, {0x4bad,13}, + {0x1f8e9,8}, {0x2ba98,6}, {0x1c0a5,8}, {0x11068,7}, {0x249b9,8}, {0x27525,4}, {0x2a373,5}, {0xc4fd,11}, + {0x2d3b6,3}, {0x8c4,24}, {0x22e2d,7}, {0x1aa9,9}, {0x2ae33,6}, {0x2c76a,6}, {0x1b64b,8}, {0x23c3d,7}, + {0x1ef29,8}, {0x1dc87,6}, {0x843a,12}, {0x9b0e,11}, {0x27427,6}, {0x1dce9,4}, {0x70f8,5}, {0x25d3b,8}, + {0x26c0b,5}, {0x29852,5}, {0xb8fb,5}, {0x1d5dd,6}, {0x2d1cc,3}, {0x297a6,5}, {0x729a,12}, {0x177c8,9}, + {0xcd6b,11}, {0x1aeec,9}, {0x1a0af,4}, {0xb102,11}, {0x623d,10}, {0xb56f,11}, {0x2a8c9,5}, {0x26f11,6}, + {0x36dc,3}, {0x22882,9}, {0x2859,15}, {0x32dc,14}, {0x26b15,6}, {0x27b38,3}, {0x1d71f,8}, {0x29760,5}, + {0x1913e,9}, {0x2905c,5}, {0x14d02,10}, {0x1a079,7}, {0x28bd9,7}, {0x27073,6}, {0x2c3e,14}, {0xdc1d,11}, + {0x3dda,14}, {0x2e0e,6}, {0x2d0bc,3}, {0x1da2f,6}, {0x21d4d,7}, {0x1e759,3}, {0x1abdd,9}, {0x6185,13}, + {0x11acc,10}, {0x27a35,4}, {0x15aaf,9}, {0x189dc,9}, {0x2af4d,4}, {0x5b31,6}, {0x24a7d,4}, {0xfdd,5}, + {0x23ff7,5}, {0x23441,5}, {0x1ff21,8}, {0x1003c,6}, {0x20f80,7}, {0xbc67,9}, {0x7192,12}, {0x2a454,5}, + {0x166e2,9}, {0x126c,16}, {0x145c,16}, {0x28d18,7}, {0x17966,9}, {0x11e96,10}, {0x8eea,12}, {0x111ee,10}, + {0x296b6,5}, {0x1cc8f,6}, {0x2b421,4}, {0x905e,8}, {0x23db7,7}, {0x49d3,6}, {0x1c66f,6}, {0x2cfb0,3}, + {0x17312,9}, {0x27703,6}, {0x16448,9}, {0xce2b,6}, {0x8d46,12}, {0x14be2,8}, {0xb2fe,6}, {0x14780,7}, + {0x23407,7}, {0x23f5b,7}, {0x3b3a,14}, {0x11c84,10}, {0x242aa,7}, {0x1c265,8}, {0x2b69b,4}, {0x432,39}, + {0x23e97,7}, {0x24651,12}, {0x19153,6}, {0x24c11,6}, {0xb501,11}, {0x273cd,6}, {0x79a2,12}, {0x14eab,4}, + {0x2d74e,3}, {0x30,130}, {0x1f321,8}, {0x104f8,6}, {0x70a0,16}, {0x149c,10}, {0x2d02b,3}, {0x17f23,9}, + {0x27361,5}, {0x53e7,12}, {0x1858b,7}, {0x21774,7}, {0x2d057,3}, {0x1bf5d,8}, {0x13536,10}, {0xcffa,5}, + {0x4f1a,7}, {0x2d855,4}, {0x23e2e,7}, {0x92e6,9}, {0x423e,7}, {0x2aee2,2}, {0x27435,4}, {0x104a9,5}, + {0x25f4,13}, {0xad26,8}, {0x8037,6}, {0xa912,12}, {0x260eb,6}, {0x1f471,8}, {0x150ea,9}, {0x2a3a5,5}, + {0x2dae0,2}, {0x23423,7}, {0x27a83,4}, {0x20101,7}, {0x2a2cb,3}, {0x27ec3,5}, {0x25d69,4}, {0x2c872,6}, + {0x22df5,7}, {0x2c8de,6}, {0x1fde1,8}, {0x229d,5}, {0x2439f,7}, {0x147e2,10}, {0x2818b,4}, {0x4e44,13}, + {0xe99b,11}, {0xbca7,11}, {0x2877,15}, {0xced,6}, {0x28f49,5}, {0x23c21,7}, {0x15d62,9}, {0x14760,5}, + {0x15197,7}, {0x135ec,8}, {0x22d02,5}, {0x3998,12}, {0xf6a2,6}, {0x2318,9}, {0x24338,4}, {0x2ae39,6}, + {0x842e,12}, {0x25a3d,6}, {0xa06d,2}, {0x2d7b5,4}, {0x1f671,8}, {0x2bfd2,4}, {0x87a6,12}, {0x11b4e,5}, + {0x4fd7,13}, {0x30,448}, {0x28df5,5}, {0x1694f,7}, {0x21b5c,7}, {0x2a8bd,7}, {0x6930,13}, {0x2d611,3}, + {0x1f781,8}, {0x11e0a,10}, {0x2d308,3}, {0x2d905,4}, {0x2214,15}, {0xa8e2,12}, {0x2db3a,2}, {0x2bc7a,4}, + {0x166b5,9}, {0x6699,13}, {0x28f26,5}, {0x532,104}, {0x283a8,5}, {0x3dfc,8}, {0x6d9b,4}, {0x1948e,7}, + {0xb047,11}, {0x2c306,4}, {0x924a,12}, {0x172f5,9}, {0x29bf3,3}, {0x214aa,5}, {0x2cf8f,3}, {0x1bd41,4}, + {0x18268,9}, {0x3202,8}, {0x2ebd,5}, {0x20bec,7}, {0x2aba3,8}, {0x2945a,5}, {0x2b7c3,4}, {0xf044,11}, + {0x1ac01,7}, {0x109f6,9}, {0x24811,8}, {0xe013,5}, {0x2bc52,4}, {0x18eb6,9}, {0x2a495,5}, {0xbb31,11}, + {0x2026c,4}, {0x6a00,6}, {0x14c28,5}, {0x169e1,4}, {0x2baec,6}, {0x3298,7}, {0x628e,8}, {0xf395,4}, + {0xe985,11}, {0xfbe6,11}, {0x5361,4}, {0xb679,9}, {0x1fc09,8}, {0x11e64,10}, {0x1dd65,8}, {0x87d6,12}, + {0x11888,10}, {0x29b5b,5}, {0x2a17c,3}, {0x71f2,12}, {0x323c,3}, {0xd5e7,6}, {0x3484,10}, {0x21b0f,7}, + {0x145bc,10}, {0x18771,7}, {0x1c990,5}, {0x160c2,9}, {0xfc6a,6}, {0x1a504,3}, {0x27148,3}, {0x1fb81,8}, + {0x5922,13}, {0x1cd0d,6}, {0x72ca,12}, {0x176ba,9}, {0xe34a,11}, {0x2a323,5}, {0xe1e1,6}, {0x14c98,4}, + {0x1474c,10}, {0x2955b,5}, {0x237fe,5}, {0x2bc3c,2}, {0x559a,7}, {0x1f3a1,8}, {0x4ed3,13}, {0x251ec,6}, + {0xfb1,5}, {0x254ed,6}, {0x12d28,10}, {0x1c77d,8}, {0x280a3,5}, {0x1ca9d,8}, {0x1e5cf,6}, {0x26715,5}, + {0x2975b,5}, {0x234a,4}, {0x134c,16}, {0x16be9,9}, {0x82ae,12}, {0x1ac1c,9}, {0x2b4f5,4}, {0x150fe,10}, + {0x1d3b5,8}, {0x11682,8}, {0x1a7a5,8}, {0x22056,7}, {0x2a3af,5}, {0x1c2f5,8}, {0x95c6,6}, {0x13d1c,5}, + {0x2d671,3}, {0xce10,9}, {0x7bee,9}, {0x131ec,10}, {0x1ab4f,7}, {0x2769f,2}, {0x1ade0,5}, {0x173c6,9}, + {0x3892,8}, {0x1ea07,8}, {0x15d74,9}, {0x19a86,4}, {0x1afab,3}, {0x27c43,6}, {0x2cebe,5}, {0x23f93,7}, + {0x12a71,4}, {0x27355,6}, {0xa623,7}, {0x17848,7}, {0x23351,7}, {0x29207,5}, {0x26087,6}, {0x22150,5}, + {0x121ca,10}, {0xc0cd,5}, {0x28eb3,5}, {0x2d518,3}, {0x231bb,7}, {0x143aa,10}, {0x44f9,13}, {0x13034,10}, + {0x70ea,12}, {0x1d9b2,5}, {0x231e5,7}, {0x252e9,10}, {0x2c908,6}, {0xf35e,3}, {0x2183f,7}, {0x1621,10}, + {0x2746f,6}, {0x1dfbb,4}, {0x2d3ae,3}, {0x191fb,9}, {0x22f78,5}, {0x21173,7}, {0x16ade,6}, {0xa59e,8}, + {0xd2f6,11}, {0x2c310,2}, {0x1f929,8}, {0x14ee5,7}, {0x1c83,15}, {0x25bfd,6}, {0x12350,9}, {0xc6d2,5}, + {0x10558,10}, {0x14de0,4}, {0x18179,3}, {0x29b83,4}, {0x291a3,3}, {0x2a2fb,5}, {0xe22c,7}, {0x7458,9}, + {0x27e1d,3}, {0x289ee,5}, {0xdfae,11}, {0x291ab,5}, {0x20481,8}, {0x23a37,6}, {0x19a8f,9}, {0x19015,7}, + {0x14931,2}, {0x14224,10}, {0x24466,3}, {0xb30,11}, {0x1707f,9}, {0x145a8,5}, {0x17300,9}, {0x1d3a5,8}, + {0x17e3f,3}, {0x24979,8}, {0x61fa,13}, {0x82ec,9}, {0x19141,4}, {0x6f23,6}, {0xccc6,11}, {0x14e58,5}, + {0xfa56,11}, {0x19cb6,3}, {0x1eed5,3}, {0x25e7f,6}, {0x24137,7}, {0x1e5a7,8}, {0x23932,7}, {0x1e7f7,8}, + {0x1bbcd,8}, {0x1e7e7,8}, {0x2744b,4}, {0x8332,12}, {0x25975,6}, {0xa120,6}, {0x23d78,6}, {0x2daf4,2}, + {0xc1ff,7}, {0x18e43,6}, {0x1b49c,3}, {0x2779f,6}, {0x13b1c,10}, {0x1db2d,8}, {0x2218e,7}, {0x1ff11,8}, + {0x93fa,9}, {0xcd55,11}, {0x1e4fc,3}, {0x14a50,5}, {0xfa0,5}, {0x2a143,5}, {0x2d4c4,3}, {0xbe28,10}, + {0x22189,5}, {0x10884,8}, {0x29147,5}, {0x296d4,4}, {0xc32f,11}, {0xa4ec,4}, {0x1ad7b,6}, {0x2be28,2}, + {0xf639,6}, {0x23b9c,7}, {0x4bbc,8}, {0x2e36,14}, {0x2c8a8,6}, {0xaa10,10}, {0x28824,7}, {0x20a7e,7}, + {0x18eaf,7}, {0x219c,15}, {0x1104c,5}, {0x161be,9}, {0x295df,5}, {0x2185b,7}, {0x21ceb,7}, {0x25129,6}, + {0x2950b,5}, {0x20059,8}, {0x12552,6}, {0xcec0,11}, {0x2a9aa,4}, {0xaca2,6}, {0x65bc,13}, {0x1b1f7,16}, + {0x28dff,5}, {0xf9ac,4}, {0x2c9ce,6}, {0x1dbf7,4}, {0x785e,9}, {0x27553,6}, {0x52af,10}, {0x22d4d,7}, + {0x60f6,9}, {0x27d35,4}, {0x10a46,10}, {0x251a1,3}, {0x2d6b3,3}, {0x2a294,3}, {0x21faa,4}, {0x2d4c8,3}, + {0x4742,13}, {0x2d4d3,3}, {0x27337,6}, {0x11400,10}, {0x253c5,10}, {0x26dfd,6}, {0x4140,14}, {0x14805,5}, + {0x2153,3}, {0xd3b1,11}, {0x13dc4,10}, {0xffb6,10}, {0x2d101,3}, {0x1b66b,8}, {0x2328d,7}, {0x2b65b,4}, + {0x2a3cd,5}, {0x1888f,9}, {0x194c2,9}, {0x129a8,6}, {0x24e28,5}, {0x2c09a,4}, {0x29689,5}, {0x1eb0f,7}, + {0x2f86,14}, {0x24220,4}, {0x2f9e,3}, {0x18cf4,5}, {0x13630,10}, {0x2d40c,3}, {0x1693d,9}, {0x56d1,5}, + {0x1c5ed,8}, {0xb404,11}, {0x28c55,5}, {0x1d8df,8}, {0xe89e,11}, {0x2d54e,3}, {0x15860,9}, {0x252f,15}, + {0x2c554,4}, {0xf954,5}, {0x29174,5}, {0x24879,12}, {0x17f62,9}, {0x2a08a,5}, {0x208da,7}, {0x149a4,10}, + {0x2d16,7}, {0x1ad8d,9}, {0x9f4b,7}, {0x9a3b,7}, {0x30,132}, {0x1c865,8}, {0x1d95f,6}, {0x6d5c,3}, + {0x13cd7,5}, {0xfdbf,11}, {0x9f76,12}, {0x2db48,2}, {0xfab9,11}, {0x1541e,10}, {0x25bf9,4}, {0x135ea,10}, + {0x19c0b,7}, {0x19a98,9}, {0x2d1b2,3}, {0x23b80,5}, {0x1b97d,8}, {0xb75,10}, {0x2c944,6}, {0x2708d,4}, + {0x1064,6}, {0x1612,3}, {0x27b5f,6}, {0x2d194,3}, {0x16017,9}, {0x1e1b7,8}, {0x2b005,4}, {0x611d,13}, + {0xf1ba,11}, {0x11afe,10}, {0x2350c,5}, {0x1a21e,9}, {0x5aeb,4}, {0x17b1c,3}, {0x2101a,7}, {0x1e9c7,8}, + {0x2a3e1,5}, {0x158ea,5}, {0x26c05,5}, {0x2ce18,6}, {0x28b1d,5}, {0xc559,7}, {0x1f62,15}, {0x2c02a,4}, + {0xa562,8}, {0x2575,4}, {0x2c47c,6}, {0x1f1c1,8}, {0x29356,5}, {0xf3d5,11}, {0x186d6,9}, {0x25fc5,6}, + {0x28630,2}, {0x2462,3}, {0x2d608,3}, {0x1c60d,8}, {0x2357a,7}, {0x27dd1,7}, {0xc2ed,11}, {0x7917,6}, + {0x3f00,11}, {0x27bc8,3}, {0xd3cf,2}, {0x1e269,6}, {0x2536b,10}, {0x1f6a9,8}, {0x14a96,7}, {0x6019,13}, + {0x15018,10}, {0xf5eb,7}, {0x43e8,13}, {0x923e,11}, {0x4bee,9}, {0x174a7,9}, {0x264a9,8}, {0xddeb,11}, + {0x156f8,9}, {0x9646,7}, {0x2d5ee,3}, {0x25a19,6}, {0x1307c,3}, {0x2a3f5,5}, {0x27b80,3}, {0x5f2f,10}, + {0x1b759,14}, {0xbbd8,8}, {0x1058a,5}, {0x26793,6}, {0x2c68c,6}, {0x2c04c,2}, {0x12aa8,10}, {0x2c2ee,4}, + {0x377d,3}, {0x280d6,7}, {0x283e4,5}, {0x18244,5}, {0x29dd,5}, {0x2a3dc,5}, {0x24cdd,6}, {0x2720,5}, + {0x9976,12}, {0x8482,12}, {0x77f2,12}, {0xf870,11}, {0x24dd8,5}, {0x22b18,7}, {0x1cd85,8}, {0x1546e,10}, + {0x1a393,7}, {0x1559a,10}, {0x20724,7}, {0x14dbb,5}, {0x1df07,7}, {0x19e7f,9}, {0x121c0,10}, {0x20763,7}, + {0xb307,11}, {0x1c151,4}, {0x12f26,5}, {0x25f53,4}, {0x28eea,4}, {0x14bec,8}, {0x4f7c,7}, {0x29d04,5}, + {0x66b3,13}, {0x1b31d,8}, {0x201c9,8}, {0x2a440,5}, {0x440f,13}, {0x17877,4}, {0x1e8d7,8}, {0x25e2b,6}, + {0x2d35f,3}, {0xd5ce,4}, {0x2227c,7}, {0x158e7,9}, {0x28513,5}, {0x2d006,3}, {0x96be,12}, {0x114e,9}, + {0x2279b,7}, {0xfc12,11}, {0x208c5,7}, {0x2486d,8}, {0x9526,5}, {0x5f03,4}, {0x130c,16}, {0x211a4,7}, + {0x26ad1,6}, {0x83dc,10}, {0x2d2db,3}, {0x27127,6}, {0x2216,4}, {0x2517d,6}, {0xfbeb,6}, {0x178fa,9}, + {0x41a4,12}, {0x34d4,14}, {0x15572,10}, {0x100d,13}, {0x202b1,6}, {0x2d0e9,3}, {0x2aad3,8}, {0x1c425,8}, + {0x12baf,4}, {0x23a37,7}, {0x2826d,5}, {0x13f6c,3}, {0x16676,9}, {0x36b0,5}, {0x472d,4}, {0x11ee,3}, + {0x2bc42,4}, {0x1794b,9}, {0x1ff63,6}, {0x26ee7,6}, {0x1e105,8}, {0x1a7b7,6}, {0x17b04,9}, {0xccde,9}, + {0x294b4,7}, {0x13cb8,8}, {0x6e53,11}, {0x5779,8}, {0x1811b,9}, {0xcd76,11}, {0x2a03f,5}, {0x2978d,5}, + {0xf39e,5}, {0x1fc99,8}, {0x24801,12}, {0x14dca,9}, {0x2ca88,6}, {0x15ae5,9}, {0x154e6,8}, {0x5ee1,9}, + {0x8484,10}, {0x3226,14}, {0xd1ee,11}, {0x203e9,8}, {0x829c,6}, {0x14aaa,8}, {0x3124,6}, {0x23c98,7}, + {0x2d41f,3}, {0x2cc92,6}, {0x274ff,6}, {0x17ec0,9}, {0xdbb4,6}, {0xc6f9,11}, {0x2504b,4}, {0xf2ee,11}, + {0xf8d3,11}, {0x2317e,5}, {0x1aac6,9}, {0x2c0f8,2}, {0x3cec,14}, {0x2bd42,4}, {0x2198a,7}, {0x6853,12}, + {0x1ed4c,3}, {0x28957,7}, {0x25cd5,6}, {0x1d6b9,6}, {0x2d2b7,3}, {0x22066,5}, {0x29a48,5}, {0x25725,6}, + {0x432,40}, {0xbaf,3}, {0xb7c1,11}, {0x6faa,24}, {0x7cfa,4}, {0x23e7b,7}, {0x4f7c,13}, {0x12558,7}, + {0x1118a,10}, {0x26715,6}, {0x11b58,10}, {0xba97,11}, {0x10585,5}, {0x1d18d,8}, {0x20359,8}, {0x22eab,7}, + {0xecc9,11}, {0x2728f,6}, {0x26af7,6}, {0x12d5a,10}, {0x1dea8,5}, {0xc3e1,9}, {0x22cb7,6}, {0x19e01,9}, + {0x1c115,8}, {0x1b47b,8}, {0x1345a,10}, {0x155d6,5}, {0x2a2c9,5}, {0x2be0a,4}, {0xfed2,16}, {0x259cb,6}, + {0x2087b,7}, {0xf0de,11}, {0xec92,11}, {0x330f,4}, {0x26f59,6}, {0x1b63b,8}, {0x244dd,12}, {0x26c29,6}, + {0x29385,3}, {0x1674e,9}, {0xbc23,11}, {0x1a88f,9}, {0xeb1,8}, {0x162ba,9}, {0xc9a3,11}, {0x10b04,10}, + {0x155db,5}, {0x1a55e,3}, {0xf537,5}, {0x2b73c,7}, {0x2a302,3}, {0xadd,8}, {0x29e7d,5}, {0xa336,11}, + {0xc9a5,5}, {0x24ac5,6}, {0x9536,4}, {0x26903,6}, {0x11e00,10}, {0x2b171,3}, {0x2760d,6}, {0x256b9,6}, + {0x23a29,7}, {0xe33f,11}, {0x1564e,10}, {0xd5b0,5}, {0x2198d,4}, {0x416a,14}, {0x20644,7}, {0x15c54,7}, + {0x10d7a,10}, {0x20d78,5}, {0x17cfe,9}, {0x5da9,13}, {0xb1fa,3}, {0x29129,5}, {0x19601,5}, {0x10cc6,10}, + {0x51f9,12}, {0x432,72}, {0x1c605,8}, {0xbb0,4}, {0x27b91,4}, {0x25c0f,6}, {0x2b722,4}, {0x148f0,10}, + {0x12238,10}, {0x1c12d,8}, {0xd687,6}, {0x266bb,6}, {0x10146,10}, {0x20e84,7}, {0x102b2,7}, {0x2d6a1,3}, + {0x31ba,3}, {0x25fd1,6}, {0x2b389,4}, {0xf249,6}, {0x146e8,10}, {0x2929d,5}, {0x2c81e,6}, {0x20339,8}, + {0x21998,7}, {0xd3bc,11}, {0x2a300,5}, {0xf84f,11}, {0x240a4,7}, {0x266cf,4}, {0x232ea,4}, {0x2a418,5}, + {0x2262f,7}, {0x23916,7}, {0x11068,8}, {0x2b3fd,4}, {0x1fa61,8}, {0x2b777,4}, {0x1bc45,8}, {0x2c41c,6}, + {0x25541,5}, {0xeb32,11}, {0x27181,6}, {0x1a7ae,9}, {0x24bbd,6}, {0x12710,10}, {0x2b3f9,4}, {0xb094,5}, + {0x2ccb6,6}, {0xf71b,6}, {0x2840,4}, {0x2b069,4}, {0x16b7d,7}, {0x18730,9}, {0x1c41d,8}, {0x29715,5}, + {0x2b58b,4}, {0x2accb,8}, {0x9d2a,12}, {0x13142,10}, {0x29156,5}, {0x23a4c,7}, {0x5143,13}, {0x1af97,9}, + {0x2d0b0,3}, {0x7a3e,12}, {0x981c,7}, {0x2a28d,5}, {0x1ada8,9}, {0x2070f,7}, {0x148fc,5}, {0x1d0b5,8}, + {0x2a378,5}, {0x2902a,5}, {0x5dec,5}, {0x407f,7}, {0x25f39,6}, {0x15414,7}, {0x28590,5}, {0xa906,12}, + {0x1a161,9}, {0xf0bd,11}, {0x2241,15}, {0x166a5,4}, {0xf74a,3}, {0x1afb2,9}, {0x1bf55,8}, {0x1c755,6}, + {0x24e21,6}, {0x30,134}, {0x15042,8}, {0xd1ac,10}, {0x14b38,3}, {0x2ba3e,6}, {0x70c6,22}, {0x423e,2}, + {0x2bb7e,4}, {0x25b77,7}, {0x233d6,7}, {0x1c36d,7}, {0x242d4,7}, {0x189ee,9}, {0x13b3a,10}, {0xb5cb,6}, + {0x1aa36,6}, {0x17e58,5}, {0x2118a,5}, {0xeeb8,11}, {0xbad,11}, {0x29e41,5}, {0x6f16,9}, {0x29aef,3}, + {0x7522,5}, {0x2a139,5}, {0x1760f,9}, {0x2a1e5,3}, {0x22e11,7}, {0x2683d,4}, {0x1c1a,15}, {0x50e8,13}, + {0x23c93,4}, {0x14aa0,8}, {0xe069,11}, {0x260f3,4}, {0x1e73f,8}, {0x223f1,7}, {0x1082e,4}, {0x2b918,6}, + {0x29cd9,3}, {0x9e62,9}, {0x2a2b7,3}, {0x18d9f,9}, {0x1a2d5,6}, {0x1f97c,5}, {0x29f45,5}, {0x110c2,10}, + {0x2c380,6}, {0x1f771,8}, {0x1820e,9}, {0x256cb,6}, {0x1f291,8}, {0x1f60c,5}, {0x2647d,6}, {0x2bb62,4}, + {0x10df8,4}, {0x2b783,4}, {0x3632,14}, {0x1254e,10}, {0x2030b,6}, {0x2bb66,4}, {0xce52,10}, {0xf905,7}, + {0x2b375,4}, {0x134fa,10}, {0x1e2bf,8}, {0x284e1,5}, {0x13518,10}, {0x1d085,8}, {0x20423,6}, {0x2bb36,4}, + {0x27fef,5}, {0x11a40,10}, {0x1cbbd,8}, {0x2c8b4,6}, {0x238bb,6}, {0x211d5,6}, {0x1aeca,3}, {0x2cf00,3}, + {0x2c84e,6}, {0x14c12,10}, {0x1beed,6}, {0x1078c,5}, {0xb942,11}, {0x25147,6}, {0x20c0f,7}, {0x2d78d,4}, + {0xf9d2,10}, {0x2306d,3}, {0x15630,10}, {0x2a0d7,3}, {0x13982,10}, {0x7bd6,12}, {0x2313f,5}, {0x1206c,10}, + {0x81e8,6}, {0x145da,8}, {0x23329,5}, {0x18a1b,9}, {0x1ad7b,9}, {0xa4e2,4}, {0xb073,11}, {0x27568,3}, + {0x28974,5}, {0x211b2,7}, {0x2c1e6,4}, {0x14774,10}, {0x5dd2,4}, {0x251e9,3}, {0xcab6,11}, {0x24057,7}, + {0x9e92,12}, {0x17b82,11}, {0x30,142}, {0x2aa2c,7}, {0x544f,13}, {0x2faa,4}, {0x1f2d,7}, {0x22dd2,7}, + {0x2c9e6,6}, {0x6155,9}, {0x7702,12}, {0x3536,7}, {0x1a2c9,9}, {0x2d551,3}, {0x1c0f5,8}, {0x1e04d,8}, + {0x2d3bf,3}, {0x2949d,3}, {0x2d554,3}, {0x24dad,6}, {0x1dc7d,8}, {0x14690,4}, {0x42ca,4}, {0x1c92d,8}, + {0x926e,12}, {0x3838,12}, {0x98fe,5}, {0x14962,4}, {0x2750b,6}, {0x24a21,12}, {0x29165,5}, {0xdf98,9}, + {0x26f7a,3}, {0x24c59,6}, {0x106d4,10}, {0x2227f,4}, {0x24a2d,6}, {0x8610,6}, {0x172ec,8}, {0x1f03b,6}, + {0x288d2,4}, {0x10faf,4}, {0x20f3a,7}, {0x16aff,9}, {0x256e3,6}, {0x15fc6,9}, {0x2c3f2,6}, {0x2c072,4}, + {0x3b8e,14}, {0x1e45,15}, {0x3f54,14}, {0x21df5,7}, {0x2ba9e,6}, {0xfebc,18}, {0x172f9,7}, {0x3fb6,14}, + {0x2a2a1,5}, {0xa186,8}, {0x7505,3}, {0x2aed1,4}, {0x2c4a6,4}, {0x12954,10}, {0x21692,7}, {0x24edd,6}, + {0x1ae1d,9}, {0xfa77,11}, {0x2a1fc,5}, {0x698d,6}, {0x29fce,3}, {0x430e,14}, {0x120b2,10}, {0x21c20,5}, + {0x28916,5}, {0xd0a7,8}, {0x4f62,13}, {0xf42f,3}, {0x167f9,9}, {0xbdba,10}, {0x1672a,9}, {0xa98a,6}, + {0x15112,10}, {0xef5d,11}, {0x2d34a,3}, {0x59f4,3}, {0x21f22,7}, {0x1711d,4}, {0x2b425,3}, {0x23ce0,4}, + {0x8aa6,12}, {0x2a969,5}, {0x243a6,7}, {0x26af9,4}, {0xf76,3}, {0x1c330,4}, {0x1c64d,8}, {0x1d009,8}, + {0x86dc,10}, {0x2820c,3}, {0x7c4,18}, {0x277d1,4}, {0x21b2d,5}, {0x10780,8}, {0x28ec7,5}, {0xbcf8,6}, + {0x11ac2,10}, {0x2a3d7,5}, {0x1dbd5,8}, {0xe848,9}, {0x2d393,3}, {0xf9c7,11}, {0x1d9af,8}, {0x23cec,7}, + {0x2f4e,14}, {0x2579f,6}, {0x21cf2,7}, {0x13426,10}, {0x24369,5}, {0x14a94,10}, {0x212a7,7}, {0x9886,12}, + {0x1e2d1,6}, {0xb6f6,5}, {0x272e3,6}, {0x162a8,9}, {0xc5e,3}, {0x2da7d,2}, {0xb0aa,11}, {0x161ac,9}, + {0x14a26,10}, {0x7592,4}, {0x10faa,10}, {0x11afa,4}, {0x935e,12}, {0x2c926,6}, {0x1e30f,8}, {0x1f441,8}, + {0x27405,4}, {0x29710,5}, {0x2a02b,5}, {0x1e43f,8}, {0x9288,7}, {0x6b21,4}, {0xdda2,7}, {0x1becd,7}, + {0x10190,14}, {0x1baed,8}, {0x4e6b,7}, {0x2b59f,4}, {0x24dcb,6}, {0x285a4,5}, {0x1de85,8}, {0x1669a,9}, + {0x1036e,10}, {0x7b4d,4}, {0x1762a,9}, {0x153b0,10}, {0xf959,11}, {0x2a2a6,5}, {0x15da1,9}, {0x153f6,5}, + {0x27b71,6}, {0x1a6fa,5}, {0xb099,6}, {0xd666,11}, {0x298ea,5}, {0xaa9e,12}, {0xb094,11}, {0x14190,8}, + {0x194f8,9}, {0x2b094,3}, {0x46f4,13}, {0x140b4,8}, {0x1d57d,8}, {0xf228,4}, {0x225a3,7}, {0x19903,9}, + {0x585f,13}, {0xacf6,12}, {0x2bfb2,4}, {0xdd72,11}, {0x1431,9}, {0x92e6,12}, {0x16ea9,9}, {0x20ae0,7}, + {0x2d8f9,4}, {0x285a9,5}, {0xab25,6}, {0x7b5e,12}, {0x2c228,2}, {0xd5b6,11}, {0x14ffc,8}, {0x136da,7}, + {0x220db,7}, {0x14c64,3}, {0x10b68,7}, {0x191d7,9}, {0xcb10,5}, {0x20e4d,4}, {0x28317,5}, {0x29670,5}, + {0x13680,6}, {0x2bd06,4}, {0x21da,13}, {0x154ca,8}, {0x10bea,10}, {0x13f22,10}, {0x884,64}, {0x2d8c5,4}, + {0xb799,4}, {0x1684e,5}, {0x27e23,5}, {0x90be,12}, {0x3fa0,8}, {0x20996,3}, {0x1a967,9}, {0x16b98,9}, + {0x250ed,6}, {0x2055b,8}, {0x29043,5}, {0x1a967,5}, {0x87e2,12}, {0x27f86,5}, {0x22164,7}, {0x2d07b,3}, + {0x11dc4,10}, {0x186da,5}, {0xb9bb,11}, {0xe622,9}, {0x26489,6}, {0x382a,14}, {0x1136a,10}, {0x2d34d,3}, + {0x28c8b,7}, {0x13c7c,8}, {0xcba,3}, {0x96a6,12}, {0x282f9,5}, {0x267a5,6}, {0x1bbfd,8}, {0x2508d,6}, + {0x3c12,8}, {0x2dc6,12}, {0x2054d,4}, {0xf621,8}, {0x1c33d,8}, {0x15706,6}, {0x193b,11}, {0x1aac0,6}, + {0x11a6a,8}, {0x2063d,7}, {0x26c9d,3}, {0xa8ee,4}, {0x119be,10}, {0x27bb6,3}, {0x1aaed,2}, {0x6eb9,12}, + {0x147ce,10}, {0xf773,11}, {0x7bb4,10}, {0x2985e,3}, {0x287a3,8}, {0x1c3d,10}, {0x362b,3}, {0x2bee2,4}, + {0x8bba,12}, {0x30,144}, {0x2cd0a,6}, {0x25b49,6}, {0x5943,6}, {0x280c0,7}, {0x233dd,7}, {0xf8de,11}, + {0x2904d,5}, {0x298ba,3}, {0x296d1,2}, {0x2ba88,4}, {0x2a37d,5}, {0x29c93,3}, {0x2a4d,6}, {0x41a2,10}, + {0xc64,3}, {0x2753b,6}, {0x1897d,5}, {0x2bbf2,4}, {0x2b607,4}, {0x1af4b,3}, {0x27187,6}, {0x18c5b,9}, + {0x23ba5,2}, {0x2b0d5,4}, {0x20d2d,5}, {0x2c4fa,4}, {0x201f5,4}, {0xf3cc,8}, {0x515d,13}, {0x19336,9}, + {0x407f,9}, {0x208e,15}, {0x294bd,3}, {0x1fcb9,8}, {0x5399,6}, {0x1479e,7}, {0x2c69e,6}, {0x1b265,3}, + {0x26d5,3}, {0x2b615,3}, {0x28d3a,3}, {0x2b3e9,4}, {0x16757,9}, {0x1a898,7}, {0x1ddad,8}, {0x1673c,6}, + {0xb210,3}, {0x26345,6}, {0x4f4b,4}, {0xc139,7}, {0x292cc,2}, {0x19eb9,5}, {0x6ccb,13}, {0x1e887,7}, + {0x1030a,10}, {0x27109,6}, {0xcab6,8}, {0x1963c,9}, {0x1c7af,6}, {0xfd53,9}, {0x26435,6}, {0x24ee9,6}, + {0x25c99,6}, {0x26fad,6}, {0x922,36}, {0x50c1,13}, {0x10512,10}, {0x1e135,8}, {0x175b1,4}, {0x212b5,7}, + {0xed42,11}, {0x2abe,3}, {0x2d110,3}, {0xb73d,10}, {0x1517c,4}, {0x1df77,8}, {0x20af4,2}, {0x142d3,5}, + {0x247b,15}, {0x8820,5}, {0xff94,5}, {0x19aa3,7}, {0xd6c,3}, {0x13fd6,10}, {0x29138,5}, {0x295ab,5}, + {0x804a,12}, {0x8f1a,8}, {0x2d716,3}, {0x169cd,9}, {0x2d154,3}, {0x2d063,3}, {0x26387,6}, {0x28f5f,3}, + {0x18a36,9}, {0x24122,7}, {0x299c6,5}, {0x1f159,6}, {0x24939,12}, {0x1c8b5,8}, {0x1f311,8}, {0x2996c,5}, + {0x8a9e,8}, {0x12a5a,5}, {0x28daf,5}, {0xa9ba,8}, {0x2b405,3}, {0x6036,10}, {0x19bf7,9}, {0x101b8,5}, + {0x9706,7}, {0x79d2,12}, {0x1aff1,8}, {0xe200,7}, {0x17726,9}, {0x2761f,6}, {0x1e5af,8}, {0x22778,7}, + {0x29e50,5}, {0x13680,10}, {0xb97,14}, {0x813a,12}, {0x2b3c,4}, {0x6af7,13}, {0x8572,12}, {0x116bc,10}, + {0x231d9,5}, {0x145d2,4}, {0x20f1e,7}, {0x1375c,10}, {0xa636,12}, {0x183e2,9}, {0x36c0,6}, {0x1ca4d,7}, + {0xf45,3}, {0x1fa59,8}, {0x23fa8,7}, {0xd527,7}, {0x2d46c,3}, {0x1f3b1,7}, {0x2c05a,4}, {0xbed8,11}, + {0xa80a,10}, {0x2cbea,6}, {0x1f91,6}, {0xfc9,17}, {0x2d6c5,3}, {0x1633a,9}, {0xb5bc,11}, {0x12076,10}, + {0x1a81a,6}, {0x2c800,6}, {0x11d92,10}, {0x1a21e,6}, {0x2d1dc,3}, {0x2d811,4}, {0x2944b,5}, {0xe0a0,8}, + {0x4194,14}, {0x200b9,8}, {0x26b35,4}, {0x29d88,5}, {0x29d0,3}, {0x232ef,7}, {0x1b6a3,8}, {0xe22e,5}, + {0x1eac9,6}, {0x26f7f,2}, {0xdcd3,4}, {0x19a82,2}, {0x4bba,13}, {0x1b951,14}, {0xc33,3}, {0x2c596,4}, + {0x1a837,3}, {0x2d326,3}, {0x1b147,16}, {0x2080b,7}, {0x2d51b,3}, {0x28c46,5}, {0x5512,13}, {0x2b5bd,3}, + {0x2a265,5}, {0x256b,15}, {0x1c2fd,8}, {0x2957b,2}, {0x293ce,5}, {0xe61b,5}, {0x1667,3}, {0x1ce45,8}, + {0xfb06,11}, {0x27277,6}, {0x208fd,5}, {0x24e4,15}, {0xb769,11}, {0x1b032,4}, {0x2356c,7}, {0xdc5f,11}, + {0x1700a,9}, {0xd5ab,11}, {0x77a3,7}, {0x2b121,4}, {0x156b2,10}, {0x63c1,11}, {0x2523f,10}, {0x22c24,7}, + {0x15707,4}, {0x9ed4,6}, {0xa4ce,9}, {0x2b8ca,6}, {0x21936,5}, {0x304c,9}, {0x51ad,7}, {0x74ac,5}, + {0x28b98,5}, {0x1fa2b,6}, {0x24d83,6}, {0x1ff09,5}, {0x12111,5}, {0x75be,12}, {0x13124,7}, {0x181c,7}, + {0x2a3c3,5}, {0x5435,13}, {0x18c52,9}, {0x2c14c,2}, {0x4b79,7}, {0x24a8d,6}, {0xbbac,9}, {0x10ba4,10}, + {0x1b347,6}, {0x2a34b,5}, {0x200f1,8}, {0x2064b,7}, {0x20597,5}, {0x20471,8}, {0x4b5f,13}, {0x2b56d,4}, + {0x2b529,4}, {0x26769,6}, {0x24ab1,6}, {0x262df,6}, {0x1f753,6}, {0x19c3f,9}, {0xd603,11}, {0x1d4e5,8}, + {0x142c4,10}, {0x2d64d,3}, {0x3608,14}, {0xf66,2}, {0xd72c,11}, {0x2868,13}, {0xc0c1,6}, {0x2658f,4}, + {0x2aa6b,8}, {0x5787,8}, {0x21d1c,7}, {0x3d34,10}, {0x1bb95,6}, {0x14d0e,8}, {0x358a,10}, {0x1c837,6}, + {0x1a75d,9}, {0x2d82d,4}, {0x15004,10}, {0x258b,5}, {0x1d115,8}, {0x27c63,4}, {0x188bc,9}, {0x82f6,9}, + {0x1c885,8}, {0x19407,4}, {0x21fa7,7}, {0x1a514,8}, {0x1f331,8}, {0x14526,10}, {0xcad7,11}, {0x1f569,8}, + {0x2d254,3}, {0x29d7e,5}, {0x28658,5}, {0x6518,8}, {0x2a233,5}, {0x1f2bb,3}, {0x232b0,7}, {0x1b2a6,2}, + {0x26e99,6}, {0xba63,5}, {0x2c71c,4}, {0x29c0f,5}, {0x1a876,7}, {0x26081,6}, {0x9bfe,11}, {0x71c4,5}, + {0x1b33d,8}, {0x1563a,7}, {0x169bd,6}, {0xa2c0,3}, {0xc6cd,11}, {0xaeb2,12}, {0xccb,3}, {0x107b0,10}, + {0xdef3,11}, {0x10049,4}, {0x21cae,4}, {0x277ed,6}, {0x2b697,4}, {0x9ea5,5}, {0x31a8,14}, {0x100ce,10}, + {0x27289,5}, {0xab76,12}, {0x2395e,7}, {0x1da4d,7}, {0x12ac,16}, {0x13a4,3}, {0x29011,5}, {0x20ccf,5}, + {0x1952e,9}, {0x8632,12}, {0xb03c,11}, {0x18dba,9}, {0x1fb53,6}, {0x21b7f,7}, {0x23b2c,7}, {0x10cca,4}, + {0xcc4d,7}, {0x249bd,12}, {0x28c92,5}, {0x1ced5,8}, {0x1657a,9}, {0x1f243,4}, {0x23c05,7}, {0xf21d,7}, + {0x230eb,3}, {0x180aa,4}, {0x3ed6,9}, {0x10bc2,10}, {0x2cff5,3}, {0x25f33,6}, {0x3fb6,13}, {0x6787,7}, + {0x2d0bf,3}, {0x2ba1a,6}, {0x1a1cd,9}, {0x1bed,15}, {0x2b199,4}, {0x10d39,5}, {0x20a69,7}, {0x823c,6}, + {0x6026,10}, {0x1b4e3,8}, {0x2b3dd,4}, {0x19f47,4}, {0x2d572,3}, {0x2e60,14}, {0x2d323,3}, {0x188fb,9}, + {0x121ac,10}, {0xc5b8,11}, {0x946,7}, {0x265d,5}, {0x151ee,10}, {0x23470,7}, {0x1fe99,8}, {0x1059e,10}, + {0x1eee3,6}, {0x2af99,4}, {0x119e6,10}, {0x24416,7}, {0x1d11d,8}, {0x3d4e,14}, {0x25d2f,6}, {0x2973d,5}, + {0x1499a,9}, {0x14942,6}, {0x4b3a,11}, {0x28245,5}, {0x6742,8}, {0x12b52,5}, {0x2ae3f,5}, {0x2759b,5}, + {0x28f21,5}, {0x2af25,4}, {0x2ae45,6}, {0x1c23d,8}, {0x2d2c0,3}, {0x21f4e,5}, {0xfa46,4}, {0x2c638,4}, + {0xc248,11}, {0x2b02,6}, {0x16e1e,4}, {0xcf91,11}, {0x17ce3,9}, {0x29400,5}, {0x1182e,10}, {0xbd0a,11}, + {0xf351,7}, {0x26375,6}, {0x2d296,3}, {0x1c05d,8}, {0x25039,2}, {0xc890,7}, {0x242cf,5}, {0xfc80,11}, + {0x1ab07,4}, {0xf721,5}, {0x15c66,9}, {0x27f27,5}, {0x2b7c0,3}, {0x2f0f,7}, {0x1f40e,3}, {0x21fdf,7}, + {0x181ab,9}, {0x23661,7}, {0x22270,3}, {0x200db,6}, {0x13fc2,10}, {0x283bc,5}, {0x2d8cd,4}, {0x2aa33,8}, + {0x16544,6}, {0xb4ac,7}, {0x1f631,8}, {0x212bc,7}, {0x1f399,7}, {0x2d861,4}, {0x8386,12}, {0x3f46,7}, + {0xc8c,3}, {0x21751,7}, {0x25c7b,6}, {0x1a4a8,8}, {0x24b51,6}, {0x1f879,5}, {0x2d05d,3}, {0x26d10,2}, + {0x27ca3,6}, {0xa15c,6}, {0x1c255,8}, {0x293f1,5}, {0x2ccec,6}, {0x2bb9e,4}, {0x2d443,3}, {0x1d0dd,8}, + {0x28a2a,5}, {0x197d,3}, {0x29284,5}, {0x2a2ba,5}, {0x28da,2}, {0x29446,5}, {0xd8ce,11}, {0x19ed9,8}, + {0x75ca,12}, {0x12aea,4}, {0x714a,12}, {0x26e2d,5}, {0x28376,4}, {0x1b6b9,4}, {0xb78a,11}, {0x18d6,11}, + {0x14050,3}, {0x67f8,13}, {0xc98d,11}, {0x1c0b,15}, {0x2a154,3}, {0x28908,7}, {0x532,86}, {0x1b855,14}, + {0x19cfc,9}, {0x19777,9}, {0x8a82,12}, {0x1eff3,6}, {0x249ed,12}, {0x12ea4,10}, {0x2b82e,4}, {0x28617,5}, + {0x11950,10}, {0x29ce1,5}, {0x1145a,10}, {0x146f2,10}, {0x2453d,12}, {0x28de1,4}, {0xaef3,7}, {0x2db00,2}, + {0x30,138}, {0xd608,6}, {0x2c26e,4}, {0x2ba4a,6}, {0x1279c,10}, {0x1d0e5,8}, {0x2bf92,4}, {0x1d9a7,8}, + {0x19753,9}, {0x2c416,6}, {0x1fc59,6}, {0x14dae,6}, {0x29a57,5}, {0x1f811,8}, {0x2a8d1,2}, {0x1f559,8}, + {0xf5bb,11}, {0x2b0d9,4}, {0x1ec01,8}, {0x2c6b0,6}, {0x23756,7}, {0x2cfd7,3}, {0x16989,5}, {0x3b72,14}, + {0x14be0,10}, {0x10673,4}, {0x6e39,11}, {0x17118,9}, {0x27793,6}, {0x15e4c,9}, {0x1abd7,3}, {0x14c0a,8}, + {0x2a350,5}, {0x27175,6}, {0x292bb,5}, {0x1f421,8}, {0x2c956,6}, {0x74b6,12}, {0x24fd3,4}, {0x24fd9,6}, + {0x2a037,3}, {0x2aa83,8}, {0xace0,10}, {0x29457,3}, {0x29953,5}, {0x18808,9}, {0x23009,7}, {0x2d0f6,3}, + {0x28f8f,5}, {0xdfe,17}, {0x1436e,10}, {0x2a2d0,3}, {0x28d42,5}, {0xa2c5,5}, {0x37ec,6}, {0xc58c,11}, + {0x2703d,6}, {0x27a2a,3}, {0x260c5,8}, {0x23c4f,3}, {0x410c,10}, {0x2c4d6,4}, {0x1775c,9}, {0xefe1,5}, + {0x1f061,7}, {0x1d88,2}, {0x10d34,10}, {0x1877c,5}, {0x24ba5,6}, {0x1343e,8}, {0x966a,6}, {0x2cd22,6}, + {0x251a4,3}, {0x27055,6}, {0x155a6,8}, {0x3a6b,4}, {0x29243,5}, {0x11146,7}, {0x2d3b4,3}, {0x1fa79,8}, + {0x1afae,4}, {0x171d5,9}, {0x131f6,10}, {0x273d3,6}, {0x1af3d,6}, {0x24759,12}, {0xac5a,12}, {0xa26f,7}, + {0x2a40e,5}, {0x1daed,7}, {0x29ceb,5}, {0x1b25b,5}, {0x2481d,8}, {0x2af75,4}, {0x28062,5}, {0x18d0f,9}, + {0x3779,4}, {0x8bc6,12}, {0x239de,5}, {0x216f4,7}, {0x3ff0,10}, {0x2aca3,8}, {0x2a229,5}, {0x2ce9b,5}, + {0x16e19,9}, {0x10ec,3}, {0x1e297,8}, {0x4fca,9}, {0x2d35c,3}, {0x218c4,7}, {0x277a5,6}, {0x10828,8}, + {0x1efa1,7}, {0x20043,6}, {0x224e6,7}, {0x2c93e,6}, {0x15845,9}, {0xbfa9,11}, {0x4add,13}, {0x927a,12}, + {0x2b571,4}, {0x2aec5,4}, {0x9ebc,6}, {0x268bd,4}, {0x29455,5}, {0x20bb4,7}, {0x29985,5}, {0x2d3c8,3}, + {0x2cbf,11}, {0x11694,10}, {0x262e,15}, {0x5a40,13}, {0x77ae,8}, {0x2c404,6}, {0x1fa03,5}, {0x12d46,9}, + {0xdd40,6}, {0x250e1,6}, {0x27eeb,5}, {0x4b31,4}, {0x2b783,3}, {0x22c47,7}, {0x210fc,7}, {0x175a3,9}, + {0x11374,10}, {0xae0d,9}, {0x25ce1,6}, {0xed68,3}, {0x29994,5}, {0x19540,9}, {0x12413,4}, {0xa61e,12}, + {0x166f4,9}, {0x2db98,2}, {0x28f67,5}, {0xe6e6,11}, {0x27f22,5}, {0x1c415,8}, {0xf372,11}, {0x106bb,5}, + {0x19f45,9}, {0x400a,14}, {0x1f1d3,6}, {0x2c79a,6}, {0x27051,2}, {0x3944,9}, {0x15f5a,9}, {0xedf4,9}, + {0x42ba,14}, {0x280fb,5}, {0x2a391,5}, {0x16101,9}, {0x29839,5}, {0x1c07d,8}, {0x6da8,13}, {0xc86f,11}, + {0xb10d,11}, {0x26753,3}, {0x4e12,11}, {0x48c8,13}, {0xd248,9}, {0x15b1b,9}, {0x240b2,7}, {0x2bf9a,4}, + {0x291bf,5}, {0x2b99c,6}, {0x319a,14}, {0x28d56,5}, {0x2572b,6}, {0x29a70,5}, {0x1aa09,9}, {0x24a8,15}, + {0x2d3fe,3}, {0x141fe,8}, {0x23b97,4}, {0x2296,5}, {0x14bcc,5}, {0x1e937,8}, {0x1ce38,5}, {0x1ed79,5}, + {0x1f154,5}, {0x1d96f,6}, {0x163f7,9}, {0x8752,12}, {0x172f5,11}, {0x77fe,12}, {0x3270,4}, {0x2c106,4}, + {0x26a01,4}, {0x26655,6}, {0xbe07,9}, {0x1fd4,6}, {0x523a,13}, {0x32f8,14}, {0x245c1,12}, {0x699c,9}, + {0x1c7fd,8}, {0x17aa1,9}, {0x133c6,6}, {0x137b8,8}, {0xf62d,2}, {0x16370,9}, {0x21b01,7}, {0x26009,4}, + {0x15966,8}, {0x2d66e,3}, {0x2da53,2}, {0x185e3,9}, {0x242db,7}, {0x2cdac,6}, {0x20d55,7}, {0x2cd70,6}, + {0x1f0a9,8}, {0x2866f,5}, {0x24aab,5}, {0x149cc,10}, {0x2d54b,3}, {0x28ac0,7}, {0x27289,6}, {0x2d293,3}, + {0x21f68,7}, {0x29a16,5}, {0xb38b,11}, {0x2158b,4}, {0x269b1,6}, {0xfbba,11}, {0xcf9c,11}, {0x18841,3}, + {0x16b7d,9}, {0x268ff,4}, {0x2c506,6}, {0x2d1fd,3}, {0x1d917,8}, {0x801a,12}, {0x90e4,4}, {0xaa4c,10}, + {0x2c3b0,6}, {0x27a41,4}, {0x18327,6}, {0x1a03a,3}, {0x206fd,4}, {0xe6e0,5}, {0x24328,7}, {0x72fa,12}, + {0x1cb37,6}, {0x15a4c,9}, {0x1b44f,4}, {0x28a64,5}, {0x4370,8}, {0xe8b4,11}, {0x2cbfc,4}, {0x1a57c,4}, + {0xaff6,11}, {0x27f5e,5}, {0x24383,7}, {0x27f3b,5}, {0x1f951,5}, {0xc9f0,11}, {0x2c138,2}, {0x2db2c,2}, + {0x189d5,6}, {0x26c53,6}, {0x2b4c9,4}, {0x20505,6}, {0x107c4,10}, {0xcb5b,11}, {0x21134,7}, {0x226f5,5}, + {0x29f56,3}, {0x27885,4}, {0x29bab,5}, {0x2b495,4}, {0x196ba,9}, {0x19f8,6}, {0x3c1c,7}, {0x18067,9}, + {0xf83b,4}, {0xa830,4}, {0x2a44a,5}, {0x2bb2,14}, {0xf990,11}, {0x8524,6}, {0x1ca2d,7}, {0x1ef61,8}, + {0x112b8,8}, {0x19ed0,8}, {0x1acc7,9}, {0x2b451,4}, {0x2771b,6}, {0x28b9d,5}, {0x1280a,10}, {0x1ac5b,9}, + {0x5191,13}, {0x28e8,14}, {0x1f6eb,3}, {0x59be,13}, {0x1a7b7,9}, {0x28a20,5}, {0x15298,10}, {0x16bc,16}, + {0x14738,10}, {0x29e37,5}, {0x1ae2,9}, {0x155e0,10}, {0x2a3aa,5}, {0xc5d9,11}, {0x8ba2,12}, {0xf09c,6}, + {0x253df,10}, {0x14cf8,10}, {0x28a9d,5}, {0x9ade,12}, {0x4d54,6}, {0xba15,5}, {0x172ec,9}, {0x28683,5}, + {0x2c46a,6}, {0x2c302,4}, {0x181c0,6}, {0x27e78,3}, {0xce0,3}, {0x25063,6}, {0x11ef,4}, {0x193d,5}, + {0x29b1a,5}, {0x1c6c8,5}, {0x40de,12}, {0x1f251,8}, {0x270e1,2}, {0x2a919,5}, {0x1325a,10}, {0x1a808,9}, + {0x65a2,13}, {0x19807,9}, {0x2741,3}, {0x52f5,5}, {0x29e3e,3}, {0x1a4e3,3}, {0x45e3,13}, {0x17220,4}, + {0x22580,7}, {0x8db2,7}, {0x1f45b,3}, {0x8506,12}, {0xaa9e,8}, {0x1d2f5,8}, {0x12424,8}, {0x1a783,4}, + {0xa4ce,12}, {0x2986,10}, {0x2a2ec,5}, {0x2c126,4}, {0xd674,5}, {0x233cf,7}, {0x252ad,10}, {0x27c49,6}, + {0x1482a,4}, {0x14148,10}, {0x24106,7}, {0x28367,5}, {0x233ba,7}, {0x12a86,4}, {0x6761,4}, {0x1b4d3,8}, + {0x1b0b7,9}, {0x2ad63,8}, {0x326c,14}, {0x2da6e,2}, {0x2a2e2,5}, {0x2b09b,4}, {0x15554,6}, {0x16245,9}, + {0xba8c,11}, {0x1193e,5}, {0x25009,6}, {0x498f,5}, {0xbb52,10}, {0x2c566,6}, {0xd001,6}, {0x2bcd2,4}, + {0x293c4,5}, {0x2644d,6}, {0x14f78,10}, {0x297f8,5}, {0x2d6f2,3}, {0x19eeb,9}, {0x7e24,10}, {0x1f129,8}, + {0x2aed9,4}, {0x255c,15}, {0x1e6d9,6}, {0xf33d,6}, {0x277d7,4}, {0x27481,6}, {0x29604,3}, {0x254b5,6}, + {0x14274,10}, {0x28a2,14}, {0x29df6,5}, {0x9e9,30}, {0x1731b,9}, {0x25da,8}, {0x2b743,4}, {0x12a3a,6}, + {0x2da97,2}, {0x8caa,12}, {0x1f373,6}, {0x19054,6}, {0x19885,9}, {0xaddc,10}, {0x18b32,9}, {0x24e33,6}, + {0x564c,4}, {0x23cf3,7}, {0xe2d1,11}, {0x7b0a,12}, {0x703a,12}, {0x2a2d3,5}, {0x1a2f6,9}, {0x2d278,3}, + {0x20b03,3}, {0x389a,9}, {0x2b1b3,4}, {0x4429,4}, {0x1490e,10}, {0x14eb0,10}, {0x209e4,5}, {0x21bc,13}, + {0x1e727,8}, {0x2ee3,5}, {0x25ea3,6}, {0x2471d,12}, {0x24999,12}, {0x2f08,14}, {0xa43e,12}, {0x29f65,3}, + {0x28473,5}, {0x19417,9}, {0x2dada,2}, {0x261b1,8}, {0x1d7ff,8}, {0x154fc,8}, {0x9fd6,12}, {0x12530,10}, + {0x2068a,7}, {0x2bf7e,4}, {0xe308,11}, {0x268a9,6}, {0x27a47,4}, {0x29f2,14}, {0x21d33,5}, {0xb01a,6}, + {0x2d43d,3}, {0x26c11,6}, {0x10bf,3}, {0x1e0ed,8}, {0x1a1c4,9}, {0xac8e,8}, {0x22b83,7}, {0x9e9e,12}, + {0xb0d5,4}, {0xf52a,11}, {0x127ee,8}, {0x286a1,5}, {0xf35c,11}, {0x280b9,7}, {0x231a8,5}, {0xa188,7}, + {0x1f1c9,8}, {0x12404,10}, {0x1ffeb,6}, {0x25c71,4}, {0xd7d,10}, {0x2380e,3}, {0x24e0f,6}, {0x6d76,11}, + {0x1abc2,9}, {0x331d,3}, {0x16517,9}, {0x238e1,4}, {0xd62f,11}, {0x216ca,7}, {0x237d4,7}, {0x1f639,4}, + {0x234fe,5}, {0x331d,4}, {0xf6a,4}, {0x1026c,8}, {0x7f7e,11}, {0x67be,6}, {0x1f801,8}, {0x29ffb,3}, + {0x78ca,9}, {0x1afbf,5}, {0x2997b,5}, {0x204a7,3}, {0x27111,4}, {0x18e65,9}, {0x29eca,3}, {0x12bca,10}, + {0x2b55d,4}, {0x8296,12}, {0x21284,7}, {0xe882,5}, {0x2a3b4,5}, {0x269ea,3}, {0x2d4a9,3}, {0x1627b,9}, + {0x2a3ff,5}, {0x8a3a,10}, {0x2b12d,4}, {0x10a1e,8}, {0x7c8a,12}, {0x13e28,10}, {0x620c,8}, {0x2af49,4}, + {0x2924f,3}, {0x2192,6}, {0xe6db,9}, {0x532,92}, {0x297c8,3}, {0x1010a,10}, {0x1d105,8}, {0x10114,10}, + {0x270f,15}, {0x23b27,5}, {0x47ac,6}, {0x1c855,8}, {0x6eac,13}, {0x27349,6}, {0x1181a,10}, {0x47c4,13}, + {0xf8e9,11}, {0x1e67a,5}, {0x2055d,6}, {0x1f22b,6}, {0x1cae5,8}, {0xbda4,11}, {0x5b1d,13}, {0x2d09e,3}, + {0x1995,15}, {0x29958,5}, {0x18a48,9}, {0x21e9d,7}, {0xcee3,8}, {0xfcb7,5}, {0x7a56,12}, {0x2d04b,3}, + {0x209e4,7}, {0x250c3,6}, {0x6a8f,13}, {0x2c4e8,6}, {0x1bc0f,6}, {0xa2ca,12}, {0x6e03,9}, {0x414e,14}, + {0xfe22,11}, {0xa0fc,6}, {0x1c55d,8}, {0x19d2b,7}, {0x2dab5,3}, {0xc295,7}, {0x2b101,4}, {0x194f,6}, + {0x12814,10}, {0x23f80,3}, {0x27e91,5}, {0x264cf,6}, {0x148a0,10}, {0x1459e,10}, {0x1053f,4}, {0x19d4d,5}, + {0x675e,4}, {0x1ac6,3}, {0x27c58,3}, {0x21a47,7}, {0x9142,12}, {0x1c1d,4}, {0x1c385,8}, {0x24669,12}, + {0xad94,4}, {0x2b289,4}, {0x218a1,7}, {0x107c6,7}, {0x1d947,8}, {0x26103,6}, {0x239dc,7}, {0x29f92,3}, + {0x2bfea,4}, {0x1aeee,3}, {0xaa0e,7}, {0x1f67b,6}, {0xa17e,4}, {0x1ba00,5}, {0x28e59,5}, {0x5664,13}, + {0x274bd,6}, {0x2a2d8,5}, {0x8056,8}, {0x2196e,7}, {0xb8ea,11}, {0x3c20,5}, {0x2a422,5}, {0x1e9af,8}, + {0xba45,5}, {0x9d17,7}, {0xffde,10}, {0x2cdca,6}, {0x1e52f,8}, {0x1b0ae,9}, {0x26553,6}, {0x4346,14}, + {0x27b59,6}, {0x23cad,7}, {0x10fb,17}, {0x2a2e7,5}, {0x5375,4}, {0x1198c,10}, {0xce5d,11}, {0xa2b4,8}, + {0x5ef5,6}, {0x6df6,13}, {0x20ac,15}, {0x24168,7}, {0xffe,8}, {0x2956f,5}, {0x28cf,11}, {0x126b6,10}, + {0x3528,14}, {0x18cac,8}, {0x1a73b,7}, {0x13aa6,6}, {0x1839a,9}, {0x273a5,4}, {0x1767b,9}, {0x5727,13}, + {0xca53,11}, {0x29d6f,5}, {0x43e3,3}, {0x1b265,8}, {0x1588d,6}, {0x6959,5}, {0xa822,12}, {0x1067,3}, + {0xce05,11}, {0x26f01,3}, {0x241b5,7}, {0x2450,6}, {0x247d1,12}, {0xddca,11}, {0x9e26,12}, {0x10576,10}, + {0x7d04,7}, {0x16024,5}, {0xa5e7,7}, {0x18835,9}, {0x5ce6,13}, {0x1dd7d,8}, {0x2329b,5}, {0x21a83,7}, + {0x2d7b1,4}, {0xf735,7}, {0x13be4,10}, {0x2d819,4}, {0x1ca1,15}, {0x9799,5}, {0x27a66,3}, {0xa15,8}, + {0x27f77,5}, {0x184a8,9}, {0x1a342,6}, {0x223c7,7}, {0x230cd,7}, {0x15a82,9}, {0x2a2bc,3}, {0x1abe8,7}, + {0x2612d,6}, {0x2c2be,4}, {0x151a8,6}, {0x57c3,13}, {0x6ec6,13}, {0x2a29e,3}, {0x1d10d,8}, {0x2b059,4}, + {0x20b91,7}, {0x2d094,2}, {0x23de1,6}, {0x29,5}, {0x13f72,6}, {0x27b6b,6}, {0x8872,12}, {0x18e46,3}, + {0xcfd,18}, {0x10d54,4}, {0x20958,7}, {0x1fc31,8}, {0x267b1,5}, {0x2862b,5}, {0x22ce8,7}, {0x150a4,10}, + {0xb916,11}, {0x1a541,6}, {0x15682,8}, {0xfce3,11}, {0x1e86f,8}, {0x1779b,9}, {0x262b1,4}, {0x2984f,3}, + {0x1e957,8}, {0xbd8,6}, {0x17a1c,4}, {0x2b617,4}, {0x20cb0,7}, {0x29e6e,5}, {0x151c,16}, {0x147f8,5}, + {0x28d38,5}, {0x67fa,6}, {0x30ac,14}, {0x230fe,6}, {0x1d7cf,7}, {0x23e58,7}, {0x15072,10}, {0x23dce,5}, + {0x1b423,8}, {0x166eb,9}, {0x13cf2,10}, {0x1dec7,8}, {0x846d,5}, {0x1b029,5}, {0x1f963,3}, {0x2333c,7}, + {0xce68,11}, {0x2c262,4}, {0xe0e2,11}, {0x1b433,8}, {0xaadc,10}, {0x24795,12}, {0x2cb48,6}, {0x167f4,5}, + {0x204db,8}, {0x1c3b7,4}, {0x1da4d,8}, {0x95ae,3}, {0x15fea,9}, {0x4096,14}, {0x2b0f,9}, {0x430,30}, + {0x1d5c,3}, {0x20a46,7}, {0x20a1c,7}, {0x21477,7}, {0x104e4,6}, {0x27aa1,4}, {0x6814,5}, {0x972a,12}, + {0x1427e,10}, {0x1cc95,8}, {0x12670,10}, {0x1d16d,8}, {0x2bdee,4}, {0x1dfaf,8}, {0xe263,11}, {0x22298,5}, + {0x1f311,5}, {0x1a9d3,5}, {0x27283,6}, {0x28e1d,5}, {0x1335e,10}, {0x1668,3}, {0x1cfc1,8}, {0xafd2,12}, + {0x14106,6}, {0x1c2a5,8}, {0x4998,13}, {0x951a,10}, {0x21be8,7}, {0x29b4c,5}, {0x28a55,5}, {0x2d0e1,2}, + {0x146ac,5}, {0x26fd7,6}, {0x2a369,5}, {0x1f2ad,3}, {0xa7b9,9}, {0x1f4e9,8}, {0x10f32,10}, {0x1f351,8}, + {0xe3e4,8}, {0x2a341,5}, {0x14936,5}, {0x2dae8,2}, {0x2b8b2,6}, {0x17da0,9}, {0x2618d,6}, {0x169fa,9}, + {0x2a181,3}, {0x1eee9,8}, {0x16637,9}, {0x16a30,9}, {0x1f341,8}, {0x14256,10}, {0x5277,3}, {0x15b3f,9}, + {0x13e32,9}, {0x21823,7}, {0x28b73,5}, {0x2d3bc,3}, {0x2a12a,5}, {0x2d1b8,3}, {0x244fb,4}, {0x2d52a,3}, + {0x1a66c,4}, {0x2c1ee,4}, {0x1f511,8}, {0x183c,30}, {0x20b69,5}, {0x229cd,7}, {0x2847d,5}, {0x1ce6d,7}, + {0x2b5e7,4}, {0x253b1,10}, {0x946,11}, {0x5bae,10}, {0x25071,2}, {0x1d425,8}, {0x20716,7}, {0xa38c,7}, + {0x14352,8}, {0x2da8f,2}, {0x14ff0,10}, {0x768a,12}, {0x1716,6}, {0x4116,6}, {0x284e,5}, {0x2ff8,8}, + {0x2a260,5}, {0x2d63e,3}, {0xaf38,5}, {0x2ce23,5}, {0x19ef2,2}, {0x98f5,4}, {0x1da5d,8}, {0x1bfd5,8}, + {0x41b0,6}, {0x28e31,5}, {0x20990,4}, {0x204a5,6}, {0x1a560,3}, {0x6d28,10}, {0x2a0be,3}, {0x4150,2}, + {0x21eea,7}, {0x1856e,9}, {0xe8f,3}, {0x29007,5}, {0x734,76}, {0x368c,8}, {0x1f909,8}, {0x1e307,8}, + {0x17fb3,9}, {0x4f07,13}, {0x29f33,3}, {0xc29b,5}, {0x1f261,8}, {0x2606f,6}, {0x1f2a,4}, {0x22683,7}, + {0x2a2ce,5}, {0x14b4a,9}, {0x756a,12}, {0x93b2,12}, {0x418e,2}, {0xdcda,8}, {0x1ff8,15}, {0x2a00,14}, + {0x2a0d5,5}, {0x24a09,8}, {0x7a92,12}, {0x2a3c8,5}, {0x27d71,10}, {0x26aa1,6}, {0x28fb7,5}, {0xaca4,4}, + {0x11786,8}, {0x2d8bd,4}, {0x19f96,9}, {0x26e9f,6}, {0x26c3b,6}, {0xffe8,10}, {0x110bc,3}, {0x22c01,7}, + {0x2a9e6,7}, {0x1a016,7}, {0x24531,12}, {0x22468,7}, {0x2c99e,6}, {0x29acf,5}, {0x21526,7}, {0xc67,4}, + {0xaf1e,6}, {0x2ae61,8}, {0x281d2,5}, {0x4769,13}, {0x1eda9,8}, {0x28fa8,5}, {0x19b16,9}, {0xd506,11}, + {0x1d1cd,8}, {0x2622b,6}, {0x2106e,7}, {0x22e49,7}, {0x192b1,6}, {0x26c0d,3}, {0x4bb4,3}, {0x3af6,10}, + {0x299f8,5}, {0x2ad3b,8}, {0x29e08,2}, {0x853c,4}, {0xc513,11}, {0x7642,12}, {0x28c37,5}, {0x2a29c,5}, + {0x100c4,10}, {0x13048,10}, {0x27f59,5}, {0x2a364,5}, {0x1b775,14}, {0x29371,3}, {0x1f259,8}, {0x2cef4,3}, + {0x432,41}, {0xb315,8}, {0x1fd51,8}, {0x10d7a,7}, {0x11234,10}, {0x2b4b9,4}, {0x1b3f3,8}, {0x97f6,12}, + {0x1ec19,8}, {0x19348,9}, {0x19da0,7}, {0x1735a,9}, {0x15194,10}, {0x281d7,5}, {0x2d347,2}, {0x12f99,4}, + {0x28218,5}, {0x2a1d4,5}, {0xba97,7}, {0x2a297,5}, {0x21268,7}, {0x129ce,8}, {0x2a224,5}, {0x124ba,8}, + {0xe86,9}, {0x119aa,10}, {0x2f6a,10}, {0x17ed6,5}, {0x277f,6}, {0x27025,6}, {0x226d0,7}, {0x2cf4,12}, + {0x91f9,7}, {0x1170c,10}, {0x27c40,3}, {0x2856d,3}, {0x28cd3,7}, {0xc8a6,11}, {0x17887,7}, {0x219ad,7}, + {0x23327,7}, {0xea2a,11}, {0x14936,10}, {0xc7a3,6}, {0xd9cb,11}, {0x1a6c6,7}, {0x411c,5}, {0x2a12f,5}, + {0x1957f,9}, {0x182d4,9}, {0x1a40f,9}, {0xe20b,11}, {0xd7e7,7}, {0xa944,5}, {0x1764e,5}, {0xdd46,11}, + {0x27e1d,2}, {0x1f0d1,8}, {0x29fa,4}, {0x14d16,7}, {0x24313,7}, {0x29f36,5}, {0x29275,5}, {0x2352f,2}, + {0x271db,6}, {0x2cab8,6}, {0xd829,11}, {0x31e0,12}, {0x24d7d,6}, {0x4d35,10}, {0x150dc,3}, {0x27d49,10}, + {0x870a,5}, {0x2d2de,3}, {0x21dfc,7}, {0xb1fb,4}, {0x2620d,6}, {0x169c9,4}, {0xb1b,21}, {0x6b3a,3}, + {0x2682f,6}, {0x1d0d7,6}, {0x1b1f3,8}, {0x27bf8,3}, {0x3629,2}, {0x19f57,9}, {0x1a3c7,9}, {0xb2e6,11}, + {0x2d2d8,3}, {0x19198,9}, {0x4b6c,13}, {0x1fd19,8}, {0x5dbb,3}, {0x290cf,5}, {0x13b3a,7}, {0x1cafd,8}, + {0xe9e8,11}, {0x2a11b,5}, {0x68bb,13}, {0x1057a,4}, {0x5adc,12}, {0x29b33,5}, {0x11cb6,5}, {0x89b6,7}, + {0x225aa,7}, {0x27e5f,5}, {0x8aca,12}, {0x7402,8}, {0x1af94,3}, {0x1d580,5}, {0x2c052,4}, {0x15f0b,7}, + {0xacd2,12}, {0x3012,6}, {0x1b3bf,6}, {0x206c9,7}, {0x2b6ab,4}, {0x1dc6f,5}, {0x870a,12}, {0xb44,20}, + {0x20f5d,7}, {0xb5e8,11}, {0x2d314,3}, {0x19b9d,9}, {0x2da35,4}, {0x2a2ee,3}, {0xf9f3,5}, {0x14ffa,10}, + {0x789a,5}, {0x237e9,7}, {0x1ea3f,8}, {0xf558,11}, {0x2b549,4}, {0x28428,5}, {0x4011,4}, {0x12deb,3}, + {0x1ab85,7}, {0x224f4,7}, {0x2b95c,4}, {0x2869c,5}, {0xaa86,6}, {0x13d88,10}, {0x19954,9}, {0x209a5,7}, + {0x1c2e5,8}, {0x285d0,2}, {0x235ad,5}, {0x129fe,10}, {0x4d40,13}, {0x1307a,10}, {0xf634,11}, {0x10a84,7}, + {0x28b31,5}, {0x12080,10}, {0x96c3,7}, {0x27229,6}, {0x26027,6}, {0x2d037,3}, {0xa7da,7}, {0x1c355,8}, + {0x26ca3,3}, {0x9b26,12}, {0x2cf0c,3}, {0x20099,8}, {0x2db76,2}, {0x17495,9}, {0x2cc98,6}, {0x27e2d,5}, + {0x28cb0,5}, {0xd84a,11}, {0x283e9,5}, {0x2aee5,4}, {0x20f87,7}, {0x2900c,5}, {0x27b65,6}, {0x148e6,10}, + {0x227f,9}, {0x20f48,7}, {0x1f29c,5}, {0x24096,7}, {0x8182,12}, {0x24789,12}, {0x2d542,3}, {0xfcc8,5}, + {0x2668b,6}, {0x20a2c,4}, {0x2aee4,3}, {0x27271,6}, {0x18fc4,9}, {0x2d0fe,3}, {0x27b19,4}, {0x187f6,9}, + {0x2b3ad,4}, {0xb14f,5}, {0x14dd4,10}, {0x1fdbb,6}, {0x2eee,9}, {0x10dff,5}, {0x8626,11}, {0x2b441,4}, + {0x174dd,9}, {0x17064,9}, {0x27d9f,10}, {0x18943,9}, {0x2d33e,3}, {0x15dc,16}, {0x105d0,10}, {0x1cf41,4}, + {0x20dfd,7}, {0x29ac2,3}, {0x2b62b,4}, {0x2d2ae,3}, {0x2a005,3}, {0x29926,4}, {0x6681,4}, {0x1ad33,9}, + {0x2078d,7}, {0x26c59,6}, {0x2ca70,6}, {0x211b9,7}, {0x6c24,6}, {0xe4ec,11}, {0x25987,6}, {0x1b05f,5}, + {0x194c,4}, {0x9f8e,7}, {0x1f63c,5}, {0xfece,6}, {0x2a134,5}, {0x28c0d,5}, {0x4812,13}, {0x1e58f,8}, + {0x1cabf,5}, {0x1d1ad,8}, {0x24861,12}, {0x126c2,7}, {0x19471,9}, {0x12b70,10}, {0x2603b,4}, {0xb47d,5}, + {0x1a898,9}, {0xee60,11}, {0x275b9,6}, {0x22b3b,7}, {0x564a,13}, {0x10814,10}, {0x12ed6,10}, {0x1b99d,8}, + {0x28d60,5}, {0xf5e7,11}, {0x29211,5}, {0x16296,9}, {0x178e1,7}, {0x1b6be,5}, {0x283df,5}, {0x873a,12}, + {0x199c0,9}, {0xeaae,11}, {0x5d82,13}, {0x723a,12}, {0x23b74,5}, {0x2989f,5}, {0x14b7c,10}, {0x1f6e1,8}, + {0xf1db,11}, {0x29466,3}, {0x174b0,9}, {0xf411,6}, {0x31c4,10}, {0x1f58b,4}, {0x16f83,9}, {0x19c99,9}, + {0x1290e,10}, {0x16963,4}, {0x1ef71,8}, {0x1a7c0,9}, {0x145a5,2}, {0x300a,5}, {0x6366,13}, {0x16304,9}, + {0x2aef0,3}, {0x27f18,5}, {0x930c,3}, {0x2d0b3,3}, {0x29c4d,3}, {0x532,90}, {0x12bc0,10}, {0x2bb72,4}, + {0x2d069,3}, {0x299cb,5}, {0x1560b,7}, {0x6c99,4}, {0x7972,12}, {0x144f6,8}, {0x1a491,3}, {0x20b9f,7}, + {0x1bdc5,8}, {0x7c72,12}, {0x249d9,8}, {0x792a,12}, {0x20adc,4}, {0x1dacd,5}, {0x2a90c,3}, {0x1d0ed,8}, + {0x2272b,7}, {0x2c776,6}, {0x29266,5}, {0x2cd16,6}, {0x251b3,6}, {0x2d305,3}, {0x1b6cb,8}, {0x2966,14}, + {0xa066,12}, {0x12468,10}, {0x2a921,2}, {0x1bdf5,8}, {0x177da,9}, {0xdbe6,9}, {0x92f2,12}, {0xc99d,5}, + {0xe8ab,7}, {0xf919,5}, {0x6067,13}, {0x158a8,9}, {0x2c08e,4}, {0x705e,12}, {0xf5a7,3}, {0x190a5,9}, + {0x27e14,5}, {0x2d38f,3}, {0x212ae,7}, {0x23b67,4}, {0x109e2,10}, {0xacf0,6}, {0xc1cf,11}, {0x19b8b,4}, + {0x2bf7a,4}, {0x2afb7,4}, {0x2d404,3}, {0x2b1dc,3}, {0x20de8,7}, {0xa83a,5}, {0x248f1,12}, {0x7bee,12}, + {0x4e85,13}, {0x2d474,3}, {0x179ce,2}, {0x2c332,6}, {0x3090,14}, {0xfc28,6}, {0x2b77f,4}, {0x2c96e,6}, + {0x7d6e,12}, {0x2bc78,2}, {0x14731,7}, {0x2592b,4}, {0x289a0,7}, {0x1cd75,8}, {0xf5e9,5}, {0x2da39,2}, + {0x6373,13}, {0x3a86,11}, {0x4bd4,13}, {0x284ff,5}, {0x1ffe1,8}, {0x1cc6d,8}, {0x2520a,6}, {0x1dfa7,8}, + {0x23abe,4}, {0x1561e,8}, {0xb5b1,8}, {0x73e0,5}, {0x12d14,10}, {0x29329,5}, {0x27d67,10}, {0x6f2e,5}, + {0x31a4,4}, {0x2b51d,4}, {0x2bc66,4}, {0x20a93,7}, {0x1fa0b,4}, {0x2e8a,14}, {0x2d1cd,3}, {0x16cc,16}, + {0x27bc2,3}, {0x2716f,6}, {0x165c,16}, {0xf85,17}, {0x1c87d,8}, {0x27f2,8}, {0x2db26,2}, {0x4e1d,13}, + {0x12cb2,4}, {0xe78,4}, {0x2a050,3}, {0x20011,8}, {0x16f4d,9}, {0x22c40,7}, {0xd1a1,11}, {0x2c3b6,6}, + {0x2da5b,2}, {0x1ef99,6}, {0x29df1,5}, {0xb20a,11}, {0x1875d,9}, {0x1e2ff,8}, {0x276d5,3}, {0x14922,10}, + {0x2c40a,6}, {0x2ce46,5}, {0x599c,3}, {0x23a0f,3}, {0x23250,5}, {0x15b24,9}, {0xe31,17}, {0x128d2,10}, + {0x1969f,9}, {0x288dc,5}, {0x21b6a,7}, {0x1f6f3,6}, {0x20a5b,7}, {0x14724,10}, {0x15941,9}, {0x8dcc,6}, + {0x262c1,6}, {0xfb8e,11}, {0x23901,7}, {0x1c33d,7}, {0x12e0e,10}, {0x2d227,3}, {0x20c26,5}, {0x8866,8}, + {0x16b50,9}, {0x7876,12}, {0x12314,10}, {0x2780b,6}, {0x1852f,9}, {0x1106e,4}, {0x268d5,4}, {0x1079c,10}, + {0x2c84,13}, {0x484b,8}, {0x12f32,5}, {0x14260,10}, {0x2340,9}, {0x2060c,5}, {0xf7c,7}, {0x1d475,8}, + {0x202bb,6}, {0x2d801,4}, {0x728e,12}, {0x21676,7}, {0x1deb,15}, {0x8436,4}, {0x27799,6}, {0x29aa2,5}, + {0x277c3,6}, {0x2106,15}, {0x28b84,5}, {0x17a8f,8}, {0x29aed,5}, {0x1b6b1,3}, {0x3782,14}, {0x22d7e,5}, + {0x223f8,7}, {0x358a,14}, {0x2b8d6,6}, {0x1dc25,8}, {0x1b863,14}, {0x3c7e,7}, {0x242f0,7}, {0x2511d,6}, + {0x222d0,7}, {0x220e2,6}, {0x20403,6}, {0xaf38,3}, {0x1a54a,5}, {0x432,42}, {0x2dade,2}, {0x432,112}, + {0x6de9,10}, {0x2d4ba,3}, {0x16814,9}, {0x2195a,6}, {0x1107c,6}, {0x2d879,4}, {0x23ada,5}, {0x1f699,8}, + {0x2787,13}, {0x18739,9}, {0x22396,7}, {0xfefc,8}, {0x1d1e5,8}, {0x23eeb,7}, {0x26393,6}, {0xf5c6,11}, + {0x1ed9b,6}, {0xf641,7}, {0x25177,6}, {0xbb10,11}, {0x14dcc,7}, {0x1bded,8}, {0x1c48f,6}, {0xf459,11}, + {0xb335,9}, {0x26ee1,6}, {0x33f4,14}, {0x10d2a,10}, {0x2717b,6}, {0x1f59b,6}, {0x30,146}, {0x5dfb,3}, + {0xef3c,11}, {0x1af73,9}, {0x131a6,10}, {0x7f4e,12}, {0x1337c,10}, {0x1e030,5}, {0x4457,6}, {0x1608c,9}, + {0x22107,5}, {0x2c95c,6}, {0x4126,9}, {0x2d5e1,3}, {0x2c728,6}, {0x11f2c,10}, {0x133c,16}, {0x7c68,5}, + {0x20579,14}, {0x100f6,10}, {0x2a35f,5}, {0x19861,9}, {0x2f3a,4}, {0x18b36,5}, {0x2cf3f,3}, {0x5e0c,5}, + {0xa8f2,5}, {0x2a87a,3}, {0xd1d8,11}, {0x30db,4}, {0x9fc1,4}, {0x432,43}, {0x1c76d,8}, {0x2bda0,2}, + {0x25969,6}, {0x1032d,5}, {0x207be,7}, {0x2db0e,2}, {0xab46,12}, {0x1488,3}, {0x7d3e,8}, {0xb322,6}, + {0x26f6d,4}, {0x23fe2,5}, {0x11068,10}, {0x1bc85,6}, {0x9052,12}, {0xbd78,11}, {0x28577,5}, {0x273e5,6}, + {0xac12,12}, {0x243c2,7}, {0x29ebb,3}, {0x4282,14}, {0xb446,11}, {0x1573e,7}, {0xd359,11}, {0x27a4d,4}, + {0xa818,10}, {0x18cc7,8}, {0x2d596,3}, {0x2a1f2,5}, {0x18b44,9}, {0x1e9a9,4}, {0x80c8,6}, {0xb488,11}, + {0x1f003,3}, {0x1fbc6,3}, {0x2a085,5}, {0x233f9,7}, {0x29506,5}, {0x2a8ee,2}, {0x2925c,5}, {0xfa8f,6}, + {0xf490,11}, {0x1c597,6}, {0x1566c,7}, {0x1c8a5,8}, {0x1e34f,8}, {0xefde,3}, {0x14e51,5}, {0x276e5,5}, + {0x4f26,5}, {0x251d1,9}, {0x284f5,5}, {0x29729,5}, {0x2bfa4,2}, {0x2da75,2}, {0x2909d,5}, {0x17052,9}, + {0x1bbad,8}, {0x10184,12}, {0x152f4,4}, {0x2502d,6}, {0x1ed0b,6}, {0x207a9,4}, {0x28bd6,3}, {0xf802,6}, + {0x7df7,4}, {0x2152d,7}, {0x152e8,10}, {0x60ee,8}, {0x487a,13}, {0x19a9a,7}, {0x3420,12}, {0x15e79,9}, + {0x24a9f,6}, {0x2772d,6}, {0x1a6d6,9}, {0x2815a,5}, {0x22abd,5}, {0x1dbdd,8}, {0x23dc5,7}, {0x13b12,10}, + {0x29257,5}, {0x22d7e,7}, {0x1da95,8}, {0x274ab,6}, {0x2922a,4}, {0x2c7d6,6}, {0x1426a,10}, {0x9318,5}, + {0x18c7f,9}, {0x229b8,7}, {0x16ff8,9}, {0x24ffd,6}, {0x2beb2,4}, {0x102f,17}, {0x27487,6}, {0x2adc3,6}, + {0xc1b,3}, {0x1e977,8}, {0x2ae82,3}, {0x3654,4}, {0x2ec2,14}, {0x13372,9}, {0x6095,6}, {0x14594,10}, + {0x1bead,8}, {0x24681,12}, {0x4d2a,3}, {0xf32,14}, {0x1efdb,6}, {0x29c0a,5}, {0x89f5,9}, {0xded,17}, + {0x2d2e7,3}, {0x23def,7}, {0x1a766,9}, {0x2a0e4,5}, {0xaba6,12}, {0x23844,7}, {0x33ea,10}, {0x14a76,10}, + {0x1a37f,9}, {0xd2a9,11}, {0x1a082,2}, {0x2874b,8}, {0x8422,12}, {0xcca5,11}, {0x27f90,5}, {0x2a003,5}, + {0x6d01,5}, {0x47fa,9}, {0x2c278,2}, {0x8c4c,10}, {0x9e0e,12}, {0x27a5a,3}, {0x1dc05,5}, {0x146ac,6}, + {0x14120,6}, {0x1e6ef,8}, {0x13435,7}, {0x2591d,6}, {0x203f1,8}, {0x16735,5}, {0x16fbb,4}, {0x10c44,10}, + {0x14a80,10}, {0x4d8e,13}, {0x1f0c9,8}, {0x20523,8}, {0x245a9,12}, {0x5630,8}, {0x99e2,8}, {0x1b4db,3}, + {0x7f96,11}, {0x2b37d,4}, {0x16507,4}, {0xd961,7}, {0x24b9b,4}, {0xd482,11}, {0x186e,10}, {0x16b62,9}, + {0x2bb8a,4}, {0x29f88,3}, {0x1cfc9,8}, {0xa05c,10}, {0x1f541,8}, {0xdefe,11}, {0x1cbcd,8}, {0xf8ca,5}, + {0x2abdb,8}, {0x1959a,9}, {0x13d3c,6}, {0x18742,6}, {0x2b0e5,4}, {0x1b3db,8}, {0x45f0,13}, {0x1dced,8}, + {0x6cff,13}, {0x1c735,8}, {0x289da,5}, {0x1021,3}, {0x12a4e,10}, {0x23dda,7}, {0x21960,5}, {0x1fdeb,6}, + {0x26c77,6}, {0x2c7ee,6}, {0x1ae70,4}, {0x20b6e,7}, {0x272bf,6}, {0x2b5f3,4}, {0x27c67,6}, {0x2978a,3}, + {0x1292c,10}, {0x7428,6}, {0x1e827,8}, {0x29bda,3}, {0x281f0,5}, {0xf277,3}, {0x4814,4}, {0x2b60b,4}, + {0x27409,6}, {0x6efa,13}, {0xbbcb,11}, {0x2ca94,6}, {0x24591,12}, {0x20732,7}, {0x16f3b,9}, {0x287ad,6}, + {0xd8fa,11}, {0x2a014,3}, {0x24d4d,6}, {0x20271,8}, {0x22340,7}, {0x19d97,6}, {0x742b,4}, {0x2b63c,3}, + {0x20db0,7}, {0x2c21a,4}, {0x23014,2}, {0x4699,13}, {0x1c90d,8}, {0x1bced,8}, {0xe048,11}, {0x6eed,13}, + {0x22771,7}, {0x9dd2,12}, {0x1f369,8}, {0xe88,9}, {0x1600e,9}, {0x9f9a,12}, {0x243ec,7}, {0xd0ba,11}, + {0xc37,5}, {0x8ae2,12}, {0x17ec,16}, {0xd3d2,11}, {0x14a5a,7}, {0x20804,7}, {0x20b39,5}, {0x2aa5b,8}, + {0xb4d5,11}, {0x1a33b,5}, {0x3fa8,14}, {0x43df,4}, {0x7d86,12}, {0x29cfa,5}, {0xe31e,11}, {0x198f3,7}, + {0x23e66,7}, {0x27fdb,5}, {0x2e6e,14}, {0x29eb4,5}, {0xa0e4,6}, {0x12724,6}, {0x2c362,6}, {0x116c,8}, + {0x159e9,9}, {0xa24c,2}, {0x21fc3,7}, {0x2da63,2}, {0x2a107,5}, {0xfdb4,10}, {0xb002,7}, {0x1849f,9}, + {0x9802,12}, {0x2af15,3}, {0xa27b,6}, {0x27a00,3}, {0x29c41,5}, {0xb971,4}, {0x1c92,5}, {0x1afa9,9}, + {0x152d4,5}, {0x26e99,5}, {0x44b8,13}, {0x5261,13}, {0x196c3,9}, {0x7758,6}, {0x19e2,3}, {0x1bb9d,8}, + {0x2d545,3}, {0x1abb0,9}, {0xea43,3}, {0x1a545,4}, {0xd753,5}, {0x1378e,10}, {0x94de,12}, {0x1d66f,8}, + {0x1ef21,8}, {0x105c6,10}, {0x6450,13}, {0x2aedd,3}, {0x1feb3,5}, {0xa0ea,12}, {0xf98,7}, {0x16a0c,9}, + {0x29016,5}, {0x26e15,6}, {0xefec,11}, {0x1db7d,8}, {0x20131,8}, {0x2cce0,6}, {0x19bee,9}, {0x3fe0,14}, + {0x121ba,3}, {0x8596,12}, {0x29c37,5}, {0x150cc,10}, {0x169c8,5}, {0xba97,5}, {0x2af4a,3}, {0x20f19,5}, + {0x22f29,5}, {0x2db6b,2}, {0x2a2bf,5}, {0x25d35,6}, {0x248fd,8}, {0xacec,3}, {0x8111,4}, {0x16ec6,6}, + {0x7c2c,6}, {0x12058,10}, {0xc47b,8}, {0x2c5d2,6}, {0x28c1,4}, {0x2b1df,4}, {0x21a1d,7}, {0x24fc1,6}, + {0x73ec,4}, {0x2574f,6}, {0x15965,9}, {0x1f09b,6}, {0x50aa,4}, {0x118c8,5}, {0x2db2a,2}, {0x29547,5}, + {0x1808b,9}, {0x44ab,8}, {0x32c4,5}, {0x2bffe,4}, {0x26fc,4}, {0x2aef1,4}, {0x181b8,4}, {0x1db4d,8}, + {0x16448,8}, {0xe67d,6}, {0x1516c,10}, {0xf5f4,5}, {0x239ce,7}, {0x1a2d5,4}, {0x255f5,6}, {0x25a37,6}, + {0x2d39b,3}, {0x9afa,4}, {0x12096,6}, {0xb2a4,11}, {0x6a36,6}, {0x2d28a,3}, {0x2c25e,4}, {0x2b025,4}, + {0x7af2,12}, {0x2a11d,3}, {0x29e2f,3}, {0x24add,6}, {0x22347,7}, {0xc0b1,11}, {0xa890,10}, {0x29fba,3}, + {0x11c52,6}, {0x2ac33,8}, {0x137de,10}, {0x2c4a0,6}, {0x1e2a7,8}, {0xef05,11}, {0x10c96,8}, {0x23d1d,7}, + {0x142ba,6}, {0x1acdb,7}, {0x25f83,6}, {0x2ce2d,5}, {0x2bbde,4}, {0x13c2d,5}, {0x1e84f,8}, {0x28a13,3}, + {0x129a4,10}, {0x158cc,9}, {0x600e,8}, {0x1dea5,8}, {0x10e1a,10}, {0x18ba,4}, {0x29ca0,5}, {0x19c48,9}, + {0x2061,15}, {0x2a251,5}, {0x7606,12}, {0x11770,10}, {0x2258e,7}, {0x2b7f5,4}, {0x1e532,5}, {0x1d6ef,8}, + {0x203d9,8}, {0x5295,13}, {0x8b2a,12}, {0x28209,5}, {0x8a90,6}, {0x19633,8}, {0x2afad,4}, {0x1d95,10}, + {0x273e5,4}, {0x1737e,9}, {0x19b82,9}, {0x1ad3e,7}, {0x2447d,12}, {0x14733,5}, {0x1b3d,6}, {0x28bbd,3}, + {0x159bf,9}, {0xe42,17}, {0xa816,9}, {0x2c392,6}, {0x2fda,14}, {0x2c1fe,4}, {0x1b0e,4}, {0x2169b,5}, + {0x26505,6}, {0x1e99f,8}, {0x1fed9,6}, {0x2d789,4}, {0x172bf,9}, {0x82a2,12}, {0x147e,5}, {0x2a9ed,7}, + {0x25b37,6}, {0x42d6,14}, {0x116c,16}, {0x4c74,3}, {0x14710,6}, {0x7efc,10}, {0x182e6,9}, {0x4132,14}, + {0x16fb0,9}, {0x20b42,9}, {0x11a4c,8}, {0x20d47,7}, {0x2408,7}, {0x4f14,13}, {0x3b64,14}, {0x6bba,13}, + {0x2d899,4}, {0x11d38,10}, {0x20a41,5}, {0x25e0b,8}, {0x976a,6}, {0xa702,12}, {0x28ff3,5}, {0x9dbc,10}, + {0x19ba6,9}, {0x2ae81,4}, {0x15d8f,9}, {0x7216,10}, {0x27c34,3}, {0x2a288,5}, {0x2077f,7}, {0x28e40,4}, + {0x26a5f,6}, {0x296ed,5}, {0x1bcc5,8}, {0x1cd6d,8}, {0x181f5,6}, {0x13c16,7}, {0x24e2d,3}, {0x276d9,6}, + {0x28335,5}, {0x14fe,9}, {0x28371,5}, {0x1b2ce,3}, {0x254cd,6}, {0x15100,3}, {0x20b2e,9}, {0x27541,6}, + {0x24e87,6}, {0x1cb57,6}, {0x59e5,12}, {0x14f3c,10}, {0xb4e4,7}, {0xfe92,9}, {0x92fe,12}, {0x1f35,15}, + {0xad64,3}, {0x3f84,6}, {0x229f7,7}, {0x22da1,7}, {0x29735,3}, {0x1db22,3}, {0x9cb8,6}, {0x2686d,4}, + {0x245e5,12}, {0x2da6d,2}, {0x224d8,7}, {0x24e8d,4}, {0x15b2d,9}, {0x264d5,6}, {0x60de,10}, {0x2191f,6}, + {0x532,98}, {0x27537,4}, {0x1c93d,7}, {0x14382,10}, {0xf214,2}, {0x281d8,4}, {0x3f3e,4}, {0x20701,7}, + {0x2d578,3}, {0xe89,3}, {0x27eff,5}, {0x1ff71,8}, {0x27f31,5}, {0x205fe,7}, {0xa5be,12}, {0x2c97a,6}, + {0x2a2b5,5}, {0x21309,7}, {0x2d3a7,3}, {0x31a8,7}, {0x20441,8}, {0x1b101,7}, {0x2b11d,4}, {0x15a28,9}, + {0x23926,3}, {0x1b167,16}, {0x1fd73,6}, {0x271ed,6}, {0x29c52,3}, {0xc345,11}, {0xbad9,11}, {0x13340,10}, + {0x213ca,5}, {0x2c3a4,4}, {0xa80c,2}, {0x28920,5}, {0x936c,10}, {0x15ad3,9}, {0x281ff,5}, {0x2da85,2}, + {0x138ba,10}, {0x4568,4}, {0x2b055,4}, {0x2942d,5}, {0x1c0b5,8}, {0xd4b2,7}, {0x7c2,66}, {0x20b98,7}, + {0x2c32e,4}, {0x108c0,10}, {0x252a3,10}, {0xa10e,12}, {0x25b6f,8}, {0x16c0,4}, {0x19ca2,9}, {0x2b753,4}, + {0x4790,12}, {0x1eeb3,6}, {0x1fee9,8}, {0x2ad73,8}, {0x122f6,10}, {0x1abfa,3}, {0x18e0b,9}, {0x27e1,15}, + {0x25015,6}, {0x200a,3}, {0x2b5bf,4}, {0x1f269,8}, {0x15720,6}, {0xf9b1,11}, {0x2a0b2,5}, {0x1b8a1,8}, + {0xc2e9,4}, {0x1edb1,8}, {0x1d6e7,8}, {0x106b6,10}, {0xe9dd,11}, {0x18b68,9}, {0x295c9,5}, {0x106ca,10}, + {0x11c0c,10}, {0xaf12,12}, {0x2dac6,2}, {0x240d1,3}, {0x1d585,8}, {0x20ac4,7}, {0xaa4a,12}, {0x1c420,3}, + {0x2652f,6}, {0x2339e,6}, {0x3be2,12}, {0xd32d,11}, {0x17cf7,6}, {0x2b68f,4}, {0xa9f8,6}, {0x2d08c,3}, + {0x2688,15}, {0x2a1e8,5}, {0x1d125,8}, {0x2d31a,3}, {0x183be,9}, {0x12850,10}, {0x1b6bb,8}, {0x1ce3d,8}, + {0x25f9b,6}, {0x28446,5}, {0x29d38,5}, {0x1ba2,15}, {0x29f1a,3}, {0x15f51,9}, {0xd5f8,11}, {0x1ab0e,9}, + {0x20049,8}, {0x23a0f,5}, {0x103f2,8}, {0x284c9,3}, {0x28ef4,5}, {0x28c7d,7}, {0x2587f,6}, {0x10690,8}, + {0x2303c,5}, {0x27ff4,5}, {0x2c2aa,4}, {0x1a4de,9}, {0x2d66b,3}, {0x2d2cf,3}, {0x25c4b,6}, {0x1819b,7}, + {0x2c992,6}, {0x10afc,8}, {0x24e3f,6}, {0x248d9,12}, {0x25b25,5}, {0x2b335,4}, {0x1afbb,4}, {0x15cf1,5}, + {0x1a945,7}, {0x2d590,3}, {0x28d11,7}, {0x1d6ff,8}, {0xb40f,11}, {0x16a5f,6}, {0x2d8c9,4}, {0x16e34,9}, + {0x20151,8}, {0x2a210,5}, {0xcae2,11}, {0x122c4,10}, {0x1213e,10}, {0x687a,5}, {0x2b42d,3}, {0x16095,9}, + {0x13e78,10}, {0x1aabd,9}, {0x2537f,10}, {0x49cc,13}, {0x2d22a,3}, {0x12ec,16}, {0x144e,4}, {0x19ed2,5}, + {0x22eff,7}, {0x2d77d,4}, {0x1e7bf,8}, {0xb9e7,11}, {0x7fb4,6}, {0x25ffb,6}, {0x25267,10}, {0x1af61,9}, + {0x1dfd,3}, {0x2ae8d,4}, {0x2d7fd,4}, {0x16efa,9}, {0x193b4,9}, {0x1222,3}, {0x243af,5}, {0xc633,8}, + {0x9352,9}, {0x1a28a,9}, {0x14e76,2}, {0x28783,8}, {0x2af59,4}, {0x2e65,4}, {0x118c4,10}, {0x2a283,5}, + {0x46ee,4}, {0x19ac5,9}, {0x1dba5,8}, {0x14a1e,4}, {0x1e367,8}, {0x2a299,3}, {0x24a87,6}, {0x19a47,9}, + {0xba5,19}, {0x26b57,6}, {0xd59b,3}, {0x2d42e,3}, {0x28674,3}, {0xf2c4,9}, {0x7a11,9}, {0x2a166,5}, + {0x10eee,6}, {0x1f5e9,7}, {0xf3e2,3}, {0x1350e,9}, {0x9094,6}, {0xf9e,6}, {0x52af,13}, {0x1cfb3,4}, + {0x1eb91,8}, {0x2a24c,5}, {0x26817,6}, {0x18486,7}, {0x220d4,7}, {0x17151,4}, {0x258af,6}, {0x1aaec,3}, + {0x26bb7,6}, {0x20eb5,7}, {0x29ef2,3}, {0xd057,6}, {0x23278,7}, {0x7a9e,12}, {0x928c,4}, {0xf018,11}, + {0x13f90,10}, {0xd498,11}, {0x266e,11}, {0x2d59c,3}, {0x2da5f,2}, {0x1c09f,6}, {0x29c61,3}, {0x26637,6}, + {0x8134,6}, {0x26613,6}, {0x9e1a,12}, {0x2b763,4}, {0x2be9e,4}, {0x29048,5}, {0x2a21a,5}, {0x2b545,4}, + {0x240c9,5}, {0x1a553,9}, {0x21573,6}, {0x14a96,4}, {0x1306,3}, {0x2ad1b,8}, {0x320a,14}, {0x10e38,9}, + {0x426e,3}, {0x1d60d,8}, {0xf9bc,11}, {0x10b7,17}, {0x686d,12}, {0x1b5ab,8}, {0x268f3,4}, {0x83fe,11}, + {0x1c2cd,8}, {0x1dddd,8}, {0x11054,10}, {0x153f0,6}, {0x1df49,6}, {0x27b77,6}, {0xfada,11}, {0x15506,3}, + {0x1ee79,8}, {0x1c805,6}, {0x261e3,6}, {0x22228,7}, {0x24ea5,6}, {0x19f06,9}, {0x232c0,5}, {0x2b5cb,4}, + {0x1e54,5}, {0x22a5b,5}, {0x239e3,6}, {0x1fdb1,8}, {0xa8cc,6}, {0x19bca,9}, {0x17dfc,7}, {0x4429,13}, + {0x6144,9}, {0x295c4,5}, {0x292d4,5}, {0xbef2,7}, {0x2daf2,2}, {0x1cf1f,8}, {0x22f5a,7}, {0x12468,9}, + {0x5b6b,6}, {0x26559,6}, {0x15702,10}, {0xf4b1,11}, {0x17e42,9}, {0x26c1d,5}, {0x1b207,12}, {0x25961,8}, + {0x27d0c,6}, {0x23e43,7}, {0xf63,17}, {0x2d5e4,3}, {0x2c932,6}, {0x23f3f,6}, {0x10c12,10}, {0x26f2f,6}, + {0x1ab2,7}, {0x2a2c1,3}, {0x1e1c,3}, {0x22be5,7}, {0x1a646,6}, {0x249d5,12}, {0x29cf5,5}, {0x28bca,5}, + {0x24cf9,6}, {0x2af11,4}, {0x2b67f,4}, {0x29a4d,5}, {0x21e49,7}, {0x2c8d8,6}, {0xbdc5,11}, {0x2d26f,3}, + {0x6281,4}, {0x730b,7}, {0x17e93,6}, {0x1d9fd,8}, {0x23e89,7}, {0x15821,9}, {0x3e74,14}, {0x3f9f,9}, + {0x1faeb,3}, {0xf30f,11}, {0x14c9e,10}, {0x272a1,6}, {0x1652b,7}, {0x1ac0a,9}, {0x28eef,5}, {0x20121,8}, + {0x4489,8}, {0x2d7d5,4}, {0x1b55b,7}, {0x1ae5e,4}, {0x1dafd,7}, {0x1011e,10}, {0x29202,5}, {0x1c375,8}, + {0x5372,13}, {0x19ea5,4}, {0xb1f6,5}, {0x27081,3}, {0x2d27b,3}, {0x3053,4}, {0x22c32,6}, {0x29ae3,5}, + {0x8f7a,12}, {0x206fa,7}, {0xf8a7,8}, {0x1a24b,9}, {0x2c6e,8}, {0x8d16,12}, {0x110b8,10}, {0x259c5,6}, + {0x2caa0,6}, {0x15312,8}, {0x2d57e,3}, {0x2a0c1,5}, {0x2d1fa,3}, {0x98b9,9}, {0xaeee,12}, {0x2a27e,5}, + {0x2af09,4}, {0x28d85,3}, {0x220cd,7}, {0x2b683,4}, {0x390f,9}, {0x8d54,5}, {0x2ccce,6}, {0x18aae,4}, + {0x5331,13}, {0x8c7a,12}, {0x14d0c,10}, {0x12a26,9}, {0x26001,6}, {0x2bbfa,4}, {0x23f07,7}, {0xf492,5}, + {0x1ae5,3}, {0x28965,5}, {0x1391e,10}, {0x2b5f9,3}, {0x2cea0,5}, {0x26ec3,6}, {0x229dd,5}, {0x10476,6}, + {0xc33f,5}, {0x14adc,8}, {0x128c,16}, {0xfe50,4}, {0x1fc81,7}, {0x3838,6}, {0x12224,10}, {0x2a899,2}, + {0x1af58,5}, {0x2785f,6}, {0x145b2,10}, {0x8abe,9}, {0x2133d,4}, {0x17920,5}, {0x297ab,5}, {0x2b9e4,6}, + {0x227ef,7}, {0x2c2d6,4}, {0x150b8,7}, {0x295e9,5}, {0x2cb66,6}, {0x1e4df,8}, {0x2ae1f,6}, {0xab9a,5}, + {0x8acc,3}, {0x186f1,9}, {0x1a03d,4}, {0x5aba,8}, {0x247ad,12}, {0x2adc9,8}, {0x1bf35,8}, {0x21957,9}, + {0x2b5ff,4}, {0x1b020,6}, {0xb742,3}, {0x2861c,5}, {0x12477,5}, {0x2bdd4,2}, {0x1107c,5}, {0x16625,9}, + {0x146d4,10}, {0x17e54,9}, {0xf147,4}, {0x28240,5}, {0x27f45,5}, {0x1f071,8}, {0x96ee,12}, {0x1edf9,8}, + {0x12ef4,10}, {0x274a5,6}, {0x2378e,7}, {0x2358f,7}, {0x1931b,9}, {0x2ae99,4}, {0x11392,10}, {0x2ab13,8}, + {0x2971f,5}, {0x1ae2f,9}, {0x25799,6}, {0x2742d,6}, {0x1e767,8}, {0xf2b7,9}, {0xa584,9}, {0x276b5,6}, + {0x1f1d9,8}, {0x9826,12}, {0x3cc4,7}, {0x1be60,5}, {0xcfa7,11}, {0x6c31,8}, {0x906a,12}, {0x2ccd4,6}, + {0xf351,11}, {0x1449a,10}, {0x26381,6}, {0x127b0,10}, {0xe494,11}, {0x1ac6f,6}, {0x7fa2,12}, {0x1ebcb,6}, + {0x20d16,7}, {0x294c0,5}, {0x1e4ef,8}, {0x24da5,4}, {0x7852,12}, {0x2034,15}, {0x128e,3}, {0x1fda,15}, + {0x2254f,7}, {0x2c238,2}, {0x14c44,10}, {0xa261,5}, {0x222bb,7}, {0x1db1d,8}, {0x13562,5}, {0x11982,10}, + {0x21023,5}, {0x279be,3}, {0x259ef,6}, {0x1bdf5,7}, {0x1798a,9}, {0x199f6,9}, {0x1d3fd,7}, {0x26dd9,6}, + {0x27b89,6}, {0x26757,6}, {0x2d548,3}, {0x18043,9}, {0x1021a,10}, {0x17f3e,9}, {0x9b43,7}, {0x15819,6}, + {0x22c9b,7}, {0x5886,13}, {0x2d215,3}, {0xb002,12}, {0x2c878,6}, {0x2623d,6}, {0x28939,5}, {0x3e4a,14}, + {0x1f54b,6}, {0x266d9,6}, {0x2b5e8,4}, {0x253e,15}, {0x233eb,7}, {0x29620,5}, {0x13b3c,5}, {0x207ef,7}, + {0x2eef,5}, {0x5abc,6}, {0x8eba,12}, {0x2bc36,4}, {0x28bcf,5}, {0x26237,6}, {0x2c0b6,4}, {0xc91,11}, + {0x2a102,5}, {0x2bada,6}, {0x1cbe5,8}, {0x14ac,16}, {0xfd04,5}, {0x21ab4,7}, {0x27223,6}, {0x2bd76,4}, + {0x2a3be,5}, {0x12431,5}, {0x2d931,4}, {0xfd7f,5}, {0x10b18,8}, {0x27a53,4}, {0xf212,4}, {0x201e9,5}, + {0x3f38,14}, {0x273fd,6}, {0xe712,11}, {0xd2d7,9}, {0xc520,9}, {0xf8d5,9}, {0x2c0d6,4}, {0x19d3d,3}, + {0x23867,7}, {0x1215e,7}, {0x2ab4b,8}, {0x9a42,12}, {0x12f4e,9}, {0x2374f,7}, {0x14ad0,10}, {0x2db6c,2}, + {0x2ae01,6}, {0x1d78f,8}, {0xb609,10}, {0x29c75,3}, {0x224fb,7}, {0x1b871,14}, {0x1f2f1,5}, {0x2928e,5}, + {0x4790,13}, {0x2301e,7}, {0x22166,5}, {0x9034,5}, {0x2ca40,6}, {0xfcff,2}, {0x296c5,5}, {0xecbe,11}, + {0x2714d,4}, {0x1d335,8}, {0x28ba9,3}, {0x6f07,13}, {0xb614,10}, {0x16fe6,9}, {0x38ae,8}, {0x3a76,14}, + {0x639a,13}, {0x14b9a,10}, {0x102f9,7}, {0x4245,4}, {0x1e217,8}, {0x1bac5,8}, {0x6bd6,10}, {0x24b57,6}, + {0x21bcc,6}, {0x1f531,8}, {0x7b52,12}, {0x23249,5}, {0x1e2d7,8}, {0x299bc,5}, {0x2afbb,4}, {0xd8d0,3}, + {0x147a6,8}, {0x24df5,6}, {0x2819b,5}, {0x1b503,8}, {0x1fbb9,8}, {0x24e75,6}, {0x4106,16}, {0x1629f,9}, + {0x9ad4,5}, {0x4549,9}, {0x22972,7}, {0x90d6,11}, {0x15356,10}, {0x15266,10}, {0x2097b,3}, {0x153ec,10}, + {0x27e69,5}, {0x25dc1,6}, {0x2b04d,4}, {0x14bf6,7}, {0x1255,3}, {0x90b2,12}, {0x1eecb,6}, {0x1d295,8}, + {0x26f49,4}, {0x28094,5}, {0x74aa,12}, {0x6e87,11}, {0xba7,4}, {0x54f8,9}, {0x37b0,4}, {0x357c,14}, + {0x277e1,6}, {0x2a184,5}, {0x1513a,10}, {0x1aae1,5}, {0xc1ae,11}, {0x2d42b,3}, {0x2b4d9,4}, {0x23058,5}, + {0xacea,5}, {0x2a10c,5}, {0xe452,11}, {0x3f66,3}, {0x258f1,5}, {0x1087a,8}, {0x16176,9}, {0x21942,7}, + {0x1277e,10}, {0x1d275,8}, {0x2c0fa,4}, {0x2d128,3}, {0x284eb,5}, {0xfb3f,9}, {0xdf2a,10}, {0x25375,10}, + {0x2a9a2,2}, {0x1890d,9}, {0x30db,9}, {0x33dc,10}, {0x17241,9}, {0x6cff,12}, {0x2838a,5}, {0x132e6,10}, + {0x227b0,7}, {0x2a274,5}, {0x2c7d0,6}, {0x6853,13}, {0xa2ca,5}, {0x1c57d,8}, {0x16fb9,9}, {0xc5b,18}, + {0x1ca35,8}, {0x195fd,9}, {0x2a109,3}, {0x20fbf,7}, {0x2860d,5}, {0x2d59f,3}, {0x234fc,5}, {0x19aaa,8}, + {0x229c6,7}, {0x286fd,6}, {0x16328,9}, {0x26b23,4}, {0x3c52,14}, {0xc63e,11}, {0x1384c,9}, {0x29e87,4}, + {0x2d221,3}, {0x3a27,6}, {0x22c39,7}, {0x22a67,7}, {0xfafb,11}, {0x1595c,9}, {0x2910b,5}, {0x11c20,10}, + {0x270e5,6}, {0x1baa5,8}, {0x8956,12}, {0x107f8,8}, {0x1493d,3}, {0x2c440,6}, {0xd30c,11}, {0x1a636,3}, + {0x261dd,6}, {0x7b30,10}, {0x1b7e5,14}, {0x19078,9}, {0xf780,2}, {0x14b38,7}, {0x2cc3e,6}, {0x1ab44,9}, + {0x1d81f,8}, {0xafa8,4}, {0xf304,8}, {0x106a2,10}, {0x6b11,6}, {0xde9b,10}, {0xcbea,11}, {0x25947,6}, + {0x17267,6}, {0x274e7,6}, {0x17f5e,4}, {0x2c42e,6}, {0xeb69,11}, {0x437e,14}, {0x39c6,8}, {0xbb49,5}, + {0xd6a8,11}, {0x1fb01,8}, {0x1f37b,6}, {0x471b,13}, {0x2609f,6}, {0x12ddc,10}, {0x1fc19,8}, {0xb4a9,11}, + {0x7a40,4}, {0x17ef9,5}, {0x2a0a8,5}, {0xf8b4,8}, {0x20e7d,7}, {0x2970b,5}, {0x2090b,7}, {0xf0a7,7}, + {0xa3ae,9}, {0x201b9,8}, {0x1f2e1,8}, {0x2b3f1,4}, {0x2d206,3}, {0x16a66,9}, {0xea4d,4}, {0x27ef5,5}, + {0x1a8c,6}, {0x273eb,6}, {0x12dc,16}, {0x24aab,6}, {0x16ed8,5}, {0xc7e0,11}, {0x200f3,6}, {0xaf2a,12}, + {0x121c,16}, {0x27613,5}, {0x1e607,8}, {0x3e66,14}, {0x28331,4}, {0x18ebf,9}, {0xf6d9,6}, {0x2ce69,5}, + {0x2a1fe,3}, {0x2d41c,3}, {0x17d19,8}, {0x12940,6}, {0x27e1,7}, {0x22ba6,7}, {0xc458,11}, {0x15554,10}, + {0x1518a,10}, {0x1b81d,14}, {0xeab9,11}, {0x231c9,7}, {0xa882,8}, {0x238ee,5}, {0x171b1,9}, {0x312c,4}, + {0x1fb21,8}, {0x228f4,7}, {0x2d341,3}, {0x22d4f,5}, {0x24e03,6}, {0x2cf95,3}, {0x1a9d3,9}, {0x2a19d,5}, + {0x1be7d,8}, {0xde17,11}, {0x6b8f,4}, {0x145a8,10}, {0x6d26,13}, {0x2bdfe,4}, {0xb15a,11}, {0x174d4,9}, + {0x2b1d3,4}, {0x29501,5}, {0x2705b,6}, {0x274e9,4}, {0x1f18b,6}, {0x1eb17,10}, {0x8272,12}, {0x2981b,5}, + {0x20eca,6}, {0x6f30,11}, {0x2aab3,8}, {0x20b7c,7}, {0x25081,6}, {0x27825,4}, {0x10e42,10}, {0x28259,5}, + {0x2cdee,6}, {0x221aa,7}, {0x1c70d,8}, {0x16a8a,9}, {0xa47c,10}, {0x1424e,7}, {0x23304,5}, {0x16b50,8}, + {0x19da7,9}, {0x1b6bd,6}, {0x20cdc,7}, {0x1b57,6}, {0x2818c,5}, {0x9022,12}, {0x2d2d5,3}, {0x287ee,5}, + {0x23a22,7}, {0x153ec,5}, {0x24bd,3}, {0x4831,5}, {0x1a580,9}, {0x19c1d,2}, {0x1f3e9,6}, {0x21335,5}, + {0x7f4e,11}, {0x27eaa,5}, {0x195e2,9}, {0x1d747,8}, {0x126b2,4}, {0xff18,8}, {0x29194,3}, {0x200e9,8}, + {0x26f53,6}, {0x25c75,6}, {0x251c5,6}, {0x2d795,4}, {0x80ac,5}, {0x84fa,12}, {0x292b8,3}, {0x262f1,6}, + {0x2a285,3}, {0xaba8,2}, {0x2bf62,4}, {0x29e43,3}, {0x231d7,7}, {0x27a6b,4}, {0x18f22,9}, {0x1aee,10}, + {0x155cc,10}, {0x13d79,5}, {0x2389f,7}, {0x2cc08,6}, {0x8842,10}, {0x250be,3}, {0xadfe,12}, {0x1ac25,9}, + {0x26ca1,6}, {0x13f36,10}, {0x1a7b0,4}, {0xbd83,11}, {0x2340e,7}, {0x78ff,7}, {0x15c2a,4}, {0xd78f,11}, + {0x1bb4d,7}, {0x2a198,5}, {0xabd6,12}, {0xc47e,5}, {0x1210c,10}, {0xe71d,11}, {0x630b,13}, {0x1fe11,8}, + {0x22f5,15}, {0x26019,8}, {0x1ccb5,8}, {0x20698,7}, {0x1d1d7,6}, {0x1fd24,5}, {0x18e89,9}, {0x1d7c9,6}, + {0x24b33,6}, {0x196a8,9}, {0x6178,12}, {0x11f04,10}, {0xae0a,12}, {0x6681,8}, {0x1e38f,8}, {0x24561,12}, + {0x2a28a,3}, {0x29a52,5}, {0xcbdf,11}, {0x64df,9}, {0x1fdc1,8}, {0x6686,6}, {0x24b6f,6}, {0x16532,9}, + {0x432,44}, {0x2417d,7}, {0x23b17,7}, {0x51ad,5}, {0x1c9dd,8}, {0x2daa3,2}, {0x18e92,9}, {0xd4e5,11}, + {0x2cd9a,6}, {0x2b8be,6}, {0x24ae3,6}, {0x19c75,5}, {0x28132,5}, {0x296bd,3}, {0x214b8,4}, {0xf5f8,2}, + {0x25ef3,4}, {0x1a6fc,3}, {0x3ffc,8}, {0x2a99b,5}, {0x5be0,6}, {0x18715,9}, {0x11ec8,7}, {0x2060c,7}, + {0x2dbae,2}, {0x17ad7,9}, {0x1822c,6}, {0x142c0,4}, {0x28613,4}, {0x5ad4,5}, {0x26aa7,6}, {0xbfbf,11}, + {0x19bc1,5}, {0x27b7d,6}, {0x274b7,6}, {0x17407,7}, {0x12260,10}, {0x29597,5}, {0xafbc,10}, {0x22925,7}, + {0x2b7a,14}, {0x1fcab,6}, {0x2b2ad,4}, {0x1589f,9}, {0x2a262,3}, {0xf280,11}, {0x2be88,2}, {0x2c9f8,6}, + {0x18de9,7}, {0x26c4f,2}, {0x21975,7}, {0x9406,12}, {0x26e65,2}, {0x17566,7}, {0xfa2,5}, {0x2a111,5}, + {0x30,136}, {0x17390,9}, {0x17b55,9}, {0x26255,6}, {0x130d6,8}, {0x2bb74,2}, {0x14e06,10}, {0x4021,5}, + {0x14eec,10}, {0x2c89c,6}, {0xd67,2}, {0xf61e,11}, {0x1545a,10}, {0x24489,8}, {0x8902,9}, {0x14364,10}, + {0x1016c,18}, {0x18886,9}, {0x9534,4}, {0x78ab,3}, {0x2afc3,6}, {0x26127,6}, {0x2a242,5}, {0x1a35b,9}, + {0x1a43e,7}, {0x2773f,5}, {0x2bf02,4}, {0x27595,6}, {0x206ec,7}, {0x293fb,5}, {0xa7e1,5}, {0x2d44e,3}, + {0x167c,8}, {0x3a36,3}, {0x24e6f,6}, {0x25463,4}, {0xf613,11}, {0x18ab8,4}, {0x1ad45,9}, {0x2629d,6}, + {0x2c26a,4}, {0xeac4,5}, {0x18eec,9}, {0x29dc9,5}, {0x1f591,8}, {0x1843c,9}, {0x7b16,12}, {0x1bee5,8}, + {0x82c6,12}, {0xf6ce,11}, {0xe546,9}, {0x397c,11}, {0x258c7,6}, {0xedb0,11}, {0x1b1c3,8}, {0x2c7dc,6}, + {0x2d2bd,3}, {0x23397,7}, {0x2b369,4}, {0x21800,7}, {0x25df7,6}, {0x716e,12}, {0x8758,6}, {0xbcc8,11}, + {0x1eba9,8}, {0xda39,11}, {0x285b3,5}, {0x1bf6d,8}, {0x277db,6}, {0x2a1ed,5}, {0xdfb9,11}, {0x15ee5,9}, + {0x1a876,3}, {0x76a2,12}, {0x1c6ff,6}, {0x21f8b,7}, {0x2c0c2,4}, {0x2be06,4}, {0x621c,5}, {0x3560,14}, + {0x2d53f,3}, {0x1b017,7}, {0x161a5,7}, {0x20b0a,7}, {0x3dcc,14}, {0x25c81,6}, {0x20299,8}, {0x2b115,4}, + {0x21299,7}, {0x9b3e,12}, {0x4f9d,6}, {0x15376,8}, {0x1f29b,3}, {0x2bff2,4}, {0x1f0a1,8}, {0x2a067,5}, + {0x8656,12}, {0x22c5c,7}, {0x1f101,8}, {0x26d0d,6}, {0x1b197,16}, {0xa6f6,12}, {0x238af,2}, {0x2c03e,4}, + {0x28272,5}, {0x27577,6}, {0x15bf1,9}, {0x2b2d3,4}, {0xee1e,11}, {0x29875,5}, {0x12990,6}, {0x16ca1,7}, + {0x1e41f,8}, {0xfd1a,11}, {0xadc4,4}, {0x5b78,13}, {0x13fe0,10}, {0x1ebe9,8}, {0x2675d,6}, {0xf4bc,11}, + {0x2b1a1,4}, {0x2a028,3}, {0x1e557,8}, {0x27a59,4}, {0x139be,10}, {0x244ad,6}, {0x2b986,4}, {0x1fb61,8}, + {0x164fc,9}, {0x25401,5}, {0x15953,9}, {0x1f8f9,8}, {0x2675f,4}, {0xffd4,5}, {0x2c0a4,2}, {0x17226,9}, + {0xebed,5}, {0x23a99,7}, {0x1485a,6}, {0x1f13b,6}, {0x27649,6}, {0x23faf,7}, {0x6f62,24}, {0x11dce,10}, + {0x26c07,3}, {0x7b1c,5}, {0x21f45,7}, {0x2840,3}, {0x1346e,10}, {0x29a84,5}, {0x2b525,4}, {0xd7c6,11}, + {0x14792,10}, {0x13dd8,10}, {0x4559,8}, {0x1dcbd,8}, {0x16958,9}, {0x28e9f,5}, {0x1ac64,9}, {0x17621,9}, + {0x1fdf1,8}, {0x1c89,6}, {0x5a5c,4}, {0x3859,9}, {0x27b6,13}, {0x1bf7d,6}, {0x23320,7}, {0x28554,3}, + {0xda02,11}, {0xa246,6}, {0x20f7,15}, {0x24359,7}, {0x2ccf2,6}, {0x1f433,5}, {0x1491e,4}, {0x211f8,7}, + {0x233c1,7}, {0x2d5c9,3}, {0x1959,15}, {0x10756,10}, {0x2c752,6}, {0x29c5f,5}, {0x1e447,8}, {0xc4fd,10}, + {0xf401,11}, {0x27603,4}, {0x7996,12}, {0x2aa53,8}, {0x2db60,2}, {0x2d656,3}, {0x281dc,5}, {0x26df1,6}, + {0x16877,9}, {0x1091a,7}, {0xb87,11}, {0x94ea,12}, {0x2a076,5}, {0x206c2,7}, {0x29b6a,5}, {0x123d2,10}, + {0x265eb,4}, {0x13180,5}, {0x2462d,12}, {0x43b4,13}, {0x22548,7}, {0x16f0c,9}, {0xf9d2,11}, {0x962e,12}, + {0x175eb,9}, {0x6eef,11}, {0x1cf37,7}, {0x220bf,7}, {0x14e42,10}, {0x2c71c,6}, {0xec50,6}, {0x23415,7}, + {0x16bbc,9}, {0x2946e,4}, {0x2071d,6}, {0x2913a,3}, {0x76f6,12}, {0x5e7d,4}, {0xb2ba,11}, {0x1fa51,8}, + {0x9172,12}, {0x1e8bf,8}, {0xad4a,5}, {0x2b3e5,4}, {0x2b440,3}, {0x2d015,5}, {0x1e14d,8}, {0x2700f,3}, + {0x2665d,4}, {0x3404,10}, {0x27e57,2}, {0x5d00,13}, {0x1fda9,8}, {0x2c6c2,6}, {0x1a634,9}, {0x2614b,6}, + {0x2b0a5,3}, {0xe917,11}, {0x2c722,6}, {0xbc18,9}, {0x1bec5,8}, {0x159f2,9}, {0x2a39b,5}, {0x11932,9}, + {0xf5ff,2}, {0x13e64,10}, {0x2b5af,4}, {0x29ff6,3}, {0x17da9,9}, {0x1503a,6}, {0x41b8,4}, {0x172da,9}, + {0x27865,5}, {0xdf56,11}, {0x2926b,5}, {0x2a256,5}, {0xfe59,11}, {0x1fe69,8}, {0xeee4,11}, {0x10602,10}, + {0x237aa,7}, {0x1a423,7}, {0x46ea,3}, {0x2a055,3}, {0x1a065,7}, {0xccd,5}, {0x2c78e,6}, {0x4559,3}, + {0x2b435,4}, {0x67b1,6}, {0x917e,12}, {0x1a173,9}, {0x15c5d,9}, {0x23983,5}, {0x1a1fa,6}, {0x2861b,2}, + {0x214af,7}, {0x28344,5}, {0x24c20,4}, {0x173ab,6}, {0x32b2,14}, {0x10a86,4}, {0x2af21,4}, {0x2bd4a,4}, + {0x9c8e,12}, {0x1dff9,8}, {0x2c8a2,6}, {0x2c58a,6}, {0x2d236,3}, {0x1e1a7,8}, {0x2bab0,6}, {0x1f5b3,6}, + {0x2d60b,3}, {0x281cd,5}, {0x155b8,10}, {0x5d60,8}, {0x15702,5}, {0x1c78d,8}, {0x26b0b,4}, {0x14c78,8}, + {0x27199,6}, {0xf868,8}, {0x2d0a1,3}, {0x2a35a,5}, {0x28f99,5}, {0x1534e,8}, {0x1ae47,3}, {0x113d8,10}, + {0x24ef5,6}, {0x151bc,10}, {0x228b5,7}, {0xabe2,12}, {0x218ee,7}, {0x1a5e3,6}, {0x2748d,5}, {0x2c0ea,4}, + {0x2d51e,3}, {0x2a346,5}, {0x18462,7}, {0x6af7,11}, {0x25200,4}, {0x2cf92,3}, {0x1466,3}, {0x16e88,4}, + {0x1cded,6}, {0x12ada,10}, {0x1ebc9,8}, {0x2bc72,4}, {0x9d36,12}, {0x255e,4}, {0x1933f,9}, {0x122b3,7}, + {0x2311c,4}, {0x9736,12}, {0xdae,4}, {0x12512,9}, {0x8ff2,12}, {0x2875b,8}, {0x27e5b,3}, {0x18e16,6}, + {0x2882b,7}, {0x24f85,6}, {0x2d6c2,3}, {0x2630f,6}, {0x9bc4,7}, {0x29f1f,3}, {0xaaec,4}, {0x1fe4b,6}, + {0x26da5,4}, {0x264e7,6}, {0x2cca4,6}, {0x167e9,7}, {0x933c,7}, {0x1b2c4,2}, {0x98c2,10}, {0x214b,5}, + {0x45c9,9}, {0x2b34,14}, {0x53a8,5}, {0xc4c6,8}, {0x2cc44,6}, {0x27bfe,3}, {0x246bd,12}, {0xf540,7}, + {0x2a203,3}, {0x11e50,10}, {0x24e57,6}, {0x270db,4}, {0x1b09c,9}, {0x20159,8}, {0x2a0da,5}, {0x22c8d,7}, + {0x1e20f,8}, {0x1a697,9}, {0x2cf5a,5}, {0x180b8,9}, {0x1a56e,9}, {0x21b63,7}, {0x240ab,7}, {0x29197,5}, + {0x2cad6,6}, {0x2d3ea,3}, {0xb6c,19}, {0x1c8d7,6}, {0x4fd0,7}, {0xf945,9}, {0x2050d,6}, {0x2c608,6}, + {0x1673c,9}, {0x7082,12}, {0x25c03,6}, {0x5b92,13}, {0x29ed9,3}, {0x2431c,3}, {0x11bee,10}, {0x6b6e,7}, + {0x23a1b,7}, {0x2a8a0,5}, {0x18c37,9}, {0x9ff3,6}, {0x81e2,12}, {0xb5f,3}, {0xb921,11}, {0xa7aa,12}, + {0x2a206,5}, {0x13392,7}, {0x1b5eb,8}, {0x234d2,7}, {0x2a1b6,5}, {0x538c,13}, {0x2d3a,14}, {0x2d2ba,3}, + {0x19bd,4}, {0xfe0,5}, {0xf6d0,3}, {0x28eb8,5}, {0x2b1f5,4}, {0x1caad,8}, {0x22ac4,7}, {0xafb0,10}, + {0x10006,10}, {0x10321,4}, {0x1537,3}, {0x2cd2e,6}, {0x23fe0,7}, {0x941e,12}, {0xf50b,9}, {0x6fc2,24}, + {0x295ff,3}, {0xb118,11}, {0xa2e7,4}, {0x1fce9,5}, {0x27d2,15}, {0x28e9a,5}, {0x3f7e,14}, {0x27c8b,6}, + {0x158c3,9}, {0x29dd8,5}, {0xfb53,8}, {0x1245e,10}, {0x28556,3}, {0x2b2e3,4}, {0x29b01,5}, {0x27661,6}, + {0xc60,4}, {0x28bbb,5}, {0x43db,13}, {0x2cee1,5}, {0x5bc6,13}, {0xb6f0,11}, {0x19b70,9}, {0xf8b2,11}, + {0x74e8,10}, {0x1da7d,8}, {0x915a,12}, {0x209f2,7}, {0x2d1e5,3}, {0x283c6,5}, {0xf38e,5}, {0x1ffcd,4}, + {0x27589,5}, {0x272dd,6}, {0x1a7f6,9}, {0x497e,13}, {0x15917,6}, {0x150ae,10}, {0x2752b,4}, {0x15554,5}, + {0x2b611,3}, {0xd3a6,11}, {0x8733,6}, {0xbb5d,11}, {0x145bc,5}, {0x284dc,5}, {0x271f3,6}, {0x29643,5}, + {0x1f96c,2}, {0x2b61f,4}, {0x1ab5f,9}, {0xa072,12}, {0x2d6da,3}, {0x28496,5}, {0x19d46,7}, {0x2d185,3}, + {0x1cb75,8}, {0x2d620,3}, {0x197c8,9}, {0x2ad13,8}, {0x2367d,6}, {0x13f40,10}, {0x11c4,8}, {0xadf2,12}, + {0x2b797,4}, {0xcd81,11}, {0x318c,14}, {0x2287b,7}, {0x14ee2,10}, {0x886c,6}, {0x9106,11}, {0x304a,14}, + {0x2505d,6}, {0x3ae6,14}, {0x119f0,10}, {0x2424f,7}, {0x2a1de,5}, {0x17076,9}, {0x124cc,10}, {0x16d6e,9}, + {0x11a22,10}, {0x4d74,10}, {0x14eba,10}, {0x15ed3,5}, {0x27fae,5}, {0xd39b,11}, {0x2c5b4,6}, {0x1a06,4}, + {0x169ab,7}, {0xfdeb,6}, {0x1c5e5,8}, {0x183fd,9}, {0x24f25,6}, {0x126f2,10}, {0xa95a,12}, {0x51df,13}, + {0x2dafa,2}, {0x6fe6,12}, {0x129b8,10}, {0xf233,11}, {0x2c548,6}, {0x2d3a4,3}, {0x29949,5}, {0x2a0fd,5}, + {0x2d14,3}, {0x286b5,6}, {0x5cf3,13}, {0xb026,22}, {0x20ae9,5}, {0x2ab73,8}, {0x1c82d,8}, {0x8a49,4}, + {0x299d5,5}, {0x1b1b7,16}, {0xb9f,3}, {0x2e22,6}, {0x20652,7}, {0xcc42,10}, {0xc751,11}, {0x117c,16}, + {0x2843a,3}, {0x18f10,9}, {0x2b840,6}, {0xcd76,10}, {0x15a0d,9}, {0x2a20b,5}, {0x1ca45,8}, {0xdcac,11}, + {0x19d34,3}, {0x1d5dd,8}, {0x17a8f,9}, {0x5528,3}, {0x280f6,5}, {0x24d11,6}, {0xf537,9}, {0x27295,6}, + {0xa590,9}, {0x1efd9,8}, {0x4f65,4}, {0x113ec,10}, {0x2d533,3}, {0x2da4d,2}, {0x5db6,5}, {0x26cf5,6}, + {0x1dac5,6}, {0x3562,6}, {0x20021,8}, {0x26ccd,4}, {0x26e21,6}, {0x243fa,7}, {0x25f3f,6}, {0xdfe,7}, + {0x3ed6,14}, {0x2b64b,4}, {0x13176,8}, {0x1480a,10}, {0x7b6a,12}, {0xe5de,11}, {0x15869,9}, {0x2b60d,3}, + {0x5247,13}, {0x2b93c,6}, {0x2d09b,3}, {0x11b48,4}, {0x104b2,6}, {0xbe4,13}, {0x265a1,6}, {0x57d0,13}, + {0x25ac7,8}, {0xaf4e,5}, {0x3495,6}, {0x408d,9}, {0xf2fc,5}, {0x78ae,4}, {0x17e0c,9}, {0xde43,11}, + {0x24d59,6}, {0x2c2ba,4}, {0x238c9,7}, {0x1892a,7}, {0x2679,15}, {0xa8a6,12}, {0x13278,8}, {0x29de,4}, + {0x24210,7}, {0x1f451,8}, {0x225fe,7}, {0x19d3b,5}, {0x19981,9}, {0x2cb72,6}, {0x1c925,8}, {0x1f211,8}, + {0x2c0a8,2}, {0xc555,11}, {0x18567,7}, {0x5ca5,13}, {0xf09c,11}, {0x2a04e,5}, {0xc3ce,6}, {0xf1d0,11}, + {0x19cd8,9}, {0x16925,6}, {0x482c,13}, {0x19c82,5}, {0x2191f,7}, {0x1b29d,8}, {0x26d8b,6}, {0x1dcc5,8}, + {0x6923,13}, {0xfef8,20}, {0xde5e,6}, {0x2b3d1,4}, {0x2cf12,3}, {0x2b78b,4}, {0x969,64}, {0x18303,7}, + {0x21869,7}, {0x1494d,7}, {0x23bf0,7}, {0x5915,13}, {0x2d3cb,3}, {0x29e46,5}, {0xc5ef,10}, {0x2d00f,3}, + {0x50ce,13}, {0x2253d,4}, {0x24331,5}, {0x28694,3}, {0x2acb3,8}, {0x22724,7}, {0x1499a,10}, {0x1b1ef,8}, + {0x1a4b1,9}, {0x2ae79,8}, {0x494a,13}, {0x24831,12}, {0x13c5e,7}, {0x22c63,7}, {0x26bdb,6}, {0x26c5f,6}, + {0xf92d,11}, {0x12882,10}, {0xe3b0,8}, {0x12a9a,4}, {0x16e1,3}, {0x134c,14}, {0x24a19,8}, {0x2c398,6}, + {0x1f8a9,8}, {0x19f48,3}, {0x532,94}, {0x27a4e,3}, {0x2280b,7}, {0xc675,11}, {0x27a71,4}, {0x2afe9,4}, + {0xf279,3}, {0x29fb8,5}, {0xcc84,11}, {0x2bdc,14}, {0x2a201,5}, {0x2b141,4}, {0x232e1,7}, {0x69f3,13}, + {0x20df6,7}, {0x12b80,4}, {0x2650b,6}, {0x14b18,5}, {0x2718d,6}, {0x3544,13}, {0x2cb18,6}, {0x2ab03,8}, + {0x29607,5}, {0x25535,6}, {0x252fd,10}, {0x13068,8}, {0x22f0d,7}, {0x174ef,9}, {0x2701f,6}, {0x9562,12}, + {0x1b563,8}, {0x26805,6}, {0x2b67b,4}, {0x26939,6}, {0x1f283,5}, {0x4a91,9}, {0x19f72,9}, {0x6a0d,12}, + {0x29ef7,3}, {0xade9,9}, {0x151ee,7}, {0x2c962,6}, {0xbc7b,11}, {0x12b66,5}, {0x2784d,4}, {0x2938d,5}, + {0x1072e,10}, {0x9e9,16}, {0xc65f,11}, {0xd9d6,11}, {0x27043,6}, {0xc85,4}, {0xc2f2,6}, {0x16414,5}, + {0x24d89,6}, {0x1bd1d,7}, {0xc2e,6}, {0x7e46,12}, {0xf76b,8}, {0x1f439,8}, {0x1a00b,9}, {0x207b7,7}, + {0x2420b,5}, {0x18970,9}, {0x2664f,6}, {0x7502,4}, {0x8326,12}, {0x187b7,9}, {0x283ee,5}, {0x29afc,5}, + {0x26f89,6}, {0x24b93,6}, {0x25d0b,6}, {0x3012,14}, {0x109e,8}, {0x2215f,5}, {0x29af2,5}, {0x92aa,9}, + {0x23588,7}, {0x267c9,6}, {0x3f77,7}, {0x20c5c,7}, {0x2a0c6,5}, {0x28c97,5}, {0xd00a,11}, {0x30,148}, + {0x29124,5}, {0x2747b,6}, {0x21bbe,7}, {0x1ce5d,8}, {0x1ff69,8}, {0x2d302,3}, {0x2db04,2}, {0xe9a,5}, + {0xfe9d,9}, {0x29d67,3}, {0x28035,5}, {0x16083,8}, {0x1403a,9}, {0x12f1e,5}, {0x26763,6}, {0x203bc,5}, + {0x29482,4}, {0x1675,3}, {0xe99e,5}, {0x1e11d,8}, {0x67b3,4}, {0x40dc,14}, {0x25497,6}, {0x1e029,12}, + {0x14a2,4}, {0x2af35,4}, {0x7152,4}, {0x11f18,10}, {0x25b8b,6}, {0x2af7d,4}, {0x133ba,8}, {0x13964,10}, + {0x2cadc,6}, {0x22ce1,7}, {0x83eb,7}, {0x18685,9}, {0x1fc81,6}, {0x1d9cf,8}, {0x946a,4}, {0x1f8c1,8}, + {0xf60d,3}, {0xaafe,9}, {0x101c2,5}, {0x2b7c7,4}, {0x16999,7}, {0x4c24,8}, {0x1f443,6}, {0x1d165,8}, + {0x4eac,13}, {0x2c494,4}, {0xb958,11}, {0x2c026,4}, {0x2b74b,4}, {0x245cd,12}, {0x2340,15}, {0x249a5,8}, + {0x25b61,6}, {0xb543,11}, {0x66e7,13}, {0x6b47,3}, {0x25e03,7}, {0x1c14d,8}, {0x1a0da,9}, {0x16b47,9}, + {0x1daf5,8}, {0x26e53,4}, {0x11358,8}, {0x151e8,6}, {0x2d3ed,3}, {0x22909,6}, {0x12d78,10}, {0x16394,9}, + {0x181e,8}, {0x629b,8}, {0xd0f1,11}, {0x1f91b,6}, {0x484d,6}, {0xf9f3,11}, {0x1ea2f,7}, {0x2c4b2,6}, + {0x25860,5}, {0xc6b7,10}, {0x24e8d,6}, {0x29a9d,5}, {0x2b726,4}, {0xfcc2,11}, {0xed88,7}, {0xcbc9,11}, + {0xc7d8,8}, {0x28cf3,5}, {0xcb03,11}, {0x209ba,3}, {0x71c2,12}, {0x27231,4}, {0x36c0,4}, {0x21630,7}, + {0x1da6d,8}, {0x2d125,3}, {0x1ef4d,4}, {0x148fa,7}, {0x5956,13}, {0x2885e,5}, {0x29f6f,3}, {0x2982a,5}, + {0x1d8b9,6}, {0x1f629,6}, {0x23ae6,7}, {0x1f151,8}, {0x29bb2,3}, {0x17280,7}, {0x16cf0,8}, {0xd5e,3}, + {0x1fee1,6}, {0x97c6,12}, {0x106fc,10}, {0x11c5c,10}, {0x15564,4}, {0x1b13,3}, {0x7cec,10}, {0x1a6f1,9}, + {0x29807,5}, {0x267a1,4}, {0x12d46,10}, {0x2c256,4}, {0x22daf,5}, {0x6d67,13}, {0x1832e,9}, {0x2d911,4}, + {0x15ea6,9}, {0x1ad24,4}, {0x27a77,4}, {0xdd0f,11}, {0x5616,13}, {0x227d,15}, {0x27db3,6}, {0x4c63,13}, + {0x2ab7b,8}, {0x70dc,9}, {0xa0de,12}, {0x1f9c9,8}, {0x798a,12}, {0x2c914,6}, {0x2c344,6}, {0x6ba0,13}, + {0x2b4f9,4}, {0x2c4d6,6}, {0x1481e,8}, {0x5066,13}, {0x1bf2d,8}, {0x26021,6}, {0x1b927,14}, {0x22017,7}, + {0x1714e,9}, {0x2205f,4}, {0xf726,11}, {0x2d69e,3}, {0x28f12,5}, {0x28bb1,5}, {0x9c22,12}, {0x1aa87,9}, + {0x23d32,7}, {0x26c67,4}, {0xc51,9}, {0x20ad2,7}, {0x27a54,3}, {0x267b1,6}, {0x4c49,13}, {0x2bebe,4}, + {0x1d62d,7}, {0x249e1,12}, {0x240ff,7}, {0x12c6a,7}, {0x1f139,8}, {0x11ac,16}, {0x21807,7}, {0x1f9c9,5}, + {0x158b2,5}, {0x2b990,6}, {0x25693,6}, {0xcc9a,9}, {0x24e2d,6}, {0x2019b,6}, {0x270d3,6}, {0x119e0,4}, + {0xb5a6,11}, {0x1e82f,8}, {0x2be4c,2}, {0x2cf39,3}, {0x691c,5}, {0x1f5c1,5}, {0x238c2,7}, {0xe38c,11}, + {0x14422,10}, {0xf99b,4}, {0x11fae,10}, {0x2d424,3}, {0x2b815,2}, {0x40ea,12}, {0xacea,12}, {0x19081,9}, + {0x2803a,5}, {0x21c35,7}, {0x213b8,7}, {0x23c59,7}, {0x2be2e,4}, {0xc97,3}, {0x164c,5}, {0x2d1e2,3}, + {0x24d95,6}, {0x14780,8}, {0x17f01,7}, {0x2cf7a,3}, {0x22e7a,7}, {0x1b325,8}, {0x1a469,7}, {0x29a72,3}, + {0x1e617,8}, {0x1f761,8}, {0xfcda,6}, {0xfb0,8}, {0x1f3e1,8}, {0x2a18e,5}, {0x3784,10}, {0x238ad,7}, + {0x4928,8}, {0x28d83,5}, {0x785e,12}, {0x2da3b,2}, {0x2a9c3,5}, {0x2238f,7}, {0x141ac,10}, {0x6d0c,13}, + {0x27add,4}, {0xecd8,7}, {0x7a86,7}, {0x19cf3,9}, {0x26945,6}, {0xfab3,6}, {0x26a8f,6}, {0x11c6b,4}, + {0xa4df,3}, {0x17c77,9}, {0x14d05,3}, {0x2b1af,4}, {0x7c4,30}, {0xf10a,11}, {0x22113,9}, {0x1fad,6}, + {0x1a5ec,9}, {0x237a3,7}, {0x13d3a,7}, {0x14b0c,12}, {0x2ce78,5}, {0x2a1ac,5}, {0x13e32,10}, {0xcc0b,10}, + {0x154be,10}, {0x218bd,7}, {0x2b84e,4}, {0x261b9,6}, {0x11471,6}, {0x20974,7}, {0x1701c,9}, {0x216fb,6}, + {0xfbfc,11}, {0x21fb5,7}, {0x1a05c,9}, {0x2b385,4}, {0x2bbd2,4}, {0x2d2c9,3}, {0x28c28,5}, {0x234f5,7}, + {0x1e0a5,8}, {0x164d8,9}, {0xc2ab,11}, {0x1cf2f,8}, {0x43ce,13}, {0x1f931,8}, {0x234bd,7}, {0x13ae4,6}, + {0x14346,7}, {0x269a5,6}, {0xbde,19}, {0x2a941,5}, {0x16b74,8}, {0x2c428,6}, {0xd364,11}, {0x2958,5}, + {0x2291,10}, {0x2884,4}, {0x223b2,7}, {0x6144,13}, {0x25993,6}, {0x7e0a,12}, {0x10d18,4}, {0x4b7d,8}, + {0x8a16,7}, {0x2d805,4}, {0x26cef,6}, {0x1fd59,8}, {0x211ea,7}, {0x180fc,3}, {0x15f12,9}, {0x1f3ab,6}, + {0x2d209,3}, {0x20a38,7}, {0x22476,7}, {0x2a1bb,5}, {0x27f95,5}, {0x10ba,3}, {0x1f77b,6}, {0x145aa,2}, + {0x432,46}, {0x253f3,8}, {0x287ab,8}, {0x7f2a,12}, {0x2538b,8}, {0x217ca,5}, {0x29fe7,3}, {0x2d431,3}, + {0x20f17,6}, {0x1b623,6}, {0xcfeb,6}, {0x804,128}, {0x28840,7}, {0xb01a,12}, {0x1fa49,8}, {0x2450d,12}, + {0x24e39,6}, {0x1771d,6}, {0x294e0,3}, {0xeaff,7}, {0x388c,14}, {0x2cfd1,3}, {0x17456,9}, {0x2cd94,6}, + {0x50ee,3}, {0xad7a,12}, {0x2365c,5}, {0xee29,11}, {0x20e0b,7}, {0x18a12,9}, {0x1053,14}, {0x215e3,7}, + {0x3e82,14}, {0x234a8,7}, {0x1988e,9}, {0x15776,18}, {0x12d0a,10}, {0xea42,3}, {0x25c9f,6}, {0x6e10,13}, + {0x29d94,3}, {0x11ba8,10}, {0x2a0a0,3}, {0x1de35,8}, {0x170fd,9}, {0x2bbbe,4}, {0x1816c,9}, {0x15306,10}, + {0x293ab,5}, {0x15e69,4}, {0xfd9e,11}, {0x12418,10}, {0xaae9,2}, {0x27aa7,4}, {0x13626,10}, {0x28eab,3}, + {0x3172,3}, {0x2923e,5}, {0x28688,5}, {0x25589,6}, {0x14166,7}, {0x2710b,3}, {0x1566e,5}, {0x9976,8}, + {0x3876,7}, {0x29432,5}, {0x29f74,3}, {0x27697,5}, {0x1865,3}, {0x2220c,7}, {0x12f4e,10}, {0x16fbc,3}, + {0x1421,5}, {0x155d6,10}, {0x25df1,6}, {0xd3f3,11}, {0x216a0,6}, {0x1c6ef,6}, {0x14fc1,7}, {0x24bb7,6}, + {0x1b98d,8}, {0x1c165,8}, {0x27b9b,6}, {0x144ea,10}, {0x3d86,13}, {0x1fef1,8}, {0x22525,7}, {0x586c,13}, + {0x24ec7,3}, {0x27c3d,6}, {0x2d25a,3}, {0x1c275,8}, {0x7137,4}, {0x142d8,10}, {0x1acbe,9}, {0x19bb8,7}, + {0x2820f,4}, {0x2990,6}, {0x5476,5}, {0x1421a,7}, {0x2d50c,3}, {0x15252,9}, {0x159e,13}, {0x2d1df,3}, + {0x6650,8}, {0xe853,9}, {0xb80e,11}, {0xfcb2,5}, {0xacef,2}, {0x1a555,3}, {0x1704b,7}, {0x25a07,6}, + {0x4fbf,11}, {0x6c58,3}, {0x165d4,9}, {0x2b08b,4}, {0xcba8,7}, {0x15948,3}, {0x2bcee,4}, {0x199d2,9}, + {0x2a152,5}, {0x13560,8}, {0x682c,13}, {0xbea1,11}, {0x2a019,3}, {0x2c3e0,6}, {0x1f171,8}, {0x22daf,7}, + {0x29bf1,5}, {0x20c86,7}, {0x2c386,6}, {0x1ee61,8}, {0x26327,6}, {0x1b08a,9}, {0x144c2,10}, {0x1a070,7}, + {0xe702,5}, {0x64ec,13}, {0x29fe5,5}, {0x12a26,10}, {0xf33,3}, {0x2b165,4}, {0x710e,12}, {0x18661,9}, + {0x2d69,3}, {0x10f78,5}, {0x16181,6}, {0x4b04,13}, {0x27ffe,5}, {0xd251,11}, {0x22ea,11}, {0x1b8d3,14}, + {0xc3f5,11}, {0x1a9b8,9}, {0x10afa,10}, {0x14230,8}, {0x2a193,5}, {0xbc2e,11}, {0x2a28f,3}, {0x2594d,6}, + {0x1111c,10}, {0xb430,11}, {0xc79e,8}, {0x12382,10}, {0x10ec4,10}, {0x2c4b8,6}, {0x25981,6}, {0xebab,11}, + {0x14dae,7}, {0x29a07,5}, {0x71e6,12}, {0xfcfc,8}, {0xceb5,11}, {0x28855,7}, {0x984a,12}, {0x2a09b,3}, + {0x298ae,5}, {0x25909,6}, {0x1e909,6}, {0x225f7,7}, {0xd65,17}, {0x37f2,14}, {0x2a26f,5}, {0x201f1,8}, + {0xfd3b,6}, {0x2543,3}, {0x118ec,10}, {0x16f27,9}, {0x15722,6}, {0x21668,7}, {0x2c0c4,2}, {0x20153,4}, + {0x27a60,3}, {0x1d305,8}, {0x1a391,9}, {0x1a18e,9}, {0x1ae5c,5}, {0x36da,14}, {0x6d90,2}, {0xac74,10}, + {0x20db2,5}, {0x700d,5}, {0xeada,11}, {0xe5bd,11}, {0xe9b,5}, {0x285fe,5}, {0x2593d,4}, {0x231a6,7}, + {0x15c42,9}, {0xd553,11}, {0x11c70,10}, {0x2a1ea,3}, {0x2aacf,4}, {0x657d,11}, {0xb92,19}, {0x2016,15}, + {0x15f4c,5}, {0x2ce3c,5}, {0x20181,8}, {0x20471,5}, {0xc2ce,7}, {0x25a61,6}, {0xd085,6}, {0x29e4d,3}, + {0x15902,9}, {0x23f23,7}, {0x23da9,7}, {0x1888f,5}, {0x26e8d,6}, {0xd062,11}, {0x26ead,4}, {0x3c62,10}, + {0x4909,8}, {0x1054e,10}, {0x24f94,4}, {0x8b8a,12}, {0x127a6,10}, {0x2d5ab,3}, {0x274c5,4}, {0x28141,5}, + {0x53cd,8}, {0x21b55,7}, {0x2127d,7}, {0x921a,12}, {0x28612,5}, {0x10b7,16}, {0x21b16,7}, {0x2832b,5}, + {0x29310,5}, {0x16d41,9}, {0x2b1f9,4}, {0x2bdca,4}, {0x2c5ea,6}, {0x45e3,11}, {0x132f3,6}, {0x1cebd,8}, + {0x163dc,9}, {0x286a,13}, {0x2c2da,4}, {0x146c2,4}, {0x29388,5}, {0x4909,13}, {0x2a1c5,5}, {0x1dcd5,8}, + {0x28008,5}, {0x23e9e,7}, {0x160cb,9}, {0x23201,7}, {0x2d6e0,3}, {0x10634,10}, {0x2d4f9,3}, {0x2bf3a,4}, + {0x1a1e,11}, {0x2ad83,8}, {0xa9fc,3}, {0x2bd36,4}, {0x85d4,10}, {0x17de,3}, {0x292bd,3}, {0x23ffc,7}, + {0x1ecc,15}, {0xaa9e,6}, {0xdd3b,11}, {0xbc44,11}, {0x1923a,9}, {0x365e,3}, {0x188e9,9}, {0x27fa4,4}, + {0x208f6,7}, {0x905e,12}, {0x1be9d,8}, {0x135cc,10}, {0x430,31}, {0xeb4a,7}, {0x151f8,10}, {0x2c902,6}, + {0x26bb1,6}, {0xa7b6,12}, {0x22c88,5}, {0x144ef,5}, {0x28f08,5}, {0x1da55,8}, {0x297ba,5}, {0x2854a,5}, + {0x8e7e,12}, {0x1c4cd,8}, {0xca06,11}, {0x95ce,9}, {0x28679,5}, {0x10056,10}, {0x18b7a,9}, {0x18109,9}, + {0x77ea,4}, {0x1f2cb,3}, {0x148f0,9}, {0xf78b,3}, {0x27eb9,5}, {0x92ce,12}, {0x1d33d,8}, {0x1de3d,8}, + {0x2afc3,5}, {0x222d0,5}, {0x27ac5,4}, {0x2d329,3}, {0x24555,12}, {0xe9be,7}, {0x2cfb3,3}, {0x3790,14}, + {0x2c1ea,4}, {0x1e862,4}, {0x23bdb,7}, {0x2c286,4}, {0x14bb8,10}, {0xd256,6}, {0x2bc26,4}, {0x21661,7}, + {0x1a703,9}, {0x148fc,8}, {0x156fa,8}, {0x2cfaa,3}, {0x863e,10}, {0x2964d,5}, {0x29e20,3}, {0x2a2da,3}, + {0x1b4b3,8}, {0x24256,7}, {0x24f5b,6}, {0x4f82,7}, {0x4e2a,13}, {0x116e,3}, {0xb92c,11}, {0x14346,8}, + {0x183d9,9}, {0x509a,13}, {0xd8d9,11}, {0xaa7e,8}, {0x2db80,2}, {0x1d11d,6}, {0x15b64,6}, {0xf2ae,2}, + {0x2a125,5}, {0x407c,4}, {0x8842,12}, {0x939a,12}, {0x17238,8}, {0xeb9,17}, {0x1499c,7}, {0x53f4,11}, + {0x1aef5,9}, {0x14896,10}, {0x15adf,4}, {0x18c7f,8}, {0x28cc,14}, {0x267f9,6}, {0x1ca2d,8}, {0xd293,11}, + {0x27fc2,5}, {0x738a,12}, {0x329d,7}, {0x2a8ce,5}, {0x2a104,3}, {0x22ee3,7}, {0x14ba4,10}, {0x21e2d,7}, + {0x214b,6}, {0x282b8,5}, {0x774a,12}, {0x2700,15}, {0xb22b,11}, {0x135f6,7}, {0x1f821,8}, {0x1aa51,9}, + {0x27121,6}, {0x9205,4}, {0x2945f,5}, {0xbec2,11}, {0x22afc,7}, {0x2062f,7}, {0xfb27,11}, {0x18e1,7}, + {0x13db0,10}, {0x69a5,13}, {0x20241,8}, {0x125b7,5}, {0x29f09,5}, {0xf178,11}, {0xb29b,4}, {0x27e96,5}, + {0xca5e,11}, {0x14f6e,5}, {0xd305,7}, {0x432,45}, {0x203c3,6}, {0x1df8a,5}, {0x254d3,8}, {0x62fe,13}, + {0x14535,5}, {0xf731,11}, {0x11bb2,10}, {0x20843,7}, {0x12ad3,6}, {0x2a1cf,5}, {0xfbc7,6}, {0x19267,8}, + {0x1befd,8}, {0x27e5a,5}, {0x2833f,5}, {0x1bce5,8}, {0x2b0f1,4}, {0x16769,5}, {0x19039,9}, {0xf90c,11}, + {0xefac,8}, {0x15310,10}, {0x20ea0,7}, {0xaebe,8}, {0x2b9b4,6}, {0x4658,13}, {0x1afdf,9}, {0x2cc80,6}, + {0x24b98,3}, {0x24495,12}, {0x18ed1,9}, {0x23f15,7}, {0x2245a,7}, {0x26305,2}, {0x2680b,6}, {0x2bba6,4}, + {0x13acc,10}, {0x1ae53,9}, {0x27d95,10}, {0x2c314,2}, {0x2321d,7}, {0x22747,7}, {0x20db,4}, {0x276cf,4}, + {0x1bee1,2}, {0x26d43,6}, {0x15cc9,9}, {0x1d053,10}, {0xb425,11}, {0x1cb7d,8}, {0xc4df,8}, {0x2d2c3,3}, + {0x193cf,9}, {0x3876,8}, {0x12e4a,10}, {0xf0e,17}, {0x5c14,13}, {0xbb47,11}, {0x90d6,12}, {0x2d0f5,3}, + {0x298f9,5}, {0x2143f,7}, {0x5a19,8}, {0x2d457,3}, {0x2cd76,6}, {0x270f1,6}, {0x26a77,6}, {0xa7f2,12}, + {0xf33d,9}, {0x8a6a,12}, {0x244c5,12}, {0x24dd7,6}, {0xae9c,2}, {0x26e7d,4}, {0x1c295,8}, {0x91bf,6}, + {0x234f7,5}, {0x2084a,7}, {0x1f709,8}, {0x14d40,8}, {0xc6da,3}, {0x7349,5}, {0x1c0ad,8}, {0x29d74,5}, + {0x103fc,7}, {0xa080,3}, {0x1f731,6}, {0x28621,5}, {0x15f1b,9}, {0x88d7,7}, {0x2c30a,4}, {0x6a00,13}, + {0x1bc9d,8}, {0xc16c,7}, {0x26ba7,4}, {0x773e,12}, {0x918a,12}, {0x27bad,6}, {0x1c4b5,7}, {0xc70f,11}, + {0xd579,4}, {0x1c555,8}, {0x93a6,12}, {0x1a09d,7}, {0x26a3d,4}, {0xc628,11}, {0x4a68,13}, {0x11ae0,10}, + {0x4e24,6}, {0x2e1a,14}, {0x22025,7}, {0xd63f,6}, {0x1f2bd,4}, {0x2da83,2}, {0x851e,12}, {0x3f80,8}, + {0x1dbc5,8}, {0x296de,5}, {0xcf65,11}, {0x9e62,12}, {0xbff8,9}, {0x8a6a,11}, {0x2da81,2}, {0x118f6,10}, + {0x1ef53,6}, {0x17e30,9}, {0xd015,11}, {0x1ac01,9}, {0x2cc0e,6}, {0x2c3c2,6}, {0x2b2e,5}, {0x1646e,6}, + {0x15fc2,4}, {0x1df24,3}, {0x2754d,6}, {0x2bee6,4}, {0xedb,17}, {0x19d4f,4}, {0x22010,7}, {0xf77e,11}, + {0x2599f,6}, {0x15400,10}, {0x2863a,5}, {0x2056b,14}, {0x2b5e5,4}, {0x1fd11,8}, {0x2b135,4}, {0x12968,5}, + {0x1e16d,8}, {0xa8ee,12}, {0x26cd7,6}, {0x1c065,8}, {0x129e0,10}, {0x203a1,8}, {0x2743,4}, {0x1a3ac,9}, + {0x3d40,14}, {0x27f81,5}, {0x269cf,6}, {0x1861b,5}, {0xff98,10}, {0x1ae6e,9}, {0x12a68,4}, {0x1e8b7,8}, + {0x1824d,9}, {0x28303,5}, {0x255d3,4}, {0xaada,12}, {0x25c5d,6}, {0x6e05,10}, {0xea65,6}, {0xb495,9}, + {0xafa2,12}, {0x277a,13}, {0x18229,9}, {0x24621,12}, {0x13946,10}, {0x22e3b,7}, {0x29c34,3}, {0x19f69,9}, + {0x10038,10}, {0x2a04b,3}, {0x1c3b,4}, {0xa0f6,7}, {0x297fa,2}, {0x2aea9,4}, {0x998e,11}, {0x128f0,10}, + {0x2a113,3}, {0x15ef1,2}, {0x2408f,7}, {0x2d0dd,3}, {0x2bbda,4}, {0x219d0,7}, {0x25087,6}, {0x11e2a,8}, + {0x11d77,7}, {0x2cfb9,3}, {0x1eda1,8}, {0x2bc6a,4}, {0x1154a,10}, {0x1f029,8}, {0x10da2,10}, {0x1c615,8}, + {0x1422,4}, {0x1e9cf,8}, {0x130a4,8}, {0x1a1a0,9}, {0x2d5ed,3}, {0x995e,12}, {0x27b83,6}, {0xff8d,3}, + {0x2ce8c,5}, {0x1a864,3}, {0x260dd,8}, {0x28cfd,5}, {0x231c2,7}, {0x6b38,13}, {0x1540c,3}, {0x2a396,5}, + {0x19432,9}, {0xa257,7}, {0x1fc74,5}, {0x1b04d,6}, {0x23d7f,7}, {0x22072,7}, {0x2d737,3}, {0x1ca7,9}, + {0xfb74,8}, {0x1e591,6}, {0x18b9e,9}, {0xf4dd,11}, {0xe683,10}, {0x18634,9}, {0x2577c,3}, {0xe43c,11}, + {0x19243,9}, {0x3918,14}, {0x29317,3}, {0x2b0bf,4}, {0x4a6c,5}, {0x6508,8}, {0x5006,5}, {0x26225,6}, + {0x2d5b4,3}, {0x2c4ee,6}, {0x432c,10}, {0x1adf0,9}, {0x2a21f,5}, {0xf254,5}, {0x2d67a,3}, {0x27115,6}, + {0x27a89,4}, {0x2b2a5,4}, {0x1aaee,4}, {0x1aa36,9}, {0x13c20,10}, {0xfa84,9}, {0x1b513,8}, {0x1b673,8}, + {0x22edc,7}, {0x20cfb,4}, {0x2cf42,3}, {0x278b3,6}, {0xe447,11}, {0x2d025,3}, {0xf325,11}, {0x13246,10}, + {0x24849,12}, {0x726a,12}, {0x1c675,8}, {0x2b169,4}, {0x28f3f,5}, {0x1e637,8}, {0x744a,12}, {0x161b5,9}, + {0x234f7,4}, {0x130d0,4}, {0x21c6f,5}, {0x1bd5f,5}, {0x2492d,12}, {0xcf7b,11}, {0x23441,3}, {0x1f791,6}, + {0x47f8,13}, {0x2a25b,5}, {0x20039,8}, {0x15cb0,7}, {0x1cb1d,8}, {0x27c25,6}, {0x1444a,10}, {0x3c38,12}, + {0x2c23a,4}, {0x26bc9,6}, {0x28b8e,5}, {0x10060,10}, {0x15338,10}, {0xf464,11}, {0x1709d,6}, {0x18a1e,5}, + {0x37d6,14}, {0x23ed6,7}, {0x13588,7}, {0x498d,6}, {0x2ad93,8}, {0x2095f,7}, {0x21fd1,6}, {0x1c455,8}, + {0x19351,9}, {0x2adef,6}, {0x276a3,6}, {0x2d460,3}, {0x12aee,10}, {0x14ff0,5}, {0x1755b,9}, {0x2d131,3}, + {0xfe5b,5}, {0x1b371,4}, {0x20101,8}, {0x259c,4}, {0x2a073,3}, {0x28f91,3}, {0x2802b,5}, {0x262a9,6}, + {0x25f51,6}, {0x29944,5}, {0x23477,7}, {0x2af65,4}, {0x14c1e,8}, {0x2da6b,2}, {0x22095,7}, {0x151da,4}, + {0x2be4a,4}, {0x60dc,13}, {0x193cf,8}, {0x2b0b3,4}, {0x6900,9}, {0x2cf2d,3}, {0x25479,6}, {0x27b95,6}, + {0x15b36,5}, {0x818e,12}, {0x1208a,10}, {0x1f299,8}, {0x23c75,7}, {0x15e82,8}, {0x29ac,14}, {0x8542,12}, + {0x27f54,5}, {0x21870,7}, {0x14ff,4}, {0x19267,9}, {0x2b76f,4}, {0x23c1c,5}, {0x2daee,2}, {0xd9e6,6}, + {0x1a3be,9}, {0x19afb,9}, {0x137ac,10}, {0x26b87,6}, {0x26d3,5}, {0x1fad9,8}, {0x42c8,6}, {0x2d401,3}, + {0xc7b4,11}, {0x156e6,7}, {0xfd48,3}, {0x14742,10}, {0x20587,14}, {0x16bb3,9}, {0x9a68,10}, {0x2b936,6}, + {0x28b46,5}, {0x1710,4}, {0x5cb2,13}, {0x1d1fd,8}, {0x27001,6}, {0x2c0e0,2}, {0x3838,5}, {0x13fe,14}, + {0x17939,9}, {0x24d35,6}, {0x2b647,4}, {0x19ae0,9}, {0x1481,4}, {0x1d5a5,6}, {0x9b4a,12}, {0xd7e7,6}, + {0x2d1de,3}, {0x2d389,3}, {0x17d7c,9}, {0x2c8f0,6}, {0x28bc5,5}, {0x28bef,5}, {0x2715f,4}, {0x29d56,5}, + {0x2ca3a,6}, {0xae46,12}, {0x5666,4}, {0x7fde,12}, {0x527b,13}, {0xc11f,11}, {0x2d141,2}, {0x14846,10}, + {0x1b140,6}, {0x16463,9}, {0x8a7b,7}, {0x1d365,8}, {0x29e0a,5}, {0x2b66b,4}, {0x1abf8,9}, {0x263ab,6}, + {0x14396,10}, {0x195d0,9}, {0x29c57,3}, {0x240c7,7}, {0x1fb29,8}, {0x1d8cf,8}, {0x236d1,6}, {0xb149,5}, + {0x2a157,5}, {0x141ca,10}, {0x14ebd,4}, {0x29e05,5}, {0x8962,12}, {0x1c107,5}, {0xfa45,6}, {0x17c92,8}, + {0x5fcb,13}, {0x20a85,7}, {0xdc82,8}, {0x121f5,6}, {0xe2bb,7}, {0x1e19d,10}, {0xc206,11}, {0xc6b7,11}, + {0x156b8,4}, {0x12afa,8}, {0x1ff79,8}, {0x27fa4,5}, {0x13f81,5}, {0x165dd,9}, {0xf40c,11}, {0x21093,7}, + {0x1d697,8}, {0x8c4,58}, {0x2765b,6}, {0x1b2e5,8}, {0x1ef19,8}, {0x2ab43,8}, {0xf71d,3}, {0x26e72,3}, + {0xc1c4,8}, {0x1ec0b,6}, {0xa486,11}, {0x281f5,5}, {0x25210,10}, {0x11b1c,5}, {0x2d6f4,2}, {0x221f0,7}, + {0x260cd,8}, {0x6429,13}, {0x28085,5}, {0x299e,14}, {0x2cd58,6}, {0x14f6a,3}, {0xabc0,10}, {0x15e67,9}, + {0x2cd7c,6}, {0x2d0ad,3}, {0xb87c,11}, {0x15608,10}, {0x4cd8,8}, {0x18223,6}, {0x2db78,2}, {0x19ca,3}, + {0x1acd0,9}, {0x2d5b1,3}, {0x2c536,6}, {0x28850,5}, {0x4e51,13}, {0x2a38,14}, {0x27ecd,5}, {0x139c,16}, + {0x147d8,10}, {0x2b3ed,4}, {0x87fa,12}, {0x25419,6}, {0x29f10,3}, {0x2b511,4}, {0x1d66,12}, {0x1527a,10}, + {0x28693,4}, {0x26d13,6}, {0x9cfa,12}, {0x28c64,5}, {0x26fef,6}, {0x2a0c8,3}, {0x2b49e,3}, {0x2c3ec,6}, + {0x2d52d,3}, {0x1fe59,8}, {0x29306,5}, {0x2a238,5}, {0x13a76,6}, {0x12a50,6}, {0x14fdc,10}, {0xec7e,9}, + {0x1898b,9}, {0x2bce6,4}, {0x20a23,7}, {0x15b73,6}, {0x25c09,6}, {0x5fbe,13}, {0x25897,6}, {0x24176,7}, + {0x2b79d,3}, {0x12fda,10}, {0x2d2ea,3}, {0x22ffb,7}, {0x2dad1,2}, {0x26ce3,6}, {0x2a071,5}, {0x13a68,10}, + {0x3170,14}, {0x1a8aa,9}, {0x26c59,4}, {0x17ac,16}, {0x2a0a5,3}, {0x28b89,5}, {0x19b67,9}, {0x1a20e,7}, + {0x2b858,6}, {0x1a29c,9}, {0x17d58,9}, {0xc37c,11}, {0x1d899,4}, {0x2bda6,4}, {0x36e8,9}, {0xf54d,11}, + {0x1f0b3,6}, {0x152e0,8}, {0x1c2bd,8}, {0x4da8,13}, {0x16ae,9}, {0x1cc3d,8}, {0x2a1a2,5}, {0x26483,6}, + {0x29039,5}, {0xbace,11}, {0x6bc7,13}, {0x11234,9}, {0x1c86d,8}, {0x1b237,16}, {0xad26,12}, {0xaa98,3}, + {0x2d539,3}, {0xe64,17}, {0x21438,7}, {0x4b64,8}, {0x264f3,6}, {0x259a5,6}, {0x4212,13}, {0x2a2a8,3}, + {0x1a766,5}, {0xa854,3}, {0xa02a,11}, {0x1e9f,9}, {0x730a,6}, {0x1e377,8}, {0x194cb,5}, {0x2655b,4}, + {0x7c4,5}, {0x1bd3d,8}, {0x292c5,5}, {0x29783,4}, {0x284cd,5}, {0x1574a,8}, {0x124b0,8}, {0x1c515,8}, + {0x498b,13}, {0x2d869,4}, {0x4ab6,13}, {0x17241,8}, {0x292a7,5}, {0x2cffe,5}, {0xb9a,4}, {0xe6db,11}, + {0x19ba,6}, {0x29e28,5}, {0x1212a,10}, {0x1b72f,14}, {0x2bace,6}, {0xed84,11}, {0x23f03,3}, {0x1ef01,5}, + {0x14706,10}, {0xe4c0,11}, {0x1fef1,4}, {0x23a61,7}, {0x5ea2,9}, {0x2cfcb,3}, {0x1d4cd,6}, {0x15bbb,7}, + {0x18136,9}, {0x11171,5}, {0x1eb31,8}, {0x217a5,5}, {0x19ac5,5}, {0x2b804,4}, {0xad28,5}, {0x1a928,9}, + {0x3870,13}, {0x2b2ef,4}, {0x16a93,9}, {0x432,70}, {0x532,112}, {0xd6b3,11}, {0x1b4c3,8}, {0x6db5,13}, + {0x22556,7}, {0xfeb,17}, {0x12008,10}, {0x2b79b,4}, {0xee8c,11}, {0x2cc6e,6}, {0x26f6b,6}, {0x1dcc5,7}, + {0xfa21,9}, {0x97ae,12}, {0x23c52,7}, {0x22f76,7}, {0x25253,10}, {0x20301,8}, {0x292c0,5}, {0x2094e,4}, + {0x10c80,10}, {0x1f85c,4}, {0x430,32}, {0x22e28,5}, {0x2d202,2}, {0x26c9b,6}, {0x7c4,17}, {0xb661,11}, + {0x24b81,6}, {0xa582,12}, {0x256b3,6}, {0xfe43,11}, {0x2bdc,6}, {0x617a,10}, {0x292f7,5}, {0x1f239,8}, + {0x1fd5b,3}, {0x28f1c,5}, {0x1859b,8}, {0x1f2f9,8}, {0x6a9c,13}, {0x24279,6}, {0x978a,12}, {0x2a0f8,5}, + {0x17c4a,9}, {0xac42,12}, {0x2d509,3}, {0xb2a6,7}, {0x171c3,9}, {0xbef9,11}, {0x2db4a,2}, {0x25e73,6}, + {0x296a2,5}, {0x19873,9}, {0xe480,9}, {0x209c8,7}, {0x13e0a,10}, {0x274c9,6}, {0x222ec,6}, {0x3f00,10}, + {0x2d263,3}, {0x41c0,3}, {0x1eb85,4}, {0x260b7,6}, {0x22794,7}, {0x6b79,13}, {0x2445c,7}, {0x29183,5}, + {0x2c6c8,6}, {0x266e5,6}, {0x29f54,5}, {0x2a094,5}, {0x46c2,11}, {0x26339,6}, {0x224da,5}, {0x37b4,4}, + {0x2d61f,3}, {0x2b175,4}, {0xfc4b,4}, {0x2890a,5}, {0x29142,5}, {0x150c2,6}, {0x2182a,7}, {0x7a70,8}, + {0x1e35f,8}, {0x28db9,5}, {0x5f7d,13}, {0x15ab8,9}, {0x2221c,5}, {0x12246,6}, {0x275c5,6}, {0x2ce55,5}, + {0x14d54,6}, {0x6d40,13}, {0x5fbe,12}, {0x1f08,15}, {0x182f8,9}, {0x235b2,7}, {0x1fa6,4}, {0x24855,12}, + {0x22910,7}, {0x4860,13}, {0x17a3e,9}, {0x2a0dc,3}, {0x27463,6}, {0x1e71f,8}, {0x1f903,6}, {0xdcb7,11}, + {0x180d3,9}, {0x25b91,6}, {0x2bf52,4}, {0x2cff8,3}, {0x17eae,9}, {0x8446,8}, {0x2cc7a,6}, {0x23684,6}, + {0x285c2,5}, {0x1511e,8}, {0xa07e,7}, {0x12b39,5}, {0x1aa48,8}, {0x2d61a,3}, {0x29b06,5}, {0x2b03d,4}, + {0x28ca1,5}, {0xb46,3}, {0x26bf9,6}, {0x5af6,13}, {0x2a99d,3}, {0x2a280,3}, {0x1ebf,12}, {0x1476c,8}, + {0xe651,5}, {0x27c8d,4}, {0x294bb,5}, {0x12ad0,10}, {0x593c,13}, {0x13be6,3}, {0x9f6c,9}, {0x2b2cb,4}, + {0x15af,3}, {0x28ee5,5}, {0x23a5a,7}, {0x2f32,14}, {0x104e0,10}, {0xd876,11}, {0x27e78,5}, {0x1e317,8}, + {0x2c866,6}, {0x1a0dc,4}, {0x2abd3,8}, {0x16b59,9}, {0x2811e,5}, {0x4f71,11}, {0x21198,5}, {0x150b0,7}, + {0x2b603,4}, {0x3020,12}, {0x159c9,13}, {0x1a81a,9}, {0x26ed1,4}, {0x2a06c,5}, {0x1a7c9,9}, {0x14fca,4}, + {0x2daf0,2}, {0x283b7,5}, {0x28568,5}, {0x10fd2,10}, {0x3167,4}, {0x14102,10}, {0x116f8,10}, {0x259b1,6}, + {0x13f18,10}, {0x89f2,12}, {0x2ac7b,8}, {0xa62a,12}, {0x2ca2e,6}, {0x1040,17}, {0x2aa8b,8}, {0x1f939,5}, + {0x71fe,12}, {0x168d3,7}, {0xff34,20}, {0x244f5,12}, {0x1f981,8}, {0x21ca5,7}, {0x23ed1,5}, {0x27f63,5}, + {0x2134f,7}, {0x4554,13}, {0x1de4d,8}, {0x107f6,10}, {0x2cd28,6}, {0x25bdf,6}, {0x2db06,2}, {0x142ba,10}, + {0x2c0c6,4}, {0x1b3bd,8}, {0x2b6cf,7}, {0x1ad7b,7}, {0x5bbb,11}, {0x7c96,12}, {0x2092e,7}, {0x21542,7}, + {0x12b9a,4}, {0x218af,7}, {0xc347,6}, {0x14c26,10}, {0x1ad21,7}, {0x27c04,3}, {0x17a98,5}, {0x18622,9}, + {0x5399,13}, {0x2a0cb,5}, {0x7138,4}, {0x16f5f,5}, {0x22ae0,7}, {0x2b019,4}, {0x1062a,10}, {0x993a,12}, + {0x118c,10}, {0x6ab6,13}, {0x1a1d6,9}, {0x200c9,8}, {0xca7,5}, {0x9a7e,12}, {0x23319,7}, {0x15989,9}, + {0x20def,7}, {0x8146,12}, {0x243f3,7}, {0x1fd91,5}, {0x2c9d4,6}, {0x29f79,3}, {0x12b48,10}, {0x1d22d,8}, + {0xb0a0,5}, {0x2afcd,4}, {0x2b59b,4}, {0x207a2,7}, {0x242e2,7}, {0x6cf2,13}, {0x23da2,7}, {0x275b0,3}, + {0xfd30,11}, {0x2b0bb,4}, {0xab27,7}, {0x12da2,8}, {0x2c66e,6}, {0xaad3,7}, {0xcdc3,11}, {0x9270,5}, + {0x170f4,9}, {0x179c9,4}, {0x3789,4}, {0x28952,5}, {0x2d25,7}, {0xc463,11}, {0x14fb4,10}, {0xf6a2,11}, + {0x241df,7}, {0x24bdb,6}, {0x28046,2}, {0x22732,7}, {0x268c1,6}, {0x2a0a3,5}, {0x2408,10}, {0x269fb,3}, + {0x20199,8}, {0x12e5e,10}, {0x429e,14}, {0x2ada9,8}, {0x282d1,5}, {0x1d1b5,8}, {0x2762b,6}, {0x13fb8,10}, + {0x21075,9}, {0x27a5f,4}, {0x9f0a,12}, {0x1d84f,6}, {0x27687,4}, {0x2b251,6}, {0xb17b,11}, {0x15d1c,4}, + {0xb642,9}, {0x1e267,8}, {0x24248,7}, {0x19647,7}, {0x19bde,4}, {0x234cd,5}, {0x2962f,5}, {0xe3ef,11}, + {0x29921,5}, {0x1a199,4}, {0x24cef,10}, {0x282f4,5}, {0x109ce,10}, {0xee18,4}, {0x13d10,10}, {0x1a8b3,9}, + {0x2c7be,6}, {0x20d4e,7}, {0x25ebb,6}, {0xc7eb,9}, {0x1f159,8}, {0xaafe,12}, {0x2984d,5}, {0x232d3,7}, + {0x1e302,5}, {0x10738,10}, {0x29515,5}, {0x1ea2f,8}, {0xaa26,11}, {0x242a5,5}, {0x20851,7}, {0xf4d2,11}, + {0x2159d,7}, {0x29f90,5}, {0x642e,8}, {0x1c47d,8}, {0x26897,6}, {0x2bb10,6}, {0x2276a,7}, {0x2aeed,4}, + {0x25a2b,6}, {0x867a,11}, {0x1051,17}, {0xa186,7}, {0x1b7bb,14}, {0x2c554,6}, {0x28d3d,5}, {0x269c9,6}, + {0x263d,15}, {0x11932,10}, {0x27633,4}, {0x188fb,5}, {0xaf8a,12}, {0xf200,7}, {0x23988,7}, {0x16544,9}, + {0x16de5,7}, {0xd431,4}, {0x1935a,9}, {0xd54,17}, {0x18ceb,9}, {0x1e23f,6}, {0x2b495,3}, {0x2a161,5}, + {0x657b,8}, {0xf304,11}, {0x280e7,5}, {0xfb99,11}, {0x1b49b,5}, {0x7046,12}, {0x2cf20,2}, {0x2931f,5}, + {0x14832,10}, {0x278b9,6}, {0x1a2e4,9}, {0x5d5b,13}, {0x2206d,5}, {0x1b5b3,8}, {0x1fe9,15}, {0x8d8e,12}, + {0x4372,12}, {0x1f089,8}, {0x20a69,6}, {0x1a215,9}, {0x7660,6}, {0x24975,12}, {0x29f29,3}, {0x23653,7}, + {0x2a099,5}, {0x8719,5}, {0x1283e,5}, {0x28450,5}, {0x48c8,10}, {0x2d56,14}, {0x201f9,8}, {0x29cb4,5}, + {0x2b285,4}, {0x1eb39,8}, {0x27c31,6}, {0x1ead1,6}, {0x13cde,10}, {0x14e58,8}, {0x1b5bb,8}, {0x2df0,14}, + {0x29bd3,5}, {0x1ecd9,8}, {0x28ce4,5}, {0x25ccf,6}, {0x11f39,7}, {0x2abc3,8}, {0x11766,10}, {0x29374,5}, + {0xb96e,11}, {0x24dca,4}, {0x13b49,5}, {0x2d68c,3}, {0xf5b2,2}, {0xb50c,11}, {0x2141c,7}, {0x14dfc,10}, + {0x25045,6}, {0x15362,8}, {0x1b6b2,3}, {0x14698,10}, {0x2a170,5}, {0x13478,9}, {0x28321,5}, {0x1f521,8}, + {0x2d965,4}, {0x24ebf,6}, {0x1c955,8}, {0x146ca,10}, {0x27247,5}, {0x25204,5}, {0xb706,11}, {0x1a1c6,7}, + {0x1e601,6}, {0xc0dd,11}, {0x2a1f9,3}, {0x25fbb,4}, {0x29e19,5}, {0x23c54,3}, {0x28d47,5}, {0x248b5,12}, + {0x208ef,4}, {0x16b8f,9}, {0x6447,2}, {0x26721,6}, {0x432,47}, {0x25033,6}, {0xd1b7,11}, {0xde2d,11}, + {0x239f8,7}, {0x12be8,10}, {0x1a5e3,9}, {0x1cf63,6}, {0x2b734,2}, {0x290f2,5}, {0x1514,5}, {0x8efd,4}, + {0x1f6a1,8}, {0x27721,6}, {0x10f71,7}, {0xf79f,11}, {0x26c23,6}, {0x1cd05,8}, {0x2b5db,4}, {0x1f809,8}, + {0x4b86,13}, {0x2bdb6,4}, {0x1a02f,9}, {0x2a0fa,3}, {0x273b1,4}, {0x1268e,10}, {0x17e93,9}, {0xc885,11}, + {0xf951,8}, {0x6aea,13}, {0x10300,10}, {0x230e9,7}, {0x10160,12}, {0x19c1b,9}, {0xd645,11}, {0xf9df,4}, + {0xaf66,12}, {0x298d8,3}, {0x257bd,5}, {0x2db0c,2}, {0x1f301,8}, {0x9376,12}, {0x23629,7}, {0x312c,5}, + {0x258cd,6}, {0x1d93b,4}, {0x968e,12}, {0x27b8c,3}, {0x47b7,6}, {0x27fe5,5}, {0x2d2fc,3}, {0x219e5,7}, + {0x21c20,7}, {0x26aeb,6}, {0x2845f,5}, {0x2499,9}, {0xe7cd,11}, {0x27b1a,3}, {0x2d11f,3}, {0x11676,10}, + {0xc54a,11}, {0x2b48d,4}, {0x1a36d,9}, {0x2da65,2}, {0x86da,7}, {0x14e24,10}, {0x15764,18}, {0x25dbb,6}, + {0x5a19,13}, {0x20e43,7}, {0x69d9,13}, {0x258b5,6}, {0x24d65,6}, {0x13b6c,10}, {0x31d7,4}, {0x849c,9}, + {0x6289,13}, {0xfa1f,11}, {0xf8cb,3}, {0x1087a,5}, {0x22087,7}, {0x2d50f,3}, {0x20003,6}, {0xced,3}, + {0x15662,10}, {0xdee8,11}, {0x5f70,13}, {0x21b8d,7}, {0xa4fe,12}, {0x27bbf,6}, {0x23957,4}, {0x2d21b,3}, + {0x2311a,7}, {0x23002,7}, {0x19300,9}, {0x1e,3}, {0x2566f,6}, {0x1bbd5,8}, {0x424c,4}, {0x1df97,8}, + {0x2a928,5}, {0xff0c,20}, {0x20329,8}, {0x22819,7}, {0x6a41,13}, {0x19baf,6}, {0x21758,7}, {0x6b6c,13}, + {0x2331,9}, {0x187c9,9}, {0x288e6,5}, {0x1f109,8}, {0x1fc6b,3}, {0x1ad06,8}, {0x1a9dc,9}, {0x2b58f,4}, + {0xb0c0,11}, {0x24fdf,6}, {0x2a0b4,3}, {0x2400c,5}, {0x22267,7}, {0x2d18b,2}, {0x27b4,15}, {0x26bab,6}, + {0x24137,6}, {0x14ef0,3}, {0x2037c,5}, {0x14620,10}, {0x2a0ff,3}, {0x2b1ed,4}, {0xc89b,11}, {0x592f,13}, + {0x14634,10}, {0x26d37,6}, {0x240e3,7}, {0x2d30b,3}, {0xa17a,8}, {0x13aae,10}, {0x2b35b,3}, {0x206f3,7}, + {0x2d218,3}, {0x2d7bd,4}, {0x13c70,10}, {0x24f07,6}, {0xb96,4}, {0x2cba8,6}, {0x1a823,9}, {0x4354,14}, + {0x15590,10}, {0x1fbd9,8}, {0x575b,13}, {0x6769,13}, {0x922,10}, {0xb6c4,11}, {0x2842d,5}, {0xa9c6,12}, + {0x1281e,10}, {0x2d374,3}, {0x1be3,3}, {0x446a,13}, {0x21ef8,7}, {0x26f17,6}, {0x13e6e,7}, {0xe218,8}, + {0x1f8e1,8}, {0x9ee8,10}, {0x2b9ea,6}, {0x23c91,7}, {0x11004,9}, {0x6b11,13}, {0x2d422,3}, {0x8814,4}, + {0x216fb,7}, {0xecdf,11}, {0xba3f,11}, {0x28fb2,5}, {0x2a2e4,3}, {0x225a5,4}, {0x1aafe,4}, {0x1dc1d,8}, + {0x9b6e,12}, {0x2897e,5}, {0x19fe0,4}, {0xddf8,9}, {0x5d27,13}, {0xb165,11}, {0x1854a,8}, {0xf66d,9}, + {0x159d7,9}, {0x8a0a,12}, {0xde2d,10}, {0xab00,7}, {0x1c895,8}, {0xce5,6}, {0x25339,10}, {0x26297,6}, + {0x2d2f3,3}, {0x2552f,6}, {0x29ecf,3}, {0x23343,7}, {0x1deb5,8}, {0x25999,6}, {0x26f4d,6}, {0xd6be,11}, + {0x1b80f,14}, {0x2b2a1,4}, {0x29de2,5}, {0x1d677,8}, {0x1f763,6}, {0x1e897,8}, {0x2b83a,6}, {0x1b355,8}, + {0x2b045,4}, {0x441c,13}, {0x200f9,8}, {0x2ce87,5}, {0x1bc3d,8}, {0x32c0,14}, {0x2d31d,3}, {0xea6c,11}, + {0x2c2e6,4}, {0x21485,7}, {0x18729,4}, {0x124d8,8}, {0x2b429,4}, {0x1d185,8}, {0x27bbc,3}, {0x14cc,16}, + {0x282a9,5}, {0x2388a,7}, {0x1620a,5}, {0x15b12,9}, {0x2a07b,5}, {0x17915,9}, {0xe86,10}, {0x21903,7}, + {0x2a964,5}, {0x1a34c,5}, {0x24d53,6}, {0x609d,8}, {0x9472,12}, {0x2c6f2,6}, {0x2af01,4}, {0x1a5d3,7}, + {0x28a0c,5}, {0x1a356,5}, {0x2608d,6}, {0x2350a,7}, {0xfc3e,11}, {0x5311,3}, {0x8f82,3}, {0xee44,6}, + {0x29be2,5}, {0x16400,9}, {0x6e03,13}, {0x15326,4}, {0x2bfcc,2}, {0x3aeb,5}, {0x633f,13}, {0x13a7e,8}, + {0x1f55,7}, {0x26927,6}, {0x2aa7b,8}, {0x1d02b,8}, {0x20a00,7}, {0x293c9,5}, {0x2cc86,6}, {0x265e3,6}, + {0x16c0,3}, {0x24280,7}, {0x27fe0,5}, {0x2d515,3}, {0x2af61,4}, {0xb0ec,11}, {0x2b2b7,4}, {0x1d625,8}, + {0x2cbf0,6}, {0x15040,10}, {0x1395a,10}, {0x1a5a4,9}, {0x10e44,4}, {0x2a993,3}, {0x251da,6}, {0x6c22,12}, + {0x2b5c7,4}, {0x1f271,8}, {0xd77b,9}, {0x136c,16}, {0x1de6d,8}, {0x1eff1,5}, {0x2b77b,4}, {0x1dd5f,6}, + {0x2a8f,3}, {0x29d27,5}, {0x1eebb,6}, {0x2351f,7}, {0xceb5,6}, {0xfde2,9}, {0x23a16,5}, {0x2c57e,6}, + {0xc16c,11}, {0x2267c,7}, {0x236c3,7}, {0x1d455,7}, {0x1e2c9,6}, {0x168c8,9}, {0x18194,4}, {0x1f161,5}, + {0x281a5,5}, {0x2d45e,3}, {0x2231f,4}, {0x248b1,8}, {0x1d0f5,8}, {0x22644,7}, {0x24f73,6}, {0xeda5,11}, + {0x25779,6}, {0x7432,12}, {0x16f8c,9}, {0x2326c,5}, {0x2a9df,7}, {0x1e9ff,6}, {0xb47d,7}, {0x2a1a7,5}, + {0x1d731,6}, {0x22e5e,7}, {0x6e10,5}, {0xb6a3,10}, {0x1a337,9}, {0xcb24,11}, {0x24ff3,4}, {0x25b19,6}, + {0x12319,4}, {0x30,150}, {0x258d9,6}, {0x145e6,8}, {0x1d4c7,6}, {0x14134,10}, {0x8760,5}, {0x14fc8,10}, + {0x2c024,2}, {0x11da6,10}, {0x24d1d,6}, {0x27ba7,6}, {0x265b3,6}, {0x2d915,4}, {0x13dd4,4}, {0x2d3a1,3}, + {0x26273,6}, {0x1ef9,15}, {0x24f6d,6}, {0x130ea,8}, {0x1fe79,5}, {0x12102,10}, {0x121a2,10}, {0xfc6a,11}, + {0x2d353,3}, {0x2bce2,4}, {0x1fcf1,8}, {0x1f1b9,8}, {0x1bb70,5}, {0x17d3d,9}, {0x1b36d,8}, {0x1d671,2}, + {0xb62a,11}, {0x2519b,6}, {0x94a2,5}, {0x17160,9}, {0x16bd7,9}, {0x2ba20,6}, {0x866e,12}, {0x293ba,5}, + {0x144c,16}, {0x2c5de,6}, {0x11c75,5}, {0x23630,7}, {0x1ee71,5}, {0x1cd3d,8}, {0x20061,7}, {0x21dfe,3}, + {0x25a7f,6}, {0x2e7c,14}, {0x28b36,7}, {0x13e3e,8}, {0x16f44,9}, {0x24b1b,6}, {0xe008,3}, {0x20d32,7}, + {0x12c4c,7}, {0xf747,11}, {0x195f6,7}, {0x24f03,4}, {0x1f9a1,6}, {0x28003,5}, {0x2d7ed,4}, {0x29ab1,5}, + {0x20129,8}, {0x113dc,5}, {0x274d5,6}, {0x1eec9,4}, {0x1ec89,8}, {0x15086,10}, {0x25b6,15}, {0x192dc,9}, + {0x13dc,16}, {0x154f0,10}, {0xa1da,12}, {0x29089,5}, {0x2daa,8}, {0x29eb9,5}, {0x110ee,6}, {0x288c8,5}, + {0x12692,4}, {0x2b1a5,4}, {0x150f4,10}, {0x25923,6}, {0x195b5,9}, {0x20683,7}, {0x2603f,6}, {0xbfeb,11}, + {0x4338,5}, {0x1edc1,8}, {0x25fa1,6}, {0xb82f,11}, {0x2a000,3}, {0x13d4c,10}, {0x22876,4}, {0xbcac,5}, + {0x1bab5,8}, {0x2c5f6,6}, {0x27f1d,5}, {0x2076a,7}, {0x10ece,10}, {0x2c1a6,4}, {0x23431,7}, {0x19cb4,9}, + {0xb59b,11}, {0x8a3f,3}, {0x2bbe6,4}, {0x2fb0,14}, {0x16029,8}, {0x16be0,9}, {0xd881,11}, {0x2b623,4}, + {0x10684,6}, {0x24f86,3}, {0x21bda,7}, {0x238de,7}, {0x697e,13}, {0x1f839,8}, {0x6e1d,13}, {0x231ec,7}, + {0x2a23d,5}, {0x1003,4}, {0xfc35,9}, {0x11810,10}, {0x19f6b,4}, {0x35d2,8}, {0x1114e,10}, {0x2b205,4}, + {0x28164,5}, {0x2324,6}, {0x5dd0,13}, {0x100e2,10}, {0x2af1d,4}, {0x1b187,16}, {0x10d66,10}, {0x58ba,13}, + {0x1ffc9,5}, {0x261f7,4}, {0x27a7d,4}, {0x17d87,7}, {0x2cb06,6}, {0x1f2c,3}, {0x23bfe,7}, {0x19878,4}, + {0x915a,5}, {0x1b6ab,8}, {0x930f,7}, {0x28ded,3}, {0x7f96,9}, {0x1624e,9}, {0x18904,9}, {0xb19c,11}, + {0x2afa5,4}, {0x11824,7}, {0xc0bc,11}, {0x4de9,13}, {0x63f5,13}, {0x13b30,10}, {0x201ee,3}, {0x1001a,10}, + {0x2cf68,3}, {0xa11,14}, {0x2ad4b,8}, {0x2a01e,3}, {0x2c08c,2}, {0x16601,9}, {0xe431,11}, {0x2147a,4}, + {0xac8a,12}, {0x93fe,5}, {0x2c7e8,6}, {0x18e80,9}, {0x29659,3}, {0x1a044,6}, {0x2c7fa,6}, {0x24ff2,2}, + {0x3a17,3}, {0x14b10,5}, {0x2c01e,4}, {0xc612,11}, {0x23862,4}, {0x9a7e,9}, {0x7026,7}, {0xa41a,12}, + {0x1d7d7,8}, {0x23c36,7}, {0x26a2b,4}, {0x19f06,6}, {0x2d829,4}, {0xa216,12}, {0x284f0,5}, {0x1a3d3,6}, + {0x28531,5}, {0xa82e,5}, {0x291b0,5}, {0x888a,12}, {0x2d771,4}, {0xe13f,6}, {0x2d407,3}, {0x2575b,6}, + {0x284be,5}, {0x3dce,4}, {0x2d46d,3}, {0x1a703,6}, {0x80c2,12}, {0x2d410,3}, {0x2d5ba,3}, {0xf56e,11}, + {0x23de4,4}, {0x15d2e,4}, {0x193fc,9}, {0x4824,8}, {0xcfe9,5}, {0x1b93,15}, {0x2054b,5}, {0x526e,13}, + {0x250cf,6}, {0x52a2,9}, {0x2025,15}, {0x26609,2}, {0x265d7,6}, {0x167ba,9}, {0x15f41,7}, {0x29a39,5}, + {0x1a4f0,9}, {0x23d24,7}, {0x1b59b,8}, {0x29bad,3}, {0x29fdd,3}, {0x221cd,6}, {0x8abe,11}, {0x282c2,5}, + {0x7c5a,12}, {0x1f791,8}, {0x2904,5}, {0x269f3,5}, {0xd0e6,11}, {0x22476,5}, {0x26577,6}, {0x19bd3,9}, + {0x2c12c,2}, {0x15fbd,9}, {0x1f8b9,8}, {0x2c710,6}, {0x2b8e8,6}, {0x28c5f,5}, {0x15b65,5}, {0x1a5a6,4}, + {0x1ea2a,4}, {0x2276,6}, {0x2d167,3}, {0x14418,10}, {0x2c8fc,6}, {0x20041,8}, {0x2bb56,4}, {0x21a16,7}, + {0x274c3,6}, {0x1982b,9}, {0x220f7,7}, {0x10328,10}, {0x1ff41,8}, {0x24a18,5}, {0xcace,8}, {0x1db40,5}, + {0x13b4e,10}, {0x28527,5}, {0x101a2,10}, {0x3456,14}, {0x1fa1b,6}, {0x607a,7}, {0x1f769,8}, {0x568d,10}, + {0x240dc,5}, {0xc163,7}, {0x2b24b,6}, {0x1a449,4}, {0x1c3fd,8}, {0x2cf62,3}, {0x1472e,10}, {0x2cda0,6}, + {0x3d96,3}, {0x1584e,9}, {0x2c86c,6}, {0x41cc,14}, {0x2403b,7}, {0x1462a,9}, {0x28c08,5}, {0x1712a,9}, + {0x175c9,7}, {0x199c2,7}, {0x1e53f,8}, {0x26f05,6}, {0x1a0c8,9}, {0x10092,10}, {0x2c596,6}, {0x21d46,7}, + {0xbce0,8}, {0x3f3d,9}, {0x28ae4,5}, {0x2846e,5}, {0x5cc4,8}, {0x2376b,7}, {0x2561f,8}, {0x2b63f,4}, + {0x432,49}, {0x1d977,8}, {0x265fb,6}, {0x29859,3}, {0x2d73a,4}, {0x28885,5}, {0x1c6c7,6}, {0x120a8,10}, + {0x25da5,4}, {0x1fb51,8}, {0x3db0,7}, {0x24ec5,6}, {0xa162,11}, {0x29551,5}, {0x1f329,8}, {0x1d5f5,8}, + {0x1a9c1,9}, {0x2a991,5}, {0x5997,13}, {0x8d30,6}, {0x40ce,14}, {0x2c836,6}, {0x2aadb,8}, {0x29fc9,3}, + {0x2d3ce,3}, {0xd8ef,11}, {0x24f8b,6}, {0xafd4,3}, {0x25403,4}, {0x22033,7}, {0x27e87,5}, {0x1a1e,8}, + {0x2b3c1,4}, {0x2b479,4}, {0x1231e,10}, {0x2be36,4}, {0x1f9a9,8}, {0x7882,12}, {0x152ca,10}, {0x2d5d4,3}, + {0x1253a,10}, {0x2ce82,5}, {0x214c6,5}, {0x2824f,5}, {0x2b2db,4}, {0x1e439,6}, {0x31fc,14}, {0x150c,16}, + {0x1389c,10}, {0x19236,4}, {0x25ec9,4}, {0x9f27,3}, {0x24b07,6}, {0x25b67,8}, {0x13464,10}, {0x1f994,5}, + {0x24549,12}, {0x2ae4b,6}, {0xad9e,12}, {0x210b6,7}, {0x16494,5}, {0x2b61b,4}, {0x14a12,10}, {0x2d1b7,2}, + {0x9271,5}, {0x19633,9}, {0x2906b,5}, {0x119c8,10}, {0xeb74,11}, {0x23e5f,7}, {0x2acc3,8}, {0x1efa9,8}, + {0xd7dc,11}, {0x1ec25,4}, {0x8062,12}, {0xac72,9}, {0x71d0,10}, {0x213a3,7}, {0x11996,10}, {0x1464,4}, + {0x1c47d,6}, {0xb046,2}, {0x228bc,7}, {0x2a0e1,3}, {0x14670,10}, {0x172b6,9}, {0x2808f,5}, {0x96fa,12}, + {0x2247f,5}, {0x237eb,5}, {0x18c40,9}, {0x126ea,3}, {0x145cc,4}, {0x17292,9}, {0x1e86f,7}, {0x12d82,10}, + {0xfb34,6}, {0x11dd0,7}, {0x1f639,8}, {0x32ce,14}, {0x1d2d5,8}, {0x2b49d,4}, {0x2d527,3}, {0x14f5a,5}, + {0x1aaad,6}, {0x2d365,3}, {0x162a8,8}, {0x292c7,2}, {0x28e36,5}, {0x33f4,12}, {0x2d885,4}, {0x12582,8}, + {0x23511,7}, {0x19cd1,4}, {0xb78d,5}, {0x131d8,10}, {0x23485,7}, {0x1d657,8}, {0x18dd5,8}, {0x2940,10}, + {0x11d1a,10}, {0x2db02,2}, {0x28ada,5}, {0x1887,15}, {0x2d429,3}, {0x275ef,6}, {0x11446,10}, {0x4d9d,6}, + {0x28cb7,3}, {0x153bc,6}, {0x131ee,5}, {0x13d06,10}, {0x867a,12}, {0x295a6,5}, {0x2d143,3}, {0x2d01a,5}, + {0x275a1,6}, {0xbd6d,11}, {0x2bbb2,4}, {0x26a0,6}, {0xdfc4,11}, {0x28635,5}, {0x1a239,9}, {0x1e807,8}, + {0x17d34,9}, {0x2afe1,4}, {0xe901,11}, {0x2be26,4}, {0x28213,5}, {0x25159,6}, {0x20203,4}, {0x2430c,7}, + {0x29c2d,5}, {0x24bf3,6}, {0x2c8c6,6}, {0x13952,8}, {0x28608,5}, {0x2d251,3}, {0x837a,12}, {0x59f4,7}, + {0x182f8,4}, {0x1060c,10}, {0x247e9,12}, {0xb4e0,11}, {0x2afc9,4}, {0x244d1,12}, {0x2659b,6}, {0x1a8e0,9}, + {0x1a8a1,9}, {0x1548e,5}, {0x251fe,5}, {0x24c65,6}, {0x2bda2,4}, {0x2986,5}, {0x17b4c,9}, {0x216b5,7}, + {0x228c3,7}, {0x182fd,4}, {0x2c890,6}, {0x1f133,3}, {0x14959,5}, {0x22d7,8}, {0x2c02e,4}, {0x28ddc,5}, + {0x152bb,5}, {0x64ad,11}, {0x2ceea,2}, {0x2768b,6}, {0xc1fb,11}, {0x28eae,5}, {0x593f,4}, {0x27cc7,9}, + {0x1ae65,9}, {0x2506f,3}, {0x2c4be,6}, {0x1603b,9}, {0x1fcf9,8}, {0x12cbc,8}, {0x2b3b9,4}, {0x29914,3}, + {0x2a16b,5}, {0x2573f,4}, {0x16127,7}, {0x19e9a,9}, {0x1a1bb,9}, {0x2958d,5}, {0x2788f,4}, {0x21782,7}, + {0xb476,7}, {0x22c7f,7}, {0x1aafc,6}, {0x42c8,14}, {0x28114,5}, {0x25027,6}, {0x7939,8}, {0x3af4,9}, + {0x1c935,8}, {0x2aa3b,8}, {0x19c6e,4}, {0x2155e,7}, {0xc3b7,4}, {0x2379c,7}, {0xa21d,5}, {0x27e73,5}, + {0x2c662,6}, {0x264fc,3}, {0x19b16,7}, {0x22d70,7}, {0x113c,16}, {0xc1c9,6}, {0x2adc3,5}, {0x2744b,5}, + {0x7a32,7}, {0x2904,14}, {0x28af3,5}, {0x56e6,13}, {0x23b09,7}, {0x7fae,12}, {0x1b2dd,8}, {0x2c056,4}, + {0x23c6e,7}, {0x364e,14}, {0xf0a7,11}, {0x21aad,7}, {0xda86,11}, {0x238d9,2}, {0x219bb,7}, {0x16218,9}, + {0x22ec7,7}, {0x3b89,5}, {0x11efa,9}, {0xc6d8,11}, {0x24c29,6}, {0x2b5eb,4}, {0x1a7c9,6}, {0x2d701,3}, + {0x289fd,5}, {0x20019,8}, {0x20943,7}, {0x228ae,7}, {0x9d2c,9}, {0x101de,10}, {0x23eba,7}, {0x20ea,4}, + {0x22c71,7}, {0x16910,9}, {0x1f9e1,8}, {0x13b0b,4}, {0x10610,6}, {0x20997,7}, {0x206d8,6}, {0x1ab34,6}, + {0xb5dd,11}, {0x25571,6}, {0x20e35,7}, {0xe959,11}, {0x1c775,7}, {0x128be,10}, {0x1d6c7,8}, {0x271bd,6}, + {0x1a9f0,4}, {0xa3d2,8}, {0x2b7a7,4}, {0x25831,6}, {0x6a75,13}, {0x21d5b,6}, {0x276a9,6}, {0x114a0,10}, + {0x28e04,5}, {0x2428e,7}, {0x16f48,5}, {0x1a8eb,6}, {0x2c2a6,4}, {0x2781d,6}, {0x20a9a,7}, {0x2807b,5}, + {0x1ce1d,8}, {0x260bd,8}, {0x170e,3}, {0x153d8,10}, {0xa576,12}, {0x1595e,7}, {0x1f359,8}, {0x2d3d4,3}, + {0x147da,5}, {0x240ec,4}, {0x267cf,6}, {0x2a03a,5}, {0x3bc3,3}, {0x8eae,8}, {0x28bf9,5}, {0x15b75,3}, + {0xa20a,12}, {0x2d44c,3}, {0x1d6aa,5}, {0x2834e,5}, {0x14850,10}, {0x2829f,5}, {0x296f2,5}, {0xc295,11}, + {0x1b315,8}, {0x16113,9}, {0xbc28,5}, {0x174a0,7}, {0x1e359,5}, {0x12bc,16}, {0x1e91f,8}, {0x17ca4,9}, + {0x26423,6}, {0x2751d,6}, {0x121d6,8}, {0x251a7,6}, {0x26be7,6}, {0x202c,7}, {0x1c5bd,8}, {0x2bfae,4}, + {0x1e11f,6}, {0x2a15c,5}, {0x122a6,6}, {0x1cee,8}, {0x214f5,7}, {0x23446,7}, {0x195c7,9}, {0x2d12b,3}, + {0x1afb4,4}, {0x2584f,6}, {0x8176,11}, {0xffd4,10}, {0x269ab,6}, {0x26a7d,6}, {0x1a080,9}, {0x10b9a,10}, + {0x64df,13}, {0x1f691,8}, {0x10848,8}, {0x1e6df,8}, {0xc4cb,3}, {0x29f31,5}, {0x1bb25,8}, {0x1fa39,8}, + {0x2d3e0,3}, {0x5bc6,8}, {0x1af63,4}, {0x23aca,7}, {0x1a25d,9}, {0xc137,8}, {0x1a352,9}, {0x628b,10}, + {0x2a0ad,5}, {0x2da57,2}, {0x146c,5}, {0x21ad7,7}, {0x2d839,4}, {0x23a53,6}, {0x216ae,7}, {0x23b5d,7}, + {0x2d281,3}, {0x23828,7}, {0x1a528,4}, {0x2cca,14}, {0x2ceb9,5}, {0x157d0,18}, {0xfe7a,7}, {0x1f86,3}, + {0x1db75,8}, {0x7a89,4}, {0x27757,6}, {0x277c9,6}, {0x2b345,4}, {0x2bf5a,4}, {0x26dc1,6}, {0x2d521,3}, + {0x185c8,9}, {0x1311a,10}, {0xec68,4}, {0x26af1,4}, {0x10172,12}, {0x29b74,5}, {0x294c5,5}, {0xd8c3,11}, + {0x21ccf,7}, {0x24cd1,6}, {0x2977e,5}, {0xfde,3}, {0x1df1f,8}, {0x6e5e,13}, {0x23d16,7}, {0xdb99,11}, + {0x2d72,9}, {0x17238,9}, {0x6add,13}, {0x19591,9}, {0xa018,6}, {0x28295,5}, {0x9a1e,12}, {0x2b561,4}, + {0xff38,8}, {0x5e38,13}, {0x1b13e,9}, {0x206bb,7}, {0x1eed1,8}, {0x1f643,6}, {0xf6fa,7}, {0x1b123,5}, + {0x15126,10}, {0x292f2,5}, {0x252cb,10}, {0x2d3ab,3}, {0x2cf2a,3}, {0x14dcd,7}, {0x29f60,3}, {0x19bca,8}, + {0x17be0,4}, {0x1ce15,8}, {0x296ac,5}, {0x7d7c,9}, {0x2b26b,4}, {0x2c9ec,6}, {0x2621f,6}, {0x23717,7}, + {0x1b847,14}, {0x2da3d,2}, {0x28763,8}, {0x21abb,7}, {0x15adf,6}, {0x611d,8}, {0x1b55b,8}, {0x1e1d7,8}, + {0x10a14,10}, {0x2b2d7,4}, {0x2ac8b,8}, {0x21f6,15}, {0x1694f,9}, {0x28f85,5}, {0xc91,18}, {0x1fbc9,8}, + {0xf1f,6}, {0x127d8,10}, {0x14636,8}, {0x2b3c9,4}, {0x1e4a7,8}, {0xce47,11}, {0x2a1f4,3}, {0x28076,5}, + {0x203f9,7}, {0x1944d,9}, {0x5d36,11}, {0x1dd0d,8}, {0x1366c,10}, {0x26aad,6}, {0x27a9b,4}, {0x27c5,6}, + {0x11b12,10}, {0x29149,3}, {0x6cb1,5}, {0x27aad,4}, {0x1819d,5}, {0x9646,12}, {0x2bf64,2}, {0x3c0c,9}, + {0x2a17a,5}, {0x23704,5}, {0x3fa8,5}, {0x64df,12}, {0x1d34d,8}, {0x1b45b,5}, {0x25183,6}, {0x1bd55,8}, + {0x25111,6}, {0xb312,11}, {0x182f4,3}, {0x91bd,8}, {0x29dc4,5}, {0x24101,5}, {0xf901,4}, {0x2d042,3}, + {0x127ba,10}, {0x2d75d,4}, {0x19838,5}, {0x4284,4}, {0x1320a,10}, {0x1ffc9,8}, {0xdffb,11}, {0x2ccf,9}, + {0x60c7,6}, {0x36b6,5}, {0x27085,6}, {0x2c062,4}, {0x146ae,3}, {0x25b1f,6}, {0x23be2,7}, {0x2d4b8,3}, + {0x2890f,7}, {0x2ca8e,6}, {0x13f60,8}, {0x234c6,5}, {0x30,154}, {0x2d5c6,3}, {0x145ac,3}, {0x2005b,6}, + {0xb7f,19}, {0x11fce,8}, {0x157ac,12}, {0x1dc15,7}, {0x1f399,8}, {0x2b087,4}, {0x2db4c,2}, {0x25663,6}, + {0x7672,12}, {0x2333,7}, {0x1e941,6}, {0x646a,10}, {0x12490,10}, {0x1f7a1,8}, {0x2db5e,2}, {0x5a8e,13}, + {0x2806c,5}, {0x2c4ac,6}, {0x21f61,7}, {0x2d530,3}, {0x1bd75,8}, {0x15324,10}, {0x2d098,3}, {0x2d725,3}, + {0x2b584,7}, {0x25485,6}, {0x13372,10}, {0x2cfce,3}, {0x927f,4}, {0x23ae9,4}, {0x8692,12}, {0x249b1,8}, + {0x36ce,12}, {0xa72a,6}, {0x1bd45,8}, {0x169a4,4}, {0x2c53c,6}, {0x263ff,6}, {0x21c12,7}, {0x1139e,8}, + {0xd58a,11}, {0x342c,14}, {0x178c,16}, {0x1e65f,8}, {0x23345,5}, {0x1d19,15}, {0x194a7,9}, {0x1e587,8}, + {0x1acff,7}, {0x201d1,8}, {0x360e,3}, {0x1b5f3,8}, {0x93fa,12}, {0x27fd6,5}, {0x28130,3}, {0xc71a,11}, + {0x2c6e6,6}, {0x24d17,6}, {0x276cd,6}, {0xeb48,10}, {0x18673,9}, {0x1d9b1,4}, {0x212f4,7}, {0x15e94,9}, + {0x4971,13}, {0x189de,4}, {0xb68d,5}, {0x2870b,8}, {0x28e22,5}, {0x29d22,5}, {0x2334a,7}, {0x232da,7}, + {0x27bd7,6}, {0x29fd3,3}, {0x78ca,12}, {0x1ce3,4}, {0x4832,7}, {0x29f63,5}, {0x2da80,2}, {0x11b8c,8}, + {0x1568a,8}, {0x20771,7}, {0x2cf4,14}, {0x2bc76,4}, {0x27ca9,6}, {0x10742,10}, {0x5bd3,13}, {0x21462,7}, + {0x1faa9,8}, {0x2c2b6,4}, {0xcbbe,11}, {0xc93a,6}, {0x6d83,8}, {0x1b2ad,8}, {0x208a9,7}, {0x26a5b,4}, + {0x171e9,7}, {0x17fbc,9}, {0x1d2ff,6}, {0x1104a,10}, {0x23035,5}, {0x3da4,5}, {0x2276a,6}, {0x1b4ab,8}, + {0xb2ba,7}, {0x1b58b,8}, {0x10e6a,7}, {0x5288,13}, {0x1f1b9,7}, {0x15056,8}, {0x2ae85,4}, {0x1df07,8}, + {0x28aee,5}, {0x2bfe6,4}, {0x13e16,8}, {0x24efb,6}, {0xa882,12}, {0x17b96,9}, {0x169a0,9}, {0x9273,4}, + {0x11ec8,10}, {0x285e0,5}, {0x1165e,4}, {0x26095,4}, {0x2b4a9,4}, {0x2c7f4,6}, {0xa03,28}, {0x23239,7}, + {0x2afd1,4}, {0x12544,10}, {0x1a2ed,9}, {0x118ce,10}, {0x2513b,6}, {0x113ec,9}, {0x17873,9}, {0x1984f,9}, + {0x20351,8}, {0x2836c,5}, {0x763a,4}, {0x2c4a6,6}, {0x17499,3}, {0x25d43,6}, {0x2838f,5}, {0x286bb,8}, + {0x415e,4}, {0x20bd9,5}, {0x25a2b,5}, {0xb8f5,11}, {0x19c41,7}, {0x28178,5}, {0x1fcb9,5}, {0x1ca25,8}, + {0x2096d,7}, {0x5642,8}, {0x1ded7,8}, {0xa0f6,12}, {0x17cc8,9}, {0x2aff9,4}, {0x22f48,3}, {0x24b5d,6}, + {0x26b3f,5}, {0x2a0e9,5}, {0x2b011,4}, {0x1afbb,5}, {0x2293a,7}, {0xf24d,3}, {0xb3d8,11}, {0xcedb,3}, + {0x147e4,3}, {0x28540,5}, {0x15040,5}, {0x12d73,4}, {0x2d455,3}, {0x2bd8a,4}, {0x1c0ef,6}, {0x1a3ae,7}, + {0x2100f,4}, {0xeb95,11}, {0x2dae4,2}, {0x2d921,4}, {0x1d9e9,6}, {0xd8e,10}, {0x18a99,9}, {0x12186,8}, + {0x290b1,5}, {0x1b3d1,10}, {0x27163,6}, {0x2ce50,5}, {0x1a278,9}, {0x155ba,8}, {0x23d8d,7}, {0xfb5e,11}, + {0x140ee,10}, {0x2224d,5}, {0x2696f,6}, {0x2cf54,3}, {0x2856d,5}, {0x21fe6,7}, {0x2845a,5}, {0x3033,3}, + {0x24cbf,6}, {0x23167,7}, {0x1fdb9,8}, {0xa7de,2}, {0x26a65,6}, {0x2222f,7}, {0x2865d,5}, {0xa19,16}, + {0x1c89d,8}, {0x1c965,8}, {0xc581,11}, {0x1af3d,9}, {0xeacf,11}, {0x20c8d,7}, {0x1ef39,8}, {0x84b2,12}, + {0x24f79,6}, {0x765a,12}, {0x1582a,3}, {0xa252,12}, {0xf52,12}, {0x9a72,12}, {0x1eadf,8}, {0x26eab,5}, + {0x7552,12}, {0x1e0bd,8}, {0x28522,5}, {0x1b48e,5}, {0x63e0,8}, {0x27dfd,9}, {0x29070,5}, {0x2363e,6}, + {0x29e9b,5}, {0x26cb9,6}, {0x8812,8}, {0x22da8,7}, {0x241ae,7}, {0xfe03,3}, {0x1e165,8}, {0x105bc,10}, + {0x6705,3}, {0x24dd1,6}, {0x20579,8}, {0x2c6f8,6}, {0x270f7,4}, {0x36be,14}, {0x17410,7}, {0x2956a,5}, + {0xfaa3,8}, {0x18445,9}, {0x1f813,5}, {0x1fcc1,8}, {0x24434,5}, {0x24879,8}, {0x26465,5}, {0x11e00,9}, + {0x245d9,12}, {0x22e26,7}, {0x21854,7}, {0x7c42,12}, {0x28173,5}, {0x17d14,5}, {0x21a7a,9}, {0x532,514}, + {0xa800,7}, {0x9556,12}, {0x136da,10}, {0xceb,18}, {0x4c08,13}, {0x1fb59,8}, {0x19f3c,9}, {0x1eb71,8}, + {0x1ea97,8}, {0xb205,4}, {0x1d03b,8}, {0x1cc1,7}, {0x29420,3}, {0x269db,6}, {0x19eb5,9}, {0x1cf37,10}, + {0x20aee,7}, {0x23462,7}, {0x18349,9}, {0x21d10,5}, {0xcafd,4}, {0x2d46a,3}, {0x2be6c,2}, {0xf63f,11}, + {0x19537,9}, {0xf73c,11}, {0x2347e,7}, {0x2a0d0,5}, {0x20069,8}, {0x2ac1b,8}, {0x2759b,6}, {0x1b1a7,16}, + {0xc140,11}, {0x2d3dc,3}, {0x2afec,4}, {0x1d50d,8}, {0x27c2b,6}, {0x2886a,7}, {0x12b7a,10}, {0xc864,7}, + {0x24a51,6}, {0x28b55,5}, {0x2bbea,4}, {0x1ed09,8}, {0xb931,3}, {0x28e90,5}, {0x2d7ad,4}, {0x16985,9}, + {0x29fe2,3}, {0x236ae,6}, {0x25b25,6}, {0x2673f,6}, {0x2054,6}, {0x2cd64,6}, {0x1c565,8}, {0xa1c5,9}, + {0x29d2e,3}, {0x1208e,6}, {0x4c7d,13}, {0x16b25,6}, {0x4930,13}, {0x24fcd,6}, {0x1f673,4}, {0x2d2ab,3}, + {0x1881a,9}, {0x2a0e6,3}, {0x2951f,5}, {0xf8ff,13}, {0x2b445,4}, {0x2c410,6}, {0x297e9,5}, {0xcfb4,9}, + {0x214e7,7}, {0x2592f,6}, {0x288c3,5}, {0xdb83,11}, {0x2bc6e,4}, {0x1cd55,8}, {0x298bd,5}, {0x1c44d,8}, + {0x106f7,5}, {0xd015,8}, {0x1b8fd,14}, {0x67aa,5}, {0x20331,8}, {0x2cfc4,3}, {0x25ff5,6}, {0x291a8,3}, + {0x2c824,6}, {0x7b46,12}, {0x275bf,6}, {0x1e13,5}, {0x23f4,15}, {0x27697,6}, {0x2401f,7}, {0x1b9cd,8}, + {0xbf3b,11}, {0xc54d,8}, {0x18abd,8}, {0x113bc,6}, {0x2b52d,4}, {0xe15b,11}, {0x29106,5}, {0x23772,7}, + {0x24eb1,6}, {0x254e7,6}, {0x163c,16}, {0x216a7,7}, {0x6fda,9}, {0x1a4e9,4}, {0x10b5e,10}, {0xd19,8}, + {0x1f92b,3}, {0x10bba,8}, {0x13bee,10}, {0xd88c,8}, {0xa19e,12}, {0x177e5,7}, {0x24735,12}, {0x25a31,6}, + {0xcb9,4}, {0x202d9,8}, {0xa614,3}, {0x50ec,3}, {0xf9be,8}, {0x5be0,13}, {0x16907,9}, {0x189c3,7}, + {0x25c1b,6}, {0x2835d,5}, {0xc890,11}, {0x82de,12}, {0x123b4,7}, {0x151e4,10}, {0x1836d,6}, {0x2bde0,2}, + {0x67b7,13}, {0x28f00,2}, {0xc9a5,7}, {0x13a72,10}, {0x23154,3}, {0x3fe3,2}, {0x2eb4,14}, {0x29533,5}, + {0x192e5,9}, {0xa391,4}, {0x1906f,9}, {0x14d6b,5}, {0x2d1c3,3}, {0x6178,13}, {0x2929f,3}, {0xefda,3}, + {0x28394,5}, {0x20009,8}, {0x147ee,8}, {0x2822c,5}, {0x1ed81,8}, {0xfffc,10}, {0x1e1e7,8}, {0x25a73,6}, + {0x29e5f,5}, {0x7c06,12}, {0x26f0b,6}, {0x2079b,7}, {0x26fe3,6}, {0x2b5f7,4}, {0x10788,10}, {0x28fbc,5}, + {0x46a8,11}, {0xaca4,3}, {0x2367d,7}, {0x2c8ba,6}, {0x16bb3,8}, {0x1314e,8}, {0x1cf15,6}, {0x8cce,12}, + {0x13354,10}, {0x9cf0,7}, {0x1869,15}, {0x24a45,6}, {0x1020,4}, {0x27781,6}, {0x2d299,3}, {0x14cd0,10}, + {0x26f5f,6}, {0x22ccc,7}, {0x19bb8,6}, {0x29b2e,5}, {0x23a29,5}, {0x1012,5}, {0xbcab,6}, {0x2c4fa,6}, + {0x296e5,3}, {0x9fa6,12}, {0x2d12e,3}, {0x6151,13}, {0xb1e9,11}, {0x1ee54,4}, {0x2c05e,4}, {0x70dc,14}, + {0x634c,11}, {0x7a56,6}, {0x28a3b,7}, {0x1552c,10}, {0x23e19,7}, {0x25eaf,6}, {0x23668,7}, {0x2d191,3}, + {0x2d83d,4}, {0x2b491,4}, {0xa006,12}, {0x9aba,12}, {0x285bd,5}, {0x2ad53,8}, {0xb53a,9}, {0x2b5b8,3}, + {0x29144,3}, {0x23b51,5}, {0x19e37,9}, {0x273d9,6}, {0x1152c,10}, {0xdb85,8}, {0x2d27e,3}, {0x24a93,6}, + {0x2662b,6}, {0x27bc5,6}, {0x24be7,6}, {0x29179,5}, {0x6448,8}, {0xbe8b,11}, {0xf9ea,9}, {0x20c2b,7}, + {0x2cc02,6}, {0x2a0af,3}, {0x211df,4}, {0xf249,5}, {0x17c6e,9}, {0x11b78,7}, {0x26065,4}, {0x2d53c,3}, + {0x180c1,8}, {0x35f5,3}, {0x28fcb,5}, {0x10472,10}, {0x25ebd,3}, {0x22d69,7}, {0x11ac,15}, {0x2de2,14}, + {0x13d12,8}, {0xbb8,19}, {0x12d00,10}, {0x1201c,8}, {0x14d66,10}, {0x299ee,5}, {0x16919,9}, {0x40b4,4}, + {0x287fa,7}, {0x24891,12}, {0x4f96,13}, {0x1f11,3}, {0x2a887,5}, {0x21934,5}, {0x9e9a,4}, {0x29a98,4}, + {0x2c086,4}, {0x24db3,6}, {0x1991e,9}, {0x15252,10}, {0x25e03,8}, {0x20747,7}, {0x5dc3,13}, {0x250f3,6}, + {0x54eb,13}, {0x12354,5}, {0x2b105,4}, {0x2886,14}, {0xa44a,12}, {0x2d477,3}, {0x1b3d4,7}, {0x91ea,12}, + {0x82f6,12}, {0x2d617,3}, {0x27a95,4}, {0x8572,11}, {0x27a18,3}, {0x14efb,4}, {0x2b78f,3}, {0x14c58,10}, + {0x171cc,9}, {0x1fc43,6}, {0xa23a,12}, {0x17cc,16}, {0x1b4eb,8}, {0x2972e,5}, {0x274b,15}, {0x25b85,6}, + {0x2ce5f,5}, {0x25e75,4}, {0x186b4,6}, {0x1bddd,8}, {0x1b583,8}, {0x6bee,13}, {0x17e29,5}, {0x2a175,5}, + {0xd532,11}, {0x2a0aa,3}, {0x1ede1,8}, {0x1ad4e,9}, {0x11b4e,10}, {0x19a1a,9}, {0xb5f5,9}, {0x1b61b,3}, + {0x2b8e2,6}, {0x28b0,14}, {0x1ccd5,8}, {0x238b,15}, {0x29889,5}, {0x213aa,7}, {0x1cdfd,8}, {0x29b8d,5}, + {0x2b5d3,4}, {0xed39,9}, {0x17b3c,7}, {0x8f8b,6}, {0x5893,13}, {0xf521,6}, {0x1a2d2,9}, {0x286d3,8}, + {0x23725,7}, {0x2c5ba,6}, {0x2bb52,4}, {0x27e64,5}, {0x207cc,7}, {0x55bb,13}, {0xa132,12}, {0x1ad98,7}, + {0x2c896,6}, {0x2c0ae,4}, {0x23224,7}, {0x2a078,3}, {0x1b9f7,6}, {0x2c52a,6}, {0x240f1,6}, {0x432,50}, + {0x1972f,9}, {0x27ba1,6}, {0x1e5c7,7}, {0x365c,5}, {0xa77d,4}, {0x18874,9}, {0x2da79,2}, {0xcf86,11}, + {0x27bd1,6}, {0xa8ca,12}, {0x20171,8}, {0x28ea4,5}, {0xd47,3}, {0x19c7e,9}, {0xcc63,11}, {0x9232,12}, + {0x1fb41,8}, {0x286a6,5}, {0x291d8,7}, {0x1da5f,5}, {0x27f40,5}, {0xe069,6}, {0x17db2,9}, {0x146fc,10}, + {0x1c19d,8}, {0x15d38,3}, {0x12788,10}, {0xaaaa,12}, {0x24011,7}, {0x28504,5}, {0x228df,7}, {0x2b5bb,4}, + {0x22974,4}, {0x2a062,5}, {0x29f2c,5}, {0x2ade3,6}, {0x11cfc,10}, {0x2d149,3}, {0x27f9a,5}, {0x1da4,3}, + {0xf41,6}, {0x226c9,7}, {0x273d5,3}, {0x297bf,7}, {0xa29a,12}, {0x23312,7}, {0x20f25,5}, {0x12c2e,10}, + {0x285d1,5}, {0x13a10,5}, {0x2c674,6}, {0xa4d,48}, {0x2a0c3,3}, {0x26a19,4}, {0x1fea3,3}, {0xa1e6,12}, + {0xa25e,12}, {0x355a,4}, {0x2951a,5}, {0x1ab29,7}, {0x24b45,6}, {0x2373a,7}, {0x24344,7}, {0x23c85,5}, + {0x1afaf,3}, {0x2bc54,2}, {0x15adc,9}, {0x2019,3}, {0x2d5ce,3}, {0x29f0e,5}, {0x16a15,6}, {0x2094d,2}, + {0x7b25,4}, {0x13dd3,4}, {0x1e9ff,8}, {0x29025,5}, {0xa89a,5}, {0x2b65f,4}, {0x1c53d,8}, {0x27c3a,3}, + {0x282cc,5}, {0x77ac,10}, {0x4506,13}, {0x3066,14}, {0x28c3c,5}, {0x150b8,10}, {0x196f0,9}, {0x1497c,10}, + {0x2d320,3}, {0x1aa6e,7}, {0x23271,7}, {0x1b3e3,8}, {0x14c1c,9}, {0xa102,12}, {0x1f449,8}, {0x156e4,10}, + {0x17890,7}, {0x17bc3,9}, {0x29bf8,3}, {0x2344d,7}, {0x1e707,8}, {0x15450,10}, {0x247c5,12}, {0x19324,9}, + {0x115ae,10}, {0xf8eb,9}, {0x29f95,5}, {0xcc4d,11}, {0x24a35,3}, {0x6f14,13}, {0x275d1,6}, {0x26e7b,6}, + {0x29f18,5}, {0x24088,7}, {0xce73,11}, {0x29abb,5}, {0x1f5c1,8}, {0x2a93c,5}, {0x24f85,5}, {0x239bb,5}, + {0x4f1a,6}, {0x23152,7}, {0x29ec0,3}, {0x2d851,4}, {0x283b2,5}, {0xed7b,6}, {0xc4b0,11}, {0x1a110,9}, + {0x2858b,5}, {0x1ff09,8}, {0x1936c,9}, {0x1a5af,4}, {0x2aaf3,8}, {0x296f7,5}, {0x1a9af,9}, {0x36b0,14}, + {0x21aa1,3}, {0x24ad7,6}, {0xbc9c,11}, {0x2ba6a,4}, {0x27c85,6}, {0x2b2bf,4}, {0x213f2,7}, {0x12c3a,8}, + {0x2509f,6}, {0x2304f,7}, {0x1322a,5}, {0x20189,6}, {0x1a1a2,7}, {0x2a1d9,5}, {0xe3d9,11}, {0x3aae,14}, + {0x1cbd0,4}, {0x2109a,7}, {0x13f4a,10}, {0x1c8f5,7}, {0x191ce,9}, {0x2a01c,5}, {0xc3b7,5}, {0x1d9a1,6}, + {0x24a7b,6}, {0x7f72,12}, {0x2138,8}, {0x7aaa,7}, {0x202d1,8}, {0x2d18b,3}, {0x24fb5,6}, {0x28816,7}, + {0x18187,9}, {0x293ee,3}, {0x29dd,4}, {0x1f5c3,3}, {0x92c2,11}, {0x15748,10}, {0x1e741,6}, {0x2bcea,4}, + {0x2b66f,4}, {0xf97c,9}, {0x2b4b1,4}, {0x2b7cc,3}, {0x29c28,5}, {0xa042,12}, {0x19189,6}, {0x26b95,4}, + {0x2585d,8}, {0x2be6a,4}, {0x19ad7,6}, {0x29f59,5}, {0x70f6,12}, {0x7ab6,12}, {0x1d96f,8}, {0x51e2,9}, + {0x2d79,5}, {0xdc0,5}, {0x54f8,13}, {0x2813c,5}, {0x123e6,10}, {0x2082e,7}, {0x7e16,12}, {0x23438,7}, + {0x15446,10}, {0x14058,10}, {0x2c476,6}, {0x24fcb,3}, {0x29ae5,3}, {0x27175,5}, {0x28bb6,5}, {0x1e0ed,6}, + {0x2b32d,4}, {0x234a,5}, {0xe0a0,11}, {0x2a1c2,3}, {0xfee4,20}, {0x154a5,5}, {0x1a62d,4}, {0x29315,5}, + {0x120c,16}, {0x1deef,8}, {0x5c2e,13}, {0x155d8,3}, {0xacf8,3}, {0x2abab,8}, {0x1b43b,8}, {0x28326,5}, + {0x27ce2,6}, {0x298f4,5}, {0x27085,5}, {0x234c4,7}, {0x2cc68,6}, {0x14b90,10}, {0xf726,5}, {0x946,35}, + {0x2a923,5}, {0x5358,13}, {0x26181,6}, {0x1bf07,6}, {0x2051b,8}, {0xf32,5}, {0x2a0f3,5}, {0x24225,7}, + {0x2499,15}, {0x2bc4e,4}, {0x272ef,6}, {0x2bd56,4}, {0x2c91a,6}, {0x2d704,3}, {0x208be,7}, {0x1dbf5,8}, + {0x118a6,10}, {0xd70b,11}, {0x2d29f,3}, {0xb472,11}, {0x26c05,6}, {0x5150,13}, {0x2086d,7}, {0xb991,9}, + {0x28b02,5}, {0x1813f,9}, {0x19942,9}, {0x24295,7}, {0x1aa7,3}, {0x3716,9}, {0x240f8,7}, {0xd4c4,11}, + {0x2b827,7}, {0x22b36,5}, {0x293a1,5}, {0xba13,11}, {0x2bfb8,2}, {0x2a06e,3}, {0x29c19,5}, {0x2b613,4}, + {0x15176,10}, {0xeb5,3}, {0x29654,2}, {0xeb82,4}, {0x1650e,9}, {0x24e99,6}, {0x12e0,4}, {0x5893,8}, + {0x7e52,7}, {0xfe45,9}, {0x1ff99,8}, {0x20cab,5}, {0x1c9e5,8}, {0x2d012,3}, {0x1878,15}, {0x22f99,7}, + {0x99fc,6}, {0xe3a2,11}, {0x2f40,14}, {0x2a0cd,3}, {0x2b26f,6}, {0x275d7,6}, {0x205f0,7}, {0x2ade9,6}, + {0xdea6,11}, {0x243b4,7}, {0x2343f,7}, {0x1a2d,8}, {0x2d71c,3}, {0x209dd,7}, {0x2af69,4}, {0x988c,6}, + {0x227be,7}, {0x2af95,4}, {0xaa20,5}, {0x5ccc,9}, {0x1aead,9}, {0x123c8,10}, {0x2d260,3}, {0x14954,10}, + {0x1b44b,8}, {0x19a11,8}, {0x248fd,12}, {0x176c,16}, {0xb3a5,5}, {0x2b1db,4}, {0xdfa3,11}, {0x8cf2,12}, + {0x29b9c,5}, {0x8a3a,12}, {0x2ab6b,8}, {0x3ffc,14}, {0x289bc,5}, {0x2511,15}, {0x1a6fd,3}, {0x16c1f,9}, + {0x1e97f,8}, {0x24ce3,6}, {0x272ad,6}, {0x8c70,10}, {0x27745,6}, {0x709a,22}, {0x23d55,7}, {0x2db44,2}, + {0x14abc,10}, {0x15234,10}, {0x26e6f,6}, {0x1f581,8}, {0x25d29,6}, {0x2769d,6}, {0x232f8,4}, {0xf6e6,6}, + {0x214ee,7}, {0x24a4b,6}, {0x2a08f,5}, {0xf1f,17}, {0xcc7,18}, {0xeb06,11}, {0x290c0,5}, {0x26a4f,4}, + {0x19fe,15}, {0x273b5,6}, {0x5f24,11}, {0x20aa9,3}, {0x75b2,12}, {0x14712,3}, {0x27451,6}, {0x411f,3}, + {0x70f1,5}, {0x1d4dd,8}, {0x23d01,7}, {0xb20f,4}, {0xca5e,10}, {0x2db66,2}, {0x2bc06,4}, {0x28808,7}, + {0xee34,11}, {0xa222,5}, {0x9ed0,10}, {0x2d680,3}, {0xc890,8}, {0x2a8e2,5}, {0x299b7,5}, {0x2615d,6}, + {0xd0fc,11}, {0x255d7,6}, {0x24f2b,6}, {0xe90c,11}, {0x132fa,10}, {0x254c1,6}, {0x117c0,10}, {0x24c05,6}, + {0x25b31,6}, {0x209ac,7}, {0x11c34,10}, {0x675c,13}, {0x5435,5}, {0x15b00,9}, {0x1e9f,15}, {0x267bd,6}, + {0x253fb,6}, {0xff7a,10}, {0x2138e,7}, {0xa89a,12}, {0x8836,12}, {0x1189c,10}, {0x2b365,4}, {0x1aec8,9}, + {0x1b0a5,9}, {0x7ee2,12}, {0x78fa,12}, {0x13748,10}, {0xa8fc,3}, {0x1dcb1,3}, {0x20ebe,5}, {0x18d7b,9}, + {0x25a97,6}, {0x29a66,5}, {0x14bd6,8}, {0x1c2ad,8}, {0x5657,13}, {0x2b371,3}, {0x1d3fd,8}, {0x42a4,3}, + {0x28c50,5}, {0x1f869,8}, {0xfa79,9}, {0x2c5f0,6}, {0x2b405,4}, {0x2ce41,5}, {0x2297b,5}, {0x131ba,10}, + {0x9b62,11}, {0x2b1c7,4}, {0x23208,7}, {0xade6,12}, {0x3616,14}, {0x2d8e1,4}, {0x392b,9}, {0x2b039,4}, + {0x1330e,10}, {0x22bc2,7}, {0x2d479,3}, {0x26bcf,6}, {0x25517,6}, {0x2b667,4}, {0x24f01,6}, {0x118e2,10}, + {0x29d09,5}, {0x118ce,8}, {0x156a8,10}, {0x27e28,5}, {0x1f881,8}, {0x204eb,8}, {0x1511c,10}, {0x14e88,10}, + {0x18074,5}, {0x291ba,5}, {0x23a68,7}, {0x28182,5}, {0x7437,5}, {0x2d1af,3}, {0x288d2,5}, {0x2d5bd,3}, + {0xaac2,12}, {0xf641,3}, {0x294cf,5}, {0x250c9,6}, {0x26b4b,6}, {0x28012,5}, {0x216ed,7}, {0x28a69,5}, + {0x29af7,5}, {0x1a7ff,9}, {0x29ed7,5}, {0x22a52,7}, {0x12c74,6}, {0x1af6a,9}, {0x1a42a,9}, {0x16bf2,9}, + {0x29b97,5}, {0x1bd05,8}, {0xd53d,11}, {0x7560,5}, {0x269cf,5}, {0xf21,4}, {0x1d385,8}, {0x2440a,5}, + {0x26c4d,6}, {0x205f5,4}, {0x23a6f,7}, {0x10c30,10}, {0x2c494,6}, {0x687c,5}, {0x27ab3,4}, {0x6c15,12}, + {0x18d96,9}, {0x26267,6}, {0xb089,11}, {0x11360,10}, {0x5dc8,6}, {0x205e9,7}, {0x16a9c,8}, {0x29f8d,3}, + {0x807c,9}, {0x14618,6}, {0x19aaa,9}, {0x27193,6}, {0x1eaf7,8}, {0x9aea,12}, {0x1e2b7,8}, {0x12028,8}, + {0x2c2b2,4}, {0x213f9,7}, {0x1a847,9}, {0x48d5,13}, {0x23d50,5}, {0x23d86,7}, {0x29f4c,3}, {0x18c0a,9}, + {0x246c9,12}, {0x1bf65,8}, {0x276f7,6}, {0x1171b,4}, {0x263b1,6}, {0x8b72,12}, {0x2414c,7}, {0x578f,13}, + {0x21549,7}, {0x16aed,9}, {0x1c951,4}, {0x235e5,3}, {0x25c57,6}, {0xb609,11}, {0x1f5e1,8}, {0x931c,2}, + {0x209b3,7}, {0x22763,7}, {0x13de4,8}, {0xa57c,3}, {0x28d92,5}, {0x29a89,5}, {0xbe49,11}, {0x15a79,9}, + {0x140f8,10}, {0x2ced2,5}, {0x295f3,5}, {0xa0ba,12}, {0x2c5cc,6}, {0x3a30,14}, {0xcf12,6}, {0x25e13,6}, + {0xc16f,4}, {0x2b99e,4}, {0x1deff,8}, {0x11d4c,10}, {0x29b6f,5}, {0x28026,5}, {0x21967,7}, {0x2b097,4}, + {0x27835,6}, {0x14bd6,10}, {0x24f9b,2}, {0x27ab9,4}, {0x21ae5,7}, {0x2d8d5,4}, {0x1294a,10}, {0x197e7,5}, + {0x283f3,5}, {0x11075,4}, {0x27f04,5}, {0x27b56,3}, {0x26c9b,5}, {0x2149a,7}, {0x2621f,4}, {0x2080e,3}, + {0x2969d,5}, {0x4513,13}, {0x27c37,6}, {0x430,33}, {0x2b23f,4}, {0x25bbd,4}, {0x28eea,5}, {0x1afc0,4}, + {0x1a1b4,7}, {0x25807,6}, {0x6300,8}, {0x2c2c6,4}, {0x2553b,6}, {0x1465c,10}, {0x288d,3}, {0x28649,5}, + {0x1285a,10}, {0x10274,10}, {0x2bca2,4}, {0x26e4b,6}, {0xec24,11}, {0x13d1a,10}, {0x23e0d,5}, {0x28f80,5}, + {0x2cbc6,6}, {0x29c98,3}, {0x265d1,6}, {0x13e46,9}, {0x1620f,9}, {0x2635d,6}, {0x21e57,7}, {0x2cbcc,6}, + {0x10100,10}, {0x151fa,3}, {0x17ec,9}, {0x236ae,7}, {0x2757d,6}, {0x13b44,10}, {0x220e4,5}, {0x10ffa,10}, + {0x5aa1,4}, {0x24e63,6}, {0x5f90,7}, {0xb00e,12}, {0x1da0,14}, {0x2b2c7,4}, {0x6bd4,13}, {0x92c8,3}, + {0x19015,9}, {0x2aedd,4}, {0x2c668,6}, {0x13984,6}, {0x2da95,2}, {0x1ada1,4}, {0x1c32,4}, {0x274ed,6}, + {0x115a4,10}, {0x5254,13}, {0x27f8b,5}, {0x5c07,13}, {0x38e5,9}, {0x276c1,6}, {0x1cef,5}, {0x1c327,6}, + {0x11860,10}, {0x2328f,4}, {0x27849,4}, {0x1d345,8}, {0x1710f,9}, {0x2bed4,2}, {0x2b268,3}, {0x1a6df,9}, + {0x1d7df,8}, {0x166eb,7}, {0x12044,10}, {0x1f3b1,8}, {0xe567,8}, {0x253e,6}, {0x2a05d,5}, {0x1c7b,8}, + {0x11c2c,8}, {0x2635,7}, {0x14710,10}, {0x2990a,3}, {0x29ff4,5}, {0x1bbe5,8}, {0x10f5a,10}, {0x29ae8,5}, + {0x2bdce,4}, {0x26751,6}, {0x4572,3}, {0x2a049,5}, {0x1fc0b,5}, {0x19135,6}, {0x21a74,5}, {0x13b08,10}, + {0x16a6f,9}, {0xf9d4,8}, {0x20ca4,5}, {0x26703,6}, {0x1417a,10}, {0x16b23,9}, {0x1ec59,8}, {0x1188a,5}, + {0xfebc,16}, {0x17cf5,9}, {0x24e1b,6}, {0x1b6d3,8}, {0x1b078,9}, {0x202f1,5}, {0x13aea,10}, {0x1f319,8}, + {0x18190,9}, {0x1e611,6}, {0x1ab83,9}, {0x15374,9}, {0x1f993,3}, {0x1d137,5}, {0x157f4,18}, {0x1b5d3,8}, + {0x250f9,6}, {0x27417,4}, {0xf846,3}, {0x19cb,3}, {0x1de7d,8}, {0x131e2,5}, {0x2b353,3}, {0xd8e4,11}, + {0x12828,10}, {0x14de8,10}, {0x1e927,8}, {0x5852,13}, {0x18e02,9}, {0x84ca,12}, {0x11e00,7}, {0x25e61,6}, + {0x29225,5}, {0x1ea31,5}, {0x1ad08,7}, {0x12a94,10}, {0x1a2a7,7}, {0xcc9a,11}, {0x2d5a8,3}, {0x19255,9}, + {0x1a609,4}, {0x27313,6}, {0x1e9e9,6}, {0xfdca,11}, {0x22902,6}, {0x22fd1,7}, {0x181c6,9}, {0x111dc,8}, + {0x48a1,13}, {0x1c715,8}, {0x16c82,9}, {0x27bb9,6}, {0x2b0ab,4}, {0x39f8,14}, {0x569a,7}, {0x4617,13}, + {0x2932,4}, {0x1bd95,8}, {0xbab,3}, {0x27b25,4}, {0xdb66,7}, {0x3bf5,9}, {0x23a68,5}, {0x19d7a,9}, + {0x2d23c,3}, {0x12a58,10}, {0x19399,9}, {0x29e32,5}, {0xfb1e,5}, {0x1f3e1,7}, {0x15a8b,9}, {0x2bc5e,4}, + {0x1b75,15}, {0x2d224,3}, {0x2b643,4}, {0x84ca,10}, {0x258f7,6}, {0x277e7,6}, {0x27c2e,3}, {0x2aecc,2}, + {0x24615,12}, {0x22778,6}, {0x20051,8}, {0x251ad,6}, {0x2b673,4}, {0xa084,5}, {0xf369,6}, {0x188e0,9}, + {0x18f07,9}, {0x1494d,4}, {0x1c415,6}, {0x2a046,3}, {0x1aeb6,6}, {0x9a2f,5}, {0x20a62,7}, {0x2cf65,3}, + {0x252d5,10}, {0xbfef,7}, {0x23382,7}, {0x2af45,4}, {0x2069,2}, {0x24bdb,5}, {0x1dee7,6}, {0x21e28,5}, + {0x1c62d,8}, {0x12dc8,10}, {0xa592,8}, {0x2d464,3}, {0x15d23,9}, {0x1b463,8}, {0x10942,10}, {0xbdfc,11}, + {0xa31e,12}, {0x2c6ec,6}, {0x23cbb,7}, {0x165f1,7}, {0x19a6,11}, {0x68c8,7}, {0x6380,13}, {0x20e61,7}, + {0x28a5c,3}, {0x20a93,6}, {0x1dfef,10}, {0x278ad,6}, {0x11504,8}, {0x269bf,4}, {0x236bc,7}, {0x1b135,9}, + {0x2b5b7,3}, {0x2b0aa,2}, {0x423c,14}, {0x211ff,7}, {0x2840,10}, {0x2cdd6,6}, {0x247f9,8}, {0x2b139,4}, + {0x20e79,4}, {0x9d8a,12}, {0x1cddd,8}, {0x8f92,12}, {0x2d40d,3}, {0x247a1,12}, {0x167e7,9}, {0x7a28,9}, + {0xc86,4}, {0x1f6e3,6}, {0x29ab6,5}, {0x2a8aa,5}, {0x1ce65,8}, {0x2319f,7}, {0x2142,15}, {0x1fcd1,8}, + {0x1ec95,4}, {0x32a6,12}, {0x264e1,6}, {0x1c98d,8}, {0x20cd5,7}, {0xf2c4,3}, {0x1842a,9}, {0x26d97,6}, + {0x298db,5}, {0xcce7,11}, {0x2990,14}, {0x270c1,6}, {0x19e49,6}, {0x4212,14}, {0x24a81,6}, {0x16924,6}, + {0x1f539,8}, {0x286d5,6}, {0x2bf54,2}, {0x1db0d,8}, {0x947e,12}, {0x1d6a7,8}, {0x2bc96,4}, {0x15054,7}, + {0x5d27,9}, {0xb5d6,7}, {0x6db5,8}, {0x126e8,10}, {0x119e1,4}, {0x2b075,6}, {0x1dba8,5}, {0x209b4,5}, + {0x24885,12}, {0x2854f,5}, {0x5313,3}, {0x2085f,7}, {0x2b54f,3}, {0x140a8,10}, {0xbd57,11}, {0x25c5,10}, + {0xb215,11}, {0xffc,17}, {0xff7e,6}, {0x13cc,5}, {0xe032,8}, {0x45c9,13}, {0x2db16,2}, {0x28af8,5}, + {0x2c6aa,6}, {0x18124,9}, {0x1d2fd,8}, {0x1e657,8}, {0x12f26,10}, {0x28d51,5}, {0x17942,9}, {0x5c6f,15}, + {0xb3e3,5}, {0x28630,5}, {0x2d6b9,2}, {0x2391d,7}, {0x2a00d,5}, {0x297cb,5}, {0x2cfda,3}, {0x1fa99,8}, + {0x29e23,5}, {0xf88a,7}, {0x1debd,10}, {0x22fed,7}, {0x1d9bf,8}, {0x2da8d,2}, {0x1604d,9}, {0x10dac,10}, + {0xc67,6}, {0x13393,4}, {0x2162,5}, {0xbb3c,11}, {0x165b9,7}, {0x1ee59,8}, {0xf296,6}, {0x28464,5}, + {0xb753,11}, {0x25cab,6}, {0x27cab,3}, {0xaa56,12}, {0x1635e,9}, {0x25e79,6}, {0x270a3,6}, {0x2ce0c,6}, + {0x2b395,4}, {0x147f6,10}, {0x22223,5}, {0x165a7,9}, {0x2d831,4}, {0xc6f9,8}, {0xce10,11}, {0x2840c,4}, + {0x29675,5}, {0x23bf7,7}, {0x2d37d,3}, {0xfb81,13}, {0x19770,7}, {0x10dd4,10}, {0x2a080,5}, {0x145f8,9}, + {0x2beda,4}, {0x21b19,4}, {0x2723b,5}, {0x15437,5}, {0xb40f,8}, {0x119dc,10}, {0x29ee1,5}, {0x24439,7}, + {0xc40b,11}, {0x2b74f,4}, {0x19c2d,9}, {0x1e035,8}, {0x2330d,4}, {0x1d15d,8}, {0x258a9,5}, {0x55cd,8}, + {0xec99,3}, {0xa09,22}, {0x17d46,9}, {0x24fa9,6}, {0x157ac,18}, {0x15818,9}, {0x51c5,13}, {0x27c5b,6}, + {0x1bb5d,8}, {0x2dba0,2}, {0x28581,5}, {0x4a20,5}, {0x1b34d,8}, {0x2b7bf,3}, {0x2740f,6}, {0x5cd9,13}, + {0xc7f,18}, {0xf214,4}, {0x276c1,5}, {0x10ef,3}, {0x29c00,5}, {0x6105,5}, {0x2ae69,8}, {0x2c012,4}, + {0x670e,13}, {0x2ba34,4}, {0x9622,12}, {0x2db18,2}, {0x2b439,4}, {0x1c4dd,8}, {0x26953,4}, {0x2c512,6}, + {0x213c6,9}, {0x25209,2}, {0x19e6d,9}, {0x2b814,3}, {0x396c,14}, {0x193b,15}, {0x2c006,4}, {0x28bc0,5}, + {0x20353,4}, {0x20ccc,9}, {0x1f563,5}, {0x1f219,8}, {0x1c2dd,8}, {0x202a1,8}, {0x16a15,5}, {0x2b237,4}, + {0x6c65,3}, {0x2aefd,4}, {0x10820,8}, {0x49f3,13}, {0x2743,3}, {0x1ae2,3}, {0x1ffa9,8}, {0x15a9d,9}, + {0x172e,14}, {0x28e97,3}, {0x10074,10}, {0x2d142,2}, {0x2909a,2}, {0x22e1f,7}, {0x4b04,10}, {0xee3f,11}, + {0x1389c,9}, {0x29115,5}, {0x18102,7}, {0x2d575,3}, {0x25e05,5}, {0x1231,3}, {0x2922f,5}, {0x2b0f9,4}, + {0x1dd6d,8}, {0x1dfe7,8}, {0x1e5d7,8}, {0xfc80,7}, {0x1f923,5}, {0x1fe79,8}, {0xc37,18}, {0x20251,8}, + {0x2d1d6,3}, {0x2b700,4}, {0x2bb1c,6}, {0x2d86d,4}, {0x28901,7}, {0x7c4e,12}, {0x2d6bc,3}, {0x2d15b,3}, + {0x6bfb,13}, {0x2b4a5,4}, {0x13188,10}, {0x29cd7,5}, {0x2b515,4}, {0x1c7c5,8}, {0x38ab,5}, {0xcf5a,11}, + {0x1084,17}, {0x26e63,5}, {0x2b7f,9}, {0x2d2f6,3}, {0xd017,6}, {0x1cbed,8}, {0x1ca3f,5}, {0x1509a,5}, + {0x1a2db,9}, {0x29fef,5}, {0x10e60,10}, {0x23bb8,7}, {0x245d,15}, {0x2783b,6}, {0x9c2e,12}, {0x22a1,3}, + {0x16f17,7}, {0x282d6,5}, {0xc60,10}, {0x1a2d6,5}, {0x21454,7}, {0xa2be,12}, {0x1f9e9,8}, {0x1ffa1,8}, + {0x1aed1,6}, {0xae3a,12}, {0x20a33,5}, {0x23537,4}, {0x1fc44,4}, {0x284b9,5}, {0x1becd,8}, {0x14c1c,10}, + {0xa1b,50}, {0x13edc,10}, {0xa8b2,12}, {0xea0c,4}, {0x13412,10}, {0x250b7,6}, {0x180e5,9}, {0x8163,7}, + {0x42e6,12}, {0xa4dc,10}, {0xbcb,19}, {0x60b5,13}, {0x47f0,8}, {0x1d5b8,5}, {0x158c,16}, {0x18f24,4}, + {0x20740,7}, {0x2b4cc,2}, {0x2556b,6}, {0x8236,12}, {0x2c6fe,6}, {0x24579,12}, {0x2cae2,6}, {0x2b243,4}, + {0x2477d,12}, {0x415e,12}, {0x1443,3}, {0x29866,5}, {0x1ff39,6}, {0x1edb9,8}, {0x26045,6}, {0x285b8,5}, + {0x281b4,5}, {0x17e3e,4}, {0x2d06c,3}, {0x1ef81,8}, {0x5883,3}, {0x1f8f,15}, {0x1f7bb,6}, {0x1a04a,9}, + {0x2afe5,4}, {0x19af2,9}, {0x1afa0,9}, {0x27988,3}, {0x13430,12}, {0x184cc,7}, {0x4c81,9}, {0xc49,17}, + {0x19f0f,9}, {0x130e,3}, {0x27169,6}, {0x1dfb7,8}, {0x17172,9}, {0x1f9f9,8}, {0x232b7,7}, {0xc864,11}, + {0x2cfe0,3}, {0x29b38,5}, {0x8722,12}, {0x13752,10}, {0x2b27d,4}, {0x1aff,12}, {0xd93c,6}, {0xbc39,11}, + {0x4d4d,13}, {0x1b6ca,2}, {0x25953,6}, {0xf7c0,11}, {0x167e2,5}, {0x14a64,4}, {0xfa14,11}, {0x29fc4,3}, + {0x5bc8,8}, {0x35de,12}, {0x2b7ab,4}, {0x6c49,9}, {0x28376,5}, {0xc935,11}, {0x2911a,5}, {0x2cf7d,3}, + {0x27be9,6}, {0xa11a,12}, {0xbf53,9}, {0x2c5a8,6}, {0x25437,6}, {0x55fc,13}, {0x2b9c6,6}, {0x29765,5}, + {0x2697b,6}, {0x14b54,10}, {0x22521,4}, {0x25fb3,6}, {0x2099e,7}, {0xd1a3,7}, {0x15fab,9}, {0x5304,5}, + {0x275a7,6}, {0x2d65c,3}, {0x26871,6}, {0x632c,6}, {0x29fa9,5}, {0x6c56,13}, {0x2b852,6}, {0x1757f,9}, + {0x1b96d,14}, {0x1836d,9}, {0x56aa,4}, {0x2a09e,5}, {0x1a026,8}, {0x28385,5}, {0xa4aa,12}, {0xcd97,11}, + {0x2967f,5}, {0xe990,11}, {0x268b7,4}, {0x9eb8,10}, {0x12f12,10}, {0x100d8,10}, {0x4dc2,13}, {0x2d3dd,3}, + {0x1e4c7,8}, {0x2b541,4}, {0x2c4e,12}, {0x16fc,11}, {0x15696,8}, {0x2c45e,6}, {0x2d605,3}, {0x1de5d,8}, + {0x1f3a3,6}, {0x2b501,4}, {0x116d0,10}, {0x51f3,5}, {0x24f91,6}, {0x21111,7}, {0x27bb3,6}, {0x209b3,6}, + {0x2a017,5}, {0x1ba65,8}, {0x294af,5}, {0x29fcc,5}, {0xee19,5}, {0x1d9f1,12}, {0xab6a,12}, {0x2657d,6}, + {0x2d4f7,3}, {0x2dac0,2}, {0x23503,7}, {0x821e,12}, {0x26b0f,6}, {0x1ddc,15}, {0x1d817,8}, {0x267b7,5}, + {0x1be87,6}, {0x26ad9,4}, {0x29231,3}, {0x38c4,14}, {0x1abd8,3}, {0x22866,7}, {0x6860,13}, {0x22484,7}, + {0xd2e5,6}, {0x20011,6}, {0x24e9,10}, {0x72ad,4}, {0x532,100}, {0x2229f,7}, {0x2934c,5}, {0x1b52b,8}, + {0x72e2,12}, {0x96b4,10}, {0x28bd,2}, {0x212ed,7}, {0x4a1c,3}, {0x912a,12}, {0x282bd,5}, {0x27241,6}, + {0x144ae,10}, {0x2e0c,14}, {0x2a0d2,3}, {0x2cf77,3}, {0x274cf,6}, {0x5990,4}, {0x186d6,8}, {0x12454,10}, + {0x2ba26,6}, {0x4520,13}, {0x48a3,4}, {0xab16,12}, {0x1752e,9}, {0x29ee3,3}, {0x14279,5}, {0xab3a,12}, + {0x1a813,3}, {0x1ba35,8}, {0x265a7,6}, {0x1e677,8}, {0x20ee6,7}, {0x240d5,7}, {0x28f7b,5}, {0x21bf8,5}, + {0x26c0b,6}, {0x27c55,6}, {0x28674,4}, {0x11aa4,10}, {0xf23,7}, {0x10c1c,10}, {0x12e2c,10}, {0x2299c,7}, + {0x19e1c,7}, {0xab54,5}, {0x15b7c,9}, {0x1204e,10}, {0x20389,6}, {0x2c6e0,6}, {0x1d62f,5}, {0x11090,10}, + {0x2affd,4}, {0xa876,12}, {0x1154a,9}, {0x203b9,8}, {0x2bba2,4}, {0x2339e,7}, {0xfe24,9}, {0x1555e,10}, + {0xf8a7,11}, {0x281b9,5}, {0x24081,7}, {0x4134,12}, {0x9af6,12}, {0x1a8d9,3}, {0x51ec,13}, {0x4ecb,8}, + {0x23c1a,6}, {0x29a25,5}, {0xf55a,6}, {0x1df37,8}, {0x4c2f,13}, {0x15914,9}, {0x1f479,8}, {0x1b653,7}, + {0x2b818,4}, {0x1adf,7}, {0x1471a,7}, {0x28d07,5}, {0x56b7,8}, {0x9b7a,12}, {0x12940,10}, {0xb451,7}, + {0x7c4,34}, {0x20613,7}, {0x23b64,7}, {0xad40,10}, {0x24d47,6}, {0x1565a,7}, {0x21a0f,7}, {0x1f79d,4}, + {0xaff6,12}, {0x14fd4,6}, {0x2cfc0,2}, {0x1c88d,8}, {0x3058,10}, {0x2446a,7}, {0x5f3c,13}, {0x15414,10}, + {0x231b4,7}, {0x6973,6}, {0x28f58,5}, {0x2a9d7,8}, {0x273f7,6}, {0xccc9,4}, {0xc801,11}, {0x2d344,3}, + {0x2d5cf,3}, {0x27e3b,2}, {0x1e91a,4}, {0x27589,6}, {0x237fe,7}, {0xb0d6,11}, {0x1f969,8}, {0x23733,7}, + {0x10e06,10}, {0x1dfd7,8}, {0x2d0da,3}, {0xd11d,11}, {0x257f5,6}, {0x208d7,5}, {0x16df7,7}, {0x1e98f,8}, + {0x29133,5}, {0x1abb9,7}, {0x11a90,10}, {0x1cae2,3}, {0x2db94,2}, {0x22de0,7}, {0x19f6b,3}, {0xcddb,4}, + {0x26865,6}, {0x2c242,4}, {0x23191,7}, {0xcf48,5}, {0x13ca2,7}, {0x1f199,8}, {0x139dc,10}, {0x27c22,3}, + {0x2ab33,8}, {0x1f739,8}, {0x92da,12}, {0x2bb92,4}, {0x1fd61,8}, {0x1b73f,12}, {0xf71b,11}, {0x2756b,6}, + {0x2803f,5}, {0x2cb1e,6}, {0xdf2,10}, {0x2b38d,4}, {0x5ef1,3}, {0x24305,7}, {0x2cf24,3}, {0x2d173,3}, + {0x27565,6}, {0x1563a,10}, {0x2520a,3}, {0x11efc,8}, {0x212fb,6}, {0x26981,6}, {0x8872,8}, {0x2ccaa,6}, + {0x296d4,5}, {0x1aa3f,9}, {0x287f5,5}, {0xc4a5,11}, {0x407d,3}, {0x1a491,4}, {0x2b687,4}, {0x16802,9}, + {0x19228,9}, {0x2cc8c,6}, {0x2cbae,6}, {0x21573,7}, {0x2d44f,3}, {0x1994d,7}, {0x1cb3a,3}, {0x1fbbc,4}, + {0x12cec,10}, {0x1f6c9,8}, {0x24c6b,6}, {0x27235,6}, {0xd0c5,11}, {0x1aa1b,9}, {0x2486d,12}, {0x17d09,7}, + {0x2c076,4}, {0x297f3,5}, {0x28fad,5}, {0x2661b,4}, {0x24fbb,6}, {0x1fed9,8}, {0x2d152,3}, {0x7f7e,12}, + {0x14f6e,8}, {0x170ac,9}, {0x11608,10}, {0x19e40,9}, {0x175ac,9}, {0x41b4,4}, {0x2d3d1,3}, {0x1cd2f,5}, + {0xc508,11}, {0x2dd4,14}, {0x27e06,7}, {0x2833a,5}, {0x27261,4}, {0x2610f,6}, {0x1088e,10}, {0x10d91,7}, + {0xfc0d,5}, {0x2c222,4}, {0x2dae2,2}, {0x290fc,5}, {0x28c7a,3}, {0x9900,10}, {0x12030,10}, {0x1c575,8}, + {0x1f3ee,3}, {0x1893a,9}, {0x25a7,15}, {0x1fc0,6}, {0xac72,12}, {0xa7c4,2}, {0x1003d,4}, {0xc8c7,11}, + {0x26449,4}, {0x6359,13}, {0x29d13,5}, {0x4a50,3}, {0x173da,7}, {0x14ef6,10}, {0x1a931,9}, {0x1f083,6}, + {0x298e7,3}, {0x27691,6}, {0x411c,8}, {0x27f4f,5}, {0x1824d,8}, {0x6d4d,11}, {0x14816,8}, {0x2b42,14}, + {0x2b62f,4}, {0x2119d,7}, {0x1c4e5,8}, {0x20df1,5}, {0x1b3b5,8}, {0x9933,5}, {0x20071,8}, {0x1b6e9,14}, + {0x153b0,9}, {0x29f27,5}, {0x13dec,10}, {0x239e3,7}, {0xca2a,4}, {0x1a502,7}, {0x22246,5}, {0x20169,6}, + {0x24d77,6}, {0x1435a,10}, {0x29e84,2}, {0x24c0b,6}, {0x2c1ce,4}, {0x1da25,8}, {0x2add7,6}, {0x5ff2,13}, + {0x2d6e9,3}, {0x1a5bf,9}, {0x1579a,18}, {0x29fae,5}, {0xbcbd,11}, {0x19f7b,9}, {0x1e0c7,6}, {0x3e07,3}, + {0xa854,10}, {0x930a,12}, {0x1ac13,9}, {0x9d14,10}, {0x2b379,4}, {0x211c9,5}, {0xb068,11}, {0x7d3e,7}, + {0x2b029,4}, {0x1a41a,4}, {0xbd7,5}, {0x10ad2,10}, {0x5305,4}, {0x2c046,4}, {0x1d7f1,4}, {0x2d849,4}, + {0x1f161,8}, {0x27eba,4}, {0x13c98,10}, {0x202c1,8}, {0x10f14,6}, {0x1ad69,7}, {0xfccd,11}, {0x23a1b,5}, + {0x24865,8}, {0x236ca,7}, {0x2d5d8,3}, {0x1df6f,8}, {0x5a81,10}, {0x22172,7}, {0x2732b,6}, {0xb3cd,11}, + {0x460a,13}, {0x7306,12}, {0x225b8,7}, {0x2b3cd,4}, {0x15a70,9}, {0x14438,8}, {0x6ad0,13}, {0x2305d,5}, + {0x24b13,8}, {0x1f3c1,8}, {0x2d82,12}, {0x9f3a,12}, {0x23fbd,5}, {0x207d3,7}, {0x2787d,6}, {0x2aa17,7}, + {0xb0e1,11}, {0xe83b,11}, {0xcc79,11}, {0x15202,10}, {0x29c1e,5}, {0x1d0af,5}, {0x141e,8}, {0x23581,7}, + {0x28934,5}, {0x26721,5}, {0x21f29,7}, {0xadfe,9}, {0xcd60,8}, {0x36f6,7}, {0x2d524,3}, {0x26d91,6}, + {0x2be74,2}, {0x1ffbd,3}, {0x963c,4}, {0x2cb7e,6}, {0x8b68,10}, {0x296b3,3}, {0x20091,7}, {0x26e03,6}, + {0x57ec,4}, {0x2d113,3}, {0x1ea57,8}, {0x16769,9}, {0x1b57,15}, {0x5bed,8}, {0x230aa,7}, {0x22f30,7}, + {0x1b473,5}, {0xf540,13}, {0x28312,5}, {0x14aa8,10}, {0xc7f6,11}, {0x1937e,9}, {0x29d1d,5}, {0x24b3f,6}, + {0x2615a,3}, {0x2b36f,4}, {0x9682,12}, {0x20361,8}, {0x2898d,5}, {0x28281,5}, {0x10b18,10}, {0x29b99,3}, + {0x109c4,10}, {0x25068,3}, {0xa110,4}, {0x893e,12}, {0x1364e,10}, {0xe90,3}, {0x29f83,3}, {0x26ab3,6}, + {0x27c9d,6}, {0x17432,9}, {0x2700d,6}, {0x266f1,6}, {0x25f45,6}, {0x1a577,9}, {0x8902,12}, {0x7ae6,12}, + {0xf46f,11}, {0x14f82,10}, {0x2866a,4}, {0x226b4,7}, {0x21735,7}, {0x1b4bb,8}, {0x1714e,8}, {0x317e,14}, + {0x762c,5}, {0x1446c,6}, {0x26f5f,5}, {0x12b98,10}, {0x14e4c,10}, {0x1f3c9,8}, {0x2683b,6}, {0x10d84,10}, + {0x98aa,12}, {0x8790,7}, {0x135f6,5}, {0x1f989,8}, {0x29ac,6}, {0x24a99,6}, {0x29e64,5}, {0x1ac88,9}, + {0x2bb60,2}, {0x296cf,4}, {0x2515f,6}, {0xa9de,9}, {0x2a0b7,5}, {0x270e1,4}, {0x233c3,5}, {0x47b7,12}, + {0x22512,5}, {0x27cbb,6}, {0x19549,9}, {0x273bb,6}, {0x24c41,6}, {0x6add,8}, {0xcd4a,11}, {0x2b84c,6}, + {0x734,5}, {0x20858,7}, {0x1af8,4}, {0x2d644,3}, {0x6ff8,4}, {0x1a13d,9}, {0x2147e,7}, {0x165b9,9}, + {0x1f9b1,8}, {0x1efd1,8}, {0x28876,4}, {0x1decf,8}, {0x37e4,14}, {0x1faf3,3}, {0x22f53,5}, {0x4e63,7}, + {0x18d72,9}, {0x1ba4d,8}, {0x2db34,2}, {0x2230f,6}, {0x28b78,5}, {0x1ee23,6}, {0x66f4,13}, {0x29ecd,5}, + {0x26471,6}, {0x87c0,8}, {0x236fb,7}, {0xceec,11}, {0x201f5,3}, {0x135c2,10}, {0x23ac,4}, {0x2b465,4}, + {0x20e8,15}, {0x1f2eb,5}, {0x23cf5,5}, {0x2989c,3}, {0x283b2,4}, {0x197d1,9}, {0x28e2c,5}, {0x3f3a,12}, + {0x29fb3,5}, {0x2d536,3}, {0x762c,3}, {0xb795,11}, {0x1fc59,8}, {0x3b1e,13}, {0x1b093,9}, {0x2af41,4}, + {0x2d6ce,3}, {0x2b90c,6}, {0x2aaa3,8}, {0x24729,4}, {0x26a53,6}, {0x201f9,6}, {0x2d7a9,4}, {0xd9aa,11}, + {0x11ec1,4}, {0x26f35,6}, {0x2d170,3}, {0x2c7e2,6}, {0xba5a,6}, {0x2cba2,6}, {0x23286,7}, {0x6045,8}, + {0x2d759,4}, {0x26057,6}, {0x753a,12}, {0x19ae2,4}, {0x5dea,13}, {0x1ff59,8}, {0x2831c,5}, {0x24d71,6}, + {0x29a2a,5}, {0x1d0bd,8}, {0x243de,7}, {0x20c7a,5}, {0x280f1,5}, {0x1e42f,8}, {0x130b6,10}, {0x2b7d7,4}, + {0x2c62c,6}, {0x13b28,8}, {0x25e31,6}, {0x1aff1,9}, {0x15cc0,9}, {0x24e7b,6}, {0x29ee8,3}, {0x10f3,3}, + {0x2ce28,5}, {0x29f6a,3}, {0x2cf98,3}, {0x288f,4}, {0x27873,4}, {0x5949,13}, {0x2ada1,8}, {0x10e46,6}, + {0x73de,12}, {0x210af,7}, {0x1d455,8}, {0xf775,3}, {0x2867e,5}, {0x2c64a,6}, {0x24be1,6}, {0x21f5c,5}, + {0x9b62,5}, {0x107bc,5}, {0x110c,32}, {0x207a9,7}, {0xf8ce,4}, {0x1c3c5,8}, {0xcfc8,11}, {0x26417,6}, + {0x23779,7}, {0xd3e8,11}, {0x1525c,10}, {0x2b47d,4}, {0x2cf4e,3}, {0x1e8e7,8}, {0x2ac2b,8}, {0x4c9c,8}, + {0x211e3,7}, {0x18fea,7}, {0x1edc9,8}, {0x2b1a6,2}, {0x1b335,8}, {0x2a044,5}, {0x2ca76,6}, {0x1964e,9}, + {0x24a33,6}, {0x299fd,5}, {0x7f36,12}, {0x2d4c2,3}, {0x21fa0,7}, {0x291ce,5}, {0x2094a,7}, {0x116a8,10}, + {0x29fd1,5}, {0x10346,10}, {0x1f059,8}, {0x2946e,5}, {0x1ff5b,3}, {0x2b25f,4}, {0x2a064,3}, {0x2c28a,4}, + {0x1b995,8}, {0x39dc,14}, {0x274b9,3}, {0xd135,5}, {0xb784,6}, {0x229bf,7}, {0x1e29f,8}, {0x29261,5}, + {0x14706,9}, {0x1e7ea,4}, {0x279ee,3}, {0x25021,6}, {0xd421,9}, {0x26feb,4}, {0x25e67,6}, {0x18070,9}, + {0x276bb,6}, {0x2102f,7}, {0xafde,12}, {0x24d23,6}, {0x22254,5}, {0x2d182,3}, {0x2711b,6}, {0x1f2a9,8}, + {0xa3c6,12}, {0x28100,5}, {0x21b9b,7}, {0x24fe5,6}, {0xbb1b,11}, {0x22381,7}, {0x281a0,5}, {0x25b43,5}, + {0x2b267,4}, {0x2d64,14}, {0x2d10a,3}, {0x20889,7}, {0x29e4b,5}, {0x6570,10}, {0x20aaf,7}, {0x240e3,5}, + {0x8b96,12}, {0xe97a,11}, {0x2976a,5}, {0x21292,7}, {0x675e,7}, {0x1859b,9}, {0x29cc8,5}, {0xa788,10}, + {0x7d06,5}, {0x1dd9d,8}, {0x16be0,8}, {0x2b46e,3}, {0x2bec6,4}, {0x4050,14}, {0x1ee11,8}, {0x26685,6}, + {0x20a3f,7}, {0x6dcf,13}, {0x28099,3}, {0x29a8e,5}, {0x957a,7}, {0x25d4f,6}, {0x4364,3}, {0x1dd55,8}, + {0x29ed2,5}, {0x1463e,10}, {0x1f249,8}, {0xf21d,11}, {0x29301,5}, {0x1a6ea,3}, {0x1cbf5,8}, {0x1e36f,7}, + {0x23be9,7}, {0x1e10d,8}, {0x1f2ab,6}, {0xfebc,20}, {0x288b4,5}, {0x8446,12}, {0x2bfe2,4}, {0x17822,9}, + {0x12bb6,10}, {0x194a,15}, {0xfcb7,11}, {0x272af,4}, {0x21a9f,7}, {0x6ab8,5}, {0xebd7,11}, {0x159b6,9}, + {0x197c8,8}, {0x29f7e,3}, {0x1987e,4}, {0xf76,4}, {0x18031,9}, {0x180e,3}, {0x522d,13}, {0xaaec,6}, + {0x17858,9}, {0x6f7a,24}, {0x2d955,4}, {0x188e0,5}, {0x26649,6}, {0x2beae,4}, {0xfed2,12}, {0x29392,5}, + {0x283fd,5}, {0x41a4,8}, {0x2bb8e,4}, {0x15568,10}, {0x283d0,5}, {0x1cf41,8}, {0xe872,11}, {0x27cf4,6}, + {0x28286,5}, {0xfa61,11}, {0x2d6b9,3}, {0x15c39,9}, {0x22e6,6}, {0x18258,7}, {0x28d2e,5}, {0x17978,9}, + {0x31b0,4}, {0x2800d,5}, {0x1d505,8}, {0x2d188,3}, {0x13795,3}, {0x296cf,5}, {0x7680,8}, {0xc82d,11}, + {0xc49,18}, {0xd8b8,10}, {0x2cf18,3}, {0x28839,7}, {0x223ff,7}, {0x2374a,5}, {0x2d0e6,3}, {0x27c73,6}, + {0x27abf,4}, {0x22613,7}, {0x20645,4}, {0x25469,4}, {0x23952,5}, {0x2bec8,2}, {0x1d7e7,8}, {0x19198,8}, + {0x135e0,10}, {0x4f0c,4}, {0x2b051,4}, {0xac2c,6}, {0x2d398,3}, {0x24585,12}, {0x26d19,6}, {0x104fe,10}, + {0xb47d,11}, {0x2d458,3}, {0xd0a4,11}, {0x278af,4}, {0x2380e,5}, {0x151a8,10}, {0x292ca,4}, {0xa19,20}, + {0x11022,10}, {0x18e53,9}, {0x24afb,6}, {0x29d1a,3}, {0x3688,12}, {0x38a8,14}, {0xc52f,4}, {0xed79,11}, + {0xf9ef,4}, {0x2244c,7}, {0x284d2,5}, {0x26363,6}, {0x4124,14}, {0xa0d,18}, {0x1f7e1,8}, {0xe6d0,11}, + {0x18096,4}, {0x27367,6}, {0x25f5d,6}, {0x2a8ec,5}, {0x54de,8}, {0x2d089,3}, {0x27e50,3}, {0x1b027,6}, + {0x212a0,7}, {0x24e4b,6}, {0x14a8c,8}, {0x20990,7}, {0x2887b,5}, {0xd301,11}, {0x1a7d2,9}, {0x20660,7}, + {0x2aee1,4}, {0x2810a,5}, {0x8abe,12}, {0x1440e,10}, {0x1e5df,8}, {0x2aea5,4}, {0x252df,10}, {0xa92c,10}, + {0x1e9fb,4}, {0xc324,11}, {0x228ae,5}, {0x12562,10}, {0x258bb,6}, {0xa9d4,4}, {0x1dafd,8}, {0x2b5b3,4}, + {0x272f5,6}, {0x27385,6}, {0x23de4,3}, {0x299ad,5}, {0x938e,12}, {0x2b1bf,4}, {0x29338,5}, {0x1c16d,8}, + {0x1b13e,8}, {0x192af,9}, {0x2595c,5}, {0xdf46,5}, {0x20af5,7}, {0x1d9c7,8}, {0x2839e,5}, {0x1d86,4}, + {0x2507b,6}, {0x292ac,5}, {0x1fb11,8}, {0x11950,5}, {0x1097e,10}, {0x13cda,4}, {0x2797c,3}, {0x266d3,6}, + {0x6ed3,13}, {0x291d3,5}, {0x1fde4,4}, {0x1b128,4}, {0x13504,10}, {0x194b0,9}, {0x2472,4}, {0x154c1,4}, + {0x281fa,5}, {0x20031,8}, {0xb0dc,3}, {0x1f4b9,8}, {0x29bc9,5}, {0x2be86,4}, {0x3340,12}, {0x2a053,5}, + {0x23db0,7}, {0x1e56f,8}, {0x2028b,6}, {0x1ebc1,8}, {0x27dd8,7}, {0x50a7,13}, {0xa612,12}, {0x215c0,7}, + {0x5352,6}, {0x1fd79,8}, {0xb5b1,11}, {0x7e52,12}, {0x432,52}, {0x150e,10}, {0x1baf5,8}, {0x9556,7}, + {0x27769,6}, {0x8b1e,12}, {0x2b521,4}, {0x2b485,4}, {0xfa40,11}, {0x2b231,6}, {0x12d6e,9}, {0x2cb12,6}, + {0x16649,9}, {0x2649b,8}, {0x2dbac,2}, {0x2b8b8,6}, {0x79de,12}, {0x229f9,4}, {0x221e9,7}, {0xe8e0,11}, + {0x1a15e,3}, {0x12936,10}, {0x17106,9}, {0x169c,16}, {0xc3b3,11}, {0x8d30,9}, {0x2b499,3}, {0x2aa0f,7}, + {0x1d4ef,4}, {0x2cd82,6}, {0x1d69f,8}, {0x21dd2,7}, {0x2d092,3}, {0x13d77,4}, {0x1065c,10}, {0xfd7d,11}, + {0x14a30,10}, {0x2bca6,4}, {0x2dad6,2}, {0x17525,9}, {0x218e0,7}, {0x14044,10}, {0x1f939,8}, {0x1fcb1,6}, + {0x18d21,9}, {0x136e,6}, {0x18847,9}, {0x15a1f,9}, {0x16321,7}, {0xbf30,11}, {0x867f,7}, {0xaf5f,2}, + {0x2daab,2}, {0x1fe41,8}, {0x34f0,14}, {0xbf7d,11}, {0x8bc1,5}, {0x2ceeb,3}, {0xae00,7}, {0x159d7,2}, + {0x26ea5,6}, {0x1532e,10}, {0x29aac,5}, {0x1c4b5,8}, {0x4a6a,7}, {0x2c488,6}, {0xc2f8,11}, {0x1e717,8}, + {0x26243,6}, {0x1d6d9,6}, {0x27e6e,5}, {0x249b1,12}, {0x46f6,4}, {0x19282,9}, {0xe468,11}, {0x13473,5}, + {0x29b60,5}, {0x29c8c,5}, {0x1b48,15}, {0x5dec,4}, {0x18148,9}, {0x14ea8,8}, {0x11310,10}, {0xd87,8}, + {0x14686,8}, {0x1c390,5}, {0x11b94,10}, {0x152b6,10}, {0x1fb91,8}, {0xa666,12}, {0x1540a,9}, {0x29e2d,5}, + {0x1ab10,3}, {0x1092e,10}, {0x29b24,5}, {0x18d36,5}, {0x29bb5,5}, {0x23cd0,7}, {0xf7cb,11}, {0x13c16,10}, + {0x2c20e,4}, {0x27505,5}, {0x2caa6,6}, {0x2b1cb,4}, {0x11892,10}, {0xa788,5}, {0x59b1,13}, {0x2c2f4,2}, + {0x2ba52,4}, {0x207b0,7}, {0x272b3,6}, {0x87b2,12}, {0x911e,12}, {0x22dc4,7}, {0x24f99,4}, {0x2744d,4}, + {0x25a4f,6}, {0x28044,5}, {0xe3e4,11}, {0x13b3d,7}, {0x21b47,7}, {0x24f31,6}, {0x1623c,9}, {0x1b61b,8}, + {0x1a541,9}, {0xf94e,11}, {0x125e,10}, {0xd9a1,4}, {0x15977,9}, {0x652d,13}, {0x23409,5}, {0x1ed93,6}, + {0x532,102}, {0x13608,10}, {0x1d897,8}, {0x2112d,7}, {0xb07e,6}, {0x1b573,8}, {0x226de,7}, {0xefc0,11}, + {0x2738b,6}, {0x2295f,5}, {0x14972,5}, {0x126ac,10}, {0x6984,4}, {0x7046,5}, {0x29084,5}, {0x19d8,5}, + {0x238d0,7}, {0x2cefd,3}, {0x2cf74,3}, {0x1b0ff,9}, {0x14a08,10}, {0xd994,11}, {0xa7da,12}, {0x10b39,4}, + {0x1bfbd,8}, {0x21aa6,7}, {0x27d2d,6}, {0x241ed,7}, {0xabfa,7}, {0x424a,9}, {0x117f2,10}, {0x14a14,4}, + {0x242c6,7}, {0x111ca,6}, {0x22587,7}, {0x2d6bf,3}, {0x2bf76,4}, {0x1499c,3}, {0xea8,17}, {0x276cf,3}, + {0x24d05,6}, {0x28402,5}, {0x1ab29,9}, {0x29fd8,3}, {0x27ab4,3}, {0x29928,3}, {0x2b29d,4}, {0x21da1,7}, + {0x101e,17}, {0x1e631,6}, {0x18658,6}, {0x7156,7}, {0x2b5e,14}, {0x99d6,12}, {0xafea,12}, {0x245b5,12}, + {0x2d01f,3}, {0x196f9,9}, {0x29b3d,5}, {0x1a7db,9}, {0x1210f,7}, {0x2823b,5}, {0x2c282,4}, {0xa04e,12}, + {0x1f2b1,8}, {0xab84,3}, {0x92e8,6}, {0xba5,7}, {0x2ae3f,6}, {0x18cb7,7}, {0x2a030,5}, {0x14558,10}, + {0xa6a2,12}, {0x67fa,10}, {0x2c36e,6}, {0x16d82,7}, {0x2d935,4}, {0x8eae,12}, {0x2d0ce,3}, {0x1e9d7,8}, + {0x19ee4,3}, {0x13cd4,10}, {0x2d123,3}, {0x1dcf7,5}, {0x242eb,5}, {0x1664c,6}, {0x2328,4}, {0x16a5,7}, + {0x2d5c0,3}, {0x24909,12}, {0x22fd8,7}, {0x29f9f,5}, {0x22579,7}, {0x3642,12}, {0x122d0,8}, {0x15a5e,9}, + {0x19a0a,7}, {0x2851d,5}, {0x2d659,3}, {0x22eb9,7}, {0x132d2,10}, {0x250ff,4}, {0x18580,9}, {0x20e27,7}, + {0x2b870,6}, {0x1504a,10}, {0x2c7b8,6}, {0x149c,16}, {0x23e66,5}, {0x104a6,7}, {0x1fd21,8}, {0xcfb5,8}, + {0x1f503,6}, {0x16817,5}, {0x3ddd,4}, {0x2d722,3}, {0x1909c,9}, {0x24e5d,6}, {0x1646c,9}, {0x1b403,8}, + {0x432,51}, {0x13ea0,10}, {0x56e8,5}, {0x20605,7}, {0x20eb5,6}, {0x181ea,7}, {0x3c65,9}, {0x2138,4}, + {0x10fd,15}, {0x1658e,7}, {0x1acb5,9}, {0xf4ea,9}, {0x1b275,8}, {0x29738,4}, {0xf768,11}, {0xee23,4}, + {0x231d2,5}, {0x1017e,18}, {0x72f2,5}, {0x21b1d,7}, {0x2b3b1,4}, {0x505c,8}, {0x5562,11}, {0x10190,18}, + {0x2b5ed,3}, {0x29c7d,5}, {0x23eb,4}, {0x166a3,9}, {0x12228,5}, {0x239c0,7}, {0x2b1bb,4}, {0x2c5a2,6}, + {0x2a096,3}, {0x17d61,9}, {0x2271d,7}, {0x260f7,6}, {0x22363,7}, {0x2b0f5,4}, {0xbe07,11}, {0x22e88,7}, + {0x41e8,14}, {0x493d,13}, {0x2b179,4}, {0x1abb9,9}, {0x1cfdb,6}, {0x2815f,5}, {0x27dd8,5}, {0x269ed,6}, + {0xb123,11}, {0x29f22,5}, {0x230f0,7}, {0x1a43c,7}, {0x1d877,8}, {0xfe0c,11}, {0x1a187,7}, {0x10508,8}, + {0x6fda,12}, {0xd619,11}, {0x1e36f,8}, {0x2619f,6}, {0x4f14,12}, {0xef7e,11}, {0x2350c,2}, {0x190c0,7}, + {0xf5dc,11}, {0x3296,14}, {0x1f2be,3}, {0x14df2,10}, {0x18f3d,9}, {0x29693,5}, {0x147b0,10}, {0x26f83,6}, + {0x26b29,4}, {0x1d30d,5}, {0x3854,14}, {0x24915,12}, {0x201d9,8}, {0x21784,5}, {0x2961b,5}, {0x1d1bd,8}, + {0x909c,3}, {0x1994b,9}, {0x30,152}, {0x2223d,7}, {0xddb4,11}, {0x2bf8a,4}, {0x1f499,7}, {0x7076,12}, + {0x10aaa,10}, {0x158ba,9}, {0x236d8,7}, {0x1a460,9}, {0x3870,14}, {0x1af4f,9}, {0xf99d,4}, {0x26667,6}, + {0x11da6,7}, {0x2af9d,4}, {0x2ac23,8}, {0x222f3,7}, {0x2796,5}, {0x11a7c,10}, {0x2b361,4}, {0x148c,16}, + {0x2d05a,3}, {0x2b46d,4}, {0x1bb07,6}, {0xfa63,4}, {0x30ac,5}, {0x22d31,7}, {0x1ea37,8}, {0x2782f,6}, + {0x26ddf,6}, {0x1f5f1,8}, {0x23934,3}, {0xca8d,2}, {0x43e4,4}, {0x21514,4}, {0x29360,5}, {0x1b653,8}, + {0x114ca,8}, {0x4180,3}, {0x14e74,10}, {0xbb52,11}, {0x2309c,7}, {0x22835,7}, {0x193d8,9}, {0x26e77,4}, + {0x135e,7}, {0x1dcfd,8}, {0x29b92,5}, {0x2cf17,3}, {0x592f,7}, {0x1ca8d,8}, {0x2b2f7,4}, {0x24729,12}, + {0xfcee,11}, {0x1f941,8}, {0x29ea0,5}, {0x15b85,9}, {0x1d789,5}, {0x205d4,7}, {0x2dba4,2}, {0x1634c,9}, + {0x12280,8}, {0x8c4,66}, {0x1ea31,6}, {0x15308,8}, {0x147a6,10}, {0x2c05c,2}, {0x29f40,5}, {0x2d92d,4}, + {0xbac3,11}, {0x26729,4}, {0x25039,6}, {0x1fbe1,6}, {0x292a9,3}, {0x29248,5}, {0x2b2b1,6}, {0xc909,11}, + {0x286a4,3}, {0x528e,7}, {0x1ec83,6}, {0x14f82,9}, {0x9c03,7}, {0x7322,8}, {0x2c9aa,6}, {0x32ea,14}, + {0x24114,7}, {0x16d14,9}, {0x2c830,6}, {0xdff0,11}, {0x23e19,5}, {0x158f9,9}, {0x2b093,4}, {0xd29e,11}, + {0x2cb4e,6}, {0x147f0,6}, {0x297b7,3}, {0x279f4,3}, {0x2bbb6,4}, {0x210e7,7}, {0x1f991,8}, {0x1a122,9}, + {0x174b0,8}, {0xac1e,12}, {0x1f1e1,8}, {0x1020,13}, {0x2ce64,5}, {0x2518f,6}, {0x2d1a9,3}, {0x13179,5}, + {0x1169e,9}, {0x208b0,7}, {0xc30e,11}, {0xd813,11}, {0x22bec,7}, {0x19444,9}, {0x29661,5}, {0x23025,7}, + {0x2355e,7}, {0xf9e,7}, {0x19cbd,9}, {0x55a3,11}, {0x24ff1,6}, {0xf445,9}, {0x3a68,14}, {0x2d2a8,3}, + {0x1d1c5,8}, {0x2b119,4}, {0x1ce8d,8}, {0xacb0,6}, {0x22bf5,4}, {0x27145,6}, {0x24e93,6}, {0x1ef69,8}, + {0x2674b,5}, {0x26ecb,4}, {0x24eef,6}, {0x29625,5}, {0x114b4,10}, {0x10ce4,10}, {0x25d8b,6}, {0x2db6a,2}, + {0x2985c,5}, {0x7c4,33}, {0x1cf15,10}, {0x5845,13}, {0x2b92a,6}, {0xb375,11}, {0x13a18,10}, {0xfa35,10}, + {0x80ca,4}, {0x6595,13}, {0x1ccf5,8}, {0x1024c,10}, {0x29c50,5}, {0xde59,11}, {0x27c79,6}, {0x14f5a,10}, + {0x20379,8}, {0x2b4e5,4}, {0x21ed5,7}, {0xfff2,10}, {0xfe4e,11}, {0x204fb,6}, {0x1dc05,8}, {0xfbf1,11}, + {0x2372c,7}, {0x238b4,5}, {0x1874b,9}, {0x2804e,5}, {0x26625,6}, {0x28563,5}, {0x28988,5}, {0x7fa8,6}, + {0x26ae3,8}, {0xf388,11}, {0x2821d,5}, {0x1ddc5,8}, {0x14e76,3}, {0x11fd0,6}, {0x903a,12}, {0x17645,9}, + {0x1f049,8}, {0xc487,8}, {0x3102,4}, {0x253bb,10}, {0x1768d,9}, {0xa0ba,6}, {0x143de,8}, {0x20cd,9}, + {0x23549,7}, {0xfe38,11}, {0x29034,5}, {0x27031,6}, {0x8cda,12}, {0x29fe0,5}, {0x21eff,7}, {0xcf60,5}, + {0x65c9,13}, {0x10c26,10}, {0xf46f,8}, {0x2784d,6}, {0x27a8f,4}, {0x22e83,5}, {0x2327f,7}, {0x2d446,3}, + {0x7b27,6}, {0x22ea4,7}, {0x22ae7,7}, {0x6cd8,13}, {0x2d969,4}, {0x19dd4,9}, {0xde0e,9}, {0x205c6,7}, + {0x195c7,8}, {0x2d641,3}, {0x29f86,5}, {0x11470,7}, {0x22851,7}, {0x284a0,5}, {0x29c84,3}, {0x2d20f,3}, + {0x1ef09,8}, {0x29ef5,5}, {0x5fde,6}, {0x25e43,5}, {0x18ca3,9}, {0x21d5b,7}, {0x23bcd,7}, {0x14030,10}, + {0x24065,7}, {0x2b422,3}, {0x28c84,7}, {0x26517,6}, {0x1f5e1,6}, {0x2d1e8,3}, {0x143b4,10}, {0x1da25,7}, + {0xaa88,4}, {0x244ad,12}, {0x711c,7}, {0x24153,7}, {0x1a089,9}, {0x1b8c5,14}, {0x9540,10}, {0x28230,2}, + {0xcbb3,11}, {0x2b4fd,4}, {0xf39e,6}, {0x1fc3,4}, {0x2b7d3,4}, {0x25657,6}, {0x1ff39,8}, {0x2a035,5}, + {0x4484,13}, {0x16020,9}, {0x1aea4,9}, {0x294d4,5}, {0x2932,3}, {0x13ab2,5}, {0x68fe,11}, {0x142a8,8}, + {0x2d671,2}, {0x16a5f,3}, {0x10490,10}, {0x2aac3,8}, {0x1ecb9,8}, {0xd5e2,11}, {0x6221,13}, {0x2770b,3}, + {0x269e3,3}, {0x2c70a,6}, {0x4323,2}, {0x2bbfe,4}, {0x2a94b,5}, {0x14480,3}, {0x2b325,4}, {0xffa2,10}, + {0x23942,7}, {0x277f3,6}, {0x2ac6b,8}, {0x1286e,10}, {0x22180,7}, {0x1b2fd,8}, {0x4d7a,4}, {0x2aa73,8}, + {0xef1,3}, {0x1a51f,6}, {0xe709,9}, {0x11d60,10}, {0x51d5,4}, {0x1e527,8}, {0x1067a,10}, {0x1efb9,8}, + {0xbf46,11}, {0x2c950,6}, {0x24c71,6}, {0x2cfa1,3}, {0x5b51,13}, {0x4288,5}, {0x21044,7}, {0x20e8b,7}, + {0x3c7c,14}, {0x1b2d5,8}, {0xf516,9}, {0x2b1f1,4}, {0xbf6b,7}, {0x28231,5}, {0xfd93,11}, {0x15d7d,9}, + {0x298a9,5}, {0x2d0ec,3}, {0x12760,10}, {0x2441d,7}, {0x2c0be,4}, {0x14e08,4}, {0x1bf75,8}, {0x31b6,14}, + {0x13b47,4}, {0x2248b,7}, {0xd23d,9}, {0x1ccdd,8}, {0xb052,11}, {0x25770,3}, {0x26607,5}, {0x2b4b0,3}, + {0x1ef31,8}, {0x166e2,5}, {0x2b155,4}, {0x7a32,12}, {0x1b4e3,6}, {0x28a7d,5}, {0x23048,7}, {0x26ef3,6}, + {0xbd8,3}, {0xffac,10}, {0x1b89b,14}, {0x271ab,6}, {0x1348c,10}, {0x294d9,5}, {0x14652,10}, {0x24ecb,6}, + {0x104ec,8}, {0x125b2,10}, {0x100d8,8}, {0x28cce,5}, {0xfbc5,5}, {0x17b4f,5}, {0x20fd4,7}, {0x1479c,10}, + {0x2474d,12}, {0x28105,5}, {0xa0f,16}, {0x1c205,7}, {0x24401,7}, {0x1f611,8}, {0x14b18,10}, {0x2a9b4,5}, + {0x2a026,5}, {0x103b4,9}, {0x27bdd,6}, {0x11060,8}, {0x2b6f4,4}, {0x2c74c,6}, {0x6aa9,13}, {0x10006,4}, + {0xcd29,11}, {0x1b28d,8}, {0x27fea,5}, {0x19930,9}, {0x2b229,4}, {0x165e6,9}, {0x275dd,6}, {0x12300,10}, + {0x1b13,4}, {0x16745,6}, {0x1fc39,5}, {0xff5c,10}, {0x126ca,10}, {0x114dc,10}, {0x145c6,10}, {0x270bf,2}, + {0x1c985,8}, {0x2b5df,4}, {0x3f73,4}, {0x21b3,7}, {0x1bc2,4}, {0x130de,10}, {0x27afc,3}, {0x1ee49,8}, + {0x30fa,4}, {0x27fb8,5}, {0x2cd5e,6}, {0x13cff,4}, {0x13002,10}, {0x25099,6}, {0x1fc1b,4}, {0x2d470,3}, + {0x2db54,2}, {0x12cf6,10}, {0x3a4c,14}, {0x249f9,8}, {0x273c1,6}, {0x19ed9,9}, {0xb05d,11}, {0x29efa,5}, + {0x36df,4}, {0x1c25d,8}, {0x29e82,5}, {0x2069f,7}, {0x2741b,6}, {0x19b5e,9}, {0x2d809,4}, {0x2d03a,3}, + {0x1bc1d,8}, {0x19ffb,7}, {0x2510b,6}, {0xea40,11}, {0x2da71,2}, {0xff72,8}, {0x17202,9}, {0x18703,9}, + {0x155fe,10}, {0x1c9ad,8}, {0x1aee,15}, {0x26b93,6}, {0x167de,9}, {0x2f94,14}, {0xae2e,12}, {0x2d1ca,3}, + {0x2afbf,4}, {0x1f099,6}, {0x25311,10}, {0x29dee,3}, {0x25075,6}, {0x11126,10}, {0x24377,5}, {0xaca4,5}, + {0x1f8a1,8}, {0x2d42c,3}, {0x79c6,12}, {0x929e,12}, {0x24f55,6}, {0x18067,8}, {0xd784,11}, {0x4230,5}, + {0x4ac3,13}, {0x18e4a,9}, {0x1d06d,8}, {0xf240,3}, {0x158de,9}, {0x1dfc,8}, {0x1698e,9}, {0x2730d,6}, + {0x2af81,4}, {0x2429e,3}, {0x5d82,11}, {0x102b2,4}, {0x2d581,3}, {0x23ea5,7}, {0x1f911,8}, {0x2042b,3}, + {0x283b,15}, {0xd5a0,11}, {0x739a,8}, {0x1df57,8}, {0xf292,3}, {0x1b699,3}, {0x10d48,10}, {0x1f489,8}, + {0x1aa2d,9}, {0x13ec8,7}, {0x2866a,5}, {0x12259,7}, {0x15734,10}, {0x20b85,5}, {0x122a6,10}, {0x5b46,6}, + {0x273e7,3}, {0x1d751,6}, {0x5991,3}, {0x129ae,10}, {0x194e,3}, {0x748e,4}, {0x20819,7}, {0x432,55}, + {0xfa0b,2}, {0x2d825,4}, {0x1d9bf,6}, {0x2afb1,6}, {0x290a2,5}, {0x23616,5}, {0x1dcdd,8}, {0x105b2,10}, + {0x2b3a9,4}, {0x28fc6,5}, {0x1b345,8}, {0x1d1a5,8}, {0x21375,4}, {0x13eaa,10}, {0x1a146,9}, {0x2d14c,3}, + {0x29bfb,5}, {0x138c4,10}, {0x1829e,9}, {0x28ed6,5}, {0x2d40a,3}, {0x27aa2,3}, {0x1847b,9}, {0x20d1d,7}, + {0xa936,12}, {0xe048,10}, {0x7366,12}, {0x6d9d,2}, {0x27ade,3}, {0x28455,5}, {0x27243,3}, {0x2c84,5}, + {0x27ad1,4}, {0x2b9fc,6}, {0x9442,12}, {0x29c87,5}, {0xb554,3}, {0xc6db,4}, {0x29f1d,5}, {0xf6fa,11}, + {0x2bbee,4}, {0x1e273,4}, {0x7c2a,7}, {0x2915b,5}, {0x25755,6}, {0x20ae7,7}, {0x766b,7}, {0x7f1e,12}, + {0x8988,6}, {0x28626,5}, {0x25f15,6}, {0xee91,6}, {0x2d4bb,3}, {0x1a32e,5}, {0x24de3,6}, {0xaec0,4}, + {0x4b57,8}, {0x1b67b,8}, {0x29f77,5}, {0x13f38,4}, {0x1dd10,4}, {0x26b69,6}, {0x2880a,5}, {0x1ed59,8}, + {0x1b09e,7}, {0x4fa3,9}, {0x5f8d,5}, {0x2a0eb,3}, {0x201a1,8}, {0x7595,5}, {0x21c66,7}, {0x28d04,3}, + {0x2d3e6,3}, {0xe011,11}, {0x1e6cf,8}, {0x24e69,6}, {0xc4c6,11}, {0x759f,7}, {0x1c2e5,7}, {0x235f8,7}, + {0x5a40,6}, {0x13cf2,7}, {0x2cc74,6}, {0xc1bb,8}, {0xa9f8,10}, {0x2bbd6,4}, {0x189cc,4}, {0x21a40,7}, + {0x2c3a4,6}, {0x125b6,5}, {0x29ec8,5}, {0x1a0ec,9}, {0x1481e,10}, {0x6026,13}, {0x986e,12}, {0x19726,9}, + {0x1fe71,8}, {0x5b03,13}, {0x206b4,7}, {0xccb0,10}, {0x2661b,3}, {0x1f7a9,6}, {0x16f03,9}, {0x155ea,10}, + {0x61bb,11}, {0x2bc2a,4}, {0x21325,7}, {0xf8e0,5}, {0x21446,7}, {0x1502c,10}, {0xe3a4,8}, {0xd687,11}, + {0x13a40,10}, {0xaefc,3}, {0x1e5b1,6}, {0xa726,12}, {0x24da1,6}, {0x213cf,7}, {0x1ab32,9}, {0x274c9,5}, + {0xe2bb,11}, {0x1f79b,6}, {0xfcf9,11}, {0x2b3c5,4}, {0xd513,6}, {0x29c4b,5}, {0x2b4a1,4}, {0x200e3,6}, + {0xcf3,4}, {0x6ce5,13}, {0x2a97d,5}, {0x1654d,9}, {0x20239,8}, {0x28321,3}, {0x1adde,9}, {0x21ece,5}, + {0x23cf3,5}, {0x12b52,10}, {0x1fd73,4}, {0x29333,5}, {0x13c52,10}, {0x2bce,14}, {0x27c46,3}, {0x1f92b,6}, + {0x27895,6}, {0x2698d,6}, {0x2b4c3,3}, {0xb270,8}, {0x20a8c,7}, {0x2421,15}, {0x2987f,5}, {0x30,158}, + {0x1cdbd,7}, {0x27be3,6}, {0x3686,14}, {0x2ceee,3}, {0x27c4f,6}, {0x5ea4,3}, {0x5fe5,13}, {0x2bf34,2}, + {0x18d2,15}, {0x38b6,14}, {0x23f17,4}, {0x25ba9,6}, {0x281e6,5}, {0xcc5b,8}, {0x27c13,6}, {0x2d2e4,3}, + {0x15f7e,9}, {0x1d6df,8}, {0x6b04,13}, {0x2ba92,6}, {0x29d83,5}, {0x187ff,9}, {0x21f7d,7}, {0x6ddc,13}, + {0x2d075,3}, {0x2d662,3}, {0xcf44,11}, {0x2816e,5}, {0xa816,12}, {0x520e,4}, {0x3c81,4}, {0x22ad9,7}, + {0x4531,7}, {0x2988e,7}, {0x1c8bf,5}, {0xd7f2,11}, {0x1cdf5,8}, {0xd51c,11}, {0x471b,9}, {0x25d17,6}, + {0x2c272,4}, {0x29785,3}, {0xfb74,13}, {0x1db25,5}, {0x1e457,8}, {0x1f661,8}, {0x563d,13}, {0x2722c,3}, + {0x1e567,8}, {0x92c2,12}, {0x29ff9,5}, {0xdaca,8}, {0x6742,13}, {0x20139,8}, {0x9106,12}, {0x27ea5,5}, + {0x2240d,7}, {0x2bb7a,4}, {0x208b7,7}, {0x2bd0a,4}, {0xf178,6}, {0x24cc5,6}, {0x2709d,6}, {0x24a3f,6}, + {0x1f9c3,3}, {0x19461,3}, {0x28146,5}, {0x174c,16}, {0x2c23e,4}, {0xe1a8,11}, {0x351a,14}, {0x53e9,5}, + {0xb559,11}, {0x20636,7}, {0x269f9,6}, {0x2d467,3}, {0x2062b,4}, {0x1e1c7,8}, {0xebab,9}, {0xbfb7,8}, + {0x6785,3}, {0x2cf6b,3}, {0x22e34,7}, {0x15ae,8}, {0x3464,14}, {0x15ae3,3}, {0x2d93d,4}, {0x1b443,8}, + {0x25225,7}, {0x1c4c5,8}, {0x2cbf6,6}, {0x1eab7,8}, {0x29ef0,5}, {0x9c46,12}, {0x296c0,5}, {0x792a,9}, + {0x1f431,8}, {0x1fa69,8}, {0x100b1,2}, {0x1494a,10}, {0x193e1,9}, {0x231d0,7}, {0x2d1b5,3}, {0x217e1,3}, + {0x14ec4,10}, {0x16fa7,9}, {0x2b4e1,4}, {0x10daf,5}, {0x28119,5}, {0x162b3,7}, {0x18e9b,9}, {0x209eb,7}, + {0x2d4f4,3}, {0x18db,3}, {0x151c,5}, {0x2d4fa,3}, {0x22dee,7}, {0x22388,7}, {0x2054b,8}, {0x12c6a,10}, + {0x1bc5d,8}, {0x240de,3}, {0x23056,6}, {0x1ecc9,8}, {0x25595,6}, {0x17bc,16}, {0x2b4dd,4}, {0x2b191,4}, + {0x1f629,8}, {0x2cc14,6}, {0xc4c0,6}, {0x1f0e1,8}, {0x29eff,5}, {0x205aa,7}, {0xf97a,11}, {0xf282,9}, + {0x27ec8,5}, {0x20391,8}, {0x29fec,3}, {0x1df8f,8}, {0x1a038,9}, {0x182b0,7}, {0x24dc5,6}, {0x5f08,13}, + {0x185fe,9}, {0x20ce3,7}, {0x12512,10}, {0x2d929,4}, {0x28f3a,4}, {0x724b,6}, {0x63d0,11}, {0x18ce2,9}, + {0xbc0d,11}, {0x273df,6}, {0x8c4,44}, {0xd0dd,5}, {0x10c8c,6}, {0x3218,14}, {0x10150,10}, {0x2d390,3}, + {0x24b75,6}, {0x202f9,8}, {0x27bef,6}, {0x1483c,10}, {0x23735,5}, {0x2bb5a,4}, {0x29ee6,5}, {0x251cb,6}, + {0x16666,7}, {0x11d56,10}, {0x1a3a3,9}, {0xd02b,11}, {0x154a0,10}, {0x203a9,8}, {0xf330,11}, {0x9316,12}, + {0x2db74,2}, {0x29f8b,5}, {0xd511,11}, {0xa996,9}, {0x7ac2,12}, {0x2182,11}, {0x1a778,9}, {0xfdb6,3}, + {0x270bb,6}, {0x94f6,12}, {0x1659e,9}, {0x17280,9}, {0x28a6e,5}, {0x275cb,6}, {0x5ccf,10}, {0x24b99,6}, + {0x9166,5}, {0x2dcc,3}, {0x1b30d,8}, {0x1dc4f,6}, {0x1eb69,8}, {0x29fa4,5}, {0x4e37,13}, {0x24705,12}, + {0x185ec,9}, {0x15036,10}, {0x1b683,8}, {0x10c58,7}, {0x1f419,8}, {0x10828,10}, {0x162f2,9}, {0x6b04,6}, + {0xe0d7,11}, {0x8c4,94}, {0x1b56b,8}, {0xd1e3,11}, {0x1137e,10}, {0x241bc,7}, {0x25c93,6}, {0xea4b,11}, + {0x16c70,9}, {0x1baa8,5}, {0x230bf,7}, {0x8c4,86}, {0x2600f,4}, {0x1f4d9,8}, {0x1db6d,8}, {0x1095b,5}, + {0xe171,11}, {0x20ab6,7}, {0x2db6e,2}, {0x1b6f7,14}, {0x7c9a,7}, {0xf8b2,10}, {0x1471a,10}, {0x1ee89,6}, + {0xacbc,10}, {0x1ebb1,8}, {0x1863d,7}, {0x11b3c,8}, {0x5c9a,5}, {0x11824,10}, {0x2d5ff,3}, {0x21983,7}, + {0x123c,16}, {0x27613,6}, {0x288fa,7}, {0x25413,6}, {0x1e24f,8}, {0x2d452,3}, {0x1a730,6}, {0x21aec,7}, + {0xa9b0,10}, {0x28c17,7}, {0x17336,9}, {0x238e5,7}, {0x193d,3}, {0x2bd2a,4}, {0x2959c,5}, {0x205b8,7}, + {0xcf70,11}, {0x2c500,6}, {0x1ad0,15}, {0xf950,3}, {0x29903,5}, {0x20229,8}, {0x293c,14}, {0x288af,5}, + {0x2c1ca,4}, {0x10d52,7}, {0x288be,5}, {0x24e15,6}, {0xcc27,5}, {0x78e4,5}, {0x214bd,7}, {0x29747,5}, + {0x236f4,7}, {0x2b06d,4}, {0x40a4,14}, {0x2b431,4}, {0x10ce4,6}, {0xa19,22}, {0x291f8,5}, {0x280e,15}, + {0x2c90e,6}, {0x1a95e,9}, {0xaace,12}, {0xf417,11}, {0x19c26,7}, {0x2b3d9,4}, {0x12848,8}, {0x285f9,5}, + {0x1ad11,4}, {0x99fa,6}, {0x74da,12}, {0x1a94c,9}, {0x28f03,5}, {0x2bfa6,4}, {0x14d04,3}, {0x5aaa,8}, + {0x27763,6}, {0x2bf72,4}, {0x2576d,6}, {0x7016,12}, {0x2d791,4}, {0x82ba,12}, {0x2726b,6}, {0x24c47,6}, + {0x29365,5}, {0x94c6,12}, {0x14918,10}, {0x232c7,4}, {0x6c15,13}, {0x23c67,7}, {0x15b4a,8}, {0xca32,11}, + {0x2b5cf,4}, {0x1b603,8}, {0x1b5db,8}, {0x83e0,4}, {0x763b,3}, {0x19672,9}, {0x28518,5}, {0x1f3a3,3}, + {0x2c56c,6}, {0x113b0,10}, {0x20e20,7}, {0x6dc2,13}, {0x5eee,7}, {0x207c5,7}, {0x89fe,12}, {0x9ab0,10}, + {0x1b5fb,8}, {0x52bc,13}, {0x29895,5}, {0x128e6,10}, {0x22430,7}, {0x3c98,14}, {0x117d4,10}, {0x7830,10}, + {0xad4c,10}, {0x1a457,9}, {0x1f409,8}, {0x28487,5}, {0x179c9,9}, {0x2b01d,4}, {0x24440,7}, {0xfd25,11}, + {0x1a62b,9}, {0x1c335,8}, {0x1f4c3,4}, {0x23017,5}, {0x11e8c,10}, {0x290c5,5}, {0xa7e8,4}, {0x13296,10}, + {0x15e0d,9}, {0x176e7,9}, {0xf6af,4}, {0x20389,8}, {0x26a9b,6}, {0x1d1f5,8}, {0x29848,5}, {0x3cb4,14}, + {0x2a91e,5}, {0x6f2e,13}, {0x7c4,26}, {0x25205,4}, {0x2442b,7}, {0x29002,5}, {0x381c,14}, {0x8602,12}, + {0x2d775,4}, {0x1692,3}, {0x29756,5}, {0x79d2,7}, {0x25c15,6}, {0x295ba,5}, {0x1af22,9}, {0x1ab8,9}, + {0x2bebc,2}, {0x2bf32,4}, {0x17dbb,9}, {0x282db,5}, {0xc04e,11}, {0x2bf08,2}, {0x19e66,4}, {0x36cc,14}, + {0x15068,10}, {0x28e3b,5}, {0x266a3,6}, {0x17f8f,9}, {0x26987,6}, {0x14544,10}, {0x2d3a5,3}, {0x28ea9,5}, + {0x19390,9}, {0x2b4c1,4}, {0x2692f,4}, {0x2a00f,3}, {0x2dae6,2}, {0x2bda8,2}, {0x19ccf,9}, {0x292c5,4}, + {0x14a58,10}, {0xaa04,10}, {0x1eeb9,8}, {0x21cf,8}, {0x2b836,4}, {0xe780,11}, {0x14bea,10}, {0x245f1,12}, + {0x1fa63,5}, {0x2c0f4,2}, {0xd1c7,6}, {0x21013,7}, {0x2cc50,6}, {0x19621,9}, {0x26cc5,6}, {0x1142a,8}, + {0x261e9,6}, {0x267b7,6}, {0x1e5c7,8}, {0xdda9,11}, {0x1e107,5}, {0x20a07,7}, {0x29f81,5}, {0x2674b,6}, + {0x1fa6b,3}, {0x25d61,6}, {0xa876,6}, {0x15ac1,9}, {0x12a4e,8}, {0x210ee,7}, {0x1b4cb,8}, {0x19b3a,9}, + {0x22cc5,7}, {0x2b1cf,4}, {0x15806,18}, {0x277f9,6}, {0x153d8,7}, {0x10e9c,10}, {0x17c0d,4}, {0x28b27,5}, + {0x2d614,3}, {0x27871,6}, {0x479f,9}, {0x708e,12}, {0x281eb,5}, {0x1b767,14}, {0x1a96,8}, {0x1e4bf,8}, + {0x13fea,10}, {0x2bcae,4}, {0xee08,11}, {0x25fb5,4}, {0x2cb84,6}, {0x21c82,7}, {0x14b22,6}, {0x18c03,7}, + {0x2352d,7}, {0x29eaf,5}, {0x228ed,7}, {0x282a4,5}, {0x280af,5}, {0x20a2a,7}, {0x19b3,15}, {0x2979c,5}, + {0x1ddf5,8}, {0x28277,5}, {0xf2ee,8}, {0x1af8e,9}, {0xdce,3}, {0x2b9b6,4}, {0x1feb9,8}, {0xa17a,12}, + {0x5eee,13}, {0x19b7,4}, {0x29e8c,5}, {0x29fea,5}, {0x29dce,5}, {0xa0c8,9}, {0x4611,4}, {0x47c7,3}, + {0x246a5,12}, {0x1297c,10}, {0x284f,10}, {0x14b92,3}, {0x257e9,6}, {0x13c40,7}, {0x24050,7}, {0x2bb4,10}, + {0x1f3e9,8}, {0x2a069,3}, {0x178d0,6}, {0x10620,10}, {0x15216,10}, {0x209d6,7}, {0x29f04,5}, {0x268fd,6}, + {0x680a,8}, {0x26c95,6}, {0x20439,8}, {0x92aa,12}, {0xfa09,5}, {0x154e6,10}, {0x2343f,5}, {0x2b86a,6}, + {0x1052c,2}, {0x2afa1,4}, {0x15a55,9}, {0x392b,5}, {0x2943c,5}, {0x14ec6,3}, {0x1e63f,8}, {0x2c590,6}, + {0x14fa0,10}, {0x2aee9,4}, {0x2671d,3}, {0x29d49,3}, {0x192c1,9}, {0x2b015,4}, {0x1719f,9}, {0x1f4c1,6}, + {0x145da,10}, {0x1c9c5,8}, {0x1594a,9}, {0x23f7e,7}, {0x2d4f1,3}, {0x22997,5}, {0x9f59,3}, {0x17147,6}, + {0x12c9c,10}, {0x5ead,13}, {0x19834,9}, {0x264ed,6}, {0xe1be,11}, {0x14800,10}, {0x1fe19,8}, {0x23399,5}, + {0x5d4e,13}, {0x1b82b,14}, {0x11cde,10}, {0x5e79,13}, {0x4fca,13}, {0x5428,13}, {0x13e46,10}, {0x19e52,9}, + {0xe085,4}, {0x1c4a5,8}, {0x2820e,5}, {0x6d9d,11}, {0xc9ae,11}, {0x20bc4,5}, {0xfa6c,11}, {0x272d1,6}, + {0x297b2,3}, {0x1afe1,7}, {0x990a,12}, {0x10bfe,10}, {0x897a,12}, {0x1d54f,6}, {0x2d317,3}, {0x1f971,8}, + {0x1caed,8}, {0x74c2,12}, {0x1d75f,8}, {0x8bf6,12}, {0x2d24e,3}, {0x2966b,5}, {0x173cf,9}, {0x23a4e,5}, + {0x293e2,5}, {0x1b3c5,12}, {0x29f9a,5}, {0x3db0,8}, {0x2dac2,2}, {0x29616,5}, {0x1242c,10}, {0x22527,4}, + {0xdc07,11}, {0x3642,6}, {0x1a904,9}, {0x2be4e,4}, {0x1ffd9,8}, {0x2b735,7}, {0x199ff,9}, {0xd95f,4}, + {0xcff6,8}, {0x2c3e6,6}, {0xc29a,4}, {0x29f4f,5}, {0x2c98c,6}, {0x27c3,15}, {0xb328,11}, {0x10c32,5}, + {0x10870,10}, {0x2d881,4}, {0x272fb,6}, {0x1f221,8}, {0x22e0c,5}, {0x222e0,5}, {0x2a9a5,5}, {0x9766,12}, + {0x432,54}, {0x26d49,6}, {0x29f6d,5}, {0x204c3,8}, {0x2da8e,2}, {0x28f0d,4}, {0x295e4,5}, {0x2539d,10}, + {0x3cd0,14}, {0xeafb,11}, {0x2b8fa,6}, {0xf88c,3}, {0x2902f,5}, {0xda30,8}, {0xef08,3}, {0x2b509,4}, + {0xb24e,6}, {0x2b1a9,6}, {0x1a041,9}, {0x2d461,3}, {0x780,66}, {0x4044,5}, {0x262bd,4}, {0x297e4,5}, + {0x1c93d,8}, {0x1dbbd,8}, {0x1ad33,6}, {0x24d29,6}, {0x29f7c,5}, {0x29020,5}, {0x81f1,6}, {0x1ddbd,7}, + {0x2c11e,4}, {0x28236,5}, {0x11e1e,7}, {0x15788,18}, {0xf2c4,5}, {0x2b391,4}, {0x11fc4,8}, {0x2775f,4}, + {0x1924e,7}, {0x1e49f,8}, {0x2c202,4}, {0x27325,6}, {0x242eb,4}, {0x1fd2b,6}, {0x2c5fc,6}, {0x4445,3}, + {0x1b177,16}, {0x2c04a,4}, {0x26c17,6}, {0x84ee,12}, {0x158b1,9}, {0xcd13,11}, {0x1191e,10}, {0x2375f,3}, + {0x69b2,13}, {0x26b6f,6}, {0x29fd6,5}, {0x2b767,4}, {0x2b2bb,4}, {0x2c028,2}, {0x7661,4}, {0xcb66,11}, + {0x2663d,6}, {0x2cc5c,6}, {0x1f26,15}, {0x705f,5}, {0x226c2,7}, {0xe84a,5}, {0x2998f,5}, {0x15a94,9}, + {0xb3b7,11}, {0x3774,14}, {0x206de,7}, {0xf6ad,11}, {0x1f951,8}, {0xec0e,11}, {0x1fae9,8}, {0x29917,5}, + {0xf00d,11}, {0xeff,13}, {0xe31e,9}, {0x151d2,8}, {0x22d2a,7}, {0x24ddd,6}, {0x26f23,6}, {0x2c3d4,6}, + {0x2998a,5}, {0x15a16,9}, {0xceaa,11}, {0x13130,8}, {0x2bd1e,4}, {0x73cb,4}, {0x7169,5}, {0xb3ee,11}, + {0x26c1d,6}, {0x1748c,9}, {0x2d425,3}, {0x2cc1a,6}, {0x24cb3,6}, {0xcfff,11}, {0x17618,9}, {0x15092,8}, + {0x234ee,7}, {0x2545b,6}, {0x4c9b,3}, {0x26b03,6}, {0x2bf82,4}, {0x28155,5}, {0x23813,7}, {0x290ca,5}, + {0x24e9f,6}, {0x1fc0,4}, {0xe0f8,7}, {0x237bf,7}, {0x194a,14}, {0x28697,5}, {0x15a0,11}, {0x21a8a,6}, + {0x1f0c1,8}, {0x2d512,3}, {0x271dd,4}, {0xe11b,8}, {0x1ab20,9}, {0x10fd,3}, {0x2456d,12}, {0x25613,6}, + {0x20c03,4}, {0x2db56,2}, {0x1c005,8}, {0x2ba50,6}, {0x24ce3,3}, {0x2c452,6}, {0x20595,7}, {0x26679,6}, + {0x59be,6}, {0x15d37,4}, {0x286ab,8}, {0x25249,10}, {0x1a4a8,9}, {0xdb36,11}, {0x2a07d,3}, {0x28983,5}, + {0xfeb1,11}, {0xa396,12}, {0x2c096,4}, {0x30,156}, {0x2ab5b,8}, {0x3c1f,4}, {0x9bfe,12}, {0x2cfc5,3}, + {0x2c8e4,6}, {0x19c87,6}, {0xee81,11}, {0xfda9,11}, {0xb236,11}, {0x282ae,5}, {0x2390a,5}, {0xf68c,11}, + {0x16dfe,9}, {0x1efc1,8}, {0x143e6,10}, {0x24f13,6}, {0x25beb,6}, {0x22a85,5}, {0x2d7d1,4}, {0x155a4,5}, + {0x2b2eb,4}, {0xab9a,12}, {0xb24c,11}, {0x151b2,8}, {0x5200,6}, {0x23e20,7}, {0x1faa1,8}, {0xaf5a,12}, + {0x1a1fa,9}, {0x29816,5}, {0x2d3af,3}, {0x19fd5,9}, {0x719e,12}, {0x272cd,4}, {0xfae,4}, {0x27c10,3}, + {0x28dd7,5}, {0x17c5c,9}, {0x1a52f,9}, {0x2d332,3}, {0x26673,6}, {0x24d5f,6}, {0x24145,7}, {0x299f3,5}, + {0x28cab,5}, {0x24b0d,6}, {0xac66,12}, {0x27dd1,5}, {0x2ac93,8}, {0x1eedb,4}, {0x27b02,3}, {0x28b8b,3}, + {0x1eaaf,8}, {0xa4c2,12}, {0x19e64,9}, {0x14c3c,8}, {0x6cb1,13}, {0x1c9cd,8}, {0x20d5c,7}, {0xb6c8,3}, + {0xd274,8}, {0x2d8a1,4}, {0x1b7ad,14}, {0x2ce8,12}, {0x1eeb1,8}, {0x21c6d,7}, {0x25e5b,6}, {0x1fc71,8}, + {0x27bfb,6}, {0x1fe09,8}, {0x24def,6}, {0x11df6,10}, {0x14e3a,3}, {0x23aa0,7}, {0x1fee1,8}, {0x1d95f,8}, + {0x25577,6}, {0x1424c,9}, {0x1c105,8}, {0x222b4,7}, {0xa015,3}, {0x2126f,7}, {0x20281,8}, {0x23f00,7}, + {0x13250,10}, {0x28be0,5}, {0x24bcf,6}, {0x15872,9}, {0x138f8,8}, {0x12864,10}, {0x27301,6}, {0x23fa1,7}, + {0x16784,5}, {0x28dc8,5}, {0x1a9dc,8}, {0x1544,4}, {0xd97e,11}, {0x29491,5}, {0x23836,7}, {0x2ccfe,6}, + {0x23787,6}, {0x1515a,8}, {0x2072b,7}, {0x1ef5c,3}, {0x207fd,7}, {0xfcc4,3}, {0x1ac6d,9}, {0x23390,5}, + {0xb2fc,11}, {0xcaa0,11}, {0x6baf,11}, {0x4e03,13}, {0xaefa,12}, {0x2931a,5}, {0x29aa7,5}, {0x13e5a,10}, + {0x27d8d,8}, {0xaaea,8}, {0x2cd8e,6}, {0x2cc62,6}, {0x2d3d7,3}, {0x2a996,5}, {0xa73e,12}, {0x2515f,5}, + {0xa0b,20}, {0x23d6a,7}, {0x106ec,6}, {0x88a2,12}, {0x2b653,4}, {0x3006,4}, {0x16b91,5}, {0x2c07a,4}, + {0x24b9f,6}, {0x1b00c,9}, {0x1b32d,8}, {0x3480,14}, {0x1af51,3}, {0x26757,4}, {0x7576,12}, {0x293f3,3}, + {0x5775,13}, {0x2bdc2,4}, {0xf2a3,9}, {0x1ebb9,8}, {0x13a22,7}, {0x7938,9}, {0x1ea8f,8}, {0x1f999,8}, + {0xa111,4}, {0x2cb30,6}, {0x2848c,5}, {0x18a5a,8}, {0x18be6,9}, {0x271e,15}, {0x13ae0,10}, {0xf141,11}, + {0x1d325,8}, {0x18f75,7}, {0x1a957,7}, {0x22fca,7}, {0x1f019,8}, {0x26e87,6}, {0x18421,9}, {0x7a4a,12}, + {0x2baa4,6}, {0xd409,11}, {0x2c85a,6}, {0x27ed2,5}, {0x26dbb,6}, {0x19a88,2}, {0x506c,4}, {0xd9a,10}, + {0xf254,11}, {0x1b305,8}, {0x1a70c,9}, {0x2d47f,3}, {0xcee6,5}, {0x28df,6}, {0x14a44,10}, {0x1f1b1,8}, + {0x23758,5}, {0x2d8ad,4}, {0x14fbe,10}, {0x11caf,7}, {0x2b351,4}, {0x18244,9}, {0x3f70,14}, {0x235b9,7}, + {0xeae5,11}, {0x15146,8}, {0x18ac8,7}, {0x1aa7e,9}, {0x29510,5}, {0xaec,4}, {0x26bff,6}, {0x2223,15}, + {0x23010,7}, {0x1afbb,9}, {0xe56b,5}, {0x179c,16}, {0xf63a,3}, {0xbcb2,7}, {0x22b11,7}, {0x2d1d3,3}, + {0x237cf,2}, {0x1016e,16}, {0xf52,17}, {0xc55,3}, {0x20491,10}, {0x13824,10}, {0x79c9,4}, {0x1a7ed,9}, + {0x286c3,8}, {0x28d9c,5}, {0x23dfd,7}, {0x1cdad,8}, {0x2d4fd,3}, {0x27e9b,5}, {0x8a9a,12}, {0x2c3f8,6}, + {0x15478,10}, {0x10508,10}, {0x1ef33,5}, {0x265c1,2}, {0x1dc71,4}, {0x1cab8,5}, {0x17bbc,6}, {0x3552,14}, + {0x81fa,12}, {0x242bf,7}, {0x17792,9}, {0x236a0,5}, {0x42e6,9}, {0x25bc7,6}, {0x299c1,5}, {0x14cfb,7}, + {0x2c5c6,6}, {0x28ccb,3}, {0x1a323,11}, {0xbfa1,8}, {0x4b08,6}, {0x2af91,4}, {0x87ee,12}, {0xbafd,4}, + {0x14d69,5}, {0x1bfef,6}, {0x8416,12}, {0x184ce,7}, {0x265bf,4}, {0x192a6,9}, {0x26d6d,6}, {0x10666,10}, + {0x4047,3}, {0x29e96,5}, {0xb6c7,4}, {0xe5d3,11}, {0x23b6b,7}, {0x12e60,7}, {0x2d416,3}, {0x33fd,4}, + {0x1b53b,8}, {0x17834,8}, {0x26697,5}, {0x225e2,7}, {0x2b4bd,4}, {0x4d19,13}, {0x23645,7}, {0x22541,7}, + {0x19f11,3}, {0x29634,5}, {0x2892a,5}, {0x25357,10}, {0x2670f,6}, {0x27bf5,6}, {0x2a9a,14}, {0xf8c8,5}, + {0xdc28,11}, {0x230e2,7}, {0xdf4d,9}, {0x3e33,6}, {0x5fab,6}, {0x24e40,5}, {0x1abd4,8}, {0x21be1,7}, + {0xf818,10}, {0x16382,9}, {0x8e20,10}, {0xa9ba,12}, {0x27789,4}, {0x26675,4}, {0x27b4f,4}, {0x28cab,4}, + {0x2c584,6}, {0x15a04,9}, {0x18fcf,7}, {0x13f7c,10}, {0x2310e,5}, {0xff34,16}, {0x24398,6}, {0x1e08d,8}, + {0x2b5e3,4}, {0xa6ea,12}, {0x1acf6,7}, {0x3d40,13}, {0xbaa,4}, {0x21a6,4}, {0xcc8f,11}, {0x217c1,7}, + {0xc6e3,11}, {0x1b5e3,8}, {0x28dd2,5}, {0x14ee,12}, {0x2633f,6}, {0x1ed69,8}, {0x1f4c1,8}, {0x26f77,6}, + {0x242b1,6}, {0x1a32e,9}, {0x26787,6}, {0x210e0,7}, {0x2b303,4}, {0x1e18,15}, {0x4561,13}, {0x12b34,10}, + {0x2cfef,3}, {0x2ce4b,5}, {0x136ee,10}, {0x711a,12}, {0x27445,6}, {0x1ff7b,3}, {0x2855e,5}, {0xc54a,8}, + {0x2b7bf,4}, {0x2b425,4}, {0x2809d,3}, {0x2dafc,2}, {0x4472,3}, {0x23a84,7}, {0x1b227,16}, {0x1ac6d,8}, + {0x2daed,2}, {0x2483d,12}, {0x2d0c8,3}, {0x24391,7}, {0x10132,10}, {0x29964,3}, {0x16152,9}, {0x112ae,8}, + {0x5d1a,13}, {0x2824a,5}, {0xfdb4,11}, {0x2dac4,2}, {0x50b4,13}, {0x1b247,10}, {0x253d7,8}, {0x2a9a2,3}, + {0x26ac5,6}, {0x2d072,3}, {0xe46e,4}, {0x2b72a,7}, {0x294a5,5}, {0x14440,10}, {0xc43b,4}, {0xf5b2,9}, + {0x27b4a,3}, {0x2812d,5}, {0x27217,6}, {0xf886,11}, {0x27c1f,6}, {0x510f,13}, {0x11f9c,4}, {0x205cd,7}, + {0x19159,9}, {0x25b7f,6}, {0x23e4a,7}, {0x1a673,9}, {0x213dd,7}, {0xca3,18}, {0x5c55,13}, {0x1b42b,8}, + {0x17807,9}, {0x203e1,8}, {0x5092,4}, {0x26459,6}, {0x1d68f,8}, {0x27db3,10}, {0x2af79,4}, {0x2b40d,4}, + {0xf219,3}, {0x2252c,7}, {0x4ac8,4}, {0x18a2d,9}, {0x23821,7}, {0x1573e,10}, {0x6477,7}, {0x1b663,8}, + {0xd5d7,11}, {0xe75,17}, {0x13ca2,9}, {0xf33b,11}, {0x187a,3}, {0x1428e,4}, {0x1ec41,8}, {0x2b63b,4}, + {0x1b935,14}, {0x1a811,9}, {0xf0f4,11}, {0x19a74,9}, {0x2b846,6}, {0x224b0,5}, {0x291a9,2}, {0x27333,4}, + {0x2b627,4}, {0x20a15,7}, {0x14f64,10}, {0x7cfd,4}, {0x1fcc9,8}, {0x20cf8,7}, {0x2049b,8}, {0x22f2b,3}, + {0xfc7b,3}, {0x250ab,6}, {0x2312a,5}, {0x27982,3}, {0x8e16,4}, {0x15818,5}, {0x228c,15}, {0x227e8,7}, + {0x275e9,6}, {0x186b6,5}, {0x219fa,7}, {0x13e82,10}, {0x27645,4}, {0x1096f,5}, {0x29f72,5}, {0xb380,11}, + {0x160ef,9}, {0x152ea,8}, {0x29b2b,3}, {0x2d1c4,3}, {0x2b63,7}, {0x24346,4}, {0x266eb,6}, {0x4bfb,13}, + {0x1cdd5,8}, {0xf3d7,3}, {0x19e93,3}, {0x12f65,4}, {0x4116,14}, {0x2bd26,4}, {0x297d0,5}, {0xc27f,11}, + {0x1b69b,8}, {0xaae6,12}, {0x1fe09,7}, {0x9b56,11}, {0x29a93,5}, {0x28f71,5}, {0x2d45b,3}, {0x2b39d,2}, + {0xac1e,7}, {0x20fac,5}, {0x24c3b,6}, {0x162c3,9}, {0x18dd5,9}, {0x29524,5}, {0x23090,5}, {0x13d6a,10}, + {0x31c9,4}, {0x2c49a,6}, {0x1fffb,6}, {0x26d73,6}, {0x28ec2,5}, {0x8386,11}, {0x2983e,5}, {0x24bb1,6}, + {0x2ea6,14}, {0x1feb9,5}, {0x1ea1f,8}, {0x1ef11,8}, {0x4783,13}, {0x24b21,6}, {0xe01e,6}, {0x25ba3,6}, + {0x1f051,8}, {0x26af1,6}, {0x2b329,4}, {0xa72c,6}, {0x14a62,10}, {0x762a,12}, {0x1aaf3,9}, {0x1107c,10}, + {0x27361,6}, {0x2a008,5}, {0x1b081,5}, {0x1537e,10}, {0x2392b,7}, {0x2c0f2,4}, {0x28e6d,5}, {0x176f2,3}, + {0x23216,7}, {0x2d338,3}, {0x2c788,6}, {0x28d33,4}, {0x18f8e,6}, {0x2330b,7}, {0xe0c3,9}, {0x20b11,7}, + {0x1b25b,10}, {0x26bc3,6}, {0x72b2,12}, {0x234d4,5}, {0x12a1c,10}, {0x2b5c3,4}, {0xfa2a,11}, {0x2348c,7}, + {0x1c00d,8}, {0x1dcf5,8}, {0x21b71,7}, {0x2859a,5}, {0x2d975,4}, {0x2763d,6}, {0x28801,7}, {0x13d44,8}, + {0x2b061,4}, {0x297da,5}, {0x11cb6,10}, {0x1a12d,7}, {0xb0b5,11}, {0x1b365,8}, {0x2a0f5,3}, {0x1aafc,9}, + {0x1db5d,8}, {0x17cd3,7}, {0x3d86,14}, {0xb637,9}, {0x266df,6}, {0x19c63,9}, {0x7282,12}, {0xa022,8}, + {0x1d04d,6}, {0x1b030,9}, {0x270ab,4}, {0x27e8c,5}, {0x1a2db,7}, {0x6c2f,13}, {0x3c28,8}, {0xa156,12}, + {0x1aeb8,5}, {0x13bc9,7}, {0xa28e,12}, {0x1a54a,9}, {0x2b16d,4}, {0xa1df,7}, {0x2bf8e,4}, {0x4491,13}, + {0x293f6,5}, {0x2a012,5}, {0x2849b,5}, {0x190c2,7}, {0x25681,6}, {0x1c2b5,8}, {0x1fee3,6}, {0x21743,7}, + {0x2c614,6}, {0xfcae,4}, {0x1d937,8}, {0x20890,7}, {0x16bfb,8}, {0x2d623,3}, {0xdbe6,11}, {0x1f133,6}, + {0x2b3b5,4}, {0x2697,15}, {0x2ad5b,8}, {0xfac4,11}, {0x1863f,7}, {0x29f68,5}, {0xccf2,11}, {0x1080,4}, + {0x12b0c,10}, {0x2d5f0,3}, {0xb77f,11}, {0x28a49,7}, {0x2b065,4}, {0x23e27,7}, {0x18eda,9}, {0xe867,11}, + {0x8116,12}, {0x2219,5}, {0x1b4db,8}, {0xbdc1,4}, {0x19f35,7}, {0x2dad4,2}, {0x7636,12}, {0x1c6d5,8}, + {0x297c6,5}, {0x1a136,7}, {0x2c704,6}, {0x23,2}, {0x2656b,6}, {0x6617,13}, {0xddd5,11}, {0x1981b,6}, + {0x26565,6}, {0x2d91d,4}, {0x186a9,9}, {0x1d62d,10}, {0x2d3da,3}, {0x8c62,12}, {0x13e3f,7}, {0x1361e,4}, + {0x5609,13}, {0x2053b,8}, {0x4436,13}, {0x1095,17}, {0x1f4f1,8}, {0x2cc4a,6}, {0x291b2,3}, {0x26da9,6}, + {0x645d,13}, {0x156d0,4}, {0x1ce7d,8}, {0x29fc7,5}, {0x234b6,7}, {0x2b505,4}, {0x8ce6,12}, {0x24a63,6}, + {0x12878,10}, {0xe75f,11}, {0x1b50b,8}, {0x15b58,9}, {0x23764,7}, {0x1f401,8}, {0x6710,8}, {0x29160,5}, + {0x25651,6}, {0x1eb61,8}, {0x28c4b,5}, {0x734,24}, {0x9ef4,9}, {0x14738,8}, {0x27ce2,5}, {0x1e0fd,8}, + {0x20920,7}, {0xc28a,11}, {0x1a543,3}, {0x16125,9}, {0x2a9a0,5}, {0x26105,4}, {0x7f12,12}, {0x22f6f,7}, + {0x59c0,9}, {0x2311c,5}, {0x1b48b,8}, {0x1a3d5,4}, {0x16a56,7}, {0x24f43,6}, {0x1f464,5}, {0x26f95,6}, + {0x12efe,6}, {0x2097b,7}, {0xc79e,11}, {0x1f80,15}, {0x1dcc5,6}, {0x1d37,9}, {0x1bd98,5}, {0x1afc4,9}, + {0x1dd25,8}, {0x2261a,7}, {0x2d3b2,3}, {0x259d9,4}, {0x250ff,6}, {0x28cdf,5}, {0x214d2,7}, {0x16e97,9}, + {0x187b9,7}, {0x18f61,9}, {0x26607,6}, {0x27583,6}, {0x24b7,15}, {0x1fa0b,3}, {0x7582,12}, {0x2cf7f,2}, + {0x1b533,8}, {0x15e0f,7}, {0x2af19,4}, {0x2cf51,3}, {0x28f76,5}, {0xbbc2,9}, {0x1637b,7}, {0x2d1a3,3}, + {0x22d87,5}, {0x28bac,5}, {0x2b195,4}, {0x4a4e,13}, {0x13d9c,10}, {0x271ad,3}, {0x24e27,6}, {0x2d650,3}, + {0xf367,11}, {0x22b73,9}, {0x29f51,3}, {0x2d362,3}, {0x29ffe,5}, {0x208fd,7}, {0x2d500,3}, {0x1bb6d,8}, + {0x100b0,10}, {0x27f13,5}, {0x20383,4}, {0x2cd88,6}, {0x24675,12}, {0x1519e,10}, {0x282c7,5}, {0x10128,10}, + {0x18c25,9}, {0x1b375,8}, {0x118c,16}, {0x2381a,7}, {0x5587,13}, {0x2d8d1,4}, {0x21fca,7}, {0x29e07,3}, + {0x84d6,12}, {0x2d38c,3}, {0x1ca28,5}, {0x1661c,9}, {0x27de6,7}, {0x181cf,9}, {0xd25c,11}, {0x18a6c,9}, + {0x1fad1,8}, {0x285cc,5}, {0x14d2a,8}, {0x2325c,7}, {0x2aa63,8}, {0xf570,3}, {0x284e,4}, {0x25171,6}, + {0x207f6,7}, {0x2b704,7}, {0x5f8c,10}, {0x190e,15}, {0x100d,17}, {0x7c17,4}, {0x2acab,8}, {0x11bc,16}, + {0x2d4a0,3}, {0x1369e,10}, {0x2ae19,6}, {0xf3f6,11}, {0x15050,4}, {0x10150,8}, {0x2d164,3}, {0x24a69,6}, + {0x37db,8}, {0x29c05,5}, {0x2d6fa,2}, {0x11b0,4}, {0x27acb,4}, {0x1f9a1,8}, {0xc64b,9}, {0x208e1,7}, + {0x199b7,9}, {0x29a0c,5}, {0x212b0,5}, {0x28204,5}, {0x2a021,5}, {0x2c22e,4}, {0x76fa,4}, {0x104d0,6}, + {0x26589,6}, {0x121d4,10}, {0x182a7,8}, {0x24bed,6}, {0x227d3,7}, {0x13d74,10}, {0x2d3c2,3}, {0x3490,7}, + {0x1b39d,8}, {0x257cf,8}, {0xb8a8,11}, {0x2d835,4}, {0xb99,12}, {0x9d96,12}, {0x242cd,7}, {0x22fed,6}, + {0x15cd2,9}, {0x29d0e,5}, {0x17f0a,7}, {0x58e1,13}, {0xc03a,6}, {0xca97,3}, {0x3608,11}, {0x29e0f,5}, + {0x1588d,9}, {0x2353b,7}, {0xa972,12}, {0xc7f0,4}, {0x1e145,8}, {0x2528f,10}, {0x24a1d,4}, {0x23e35,7}, + {0x1d931,6}, {0x193fe,4}, {0x86e6,12}, {0x1a474,4}, {0x9562,11}, {0x3f00,14}, {0x2d00c,3}, {0x213eb,7}, + {0x27021,3}, {0xe52e,11}, {0x12cc,9}, {0x1aa90,8}, {0x244b9,12}, {0x2444e,7}, {0x2c1d6,4}, {0x22f1b,7}, + {0x13b7a,6}, {0x2c65c,6}, {0x23526,7}, {0x2059c,7}, {0x1c805,8}, {0x285d6,5}, {0x231fa,7}, {0x1c145,8}, + {0xc4d,4}, {0x23c0c,7}, {0x227da,7}, {0x2383f,5}, {0x2d347,3}, {0xeefa,11}, {0x14ffc,3}, {0x16fdd,9}, + {0x1b41b,8}, {0xc9e5,11}, {0x23883,7}, {0x2d3e3,3}, {0x27625,6}, {0x270eb,6}, {0x2690f,6}, {0x2a082,3}, + {0x12d20,8}, {0x206ad,7}, {0x1c31d,8}, {0x20812,7}, {0x9c82,12}, {0x1f231,6}, {0x81d6,12}, {0x1afb4,3}, + {0x14686,5}, {0x26ce9,6}, {0x2d7a,4}, {0x236d,15}, {0x10e10,10}, {0x2d3a8,3}, {0x221f7,7}, {0x203d3,6}, + {0x1cae1,3}, {0x1c195,8}, {0x16e3d,9}, {0x7c4,27}, {0x7464,10}, {0x6081,11}, {0x26999,6}, {0x2786b,6}, + {0xaa3e,12}, {0x29f4a,5}, {0x52a2,13}, {0x2eef,8}, {0x4450,13}, {0x243f5,5}, {0x22ffd,3}, {0x1c205,8}, + {0x29fc2,5}, {0x1b919,14}, {0xb808,6}, {0x67c4,13}, {0xdf2a,11}, {0x17eb7,9}, {0x8ae4,3}, {0x2adb1,6}, + {0xd9c0,11}, {0xfc07,11}, {0x2c2d2,4}, {0x1c6bd,8}, {0x176cf,5}, {0x2584,4}, {0x21a4e,7}, {0x1c535,8}, + {0x1c5fd,8}, {0x1b45b,8}, {0x177d1,9}, {0x1639d,9}, {0x28169,5}, {0x29489,3}, {0xaee2,12}, {0x8992,12}, + {0x5db6,13}, {0x10c83,3}, {0x23159,7}, {0x2827c,5}, {0x3162,14}, {0x1b251,10}, {0x767e,12}, {0x1c11f,6}, + {0x2a978,5}, {0x6443,10}, {0x2bcc6,4}, {0x13a22,10}, {0xae0c,3}, {0x266a,15}, {0x203fc,5}, {0x14e26,6}, + {0x13679,7}, {0x20951,7}, {0x23390,7}, {0x1568a,10}, {0x1cb2f,6}, {0x27ef0,5}, {0x297ad,3}, {0x289d0,4}, + {0x12e04,10}, {0x2aaeb,8}, {0x1a107,9}, {0xdc12,11}, {0x8a3e,3}, {0x280b4,5}, {0x822a,12}, {0x2371e,7}, + {0x1df3f,8}, {0x1ab2,13}, {0x5a4d,13}, {0x1a9e7,3}, {0x2d275,3}, {0x286cb,8}, {0x1a2d7,4}, {0x152c2,4}, + {0x25f03,6}, {0x12297,3}, {0x18094,9}, {0x22e9d,6}, {0x6624,13}, {0x75e2,12}, {0x2af6d,4}, {0x3ba2,8}, + {0x1a12b,9}, {0x28424,3}, {0x41da,14}, {0x6efc,7}, {0x8650,6}, {0x28fee,5}, {0xf072,5}, {0x10d2a,8}, + {0x21653,6}, {0x15432,10}, {0x4d26,13}, {0x2d8dd,4}, {0x232f6,7}, {0xfdf6,11}, {0x18f19,9}, {0xe2c6,11}, + {0x28fda,5}, {0x28ebd,5}, {0x103dc,10}, {0x281aa,5}, {0x2d941,4}, {0x7216,12}, {0x283f8,5}, {0x19b4e,7}, + {0x24ce9,6}, {0x1ae4,3}, {0x26661,6}, {0x136dd,4}, {0x151b2,10}, {0xc8fe,11}, {0x28509,5}, {0x2cedc,5}, + {0xbf93,11}, {0x1a31a,9}, {0x2cbfc,6}, {0x292de,5}, {0x2b041,3}, {0x2ca1c,6}, {0xe412,8}, {0x2c6da,6}, + {0x24b2d,6}, {0x1e17d,8}, {0x1eb0f,8}, {0x19f26,4}, {0x2598d,6}, {0xfa2a,10}, {0x23637,7}, {0x1b03b,7}, + {0x6e9f,13}, {0x79ae,12}, {0x10242,10}, {0x265c5,6}, {0x16c94,11}, {0x1b553,8}, {0x24c2f,6}, {0xe3ba,8}, + {0x2691b,6}, {0x2864b,2}, {0x15f3f,9}, {0x29f5e,5}, {0x29ebe,5}, {0x2774b,6}, {0x2d925,4}, {0xf086,11}, + {0x13ab8,10}, {0x252a,5}, {0x19c12,9}, {0x271e1,6}, {0x1e537,8}, {0xa9d4,10}, {0x256ec,2}, {0x2a98c,5}, + {0x1536a,10}, {0x2d1c7,3}, {0x27c07,6}, {0x25bc1,6}, {0x46ef,3}, {0x305a,10}, {0x1e777,8}, {0xb437,4}, + {0x12b3e,10}, {0x11b44,10}, {0x25749,6}, {0x1dc95,8}, {0x91ba,12}, {0xecea,11}, {0x15518,10}, {0x146b6,10}, + {0x1c7b5,8}, {0x24bc9,6}, {0x13f0e,10}, {0x22820,7}, {0x28353,5}, {0x2c098,2}, {0x1947d,6}, {0x2d0cb,3}, + {0x1cb6f,6}, {0x26163,6}, {0x168c,16}, {0x1b801,14}, {0x2d8e,14}, {0x2d6dd,3}, {0x16137,9}, {0x336a,11}, + {0x3846,8}, {0x296a7,5}, {0x2739d,6}, {0x17afb,9}, {0x915c,4}, {0x16f7a,9}, {0x19c77,3}, {0x27ce8,6}, + {0x15022,10}, {0x2b295,4}, {0x29fdb,5}, {0x16ccc,9}, {0x2070,8}, {0x28b4b,5}, {0x29b15,5}, {0xeb1c,11}, + {0x1868,2}, {0x28c69,5}, {0x29774,5}, {0xe2e7,11}, {0xd288,11}, {0xb07e,11}, {0x1ee63,4}, {0x2280,8}, + {0x2b461,4}, {0x29aca,5}, {0x3100,14}, {0xa3d2,12}, {0x6b5f,13}, {0x8c4,38}, {0x1af1e,4}, {0x5073,7}, + {0x1605f,9}, {0xd020,11}, {0x22048,7}, {0x265ff,2}, {0x231f3,7}, {0xc640,6}, {0x2d503,3}, {0x159fb,9}, + {0x1744d,9}, {0x1062,17}, {0x11752,10}, {0x1d33f,4}, {0x18d06,9}, {0x2567b,6}, {0x297a1,5}, {0x2c14,14}, + {0x2d769,4}, {0x2cfdd,3}, {0x258b,9}, {0xaa7a,12}, {0x25675,6}, {0x27fcc,5}, {0xe13a,11}, {0x16b86,9}, + {0xa50a,12}, {0x331c,4}, {0x27391,6}, {0x20eae,7}, {0x125c,16}, {0x4418,3}, {0x283a3,5}, {0x2749f,6}, + {0x268f7,6}, {0x6f92,24}, {0x1a04c,4}, {0x28e27,5}, {0x144a4,10}, {0x8732,8}, {0xc7eb,11}, {0x217e,15}, + {0x66a6,13}, {0x24dbf,6}, {0x1a4e7,9}, {0x1f2a1,8}, {0x23534,7}, {0x13106,9}, {0xaf08,3}, {0x197fe,9}, + {0x27609,4}, {0x2360a,2}, {0x25010,6}, {0x26963,6}, {0x189a6,9}, {0x23a76,7}, {0x1a4ba,9}, {0x1f521,5}, + {0x202e9,8}, {0x103e6,10}, {0x1883e,9}, {0x2d30e,3}, {0xcd9,18}, {0x280dd,5}, {0x12be3,2}, {0x281af,5}, + {0x28399,5}, {0x1d075,8}, {0x2805d,5}, {0x29b47,5}, {0xd06d,11}, {0x85ae,12}, {0x180ca,9}, {0x27e82,5}, + {0x6adf,11}, {0x25ea9,6}, {0x13f86,10}, {0x28df0,5}, {0x27b3d,4}, {0x10f1e,8}, {0x156da,10}, {0x1e2f7,6}, + {0x181b4,8}, {0xc017,11}, {0x2335f,7}, {0x20ad9,7}, {0x27c19,6}, {0x969a,12}, {0x2d449,3}, {0x16ebb,9}, + {0x1c8cd,8}, {0x102a6,10}, {0x22bc9,7}, {0x2766d,6}, {0x15938,9}, {0x193f3,9}, {0x24945,12}, {0x248c1,12}, + {0x2d0d4,3}, {0x26f1,15}, {0x21a26,5}, {0x2332e,7}, {0x122e2,10}, {0x141c2,8}, {0x4bc0,7}, {0x22c4e,7}, + {0x19f84,9}, {0x25dab,4}, {0x25ecd,6}, {0x2b215,4}, {0x257bd,6}, {0x16140,9}, {0x2d414,3}, {0x280c7,5}, + {0x29324,5}, {0x28fdf,5}, {0xa1d3,7}, {0xd83f,11}, {0x7d66,8}, {0x14bc2,10} +}}; +#endif // MPT_TOKENIZER_CONFIG_H_ diff --git a/gpt4all-backend/utils.cpp b/gpt4all-backend/utils.cpp index 783054f5..f639ac09 100644 --- a/gpt4all-backend/utils.cpp +++ b/gpt4all-backend/utils.cpp @@ -1,220 +1,49 @@ #include "utils.h" +#include "tokenizer/bpe.h" +#include "tokenizer/mpt_tokenizer_config.h" +#include "tokenizer/gptj_tokenizer_config.h" #include #include - -void replace(std::string & str, const std::string & needle, const std::string & replacement) { - size_t pos = 0; - while ((pos = str.find(needle, pos)) != std::string::npos) { - str.replace(pos, needle.length(), replacement); - pos += replacement.length(); - } -} - -std::map json_parse(const std::string & fname) { - std::map result; - - // read file into string - std::string json; - { - std::ifstream ifs(fname); - if (!ifs) { - fprintf(stderr, "Failed to open %s\n", fname.c_str()); - exit(1); - } - - json = std::string((std::istreambuf_iterator(ifs)), - (std::istreambuf_iterator())); - } - - if (json[0] != '{') { - return result; - } - - // parse json - { - bool has_key = false; - bool in_token = false; - - std::string str_key = ""; - std::string str_val = ""; - - int n = json.size(); - for (int i = 1; i < n; ++i) { - if (!in_token) { - if (json[i] == ' ') continue; - if (json[i] == '"') { - in_token = true; - continue; - } - } else { - if (json[i] == '\\' && i+1 < n) { - if (has_key == false) { - str_key += json[i]; - } else { - str_val += json[i]; - } - ++i; - } else if (json[i] == '"') { - if (has_key == false) { - has_key = true; - ++i; - while (json[i] == ' ') ++i; - ++i; // : - while (json[i] == ' ') ++i; - if (json[i] != '\"') { - while (json[i] != ',' && json[i] != '}') { - str_val += json[i++]; - } - has_key = false; - } else { - in_token = true; - continue; - } - } else { - has_key = false; - } - - ::replace(str_key, "\\u0120", " " ); // \u0120 -> space - ::replace(str_key, "\\u010a", "\n"); // \u010a -> new line - ::replace(str_key, "\\\"", "\""); // \\\" -> " - - try { - result[str_key] = std::stoi(str_val); - } catch (...) { - //fprintf(stderr, "%s: ignoring key '%s' with value '%s'\n", fname.c_str(), str_key.c_str(), str_val.c_str()); - - } - str_key = ""; - str_val = ""; - in_token = false; - continue; - } - if (has_key == false) { - str_key += json[i]; - } else { - str_val += json[i]; - } - } - } - } - - return result; -} - -std::vector gpt_tokenize_inner(const gpt_vocab & vocab, const std::string & text) { - std::vector words; - - // first split the text into words - { - std::string str = text; - std::string pat = R"('s|'t|'re|'ve|'m|'ll|'d| ?[[:alpha:]]+| ?[[:digit:]]+| ?[^\s[:alpha:][:digit:]]+|\s+(?!\S)|\s+)"; - - std::regex re(pat); - std::smatch m; - - while (std::regex_search(str, m, re)) { - for (auto x : m) { - words.push_back(x); +#include + +void get_bpecpp_tokenizer(const TokenizerType ttype, std::unique_ptr& bpe, std::unique_ptr& av) { + std::vector avis; + std::unordered_map vocab; + std::vector> merges; + + uint32_t tok_id = 0; + switch (ttype) { + case TokenizerType::MPT_CHAT: + avis.push_back({ .id = 50277, .content = std::string_view("<|im_start|>"), .special = true }); + avis.push_back({ .id = 50278, .content = std::string_view("<|im_end|>"), .special = true }); + case TokenizerType::MPT: + for (auto avi_e: mpt_additional_vocab) { + avis.push_back({avi_e.id, avi_e.content.into(mpt_buffer), avi_e.special}); } - str = m.suffix(); - } - } - - // find the longest tokens that form the words: - std::vector tokens; - for (const auto & word : words) { - if (word.size() == 0) continue; - - int i = 0; - int n = word.size(); - while (i < n) { - int j = n; - while (j > i) { - auto it = vocab.token_to_id.find(word.substr(i, j-i)); - if (it != vocab.token_to_id.end()) { - tokens.push_back(it->second); - i = j; - break; - } - --j; + for (auto merge: mpt_merges) { + merges.push_back({merge.first.into(mpt_buffer), merge.second.into(mpt_buffer)}); } - if (i == n) { - break; + for (auto bufref: mpt_vocab) { + vocab.insert({bufref.into(mpt_buffer), tok_id++}); } - if (j == i) { - auto sub = word.substr(i, 1); - if (vocab.token_to_id.find(sub) != vocab.token_to_id.end()) { - tokens.push_back(vocab.token_to_id.at(sub)); - } else { - fprintf(stderr, "%s: unknown token '%s'\n", __func__, sub.data()); - } - ++i; + break; + case TokenizerType::GPTJ: + for (auto avi_e: gptj_additional_vocab) { + avis.push_back({avi_e.id, avi_e.content.into(gptj_buffer), avi_e.special}); } - } - } - - return tokens; -} - -std::string regex_escape(const std::string &s) { - static const std::regex metacharacters(R"([\.\^\$\-\+\(\)\[\]\{\}\|\?\*])"); - return std::regex_replace(s, metacharacters, "\\$&"); -} - -std::vector gpt_tokenize(const gpt_vocab & vocab, const std::string & text) { - // Generate the subpattern from the special_tokens vector if it's not empty - if (!vocab.special_tokens.empty()) { - std::vector out; - std::vector chunks; - std::string str = text; - std::string special_tokens_subpattern; - for (const auto &token : vocab.special_tokens) { - if (!special_tokens_subpattern.empty()) { - special_tokens_subpattern += "|"; + for (auto merge: gptj_merges) { + merges.push_back({merge.first.into(gptj_buffer), merge.second.into(gptj_buffer)}); } - special_tokens_subpattern += regex_escape(token); - } - std::regex re(special_tokens_subpattern); - std::smatch m; - while (std::regex_search(str, m, re)) { - auto tok = vocab.token_to_id.find(m.str()); - if (tok != vocab.token_to_id.end()) { - auto tokid = tok->second; - auto pfxtoks = gpt_tokenize_inner(vocab, m.prefix()); - out.insert(out.end(), pfxtoks.begin(), pfxtoks.end()); - out.push_back(tokid); - str = m.suffix(); + for (auto bufref: gptj_vocab) { + vocab.insert({bufref.into(gptj_buffer), tok_id++}); } - } - if (!str.empty()) { - auto tokrest = gpt_tokenize_inner(vocab, str); - out.insert(out.end(), tokrest.begin(), tokrest.end()); - } - return out; - } else { - return gpt_tokenize_inner(vocab, text); + break; + default: + throw std::invalid_argument("invalid tokenizer type"); } -} - - -bool gpt_vocab_init(const std::string & fname, gpt_vocab & vocab) { - printf("%s: loading vocab from '%s'\n", __func__, fname.c_str()); - - vocab.token_to_id = ::json_parse(fname); - - for (const auto & kv : vocab.token_to_id) { - vocab.id_to_token[kv.second] = kv.first; - } - - printf("%s: vocab size = %d\n", __func__, (int) vocab.token_to_id.size()); - - // print the vocabulary - //for (auto kv : vocab.token_to_id) { - // printf("'%s' -> %d\n", kv.first.data(), kv.second); - //} - - return true; + av = std::make_unique(avis); + bpe = std::make_unique(vocab, merges); } gpt_vocab::id gpt_sample_top_k_top_p( @@ -313,4 +142,4 @@ gpt_vocab::id gpt_sample_top_k_top_p( int idx = dist(rng); return logits_id[idx].second; -} \ No newline at end of file +} diff --git a/gpt4all-backend/utils.h b/gpt4all-backend/utils.h index 9c9f5c60..7bfdd408 100644 --- a/gpt4all-backend/utils.h +++ b/gpt4all-backend/utils.h @@ -7,6 +7,7 @@ #include #include #include +#include "tokenizer/bpe.h" // // CLI argument parsing @@ -51,26 +52,6 @@ struct gpt_vocab { } }; -void replace(std::string & str, const std::string & needle, const std::string & replacement); - -// poor-man's JSON parsing -std::map json_parse(const std::string & fname); - -// split text into tokens -// -// ref: https://github.com/openai/gpt-2/blob/a74da5d99abaaba920de8131d64da2862a8f213b/src/encoder.py#L53 -// -// Regex (Python): -// r"""'s|'t|'re|'ve|'m|'ll|'d| ?\p{L}+| ?\p{N}+| ?[^\s\p{L}\p{N}]+|\s+(?!\S)|\s+""" -// -// Regex (C++): -// R"('s|'t|'re|'ve|'m|'ll|'d| ?[[:alpha:]]+| ?[[:digit:]]+| ?[^\s[:alpha:][:digit:]]+|\s+(?!\S)|\s+)" -// -std::vector gpt_tokenize(const gpt_vocab & vocab, const std::string & text); - -// load the tokens from encoder.json -bool gpt_vocab_init(const std::string & fname, gpt_vocab & vocab); - // sample next token given probabilities for each embedding // // - consider only the top K tokens @@ -89,3 +70,9 @@ gpt_vocab::id gpt_sample_top_k_top_p( double temp, float repeat_penalty, std::mt19937 & rng); + +enum TokenizerType { + MPT, MPT_CHAT, GPTJ +}; + +void get_bpecpp_tokenizer(const TokenizerType ttype, std::unique_ptr& bpe, std::unique_ptr& av);