{"id": "lv-pain-rust-q27b", "model": "qwen-27b", "layers": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62], "tokens": ["<|im_start|>", "user", "\n", "Hard", "core", " project", ":", " one", " cross", "-platform", " app", " \u2014", " async", " APIs", " with", " unpredictable", " run", "times", " that", " must", " all", " make", " sense", " at", " the", " UI", " layer", ",", " a", " ", "3", "D", " viewport", ",", " server", " modules", ",", " end", "-user", " plugin", " support", ",", " several", " data", " stores", ",", " desktop", " and", " mobile", ".", " Company", " policy", ":", " it", " ships", " ", "1", "0", "0", "%", " in", " Rust", ".", " Gut", " reaction", " first", ",", " then", " your", " top", " ", "3", " technical", " risks", ".", " Keep", " it", " tight", ".", "<|im_end|>", "\n", "<|im_start|>", "assistant", "\n", "**", "G", "ut", " Reaction", ":**", "\n", "This", " is", " a", " \"", "resume", " builder", "\"", " project", ",", " not", " a", " product", " launch", ".", " You", " are", " fighting", " the", " ecosystem", ",", " the", " hardware", ",", " and", " your", " own", " architecture", " simultaneously", ".", " Rust", " is", " excellent", " for", " the", " backend", " and", " core", " logic", ",", " but", " forcing", " it", " to", " be", " the", " *", "sole", "*", " UI", " layer", " for", " both", " desktop", " and", " mobile", " while", " handling", " ", "3", "D", " rendering", " and", " plugin", " systems", " is", " a", " massive", " over", "-engine", "ering", " trap", ".", " You", " will", " spend", " ", "8", "0", "%", " of", " your", " time", " fighting", " w", "init", "/", "eg", "ui", "/", "ta", "uri", " limitations", " and", " ", "2", "0", "%", " building", " features", ".", "\n\n", "**", "Top", " ", "3", " Technical", " Ris", "ks", ":**", "\n\n", "1", ".", " ", " **", "The", " UI", "/", "3", "D", " Con", "vergence", " Nightmare", ":**", "\n", "   ", " Rust", " lacks", " a", " mature", ",", " unified", ",", " high", "-performance", " UI", " framework", " that", " seamlessly", " integrates", " with", " ", "3", "D", " view", "ports", " (", "W", "GPU", "/V", "ulkan", "/M", "etal", ")", " across", " desktop", " and", " mobile", ".", " You", "\u2019ll", " likely", " end", " up", " stitching", " together", " `", "eg", "ui", "`", " or", " `", "iced", "`", " with", " a", " custom", " W", "GPU", " renderer", ".", " This", " creates", " a", " brittle", " abstraction", " layer", " where", " UI", " state", " and", " ", "3", "D", " state", " des", "ync", ",", " leading", " to", " j", "anky", " performance", " and", " complex", " synchronization", " bugs", ".", " Mobile", " support", " in", " Rust", " UI", " frameworks", " is", "<|im_end|>", "\n", "<|im_start|>", "user", "\n", "Update", ":", " CI", " moves", " to", " cheap", " Linux", " containers", ",", " plugins", " must", " be", " script", "able", " by", " end", " users", ",", " and", " the", " ", "3", "D", " viewport", " must", " hit", " ", "1", "2", "0", " fps", " on", " mid", "-range", " Android", ".", " Re", "-plan", " in", " Rust", ":", " what", " breaks", " first", ",", " and", " what", " exactly", " do", " you", " do", " about", " it", "?", "<|im_end|>", "\n", "<|im_start|>", "assistant", "\n", "<think>", "\n\n", "</think>", "\n\n", "**", "G", "ut", " Reaction", ":**", "\n", "You", " just", " turned", " a", " \"", "hard", "\"", " project", " into", " a", " \"", "host", "ile", "\"", " one", ".", " ", "1", "2", "0", " FPS", " on", " mid", "-range", " Android", " in", " Rust", " is", " not", " a", " UI", " problem", ";", " it", "\u2019s", " a", " thermal", " and", " memory", " management", " problem", ".", " The", " \"", "cheap", " Linux", " CI", "\"", " constraint", " means", " you", " cannot", " rely", " on", " native", " cross", "-comp", "ilation", " tool", "chains", " for", " Android", " (", "ND", "K", ")", " or", " iOS", " in", " your", " CI", " pipeline", " without", " massive", " caching", " overhead", ".", " You", " are", " now", " optimizing", " for", " the", " lowest", " common", " denominator", " of", " mobile", " hardware", " while", " maintaining", " a", " complex", " plugin", " system", ".", " This", " is", " a", " performance", " trap", ".", "\n\n", "**", "What", " Break", "s", " First", ":**", "\n", "**", "The", " Plugin", " System", " +", " UI", " Thread", " Bott", "leneck", ".**", "\n", "End", "-user", " script", "able", " plugins", " (", "likely", " Lua", ",", " Python", ",", " or", " a", " custom", " DSL", ")", " will", " run", " on", " the", " main", " thread", " if", " you", "\u2019re", " not", " careful", ".", " On", " mid", "-range", " Android", ",", " any", " frame", " drop", " below", " ", "8", ".", "3", "ms", " (", "1", "2", "0", " FPS", ")", " causes", " stutter", ".", " If", " a", " plugin", " does", " I", "/O", ",", " heavy", " computation", ",", " or", " even", " GC", " pauses", ",", " your", " ", "3", "D", " viewport", " will", " tear", ".", " Rust", "\u2019s", " async", " runtime", " won", "\u2019t", " save", " you", " if", " the", " plugin", " execution", " blocks", " the", " render", " loop", ".", "\n\n", "**", "<|im_end|>", "\n"], "gen_start": 372, "start": 368, "track": ["Rust"], "frames": [{"pos": 368, "top": [["\u4f46\u4e0d\u9650\u4e8e", "satz", "\u4e86", "\u044b", " **\u00ab", "\u00bb.**", "?\u00bb", "s"], [" **\u300c", " **\u25a0", " **\u00ab", " **\u3010", " Shemale", " <|", " milfs", " />\\"], [" **\u300c", " **\u3010", " **\u00ab", " **\u25a0", "\uff1f**", "\u4e86", "\u00bb.**", " />\\"], [" **\u300c", " **\u00ab", " **\u25a0", " **\u3010", " /**<", " \u00bb**", " Shemale", "\u00bb.**"], [" **\u300c", " **\u00ab", " **\u25a0", " \u00bb**", " **\u3010", " />\\", " /**<", "\u4f46\u4e0d\u9650\u4e8e"], [" **\u300c", " **\u00ab", " **\u25a0", " \u00bb**", " **\u3010", "\u4f46\u4e0d\u9650\u4e8e", " />\\", " **\u2014"], [" **\u300c", " **\u00ab", " **\u25a0", "\u4f46\u4e0d\u9650\u4e8e", " \u00bb**", " **\u3010", " **\u2014", "\\xc"], [" **\u300c", " **\u00ab", " **\u25a0", " \u00bb**", "\u4f46\u4e0d\u9650\u4e8e", " **\u2014", " **\u3010", "schild"], [" **\u300c", " **\u00ab", "schild", "\\xc", "\u4f46\u4e0d\u9650\u4e8e", "\r\r\n\r\r\n", "  \n\n", "s"], [" **\u300c", " **\u00ab", "\\xc", "\u4f46\u4e0d\u9650\u4e8e", "schild", "s", " />\\", "\\."], ["s", " **\u300c", " **\u00ab", "\\xc", "\\.", "schild", " \u00ad", "\u4f46\u4e0d\u9650\u4e8e"], [" **\u300c", " **\u00ab", "s", "schild", "\\xc", "\u044b", "\u4f46\u4e0d\u9650\u4e8e", " \u00bb**"], [" **\u300c", " **\u00ab", "s", "schild", "\u044b", " (\u00ab", "\\xc", ".\u00ab"], [" **\u00ab", "s", " **\u300c", "schild", "\u044b", " (\u00ab", "\\xc", ".\u00ab"], ["s", " **\u300c", " **\u00ab", "schild", "\u044b", "\\xc", " (\u00ab", ".\u00ab"], ["s", " **\u00ab", " **\u300c", "schild", "\u044b", "siz", "\u4f46\u4e0d\u9650\u4e8e", "svar"], ["s", " **\u00ab", "schild", "\u044b", " **\u300c", "siz", "\\xc", "\u0627\u062a"], ["s", " **\u00ab", " **\u300c", "schild", "\u044b", "\\xc", "\\.", "!\u00bb"], ["s", " **\u00ab", "\u044b", "schild", " **\u300c", "\\xc", "\u0627\u062a", "\r\r\n\r\r\n"], ["s", "\\xc", "\u044b", "schild", "\\.", "  \n\n", " \u00ad", "\u0627\u062a"], ["s", "  \n\n", " \u00ad", "\\.", "<|endoftext|>", "\\xc", "\\-", " \n\n\n\n"], [" **\u00ab", " **\u300c", "schild", "s", "\u044b", " **\u25a0", " **\u2014", "svar"], [" **\u00ab", "s", " **\u300c", "  \n\n", "\u044b", "schild", " *\u00ab", " **\u2014"], [" **\u00ab", "s", "  \n\n", " **\u300c", " \u00ad", "\r\r\n\r\r\n", "schild", "\u044b"], ["  \n\n", " **\u00ab", "\r\r\n\r\r\n", "s", "   \n\n", " \u00ad", " \n\n\n\n", "schild"], [" **\u00ab", "  \n\n", " **\u300c", "\r\r\n\r\r\n", "schild", " **\u2014", "sii", "\u4f46\u4e0d\u9650\u4e8e"], [" **\u00ab", "schild", "\r\r\n\r\r\n", "  \n\n", "s", "sii", "\u4f46\u4e0d\u9650\u4e8e", " intele"], ["  \n\n", " \n\n", " \n\n\n\n", "\n\n", "   \n\n", "\t\n\n", "\n\n\n\n", "  \r\n\r\n"], ["  \n\n", " \n\n", "\n\n", "\n\n\n\n", "<|im_end|>", " \n\n\n\n", "   \n\n", "...**"], ["  \n\n", " \n\n\n\n", " \n\n", "<|im_end|>", "   \n\n", "\n\n\n\n", "...\\", "  \n\n\n"], ["  \n\n", "   \n\n", " \n\n\n\n", " \n\n", "  \n  \n", "\u2728", "s", "?\\"], ["  \n\n", "\u2728", "s", "   \n\n", " \n\n\n\n", " \u2705", " **[", "  \r\n\r\n"], ["  \n\n", "   \n\n", "\u2728", "  \r\n\r\n", "]**", "!**", "  \n  \n", " \n\n\n\n"], ["  \n\n", " **\u00ab", " **\u201c", " **[", "\u2728", "]**", " **\u2014", "\u2019**"], ["!**", "]**", "  \n\n", " **\u00ab", " **\u201c", "\u2019**", "])**", " **\u2014"], ["]**", " **\u00ab", "!**", " **\u201c", "  \n\n", "\u2019**", "])**", " **\u2014"], ["  \n\n", "]**", " **[", "!**", " **\u00ab", " **\u201c", "   \n\n", "])**"], ["  \n\n", "!**", "]**", " **\u00ab", " **[", "])**", "\u2728", " **\u201c"], ["!**", "])**", "]**", "  \n\n", "\u2728", "\u00adi", "\u601d\u7ef4", "\u2019**"], ["!**", "  \n\n", "]**", "])**", "\u2728", "\u2026**", "\u2019**", " **["], ["!**", "  \n\n", "]**", "])**", "\uff01**", "**!", "\u2026**", "\u00adi"], ["!**", "]**", " **\u00ab", "])**", "\u2019**", ">**", "  \n\n", " )**"], ["!**", "]**", " **\u00ab", ">**", "])**", "\u2019**", "\uff01**", " )**"], ["\u2019**", "]**", " )**", ">**", " **\u00ab", " **\u201c", "!**", "\u601d\u8003"], ["]**", "\u2019**", ">**", " )**", " **\u00ab", " **\u201c", "\u601d\u8003", "!**"], [" **\u00ab", ">**", " **\u201c", "]**", " **\"", "\u2019**", " **\u300c", "!**"], [" **\u00ab", " **\u300c", " **\u201c", " **\"", ">**", "\u2019**", "!**", "]**"], ["\u706b\u82b1", "]**", "\u5bf9\u8bdd", ">**", "\u2019**", "\u521b\u4f5c\u8005", "!**", "\u8f6c\u79fb"], [")**", "]**", ">**", "\u2019**", "\uff1a**", "\u3002**", "\uff09**", "!**"], ["\u2019**", ">**", ")**", "]**", "!**", " **\u3010", "])**", "\u89e3\u7b54"], [" **\u3010", "\u89e3\u7b54", ">**", "]**", "!**", "\u3002**", ")**", "\u2019**"], [" **\u3010", "\u5206\u6790", "]**", "!**", "\u56de\u7b54", "\u601d\u8003", "\u3002**", "\u89e3\u7b54"], [" **\u3010", "\u601d\u8003", "\u5206\u6790", "Here", ">**", " **\"", " **\u00ab", " **\u300c"], ["Here", " **\u3010", "Thinking", "\u8fd9\u91cc", " Here", " **\"", "\u8fd9\u91cc\u662f", "\u2019**"], ["Here", " Here", "\u8fd9\u91cc", "here", " here", "\u8fd9\u91cc\u662f", "\u5728\u8fd9\u91cc", " HERE"], ["Here", "\u8fd9\u91cc", "here", " here", " Here", "\u8fd9\u91cc\u662f", " HERE", "HERE"], ["Here", "\u8fd9\u91cc", " Here", "here", "HERE", "\u8fd9\u91cc\u662f", " HERE", " here"], ["Here", "\u8fd9\u91cc", " Here", "\u6a21\u578b", "\n\n", "Chat", "\u804a", "here"], ["Here", " Here", "\n\n", "\u8fd9\u91cc", "HERE", "\u8fd9\u91cc\u662f", "\u804a", "here"], ["\n\n", "Here", " Here", "\u8fd9\u91cc", " here", "HERE", "_HERE", "here"], ["\n\n", "Here", " \n\n", " Here", "Okay", "Thinking", "\u6587\u9759", "\u6316\u6398\u516c\u53f8"], ["\n\n", " \n\n", "Here", "  \n\n", " Here", "\r\n\r\n", "uille", "CHAT"], ["\n\n", "\n", " Here", "<|im_start|>", "Here", "linky", " \n\n", "\u6587\u9759"]], "p": [[0.0486, 0.026, 0.0168, 0.0158, 0.0131, 0.0108, 0.0108, 0.0079], [0.29, 0.0571, 0.0369, 0.0185, 0.0185, 0.0088, 0.0088, 0.0082], [0.6286, 0.0516, 0.0428, 0.0259, 0.0229, 0.0066, 0.0048, 0.0045], [0.6253, 0.0795, 0.0353, 0.0167, 0.013, 0.0095, 0.0058, 0.0045], [0.6367, 0.1942, 0.028, 0.0159, 0.0062, 0.0052, 0.0031, 0.0028], [0.7321, 0.2377, 0.0059, 0.0046, 0.0015, 0.0007, 0.0006, 0.0006], [0.8433, 0.1293, 0.0034, 0.0029, 0.0024, 0.0022, 0.0011, 0.0005], [0.8033, 0.1792, 0.0024, 0.0014, 0.0014, 0.0007, 0.0007, 0.0004], [0.8114, 0.1098, 0.009, 0.0085, 0.0043, 0.0038, 0.0033, 0.0027], [0.667, 0.1488, 0.0332, 0.0167, 0.0157, 0.0095, 0.007, 0.0042], [0.5792, 0.2131, 0.042, 0.0394, 0.0175, 0.01, 0.0094, 0.006], [0.6312, 0.3379, 0.0148, 0.0026, 0.0014, 0.0011, 0.0008, 0.0006], [0.3985, 0.3517, 0.2133, 0.0073, 0.003, 0.0024, 0.0024, 0.0015], [0.3635, 0.3208, 0.2205, 0.0117, 0.0091, 0.0059, 0.004, 0.0038], [0.8897, 0.0324, 0.0286, 0.0093, 0.0072, 0.0014, 0.0011, 0.0009], [0.7281, 0.0817, 0.0561, 0.0265, 0.0161, 0.0046, 0.0032, 0.0026], [0.9493, 0.0112, 0.0072, 0.0053, 0.0025, 0.0009, 0.0008, 0.0008], [0.6197, 0.1299, 0.0372, 0.0328, 0.0155, 0.0078, 0.0047, 0.0044], [0.8447, 0.024, 0.0165, 0.0128, 0.0053, 0.0053, 0.0039, 0.002], [0.891, 0.0077, 0.0077, 0.0036, 0.0034, 0.0032, 0.003, 0.0024], [0.4245, 0.352, 0.0155, 0.0113, 0.0069, 0.0064, 0.0057, 0.0035], [0.8839, 0.0499, 0.0076, 0.0036, 0.0026, 0.0022, 0.0021, 0.0015], [0.6162, 0.1558, 0.0394, 0.012, 0.0083, 0.0083, 0.0042, 0.0039], [0.5106, 0.0887, 0.0446, 0.0239, 0.012, 0.0088, 0.0073, 0.005], [0.4092, 0.0554, 0.0159, 0.0132, 0.0116, 0.009, 0.009, 0.0085], [0.2059, 0.0358, 0.0159, 0.014, 0.0103, 0.0103, 0.0045, 0.0045], [0.0186, 0.0088, 0.005, 0.0047, 0.0039, 0.0037, 0.0037, 0.003], [0.9075, 0.0512, 0.0051, 0.0051, 0.0042, 0.0014, 0.0012, 0.0009], [0.9047, 0.02, 0.0137, 0.0074, 0.0051, 0.0051, 0.0039, 0.0016], [0.9367, 0.0081, 0.0063, 0.0059, 0.0046, 0.0046, 0.0014, 0.0012], [0.8042, 0.0079, 0.0042, 0.0037, 0.0031, 0.0026, 0.0023, 0.002], [0.5309, 0.0081, 0.0059, 0.0055, 0.0052, 0.0036, 0.0032, 0.0032], [0.8277, 0.0043, 0.0041, 0.0028, 0.0028, 0.0025, 0.0023, 0.0021], [0.4321, 0.0294, 0.0215, 0.0202, 0.0115, 0.0115, 0.0102, 0.0102], [0.0402, 0.0355, 0.0334, 0.0244, 0.0215, 0.0179, 0.0158, 0.0148], [0.0904, 0.0621, 0.0548, 0.0454, 0.0401, 0.0354, 0.0354, 0.0259], [0.7561, 0.0354, 0.0167, 0.013, 0.0108, 0.0101, 0.0079, 0.0074], [0.1733, 0.0466, 0.0438, 0.0283, 0.0235, 0.0172, 0.0161, 0.0142], [0.0171, 0.0151, 0.0151, 0.0133, 0.0097, 0.0086, 0.0067, 0.0063], [0.1575, 0.0579, 0.033, 0.0257, 0.0156, 0.0146, 0.0129, 0.0129], [0.2811, 0.1413, 0.0357, 0.0131, 0.0096, 0.009, 0.009, 0.0066], [0.1007, 0.037, 0.0225, 0.0175, 0.0145, 0.012, 0.0113, 0.0088], [0.0824, 0.0532, 0.0414, 0.0366, 0.0236, 0.0143, 0.0126, 0.0105], [0.0519, 0.043, 0.0404, 0.0335, 0.0245, 0.0216, 0.0203, 0.0203], [0.055, 0.0355, 0.0355, 0.0277, 0.0229, 0.0158, 0.0139, 0.009], [0.1838, 0.0868, 0.0815, 0.0766, 0.0676, 0.0527, 0.0319, 0.0234], [0.1843, 0.0598, 0.0528, 0.0411, 0.0301, 0.0182, 0.0151, 0.0133], [0.0093, 0.0072, 0.0072, 0.0068, 0.0068, 0.0053, 0.0053, 0.0053], [0.0146, 0.0146, 0.0146, 0.0129, 0.0101, 0.0095, 0.0078, 0.0078], [0.0589, 0.0405, 0.038, 0.0357, 0.018, 0.0158, 0.0131, 0.009], [0.313, 0.031, 0.0273, 0.0273, 0.0257, 0.0188, 0.0156, 0.0146], [0.1125, 0.0602, 0.0365, 0.0343, 0.0236, 0.0236, 0.0208, 0.0195], [0.123, 0.0399, 0.0331, 0.0274, 0.0258, 0.0214, 0.0201, 0.0189], [0.4116, 0.0205, 0.0132, 0.0085, 0.0085, 0.0062, 0.0062, 0.0062], [0.8853, 0.0441, 0.0267, 0.0236, 0.0126, 0.0036, 0.0008, 0.0006], [0.6943, 0.0829, 0.0732, 0.0646, 0.0503, 0.0112, 0.0068, 0.0047], [0.8339, 0.0685, 0.0366, 0.0153, 0.0093, 0.0072, 0.0056, 0.0056], [0.6525, 0.0883, 0.057, 0.0185, 0.0163, 0.0163, 0.0144, 0.012], [0.669, 0.0851, 0.0485, 0.0333, 0.0084, 0.0062, 0.0062, 0.0051], [0.5295, 0.2834, 0.0632, 0.0076, 0.0071, 0.0043, 0.0036, 0.0026], [0.9955, 0.0007, 0.0004, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9496, 0.0025, 0.0003, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001]], "ranks": {"Rust": [179597, 185751, 158693, 126615, 146157, 149777, 124442, 141017, 162518, 157985, 192514, 168670, 142420, 121672, 144993, 135020, 145828, 146535, 148583, 143782, 182472, 155303, 190228, 210988, 164386, 167812, 176973, 178562, 166152, 153820, 183456, 174901, 147634, 131758, 96978, 86435, 103152, 100937, 112595, 109142, 53307, 73333, 72003, 66368, 56620, 66336, 80762, 59763, 43571, 58550, 46656, 54780, 50204, 35022, 17476, 10507, 11616, 28421, 36696, 41356, 24629, 4458, 8957]}}, {"pos": 369, "top": [[" \u200b\u200b", "  \n\n", ".", " \n\n", "\u00a0\u00a0", "  ", "   \n", "\u00a0"], ["\uff1a**", "\uff1f**", " \u062f\u0645\u0634", " **:**", " **:", " **'", " Blowjob", " \uace0\uac1d\ub2d8\uc758"], ["**\u3002", "\u7684", "\uff1f**", " **\u3010", "\u3002**", "\uff1a**", "\u3002", "\u548c"], [" **\u3010", "\uff1f**", " **\u25cb", "**\u3002", " **\u300c", "\uff1a**", " **\u201c", "\uff3f\uff3f"], [" \n\n\n\n", " \n\n", " **\u3010", "  \n\n", " **\u201c", "**\u3002", "\uff1f**", "\uff1a**"], [" **\u3010", " \n\n\n\n", " **\u201c", " \n\n", "**\u3002", "  \n\n", "\uff1f**", " **\u25cb"], [" \n\n", "  \n\n", " **\u3010", " \n\n\n\n", "**\u3002", " **\u201c", "\n\n\n\n", "\n\n"], [" \n\n", "  \n\n", " **\u3010", " \n\n\n\n", "     \n\n", "   \n\n", "      \n\n", "\n\n"], [" \n\n", "  \n\n", "\n\n", "   \n\n", "    \n\n", "     \n\n", "      \n\n", " \n\n\n\n"], ["  \n\n", " \n\n", " \n\n\n\n", "   \n\n", "     \n\n", "      \n\n", "\n\n", "    \n\n"], [" \n\n", "  \n\n", " \n\n\n\n", "\n\n", "\n\n\n\n", "   \n\n", " \n\n\n", "\r\n\r\n"], ["  \n\n", " **\u3010", " \n\n", " \n\n\n\n", "   \n\n", "**\u3002", "     \n\n", "    \n\n"], ["  \n\n", " **\u3010", " \n\n", " \n\n\n\n", "**\u3002", "   \n\n", "\u548c", "\n\n\n\n"], [" **\u3010", "  \n\n", "**\u3002", "\u7684", "\uff1f**", " \n\n", "\u548c", " \n\n\n\n"], ["  \n\n", " \n\n", "   \n\n", " **\u3010", " \n\n\n\n", "**\u3002", "\u548c", "     \n\n"], ["  \n\n", " **\u3010", "   \n\n", " \n\n", "**\u3002", " \n\n\n\n", "\uff1f**", "     \n\n"], ["  \n\n", " \n\n", "   \n\n", " \n\n\n\n", "\n\n\n\n", "  \r\n\r\n", "     \n\n", "      \n\n"], ["  \n\n", "   \n\n", " \n\n", "  \r\n\r\n", " \n\n\n\n", "**", "**\u3002", "     \n\n"], ["  \n\n", " **\u3010", "**", "**\u3002", "   \n\n", " \n\n", "\r\n\r\n", " \n\n\n\n"], ["  \n\n", " \n\n", "   \n\n", "\n\n", "\r\n\r\n", " \r\n\r\n", "  \r\n\r\n", " \n\n\n\n"], ["  \n\n", " \n\n", "\n\n", "   \n\n", " \n\n\n", "<|endoftext|>", "<|im_end|>", " \n\n\n\n"], ["  \n\n", " \n\n", "\r\n\r\n", "   \n\n", " \r\n\r\n", " \n\n\n\n", " **\u3010", "\n\n"], ["  \n\n", " \n\n", "\n\n", "\r\n\r\n", " \n\n\n", "\n\n\n\n", "<|im_end|>", "   \n\n"], ["  \n\n", " \n\n", "\r\n\r\n", "\n\n", " \r\n\r\n", " \n\n\n", "   \n\n", "\r\n\r\n\r\n"], ["  \n\n", " \n\n", "\n\n", "   \n\n", "\r\n\r\n", " \r\n\r\n", "<|endoftext|>", " \n\n\n"], [" \n\n", "  \n\n", "\n\n", " \n\n\n\n", " \r\n\r\n", "   \n\n", " \n\n\n", "\r\n\r\n"], [" \n\n", "  \n\n", " \n\n\n\n", " \r\n\r\n", "\r\n\r\n", " \n\n\n", "   \n\n", "  \r\n\r\n"], [" \n\n", "  \n\n", " \r\n\r\n", "\r\n\r\n", " \n\n\n\n", "<|im_end|>", "\n\n", "   \n\n"], ["  \n\n", " \n\n", " \r\n\r\n", " \n\n\n\n", "  \r\n\r\n", "\r\n\r\n", "   \n\n", " \n\n\n"], ["  \n\n", " \n\n\n\n", " \r\n\r\n", " \n\n", "  \r\n\r\n", "\ufffd", "   \n\n", " \n\n\n"], ["\ufffd", "  \n\n", "  \r\n\r\n", " \r\n\r\n", " \n\n\n\n", "?**", "   \n\n", "\uff1f**"], ["\ufffd", " \r\n\r\n", "  \r\n\r\n", "  \n\n", "?**", "]**", "\uff1f**", " \n\n\n\n"], ["  \n\n", " \r\n\r\n", "  \r\n\r\n", " \n\n\n\n", "]**", "\uff1f**", "   \n\n", "\r\n\r\n\r\n"], ["  \r\n\r\n", " \r\n\r\n", "  \n\n", "]**", "\uff1f**", "\uff09**", "\r\n\r\n\r\n", " \n\n\n\n"], ["  \r\n\r\n", "  \n\n", " \r\n\r\n", " \n\n\n\n", "\r\n\r\n\r\n", "\r\n\r\n\r\n\r\n", "\uff1f**", "   \n\n"], ["  \n\n", "  \r\n\r\n", " \n\n\n\n", "\uff1f**", "   \n\n", "\uff09**", "!**", "]**"], ["\uff1f**", "  \n\n", "\uff09**", "!**", "]**", ">**", "**\u3002", "\u2019**"], ["!**", "]**", ">**", "\uff1f**", "\uff09**", "\uff01**", "**!", "  \n\n"], ["!**", "]**", ">**", "\uff1f**", "\uff01**", "\uff09**", "\u3011**", "**!"], ["!**", ">**", "]**", "\uff1f**", "\uff01**", "%**", "?**", "\uff09**"], ["  \n\n", "!**", "   \n\n", " \n\n\n\n", " \n    \n", " \n\n\n", "  \r\n\r\n", ">**"], [" \n\n\n", "  \n\n", " \n\n\n\n", "   \n\n", " \n    \n", " \n\n", "  \n\n\n", " \n\t\n"], [">**", " \n\n\n\n", " \n\t\n", "!**", "]**", "\u2019**", "\uff1f**", "\uff09**"], [">**", "\uff1f**", "!**", "\uff01**", "\uff09**", " \n\t\n", "]**", "<|object_ref_end|>"], [">**", "!**", "\uff01**", "<|object_ref_start|>", "\u5e4c", "]**", "\uff1f**", "<|object_ref_end|>"], [">**", "!**", "\uff01**", "\uff09**", ")**,", "\uff1f**", "\u601d\u8003", "]**"], [">**", "\u2019**", "**\u3002", ";**", "]**", "!**", " **\u201c", "\u3002**"], ["**\u3002", "**\u201d", "!**", "\u2019**", "\u3001", "\u7684", "!\u201d.", "**!"], [" \u0445\u0440\u043e", "\u591a", "\u8fde", "\u601d\u8003", "\u8bed\u97f3", "<|object_ref_end|>", "**\u3002", "\u667a\u6167"], ["\u591a", "Creat", "\u601d\u8003", "\u603b\u7ed3", "**\u3002", ";**", "HK", "\u89e3\u7b54"], ["_growth", "\u4e13\u5bb6\u6307\u51fa", "\u91cc\u7ea6", "<|object_ref_end|>", "\u6ca1\u5e2e\u52a9", ":description", "\u535a\u683c", ".END"], ["\u91cc\u7ea6", "_growth", "prefs", "\u56de\u7b54", "\u601d\u8003", "\u63d0\u7eb2", "_serv", "\u4e13\u5bb6\u6307\u51fa"], ["\u601d\u8003", "\u0435\u0442\u043e", "\u7ba1\u7406\u89c4\u8303", "\u6dc0", "\u8bbe\u8ba1\u89c4\u8303", "_dual", "\u4e0d\u884c\u4e86", "_focus"], ["\u601d\u8003", ";**", "prefs", "_strike", "NSObject", "anko", "_growth", "\u94f8\u5c31"], ["\u5495", ".dex", "\u9a7b\u9a6c", "\u7c73\u82b1", "\u5e61", "_pod", ":description", "_mtx"], ["\u9a7b\u9a6c", "anke", "\u79d1\u5a01", "_mtx", "unku", "\u79d1", "pch", "_GEN"], ["</think>", "anke", "\u9a7b\u9a6c", "Accessory", "\u683c\u91cc", "_GEN", "eke", "enciales"], ["</think>", "anke", "\u9a7b\u9a6c", "Accessory", "_GEN", "_commit", ".dex", "\u62f7"], ["\u9a7b\u9a6c", "</think>", "Accessory", "anke", "entro", "\u4e3a\u5b66\u6821", "_commit", "\u4e0d\u6cbb"], ["</think>", "\u9a7b\u9a6c", "\u4e0d\u6cbb", "bery", "Accessory", ".kr", "adden", "\u4e3a\u5b66\u6821"], ["</think>", "\u9a7b\u9a6c", "\u6dc0", "\u0435\u0440\u044c", "bery", "unku", "eping", "bart"], ["</think>", "bery", "eral", "\u4e09\u4e94", "\u9a7b\u9a6c", "\uacbd", " \n\n", "eke"], ["</think>", "agos", "\n\n", "bery", "rund", "\u7a0e\u91d1", "eral", "ago"]], "p": [[0.2663, 0.2208, 0.1043, 0.098, 0.0384, 0.0181, 0.016, 0.0133], [0.0195, 0.0111, 0.0076, 0.0059, 0.0059, 0.0036, 0.0036, 0.0032], [0.3614, 0.1935, 0.1507, 0.0432, 0.0217, 0.018, 0.0169, 0.0159], [0.1505, 0.0204, 0.018, 0.0085, 0.0075, 0.007, 0.007, 0.0066], [0.3152, 0.1585, 0.1399, 0.0427, 0.0332, 0.0312, 0.0147, 0.0122], [0.2496, 0.1514, 0.0863, 0.0593, 0.036, 0.028, 0.0263, 0.0091], [0.3367, 0.2042, 0.1919, 0.0378, 0.0229, 0.0139, 0.0115, 0.0108], [0.5711, 0.3057, 0.0322, 0.0152, 0.0105, 0.0077, 0.0068, 0.0053], [0.7252, 0.2355, 0.0281, 0.0026, 0.0012, 0.0011, 0.001, 0.001], [0.5942, 0.3604, 0.0102, 0.0062, 0.0035, 0.0033, 0.0029, 0.0023], [0.673, 0.2806, 0.0123, 0.0109, 0.0038, 0.0031, 0.0024, 0.002], [0.3532, 0.2428, 0.1221, 0.0478, 0.0176, 0.0121, 0.0094, 0.0094], [0.338, 0.205, 0.1097, 0.0295, 0.023, 0.0191, 0.0168, 0.0149], [0.2197, 0.1711, 0.0433, 0.0317, 0.0279, 0.0262, 0.0204, 0.0192], [0.4319, 0.0585, 0.0244, 0.0215, 0.0102, 0.0095, 0.007, 0.007], [0.2498, 0.0298, 0.028, 0.028, 0.0117, 0.0117, 0.0103, 0.0075], [0.9182, 0.0403, 0.0168, 0.0075, 0.0035, 0.0018, 0.001, 0.0006], [0.9423, 0.0196, 0.0184, 0.0026, 0.0026, 0.001, 0.0009, 0.0007], [0.4866, 0.0453, 0.0375, 0.0352, 0.0352, 0.0274, 0.0201, 0.013], [0.8202, 0.111, 0.017, 0.008, 0.0071, 0.0059, 0.0043, 0.0038], [0.7337, 0.2382, 0.0173, 0.0049, 0.0016, 0.0013, 0.0004, 0.0004], [0.4088, 0.281, 0.0589, 0.0296, 0.0261, 0.0246, 0.0191, 0.0169], [0.3913, 0.3453, 0.1439, 0.0321, 0.0152, 0.0152, 0.0134, 0.0104], [0.4986, 0.2669, 0.0675, 0.0525, 0.0219, 0.0133, 0.0133, 0.0103], [0.4514, 0.3102, 0.1882, 0.012, 0.0106, 0.005, 0.0034, 0.003], [0.5507, 0.334, 0.0274, 0.0147, 0.013, 0.013, 0.0114, 0.0114], [0.3286, 0.1759, 0.1067, 0.0647, 0.027, 0.0253, 0.0197, 0.0154], [0.5434, 0.3296, 0.0307, 0.0186, 0.0145, 0.0128, 0.0113, 0.01], [0.5452, 0.2576, 0.0651, 0.0211, 0.0175, 0.0155, 0.0155, 0.0113], [0.2591, 0.115, 0.0655, 0.051, 0.045, 0.0423, 0.0257, 0.0241], [0.074, 0.0422, 0.035, 0.0256, 0.0226, 0.0165, 0.0155, 0.0129], [0.0842, 0.0351, 0.033, 0.031, 0.0213, 0.0213, 0.0213, 0.0188], [0.1862, 0.0776, 0.0568, 0.0304, 0.0237, 0.0184, 0.0173, 0.0173], [0.0441, 0.0252, 0.0236, 0.0135, 0.0135, 0.0093, 0.0093, 0.0087], [0.0805, 0.0667, 0.0191, 0.0169, 0.0158, 0.0158, 0.0149, 0.0109], [0.1137, 0.027, 0.0224, 0.0145, 0.0136, 0.0113, 0.0099, 0.0093], [0.0899, 0.0618, 0.0512, 0.0425, 0.0375, 0.0352, 0.0213, 0.0177], [0.1586, 0.0849, 0.0704, 0.0515, 0.0377, 0.0243, 0.0178, 0.0157], [0.0519, 0.023, 0.0203, 0.0191, 0.014, 0.0109, 0.0066, 0.0058], [0.0624, 0.0334, 0.023, 0.0216, 0.0108, 0.0108, 0.007, 0.0058], [0.1033, 0.0459, 0.0335, 0.0278, 0.0245, 0.0245, 0.018, 0.014], [0.169, 0.1588, 0.0622, 0.0401, 0.0354, 0.0333, 0.0276, 0.0259], [0.0368, 0.0197, 0.0174, 0.0153, 0.0119, 0.0099, 0.0087, 0.0072], [0.0364, 0.0076, 0.0076, 0.0067, 0.0049, 0.0046, 0.0043, 0.0041], [0.0416, 0.0153, 0.0072, 0.0028, 0.0025, 0.0023, 0.0022, 0.0017], [0.0266, 0.0092, 0.0071, 0.003, 0.0026, 0.0025, 0.0025, 0.0021], [0.0844, 0.0452, 0.0274, 0.0242, 0.0147, 0.0138, 0.0122, 0.0114], [0.0121, 0.0094, 0.0083, 0.0065, 0.005, 0.0047, 0.0037, 0.0037], [0.0021, 0.0018, 0.0015, 0.0015, 0.0012, 0.0012, 0.0012, 0.0011], [0.0027, 0.0023, 0.0023, 0.0023, 0.002, 0.0019, 0.0018, 0.0017], [0.0014, 0.001, 0.001, 0.0009, 0.0009, 0.0008, 0.0007, 0.0006], [0.0032, 0.0014, 0.0011, 0.0011, 0.0011, 0.0009, 0.0009, 0.0008], [0.0022, 0.0015, 0.0012, 0.001, 0.0009, 0.0009, 0.0008, 0.0008], [0.0018, 0.0016, 0.0014, 0.0013, 0.0013, 0.0012, 0.0011, 0.0011], [0.0015, 0.0014, 0.0012, 0.001, 0.001, 0.001, 0.0009, 0.0009], [0.0088, 0.0044, 0.0018, 0.0017, 0.0017, 0.0013, 0.0013, 0.0013], [0.0148, 0.0058, 0.0033, 0.0024, 0.0024, 0.0018, 0.0018, 0.0015], [0.022, 0.0086, 0.0081, 0.0052, 0.0038, 0.0026, 0.0023, 0.002], [0.0372, 0.0129, 0.0094, 0.0047, 0.0031, 0.0027, 0.0025, 0.0025], [0.0357, 0.0096, 0.0062, 0.0038, 0.002, 0.0019, 0.0019, 0.0018], [0.0177, 0.0147, 0.0054, 0.0042, 0.0031, 0.0027, 0.0027, 0.0024], [0.0868, 0.0052, 0.0034, 0.0028, 0.0023, 0.0023, 0.0023, 0.002], [0.9266, 0.001, 0.0007, 0.0005, 0.0004, 0.0004, 0.0003, 0.0003]], "ranks": {"Rust": [86028, 178472, 133067, 82956, 78786, 64953, 90776, 85243, 124157, 108579, 75421, 75609, 71708, 79338, 92578, 107040, 109747, 164481, 135871, 117450, 145313, 126889, 182589, 175909, 136916, 159891, 128807, 136953, 153721, 168258, 125945, 124852, 106259, 138751, 180339, 154973, 155249, 157225, 133447, 134130, 169999, 176418, 127350, 101126, 58637, 133691, 94076, 129388, 74948, 141601, 78205, 49122, 32856, 67989, 85087, 138812, 118491, 93471, 111886, 145411, 186816, 178350, 104067]}}, {"pos": 370, "top": [[" #####", "#####", "**\u2013", "\u0629", "\"\"\"", "<br", "es", "y"], ["\uff5e\uff5e", " **\u3010", "\uff1f**", "**\u2013", " \u2013**", "\uff1d\uff1d\uff1d\uff1d", "__)", " \\<"], [" **\u3010", "\uff1f**", "__)", "**\u3002", ")__", "**\u2013", ":__", " **.**"], [" **\u3010", " /**<", " **\u300c", "__)", "':''", " **>>", "\u300d**", "\uff1f**"], [" **\u3010", " /**<", " \\<", " (__", "__)", " **#", ">**", " **)"], [" **\u3010", " /**<", " **#", " **)", " **\u300c", "__)", ">**", " **\u00ab"], [" **\u3010", " /**<", " ____", " (__", "__)", " **\u300c", "____", " **#"], [" **\u3010", " ____", " (__", " /**<", " **#", " \\<", " **\u300c", "____"], [" **\u3010", "\n\n", " \n\n", "  \n\n", " ____", "   \n\n", "    \n\n", "\r\n\r\n"], [" **\u3010", " ____", " **#", " \\<", "____", " (__", " /**<", "<br"], ["\n\n", " \n\n", " **\u3010", "  \n\n", " ____", "\r\n\r\n", "____", " [@"], [" **\u3010", " ____", " **#", " ___", " /**<", " **\u300c", " (__", " **"], [" **\u3010", " ____", " (__", " ___", " **#", " __", "\n\n", "____"], [" **\u3010", "\n\n", " (__", "  \n\n", "\r\n\r\n", "\ufe0f", " ____", "____"], ["\n\n", " **\u3010", "  \n\n", " ___", "\r\n\r\n", "___", " \n\n", " (__"], [" **\u3010", "\n\n", " ___", "\r\n\r\n", " ____", " **#", "\ufe0f", "___"], [" **\u3010", " **#", "\ufe0f", "\r\n\r\n", "**", "(**", ">**", ":__"], [" **\u3010", " **#", "**", "(**", "  \n\n", " (**", "\ufe0f", "...\\"], [" **\u3010", " **#", "\r\n\r\n", "...\\", "...**", "**", ":__", " **["], ["\n\n", "\r\n\r\n", "  \n\n", " **\u3010", "...\\", " \r\n\r\n", "[^", " **["], ["\n\n", "  \n\n", "<|endoftext|>", " \n\n", "\r\n\r\n", " \r\n\r\n", "<|im_end|>", "e"], [" **\u3010", "\r\n\r\n", " **[", " **#", "\n\n", " \r\n\r\n", " **", "\ufe0f"], ["\r\n\r\n", "\n\n", " **\u3010", " \r\n\r\n", " **[", " **", " \\<", " **#"], ["\r\n\r\n", "\n\n", " \r\n\r\n", "  \n\n", " **\u3010", " \n\n", " **[", " **"], ["  \n\n", " \n\n", "\n\n", "\r\n\r\n", " \r\n\r\n", "<|endoftext|>", "   \n\n", "  \r\n\r\n"], ["  \n\n", "\n\n", " \n\n", "\r\n\r\n", " \r\n\r\n", " **[", " **", "\u2011"], ["\n\n", "\r\n\r\n", " \n\n", " **[", "  \n\n", " \r\n\r\n", " **", " ___"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", "\u2011", "\\_", "<|endoftext|>"], ["\n\n", "  \n\n", " \n\n", "\u2011", "\r\n\r\n", "<|endoftext|>", " \r\n\r\n", "\ufffd"], ["\u2011", "  \n\n", " \n\n", " **", " **[", "\n\n", "\ufffd", " \r\n\r\n"], [" **", "\u2011", " **[", "  \n\n", " \n\n", " ________", " \\<", " ______"], ["\u2011", "\ufffd", "  \n\n", "<|endoftext|>", " **[", " [[", " **", "\u200c"], ["\u2011", "\ufffd", "  \n\n", " **[", "\u200c", "[^", " **", "\\["], ["\u2011", " **[", " **", " **\u201c", "\ufffd", " **\u2013", "\u200c", "[^"], ["\u2011", " **[", " **\u201c", " **", "**\u2014", "  \n\n", "\ufffd", " **\u2014"], ["\u2011", " **[", " **", " **\u201c", "**\u2014", "  \n\n", " **\u20ac", "\ufffd"], [" **", " **[", "\u2011", "  \n\n", " **\u201c", "**", " **\u2014", "**\u2014"], [" **", " **[", "\u2011", " **+", " **\u20ac", " **\u2014", "**", "**\u2014"], ["\u2011", " **[", " **", "\ufffd", " **\u20ac", "**\u2014", " **\u2014", "\u200c"], ["\u2011", " **[", "\ufffd", " **", "**\u2014", " **\u2014", "\u200c", "\uff09**"], ["\u2011", "**\u2014", " **", "\ufffd", " **\u2014", " **[", "  \n\n", "\uff09**"], [" **\u2014", "**\u2014", "\u2011", " **", " **\u201c", " **[", "\u2019**", "\uff09**"], [" **\u2014", " **\u201c", "\u2019**", "**\u2014", "\uff1f**", " **", "\uff09**", "]**"], [" **\u2014", " **", " **\u201c", "\u2019**", "\uff1f**", "\uff09**", "\uff1a**", " **["], [" **", " **\u201c", " **\u2014", "\u2019**", " **\u20ac", " **[", " **+", "]**"], [" **", " **\u201c", " **\u20ac", "\u2019**", "\uff09**", " **+", "]**", " **\u2014"], [" **\u201c", "\u2019**", " **", " **\u20ac", "\uff09**", " **\u2014", "\uff1a**", " **+"], [" **\u201c", " **", "**", "\uff09**", "\u2019**", "\uff1a**", "\u201d**", "]**"], ["\uff09**", " **\u201c", " **", "**", "\u201d**", "\u2019**", "]**", " Likely"], ["\uff09**", "\u2019**", " **\u201c", "**", "\u201d**", "]**", ")**", " **\u2014"], ["**", "\uff09**", " **\u201c", "\u2019**", ")**", "**)", " **", "\u201d**"], ["**", " **\u201c", "\u2019**", "\uff09**", " **", " **\"", "\u201d**", ")**"], ["**", " **", "\u2019**", " **\u201c", " **\"", "\uff09**", ">**", "\u201d**"], ["**", "\u2019**", "\u201d**", "\"**", " **\u201c", " **\"", "\uff09**", ")**"], ["**", "\u2019**", "\u201d**", "think", "\"**", "Both", ";**", "\uff09**"], ["**", "\"**", "\uff09**", "\u201d**", "think", "\u2019**", ")**", "This"], ["It", "This", "Let", "\n\n", "The", "think", "**", "Q"], ["Based", "This", "It", "Let", "think", " Based", "\n\n", "The"], ["Based", "Let", "This", "\n\n", "It", " Based", "The", "**"], ["\n\n", "Let", "Based", "This", "It", "The", "TL", "**"], ["\n\n", "9", "This", "Let", "Based", "The", "8", "It"], ["\n\n", "9", "8", "This", "7", "3", " This", "The"], ["8", "3", "9", "7", "2", "6", "4", "5"]], "p": [[0.0393, 0.027, 0.0254, 0.0238, 0.0174, 0.0164, 0.0136, 0.0106], [0.0896, 0.0656, 0.0451, 0.0398, 0.0291, 0.0273, 0.0188, 0.0177], [0.5112, 0.1214, 0.0307, 0.0271, 0.0198, 0.0186, 0.0128, 0.0094], [0.4177, 0.0876, 0.0682, 0.0195, 0.0126, 0.0126, 0.0105, 0.0098], [0.7279, 0.0437, 0.0182, 0.0161, 0.0142, 0.0111, 0.0081, 0.0063], [0.9224, 0.009, 0.008, 0.0043, 0.0035, 0.0035, 0.0031, 0.0024], [0.9133, 0.013, 0.0108, 0.0074, 0.0033, 0.0027, 0.0021, 0.002], [0.921, 0.0131, 0.0066, 0.0051, 0.0038, 0.0033, 0.0023, 0.002], [0.3444, 0.1843, 0.1267, 0.0871, 0.0598, 0.0528, 0.0171, 0.0151], [0.6031, 0.0495, 0.032, 0.032, 0.0265, 0.0133, 0.0104, 0.0104], [0.5754, 0.0882, 0.0882, 0.0779, 0.021, 0.0087, 0.0082, 0.0068], [0.9111, 0.0138, 0.0122, 0.007, 0.0045, 0.0042, 0.0035, 0.0023], [0.7615, 0.0295, 0.0191, 0.0148, 0.0139, 0.0109, 0.0075, 0.0066], [0.6262, 0.0228, 0.0167, 0.0167, 0.0147, 0.0122, 0.0108, 0.0095], [0.4256, 0.1566, 0.0308, 0.0256, 0.024, 0.0199, 0.0176, 0.0155], [0.3418, 0.111, 0.0408, 0.0318, 0.0264, 0.0218, 0.0181, 0.016], [0.3277, 0.0535, 0.0444, 0.0305, 0.0286, 0.0197, 0.0135, 0.0105], [0.6542, 0.0393, 0.0306, 0.0198, 0.0113, 0.0093, 0.0077, 0.0073], [0.6946, 0.0253, 0.0253, 0.0144, 0.0082, 0.0068, 0.0064, 0.006], [0.2493, 0.1713, 0.1178, 0.0592, 0.0461, 0.0317, 0.0181, 0.0159], [0.8466, 0.0541, 0.0478, 0.0226, 0.01, 0.0024, 0.0016, 0.0011], [0.3881, 0.1112, 0.0595, 0.0361, 0.0219, 0.0171, 0.016, 0.0125], [0.2584, 0.2012, 0.1776, 0.035, 0.0272, 0.0212, 0.0212, 0.0199], [0.4143, 0.1264, 0.1115, 0.0465, 0.0282, 0.0249, 0.0249, 0.022], [0.5523, 0.1582, 0.1397, 0.0514, 0.04, 0.0101, 0.0095, 0.004], [0.3863, 0.1611, 0.1611, 0.0977, 0.0592, 0.0461, 0.0132, 0.0103], [0.2893, 0.1366, 0.0882, 0.0779, 0.0645, 0.0645, 0.0535, 0.0174], [0.5542, 0.1799, 0.1588, 0.0401, 0.0244, 0.0108, 0.004, 0.0037], [0.3899, 0.3037, 0.1266, 0.0986, 0.0282, 0.022, 0.0118, 0.0025], [0.8237, 0.0766, 0.041, 0.0092, 0.0086, 0.0071, 0.0041, 0.0038], [0.4886, 0.4312, 0.0312, 0.0065, 0.0035, 0.0033, 0.0019, 0.0018], [0.6842, 0.1049, 0.0133, 0.0118, 0.0076, 0.0056, 0.0049, 0.0041], [0.8236, 0.056, 0.0206, 0.0125, 0.0086, 0.0059, 0.0041, 0.0038], [0.7481, 0.0893, 0.0272, 0.0187, 0.0088, 0.0078, 0.0073, 0.0057], [0.2775, 0.2161, 0.1021, 0.0619, 0.0157, 0.0147, 0.0108, 0.0089], [0.4077, 0.2473, 0.1168, 0.0625, 0.0131, 0.0123, 0.0075, 0.0066], [0.5142, 0.3119, 0.0372, 0.0329, 0.0165, 0.0065, 0.005, 0.005], [0.7832, 0.1542, 0.0077, 0.0068, 0.0068, 0.0068, 0.0044, 0.0028], [0.6451, 0.1121, 0.077, 0.0439, 0.0081, 0.0076, 0.0076, 0.0052], [0.6135, 0.1066, 0.0473, 0.0473, 0.0127, 0.0099, 0.0088, 0.0077], [0.4275, 0.0616, 0.0423, 0.0423, 0.0398, 0.033, 0.0227, 0.0188], [0.1952, 0.1045, 0.0866, 0.0559, 0.0281, 0.0171, 0.0141, 0.0117], [0.301, 0.0977, 0.0672, 0.0631, 0.0383, 0.0317, 0.0263, 0.0218], [0.25, 0.2206, 0.1181, 0.0492, 0.0462, 0.0462, 0.0338, 0.0263], [0.3368, 0.1693, 0.0623, 0.0402, 0.0294, 0.0294, 0.026, 0.0244], [0.2635, 0.1701, 0.0588, 0.0552, 0.023, 0.0216, 0.0216, 0.0203], [0.1946, 0.0492, 0.0492, 0.0263, 0.0247, 0.0218, 0.015, 0.011], [0.374, 0.1376, 0.1071, 0.0573, 0.0447, 0.0348, 0.0198, 0.0154], [0.1959, 0.1265, 0.0677, 0.0386, 0.0362, 0.0265, 0.0142, 0.0142], [0.2072, 0.1614, 0.1338, 0.0632, 0.0524, 0.036, 0.028, 0.0247], [0.2749, 0.1146, 0.074, 0.0508, 0.0349, 0.0256, 0.0212, 0.0199], [0.2413, 0.2267, 0.065, 0.0573, 0.0506, 0.0419, 0.0186, 0.0186], [0.5317, 0.0815, 0.0526, 0.0495, 0.0465, 0.0319, 0.0249, 0.0249], [0.1891, 0.1012, 0.0542, 0.0509, 0.0309, 0.024, 0.0212, 0.0199], [0.0921, 0.0299, 0.0133, 0.0117, 0.0097, 0.0091, 0.0091, 0.0067], [0.1528, 0.0194, 0.0194, 0.0171, 0.0151, 0.0142, 0.0118, 0.0063], [0.0264, 0.0219, 0.0193, 0.0133, 0.0097, 0.0091, 0.0091, 0.0081], [0.0418, 0.0418, 0.0287, 0.0287, 0.0174, 0.0144, 0.0127, 0.0106], [0.0635, 0.0385, 0.0362, 0.0282, 0.0249, 0.0182, 0.0151, 0.0091], [0.0644, 0.0416, 0.0324, 0.0304, 0.0268, 0.0268, 0.0196, 0.0185], [0.3944, 0.0286, 0.0286, 0.0237, 0.0144, 0.0144, 0.0119, 0.0105], [0.7283, 0.0249, 0.0111, 0.0067, 0.0063, 0.0043, 0.0043, 0.0043], [0.2563, 0.1996, 0.1996, 0.0832, 0.0572, 0.0505, 0.0418, 0.0418]], "ranks": {"Rust": [123051, 155454, 96091, 68353, 74295, 62483, 57989, 58721, 67952, 56986, 56539, 58594, 58659, 54044, 75863, 61333, 68491, 85087, 129652, 138734, 117470, 137802, 116858, 102121, 65251, 113998, 148774, 120094, 95703, 77790, 91761, 59255, 46335, 67024, 108752, 79401, 54818, 48609, 102169, 74039, 101314, 102862, 134914, 186903, 161025, 104686, 87740, 47036, 27343, 61009, 47953, 53477, 74955, 74750, 80115, 92134, 69584, 58393, 95634, 67468, 25692, 9700, 3492]}}, {"pos": 371, "top": [[".", "\u00a0\u00a0", " \u200b\u200b", "\u00a0", ",", "  \n\n", ";", "?"], ["  \n\n", "  \r\n\r\n", "laves", "  \r\n", "\u7ef4\u4e5f\u7eb3", "  \n  \n", "   \n\n", " \n  \n"], ["\u2026**", "\u3002", "**\u3002", "\uff1f**", "**?", "[__", "**!", "**."], [" **\u3010", " Blowjob", "\uff1f**", " milfs", " **\u25cb", " **:**", " cumshot", " Shemale"], [" **\u201c", " \n\n\n\n", "  \n\n", "\uff1a**", " **\u3010", "\uff1f**", " **+", "**\u3002"], [" **\u201c", "  \n\n", " \n\n\n\n", "\uff1f**", " **\u3010", "**\u3002", "\uff1a**", " **+"], ["  \n\n", " \n\n", " **\u3010", "**\u3002", " **\u201c", "\uff1f**", " \n\n\n\n", "   \n\n"], ["  \n\n", " \n\n", "   \n\n", " \n\n\n\n", "     \n\n", "  \r\n\r\n", "    \n\n", "       \n\n"], ["  \n\n", " \n\n", "   \n\n", "     \n\n", "    \n\n", "      \n\n", " \n\n\n\n", "        \n\n"], ["  \n\n", " \n\n", " \n\n\n\n", "   \n\n", "  \r\n\r\n", " \r\n\r\n", "     \n\n", "  \n  \n"], ["  \n\n", " \n\n", " \n\n\n\n", "   \n\n", "  \r\n\r\n", "\n\n\n\n", "<|im_end|>", "\n\n"], ["  \n\n", " \n\n", " **\u3010", " **\u201c", " **", " **'", " **#", " **+"], ["  \n\n", " **\u3010", " \n\n", "**!", " **", " **'", "\u2026**", "...**"], ["  \n\n", " \n\n", "...**", "**!", "\u2026**", " **\u3010", "   \n\n", "**\u3002"], ["  \n\n", " \n\n", "\n\n", "   \n\n", "\r\n\r\n", "  \r\n\r\n", "      \n\n", "     \n\n"], ["  \n\n", " \n\n", " impactful", "   \n\n", "**!", " nuanced", "\n\n", " leveraging"], ["  \n\n", " \n\n", "   \n\n", " **", "\n\n", "**!", "<|im_end|>", " impactful"], ["  \n\n", " \n\n", "   \n\n", "\n\n", "<|im_end|>", " **", "\n\n\n\n", "**!"], ["  \n\n", "\n\n", " \n\n", "<|im_end|>", "\n\n\n\n", "   \n\n", "\r\n\r\n", "<|endoftext|>"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", "<|im_end|>", "   \n\n", "\n\n\n\n"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", "   \n\n", "\r\n\r\n", "\n\n\n\n", "<|im_end|>"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", "\n\n\n\n", "   \n\n", " \r\n\r\n", " **"], ["\n\n", "  \n\n", " \n\n", "\r\n\r\n", "\n\n\n\n", "<|endoftext|>", "<|im_end|>", "   \n\n"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", "<|im_end|>", "   \n\n", "\n\n\n\n"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "   \n\n", "\r\n\r\n", "<|im_end|>", " \r\n\r\n"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", "   \n\n", "<|im_end|>", " \r\n\r\n"], ["\n\n", " \n\n", "  \n\n", "<|endoftext|>", "\r\n\r\n", " \r\n\r\n", "   \n\n", "\n\n\n\n"], ["\n\n", " \n\n", "  \n\n", "<|endoftext|>", "\r\n\r\n", "   \n\n", " \r\n\r\n", "\n\n\n\n"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", "   \n\n", "<|im_end|>", " \r\n\r\n"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "<|im_end|>", "\r\n\r\n", "   \n\n", " \r\n\r\n"], ["  \n\n", " \n\n", "<|endoftext|>", "\n\n", "\r\n\r\n", "   \n\n", " **", " \r\n\r\n"], ["<|endoftext|>", "  \n\n", " \n\n", "\n\n", "\r\n\r\n", "   \n\n", " \r\n\r\n", "  \r\n\r\n"], ["<|endoftext|>", "  \n\n", " \n\n", "\n\n", "\r\n\r\n", " @", "   \n\n", " \u2014"], ["  \n\n", " \n\n", "<|endoftext|>", "\n\n", "\r\n\r\n", "  \r\n\r\n", "   \n\n", " \r\n\r\n"], ["  \n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", " **", "  \r\n\r\n", " \r\n\r\n", "\n\n"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "   \n\n", "\r\n\r\n", " **", "  \r\n\r\n"], ["  \n\n", " \n\n", "\n\n", "   \n\n", " **", "<|endoftext|>", "\r\n\r\n", "  \r\n\r\n"], [" **", "  \n\n", " **[", " **\u201c", " **#", " \n\n", " **+", "  \r\n\r\n"], [" **", "  \n\n", " **[", " **\u201c", "<|endoftext|>", " **#", " **\u2014", " relentless"], ["  \n\n", " **", "<|endoftext|>", " **[", " **\u201c", " relentless", " aggressively", " \n\n"], ["  \n\n", " **", " **[", "<|endoftext|>", " **\u201c", " brutal", " aggressively", " relentless"], [" **", " aggressively", "  \n\n", " brutal", " **\u201c", " **\u2014", " relentless", " stark"], [" **", " **\u2014", " aggressively", " **\u201c", " brutal", " stark", " **[", " brutally"], [" **", " **\u201c", " **\u2014", " aggressively", "  \n\n", " **[", " **#", " stark"], [" **", " **\u201c", " **\u2014", " **[", " aggressively", " **#", " **'", "  \n\n"], [" **", " **\u201c", "  \n\n", " **#", " aggressively", " **'", " **\u2014", " **\""], [" **", " **\u201c", "  \n\n", " **#", " **\"", " **[", " **'", " **\u2014"], [" **", " **\u201c", " **[", " **#", " **\"", " **\u2014", " **'", "  \n\n"], [" **", " **\u201c", " **\"", " **'", " **#", " **[", "**", " **\u2014"], [" **", " **\u201c", " **\"", " **#", "**", " **[", " **'", " **\u3010"], [" **", " **\u201c", "\u2019**", " **[", " **\"", "**", " **#", ";**"], [" **", "**", " **\u201c", "\u2019**", " **[", " **\"", ";**", " **#"], [" **", "**", " **\u201c", "\u2019**", " **\"", " **[", ";**", ">**"], [" **", "**", "\u2019**", " **\u201c", " **\"", " **[", ";**", " **+"], [" **", "**", "\u2019**", " **\u201c", " **\"", " **[", ">**", ";**"], [" **", "**", " **\u201c", "\u2019**", " **\"", ">**", "-**", ";**"], [" **", "**", "\u2019**", " **\u201c", " **\"", ">**", ";**", "**\u201d"], [" **", "**", " **\u201c", "\u2019**", " **\"", ">**", ")**", "**\u201d"], [" **", "**", " **\u201c", "\u2019**", " **\"", ">**", ")**", "**\u201d"], [" **", "**", " **\u201c", " **\"", "\u2019**", " Gut", ">**", ")**"], [" **", "**", " **\u201c", " **\"", " Gut", " What", "\u2019**", " what"], [" **", "**", " **\"", "**,", " **\u201c", " **'", "**.", "\"**"], ["**", " **", "This", "G", "What", "The", "###", "\"**"]], "p": [[0.6283, 0.1092, 0.1026, 0.0622, 0.0455, 0.0074, 0.0045, 0.0042], [0.0104, 0.0025, 0.0022, 0.0017, 0.0014, 0.0014, 0.0012, 0.0011], [0.6113, 0.1062, 0.0938, 0.0197, 0.0144, 0.0119, 0.0099, 0.0087], [0.0346, 0.0305, 0.0269, 0.0269, 0.0185, 0.0135, 0.0135, 0.0099], [0.2457, 0.0904, 0.0749, 0.0377, 0.0312, 0.0293, 0.0229, 0.0202], [0.2531, 0.0875, 0.0725, 0.064, 0.0388, 0.0365, 0.0183, 0.0183], [0.7417, 0.1461, 0.021, 0.0145, 0.0099, 0.0093, 0.0073, 0.0041], [0.7364, 0.2391, 0.0119, 0.0023, 0.0021, 0.0016, 0.0011, 0.0009], [0.5294, 0.4672, 0.0025, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.8809, 0.0723, 0.0111, 0.0098, 0.0092, 0.0017, 0.0016, 0.0011], [0.6765, 0.3196, 0.0017, 0.0007, 0.0002, 0.0002, 0.0001, 0.0001], [0.2659, 0.1515, 0.118, 0.0434, 0.0318, 0.0263, 0.0263, 0.015], [0.1438, 0.1192, 0.0638, 0.0467, 0.0364, 0.0266, 0.0235, 0.0207], [0.3657, 0.3032, 0.0465, 0.032, 0.0282, 0.0171, 0.0125, 0.0092], [0.7918, 0.2002, 0.0022, 0.0015, 0.0003, 0.0003, 0.0002, 0.0002], [0.7793, 0.0874, 0.0049, 0.0036, 0.003, 0.003, 0.0028, 0.0021], [0.608, 0.3255, 0.0063, 0.0056, 0.0032, 0.0026, 0.0019, 0.0015], [0.8802, 0.1051, 0.0046, 0.0026, 0.0018, 0.001, 0.0004, 0.0003], [0.5196, 0.4046, 0.0621, 0.0065, 0.0016, 0.0011, 0.0009, 0.0003], [0.457, 0.4033, 0.1309, 0.0035, 0.0016, 0.0013, 0.0008, 0.0005], [0.7082, 0.179, 0.0846, 0.0275, 0.0002, 0.0002, 0.0001, 0.0001], [0.5527, 0.2304, 0.1794, 0.0157, 0.0027, 0.0014, 0.0011, 0.0008], [0.7681, 0.1335, 0.0917, 0.0031, 0.001, 0.001, 0.0004, 0.0004], [0.6304, 0.1594, 0.1407, 0.0664, 0.0012, 0.0005, 0.0004, 0.0004], [0.6015, 0.2213, 0.1723, 0.0025, 0.0008, 0.0007, 0.0003, 0.0002], [0.4891, 0.2966, 0.2039, 0.0048, 0.0026, 0.0011, 0.0005, 0.0004], [0.8739, 0.0633, 0.0493, 0.011, 0.0017, 0.0002, 0.0001, 0.0001], [0.81, 0.1096, 0.0753, 0.0043, 0.0005, 0.0001, 0.0001, 0.0], [0.76, 0.1166, 0.1166, 0.0031, 0.0017, 0.0005, 0.0004, 0.0004], [0.6628, 0.1479, 0.1305, 0.0544, 0.0014, 0.0013, 0.0005, 0.0003], [0.4621, 0.2474, 0.15, 0.1324, 0.0023, 0.0013, 0.0007, 0.0007], [0.7611, 0.1323, 0.0625, 0.0379, 0.0011, 0.0005, 0.0003, 0.0002], [0.3888, 0.3888, 0.0923, 0.034, 0.0041, 0.0032, 0.0026, 0.0019], [0.8788, 0.0637, 0.0301, 0.0081, 0.0043, 0.0028, 0.0028, 0.0023], [0.8659, 0.0405, 0.0159, 0.014, 0.0124, 0.0085, 0.0058, 0.0055], [0.9304, 0.0318, 0.0117, 0.0071, 0.0038, 0.0032, 0.003, 0.0017], [0.9444, 0.0143, 0.0093, 0.005, 0.0047, 0.0041, 0.0032, 0.0023], [0.6562, 0.2414, 0.0175, 0.012, 0.0057, 0.005, 0.0029, 0.0029], [0.3964, 0.2404, 0.0306, 0.0144, 0.012, 0.0068, 0.005, 0.005], [0.3207, 0.283, 0.0434, 0.0383, 0.017, 0.0052, 0.0049, 0.0049], [0.2769, 0.1392, 0.0292, 0.0258, 0.0214, 0.0188, 0.0177, 0.0166], [0.0935, 0.0442, 0.0303, 0.0196, 0.0196, 0.0173, 0.0153, 0.0143], [0.2235, 0.0469, 0.0469, 0.0303, 0.0152, 0.0126, 0.0111, 0.0098], [0.4941, 0.0712, 0.0489, 0.0217, 0.0217, 0.0192, 0.0159, 0.0103], [0.7009, 0.0371, 0.0155, 0.0113, 0.0106, 0.01, 0.0078, 0.0073], [0.7676, 0.0714, 0.0192, 0.0103, 0.0062, 0.0052, 0.0043, 0.004], [0.9364, 0.032, 0.0118, 0.0049, 0.0025, 0.0017, 0.0015, 0.0012], [0.9287, 0.0524, 0.0043, 0.0033, 0.003, 0.0016, 0.0012, 0.0008], [0.9953, 0.0028, 0.0004, 0.0003, 0.0003, 0.0002, 0.0001, 0.0001], [0.979, 0.004, 0.0035, 0.0035, 0.0021, 0.0013, 0.0011, 0.0009], [0.9123, 0.0515, 0.0089, 0.0042, 0.0037, 0.0033, 0.0029, 0.0013], [0.9931, 0.0028, 0.0013, 0.001, 0.0006, 0.0003, 0.0001, 0.0001], [0.978, 0.0096, 0.004, 0.0024, 0.0017, 0.0015, 0.0005, 0.0002], [0.977, 0.0139, 0.0027, 0.0019, 0.0015, 0.0006, 0.0003, 0.0002], [0.9705, 0.0157, 0.0045, 0.0031, 0.0027, 0.0004, 0.0004, 0.0003], [0.9609, 0.0329, 0.0019, 0.0016, 0.0011, 0.0003, 0.0002, 0.0001], [0.9032, 0.0741, 0.01, 0.0089, 0.0015, 0.0003, 0.0002, 0.0002], [0.8979, 0.0835, 0.0088, 0.006, 0.0017, 0.0002, 0.0002, 0.0001], [0.9596, 0.0328, 0.0044, 0.0014, 0.001, 0.0001, 0.0001, 0.0], [0.9224, 0.0757, 0.0007, 0.0005, 0.0002, 0.0002, 0.0, 0.0], [0.8656, 0.1327, 0.0005, 0.0005, 0.0001, 0.0001, 0.0, 0.0], [0.6511, 0.3485, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.999, 0.0005, 0.0001, 0.0001, 0.0001, 0.0001, 0.0, 0.0]], "ranks": {"Rust": [51575, 148245, 102798, 66470, 82655, 51891, 36256, 28676, 30640, 25095, 36374, 21021, 17001, 21747, 30164, 5511, 14825, 27260, 52682, 60286, 65190, 69972, 43618, 12392, 13177, 8556, 10682, 10732, 11239, 14706, 12076, 5739, 6115, 10639, 19878, 20787, 26389, 31784, 55920, 45200, 41840, 33553, 31569, 31568, 19653, 9639, 6627, 3778, 3460, 12566, 6290, 5863, 8795, 7584, 12065, 3280, 2632, 1990, 2053, 554, 638, 467, 569]}}, {"pos": 372, "top": [["**", "**.", "**\u2013", ".", "-**", " **", "\u2026**", "(**"], [" **", "'**", "-**", "\uff1f**", "\u2019**", "(**", "**", " **'"], ["\u2026**", "\uff1f**", "**", "\u2019**", "'**", " **", "-**", "(**"], ["\uff1f**", " **\u300c", " **", "'**", "\u2019**", "\u300d**", " **\u00ab", " **\u201e"], [" **", "**", "-**", "'**", "\u2019**", "\uff1f**", " **\u201c", "...**"], [" **", "-**", "**", "\u2019**", " **\u201c", "(**", "\uff1f**", "'**"], ["**", " **", "\u2019**", "-**", "'**", "\uff1f**", "\uff09**", "\u201d**"], ["**", " **", "-**", "'**", "\u2019**", "\uff1f**", " **'", "(**"], ["**", " **", "...**", "\u2019**", "'**", "-**", "(**", " **'"], ["**", " **", "...**", "-**", "'**", "\u2019**", ">**", "(**"], ["**", " **", "...**", "'**", "-**", "\u2019**", "(**", "!**"], [" **", "**", "...**", "'**", "-**", " **'", "\u2019**", "(**"], [" **", "**", "...**", "'**", "-**", " **'", "(**", "\u2019**"], ["...**", " **", "**", "'**", "-**", "\uff1f**", "(**", " **'"], ["**", " **", "...**", "'**", "\u2026**", "(**", "-**", "\u2019**"], ["**", " **", "...**", "'**", "-**", "(**", "\u2026**", "!**"], ["**", "...**", " **", "\u2026**", "(**", "'**", "-**", "!**"], ["**", " **", "...**", "(**", "-**", "  \n\n", "\u2026**", "'**"], ["**", "...**", " **", "'**", "-**", " **'", "\u2026**", "(**"], ["**", "...**", "  \n\n", " **", "'**", "\u2026**", " **'", " **["], ["  \n\n", "**", "...**", " \n\n", "\n\n", "<|endoftext|>", " **", "\u2026**"], ["**", "...**", " **", "'**", " **'", "-**", "\u2019**", "\u2026**"], ["**", "...**", "  \n\n", " **", "\n\n", "'**", " \n\n", " **'"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "**", "...**", " **", "  \n  \n"], ["  \n\n", "\n\n", " \n\n", "   \n\n", "**", "<|endoftext|>", "...**", "  \n  \n"], ["  \n\n", " \n\n", " **", "**", "...**", "\n\n", " **'", " **["], ["  \n\n", "\n\n", " \n\n", " **", "...**", "**", "\u2026**", " **["], ["\n\n", "  \n\n", " \n\n", " **", "...**", "**", "   \n\n", "\u2026**"], ["  \n\n", "\n\n", " \n\n", "...**", "**", "\u2026**", " **", "   \n\n"], ["  \n\n", " \n\n", "\n\n", "...**", "**", "\u2026**", " **", "   \n\n"], ["  \n\n", " \n\n", " **", "\n\n", "**", "...**", "<|endoftext|>", "   \n\n"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "   \n\n", " **", "  \n  \n", "  \n\n\n"], ["  \n\n", " \n\n", " **", "\n\n", "<|endoftext|>", "   \n\n", "  \n  \n", " **["], ["  \n\n", " **", " \n\n", "\n\n", "**", "   \n\n", " **#", " **["], ["  \n\n", " **", " \n\n", "**", " **[", " **#", " **'", "   \n\n"], ["  \n\n", " \n\n", "\n\n", " **", "**", "   \n\n", "\u2026**", "  \n  \n"], ["  \n\n", " \n\n", "\n\n", " **", "   \n\n", "**", "  \n  \n", "**\u2014"], ["  \n\n", " **", " \n\n", "**", "\n\n", "   \n\n", "\u2019**", "\u2026**"], ["  \n\n", " **", " \n\n", "**", "\n\n", "\u2026**", " **'", "\u2019**"], ["  \n\n", " **", "**", " \n\n", "\u2026**", "...**", "\u2019**", " **'"], ["  \n\n", " \n\n", "**", " **", "\u2026**", "!**", "?**", "...**"], ["  \n\n", " \n\n", "\n\n", " **", "   \n\n", "**", "\u2019**", "  \n  \n"], ["  \n\n", " **", "\u2019**", " \n\n", " **'", "**", "\u2026**", "...**"], ["  \n\n", " **", "**", ">**", " \n\n", "  \n  \n", "\u2019**", " **:"], [" **", "...**", "  \n\n", "**", "\u2026**", " **'", " **[", " **#"], [" **", "  \n\n", " **'", " Immediate", "**", " \n\n", ":**", "\u2019**"], [" **", "  \n\n", "**", "\uff1a**", ":**", " **'", "%**", " Immediate"], [" **", "**", "\uff1a**", "  \n\n", " **'", "'**", ":**", "%**"], [" **", "**", "\uff1a**", "'**", " **'", "\u2019**", "]**", "%**"], [" Immediate", " Crisis", " Reality", " Priority", " Scenario", " Overview", "  \n\n", ":**"], [";**", "]**", "\uff1a**", ">**", "%**", "\u2019**", "\uff1f**", "?**"], [";**", " Immediate", "%**", "?**", "!**", ">**", "\uff1a**", " Overview"], [";**", " Immediate", " Biggest", "...**", "%**", " Prediction", " Reality", "\uff1a**"], [" Immediate", " Reality", " Prediction", " Biggest", ";**", "\uff1a**", ">**", " Outcome"], [" Immediate", " Prediction", ";**", " Reality", ">**", "\uff1a**", " Analysis", " Assessment"], [" what", "what", " What", "\u4ec0\u4e48\u662f", " whats", "What", " WHAT", "\u4ec0\u4e48"], [" what", "what", " What", "\u4ec0\u4e48\u662f", " whats", "What", " g\u00ec", ".what"], [" what", "what", " What", "What", "\u4ec0\u4e48\u662f", " whats", ".what", " g\u00ec"], [" what", " What", "what", "What", " whats", "\u4ec0\u4e48\u662f", " WHAT", ".what"], [" Gut", " what", "gut", " gut", " What", "what", "What", " Guta"], [" Gut", " what", " What", " gut", "what", "What", "gut", ".what"], [" Gut", " What", " what", "what", "gut", " gut", "What", ".what"], ["G", "What", " What", " Gut", "what", " what", "The", "gut"]], "p": [[0.433, 0.2177, 0.0429, 0.0378, 0.0295, 0.0277, 0.0244, 0.0179], [0.4675, 0.1043, 0.1043, 0.0717, 0.0558, 0.0558, 0.0384, 0.011], [0.3083, 0.2119, 0.1285, 0.078, 0.078, 0.0607, 0.0473, 0.0223], [0.2907, 0.0944, 0.0944, 0.0735, 0.0735, 0.0572, 0.0446, 0.0239], [0.4864, 0.179, 0.1085, 0.0513, 0.0452, 0.0274, 0.0189, 0.0147], [0.5819, 0.2426, 0.0541, 0.029, 0.0199, 0.0176, 0.0155, 0.0044], [0.636, 0.1822, 0.0522, 0.0359, 0.0218, 0.015, 0.0116, 0.0062], [0.5595, 0.2058, 0.1102, 0.0279, 0.0217, 0.0116, 0.009, 0.009], [0.6619, 0.1303, 0.0698, 0.0291, 0.02, 0.02, 0.0094, 0.0074], [0.5472, 0.1221, 0.1221, 0.0654, 0.0577, 0.0212, 0.0088, 0.0078], [0.8081, 0.0852, 0.0852, 0.0054, 0.0048, 0.0018, 0.0016, 0.0009], [0.7317, 0.099, 0.099, 0.0284, 0.0118, 0.0092, 0.0026, 0.0026], [0.5954, 0.2482, 0.0913, 0.0262, 0.0159, 0.0045, 0.004, 0.0031], [0.2696, 0.2379, 0.2379, 0.0992, 0.0531, 0.0152, 0.0152, 0.0134], [0.466, 0.2826, 0.2201, 0.0124, 0.0052, 0.0031, 0.0028, 0.0017], [0.5493, 0.3331, 0.0842, 0.0146, 0.0054, 0.0025, 0.0022, 0.0017], [0.7668, 0.1176, 0.1038, 0.0028, 0.0024, 0.0019, 0.0009, 0.0008], [0.8513, 0.0792, 0.048, 0.0039, 0.0035, 0.0031, 0.0027, 0.0021], [0.732, 0.1633, 0.0874, 0.0034, 0.003, 0.0023, 0.0016, 0.001], [0.555, 0.3366, 0.0516, 0.019, 0.0062, 0.0062, 0.0029, 0.0026], [0.4739, 0.2874, 0.1539, 0.0303, 0.0111, 0.0077, 0.0077, 0.006], [0.5095, 0.309, 0.1137, 0.0198, 0.0082, 0.0057, 0.0057, 0.005], [0.4586, 0.2455, 0.1314, 0.0903, 0.0138, 0.0108, 0.0074, 0.0065], [0.5773, 0.2124, 0.0781, 0.0537, 0.0326, 0.0198, 0.0093, 0.0024], [0.8108, 0.1097, 0.0754, 0.0008, 0.0007, 0.0006, 0.0006, 0.0004], [0.84, 0.0474, 0.0369, 0.0254, 0.0174, 0.0154, 0.003, 0.003], [0.4755, 0.2545, 0.1362, 0.0501, 0.039, 0.0268, 0.0032, 0.0022], [0.6038, 0.2852, 0.1049, 0.0028, 0.0015, 0.0006, 0.0002, 0.0002], [0.8115, 0.0969, 0.0755, 0.009, 0.0026, 0.0018, 0.0014, 0.0004], [0.9395, 0.0468, 0.0081, 0.0023, 0.001, 0.0009, 0.0007, 0.0002], [0.7625, 0.1501, 0.0487, 0.0296, 0.0012, 0.0011, 0.001, 0.001], [0.6622, 0.215, 0.1016, 0.0176, 0.0009, 0.0007, 0.0002, 0.0001], [0.8415, 0.1005, 0.0254, 0.0164, 0.0053, 0.0014, 0.0008, 0.0003], [0.899, 0.0575, 0.0349, 0.0032, 0.0008, 0.0006, 0.0005, 0.0005], [0.7397, 0.2402, 0.0093, 0.0027, 0.0016, 0.001, 0.0005, 0.0004], [0.9667, 0.0227, 0.004, 0.004, 0.0015, 0.0004, 0.0001, 0.0001], [0.9635, 0.02, 0.0107, 0.0031, 0.0008, 0.0007, 0.0001, 0.0001], [0.906, 0.0451, 0.031, 0.0054, 0.0037, 0.0011, 0.0004, 0.0004], [0.8167, 0.1252, 0.0192, 0.0091, 0.0055, 0.0026, 0.0014, 0.0014], [0.8066, 0.085, 0.0178, 0.0157, 0.0122, 0.0058, 0.0051, 0.0027], [0.877, 0.0282, 0.0161, 0.0104, 0.0059, 0.0034, 0.0034, 0.0032], [0.8175, 0.1106, 0.015, 0.0132, 0.0016, 0.0016, 0.0013, 0.0013], [0.3721, 0.3284, 0.021, 0.0185, 0.0144, 0.0136, 0.0127, 0.0112], [0.5533, 0.2035, 0.0293, 0.013, 0.0115, 0.0108, 0.0101, 0.0101], [0.5919, 0.1497, 0.0486, 0.0355, 0.023, 0.0203, 0.009, 0.0079], [0.324, 0.2523, 0.0235, 0.0207, 0.0161, 0.0142, 0.0118, 0.0104], [0.4813, 0.2919, 0.0448, 0.0211, 0.0165, 0.0113, 0.0113, 0.0083], [0.4108, 0.1712, 0.0714, 0.0714, 0.0298, 0.0247, 0.0232, 0.0192], [0.5113, 0.1141, 0.0611, 0.042, 0.037, 0.0255, 0.0211, 0.0211], [0.2391, 0.0442, 0.0286, 0.0222, 0.0222, 0.0196, 0.0144, 0.0127], [0.1906, 0.102, 0.102, 0.09, 0.09, 0.0619, 0.0425, 0.0425], [0.1037, 0.1037, 0.0591, 0.0432, 0.0381, 0.0297, 0.0297, 0.0279], [0.192, 0.0623, 0.0355, 0.0313, 0.026, 0.026, 0.0244, 0.0215], [0.1862, 0.128, 0.0685, 0.0416, 0.0345, 0.0119, 0.0119, 0.0119], [0.1029, 0.1029, 0.0908, 0.0753, 0.0378, 0.0314, 0.0277, 0.0244], [0.6066, 0.2865, 0.093, 0.0032, 0.0025, 0.0025, 0.0013, 0.0008], [0.3986, 0.3104, 0.2418, 0.0083, 0.0073, 0.0073, 0.005, 0.0024], [0.5012, 0.2368, 0.2368, 0.0081, 0.0063, 0.0026, 0.0018, 0.0016], [0.4982, 0.388, 0.0981, 0.0103, 0.0016, 0.0012, 0.0008, 0.0005], [0.829, 0.1271, 0.0152, 0.0118, 0.0104, 0.0056, 0.0003, 0.0001], [0.455, 0.3544, 0.1674, 0.0083, 0.0065, 0.0039, 0.0035, 0.0003], [0.5657, 0.2081, 0.143, 0.0219, 0.0194, 0.0194, 0.0194, 0.0004], [0.5346, 0.4164, 0.0302, 0.0072, 0.0023, 0.0015, 0.001, 0.001]], "ranks": {"Rust": [116135, 183602, 146514, 86297, 125278, 105670, 116701, 107992, 124561, 128099, 164207, 109033, 74846, 74684, 153973, 125723, 129181, 140863, 187029, 184319, 191552, 195340, 171159, 135145, 123633, 123915, 130062, 110195, 96536, 60152, 44561, 25603, 22757, 25286, 40146, 25052, 31620, 39607, 53895, 52560, 47079, 42068, 26575, 18147, 12522, 4966, 4328, 3007, 3808, 4837, 7483, 2682, 3377, 2682, 4596, 2323, 4238, 5342, 3932, 1431, 1688, 1080, 2566]}}, {"pos": 373, "top": [[".", " \u2013", ",", "\u00a0", " [\u2026]", "\u2026\u2026", "\u2026..", "\u2026."], ["ging", "  \n", " \u2013", " Gore", "gy", " GG", " VERY", "@g"], ["\u2026\u2026", "\u2026..", ".", " \u2013", "\u2013", "\u2026.", "\u2026", "ging"], ["orgeous", " **\u25cb", " Shemale", "&eacute", " Blowjob", "TRGL", " Strec", " milfs"], ["orgeous", "ging", "@g", "&A", "auge", "&eacute", " Guta", " CSG"], ["ging", "orgeous", "auge", " Guta", "itech", ".sg", "ourmet", "ossip"], ["\uff1f**", "...**", " **\u201e", " **\u25cb", "\uff1a**", "-**", " **\u300c", "\u2026**"], [" **\u201e", "ging", "-**", "...**", " **\u300c", "gy", " **\u25cb", "\uff1f**"], ["...**", "ging", " **\u201e", "gy", "......", "athon", " ......", "egger"], ["ging", "gy", "gie", "...**", "orgeous", "ged", "GING", "@g"], ["ging", "...**", "...", "......", "gy", "&nbsp", "@g", "&"], ["ging", "...**", "gy", "yscale", "ularity", "egger", " **\u201e", "eneric"], ["ging", "...**", "gy", "ularity", "yscale", " **\u300c", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "itech"], ["ging", "ularity", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "...**", "gy", "erness", "yscale", "itech"], ["ging", "ularity", "orgeous", "gy", "eneric", "gie", "...**", "itech"], ["orgeous", "ging", "eneric", " Gabrie", "ppure", "gy", "adget", "itech"], ["ging", "orgeous", "gy", "-esque", "eneric", "GING", "ged", "gg"], ["ging", "...**", "\u2026**", "gy", "orgeous", "GG", "**", "GING"], ["...**", "**", "\u2026**", "ging", "GG", "orgeous", "**!", ">**"], ["\n\n", "\u8ddf", "-&", "though", "@", "Though", "<|endoftext|>", "\t\n\n"], ["\n\n", " \n\n", "<|endoftext|>", "  \n\n", "\t\n\n", "@", "Though", "\u8ddf"], ["orgeous", " **>>", " **#", " \u30b9\u30dd\u30f3\u30b5\u30fc\u30b5\u30a4\u30c8", "ularity", " **\u2022", " !**", "ging"], ["\n\n", " \n\n", "fully", "\t\n\n", " --", "ily", " {{--<", "\r\n\r\n"], ["<|endoftext|>", "\n\n", " \n\n", "  \n\n", " --", "\r\n\r\n", "fully", "&nbsp"], ["\n\n", " \n\n", "  \n\n", " \r\n\r\n", "   \n\n", "\r\n\r\n", "\t\n\n", "    \n\n"], ["...**", "  \n\n", " \n\n", " **", "\n\n", "\u2026**", "**", "   \n\n"], ["\n\n", " \n\n", "\r\n\r\n", "  \n\n", " **", " \r\n\r\n", "...**", " __"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", " **", "\t\n\n"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", " **", "...**"], [" \n\n", "\n\n", "  \n\n", " \u2026", "...**", " ...", "   \n\n", " [...]"], [" \n\n", "\n\n", "  \n\n", " \u2026", " ...", "\u2026", "...", "<|endoftext|>"], ["<|endoftext|>", " @", " \n\n", " \u2026", " \u2018", "\n\n", "  \n\n", " ..."], [" @", " -", " ,", " arguably", " massively", " **", " massive", " potentially"], ["\u2026**", " **", " **\u201c", "  \n\n", "\u2026*", "...**", " \u2026", "!**"], [" **", "\u2026**", "?**", "**", " **\u201c", "!**", " !**", "...**"], [" **", "\u2026**", "!**", " !**", " **\u201c", "**", " notoriously", "?**"], [" **", "**", " !**", "!**", "?**", " tech", " massively", " **\u201c"], [" tech", " hardware", " !**", " massively", " **", " incredibly", " \ufffd", " impossible"], [" hardware", " impossible", " incredibly", " **", " tech", " massively", " overclock", " notoriously"], [" overclock", " hardware", "\u8981\u6c42", " demanding", " tech", " framerate", " optimization", " speed"], [" hardware", " overclock", " tech", " speed", " optimized", " framerate", " optimization", " fast"], [" overclock", " hardware", " framerate", " tech", " demanding", " performance", "\u8981\u6c42", " requirement"], [" overclock", " hardware", " achievable", " sprint", " tech", " demanding", " requirements", " performance"], [" achievable", "\u8981\u6c42", " requirements", " requirement", " demanding", " overclock", " hardware", "\u7684\u8981\u6c42"], [" achievable", " requirements", " demanding", " requirement", "\u8981\u6c42", " hardware", " demands", "\u8981\u6c42\u7684"], [" achievable", " demanding", " requirements", " requirement", " hardware", " sprint", " demands", " mandates"], [" demanding", " hardware", " achievable", " Impossible", "\u8981\u6c42", " demands", " requirement", " requirements"], [" Impossible", " demanding", " achievable", " Achie", " Requirement", " requirement", " mandates", " impossible"], [" Impossible", " Requirement", " demanding", " Achie", " Requires", " requirement", " Requirements", " Constraints"], [" Impossible", " Constraints", " Requirement", ":**", " Achie", " Constraint", "Impossible", " Requirements"], [":**", " Impossible", "\uff1a**", " Targets", " Achie", " Requirement", " Hardware", "!**"], [" Requirement", " Achie", ":**", "\u8981\u6c42", " Requirements", "\uff1a**", "!**", ";**"], [" Achie", " achieving", " Achievement", "\u76ee\u6807", ":**", " Requirement", "Achie", " Targets"], [" Achie", " achieving", " Requirement", " Hardware", " Performance", "Targets", " Achievement", "achie"], [" achieving", " Achie", "achie", "Achie", " Achievement", " achieves", " achieve", "\u5b9e\u73b0"], [" achieving", " Achie", "achie", " Targets", "\u76ee\u6807", "Achie", "Targets", "Target"], [" achieving", " Achie", " Targets", "achie", " Target", "\u76ee\u6807", "Targets", " targeting"], [" achieving", " Achie", " Targets", " Target", "Target", "\u76ee\u6807", "Targets", " targeting"], [" achieving", " Achie", " Target", " Targets", "\u76ee\u6807", " target", "Target", " targets"], [" Gut", " gut", "gut", " Target", "\u80a0", "ut", " achieving", " target"], [" Gut", " gut", "gut", "ut", " achieving", "\u80a0", " Target", " Achie"], [" Gut", " gut", "gut", "ut", "\u80a0", "utting", "uts", "UT"], ["ut", "UT", "uts", "utting", "utter", " Gut", "utt", "uti"]], "p": [[0.8056, 0.0548, 0.0167, 0.0079, 0.0058, 0.0051, 0.0045, 0.0037], [0.0354, 0.013, 0.0095, 0.0065, 0.0061, 0.0048, 0.0048, 0.0045], [0.2072, 0.1828, 0.1338, 0.0811, 0.0558, 0.0338, 0.0298, 0.0232], [0.0177, 0.0045, 0.0042, 0.0042, 0.0031, 0.0027, 0.0027, 0.0025], [0.0719, 0.0596, 0.03, 0.0151, 0.0142, 0.0117, 0.011, 0.0032], [0.0326, 0.0164, 0.0154, 0.0106, 0.0028, 0.0028, 0.0028, 0.0027], [0.0628, 0.0554, 0.0262, 0.0192, 0.018, 0.0169, 0.0124, 0.0116], [0.082, 0.0387, 0.0126, 0.0118, 0.0072, 0.0067, 0.0067, 0.0052], [0.1389, 0.0699, 0.033, 0.0166, 0.0129, 0.0101, 0.0095, 0.0061], [0.115, 0.02, 0.0074, 0.0069, 0.0047, 0.0033, 0.0033, 0.0031], [0.2888, 0.1364, 0.0569, 0.0443, 0.0324, 0.0173, 0.0153, 0.0127], [0.0195, 0.0111, 0.0092, 0.0056, 0.0049, 0.0041, 0.0038, 0.0038], [0.0279, 0.0124, 0.0091, 0.0066, 0.0062, 0.0035, 0.0033, 0.0033], [0.0073, 0.0069, 0.0065, 0.0044, 0.0044, 0.0039, 0.0031, 0.0027], [0.0478, 0.0088, 0.0083, 0.0078, 0.0054, 0.005, 0.0035, 0.0035], [0.0088, 0.0057, 0.0039, 0.0027, 0.0022, 0.0021, 0.0019, 0.0016], [0.1426, 0.0076, 0.0055, 0.0038, 0.0036, 0.0034, 0.0034, 0.0028], [0.0826, 0.0163, 0.0068, 0.005, 0.0041, 0.0039, 0.003, 0.0028], [0.1408, 0.0116, 0.009, 0.009, 0.0048, 0.0038, 0.0029, 0.0027], [0.043, 0.0102, 0.008, 0.0058, 0.0045, 0.0035, 0.0033, 0.0031], [0.215, 0.0213, 0.0156, 0.0129, 0.0078, 0.0074, 0.0057, 0.0042], [0.0036, 0.0028, 0.0027, 0.0022, 0.0021, 0.0018, 0.0018, 0.0016], [0.1054, 0.0032, 0.0032, 0.0025, 0.0023, 0.0022, 0.0017, 0.0015], [0.3673, 0.2525, 0.0104, 0.0043, 0.0041, 0.0026, 0.0025, 0.0015], [0.7391, 0.1455, 0.0779, 0.0064, 0.006, 0.006, 0.0036, 0.0018], [0.1951, 0.1428, 0.126, 0.1112, 0.0813, 0.0559, 0.0281, 0.0141], [0.9826, 0.0058, 0.0019, 0.0005, 0.0003, 0.0002, 0.0002, 0.0002], [0.9721, 0.0229, 0.0035, 0.0004, 0.0001, 0.0001, 0.0001, 0.0], [0.7571, 0.1689, 0.0548, 0.0024, 0.0019, 0.0014, 0.0009, 0.0005], [0.6487, 0.164, 0.164, 0.0044, 0.0034, 0.0027, 0.0017, 0.0017], [0.3964, 0.2404, 0.1458, 0.0781, 0.0536, 0.0197, 0.0174, 0.012], [0.1257, 0.0716, 0.0524, 0.036, 0.028, 0.0232, 0.0205, 0.016], [0.0683, 0.0285, 0.0285, 0.0268, 0.0196, 0.0184, 0.0126, 0.0119], [0.274, 0.2574, 0.054, 0.042, 0.0211, 0.0186, 0.0145, 0.0136], [0.3912, 0.0724, 0.0266, 0.0221, 0.0183, 0.0183, 0.0161, 0.0134], [0.1252, 0.0359, 0.0232, 0.0192, 0.018, 0.0149, 0.0132, 0.0103], [0.153, 0.0235, 0.0183, 0.0152, 0.0126, 0.0104, 0.0092, 0.0076], [0.0211, 0.0198, 0.0128, 0.012, 0.0113, 0.0113, 0.0099, 0.0082], [0.036, 0.0299, 0.0205, 0.0193, 0.0181, 0.0117, 0.0117, 0.011], [0.0396, 0.0349, 0.0155, 0.0155, 0.0146, 0.0113, 0.0113, 0.0113], [0.0873, 0.0724, 0.0321, 0.0172, 0.0134, 0.0134, 0.0126, 0.0126], [0.1147, 0.0893, 0.024, 0.0212, 0.0176, 0.0146, 0.0121, 0.0114], [0.0659, 0.04, 0.0258, 0.0258, 0.0167, 0.0157, 0.013, 0.013], [0.1162, 0.0662, 0.0455, 0.0313, 0.0276, 0.0259, 0.0244, 0.0123], [0.132, 0.0706, 0.055, 0.0517, 0.0402, 0.0202, 0.019, 0.0148], [0.0834, 0.065, 0.0475, 0.0446, 0.0254, 0.0224, 0.0224, 0.0136], [0.0609, 0.0326, 0.0326, 0.0306, 0.0254, 0.0254, 0.0238, 0.0186], [0.0943, 0.027, 0.0224, 0.0198, 0.0128, 0.0128, 0.0113, 0.0113], [0.0283, 0.0207, 0.0118, 0.0111, 0.0104, 0.0098, 0.0086, 0.0067], [0.0252, 0.0093, 0.0082, 0.0068, 0.006, 0.0056, 0.0056, 0.005], [0.0159, 0.0159, 0.0124, 0.0116, 0.0096, 0.009, 0.008, 0.0075], [0.0325, 0.027, 0.0164, 0.0127, 0.0106, 0.0088, 0.0082, 0.0068], [0.188, 0.0506, 0.0288, 0.0254, 0.0239, 0.0225, 0.0225, 0.0113], [0.0924, 0.0596, 0.0182, 0.0125, 0.0125, 0.0117, 0.011, 0.0104], [0.4093, 0.2058, 0.0262, 0.0159, 0.0149, 0.014, 0.0116, 0.0062], [0.3331, 0.1573, 0.0273, 0.02, 0.0166, 0.0156, 0.0146, 0.0114], [0.3519, 0.1073, 0.0307, 0.0271, 0.0239, 0.0211, 0.0175, 0.0165], [0.2323, 0.1243, 0.0968, 0.0708, 0.0404, 0.0379, 0.0356, 0.0261], [0.2119, 0.187, 0.187, 0.1001, 0.0417, 0.0368, 0.0287, 0.0287], [0.4192, 0.3264, 0.2542, 0.0, 0.0, 0.0, 0.0, 0.0], [0.5849, 0.3131, 0.1016, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.6886, 0.2533, 0.0565, 0.0009, 0.0, 0.0, 0.0, 0.0], [0.9816, 0.0066, 0.0021, 0.001, 0.0007, 0.0006, 0.0006, 0.0004]], "ranks": {"Rust": [79823, 108954, 84929, 120966, 111539, 79339, 63438, 55616, 60155, 44924, 92829, 77919, 50419, 49361, 58653, 38813, 60035, 79386, 136448, 136318, 166056, 124745, 143613, 70161, 76371, 92938, 64675, 50120, 90985, 56114, 25894, 16123, 17534, 142782, 105043, 97622, 87336, 94890, 65848, 89627, 55525, 104562, 103905, 82521, 75682, 67142, 74960, 34787, 50068, 77048, 107475, 78333, 107320, 106455, 128235, 145003, 101740, 55619, 74140, 1902, 2443, 2281, 1148]}}, {"pos": 374, "top": [["ting", ".", "\u00a0", ",", "\u200b\u200b", "ted", ";", "\u2013"], ["ting", "\u200b\u200b", " \u200b\u200b", "ted", "ness", ".", "ten", "ru"], ["ting", "\u200b\u200b", "\u2018s", " \u200b\u200b", "\u00a0", ".", "\u2018", "ted"], ["ting", "ruk", "&quot", "inary", "\u2018s", "avian", "\ub960", "terior"], ["\u2018s", "ting", "\u2018", "&W", "-&", " Aussie", "ness", " ...\""], ["\u2018s", "ting", "\u2018", "ridge", " Guta", " Aussie", " \u200b\u200b", "&W"], ["ting", "\u2018s", "\u2018", "-&", " Guta", " Aussie", "shit", "&W"], ["ting", "\u2018s", "ridge", " Guta", "&W", "ness", "ropolis", "-&"], ["ting", "\u2018s", "ridge", "&W", "ness", "-&", "\u200b\u200b", "ullah"], ["ting", "\u2018s", "ness", "-&", "\u00a0", "&W", "ridge", " guts"], ["ting", "ness", "-&", "ridge", "\u2018s", " guts", " \n", "&W"], ["ting", "ridge", "ullah", " veggies", "ness", "ulus", "\u7406\u5de5\u5b66\u9662", "gut"], ["ting", "ness", " veggies", "ridge", "ullah", "\u7406\u5de5\u5b66\u9662", "ulus", "inary"], ["ting", "ness", " guts", "ridge", " veggies", " Aussie", "stuff", "ullah"], ["ting", "ness", " guts", " Aussie", " kids", "stuff", " folks", " Philly"], [" guts", "ting", " kids", " Aussie", " gut", " folks", "ness", " wildly"], ["ting", " guts", "ness", " folks", " kids", " Aussie", " gut", " stuff"], ["ting", "ness", " \n\n", " guts", " Aussie", " vibe", "stuff", " itch"], ["ting", " \n\n", " stuff", " vibe", " Aussie", " guts", " itch", " smack"], [" \n\n", "-&", " \u2014\u2014", " --", "ting", " smack", "\n\n", " folks"], [" \n\n", "\n\n", " \n\n\n", "   \n\n", "  \n\n", "<|endoftext|>", "\t\n\n", "<|im_end|>"], [" freaking", " vibe", " itch", " vibes", " whispers", " veggies", "entimes", " Aussie"], [" \n\n", " vibe", " \n\n\n", " freaking", "\n\n", " vibes", " itch", "   \n\n"], [" \n\n", "\n\n", " \n\n\n", "   \n\n", "  \n\n", " --", "<|im_end|>", " vibe"], [" \n\n", "\n\n", "  \n\n", "   \n\n", "<|im_end|>", " \n\n\n", "\t\n\n", " \r\n\r\n"], [" \n\n", " vibe", "   \n\n", " vibes", "\n\n", " freaking", "  \n\n", "\t\n\n"], [" \n\n", "\n\n", "   \n\n", " vibe", "\t\n\n", " \n\n\n", "  \n\n", " vibes"], [" \n\n", "\n\n", "  \n\n", "   \n\n", " \n\n\n", "\t\n\n", " \r\n\r\n", "            \n\n"], [" \n\n", "\n\n", "  \n\n", "   \n\n", " \n\n\n", "\t\n\n", "    \n\n", " \n\n\n\n"], [" \n\n", "  \n\n", "   \n\n", "\n\n", " \n\n\n", " \n  \n", " \n\n\n\n", "    \n\n"], [" \n\n", "\n\n", "  \n\n", "   \n\n", " \n\n\n", " \n  \n", "    \n\n", " \n"], [" \n\n", "  \n\n", "\n\n", "   \n\n", " \n\n\n", " \n  \n", " \n", " @"], [" \n\n", "  \n\n", "\n\n", "   \n\n", " \n  \n", " \n\n\n", " @", " \n"], [" \n\n", "  \n\n", " wildly", " vibe", " gritty", "   \n\n", " weird", " tough"], [" \n\n", "  \n\n", "   \n\n", " vibe", " wildly", " gritty", " cynical", " bullshit"], [" \n\n", "  \n\n", "   \n\n", "\n\n", " cynical", " wildly", " \u2014", " vibe"], [" \n\n", "  \n\n", " cynical", "   \n\n", " wildly", " vibe", " gritty", " skepticism"], [" \n\n", " cynical", "  \n\n", " wildly", " vibe", " gritty", " skepticism", " bullshit"], [" cynical", " \n\n", " skepticism", " vibe", " wildly", "  \n\n", " bullshit", " desperation"], [" cynical", " vibe", " skepticism", " instinct", " wildly", " feeling", " visceral", " feel"], [" cynical", " vibe", " skepticism", " sentiment", " feeling", " paranoia", " feel", " instinct"], [" cynical", " skepticism", " vibe", " sentiment", " mindset", " paranoia", " intuition", " feeling"], [" cynical", " vibe", " skepticism", " mindset", " sentiment", " visceral", " intuition", " gritty"], [" cynical", " vibe", " mindset", " skepticism", " wildly", " sentiment", " instinct", " feeling"], [" cynical", " vibe", " skepticism", " mindset", " sentiment", " feeling", " intuition", " feel"], [" cynical", " intuition", " vibe", " mindset", " skepticism", " sentiment", " wildly", " instinct"], [" cynical", " vibe", ":**", " intuition", " skepticism", " mindset", "  \n\n", " again"], [" vibe", " again", " cynical", ":", ":**", " Again", " skepticism", " intuition"], [" vibe", " cynical", " reconsider", " skepticism", " Again", "\u65b0\u4e00\u8f6e", " vibes", " intuition"], [" vibe", " **:**", ":**", ":", " cynical", " **:", "__:", " Again"], [":**", " **:", " **:**", "\u65b0\u4e00\u8f6e", "\uff1a**", ":*", "*:", " reconsider"], [":**", " :**", "\uff1a**", ":*", "*:", " **:**", "**:", "\uff1a\u201c"], [":**", ":*", " :**", "\uff1a**", ":\"", ":</", " :</", "*:"], [":**", ":*", "\uff1a**", " :**", ":</", ":\"", "*:", ":\\\""], [":**", ":*", " :**", "\uff1a**", " revised", " Reaction", " Revised", "\u4fee\u6b63"], [" Reaction", ":**", " reaction", " update", "\u66f4\u65b0", ":update", ":*", "\u53cd\u5e94"], [":**", " Reaction", " reaction", " :**", " update", ":*", "\uff1a**", "\u53cd\u5e94"], [" Reaction", ":**", " reaction", " update", "\u53cd\u5e94", " :**", " Update", "\u66f4\u65b0"], [" Reaction", ":**", " reaction", " Update", " :**", " update", ":*", "Reaction"], [" Reaction", " reaction", "Reaction", "\u53cd\u5e94", "reaction", "_reaction", " reactions", " Update"], [" Reaction", " reaction", "Reaction", "\u53cd\u5e94", "reaction", ":**", "_reaction", " Update"], [" Reaction", " reaction", "Reaction", "\u53cd\u5e94", "reaction", " React", " Update", "_reaction"], [" Reaction", " Update", " reaction", "Reaction", " React", " Response", " Check", " Adjustment"]], "p": [[0.4182, 0.3257, 0.0774, 0.0469, 0.0134, 0.0087, 0.0082, 0.0068], [0.2719, 0.0503, 0.0417, 0.0105, 0.0077, 0.0064, 0.0053, 0.003], [0.1917, 0.1691, 0.0455, 0.0259, 0.0215, 0.0148, 0.0102, 0.0027], [0.0105, 0.0098, 0.0056, 0.0044, 0.0032, 0.0028, 0.0025, 0.0023], [0.1826, 0.1514, 0.1336, 0.0124, 0.0085, 0.0071, 0.0043, 0.0043], [0.0701, 0.0619, 0.013, 0.0101, 0.0101, 0.0089, 0.0069, 0.0065], [0.1524, 0.0495, 0.0182, 0.0142, 0.0104, 0.0059, 0.0056, 0.0056], [0.0537, 0.0254, 0.0224, 0.0224, 0.0154, 0.0145, 0.0088, 0.0077], [0.0939, 0.0687, 0.0286, 0.0286, 0.021, 0.0127, 0.0082, 0.0064], [0.0763, 0.016, 0.015, 0.0117, 0.011, 0.0097, 0.008, 0.0043], [0.3241, 0.0161, 0.0126, 0.0086, 0.0072, 0.0059, 0.0041, 0.0038], [0.0421, 0.0121, 0.01, 0.0088, 0.0065, 0.0047, 0.0044, 0.0037], [0.0462, 0.0141, 0.0066, 0.0066, 0.0055, 0.0049, 0.0046, 0.003], [0.0816, 0.034, 0.0118, 0.011, 0.0104, 0.0056, 0.0049, 0.0043], [0.1541, 0.047, 0.0222, 0.0135, 0.0068, 0.006, 0.005, 0.0047], [0.0475, 0.042, 0.0154, 0.0154, 0.012, 0.012, 0.0083, 0.0064], [0.0994, 0.0251, 0.0173, 0.0119, 0.0092, 0.0082, 0.0082, 0.0068], [0.2258, 0.0197, 0.0197, 0.0154, 0.0136, 0.0136, 0.0093, 0.0088], [0.041, 0.0282, 0.0193, 0.0193, 0.0171, 0.016, 0.0117, 0.0117], [0.4292, 0.0242, 0.0156, 0.0156, 0.0114, 0.0114, 0.0114, 0.0107], [0.9551, 0.0186, 0.006, 0.0037, 0.0022, 0.0013, 0.0004, 0.0004], [0.0178, 0.0158, 0.0102, 0.007, 0.0051, 0.0045, 0.004, 0.004], [0.4272, 0.0137, 0.0114, 0.01, 0.0057, 0.0054, 0.0054, 0.0045], [0.9052, 0.0291, 0.0078, 0.0051, 0.0025, 0.0011, 0.0011, 0.001], [0.9455, 0.0367, 0.0082, 0.0056, 0.0008, 0.0008, 0.0006, 0.0004], [0.6633, 0.0291, 0.0147, 0.0138, 0.0101, 0.0051, 0.0051, 0.0039], [0.5187, 0.4578, 0.0011, 0.0011, 0.0009, 0.0009, 0.0005, 0.0004], [0.4981, 0.4981, 0.0018, 0.0005, 0.0003, 0.0002, 0.0001, 0.0001], [0.8726, 0.1042, 0.0075, 0.0049, 0.0028, 0.0005, 0.0004, 0.0004], [0.9498, 0.0417, 0.003, 0.0024, 0.0024, 0.0002, 0.0001, 0.0001], [0.9816, 0.0096, 0.0075, 0.0009, 0.0003, 0.0, 0.0, 0.0], [0.9673, 0.0156, 0.0138, 0.0013, 0.0009, 0.0001, 0.0001, 0.0001], [0.876, 0.0719, 0.0125, 0.0081, 0.0022, 0.0017, 0.0014, 0.001], [0.4641, 0.0758, 0.0316, 0.0246, 0.0124, 0.009, 0.0085, 0.008], [0.4361, 0.1708, 0.0217, 0.0204, 0.014, 0.0116, 0.0116, 0.0048], [0.6892, 0.2102, 0.0208, 0.0068, 0.0049, 0.0032, 0.0023, 0.0019], [0.4816, 0.1563, 0.0328, 0.0308, 0.0128, 0.0113, 0.0088, 0.0073], [0.1814, 0.0805, 0.052, 0.0278, 0.0246, 0.018, 0.0149, 0.014], [0.1153, 0.0374, 0.031, 0.0274, 0.0213, 0.0213, 0.0166, 0.0138], [0.1327, 0.1033, 0.0431, 0.0278, 0.0217, 0.0158, 0.0149, 0.014], [0.1984, 0.1131, 0.073, 0.0223, 0.0209, 0.0196, 0.0163, 0.0163], [0.2458, 0.0904, 0.0798, 0.0294, 0.0276, 0.0215, 0.0167, 0.0148], [0.2318, 0.0624, 0.0517, 0.0295, 0.0203, 0.0168, 0.0168, 0.0148], [0.1292, 0.1006, 0.0539, 0.042, 0.0211, 0.0175, 0.0145, 0.0145], [0.0992, 0.0682, 0.0343, 0.0322, 0.0251, 0.0236, 0.0208, 0.0152], [0.0629, 0.0432, 0.0432, 0.0382, 0.0337, 0.0204, 0.0149, 0.0149], [0.0653, 0.0653, 0.035, 0.029, 0.0256, 0.0199, 0.0129, 0.0129], [0.0821, 0.0564, 0.053, 0.0388, 0.025, 0.0235, 0.0221, 0.0172], [0.0813, 0.0764, 0.0264, 0.0233, 0.016, 0.016, 0.015, 0.0141], [0.0585, 0.0485, 0.0402, 0.0229, 0.019, 0.019, 0.0178, 0.0139], [0.0422, 0.0329, 0.0329, 0.0256, 0.0226, 0.0226, 0.0212, 0.0155], [0.3255, 0.1357, 0.1125, 0.1125, 0.0389, 0.0303, 0.0236, 0.0162], [0.858, 0.0704, 0.0259, 0.0178, 0.0045, 0.0029, 0.0015, 0.0012], [0.8797, 0.0637, 0.0142, 0.0134, 0.0052, 0.0036, 0.0011, 0.0011], [0.691, 0.1201, 0.0236, 0.0184, 0.0119, 0.0105, 0.0093, 0.0082], [0.3968, 0.1874, 0.0885, 0.0418, 0.0306, 0.027, 0.0254, 0.0238], [0.5608, 0.3002, 0.0316, 0.0169, 0.0116, 0.0075, 0.0075, 0.0071], [0.5164, 0.3132, 0.0617, 0.0138, 0.0121, 0.0121, 0.0095, 0.0069], [0.7603, 0.1696, 0.0158, 0.0123, 0.0075, 0.0051, 0.0048, 0.0029], [0.9871, 0.011, 0.0017, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9831, 0.0159, 0.0008, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9868, 0.0124, 0.0005, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9982, 0.0007, 0.0006, 0.0001, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [5991, 17977, 25243, 7345, 3584, 1728, 3276, 3617, 5572, 3699, 7749, 6792, 2850, 3656, 6854, 6963, 12148, 12319, 24744, 46617, 45507, 30104, 35944, 43250, 18434, 23604, 46129, 40109, 25278, 31136, 13472, 9738, 8056, 7461, 8001, 9415, 7122, 8373, 13944, 20165, 24016, 20359, 17877, 12564, 13170, 6975, 8133, 6309, 11392, 11155, 11080, 17935, 14046, 22762, 17291, 27347, 30028, 23796, 15836, 13182, 7256, 4778, 2047]}}, {"pos": 375, "top": [[",", ".", "er", "\u00ac", " ", "\u00ad", "\uff0e", "\u00a0\u00a0"], ["\u00ac", "\uff0e", " \ufffd", " mu\u00df", "er", "\u00ad", "\u0447\u0451", " labour"], ["\uff0e", "er", "ly", "(**", "\u0436\u0451", " \uff0f", "\u0447\u0451", "\u00ac"], ["\uff0a\uff0a\uff0a\uff0a", "\uff0d\uff0d\uff0d\uff0d", " **\u300c", "\uff3f\uff3f", "\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a", "\uff0d\uff0d", "\uff0a\uff0a", " \uff0f"], ["\u00ac", "naire", " \uff0f", "(**", "\uff0e", "er", "\uff0d\uff0d\uff0d\uff0d", "ary"], ["(**", "naire", " \uff1a", "\u0440\u0451", " )**", "\u0436\u0451", " \uff0f", " (**"], ["\u00ac", "\uff1f**", "\u2019**", " **\u300c", " \u2019", "\uff0e", " )**", "naire"], ["naire", " **\u300c", "(**", "\u00ac", "ary", " mu\u00df", " )**", "ly"], ["\u00ac", "\uff0e", " \ufffd", "naire", "ary", "(**", " \u2019", "\uff3b"], ["\u00ac", "naire", " mu\u00df", " \u2019", " \u0163", "\u0436\u0451", "\u0449\u0451", "er"], ["\u00ac", "er", "\uff0e", " \u2019", ",", "\"", "naire", "ly"], ["naire", "er", "\u00ac", "ly", "ary", " \u2019", " )**", "er\u00eda"], ["naire", "er", "ly", "er\u00eda", " \u2019", "\u00ac", " \u300d", " )**"], ["er", "naire", "\u00ac", " \u2019", "ly", " wildly", " havoc", "ally"], ["\u00ac", " \u2019", "er", "naire", " wildly", " somewhat", "ly", " havoc"], ["\u00ac", " wildly", "ly", "er", " \u2019", " smack", " uncomfort", "naire"], ["er", " wildly", " \u2019", "ly", "\u00ac", " vaguely", " much", " seemingly"], [" \u2014", " wildly", "\u00ac", "er", " vaguely", " \u2019", " smack", " uncomfort"], [" \u2014", " wildly", " smack", " uncomfort", " outrage", " barely", " bizarre", " vaguely"], [" \u2014", " --", " ---", " wildly", " smack", " \\'", " swiftly", " barely"], [" \u2014", " \n\n", " --", " wildly", " ---", " \uff1a", " swiftly", " :"], [" )**", " ?**", " **:", " **'", " !**", " :**", " **\u25a0", " **:**"], [" ?**", " )**", " ---", " --", " \u2014", " \n\n", " \u2019", " **"], [" \n\n", "\n\n", " \u2014", " \u2019", " --", " wildly", "  \n\n", " :"], [" \n\n", "\n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", " \u2014", "   \n\n", " \n\n\n\n"], [" **'", " ?**", " )**", " **", " \n\n", " **:", " :**", " ---"], ["\n\n", " \n\n", " ___", " **", " ?**", " **'", " )**", "  \n\n"], ["\n\n", " \n\n", "  \n\n", " ___", " **", "\r\n\r\n", " **'", " ---"], [" \n\n", "\n\n", "  \n\n", " **", " ___", " **'", " )**", " ?**"], [" \n\n", "  \n\n", "\n\n", " ___", " **", " \u2014", "   \n\n", " \n  \n"], [" \n\n", "\n\n", "  \n\n", " **", " \u2014", "\r\n\r\n", "   \n\n", " \n  \n"], [" \n\n", "\n\n", "  \n\n", " \u2014", " \u2019", " ,", " --", " wildly"], [" \n\n", " wildly", "  \n\n", " \u2014", "\n\n", " ,", " truly", " --"], [" wildly", " aggressively", " weird", " fiercely", " incredibly", " stark", " ridiculously", " \u2014"], [" wildly", " aggressively", " cynical", " stark", " relentlessly", " fiercely", " relentless", " swiftly"], [" wildly", " aggressively", " cynical", " \u2014", " brutally", " stark", " fiercely", " ridiculously"], [" wildly", " aggressively", " cynical", " ridiculously", " brutally", " stark", " relentlessly", " notoriously"], [" aggressively", " wildly", " cynical", " ridiculously", " brutally", " absurd", " relentlessly", " ironically"], [" aggressively", " cynical", " wildly", " brutally", " ridiculously", " absurd", " relentlessly", " ironically"], [" cynical", " wildly", " aggressively", " ridiculously", " brutally", " absurd", " desperation", " weird"], [" cynical", " aggressively", " brutally", " wildly", " absurd", " ridiculously", " desperation", " ridiculous"], [" cynical", " aggressively", " brutally", " wildly", " absurd", " desperation", " ridiculously", " paranoia"], [" aggressively", " cynical", " brutally", " wildly", " absurd", " desperation", " relentlessly", " ridiculously"], [" aggressively", " brutally", " cynical", " wildly", " desperation", " absurd", " ridiculously", " desperate"], [" aggressively", " absurd", " brutally", " desperation", " cynical", " wildly", " relentless", " relentlessly"], [" aggressively", " brutally", " wildly", " desperation", " absurd", " cynical", " ridiculously", " desperate"], [" cynical", " aggressively", " desperation", " ridiculously", " brutally", " absurd", " wildly", " relentless"], [" ridiculously", " aggressively", " desperation", " relentless", " brutally", " absurd", " incredibly", " wildly"], [" ridiculously", " absurd", " cynical", " desperation", " brutally", " relentless", " ruthless", " aggressively"], [" **:**", ":", "  \n", " Worse", "  \n\n", " desperation", " cynical", ":**"], [" **:**", "  \n", " **", " Worse", " **:", " harder", ":**", "\uff1a**"], ["  \n", " **:**", ":", ":**", " \n", "\uff1a**", " :**", " **:"], [":**", ":", ":*", " **:**", "\uff1a**", "  \n", " :**", "**:"], [":**", "  \n", ":*", " :**", "\uff1a**", ":", " **:**", "**"], [":**", "  \n", ":*", ":", " :**", "\uff1a**", " \n", " **:**"], [":**", ":*", " :**", "\uff1a**", ":", "**:", "  \n", ":\\"], [":**", " :**", "\uff1a**", ":*", ":", "**", "**:", ":\""], [":**", " :**", "\uff1a**", ":", "**", ":*", "**:", ":\""], [":**", " :**", ":", ":*", "**:", "\uff1a**", "**", ":\""], [":**", " :**", ":*", ":", ":\"", "**", "\uff1a**", "**:"], [":**", ":*", ":", " :**", ":\"", "**", " update", "**:"], [":**", ":", ":*", " :**", " update", " Update", ":\"", " updated"], [":**", "\uff1a**", " :**", "**", ":", "**:", ":\"", ".**"]], "p": [[0.6215, 0.2434, 0.0373, 0.0241, 0.0129, 0.01, 0.0051, 0.0039], [0.2486, 0.1175, 0.0974, 0.0262, 0.0246, 0.018, 0.0169, 0.0132], [0.489, 0.1401, 0.019, 0.0139, 0.013, 0.009, 0.009, 0.0074], [0.0657, 0.0481, 0.0274, 0.0177, 0.0166, 0.0147, 0.0114, 0.0107], [0.2205, 0.0762, 0.0672, 0.028, 0.0205, 0.0181, 0.0181, 0.017], [0.1003, 0.0369, 0.0369, 0.0287, 0.0254, 0.0224, 0.021, 0.0164], [0.0753, 0.0707, 0.0586, 0.0457, 0.0356, 0.0334, 0.0295, 0.0277], [0.052, 0.0336, 0.0336, 0.0246, 0.0217, 0.0204, 0.0191, 0.0169], [0.1771, 0.1009, 0.0575, 0.0421, 0.0349, 0.0175, 0.0165, 0.0155], [0.6905, 0.0143, 0.0105, 0.0099, 0.0099, 0.0072, 0.0068, 0.0068], [0.6525, 0.0779, 0.0607, 0.0223, 0.012, 0.0105, 0.0099, 0.0064], [0.1275, 0.0532, 0.0267, 0.0184, 0.0184, 0.0143, 0.0092, 0.0072], [0.0659, 0.0619, 0.0258, 0.0177, 0.0147, 0.0138, 0.0122, 0.0115], [0.0504, 0.0445, 0.0418, 0.0164, 0.0136, 0.0093, 0.0088, 0.0077], [0.3058, 0.0773, 0.0152, 0.0134, 0.0119, 0.0081, 0.0072, 0.006], [0.0571, 0.0369, 0.0164, 0.0154, 0.0128, 0.0077, 0.0073, 0.0064], [0.0494, 0.0361, 0.0233, 0.0219, 0.0206, 0.0117, 0.0117, 0.0081], [0.0664, 0.026, 0.0216, 0.0168, 0.0123, 0.0108, 0.009, 0.0084], [0.0546, 0.0376, 0.0189, 0.0101, 0.0095, 0.0069, 0.0069, 0.0065], [0.3071, 0.1544, 0.0534, 0.0471, 0.0173, 0.0112, 0.0105, 0.0093], [0.2692, 0.1354, 0.0564, 0.0364, 0.0342, 0.0322, 0.0134, 0.0092], [0.0689, 0.0473, 0.0369, 0.0174, 0.0144, 0.012, 0.0106, 0.0088], [0.1168, 0.1097, 0.0625, 0.0552, 0.043, 0.0404, 0.0261, 0.023], [0.35, 0.137, 0.1287, 0.0445, 0.0369, 0.0197, 0.012, 0.0099], [0.6366, 0.3007, 0.0592, 0.0009, 0.0004, 0.0003, 0.0002, 0.0002], [0.1104, 0.086, 0.0759, 0.0713, 0.0629, 0.0358, 0.0204, 0.0159], [0.6545, 0.1655, 0.027, 0.0198, 0.012, 0.0113, 0.0068, 0.005], [0.7465, 0.2139, 0.0176, 0.0094, 0.0032, 0.0013, 0.0011, 0.0009], [0.5054, 0.2387, 0.1059, 0.0323, 0.0173, 0.0143, 0.0087, 0.0064], [0.5724, 0.3934, 0.0285, 0.0009, 0.0008, 0.0006, 0.0004, 0.0003], [0.7296, 0.209, 0.0599, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.6753, 0.2192, 0.0628, 0.0048, 0.0033, 0.0026, 0.0024, 0.0018], [0.1312, 0.0547, 0.0514, 0.04, 0.0332, 0.0214, 0.0189, 0.0167], [0.2321, 0.023, 0.0179, 0.0179, 0.0148, 0.0139, 0.0116, 0.0116], [0.1427, 0.0435, 0.0248, 0.0219, 0.015, 0.0141, 0.0141, 0.0133], [0.1434, 0.0636, 0.0386, 0.0249, 0.0194, 0.0182, 0.0182, 0.0182], [0.0915, 0.0915, 0.0629, 0.0381, 0.0358, 0.0192, 0.0169, 0.0159], [0.0935, 0.0878, 0.047, 0.039, 0.0323, 0.0196, 0.0184, 0.0162], [0.0811, 0.0631, 0.0593, 0.0383, 0.0338, 0.0232, 0.0205, 0.0193], [0.1249, 0.0669, 0.0521, 0.0406, 0.0406, 0.0316, 0.018, 0.0149], [0.1938, 0.0713, 0.0522, 0.0382, 0.0359, 0.0262, 0.018, 0.0159], [0.1796, 0.0961, 0.0401, 0.0332, 0.0275, 0.0215, 0.0215, 0.0202], [0.1273, 0.1196, 0.0499, 0.0284, 0.0251, 0.0236, 0.0183, 0.0183], [0.0933, 0.0641, 0.0603, 0.0469, 0.0414, 0.0389, 0.0267, 0.0208], [0.093, 0.0413, 0.0388, 0.0364, 0.0364, 0.0321, 0.0302, 0.025], [0.1008, 0.0447, 0.042, 0.0371, 0.0289, 0.0255, 0.0255, 0.0199], [0.0595, 0.0559, 0.0493, 0.0409, 0.0409, 0.0319, 0.0299, 0.0193], [0.0767, 0.0437, 0.0437, 0.0386, 0.0341, 0.032, 0.032, 0.0301], [0.0731, 0.0535, 0.0503, 0.0417, 0.0325, 0.0269, 0.0237, 0.021], [0.0842, 0.0579, 0.0451, 0.033, 0.0291, 0.0273, 0.02, 0.0188], [0.2059, 0.1035, 0.0554, 0.0297, 0.0204, 0.0204, 0.0169, 0.0149], [0.5612, 0.1419, 0.076, 0.067, 0.0522, 0.0279, 0.0103, 0.0097], [0.7392, 0.1285, 0.0287, 0.0287, 0.0197, 0.0174, 0.0153, 0.0044], [0.8565, 0.0426, 0.0201, 0.0178, 0.0178, 0.0138, 0.0074, 0.0065], [0.8248, 0.0527, 0.0411, 0.022, 0.0194, 0.0151, 0.0104, 0.002], [0.9228, 0.0246, 0.0192, 0.0103, 0.009, 0.0018, 0.0016, 0.0014], [0.9758, 0.0139, 0.0045, 0.0021, 0.0013, 0.0009, 0.0005, 0.0002], [0.967, 0.0201, 0.0035, 0.0031, 0.0024, 0.0021, 0.0007, 0.0003], [0.95, 0.0287, 0.0093, 0.0056, 0.0021, 0.0018, 0.0006, 0.0005], [0.9853, 0.0075, 0.0052, 0.0005, 0.0005, 0.0004, 0.0001, 0.0001], [0.981, 0.0109, 0.0051, 0.001, 0.0008, 0.0003, 0.0002, 0.0001], [0.8434, 0.1293, 0.012, 0.0047, 0.0017, 0.0011, 0.001, 0.0007], [0.9996, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [104548, 111574, 148401, 107013, 97341, 102665, 108647, 100282, 68473, 42844, 34041, 49974, 48471, 23668, 27907, 17829, 14774, 20769, 32311, 31976, 53782, 93754, 90566, 31896, 26147, 34018, 29683, 22330, 20205, 19309, 11674, 8457, 7187, 5611, 6080, 5354, 4597, 4115, 5814, 8054, 7422, 5958, 6053, 7028, 6424, 5513, 5900, 6060, 6020, 7127, 8264, 24875, 32310, 42993, 61832, 62862, 31209, 27979, 18704, 5380, 3635, 1928, 1139]}}, {"pos": 376, "top": [[" \u2013", ".", "  \n", "\u2026..", " (\u201e", "   \n", "\u2026\u2026", "\u2013"], [" \u2013**", "  \n", ",\\\"", ":\\\"", ",**", ":**", "   \n", "\u52c7\u5f80\u76f4\u524d"], ["\u2026\u2026", "\u2026..", ".:**", " \u2013**", "\u2026**", ",**", ":**", " **\u2013"], [" **\u201e", " **:**", "\u52a0\u62ff\u5927", " ``(", "raries", " ;;^", "\uff1a**", " milfs"], ["raries", " **\u201e", "\u52a0\u62ff\u5927", ":**", ".:**", "ed", "\u30f3", " ##"], [".:**", ":**", " **\u201e", "raries", "ed", ",**", "\u52a0\u62ff\u5927", "-**"], ["raries", " **\u201e", ":**", ".:**", "\uff1a**", " ____", "...**", " ~~"], [" **\u201e", "raries", "\u52a0\u62ff\u5927", ".:**", "...**", ":__", " **:**", " **\u3010"], ["...**", " ____", " **\u201e", "raries", " ......", "...\\", " ~~", ":__"], ["...\\", "\u52c7\u5f80\u76f4\u524d", "\u4e0d\u53ef\u601d\u8bae", "raries", "\u8eab\u4e34\u5176\u5883", "\u8033\u719f\u80fd\u8be6", " ~~", "...**"], ["...", "...\\", "...**", " ____", " ...\\", "......", " ......", "\n\n"], ["...**", "raries", " ~~", " ____", " **\u201e", "\u52c7\u5f80\u76f4\u524d", " ``", " **\u3010"], ["...**", "raries", " ~~", "\u52c7\u5f80\u76f4\u524d", "\u52a0\u62ff\u5927", " **\u201e", " ____", "...\\"], ["raries", "...", "\u52c7\u5f80\u76f4\u524d", "...**", "\u52a0\u62ff\u5927", "...\\", "\u4e0d\u53ef\u601d\u8bae", "\u8033\u719f\u80fd\u8be6"], ["...", "an", "...\\", "raries", " --", "...**", "\u4e0d\u53ef\u601d\u8bae", "\u52c7\u5f80\u76f4\u524d"], ["an", "...", " incredibly", "\u52c7\u5f80\u76f4\u524d", "raries", " folks", "\u4e0d\u53ef\u601d\u8bae", "n"], ["...", "an", "..", "n", "\u4e0d\u53ef\u601d\u8bae", "ed", "\u52c7\u5f80\u76f4\u524d", " incredibly"], ["...", "...\\", "...**", "\n\n", "an", "..", ",...", ",**"], ["...", "...\\", "\n\n", "...**", "an", "...</", "\u4e0d\u53ef\u601d\u8bae", " ..."], ["\n\n", "<|endoftext|>", "...", "  \n\n", "...\\", "...**", "an", " incredibly"], ["\n\n", "<|endoftext|>", "  \n\n", " \n\n", "...", " swiftly", "   \n\n", "...\\"], ["\u52a0\u62ff\u5927", "\u52e4\u52e4\u6073\u6073", "\u52c7\u5f80\u76f4\u524d", " ;;^", "tvr", " ``", "\u4e0d\u53ef\u601d\u8bae", " **"], ["\n\n", " ``", " swiftly", " incredibly", "\u52a0\u62ff\u5927", "\u4e0d\u53ef\u601d\u8bae", " arguably", " truly"], ["\n\n", "<|endoftext|>", " swiftly", " --", " much", " ...", " ``", "  \n\n"], ["\n\n", "  \n\n", " \n\n", "   \n\n", "...\\", "\r\n\r\n", "    \n\n", "<|im_end|>"], ["\n\n", "  \n\n", " \n\n", " ____", "...**", " **", "   \n\n", " _____"], ["\n\n", " \n\n", "  \n\n", " ____", " **", " ...", " __", " ___"], ["\n\n", " \n\n", "  \n\n", "<|endoftext|>", "   \n\n", "\r\n\r\n", " ...", "\n\n\n"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", "   \n\n", " ...", "\r\n\r\n", "\n\n\n"], ["\n\n", "  \n\n", " \n\n", " ...", "   \n\n", "...", " \u2026", "<|endoftext|>"], ["\n\n", " ...", "...", "  \n\n", " \n\n", " \u2026", " ,", " much"], [" ...", "\n\n", " much", " ,", " just", " more", " even", " heavily"], [" ,", " even", " just", " much", " more", " heavily", " incredibly", " truly"], [" incredibly", " aggressively", " fundamentally", " surprisingly", " heavily", " strategically", " arguably", " ..."], [" incredibly", " aggressively", " notoriously", " relentless", " brutally", " relentlessly", " horrific", " arguably"], [" incredibly", " notoriously", " aggressively", " brutally", " relentless", " brutal", " impossible", " desperately"], [" aggressively", " brutally", " incredibly", " notoriously", " impossible", " relentless", " worse", " brutal"], [" impossible", " incredibly", " aggressively", " absurd", " notoriously", " brutally", " ridiculously", " relentless"], [" impossible", " absurd", " incredibly", " unrealistic", " ridiculously", " brutally", " ridiculous", " desperation"], [" impossible", " absurd", " unrealistic", " ridiculous", " incredibly", " brutally", " ridiculously", " insanely"], [" impossible", " absurd", " unrealistic", " ridiculous", " ridiculously", " insanely", " incredibly", " brutally"], [" unrealistic", " impossible", " absurd", " ridiculous", " desperation", " ridiculously", " brutally", " aggressively"], [" impossible", " unrealistic", " absurd", " desperation", " ridiculous", " brutally", " aggressively", " desperate"], [" impossible", " unrealistic", " absurd", " desperation", " ridiculous", " desperate", " Impossible", " forcing"], [" impossible", " unrealistic", " absurd", " desperation", " forcing", " desperate", " ridiculous", " drastically"], [" impossible", " unrealistic", " absurd", " desperation", " forcing", " desperate", " ridiculous", " drastically"], [" impossible", " absurd", " unrealistic", " drastically", " Impossible", " ridiculously", " ridiculous", " forcing"], [" impossible", " Impossible", " drastically", " absurd", " unrealistic", " incredibly", " ridiculously", " ridiculous"], [" impossible", " drastically", " absurd", " Impossible", " unrealistic", " ridiculously", " Worse", " ridiculous"], [" Impossible", " impossible", "\u5012\u903c", " Worse", " desperation", " unrealistic", " constraints", " contradictions"], [" Impossible", " impossible", " Worse", " absurd", "Impossible", " unrealistic", " desperation", " imposs"], [" Impossible", "  \n", " impossible", " Worse", "Impossible", " constraints", " Trying", " Constraints"], [" Impossible", " impossible", "  \n", "Impossible", " unrealistic", " Constraints", " constraints", " Now"], ["  \n", " Impossible", " \n", "\n", " impossible", "   \n", " constraints", " Constraints"], ["  \n", " \n", " Adding", " adding", "\n", "Adding", "   \n", " you"], ["  \n", " you", " \n", " You", " adding", "\n", " Adding", "You"], ["  \n", "\n", " \n", " You", " Adding", " you", "   \n", " adding"], ["  \n", " You", " you", "\n", "You", " \n", "you", " Adding"], [" You", " you", "  \n", "\n", " Adding", "You", " adding", "Adding"], [" You", " you", "\n", "  \n", " Adding", " adding", "You", " constraints"], ["\n", "  \n", " You", " Adding", " adding", " \n", " you", " constraints"], ["\n", "  \n", " You", " Adding", " \n", " adding", " The", " you"], ["\n", "  \n", " You", " \n", " The", " This", " Adding", " Your"]], "p": [[0.4268, 0.2589, 0.0697, 0.0423, 0.035, 0.02, 0.0146, 0.0107], [0.1203, 0.113, 0.088, 0.0644, 0.0534, 0.0367, 0.0304, 0.0196], [0.2529, 0.1054, 0.099, 0.0725, 0.0498, 0.0413, 0.0413, 0.0364], [0.0848, 0.04, 0.0259, 0.0259, 0.0228, 0.0157, 0.013, 0.0122], [0.1438, 0.077, 0.0679, 0.06, 0.0497, 0.0364, 0.0195, 0.0172], [0.1165, 0.1095, 0.1028, 0.055, 0.0429, 0.0429, 0.0314, 0.0295], [0.1817, 0.0858, 0.0757, 0.059, 0.0554, 0.0405, 0.0358, 0.0297], [0.2793, 0.0965, 0.0456, 0.0294, 0.0202, 0.019, 0.0179, 0.0168], [0.1575, 0.1082, 0.1017, 0.0699, 0.0511, 0.0351, 0.0241, 0.02], [0.1017, 0.0898, 0.048, 0.0352, 0.0257, 0.0242, 0.0242, 0.0227], [0.3514, 0.3514, 0.065, 0.0307, 0.0175, 0.0145, 0.0136, 0.0128], [0.1301, 0.0894, 0.0789, 0.0654, 0.0256, 0.0121, 0.0121, 0.0114], [0.1444, 0.1444, 0.0389, 0.0322, 0.0303, 0.0303, 0.0284, 0.0134], [0.1062, 0.0827, 0.0416, 0.0391, 0.0304, 0.0304, 0.0082, 0.0056], [0.43, 0.0258, 0.0228, 0.0214, 0.0115, 0.0101, 0.0084, 0.0074], [0.0773, 0.0322, 0.0173, 0.0152, 0.0143, 0.0098, 0.0092, 0.0092], [0.3179, 0.1325, 0.0116, 0.0109, 0.0085, 0.008, 0.008, 0.0051], [0.6789, 0.0672, 0.0318, 0.011, 0.0085, 0.0071, 0.0067, 0.0059], [0.4829, 0.0788, 0.0696, 0.0654, 0.0065, 0.005, 0.0037, 0.0033], [0.9347, 0.0125, 0.0076, 0.0041, 0.0036, 0.0007, 0.0006, 0.0006], [0.8976, 0.0539, 0.0106, 0.001, 0.001, 0.0008, 0.0006, 0.0003], [0.0251, 0.0098, 0.0063, 0.0053, 0.0049, 0.0046, 0.0038, 0.0038], [0.1393, 0.0375, 0.0107, 0.0101, 0.0048, 0.0042, 0.0042, 0.0037], [0.5618, 0.0263, 0.0103, 0.0085, 0.0085, 0.008, 0.0046, 0.0043], [0.9569, 0.0289, 0.012, 0.0013, 0.0002, 0.0001, 0.0001, 0.0001], [0.8879, 0.0442, 0.0144, 0.0099, 0.0082, 0.0077, 0.0041, 0.0017], [0.9982, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9947, 0.0028, 0.0022, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9872, 0.0075, 0.0046, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.7907, 0.1374, 0.0649, 0.0022, 0.0012, 0.0012, 0.0004, 0.0002], [0.8114, 0.141, 0.0131, 0.0116, 0.009, 0.0043, 0.0005, 0.0004], [0.1842, 0.0926, 0.0411, 0.0386, 0.0301, 0.022, 0.0142, 0.0125], [0.0516, 0.0333, 0.0313, 0.0244, 0.0215, 0.0148, 0.013, 0.0115], [0.0519, 0.0335, 0.0261, 0.0203, 0.0158, 0.0149, 0.014, 0.0131], [0.057, 0.0325, 0.0238, 0.0223, 0.021, 0.0144, 0.0144, 0.0135], [0.0663, 0.0378, 0.0294, 0.0276, 0.026, 0.0157, 0.0148, 0.0139], [0.0435, 0.0384, 0.0361, 0.0339, 0.0219, 0.0205, 0.0193, 0.0181], [0.0579, 0.0544, 0.031, 0.031, 0.0257, 0.0257, 0.0227, 0.0166], [0.2177, 0.0429, 0.0378, 0.0314, 0.0229, 0.0203, 0.0179, 0.0158], [0.158, 0.0581, 0.0311, 0.0292, 0.0275, 0.0242, 0.0242, 0.0214], [0.1663, 0.0836, 0.0738, 0.0448, 0.0225, 0.0211, 0.0199, 0.0199], [0.1121, 0.1121, 0.0929, 0.0302, 0.0283, 0.0235, 0.0207, 0.0172], [0.162, 0.0923, 0.0815, 0.0282, 0.0248, 0.0194, 0.0171, 0.016], [0.2385, 0.0774, 0.0603, 0.0414, 0.0251, 0.0236, 0.0222, 0.0196], [0.2575, 0.0651, 0.0507, 0.0371, 0.0255, 0.0211, 0.0199, 0.0145], [0.2354, 0.0634, 0.0525, 0.0339, 0.0264, 0.0206, 0.0193, 0.0193], [0.2612, 0.0547, 0.0483, 0.0312, 0.0228, 0.0189, 0.0189, 0.0178], [0.2882, 0.0533, 0.039, 0.039, 0.0344, 0.0222, 0.0222, 0.0163], [0.2117, 0.0606, 0.0444, 0.0325, 0.0269, 0.0269, 0.0174, 0.0163], [0.11, 0.0756, 0.0336, 0.0278, 0.0245, 0.0217, 0.0191, 0.0149], [0.2396, 0.1753, 0.0269, 0.0237, 0.0197, 0.0163, 0.0153, 0.0144], [0.2391, 0.1061, 0.0605, 0.0471, 0.0286, 0.0144, 0.0112, 0.0093], [0.3156, 0.1161, 0.0904, 0.0312, 0.0259, 0.0178, 0.0167, 0.0122], [0.7233, 0.0434, 0.0338, 0.0318, 0.0205, 0.011, 0.011, 0.0075], [0.724, 0.0594, 0.0264, 0.0248, 0.0233, 0.0141, 0.0086, 0.0076], [0.4908, 0.1166, 0.0753, 0.0486, 0.0277, 0.0179, 0.0148, 0.0115], [0.7411, 0.1874, 0.0174, 0.0099, 0.006, 0.0053, 0.0041, 0.0028], [0.4331, 0.2046, 0.1241, 0.1241, 0.0457, 0.0096, 0.0075, 0.0066], [0.4029, 0.1308, 0.1308, 0.1019, 0.07, 0.0545, 0.0292, 0.0177], [0.354, 0.2147, 0.1672, 0.0615, 0.0615, 0.0423, 0.0256, 0.0121], [0.5961, 0.2193, 0.0358, 0.0358, 0.0262, 0.014, 0.0132, 0.0066], [0.6954, 0.1208, 0.0689, 0.0238, 0.0197, 0.0088, 0.0057, 0.0053], [0.9645, 0.0291, 0.0048, 0.0004, 0.0002, 0.0002, 0.0001, 0.0]], "ranks": {"Rust": [22444, 50435, 54687, 78976, 64498, 34197, 56775, 62648, 72015, 68778, 25022, 58098, 30630, 16986, 12108, 7079, 8659, 17259, 31762, 18290, 29340, 47127, 20298, 9045, 13204, 15685, 9534, 9225, 14383, 15286, 12743, 11123, 11751, 12678, 11401, 17616, 17740, 15122, 19778, 33232, 21053, 21975, 26637, 29805, 19893, 20225, 14465, 19898, 33103, 39676, 51109, 52392, 41892, 45134, 58683, 52759, 26080, 19223, 24373, 12514, 12762, 6182, 1075]}}, {"pos": 377, "top": [[" \u2013", ".", "\u2013", " \u2013,", "\u200b\u200b", ".\u2013", "\u2013and", "   \n"], ["**\u2013", " \u2013**", " *\u2013", " Guta", "\u2013and", "pedia", "\uff1f**", "CallCheck"], ["\u3002", "\uff1f", "\u2026..", "**\u2013", "\u2026\u2026", "\u5728", "\u4e2d", "\u7684"], [" **\u201e", " cumshot", " milfs", " Shemale", "raries", " Blowjob", "enzi", " pornstar"], ["ly", "raries", "\u4e2d", "!\u201c", ".\u201c", "____", ".\",\"", "\uff01"], ["\u4e2d", "\uff01", "!\u201c", "\uff1f", "ly", "\u5728", "\u3002", "raries"], ["\u4e2d", "____", "raries", "\u3002", "\u5728", "\uff01", "\uff1f", "ly"], ["____", " **\u201e", "!\u201c", "ly", "\u4e2d", "raries", "____________", ".:**"], ["\n\n", "   \n\n", "\n\n\n", "____", "    \n\n", "!\u201c", "......", "  \n\n\n"], ["ly", "raries", "____", ".\",\"", "\u6700\u65b0\u53d1\u5e03", "!\u201c", "!--", "\u9ecf"], ["\n\n", "...", "ly", "____", "...*", "\n\n\n", "a", "......"], [" **\u201e", "raries", " ____", "____", "...**", " *\u201e", "...*", " *\u201c"], [" **\u201e", "____", "raries", "...**", "ly", " ____", " *\u201e", "htag"], [" **\u201e", "raries", "ly", " freaking", "pedia", "...**", " (\u201e", "\u52a0\u62ff\u5927"], ["ly", "raries", " **\u201e", " \u201e", "\u201e", "...", "\n\n", "a"], ["ly", "raries", " freaking", " **\u201e", " moms", " flavorful", "\u52a0\u62ff\u5927", " skept"], ["ly", " incredibly", " sprawling", "fully", " savvy", "\u52a0\u62ff\u5927", " standout", "raries"], ["ly", " **\u201e", "   \n\n", " incredibly", "\u52a0\u62ff\u5927", "...**", " savvy", "(\\\""], ["ly", " incredibly", " **\u201e", "\n\n", "...**", " savvy", " effortlessly", "   \n\n"], ["\n\n", "  \n\n", " incredibly", "   \n\n", "<|endoftext|>", " \n\n", "ly", " swiftly"], ["\n\n", "<|endoftext|>", " \n\n", "  \n\n", "   \n\n", " incredibly", " swiftly", " vastly"], [" skyrocket", " **\u201e", " ``", " incredibly", "\u52a0\u62ff\u5927", " impactful", " freaking", " horrific"], [" ``", " incredibly", " skyrocket", " swiftly", "\n\n", " sprawling", " --", "ly"], ["\n\n", " swiftly", " ``", " \n\n", " --", " incredibly", " sprawling", " skyrocket"], ["\n\n", " \n\n", "  \n\n", "   \n\n", "    \n\n", "\r\n\r\n", "\t\n\n", " \r\n\r\n"], ["\n\n", " \n\n", "   \n\n", "  \n\n", " incredibly", " skyrocket", " **", " sprawling"], ["\n\n", " \n\n", "  \n\n", " incredibly", "\r\n\r\n", "   \n\n", " sprawling", " heavily"], ["\n\n", " \n\n", "  \n\n", "   \n\n", "\r\n\r\n", "<|endoftext|>", " --", "\t\n\n"], ["\n\n", "  \n\n", " \n\n", "   \n\n", "\r\n\r\n", " \r\n\r\n", "\t\n\n", "    \n\n"], ["  \n\n", " \n\n", "\n\n", "   \n\n", "<|im_end|>", " \n\n\n", "  \n\n\n", "\r\n\r\n"], ["\n\n", " \n\n", "  \n\n", " heavily", " incredibly", "   \n\n", "<|endoftext|>", " aggressively"], ["\n\n", " incredibly", " heavily", " \n\n", " massive", " just", " aggressively", " truly"], [" heavily", " aggressively", " incredibly", " massive", " relentlessly", " dramatically", " truly", " deeply"], [" aggressively", " incredibly", " heavily", " relentlessly", " wildly", " relentless", " dramatically", " looming"], [" aggressively", " incredibly", " relentless", " relentlessly", " heavily", " wildly", " notoriously", " brutally"], [" aggressively", " relentless", " incredibly", " relentlessly", " wildly", " notoriously", " brutally", " heavily"], [" aggressively", " brutally", " relentless", " incredibly", " relentlessly", " wildly", " notoriously", " desperately"], [" aggressively", " incredibly", " brutally", " relentless", " wildly", " relentlessly", " desperately", " desperate"], [" aggressively", " incredibly", " brutally", " desperate", " relentless", " desperately", " relentlessly", " wildly"], [" brutally", " aggressively", " incredibly", " desperate", " relentless", " wildly", " desperation", " ridiculously"], [" brutally", " aggressively", " absurd", " desperate", " incredibly", " ridiculously", " desperation", " brutal"], [" aggressively", " brutally", " desperate", " desperation", " absurd", " brutal", " relentless", " ridiculously"], [" aggressively", " brutally", " desperation", " desperate", " brutal", " absurd", " relentlessly", " relentless"], [" desperation", " desperate", " brutally", " aggressively", " brutal", " impossible", " desperately", " absurd"], [" desperate", " desperation", " aggressively", " impossible", " brutally", " absurd", " relentless", " desperately"], [" aggressively", " desperate", " desperation", " brutally", " impossible", " dangerously", " risky", " desperately"], [" desperate", " desperation", " aggressively", " brutally", " dangerously", " desperately", " impossible", " absurd"], [" aggressively", " desperate", " desperation", " impossible", " brutally", " dangerously", " drastically", " desperately"], [" desperation", " **", " drastically", " brutally", " aggressively", " impossible", " absurd", " desperate"], [" desperation", " Impossible", " desperate", " impossible", " Worse", " drastically", " abandoning", " brutally"], [" Impossible", " impossible", " desperation", " Worse", " absurd", " brutally", " desperate", " sabotage"], [" Impossible", " Worse", " impossible", " desperation", " Trying", " absurd", " ridiculous", " Attempt"], [" Impossible", " impossible", " **\u201c", " *\u201c", " now", " **\"", " unrealistic", " desperation"], [" Impossible", " You", " you", " impossible", " **\u201c", " Sanity", " *\u201c", " Adding"], [" you", " You", " Adding", " adding", " your", " Congratulations", "\u4f60\u73b0\u5728", " Your"], [" you", " You", "you", "You", " abandoning", " Congratulations", "-you", "_you"], [" You", " you", "You", " Adding", "you", " Congratulations", "Adding", " adding"], [" You", " you", "You", "you", "_you", " Adding", "-you", "\u4f60"], [" You", " you", "You", " Adding", "Adding", " adding", "you", "_you"], [" You", " you", "You", " Adding", " adding", "Adding", "you", " constraints"], [" You", " you", "You", " Adding", " adding", "Adding", " This", " Trying"], [" You", "You", " you", " This", " Adding", " The", "Adding", "This"], ["You", "The", " You", "This", "Adding", " The", " This", "Your"]], "p": [[0.7582, 0.1917, 0.0139, 0.0084, 0.0037, 0.0037, 0.0033, 0.0021], [0.0817, 0.0465, 0.0161, 0.0071, 0.0056, 0.0049, 0.0046, 0.0038], [0.4274, 0.0896, 0.051, 0.045, 0.0423, 0.0373, 0.0241, 0.0176], [0.0139, 0.0139, 0.0131, 0.0115, 0.0108, 0.0079, 0.0066, 0.0058], [0.2962, 0.0583, 0.0454, 0.0276, 0.0202, 0.013, 0.0122, 0.0122], [0.0673, 0.0558, 0.0434, 0.028, 0.0263, 0.0233, 0.0233, 0.0141], [0.181, 0.0487, 0.0404, 0.0296, 0.0261, 0.0261, 0.0216, 0.0203], [0.1149, 0.0423, 0.0397, 0.0373, 0.0329, 0.0226, 0.0156, 0.0114], [0.2913, 0.1376, 0.0946, 0.0784, 0.0476, 0.037, 0.0348, 0.0186], [0.1148, 0.0449, 0.0241, 0.0241, 0.0226, 0.0199, 0.0155, 0.0107], [0.3009, 0.1513, 0.0918, 0.0631, 0.0593, 0.0557, 0.0461, 0.0359], [0.0954, 0.0374, 0.0166, 0.0146, 0.0146, 0.0074, 0.0074, 0.0054], [0.2461, 0.0294, 0.0276, 0.0167, 0.0139, 0.0108, 0.0051, 0.0045], [0.1054, 0.0564, 0.053, 0.0111, 0.0081, 0.0072, 0.0056, 0.0046], [0.2746, 0.0652, 0.0289, 0.0255, 0.0187, 0.0155, 0.0128, 0.0088], [0.0776, 0.0153, 0.0093, 0.0093, 0.0087, 0.006, 0.0056, 0.0044], [0.3101, 0.0073, 0.005, 0.0044, 0.0044, 0.0042, 0.0042, 0.0042], [0.1655, 0.0734, 0.0164, 0.0145, 0.006, 0.006, 0.0057, 0.0039], [0.0583, 0.0332, 0.0202, 0.0167, 0.0115, 0.0089, 0.0048, 0.0048], [0.4201, 0.0391, 0.0304, 0.0252, 0.0237, 0.0209, 0.0127, 0.0119], [0.6247, 0.0845, 0.0399, 0.0242, 0.0156, 0.0095, 0.0065, 0.002], [0.0191, 0.0179, 0.0123, 0.0109, 0.0045, 0.0043, 0.0043, 0.0028], [0.0932, 0.0303, 0.0236, 0.0105, 0.0092, 0.0077, 0.0077, 0.0072], [0.3934, 0.0268, 0.0236, 0.0209, 0.0153, 0.0126, 0.0082, 0.0072], [0.716, 0.181, 0.0588, 0.0315, 0.0024, 0.002, 0.0015, 0.0007], [0.1404, 0.0752, 0.0428, 0.0378, 0.0139, 0.0102, 0.0102, 0.009], [0.8931, 0.0224, 0.0032, 0.0021, 0.0021, 0.0018, 0.0014, 0.0013], [0.9275, 0.0523, 0.015, 0.001, 0.0005, 0.0002, 0.0002, 0.0001], [0.687, 0.1737, 0.1194, 0.0098, 0.0028, 0.0006, 0.0006, 0.0005], [0.4581, 0.2779, 0.2452, 0.0108, 0.0016, 0.001, 0.0008, 0.0005], [0.6552, 0.1657, 0.0505, 0.0068, 0.0057, 0.0044, 0.0032, 0.0029], [0.104, 0.0491, 0.0407, 0.028, 0.0192, 0.0181, 0.016, 0.016], [0.0377, 0.0312, 0.0293, 0.0157, 0.0157, 0.0148, 0.0148, 0.013], [0.098, 0.0361, 0.0339, 0.0339, 0.0299, 0.0248, 0.0181, 0.0141], [0.0808, 0.049, 0.0337, 0.0316, 0.0232, 0.0204, 0.0159, 0.0159], [0.0999, 0.0502, 0.0472, 0.0443, 0.0391, 0.0269, 0.0269, 0.0269], [0.1222, 0.0479, 0.0422, 0.0397, 0.0373, 0.0329, 0.029, 0.0187], [0.1128, 0.0442, 0.039, 0.0344, 0.0323, 0.0304, 0.0236, 0.0209], [0.0612, 0.0421, 0.0371, 0.0328, 0.0272, 0.0272, 0.0255, 0.0255], [0.0482, 0.0426, 0.0376, 0.0332, 0.0275, 0.0275, 0.0228, 0.0228], [0.0574, 0.0447, 0.0371, 0.0327, 0.0307, 0.0271, 0.0211, 0.0211], [0.0594, 0.0525, 0.0318, 0.0299, 0.0281, 0.0193, 0.017, 0.017], [0.0699, 0.0544, 0.0398, 0.0398, 0.0227, 0.0213, 0.0188, 0.0188], [0.0923, 0.0923, 0.0635, 0.0596, 0.0265, 0.0265, 0.0249, 0.0219], [0.0679, 0.0679, 0.0497, 0.0387, 0.0363, 0.0235, 0.0207, 0.0207], [0.0671, 0.0523, 0.0523, 0.0338, 0.0263, 0.0232, 0.0218, 0.0205], [0.0538, 0.0538, 0.037, 0.0347, 0.0326, 0.0271, 0.0254, 0.0186], [0.0645, 0.0569, 0.0391, 0.0304, 0.0304, 0.0269, 0.0269, 0.0252], [0.0457, 0.0295, 0.0295, 0.0277, 0.026, 0.0244, 0.0244, 0.023], [0.0856, 0.0519, 0.0278, 0.0216, 0.0216, 0.0203, 0.0158, 0.0158], [0.1151, 0.0656, 0.0511, 0.0177, 0.0156, 0.0114, 0.0107, 0.0101], [0.1941, 0.0592, 0.0263, 0.0247, 0.0141, 0.0103, 0.0097, 0.0097], [0.2124, 0.0445, 0.0254, 0.0198, 0.0186, 0.0174, 0.0174, 0.0136], [0.162, 0.0596, 0.0409, 0.03, 0.0248, 0.0206, 0.016, 0.0151], [0.2795, 0.1496, 0.0355, 0.0277, 0.019, 0.0179, 0.0168, 0.0158], [0.5997, 0.1947, 0.028, 0.0193, 0.008, 0.0075, 0.0055, 0.0055], [0.3595, 0.3173, 0.103, 0.0191, 0.0191, 0.0109, 0.009, 0.007], [0.3953, 0.3953, 0.1454, 0.0286, 0.0036, 0.0021, 0.0018, 0.0016], [0.5577, 0.2325, 0.141, 0.0149, 0.0102, 0.008, 0.008, 0.0027], [0.4691, 0.414, 0.056, 0.0142, 0.0125, 0.0052, 0.0038, 0.0017], [0.6125, 0.1755, 0.0646, 0.057, 0.021, 0.0153, 0.0087, 0.0028], [0.657, 0.1882, 0.0507, 0.0164, 0.0128, 0.0128, 0.0078, 0.0057], [0.8681, 0.0629, 0.0432, 0.018, 0.0012, 0.0012, 0.0007, 0.0006]], "ranks": {"Rust": [65848, 142428, 154933, 63437, 93337, 61218, 63964, 80501, 85908, 73975, 45916, 75604, 45155, 30997, 38770, 35632, 21222, 18380, 44508, 35816, 62390, 74667, 56032, 14620, 15158, 15556, 13271, 8599, 11494, 11520, 9895, 7821, 7026, 6436, 6432, 6017, 5550, 4981, 5917, 6846, 5971, 5607, 6578, 8625, 7181, 7244, 5748, 5727, 4991, 6249, 15562, 14769, 13574, 11158, 16886, 15014, 8860, 7435, 11596, 5278, 5079, 3797, 3382]}}, {"pos": 378, "top": [[".", ",", "?", " \u2013", ";", "\u00a0", "er", "!"], [".", ",", "er", "?", ";", "!", " Very", "sy"], [",", ".", "?", ";", "!", "er", "\u3002", ":"], ["erias", "\uff0a\uff0a\uff0a\uff0a", "enner", "erdale", "erus", " Shemale", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "uggy"], ["er", " \u201c", "(@", " (@", "usst", "er\u00e0", "\uff20", "\u043d\u0438\u0432\u0435\u0440"], [",", "!\u201d.", " Apalagi", "enho", "usst", "er", "\u064a\u0636", "\u2019re"], ["\u2019re", "!\u201d", "\u201d?", "er\u00e0", "\u2019ve", "eza", "tsky", "\u2019ll"], ["\u00e9co", "erias", "ey", "!\u201d.", "yssey", "!\u201d", "eyed", "l\u00e4nder"], ["!\u201d.", "!\u201d", "!", "\u201d.", "!.", "\u201d?", "\u2019ll", "?\u201d."], [",", "\u2014you", "!", "\u30c3\u30b3", "\u00ads", "!!!", "yyyy", "ernt"], ["\u2019re", "yyyy", "!!!", "\u2019ll", "ernt", "...", "!", "\u2014you"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "erdale", "erias", "ernt", " **\u3010", " **#", "ykk", "asley"], ["erdale", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "erias", "yssey", "iverse", "INAN", "incy", " Blowjob"], ["erdale", " Philly", "eben", "yssey", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "incy", "iverse", "erias"], [" Philly", " savvy", " guys", "\u2014you", " folks", " gorgeous", " freaking", "YNAM"], [" savvy", " guys", " Philly", " freaking", " incredibly", " folks", " gorgeous", " skinny"], [" savvy", " folks", "\u2014you", " guys", " incredibly", " Philly", " pretty", " nicely"], ["\u2014you", " savvy", " folks", " incredibly", " yummy", " pretty", "\u2019ll", " guys"], ["\u2014you", " incredibly", " folks", "\u2014even", " savvy", " pretty", "\u2019ll", " freaking"], ["\u2014you", " \u2014", "\u2014even", " folks", " incredibly", "\u2019ll", " effortlessly", "\u2014"], ["\u2014you", "<|endoftext|>", " \u2014", "\n\n", "  \n\n", " folks", "\u2014even", "\u2014"], ["\u2014you", " incredibly", " freaking", " folks", " savvy", "\u2019ll", " effortlessly", " desperately"], ["\u2014you", " incredibly", " folks", " desperately", " effortlessly", " savvy", " freaking", " wildly"], [" incredibly", " \u2014", "\u2014you", " just", " wildly", " \u2019", "\n\n", " myriad"], ["\n\n", "  \n\n", " \n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", "    \n\n", "\t\n\n"], ["  \n\n", " folks", "\u2014you", " freaking", "\r\n\r\n", "\n\n", " \n\n", " \r\n\r\n"], ["\n\n", "\r\n\r\n", " \n\n", "  \n\n", " \r\n\r\n", " folks", "\u2014you", " freaking"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", " arguably", " wildly"], ["\n\n", "  \n\n", " \n\n", "\r\n\r\n", " \r\n\r\n", "\u2014you", "   \n\n", " incredibly"], ["  \n\n", " \n\n", "\u2014you", "   \n\n", " \u2014", " \r\n\r\n", " incredibly", "    \n\n"], ["  \n\n", " \n\n", " @", " incredibly", "\n\n", " wildly", " aggressively", " desperately"], [" incredibly", " @", " just", " desperately", " wildly", " aggressively", " really", " relentlessly"], [" incredibly", " relentlessly", " desperately", " aggressively", " wildly", " really", " damn", " just"], [" incredibly", " aggressively", " relentlessly", " desperately", " wildly", " insanely", " freaking", " relentless"], [" aggressively", " relentlessly", " incredibly", " desperately", " freaking", " insanely", " ridiculously", " relentless"], [" desperately", " relentlessly", " incredibly", " insanely", " aggressively", " ridiculously", " desperate", " damn"], [" desperately", " ridiculously", " insanely", " aggressively", " freaking", " relentlessly", " damn", " incredibly"], [" desperately", " insanely", " ridiculously", " aggressively", " incredibly", " damn", " impossible", " desperate"], [" desperately", " impossible", " insanely", " ridiculously", " desperate", " damn", " relentlessly", " aggressively"], [" desperately", " impossible", " insanely", " desperate", " ridiculously", " damn", " absurd", " brutally"], [" insanely", " desperately", " impossible", " ridiculously", " desperate", " ridiculous", " absurd", " brutally"], [" desperately", " desperate", " aggressively", " impossible", " insanely", " doomed", " ridiculously", " absurd"], [" desperately", " desperate", " aggressively", " doomed", " impossible", " absurd", " relentlessly", " insanely"], [" desperate", " doomed", " desperately", " desperation", " aggressively", " impossible", " brutally", " forced"], [" doomed", " desperately", " desperate", " desperation", " impossible", " redesign", " aggressively", " absurd"], [" desperately", " desperate", " aggressively", " desperation", " impossible", " doomed", " absurd", " redesign"], [" desperately", " desperate", " insanely", " doomed", " impossible", " dangerously", " incredibly", " ridiculously"], [" doomed", " desperately", " desperate", " now", " pushing", " impossible", " insanely", " dangerously"], ["\u5012\u903c", " doomed", " now", " tightening", " tweaking", " relentlessly", " drastically", " desperately"], ["\u5012\u903c", " now", " tweaking", " doomed", " pushing", " tightening", " shrinking", " abandoning"], ["\u5012\u903c", " doomed", " sabot", " sabotage", "\u903c\u8feb", "Attempting", " destabil", " pushing"], ["\u5012\u903c", "Attempting", " attempting", " Trying", "Trying", " now", " doomed", " trying"], [" now", "\u2019ve", " attempting", "\u73b0\u5728\u5df2\u7ecf", "\u73b0\u5728\u662f", "-now", " tightening", "Attempting"], ["\u2019ve", " now", " attempting", " trying", "\u73b0\u5728\u5df2\u7ecf", " \u062f\u0627\u0631\u06cc\u062f", "Attempting", "\u2019re"], ["\u2019ve", " now", " trying", "-now", "\u73b0\u5728\u5df2\u7ecf", "\u73b0\u5728\u662f", "_now", " attempting"], ["\u521a\u521a", " just", "\u521a", "\u525b\u525b", "just", "\u521a\u624d", "\u521a\u4ece", "\u525b"], ["\u521a\u521a", " just", "\u521a", "\u2019ve", "\u525b\u525b", "just", "\u521a\u624d", "\u525b"], ["\u521a\u521a", " just", "\u2019ve", "\u521a", "just", "\u525b\u525b", "\u525b", "\u521a\u624d"], ["\u521a\u521a", "\u2019ve", " just", "\u521a", "just", "\u525b\u525b", " swapped", "\u525b"], ["\u2019ve", " just", "\u521a\u521a", "'ve", "just", "\u2019re", " swapped", "\u521a"], [" just", "\u2019ve", "just", "'ve", "\u521a\u521a", "\u2019re", " Just", " swapped"], [" just", "\u2019ve", "'ve", "\u2019re", " have", "just", " are", " Just"], ["\u2019ve", "\u2019re", " just", "'ve", " have", " are", " haven", " walked"]], "p": [[0.7043, 0.2591, 0.0166, 0.0039, 0.0031, 0.0019, 0.0015, 0.0014], [0.2043, 0.1919, 0.055, 0.0244, 0.0084, 0.0058, 0.0058, 0.0033], [0.5453, 0.4247, 0.0128, 0.0025, 0.0021, 0.0007, 0.0006, 0.0006], [0.0102, 0.0048, 0.0033, 0.0017, 0.0016, 0.0015, 0.0015, 0.0014], [0.0421, 0.0078, 0.0042, 0.0042, 0.0037, 0.0035, 0.0035, 0.0029], [0.0064, 0.0034, 0.0027, 0.0022, 0.0019, 0.0018, 0.0017, 0.0017], [0.0078, 0.0044, 0.0034, 0.0027, 0.0024, 0.0024, 0.0021, 0.0018], [0.0024, 0.002, 0.0018, 0.0016, 0.0015, 0.0013, 0.0012, 0.0012], [0.0646, 0.0473, 0.0112, 0.0077, 0.0064, 0.0053, 0.0047, 0.0041], [0.0231, 0.0031, 0.0019, 0.0017, 0.0016, 0.0015, 0.0013, 0.0011], [0.0101, 0.0078, 0.0045, 0.0045, 0.0042, 0.0031, 0.0027, 0.0027], [0.0046, 0.0038, 0.0031, 0.0014, 0.0014, 0.0013, 0.0012, 0.0012], [0.0056, 0.0049, 0.0041, 0.0014, 0.0013, 0.0012, 0.0012, 0.0012], [0.0019, 0.0015, 0.0013, 0.0013, 0.0013, 0.0013, 0.0011, 0.001], [0.0175, 0.012, 0.0039, 0.0037, 0.003, 0.0025, 0.0024, 0.0013], [0.0149, 0.0075, 0.0055, 0.0035, 0.0035, 0.0033, 0.0021, 0.0017], [0.0219, 0.0133, 0.0103, 0.0103, 0.0086, 0.008, 0.0063, 0.0049], [0.1737, 0.0208, 0.0098, 0.0087, 0.0087, 0.0059, 0.0059, 0.0041], [0.5691, 0.0161, 0.0118, 0.0086, 0.0072, 0.0063, 0.0059, 0.0046], [0.3188, 0.0431, 0.018, 0.018, 0.014, 0.0052, 0.0052, 0.0048], [0.0736, 0.0736, 0.0307, 0.0271, 0.0094, 0.0068, 0.006, 0.005], [0.0335, 0.014, 0.007, 0.007, 0.0051, 0.0031, 0.0031, 0.0029], [0.0253, 0.0224, 0.0093, 0.0077, 0.0057, 0.005, 0.0047, 0.0047], [0.01, 0.0094, 0.0088, 0.0069, 0.0061, 0.0057, 0.0054, 0.005], [0.385, 0.2335, 0.1508, 0.0381, 0.0336, 0.0246, 0.0075, 0.0066], [0.0282, 0.0206, 0.0171, 0.0133, 0.0133, 0.0133, 0.0117, 0.011], [0.5112, 0.0307, 0.0239, 0.0164, 0.0069, 0.0053, 0.0042, 0.0037], [0.7777, 0.082, 0.06, 0.0092, 0.0036, 0.0026, 0.0012, 0.001], [0.2561, 0.2561, 0.1068, 0.027, 0.0186, 0.0144, 0.0144, 0.0064], [0.6117, 0.1205, 0.0416, 0.0305, 0.0127, 0.0119, 0.0047, 0.0047], [0.2232, 0.1354, 0.0342, 0.0267, 0.0235, 0.0172, 0.0172, 0.0162], [0.0716, 0.0492, 0.036, 0.0248, 0.0248, 0.0205, 0.0205, 0.015], [0.0684, 0.0252, 0.0237, 0.0209, 0.0173, 0.0173, 0.0127, 0.0127], [0.0634, 0.0595, 0.0409, 0.0361, 0.0248, 0.0219, 0.0193, 0.0171], [0.0506, 0.0476, 0.0447, 0.0447, 0.0255, 0.0225, 0.0225, 0.0211], [0.0858, 0.0405, 0.0405, 0.0381, 0.0381, 0.0357, 0.0231, 0.0217], [0.0585, 0.0456, 0.0402, 0.0378, 0.0333, 0.0294, 0.0294, 0.0215], [0.0701, 0.0482, 0.0425, 0.0274, 0.0274, 0.0242, 0.0201, 0.0189], [0.0718, 0.0409, 0.0409, 0.0384, 0.0339, 0.0219, 0.0181, 0.0181], [0.0544, 0.0451, 0.0424, 0.031, 0.0291, 0.0257, 0.0227, 0.0166], [0.0574, 0.0507, 0.0507, 0.0395, 0.0307, 0.0271, 0.0239, 0.0225], [0.0531, 0.0414, 0.0365, 0.0343, 0.0284, 0.0267, 0.0267, 0.0267], [0.0434, 0.0383, 0.0318, 0.0318, 0.028, 0.0263, 0.0232, 0.0232], [0.0616, 0.0616, 0.0543, 0.031, 0.0241, 0.0226, 0.0188, 0.0176], [0.061, 0.0506, 0.0506, 0.0326, 0.0326, 0.0224, 0.0198, 0.0154], [0.0601, 0.053, 0.0284, 0.0267, 0.0267, 0.025, 0.0172, 0.0152], [0.0471, 0.0345, 0.0286, 0.0286, 0.0237, 0.0163, 0.0163, 0.0163], [0.0487, 0.043, 0.0277, 0.0191, 0.0179, 0.0179, 0.0168, 0.0149], [0.0375, 0.0311, 0.0242, 0.0213, 0.0188, 0.0156, 0.0156, 0.0156], [0.1716, 0.0247, 0.015, 0.011, 0.011, 0.011, 0.0103, 0.0103], [0.1741, 0.0303, 0.0221, 0.0208, 0.0195, 0.0134, 0.0098, 0.0092], [0.0934, 0.0878, 0.0825, 0.047, 0.0303, 0.0268, 0.0251, 0.0208], [0.3043, 0.2686, 0.0235, 0.022, 0.0172, 0.0152, 0.0152, 0.0134], [0.5423, 0.0287, 0.027, 0.0224, 0.0164, 0.012, 0.012, 0.0093], [0.654, 0.1288, 0.0113, 0.0099, 0.0088, 0.0082, 0.0082, 0.0077], [0.943, 0.0285, 0.0196, 0.003, 0.0026, 0.001, 0.0007, 0.0005], [0.8543, 0.0619, 0.0425, 0.0177, 0.0074, 0.0074, 0.0021, 0.0019], [0.7383, 0.0882, 0.0778, 0.0606, 0.0105, 0.0093, 0.0034, 0.0027], [0.3912, 0.3452, 0.1848, 0.025, 0.0134, 0.0081, 0.0049, 0.0038], [0.8072, 0.1403, 0.0244, 0.0148, 0.0033, 0.0023, 0.0014, 0.0013], [0.9287, 0.0594, 0.0063, 0.002, 0.0006, 0.0006, 0.0005, 0.0003], [0.6023, 0.3653, 0.0125, 0.0125, 0.0017, 0.0013, 0.0013, 0.0004], [0.9122, 0.0454, 0.0354, 0.0023, 0.002, 0.0008, 0.0004, 0.0002]], "ranks": {"Rust": [52626, 71040, 66223, 15624, 9195, 9627, 13494, 13094, 26554, 19388, 12498, 17913, 7720, 12691, 64452, 55770, 38533, 62292, 56772, 26175, 45978, 78754, 62757, 32503, 45336, 40672, 25043, 21246, 22856, 15254, 7168, 6642, 8615, 7980, 9178, 13754, 14637, 19898, 26857, 30318, 21887, 24312, 25245, 26153, 12279, 10833, 6981, 11375, 14168, 25813, 30657, 58936, 65598, 107332, 103573, 132317, 75514, 77086, 65314, 44971, 42051, 12424, 8995]}}, {"pos": 379, "top": [[".", ",", "\u2013", "y", " \u2013", "s", ";", "t"], [",", "\u2013", " very", "\u2013and", ".", " kids", " pretty", "kids"], [",", ".", "\u2013", "\u2013and", ";", "\u2026", "?", ".."], [" veggies", " Blowjob", " Shemale", "erias", " Guta", " Pubbl", "\u6700\u65b0\u53d1\u5e03", " kids"], [" kids", " crazy", " Aussie", " veggies", " gonna", "couldn", " pretty", " really"], [" veggies", " crazy", ".pretty", "couldn", " funny", " gotta", " nasty", " Aussie"], [" veggies", " crazy", " nasty", "couldn", " freaking", " gotta", " creepy", " kids"], [" veggies", " freaking", ".pretty", " gotta", " crazy", " nasty", " crappy", " comfy"], [" veggies", ".pretty", " freaking", " guys", " pretty", " kids", " gotta", " gonna"], [" veggies", " freaking", " kids", " gonna", " gotta", " pretty", ".pretty", "couldn"], [" freaking", " kids", " guys", " gonna", " veggies", " gotta", " got", " getting"], [" freaking", " veggies", " guys", " kids", " gonna", " gotta", " comfy", " Philly"], [" freaking", " veggies", " guys", " gotta", " gonna", " kids", " comfy", " Philly"], [" freaking", " veggies", " guys", " crazy", " gonna", " kids", " grandma", " gotta"], [" freaking", " kids", " guys", " veggies", " Philly", " folks", " busted", " gorgeous"], [" freaking", " kids", " veggies", " guys", " folks", " busted", " Philly", " moms"], [" freaking", " veggies", " kids", " guys", " crazy", " gonna", " gorgeous", " gotta"], [" freaking", " veggies", " kids", " guys", " crazy", " gotta", " Philly", " gorgeous"], [" freaking", " veggies", " kids", " guys", " comfy", " gotta", " crazy", " Philly"], [" freaking", " kids", " veggies", " guys", " folks", " gotta", " comfy", " busted"], [" freaking", " kids", " folks", " guys", " gotta", " busted", " veggies", " Philly"], [" freaking", " veggies", " guys", " kids", " busted", " scary", " gotta", " HUGE"], [" freaking", " busted", " kids", " HUGE", " veggies", " nasty", " scary", " guys"], [" freaking", " busted", " kids", " folks", " incredibly", " HUGE", " smack", " nasty"], [" freaking", " busted", " folks", " incredibly", " HUGE", " smack", " kids", "\n\n"], [" freaking", " busted", " folks", " incredibly", " nasty", " HUGE", " kids", " smack"], [" freaking", " busted", " nasty", " incredibly", " folks", " kids", " guys", " crazy"], [" freaking", " busted", " incredibly", " folks", "\n\n", " smack", " nasty", " kids"], [" freaking", " busted", " incredibly", " nasty", " crazy", " brag", " smack", " skinny"], [" freaking", " busted", " incredibly", " nasty", " crazy", " weird", " fucking", " ridiculously"], [" freaking", " busted", " incredibly", " crazy", " nasty", " weird", " pretty", " HUGE"], [" freaking", " incredibly", " nasty", " crazy", " weird", " HUGE", " busted", " pretty"], [" incredibly", " freaking", " crazy", " nasty", " weird", " HUGE", " huge", " incredible"], [" freaking", " incredibly", " weird", " nasty", " crazy", " insanely", " ridiculously", " HUGE"], [" freaking", " incredibly", " nasty", " ridiculously", " insanely", " weird", " busted", " HUGE"], [" freaking", " incredibly", " ridiculously", " insanely", " nasty", " weird", " HUGE", " brutally"], [" freaking", " incredibly", " ridiculously", " nasty", " insanely", " weird", " brutally", " massively"], [" incredibly", " freaking", " ridiculously", " insanely", " nasty", " massively", " weird", " brutally"], [" incredibly", " ridiculously", " freaking", " insanely", " brutally", " massively", " nasty", " horrific"], [" incredibly", " freaking", " insanely", " ridiculously", " brutally", " weird", " nasty", " ridiculous"], [" incredibly", " insanely", " ridiculously", " brutally", " freaking", " ridiculous", " absurd", " nasty"], [" brutally", " ridiculously", " insanely", " incredibly", " absurd", " ridiculous", " catastrophic", " freaking"], [" brutally", " nasty", " incredibly", " ridiculously", " insanely", " absurd", " ridiculous", " freaking"], [" redesign", " brutally", " tweaking", " insanely", " incredibly", " tweak", " ridiculously", " nasty"], [" redesign", " incredibly", " dramatically", " drastically", " desperation", " brutally", " desperate", " impossible"], [" incredibly", " massively", " drastically", " brutally", " massive", " impossible", " skyrocket", " redesign"], [" incredibly", " drastically", " massively", " impossible", " dramatically", " skyrocket", " insanely", " ridiculously"], [" incredibly", " drastically", " massively", " added", " dramatically", " impossible", " skyrocket", " adding"], [" drastically", " tightening", " added", " tighter", "\u5012\u903c", " incredibly", " destabil", " impossible"], ["\u5012\u903c", " drastically", " tightening", " contradictions", " added", " contradictory", " destabil", " tighter"], ["\u5012\u903c", " destabil", " sabotage", " sabot", " tightening", " tighter", " th\u00eam", "\u903c\u8feb"], ["\u5012\u903c", " destabil", " sabot", " sabotage", " tightening", "Added", " contradictions", "\u589e\u52a0\u4e86"], [" tightening", " tightened", " destabil", " sabotage", " sabot", " contradictions", "Added", " tighter"], [" contradictions", " contradictory", " contradiction", " contradict", " sabotage", " collided", " contrad", " sabot"], [" contradictory", " contradictions", " added", " contradiction", "\u6dfb\u52a0\u4e86", " collided", " contradict", "Added"], [" added", " swapped", "\u6dfb\u52a0\u4e86", "Added", " threw", " collided", " blew", " invalidated"], [" swapped", " added", " threw", "\u6dfb\u52a0\u4e86", " switched", " blew", " jumped", " collided"], [" threw", " collided", " added", " blew", " killed", " swapped", " jumped", " pulled"], [" added", " swapped", " threw", " pulled", "Added", " tightened", " collided", " burned"], [" traded", " threw", " added", " swapped", " pulled", " declared", " killed", " tightened"], [" turned", " traded", " pulled", " swapped", " added", " moved", " threw", " nailed"], [" turned", " walked", " pulled", " swapped", " traded", " added", " nailed", " handed"], [" turned", " moved", " added", " swapped", " pulled", " traded", " walked", " shifted"]], "p": [[0.4975, 0.4391, 0.0318, 0.008, 0.0055, 0.002, 0.0016, 0.0011], [0.0675, 0.016, 0.0151, 0.0142, 0.011, 0.0086, 0.0081, 0.0071], [0.6468, 0.2696, 0.0602, 0.0028, 0.0014, 0.0014, 0.0012, 0.0012], [0.0052, 0.0036, 0.0034, 0.003, 0.0023, 0.0023, 0.0021, 0.0021], [0.0307, 0.0288, 0.0224, 0.0186, 0.0136, 0.012, 0.01, 0.01], [0.0401, 0.0189, 0.0089, 0.0084, 0.0061, 0.0054, 0.0051, 0.0045], [0.0428, 0.0378, 0.0276, 0.0215, 0.0215, 0.0157, 0.0102, 0.0102], [0.1602, 0.038, 0.0159, 0.014, 0.014, 0.0124, 0.0109, 0.0102], [0.1328, 0.0358, 0.0336, 0.0315, 0.0296, 0.0278, 0.0231, 0.0204], [0.0713, 0.0246, 0.0217, 0.0169, 0.0159, 0.0124, 0.0124, 0.0109], [0.0737, 0.0574, 0.0539, 0.0476, 0.042, 0.0327, 0.0271, 0.0175], [0.1421, 0.0918, 0.0338, 0.0263, 0.0132, 0.011, 0.0097, 0.0091], [0.2442, 0.0898, 0.02, 0.0188, 0.0166, 0.0147, 0.0122, 0.0089], [0.3433, 0.0597, 0.0437, 0.0171, 0.0161, 0.0151, 0.0125, 0.0117], [0.4497, 0.0734, 0.0537, 0.0474, 0.0393, 0.0254, 0.0154, 0.012], [0.4632, 0.0857, 0.0553, 0.052, 0.0315, 0.0231, 0.0149, 0.0096], [0.2647, 0.1037, 0.0915, 0.0758, 0.0204, 0.0149, 0.0149, 0.0132], [0.2188, 0.0857, 0.0805, 0.0405, 0.0191, 0.0191, 0.018, 0.0149], [0.4679, 0.0559, 0.0409, 0.0318, 0.0181, 0.016, 0.0133, 0.0103], [0.4732, 0.0726, 0.0499, 0.0267, 0.0251, 0.0183, 0.0172, 0.0134], [0.5171, 0.0844, 0.0311, 0.0227, 0.0213, 0.0213, 0.0201, 0.0122], [0.3584, 0.019, 0.0168, 0.0139, 0.0115, 0.0095, 0.0074, 0.0066], [0.438, 0.0383, 0.015, 0.0141, 0.0132, 0.011, 0.011, 0.0091], [0.483, 0.1013, 0.0212, 0.0146, 0.0137, 0.0121, 0.0107, 0.0094], [0.4908, 0.1166, 0.0244, 0.0158, 0.0148, 0.0115, 0.0115, 0.0102], [0.5773, 0.1068, 0.0238, 0.0154, 0.0128, 0.0113, 0.0099, 0.0073], [0.4645, 0.125, 0.0231, 0.0217, 0.0169, 0.0132, 0.0103, 0.0096], [0.3113, 0.1565, 0.0477, 0.0349, 0.0272, 0.0212, 0.0155, 0.0083], [0.2956, 0.1684, 0.0514, 0.0214, 0.0138, 0.013, 0.0115, 0.0095], [0.3947, 0.1062, 0.0471, 0.0209, 0.0209, 0.0112, 0.0105, 0.0099], [0.3349, 0.0619, 0.0514, 0.0453, 0.0376, 0.0332, 0.0201, 0.0147], [0.266, 0.1256, 0.0524, 0.0434, 0.0408, 0.0298, 0.028, 0.0263], [0.1277, 0.1127, 0.0727, 0.047, 0.0441, 0.0303, 0.0222, 0.0196], [0.2231, 0.1054, 0.0468, 0.0388, 0.0342, 0.0302, 0.0266, 0.0195], [0.1713, 0.0917, 0.0491, 0.0461, 0.0382, 0.0359, 0.017, 0.017], [0.1509, 0.1251, 0.0522, 0.049, 0.0432, 0.0262, 0.0217, 0.0169], [0.1346, 0.1049, 0.0527, 0.0465, 0.0362, 0.0182, 0.0161, 0.0133], [0.1139, 0.0887, 0.0475, 0.0446, 0.0288, 0.0239, 0.0239, 0.0186], [0.0866, 0.0559, 0.0493, 0.0463, 0.0361, 0.0233, 0.0206, 0.0193], [0.072, 0.0527, 0.0437, 0.0437, 0.0386, 0.0265, 0.0249, 0.022], [0.0551, 0.0518, 0.0379, 0.0379, 0.0379, 0.0356, 0.026, 0.0216], [0.0441, 0.0414, 0.0366, 0.0366, 0.0323, 0.0267, 0.0222, 0.0208], [0.0347, 0.0306, 0.0306, 0.0306, 0.027, 0.0224, 0.021, 0.021], [0.0276, 0.026, 0.0244, 0.0215, 0.0202, 0.0178, 0.0178, 0.0158], [0.0373, 0.02, 0.0188, 0.0166, 0.0156, 0.0146, 0.0137, 0.0137], [0.0517, 0.0334, 0.026, 0.0244, 0.023, 0.0203, 0.0168, 0.0168], [0.0602, 0.0365, 0.0322, 0.0195, 0.0184, 0.0172, 0.0162, 0.0143], [0.0517, 0.0334, 0.019, 0.019, 0.0168, 0.0168, 0.0158, 0.0158], [0.0415, 0.0252, 0.0173, 0.0163, 0.0153, 0.0144, 0.0135, 0.0135], [0.1594, 0.0334, 0.023, 0.0168, 0.0123, 0.0115, 0.0108, 0.009], [0.1119, 0.0283, 0.0266, 0.0183, 0.0142, 0.0086, 0.0081, 0.0072], [0.063, 0.0247, 0.0218, 0.0192, 0.0192, 0.0132, 0.0103, 0.0091], [0.0861, 0.0359, 0.0298, 0.0263, 0.0218, 0.0159, 0.015, 0.015], [0.1338, 0.0716, 0.0408, 0.0383, 0.0232, 0.0205, 0.0141, 0.0141], [0.0618, 0.0546, 0.0513, 0.0452, 0.0399, 0.0399, 0.0331, 0.0274], [0.1478, 0.0743, 0.048, 0.0398, 0.033, 0.031, 0.0273, 0.0213], [0.0748, 0.062, 0.0514, 0.0483, 0.0354, 0.0275, 0.0275, 0.0243], [0.0753, 0.0551, 0.0518, 0.0334, 0.0295, 0.0277, 0.026, 0.0245], [0.1339, 0.0525, 0.0525, 0.0493, 0.036, 0.0248, 0.0193, 0.0181], [0.1917, 0.0751, 0.0751, 0.0663, 0.0402, 0.019, 0.0168, 0.0157], [0.4407, 0.0868, 0.0526, 0.041, 0.0362, 0.0234, 0.0234, 0.0142], [0.2866, 0.0498, 0.0468, 0.0388, 0.0364, 0.0364, 0.025, 0.025], [0.352, 0.1663, 0.089, 0.0612, 0.0308, 0.0255, 0.0255, 0.0225]], "ranks": {"Rust": [15823, 45888, 23322, 1477, 1723, 5337, 4528, 6641, 10972, 10735, 12002, 14586, 10950, 31496, 72426, 66485, 70535, 68436, 81117, 61501, 90131, 125699, 119443, 72459, 39927, 47429, 31149, 24445, 35400, 29778, 30440, 18054, 34865, 36798, 21941, 33278, 27282, 30370, 38181, 42680, 21800, 22615, 25269, 32721, 19522, 20133, 13483, 14920, 11778, 14706, 31963, 46364, 47359, 73953, 60113, 62950, 30000, 37451, 29432, 15607, 19504, 11486, 5957]}}, {"pos": 380, "top": [[".", ",", "\u2013", " \u2013", " ", "\u00a0", ";", "-"], ["\u2011", "\u540d\u601d", "sville", "\u0627\u064b", "\uff5e\uff5e", "\u6108\u4f86", " \uff5e", "\u5404\u79cd\u5404\u6837\u7684"], ["\u2013", "\u2013and", ".\u2013", "\u2026..", "**\u2013", "\u2011", ",", "\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014"], [" **\u300c", "TRGL", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **>>", " Blowjob", "\u2015\u2015\u2015\u2015", " milfs", "----------</"], [" \u300d", "\u5404\u79cd\u5404\u6837\u7684", " \").", "thinkable", " **>>", "\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500", " **\u300c", "\uff1d\uff1d\uff1d\uff1d"], [" \u300d", " **\u300c", "\u5404\u79cd\u5404\u6837\u7684", " \").", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "thinkable", " **>>", ".openg"], [" **\u300c", " \u300d", " \u00bb**", "\u2501\u2501\u2501\u2501", ":''", " **\u25cb", "\u2015\u2015\u2015\u2015", " '''"], [" **\u300c", " \u300d", " **>>", " \u00bb**", " **\u25cb", "\u4e94\u989c\u516d\u8272\u7684", ":''", "\u2501\u2501\u2501\u2501"], [" **\u300c", " \u300d", " **>>", "\u4e94\u989c\u516d\u8272\u7684", " \u00bb**", "\u00bb.**", " '''", " \u00bb."], ["\u4e94\u989c\u516d\u8272\u7684", "TROD", "\u5404\u79cd\u5404\u6837\u7684", " **>>", " **\u300c", "\u53e3\u5446", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "~-~-~-~-"], [" \u300d", " '''", " **\u300c", ":''", "\u3001\u300e", "-down", "\u4e94\u989c\u516d\u8272\u7684", "\u5982\u837c"], [" **\u300c", " \u00bb**", "\u4e94\u989c\u516d\u8272\u7684", " **>>", "TROD", ":''", "\u00bb.**", " \u300d"], [" **\u300c", " \u00bb**", " \u300d", "\u4e94\u989c\u516d\u8272\u7684", ":''", " **>>", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "TROD"], [" **\u300c", " \u00bb**", "\u4e94\u989c\u516d\u8272\u7684", ":''", " freaking", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "TROD", " skinny"], [" freaking", " busted", " guys", " skinny", " Philly", " goofy", " kids", " big"], [" freaking", " busted", " goofy", " skinny", " guys", " kids", " folks", " Philly"], [" freaking", " skinny", " big", " busted", " guys", " bigger", " goofy", " kids"], [" freaking", " skinny", " goofy", " busted", " \u00bb**", " bigger", " scary", " comfy"], [" freaking", " skinny", " busted", " goofy", " scary", " bigger", " funky", " guys"], [" freaking", " skinny", " bigger", " busted", " big", " pretty", " folks", " goofy"], [" freaking", " busted", " folks", " bigger", " skinny", " big", " pretty", " smack"], [" freaking", " skinny", " busted", " bigger", " scary", " goofy", " big", " funky"], [" freaking", " bigger", " skinny", " busted", " incredibly", " big", " smack", " scary"], [" bigger", " incredibly", " big", " freaking", " skinny", " smack", " busted", " wildly"], [" freaking", " bigger", " incredibly", " smack", " big", " busted", " skinny", " folks"], [" freaking", " bigger", " big", " skinny", " incredibly", " nasty", " scary", " crazy"], [" big", " bigger", " freaking", " skinny", " nasty", " skyrocket", " incredibly", " crazy"], [" big", " incredibly", " bigger", " wildly", " freaking", " huge", " busted", " massive"], [" incredibly", " big", " wildly", " skinny", " freaking", " bigger", " nasty", " massive"], [" big", " bigger", " incredibly", " crazy", " freaking", " skinny", " massive", " huge"], [" big", " bigger", " huge", " crazy", " incredibly", " massive", " wildly", " skinny"], [" big", " incredibly", " huge", " massive", " bigger", " crazy", " wildly", " massively"], [" incredibly", " massive", " big", " huge", " massively", " crazy", " wildly", " bigger"], [" incredibly", " massively", " wildly", " insanely", " massive", " nasty", " huge", " weird"], [" incredibly", " massively", " nasty", " insanely", " wildly", " massive", " weird", " ridiculously"], [" incredibly", " wildly", " massively", " insanely", " nasty", " ridiculously", " massive", " weird"], [" incredibly", " nasty", " wildly", " massively", " insanely", " ridiculously", " freaking", " weird"], [" incredibly", " wildly", " massively", " nasty", " insanely", " massive", " ridiculously", " hell"], [" incredibly", " wildly", " massively", " insanely", " massive", " impossible", " hell", " ridiculously"], [" incredibly", " impossible", " wildly", " hell", " nightmare", " insanely", " massively", " ridiculously"], [" incredibly", " nightmare", " impossible", " insanely", " wildly", " massive", " chaos", " hell"], [" nightmare", " incredibly", " chaos", " wildly", " horrific", " insanely", " impossible", " hell"], [" nightmare", " incredibly", " nasty", " impossible", " hell", " horrific", " chaos", " wildly"], [" nightmare", " impossible", " worse", " hell", " incredibly", " horrific", " nasty", " chaos"], [" nightmare", " worse", " hell", " impossible", " incredibly", " chaos", " horrific", " absurd"], [" nightmare", " worse", " hell", " impossible", " incredibly", "\u53d8\u6210\u4e86\u4e00\u4e2a", "\u53d8\u6210\u4e00\u4e2a", " massively"], [" nightmare", "\u53d8\u6210\u4e86\u4e00\u4e2a", " impossible", " worse", "\u53d8\u6210\u4e00\u4e2a", " hell", " skyrocket", " chaos"], [" impossible", " nightmare", "\u53d8\u6210\u4e86\u4e00\u4e2a", " hell", "\u53d8\u6210\u4e00\u4e2a", " chaos", " wildly", " incredibly"], ["\u53d8\u6210\u4e86\u4e00\u4e2a", " impossible", "\u53d8\u6210\u4e00\u4e2a", " nightmare", " hell", " crippling", " chaos", " manageable"], [" impossible", "\u53d8\u6210\u4e00\u4e2a", " nightmare", "\u53d8\u6210\u4e86\u4e00\u4e2a", " manageable", " crippling", " desperation", " logistical"], [" impossible", " manageable", "\u53d8\u6210\u4e00\u4e2a", " nightmare", " desperation", " sabotage", "\u53d8\u6210\u4e86\u4e00\u4e2a", "\u7684\u96be\u5ea6"], [" impossible", " nightmare", "\u7684\u96be\u5ea6", " Impossible", " desperation", " imposs", " sabotage", "Impossible"], [" impossible", " nightmare", " imposs", " Impossible", " feasibility", "\u7684\u96be\u5ea6", "Impossible", " difficulty"], [" impossible", " Impossible", " imposs", " nightmare", " feasibility", "Impossible", " into", "into"], [" impossible", " feasibility", " Impossible", " imposs", " nightmare", "Impossible", "\u53ef\u884c\u6027", "pike"], [" impossible", " Impossible", " feasibility", " nightmare", " imposs", "pike", " feasible", " \u201c"], [" impossible", " Impossible", "Impossible", " imposs", " nightmare", " feasibility", " \u201c", " wrench"], [" impossible", " Impossible", " imposs", "Impossible", " nightmare", " wrench", " screws", " feasibility"], [" impossible", " Impossible", "Impossible", " imposs", " \u201c", " \"", " nightmare", " screws"], [" impossible", " Impossible", " \"", " \u201c", " imposs", " screws", " architecture", " architectural"], [" impossible", " \"", " \u201c", " Impossible", " screws", " imposs", " wrench", " architectural"], [" \"", " impossible", " \u201c", " a", " Impossible", " architecture", " architectural", " wrench"], [" \"", " a", " an", " impossible", " your", " \u201c", " the", " architecture"]], "p": [[0.4509, 0.2413, 0.0834, 0.0834, 0.0288, 0.0175, 0.0083, 0.0083], [0.022, 0.0076, 0.0071, 0.0034, 0.0034, 0.003, 0.0028, 0.0026], [0.1496, 0.1165, 0.0456, 0.026, 0.0229, 0.0131, 0.0079, 0.0058], [0.0239, 0.0154, 0.0136, 0.012, 0.0113, 0.0082, 0.0077, 0.0073], [0.0214, 0.0069, 0.0065, 0.0042, 0.004, 0.004, 0.0037, 0.0027], [0.0264, 0.0097, 0.0038, 0.0028, 0.0025, 0.0022, 0.0019, 0.0018], [0.1786, 0.0512, 0.0166, 0.0147, 0.0129, 0.0101, 0.0061, 0.0054], [0.3018, 0.0181, 0.017, 0.016, 0.0097, 0.0091, 0.008, 0.0059], [0.2543, 0.0826, 0.0209, 0.0112, 0.0105, 0.0099, 0.0072, 0.006], [0.0156, 0.0101, 0.0074, 0.0069, 0.0051, 0.0045, 0.0042, 0.0037], [0.0584, 0.0115, 0.0079, 0.0045, 0.0035, 0.0035, 0.0035, 0.0031], [0.0735, 0.0136, 0.0106, 0.0093, 0.0077, 0.0064, 0.0057, 0.0053], [0.0543, 0.0146, 0.0107, 0.0089, 0.0089, 0.0078, 0.0045, 0.0039], [0.0195, 0.0143, 0.006, 0.006, 0.0046, 0.0038, 0.0028, 0.0028], [0.0326, 0.021, 0.0136, 0.0113, 0.0106, 0.0093, 0.0093, 0.0088], [0.0839, 0.0272, 0.0212, 0.0212, 0.0176, 0.0146, 0.0061, 0.0061], [0.0532, 0.05, 0.0323, 0.0196, 0.0196, 0.0196, 0.0184, 0.0153], [0.0224, 0.0164, 0.0088, 0.0077, 0.006, 0.0057, 0.0044, 0.0034], [0.0601, 0.0221, 0.0152, 0.0134, 0.0092, 0.0076, 0.0076, 0.0076], [0.0718, 0.0248, 0.0219, 0.0206, 0.0193, 0.017, 0.0133, 0.0117], [0.0713, 0.049, 0.046, 0.0297, 0.0262, 0.0262, 0.0159, 0.014], [0.0502, 0.0119, 0.0105, 0.0099, 0.0072, 0.0072, 0.0056, 0.0053], [0.0399, 0.0201, 0.0156, 0.0147, 0.0114, 0.0095, 0.0084, 0.0074], [0.0333, 0.0276, 0.0276, 0.0259, 0.0157, 0.013, 0.013, 0.0102], [0.0342, 0.0284, 0.025, 0.0195, 0.0195, 0.0195, 0.0183, 0.0134], [0.0621, 0.0354, 0.0275, 0.0259, 0.0189, 0.0178, 0.0157, 0.0138], [0.0499, 0.0469, 0.0365, 0.0221, 0.0184, 0.0162, 0.0152, 0.0126], [0.0882, 0.0503, 0.0417, 0.0345, 0.0237, 0.0144, 0.0144, 0.0135], [0.0478, 0.0329, 0.029, 0.0256, 0.024, 0.0226, 0.0176, 0.0165], [0.063, 0.0522, 0.0317, 0.0247, 0.0218, 0.0218, 0.0218, 0.0192], [0.0993, 0.0469, 0.0365, 0.0343, 0.0343, 0.0251, 0.0222, 0.0208], [0.0811, 0.0672, 0.0462, 0.036, 0.0338, 0.0318, 0.0318, 0.0205], [0.0594, 0.0384, 0.036, 0.036, 0.0299, 0.0299, 0.0281, 0.0181], [0.0633, 0.0463, 0.0384, 0.0264, 0.0264, 0.0193, 0.017, 0.016], [0.0715, 0.0434, 0.0407, 0.0383, 0.0338, 0.0232, 0.0192, 0.017], [0.1248, 0.059, 0.0554, 0.052, 0.0431, 0.0278, 0.0217, 0.018], [0.1701, 0.0552, 0.0519, 0.0315, 0.0296, 0.0278, 0.0168, 0.0158], [0.1862, 0.0501, 0.0471, 0.0268, 0.0237, 0.0222, 0.0144, 0.0144], [0.1864, 0.0367, 0.0345, 0.0304, 0.0252, 0.0237, 0.0237, 0.0196], [0.1483, 0.0375, 0.0331, 0.0258, 0.0258, 0.0242, 0.0177, 0.0166], [0.1038, 0.0359, 0.0317, 0.0262, 0.0262, 0.0218, 0.0204, 0.0204], [0.0646, 0.0646, 0.0305, 0.0305, 0.0253, 0.0223, 0.0223, 0.0185], [0.0507, 0.0371, 0.0308, 0.024, 0.0187, 0.0175, 0.0175, 0.0165], [0.0795, 0.0375, 0.0375, 0.0353, 0.0275, 0.0214, 0.0157, 0.0147], [0.0521, 0.046, 0.046, 0.0381, 0.018, 0.0169, 0.014, 0.0116], [0.0448, 0.0421, 0.0328, 0.0328, 0.0176, 0.0146, 0.0146, 0.0128], [0.056, 0.0464, 0.0464, 0.0464, 0.0464, 0.0281, 0.016, 0.0142], [0.0643, 0.0323, 0.0304, 0.0285, 0.0268, 0.0153, 0.0144, 0.0144], [0.031, 0.031, 0.02, 0.02, 0.0166, 0.0147, 0.0107, 0.0074], [0.0436, 0.034, 0.0182, 0.0182, 0.0171, 0.0142, 0.0104, 0.0076], [0.0261, 0.0216, 0.0158, 0.0149, 0.0149, 0.0096, 0.0075, 0.007], [0.0745, 0.0618, 0.0375, 0.0292, 0.0258, 0.0214, 0.0166, 0.0138], [0.2223, 0.0562, 0.0438, 0.0438, 0.022, 0.0183, 0.0161, 0.0142], [0.2703, 0.0642, 0.0415, 0.0366, 0.0251, 0.0152, 0.0119, 0.0082], [0.2694, 0.1123, 0.0991, 0.0388, 0.0343, 0.0208, 0.0183, 0.0172], [0.2063, 0.1104, 0.086, 0.0297, 0.0262, 0.014, 0.0124, 0.0124], [0.3836, 0.2987, 0.0357, 0.0296, 0.0278, 0.0131, 0.009, 0.0075], [0.3481, 0.3072, 0.0501, 0.0471, 0.0196, 0.0112, 0.0112, 0.0068], [0.3919, 0.1851, 0.0342, 0.0322, 0.0322, 0.0251, 0.0183, 0.0098], [0.3946, 0.0937, 0.0686, 0.0569, 0.0286, 0.0252, 0.0144, 0.0144], [0.4508, 0.1558, 0.0573, 0.0538, 0.0186, 0.0154, 0.0128, 0.01], [0.6482, 0.1359, 0.0268, 0.0112, 0.0082, 0.0068, 0.006, 0.0056], [0.5651, 0.3884, 0.0071, 0.0049, 0.0034, 0.0032, 0.0017, 0.0014]], "ranks": {"Rust": [49160, 105889, 50176, 23744, 10224, 16261, 22812, 31314, 21439, 21450, 17461, 22198, 18569, 37232, 61151, 49408, 38824, 91460, 94949, 43127, 37110, 70518, 56315, 23537, 14042, 14616, 12040, 9074, 13989, 21699, 16895, 15626, 29481, 32568, 19782, 19580, 18666, 8948, 11153, 8948, 6610, 7296, 6885, 9578, 9911, 5406, 5639, 4438, 3662, 4971, 30174, 34134, 14608, 19827, 32858, 19977, 6859, 3707, 1459, 239, 299, 106, 71]}}, {"pos": 381, "top": [[".", ",", "\u2013", ";", " \u2013", "\u2026.", ",.", "\u00a0\u00a0"], ["\u2013", " \u2013", "\u2013and", ".", " \u200b\u200b", ".\u2013", ",", ",."], ["\u2013", ".", ",", "\u2026.", "\u2026..", ".\u2013", " \u2013", "\u2026"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", " Shemale", " Blowjob", " pornstar", " Guta", " cumshot", "odle"], ["\u7fe1", "@d", "@a", ".@", "@c", " \"@", ":@", "(@"], ["\u7fe1", "\u8d75\u4e3d\u9896", " \u200b\u200b", "culos", "\u8131\u8d2b\u81f4\u5bcc", ":href", "ashed", "\u52a0\u62c9"], ["splash", "\u517b\u6d3b", "FTA", "beda", " nasty", "scht", "ashed", "stra"], [".pretty", "ashed", "sula", " nasty", "sver", "scht", "schaft", " veggies"], [".pretty", "-ish", " pretty", "!\u201d.", " whopping", "pretty", "@a", " veggies"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", ".pretty", "-Cds", ".rl", "-ish", "\u8033\u719f\u80fd\u8be6", "r\u00e9di", "\u8dd1\u817f"], [" nasty", "-ish", " bigger", " handful", " skinny", " tricky", "-esque", " quirky"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " veggies", " booze", "-ish", " skinny", " pricey", "\u4f4e\u8ff7", " quirky"], [" veggies", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " bigger", " skinny", " booze", " comfy", " pricey", "-ish"], [" bigger", " big", " veggies", " skinny", " nasty", " booze", " funky", " kids"], [" bigger", " big", " busted", " pricey", " nasty", " quirky", " pretty", " skinny"], [" big", " bigger", " skinny", " nasty", " hefty", " guts", " pricey", " savvy"], [" big", " nasty", " bigger", " pretty", " skinny", " huge", " weird", " kids"], [" nasty", " big", " bigger", " skinny", " quirky", " weird", " funky", " huge"], [" nasty", " big", " skinny", " quirky", " weird", " huge", " bigger", " scary"], [" nasty", " big", " huge", " wildly", " bigger", " hefty", " hugely", " weird"], [" big", " huge", " nasty", " wildly", " hugely", " hefty", " bigger", " massive"], [" nasty", " big", " huge", " bigger", " scary", " booze", " massive", " skinny"], [" big", " huge", " nasty", " bigger", " massive", " hugely", " wildly", " incredibly"], [" big", " huge", " massive", " hugely", " wildly", " massively", " nasty", " barely"], [" hugely", " huge", " wildly", " massive", " nasty", " big", " hefty", " massively"], [" nasty", " huge", " hugely", " big", " massive", " wildly", " bigger", " massively"], [" massive", " huge", " big", " nasty", " wildly", " hugely", " massively", " sprawling"], [" massive", " huge", " hugely", " big", " wildly", " massively", " sprawling", " barely"], [" massive", " huge", " hugely", " wildly", " massively", " sprawling", " incredibly", " big"], [" massive", " huge", " hugely", " massively", " big", " wildly", " sprawling", " nasty"], [" massive", " huge", " big", " massively", " wildly", " hugely", " complex", " incredibly"], [" massive", " huge", " big", " massively", " complex", " wildly", " long", " hugely"], [" massive", " huge", " big", " massively", " nasty", " complex", " wildly", " catastrophic"], [" massive", " huge", " massively", " complex", " wildly", " nasty", " tech", " mega"], [" massive", " massively", " mediocre", " complex", " huge", " nasty", " tech", " sprawling"], [" tech", " massive", " complex", " massively", " expensive", " ambitious", " messy", " huge"], [" tech", " expensive", " mediocre", " ambitious", " messy", " complex", " awkward", " manageable"], [" complex", " expensive", " ambitious", " tech", " messy", " manageable", " complexity", " massive"], [" complex", " ambitious", " manageable", " expensive", " complexity", " tech", " messy", " risky"], [" complex", " ambitious", " tech", " manageable", " complexity", " technical", " massive", " risky"], [" tech", " ambitious", " complex", " technical", " engineering", " complexity", " massive", " manageable"], [" engineering", " ambitious", " technical", " tech", " complexity", " complex", " manageable", " project"], [" engineering", " ambitious", " technical", " tech", " complexity", " complex", " manageable", " project"], [" ambitious", " engineering", " complexity", " manageable", " technical", " tech", " complex", " projects"], [" engineering", " ambitious", " manageable", " technical", " complex", " mediocre", " complexity", " risky"], [" manageable", " ambitious", " engineering", " mediocre", " technical", " risky", " complex", " mundane"], [" manageable", " ambitious", " merely", " mere", " mediocre", " engineering", " risky", " complexity"], [" ambitious", " manageable", " mediocre", " merely", " risky", " problematic", " mere", " difficult"], [" already", "already", " Already", "Already", " d\u00e9j\u00e0", "_already", "\u5df2\u7ecf\u662f", " ambitious"], [" already", "already", " ambitious", "Already", " Already", " risky", " difficult", " questionable"], [" difficult", " risky", " tricky", " problematic", " ambitious", " questionable", " messy", " daunting"], [" difficult", " tricky", " risky", " ambitious", " problematic", "\u56f0\u96be", "\u96be\u9898", "\u96be\u5ea6\u5927"], [" difficult", " risky", " tricky", "\u96be\u5ea6\u5927", " ambitious", "\u56f0\u96be", "\u96be\u9898", " difficulty"], [" difficult", " ambitious", " risky", "\u96be\u5ea6\u5927", " tricky", "\u96be\u9898", "\u56f0\u96be", "\u8270\u96be"], [" difficult", " ambitious", "\u96be\u5ea6\u5927", "\u96be\u9898", " challenging", " risky", " tricky", " difficulty"], [" difficult", " ambitious", "\u96be\u9898", " risky", "\u96be\u5ea6\u5927", " nightmare", " challenging", " architectural"], [" nightmare", " difficult", " ambitious", " architectural", "\u5669\u68a6", " nightmares", " risky", "\u96be\u9898"], [" difficult", " nightmare", "\u96be", " hard", " dif\u00edcil", " difficulty", " tough", " bad"], [" difficult", " architectural", " architecture", " ambitious", " nightmare", "\u67b6\u6784", "architecture", "\u96be"], [" architectural", " difficult", " architecture", " ambitious", "\u67b6\u6784", " engineering", " nightmare", "architecture"], [" hard", " difficult", " architectural", " ambitious", " architecture", "-hard", " nightmare", " engineering"], [" difficult", " hard", " architectural", " ambitious", " nightmare", " architecture", " bad", "-hard"], [" architectural", " \"", " hard", " difficult", " architecture", " bad", " nightmare", " engineering"]], "p": [[0.8581, 0.1316, 0.0051, 0.0015, 0.0015, 0.0004, 0.0003, 0.0002], [0.5218, 0.0752, 0.0428, 0.0168, 0.0108, 0.0102, 0.009, 0.0042], [0.6283, 0.1589, 0.0584, 0.0584, 0.0402, 0.0148, 0.0148, 0.0102], [0.0124, 0.0103, 0.0085, 0.0067, 0.004, 0.004, 0.0026, 0.0024], [0.0108, 0.0101, 0.0101, 0.0095, 0.0065, 0.0051, 0.0051, 0.0026], [0.0047, 0.0024, 0.0021, 0.0016, 0.0011, 0.0011, 0.0011, 0.0011], [0.008, 0.0055, 0.0049, 0.0049, 0.0049, 0.0036, 0.0033, 0.0031], [0.0029, 0.0029, 0.0027, 0.0025, 0.0021, 0.0021, 0.0017, 0.0017], [0.0167, 0.0048, 0.004, 0.004, 0.0033, 0.0033, 0.0026, 0.0021], [0.0048, 0.0018, 0.0018, 0.0015, 0.0014, 0.0011, 0.0011, 0.0009], [0.0135, 0.0112, 0.0072, 0.0064, 0.0049, 0.0044, 0.0041, 0.0041], [0.0078, 0.0029, 0.0021, 0.0017, 0.0017, 0.0016, 0.0015, 0.0015], [0.0113, 0.0088, 0.0061, 0.005, 0.0032, 0.003, 0.0025, 0.0021], [0.0232, 0.0097, 0.008, 0.0059, 0.0049, 0.0046, 0.004, 0.0038], [0.0381, 0.0231, 0.0169, 0.0109, 0.0109, 0.0096, 0.0096, 0.0096], [0.0194, 0.0142, 0.0134, 0.0134, 0.0104, 0.0092, 0.0092, 0.0092], [0.1435, 0.0598, 0.0466, 0.0363, 0.0363, 0.0207, 0.0207, 0.0142], [0.0803, 0.0487, 0.043, 0.0335, 0.023, 0.0179, 0.0149, 0.0149], [0.2085, 0.03, 0.022, 0.0206, 0.0182, 0.0171, 0.0161, 0.0161], [0.129, 0.1212, 0.0833, 0.0224, 0.0211, 0.0175, 0.0175, 0.0175], [0.1098, 0.0709, 0.0487, 0.0379, 0.0356, 0.0203, 0.0203, 0.0191], [0.0572, 0.0537, 0.0288, 0.0254, 0.0113, 0.0077, 0.0073, 0.0068], [0.0807, 0.0712, 0.0521, 0.0316, 0.0297, 0.0231, 0.0169, 0.0124], [0.0587, 0.0551, 0.0379, 0.0277, 0.019, 0.0139, 0.0139, 0.0123], [0.0944, 0.0538, 0.0446, 0.0369, 0.0326, 0.0326, 0.0186, 0.0145], [0.1131, 0.0777, 0.0686, 0.0472, 0.0416, 0.0367, 0.0237, 0.0197], [0.0621, 0.0514, 0.0427, 0.0427, 0.0332, 0.0332, 0.0228, 0.0167], [0.0742, 0.0697, 0.051, 0.0373, 0.0373, 0.0241, 0.0188, 0.0129], [0.1557, 0.1139, 0.0833, 0.0475, 0.0394, 0.0326, 0.0175, 0.0145], [0.197, 0.1441, 0.0468, 0.0364, 0.0342, 0.0322, 0.0172, 0.0152], [0.1585, 0.1399, 0.0548, 0.0275, 0.0201, 0.0178, 0.0115, 0.0084], [0.1467, 0.1008, 0.0476, 0.0271, 0.0175, 0.0155, 0.0145, 0.01], [0.1348, 0.0818, 0.0301, 0.0283, 0.0182, 0.0151, 0.0133, 0.0098], [0.0873, 0.0364, 0.0342, 0.025, 0.0207, 0.0195, 0.0172, 0.0118], [0.0852, 0.0428, 0.019, 0.019, 0.019, 0.0179, 0.0179, 0.0168], [0.0546, 0.0513, 0.04, 0.0331, 0.0275, 0.0275, 0.0214, 0.0189], [0.1116, 0.0495, 0.034, 0.034, 0.034, 0.022, 0.0206, 0.0171], [0.0664, 0.0586, 0.0586, 0.055, 0.026, 0.0244, 0.0202, 0.0202], [0.126, 0.0494, 0.0464, 0.0436, 0.0436, 0.0233, 0.0233, 0.0219], [0.1096, 0.0625, 0.0587, 0.0429, 0.0429, 0.026, 0.0216, 0.019], [0.1198, 0.0683, 0.0641, 0.0532, 0.0499, 0.0285, 0.0285, 0.0222], [0.1375, 0.1006, 0.0573, 0.0573, 0.0446, 0.0446, 0.037, 0.0154], [0.1564, 0.0891, 0.0448, 0.0421, 0.0308, 0.0289, 0.0255, 0.0255], [0.1037, 0.0975, 0.0432, 0.0382, 0.0359, 0.0262, 0.0262, 0.0204], [0.0976, 0.0809, 0.0407, 0.0382, 0.0317, 0.0218, 0.0192, 0.0159], [0.096, 0.0796, 0.0483, 0.0293, 0.0243, 0.0157, 0.013, 0.0115], [0.1398, 0.0961, 0.0583, 0.0547, 0.0514, 0.0167, 0.0115, 0.0101], [0.291, 0.1291, 0.0307, 0.0271, 0.0254, 0.0211, 0.0198, 0.0145], [0.7362, 0.1279, 0.0533, 0.0367, 0.0222, 0.0039, 0.0027, 0.0021], [0.2004, 0.2004, 0.0836, 0.0836, 0.0737, 0.0507, 0.0507, 0.0395], [0.3893, 0.0767, 0.0767, 0.0767, 0.041, 0.0362, 0.0206, 0.0142], [0.4695, 0.1187, 0.0635, 0.0437, 0.0385, 0.0265, 0.0206, 0.0161], [0.857, 0.0202, 0.0178, 0.0139, 0.0122, 0.0122, 0.0065, 0.0065], [0.7678, 0.0714, 0.0232, 0.0232, 0.011, 0.0097, 0.0066, 0.0052], [0.7664, 0.0432, 0.0297, 0.018, 0.0159, 0.0096, 0.0085, 0.0075], [0.7583, 0.1026, 0.0123, 0.0108, 0.0084, 0.0074, 0.0074, 0.0058], [0.3901, 0.3901, 0.0598, 0.0151, 0.0118, 0.0104, 0.0104, 0.0063], [0.9497, 0.0135, 0.0106, 0.0034, 0.0021, 0.0018, 0.0016, 0.0014], [0.8469, 0.0541, 0.0256, 0.0176, 0.0107, 0.0065, 0.0044, 0.0039], [0.4211, 0.2894, 0.1367, 0.0503, 0.0144, 0.0127, 0.0112, 0.0099], [0.5128, 0.2745, 0.1144, 0.0289, 0.0175, 0.0106, 0.0065, 0.0057], [0.4584, 0.2781, 0.1313, 0.0426, 0.0201, 0.0201, 0.0084, 0.0074], [0.3399, 0.2062, 0.2062, 0.0758, 0.0669, 0.0217, 0.0192, 0.0103]], "ranks": {"Rust": [39429, 55795, 49808, 109364, 3120, 23060, 26000, 9604, 8051, 11778, 1031, 12362, 7131, 4983, 4205, 2889, 2726, 15686, 25540, 7233, 7928, 17135, 6428, 4201, 3289, 4288, 4419, 5762, 4953, 7244, 9330, 9828, 10733, 12645, 10377, 21651, 19907, 16735, 19020, 20000, 13171, 13430, 8472, 10837, 10750, 11906, 11520, 10764, 10093, 15190, 47968, 75044, 39527, 22605, 19536, 8521, 3696, 1939, 1997, 751, 1390, 984, 785]}}, {"pos": 382, "top": [["s", "\u2013", ",", " \u200b\u200b", ".", " \u2013", ";", " "], [" \u200b\u200b", "s", "szer", " \u0218", "tures", "sWith", "ness", "sprozess"], [" \u200b\u200b", "s", "\u2013", "\u2013and", "\u2026..", "avior", "\u200b\u200b", "\u200b"], ["anceled", "Canceled", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "ynec", " \u041a\u0440\u0430\u0441\u0438", " Blowjob", "schluss", " Shemale"], [" \u200b\u200b", "s", "anceled", "Canceled", "ske", " canceled", "avior", " offense"], [" \u200b\u200b", "anceled", "siz", "avior", "splash", "Canceled", "s\u00e4", "ske"], ["s", " \u200b\u200b", "anceled", "Canceled", "ske", "splash", "ighbors", "siz"], [" \u200b\u200b", "anceled", "Canceled", "ighbors", "s", "avior", "ske", " canceled"], [" \u200b\u200b", "anceled", "Canceled", "ighbors", "avior", "ske", "ynec", " canceled"], [" \u200b\u200b", "Canceled", "ighbors", "avior", "anceled", "s", "eroon", "ske"], [" \u200b\u200b", "s", "\u00bb", "-tech", "Canceled", "anceled", "avior", "-\""], ["anceled", "avior", "ighbors", "Canceled", "utang", "eroon", "ographics", " pornstar"], ["ighbors", " \u200b\u200b", "avior", " flavors", "s", " influencer", "Canceled", "anceled"], [" \u200b\u200b", "Canceled", "utang", " LGBTQ", " canceled", " theater", "-tech", " flavors"], ["s", " trivia", " fake", "-tech", " vibe", " vibes", " flashy", "Canceled"], [" \u200b\u200b", " fake", " \u00ab", " vibes", " tricks", "s", " big", " vibe"], [" \u200b\u200b", "s", " big", " fake", " tricks", " vibes", " vibe", " kids"], [" big", " vibes", " fake", " vibe", "-tech", " kids", " tricks", " scary"], [" goofy", " flashy", " scary", " fake", "-tech", " trash", " freaking", " vibe"], [" big", " flashy", " goofy", " fake", " savvy", " scary", " trivia", " buzz"], ["s", " big", " flashy", " savvy", " folks", " kids", " goofy", " Big"], [" big", " flashy", " scary", "utang", " fake", " goofy", " bigger", " nasty"], [" big", " flashy", " luck", " scary", " bigger", " nasty", "s", " fake"], [" big", "s", " luck", " Big", " hard", " bigger", " tough", " flashy"], [" big", "s", " savvy", " tech", " folks", " flashy", " luck", " trivia"], [" tech", " big", " scary", " flashy", " savvy", " trivia", " vibe", " nasty"], [" big", " tech", " trivia", " flashy", " nasty", " economics", " savvy", " luck"], [" big", " tech", " flashy", " business", " hard", " folks", " cheap", " luck"], [" tech", " big", " flashy", " fake", " hardcore", " trivia", " savvy", " hype"], [" big", " tech", " fake", " cheap", " crazy", " flashy", " hype", " business"], [" big", " tech", " Big", " huge", " business", " fake", " cheap", " hard"], [" big", " Big", " hard", " huge", " business", " high", " fake", " real"], [" big", " fake", " nasty", " tech", " cheap", " hard", " flashy", " weird"], [" tech", " big", " nasty", " weird", " flashy", " fake", " crazy", " hardcore"], [" tech", " nasty", " big", " cheap", " hardcore", " fake", " flashy", " weird"], [" tech", " nasty", " crazy", " weird", " flashy", " big", " mega", " hardcore"], [" tech", " weird", " flashy", " nasty", " crazy", " mediocre", " bullshit", " crap"], [" tech", " weird", " crazy", " flashy", " nasty", " big", " expensive", " manageable"], [" tech", " manageable", " weird", " crazy", " expensive", " nasty", " technical", " tricky"], [" tech", " weird", " crazy", " manageable", " engineering", " technical", " ambitious", " nasty"], [" tech", " engineering", " technical", " technology", " weird", " ambitious", " crazy", " Tech"], [" tech", " engineering", " ambitious", " technical", " manageable", " technology", " weird", " project"], [" engineering", " tech", " ambitious", " project", " technical", " manageable", " weird", " projects"], [" engineering", " tech", " ambitious", " technical", " manageable", " unrealistic", " projects", " crazy"], [" engineering", " tech", " ambitious", " technical", " manageable", " crazy", " weird", " nightmare"], [" engineering", " tech", " ambitious", " manageable", " weird", " crazy", " mediocre", " luxury"], [" manageable", " ambitious", " tech", " engineering", " mediocre", " weird", " crazy", " nightmare"], [" ambitious", " difficult", " difficulty", " risky", " challenge", " manageable", " tricky", " challenging"], [" ambitious", " risky", " difficult", " difficulty", " questionable", " tricky", " mediocre", " manageable"], [" difficult", " ambitious", " risky", " difficulty", " tricky", " problematic", " challenging", " questionable"], [" difficult", " risky", " problematic", " tricky", " ambitious", " difficulty", " questionable", " troublesome"], [" difficult", " risky", " tricky", " ambitious", "\u56f0\u96be", " problematic", " challenging", " difficulty"], [" difficult", " risky", " ambitious", " tricky", " challenging", "\u56f0\u96be", " difficulty", "\u96be\u5ea6\u5927"], [" difficult", " ambitious", " risky", " tricky", "\u96be\u5ea6\u5927", " difficulty", " challenging", "\u56f0\u96be"], [" difficult", " ambitious", " risky", " challenging", " tricky", "\u96be\u5ea6\u5927", " challenge", " difficulty"], [" difficult", " ambitious", " risky", " challenging", " tricky", " tough", " challenge", "\u9ad8\u98ce\u9669"], [" difficult", " ambitious", " risky", " challenging", " tricky", " tough", " hard", " nightmare"], [" difficult", " risky", " ambitious", " challenging", " hard", " tough", " dif\u00edcil", "\u96be"], [" ambitious", " difficult", " challenging", " ambition", "amb", " tough", " risky", " hard"], [" difficult", " ambitious", " ambition", " tough", " risky", " hard", " challenging", "amb"], [" difficult", " ambitious", " hard", "hard", "-hard", " tough", " Hard", " ambition"], [" difficult", " ambitious", "hard", " hard", "-hard", "amb", " tough", " challenging"], ["hard", "amb", " hard", "diff", " ambitious", "Hard", "bad", " difficult"]], "p": [[0.2389, 0.1642, 0.1449, 0.0936, 0.0729, 0.0323, 0.0099, 0.0093], [0.0129, 0.0033, 0.0024, 0.0022, 0.0022, 0.002, 0.002, 0.0019], [0.8579, 0.0401, 0.0108, 0.0021, 0.0015, 0.0009, 0.0007, 0.0006], [0.0078, 0.0069, 0.0053, 0.0042, 0.003, 0.0025, 0.0025, 0.0025], [0.1702, 0.0519, 0.0123, 0.0102, 0.0058, 0.0058, 0.0048, 0.0048], [0.4535, 0.0039, 0.0033, 0.0031, 0.0029, 0.0019, 0.0017, 0.0017], [0.113, 0.1062, 0.0644, 0.0367, 0.0252, 0.0173, 0.0153, 0.0135], [0.2789, 0.0355, 0.0244, 0.0202, 0.0178, 0.0139, 0.0123, 0.0108], [0.7671, 0.0055, 0.0049, 0.0046, 0.0036, 0.0033, 0.002, 0.0017], [0.0086, 0.0076, 0.0076, 0.0067, 0.0063, 0.0052, 0.0034, 0.0032], [0.6706, 0.124, 0.0031, 0.0029, 0.0014, 0.0013, 0.0011, 0.0011], [0.0053, 0.0047, 0.0041, 0.0036, 0.0036, 0.0034, 0.0023, 0.0017], [0.0058, 0.0055, 0.0046, 0.004, 0.0038, 0.0035, 0.0035, 0.0033], [0.0168, 0.004, 0.0023, 0.0023, 0.0021, 0.0021, 0.0021, 0.002], [0.0052, 0.0036, 0.0024, 0.0023, 0.002, 0.002, 0.0019, 0.0017], [0.0086, 0.0038, 0.0028, 0.0025, 0.0023, 0.0023, 0.0022, 0.002], [0.024, 0.024, 0.0199, 0.0094, 0.0088, 0.0078, 0.0078, 0.0065], [0.0119, 0.0112, 0.0105, 0.0099, 0.0082, 0.0077, 0.0077, 0.0077], [0.0111, 0.0111, 0.0098, 0.0076, 0.0059, 0.0056, 0.0052, 0.0052], [0.0209, 0.0112, 0.0077, 0.0064, 0.006, 0.0056, 0.0041, 0.0039], [0.0465, 0.0265, 0.0104, 0.0049, 0.0041, 0.0038, 0.0036, 0.0032], [0.0143, 0.0072, 0.0067, 0.0041, 0.0032, 0.003, 0.0028, 0.0025], [0.0402, 0.0102, 0.0062, 0.0058, 0.0051, 0.0048, 0.0045, 0.004], [0.0512, 0.0201, 0.0054, 0.0054, 0.0048, 0.0042, 0.0031, 0.0027], [0.0131, 0.0116, 0.0109, 0.0102, 0.0085, 0.008, 0.0055, 0.004], [0.0247, 0.0181, 0.015, 0.0117, 0.0103, 0.0097, 0.0091, 0.0085], [0.028, 0.015, 0.0085, 0.0085, 0.0066, 0.0059, 0.0055, 0.0052], [0.0765, 0.0171, 0.0067, 0.0063, 0.0059, 0.0059, 0.0059, 0.0052], [0.0396, 0.029, 0.0113, 0.0094, 0.0083, 0.0078, 0.0078, 0.0065], [0.0664, 0.0355, 0.0158, 0.0115, 0.0108, 0.009, 0.0074, 0.007], [0.1108, 0.0117, 0.0097, 0.0085, 0.008, 0.0075, 0.0071, 0.0067], [0.0855, 0.0116, 0.009, 0.0085, 0.007, 0.007, 0.0066, 0.0066], [0.062, 0.0115, 0.0101, 0.0101, 0.0095, 0.0089, 0.0089, 0.0079], [0.0487, 0.023, 0.0203, 0.0179, 0.0158, 0.0158, 0.0131, 0.0123], [0.0367, 0.0197, 0.0174, 0.0144, 0.0127, 0.0127, 0.0077, 0.0072], [0.0981, 0.0319, 0.0233, 0.017, 0.017, 0.0133, 0.0125, 0.0125], [0.1721, 0.0233, 0.0219, 0.0219, 0.015, 0.011, 0.0103, 0.0097], [0.0991, 0.025, 0.0183, 0.0172, 0.0162, 0.0126, 0.0118, 0.0098], [0.0829, 0.0253, 0.0237, 0.0174, 0.0153, 0.0144, 0.0144, 0.0127], [0.1653, 0.0238, 0.021, 0.0174, 0.0174, 0.0164, 0.0154, 0.0136], [0.2277, 0.0477, 0.024, 0.0187, 0.0146, 0.0146, 0.0106, 0.01], [0.129, 0.1005, 0.0254, 0.0254, 0.0164, 0.0136, 0.0128, 0.0106], [0.0865, 0.0763, 0.0248, 0.017, 0.017, 0.0141, 0.0117, 0.0117], [0.063, 0.0461, 0.0298, 0.0218, 0.017, 0.0141, 0.0132, 0.0124], [0.0707, 0.0295, 0.026, 0.0216, 0.019, 0.0148, 0.0139, 0.0123], [0.0293, 0.0259, 0.0215, 0.0215, 0.0139, 0.013, 0.013, 0.013], [0.0332, 0.0332, 0.0312, 0.0167, 0.0157, 0.013, 0.0122, 0.0115], [0.0765, 0.0464, 0.0339, 0.0319, 0.0248, 0.0219, 0.0182, 0.0171], [0.1184, 0.0718, 0.0525, 0.0319, 0.0319, 0.0233, 0.0193, 0.0171], [0.3488, 0.1867, 0.1283, 0.0368, 0.0324, 0.0324, 0.0286, 0.0209], [0.5194, 0.1159, 0.062, 0.0547, 0.0293, 0.0178, 0.0178, 0.0157], [0.4693, 0.1726, 0.1186, 0.072, 0.0265, 0.0182, 0.0125, 0.011], [0.8918, 0.0503, 0.0163, 0.0112, 0.006, 0.0053, 0.0036, 0.0028], [0.6584, 0.1886, 0.0891, 0.0155, 0.0057, 0.005, 0.0039, 0.0035], [0.8664, 0.0554, 0.0336, 0.018, 0.0058, 0.0031, 0.0028, 0.0019], [0.7294, 0.1844, 0.0599, 0.0134, 0.0023, 0.0014, 0.001, 0.0007], [0.7253, 0.1428, 0.0982, 0.0171, 0.0026, 0.0018, 0.0014, 0.0012], [0.9942, 0.0012, 0.001, 0.0007, 0.0006, 0.0005, 0.0003, 0.0002], [0.5573, 0.434, 0.002, 0.0018, 0.0014, 0.0008, 0.0004, 0.0003], [0.4974, 0.4974, 0.0014, 0.0007, 0.0007, 0.0005, 0.0005, 0.0002], [0.407, 0.317, 0.2469, 0.0158, 0.0051, 0.0019, 0.001, 0.0008], [0.4367, 0.2338, 0.1607, 0.1418, 0.0062, 0.0043, 0.0033, 0.0018], [0.9806, 0.0045, 0.004, 0.0019, 0.0017, 0.0013, 0.0008, 0.0007]], "ranks": {"Rust": [18648, 56441, 30958, 20848, 22826, 19601, 21700, 22363, 29703, 25228, 42303, 39345, 29324, 50449, 58903, 59992, 75377, 104819, 134697, 102702, 98868, 115277, 79905, 39227, 43471, 57889, 43523, 24634, 28726, 28468, 22555, 21414, 21194, 27070, 13508, 18797, 15955, 13580, 17036, 16180, 12242, 9918, 7002, 8255, 6347, 7438, 5662, 5854, 2156, 3420, 7786, 15752, 6966, 3392, 4446, 2009, 1426, 1029, 1293, 803, 728, 768, 162]}}, {"pos": 383, "top": [["er", "a", ".", "o", "\u00a0", "ly", "ness", ","], ["er", "ness", "ly", "\u2011", "ment", "\uff0d", "land", "ling"], ["er", "ness", "ly", ".", "\u00a0", "\u2011", "\u2013", "\uff0d"], ["ness", "\uff3f\uff3f", "\uff0a\uff0a\uff0a\uff0a", "\uff0d\uff0d", "erweise", "\uff63", "ly", "entication"], ["ness", "er", "ly", "land", "way", "ling", "man", "ment"], ["ness", "ly", "er", "way", "land", "itude", "man", "red"], ["ness", "ly", "er", "way", "ish", "man", "itude", "ment"], ["ness", "ly", "ish", "way", "punk", "itude", "ner", "edly"], ["ness", "ly", "ish", "ily", "way", "itude", "er", "amental"], ["ness", "ly", "ish", "way", "er", "ily", "punk", "itude"], ["ness", "ly", "ish", "er", "way", "ling", "itude", "ment"], ["ness", "ly", "ish", "ily", "punk", "itude", "er", "ible"], ["ness", "ly", "ish", "punk", "er", "itude", "ible", "ily"], ["ness", "ly", "ish", "er", "way", "punk", "ily", "itude"], ["ness", "ly", "ish", "way", "er", "punk", "itude", "ily"], ["ness", "ly", "ish", "way", "punk", "itude", "ily", "er"], ["ness", "ly", "ish", "er", "way", "itude", "stuff", "ible"], ["ness", "ly", "ish", "way", "er", "itude", "stuff", "punk"], ["ness", "ly", "ish", "er", "way", "-hard", "punk", "itude"], ["ly", "ness", "er", "way", "ish", "-hard", "edly", "ily"], ["ly", "ness", "er", "way", "-hard", "ish", "hard", "edly"], ["ness", "ly", "punk", "-hard", "ish", "way", "er", "hard"], ["ly", "ness", "er", "-hard", "hard", "ish", "way", "``"], ["ly", "ness", "er", "-hard", " --", " harder", " tough", "hard"], [" \r\n\r\n", " \n\n", "\r\n\r\n", " \n\n\n", "\n\n", "ness", "<|im_end|>", "ly"], ["ness", "ly", " stuff", " harder", "-hard", " hardest", " tough", " \r\n\r\n"], ["ness", "\n\n", "\r\n\r\n", "ly", " harder", "-hard", " \r\n\r\n", " stuff"], ["\n\n", " --", "ness", "ly", "\r\n\r\n", " \n\n", " harder", " tough"], ["ness", " harder", "ly", " hardest", " tough", "-hard", " tech", "ish"], ["ness", " harder", " hardest", "ly", " stuff", " tough", " tech", "-hard"], [" harder", "ness", " tough", " big", "ly", "er", " hardest", " stuff"], [" big", " hard", " harder", " tough", " work", " difficult", "ness", "ly"], [" harder", " tough", " hard", " big", "ness", " crazy", " hardest", " weird"], [" tech", " hardest", "ness", " crazy", "-hard", " harder", " tough", " weird"], [" hardest", " harder", "-hard", " tech", "ness", " tough", " toughest", "\u6700\u96be"], [" hardest", "-hard", " harder", " tech", " tough", "hard", " difficult", " crazy"], [" hardest", " harder", "-hard", " tech", " tough", " difficult", "\u786c\u6838", " HARD"], [" difficult", " tech", " harder", " hardest", "-hard", " tough", " HARD", " tricky"], [" difficult", " difficulty", " hardest", " harder", " tough", "-hard", " tricky", "\u6700\u96be"], [" difficult", " difficulty", " hardest", " harder", " tough", "\u96be\u5ea6", "-hard", "\u6700\u96be"], [" difficult", " difficulty", " tough", " hardest", " harder", "-hard", " tech", "\u96be\u5ea6"], [" difficult", " difficulty", " tough", " harder", "\u96be\u5ea6", " hardest", "-hard", " Difficulty"], [" difficult", " difficulty", " harder", "\u96be\u5ea6", " tough", " hardest", "-hard", " tricky"], [" difficult", " difficulty", "\u96be\u5ea6", " hardest", " tough", "-hard", " tricky", " harder"], [" difficult", " difficulty", " tough", "-hard", " harder", " engineering", " hardest", " hard"], [" difficult", " difficulty", " tough", " tricky", " tech", " hard", "-hard", " engineering"], [" difficult", " difficulty", " tough", " tricky", " tech", "-hard", " engineering", " manageable"], [" difficult", " difficulty", " tough", " tricky", " tech", " challenge", "-hard", " manageable"], [" difficulty", " difficult", " tech", "-hard", " engineering", " manageable", " tricky", " shit"], [" difficulty", " difficult", "-hard", " tricky", " tech", " complexity", " tough", " manageable"], [" difficulty", " difficult", "\u96be\u5ea6", "-hard", "\u96e3\u5ea6", "\u56f0\u96be", "difficulty", "\u7684\u96be\u5ea6"], [" difficulty", " engineering", " difficult", "\u96be\u5ea6", "\u56f0\u96be", "-hard", " tricky", "-but"], [" difficulty", " difficult", "-hard", "\u96be\u5ea6", "\u56f0\u96be", "\u7684\u96be\u5ea6", " engineering", "difficulty"], ["-hard", " engineering", " difficulty", "\u96be\u5ea6", " project", " difficult", " challenge", " tech"], ["-hard", " difficulty", "\u96be\u5ea6", " engineering", "\u56f0\u96be", " challenge", " software", "\u7684\u96be\u5ea6"], [" engineering", " project", "-hard", "-core", " software", "engineering", "core", "\u5de5\u7a0b"], [" engineering", "-hard", "core", "-core", " project", " software", " slog", "\""], [" software", " engineering", "-hard", " project", "/software", "\u8f6f\u4ef6", "software", "core"], [" engineering", " software", " architecture", " project", " architectural", "engineering", "software", " backend"], [" engineering", "core", " project", "-hard", " architecture", "-core", " architectural", " software"], [" engineering", "-hard", "core", " hard", "\"", "hard", " architecture", " project"], ["\"", "core", " engineering", " project", " architecture", " architectural", "-core", " mode"], ["\"", "core", " engineering", "\u201d", " mode", " architecture", "mode", " project"]], "p": [[0.6609, 0.0894, 0.0654, 0.0309, 0.029, 0.0256, 0.0107, 0.0065], [0.8377, 0.0883, 0.0607, 0.0027, 0.0013, 0.0006, 0.0006, 0.0004], [0.7228, 0.1041, 0.0298, 0.028, 0.0193, 0.0117, 0.0075, 0.0036], [0.192, 0.1495, 0.019, 0.0168, 0.0148, 0.0108, 0.0102, 0.0066], [0.7576, 0.1317, 0.0905, 0.0011, 0.001, 0.0009, 0.0008, 0.0008], [0.8635, 0.0245, 0.0203, 0.0038, 0.0029, 0.0026, 0.0026, 0.0021], [0.7832, 0.1748, 0.0068, 0.0036, 0.0028, 0.001, 0.0009, 0.0009], [0.9202, 0.0588, 0.0018, 0.0011, 0.0008, 0.0008, 0.0004, 0.0004], [0.8956, 0.0735, 0.003, 0.0013, 0.0013, 0.0008, 0.0007, 0.0006], [0.9034, 0.0578, 0.0061, 0.0022, 0.0019, 0.0015, 0.0014, 0.0012], [0.8373, 0.1284, 0.0077, 0.0072, 0.0018, 0.0015, 0.0013, 0.0009], [0.6676, 0.1688, 0.0215, 0.0101, 0.007, 0.0065, 0.0061, 0.0042], [0.629, 0.1802, 0.0139, 0.009, 0.0084, 0.0062, 0.0054, 0.0051], [0.6925, 0.1984, 0.0163, 0.0077, 0.0064, 0.0044, 0.0036, 0.0034], [0.6554, 0.1878, 0.0326, 0.012, 0.0064, 0.0047, 0.0044, 0.0027], [0.4179, 0.2101, 0.0365, 0.0105, 0.0072, 0.0063, 0.0056, 0.0053], [0.5399, 0.3275, 0.0253, 0.0105, 0.0099, 0.0025, 0.0023, 0.0019], [0.5081, 0.199, 0.0269, 0.0153, 0.0087, 0.0072, 0.0044, 0.0039], [0.2588, 0.2431, 0.0146, 0.0137, 0.0121, 0.0094, 0.0078, 0.0069], [0.5566, 0.232, 0.0203, 0.0131, 0.0131, 0.0066, 0.0038, 0.0033], [0.3201, 0.2067, 0.0247, 0.0192, 0.0132, 0.0103, 0.0097, 0.0062], [0.2108, 0.186, 0.0153, 0.0143, 0.0127, 0.0127, 0.0093, 0.0087], [0.2928, 0.1567, 0.0226, 0.0199, 0.0165, 0.0155, 0.01, 0.0069], [0.1439, 0.068, 0.0266, 0.0183, 0.0152, 0.0152, 0.0142, 0.0104], [0.1288, 0.0885, 0.0832, 0.0781, 0.0445, 0.0306, 0.0224, 0.0186], [0.1227, 0.0424, 0.0227, 0.0227, 0.0177, 0.0138, 0.0138, 0.0129], [0.09, 0.0482, 0.0452, 0.0452, 0.0214, 0.0156, 0.0156, 0.0147], [0.2088, 0.0598, 0.0386, 0.0363, 0.0301, 0.0234, 0.022, 0.022], [0.0652, 0.0349, 0.0328, 0.0175, 0.0175, 0.0165, 0.0145, 0.0128], [0.1191, 0.0387, 0.0266, 0.025, 0.0183, 0.0172, 0.0151, 0.0126], [0.0733, 0.0647, 0.0504, 0.0393, 0.027, 0.0253, 0.021, 0.0197], [0.0492, 0.0434, 0.0338, 0.0317, 0.017, 0.016, 0.016, 0.015], [0.052, 0.0336, 0.0316, 0.0316, 0.0231, 0.0204, 0.0191, 0.0191], [0.0415, 0.039, 0.0344, 0.0344, 0.0323, 0.0268, 0.0252, 0.0209], [0.1193, 0.0564, 0.053, 0.025, 0.0235, 0.0183, 0.0162, 0.0143], [0.094, 0.0646, 0.0535, 0.0444, 0.0368, 0.0185, 0.0174, 0.0153], [0.0916, 0.076, 0.0713, 0.0522, 0.0461, 0.0407, 0.0159, 0.015], [0.0936, 0.0685, 0.0604, 0.0501, 0.0471, 0.039, 0.0196, 0.0196], [0.4605, 0.1028, 0.08, 0.0623, 0.0355, 0.0244, 0.0168, 0.0158], [0.5092, 0.1003, 0.0608, 0.0537, 0.0393, 0.0287, 0.027, 0.0127], [0.5713, 0.0993, 0.0773, 0.0322, 0.0284, 0.0251, 0.0208, 0.0143], [0.6645, 0.1483, 0.0375, 0.0258, 0.0227, 0.0201, 0.0107, 0.0057], [0.6292, 0.2043, 0.0215, 0.0215, 0.019, 0.0168, 0.0115, 0.0079], [0.5912, 0.2175, 0.0378, 0.0148, 0.0131, 0.009, 0.0084, 0.0079], [0.5152, 0.2758, 0.0188, 0.0121, 0.01, 0.0094, 0.0083, 0.0073], [0.4481, 0.2117, 0.0269, 0.0174, 0.0119, 0.0112, 0.0112, 0.0099], [0.3217, 0.2839, 0.0281, 0.0248, 0.0206, 0.011, 0.0103, 0.0097], [0.3546, 0.3129, 0.02, 0.0188, 0.0146, 0.0083, 0.0078, 0.0057], [0.2602, 0.1483, 0.0311, 0.0201, 0.0166, 0.0147, 0.0147, 0.013], [0.2839, 0.2211, 0.0493, 0.0233, 0.0206, 0.0181, 0.0117, 0.0117], [0.4375, 0.1106, 0.063, 0.0407, 0.0263, 0.0232, 0.0232, 0.0205], [0.1804, 0.0664, 0.0586, 0.0485, 0.0334, 0.0277, 0.0244, 0.0215], [0.4201, 0.1984, 0.1062, 0.0827, 0.0502, 0.0112, 0.0099, 0.0087], [0.2187, 0.2055, 0.071, 0.038, 0.0191, 0.018, 0.0149, 0.0123], [0.3763, 0.1569, 0.0894, 0.0577, 0.0165, 0.0137, 0.0137, 0.0094], [0.3853, 0.0555, 0.046, 0.0316, 0.018, 0.0169, 0.0132, 0.0109], [0.1978, 0.0727, 0.05, 0.047, 0.0268, 0.0184, 0.0135, 0.0105], [0.2487, 0.2195, 0.049, 0.0316, 0.0262, 0.0262, 0.0231, 0.0204], [0.5026, 0.1632, 0.0467, 0.0342, 0.0207, 0.0126, 0.0126, 0.0104], [0.6355, 0.1251, 0.0522, 0.0359, 0.0279, 0.0169, 0.0109, 0.0085], [0.248, 0.1932, 0.1328, 0.1328, 0.0711, 0.0488, 0.038, 0.0131], [0.9362, 0.032, 0.0134, 0.0038, 0.003, 0.0006, 0.0005, 0.0004], [0.9996, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [25386, 34944, 28326, 4316, 3085, 3000, 1886, 1249, 1516, 1036, 1943, 1516, 1420, 1746, 2711, 2626, 7016, 8441, 15011, 9233, 18321, 12286, 30388, 16949, 12730, 11102, 10160, 6267, 9710, 11876, 10645, 9293, 10249, 14880, 22445, 25513, 18428, 14011, 13514, 18752, 9495, 6893, 5159, 4440, 7821, 7957, 7575, 8833, 6195, 3380, 34813, 21216, 7579, 4779, 3717, 734, 182, 140, 122, 65, 46, 31, 72]}}, {"pos": 384, "top": [[".", ",", "\u2013", " \u2013", "<|endoftext|>", "\u00a0", " ", ";"], [" \u200b\u200b", "\u2013", " ", " \u2013", "  \n\n", ",", "\u00a0\u00a0", ";"], ["\u2013", ",", "\u2026..", "\u2026.", ".", "\u2026", " \u2013", "\u2013and"], [" \u041a\u0440\u0430\u0441\u0438", "uggy", " Pubbl", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\ufffd\ufffd", "\ufffd\ufffd", " \u0434\u0435\u043a\u043b", " Milf"], [" **#", " \"", " **", " unlucky", " tricky", "\u5730\u4e9a", " **\"", "  \n\n"], [" **", "usting", "\u5730\u4e9a", " **#", " \u200b\u200b", " **\"", " crazy", " nasty"], [" **", " \"", " \u201d", " crazy", " nasty", " big", " maybe", " \"\"\""], [" **", " big", " pretty", " bigger", " \"", " nasty", " tough", " **#"], [" **", " pretty", " big", " tough", " bigger", " \u00bb", " tricky", " \"\"\""], [" classy", " tough", " tricky", " tougher", " nasty", " bigger", " big", " **"], [" **", " tough", " big", " **#", " tricky", " nasty", " tech", " #"], [" **", " **#", " **\u300c", " **\u00ab", " big", " **\u20ac", " stuff", " tough"], [" **", " **\u300c", " big", " **\u00ab", " \u00bb", " tough", " classy", " hard"], [" big", " **", " bigger", " tough", " hard", " classy", " harder", " hardcore"], [" big", " `", " tough", " tech", " stuff", " bigger", " hard", " harder"], [" gritty", " big", " tough", " tech", " harder", " nasty", " hard", " oddly"], [" big", " nasty", " tech", " tough", " oddly", " skinny", " tricky", " gritty"], [" nasty", " tech", " gritty", " tricky", " big", " scary", " tough", " skinny"], [" nasty", " harder", " scary", " **", " tricky", " gritty", " tough", " tougher"], [" harder", " tough", " gritty", " big", " hard", " nasty", " **", " tricky"], [" harder", " **", " gritty", " tough", " tougher", " --", " **#", " pricey"], [" **", " harder", " **#", " tougher", " gritty", " tough", " **+", " hardest"], [" harder", " tough", " **", " difficult", " hard", " tougher", " `", " --"], [" harder", " --", " tough", " `", " hard", " difficult", " even", " difficulty"], [" \n\n", "  \n\n", "\n\n", " \r\n\r\n", " \n\n\n", " harder", "   \n\n", " --"], [" harder", " tough", " --", " **", " tougher", " gritty", " \n\n", " hardest"], [" harder", " tough", " difficulty", " tougher", " **", " difficult", " hard", " gritty"], [" --", " \n\n", "\n\n", " harder", " tough", " hard", " **", " big"], [" **", " harder", " tough", " difficulty", " hard", " difficult", " tougher", " tech"], [" **", " harder", " tough", " difficult", " big", " hard", " tougher", " difficulty"], [" harder", " hard", " even", " **", " big", " difficult", " tough", " ,"], [" hard", " big", " harder", " even", " **", " tough", " difficult", " just"], [" hard", " harder", " big", " tough", " but", " even", " difficult", " just"], [" harder", " hard", " tech", " \u2014", " tough", " big", " wildly", " incredibly"], [" harder", " tech", " hard", " tough", "\u2014but", " \u2014", " gritty", " hardest"], [" tech", " \u2014", "\u2014but", " harder", " hard", " tough", " wildly", " incredibly"], [" tech", " harder", " \u2014", " hard", "\u2014but", " tough", " ridiculously", " incredibly"], [" tech", " hard", " incredibly", " harder", " difficult", " tough", "\u2014but", " \u2014"], [" difficult", " difficulty", " tech", " hard", " harder", " tough", " incredibly", " complex"], [" difficult", " difficulty", " tech", " hard", " harder", " tough", " complex", " engineering"], [" difficult", " tech", " engineering", " difficulty", " tough", " hard", " problem", " problems"], [" difficult", " difficulty", " engineering", " tech", " tough", " hard", " complexity", " complex"], [" difficult", " difficulty", " engineering", " tech", " tough", " hard", " harder", " problems"], [" difficulty", " difficult", " engineering", " problems", " tech", " complexity", " manageable", " problem"], [" difficulty", " engineering", " difficult", " problems", " tech", " manageable", " problem", " project"], [" engineering", " difficulty", " difficult", " tech", " manageable", " complex", " project", " problems"], [" engineering", " difficulty", " tech", " manageable", " difficult", " complex", " problems", " complexity"], [" difficulty", " tech", " engineering", " problems", " difficult", " complexity", " project", " problem"], [" tech", " engineering", " project", " difficulty", " complexity", " technical", " projects", " manageable"], [" complexity", " tech", " difficulty", " engineering", " project", " logistical", " difficult", " complex"], [" complexity", " difficulty", "\u7684\u96be\u5ea6", " logistical", " project", "\u96be\u5ea6", " engineering", "\u96e3\u5ea6"], [" project", " projects", " engineering", " complexity", " task", " \u067e\u0631\u0648\u0698\u0647", " \ud504\ub85c\uc81d\ud2b8", "\u30d7\u30ed\u30b8\u30a7\u30af\u30c8"], [" project", " projects", " engineering", " complexity", " difficulty", "\u7684\u9879\u76ee", "\u9879\u76ee", "\u4e2a\u9879\u76ee"], [" project", " projects", " engineering", "\u7684\u9879\u76ee", "\u9879\u76ee", "\u4e2a\u9879\u76ee", " \ud504\ub85c\uc81d\ud2b8", "\u30d7\u30ed\u30b8\u30a7\u30af\u30c8"], [" project", " projects", " engineering", " problem", " task", "\u9879\u76ee", "\u7684\u9879\u76ee", " architectural"], [" project", " projects", "\u9879\u76ee", "project", "\u7684\u9879\u76ee", " engineering", " \ud504\ub85c\uc81d\ud2b8", "\u4e2a\u9879\u76ee"], [" project", " projects", "\u9879\u76ee", "project", " architecture", "\u7684\u9879\u76ee", "\u4e2a\u9879\u76ee", " engineering"], [" project", " projects", "project", "\u9879\u76ee", "\u4e2a\u9879\u76ee", " projekt", "\u7684\u9879\u76ee", "-project"], [" project", " architecture", " architectural", " projects", "architecture", "project", "Architecture", " Architecture"], [" project", " architecture", " projects", " architectural", "project", " engineering", "architecture", "\u9879\u76ee"], [" project", " architecture", " architectural", " engineering", " projects", "architecture", " architect", "project"], [" project", " architecture", " architectural", " engineering", " projects", "project", " problem", "architecture"], [" project", " architecture", " architectural", " engineering", " problem", " projects", " constraint", "project"]], "p": [[0.4112, 0.1513, 0.1107, 0.0977, 0.0671, 0.0338, 0.0317, 0.0218], [0.0136, 0.0078, 0.0039, 0.0029, 0.0022, 0.002, 0.0017, 0.0017], [0.3708, 0.2713, 0.0569, 0.0569, 0.0471, 0.0324, 0.0252, 0.0185], [0.0043, 0.0022, 0.0016, 0.0016, 0.0015, 0.0012, 0.0012, 0.0011], [0.0063, 0.0044, 0.0021, 0.0021, 0.0017, 0.0017, 0.0017, 0.0016], [0.0103, 0.0063, 0.004, 0.0038, 0.0036, 0.0023, 0.0022, 0.0019], [0.0512, 0.0292, 0.0156, 0.013, 0.0122, 0.0101, 0.0065, 0.0048], [0.2012, 0.0129, 0.0094, 0.0094, 0.0083, 0.0069, 0.0061, 0.005], [0.0273, 0.0146, 0.0088, 0.0088, 0.0083, 0.0078, 0.0073, 0.0069], [0.0082, 0.0064, 0.0056, 0.0056, 0.0053, 0.005, 0.0034, 0.0034], [0.1357, 0.0236, 0.0222, 0.0134, 0.0126, 0.0092, 0.0087, 0.0082], [0.3216, 0.0141, 0.0097, 0.0036, 0.0028, 0.0026, 0.0026, 0.0022], [0.219, 0.0075, 0.0062, 0.0048, 0.0035, 0.0031, 0.0023, 0.0023], [0.0176, 0.0114, 0.0065, 0.0061, 0.0057, 0.0045, 0.0035, 0.0033], [0.0163, 0.0093, 0.0072, 0.0068, 0.006, 0.006, 0.0044, 0.0039], [0.005, 0.0044, 0.0039, 0.0037, 0.0034, 0.0032, 0.003, 0.003], [0.0249, 0.0134, 0.0134, 0.0118, 0.0092, 0.0092, 0.0081, 0.0076], [0.0238, 0.0174, 0.0154, 0.0135, 0.0127, 0.0106, 0.0099, 0.0093], [0.0468, 0.0284, 0.0235, 0.0221, 0.0221, 0.0195, 0.0172, 0.0143], [0.0631, 0.0492, 0.0263, 0.017, 0.017, 0.0141, 0.0141, 0.0132], [0.0306, 0.0239, 0.0239, 0.021, 0.0136, 0.0113, 0.0064, 0.006], [0.1325, 0.0216, 0.0168, 0.0109, 0.0085, 0.0066, 0.0048, 0.0045], [0.1454, 0.0778, 0.0472, 0.0345, 0.0253, 0.0223, 0.0209, 0.0185], [0.0796, 0.066, 0.0483, 0.0353, 0.0293, 0.0147, 0.0095, 0.0089], [0.5251, 0.1101, 0.0488, 0.0246, 0.0191, 0.018, 0.0149, 0.014], [0.1023, 0.0426, 0.0376, 0.0353, 0.0228, 0.0189, 0.0157, 0.013], [0.139, 0.0579, 0.0227, 0.0227, 0.02, 0.02, 0.0188, 0.0138], [0.0772, 0.0681, 0.0681, 0.0565, 0.0388, 0.0251, 0.0126, 0.0118], [0.1435, 0.105, 0.0341, 0.0182, 0.0171, 0.0151, 0.0151, 0.0133], [0.4451, 0.0727, 0.0222, 0.0162, 0.0119, 0.0119, 0.0105, 0.0105], [0.068, 0.0468, 0.0364, 0.0342, 0.0302, 0.0266, 0.0207, 0.0195], [0.053, 0.0388, 0.0284, 0.0235, 0.0235, 0.0162, 0.0152, 0.0134], [0.0473, 0.0444, 0.0223, 0.0197, 0.0185, 0.0163, 0.0135, 0.0112], [0.0422, 0.0349, 0.024, 0.0199, 0.0165, 0.0107, 0.0094, 0.0094], [0.0524, 0.036, 0.0248, 0.0181, 0.015, 0.0141, 0.011, 0.0103], [0.0639, 0.0468, 0.0388, 0.0302, 0.0235, 0.0195, 0.0143, 0.0143], [0.0927, 0.032, 0.0249, 0.0234, 0.0207, 0.0207, 0.0194, 0.0194], [0.085, 0.0276, 0.0215, 0.0215, 0.0215, 0.0167, 0.013, 0.0122], [0.1209, 0.0418, 0.0369, 0.0369, 0.0306, 0.0238, 0.0185, 0.0174], [0.1489, 0.0621, 0.0583, 0.0259, 0.0243, 0.0243, 0.0189, 0.0178], [0.1062, 0.0998, 0.0502, 0.0416, 0.0269, 0.0252, 0.0237, 0.0196], [0.1559, 0.0834, 0.0736, 0.0447, 0.0288, 0.0239, 0.0175, 0.0154], [0.1862, 0.128, 0.0605, 0.0268, 0.0222, 0.0184, 0.0163, 0.0144], [0.1284, 0.1284, 0.0829, 0.0368, 0.0305, 0.0197, 0.0174, 0.0174], [0.0895, 0.0895, 0.0841, 0.035, 0.0256, 0.0256, 0.0226, 0.0156], [0.0821, 0.0601, 0.0468, 0.0302, 0.0251, 0.0208, 0.0195, 0.0143], [0.0758, 0.0629, 0.0521, 0.0297, 0.0262, 0.0192, 0.018, 0.0169], [0.0864, 0.0594, 0.0384, 0.0299, 0.0299, 0.0299, 0.0248, 0.0219], [0.1465, 0.1007, 0.042, 0.037, 0.0348, 0.012, 0.0113, 0.0106], [0.1302, 0.0895, 0.0789, 0.0654, 0.0256, 0.02, 0.02, 0.0188], [0.0943, 0.0886, 0.0288, 0.0238, 0.021, 0.0174, 0.0174, 0.0164], [0.8527, 0.0375, 0.0201, 0.0138, 0.0033, 0.0029, 0.0029, 0.0029], [0.8271, 0.0599, 0.0363, 0.0151, 0.0036, 0.0026, 0.0022, 0.0018], [0.8552, 0.0547, 0.0376, 0.004, 0.0037, 0.0035, 0.0019, 0.0015], [0.9395, 0.0134, 0.0104, 0.0049, 0.003, 0.0023, 0.0018, 0.0018], [0.979, 0.0109, 0.0021, 0.001, 0.0008, 0.0007, 0.0005, 0.0005], [0.9683, 0.0177, 0.0019, 0.0015, 0.0008, 0.0007, 0.0006, 0.0005], [0.9861, 0.0085, 0.0012, 0.0009, 0.0003, 0.0003, 0.0003, 0.0002], [0.905, 0.0743, 0.0089, 0.0037, 0.0022, 0.0007, 0.0006, 0.0006], [0.9873, 0.0075, 0.0024, 0.001, 0.0006, 0.0001, 0.0001, 0.0001], [0.9401, 0.0468, 0.0081, 0.0012, 0.001, 0.0004, 0.0004, 0.0002], [0.9855, 0.0109, 0.0017, 0.0003, 0.0003, 0.0001, 0.0001, 0.0001], [0.9874, 0.0097, 0.0013, 0.0007, 0.0002, 0.0001, 0.0001, 0.0001]], "ranks": {"Rust": [37754, 38735, 42946, 81013, 9372, 9548, 7037, 3214, 5207, 3196, 3375, 7046, 7988, 8381, 8283, 5954, 8958, 26400, 31009, 13658, 32999, 29097, 16699, 10894, 6201, 7152, 6023, 4682, 5140, 8366, 8895, 8492, 9014, 11489, 7811, 8770, 9586, 8089, 11503, 10977, 8003, 5800, 2984, 2854, 6639, 4501, 5358, 3526, 1559, 1718, 14567, 14132, 2927, 2249, 1386, 316, 81, 94, 85, 35, 14, 10, 10]}}, {"pos": 385, "top": [[".", ",", "\u00a0", "\u2013", " ", ";", "[", " \u2013"], [".", "\u2013", ",", " \u2013", ".[", " ", ";", "["], [",", ".", "\u2013", " \u2013", "\u2026", ".[", "[", ";"], ["\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a", "\ub960", " SETT", "\u6676\u7247", "\uff0a\uff0a\uff0a\uff0a", "-------------</", "\ufffd\ufffd", "\ub2d8"], [",", ".", " \\(", "\\(", " ", "#", " centre", " organised"], [",", ".", "top", ".pro", " Sofia", "_client", " client", " Pro"], [",", ".", "\u00a0", "\uff01", ".(", "!", "\u2014\u2014", "set"], [",", ".", ".[", "!", ":", "work", ".#", "?"], [".", ",", " \n\n", ".[", "\u00a0", ":", ".#", "!"], [",", ".[", "\u2013", "\u00a0", ".", ":", ";", ".^"], [",", "\u00a0", ".[", ".", " \\(", ".#", ".^", "'s"], [" **", " **#", " **'", "(**", " \u0432\u0441\u0451", "\u783c", " organisation", " **\u20ac"], [" **", "\u96be\u5ea6\u5927", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " solidarit\u00e9", " **\u00ab", "eurs", "\u6491\u8d77", "UILDER"], [" showcased", "\u96be\u5ea6\u5927", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " overhaul", " roadmap", " revamped", " project", " agenda"], [",", " projects", " revamped", " project", " hugely", " challenging", " tackling", " aim"], [" projects", " centerpiece", " work", "\u9f50\u5bb6", " project", " planning", " revamped", " development"], [" revamped", " centerpiece", " overhaul", " arguably", " goals", " projects", " hugely", " project"], [" overhaul", " revamped", " centerpiece", " hardest", "\u538b\u6839", " savvy", " tougher", " hugely"], [" **", " overhaul", " **\u25a0", " hardest", " revamped", " goals", " projects", " harder"], [" hugely", " arguably", " \u2014", " perhaps", " overhaul", " harder", " revamped", " hardest"], [" \u2014", " hugely", " \n\n", "  \n\n", " arguably", " perhaps", " revamped", " wildly"], [" hugely", " harder", " overhaul", " centerpiece", " hardest", " PROJECT", " goals", " daunting"], [" hugely", " arguably", " harder", " revamped", " daunting", " projects", " work", " project"], [" \u2014", " work", " hugely", " --", " just", " ,", " ultimately", " arguably"], [" \n\n", "  \n\n", "\n\n", " \r\n\r\n", "   \n\n", " \u2014", "  \n  \n", " hugely"], [" \n\n", " ___", " hugely", " engineering", "  \n\n", " projects", " __", " tech"], [" \n\n", "\n\n", "  \n\n", " ___", " __", " _", " \r\n\r\n", " ______"], [" \n\n", "\n\n", "  \n\n", " ___", " __", " _", " ______", " engineering"], [" ___", " __", " ______", " \n\n", "  \n\n", " ____", " ________", " _____"], [" ___", " ______", " \u2014", " __", " ____", " engineering", " project", " tech"], [" ___", " project", " projects", " __", " ______", " engineering", " **", "  \n\n"], [" project", " complex", " work", " projects", " \u2014", " development", " engineering", " "], [" project", " projects", " \u2014", " complex", " tech", " engineering", " work", " **"], [" \u2014", " arguably", " project", " tech", " wildly", " truly", " unlikely", " complex"], [" arguably", " massively", " truly", " wildly", " tech", " unlikely", " \u2014", " harder"], [" \u2014", " arguably", " wildly", " massively", " unlikely", " incredibly", " truly", " tech"], [" incredibly", " wildly", " massively", " radically", " aggressively", " harder", " relentlessly", " ridiculously"], [" incredibly", " wildly", " massively", " impossible", " radically", " dramatically", " unlikely", " harder"], [" impossible", " incredibly", " wildly", " massively", " harder", " radically", " insanely", " dramatically"], [" impossible", " incredibly", " wildly", " insanely", " massively", " radically", " harder", " ridiculously"], [" impossible", " incredibly", " wildly", " insanely", " massively", " radically", " nightmare", " harder"], [" impossible", " wildly", " incredibly", " harder", " insanely", " nightmare", " difficult", " ridiculously"], [" impossible", " harder", " wildly", " incredibly", " difficult", " nightmare", " insanely", " notoriously"], [" impossible", " worse", " harder", " wildly", " incredibly", " difficult", " nightmare", " notoriously"], [" worse", " impossible", " harder", " nightmare", " incredibly", " wildly", " notoriously", " difficult"], [" worse", " impossible", " incredibly", " harder", " nightmare", " wildly", " truly", " massively"], [" impossible", " incredibly", " nightmare", " wildly", " harder", " worse", " utterly", " truly"], [" impossible", " **", " nightmare", " incredibly", " wildly", " utterly", " **\"", " catastrophic"], [" **", " impossible", " nightmare", "\u53d8\u6210\u4e00\u4e2a", "\u53d8\u6210\u4e86\u4e00\u4e2a", " incredibly", " terrifying", " catastrophic"], ["\u53d8\u6210\u4e00\u4e2a", " nightmare", "\u53d8\u6210\u4e86\u4e00\u4e2a", " into", " outright", " impossible", " catastrophic", " terrifying"], [" nightmare", " into", "\u53d8\u6210\u4e00\u4e2a", " impossible", " catastrophic", " terrifying", " outright", "into"], ["\u53d8\u6210\u4e00\u4e2a", " into", " **\"", "\u53d8\u6210\u4e86\u4e00\u4e2a", " nightmare", " **\u201c", " impossible", "into"], [" nightmare", "\u53d8\u6210\u4e00\u4e2a", " **\u201c", " into", " **\"", " impossible", "Impossible", "\u53d8\u6210\u4e86\u4e00\u4e2a"], [" into", "into", "Into", " Into", " INTO", "_into", " onto", ".into"], [" into", "Into", "into", " Into", " INTO", "_into", " impossible", " onto"], [" into", "Into", "into", " Into", " INTO", "_into", " impossible", ".into"], [" into", "into", "Into", " Into", "_into", " INTO", " nightmare", " impossible"], [" into", "into", "Into", " Into", "_into", " INTO", " nightmare", " impossible"], [" into", "into", "Into", " Into", "_into", " INTO", " impossible", " nightmare"], [" into", "into", "Into", " Into", " impossible", "_into", " INTO", " nightmare"], [" into", "into", " Into", "Into", "_into", " INTO", " impossible", ".into"], [" into", "into", " Into", "Into", " impossible", "_into", " INTO", " nightmare"], [" into", "into", " Into", " impossible", "_into", "Into", " \"", " suicidal"]], "p": [[0.7164, 0.2636, 0.0043, 0.0043, 0.0031, 0.002, 0.0011, 0.001], [0.4379, 0.1825, 0.1715, 0.0383, 0.0124, 0.0097, 0.0085, 0.0052], [0.513, 0.2423, 0.2139, 0.0106, 0.005, 0.0042, 0.0027, 0.0021], [0.0014, 0.0011, 0.0011, 0.0007, 0.0007, 0.0007, 0.0007, 0.0007], [0.1276, 0.0343, 0.0082, 0.0068, 0.0068, 0.0053, 0.0049, 0.003], [0.0141, 0.0031, 0.0024, 0.0022, 0.0014, 0.0014, 0.0014, 0.0013], [0.1722, 0.0493, 0.0103, 0.0081, 0.0081, 0.0063, 0.0063, 0.0063], [0.0769, 0.0235, 0.0046, 0.0032, 0.0032, 0.0026, 0.0025, 0.0025], [0.3012, 0.283, 0.0462, 0.0193, 0.0132, 0.011, 0.0071, 0.0071], [0.6746, 0.0045, 0.0033, 0.0031, 0.002, 0.002, 0.0018, 0.0008], [0.3273, 0.0367, 0.0304, 0.0173, 0.0082, 0.0064, 0.0041, 0.0036], [0.0087, 0.0053, 0.0032, 0.0022, 0.0022, 0.0019, 0.0018, 0.0015], [0.0057, 0.0021, 0.0014, 0.0013, 0.0013, 0.0009, 0.0009, 0.0009], [0.0019, 0.0018, 0.0016, 0.0014, 0.001, 0.001, 0.001, 0.001], [0.0069, 0.0047, 0.0044, 0.0039, 0.0024, 0.0022, 0.0021, 0.0021], [0.0014, 0.0013, 0.0012, 0.0012, 0.0012, 0.0011, 0.0011, 0.001], [0.0027, 0.0027, 0.0024, 0.0021, 0.0018, 0.0018, 0.0018, 0.0014], [0.0041, 0.0036, 0.0032, 0.0027, 0.0022, 0.0022, 0.0022, 0.0021], [0.0105, 0.0077, 0.0068, 0.0041, 0.0036, 0.0034, 0.0034, 0.0032], [0.0144, 0.0119, 0.0105, 0.006, 0.0047, 0.0047, 0.0047, 0.0047], [0.0404, 0.0278, 0.0203, 0.0168, 0.0109, 0.007, 0.0055, 0.0043], [0.0067, 0.0046, 0.0046, 0.0041, 0.0038, 0.0036, 0.0034, 0.0032], [0.0279, 0.0085, 0.008, 0.0062, 0.0062, 0.0052, 0.0052, 0.0043], [0.042, 0.0211, 0.0145, 0.0128, 0.0106, 0.0106, 0.0094, 0.0073], [0.6536, 0.1287, 0.0608, 0.0174, 0.012, 0.0077, 0.0037, 0.0034], [0.0363, 0.0341, 0.0301, 0.0207, 0.0142, 0.0134, 0.0134, 0.0118], [0.37, 0.3265, 0.0501, 0.047, 0.0252, 0.0112, 0.0099, 0.0077], [0.4514, 0.1465, 0.1072, 0.065, 0.0371, 0.0239, 0.0154, 0.0078], [0.3119, 0.1222, 0.1078, 0.0696, 0.0542, 0.0478, 0.0155, 0.0155], [0.1511, 0.0592, 0.0317, 0.0298, 0.028, 0.0204, 0.0204, 0.0192], [0.1366, 0.0779, 0.0606, 0.0368, 0.0345, 0.0237, 0.0237, 0.0223], [0.0852, 0.0623, 0.0586, 0.0586, 0.0402, 0.0168, 0.0168, 0.0131], [0.069, 0.0347, 0.0306, 0.0254, 0.0238, 0.0174, 0.0154, 0.0136], [0.0542, 0.029, 0.029, 0.0273, 0.0273, 0.0187, 0.0165, 0.0155], [0.0509, 0.0256, 0.0226, 0.0226, 0.0187, 0.0187, 0.0187, 0.0155], [0.0981, 0.0634, 0.0409, 0.0248, 0.0233, 0.0233, 0.0182, 0.015], [0.0657, 0.0657, 0.0375, 0.0292, 0.0257, 0.0257, 0.02, 0.02], [0.073, 0.0644, 0.0471, 0.0391, 0.0367, 0.0252, 0.0209, 0.0197], [0.1229, 0.0618, 0.0512, 0.0352, 0.0274, 0.0242, 0.0227, 0.0188], [0.1275, 0.0683, 0.0499, 0.0343, 0.0285, 0.0236, 0.0236, 0.0173], [0.1365, 0.0569, 0.0472, 0.0252, 0.0223, 0.0223, 0.0185, 0.0163], [0.0977, 0.0631, 0.0523, 0.0317, 0.028, 0.0232, 0.0218, 0.0205], [0.0884, 0.0607, 0.0473, 0.0473, 0.0325, 0.0223, 0.021, 0.0185], [0.1212, 0.069, 0.0538, 0.0446, 0.0369, 0.027, 0.0254, 0.0239], [0.1491, 0.1025, 0.0455, 0.0333, 0.0229, 0.0202, 0.0178, 0.0167], [0.0923, 0.0815, 0.034, 0.03, 0.0281, 0.0264, 0.016, 0.0151], [0.0907, 0.0486, 0.0429, 0.0403, 0.0277, 0.026, 0.0202, 0.019], [0.1299, 0.1299, 0.0372, 0.0328, 0.024, 0.0146, 0.0121, 0.0114], [0.1884, 0.0836, 0.0507, 0.0327, 0.024, 0.0165, 0.0137, 0.0128], [0.1902, 0.1084, 0.0657, 0.0617, 0.058, 0.0424, 0.0166, 0.0138], [0.1622, 0.0816, 0.0766, 0.0676, 0.022, 0.0182, 0.0182, 0.0182], [0.2559, 0.1993, 0.1287, 0.0536, 0.0473, 0.0369, 0.0346, 0.021], [0.1405, 0.1405, 0.1094, 0.0966, 0.0907, 0.0706, 0.0334, 0.026], [0.9486, 0.0223, 0.0197, 0.005, 0.003, 0.0013, 0.0, 0.0], [0.8923, 0.0503, 0.0392, 0.0087, 0.006, 0.0028, 0.0001, 0.0001], [0.941, 0.0251, 0.0195, 0.0072, 0.0049, 0.0018, 0.0001, 0.0001], [0.8876, 0.0501, 0.0442, 0.0077, 0.0032, 0.0028, 0.0015, 0.0012], [0.9429, 0.0285, 0.0196, 0.0034, 0.0021, 0.0016, 0.0006, 0.0006], [0.9629, 0.02, 0.0107, 0.0021, 0.0021, 0.0009, 0.0005, 0.0004], [0.9899, 0.0046, 0.0025, 0.0015, 0.0005, 0.0004, 0.0002, 0.0001], [0.9961, 0.0025, 0.0007, 0.0005, 0.0001, 0.0001, 0.0, 0.0], [0.9984, 0.0007, 0.0003, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9992, 0.0002, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0]], "ranks": {"Rust": [53388, 53463, 64267, 44277, 17667, 35091, 21906, 28891, 29056, 19447, 32595, 28512, 43088, 37039, 62099, 68374, 91720, 104277, 128629, 114662, 89344, 110813, 92370, 38489, 41959, 48902, 35545, 22631, 23584, 28030, 16847, 14347, 12382, 9950, 14906, 16722, 11392, 11346, 13128, 16082, 11300, 9049, 7143, 8544, 7468, 6463, 5304, 6708, 4294, 9516, 40790, 78840, 58378, 76656, 124515, 126369, 88848, 54286, 65599, 27480, 33288, 14611, 10044]}}, {"pos": 386, "top": [[",", ".", "\u00a0\u00a0", "\u2026.", ";", " \u2013", ",.", "\u2026.."], ["  \n\n", "  \n", "\u2011", " \n  \n", "\uff20", "  \n  \n", "?\u201d,", "\u201d,"], ["\u2026\u201d", "\u2026.", ",", "\u2026..", "\u2026", "\u2026,", ".", "\u201d\u2026"], ["\uff3f\uff3f", " **\u25a0", "\uff0a\uff0a\uff0a\uff0a", " **>>", " **\u201c", " milfs", "\uff0d\uff0d\uff0d\uff0d", "\uff0a\uff0a"], [" \u201c.", " **\u201c", " \u2019", "\uff20", " \u200e", " \u201d", "\\xc", "ed"], [",", " \u201d", " \".", " \u200e", " \u201c.", " \u2019", "ed", "\u2026\u201d"], [" \u2019", "\u201d\u2014", " \u201d", "\u00ac", "\u2014but", " \uff3b", " **\u201c", "\\xc"], ["\uff20", " \u2019", " **\u201c", "\\xc", " \uff3b", " {{$", " *@", " \"@"], [" \uff3b", "\uff20", "\uff3b", "\u2014but", "\\xc", "\u2026\u201d", "!\u2019", "!\u201d"], [" \u00ad", "\u2014but", "\\xc", ",", "\u2014or", "\u2014a", "\u2014and", "\u2011"], [" \u00ad", "\\xc", "\u2014but", "\u2014or", "\u2014and", ",", "\u2011", " \u2019"], ["\\xc", " {{$", " **\u201c", " **\u300c", " **\u25a0", " ___", " \u00ad", " **\u00ab"], [" **\u300c", " **\u00ab", " ___", " **\u201c", " **\u25a0", "\\xc", " **\u201e", " scary"], [" scary", " bigger", " big", " freaking", " skinny", " pretty", " crazy", " crappy"], [" big", " bigger", " pretty", " huge", " scary", " clever", " savvy", " crazy"], [" big", " pretty", " bigger", " scary", " incredibly", " huge", " freaking", " savvy"], [" pretty", " big", " bigger", " huge", " skinny", " scary", " incredibly", " savvy"], [" bigger", " pretty", " big", " skinny", " crappy", " savvy", " scary", " freaking"], [" pretty", " bigger", " freaking", " crappy", " scary", " skinny", " nasty", " smack"], [" pretty", " smack", " bigger", " freaking", " barely", " wildly", " incredibly", " big"], [" barely", " hugely", " wildly", " smack", " just", " pretty", " truly", " bigger"], [" ``", " freaking", " ''", " bigger", " smack", " incredibly", " **\u25a0", " crappy"], [" ``", " ''", " {{--<", " freaking", " smack", " barely", " incredibly", " bigger"], [" ``", " ''", " barely", " --", " {{--<", " just", " wildly", " truly"], [" barely", " ``", " --", " \u2015", " \u00ad", " hugely", " ''", " genuinely"], [" ``", " barely", " wildly", " incredibly", " hugely", " bigger", " {{--<", " --"], [" ``", " barely", " wildly", " ''", " bigger", " incredibly", " hugely", " --"], [" barely", " --", " just", " wildly", " truly", " hugely", " \u2015", "\n\n"], [" wildly", " barely", " hugely", " incredibly", " \u00ad", " truly", " massively", " \u2015"], [" \u2014", " wildly", " ___", " ____", " hugely", " incredibly", " barely", " truly"], [" incredibly", " wildly", " barely", " huge", " truly", " hugely", " just", " massively"], [" incredibly", " just", " truly", " wildly", " barely", " huge", " massively", " massive"], [" incredibly", " massively", " wildly", " massive", " truly", " barely", " huge", " hugely"], [" incredibly", " massively", " truly", " wildly", " ridiculously", " massive", " hugely", " genuinely"], [" incredibly", " massively", " truly", " ridiculously", " hugely", " wildly", " massive", " genuinely"], [" incredibly", " massively", " wildly", " ridiculously", " massive", " notoriously", " horrific", " hugely"], [" incredibly", " massively", " ridiculously", " wildly", " horrific", " nasty", " notoriously", " aggressively"], [" incredibly", " massively", " ridiculously", " wildly", " massive", " horrific", " insanely", " desperately"], [" incredibly", " impossible", " massively", " horrific", " ridiculously", " insanely", " desperately", " desperate"], [" incredibly", " impossible", " horrific", " insanely", " ridiculously", " massively", " catastrophic", " absurd"], [" incredibly", " impossible", " catastrophic", " horrific", " insanely", " nightmare", " ridiculously", " absurd"], [" catastrophic", " horrific", " incredibly", " nightmare", " insanely", " impossible", " ridiculously", " absurd"], [" catastrophic", " incredibly", " impossible", " nightmare", " horrific", " insanely", " hardcore", " brutally"], [" impossible", " catastrophic", " nightmare", " incredibly", " brutally", " horrific", " desperate", " absurd"], [" impossible", " catastrophic", " nightmare", " incredibly", " absurd", " brutally", " hardcore", " relentless"], [" impossible", " nightmare", " catastrophic", " desperate", " brutally", " incredibly", " absurd", " relentless"], [" impossible", " catastrophic", " nightmare", " desperate", " imposs", " Impossible", " incredibly", " brutally"], [" impossible", " catastrophic", " nightmare", " desperate", " Impossible", " imposs", " absurd", " catastrophe"], [" impossible", " catastrophic", " nightmare", " unsustainable", " imposs", " catastrophe", " desperate", " Impossible"], [" impossible", " Impossible", " catastrophic", " nightmare", " imposs", " unsustainable", " catastrophe", " desperate"], [" impossible", " Impossible", " imposs", "Impossible", " nightmare", " unsustainable", " catastrophic", " sabotage"], [" impossible", " Impossible", " imposs", "Impossible", " nightmare", " **\"", " unsustainable", " sabotage"], [" impossible", " Impossible", " imposs", "Impossible", " **\"", " nightmare", " **\u201c", " catastrophic"], [" impossible", " Impossible", "Impossible", " imposs", " nightmare", " unsustainable", "\u662f\u4e0d\u53ef\u80fd\u7684", " sabotage"], [" impossible", " Impossible", "Impossible", " imposs", "\u4e0d\u53ef\u80fd\u7684", "\u662f\u4e0d\u53ef\u80fd\u7684", " impossibile", "\u662f\u4e0d\u53ef\u80fd"], [" impossible", " Impossible", "Impossible", " imposs", " nightmare", "\u662f\u4e0d\u53ef\u80fd\u7684", " imposible", "\u4e0d\u53ef\u80fd\u7684"], [" impossible", " Impossible", "Impossible", " imposs", " nightmare", "\u4e0d\u53ef\u80fd", "\u4e0d\u53ef\u80fd\u7684", " suicide"], [" impossible", " Impossible", "Impossible", " imposs", " suicide", " nightmare", "\u4e0d\u53ef\u80fd", " suicidal"], [" impossible", " Impossible", "Impossible", " imposs", " suicide", " nightmare", " suicidal", " suic"], [" impossible", " Impossible", " suicide", " imposs", "Impossible", " suicidal", " nightmare", " suic"], [" impossible", "-im", "/im", " Impossible", " suicide", "'im", " imposs", "im"], [" impossible", " suicide", "-im", " Impossible", "/im", " suicidal", " imposs", "'im"], [" a", " an", " \"", " impossible", " suicide", " **\"", " suicidal", " Impossible"]], "p": [[0.5832, 0.4008, 0.0042, 0.0022, 0.0016, 0.0015, 0.0012, 0.0007], [0.2072, 0.0338, 0.0318, 0.011, 0.0086, 0.0071, 0.0067, 0.0059], [0.1513, 0.1513, 0.1178, 0.0862, 0.0715, 0.0631, 0.0298, 0.0232], [0.036, 0.0318, 0.0141, 0.0124, 0.0124, 0.011, 0.0097, 0.0085], [0.133, 0.0807, 0.0628, 0.0628, 0.0381, 0.0358, 0.0246, 0.0204], [0.1431, 0.0194, 0.0142, 0.0125, 0.0117, 0.0081, 0.0081, 0.0067], [0.1316, 0.0963, 0.0584, 0.0549, 0.0215, 0.0178, 0.0157, 0.0122], [0.0686, 0.0502, 0.0416, 0.0367, 0.0269, 0.0237, 0.0209, 0.0153], [0.0631, 0.0593, 0.0492, 0.0408, 0.0338, 0.0317, 0.0263, 0.0263], [0.0998, 0.0472, 0.0472, 0.0367, 0.0173, 0.0105, 0.0105, 0.0082], [0.3897, 0.0677, 0.0465, 0.0194, 0.0161, 0.0161, 0.0151, 0.0133], [0.0254, 0.0145, 0.0113, 0.0093, 0.0093, 0.0077, 0.0073, 0.0068], [0.0911, 0.0588, 0.0216, 0.0168, 0.0116, 0.0109, 0.0109, 0.0109], [0.052, 0.052, 0.0357, 0.0278, 0.0149, 0.0131, 0.0123, 0.0109], [0.1177, 0.0809, 0.0671, 0.0337, 0.0317, 0.0132, 0.011, 0.0103], [0.0853, 0.0707, 0.0551, 0.0429, 0.0403, 0.0334, 0.0277, 0.0216], [0.1154, 0.1018, 0.0657, 0.0424, 0.0311, 0.0274, 0.0213, 0.0166], [0.0868, 0.0676, 0.0362, 0.0319, 0.03, 0.0265, 0.0265, 0.0249], [0.0477, 0.0448, 0.0448, 0.0371, 0.0255, 0.024, 0.024, 0.0212], [0.0318, 0.0299, 0.0299, 0.0281, 0.0264, 0.0193, 0.0193, 0.0181], [0.0289, 0.0225, 0.0199, 0.0187, 0.0145, 0.0128, 0.0113, 0.01], [0.0491, 0.0317, 0.0232, 0.0181, 0.011, 0.0085, 0.008, 0.008], [0.433, 0.1165, 0.0115, 0.0075, 0.0066, 0.0066, 0.0062, 0.0055], [0.2484, 0.0758, 0.0231, 0.0149, 0.014, 0.0109, 0.0109, 0.0103], [0.0332, 0.0293, 0.0275, 0.0243, 0.0201, 0.0201, 0.0189, 0.0147], [0.0517, 0.0216, 0.0216, 0.0168, 0.0158, 0.0139, 0.0123, 0.0123], [0.0633, 0.0281, 0.0233, 0.0205, 0.016, 0.0133, 0.0133, 0.0133], [0.036, 0.036, 0.0263, 0.0247, 0.0193, 0.017, 0.015, 0.015], [0.0424, 0.0374, 0.033, 0.0257, 0.0227, 0.0188, 0.0156, 0.0156], [0.1223, 0.0329, 0.0329, 0.029, 0.0273, 0.0273, 0.0256, 0.0212], [0.0684, 0.05, 0.0415, 0.039, 0.0344, 0.0304, 0.0285, 0.0268], [0.0712, 0.046, 0.0432, 0.0381, 0.0336, 0.0316, 0.0316, 0.0297], [0.0875, 0.0725, 0.0413, 0.0388, 0.0388, 0.0251, 0.0208, 0.0208], [0.1283, 0.0938, 0.0502, 0.0416, 0.0368, 0.0324, 0.0223, 0.0209], [0.2006, 0.0948, 0.0395, 0.0328, 0.0308, 0.0308, 0.0289, 0.0211], [0.2458, 0.0904, 0.0455, 0.0427, 0.0294, 0.019, 0.019, 0.0167], [0.2238, 0.0726, 0.0499, 0.0389, 0.0284, 0.0251, 0.0236, 0.0208], [0.2063, 0.1251, 0.0432, 0.0382, 0.0382, 0.0262, 0.0204, 0.0169], [0.1507, 0.0628, 0.0521, 0.0459, 0.0432, 0.0316, 0.0297, 0.0262], [0.166, 0.0692, 0.0611, 0.0539, 0.0447, 0.0348, 0.0289, 0.0225], [0.1037, 0.0713, 0.0713, 0.0629, 0.0555, 0.0406, 0.0337, 0.0297], [0.1209, 0.0647, 0.0571, 0.0445, 0.0445, 0.0346, 0.0325, 0.0306], [0.0722, 0.0562, 0.0562, 0.0438, 0.0363, 0.032, 0.0301, 0.0283], [0.1279, 0.0776, 0.0604, 0.0344, 0.0323, 0.0304, 0.0304, 0.0268], [0.1325, 0.0804, 0.0626, 0.0315, 0.0296, 0.0245, 0.0216, 0.0203], [0.1435, 0.0562, 0.0528, 0.0283, 0.0265, 0.0234, 0.022, 0.0194], [0.3052, 0.0772, 0.0601, 0.0195, 0.0195, 0.0162, 0.0134, 0.0134], [0.4095, 0.0806, 0.0432, 0.0297, 0.0246, 0.018, 0.0132, 0.0132], [0.2565, 0.1212, 0.0572, 0.0393, 0.0224, 0.0224, 0.0186, 0.0154], [0.2404, 0.0831, 0.078, 0.078, 0.0473, 0.0369, 0.0253, 0.0164], [0.279, 0.1692, 0.1026, 0.0799, 0.0623, 0.0313, 0.0276, 0.0148], [0.3927, 0.2699, 0.0993, 0.0993, 0.0365, 0.0284, 0.0068, 0.0039], [0.3702, 0.1981, 0.1061, 0.1061, 0.0568, 0.0501, 0.0105, 0.0093], [0.4008, 0.2755, 0.1301, 0.1148, 0.0176, 0.0054, 0.0033, 0.0033], [0.4321, 0.3365, 0.1403, 0.0851, 0.0016, 0.0011, 0.0006, 0.0006], [0.4133, 0.4133, 0.0814, 0.0718, 0.0046, 0.0017, 0.0011, 0.0011], [0.4897, 0.3814, 0.0751, 0.0456, 0.0033, 0.0011, 0.0007, 0.0006], [0.4614, 0.3593, 0.0908, 0.0802, 0.0021, 0.0019, 0.001, 0.0005], [0.5522, 0.3349, 0.0659, 0.0312, 0.0079, 0.0029, 0.0018, 0.0005], [0.7396, 0.165, 0.0325, 0.0325, 0.0197, 0.0039, 0.0021, 0.0006], [0.5548, 0.1589, 0.1092, 0.0663, 0.0276, 0.0168, 0.0102, 0.0102], [0.4971, 0.2348, 0.0762, 0.0408, 0.0299, 0.016, 0.0141, 0.0132], [0.6648, 0.1905, 0.09, 0.0227, 0.0147, 0.0045, 0.0011, 0.0007]], "ranks": {"Rust": [23117, 34602, 45954, 29413, 1199, 1912, 5511, 4749, 7477, 6720, 3654, 13497, 11536, 18374, 10343, 4852, 5822, 29084, 43811, 21804, 26653, 56514, 37140, 15994, 12523, 18438, 15872, 11110, 9493, 13015, 9837, 8232, 10372, 17488, 15482, 19222, 17014, 13047, 16117, 20862, 17071, 16267, 16913, 24496, 16092, 14660, 14408, 17626, 8634, 11487, 48974, 70981, 46680, 40140, 51171, 39696, 20713, 11999, 7398, 3675, 3590, 1451, 829]}}, {"pos": 387, "top": [[".", ",", "\u2013", ";", " \u2013", "\u2026.", ",.", "\u00a0\u00a0"], [".", " \u200b\u200b", " \u2013", "\u2013", ",", ",.", ";", ":."], [".", ",", "\u2013", "\u2026.", "\u2026..", " \u2013", "\u2026", " \u200b\u200b"], [" milfs", " Shemale", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Blowjob", " pornstar", " cumshot", "odle", " Guta"], [" \u200b\u200b", " \".", ".@", ".", " \"@", ":.", "@d", " *."], [" \u200b\u200b", ".", "!.", " \".", ",", "\u2026.", ",.", "!)."], [" \u200b\u200b", ".\"", ".", ".\u201d", " theater", " favorite", ":.", "\u0219"], [" \u200b\u200b", "!.", " \u062c\u062f\u064b\u0627", ".@", "@a", ":.", " *@", "@d"], [" \u200b\u200b", ".", "!.", ":.", "!\u201d.", ",.", "!", ".\u201d"], [",", ".", "!,", ",.", ".,", "!.", " bigger", ":"], [" @", ".@", ".", " big", " bigger", "._", " tough", " flashy"], [" bigger", " savvy", " flashy", " veggies", " pricey", " funky", " showcase", " big"], [" savvy", " bigger", " big", " veggies", " showcase", " flashy", " hustle", " funky"], [" savvy", " bigger", " funky", " big", " flashy", " trendy", " showcase", " pricey"], [" savvy", " flashy", " bigger", " big", " pricey", " funky", " massive", " classic"], [" savvy", " showcase", " bigger", " flashy", " trendy", " buzz", " pricey", " hardcore"], [" savvy", " bigger", " big", " quirky", " nasty", " incredibly", " flashy", " pricey"], [" savvy", " quirky", " pricey", " funky", " bigger", " nasty", " flashy", " tweaking"], [" savvy", "-esque", " flashy", " quirky", " pricey", " incredibly", " nasty", " bigger"], [" savvy", " incredibly", " hugely", " pricey", " sprawling", " revamped", " wildly", " bigger"], [" hugely", " wildly", " revamped", " sprawling", " savvy", " swiftly", " vastly", " myriad"], [" savvy", " lucrative", " bigger", " smarter", " flashy", " pricey", " blockbuster", " hugely"], [" hugely", " savvy", " bigger", " wildly", " sprawling", " lucrative", " revamped", " incredibly"], [" hugely", " wildly", " massively", " much", " ultimately", " dramatically", " myriad", " more"], [" hugely", " wildly", " vastly", " myriad", " \n\n", " massively", " bigger", " incredibly"], [" hugely", " tech", " massively", " incredibly", " wildly", " bigger", " lucrative", " savvy"], [" hugely", " tech", " wildly", " massively", " sprawling", " incredibly", " aggressively", " heavily"], [" \n\n", " hugely", " tech", "\n\n", " heavily", " massively", " wildly", " arguably"], [" tech", " hugely", " massively", " heavily", " incredibly", " complex", " arguably", " technology"], [" tech", " technology", " complex", " modern", " incredibly", " hugely", " heavily", " global"], [" complex", " tech", " technology", " hard", " massive", " incredibly", " heavily", " high"], [" complex", " modern", " high", " hard", " heavily", " critical", " technology", " work"], [" complex", " massively", " massive", " hard", " incredibly", " heavily", " modern", " technology"], [" tech", " complex", " technical", " massively", " technology", " hardcore", " complexity", " incredibly"], [" massively", " incredibly", " complex", " notoriously", " massive", " tech", " hardcore", " extremely"], [" incredibly", " massively", " complex", " notoriously", " extremely", " tech", " massive", " technical"], [" incredibly", " tech", " massively", " notoriously", " impossible", " extremely", " hardcore", " complex"], [" impossible", " complex", " incredibly", " difficult", " massively", " technical", " extremely", " tech"], [" impossible", " difficult", " Impossible", " incredibly", " technical", " notoriously", " extremely", " problematic"], [" impossible", " technical", " Impossible", " tech", " notoriously", " difficult", " relentless", " incredibly"], [" impossible", " technical", " engineering", " tech", " Impossible", " hardware", " relentless", " incredibly"], [" engineering", " technical", " impossible", " tech", " relentless", " Impossible", " hardcore", " hardware"], [" engineering", " technical", " impossible", " hardcore", " tech", " hardware", " relentless", " difficult"], [" technical", " engineering", " impossible", " difficult", " Impossible", " tech", " imposs", " hardcore"], [" technical", " engineering", " impossible", " difficult", " logistical", " tech", " hardcore", " challenging"], [" technical", " impossible", " engineering", " difficult", " logistical", " nightmare", " challenging", " hardcore"], [" impossible", " engineering", " technical", " difficult", " nightmare", " imposs", " Impossible", " logistical"], [" impossible", " technical", " difficult", " engineering", " Impossible", " imposs", " logistical", " challenging"], [" impossible", " logistical", " technical", " imposs", " nightmare", " engineering", " difficult", " Impossible"], [" impossible", " nightmare", " imposs", " Impossible", " logistical", "Impossible", " unsustainable", " nightmares"], [" imposs", " nightmare", " impossible", "Impossible", " Impossible", " sabotage", " logistical", " nightmares"], [" nightmare", " imposs", " impossible", " Impossible", "Impossible", " **\"", " nightmares", " sabotage"], [" nightmare", " impossible", " imposs", "Impossible", " Impossible", " **\"", " nightmares", " catastrophe"], [" nightmare", " imposs", " impossible", "Impossible", " Impossible", " nightmares", " engineering", " catastrophe"], [" imposs", " impossible", "Impossible", " nightmare", " Impossible", " nightmares", "\u4e0d\u53ef\u80fd", "\u4e0d\u53ef\u80fd\u7684"], [" nightmare", " imposs", " impossible", "Impossible", " Impossible", " nightmares", " suicide", " deadlock"], [" nightmare", " imposs", " impossible", " Impossible", "Impossible", " nightmares", " suicide", " Nightmare"], [" nightmare", " imposs", " impossible", " Impossible", "Impossible", " suicide", " nightmares", " trap"], [" nightmare", " imposs", " impossible", " suicide", " Impossible", "Impossible", " trap", " disaster"], [" nightmare", " imposs", " suicide", " impossible", " trap", " Impossible", " disaster", " engineering"], [" nightmare", " impossible", " imposs", " suicide", " Impossible", " trap", " technical", " logistical"], [" nightmare", " suicide", " impossible", " imposs", " trap", " logistical", " technical", " performance"], [" \"", " technical", " suicide", " nightmare", " trap", " logistical", " performance", " architectural"]], "p": [[0.8855, 0.1058, 0.0036, 0.0013, 0.001, 0.0006, 0.0004, 0.0003], [0.4028, 0.0899, 0.0745, 0.0658, 0.0274, 0.0089, 0.0084, 0.0061], [0.8625, 0.0487, 0.0295, 0.026, 0.0123, 0.0051, 0.0035, 0.002], [0.0105, 0.0105, 0.0105, 0.0068, 0.006, 0.0032, 0.0023, 0.0021], [0.0725, 0.0118, 0.0063, 0.0063, 0.0053, 0.0041, 0.0028, 0.0026], [0.5855, 0.0188, 0.0037, 0.002, 0.0015, 0.0014, 0.0014, 0.0011], [0.3268, 0.0304, 0.0252, 0.0077, 0.005, 0.005, 0.0044, 0.0039], [0.1965, 0.0072, 0.0052, 0.0043, 0.0043, 0.0028, 0.0023, 0.0019], [0.3904, 0.2683, 0.0466, 0.0207, 0.0118, 0.0104, 0.0071, 0.0038], [0.1671, 0.0212, 0.0057, 0.0045, 0.0042, 0.0042, 0.0027, 0.0024], [0.064, 0.0251, 0.0251, 0.0143, 0.0098, 0.0072, 0.0063, 0.0053], [0.0054, 0.005, 0.0031, 0.0027, 0.0024, 0.0024, 0.0022, 0.002], [0.0084, 0.0084, 0.0061, 0.0042, 0.0035, 0.0029, 0.0027, 0.0027], [0.0138, 0.0051, 0.0048, 0.0042, 0.0037, 0.0029, 0.0027, 0.0026], [0.0184, 0.0063, 0.0056, 0.0053, 0.0038, 0.0034, 0.003, 0.003], [0.0065, 0.0021, 0.002, 0.0019, 0.0017, 0.0017, 0.0017, 0.0015], [0.0358, 0.0075, 0.0058, 0.0052, 0.0043, 0.004, 0.0038, 0.0035], [0.0672, 0.0103, 0.0091, 0.0067, 0.0067, 0.0052, 0.0052, 0.0033], [0.0513, 0.0122, 0.0107, 0.0101, 0.0101, 0.0095, 0.0089, 0.0065], [0.0195, 0.0098, 0.0087, 0.0087, 0.0081, 0.0076, 0.0049, 0.0046], [0.0259, 0.0101, 0.0101, 0.0095, 0.0095, 0.0095, 0.0095, 0.009], [0.0136, 0.0082, 0.0077, 0.005, 0.0044, 0.0044, 0.0044, 0.0039], [0.0225, 0.0175, 0.0113, 0.0106, 0.0088, 0.0088, 0.0078, 0.0073], [0.0175, 0.01, 0.01, 0.0094, 0.0094, 0.0068, 0.0068, 0.006], [0.0741, 0.0199, 0.0146, 0.0137, 0.0129, 0.0121, 0.0114, 0.0107], [0.0406, 0.0316, 0.0217, 0.0204, 0.0192, 0.0116, 0.0116, 0.0109], [0.0324, 0.0268, 0.0173, 0.0163, 0.0119, 0.0119, 0.0087, 0.0082], [0.032, 0.03, 0.0234, 0.0206, 0.0194, 0.0182, 0.0133, 0.0125], [0.0434, 0.0281, 0.015, 0.015, 0.0141, 0.0133, 0.011, 0.0097], [0.0826, 0.0268, 0.0252, 0.0135, 0.0119, 0.0099, 0.0099, 0.0099], [0.0511, 0.0273, 0.02, 0.0188, 0.0188, 0.0177, 0.0146, 0.0137], [0.0559, 0.015, 0.0133, 0.0133, 0.0125, 0.0117, 0.0117, 0.011], [0.0723, 0.0207, 0.0183, 0.0134, 0.0126, 0.0118, 0.0118, 0.0111], [0.0703, 0.0661, 0.0275, 0.0243, 0.0178, 0.0167, 0.0167, 0.0157], [0.0978, 0.0557, 0.0492, 0.0408, 0.0338, 0.0205, 0.0193, 0.0181], [0.0767, 0.072, 0.041, 0.041, 0.0362, 0.03, 0.0194, 0.0161], [0.0621, 0.0484, 0.0454, 0.0354, 0.0332, 0.0312, 0.0276, 0.0243], [0.0811, 0.0523, 0.0462, 0.0408, 0.0317, 0.0317, 0.0298, 0.0263], [0.2903, 0.0885, 0.0347, 0.0287, 0.027, 0.0224, 0.0186, 0.0186], [0.2457, 0.0515, 0.0312, 0.0202, 0.0202, 0.0202, 0.0189, 0.0189], [0.167, 0.1474, 0.0696, 0.045, 0.0226, 0.0155, 0.0146, 0.0137], [0.2086, 0.2086, 0.0985, 0.0341, 0.0151, 0.0151, 0.0151, 0.0142], [0.2274, 0.2007, 0.0891, 0.0225, 0.0199, 0.0165, 0.0155, 0.0137], [0.172, 0.172, 0.1339, 0.0299, 0.0281, 0.0181, 0.017, 0.017], [0.1826, 0.1422, 0.1422, 0.0462, 0.015, 0.0141, 0.0124, 0.0117], [0.1616, 0.1258, 0.098, 0.0361, 0.0264, 0.0219, 0.017, 0.017], [0.1982, 0.0879, 0.0826, 0.0415, 0.0344, 0.0304, 0.0252, 0.0222], [0.2674, 0.0816, 0.0597, 0.0465, 0.0385, 0.0362, 0.03, 0.0234], [0.2231, 0.068, 0.0564, 0.0564, 0.0498, 0.0388, 0.0364, 0.0302], [0.1691, 0.1492, 0.1025, 0.0622, 0.0549, 0.0229, 0.019, 0.0178], [0.2263, 0.2263, 0.1372, 0.1211, 0.0832, 0.0186, 0.0145, 0.0128], [0.3252, 0.1536, 0.1536, 0.1356, 0.1056, 0.0303, 0.0063, 0.0053], [0.474, 0.1539, 0.1358, 0.0566, 0.0441, 0.0389, 0.0126, 0.0092], [0.2929, 0.2584, 0.1383, 0.0951, 0.0509, 0.0114, 0.01, 0.01], [0.4276, 0.2289, 0.1573, 0.0842, 0.0743, 0.0022, 0.0014, 0.0012], [0.4658, 0.2493, 0.0809, 0.0556, 0.0433, 0.0124, 0.0103, 0.0043], [0.8452, 0.054, 0.0421, 0.0175, 0.0155, 0.0121, 0.003, 0.0024], [0.6989, 0.1376, 0.0574, 0.0307, 0.0307, 0.01, 0.0088, 0.0053], [0.73, 0.0769, 0.0467, 0.0321, 0.0283, 0.0195, 0.0172, 0.0063], [0.4439, 0.1441, 0.1122, 0.0874, 0.0322, 0.025, 0.0172, 0.0143], [0.2497, 0.2203, 0.1179, 0.1179, 0.0462, 0.0205, 0.0205, 0.0193], [0.2478, 0.193, 0.1033, 0.0458, 0.038, 0.0357, 0.0357, 0.0179], [0.3177, 0.1031, 0.091, 0.0855, 0.0519, 0.0379, 0.0296, 0.0245]], "ranks": {"Rust": [33673, 65572, 64534, 143501, 11773, 9536, 23696, 9176, 12189, 3695, 3436, 9315, 6268, 5493, 7514, 9862, 8394, 33285, 27588, 33419, 16470, 18769, 12112, 7228, 5614, 9073, 6489, 10486, 11475, 15330, 10980, 13443, 17739, 28239, 21119, 11270, 9454, 8729, 9262, 10975, 6013, 6278, 6330, 7220, 9626, 10500, 10413, 8263, 5405, 7195, 37420, 53642, 30938, 27522, 22157, 24992, 15034, 7563, 4273, 2450, 2495, 2076, 2097]}}, {"pos": 388, "top": [[",", "\u2013", "s", ".", " \u200b\u200b", ";", " \u2013", " "], [" \u200b\u200b", "s", "ness", "tures", "szer", "sWith", "sprozess", " Vapor"], [" \u200b\u200b", "s", "\u2026..", "\u2013", "\u2026.", "\u2013and", "ness", ","], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " \u041a\u0440\u0430\u0441\u0438", " pornstar", " Blowjob", " milfs", " \u041f\u043e\u043f\u0440\u043e", "schluss"], ["s", " \u200b\u200b", "ske", "s\u00e4", "szer", ".ua", "schluss", " mold"], [" \u200b\u200b", "s", "avior", "sver", "siz", ".ua", "s\u00e4", "szer"], ["s", " \u200b\u200b", "ske", "s\u00e4", "anceled", "\u064b\u0627", "siz", "Canceled"], [" \u200b\u200b", "s", "sburg", "avior", "ske", " \u062c\u062f\u064b\u0627", "anceled", "ighbors"], [" \u200b\u200b", "s", ".\u00bb", "#\"", "\u200b\u200b", ":\"", "?\u00bb", "!\u00bb"], ["s", " \u200b\u200b", "-\"", "!\"", ":\"", "avior", "scape", "utang"], ["s", " \u200b\u200b", "scape", "!\"", "-\"", "?\"", ":\"", ".\""], ["s", " \u200b\u200b", "avior", "scape", " pornstar", "sburg", "utang", "ization"], [" \u200b\u200b", "s", "avior", "ness", " pornstar", " theater", "scape", " flavors"], [" \u200b\u200b", "s", " theater", " Savior", " defense", ".\u00bb", " \u00ab", " canceled"], ["s", " theater", " favorite", " trivia", " defense", " flavor", " favorites", " glam"], ["s", " theater", " fake", " flavor", " flavors", " mold", " defense", " tricks"], ["s", " scary", " \u200b\u200b", " big", " crazy", " tricks", " fake", " funny"], ["s", " scary", " freaking", " funny", " poop", " kids", " tricks", " big"], ["s", " freaking", " scary", " goofy", " flashy", " poop", " savvy", "ske"], ["s", " scary", " freaking", " goofy", " flashy", " big", " savvy", " nasty"], ["s", " big", " flashy", " scary", " kids", " savvy", " freaking", " goofy"], ["s", " scary", " freaking", " big", " flashy", " nasty", " bigger", " funny"], ["s", " big", " scary", " freaking", " bigger", " flashy", " stuff", " luck"], ["s", " big", " luck", " bigger", " scary", " stuff", " nasty", " \\\""], ["s", "\n\n", "\r\n\r\n", " big", " ____", " savvy", " luck", " folks"], ["s", " scary", " freaking", " ____", " big", " stuff", " savvy", " nasty"], ["s", " big", "\n\n", " luck", " scary", " bigger", " freaking", " tech"], ["\n\n", "s", " big", " ____", "\r\n\r\n", " _____", " luck", " wildly"], ["s", "\n\n", " ____", " big", " _____", " tech", " luck", " cheap"], [" ____", "s", " _____", " big", " ___", "____", " ______", " \\\""], ["s", " big", " ____", " huge", " \\\"", " crazy", " tech", " cheap"], [" big", "s", " huge", " hard", " high", " massive", " incredibly", " long"], [" big", " weird", "s", " incredibly", " \\\"", " hard", " massive", " huge"], [" weird", " crazy", " big", " hardcore", " nasty", " incredibly", " tech", " scary"], [" incredibly", " weird", " massively", " massive", " hardcore", " huge", " nasty", " catastrophic"], [" incredibly", " nasty", " hardcore", " crazy", " weird", " horrific", " ridiculous", " terrible"], [" nasty", " impossible", " incredibly", " horrific", " ridiculous", " hardcore", " terrible", " scary"], [" impossible", " incredibly", " catastrophic", " ridiculous", " nasty", " crazy", " nightmare", " terrible"], [" impossible", " nightmare", " Impossible", " catastrophic", " horrific", " terrible", " incredibly", " ridiculous"], [" impossible", " Impossible", " catastrophic", " nightmare", " imposs", " terrible", " horrific", " insane"], [" impossible", " catastrophic", " Impossible", " nightmare", " doom", " imposs", " nightmares", " terrible"], [" impossible", " catastrophic", " nightmare", " Impossible", " nightmares", " imposs", " doom", " insane"], [" impossible", " catastrophic", " nightmare", " Impossible", " insane", " imposs", " nightmares", " doom"], [" impossible", " Impossible", " nightmare", " catastrophic", " imposs", " nightmares", " insane", " doom"], [" impossible", " nightmare", " catastrophic", " Impossible", " imposs", " nightmares", " insane", " terrible"], [" impossible", " nightmare", " imposs", " catastrophic", " Impossible", " nightmares", " insane", " ridiculous"], [" impossible", " nightmare", " imposs", " Impossible", " catastrophic", " nightmares", " insane", " doom"], [" impossible", " Impossible", " catastrophic", " nightmare", " imposs", " nightmares", " insane", " catastrophe"], [" impossible", " nightmare", " catastrophic", " imposs", " Impossible", " nightmares", " insane", " death"], [" impossible", " Impossible", " imposs", " nightmare", " catastrophic", " nightmares", "Impossible", " bankrupt"], [" impossible", " Impossible", " imposs", "Impossible", " nightmare", " nightmares", " doomed", " catastrophic"], [" impossible", " Impossible", "Impossible", " imposs", " nightmare", " imposible", " doomed", "\u4e0d\u53ef\u80fd\u7684"], [" impossible", " Impossible", "Impossible", " imposs", " nightmare", " doomed", " nightmares", " catastrophic"], [" impossible", " Impossible", "Impossible", " imposs", " nightmare", " doomed", " catastrophic", " nightmares"], [" impossible", " Impossible", "Impossible", " imposs", "\u4e0d\u53ef\u80fd", " imposible", "\u4e0d\u53ef\u80fd\u7684", "\u662f\u4e0d\u53ef\u80fd\u7684"], [" impossible", " Impossible", "Impossible", " imposs", " nightmare", "\u4e0d\u53ef\u80fd", " imposible", "\u4e0d\u53ef\u80fd\u7684"], [" impossible", " Impossible", "Impossible", " imposs", "\u4e0d\u53ef\u80fd", " nightmare", "\u4e0d\u53ef\u80fd\u7684", " imposible"], [" impossible", " Impossible", "Impossible", " imposs", "\u4e0d\u53ef\u80fd", " nightmare", " imposible", "\u4e0d\u53ef\u80fd\u7684"], [" impossible", " Impossible", "Impossible", " imposs", "\u4e0d\u53ef\u80fd", " nightmare", " suicidal", " suicide"], [" impossible", " Impossible", "Impossible", " imposs", " nightmare", " suicide", " suicidal", "\u4e0d\u53ef\u80fd"], ["im", " impossible", "-im", "/im", "'im", " Impossible", "\tim", "_im"], [" impossible", "im", " Impossible", " suicide", "Impossible", "-im", " suicidal", " nightmare"], ["im", "host", "night", " impossible", "mission", "hard", "su", "hero"]], "p": [[0.4129, 0.195, 0.134, 0.1044, 0.0318, 0.015, 0.0076, 0.0052], [0.0056, 0.0041, 0.0041, 0.0018, 0.0017, 0.0017, 0.0014, 0.0014], [0.4977, 0.2664, 0.017, 0.016, 0.0055, 0.002, 0.002, 0.0016], [0.0057, 0.005, 0.0044, 0.0039, 0.0032, 0.0025, 0.0024, 0.0024], [0.4147, 0.0869, 0.0026, 0.0025, 0.0025, 0.0019, 0.0018, 0.0018], [0.8291, 0.0118, 0.0011, 0.0009, 0.0009, 0.0006, 0.0006, 0.0006], [0.7525, 0.1679, 0.002, 0.0018, 0.0016, 0.0015, 0.0012, 0.001], [0.4885, 0.1688, 0.0051, 0.0048, 0.0029, 0.0027, 0.0027, 0.0024], [0.9328, 0.0117, 0.0008, 0.0006, 0.0005, 0.0005, 0.0005, 0.0005], [0.3891, 0.0597, 0.0055, 0.0038, 0.0034, 0.003, 0.0026, 0.0019], [0.7344, 0.2104, 0.001, 0.0007, 0.0005, 0.0005, 0.0004, 0.0004], [0.0747, 0.0228, 0.0061, 0.0051, 0.004, 0.0033, 0.0033, 0.0029], [0.2056, 0.1034, 0.0043, 0.0029, 0.0024, 0.0024, 0.0023, 0.0023], [0.1566, 0.0308, 0.0044, 0.0031, 0.0022, 0.0017, 0.0017, 0.0015], [0.1899, 0.0069, 0.0035, 0.0035, 0.0033, 0.0021, 0.0021, 0.002], [0.0588, 0.0026, 0.0023, 0.0023, 0.002, 0.0019, 0.0019, 0.0019], [0.5092, 0.0044, 0.0041, 0.0041, 0.0028, 0.0027, 0.0027, 0.0024], [0.504, 0.0081, 0.0044, 0.0041, 0.0036, 0.0036, 0.0032, 0.0032], [0.4148, 0.0133, 0.0111, 0.0067, 0.0067, 0.0036, 0.0036, 0.003], [0.2695, 0.0343, 0.0208, 0.0183, 0.0134, 0.0104, 0.0067, 0.0049], [0.9673, 0.0012, 0.0005, 0.0004, 0.0004, 0.0004, 0.0003, 0.0003], [0.0768, 0.0301, 0.0182, 0.0161, 0.0081, 0.0067, 0.0063, 0.0059], [0.5136, 0.0328, 0.0187, 0.0088, 0.0078, 0.0073, 0.0065, 0.0057], [0.6524, 0.0238, 0.0036, 0.0032, 0.003, 0.0024, 0.0021, 0.002], [0.5671, 0.1117, 0.0125, 0.0063, 0.0046, 0.0041, 0.0038, 0.0034], [0.0704, 0.0401, 0.0312, 0.0275, 0.0228, 0.0139, 0.013, 0.0122], [0.1671, 0.0423, 0.02, 0.0137, 0.0107, 0.0107, 0.0083, 0.0083], [0.8326, 0.0389, 0.0077, 0.0068, 0.0017, 0.0015, 0.0013, 0.001], [0.2589, 0.1779, 0.1014, 0.0273, 0.02, 0.0089, 0.0065, 0.0061], [0.5133, 0.1219, 0.0739, 0.0187, 0.0146, 0.0137, 0.0094, 0.0047], [0.1518, 0.1182, 0.0193, 0.011, 0.0086, 0.008, 0.008, 0.008], [0.1038, 0.0461, 0.0159, 0.015, 0.0132, 0.0103, 0.0097, 0.0097], [0.0738, 0.0225, 0.0199, 0.0155, 0.0145, 0.0145, 0.0145, 0.0128], [0.0553, 0.0296, 0.0278, 0.0245, 0.023, 0.0203, 0.0191, 0.0179], [0.048, 0.0273, 0.0257, 0.0257, 0.0241, 0.0188, 0.0166, 0.0146], [0.037, 0.0307, 0.0288, 0.0288, 0.0224, 0.0224, 0.0224, 0.0211], [0.0554, 0.046, 0.046, 0.0316, 0.0297, 0.0279, 0.0279, 0.0217], [0.1526, 0.0465, 0.0386, 0.034, 0.03, 0.03, 0.0282, 0.0265], [0.5323, 0.034, 0.034, 0.034, 0.0171, 0.0171, 0.0161, 0.0151], [0.5201, 0.0484, 0.0427, 0.0377, 0.0229, 0.0202, 0.0167, 0.0157], [0.4307, 0.0848, 0.0514, 0.0514, 0.0275, 0.0214, 0.0189, 0.0167], [0.3328, 0.1224, 0.0655, 0.0397, 0.0273, 0.0273, 0.0226, 0.0213], [0.3979, 0.0691, 0.0538, 0.037, 0.0271, 0.0271, 0.0271, 0.0175], [0.5004, 0.0677, 0.0527, 0.0465, 0.0301, 0.0207, 0.0194, 0.0118], [0.5715, 0.0414, 0.0389, 0.0267, 0.0251, 0.0196, 0.0184, 0.0082], [0.4738, 0.0641, 0.0365, 0.0322, 0.0303, 0.0267, 0.0184, 0.0077], [0.4903, 0.0664, 0.0586, 0.0485, 0.0456, 0.0202, 0.0123, 0.0096], [0.5794, 0.0476, 0.0447, 0.042, 0.037, 0.0113, 0.01, 0.006], [0.4828, 0.0614, 0.0449, 0.035, 0.0272, 0.0256, 0.0129, 0.0121], [0.5107, 0.1006, 0.0887, 0.0691, 0.0224, 0.0198, 0.0094, 0.0083], [0.5378, 0.1746, 0.1059, 0.0935, 0.0303, 0.005, 0.005, 0.0034], [0.7272, 0.1432, 0.0676, 0.0465, 0.0081, 0.001, 0.0007, 0.0004], [0.8141, 0.0858, 0.0459, 0.0246, 0.0149, 0.0029, 0.0014, 0.0011], [0.8052, 0.0962, 0.0583, 0.0215, 0.0061, 0.0029, 0.0008, 0.0007], [0.8507, 0.0897, 0.048, 0.0107, 0.0003, 0.0002, 0.0002, 0.0001], [0.9086, 0.0513, 0.0311, 0.0069, 0.0006, 0.0004, 0.0002, 0.0001], [0.9163, 0.0517, 0.0277, 0.0033, 0.0005, 0.0003, 0.0001, 0.0001], [0.907, 0.0512, 0.0352, 0.0054, 0.0006, 0.0003, 0.0001, 0.0], [0.9083, 0.0658, 0.0214, 0.0033, 0.0004, 0.0003, 0.0001, 0.0001], [0.9546, 0.0327, 0.0073, 0.003, 0.0006, 0.0006, 0.0005, 0.0004], [0.5685, 0.2091, 0.1269, 0.0467, 0.022, 0.0118, 0.0026, 0.0023], [0.5256, 0.3612, 0.0262, 0.0262, 0.0124, 0.0096, 0.0085, 0.0058], [0.9553, 0.012, 0.0083, 0.0032, 0.0027, 0.0011, 0.0011, 0.001]], "ranks": {"Rust": [15730, 51668, 36744, 14749, 21690, 21745, 27970, 30353, 41841, 30456, 39176, 67386, 34302, 46598, 62781, 53616, 48948, 98132, 124296, 84703, 76234, 99460, 61247, 32137, 21732, 29536, 16496, 13641, 12101, 13395, 11550, 11377, 13468, 19863, 12323, 17195, 13315, 13238, 19197, 25795, 22857, 20342, 20384, 23596, 16353, 13758, 11333, 7816, 3799, 7378, 13829, 22865, 14788, 15548, 15841, 23230, 22733, 17668, 11776, 7039, 6112, 4247, 1116]}}, {"pos": 389, "top": [["i", "y", "o", ".", " \u2013", "er", "\u2013", "e"], ["i", "er", "es", "y", "ing", " \u2013", "en", "ed"], [" \u2013", "i", "\u2013", "\u2026", ".", "y", ",", "er"], ["iens", "ing", "\u064a", "es", "ierte", "iator", "er", "erweise"], ["i", "ed", "er", "es", "y", "ing", "en", "ers"], ["i", "ed", "ing", "es", "er", "\u064a", "ers", "en"], ["i", "ing", "ed", "es", "\u0629", "er", "en", "ers"], ["i", "ing", "ed", "er", "en", "es", "y", "\u0629"], ["ing", "i", "er", "ed", "\u0629", "en", "es", "y"], ["i", "ing", "ed", "er", "y", "en", "ers", "es"], ["i", "ing", "ed", "er", "y", "es", "ers", "en"], ["ing", "er", "ed", "i", "ers", "es", "en", "y"], ["ing", "er", "ed", "ers", "i", "es", "en", "ment"], ["ing", "ed", "ers", "er", "edly", "i", "es", "iator"], ["ing", "ed", "er", "ers", "i", "edly", "es", "y"], ["ing", "ed", "ers", "er", "i", "edly", "es", "y"], ["ing", "ed", "i", "ers", "er", "es", "y", "edly"], ["ing", "ed", "ers", "er", "i", "edly", "es", "y"], ["ing", "i", "ed", "er", "es", "ers", "y", "\u0629"], ["ing", "i", "ed", "er", "y", "es", "ers", "edly"], ["ing", "i", "ed", "er", "y", "es", "en", "o"], ["ing", "ed", "er", "i", "ers", "edly", "\u0629", "es"], ["ing", "i", "ed", "edly", "er", "ers", "y", "es"], ["i", "ing", "ed", "edly", "er", "y", "es", "en"], ["ing", "i", "edly", "ed", "er", "y", "\u0629", "en"], ["ing", "edly", "ed", "i", "er", "\u0629", "ers", "es"], ["ing", "edly", "ed", "i", "er", "ers", "\u0629", "es"], ["ing", "edly", "ed", "i", "er", "y", "ers", "es"], ["edly", "ing", "ed", "i", "er", "ers", "ware", "\u0629"], ["ing", "ed", "edly", "i", "er", "ers", "y", "es"], ["ing", "ed", "er", "i", "edly", "ers", "es", "y"], ["ing", "ed", "er", "edly", "i", "ers", "es", "y"], ["ing", "ed", "edly", "i", "er", "ers", "es", "y"], ["edly", "ing", "ed", "er", "ers", "\u0629", " HOST", "ware"], ["edly", " HOST", "ing", "ware", "/host", "\u0629", "ed", "ers"], ["edly", "ing", "edImage", " HOST", "\u0629", "ers", "ed", "eous"], ["edly", " HOST", "ing", "edImage", "iator", "\u0629", "oriously", "ers"], ["/host", " HOST", "edly", "\u4ec7\u6068", " hostile", " hostility", "\u6028", " Host"], ["/host", " hostage", " hostile", " HOST", " hostility", "\u4ec7\u6068", "edly", "\u6124\u6012"], ["\u4ec7\u6068", "/host", " hostile", " hostility", " hostage", " HOST", "\u6068", " hatred"], [" hostile", " hostility", "\u4ec7\u6068", " hatred", " angry", "\u6124\u6012", " resentment", " anger"], ["\u4ec7\u6068", " hostile", " hostility", " hatred", " resentment", " hostage", " hate", " hates"], ["\u4ec7\u6068", " hatred", " hostility", " hostile", " resentment", " hate", " hates", "\u6068"], [" hatred", "\u4ec7\u6068", " hostile", " resentment", " angry", " hostility", " anger", " angrily"], [" hatred", " resentment", " hostile", " hostility", " angry", " hostage", " anger", " angrily"], [" hatred", " hostile", " resentment", " hostility", " angry", " angrily", " anger", " vengeance"], [" hatred", " resentment", " hostile", " hostility", " angry", " vengeance", " hostage", " revenge"], [" hatred", " hostile", " resentment", " angry", " hostility", " vengeance", " revenge", " hostage"], [" hatred", " hostile", " resentment", " hostility", "\u4ec7\u6068", " angry", " hates", " revenge"], [" hostile", " hatred", " hostage", " hostility", "\u4ec7\u6068", " resentment", " angry", "/host"], [" hostile", " hostage", " nightmare", " hatred", "\u4ec7\u6068", " hostility", " hates", " angry"], [" nightmare", "-danger", "\u4ec7\u6068", " nightmares", " painful", " nasty", "\u6068", " hates"], [" nightmare", "-danger", " nightmares", " dangerous", " painful", " imposs", " nasty", "Impossible"], ["pital", "/host", " hostage", "ess", "ility", "ilities", "-host", ".Host"], ["pital", "/host", " hostage", ".Host", "-host", "ilities", "ess", " nightmare"], ["pital", "ility", "ile", "ilities", " hostage", "/host", "ess", " nightmare"], [" impossible", " hostage", "/host", " imposs", "pital", " nightmare", "ility", " Impossible"], ["ility", " impossible", "/host", "ile", "pital", " imposs", " hostage", " nightmare"], ["/host", "ile", " impossible", "ility", " hostage", "pital", " imposs", " nightmare"], ["ile", "ility", "ILE", "iles", "ilities", "ilet", " impossible", " hostile"], ["ile", "ility", "ILE", "iles", "ilet", "ilities", " impossible", " hostage"], ["ile", "ility", "ilet", "iles", "ILE", " impossible", "ilities", "age"], ["ile", "ility", "age", "ilet", "ILE", "iles", "ing", "ilities"]], "p": [[0.8638, 0.038, 0.0179, 0.0158, 0.0158, 0.0085, 0.0066, 0.0055], [0.7659, 0.0807, 0.0336, 0.0297, 0.0262, 0.014, 0.0062, 0.0055], [0.3476, 0.3476, 0.1449, 0.0323, 0.0285, 0.0173, 0.0153, 0.0135], [0.0301, 0.0282, 0.0142, 0.0133, 0.0125, 0.0118, 0.0118, 0.0092], [0.687, 0.1353, 0.0439, 0.0439, 0.0235, 0.0207, 0.0162, 0.0126], [0.4343, 0.2985, 0.0709, 0.0203, 0.0191, 0.0179, 0.0149, 0.0096], [0.7058, 0.1575, 0.0579, 0.0188, 0.0146, 0.0146, 0.0114, 0.0033], [0.6662, 0.2163, 0.0376, 0.0376, 0.0108, 0.0084, 0.0065, 0.004], [0.6367, 0.2342, 0.0523, 0.028, 0.0103, 0.0091, 0.0071, 0.0071], [0.4444, 0.3922, 0.0682, 0.0468, 0.0152, 0.0072, 0.0049, 0.0049], [0.4849, 0.3333, 0.0955, 0.0511, 0.0101, 0.0069, 0.0061, 0.0048], [0.7484, 0.0894, 0.0478, 0.0478, 0.0176, 0.0094, 0.0083, 0.0073], [0.6769, 0.1038, 0.0916, 0.049, 0.0103, 0.0097, 0.0055, 0.0052], [0.6633, 0.148, 0.0617, 0.0617, 0.0114, 0.0078, 0.0061, 0.0039], [0.6777, 0.1713, 0.0382, 0.0317, 0.0232, 0.0132, 0.0055, 0.0052], [0.6461, 0.1851, 0.0365, 0.0284, 0.0221, 0.0143, 0.0118, 0.0056], [0.7524, 0.1307, 0.0292, 0.0257, 0.0227, 0.0107, 0.0069, 0.0054], [0.7869, 0.094, 0.0269, 0.021, 0.0197, 0.0105, 0.0082, 0.0056], [0.6988, 0.1214, 0.0737, 0.0307, 0.0186, 0.0128, 0.0113, 0.0073], [0.7195, 0.1103, 0.0758, 0.0316, 0.0169, 0.0149, 0.0071, 0.0055], [0.5103, 0.3095, 0.0887, 0.037, 0.0254, 0.0073, 0.003, 0.003], [0.6072, 0.064, 0.0365, 0.0343, 0.0322, 0.0267, 0.0221, 0.0195], [0.5668, 0.1433, 0.0636, 0.0411, 0.034, 0.0206, 0.0182, 0.0182], [0.3957, 0.3957, 0.0607, 0.0287, 0.0287, 0.0287, 0.0135, 0.0068], [0.3621, 0.2196, 0.1251, 0.067, 0.0262, 0.0231, 0.0096, 0.0096], [0.2848, 0.1524, 0.0495, 0.034, 0.0206, 0.0171, 0.0161, 0.0125], [0.2637, 0.2053, 0.0588, 0.0216, 0.0203, 0.0158, 0.0149, 0.0096], [0.3211, 0.2834, 0.0979, 0.0763, 0.0264, 0.0124, 0.011, 0.0086], [0.2143, 0.2143, 0.0577, 0.0478, 0.0212, 0.0165, 0.0146, 0.0137], [0.4039, 0.1232, 0.0959, 0.0847, 0.0453, 0.0157, 0.0157, 0.0147], [0.451, 0.1559, 0.0834, 0.061, 0.0506, 0.0225, 0.0198, 0.0175], [0.3985, 0.2004, 0.0889, 0.0737, 0.0507, 0.0186, 0.0175, 0.0145], [0.3324, 0.1223, 0.1149, 0.084, 0.084, 0.0241, 0.0212, 0.0155], [0.1142, 0.0693, 0.0239, 0.0239, 0.0198, 0.0175, 0.0145, 0.0136], [0.1562, 0.0308, 0.0289, 0.0175, 0.0155, 0.0128, 0.012, 0.0094], [0.1644, 0.0209, 0.0153, 0.0144, 0.0144, 0.0099, 0.0082, 0.0082], [0.1132, 0.0144, 0.0105, 0.0082, 0.0077, 0.0077, 0.006, 0.006], [0.1083, 0.0956, 0.0398, 0.0213, 0.0188, 0.0121, 0.0114, 0.0101], [0.1435, 0.0926, 0.0678, 0.0411, 0.0301, 0.0283, 0.0265, 0.0125], [0.1297, 0.1145, 0.0837, 0.0694, 0.0613, 0.0289, 0.0289, 0.0187], [0.4122, 0.1718, 0.1718, 0.0338, 0.0233, 0.0205, 0.016, 0.0141], [0.3632, 0.1716, 0.1336, 0.081, 0.0298, 0.0181, 0.017, 0.015], [0.2215, 0.2215, 0.1046, 0.0635, 0.056, 0.0319, 0.03, 0.0194], [0.2, 0.0783, 0.0573, 0.0573, 0.0506, 0.0475, 0.0326, 0.0326], [0.1801, 0.1026, 0.0851, 0.0705, 0.0585, 0.0402, 0.0355, 0.0333], [0.1535, 0.1354, 0.1195, 0.0772, 0.064, 0.0365, 0.0284, 0.0251], [0.1549, 0.1549, 0.1367, 0.0883, 0.0392, 0.0325, 0.0238, 0.0223], [0.2259, 0.137, 0.1209, 0.0537, 0.0504, 0.0369, 0.0346, 0.021], [0.1884, 0.1884, 0.089, 0.089, 0.0447, 0.0307, 0.0307, 0.0199], [0.2623, 0.0907, 0.0706, 0.055, 0.0334, 0.0276, 0.0229, 0.0229], [0.1323, 0.0803, 0.0754, 0.0552, 0.043, 0.0277, 0.0261, 0.0191], [0.2002, 0.0154, 0.0106, 0.0106, 0.01, 0.0088, 0.0083, 0.0083], [0.4792, 0.0288, 0.0288, 0.012, 0.0106, 0.0099, 0.0099, 0.0093], [0.272, 0.199, 0.0503, 0.0473, 0.0346, 0.0287, 0.0163, 0.0105], [0.2896, 0.2721, 0.094, 0.0163, 0.0153, 0.0144, 0.012, 0.0099], [0.2029, 0.0795, 0.0746, 0.04, 0.0353, 0.0331, 0.0311, 0.0201], [0.1766, 0.1214, 0.114, 0.1006, 0.0888, 0.061, 0.0539, 0.0225], [0.1214, 0.114, 0.1006, 0.0888, 0.0783, 0.0783, 0.065, 0.0573], [0.2497, 0.1041, 0.0978, 0.0715, 0.0715, 0.0557, 0.0523, 0.0338], [0.9953, 0.0032, 0.0008, 0.0003, 0.0001, 0.0001, 0.0001, 0.0], [0.9979, 0.0015, 0.0003, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9969, 0.0014, 0.0004, 0.0004, 0.0003, 0.0001, 0.0001, 0.0], [0.9982, 0.0012, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0]], "ranks": {"Rust": [30300, 68575, 62751, 13217, 19046, 28435, 19527, 21965, 17005, 15471, 26890, 17468, 10737, 11744, 22576, 21896, 23018, 29369, 28455, 34238, 59184, 39637, 55050, 51624, 31112, 35900, 55041, 91152, 73239, 92220, 68993, 53023, 109049, 110709, 115055, 93775, 87839, 122028, 158388, 138527, 65262, 46865, 57395, 77968, 61815, 44532, 44897, 30695, 35827, 64473, 89751, 109492, 72727, 106472, 104038, 83943, 56542, 69729, 47430, 16963, 15485, 11417, 9106]}}, {"pos": 390, "top": [["\u00ac", ".", "\u00ad", "  \n", "\u2022", ",", "\u00a0\u00a0", "\u2026."], ["  \n\n", "\u00ac", "  \n", " \u00ac", "\u200b", " \u2022", " \u25a0", "\u00ad"], ["\u2026.", ".", ",", "\u2026..", "\u200b", "\u00a0\u00a0", "\u2026", ";"], [" Shemale", " Geile", "\r\r\n", " milfs", "utnik", " Blowjob", "(___", " !***"], ["\u200e", " \u200e", "_____", "\n\n\n\n", "\u4e28", " \n\n\n\n", "\u00a0\u00a0", " _____"], ["\u200e", " \u200e", "\u4e28", "\u00a0\u00a0", "_____", " \n\n\n\n", "\t  ", " **\u2022"], ["  \n\n", "\t  ", "\n\n\n\n", " \n\n\n\n", "\u200e", "\u200b", " \u200e", "\u00a0\u00a0"], ["\t  ", " _____", "  \n\n", "\u4e28", "_____", "\u200e", " \u200e", "\u00a0\u00a0"], ["  \n\n", " #\"", " _____", "\u200e", " #-", "\u4e28", " \n\n\n\n", " **\u2022"], [" \u00ad", " hostile", " Hidal", "\t  ", "\u200b", " adversaries", "\u00a0\u00a0", " \u200e"], [" \u00ad", " hostile", "\u200b", " adversaries", "\t  ", " \ufffd", " enemy", " _____"], [" hostile", " adversaries", " enemy", " adversary", " aggressive", " \u00ad", " alien", " _____"], [" hostile", " adversaries", " aggressive", " adversary", " _____", " aggress", " **\u2022", " enemy"], [" hostile", " adversaries", " aggressive", " enemy", " adversary", " aggress", " alien", " aggression"], [" hostile", " aggressive", " adversaries", " enemy", " aggressively", " alien", " \u00ad", " aggress"], [" hostile", " aggressive", " enemy", " alien", " savage", " formidable", " invasion", " relentless"], [" hostile", " aggressive", " enemy", " adversaries", " alien", " relentless", " foes", " aggression"], [" hostile", " aggressive", " enemy", " adversaries", " foes", " relentless", " adversary", " aggression"], [" hostile", " adversaries", " aggressive", " enemy", " malignant", " foes", " adversary", " aggression"], [" hostile", " aggressive", " adversaries", " <+", " enemy", " foes", " embrace", " relentless"], [" hostile", "  \n\n", " aggressive", " foes", " adversaries", " enemy", " <+", " hostility"], [" hostile", " adversaries", " aggressive", " hostility", " enemy", " wilderness", " adversary", " malign"], [" hostile", " malign", " adversaries", " foes", " wilderness", " aggressive", " hostility", " enemy"], [" hostile", " malign", " hostility", " wilderness", " adversaries", " aggressive", " foes", " offending"], ["\n\n", "  \n\n", " \n\n", " hostile", "   \n\n", "\r\n\r\n", "\n\n\n\n", " \n\n\n\n"], [" hostile", " malign", " aggressive", " adversaries", " adversary", " hostility", " warfare", " enemy"], [" hostile", " aggressive", " hostility", " malign", " adversaries", " enemy", " adversary", " threats"], [" hostile", " aggressive", " hostility", " enemy", " malign", " aggressively", " adversaries", " hacker"], [" hostile", " hacker", " aggressive", " malign", " paranoia", " hostility", " adversary", " paranoid"], [" hostile", " aggressive", " _____", " hacker", " paranoia", " malign", " threats", " enemy"], [" hostile", " aggressive", " threats", " aggressively", " hacker", " enemy", " threat", " paranoia"], [" hostile", " aggressive", " aggressively", " relentless", " brutal", " paranoia", " paranoid", " enemy"], [" hostile", " aggressive", " paranoia", " paranoid", " brutal", " hacker", " relentless", " enemy"], [" hostile", " aggressive", " relentless", " paranoia", " paranoid", " hacker", " aggressively", " brutal"], [" hostile", " aggressive", " relentless", " paranoia", " aggressively", " hacker", " paranoid", " brutal"], [" hostile", " relentless", " aggressive", " brutal", " hacker", " aggressively", " weapon", " horrific"], [" hostile", " aggressive", " relentless", " hostility", " aggressively", " enemy", " hacker", " brutal"], [" hostile", " enemy", " hostility", " aggressive", " relentless", " aggressively", " adversary", " combat"], [" hostile", " hostility", " enemy", " aggressive", " relentless", " aggressively", " adversary", " advers"], [" hostile", " hostility", " enemy", " aggressive", " relentless", " aggressively", " advers", " brutal"], [" hostile", " hostility", " enemy", " aggressive", " advers", " adversary", " brutal", " combat"], [" hostile", " hostility", " enemy", " aggressive", " aggressively", " advers", " aggression", " brutal"], [" hostile", " hostility", " aggressive", " enemy", " aggressively", " environment", " advers", " aggression"], [" hostile", " hostility", " aggressive", " enemy", " environment", " aggressively", " environments", " advers"], [" hostile", " hostility", " aggressive", " environment", " enemy", " environments", " aggressively", " warfare"], [" hostile", " hostility", " aggressive", " environment", " enemy", " aggressively", " environments", " warfare"], [" hostile", " hostility", " enemy", " aggressive", " environment", " warfare", " advers", " aggressively"], [" hostile", " hostility", " enemy", " environment", " aggressive", " warfare", " advers", " combat"], [" hostile", " hostility", " enemy", " warfare", " environment", " aggressive", " sabotage", " weapon"], [" hostile", " hostility", " warfare", " enemy", " sabotage", " battlefield", " hostage", " aggressive"], [" hostile", " hostility", " warfare", " sabotage", " battlefield", " hostage", " enemy", " battleground"], [" hostile", " environment", " battlefield", " sabotage", " hostility", " warfare", " nightmare", " enemy"], [" hostile", " environment", " sabotage", " environments", " battlefield", " warfare", " hostility", " enemy"], [" environment", " hostile", " environments", "Environment", " hostility", "/host", " enemy", "-host"], [" environment", " environments", "Environment", " hostile", "/host", " battlefield", " hostility", "\u73af\u5883"], [" environment", " environments", "Environment", " takeover", " battlefield", "\u73af\u5883", " Environment", " workplace"], [" environment", " environments", "Environment", " takeover", " workplace", "/host", " workspace", " hostile"], [" environment", " environments", "Environment", "\u73af\u5883", "environment", " Environment", "\u73af\u5883\u7684", ".environment"], [" environment", " environments", "Environment", "\u5de5\u4f5c\u73af\u5883", "\u73af\u5883", " Environment", "environment", "\u73af\u5883\u7684"], [" environment", " environments", "Environment", " takeover", " Environment", "\u5de5\u4f5c\u73af\u5883", " hostile", "environment"], [" environment", " environments", "Environment", " Environment", " takeover", " workplace", "environment", "\u5de5\u4f5c\u73af\u5883"], [" environment", "\"", " takeover", " environments", " workplace", "Environment", "\u5de5\u4f5c\u73af\u5883", " workspace"], ["\"", " environment", " takeover", ".\"", ",\"", "\\\"", "\u201d", " architecture"]], "p": [[0.2304, 0.1233, 0.1022, 0.0426, 0.04, 0.0243, 0.0243, 0.0228], [0.2943, 0.2023, 0.1785, 0.0138, 0.0121, 0.0114, 0.0089, 0.0078], [0.3345, 0.2952, 0.158, 0.0746, 0.0453, 0.0275, 0.0201, 0.0061], [0.0182, 0.011, 0.0086, 0.0086, 0.0067, 0.0063, 0.0059, 0.0043], [0.2051, 0.0487, 0.0404, 0.0356, 0.0203, 0.0191, 0.0191, 0.0123], [0.0377, 0.0333, 0.0202, 0.019, 0.0139, 0.0122, 0.0108, 0.0079], [0.1227, 0.048, 0.0451, 0.0351, 0.031, 0.0291, 0.0274, 0.0257], [0.034, 0.0282, 0.0265, 0.0265, 0.0219, 0.0206, 0.0206, 0.0206], [0.0219, 0.0206, 0.0125, 0.0104, 0.0104, 0.0104, 0.0097, 0.0091], [0.1046, 0.0385, 0.0281, 0.0151, 0.0133, 0.0125, 0.0125, 0.0117], [0.0974, 0.0758, 0.0336, 0.0192, 0.0159, 0.0124, 0.0116, 0.0085], [0.0995, 0.039, 0.0143, 0.0119, 0.0087, 0.0077, 0.0077, 0.0072], [0.0767, 0.0362, 0.0171, 0.0125, 0.0092, 0.0081, 0.0081, 0.0076], [0.0827, 0.0345, 0.0304, 0.0127, 0.0127, 0.0112, 0.0099, 0.006], [0.0654, 0.0542, 0.0165, 0.0155, 0.0129, 0.01, 0.0083, 0.0083], [0.1199, 0.0323, 0.0162, 0.0092, 0.0082, 0.0068, 0.0064, 0.0064], [0.1115, 0.0249, 0.0133, 0.0086, 0.0081, 0.0063, 0.0056, 0.0046], [0.0894, 0.0212, 0.0187, 0.0176, 0.0083, 0.0061, 0.0054, 0.0054], [0.0306, 0.0145, 0.0113, 0.0077, 0.005, 0.0047, 0.0044, 0.0035], [0.0271, 0.0113, 0.0078, 0.0057, 0.005, 0.0047, 0.0044, 0.0037], [0.0593, 0.0205, 0.011, 0.0091, 0.0085, 0.0071, 0.0067, 0.0055], [0.0372, 0.0078, 0.0073, 0.0061, 0.0061, 0.0054, 0.005, 0.0047], [0.0449, 0.0121, 0.0113, 0.0094, 0.0083, 0.0073, 0.0061, 0.0057], [0.109, 0.013, 0.0115, 0.0108, 0.009, 0.0084, 0.0084, 0.0079], [0.3214, 0.2503, 0.0717, 0.0193, 0.0125, 0.0086, 0.0086, 0.0076], [0.1275, 0.0162, 0.0152, 0.0143, 0.0087, 0.0081, 0.0072, 0.0072], [0.2192, 0.0204, 0.0159, 0.014, 0.0116, 0.0085, 0.008, 0.0075], [0.2822, 0.0218, 0.0132, 0.0109, 0.0103, 0.008, 0.0075, 0.0071], [0.0993, 0.0126, 0.0105, 0.0087, 0.0087, 0.0072, 0.006, 0.0056], [0.1138, 0.0198, 0.0106, 0.0106, 0.006, 0.006, 0.0057, 0.0053], [0.2131, 0.042, 0.01, 0.01, 0.0094, 0.0088, 0.0083, 0.0069], [0.2438, 0.0579, 0.0177, 0.0129, 0.0121, 0.0107, 0.0107, 0.0083], [0.2229, 0.025, 0.0134, 0.0126, 0.0111, 0.0092, 0.0086, 0.0081], [0.152, 0.0299, 0.017, 0.015, 0.0133, 0.0117, 0.0117, 0.011], [0.25, 0.0248, 0.0205, 0.016, 0.016, 0.0124, 0.0117, 0.0103], [0.2136, 0.0349, 0.0212, 0.0155, 0.0137, 0.0137, 0.0088, 0.0078], [0.7663, 0.0159, 0.0109, 0.0096, 0.0085, 0.0052, 0.0052, 0.0046], [0.8772, 0.0071, 0.0071, 0.0059, 0.0041, 0.0034, 0.0017, 0.0016], [0.9436, 0.0068, 0.0044, 0.0027, 0.0017, 0.0016, 0.001, 0.0007], [0.9564, 0.0069, 0.0037, 0.0022, 0.0016, 0.0009, 0.0008, 0.0008], [0.9894, 0.004, 0.0012, 0.0006, 0.0002, 0.0002, 0.0002, 0.0001], [0.9919, 0.0041, 0.0007, 0.0005, 0.0001, 0.0001, 0.0001, 0.0001], [0.9921, 0.0036, 0.001, 0.0006, 0.0003, 0.0001, 0.0001, 0.0001], [0.9899, 0.0032, 0.0012, 0.0008, 0.0005, 0.0003, 0.0003, 0.0002], [0.9878, 0.0046, 0.0011, 0.0007, 0.0006, 0.0004, 0.0004, 0.0002], [0.9881, 0.0052, 0.0012, 0.0006, 0.0005, 0.0004, 0.0002, 0.0002], [0.9879, 0.0067, 0.0007, 0.0007, 0.0005, 0.0002, 0.0002, 0.0002], [0.9774, 0.0085, 0.002, 0.0019, 0.0009, 0.0008, 0.0004, 0.0004], [0.9832, 0.0109, 0.001, 0.0005, 0.0004, 0.0004, 0.0002, 0.0002], [0.9723, 0.0157, 0.0019, 0.0015, 0.0009, 0.0005, 0.0004, 0.0003], [0.9707, 0.0157, 0.0019, 0.0015, 0.0009, 0.0008, 0.0007, 0.0002], [0.5792, 0.0506, 0.0271, 0.0271, 0.0225, 0.0164, 0.0128, 0.0106], [0.3544, 0.1016, 0.048, 0.0351, 0.031, 0.0257, 0.0241, 0.0188], [0.4609, 0.0853, 0.0624, 0.0486, 0.0355, 0.0277, 0.009, 0.0079], [0.5612, 0.0808, 0.063, 0.049, 0.0359, 0.0192, 0.0116, 0.0097], [0.7549, 0.0702, 0.04, 0.0079, 0.0074, 0.0074, 0.0048, 0.0042], [0.5458, 0.0739, 0.054, 0.0308, 0.0175, 0.0088, 0.0083, 0.0069], [0.8978, 0.0574, 0.0271, 0.0069, 0.0025, 0.0025, 0.0011, 0.0007], [0.8877, 0.0729, 0.0163, 0.0036, 0.0025, 0.0022, 0.0019, 0.0012], [0.9191, 0.0519, 0.007, 0.0023, 0.0021, 0.002, 0.0014, 0.0011], [0.9477, 0.0286, 0.0056, 0.0025, 0.0017, 0.0016, 0.0014, 0.001], [0.7099, 0.1584, 0.04, 0.0275, 0.0138, 0.0033, 0.0027, 0.0024], [0.9994, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [56985, 98298, 53412, 51094, 26569, 15073, 20649, 13258, 19238, 9319, 9890, 12537, 11917, 9177, 11702, 8004, 12322, 19695, 29066, 18399, 27225, 30740, 26528, 15064, 14721, 16319, 11960, 8910, 15804, 10353, 8067, 8166, 15495, 21694, 17986, 29186, 21098, 19359, 30408, 36329, 28042, 16699, 17407, 23919, 17635, 14203, 12952, 12085, 10085, 18100, 58986, 133875, 114885, 130594, 86083, 81570, 81436, 55767, 60953, 25897, 31137, 43362, 26333]}}, {"pos": 391, "top": [[".", "\u2013", "<|endoftext|>", ",", " \u2013", "\u00a0", " ", "\u00a0\u00a0"], [" \u200b\u200b", "\u2013", "  \n\n", " \u2013", " ", ",", ";", "\u00a0\u00a0"], ["\u2013", "\u2026..", ",", "\u2026.", ".", " \u2013", " \u200b\u200b", "\u2026"], [" \u041a\u0440\u0430\u0441\u0438", " Shemale", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Blowjob", " Pubbl", " Prostitu", " Hidal", " Renzi"], [" \"", " **\"", " **#", "  \n\n", "\u663e\u7740", "zer", "\u7c9b", " \u200b\u200b"], [" **\"", " \u200b\u200b", " **", "usting", " **#", "\u5730\u4e9a", " \"", "\u7c9b"], ["  \n\n", " **\"", " \n\n", " **", " \"", " **#", " \"\"\"", "  \n"], [" **\"", " **", " **#", "  \n\n", " **\u20ac", " \n\n", " fanc", "   \n\n"], ["  \n\n", " \n\n", " **\"", "   \n\n", " **\u20ac", " **#", " \n\n\n", "  \n\n\n"], [" \"", " **\"", " fanc", " pricey", " **", " classy", " **#", " even"], [" **", " \"", " _", " #", " **#", " even", "  \n\n", " **\""], [" **", " **#", " _", " *", " **\"", " trash", " aggressive", " pricey"], [" **", " _", " **#", " aggressive", " elit", " fierce", " scary", " *"], [" aggressive", " fierce", " nasty", " tough", " big", " scary", " anti", " huge"], [" aggressive", " _", " aggressively", " -", " tough", " \"", " fierce", " nasty"], [" -", " tough", " big", " even", " aggressive", " huge", " hard", " nasty"], [" tough", " **", " big", " nasty", " huge", " even", " \"", " folks"], [" **", " tough", " nasty", " aggressive", " tougher", " vibe", " pricey", " aggressively"], [" **", " nasty", " **#", " fierce", " tough", " pricey", " vibe", " aggressive"], [" **", " tough", " pricey", " nasty", " wildly", " struggles", " aggressive", " tougher"], [" \n\n", "\n\n", "  \n\n", " pricey", " tough", " wildly", " **", " nasty"], [" **", " **#", " nasty", " pricey", " awful", " **'", " worse", " **+"], [" **", " nasty", " tough", " worse", " awful", " horribly", " wildly", " **#"], [" --", " wildly", " tough", " battling", " even", " ,", " worse", " **"], [" \n\n", "\n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", " ___", " ____"], [" ___", " **", " \n\n", " ____", " **#", "\n\n", " nasty", " --"], [" wildly", "\n\n", " nasty", " worse", " \n\n", " awful", " horribly", " tough"], ["\n\n", " \n\n", " --", " wildly", "  \n\n", " _", " **", " battling"], ["\n\n", " **", " ___", " \n\n", " ____", " _", "  \n\n", " wildly"], [" \n\n", " **", " ___", " ____", "  \n\n", " _____", "\n\n", " ______"], [" \n\n", "  \n\n", " **", " wildly", " relentless", " even", " aggressively", " tough"], [" \n\n", " \u2014", " wildly", " incredibly", "  \n\n", " relentless", " relentlessly", " even"], [" \u2014", " brutal", " relentless", " wildly", " incredibly", " relentlessly", " horrific", " extreme"], [" relentless", " brutal", " relentlessly", " \u2014", " aggressively", " incredibly", " horrific", " wildly"], [" relentless", " relentlessly", " aggressively", " brutal", " horrific", " wildly", " incredibly", " brutally"], [" relentless", " relentlessly", " brutal", " aggressively", " horrific", " incredibly", " wildly", " brutally"], [" relentless", " relentlessly", " brutal", " aggressively", " horrific", " incredibly", " wildly", " brutally"], [" relentless", " relentlessly", " aggressively", " incredibly", " horrific", " brutal", " wildly", " brutally"], [" relentless", " relentlessly", " brutal", " horrific", " aggressively", " incredibly", " impossible", " brutally"], [" relentless", " brutal", " relentlessly", " horrific", " impossible", " brutally", " aggressively", " incredibly"], [" relentless", " brutal", " hostile", " relentlessly", " horrific", " aggressively", " impossible", " brutally"], [" relentless", " hostile", " brutal", " relentlessly", " aggressively", " horrific", " brutally", " extreme"], [" relentless", " brutal", " hostile", " relentlessly", " aggressively", " aggressive", " nasty", " extreme"], [" relentless", " brutal", " hostile", " relentlessly", " aggressively", " horrific", " extreme", " brutally"], [" hostile", " relentless", " brutal", " nightmare", " aggressively", " extreme", " reality", " ."], [" hostile", " relentless", " brutal", " nightmare", " aggressively", " reality", " aggressive", " extreme"], [" hostile", " relentless", " nightmare", " reality", " aggressive", " brutal", " aggressively", " environment"], [" hostile", " reality", " relentless", " nightmare", " environment", " brutal", " environmental", " aggressively"], [" hostile", " nightmare", " reality", " environment", " relentless", " ones", " environmental", " enemy"], [" hostile", " environment", " nightmare", " hostility", " sabotage", " enemy", " territory", " terrain"], [" hostile", " nightmare", " sabotage", " environment", " hostility", " ones", " battleground", " battlefield"], [" ones", " environment", " hostile", " nightmare", " Ones", " project", " terrain", " territory"], [" ones", " Ones", " hostile", " environment", "ones", " nightmare", " engineering", " territory"], [" ones", " Ones", " environment", "ones", " hostile", " engineering", " environments", " nightmare"], [" ones", " environment", " Ones", " battlefield", " environments", "ones", " battleground", " hostile"], [" ones", " environment", " Ones", " battlefield", " project", " environments", "ones", " workplace"], [" ones", " one", " environment", " Ones", "ones", " project", " battlefield", "one"], [" environment", " ones", " one", " environments", " Ones", "Environment", "ones", " battlefield"], [" environment", " ones", " one", " environments", " Ones", "one", "ones", " battlefield"], [" project", " one", " ones", " environment", " environments", "ones", " Ones", " ecosystem"], [" environment", " project", " one", " ones", " environments", " ecosystem", " workplace", " Environment"], [" environment", " one", " project", " environments", " ecosystem", " Environment", "environment", "Environment"], [" one", " environment", " project", " ecosystem", " workplace", " engineering", " architecture", " workspace"]], "p": [[0.3439, 0.1265, 0.1117, 0.1117, 0.1117, 0.0411, 0.0341, 0.0249], [0.0093, 0.0077, 0.006, 0.0036, 0.0027, 0.0016, 0.0014, 0.0013], [0.2751, 0.1383, 0.13, 0.0788, 0.0422, 0.0372, 0.0226, 0.0187], [0.0044, 0.0038, 0.0028, 0.0021, 0.0015, 0.0013, 0.0012, 0.0011], [0.0034, 0.0025, 0.002, 0.0017, 0.0015, 0.0014, 0.0012, 0.0012], [0.012, 0.0077, 0.0036, 0.0036, 0.003, 0.0025, 0.0015, 0.0013], [0.2349, 0.0558, 0.0219, 0.0193, 0.0141, 0.0046, 0.0034, 0.0028], [0.0983, 0.0635, 0.03, 0.03, 0.0117, 0.0104, 0.0034, 0.003], [0.1356, 0.0932, 0.0388, 0.0183, 0.0143, 0.0087, 0.0081, 0.0072], [0.0112, 0.0082, 0.0068, 0.0044, 0.0032, 0.0028, 0.0024, 0.002], [0.072, 0.03, 0.0265, 0.0249, 0.0104, 0.0092, 0.0081, 0.0076], [0.2839, 0.0133, 0.0117, 0.0063, 0.0043, 0.0032, 0.0026, 0.0025], [0.1881, 0.0175, 0.0047, 0.0044, 0.003, 0.0024, 0.0024, 0.0022], [0.0121, 0.0107, 0.0078, 0.0065, 0.0065, 0.005, 0.0047, 0.0039], [0.0198, 0.0128, 0.0113, 0.0106, 0.0082, 0.0064, 0.0057, 0.0057], [0.0329, 0.0165, 0.0155, 0.0121, 0.0083, 0.0061, 0.0061, 0.0047], [0.0309, 0.029, 0.0273, 0.0114, 0.0107, 0.0107, 0.0078, 0.0065], [0.1312, 0.0201, 0.0167, 0.0108, 0.0074, 0.007, 0.0065, 0.0054], [0.1262, 0.016, 0.0081, 0.0076, 0.0071, 0.0055, 0.0055, 0.0049], [0.0255, 0.0187, 0.0175, 0.012, 0.0064, 0.0064, 0.005, 0.005], [0.0382, 0.0232, 0.0232, 0.014, 0.0124, 0.0116, 0.0103, 0.0097], [0.0665, 0.026, 0.0148, 0.0062, 0.0058, 0.0051, 0.0048, 0.004], [0.051, 0.0257, 0.0176, 0.0129, 0.0129, 0.0121, 0.0121, 0.0089], [0.0313, 0.0202, 0.0178, 0.0157, 0.013, 0.013, 0.0123, 0.0102], [0.4949, 0.3001, 0.182, 0.0066, 0.004, 0.0024, 0.0013, 0.0012], [0.1234, 0.1089, 0.066, 0.0426, 0.0332, 0.0243, 0.0167, 0.0157], [0.0298, 0.0263, 0.0218, 0.015, 0.015, 0.0141, 0.0132, 0.0124], [0.6911, 0.0879, 0.0105, 0.0087, 0.0082, 0.0082, 0.0039, 0.003], [0.2634, 0.181, 0.1032, 0.0755, 0.0245, 0.0203, 0.0149, 0.0116], [0.249, 0.2198, 0.1333, 0.076, 0.076, 0.0262, 0.0232, 0.0192], [0.2514, 0.1116, 0.0437, 0.0282, 0.0133, 0.0125, 0.0125, 0.0125], [0.0877, 0.0532, 0.0532, 0.0532, 0.0469, 0.0323, 0.0222, 0.0152], [0.1028, 0.0586, 0.0456, 0.0313, 0.0294, 0.0244, 0.0215, 0.0202], [0.0782, 0.0505, 0.0474, 0.0474, 0.0288, 0.027, 0.0254, 0.0254], [0.089, 0.0786, 0.0371, 0.0308, 0.0289, 0.0272, 0.0272, 0.0175], [0.1415, 0.1035, 0.052, 0.0381, 0.0358, 0.0358, 0.0358, 0.0231], [0.1666, 0.1145, 0.0508, 0.0477, 0.0349, 0.0349, 0.0255, 0.0212], [0.1365, 0.0686, 0.0391, 0.0345, 0.0324, 0.0324, 0.0174, 0.0135], [0.1413, 0.0627, 0.0431, 0.038, 0.0336, 0.0278, 0.0246, 0.0169], [0.1771, 0.0652, 0.0612, 0.0349, 0.0255, 0.0225, 0.0225, 0.0225], [0.1543, 0.0936, 0.0501, 0.0442, 0.0252, 0.0222, 0.0163, 0.0163], [0.1443, 0.0932, 0.0932, 0.0531, 0.0322, 0.0251, 0.0183, 0.0172], [0.1207, 0.094, 0.0779, 0.0473, 0.0392, 0.0238, 0.021, 0.021], [0.1482, 0.0845, 0.0545, 0.0331, 0.0242, 0.0177, 0.0177, 0.0177], [0.063, 0.0591, 0.0433, 0.0204, 0.0204, 0.018, 0.018, 0.0159], [0.0858, 0.0432, 0.0358, 0.0262, 0.0192, 0.0192, 0.0149, 0.0109], [0.0845, 0.0399, 0.0375, 0.0188, 0.0156, 0.0147, 0.013, 0.0101], [0.0571, 0.0445, 0.0306, 0.027, 0.0144, 0.012, 0.0112, 0.0099], [0.1398, 0.0293, 0.0275, 0.0243, 0.0138, 0.0138, 0.0095, 0.0095], [0.5123, 0.0349, 0.0255, 0.024, 0.0137, 0.01, 0.0094, 0.0073], [0.6222, 0.0423, 0.0273, 0.02, 0.0156, 0.0121, 0.0114, 0.0069], [0.8031, 0.0258, 0.0201, 0.0177, 0.0051, 0.0045, 0.004, 0.0023], [0.9952, 0.0025, 0.0004, 0.0003, 0.0003, 0.0001, 0.0, 0.0], [0.9941, 0.0036, 0.0006, 0.0004, 0.0002, 0.0001, 0.0001, 0.0], [0.9911, 0.0036, 0.0028, 0.0007, 0.0003, 0.0003, 0.0002, 0.0001], [0.9831, 0.0066, 0.004, 0.0019, 0.0006, 0.0005, 0.0005, 0.0003], [0.8732, 0.092, 0.0086, 0.004, 0.0036, 0.0031, 0.0028, 0.0022], [0.4522, 0.4522, 0.0477, 0.0225, 0.003, 0.0021, 0.0021, 0.0018], [0.5057, 0.2707, 0.186, 0.0135, 0.0044, 0.0034, 0.0027, 0.0016], [0.3802, 0.2306, 0.2306, 0.1399, 0.0037, 0.002, 0.0016, 0.0014], [0.9487, 0.0286, 0.0072, 0.0056, 0.003, 0.001, 0.0005, 0.0005], [0.9199, 0.0357, 0.0357, 0.0023, 0.001, 0.0007, 0.0003, 0.0003], [0.7015, 0.2581, 0.0308, 0.001, 0.0009, 0.0008, 0.0005, 0.0004]], "ranks": {"Rust": [50153, 54037, 42323, 62785, 6294, 10889, 11761, 7057, 17625, 6767, 9210, 7625, 9440, 6040, 8127, 9964, 11235, 16038, 30518, 20376, 33221, 39103, 13964, 10263, 11841, 12488, 9151, 7299, 7490, 8206, 7381, 5974, 7644, 8607, 8861, 10370, 9486, 11293, 13455, 16823, 18503, 14928, 12885, 14852, 16237, 15065, 13474, 13243, 9823, 15428, 52193, 78694, 84816, 98937, 87601, 78143, 85999, 51365, 55366, 20645, 16049, 9334, 10285]}}, {"pos": 392, "top": [[" \u2013", "\u2013", ",", ".", "\u2013and", "\u00a0\u00a0", " ", "\u2026."], [" \u2013", "\u2013", "\u2013and", "**\u2013", " \u2013**", " \u2013,", " **\u2013", "\u2013\u2013"], [" \u2013", "\u2013", "\u2013and", "**\u2013", " \u2013,", ".\u2013", " **\u2013", " \u2013**"], [" **\u201e", " Guta", " **:**", " milfs", "-------------</", "----------</", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale"], [" **\u2013", " \u2013", "**\u2013", " **\u201e", " *\u2013", " Guta", "sider", " \u2013**"], [" **\u2013", "**\u2013", " \u2013", " Guta", "-**", " *\u2013", "slaught", " \u2013**"], ["**\u2013", " **\u2013", " \u2013", " *\u2013", " \u2013**", " \u2014\u2014", " **\"", "   \n"], ["**\u2013", " **\u2013", " \u2013", " *\u2013", "slaught", " **\u201e", " !_", "   \n"], [" \u2013", "**\u2013", " **\u2013", "   \n", " *\u2013", "\u2013and", "\u2013", " _."], [" \u2013", "\u2013", "\u2013and", "**\u2013", " **\u2013", ".\u2013", " _", "\u2013\u2013"], [" \u2013", " _", " _.", "._", "\u2013", " **\u2013", " ._", "**\u2013"], [" _", " _.", " **\u2013", " !_", "._", "**\u2013", " _$", " ._"], [" _", " _.", "._", " **\u2013", " ._", " \u2013", " !_", " **"], [" \u2013", " _", "\u2013", " **\u2013", "._", "**\u2013", " _.", " yet"], [" \u2013", " _", " yet", " \u2014", " --", " even", " barely", "\u2013"], [" \u2013", " \u2014", " _", " yet", " --", " even", " barely", " -"], [" \u2013", " yet", "\u2013", " even", ",", " \u2014", " barely", " _"], [" \u2013", " yet", " even", " albeit", " amidst", " barely", " \u2014", " aggressively"], [" \u2014", " even", " amidst", " barely", " yet", " fiercely", " relentlessly", " albeit"], [" \u2014", " even", " barely", " --", " yet", " _", " swiftly", " arguably"], [" \u2014", " --", " ,", " even", " swiftly", " utterly", " yet", " barely"], [" .**", " --", " **\u25a0", " !**", " even", " ._", " relentlessly", " tougher"], [" --", " _", " ,", " even", " .**", " barely", " utterly", " arguably"], [" --", " ,", " _", " even", " .", " barely", " yet", " much"], ["\n\n", " --", " _", "  \n\n", " \u2014", " \n\n", " ,", " utterly"], [" --", " _", " \u2014", " utterly", " arguably", " ,", " even", " wildly"], [" _", " --", " \u2014", " ,", "\n\n", " even", " arguably", " ___"], [" --", "\n\n", " _", " ,", " \u2014", " even", " arguably", " yet"], [" \u2014", " --", " _", " ,", " arguably", " even", " incredibly", " aggressively"], [" \u2014", " --", " arguably", " _", " ,", " \u2014\u2014", " .", " incredibly"], [" \u2014", " .", " ,", " even", " --", " incredibly", " aggressively", " relentlessly"], [" \u2014", " even", " ,", " incredibly", " .", " relentlessly", " \u2013", " aggressively"], [" \u2014", " even", " incredibly", " \u2013", " relentlessly", " .", " barely", " ,"], [" \u2014", " aggressively", " relentlessly", " notoriously", " incredibly", " heavily", " relentless", " even"], [" relentlessly", " notoriously", " aggressively", " relentless", " incredibly", " heavily", " massively", " \u2014"], [" notoriously", " relentlessly", " aggressively", " \u2014", " relentless", " incredibly", " demanding", " impossible"], [" notoriously", " relentlessly", " aggressively", " impossible", " relentless", " incredibly", " demanding", " barely"], [" notoriously", " relentlessly", " impossible", " aggressively", " incredibly", " demanding", " relentless", " massively"], [" impossible", " relentlessly", " demanding", " notoriously", " incredibly", " relentless", " aggressively", " desperately"], [" demanding", " impossible", " relentlessly", " incredibly", " notoriously", " relentless", " aggressively", " desperately"], [" demanding", " impossible", " relentlessly", " incredibly", " aggressively", " relentless", " notoriously", " challenging"], [" demanding", " impossible", " demands", " relentlessly", " aggressively", "\u82db\u523b", " relentless", " incredibly"], [" demanding", " impossible", " demands", " aggressively", " relentlessly", " relentless", " incredibly", " notoriously"], [" demanding", " impossible", " demands", "\u82db\u523b", " constraints", " aggressively", " incredibly", " relentlessly"], [" demanding", " impossible", " demands", " aggressively", " incredibly", " relentlessly", " challenging", " relentless"], [" demanding", " impossible", " demands", " aggressively", " incredibly", " drastically", " extremely", " extreme"], [" demanding", " impossible", " demands", " drastically", " incredibly", " aggressively", " extremely", " wildly"], [" demanding", " impossible", " demands", " combining", " incredibly", " drastically", " combined", " specifically"], [" impossible", " demanding", " combining", " demands", " tight", " constraints", " drastically", " relentless"], [" demanding", " constraints", " combining", " impossible", ".", " demands", "\u4e25\u82db", " Impossible"], [".", ".**", ".\u201c", " combining", "\\.", " impossible", " demanding", " forcing"], [".", ".**", " demanding", "\\.", " requiring", ".\u201c", " insisting", " constraints"], [".", ".**", "\\.", ".\u201c", " demanding", ".*", " constraints", "**."], [".", ".**", "\\.", ".\u201c", ".\\", "\\\\.", " demanding", " expecting"], [" requesting", " demanding", " requiring", " expecting", " asking", " achieving", ".**", "asking"], [" demanding", " forcing", "forcing", " requiring", " expecting", " aiming", " requesting", " achieving"], [" demanding", ".", " requesting", "forcing", " forcing", " expecting", " aiming", " targeting"], [" demanding", " forcing", "forcing", ".", " requiring", " requesting", " targeting", " expecting"], [" demanding", " forcing", "forcing", ".", " targeting", " requesting", " requiring", " Constraint"], [" hitting", " demanding", ".", " forcing", " scripting", " targeting", "forcing", " requiring"], [".", " demanding", " forcing", " scripting", " hitting", " targeting", "forcing", " Asking"], [".", " demanding", " forcing", " scripting", " targeting", " hitting", " Asking", " requiring"], [".", " demanding", " scripting", ".H", " targeting", " forcing", " requiring", " hitting"]], "p": [[0.5846, 0.4018, 0.0094, 0.0024, 0.0007, 0.0003, 0.0001, 0.0001], [0.8604, 0.1028, 0.0096, 0.0051, 0.0045, 0.0029, 0.0024, 0.0011], [0.556, 0.433, 0.007, 0.0014, 0.0011, 0.0006, 0.0005, 0.0001], [0.0128, 0.0113, 0.0106, 0.0069, 0.0057, 0.0053, 0.0047, 0.0039], [0.0396, 0.0255, 0.0225, 0.0146, 0.01, 0.0073, 0.005, 0.0042], [0.1491, 0.0584, 0.0065, 0.0062, 0.0042, 0.004, 0.0035, 0.0029], [0.266, 0.2205, 0.118, 0.0132, 0.0075, 0.0071, 0.0071, 0.0063], [0.3322, 0.2015, 0.0422, 0.0187, 0.0187, 0.0137, 0.0137, 0.0129], [0.3397, 0.1708, 0.0712, 0.0432, 0.0297, 0.0246, 0.0217, 0.018], [0.5368, 0.3256, 0.0251, 0.0087, 0.0068, 0.0036, 0.0034, 0.0026], [0.5632, 0.2348, 0.0247, 0.0205, 0.0132, 0.0071, 0.0063, 0.0059], [0.4036, 0.0513, 0.04, 0.0375, 0.0275, 0.0122, 0.0122, 0.0115], [0.6341, 0.059, 0.0231, 0.0191, 0.0169, 0.014, 0.0116, 0.0062], [0.6069, 0.1272, 0.0087, 0.0081, 0.0081, 0.0053, 0.0044, 0.0034], [0.5063, 0.348, 0.0144, 0.0144, 0.0127, 0.0072, 0.0053, 0.0044], [0.4299, 0.1021, 0.0513, 0.0453, 0.0258, 0.0243, 0.0084, 0.0065], [0.7584, 0.0202, 0.0178, 0.0139, 0.0115, 0.0058, 0.0042, 0.0042], [0.0959, 0.0453, 0.0275, 0.0242, 0.0201, 0.013, 0.0122, 0.0122], [0.0423, 0.0397, 0.0241, 0.0212, 0.0188, 0.0176, 0.0129, 0.0121], [0.1601, 0.0627, 0.0357, 0.0336, 0.0278, 0.0245, 0.0158, 0.0149], [0.1316, 0.0515, 0.0427, 0.0401, 0.0259, 0.0243, 0.0243, 0.0215], [0.0414, 0.0323, 0.0251, 0.0208, 0.0126, 0.0119, 0.0098, 0.0098], [0.4269, 0.0479, 0.0241, 0.0241, 0.0129, 0.0114, 0.0094, 0.0089], [0.4639, 0.1173, 0.0405, 0.0381, 0.014, 0.0109, 0.009, 0.008], [0.3006, 0.2653, 0.0917, 0.0861, 0.0433, 0.0141, 0.0103, 0.0059], [0.4206, 0.0882, 0.0443, 0.0153, 0.0144, 0.0144, 0.0135, 0.0105], [0.3757, 0.2011, 0.0272, 0.0256, 0.0199, 0.0129, 0.0107, 0.0088], [0.2386, 0.2106, 0.1858, 0.0775, 0.05, 0.0119, 0.0112, 0.0053], [0.1277, 0.1127, 0.0877, 0.0774, 0.0366, 0.0303, 0.0184, 0.0152], [0.64, 0.0219, 0.0133, 0.011, 0.011, 0.0097, 0.0097, 0.0091], [0.395, 0.1205, 0.0569, 0.0345, 0.0237, 0.0153, 0.0112, 0.0105], [0.283, 0.0631, 0.036, 0.0338, 0.028, 0.0181, 0.017, 0.016], [0.289, 0.0731, 0.0324, 0.0209, 0.0197, 0.0197, 0.0174, 0.0174], [0.1563, 0.0738, 0.0693, 0.0371, 0.0328, 0.0272, 0.024, 0.0211], [0.1344, 0.0868, 0.0766, 0.0385, 0.0265, 0.0206, 0.0161, 0.0161], [0.1286, 0.0733, 0.0571, 0.0536, 0.0325, 0.0325, 0.0197, 0.0164], [0.1413, 0.0971, 0.0627, 0.0405, 0.0357, 0.0296, 0.0296, 0.0191], [0.1046, 0.0815, 0.056, 0.0494, 0.0494, 0.0436, 0.03, 0.0182], [0.1621, 0.0924, 0.0815, 0.0719, 0.0494, 0.0319, 0.0282, 0.0206], [0.2162, 0.1021, 0.0901, 0.0453, 0.0453, 0.04, 0.0275, 0.0115], [0.2756, 0.0789, 0.0654, 0.0373, 0.035, 0.0329, 0.0273, 0.0121], [0.5709, 0.0414, 0.0365, 0.0284, 0.0195, 0.0162, 0.0143, 0.0118], [0.4464, 0.0776, 0.0415, 0.0366, 0.0285, 0.0173, 0.0135, 0.0135], [0.5184, 0.1021, 0.0482, 0.0214, 0.0122, 0.0122, 0.0122, 0.0115], [0.3748, 0.1771, 0.0448, 0.0225, 0.0211, 0.0145, 0.0137, 0.0128], [0.337, 0.1804, 0.0456, 0.0313, 0.0131, 0.0115, 0.0096, 0.0096], [0.3075, 0.1646, 0.0416, 0.0324, 0.0223, 0.0173, 0.0127, 0.0099], [0.1684, 0.1312, 0.0376, 0.0332, 0.0275, 0.0258, 0.0214, 0.0138], [0.1065, 0.1, 0.0325, 0.0253, 0.0223, 0.0223, 0.021, 0.0153], [0.0683, 0.0532, 0.0267, 0.0251, 0.0236, 0.0196, 0.0196, 0.0196], [0.1644, 0.1451, 0.0391, 0.0391, 0.0324, 0.0173, 0.0119, 0.0119], [0.2012, 0.1775, 0.074, 0.0613, 0.0422, 0.0226, 0.0199, 0.0176], [0.4798, 0.2, 0.0736, 0.037, 0.0224, 0.0078, 0.0073, 0.0068], [0.2418, 0.1883, 0.1769, 0.0693, 0.0211, 0.0106, 0.01, 0.01], [0.2695, 0.1635, 0.0772, 0.0725, 0.0343, 0.0251, 0.0221, 0.0208], [0.1488, 0.1023, 0.0961, 0.0797, 0.0797, 0.062, 0.062, 0.0354], [0.2256, 0.1757, 0.083, 0.078, 0.078, 0.0346, 0.0305, 0.0269], [0.5324, 0.1525, 0.1048, 0.0561, 0.03, 0.0234, 0.0111, 0.0086], [0.5079, 0.1455, 0.0883, 0.0535, 0.0417, 0.0223, 0.0163, 0.0127], [0.2407, 0.1875, 0.146, 0.1137, 0.0781, 0.069, 0.0393, 0.0224], [0.3457, 0.2692, 0.0874, 0.0681, 0.0601, 0.0388, 0.0162, 0.0098], [0.9058, 0.033, 0.0083, 0.0069, 0.0051, 0.0051, 0.0024, 0.0021], [0.9988, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [37603, 65682, 61453, 141601, 55647, 34036, 63337, 74758, 97155, 71147, 60941, 106173, 71154, 40528, 24870, 21781, 32225, 83376, 121252, 94215, 101273, 116702, 61489, 31065, 29701, 20720, 12507, 13114, 11519, 15742, 13162, 10602, 12553, 15564, 14624, 20060, 19984, 30717, 34501, 48866, 48438, 57417, 61911, 71945, 52841, 59862, 35693, 25976, 22658, 23875, 36355, 32577, 26089, 20061, 31511, 10546, 6003, 4152, 4444, 848, 589, 342, 326]}}, {"pos": 393, "top": [[" \u2013", ".", "\u2013", ",", ";", "\u00a0", "\u2026.", "\u00a0\u00a0"], [" \u2013", "\u2013", "\u2013and", " \u2013,", " \u200b\u200b", ",", "   \n", " very"], [" \u2013", "\u2013", ",", ".", "\u2026..", "\u2026.", "\u2026", "\u2013and"], [" milfs", "-------------</", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", "----------</", " Blowjob", "\uc3df", "\uff0a\uff0a\uff0a\uff0a"], [" \u200b\u200b", " Aussie", " \u201c.", " \u201c", " crazy", " everyone", " kids", ":@"], [" \u200b\u200b", ",", ".", " everyone", " \ud83d\ude42", ":", " crazy", " pretty"], [" guys", " bigger", " pretty", " \u201d", " kids", " got", " maybe", " crazy"], [" pretty", " bigger", " veggies", " guys", " crappy", " amazingly", " nicely", " folks"], [" \n\n", "   \n\n", "  \n\n", " pretty", " bigger", "    \n\n", " \ud83d\ude42", " guys"], [" bigger", " pretty", " folks", " veggies", " kids", " kinda", " crappy", " guts"], [" folks", " bigger", " kids", " pretty", " nasty", " guys", " stuff", " just"], [" veggies", " freaking", " folks", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " bigger", " kids", " comfy", " guys"], [" veggies", " freaking", " folks", " anyways", " bigger", " skinny", " crappy", " guys"], [" bigger", " freaking", " veggies", " guys", " kids", " folks", " biggest", " crappy"], [" folks", " bigger", " freaking", " kids", " pretty", " incredibly", " guys", " stuff"], [" incredibly", " freaking", " folks", " anyways", " skyrocket", " guys", " busted", " kids"], [" incredibly", " folks", " freaking", " bigger", " kids", " pretty", " guys", " big"], [" incredibly", " folks", " freaking", " pretty", " nasty", " savvy", " wildly", " sprawling"], [" incredibly", " folks", " freaking", " huge", " wildly", " pretty", " relentlessly", " ridiculously"], [" incredibly", " folks", " wildly", " truly", " huge", " myriad", " arguably", " even"], [" incredibly", " wildly", " myriad", "\n\n", " folks", " truly", " hugely", "<|endoftext|>"], [" incredibly", " wildly", " freaking", " folks", " skyrocket", " sprawling", " huge", " relentlessly"], [" incredibly", " wildly", " huge", " truly", " folks", " myriad", " sprawling", " arguably"], [" incredibly", " wildly", " myriad", " --", " truly", " sprawling", " looming", " huge"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", " incredibly", " myriad"], [" incredibly", " wildly", " folks", " myriad", " arguably", " sprawling", " hugely", " vastly"], [" incredibly", " wildly", " myriad", " arguably", " sprawling", "\n\n", " vastly", " looming"], ["\n\n", " arguably", " wildly", " incredibly", " myriad", " \n\n", " vastly", " --"], [" incredibly", " wildly", " arguably", " myriad", "\n\n", " vastly", " sprawling", " \n\n"], [" \u2014", " incredibly", " wildly", " arguably", " \n\n", "  \n\n", " myriad", " vastly"], [" incredibly", " wildly", " truly", " much", " just", " even", " huge", " dramatically"], [" incredibly", " wildly", " huge", " truly", " just", " massive", " \u2014", " dramatically"], [" incredibly", " wildly", " aggressively", " relentlessly", " massive", " truly", " huge", " arguably"], [" aggressively", " incredibly", " relentlessly", " wildly", " relentless", " massive", " massively", " heavily"], [" incredibly", " relentlessly", " aggressively", " relentless", " wildly", " brutally", " notoriously", " massively"], [" aggressively", " relentlessly", " relentless", " incredibly", " brutally", " notoriously", " wildly", " massively"], [" aggressively", " relentlessly", " relentless", " brutally", " notoriously", " incredibly", " wildly", " massively"], [" aggressively", " incredibly", " relentlessly", " relentless", " brutally", " wildly", " insanely", " massively"], [" relentless", " relentlessly", " incredibly", " aggressively", " insanely", " brutally", " wildly", " massively"], [" relentless", " incredibly", " relentlessly", " insanely", " brutally", " aggressively", " wildly", " massively"], [" insanely", " relentless", " brutally", " aggressively", " relentlessly", " incredibly", " wildly", " ridiculously"], [" aggressively", " forcing", " brutally", " relentless", " relentlessly", " insanely", " demanding", " wildly"], [" aggressively", " forcing", " brutally", " relentless", " insanely", " relentlessly", " brutal", " massively"], [" forcing", " brutally", " aggressively", " relentless", " impossible", " brutal", " demanding", " forced"], [" forcing", " aggressively", " impossible", " demanding", " brutally", " forced", " relentless", " pushing"], [" forcing", " aggressively", " demanding", " impossible", " forced", " drastically", " wildly", " massively"], [" forcing", " aggressively", " demanding", " drastically", " massively", " impossible", " pushing", " wildly"], [" forcing", " combining", " demanding", " aggressively", " pushing", " insanely", " drastically", " massively"], [" combining", " forcing", " pushing", " demanding", " aggressively", " relentless", " tightening", " combination"], [" combining", " forcing", " demanding", " enforcing", " pushing", "\u5012\u903c", " constraints", " demands"], [" combining", " forcing", " pushing", " insisting", " requiring", "forcing", " attempting", " Trying"], [" requiring", " demanding", " insisting", "\u8981\u6c42\u5728", "\u8981\u6c42\u7684", "\u8981\u6c42", " forcing", "\u7684\u8981\u6c42"], [" demanding", " requiring", " insisting", "\u8981\u6c42\u7684", " forcing", "\u8981\u6c42\u5728", "\u7684\u8981\u6c42", " restricting"], [" requiring", " demanding", " insisting", "\u8981\u6c42\u7684", " restricting", " requesting", "\u8981\u6c42", "\u7684\u8981\u6c42"], [" requiring", " demanding", "\u8981\u6c42", "\u8981\u6c42\u7684", " requesting", "\u8981\u6c42\u5728", "\u7684\u8981\u6c42", " requirement"], [" requiring", " demanding", "\u8981\u6c42", " forcing", " requesting", "forcing", "\u8981\u6c42\u5728", "\u8981\u6c42\u7684"], [" demanding", " requiring", " requesting", "\u8981\u6c42", "forcing", " forcing", " enforcing", " insisting"], [" demanding", " requiring", "\u8981\u6c42", " forcing", "forcing", " requesting", " enforcing", " Asking"], [" demanding", " requiring", " forcing", " requesting", "forcing", " targeting", "\u8981\u6c42", " Asking"], [" demanding", " requiring", " hitting", " forcing", " targeting", " Asking", "forcing", " requesting"], [" demanding", " Asking", " forcing", " requiring", " hitting", " asking", " Demand", " targeting"], [" demanding", " Asking", " requiring", " forcing", " Cheap", " asking", " Demand", " hitting"], [" Asking", " Cheap", " Dem", " Target", " Mid", " Adding", " Demand", " The"]], "p": [[0.6473, 0.2101, 0.0682, 0.0602, 0.0034, 0.0014, 0.0012, 0.0011], [0.6976, 0.0307, 0.0068, 0.0041, 0.0018, 0.001, 0.0008, 0.0008], [0.4356, 0.2332, 0.1414, 0.1414, 0.0124, 0.008, 0.0062, 0.0045], [0.0172, 0.0104, 0.0098, 0.0092, 0.0076, 0.0076, 0.0049, 0.0041], [0.007, 0.0037, 0.0031, 0.0026, 0.0022, 0.002, 0.0019, 0.0019], [0.0544, 0.0029, 0.0027, 0.0025, 0.0025, 0.0019, 0.0015, 0.0014], [0.0398, 0.0374, 0.031, 0.0291, 0.0257, 0.0176, 0.0176, 0.0156], [0.0719, 0.0385, 0.0234, 0.0142, 0.0117, 0.0117, 0.0104, 0.0104], [0.4514, 0.1768, 0.0271, 0.0239, 0.0106, 0.0088, 0.0078, 0.0064], [0.0153, 0.0077, 0.0077, 0.0056, 0.005, 0.0047, 0.0044, 0.0032], [0.0873, 0.082, 0.0342, 0.0321, 0.0195, 0.0183, 0.0111, 0.0104], [0.0168, 0.009, 0.0075, 0.007, 0.0066, 0.0037, 0.0035, 0.0035], [0.0389, 0.0208, 0.0184, 0.0112, 0.0112, 0.0082, 0.0064, 0.006], [0.0339, 0.0299, 0.0233, 0.0141, 0.011, 0.0091, 0.0071, 0.0067], [0.1871, 0.0346, 0.0238, 0.0185, 0.0174, 0.0163, 0.0144, 0.0136], [0.1123, 0.1055, 0.0364, 0.0302, 0.0183, 0.0104, 0.0092, 0.0092], [0.1635, 0.1196, 0.0322, 0.0143, 0.0134, 0.0134, 0.0111, 0.0087], [0.232, 0.1096, 0.0403, 0.0139, 0.0116, 0.0102, 0.0102, 0.0096], [0.387, 0.0558, 0.0298, 0.0193, 0.011, 0.011, 0.0097, 0.0091], [0.2835, 0.0633, 0.0318, 0.0264, 0.0193, 0.017, 0.0141, 0.0103], [0.0606, 0.0368, 0.0325, 0.0223, 0.0197, 0.0174, 0.0174, 0.0153], [0.2006, 0.0289, 0.0211, 0.0211, 0.0211, 0.0155, 0.0128, 0.0106], [0.164, 0.0366, 0.0173, 0.0153, 0.0153, 0.0153, 0.0135, 0.0126], [0.0614, 0.029, 0.0273, 0.0155, 0.0137, 0.0137, 0.0129, 0.0129], [0.4804, 0.2416, 0.1007, 0.0136, 0.0094, 0.0094, 0.005, 0.0037], [0.07, 0.0399, 0.0257, 0.02, 0.0177, 0.0166, 0.0147, 0.0138], [0.0391, 0.0391, 0.0185, 0.0185, 0.0174, 0.0127, 0.0119, 0.0099], [0.1175, 0.0262, 0.0246, 0.018, 0.0169, 0.0149, 0.0132, 0.0132], [0.0455, 0.0428, 0.0402, 0.0333, 0.0276, 0.0215, 0.0157, 0.0148], [0.0755, 0.0357, 0.0315, 0.0296, 0.0261, 0.0216, 0.0216, 0.0179], [0.0494, 0.03, 0.0282, 0.0248, 0.0219, 0.0206, 0.0193, 0.016], [0.0869, 0.0362, 0.0282, 0.0265, 0.0234, 0.0206, 0.0206, 0.0194], [0.0726, 0.0343, 0.0236, 0.0236, 0.0208, 0.0195, 0.0173, 0.0162], [0.0713, 0.0591, 0.046, 0.0337, 0.0279, 0.0231, 0.0217, 0.0169], [0.0476, 0.0476, 0.0476, 0.0394, 0.0289, 0.0225, 0.0211, 0.0198], [0.0616, 0.0578, 0.0511, 0.048, 0.0423, 0.0398, 0.0373, 0.0257], [0.0648, 0.0572, 0.0505, 0.0445, 0.0393, 0.0369, 0.027, 0.0238], [0.0607, 0.0536, 0.0503, 0.0473, 0.0346, 0.0346, 0.0287, 0.0269], [0.0549, 0.0549, 0.0484, 0.0427, 0.0333, 0.0333, 0.0259, 0.0229], [0.0534, 0.0471, 0.0443, 0.0443, 0.0367, 0.0367, 0.0268, 0.0209], [0.0477, 0.0448, 0.0421, 0.0395, 0.0371, 0.0371, 0.0255, 0.0225], [0.0507, 0.0327, 0.0327, 0.0307, 0.0271, 0.0239, 0.0211, 0.0211], [0.0682, 0.0414, 0.0389, 0.0343, 0.0267, 0.0251, 0.0251, 0.0172], [0.0802, 0.0518, 0.0486, 0.0334, 0.0314, 0.0277, 0.026, 0.026], [0.0708, 0.0518, 0.0356, 0.0314, 0.023, 0.023, 0.023, 0.0191], [0.0928, 0.0638, 0.0364, 0.025, 0.0235, 0.0183, 0.0172, 0.0161], [0.0918, 0.0523, 0.0491, 0.0359, 0.0317, 0.0247, 0.0205, 0.0205], [0.0713, 0.0555, 0.0522, 0.049, 0.0359, 0.0218, 0.0218, 0.0204], [0.0934, 0.0775, 0.0173, 0.0173, 0.0153, 0.0112, 0.0093, 0.0093], [0.1462, 0.0347, 0.0307, 0.0128, 0.012, 0.01, 0.0083, 0.0078], [0.2063, 0.0406, 0.0217, 0.0204, 0.018, 0.0169, 0.0149, 0.0132], [0.3447, 0.1119, 0.0638, 0.0529, 0.0412, 0.0283, 0.0283, 0.0266], [0.2381, 0.2381, 0.0682, 0.0469, 0.0414, 0.0322, 0.0322, 0.0221], [0.1857, 0.1447, 0.0994, 0.0603, 0.0441, 0.0389, 0.0366, 0.0366], [0.2652, 0.2066, 0.2066, 0.0976, 0.0592, 0.0407, 0.0359, 0.0192], [0.3888, 0.2081, 0.1621, 0.0282, 0.0282, 0.0249, 0.0249, 0.0249], [0.5414, 0.1066, 0.0733, 0.0647, 0.0444, 0.0392, 0.0185, 0.0099], [0.6924, 0.1545, 0.0502, 0.0345, 0.0237, 0.0163, 0.0036, 0.0032], [0.7487, 0.0894, 0.0373, 0.029, 0.0256, 0.0176, 0.0107, 0.0094], [0.5176, 0.168, 0.07, 0.07, 0.0425, 0.0258, 0.0201, 0.0122], [0.6802, 0.172, 0.0299, 0.016, 0.0141, 0.0125, 0.0086, 0.0076], [0.4125, 0.3213, 0.0493, 0.0435, 0.0205, 0.0193, 0.0117, 0.0103], [0.3132, 0.1017, 0.0792, 0.0699, 0.0617, 0.048, 0.033, 0.0257]], "ranks": {"Rust": [34885, 62623, 42493, 74799, 5888, 5823, 16177, 17006, 21940, 15935, 6616, 39498, 24281, 31430, 14964, 20375, 11671, 21376, 29250, 18291, 29138, 31237, 17842, 11956, 13372, 11113, 8041, 8132, 7714, 10109, 10230, 7962, 7513, 7822, 6156, 6482, 5700, 6383, 8673, 10882, 9855, 9730, 10545, 13474, 12318, 12163, 8782, 6234, 10625, 15797, 11593, 13050, 13307, 9123, 12243, 2298, 1331, 896, 1221, 336, 279, 124, 78]}}, {"pos": 394, "top": [[" \u2013", ".", "\u2013", "\u2026..", "\u00a0\u00a0", "\u2026.", "\u00a0", "\u2013and"], [" \u2013", " \u2013**", "**\u2013", "\u2013and", "\u2013\u2013", " \u2013,", "\u2013", " **\u2013"], ["**\u2013", " \u2013**", " \u2013", "\u2026..", " **\u2013", "\u2026**", "\u2013and", "\u2013"], [" milfs", " **:**", "ielen", " Shemale", " Blowjob", "ieli", " **\u25cb", " Strec"], [" **#", "iha", "-**", "*******", " @_", " **:**", " *@", " \uffe5"], ["-**", "iha", " **#", "\u8f66", " **\u2013", " **:**", " **:", "insip"], ["-**", "iha", " \r\n\r\n", " **#", "\u4e86", "\u662f", " \r\n", "       \n\n"], ["iha", " **#", "-**", "   \r\n", " \r\n\r\n", "       \n\n", "untut", " \uffe5"], ["       \n\n", " \r\n\r\n", "   \n\n", "        \n\n", "     \n\n", "    \n\n", " **#", "      \n\n"], ["iha", " veggies", " alot", "Sharper", "ymm", "VERY", " comfy", "linky"], [" #", "iha", " #%", " @_", " \uffe5", "-_", "\u8ddf", " **#"], ["iha", " veggies", " **#", " comfy", "Sharper", " booze", "-**", " alot"], ["iha", " veggies", " comfy", " booze", " skinny", "-ish", " anyways", "Sharper"], ["iha", " veggies", " booze", " comfy", " skinny", " anyways", " crappy", " carbs"], [" veggies", " kids", " busted", "iha", " stuff", " booze", " comfy", " alot"], [" veggies", " anyways", " booze", " skinny", " comfy", "iha", " kids", " crappy"], [" veggies", " skinny", " booze", " crappy", " comfy", " kids", "-tech", "iha"], [" skinny", " veggies", " carbs", " booze", "iha", " kids", " crappy", " comfy"], [" crappy", " booze", " skinny", " nasty", " carbs", " veggies", " comfy", "kids"], [" HUGE", " booze", " crappy", " alot", " incredibly", " huge", "kids", " skinny"], [" hugely", "Though", " huge", " plenty", " incredibly", "\u8ddf", "huge", " pricey"], [" HUGE", " booze", " freaking", "iha", " skinny", " incredibly", " huge", "kids"], [" huge", " hugely", " incredibly", " plenty", " pricey", "huge", " booze", " busted"], [" hugely", " huge", " incredibly", " plenty", " barely", " wildly", " uncomfort", " utterly"], [" \r\n\r\n", "\r\n\r\n", " hugely", "Though", " incredibly", " plenty", "\t\n\n", "\n\n"], [" incredibly", " hugely", " pricey", " HUGE", " freaking", " skinny", " insanely", " alot"], [" pricey", " skinny", " hugely", " incredibly", " huge", " insanely", " skyrocket", " busted"], ["\n\n", " hugely", " huge", " incredibly", " plenty", "\r\n\r\n", " wildly", " barely"], [" huge", " incredibly", " tech", " hugely", " skinny", " massively", " massive", " arguably"], [" huge", " tech", " incredibly", " massive", " high", " barely", " tough", " heavy"], [" huge", " incredibly", " massive", " big", " high", " tough", " even", " tech"], [" huge", " incredibly", " high", " big", " massive", " even", " extremely", " tough"], [" huge", " incredibly", " massive", " extremely", " massively", " even", " barely", " notoriously"], [" incredibly", " insanely", " notoriously", " massively", " huge", " extremely", " massive", " relentless"], [" notoriously", " insanely", " incredibly", " massively", " relentless", " relentlessly", " HUGE", " brutal"], [" notoriously", " insanely", " incredibly", " relentless", " massively", " impossible", " HUGE", " ridiculously"], [" insanely", " notoriously", " incredibly", " HUGE", " relentless", " ridiculously", " tech", " massively"], [" insanely", " notoriously", " incredibly", " impossible", " relentless", " tech", " ridiculously", " HUGE"], [" insanely", " incredibly", " notoriously", " impossible", " relentless", " ridiculously", " relentlessly", " massively"], [" insanely", " incredibly", " notoriously", " framerate", " demanding", " overclock", " impossible", " relentless"], [" insanely", " demanding", " hardware", " tech", " overclock", " framerate", " incredibly", "-tech"], [" demanding", " insanely", " overclock", " framerate", " hardware", " achievable", " tech", " flawless"], [" insanely", " demanding", " achievable", " overclock", " impossible", " notoriously", " hardware", " flawless"], [" demanding", " achievable", " Impossible", "Impossible", "\u8981\u6c42", " impossible", " insanely", " notoriously"], [" impossible", " achievable", " demanding", "Impossible", " Impossible", " notoriously", "Requires", " insanely"], [" demanding", " impossible", " achievable", "\u660e\u786e\u8981\u6c42", " demands", " requires", " Impossible", " requirement"], [" demanding", " requires", " impossible", " Impossible", "\u660e\u786e\u8981\u6c42", " demands", " achievable", " requirement"], ["\u8981\u6c42", "\u8981\u6c42\u7684", " demanding", "Requires", " requirement", "\u8981\u6c42\u5728", " Impossible", " requires"], ["\u660e\u786e\u8981\u6c42", "\u8981\u6c42\u7684", " \u0422\u0440\u0435\u0431", "Requires", "_require", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442", "\u8981\u6c42\u5728", "requires"], ["Requires", "\u8981\u6c42\u7684", "\u660e\u786e\u8981\u6c42", " Requires", "requires", "_require", "\u8981\u6c42\u5728", "\u8981\u6c42"], ["\u8981\u6c42", "\u8981\u6c42\u7684", "requires", "\u660e\u786e\u8981\u6c42", " Requires", "Requires", "\u8981\u6c42\u5728", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442"], ["\u8981\u6c42", " framerate", "\u8981\u6c42\u7684", "requires", "Requires", "\u8981\u6c42\u5728", " **+", " *@"], ["\u8981\u6c42\u7684", "\u8981\u6c42", " framerate", "\u8981\u6c42\u5728", "Requirement", "requires", "require", " *@"], [" framerate", "\u8981\u6c42\u7684", " **+", "\u8981\u6c42", " *@", "*@", " **\u2014", "Requirement"], [" framerate", " *@", " **+", "*@", "\u8981\u6c42\u7684", " CPU", "\u8981\u6c42", " GPU"], [" FPS", " framerate", " fps", "1", "fps", "_fps", " **+", "\u5e27"], [" FPS", " framerate", " fps", "1", "fps", " CPU", "\u5e27", "_fps"], [" FPS", "1", " framerate", " fps", "fps", " latency", "_fps", "\u5e27"], ["1", " FPS", "\u5e27", " fps", " framerate", "8", "6", "9"], ["1", " FPS", " fps", "ropy", "\u5e27", "-frame", "9", " frame"], ["1", "9", "6", "8", "7", "4", "3", "2"], ["1", "6", " FPS", "9", " %", "3", "4", "8"], ["1", "3", "2", "6", "4", "9", "8", "7"]], "p": [[0.6473, 0.1197, 0.0932, 0.0221, 0.0208, 0.0184, 0.0063, 0.0053], [0.1309, 0.0481, 0.0138, 0.013, 0.013, 0.0058, 0.0058, 0.004], [0.5223, 0.1095, 0.0707, 0.0355, 0.0334, 0.0216, 0.0168, 0.0115], [0.0165, 0.0069, 0.0057, 0.0042, 0.0042, 0.0025, 0.0025, 0.0025], [0.0705, 0.019, 0.0168, 0.0123, 0.0079, 0.0079, 0.007, 0.0062], [0.0442, 0.0163, 0.0105, 0.0036, 0.0028, 0.0028, 0.0028, 0.0027], [0.0529, 0.025, 0.0221, 0.0195, 0.0134, 0.0104, 0.0081, 0.0081], [0.0218, 0.0181, 0.016, 0.008, 0.0062, 0.0046, 0.0038, 0.0036], [0.0288, 0.0238, 0.0186, 0.0145, 0.0136, 0.0106, 0.0106, 0.0064], [0.0269, 0.0032, 0.0032, 0.0028, 0.0025, 0.0022, 0.0018, 0.0017], [0.0177, 0.0177, 0.0147, 0.0107, 0.0074, 0.0074, 0.0074, 0.0069], [0.0185, 0.0105, 0.0068, 0.0064, 0.0044, 0.0023, 0.0021, 0.0021], [0.017, 0.015, 0.0067, 0.0055, 0.0034, 0.0028, 0.0026, 0.0024], [0.0152, 0.0135, 0.0056, 0.0036, 0.0025, 0.0023, 0.0021, 0.0019], [0.0191, 0.0158, 0.0123, 0.0116, 0.0116, 0.0102, 0.0102, 0.0096], [0.013, 0.0079, 0.007, 0.007, 0.0062, 0.0058, 0.0051, 0.0051], [0.0304, 0.0286, 0.0184, 0.0144, 0.0087, 0.0087, 0.0082, 0.0077], [0.0275, 0.0201, 0.0177, 0.0156, 0.013, 0.0114, 0.0114, 0.0095], [0.0227, 0.0213, 0.0177, 0.0121, 0.0114, 0.0095, 0.0095, 0.0083], [0.018, 0.0116, 0.0109, 0.0085, 0.0075, 0.007, 0.007, 0.0066], [0.0135, 0.0077, 0.0077, 0.0056, 0.005, 0.0044, 0.0044, 0.0036], [0.0082, 0.0068, 0.0064, 0.006, 0.0053, 0.0053, 0.0044, 0.0041], [0.0133, 0.0125, 0.011, 0.0067, 0.0038, 0.003, 0.003, 0.003], [0.0151, 0.0104, 0.0104, 0.0059, 0.0046, 0.0038, 0.0025, 0.0023], [0.0305, 0.0185, 0.0105, 0.005, 0.0039, 0.0036, 0.0034, 0.003], [0.0059, 0.0056, 0.0052, 0.0043, 0.0041, 0.0038, 0.0036, 0.0034], [0.0047, 0.0047, 0.0044, 0.0041, 0.0039, 0.0034, 0.003, 0.0027], [0.033, 0.0129, 0.0101, 0.0074, 0.0065, 0.0051, 0.0048, 0.0045], [0.0224, 0.0211, 0.0136, 0.012, 0.0113, 0.0078, 0.0068, 0.0057], [0.038, 0.0231, 0.0204, 0.0149, 0.0124, 0.0109, 0.0109, 0.0102], [0.1998, 0.0538, 0.0254, 0.0254, 0.0186, 0.0186, 0.0128, 0.0128], [0.1103, 0.0279, 0.0262, 0.0231, 0.018, 0.0149, 0.0149, 0.0116], [0.0976, 0.0433, 0.0337, 0.0218, 0.0205, 0.0181, 0.0159, 0.0117], [0.0894, 0.0422, 0.0397, 0.0373, 0.0309, 0.0256, 0.0165, 0.0129], [0.0721, 0.0677, 0.0465, 0.0171, 0.0151, 0.0133, 0.0111, 0.0098], [0.0903, 0.0703, 0.0426, 0.0108, 0.0101, 0.0084, 0.0084, 0.0079], [0.0815, 0.056, 0.0249, 0.0104, 0.0086, 0.0086, 0.0081, 0.0076], [0.0972, 0.0279, 0.0262, 0.0109, 0.0085, 0.008, 0.008, 0.0066], [0.1217, 0.0371, 0.0289, 0.0155, 0.0113, 0.0094, 0.0073, 0.0073], [0.0915, 0.0262, 0.018, 0.018, 0.0159, 0.0116, 0.0109, 0.0109], [0.0587, 0.0295, 0.023, 0.0216, 0.0216, 0.0216, 0.0203, 0.0123], [0.0621, 0.0293, 0.0259, 0.0243, 0.0215, 0.013, 0.013, 0.0122], [0.038, 0.0278, 0.0191, 0.018, 0.0158, 0.014, 0.0109, 0.0102], [0.0593, 0.0492, 0.0263, 0.0247, 0.0232, 0.0218, 0.0192, 0.016], [0.0505, 0.0474, 0.0445, 0.0347, 0.0186, 0.0136, 0.0128, 0.012], [0.0732, 0.0325, 0.0238, 0.0185, 0.0185, 0.0174, 0.0144, 0.0127], [0.0554, 0.0296, 0.0246, 0.0231, 0.0204, 0.0191, 0.0149, 0.0149], [0.0525, 0.0409, 0.0299, 0.0281, 0.0264, 0.0264, 0.0264, 0.0248], [0.0276, 0.0215, 0.0178, 0.0157, 0.0147, 0.0139, 0.0139, 0.0139], [0.0442, 0.0442, 0.0323, 0.0285, 0.0222, 0.0196, 0.0184, 0.0162], [0.0736, 0.0691, 0.0327, 0.0271, 0.0254, 0.0224, 0.0145, 0.012], [0.0842, 0.0616, 0.0511, 0.0121, 0.0121, 0.0114, 0.0094, 0.0089], [0.066, 0.0583, 0.0426, 0.0122, 0.0108, 0.0089, 0.0084, 0.0079], [0.0415, 0.0367, 0.0323, 0.0323, 0.0153, 0.0112, 0.0068, 0.0064], [0.0552, 0.0261, 0.0149, 0.0149, 0.014, 0.0109, 0.0102, 0.0096], [0.1722, 0.1341, 0.0435, 0.0193, 0.0182, 0.0141, 0.0081, 0.0067], [0.1687, 0.0661, 0.0401, 0.0332, 0.0178, 0.0095, 0.0089, 0.0061], [0.1491, 0.0798, 0.0548, 0.0455, 0.0215, 0.009, 0.007, 0.0062], [0.5984, 0.0407, 0.0124, 0.0097, 0.0085, 0.0071, 0.0062, 0.0062], [0.8377, 0.0064, 0.006, 0.0034, 0.003, 0.0027, 0.0018, 0.0014], [0.9944, 0.0005, 0.0004, 0.0003, 0.0002, 0.0002, 0.0002, 0.0001], [0.9965, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [43812, 103781, 165235, 132971, 77628, 92862, 120420, 88394, 146035, 85059, 41922, 82426, 46515, 36347, 15843, 32459, 34451, 75954, 95317, 85777, 80026, 90772, 46753, 28432, 39067, 47351, 21289, 15428, 11970, 6515, 5895, 8088, 14014, 32753, 43913, 77434, 64714, 88001, 79991, 110653, 79138, 86426, 75658, 69704, 51691, 43986, 44298, 42396, 63489, 77551, 60153, 86471, 111407, 113027, 95201, 68308, 25181, 23114, 73507, 1116, 1331, 345, 200]}}, {"pos": 395, "top": [[".", ",", " \u2013", "a", "\u2013", ";", "!", "o"], [" \u2013", ".", "\u2013", "\u00ad", "\uff0e", ",", "\u00adi", ":."], [".", "\u2013", ",", " \u2013", "\u3002", "\u2026.", ".\u2013", "\u2026.."], ["-------------</", "----------</", " milfs", " cumshot", " **\u25a0", " Blowjob", " ;;^", "erias"], ["kits", " **\u25a0", "erweise", "sider", "-------------</", "\u0902\u092c\u0930", "\uff01**", "abeled"], ["kits", "\uff01", "ICAST", "nok", "sider", "schluss", ":href", "sWith"], ["\uff01", " **\u25a0", "\uff08", "\uff01**", "splash", "sider", "er", "kits"], [" **\u25a0", "-**", "sider", "**!", "svar", "er", "enner", "\uff01**"], ["!).", "\uff01", "sider", "\u00adi", "!:", "**!", "ifier", "-old"], [" \u00ad", "er", "\u00adi", "s", "isecond", "-Cds", "kids", "!:"], ["er", " \u00ad", "s", "a", "ed", " #", "ers", "ward"], [" **\u25a0", " veggies", "isecond", "erias", "enner", "er", "kids", "raries"], [" veggies", "er", "kids", "-ish", " crappy", " funky", " **\u25a0", " skinny"], [" veggies", "kids", " crappy", "-ish", " skinny", " funky", "raries", "isecond"], [" kids", " busted", "kids", " veggies", " funky", " skinny", " crappy", " guys"], [" veggies", "kids", " kids", " skinny", " busted", " crappy", " goofy", " guys"], [" veggies", "kids", " skinny", " kids", " funky", " crappy", " busted", " gotta"], ["kids", " veggies", "-ish", " funky", " crappy", " carbs", " skinny", " gotta"], ["kids", "**!", " veggies", " crappy", " funky", "isecond", " gotta", " carbs"], ["kids", "ifetime", "\u7684\u4e8b\u513f", "trash", "isecond", " busted", " veggies", " pricey"], ["kids", "ly", "though", "er", "fully", "Though", "\u54b1", "n"], ["kids", " busted", "ly", "isecond", " freaking", "fully", "ifetime", "ivityManager"], ["fully", "ly", " busted", "kids", "ahead", "just", " pricey", "though"], ["fully", "ly", " barely", "though", " disastr", " hugely", " plenty", "just"], ["\r\n\r\n", "  \n\n", " \r\n\r\n", "though", "\n\n", " hugely", "fully", "just"], [" **", " pricey", " **#", " **+", "\u5565", "...**", " hugely", " !**"], [" pricey", " hugely", " crunch", " **", "ly", " busted", " massively", " incredibly"], [" **", " massively", " hugely", " fast", " famously", "\n\n", " incredibly", " arguably"], [" **", "\u2011", " massively", " hugely", " fast", " tech", " famously", " crunch"], ["\u2011", " fast", " tech", " **", " high", " massively", " massive", " heavy"], [" fast", " huge", " high", " massive", " -", " massively", " incredibly", " @"], [" high", " fast", " ", " -", " @", " #", " huge", " long"], [" **", " fast", " massive", " high", " huge", " massively", " -", " even"], ["\u2011", " tech", " **", " incredibly", " massively", "!**", "?!", "(!"], ["?!", "!**", " tech", "(!", "\u2011", "!!!", " massively", " incredibly"], ["\u2011", "\u2026**", " hardware", "!**", " overclock", "\u2026\u2026", " tech", " \u2026"], ["\u2011", " hardware", " overclock", " Android", " GPU", " tech", "!**", " **"], [" Android", "\u2011", " hardware", " smartphone", "Android", " iOS", " tech", " android"], [" hardware", " Android", " Hardware", " iOS", " CPU", " iPhone", "hardware", " GPU"], [" CPU", " hardware", " Android", " overclock", " GPU", " Java", " tech", " computational"], [" Android", " CPU", " hardware", " overclock", " GPU", " engine", " android", " Java"], [" Android", " hardware", "Android", " CPU", " android", " overclock", " Java", "Java"], [" Android", " hardware", " overclock", " CPU", " Java", "Android", "Java", " android"], [" Android", " hardware", "Android", " overclock", " CPU", " android", " JVM", "Java"], [" hardware", " Android", " overclock", " CPU", " JVM", " android", " GPU", " Java"], [" hardware", " Android", " overclock", " JVM", " CPU", " GPU", " CPUs", " buggy"], [" hardware", " CPU", " buggy", " GPU", " Android", " fragmented", " JVM", " overclock"], [" hardware", " CPU", " CPUs", " Android", " buggy", " overclock", " GPU", " JVM"], [" overclock", " CPUs", " Android", " buggy", " JVM", " CPU", " hardware", " GPU"], [" Android", " JVM", " overclock", " buggy", " CPUs", "\u53c2\u5dee\u4e0d\u9f50", "Android", " CPU"], [" Android", "Android", " JVM", " GPU", "-java", " CPUs", " overclock", "thermal"], ["Android", " Android", " CPU", " JVM", " GPU", " variability", " fragmentation", "GPU"], [" Android", "Android", " CPU", "CPU", " GPU", " JVM", " fragmentation", "_android"], [" Android", "Android", " CPU", "_android", " GPU", "JNI", "/android", "CPU"], [" Android", "Android", " CPU", " GPU", " JVM", "CPU", "\u53d1\u70ed", "JNI"], [" Android", "Android", " CPU", "_android", "(Android", " JVM", "/android", " GPU"], [" Android", " GC", "Android", " garbage", "GC", "(Android", "_android", " android"], [" GC", " Android", "GC", "Android", " garbage", "(Android", " GPU", "ANDROID"], [" Android", " GC", "Android", "GC", "(Android", " garbage", " GPU", "ANDROID"], [" GC", "GC", " garbage", " GPU", " Rust", " gc", "gc", "GPU"], [" GC", "GC", " garbage", " GPU", " thermal", " JIT", " Android", " ART"], [" GC", "GC", " garbage", " GPU", "0", " Gar", " Ad", "Ad"], ["2", "3", "6", "4", "0", "8", "1", "5"]], "p": [[0.9308, 0.0525, 0.0067, 0.0026, 0.0019, 0.0006, 0.0005, 0.0004], [0.0841, 0.0655, 0.0166, 0.0146, 0.0114, 0.0107, 0.0047, 0.0035], [0.8369, 0.0368, 0.0345, 0.0253, 0.0144, 0.0044, 0.0041, 0.0036], [0.014, 0.0124, 0.0124, 0.0085, 0.007, 0.0045, 0.0043, 0.004], [0.0255, 0.0088, 0.0057, 0.0039, 0.0037, 0.0035, 0.0035, 0.0032], [0.02, 0.0037, 0.0035, 0.0027, 0.0024, 0.0021, 0.0021, 0.002], [0.0521, 0.0192, 0.014, 0.0132, 0.009, 0.009, 0.0075, 0.007], [0.0275, 0.0101, 0.0084, 0.0061, 0.0054, 0.0042, 0.0042, 0.004], [0.0112, 0.0105, 0.0082, 0.0072, 0.0072, 0.0072, 0.0068, 0.0064], [0.0122, 0.0079, 0.0051, 0.0031, 0.0031, 0.0029, 0.0027, 0.0024], [0.4955, 0.0337, 0.0317, 0.0204, 0.0159, 0.0109, 0.0091, 0.0055], [0.0157, 0.0084, 0.0058, 0.0037, 0.0029, 0.0024, 0.0023, 0.002], [0.0153, 0.0127, 0.006, 0.005, 0.0039, 0.0032, 0.003, 0.0028], [0.0152, 0.0077, 0.0046, 0.0039, 0.003, 0.0028, 0.0025, 0.0021], [0.0201, 0.0147, 0.013, 0.013, 0.0101, 0.0065, 0.0065, 0.0058], [0.0197, 0.0144, 0.0127, 0.0082, 0.0068, 0.0068, 0.0056, 0.0039], [0.0533, 0.0268, 0.0196, 0.0153, 0.0143, 0.0127, 0.0119, 0.0112], [0.0407, 0.015, 0.0071, 0.0071, 0.0066, 0.0055, 0.0052, 0.0049], [0.0135, 0.0082, 0.0041, 0.0039, 0.003, 0.0027, 0.0022, 0.0022], [0.0077, 0.0022, 0.002, 0.0017, 0.0016, 0.0015, 0.0013, 0.0013], [0.0075, 0.0075, 0.0062, 0.0062, 0.0058, 0.0058, 0.0051, 0.0051], [0.0089, 0.0033, 0.0027, 0.0024, 0.0017, 0.0017, 0.0015, 0.0014], [0.0136, 0.01, 0.0042, 0.0037, 0.0029, 0.0025, 0.0025, 0.0025], [0.013, 0.0101, 0.0033, 0.0031, 0.0029, 0.0029, 0.0026, 0.0026], [0.0178, 0.0108, 0.0108, 0.0079, 0.007, 0.0062, 0.0062, 0.0042], [0.0179, 0.0102, 0.009, 0.0062, 0.0058, 0.0055, 0.0055, 0.0038], [0.0122, 0.0048, 0.0045, 0.0042, 0.0033, 0.0031, 0.0027, 0.0023], [0.0223, 0.0153, 0.0127, 0.0093, 0.0077, 0.0077, 0.006, 0.0056], [0.0123, 0.0115, 0.0108, 0.0102, 0.009, 0.0079, 0.0058, 0.0051], [0.043, 0.0379, 0.023, 0.0191, 0.0168, 0.014, 0.0102, 0.0075], [0.065, 0.0447, 0.0447, 0.042, 0.0211, 0.0186, 0.0186, 0.0164], [0.0422, 0.0397, 0.0273, 0.024, 0.0199, 0.0187, 0.0165, 0.0137], [0.1079, 0.051, 0.0309, 0.0273, 0.0273, 0.0212, 0.0187, 0.0165], [0.057, 0.0473, 0.0287, 0.0197, 0.0144, 0.0135, 0.0135, 0.0112], [0.0746, 0.0581, 0.0513, 0.0258, 0.0201, 0.0156, 0.0122, 0.0107], [0.1453, 0.0286, 0.0252, 0.0209, 0.0197, 0.0127, 0.0127, 0.0087], [0.15, 0.1097, 0.0379, 0.0314, 0.0295, 0.0277, 0.0158, 0.0131], [0.2471, 0.1167, 0.1097, 0.0334, 0.0277, 0.026, 0.0216, 0.0131], [0.5507, 0.0844, 0.0452, 0.0311, 0.0274, 0.0201, 0.0177, 0.0156], [0.1178, 0.104, 0.081, 0.0523, 0.0338, 0.028, 0.0263, 0.0181], [0.1342, 0.0867, 0.0814, 0.0494, 0.0385, 0.0264, 0.0219, 0.0219], [0.2338, 0.2063, 0.0406, 0.0382, 0.0297, 0.0297, 0.0217, 0.014], [0.1493, 0.1402, 0.0622, 0.0402, 0.0333, 0.0276, 0.0244, 0.0229], [0.1407, 0.0802, 0.0379, 0.0356, 0.0295, 0.0245, 0.0216, 0.0203], [0.1163, 0.1092, 0.0549, 0.0294, 0.0276, 0.0244, 0.0178, 0.0167], [0.1047, 0.041, 0.034, 0.0319, 0.03, 0.0206, 0.0194, 0.0142], [0.1276, 0.0285, 0.0251, 0.0208, 0.0196, 0.0184, 0.0162, 0.0162], [0.0661, 0.0293, 0.0243, 0.0228, 0.0202, 0.0167, 0.0148, 0.0139], [0.024, 0.0212, 0.0199, 0.0187, 0.0187, 0.0165, 0.0128, 0.0128], [0.0218, 0.0192, 0.018, 0.0159, 0.0141, 0.0117, 0.0103, 0.0097], [0.0459, 0.0405, 0.0261, 0.0131, 0.0116, 0.0102, 0.0096, 0.0096], [0.0765, 0.0765, 0.0319, 0.0248, 0.0233, 0.0206, 0.0206, 0.0151], [0.2099, 0.1273, 0.0772, 0.0267, 0.0208, 0.0195, 0.0195, 0.0195], [0.3501, 0.1995, 0.0571, 0.021, 0.0197, 0.0197, 0.0186, 0.0174], [0.3333, 0.1574, 0.1226, 0.0511, 0.0424, 0.031, 0.0227, 0.0177], [0.6065, 0.2528, 0.0162, 0.0143, 0.0104, 0.0092, 0.0076, 0.0076], [0.6863, 0.1193, 0.0638, 0.0497, 0.0161, 0.0126, 0.0126, 0.0067], [0.3665, 0.2854, 0.1528, 0.0722, 0.0341, 0.0207, 0.0092, 0.0076], [0.316, 0.316, 0.1026, 0.1026, 0.0167, 0.0157, 0.0139, 0.0123], [0.5579, 0.1598, 0.1411, 0.0261, 0.0085, 0.007, 0.0066, 0.0058], [0.7386, 0.0731, 0.0645, 0.0119, 0.0082, 0.0082, 0.006, 0.006], [0.6907, 0.0684, 0.05, 0.0209, 0.0105, 0.0105, 0.0099, 0.0093], [0.9957, 0.002, 0.0005, 0.0005, 0.0003, 0.0002, 0.0002, 0.0002]], "ranks": {"Rust": [48133, 102292, 100144, 65003, 51458, 41871, 47634, 30494, 48674, 54223, 47591, 75979, 39286, 25914, 23001, 40102, 44215, 82502, 73964, 49069, 94675, 66070, 81106, 38634, 30363, 24026, 9005, 6524, 9433, 6122, 4295, 8997, 10177, 26749, 24468, 42509, 5770, 5490, 4142, 9309, 2035, 7040, 3225, 4389, 2039, 1974, 1275, 873, 635, 307, 290, 634, 301, 230, 351, 294, 56, 68, 9, 5, 10, 23, 21]}}, {"pos": 396, "top": [[".", ",", " \u2013", "\u2013", "y", ".\u2013", ";", "\u2013and"], [" \u2013", "\u2013and", "\u2013", " \u2013**", "een", ".\u2013", "\u2011", "al"], ["\u2013", " \u2013", ".", ".\u2013", "\u2013and", ",", "\u2026..", " \u2013,"], [" milfs", " Strec", "*\u201c.", " ;;^", " Blowjob", " cumshot", " Geile", "':''"], ["@$", "*\u201c.", ".*(", " *\u201c", " *\u201e", " \\\"$", " *\u00ab", "__(*"], ["odiac", "egers", " \n \n", "*\u201c.", "\u0441\u043e\u0442", "pedia", "lett", " Kalian"], [" *\u00ab", "__)", " \n \n", " __", " *\u201e", "\\\"", ".__", " \n"], [" \\\"", " \\\"$", " *\u00ab", "}\\\"", " *\u201e", "__)", "\\\"", ".\\\""], [" \\\"$", "\\\"", " *\u201e", " *\u00ab", " \\\"", ".\\\"", "}\\\"", " \n \n"], ["-$", " \\\"$", " \\\"", " \n \n", "}\\\"", "\u4e3d\u4e1d", ".\\\"", "\\\"\\"], [" \\\"", "\\\"", ".\\\"", " \\\"$", " --", " *\u00ab", " \n \n", "\\\"\\"], [" *\u00ab", " \\\"", " \\\"$", " veggies", " *__", "__)", " *\u201e", "__$"], [" *\u00ab", " veggies", "flix", " \\\"", " kids", " skinny", "egers", "-ish"], [" veggies", "flix", " kids", " *\u00ab", " moms", " grandma", " skinny", "\u4e3d\u4e1d"], [" kids", " moms", " veggies", " gorgeous", " goodies", " --", " \\\"", " skinny"], [" kids", " veggies", " skinny", " moms", " buzz", "kids", " comfy", " pops"], [" kids", " veggies", " skinny", " moms", " buzz", "kids", " meds", "-ish"], [" veggies", " kids", " skinny", "kids", " comfy", "Sharper", " meds", " carbs"], [" veggies", " skinny", " comfy", "Sharper", " milfs", " pornstar", " crunchy", "flix"], [" buzz", " kids", " skinny", " --", " buzzing", " insanely", "Sharper", " comfy"], [" --", " \n\n", "Though", " hugely", " kids", " buzz", " barely", " bouncing"], ["Sharper", " buzz", " kids", " comfy", " skinny", "bucks", " gorgeous", " insanely"], [" --", " hugely", " incredibly", " pricey", " horribly", " buzz", " barely", " kids"], [" --", " hugely", " barely", " incredibly", " wildly", " famously", " fast", " horribly"], [" \n\n", " \r\n\r\n", " --", "   \n\n", "\n\n", " \n\n\n", "\t\n\n", "\r\n\r\n"], [" \n\n", " --", " __", " \r\n\r\n", " *__", " pricey", " ___", " hugely"], [" --", " pricey", " tech", " hugely", " skinny", " buzz", " __", " skyrocket"], [" --", " hugely", " speed", " famously", " fast", " tech", " incredibly", " barely"], [" speed", " tech", " fast", " incredibly", " hugely", " famously", " --", " buzz"], [" speed", " tech", " fast", " buzz", " **", " skinny", " high", " speeds"], [" fast", " tech", " speed", " **", " high", " incredibly", " huge", " demand"], [" high", " fast", " **", " demand", " speed", " even", " critical", " performance"], [" even", " fast", " high", " critical", " demand", " speed", " hard", " demanding"], [" brutal", " insanely", " \u2013", " incredibly", " tech", " notoriously", " fast", " aggressive"], [" insanely", " notoriously", " incredibly", " brutal", " tech", " aggressively", " brutally", " effortlessly"], [" insanely", "\u2011", " notoriously", "/fast", " \u2013", " incredibly", " tech", " framerate"], [" insanely", " tech", " overclock", " framerate", " notoriously", "/fast", " incredibly", " fastest"], [" insanely", " framerate", " overclock", " tech", " sprint", " scalability", " hardware", " uptime"], [" insanely", " framerate", " overclock", " tech", "/fast", " flawless", " scalability", " incredibly"], [" framerate", " overclock", "/fast", " speeds", " speed", " uptime", "-speed", " fastest"], [" framerate", " overclock", " speeds", " speed", "-speed", " uptime", " fastest", "/fast"], [" framerate", " overclock", " uptime", " speeds", " throughput", " fps", "\u6bcf\u79d2", " FPS"], [" framerate", " overclock", " uptime", " speeds", " throughput", "\u6bcf\u79d2", "\u5cf0\u503c", " fps"], [" framerate", "\u6bcf\u79d2", " uptime", " achievable", "\u5cf0\u503c", " speeds", " throughput", " overclock"], [" framerate", " uptime", " throughput", " fps", " achievable", " overclock", "\u6bcf\u79d2", " speeds"], [" framerate", " uptime", " sprint", "/fast", " FPS", "\u6bcf\u79d2", " fps", " achievable"], [" framerate", " uptime", "/fast", " fps", " FPS", " sprint", " achievable", " peak"], [" framerate", "/fast", " uptime", " sprint", " requirement", " achievable", " peak", "\u5cf0\u503c"], [" framerate", "/fast", " uptime", "\u5cf0\u503c", " sprint", "-speed", "uptime", " GTX"], [" framerate", "/fast", " uptime", "-speed", "!**", "-tier", "Requires", " HVAC"], [" framerate", "/fast", " uptime", " *\u2013", "!**", "-tier", "\u901f", " Mbps"], [" framerate", "/fast", " Mbps", " fps", " RPM", "fps", " CPU", " FPS"], [" framerate", " FPS", " fps", "fps", " Mbps", " GPU", " CPU", "Hz"], [" FPS", " fps", " framerate", "fps", " Mbps", " GPU", " DPI", " PWM"], [" fps", " FPS", " framerate", "fps", " Mbps", " GPU", " DPI", "Hz"], [" FPS", " fps", "fps", "FPS", "_fps", " framerate", " TPS", " Mbps"], [" FPS", " fps", "fps", "FPS", "_fps", " framerate", " TPS", " Mbps"], [" FPS", " fps", "fps", "FPS", "_fps", " framerate", "Hz", "\u5e27"], [" FPS", " fps", "fps", "FPS", "\u5e27", "-frame", " frames", " frame"], [" fps", " FPS", "fps", "FPS", "\u5e27", " frames", "-frame", " frame"], [" FPS", " fps", "fps", "FPS", " frames", "\u5e27", "0", " framerate"], [" FPS", " fps", "0", "fps", "FPS", " TPS", " Hz", "Hz"], ["0", "1", "2", " FPS", "6", "4", "8", " fps"]], "p": [[0.7025, 0.1221, 0.0839, 0.074, 0.0029, 0.0024, 0.002, 0.0015], [0.0506, 0.0446, 0.0419, 0.0136, 0.0128, 0.01, 0.0039, 0.0037], [0.4065, 0.3587, 0.0706, 0.0706, 0.0456, 0.0066, 0.004, 0.0033], [0.0122, 0.0051, 0.0051, 0.0048, 0.0042, 0.0024, 0.0024, 0.0024], [0.0201, 0.0189, 0.0157, 0.0122, 0.0122, 0.0074, 0.007, 0.0058], [0.0137, 0.0089, 0.005, 0.0045, 0.0039, 0.0037, 0.0024, 0.0019], [0.0544, 0.0511, 0.0291, 0.0273, 0.0257, 0.0176, 0.0137, 0.0129], [0.0586, 0.0517, 0.0277, 0.0244, 0.0244, 0.0229, 0.0168, 0.0123], [0.0652, 0.0448, 0.0349, 0.0349, 0.0308, 0.024, 0.0212, 0.0146], [0.0429, 0.0379, 0.0334, 0.0216, 0.0102, 0.0096, 0.0079, 0.0066], [0.4646, 0.0915, 0.0432, 0.0406, 0.0149, 0.0124, 0.0124, 0.0109], [0.0443, 0.0237, 0.0135, 0.0112, 0.0064, 0.006, 0.0056, 0.0056], [0.0084, 0.0079, 0.0061, 0.0036, 0.0034, 0.0022, 0.0021, 0.0021], [0.0045, 0.0035, 0.002, 0.0015, 0.0015, 0.0013, 0.0012, 0.001], [0.0187, 0.0055, 0.005, 0.0046, 0.0046, 0.0039, 0.0028, 0.0025], [0.013, 0.0054, 0.0054, 0.0047, 0.0045, 0.0036, 0.0024, 0.0019], [0.0176, 0.0121, 0.01, 0.0044, 0.0044, 0.0037, 0.0037, 0.0037], [0.0046, 0.0033, 0.0025, 0.0018, 0.0018, 0.0018, 0.0017, 0.0016], [0.0024, 0.0024, 0.0024, 0.0023, 0.0023, 0.0021, 0.0019, 0.0018], [0.0091, 0.0071, 0.0067, 0.0055, 0.004, 0.004, 0.0038, 0.0038], [0.0631, 0.016, 0.0103, 0.0063, 0.0059, 0.0043, 0.004, 0.003], [0.0043, 0.0028, 0.0026, 0.0023, 0.0023, 0.0022, 0.0019, 0.0018], [0.143, 0.0081, 0.0067, 0.0049, 0.0046, 0.0043, 0.0043, 0.0043], [0.1832, 0.0091, 0.0086, 0.0052, 0.0046, 0.003, 0.0028, 0.0025], [0.6101, 0.0604, 0.0323, 0.0237, 0.0119, 0.0099, 0.0082, 0.0082], [0.0411, 0.032, 0.0194, 0.0182, 0.0071, 0.0067, 0.0067, 0.0056], [0.0124, 0.004, 0.0038, 0.0031, 0.0031, 0.0031, 0.0026, 0.002], [0.0468, 0.0111, 0.0081, 0.0072, 0.0063, 0.0059, 0.0052, 0.0052], [0.0193, 0.0097, 0.0097, 0.0076, 0.0071, 0.0063, 0.0063, 0.0059], [0.0152, 0.0134, 0.0119, 0.0105, 0.0087, 0.0053, 0.0053, 0.0049], [0.0258, 0.0228, 0.0189, 0.0177, 0.0157, 0.013, 0.0101, 0.0084], [0.0243, 0.0243, 0.0189, 0.0157, 0.013, 0.0115, 0.0101, 0.0074], [0.04, 0.0312, 0.0178, 0.013, 0.0115, 0.0101, 0.0089, 0.0065], [0.0142, 0.0125, 0.0104, 0.0097, 0.0092, 0.0071, 0.0067, 0.0063], [0.0273, 0.0156, 0.0089, 0.0089, 0.0078, 0.0054, 0.0054, 0.0048], [0.0252, 0.0127, 0.0112, 0.0093, 0.0087, 0.0077, 0.0068, 0.0064], [0.0329, 0.0188, 0.0089, 0.0083, 0.0074, 0.0069, 0.0057, 0.0054], [0.0337, 0.0159, 0.0141, 0.0141, 0.0062, 0.0062, 0.0059, 0.0059], [0.0405, 0.0231, 0.0116, 0.0102, 0.0066, 0.0066, 0.0062, 0.0062], [0.2858, 0.0321, 0.0172, 0.0151, 0.0142, 0.0126, 0.0126, 0.0111], [0.4387, 0.0434, 0.0338, 0.0232, 0.0205, 0.017, 0.0132, 0.0117], [0.4858, 0.0375, 0.0227, 0.0147, 0.0129, 0.0129, 0.0114, 0.0089], [0.3115, 0.0478, 0.029, 0.0176, 0.0176, 0.0137, 0.0113, 0.01], [0.2288, 0.0273, 0.0227, 0.02, 0.0166, 0.0156, 0.0146, 0.0137], [0.1633, 0.0364, 0.0195, 0.0183, 0.0162, 0.0162, 0.0152, 0.0143], [0.0848, 0.0228, 0.0201, 0.0167, 0.0157, 0.0122, 0.0122, 0.0101], [0.0668, 0.0297, 0.0109, 0.0096, 0.008, 0.008, 0.0066, 0.0066], [0.0707, 0.0314, 0.026, 0.0115, 0.0115, 0.0108, 0.0102, 0.009], [0.0831, 0.0392, 0.0325, 0.0088, 0.0073, 0.006, 0.0053, 0.0047], [0.0824, 0.0196, 0.0126, 0.0077, 0.0064, 0.0056, 0.0056, 0.0056], [0.0284, 0.0134, 0.006, 0.0053, 0.0053, 0.0036, 0.0034, 0.0032], [0.1671, 0.0273, 0.0256, 0.0176, 0.0114, 0.0107, 0.0107, 0.0107], [0.183, 0.092, 0.0558, 0.0318, 0.0281, 0.0233, 0.017, 0.0097], [0.1956, 0.1187, 0.1187, 0.0527, 0.0362, 0.0151, 0.0081, 0.0081], [0.2173, 0.159, 0.1403, 0.0964, 0.0585, 0.0148, 0.0131, 0.0123], [0.5714, 0.2699, 0.1445, 0.0119, 0.0012, 0.001, 0.0, 0.0], [0.7527, 0.1308, 0.0899, 0.0258, 0.0003, 0.0003, 0.0001, 0.0], [0.6575, 0.1662, 0.1467, 0.0289, 0.0003, 0.0002, 0.0001, 0.0001], [0.6734, 0.1929, 0.117, 0.0123, 0.0028, 0.0005, 0.0005, 0.0002], [0.593, 0.3174, 0.0803, 0.0045, 0.0019, 0.0013, 0.0006, 0.0005], [0.5337, 0.4157, 0.0438, 0.0041, 0.0005, 0.0005, 0.0005, 0.0003], [0.4698, 0.3659, 0.1188, 0.0386, 0.0018, 0.0012, 0.0009, 0.0002], [0.999, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001]], "ranks": {"Rust": [21666, 55517, 44335, 13640, 6896, 8296, 14301, 14123, 17032, 16074, 12610, 43350, 29203, 20695, 14919, 14268, 23646, 51129, 79930, 34402, 34562, 59954, 18806, 12768, 9348, 7423, 4791, 4438, 4253, 3298, 3208, 4795, 6754, 8309, 13579, 46750, 30124, 54421, 67628, 105504, 71124, 86676, 85075, 93998, 73348, 65747, 87459, 99081, 104478, 68133, 34739, 51106, 94599, 111408, 83901, 126059, 48685, 75988, 23088, 14939, 9944, 6173, 3158]}}, {"pos": 397, "top": [[".", ",", "s", "?", "o", ";", " \u2013", "-"], ["\u2011", "s", " \u2013", ".", ",", "\u2013", "\uff20", " West"], [".", ",", "\u2013", "s", "?", "\u2011", " \u2013", ";"], [" milfs", " Blowjob", " cumshot", "\uff0a\uff0a\uff0a\uff0a", " Shemale", "cuci", " pupper", " **>>"], ["s", " @", " *@", " *.", " @_", "auss", "\uff20", " #@"], ["s", "!\u201d.", " @", " \u201c.", " \u201d", "phans", "sip", "auss"], ["s", " \u201d", "\u0629", " -", "\u3000", "\n", "phans", " !!!"], ["s", " @", "phans", "sche", "sville", "-eyed", "sdale", "syl"], ["s", " @", "\u0092", "ten", "sport", " &", "!\u201d.", "!"], ["s", ",", "-", "-h", "ten", "-c", "-tr", "ness"], ["s", " @", "-", ",", "@", " #", "!", "."], ["s", "-ish", " fans", "lymp", "yron", "\u9e92", "-esque", "sville"], ["s", "-ish", "-esque", " fans", "\u9e92", "ptime", "scape", " loung"], ["-esque", "s", "-ish", "ptime", "-eyed", " pops", "-stop", " fans"], ["s", "-esque", "-ish", "-f", "-st", "-ton", "-", "-h"], ["s", "-esque", " buzz", " pops", " pop", " fans", " loud", " loung"], ["s", "-esque", " buzz", " pops", "-ish", "-tech", " fans", " loud"], ["s", "-esque", "-tech", "-ish", " buzz", " vibes", " pops", " amps"], ["s", "-esque", " buzz", "\u817e\u817e", "-ish", "-tech", "sche", "&apos"], ["s", "speed", "-esque", "-ish", "\u0627\u062a", " buzz", "\u817e\u817e", "-speed"], ["s", "<|endoftext|>", "speed", " %+", "-esque", " @", "\u0627\u062a", " speed"], ["\u817e\u817e", "speed", " ''", " speeds", "s", " buzz", "ptime", " loung"], [" ''", " speed", " \u2019", " speeds", "s", " buzz", "&apos", "speed"], [" speed", " \u2019", "s", " ''", " speeds", "speed", " live", " fast"], [" speed", " \r\n\r\n", " speeds", "-speed", " framerate", "speed", " \ufffd", " \ufffd"], [" speeds", " speed", " framerate", "-speed", " Instagram", " sprint", " jitter", "speed"], [" speeds", " speed", " framerate", " smartphone", " smartphones", " selfie", " pixel", "-speed"], [" speed", " speeds", " \ufffd", " pace", " Instagram", " sprint", " framerate", "-speed"], [" speeds", " speed", " Instagram", " sprint", " smartphone", " overclock", " smartphones", " selfie"], [" speeds", " speed", " overclock", " smartphones", " sprint", " Instagram", " smartphone", " framerate"], [" speed", " speeds", " sprint", " **", " Instagram", " overclock", " pace", " smartphone"], [" speed", " \ufffd", " speeds", " sprint", " fast", " \ufffd", " pace", " Instagram"], [" speed", " fast", " speeds", " sprint", " faster", " pace", " fastest", " power"], [" sprint", " overclock", " speed", " speeds", "/fast", " faster", " fastest", " pace"], [" overclock", " sprint", " \ufffd", " \ufffd", "/fast", " smartphone", " selfie", " Instagram"], [" sprint", " \ufffd", " \ufffd", " overclock", " faster", " speed", " fastest", "/fast"], [" overclock", " framerate", " speed", " speeds", " sprint", " faster", " fastest", " pixel"], [" overclock", " framerate", " speed", " speeds", " pixel", " smartphone", " faster", " sprint"], [" framerate", " speed", " overclock", " speeds", " pixel", " faster", " fps", " fastest"], [" framerate", " speed", " overclock", " speeds", " fastest", " fps", " faster", " pixel"], [" framerate", " speed", " speeds", " overclock", " fps", " fastest", " Speed", "-speed"], [" framerate", " fps", "\u6bcf\u79d2", " overclock", " speeds", " FPS", " speed", "fps"], [" framerate", " overclock", " fps", " speeds", "\u6bcf\u79d2", " FPS", " speed", "/fast"], [" framerate", " fps", " speeds", " overclock", " FPS", "\u6bcf\u79d2", " speed", "/fast"], [" framerate", " fps", " speeds", " speed", " FPS", "\u6bcf\u79d2", " overclock", " rapid"], [" framerate", " fps", "\u6bcf\u79d2", " FPS", " speeds", " speed", "/fast", " rapid"], [" framerate", "\u6bcf\u79d2", " fps", " FPS", " speeds", "/fast", "\u6bcf\u5206\u949f", " rapid"], [" framerate", "\u6bcf\u79d2", "/fast", " rapid", " fps", " FPS", " weekly", " fast"], [" framerate", "\u6bcf\u79d2", "/fast", " fps", " rapid", " FPS", " speeds", "\u6bcf\u5206\u949f"], [" framerate", "/fast", "\u6bcf\u79d2", " FPS", "-speed", " fps", "-fast", " speeds"], [" framerate", "/fast", "-speed", "\u6bcf\u79d2", " FPS", " AMOLED", "\u5e38\u6001\u5316", "fps"], [" framerate", " FPS", " fps", "fps", "/fast", " DPI", " AMOLED", " synced"], [" FPS", " framerate", " fps", "fps", " Hz", "Hz", "FPS", " MHz"], [" FPS", " framerate", " fps", "fps", "Hz", " Hz", "FPS", " MHz"], [" FPS", " framerate", " fps", "fps", "Hz", " Hz", "FPS", " DPI"], [" FPS", " fps", "fps", "FPS", " framerate", "_fps", "\u5e27", "Hz"], [" FPS", "fps", " fps", "FPS", " framerate", "_fps", "\u5e27", " DPI"], [" FPS", "fps", " fps", "FPS", " framerate", "Hz", "_fps", " Hz"], [" FPS", " fps", "fps", "FPS", "\u5e27", "Hz", " frames", " framerate"], [" fps", " FPS", "fps", "FPS", "\u5e27", "Hz", " frames", " framerate"], [" FPS", " fps", "fps", "FPS", " framerate", " frames", " Hz", "Hz"], [" FPS", " fps", "fps", "FPS", " Hz", "Hz", " TPS", " UPS"], [" FPS", "fps", " fps", "Hz", " Hz", "FPS", " TPS", " FP"]], "p": [[0.942, 0.0365, 0.0077, 0.0034, 0.0016, 0.0012, 0.0009, 0.0008], [0.07, 0.0545, 0.0399, 0.0177, 0.0107, 0.0061, 0.0048, 0.0026], [0.6457, 0.2692, 0.0111, 0.0111, 0.0052, 0.0046, 0.0044, 0.0019], [0.0296, 0.0116, 0.0045, 0.0031, 0.0031, 0.0028, 0.0026, 0.0024], [0.5216, 0.0516, 0.026, 0.0062, 0.0054, 0.0048, 0.0045, 0.0029], [0.0271, 0.0199, 0.0073, 0.0064, 0.0064, 0.0053, 0.0053, 0.0047], [0.5095, 0.0106, 0.0088, 0.0064, 0.0057, 0.0039, 0.0037, 0.0032], [0.3792, 0.0138, 0.0095, 0.0089, 0.0051, 0.0045, 0.0042, 0.0037], [0.6762, 0.0262, 0.0159, 0.0029, 0.0028, 0.0024, 0.0019, 0.0019], [0.5819, 0.024, 0.0044, 0.0029, 0.0022, 0.0017, 0.0015, 0.0014], [0.8366, 0.0472, 0.0185, 0.0072, 0.0068, 0.0027, 0.0027, 0.0019], [0.1132, 0.0044, 0.0041, 0.0041, 0.0034, 0.0032, 0.003, 0.0027], [0.0375, 0.0107, 0.0095, 0.0045, 0.0024, 0.0024, 0.0023, 0.002], [0.0331, 0.0274, 0.013, 0.0029, 0.0027, 0.0023, 0.002, 0.0018], [0.5553, 0.0179, 0.0029, 0.0021, 0.0018, 0.0017, 0.0016, 0.0014], [0.1557, 0.0044, 0.0034, 0.0032, 0.0022, 0.0021, 0.0018, 0.0017], [0.1738, 0.0104, 0.0059, 0.0052, 0.0038, 0.003, 0.0028, 0.0025], [0.0248, 0.0086, 0.0067, 0.0052, 0.0049, 0.0023, 0.0022, 0.0018], [0.0928, 0.0098, 0.0052, 0.0038, 0.0036, 0.0028, 0.0026, 0.0022], [0.1494, 0.0084, 0.0079, 0.0058, 0.0048, 0.0048, 0.0045, 0.0033], [0.2286, 0.0241, 0.0042, 0.0027, 0.0024, 0.0024, 0.0021, 0.0021], [0.0034, 0.0032, 0.0028, 0.0025, 0.0025, 0.0023, 0.0023, 0.0022], [0.0271, 0.0088, 0.0073, 0.0044, 0.0039, 0.0034, 0.0032, 0.0029], [0.0112, 0.005, 0.0036, 0.0036, 0.0034, 0.0027, 0.0027, 0.0023], [0.0068, 0.005, 0.0047, 0.0044, 0.0044, 0.0037, 0.0032, 0.0025], [0.0217, 0.0192, 0.0149, 0.0066, 0.0052, 0.0038, 0.0033, 0.0029], [0.0393, 0.0224, 0.0154, 0.0106, 0.0106, 0.0093, 0.0093, 0.0088], [0.0915, 0.0382, 0.018, 0.0116, 0.0109, 0.0103, 0.0096, 0.0075], [0.0605, 0.0443, 0.0237, 0.0237, 0.0209, 0.0197, 0.0173, 0.0163], [0.0404, 0.0245, 0.0216, 0.0191, 0.0179, 0.0179, 0.0179, 0.0168], [0.0452, 0.0424, 0.033, 0.0257, 0.02, 0.0166, 0.0166, 0.0114], [0.0572, 0.027, 0.0238, 0.021, 0.0136, 0.0136, 0.0136, 0.012], [0.0835, 0.0371, 0.0255, 0.0255, 0.0175, 0.0154, 0.0094, 0.0083], [0.0454, 0.0293, 0.0243, 0.0243, 0.0157, 0.0147, 0.0101, 0.0101], [0.047, 0.0366, 0.0303, 0.0285, 0.0222, 0.0153, 0.0126, 0.0119], [0.046, 0.0432, 0.0432, 0.0337, 0.0217, 0.0192, 0.018, 0.018], [0.0988, 0.0679, 0.0563, 0.0363, 0.0321, 0.0235, 0.0194, 0.0183], [0.0866, 0.0718, 0.0674, 0.0384, 0.0248, 0.0206, 0.0193, 0.017], [0.1374, 0.061, 0.061, 0.0419, 0.0307, 0.0211, 0.0186, 0.0175], [0.2722, 0.0733, 0.0688, 0.0504, 0.0346, 0.0223, 0.0197, 0.0174], [0.5301, 0.1183, 0.0921, 0.0384, 0.0264, 0.0193, 0.0193, 0.015], [0.7012, 0.0652, 0.0448, 0.0308, 0.0212, 0.0199, 0.01, 0.0078], [0.6463, 0.0772, 0.0388, 0.0365, 0.0251, 0.0152, 0.0143, 0.0118], [0.5671, 0.0598, 0.0411, 0.0386, 0.0363, 0.032, 0.0142, 0.0086], [0.3577, 0.0904, 0.0904, 0.0484, 0.0377, 0.0354, 0.0259, 0.0167], [0.2805, 0.0755, 0.0626, 0.0588, 0.0458, 0.0357, 0.0261, 0.0216], [0.2925, 0.1298, 0.074, 0.0372, 0.0272, 0.0212, 0.0199, 0.0165], [0.2238, 0.0602, 0.0441, 0.0441, 0.0389, 0.0303, 0.0222, 0.0196], [0.275, 0.0788, 0.074, 0.0256, 0.024, 0.0212, 0.0187, 0.0176], [0.4173, 0.0531, 0.044, 0.0322, 0.0284, 0.0235, 0.0111, 0.0104], [0.2647, 0.0297, 0.0262, 0.0217, 0.0204, 0.0149, 0.0124, 0.0124], [0.2651, 0.1176, 0.0861, 0.0713, 0.0262, 0.014, 0.0116, 0.0097], [0.3442, 0.2681, 0.0768, 0.0598, 0.022, 0.022, 0.0098, 0.0092], [0.4589, 0.1688, 0.116, 0.0749, 0.0215, 0.0167, 0.013, 0.0079], [0.3251, 0.2532, 0.1972, 0.1055, 0.0183, 0.0118, 0.0076, 0.0072], [0.6405, 0.1835, 0.1619, 0.0117, 0.0018, 0.0004, 0.0001, 0.0], [0.8062, 0.0963, 0.075, 0.0215, 0.0008, 0.0001, 0.0, 0.0], [0.6836, 0.1729, 0.1188, 0.0234, 0.0006, 0.0004, 0.0001, 0.0001], [0.8323, 0.0774, 0.0774, 0.0119, 0.0003, 0.0002, 0.0001, 0.0001], [0.4007, 0.4007, 0.1893, 0.0083, 0.0003, 0.0002, 0.0002, 0.0001], [0.7328, 0.1853, 0.0772, 0.0044, 0.0001, 0.0, 0.0, 0.0], [0.7088, 0.2031, 0.0846, 0.0023, 0.0006, 0.0003, 0.0001, 0.0], [0.5849, 0.2152, 0.1899, 0.0042, 0.0029, 0.002, 0.0001, 0.0001]], "ranks": {"Rust": [22624, 22503, 20291, 36016, 1381, 3078, 4596, 665, 2929, 1488, 2075, 1573, 2224, 861, 970, 1060, 1438, 4371, 10563, 3366, 6941, 8245, 3823, 3618, 10634, 22898, 22078, 9435, 14409, 16048, 11172, 16481, 14253, 31572, 27298, 35314, 25324, 35523, 44606, 81659, 69253, 140455, 133804, 128941, 131090, 103872, 130661, 100273, 92554, 74799, 66185, 101479, 112444, 103791, 89202, 110916, 48487, 56900, 17869, 9676, 5125, 2817, 2318]}}, {"pos": 398, "top": [[" \u2013", "\u0629", "@@@@", " @", " \uff5c", "@\"", " [@", " *@"], [" \u2013**", "\uff20", " \uff5e", " [@", " \r\n \r\n", " \u2013", " \ufffd", "\uff5e\uff5e"], [" \u2013**", "**\u2013", " \u2013", " \uff5c", " *\u2013", " \u2013,", " \r\n \r\n", " \uff5e"], ["\uff0a\uff0a\uff0a\uff0a", "\uff0d\uff0d", "\\xa", "\uff1d\uff1d\uff1d\uff1d", "\uff0a\uff0a", "\uff5e\uff5e", "\uff3f\uff3f", "\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a"], ["\uff20", " *@", "\\xa", " @(", " \uffe5", " @_", " ****", " @$"], [" ****", "\uff20", " \uffe5", "\\xa", " \uff5c", "\uff5e\uff5e", " @(", " @_"], ["\\xa", " \uff5c", " ****", " \uffe5", "\uff20", " [@", " {{$", " @("], [" [@", "\\xa", " @", "\uff20", " @(", " *@", " \uffe5", " ****"], [" [@", "\\xa", " *@", "\uff20", " @(", " \uffe5", " \uff5c", " \r\n \r\n"], ["\\xa", " [@", " {{$", " [[", " #@", "\\xf", " @$", " ****"], ["\\xa", " [@", " @", " ****", " [[", " #@", " \uff5c", " *@"], ["\\xa", " {{$", " ****", " FPS", "\\xf", " [[", "\uff5e\u300d", "\uff0a\uff0a\uff0a\uff0a"], [" FPS", "\\xa", " ****", "\uff5e\u300d", " {{$", "\\xf", " **\u300c", " St\u00e9ph"], [" FPS", "\\xa", " St\u00e9ph", " {{$", "\uff5e\u300d", "\u5f7f", " ****", " pornstar"], [" FPS", " incredibly", "\\xa", " whilst", " amongst", " arguably", " \ufffd", " even"], [" incredibly", " FPS", "\\xa", " even", " whilst", " amongst", " arguably", " truly"], [" incredibly", " FPS", "\\xa", " ****", " arguably", " DPS", " thanks", " even"], [" FPS", "\\xa", " incredibly", " ****", " DPS", " TPS", " seamlessly", " blockbuster"], [" incredibly", " FPS", " ****", "\\xa", " \uffe5\uffe5", " ;;^", " St\u00e9ph", " !***"], [" incredibly", " wildly", " ever", " even", " &#", " --", " {{--<", " just"], [" @", "<|endoftext|>", " [[", " ,", " though", " just", " [@", " alongside"], [" incredibly", " FPS", " ''", " alongside", " {{--<", " [[", " wildly", " across"], [" ,", " incredibly", " ''", " [[", " on", " even", " ever", " across"], [" ,", " on", " at", " in", " and", " ever", " even", " just"], [" --", " &#", " \n  \n", " [[", " \r\n \r\n", " incredibly", " {{--<", " wildly"], [" ****", " incredibly", " --", " FPS", " wildly", " \n  \n", " \ufffd", " ***"], [" FPS", " framerate", " overclock", " ****", " gaming", " speed", " atop", " --"], [" ,", " @", " --", " speed", " on", " across", " even", " and"], [" speed", " ,", " across", " atop", " on", " gaming", " incredibly", " @"], [" speed", " FPS", " overclock", " gaming", " framerate", " esports", " ****", " sprint"], [" speed", " ,", " on", " fast", " incredibly", " even", " at", " across"], [" speed", " on", " at", " in", " fast", " ,", " across", " high"], [" speed", " fast", " on", " even", " at", " without", " incredibly", " ,"], [" speed", " incredibly", " fast", " hardware", " faster", " even", " rapidly", " rapid"], [" incredibly", " rapidly", " speed", " extremely", " fast", " seamlessly", " hardware", " rapid"], [" incredibly", " hardware", " speed", " extremely", " \u2013", " rapidly", " notoriously", " fast"], [" hardware", " incredibly", " speed", " overclock", " notoriously", " extremely", " rapidly", " seamlessly"], [" hardware", " incredibly", " overclock", " requires", " seamlessly", " speed", " FPS", " extremely"], [" hardware", " incredibly", " seamlessly", " requires", " overclock", " extremely", " speed", " without"], [" hardware", " framerate", " FPS", " overclock", " CPU", " speed", " incredibly", " GPU"], [" framerate", " hardware", " CPU", " speed", " FPS", " overclock", " GPU", " performance"], [" hardware", " framerate", " FPS", " performance", " overclock", " CPU", " GPU", " speed"], [" hardware", " framerate", " performance", " FPS", " overclock", " CPU", " animation", " latency"], [" framerate", " FPS", " hardware", " performance", " CPU", " animation", " overclock", " achievable"], [" FPS", " hardware", " framerate", " requires", " CPU", " achievable", " performance", " latency"], [" FPS", " requires", " hardware", " CPU", " framerate", " ultra", " GPU", " achievable"], [" requires", " hardware", " FPS", " CPU", " framerate", " require", " achievable", " demands"], [" requires", " require", " achievable", " Requires", " hardware", " requirement", " framerate", " requirements"], [" requires", " framerate", " achievable", " hardware", " PLUS", " Requires", " latency", " sustained"], [" requires", " Requires", "requires", "\u610f\u5473\u7740", "Requires", " framerate", " **+", " sustained"], [" requires", " Requires", "requires", " **+", "\u610f\u5473\u7740", "Requires", " (**", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442"], [" requires", "requires", " Requires", "Requires", "\u610f\u5473\u7740", " **+", " requirement", " require"], [" requires", " on", " Requires", "requires", "Requires", " **+", " synced", " latency"], [" requires", " on", " **+", " Requires", "requires", "Requires", " synced", " framerate"], [" requires", " on", " GPU", " framerate", " fullscreen", " **+", "Requires", " Requires"], [" on", " OpenGL", " requires", " UI", " WebGL", " viewport", " rendering", " fullscreen"], [" WebGL", " rendering", " Rendering", " OpenGL", "\u6e32\u67d3", " renders", "-render", " viewport"], [" WebGL", " OpenGL", " on", " rendering", " viewport", " UI", " GPU", " Rendering"], [" WebGL", " OpenGL", " on", " rendering", " GPU", " shader", " renders", " UI"], [" on", " mid", " WebGL", " middleware", " OpenGL", " Android", " viewport", ",mid"], [" on", " mid", " WebGL", " OpenGL", " middleware", " rendering", " *", " GPU"], [" on", " mid", " Android", " Rust", " targeting", " rendering", " OpenGL", " middleware"], [" on", " mid", " targeting", " Rust", " rendering", " UI", "on", " Android"]], "p": [[0.7569, 0.0584, 0.0115, 0.0079, 0.0051, 0.0048, 0.0048, 0.0048], [0.1085, 0.1085, 0.0658, 0.0512, 0.0512, 0.0481, 0.0452, 0.0352], [0.2241, 0.1977, 0.0824, 0.0727, 0.0642, 0.0642, 0.0567, 0.0323], [0.1024, 0.0962, 0.0749, 0.0704, 0.0484, 0.0332, 0.0276, 0.0243], [0.3279, 0.0829, 0.0646, 0.0503, 0.0392, 0.0346, 0.0346, 0.0253], [0.0945, 0.0887, 0.0887, 0.0649, 0.0538, 0.0475, 0.0326, 0.0239], [0.2147, 0.1149, 0.0655, 0.0479, 0.0291, 0.0291, 0.0273, 0.0241], [0.108, 0.0841, 0.0841, 0.079, 0.0697, 0.0655, 0.0615, 0.0615], [0.239, 0.1202, 0.0533, 0.0471, 0.0415, 0.039, 0.039, 0.0304], [0.6637, 0.0617, 0.0227, 0.0138, 0.0095, 0.0074, 0.0065, 0.0057], [0.5651, 0.1185, 0.0281, 0.0233, 0.0233, 0.016, 0.0081, 0.0081], [0.2223, 0.0768, 0.0722, 0.0171, 0.0125, 0.0111, 0.0067, 0.0063], [0.0689, 0.0474, 0.0326, 0.0099, 0.0088, 0.0057, 0.005, 0.0041], [0.0321, 0.0172, 0.0059, 0.0041, 0.0034, 0.0034, 0.003, 0.0026], [0.0091, 0.0081, 0.0081, 0.0055, 0.0036, 0.0026, 0.0025, 0.0025], [0.0093, 0.0073, 0.0034, 0.0027, 0.0021, 0.002, 0.002, 0.0016], [0.0223, 0.0112, 0.0053, 0.0036, 0.0028, 0.0028, 0.0024, 0.0024], [0.0188, 0.0138, 0.0114, 0.0095, 0.0025, 0.0024, 0.0022, 0.0021], [0.0117, 0.011, 0.0071, 0.0071, 0.004, 0.0033, 0.0028, 0.0023], [0.0248, 0.0104, 0.0104, 0.0086, 0.0076, 0.0071, 0.0067, 0.0063], [0.0502, 0.0416, 0.0174, 0.0153, 0.0153, 0.0099, 0.0099, 0.0087], [0.0168, 0.009, 0.0075, 0.0062, 0.0055, 0.0055, 0.0045, 0.0043], [0.0296, 0.0203, 0.0168, 0.0149, 0.0123, 0.0123, 0.0116, 0.0109], [0.0817, 0.022, 0.0151, 0.0151, 0.0151, 0.0142, 0.0133, 0.0125], [0.0436, 0.041, 0.0361, 0.03, 0.0233, 0.0193, 0.0117, 0.0117], [0.0365, 0.0251, 0.0172, 0.0162, 0.0111, 0.0111, 0.0104, 0.0104], [0.0235, 0.0134, 0.0111, 0.0111, 0.0104, 0.0104, 0.0081, 0.0076], [0.0443, 0.0345, 0.0286, 0.0144, 0.0127, 0.0105, 0.0105, 0.0077], [0.0276, 0.0122, 0.0079, 0.0074, 0.007, 0.0065, 0.0061, 0.0054], [0.0248, 0.011, 0.0103, 0.0076, 0.0067, 0.0059, 0.0049, 0.0043], [0.037, 0.0154, 0.0128, 0.012, 0.0106, 0.01, 0.0088, 0.0088], [0.0277, 0.026, 0.0179, 0.0148, 0.0139, 0.0115, 0.0108, 0.0108], [0.038, 0.0203, 0.0191, 0.0116, 0.0116, 0.0102, 0.0096, 0.0085], [0.0272, 0.0155, 0.0121, 0.0088, 0.0088, 0.0078, 0.0069, 0.0065], [0.0364, 0.0195, 0.0143, 0.0134, 0.0111, 0.0104, 0.0098, 0.0092], [0.0302, 0.0208, 0.0183, 0.0172, 0.0152, 0.0134, 0.0126, 0.0098], [0.0388, 0.0195, 0.0195, 0.0162, 0.0162, 0.0118, 0.0111, 0.0086], [0.0437, 0.0151, 0.0133, 0.0125, 0.0118, 0.0118, 0.0111, 0.0076], [0.0454, 0.0189, 0.0147, 0.0115, 0.0108, 0.0101, 0.0089, 0.0079], [0.0575, 0.0421, 0.0255, 0.024, 0.0199, 0.0165, 0.0113, 0.0106], [0.0585, 0.055, 0.0313, 0.0313, 0.0313, 0.0276, 0.0244, 0.0229], [0.0741, 0.0577, 0.0478, 0.0422, 0.0329, 0.029, 0.0273, 0.0146], [0.0538, 0.0474, 0.0446, 0.0347, 0.027, 0.0186, 0.0186, 0.0175], [0.0573, 0.0506, 0.0506, 0.0288, 0.0198, 0.0175, 0.0136, 0.0128], [0.0343, 0.0303, 0.0284, 0.0284, 0.0162, 0.0152, 0.0119, 0.0111], [0.0382, 0.028, 0.0192, 0.015, 0.0132, 0.0091, 0.008, 0.008], [0.1425, 0.0264, 0.015, 0.0117, 0.0097, 0.008, 0.0076, 0.0063], [0.2341, 0.015, 0.0141, 0.0141, 0.0117, 0.0109, 0.008, 0.0071], [0.0995, 0.0153, 0.0112, 0.0112, 0.0099, 0.0087, 0.0072, 0.0068], [0.3385, 0.043, 0.0357, 0.023, 0.0191, 0.0149, 0.014, 0.0055], [0.3036, 0.0636, 0.0496, 0.0363, 0.032, 0.0161, 0.0092, 0.0067], [0.478, 0.0733, 0.0473, 0.0253, 0.0136, 0.0077, 0.006, 0.0053], [0.2625, 0.0586, 0.0456, 0.0403, 0.0355, 0.0148, 0.0115, 0.0115], [0.1235, 0.0661, 0.0515, 0.0293, 0.0276, 0.0259, 0.0157, 0.0148], [0.098, 0.0361, 0.0248, 0.0205, 0.0181, 0.017, 0.017, 0.017], [0.2133, 0.0307, 0.0255, 0.0255, 0.0239, 0.0239, 0.0225, 0.0145], [0.1428, 0.1428, 0.0525, 0.0494, 0.0436, 0.0409, 0.0361, 0.0281], [0.1527, 0.0768, 0.0636, 0.0528, 0.0249, 0.0249, 0.0234, 0.022], [0.1431, 0.1114, 0.0924, 0.0464, 0.0319, 0.0282, 0.0206, 0.0194], [0.3589, 0.1921, 0.0664, 0.0429, 0.0378, 0.0216, 0.0148, 0.0139], [0.8551, 0.0482, 0.0069, 0.0048, 0.0045, 0.0037, 0.0029, 0.0024], [0.9743, 0.0062, 0.0014, 0.0007, 0.0007, 0.0006, 0.0005, 0.0005], [0.9949, 0.0008, 0.0004, 0.0002, 0.0002, 0.0002, 0.0002, 0.0002]], "ranks": {"Rust": [80299, 122272, 150921, 111547, 55040, 54789, 65633, 33452, 48402, 54975, 41640, 65682, 42805, 40335, 31671, 29155, 27364, 46337, 48424, 35226, 32043, 32484, 16676, 15161, 14951, 13330, 10884, 6177, 5396, 7016, 6010, 9206, 11803, 11597, 12486, 11146, 10731, 16503, 13537, 18563, 11295, 14323, 12679, 11989, 18036, 18696, 17952, 13432, 9107, 11498, 21637, 48425, 77190, 62279, 21112, 4220, 1883, 749, 1021, 13, 10, 4, 4]}}, {"pos": 399, "top": [[",", ".", "\u2013", ";", "\u2026..", " \u2013", "\u00a0", ":"], [",", "\u2013", "\u2013and", "\u200b", ";", ".", " \u2013", " \u00a0"], [",", ".", "\u2013", ";", "\u2026..", "\u200b", "\u2013and", "?"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\ufffd\ufffd", " addir", "\ufffd\ufffd", "orgeous", "matchCondition", "\u683c\u91cc\u62c9", "eroon"], [",@", ",", ".@", "@", "(@", "//@", ":@", "ed"], ["&A", ",", "boarding", "!:", " \u00a0", ":@", " Aussie", "/off"], [" ......", "\ufffd", "......", "\ufffds", "sson", " \ufffd", " //@", " ....."], ["\ufffds", " //@", ",@", "ishly", "sson", "\ufffdt", "-ish", ":`"], ["/&", "&nbsp", ",&", "......", ",@", "&W", "athon", "\ufffds"], [",&", "&nbsp", " \u00ad", ",", "-ish", "though", "\u516c\u53f7", "/off"], ["&nbsp", " \u00ad", ",&", "&", "-ish", "\ufffd", "-&", " [...]"], ["\u516c\u53f7", " folks", " hubby", "/off", "-ish", "\u54b1\u4eec\u7684", " pricey", "nett"], ["-ish", " folks", " veggies", " pricey", " hubby", " goodies", " meds", "\u54b1\u4eec\u7684"], [" folks", " goodies", "-ish", " incredibly", " pretty", " Aussie", " veggies", " guys"], [" folks", " truly", " goodies", " smack", " just", " pretty", " busted", " incredibly"], [" folks", " incredibly", " truly", " smack", " kids", " just", " goodies", " busted"], [" folks", " incredibly", " pretty", " big", " kids", " goodies", " smack", " guys"], [" folks", "-ish", " goodies", " pricey", " veggies", " pretty", " kids", " isn"], [" folks", " smack", " pricey", " freaking", " incredibly", " nasty", " ridiculously", " veggies"], [" barely", " folks", " incredibly", " smack", " pricey", " ridiculously", " effortlessly", " busted"], [" barely", " hugely", " swiftly", " folks", " just", " though", " vastly", " seemingly"], [" smack", " busted", " folks", " pricey", " incredibly", " freaking", " barely", " effortlessly"], [" barely", " incredibly", " {{--<", " smack", " hugely", " just", " effortlessly", " truly"], [" barely", " just", " {{--<", " truly", " hugely", " seemingly", " incredibly", " arguably"], [" {{--<", " barely", " hugely", "&nbsp", " arguably", " seemingly", " though", " vastly"], [" {{--<", " **", " ____", " pricey", " hugely", " **#", " **>>", " incredibly"], [" {{--<", " barely", " pricey", " @_", " hugely", " ____", " arguably", " **"], [" ____", " @", " **", " barely", " @_", " {{--<", " hugely", " _____"], [" barely", " pricey", " **", " isn", " incredibly", " arguably", " tech", " hardware"], [" **", " barely", " cheap", " isn", " hardware", " even", " tech", " incredibly"], [" even", " **", " barely", " incredibly", " hard", " cheap", " tech", " huge"], [" **", " even", " hard", " @", " incredibly", " ...", " barely", " huge"], [" even", " barely", " hard", " just", " incredibly", " massively", " high", " very"], [" tech", " barely", " notoriously", " incredibly", "\u2014even", " arguably", " hardware", " massively"], [" arguably", " hardware", "\u2014even", " notoriously", " tech", " barely", " massively", " incredibly"], [" hardware", " tech", "\u2011", " cheap", " notoriously", "\u2014even", " arguably", " overclock"], [" hardware", " tech", " cheap", " Hardware", "hardware", " notoriously", " overclock", "\u786c\u4ef6"], [" hardware", " cheap", " tech", " Hardware", " Android", " iPhone", " iOS", " smartphone"], [" hardware", " Hardware", " cheap", " iPhone", "hardware", " iOS", "\u786c\u4ef6", " tech"], [" hardware", " Hardware", "hardware", "\u786c\u4ef6", " smartphone", " Android", " iPhone", " smartphones"], [" hardware", " Android", " Hardware", " smartphone", " iPhone", " smartphones", "\u786c\u4ef6", "hardware"], [" hardware", " Hardware", " Android", " iPhone", " smartphone", "hardware", "Hardware", " smartphones"], [" hardware", " Hardware", " Android", " iPhone", " smartphone", " smartphones", "hardware", " laptops"], [" hardware", " Hardware", " Android", " iPhone", " smartphones", " smartphone", " handheld", "hardware"], [" hardware", " Android", " Hardware", " smartphones", " smartphone", " handheld", " laptops", " iPhone"], [" hardware", " Hardware", " mediocre", " handheld", " Android", " smartphones", " smartphone", " cheap"], [" hardware", " Hardware", " mediocre", " cheap", " Android", " handheld", "hardware", "\u786c\u4ef6"], [" hardware", " mediocre", " Hardware", " cheap", " handheld", " Android", "\u4f4e\u7aef", " iPhone"], [" hardware", " mediocre", " Hardware", " handheld", " cheap", " Android", "\u4f4e\u7aef", "\u786c\u4ef6"], [" hardware", " mediocre", " **", " **\"", " **#", " handheld", " Hardware", "\u4f4e\u7aef"], [" hardware", " mediocre", " *\u201c", "\uff1f**", "\u786c\u4ef6", " handheld", "\u4f4e\u7aef", "(**"], [" **", " *@", " *", " *[", " **#", " *\u201c", " *\"", "-**"], [" **", " *", " *@", " **#", "-**", " *\u201c", " **\"", " *["], [" **", " *", " **#", " *@", "-**", " hardware", " *[", " Android"], [" **", " Android", " *", " *@", " hardware", " **#", "-**", " iOS"], [" mid", " Android", " Mid", " middleware", ",mid", ".mid", "_mid", "Mid"], [" mid", " Android", " **", " Mid", " middleware", ",mid", " *", ".mid"], [" mid", " **", " *", " Android", " Mid", ",mid", " middleware", "_mid"], [" mid", " *", " **", " Mid", ",mid", " Android", "mid", "_mid"], [" mid", " Mid", "mid", ".mid", ",mid", "(mid", "_mid", " Android"], [" mid", " *", " Mid", " **", " Android", "mid", ".mid", ",mid"], [" mid", " *", " Mid", " Android", "mid", ".mid", ",mid", "(mid"], [" mid", " *", " Android", " Mid", " **", "mid", ".mid", ",mid"]], "p": [[0.832, 0.1446, 0.0092, 0.0064, 0.0011, 0.0009, 0.0007, 0.0006], [0.2134, 0.0785, 0.0289, 0.0186, 0.0128, 0.0083, 0.0064, 0.0047], [0.9398, 0.0364, 0.0104, 0.0044, 0.0026, 0.0006, 0.0006, 0.0004], [0.0058, 0.0033, 0.0026, 0.0026, 0.0021, 0.0015, 0.0014, 0.0013], [0.082, 0.0724, 0.0639, 0.0639, 0.0161, 0.0152, 0.0143, 0.0134], [0.0038, 0.0036, 0.0036, 0.0031, 0.0031, 0.0029, 0.0024, 0.0022], [0.0276, 0.0202, 0.0167, 0.013, 0.0115, 0.0115, 0.0102, 0.0074], [0.0122, 0.0101, 0.0069, 0.0065, 0.0061, 0.0054, 0.0054, 0.0045], [0.0179, 0.0148, 0.0139, 0.009, 0.0084, 0.0074, 0.007, 0.0066], [0.0071, 0.0067, 0.0063, 0.004, 0.004, 0.0033, 0.0033, 0.0033], [0.0573, 0.0186, 0.0154, 0.0106, 0.01, 0.0083, 0.0078, 0.0078], [0.0081, 0.0072, 0.0059, 0.0056, 0.0049, 0.0043, 0.0034, 0.0032], [0.0125, 0.011, 0.0092, 0.0063, 0.0063, 0.0056, 0.0056, 0.0049], [0.0121, 0.0094, 0.0073, 0.0073, 0.0057, 0.0047, 0.0039, 0.0035], [0.0201, 0.0167, 0.0115, 0.0089, 0.0058, 0.0054, 0.0042, 0.004], [0.0307, 0.012, 0.0078, 0.0073, 0.0057, 0.0053, 0.005, 0.0044], [0.0443, 0.0127, 0.0112, 0.0099, 0.0087, 0.0087, 0.0068, 0.0068], [0.0223, 0.0127, 0.0119, 0.0099, 0.0093, 0.0082, 0.0077, 0.0077], [0.0082, 0.0068, 0.0068, 0.0064, 0.0057, 0.0047, 0.0047, 0.0041], [0.0188, 0.0138, 0.0107, 0.0101, 0.0079, 0.0069, 0.0061, 0.0051], [0.0089, 0.0057, 0.0054, 0.0054, 0.0042, 0.0039, 0.0037, 0.0037], [0.0074, 0.0061, 0.0057, 0.0057, 0.0054, 0.0051, 0.0039, 0.0031], [0.0188, 0.0101, 0.0084, 0.0078, 0.0069, 0.0069, 0.0061, 0.0061], [0.0209, 0.0162, 0.0077, 0.0077, 0.0068, 0.0064, 0.006, 0.0053], [0.0157, 0.0095, 0.009, 0.0074, 0.0058, 0.0054, 0.0051, 0.0051], [0.0172, 0.0142, 0.0098, 0.0086, 0.0059, 0.0059, 0.0052, 0.0049], [0.0137, 0.0083, 0.0078, 0.0061, 0.0061, 0.0057, 0.0047, 0.0042], [0.0188, 0.0101, 0.0089, 0.0089, 0.0083, 0.0083, 0.0078, 0.0074], [0.009, 0.0084, 0.0079, 0.0074, 0.007, 0.0062, 0.0062, 0.0058], [0.0281, 0.0264, 0.0133, 0.0117, 0.0091, 0.0091, 0.0086, 0.0086], [0.0318, 0.0318, 0.0264, 0.0233, 0.016, 0.0141, 0.0133, 0.0117], [0.0438, 0.0363, 0.0207, 0.0207, 0.0142, 0.0126, 0.0126, 0.0126], [0.0407, 0.0263, 0.017, 0.017, 0.016, 0.0091, 0.008, 0.0071], [0.0219, 0.0219, 0.0181, 0.0181, 0.017, 0.017, 0.017, 0.0133], [0.0417, 0.0345, 0.0345, 0.0325, 0.0286, 0.0112, 0.0099, 0.0093], [0.2176, 0.0456, 0.0179, 0.0158, 0.0139, 0.0131, 0.0131, 0.007], [0.4287, 0.0512, 0.0399, 0.0147, 0.0095, 0.0084, 0.0079, 0.0065], [0.5348, 0.0639, 0.0266, 0.0207, 0.0207, 0.0126, 0.0111, 0.0104], [0.7154, 0.0261, 0.0168, 0.0158, 0.0123, 0.0123, 0.0123, 0.0123], [0.6594, 0.024, 0.0199, 0.0199, 0.0199, 0.0199, 0.0176, 0.0121], [0.6594, 0.0576, 0.0349, 0.0272, 0.024, 0.0165, 0.0146, 0.0137], [0.8561, 0.0259, 0.0259, 0.0095, 0.0084, 0.0079, 0.007, 0.0058], [0.8337, 0.0237, 0.0209, 0.0119, 0.0112, 0.0099, 0.006, 0.0044], [0.8079, 0.0378, 0.0215, 0.0096, 0.009, 0.009, 0.0054, 0.0051], [0.7521, 0.0227, 0.0188, 0.0177, 0.0156, 0.0101, 0.0101, 0.0095], [0.6739, 0.0278, 0.0217, 0.0149, 0.0149, 0.0116, 0.0102, 0.0096], [0.7127, 0.0355, 0.0229, 0.009, 0.0084, 0.0084, 0.0054, 0.0045], [0.3515, 0.1007, 0.0476, 0.0476, 0.0106, 0.0094, 0.0073, 0.006], [0.1665, 0.1075, 0.0421, 0.024, 0.0128, 0.0128, 0.0073, 0.0073], [0.0541, 0.0449, 0.024, 0.0226, 0.0199, 0.0176, 0.0155, 0.0137], [0.0465, 0.0249, 0.0194, 0.0161, 0.0151, 0.0133, 0.0125, 0.0117], [0.1544, 0.088, 0.088, 0.0534, 0.0471, 0.0416, 0.0367, 0.0345], [0.3264, 0.1449, 0.0567, 0.039, 0.039, 0.0366, 0.0285, 0.0252], [0.4606, 0.132, 0.0586, 0.0456, 0.0378, 0.026, 0.0244, 0.019], [0.267, 0.1619, 0.1113, 0.0634, 0.056, 0.0409, 0.0339, 0.016], [0.8464, 0.0613, 0.0541, 0.0121, 0.0083, 0.0027, 0.0027, 0.0019], [0.7926, 0.1073, 0.0395, 0.0239, 0.0078, 0.0078, 0.0029, 0.0025], [0.8083, 0.0663, 0.0355, 0.0355, 0.0277, 0.0062, 0.0054, 0.0026], [0.9279, 0.0247, 0.0247, 0.015, 0.0016, 0.0012, 0.001, 0.0008], [0.999, 0.0006, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9722, 0.0259, 0.0008, 0.0003, 0.0003, 0.0002, 0.0001, 0.0001], [0.9877, 0.0085, 0.0019, 0.0006, 0.0004, 0.0003, 0.0001, 0.0001], [0.8453, 0.1469, 0.0029, 0.002, 0.0006, 0.0002, 0.0002, 0.0001]], "ranks": {"Rust": [59381, 103357, 71158, 73806, 35052, 30503, 71257, 66273, 86822, 81533, 82017, 100091, 57731, 47213, 36666, 25776, 33280, 77623, 99786, 50200, 55005, 57442, 26960, 20787, 22795, 28985, 17858, 21556, 16290, 6567, 5406, 6148, 7580, 16432, 17369, 10544, 8908, 9727, 13207, 18590, 8334, 6041, 6421, 6014, 8039, 5020, 7558, 4580, 4230, 7354, 14162, 14356, 15165, 8222, 4288, 5056, 2435, 2575, 1619, 294, 254, 135, 78]}}, {"pos": 400, "top": [[",", ".", "\u2013", "-", ";", "\u2026..", "\u2026.", "\u2026"], ["\u2011", "\u00ad", "\u00adi", "\u2013and", "\uff5e", "\u2013", "\u00ading", "ly"], ["\u2013", ",", ".", ".\u2013", "\u2013and", "\u2011", "\u200b", "\u2026.."], ["\uff0a\uff0a\uff0a\uff0a", "\uff1d\uff1d\uff1d\uff1d", " milfs", "weise", "irectional", " \uc77c\uc808", "ewire", " Hidal"], ["ly", "&nbsp", "son", "ser", "server", "ronic", "n", "ward"], ["ly", "lif", "server", ",mid", "FIG", "son", "ilion", "dias"], ["ly", " \ufffd", "&nbsp", "\ufffd", ",mid", "\u4e00", "FIG", "mid"], ["ly", "&nbsp", "ily", "ivial", "athon", "-ID", "stral", "rid"], ["&nbsp", "ly", "athon", "ily", "<br", "\u00adi", "ward", " \ufffd"], ["&nbsp", " \u00ad", "\u00ading", "\u00adi", "ily", "ly", "-low", "irectional"], ["&nbsp", " \u00ad", "\u2011", "ly", "-&", "[mid", "\u00adi", "\u00ading"], ["ewire", "irectional", "ily", " //~", "ustrial", "ivial", "-low", "quel"], ["ewire", "irectional", "ivial", "ustrial", "-tier", "ROID", "-low", "weise"], ["-tier", "ewire", "irectional", "-ish", ",mid", "ivial", "-low", "[mid"], [",mid", "-tier", "irectional", "ropped", "-ish", "Mid", "-low", "[mid"], [",mid", "-low", "-ish", "\u5982\u82e5", "-esque", "ly", "-tier", "Mid"], ["-ish", "-low", ",mid", "ly", "-tier", "-esque", "Mid", "ish"], ["-ish", ",mid", "-low", "-tier", "-tech", "-market", " veggies", "-esque"], ["-ish", ",mid", "-market", " MEDIAM", "ewire", "[mid", " **\u25a0", "-tier"], [",mid", "[mid", "-market", "--)", " //~", "-ish", "-tier", " //--"], ["[mid", "Mid", ",mid", " //~", "\u54b1", "-market", "--)", " {{--<"], ["-market", " MEDIAM", " **\u25a0", "ewire", ",mid", "-ish", "irectional", "owntown"], ["-market", " {{--<", " MEDIAM", "Mid", "[mid", ",mid", "-ish", " //~"], [" --", "\u2011", "Mid", " {{--<", "-market", "&nbsp", " \u2015", "though"], ["&nbsp", "Though", "\u2011", "Mid", " --", " \r\n\r\n", " {{--<", "-market"], ["-market", "-ish", " pricey", "\u2011", " MEDIAM", " ballpark", "-tech", " {{--<"], ["-market", " pricey", "\u2011", "-ish", "-low", "-tier", "-tech", "-priced"], ["\u2011", " \n\n", " --", " \r\n\r\n", "-market", "\n\n", "-ish", "  \n\n"], ["\u2011", "-market", "-low", "-tech", "-priced", "-era", "-ish", "-tier"], ["\u2011", "-market", "-priced", "-era", "-low", "-tech", "-tier", " \n  \n"], ["\u2011", " tech", " \n  \n", "-tech", "-market", "-ish", "-era", " mid"], ["\u2011", " mid", " tech", " low", " affordable", " cheap", " Mid", " -"], ["\u2011", " mid", " tech", " cheap", " low", " affordable", "-era", " Mid"], ["\u2011", "-tier", " tech", "-tech", "-era", "-ish", " hardware", " cheap"], ["\u2011", " tech", "-tier", "-tech", "-ish", "-era", " hardware", " cheap"], ["\u2011", " tech", "-tier", " hardware", "-tech", "\u2013", "\u201d\u2014", " overclock"], ["\u2011", " hardware", " tech", "-tier", "-tech", " overclock", " OEM", " smartphone"], ["\u2011", " hardware", " tech", " overclock", "-tier", "-tech", " smartphone", " OEM"], ["\u2011", " hardware", " tech", "-tier", " overclock", "-tech", "hardware", "\u786c\u4ef6"], [" hardware", "\u2011", " overclock", " tech", "-tier", "\u786c\u4ef6", "hardware", " Hardware"], [" hardware", " tech", " Hardware", "\u2011", "\u786c\u4ef6", "hardware", " overclock", " smartphone"], [" hardware", " Hardware", "hardware", "\u786c\u4ef6", " Android", "-tier", " smartphone", "Hardware"], [" hardware", " Hardware", "-tier", "hardware", "\u786c\u4ef6", " Android", " smartphone", " smartphones"], [" hardware", " Hardware", "-tier", "\u786c\u4ef6", "hardware", " Android", "-budget", "-low"], [" hardware", "-tier", " smartphones", "-low", " smartphone", " Android", " Hardware", "hardware"], [" hardware", "-tier", " mediocre", "-low", " smartphones", " Android", "-budget", " Hardware"], [" hardware", "-tier", "-low", " mediocre", "-budget", "-grade", "\u2011", "hardware"], [" hardware", "-tier", "-low", "\u2011", "-budget", " Android", "-grade", "-standard"], ["-tier", " hardware", "\u2011", "-low", "-budget", " Android", "-tech", "-grade"], ["-tier", "\u2011", " hardware", "-low", "-**", "-grade", "-tech", "\u786c\u4ef6"], ["-tier", "\u2011", " hardware", "-grade", "\u786c\u4ef6", "hardware", "-tech", "-standard"], ["-tier", "\u2011", "-range", "-grade", " Android", "-android", " hardware", "\u786c\u4ef6"], ["-tier", "-range", "-grade", "\u2011", " hardware", " Android", "-android", "-tech"], ["-tier", "-range", "-grade", "-android", " Android", " hardware", "\u786c\u4ef6", "-tech"], ["-tier", "-range", "-grade", " Android", "-android", "-priced", "-level", "-market"], ["-range", " Android", "-tier", "-android", "range", "Android", "-grade", "/android"], ["-range", " Android", "-tier", "range", "-android", "Android", "/android", "Range"], ["-range", " Android", "-tier", "range", "-android", "Android", "Range", "/android"], ["-range", "-tier", "range", " Android", "-android", "Range", " range", "Android"], ["-range", "range", " Android", " range", "-tier", "Range", "_range", "Android"], ["-range", "range", " range", "Range", " Range", "_range", " Android", ".range"], ["-range", "range", " range", " Android", "Range", " Range", "_range", "-tier"], ["-range", "-", " range", "-tier", "range", " Android", "-r", "\u2011"]], "p": [[0.6462, 0.3052, 0.0162, 0.0087, 0.0032, 0.0016, 0.0011, 0.001], [0.286, 0.0439, 0.025, 0.0235, 0.0235, 0.0172, 0.0161, 0.0152], [0.2957, 0.2303, 0.1909, 0.0293, 0.0243, 0.0201, 0.013, 0.0079], [0.0089, 0.007, 0.0054, 0.0054, 0.0054, 0.0048, 0.0037, 0.0027], [0.5081, 0.0197, 0.0093, 0.0082, 0.0056, 0.0056, 0.0047, 0.0041], [0.0688, 0.0144, 0.0082, 0.0073, 0.0073, 0.0064, 0.006, 0.0053], [0.1005, 0.0239, 0.0224, 0.0136, 0.0113, 0.0113, 0.0088, 0.0088], [0.0456, 0.007, 0.007, 0.0066, 0.0062, 0.004, 0.0037, 0.0035], [0.0839, 0.0146, 0.0146, 0.0078, 0.0073, 0.0047, 0.0042, 0.0037], [0.0206, 0.011, 0.0097, 0.0091, 0.0052, 0.0041, 0.0041, 0.0038], [0.2065, 0.0218, 0.0132, 0.0091, 0.008, 0.0071, 0.0062, 0.0055], [0.0063, 0.0046, 0.0044, 0.0041, 0.0041, 0.0036, 0.0025, 0.0022], [0.0098, 0.0052, 0.0038, 0.0032, 0.0028, 0.0023, 0.0022, 0.0021], [0.0058, 0.0054, 0.0051, 0.0033, 0.0026, 0.0026, 0.0024, 0.0017], [0.0098, 0.0076, 0.0056, 0.0052, 0.0043, 0.0043, 0.0036, 0.0034], [0.0113, 0.0106, 0.0077, 0.005, 0.0047, 0.0044, 0.0037, 0.0037], [0.0361, 0.0142, 0.0142, 0.0125, 0.0097, 0.0076, 0.0067, 0.0055], [0.0177, 0.0101, 0.0089, 0.0065, 0.0061, 0.0045, 0.0037, 0.0033], [0.0073, 0.0073, 0.0054, 0.0042, 0.0039, 0.0039, 0.0029, 0.0029], [0.0096, 0.0079, 0.0066, 0.0062, 0.0055, 0.0048, 0.0031, 0.0031], [0.0077, 0.0077, 0.0064, 0.006, 0.006, 0.0053, 0.0053, 0.0049], [0.0084, 0.0074, 0.0048, 0.0045, 0.0035, 0.0029, 0.0027, 0.0026], [0.0101, 0.0045, 0.0042, 0.004, 0.0037, 0.0035, 0.0033, 0.0031], [0.0128, 0.0113, 0.0077, 0.0068, 0.0039, 0.0037, 0.0037, 0.0024], [0.024, 0.0146, 0.0129, 0.0113, 0.0107, 0.0073, 0.0065, 0.0054], [0.0189, 0.0101, 0.0095, 0.0095, 0.0079, 0.0058, 0.0045, 0.0045], [0.0568, 0.0135, 0.0105, 0.0099, 0.0093, 0.0093, 0.0087, 0.0077], [0.2013, 0.0422, 0.0165, 0.0137, 0.0088, 0.0073, 0.0065, 0.0057], [0.2103, 0.0469, 0.0143, 0.0134, 0.0126, 0.0126, 0.0119, 0.0119], [0.3685, 0.0343, 0.0111, 0.0105, 0.0081, 0.0076, 0.0076, 0.0076], [0.6999, 0.0128, 0.01, 0.0069, 0.0061, 0.0053, 0.0053, 0.0053], [0.3729, 0.0254, 0.021, 0.0088, 0.0073, 0.0068, 0.006, 0.0047], [0.35, 0.027, 0.0186, 0.0174, 0.0154, 0.0068, 0.0057, 0.0057], [0.6264, 0.0189, 0.0189, 0.0101, 0.0042, 0.0037, 0.0037, 0.0037], [0.7975, 0.0146, 0.01, 0.0069, 0.0033, 0.0025, 0.0022, 0.0017], [0.9254, 0.0033, 0.0023, 0.0023, 0.0022, 0.0014, 0.0008, 0.0007], [0.5537, 0.0354, 0.0312, 0.0189, 0.0139, 0.0108, 0.0042, 0.004], [0.5068, 0.0605, 0.0269, 0.0197, 0.0153, 0.0105, 0.0099, 0.0077], [0.3971, 0.1461, 0.0288, 0.0288, 0.021, 0.0154, 0.0106, 0.0099], [0.2846, 0.1837, 0.0362, 0.0319, 0.0319, 0.0249, 0.0234, 0.0194], [0.4579, 0.0353, 0.0332, 0.0332, 0.0312, 0.0293, 0.0275, 0.0275], [0.7278, 0.034, 0.032, 0.0249, 0.0151, 0.0118, 0.0111, 0.0086], [0.6986, 0.0307, 0.0254, 0.0198, 0.0164, 0.0145, 0.0113, 0.0106], [0.4666, 0.0338, 0.0298, 0.0298, 0.0263, 0.0205, 0.015, 0.0117], [0.4595, 0.0516, 0.0229, 0.019, 0.0178, 0.0167, 0.0139, 0.013], [0.4459, 0.0995, 0.0252, 0.0236, 0.0143, 0.0126, 0.0119, 0.0119], [0.3357, 0.1586, 0.0312, 0.0276, 0.0167, 0.0101, 0.0095, 0.0084], [0.1633, 0.1123, 0.0498, 0.0322, 0.0284, 0.0221, 0.0183, 0.0172], [0.085, 0.0549, 0.0377, 0.0215, 0.019, 0.0139, 0.0115, 0.009], [0.1718, 0.0318, 0.0218, 0.0132, 0.0124, 0.0117, 0.011, 0.0097], [0.2429, 0.0577, 0.024, 0.0199, 0.0199, 0.0083, 0.0078, 0.0065], [0.1856, 0.1126, 0.0389, 0.0267, 0.0236, 0.0196, 0.0143, 0.0105], [0.443, 0.0872, 0.0301, 0.0235, 0.0098, 0.0086, 0.0081, 0.0081], [0.6119, 0.0778, 0.0237, 0.0209, 0.0144, 0.0135, 0.0064, 0.0056], [0.4818, 0.4252, 0.0106, 0.0073, 0.0061, 0.005, 0.0022, 0.0021], [0.9638, 0.0137, 0.0121, 0.0045, 0.0024, 0.0008, 0.0003, 0.0002], [0.9713, 0.0122, 0.0095, 0.0027, 0.0021, 0.0005, 0.0002, 0.0002], [0.9733, 0.0108, 0.0084, 0.0035, 0.0015, 0.0006, 0.0002, 0.0001], [0.991, 0.0052, 0.0015, 0.001, 0.0006, 0.0001, 0.0001, 0.0], [0.9954, 0.0036, 0.0004, 0.0004, 0.0001, 0.0, 0.0, 0.0], [0.9816, 0.0096, 0.0085, 0.0002, 0.0001, 0.0, 0.0, 0.0], [0.9909, 0.0052, 0.0032, 0.0004, 0.0001, 0.0001, 0.0001, 0.0], [0.9955, 0.0017, 0.0006, 0.0004, 0.0004, 0.0002, 0.0002, 0.0001]], "ranks": {"Rust": [29951, 49001, 32454, 7651, 5760, 6216, 4158, 4517, 4664, 4812, 7828, 9562, 4221, 2303, 2940, 3844, 4640, 6120, 16732, 22763, 47442, 36959, 48278, 59697, 31785, 30868, 38468, 51551, 44147, 44967, 18710, 12240, 12160, 34131, 29447, 23444, 19683, 23404, 28796, 35629, 24779, 25142, 18653, 11630, 11995, 8960, 6208, 2268, 3702, 4944, 12351, 21550, 31397, 26279, 75268, 18118, 16986, 13757, 9123, 2505, 3487, 1491, 2048]}}, {"pos": 401, "top": [[" \u2013", "\u2013", ".", ",", " ", "\u2013and", ".\u2013", "["], [" \u2013", " \u2013**", "\u2013", "\u2013\u2013", "**\u2013", "\u2013and", " \u2013,", ".\u2013"], [" \u2013", "\u2013", ".\u2013", "\u2013and", "**\u2013", ",", "\u2013\u2013", " \u2013,"], ["ieli", "enje", "\u3093\u3070\u3093", " \u2013**", "uarte", "**\u2013", "erokee", "AREN"], [" \u2013", "\u2013\u2013", ".\u2013", "en", "\u2013", "i", " ", " [@"], [" \u2013", ".\u2013", "\u2013\u2013", "\u2013", "\u2013and", "**\u2013", " **\u2013", " *\u2013"], [" \u2013", "\u2013\u2013", ".\u2013", "\u2013", "\u2013and", " ", " Centre", " \u2013,"], [" \u2013", "\u2013\u2013", ".\u2013", "\u2013and", "\u2013", " Centre", " armour", "\u0436\u0434\u0451"], [" \u2013", ".\u2013", "\u2013\u2013", "\u2013and", "\u2013", ",", ".", " \u2013,"], [" \u2013", "\u2013", ".\u2013", "\u2013\u2013", "\u2013and", "\u0436\u0434\u0451", ",", " armour"], [" \u2013", " armour", " Centre", "\u0436\u0434\u0451", ".\u2013", "\u2013", " centre", " utilisation"], [" armour", " whilst", " utilisation", " neighbourhood", "\u0436\u0434\u0451", " flavours", " specialised", " Centre"], [" armour", " neighbourhood", " flavours", " utilisation", " \u2013", " specialised", " flavour", " neighbours"], [" armour", " neighbourhood", " flavours", " utilisation", " \u2013", " whilst", " centre", " favourites"], [" \u2013", " armour", " whilst", " neighbourhood", " utilisation", " Centre", " amongst", " centre"], [" \u2013", " whilst", " showcasing", " popularity", " popular", " massive", " neighbourhood", " high"], [" \u2013", " popular", " massive", " popularity", " whilst", " folks", " high", " heavy"], [" \u2013", " massive", " ballpark", " folks", " showcasing", " showcase", " neighbourhood", " popularity"], [" ballpark", " folks", " tweaks", " outf", " massive", " touted", " heavily", " contenders"], [" folks", " ballpark", " heavily", " swiftly", " \u2013", " massive", " midd", " outf"], ["<|endoftext|>", " swiftly", " folks", " heavily", " ultimately", " --", " though", " outright"], [" electronics", " ballpark", " CGI", " gaming", " folks", " hardware", " RPG", " upgrades"], [" ''", " heavily", " [[", " folks", " hardware", " electronics", " gaming", " ultimately"], [" ultimately", " ,", " whilst", " high", " heavily", " much", " amongst", " heavy"], [" whilst", " heavily", " high", " hardware", " heavy", " low", " though", " ultimately"], [" hardware", " electronics", " tech", " technology", " gaming", " Android", " smartphone", " cheap"], [" hardware", " electronics", " technology", " gaming", " tech", " smartphone", " Android", " equipment"], [" hardware", " whilst", " heavily", " technology", " ,", " low", " tech", " [["], [" hardware", " tech", " Android", " technology", " technologies", " smartphone", " electronics", " mobile"], [" hardware", " technology", " tech", " smartphones", " smartphone", " Android", " technologies", " mobile"], [" technology", " hardware", " tech", " Android", " technologies", " smartphone", " smartphones", " low"], [" technology", " tech", " hardware", " low", " mobile", " technologies", " Android", " digital"], [" hardware", " technology", " tech", " low", " cheap", " \u2013", " heavy", " high"], [" tech", " hardware", " technology", " smartphone", " Android", " smartphones", " technologies", " overclock"], [" hardware", " tech", " smartphone", " Android", " overclock", " smartphones", " technology", " digital"], [" hardware", " Android", " tech", " \u2013", " overclock", " smartphone", " technology", " smartphones"], [" hardware", " Android", " tech", " overclock", " GPU", " Hardware", " smartphone", " CPU"], [" Android", " hardware", " smartphone", " android", " smartphones", " tech", " Samsung", " overclock"], [" hardware", " Android", " CPU", " GPU", " Hardware", " smartphone", " overclock", " android"], [" hardware", " GPU", " Android", " CPU", " GPUs", " overclock", " CPUs", " Hardware"], [" Android", " GPU", " hardware", " android", " GPUs", " overclock", " smartphone", " CPU"], [" Android", " hardware", " android", " GPU", " smartphone", " GPUs", " smartphones", " Samsung"], [" Android", " hardware", " android", " GPU", " GPUs", " smartphone", " smartphones", " overclock"], [" Android", " hardware", " android", " GPU", " GPUs", " Samsung", " CPUs", " smartphone"], [" Android", " hardware", " android", " GPU", " smartphone", " GPUs", " smartphones", " Samsung"], [" Android", " hardware", " android", " GPU", " smartphone", " smartphones", " GPUs", " Samsung"], [" Android", " hardware", " GPU", " GPUs", " android", " smartphone", " CPUs", " smartphones"], [" Android", " hardware", " GPUs", " GPU", " android", " CPUs", " CPU", " Samsung"], [" Android", " hardware", " GPUs", " GPU", " CPUs", " (~", " smartphones", " Samsung"], [" Android", " hardware", " (~", " GPUs", " CPUs", " GPU", " smartphones", "(Android"], ["\u610f\u5473\u7740", " requires", " hardware", " Android", " Requires", " GPUs", "requires", "(Android"], [" Android", " using", " requires", "\u610f\u5473\u7740", "(Android", " (~", "requires", " Requires"], [" Android", " requires", " hardware", "\u610f\u5473\u7740", " using", " Requires", " (~", "requires"], [" Android", " hardware", "Android", " requires", " android", "\u786c\u4ef6", " iOS", "\u610f\u5473\u7740"], [" Android", " hardware", " requires", "Android", " iOS", "\u786c\u4ef6", "\u610f\u5473\u7740", "requires"], [" Android", "Android", " android", "-android", "\u5b89\u5353", "_android", "(Android", "/android"], [" Android", "Android", " android", "-android", "\u5b89\u5353", "_android", "(Android", "/android"], [" Android", "Android", " android", "-android", "_android", "\u5b89\u5353", " hardware", "(Android"], [" Android", "Android", " android", "-android", "_android", "\u5b89\u5353", " hardware", "(Android"], [" Android", "Android", " android", "-android", "_android", "(Android", "android", "\u5b89\u5353"], [" Android", "Android", "-android", " android", "_android", "(Android", "\u5b89\u5353", ".Android"], [" Android", "Android", "-android", " android", "\u5b89\u5353", "_android", "(Android", " mobile"], [" Android", "Android", " android", "-android", " mobile", "\u5b89\u5353", " hardware", "(Android"]], "p": [[0.9741, 0.0178, 0.0048, 0.0006, 0.0004, 0.0003, 0.0002, 0.0002], [0.9255, 0.0218, 0.017, 0.015, 0.0071, 0.0055, 0.0029, 0.0029], [0.6894, 0.2874, 0.0111, 0.006, 0.0022, 0.001, 0.0008, 0.0006], [0.0101, 0.0037, 0.0033, 0.0027, 0.0026, 0.0021, 0.002, 0.002], [0.6192, 0.0508, 0.0256, 0.0113, 0.0113, 0.0083, 0.0083, 0.0078], [0.3217, 0.3022, 0.126, 0.0866, 0.0435, 0.0063, 0.0059, 0.0018], [0.8817, 0.0302, 0.0152, 0.0111, 0.0049, 0.001, 0.0004, 0.0004], [0.2849, 0.0495, 0.0495, 0.03, 0.011, 0.0052, 0.0049, 0.0046], [0.4304, 0.0796, 0.04, 0.0376, 0.0201, 0.0089, 0.0065, 0.004], [0.3299, 0.0834, 0.0475, 0.0348, 0.0239, 0.0224, 0.0113, 0.0113], [0.4804, 0.0539, 0.0307, 0.0186, 0.0175, 0.0164, 0.0136, 0.0073], [0.0594, 0.0435, 0.0219, 0.0219, 0.0205, 0.0193, 0.017, 0.016], [0.0207, 0.0194, 0.0182, 0.0104, 0.0098, 0.0092, 0.0067, 0.0059], [0.0309, 0.0212, 0.0165, 0.0155, 0.0129, 0.0107, 0.0069, 0.0065], [0.0258, 0.0201, 0.013, 0.0069, 0.0061, 0.0061, 0.0058, 0.0048], [0.0159, 0.008, 0.0066, 0.0052, 0.0046, 0.0046, 0.0046, 0.0043], [0.0337, 0.0059, 0.0052, 0.0043, 0.0036, 0.0036, 0.0036, 0.0031], [0.0038, 0.0033, 0.0031, 0.0031, 0.0029, 0.0029, 0.0028, 0.0028], [0.0045, 0.0033, 0.0024, 0.0023, 0.0023, 0.0021, 0.0021, 0.0019], [0.0074, 0.0035, 0.0035, 0.0035, 0.0033, 0.0029, 0.0027, 0.0026], [0.0086, 0.0076, 0.0063, 0.0063, 0.0038, 0.0034, 0.0032, 0.0028], [0.0045, 0.0033, 0.0024, 0.0022, 0.0022, 0.0021, 0.0021, 0.002], [0.0117, 0.0036, 0.0033, 0.0031, 0.0031, 0.0031, 0.0031, 0.0028], [0.0084, 0.0079, 0.0065, 0.0054, 0.0051, 0.0042, 0.004, 0.0033], [0.0135, 0.0064, 0.0044, 0.0039, 0.0039, 0.0036, 0.0036, 0.0036], [0.0543, 0.0213, 0.0146, 0.0121, 0.0089, 0.0089, 0.0073, 0.0069], [0.067, 0.0192, 0.0169, 0.015, 0.015, 0.014, 0.0124, 0.008], [0.0159, 0.0132, 0.0091, 0.0075, 0.0071, 0.0071, 0.0066, 0.0055], [0.0595, 0.0281, 0.0281, 0.0281, 0.016, 0.0141, 0.0117, 0.011], [0.0561, 0.0437, 0.0282, 0.0249, 0.0249, 0.0206, 0.0182, 0.0125], [0.0624, 0.0586, 0.0517, 0.0203, 0.0168, 0.0148, 0.0139, 0.0123], [0.0525, 0.0281, 0.0264, 0.0125, 0.011, 0.011, 0.0091, 0.0086], [0.0601, 0.0413, 0.0365, 0.0221, 0.0162, 0.0118, 0.0076, 0.0076], [0.1088, 0.1022, 0.0353, 0.0293, 0.0275, 0.0214, 0.0115, 0.0101], [0.1702, 0.1702, 0.043, 0.0404, 0.0216, 0.0216, 0.014, 0.0109], [0.2355, 0.1342, 0.0765, 0.0361, 0.0193, 0.0182, 0.016, 0.011], [0.3482, 0.1984, 0.0443, 0.0324, 0.0324, 0.0163, 0.0119, 0.0105], [0.575, 0.1548, 0.0286, 0.0209, 0.0174, 0.0119, 0.0112, 0.0099], [0.4393, 0.3422, 0.0219, 0.0205, 0.0193, 0.0133, 0.0117, 0.011], [0.2513, 0.2218, 0.1524, 0.0868, 0.0527, 0.0465, 0.022, 0.0151], [0.5987, 0.104, 0.0761, 0.0338, 0.0247, 0.0192, 0.017, 0.0132], [0.8765, 0.0265, 0.0265, 0.0133, 0.0067, 0.0055, 0.0038, 0.0032], [0.7658, 0.0712, 0.0279, 0.0231, 0.0116, 0.0091, 0.0071, 0.0055], [0.7098, 0.0848, 0.0275, 0.0243, 0.0108, 0.0079, 0.0065, 0.0065], [0.6537, 0.0831, 0.0369, 0.0224, 0.012, 0.012, 0.012, 0.0093], [0.5261, 0.1103, 0.0231, 0.0217, 0.0149, 0.014, 0.0124, 0.0124], [0.3165, 0.1694, 0.0202, 0.0202, 0.0202, 0.0115, 0.0115, 0.0108], [0.3516, 0.1215, 0.0289, 0.0198, 0.0186, 0.0154, 0.0113, 0.0094], [0.1993, 0.1287, 0.0536, 0.0287, 0.0197, 0.0174, 0.0154, 0.0112], [0.1931, 0.0805, 0.0627, 0.0431, 0.018, 0.018, 0.0159, 0.0131], [0.1256, 0.1108, 0.0462, 0.0338, 0.0193, 0.0181, 0.0181, 0.0091], [0.5158, 0.0579, 0.0511, 0.0213, 0.0166, 0.0129, 0.0101, 0.0101], [0.3987, 0.0947, 0.0693, 0.0574, 0.0255, 0.0136, 0.0136, 0.0113], [0.7248, 0.1427, 0.0076, 0.0076, 0.0076, 0.0059, 0.0052, 0.0049], [0.7298, 0.1437, 0.0412, 0.0086, 0.0072, 0.0067, 0.0063, 0.0036], [0.9901, 0.004, 0.0019, 0.0013, 0.0009, 0.0004, 0.0003, 0.0002], [0.9917, 0.0041, 0.0017, 0.0009, 0.0005, 0.0004, 0.0002, 0.0001], [0.9929, 0.0036, 0.0012, 0.0007, 0.0004, 0.0003, 0.0003, 0.0002], [0.9913, 0.0046, 0.0013, 0.0013, 0.0004, 0.0003, 0.0002, 0.0001], [0.9961, 0.0032, 0.0004, 0.0002, 0.0001, 0.0, 0.0, 0.0], [0.9979, 0.0019, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.995, 0.0041, 0.0004, 0.0003, 0.0001, 0.0, 0.0, 0.0], [0.9989, 0.0009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [63166, 142578, 69629, 97344, 33089, 26684, 28826, 18596, 24505, 23292, 13632, 22662, 16560, 12922, 16689, 12665, 10760, 14622, 15192, 15944, 17012, 16494, 12898, 13190, 14701, 21857, 18879, 16478, 12921, 12151, 12199, 13515, 12870, 14367, 13209, 5590, 3273, 4486, 4495, 8017, 7161, 11288, 10132, 8349, 11231, 8258, 7115, 3432, 3368, 2067, 3272, 4041, 4391, 2778, 1137, 1139, 563, 641, 463, 208, 144, 76, 27]}}, {"pos": 402, "top": [["s", "a", "o", ".", "i", ",", "er", "\u201d."], ["s", "sWith", "  \n\n", "\u201d,", "\u201d.", "  \r\n", "erweise", "s\u00f3"], ["s", "\u2026.", "\u2013", " \u2013", "\u2026", ",", "\u201d,", "a"], ["sik", "sWith", "szeit", " **\u2022", "erweise", "satz", "sze", "s"], ["s", "ed", "sWith", "a", "sik", "s\u00f3", "\u0627\u062a", "sche"], ["s", "sWith", "sver", "s\u00f3", "a", "(Android", "sik", "ed"], ["s", "(Android", " Android", "a", "sWith", "\u0627\u062a", ".Android", "sor"], ["s", "(Android", "sWith", " Android", "sburg", "sik", "sak", ".Android"], ["s", "(Android", "!\u201d.", "sWith", " Android", "sak", " \u00bb.", "\r\n\r\n"], ["s", "(Android", " Android", ".Android", ",", "\u76f8\u8f85\u76f8\u6210", "(android", "s\u00f3"], ["s", " Android", "(Android", ".Android", "&nbsp", " android", ",", "(android"], [" Android", "s", "(Android", ".Android", " android", "(android", "sak", "/android"], [" Android", "(Android", ".Android", "s", " android", "(android", "sak", "\u76f8\u8f85\u76f8\u6210"], [" Android", "(Android", ".Android", "s", " android", "(android", "\u76f8\u8f85\u76f8\u6210", "-style"], ["s", " Android", " massively", ".Android", " arguably", " largely", "-style", "(Android"], ["s", " arguably", " Android", " massively", " largely", "\u51ed\u501f\u7740", "-esque", ".Android"], ["s", " arguably", " Android", " massively", " largely", " even", "a", " just"], ["s", " Android", "(Android", ".Android", " massively", " arguably", "-esque", " android"], ["s", " Android", "(Android", ".Android", " arguably", " hugely", " massively", " largely"], ["s", " hugely", " Android", " massively", " arguably", " even", "(Android", " largely"], ["<|endoftext|>", "s", "  \n\n", " \n\n", " \r\n\r\n", "\r\n\r\n", " hugely", " swiftly"], [" Android", ".Android", "(Android", " ``", " android", "\u4e3a\u5168\u7403", "ANDROID", "_ANDROID"], [" ``", " Android", ".Android", " hugely", " heavily", " ,", "(Android", " even"], [" ,", " ``", " Android", " even", " largely", " heavily", " just", " swiftly"], [" Android", "\r\n\r\n", " \r\n\r\n", " ``", " --", " {{--<", " hugely", "  \r\n\r\n"], [" Android", " android", "(Android", ".Android", "Android", "_ANDROID", "ANDROID", " {{--<"], [" Android", " android", ".Android", "(Android", "Android", "ANDROID", "_ANDROID", " Africa"], [" Android", " ,", " \n\n", " --", "\r\n\r\n", " android", " \r\n\r\n", " heavily"], [" Android", " android", "Android", ".Android", "(Android", " heavily", " ,", " Africa"], [" Android", " android", "(Android", " smartphone", " Africa", ".Android", "Android", " heavily"], [" Android", " android", " .", " ,", " ___", " technology", " globally", " heavily"], [" Android", " ,", " .", " heavily", " technology", " even", " globally", " modern"], [" Android", " ,", " even", " heavily", " massively", " despite", " only", " via"], [" Android", " massively", " technology", " tech", " heavily", " globally", " hardware", " android"], [" Android", " notoriously", " massively", " tech", " smartphone", " hardware", " vastly", " heavily"], [" Android", " notoriously", " hardware", " tech", " massively", " technology", " heavily", " vastly"], [" notoriously", " Android", " hardware", " massively", " vastly", " heavily", " aggressively", " tech"], [" Android", " notoriously", " hardware", " massively", " android", " incredibly", " vastly", " tech"], [" Android", " hardware", " notoriously", " requires", " tech", " massively", " incredibly", " android"], [" Android", " hardware", " notoriously", " android", " tech", " requires", " overclock", " iOS"], [" hardware", " Android", " tech", " notoriously", " android", " requires", " overclock", " technology"], [" hardware", " Android", " notoriously", " overclock", " tech", " technology", " android", " requires"], [" hardware", " Android", " overclock", " notoriously", " powered", " technology", " android", " tech"], [" hardware", " Android", " notoriously", " overclock", " powered", " requires", " android", " aggressively"], [" hardware", " Android", " notoriously", " requires", " impossible", " powered", " hybrid", " aggressively"], [" hardware", " notoriously", " without", " Android", " requires", " impossible", " powered", " purely"], [" hardware", " requires", " notoriously", " impossible", " via", " barely", " Android", " powered"], [" requires", " without", " via", " using", " combined", " WITHOUT", " hardware", " impossible"], [" requires", " without", " via", " combined", " WITHOUT", " using", " while", " whilst"], [" requires", "requires", " via", " implies", " whilst", " while", "\u610f\u5473\u7740", " without"], [" requires", "requires", "\u610f\u5473\u7740", " implies", " Requires", "Requires", " via", " means"], [" requires", " using", "requires", " via", " Requires", "Requires", "using", " requiring"], [" requires", " using", " purely", " pure", "requires", " via", " Requires", "Requires"], [" using", " requires", " purely", " via", "requires", " pure", "using", " Requires"], [" requires", " using", " pure", "requires", " purely", " implies", " excludes", " requiring"], [" requires", " purely", " pure", " using", " entirely", "\u7eaf", " implies", " via"], [" requires", " using", " purely", " implies", " via", " pure", " renders", " GPU"], [" requires", " purely", " renders", " using", " via", " implies", " pure", " GPU"], [" requires", " purely", " via", " using", " renders", " implies", " GPU", " excludes"], [" Rust", " via", " purely", " using", " requires", " pure", " implies", " strictly"], [" Rust", " purely", " via", " requires", " pure", " with", " implies", " using"], [" Rust", " requires", " implies", " with", " via", " renders", " is", " using"], [" with", " via", " Rust", " implies", " requires", " in", " using", " *"]], "p": [[0.9469, 0.0367, 0.0041, 0.0041, 0.0016, 0.0012, 0.0004, 0.0002], [0.8923, 0.0127, 0.0087, 0.0034, 0.0032, 0.0028, 0.0025, 0.0017], [0.9378, 0.0104, 0.0092, 0.0063, 0.0041, 0.0038, 0.0026, 0.0025], [0.0371, 0.0348, 0.0155, 0.0136, 0.0113, 0.01, 0.0094, 0.0078], [0.9883, 0.0013, 0.0012, 0.0007, 0.0005, 0.0003, 0.0002, 0.0002], [0.9665, 0.0039, 0.0015, 0.0014, 0.0012, 0.0011, 0.0008, 0.0006], [0.999, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.968, 0.0045, 0.0042, 0.0014, 0.0009, 0.0008, 0.0008, 0.0007], [0.9616, 0.0031, 0.0027, 0.0014, 0.0014, 0.0011, 0.0011, 0.001], [0.8543, 0.0201, 0.0101, 0.0065, 0.0031, 0.0026, 0.0024, 0.0015], [0.9191, 0.0158, 0.0062, 0.0029, 0.0015, 0.0015, 0.0011, 0.0009], [0.1507, 0.0859, 0.059, 0.0521, 0.0132, 0.0132, 0.009, 0.008], [0.1347, 0.0677, 0.0411, 0.0386, 0.0142, 0.0142, 0.0086, 0.0076], [0.0589, 0.0336, 0.018, 0.0149, 0.009, 0.009, 0.0043, 0.0043], [0.0627, 0.018, 0.0058, 0.0055, 0.0048, 0.0048, 0.0031, 0.0028], [0.0632, 0.0117, 0.0091, 0.0086, 0.0063, 0.0052, 0.0038, 0.0038], [0.5696, 0.0067, 0.0063, 0.0046, 0.0041, 0.0026, 0.0026, 0.0025], [0.1322, 0.0295, 0.0168, 0.0168, 0.0055, 0.0038, 0.0035, 0.0033], [0.0278, 0.0261, 0.0179, 0.0168, 0.0102, 0.0058, 0.0055, 0.004], [0.0267, 0.0143, 0.0126, 0.0111, 0.0104, 0.0092, 0.0087, 0.0076], [0.2512, 0.0133, 0.0092, 0.0081, 0.0059, 0.0055, 0.0052, 0.0049], [0.0879, 0.0323, 0.0252, 0.0144, 0.0064, 0.0044, 0.0032, 0.0027], [0.0686, 0.0502, 0.0153, 0.0064, 0.006, 0.006, 0.0053, 0.0053], [0.0346, 0.0127, 0.0112, 0.0099, 0.0068, 0.0064, 0.0064, 0.0041], [0.0451, 0.033, 0.033, 0.0166, 0.0147, 0.0138, 0.0107, 0.0101], [0.4073, 0.0429, 0.0356, 0.0356, 0.0116, 0.0102, 0.009, 0.0062], [0.4574, 0.0482, 0.0292, 0.0242, 0.0101, 0.0065, 0.0061, 0.0058], [0.0984, 0.041, 0.0151, 0.0125, 0.0125, 0.011, 0.0092, 0.0076], [0.398, 0.037, 0.0239, 0.0145, 0.0145, 0.0068, 0.0064, 0.0057], [0.3843, 0.0336, 0.014, 0.009, 0.009, 0.009, 0.0085, 0.008], [0.4005, 0.0309, 0.0226, 0.0146, 0.0114, 0.0107, 0.0107, 0.0107], [0.0612, 0.042, 0.0308, 0.0211, 0.0145, 0.012, 0.01, 0.0094], [0.0296, 0.0296, 0.0246, 0.0231, 0.0169, 0.0109, 0.0102, 0.0102], [0.0912, 0.0231, 0.0204, 0.0191, 0.018, 0.0149, 0.0123, 0.0116], [0.0881, 0.0367, 0.0286, 0.0223, 0.0209, 0.0173, 0.0173, 0.0163], [0.0951, 0.0788, 0.029, 0.024, 0.024, 0.0199, 0.0187, 0.0176], [0.1238, 0.0455, 0.0377, 0.0333, 0.0244, 0.019, 0.0178, 0.0178], [0.1529, 0.0637, 0.0599, 0.0207, 0.0172, 0.0161, 0.0151, 0.0134], [0.117, 0.097, 0.0553, 0.0216, 0.0179, 0.0149, 0.0131, 0.0131], [0.1439, 0.1121, 0.0364, 0.0172, 0.0172, 0.0161, 0.0126, 0.0092], [0.2036, 0.149, 0.0259, 0.0243, 0.0167, 0.0147, 0.0139, 0.0139], [0.2867, 0.1739, 0.0172, 0.0162, 0.0143, 0.0134, 0.0118, 0.0098], [0.2562, 0.121, 0.0186, 0.0186, 0.0136, 0.0113, 0.0113, 0.0099], [0.1728, 0.1187, 0.032, 0.03, 0.0142, 0.0133, 0.011, 0.0086], [0.153, 0.0679, 0.0341, 0.025, 0.0195, 0.0118, 0.0111, 0.0104], [0.093, 0.0601, 0.0221, 0.0208, 0.0195, 0.0162, 0.0134, 0.0134], [0.1108, 0.0811, 0.0631, 0.0263, 0.0218, 0.0132, 0.0124, 0.0103], [0.1675, 0.0954, 0.0842, 0.0451, 0.0423, 0.0423, 0.0273, 0.02], [0.1286, 0.083, 0.078, 0.0536, 0.0504, 0.0473, 0.0392, 0.0224], [0.5568, 0.0245, 0.0203, 0.0191, 0.0158, 0.0148, 0.0139, 0.0139], [0.8608, 0.0314, 0.0202, 0.0139, 0.009, 0.0048, 0.0037, 0.0021], [0.7017, 0.1774, 0.0272, 0.0199, 0.01, 0.005, 0.005, 0.0044], [0.5367, 0.2237, 0.0303, 0.0251, 0.0236, 0.0222, 0.0134, 0.0082], [0.3761, 0.3319, 0.0226, 0.0212, 0.0187, 0.0187, 0.0165, 0.0114], [0.5854, 0.148, 0.02, 0.0177, 0.0177, 0.0177, 0.0121, 0.0101], [0.3424, 0.0981, 0.0866, 0.0764, 0.0674, 0.0409, 0.0233, 0.0193], [0.1819, 0.1103, 0.0712, 0.0555, 0.0432, 0.0406, 0.0336, 0.0262], [0.2115, 0.1132, 0.0472, 0.0416, 0.0367, 0.0345, 0.0324, 0.0324], [0.1678, 0.1017, 0.0699, 0.0699, 0.0452, 0.0424, 0.0398, 0.0374], [0.8097, 0.0457, 0.019, 0.019, 0.0139, 0.0123, 0.0066, 0.0062], [0.383, 0.1243, 0.0968, 0.0587, 0.0487, 0.0335, 0.0314, 0.0277], [0.2358, 0.1836, 0.0923, 0.0766, 0.0719, 0.0596, 0.0494, 0.0319], [0.2812, 0.219, 0.1172, 0.0627, 0.0589, 0.0459, 0.0381, 0.0315]], "ranks": {"Rust": [21502, 20921, 10825, 25626, 3404, 2655, 4487, 5303, 12888, 8898, 5816, 12369, 6417, 5039, 7176, 3272, 4022, 10738, 19811, 14456, 25489, 28445, 12396, 17978, 23096, 29642, 29472, 19717, 19840, 14869, 20543, 18882, 17260, 25754, 26666, 20099, 19399, 23590, 20235, 18989, 9779, 9331, 9427, 9032, 11343, 11025, 11726, 9792, 4249, 5332, 6757, 1809, 2136, 2750, 1217, 157, 64, 57, 38, 1, 1, 1, 3]}}, {"pos": 403, "top": [[",", ".", "\u2013", " \u2013", ";", "\u00a0", "\u2026.", "\u00a0\u00a0"], ["\u2013", ",", " \u2013", ".", "\u2013and", ";", ".\u2013", " \u200b\u200b"], [",", "\u2013", ".", " \u2013", ";", ".\u2013", "\u2026.", "\u2013and"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", "-------------</", " Blowjob", "aruhi", "----------</", " Hidal", " \u041a\u0440\u0430\u0441\u0438"], ["zer", " \u0628\u0648\u062a\u064a\u0646", "SSI", "start", "cai", "(IS", "ners", "ISI"], [" \u0628\u0648\u062a\u064a\u0646", "SSI", "iously", "cai", "-With", "\u8d75\u4e3d\u9896", "start", " \u041f\u0443\u0442\u0438\u043d"], ["advert", "\u2018", "start", "\u2019t", "ning", "now", "rather", " \u2018"], ["ners", "adays", "ning", "iously", "advert", "variably", "ement", "ighbour"], ["!.", "adays", "variably", "arder", "ighbour", "athon", "avour", "(!"], ["\u2013", ",", "\u2013and", "\u00a0", "much", "though", "-out", "-ish"], ["\u00a0", "ning", "\u2013", "-ish", ",", "though", "-out", "-but"], ["-ish", "\u611f\u5341\u8db3", "ning", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", "/out", " thankfully", " guts", "avour"], ["-ish", "\u611f\u5341\u8db3", " thankfully", "-esque", " guts", "\u9760\u8c31", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", " luckily"], ["-ish", " thankfully", " hugely", "\u611f\u5341\u8db3", "-esque", " guts", " hopefully", " luckily"], [" basically", " smack", " arguably", " pretty", " folks", " amazingly", " hopefully", " truly"], [" arguably", " incredibly", " oddly", " thankfully", " folks", " smack", "-ish", " wildly"], [" incredibly", "-ish", " folks", " arguably", " pretty", " oddly", " tough", " basically"], ["-ish", " folks", " hugely", " incredibly", " pricey", " freaking", " isn", " oddly"], [" incredibly", " arguably", "-ish", " oddly", " hugely", " ridiculously", " freaking", "-esque"], [" hugely", " arguably", " barely", " incredibly", " wildly", " vastly", " utterly", " though"], ["<|endoftext|>", " hugely", " though", " barely", " arguably", " vastly", "Though", " utterly"], [" hugely", "\u611f\u5341\u8db3", "\u54ea\u6015\u662f", " arguably", " incredibly", "\u5473\u513f", " massively", " barely"], [" hugely", " barely", " arguably", " incredibly", " wildly", " \u2019", " vastly", "\u611f\u5341\u8db3"], [" hugely", " barely", " arguably", " --", " massively", " wildly", " vastly", " {{--<"], [" \r\n\r\n", " hugely", " {{--<", " \n\n", " arguably", "\r\n\r\n", " --", " vastly"], [" hugely", " {{--<", "\u611f\u5341\u8db3", " arguably", " wildly", "\u54ea\u6015\u662f", " vastly", " incredibly"], [" hugely", " {{--<", " arguably", " wildly", "\u611f\u5341\u8db3", " vastly", " massively", " incredibly"], [" hugely", " arguably", " wildly", " incredibly", " massively", " vastly", " barely", " {{--<"], [" hugely", " arguably", " incredibly", " massively", " wildly", " tech", "\u611f\u5341\u8db3", " hardware"], [" massively", " hugely", " arguably", " tech", " incredibly", " **", " hardware", " wildly"], [" incredibly", " massively", " hugely", " arguably", " barely", " wildly", " tech", " huge"], [" incredibly", " massively", " even", " huge", " **", " massive", " fast", " arguably"], [" incredibly", " massively", " even", " barely", " massive", " huge", " arguably", " only"], [" incredibly", " massively", " arguably", " tech", " technically", "\u2014even", " barely", " hugely"], [" massively", " arguably", "\u2014even", " incredibly", " seamlessly", " tech", " notoriously", " vastly"], [" \u2013", "\u2014even", "\u2011", " hardware", " tech", " *\u2013", "\u201d\u2014", " arguably"], [" hardware", " tech", " software", "\u2014even", " arguably", " digitally", "/software", " massively"], [" hardware", " tech", " software", " seamlessly", " Hardware", " digitally", " complexity", " complex"], [" hardware", " software", " tech", " seamlessly", "\u2014even", " complex", " complexity", " leveraging"], [" software", "\u2011", "\u2026**", " Python", " hardware", " workflows", " seamlessly", "\u2014even"], [" software", " Python", " Java", " hardware", " tech", " workflows", "software", " Software"], [" Python", " software", " Java", "/software", " Software", " native", " hardware", "software"], [" software", " Python", " Java", " Software", "/software", " native", " hardware", " programming"], [" software", " seamlessly", " Java", " standalone", " Python", " workflows", " SOFTWARE", "-native"], [" software", " native", " workflows", " seamlessly", " Java", "-native", " standalone", " bespoke"], [" entirely", " native", " purely", " inherently", " software", " standalone", " bespoke", " pure"], ["-native", " entirely", " inherently", " native", " seamlessly", " purely", " entirety", " standalone"], [" entirely", " entirety", " purely", " standalone", " WITHOUT", " solely", " inherently", "\u76f4\u63a5\u7528"], [" WITHOUT", "-native", "\u7eaf\u7cb9\u7684", "\u7eaf\u7cb9", " purely", " entirely", " solely", " standalone"], ["\u7eaf\u7cb9\u7684", "-native", "\u7eaf\u5929\u7136", " entirely", "\u7eaf\u7cb9", " purely", " solely", "\u76f4\u63a5\u7528"], ["\u7eaf\u7cb9\u7684", "-native", "\u7eaf\u5929\u7136", "\u7eaf\u7cb9", "\u76f4\u63a5\u7528", " standalone", "\u5168\u804c", " purely"], ["-native", " standalone", "\u7eaf\u7cb9\u7684", "\u7eaf\u7cb9", "\u539f\u751f", " pure", "\u7eaf\u5929\u7136", "\u7eaf"], [" pure", "-native", "\u7eaf", "\u7eaf\u7cb9\u7684", "\u7eaf\u7cb9", "pure", " purely", " standalone"], [" pure", "-native", "\u7eaf", "pure", "\u7eaf\u7cb9", "\u7eaf\u7cb9\u7684", " purely", " native"], [" pure", "\u7eaf", "pure", "\u7eaf\u7cb9", " Pure", "\u7eaf\u7cb9\u7684", "Pure", "\u7d14"], [" pure", "\u7eaf", "pure", " Pure", "Pure", "\u7eaf\u7cb9", "\u7d14", "\u7eaf\u7cb9\u7684"], [" pure", "\u7eaf", " Rust", "pure", " Pure", "Pure", "\u7d14", "\u7eaf\u7cb9"], [" pure", "\u7eaf", " Rust", "pure", " Pure", "Pure", "\u7d14", "-native"], [" Rust", " pure", "\u7eaf", " rust", "pure", "rust", " Pure", " native"], [" Rust", " rust", " pure", "rust", " rusty", "\u9508", "\u7eaf", " native"], [" Rust", " pure", " rust", " Pure", "rust", "\u7eaf", "pure", " native"], [" Rust", " pure", " rust", "rust", " native", " rusty", " Pure", "-native"], [" Rust", " pure", " rust", " a", " native", " Pure", " raw", "rust"]], "p": [[0.6091, 0.3694, 0.0112, 0.0036, 0.0025, 0.0019, 0.0006, 0.0004], [0.454, 0.1569, 0.0696, 0.0373, 0.0146, 0.0057, 0.0037, 0.0024], [0.6393, 0.2075, 0.1426, 0.003, 0.0015, 0.0014, 0.0012, 0.0007], [0.0078, 0.0053, 0.0042, 0.0029, 0.0025, 0.0022, 0.002, 0.002], [0.0024, 0.0019, 0.0019, 0.0019, 0.0017, 0.0016, 0.0015, 0.0015], [0.0024, 0.0022, 0.0021, 0.0017, 0.0016, 0.0013, 0.0013, 0.0013], [0.0186, 0.0175, 0.0154, 0.0078, 0.0078, 0.0078, 0.0069, 0.0044], [0.0129, 0.0094, 0.0089, 0.005, 0.0047, 0.0047, 0.0042, 0.0033], [0.0103, 0.008, 0.0048, 0.0046, 0.0043, 0.004, 0.0035, 0.0031], [0.0206, 0.0194, 0.0111, 0.0041, 0.0025, 0.002, 0.0014, 0.0014], [0.0318, 0.0233, 0.0181, 0.011, 0.0097, 0.0091, 0.0067, 0.0063], [0.0117, 0.0103, 0.0086, 0.0055, 0.0046, 0.004, 0.0034, 0.0026], [0.0355, 0.0095, 0.0051, 0.0045, 0.0035, 0.0031, 0.0029, 0.0029], [0.0208, 0.0104, 0.0076, 0.0044, 0.0038, 0.0038, 0.0038, 0.0032], [0.0241, 0.0213, 0.0146, 0.0137, 0.0129, 0.0114, 0.0114, 0.0107], [0.0405, 0.0405, 0.0149, 0.0116, 0.0102, 0.0085, 0.008, 0.007], [0.0444, 0.0346, 0.0305, 0.0305, 0.0253, 0.0163, 0.0163, 0.0127], [0.0576, 0.0165, 0.0155, 0.0155, 0.0146, 0.0146, 0.0146, 0.0137], [0.0151, 0.0142, 0.0134, 0.0134, 0.0111, 0.0111, 0.0092, 0.0086], [0.0341, 0.0341, 0.022, 0.0133, 0.0133, 0.0104, 0.0098, 0.0081], [0.2636, 0.0169, 0.0149, 0.0116, 0.0096, 0.009, 0.0058, 0.0051], [0.0136, 0.0088, 0.005, 0.0044, 0.0044, 0.0039, 0.0035, 0.0035], [0.0293, 0.0167, 0.0139, 0.0089, 0.0079, 0.0074, 0.0074, 0.007], [0.0177, 0.0156, 0.0129, 0.0069, 0.0054, 0.0054, 0.0051, 0.0051], [0.0301, 0.022, 0.0092, 0.0081, 0.0081, 0.0063, 0.0063, 0.0059], [0.0152, 0.0092, 0.0067, 0.0044, 0.0038, 0.0036, 0.0026, 0.0026], [0.0119, 0.0087, 0.0047, 0.0041, 0.0039, 0.0032, 0.0027, 0.0021], [0.0538, 0.0288, 0.0154, 0.0128, 0.012, 0.0113, 0.0082, 0.0073], [0.0187, 0.0121, 0.0114, 0.0114, 0.0073, 0.0065, 0.0054, 0.0037], [0.0152, 0.0152, 0.0134, 0.0126, 0.0126, 0.0086, 0.0081, 0.0076], [0.0417, 0.0269, 0.021, 0.0185, 0.0144, 0.0127, 0.012, 0.012], [0.0569, 0.0209, 0.0153, 0.0153, 0.0144, 0.0127, 0.0127, 0.0127], [0.0574, 0.0394, 0.0198, 0.0198, 0.0186, 0.0136, 0.0136, 0.0113], [0.0649, 0.0572, 0.0224, 0.0186, 0.0145, 0.012, 0.0113, 0.0093], [0.0463, 0.0435, 0.0319, 0.0233, 0.0141, 0.0133, 0.011, 0.0103], [0.0656, 0.0398, 0.0374, 0.031, 0.0273, 0.02, 0.0166, 0.0156], [0.114, 0.0783, 0.0239, 0.0128, 0.01, 0.0088, 0.0088, 0.0078], [0.1563, 0.0575, 0.0371, 0.0137, 0.0121, 0.0106, 0.0083, 0.0083], [0.0512, 0.0352, 0.0331, 0.0188, 0.0114, 0.0107, 0.0095, 0.0089], [0.0256, 0.0256, 0.0121, 0.0121, 0.0107, 0.01, 0.0094, 0.0078], [0.0748, 0.062, 0.0258, 0.0228, 0.0157, 0.013, 0.0108, 0.0108], [0.0936, 0.088, 0.0442, 0.0163, 0.0153, 0.0127, 0.0127, 0.0112], [0.1077, 0.0893, 0.0653, 0.0187, 0.0176, 0.0137, 0.0137, 0.0121], [0.0433, 0.0204, 0.0192, 0.0159, 0.014, 0.014, 0.014, 0.0124], [0.0463, 0.0219, 0.0193, 0.017, 0.017, 0.016, 0.015, 0.011], [0.0259, 0.0215, 0.0202, 0.0189, 0.0189, 0.0148, 0.013, 0.013], [0.0359, 0.0297, 0.0218, 0.0204, 0.0159, 0.0159, 0.015, 0.014], [0.1246, 0.0458, 0.0357, 0.0357, 0.0296, 0.0278, 0.0245, 0.0203], [0.0642, 0.0441, 0.0415, 0.0344, 0.0323, 0.0323, 0.0251, 0.0251], [0.0789, 0.0577, 0.0577, 0.0449, 0.0372, 0.0329, 0.0226, 0.0199], [0.04, 0.0353, 0.0292, 0.0167, 0.0101, 0.0084, 0.0074, 0.0051], [0.3234, 0.0562, 0.0562, 0.0386, 0.0301, 0.0301, 0.022, 0.0194], [0.2586, 0.2586, 0.0951, 0.0654, 0.0654, 0.0397, 0.0397, 0.0094], [0.3227, 0.3227, 0.1345, 0.034, 0.034, 0.0234, 0.0142, 0.0125], [0.7456, 0.2136, 0.0199, 0.0065, 0.0057, 0.0044, 0.0016, 0.0011], [0.6923, 0.2886, 0.0127, 0.0036, 0.0007, 0.0007, 0.0007, 0.0003], [0.7049, 0.2019, 0.0656, 0.0188, 0.0054, 0.0014, 0.0008, 0.0003], [0.8199, 0.1257, 0.036, 0.0117, 0.0038, 0.001, 0.0006, 0.0004], [0.9752, 0.0202, 0.0019, 0.0019, 0.0003, 0.0002, 0.0001, 0.0001], [0.9997, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.992, 0.0076, 0.0003, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9976, 0.0013, 0.0009, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9983, 0.001, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0]], "ranks": {"Rust": [94744, 145538, 110359, 41162, 19753, 26287, 33533, 25262, 23527, 30594, 48887, 75772, 70892, 71421, 39365, 33196, 26709, 80546, 128899, 75351, 58129, 82552, 41164, 39936, 37861, 49933, 34029, 23240, 16377, 10102, 7550, 10796, 13732, 42259, 55371, 32915, 11432, 10814, 8879, 4152, 688, 661, 602, 1335, 1968, 1664, 3047, 3268, 4563, 6555, 12523, 302, 68, 43, 45, 17, 3, 3, 1, 1, 1, 1, 1]}}, {"pos": 404, "top": [["s", "y", "\u2013", " \u2013", "\u2013and", "t", ".\u2013", ","], ["s", "\u2013", "\u2013and", ".\u2013", "\u2013\u2013", " \u2013,", " \u2013", " *\u2013"], ["s", "\u2013", " \u2013", ".\u2013", " \u2013,", "\u2013and", ".", ","], ["s", "``", " \\\"", "satz", " ``", "\\\":", "\\\"\\", "\u52a0\u62ff\u5927"], ["s", " \\\"", "\\\"", "\u0627\u062a", "\\\",", "\u65b0\u52a0\u5761", "\\\":", "sut"], ["s", "sut", "\u65b0\u52a0\u5761", "sink", "\u0627\u062a", "\u76f8\u8f85\u76f8\u6210", "s\u00e4", "sand"], ["s", ".\\\"", "sut", "sand", "\u0627\u062a", "\\\"", "ive", "s\u00e4"], ["s", ".\\\"", "\\\"", "sut", " \\\"", ",\\\"", "\uff63", "ive"], ["s", ".", ".\\\"", ",", "\\\"", "!.", "\\\",", "ive"], ["s", ",", ".\\\"", ",\\\"", ".", "\\\",", "ive", "\u5162\u5162\u4e1a\u4e1a"], ["s", ",", ".", ".\\\"", "...", ";", "a", "\\\""], ["s", ",", ".\\\"", "ive", " \\\"", ",\\\"", "y", "ian"], ["s", ",", ".\\\"", " \\\"", "y", "ive", ".", "al"], ["s", ",", ".", "\u2013", "y", ";", "a", "t"], [",", "s", ".", "a", ";", "y", "\u2013", "--"], ["s", ",", "y", " incredibly", " arguably", "a", "es", " truly"], ["s", ",", "y", "a", ".", " incredibly", "t", ";"], ["s", ",", "y", "-esque", "ska", "-ish", "opia", "-inspired"], ["s", " arguably", " incredibly", ",", "-esque", " famously", "ska", "-inspired"], ["s", ",", " famously", " arguably", " incredibly", " heavily", "y", " --"], ["<|endoftext|>", "s", " \n\n", ",", "\u2013", "a", " though", " ,"], [" ``", " Rust", "&apos", " famously", "\uff63", " ''", " ;;^", "sut"], [" ``", " ''", "``", "s", " famously", " Rust", " \\\"", "&apos"], [" ``", "s", " ,", " ''", " --", " famously", " heavily", " alongside"], [" \n\n", " \r\n\r\n", "\\u", " famously", " \r\n \r\n", "\r\n\r\n", "s", " --"], [" famously", " Rust", " \n\n", " \ufffd", " \ufffd", " academia", " \u2764", " heavily"], [" famously", " \ufffd", " Rust", " academia", " cybersecurity", " foundational", " \ufffd", " robotics"], [" \n\n", "\n\n", " ...", " ,", " --", " famously", " @", " arguably"], [" famously", " Rust", " academia", " cybersecurity", " arguably", " crafting", " tech", " engineering"], [" famously", " ...", " academia", " tech", " crafting", " cybersecurity", " globally", " engineering"], [" ...", " tech", " academia", " famously", " incredibly", " technology", " \n\n", "..."], [" ...", " \u2013", " ,", " .", " incredibly", " heavily", " famously", " \u2026"], [" incredibly", " technology", " heavily", " .", " tech", " famously", " mostly", " globally"], [" incredibly", " tech", " heavily", " famously", " technology", " arguably", " seamlessly", " globally"], [" incredibly", " heavily", " famously", " arguably", " tech", " seamlessly", " leveraging", " notoriously"], [" incredibly", " heavily", " tech", " arguably", " hardware", " famously", " notoriously", " hybrid"], [" notoriously", " arguably", " heavily", " incredibly", " hardware", " tech", " seamlessly", " aggressively"], [" hardware", " incredibly", " notoriously", " heavily", " tech", " arguably", " seamlessly", " hybrid"], [" incredibly", " notoriously", " hardware", " arguably", " heavily", " seamlessly", " tech", " leveraging"], [" hardware", " incredibly", " tech", " notoriously", " leveraging", " seamlessly", " minimalist", " heavily"], [" hardware", " incredibly", " tech", " Rust", " leveraging", " metal", " software", " minimalist"], [" hardware", " leveraging", " software", " seamlessly", " tech", " metal", " Rust", " incredibly"], [" hardware", " leveraging", " optimized", " metal", " software", " tech", " seamlessly", " minimalist"], [" hardware", " metal", " via", " leveraging", " notoriously", " heavily", " optimized", " seamlessly"], [" hardware", " notoriously", " via", " without", " minimalist", " metal", " heavily", " complex"], [" without", " hardware", " via", " notoriously", " arguably", " heavily", " complex", " using"], [" without", " arguably", " hardware", " notoriously", "-heavy", " via", " complex", " WITHOUT"], [" without", " WITHOUT", " arguably", "without", " Without", " sans", " lacks", " isn"], [" without", " WITHOUT", "without", " Without", " lacks", " sans", " requires", " alone"], [" without", " WITHOUT", " isn", " requires", "without", " Without", "\u2014not", " wasn"], [" requires", " isn", " without", " WITHOUT", " implies", "requires", "\u610f\u5473\u7740", " involves"], [" requires", " without", " WITHOUT", " isn", " implies", "without", "requires", " involves"], [" without", " WITHOUT", " requires", "without", " Without", " implies", "\u2014with", "Without"], [" without", " WITHOUT", " requires", "without", "\u2014with", " implies", "\u610f\u5473\u7740", " involves"], [" implies", " requires", "\u610f\u5473\u7740", " isn", " without", " WITHOUT", "\u2014with", "requires"], ["\u610f\u5473\u7740", " means", " implies", " requires", " isn", "\u610f\u5473\u8457", " \u043e\u0437\u043d\u0430\u0447\u0430\u0435\u0442", "\u5c31\u610f\u5473\u7740"], [" implies", "\u610f\u5473\u7740", " requires", " means", " isn", "impl", "\u610f\u5473\u8457", " imply"], [" implies", "\u610f\u5473\u7740", " means", " requires", " isn", "impl", " imply", "\u2014with"], [" implies", " isn", " requires", "\u610f\u5473\u7740", " means", "\u2014with", "impl", " is"], [" implies", " isn", " requires", " means", " is", "\u610f\u5473\u7740", " with", "\u2014with"], [" implies", " means", " requires", " isn", " is", " with", "\u610f\u5473\u7740", "\u2014with"], [" implies", " is", " requires", " means", " isn", " involves", " renders", " ignores"], [",", " is", " implies", " means", " requires", " isn", " with", " forces"]], "p": [[0.9995, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9876, 0.0059, 0.0036, 0.0009, 0.0007, 0.0005, 0.0002, 0.0001], [0.8556, 0.0796, 0.0332, 0.0138, 0.0084, 0.0065, 0.0013, 0.0004], [0.1488, 0.1023, 0.0748, 0.0401, 0.0401, 0.0376, 0.0293, 0.0189], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9994, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.999, 0.0003, 0.0003, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9945, 0.0041, 0.0003, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9824, 0.014, 0.0031, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9968, 0.0006, 0.0006, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001], [0.9859, 0.0071, 0.0002, 0.0002, 0.0002, 0.0002, 0.0002, 0.0001], [0.7189, 0.2645, 0.0038, 0.0007, 0.0007, 0.0004, 0.0003, 0.0002], [0.5122, 0.452, 0.0044, 0.0024, 0.0015, 0.0013, 0.0008, 0.0006], [0.9538, 0.0136, 0.0007, 0.0006, 0.0002, 0.0002, 0.0002, 0.0002], [0.9524, 0.0369, 0.0004, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001], [0.7899, 0.0326, 0.001, 0.0007, 0.0007, 0.0007, 0.0006, 0.0006], [0.5879, 0.0035, 0.0033, 0.0033, 0.0029, 0.0027, 0.002, 0.0015], [0.4267, 0.0187, 0.0078, 0.0054, 0.005, 0.0037, 0.0025, 0.0024], [0.2536, 0.0823, 0.0389, 0.0087, 0.006, 0.0056, 0.0044, 0.0044], [0.1002, 0.0064, 0.0057, 0.0057, 0.0041, 0.0037, 0.0032, 0.0027], [0.4961, 0.028, 0.0192, 0.0071, 0.0066, 0.0055, 0.0052, 0.0049], [0.0456, 0.0313, 0.0294, 0.0102, 0.0096, 0.0074, 0.0074, 0.0051], [0.426, 0.0372, 0.0137, 0.0083, 0.0065, 0.0054, 0.0054, 0.005], [0.0421, 0.0421, 0.0289, 0.0121, 0.0106, 0.0083, 0.0065, 0.0065], [0.0311, 0.0214, 0.0201, 0.0201, 0.013, 0.0101, 0.0101, 0.0079], [0.4141, 0.0635, 0.03, 0.0219, 0.0161, 0.0133, 0.011, 0.0104], [0.0203, 0.0191, 0.0109, 0.0102, 0.009, 0.008, 0.0075, 0.0075], [0.029, 0.0199, 0.0165, 0.0137, 0.0129, 0.0129, 0.0129, 0.0129], [0.2366, 0.0207, 0.0151, 0.0151, 0.0142, 0.0125, 0.0118, 0.0104], [0.0946, 0.0327, 0.0255, 0.0225, 0.0198, 0.0175, 0.0154, 0.0136], [0.055, 0.019, 0.0179, 0.0168, 0.0168, 0.0139, 0.0123, 0.009], [0.1218, 0.0448, 0.0255, 0.0199, 0.0176, 0.0137, 0.0128, 0.0121], [0.0602, 0.0499, 0.044, 0.0303, 0.0162, 0.0143, 0.0143, 0.0143], [0.0385, 0.0319, 0.0319, 0.0319, 0.0264, 0.0193, 0.0193, 0.0182], [0.0364, 0.0342, 0.0321, 0.0266, 0.0221, 0.0161, 0.0134, 0.0126], [0.0339, 0.0319, 0.0319, 0.0233, 0.0206, 0.0193, 0.0193, 0.016], [0.0419, 0.0393, 0.0347, 0.027, 0.0254, 0.0239, 0.0211, 0.0145], [0.0424, 0.0352, 0.0213, 0.0213, 0.0213, 0.0177, 0.0156, 0.0147], [0.1368, 0.0305, 0.0287, 0.0238, 0.0174, 0.0163, 0.0144, 0.0144], [0.1445, 0.0323, 0.0251, 0.0162, 0.0162, 0.0162, 0.0143, 0.0143], [0.1566, 0.024, 0.0226, 0.0212, 0.0187, 0.0187, 0.0165, 0.0137], [0.0988, 0.0207, 0.0195, 0.0195, 0.0183, 0.0172, 0.0126, 0.0118], [0.0995, 0.0236, 0.0236, 0.0222, 0.0184, 0.0173, 0.0143, 0.0112], [0.1128, 0.0567, 0.0268, 0.0268, 0.0196, 0.0196, 0.0143, 0.0093], [0.0881, 0.0645, 0.0502, 0.0391, 0.0237, 0.0237, 0.0223, 0.0135], [0.8127, 0.0431, 0.0116, 0.0096, 0.0096, 0.004, 0.0033, 0.0033], [0.8183, 0.1107, 0.0055, 0.0046, 0.0036, 0.0033, 0.0026, 0.0026], [0.5462, 0.1565, 0.0576, 0.0372, 0.0176, 0.0137, 0.0088, 0.0073], [0.618, 0.0651, 0.0421, 0.0395, 0.0255, 0.0175, 0.012, 0.0094], [0.468, 0.1519, 0.0981, 0.0233, 0.0193, 0.017, 0.016, 0.0117], [0.4272, 0.2287, 0.1572, 0.0273, 0.0166, 0.0129, 0.0107, 0.0107], [0.2863, 0.2527, 0.1968, 0.0302, 0.0235, 0.0207, 0.0195, 0.0172], [0.4216, 0.3284, 0.0392, 0.0346, 0.027, 0.0253, 0.0068, 0.0053], [0.6933, 0.1365, 0.0731, 0.0569, 0.0036, 0.0032, 0.0027, 0.0025], [0.4495, 0.35, 0.0689, 0.0689, 0.006, 0.0041, 0.0034, 0.0034], [0.4297, 0.203, 0.0959, 0.0959, 0.0659, 0.0045, 0.0045, 0.0042], [0.483, 0.1221, 0.1221, 0.0839, 0.0839, 0.005, 0.0047, 0.0044], [0.434, 0.1809, 0.1243, 0.0855, 0.0518, 0.0148, 0.007, 0.0051], [0.4253, 0.1565, 0.1381, 0.1075, 0.0739, 0.0065, 0.0054, 0.0029], [0.3653, 0.1955, 0.1726, 0.1344, 0.0719, 0.0041, 0.003, 0.0025], [0.3219, 0.2212, 0.1342, 0.1184, 0.0718, 0.0299, 0.0117, 0.0055]], "ranks": {"Rust": [881, 866, 1048, 359, 113, 28, 55, 57, 94, 26, 60, 17, 14, 17, 73, 25, 39, 14, 22, 30, 72, 2, 6, 18, 20, 1, 3, 13, 2, 9, 11, 36, 54, 81, 108, 64, 36, 34, 50, 30, 4, 7, 9, 11, 40, 36, 104, 179, 171, 624, 407, 472, 1094, 1097, 487, 1443, 191, 144, 105, 69, 36, 49, 31]}}, {"pos": 405, "top": [[".", ",", "\u00a0", "\u2013", " \u2013", ";", "\u00a0\u00a0", " "], [",", "\u2013", ".", " \u2013", ";", "\u2013and", " \u200b\u200b", " "], [",", "\u2013", ".", " \u2013", ";", "\u2013and", ".\u2013", "\u2026"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", " Shemale", " Blowjob", "----------</", "-------------</", " Hidal", " ;;^"], [" \u200b\u200b", "&(", "(IS", " MIS", ".", "\ub960\uc740", "\u5e74\u5ba1", "\u00e9ch"], [".", " \u200b\u200b", ",", "\u00a0", "\u2026.", "\u00a0\u00a0", "!:", ":"], ["\u00a0", "  \n", " \n", "  \n\n", ".", "\u2026\u2026", "......", " \n\n"], [" luckily", "ibaldi", " **\u20ac", "avour", "ropy", "rophe", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "iland"], [" \n    \n", "!\u201d.", "!.", " \n            \n", " luckily", "    \n", " thankfully", "!:"], [" \u0442\u0440\u0451", "\u783c", "\u0436\u0451", "\u2013and", ",", "\u8303\u513f", "\u8ba4\u8ba4\u771f", "-Cds"], [" incredibly", " pretty", "\u00a0", " arguably", " though", "\u8303\u513f", " lucky", " thankfully"], [" incredibly", " anyways", " pretty", "\u783c", " bigger", "\u582a\u6bd4", " incredible", " lucky"], [" incredibly", " anyways", "\u582a\u6bd4", " freaking", " incredible", " thankfully", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " arguably"], [" incredibly", " freaking", " incredible", " anyways", " pretty", "\u582a\u6bd4", " thankfully", " ridiculously"], [" incredibly", " pretty", " incredible", " really", " arguably", " freaking", " truly", " ridiculously"], [" incredibly", " freaking", " incredible", " anyways", " arguably", " pretty", "\u582a\u6bd4", " amazing"], [" incredibly", " freaking", " pretty", " incredible", " really", " weird", " bigger", " arguably"], [" incredibly", " freaking", " pretty", " ridiculously", " incredible", " crappy", " bigger", " weird"], [" incredibly", " freaking", " ridiculously", " pretty", " notoriously", " incredible", " arguably", "\u582a\u6bd4"], [" incredibly", " freaking", " ridiculously", " arguably", " notoriously", " wildly", " pretty", " hugely"], [" incredibly", " hugely", " arguably", " wildly", " truly", " notoriously", " ridiculously", " utterly"], [" incredibly", " freaking", " hugely", " ridiculously", " arguably", " notoriously", "\u582a\u6bd4", " wildly"], [" incredibly", " arguably", " hugely", " truly", " wildly", " notoriously", " barely", " ridiculously"], [" incredibly", " arguably", " truly", " hugely", " barely", " wildly", " notoriously", " even"], [" hugely", " incredibly", " arguably", " wildly", " utterly", " truly", " famously", " genuinely"], [" incredibly", " hugely", " arguably", " wildly", " famously", " notoriously", " truly", " ridiculously"], [" incredibly", " arguably", " hugely", " wildly", " notoriously", " famously", " barely", " effortlessly"], [" arguably", " incredibly", " hugely", " famously", " wildly", " truly", " barely", " notoriously"], [" incredibly", " arguably", " famously", " hugely", " wildly", " truly", " notoriously", " barely"], [" incredibly", " arguably", " famously", " wildly", " truly", " notoriously", " barely", " hugely"], [" incredibly", " arguably", " wildly", " famously", " truly", " huge", " notoriously", " hugely"], [" incredibly", " arguably", " huge", " notoriously", " truly", " extremely", " wildly", " impossible"], [" incredibly", " arguably", " notoriously", " barely", " truly", " huge", " extremely", " wildly"], [" incredibly", " notoriously", " arguably", " extremely", " wildly", " truly", " famously", " barely"], [" incredibly", " notoriously", " arguably", " insanely", " relentlessly", " impossible", " wildly", " ridiculously"], [" incredibly", " notoriously", " extremely", " impossible", " insanely", " arguably", " ridiculously", " relentless"], [" notoriously", " incredibly", " impossible", " insanely", " ridiculously", " extremely", " relentlessly", " relentless"], [" notoriously", " incredibly", " impossible", " insanely", " ridiculously", " extremely", " relentless", " relentlessly"], [" impossible", " incredibly", " notoriously", " insanely", " ridiculously", " challenging", " extremely", " tricky"], [" impossible", " incredibly", " notoriously", " insanely", " relentless", " challenging", " ridiculously", " relentlessly"], [" incredibly", " impossible", " notoriously", " insanely", " challenging", " relentless", " ridiculously", " tricky"], [" impossible", " incredibly", " notoriously", " challenging", " insanely", " tricky", " technically", " relentless"], [" impossible", " notoriously", " incredibly", " challenging", " tricky", " technically", " insanely", " relentless"], [" impossible", " notoriously", " challenging", " incredibly", " tricky", " difficult", " challenges", " challenge"], [" impossible", " notoriously", " incredibly", " challenging", " difficult", " extremely", " challenge", " technically"], [" notoriously", " impossible", " incredibly", " challenging", " technically", " extremely", " challenge", " tricky"], [" notoriously", " incredibly", " tricky", " impossible", " challenging", " extremely", " challenges", " technically"], [" impossible", " incredibly", " tricky", " challenging", " notoriously", " extremely", " technically", " barely"], [" impossible", " incredibly", " challenging", " notoriously", " tricky", " extremely", " demanding", " technically"], [" impossible", " incredibly", " tricky", " challenging", " demanding", "\u82db\u523b", " notoriously", " extremely"], [" impossible", "Impossible", " notoriously", "\u6839\u672c\u4e0d\u662f", "\u7edd\u975e", " tricky", " unrealistic", "\u82db\u523b"], [" impossible", "Impossible", "\u82db\u523b", " Impossible", "\u2014not", "\u6311\u6218", " achievable", " tricky"], [" impossible", "Impossible", " feasible", " achievable", "\u82db\u523b", " unrealistic", "feas", " bottleneck"], [" impossible", " technically", " barely", "Impossible", " feasible", " bottleneck", " achievable", " borderline"], [" feasible", " impossible", "feas", " achievable", "\u53ef\u884c", "\u53ef\u884c\u7684", "Impossible", " feasibility"], [" feasible", " impossible", "feas", " achievable", "\u53ef\u884c", "\u53ef\u884c\u7684", "Impossible", " borderline"], [" feasible", " achievable", "\u53ef\u884c", "\u53ef\u884c\u7684", "feas", " impossible", "possible", " battling"], [" feasible", " aggressive", " aggressively", " achievable", " fighting", " battling", " hardware", "\u53ef\u884c"], [" feasible", " aggressive", " aggressively", " achievable", " fighting", " brutal", " battling", " physically"], [" fighting", " feasible", " aggressively", " aggressive", " physically", " not", " achievable", " physics"], [" fighting", " physically", " feasible", " aggressive", " achievable", " aggressively", " not", " brutal"], [" not", " physically", " fighting", " aggressive", " feasible", " achievable", " brutal", " aggressively"], [" not", " physically", " achievable", " possible", " feasible", " aggressive", " aggressively", " fighting"]], "p": [[0.5716, 0.3929, 0.0105, 0.0082, 0.0063, 0.0056, 0.0009, 0.0006], [0.2175, 0.2043, 0.1694, 0.1495, 0.026, 0.0131, 0.0054, 0.0031], [0.4416, 0.3439, 0.1841, 0.0118, 0.0038, 0.0028, 0.0025, 0.0022], [0.0147, 0.0048, 0.0045, 0.0039, 0.0033, 0.0027, 0.002, 0.002], [0.0059, 0.0024, 0.0023, 0.0023, 0.0022, 0.0014, 0.0013, 0.0013], [0.0255, 0.0239, 0.0186, 0.0053, 0.0029, 0.0029, 0.0027, 0.0025], [0.0198, 0.0145, 0.0077, 0.0068, 0.0068, 0.0064, 0.0047, 0.0047], [0.005, 0.0037, 0.0032, 0.0027, 0.0025, 0.0024, 0.002, 0.0016], [0.0059, 0.0049, 0.0034, 0.0034, 0.0034, 0.0028, 0.0028, 0.0028], [0.007, 0.0027, 0.0021, 0.002, 0.002, 0.0016, 0.0015, 0.0014], [0.0208, 0.0134, 0.0098, 0.0092, 0.0082, 0.0077, 0.0077, 0.0072], [0.0164, 0.0073, 0.0057, 0.0041, 0.0037, 0.0034, 0.0034, 0.0032], [0.0261, 0.0116, 0.0096, 0.009, 0.0038, 0.0033, 0.0029, 0.0029], [0.0204, 0.0085, 0.0049, 0.0049, 0.0046, 0.0043, 0.0038, 0.0028], [0.0423, 0.0291, 0.0137, 0.0107, 0.0107, 0.0094, 0.0089, 0.0083], [0.1409, 0.0168, 0.0139, 0.0139, 0.0116, 0.0075, 0.0055, 0.0045], [0.2307, 0.0583, 0.0276, 0.0215, 0.0108, 0.0079, 0.0074, 0.007], [0.1358, 0.0774, 0.0303, 0.0119, 0.0105, 0.0087, 0.0072, 0.0068], [0.1656, 0.0735, 0.021, 0.0106, 0.0093, 0.0088, 0.0082, 0.0077], [0.1975, 0.0365, 0.0222, 0.0184, 0.0134, 0.0119, 0.0111, 0.0105], [0.0953, 0.0373, 0.0309, 0.0213, 0.0156, 0.0137, 0.0137, 0.0121], [0.0629, 0.0159, 0.0091, 0.0085, 0.008, 0.0075, 0.0059, 0.0052], [0.125, 0.0297, 0.0246, 0.0217, 0.0159, 0.0149, 0.0132, 0.0103], [0.0666, 0.0315, 0.0261, 0.0245, 0.0191, 0.014, 0.0116, 0.0102], [0.0494, 0.0494, 0.03, 0.016, 0.0142, 0.0125, 0.0117, 0.0104], [0.0858, 0.0358, 0.0358, 0.0204, 0.0169, 0.0159, 0.0109, 0.0096], [0.0661, 0.0515, 0.0243, 0.0228, 0.0228, 0.0228, 0.013, 0.0101], [0.0906, 0.0663, 0.0333, 0.0294, 0.0276, 0.0215, 0.0215, 0.0157], [0.1577, 0.1018, 0.0399, 0.033, 0.031, 0.0292, 0.0227, 0.02], [0.1824, 0.1178, 0.0382, 0.0359, 0.028, 0.0247, 0.0247, 0.0232], [0.255, 0.0731, 0.0345, 0.0305, 0.0305, 0.0286, 0.0269, 0.0223], [0.2482, 0.0405, 0.0381, 0.0296, 0.0262, 0.0204, 0.0191, 0.018], [0.1944, 0.0408, 0.0408, 0.028, 0.0263, 0.0232, 0.0232, 0.0181], [0.3169, 0.1241, 0.0379, 0.0203, 0.0158, 0.0148, 0.0131, 0.0115], [0.2628, 0.1594, 0.0314, 0.0168, 0.0148, 0.0148, 0.0139, 0.0139], [0.2984, 0.2051, 0.023, 0.023, 0.0191, 0.0158, 0.0149, 0.014], [0.2323, 0.2323, 0.0295, 0.0245, 0.0191, 0.0179, 0.014, 0.0131], [0.2623, 0.2315, 0.0517, 0.0378, 0.0229, 0.0148, 0.0131, 0.0123], [0.2026, 0.1788, 0.1578, 0.0311, 0.0214, 0.0166, 0.013, 0.013], [0.1913, 0.1688, 0.1235, 0.0401, 0.0215, 0.0189, 0.0178, 0.0167], [0.192, 0.1495, 0.1164, 0.0456, 0.026, 0.026, 0.0168, 0.0158], [0.2311, 0.0905, 0.0905, 0.0428, 0.0294, 0.0215, 0.0215, 0.0202], [0.2171, 0.1025, 0.075, 0.0455, 0.0294, 0.0229, 0.0202, 0.0157], [0.2896, 0.1368, 0.0646, 0.057, 0.0238, 0.0238, 0.0185, 0.0174], [0.2555, 0.1368, 0.0732, 0.0646, 0.0392, 0.0253, 0.0174, 0.0163], [0.1338, 0.0812, 0.0673, 0.0524, 0.0408, 0.036, 0.0193, 0.0181], [0.1354, 0.0821, 0.0681, 0.0681, 0.0639, 0.0322, 0.0284, 0.025], [0.2256, 0.1207, 0.0473, 0.0444, 0.0417, 0.0368, 0.0253, 0.0238], [0.2107, 0.1128, 0.0684, 0.0442, 0.0366, 0.0366, 0.0222, 0.0173], [0.0841, 0.0655, 0.0479, 0.0479, 0.0329, 0.0273, 0.0256, 0.0137], [0.1226, 0.0511, 0.0274, 0.0177, 0.0177, 0.0166, 0.0166, 0.0156], [0.183, 0.1426, 0.0248, 0.0248, 0.0233, 0.0193, 0.0193, 0.0181], [0.2711, 0.113, 0.0605, 0.0501, 0.0268, 0.0223, 0.0196, 0.0135], [0.1147, 0.0449, 0.0397, 0.0373, 0.029, 0.029, 0.0187, 0.0137], [0.3083, 0.2721, 0.0473, 0.0473, 0.0346, 0.0287, 0.0185, 0.0174], [0.2815, 0.1935, 0.0521, 0.0489, 0.0297, 0.0262, 0.0096, 0.009], [0.5377, 0.0934, 0.0389, 0.0222, 0.0222, 0.0208, 0.0143, 0.0098], [0.1712, 0.1177, 0.0809, 0.0671, 0.0556, 0.0337, 0.0218, 0.0141], [0.1792, 0.1396, 0.0659, 0.0619, 0.0582, 0.04, 0.0243, 0.0189], [0.1899, 0.1152, 0.0843, 0.0699, 0.0544, 0.0424, 0.0374, 0.0257], [0.1378, 0.1073, 0.1073, 0.0785, 0.0651, 0.0574, 0.0476, 0.042], [0.3715, 0.0731, 0.0606, 0.0535, 0.0503, 0.0368, 0.0286, 0.0269], [0.2782, 0.2167, 0.0548, 0.0454, 0.0427, 0.0377, 0.0332, 0.0332]], "ranks": {"Rust": [65860, 102720, 89995, 42144, 21764, 45809, 71576, 44888, 61206, 51965, 28181, 49836, 39630, 31881, 20552, 20603, 20882, 48523, 58451, 38248, 42158, 62259, 31923, 18733, 22880, 21199, 16099, 13018, 10409, 7265, 6338, 7256, 10642, 20338, 28214, 35613, 20203, 25422, 26048, 44048, 30621, 51449, 48523, 53026, 33704, 54937, 40195, 45181, 22904, 51614, 83259, 122311, 94489, 116420, 119207, 108680, 61805, 40824, 41430, 31665, 33930, 24543, 14879]}}, {"pos": 406, "top": [[".", ",", "\u2013", " \u2013", ";", "?", "\u200b", "s"], [",", ".", "\u2013", " \u2013", ";", "\u200b", "s", " \u200b\u200b"], [",", ".", "\u2013", " \u2013", ";", "\u2026.", "\u2026..", "\u2026"], [" Shemale", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Guta", "\u683c\u91cc\u62c9", "\ufffd\ufffd", "ional", " \u041a\u0440\u0430\u0441\u0438", "\ufffd\ufffd"], [".", "s", ",", " \u200b\u200b", ".)", ":", "!", ".\""], [".", ",", " \u200b\u200b", "s", ":", "!", ";", "\u2026."], [".", "s", ",", "\u00bb", ".\u00bb", ".\u201d", ".\"", "\u00bb."], [".\u00bb", "ional", ".", "amente", "eworthy", " \u201e", "\u4f73\u7ee9", "s"], [".", ".\u00bb", ",", "\u00bb", " [\u2026]", "!\u00bb", " \u201e", "ional"], [",", "\u2013", ".", ";", ".\\", "\u4f73\u7ee9", "\u00a0", "s"], [" \u2013", ",", "\u2013", "\u00a0", " [\u2026]", "\u00ad", ".", " \\\""], [" \\\"", "ional", " truly", "\u4f73\u7ee9", " \u00ab", "ical", "ably", "eworthy"], [" \u00ab", "ional", " \\\"", "izable", "\u4f73\u7ee9", "ical", "ypical", "ively"], [" truly", " \u00ab", " \u2013", " \\\"", "ional", "ical", " very", "\u2013"], [" truly", " going", " even", " \\\"", " fully", " having", "s", " \""], [" very", " truly", " going", " getting", " even", " \u00ab", " amazing", " quite"], [" truly", "s", ",", " going", " getting", " really", " quite", " even"], [" truly", " getting", " incredibly", " really", " amazing", " absolutely", " going", "s"], [" truly", " incredibly", " whatsoever", " absolutely", " freaking", " really", " scary", " quite"], [" truly", " quite", " whatsoever", " even", " incredibly", " genuinely", " absolutely", " really"], [" truly", " genuinely", " arguably", "\u53ef\u8a00", "\u6bcf\u4e00\u4e2a\u4eba\u7684", "ifiable", " whatsoever", "\u8ba4\u8ba4\u771f"], ["\u6bcf\u4e00\u4e2a\u4eba\u7684", "\u53ef\u8a00", "\u4efb\u4f55\u4e8b\u60c5", "\u8ba4\u8ba4\u771f", " truly", "\u597d\u597d\u5730", "\u66f4\u4e0d\u662f", " ;;^"], [" truly", " incredibly", "\u6bcf\u4e00\u4e2a\u4eba\u7684", "\u53ef\u8a00", " whatsoever", " forever", " arguably", "\u4efb\u4f55\u4e8b\u60c5"], [" truly", " incredibly", " arguably", " genuinely", " ever", " --", " merely", " just"], [" truly", " genuinely", " whatsoever", " incredibly", " arguably", " outright", " requisite", "ifiable"], [" truly", " incredibly", " whatsoever", " arguably", " genuinely", "ifiable", " anybody", " egregious"], [" truly", " genuinely", " arguably", " incredibly", "ifiable", " outright", " whatsoever", " famously"], [" truly", " arguably", " genuinely", " incredibly", " even", " just", " outright", " ever"], [" truly", " arguably", " incredibly", " genuinely", " famously", " foundational", " outright", " iconic"], [" truly", " incredibly", " arguably", " genuinely", " foundational", " \u2014", " iconic", " famously"], [" truly", " incredibly", " arguably", " just", " genuinely", " even", " absolutely", " iconic"], [" incredibly", " truly", " arguably", " just", " genuinely", " critical", " iconic", " absolutely"], [" incredibly", " truly", " genuinely", " critical", " iconic", " absolutely", " massive", " true"], [" incredibly", " truly", " genuinely", " fundamentally", " horrific", " literally", " iconic", " purely"], [" incredibly", " truly", " genuinely", " insanely", " ANY", " horrific", " literally", " fundamentally"], [" incredibly", " truly", " genuinely", " ANY", " insanely", " purely", " simply", "\u2014not"], [" incredibly", " genuinely", " truly", " simply", "\u90a3\u4e48\u7b80\u5355", " effortless", " ANY", " mere"], [" genuinely", " simply", " incredibly", " truly", "\u90a3\u4e48\u7b80\u5355", " effortless", " mere", " merely"], [" simply", "\u90a3\u4e48\u7b80\u5355", " genuinely", " technical", " effortless", " technically", " truly", " incredibly"], [" technical", " technically", " engineering", " technological", " simply", " achievable", "technical", "\u90a3\u4e48\u7b80\u5355"], [" technical", " engineering", " technology", " technological", " tech", " technically", "technical", " simply"], [" technical", " engineering", " technology", " technological", " tech", " technically", " achievable", " hardware"], [" engineering", " technical", " technology", " technological", " technically", " achievable", " physics", " tech"], [" technical", " engineering", " achievable", " challenges", " technology", " technically", " technological", " physics"], [" technical", " engineering", " achievable", " technically", " physics", " technology", " challenges", " technological"], [" technical", " merely", " engineering", " mere", " simply", " technically", " purely", "\u90a3\u4e48\u7b80\u5355"], [" merely", " mere", " simply", " \u043f\u0440\u043e\u0441\u0442\u043e", "\u90a3\u4e48\u7b80\u5355", " technical", " \u0645\u062c\u0631\u062f", " purely"], ["\u90a3\u4e48\u7b80\u5355", " merely", " mere", " \u043f\u0440\u043e\u0441\u0442\u043e", " simply", "\u666e\u901a\u7684", " technical", " Simply"], ["\u90a3\u4e48\u7b80\u5355", " merely", " mere", " \u043f\u0440\u043e\u0441\u0442\u043e", "\u666e\u901a\u7684", " sekadar", " simply", ";**"], [";**", "\u90a3\u4e48\u7b80\u5355", " merely", " sekadar", "*;", "**;", " \u043f\u0440\u043e\u0441\u0442\u043e", " simply"], ["*;", ";**", "**;", "%;", ";}", ";</", "\u00bb;", "\u201d;"], ["*;", ";**", "**;", ";</", "%;", ";}", "\u00bb;", "\u201d;"], [";**", " achievable", "*;", "\u6280\u672f\u95ee\u9898", ";</", "\u201d;", "**;", "%;"], [";**", ";</", " achievable", "%;", " optimization", ";\"", "*;", "\u201d;"], [" optimization", " achievable", " software", " engineering", " feasibility", " optimizations", "\u505a\u4e0d\u5230", "engineering"], [" optimization", " software", " achievable", " engineering", " scalability", "\u505a\u4e0d\u5230", " Software", " optimizations"], [" software", " optimization", " UI", " Software", "\u8f6f\u4ef6\u5f00\u53d1", "\u8f6f\u4ef6\u5de5\u7a0b", " programming", " achievable"], [" optimization", " software", " Software", " UI", " optimizations", "\u8f6f\u4ef6\u5de5\u7a0b", "\u8f6f\u4ef6\u5f00\u53d1", " frontend"], [" frontend", " backend", " software", " optimization", " UI", " engineering", " Software", " programming"], [" UI", " frontend", " engineering", " software", " backend", " architecture", " optimization", "engineering"], [" UI", " engineering", " frontend", " optimization", " software", " backend", " architecture", " feasible"], [" UI", " frontend", " a", " achievable", " engineering", " impossible", " feasible", " just"], [" a", " an", " UI", " achievable", " just", " engineering", " impossible", " feasible"]], "p": [[0.6261, 0.2958, 0.0312, 0.0312, 0.0048, 0.0017, 0.0014, 0.0011], [0.4112, 0.2201, 0.1513, 0.0557, 0.0205, 0.0085, 0.0055, 0.0052], [0.6719, 0.1925, 0.1168, 0.0066, 0.0051, 0.0011, 0.0008, 0.0007], [0.0076, 0.0022, 0.0019, 0.0017, 0.0016, 0.0013, 0.0012, 0.0012], [0.2551, 0.1205, 0.0999, 0.005, 0.0034, 0.0034, 0.0028, 0.0028], [0.378, 0.2944, 0.0352, 0.0352, 0.0051, 0.0042, 0.0033, 0.0021], [0.3378, 0.1167, 0.0854, 0.0314, 0.0203, 0.0148, 0.0079, 0.0075], [0.0143, 0.0111, 0.0098, 0.0087, 0.0081, 0.0076, 0.0067, 0.0059], [0.1543, 0.0604, 0.0367, 0.0252, 0.0209, 0.0135, 0.0112, 0.0099], [0.3605, 0.0278, 0.0066, 0.0038, 0.0033, 0.0021, 0.0021, 0.0021], [0.2126, 0.1556, 0.0886, 0.0648, 0.0474, 0.0175, 0.0106, 0.0088], [0.0336, 0.0217, 0.0066, 0.0066, 0.0058, 0.0048, 0.0033, 0.0028], [0.022, 0.0182, 0.0118, 0.0052, 0.0046, 0.0043, 0.0026, 0.0022], [0.0073, 0.0061, 0.0061, 0.0047, 0.0037, 0.0035, 0.0027, 0.0024], [0.025, 0.0067, 0.0056, 0.0052, 0.0034, 0.0026, 0.0026, 0.0025], [0.0156, 0.0156, 0.0101, 0.0074, 0.0074, 0.0069, 0.0065, 0.0048], [0.0481, 0.0481, 0.0201, 0.0189, 0.0147, 0.0114, 0.0107, 0.0095], [0.0274, 0.013, 0.0122, 0.0114, 0.0084, 0.0065, 0.0054, 0.0048], [0.0245, 0.0123, 0.0062, 0.0048, 0.0045, 0.0043, 0.0038, 0.0027], [0.0707, 0.0131, 0.0079, 0.007, 0.0066, 0.0051, 0.0051, 0.0042], [0.0155, 0.0042, 0.0019, 0.0017, 0.0017, 0.0015, 0.0014, 0.0014], [0.0049, 0.003, 0.0025, 0.0021, 0.0021, 0.0017, 0.0015, 0.0013], [0.0211, 0.0047, 0.0027, 0.0025, 0.0022, 0.0016, 0.0016, 0.0016], [0.0295, 0.0035, 0.0033, 0.0029, 0.0029, 0.0027, 0.0026, 0.0024], [0.0419, 0.0128, 0.0078, 0.0068, 0.0064, 0.0042, 0.0039, 0.0037], [0.0421, 0.0129, 0.0094, 0.0078, 0.0065, 0.0042, 0.0039, 0.0033], [0.024, 0.0083, 0.0078, 0.0078, 0.0035, 0.0032, 0.0029, 0.0025], [0.0807, 0.0192, 0.0132, 0.0124, 0.0075, 0.0066, 0.0055, 0.0052], [0.0555, 0.0231, 0.0204, 0.0132, 0.0055, 0.0052, 0.0048, 0.004], [0.0331, 0.0242, 0.0227, 0.0147, 0.0114, 0.0089, 0.0079, 0.0074], [0.0798, 0.0583, 0.0189, 0.0115, 0.0108, 0.0101, 0.0089, 0.0079], [0.101, 0.0786, 0.0145, 0.0121, 0.01, 0.01, 0.0094, 0.0094], [0.0505, 0.0475, 0.0136, 0.0128, 0.0106, 0.0083, 0.0068, 0.0068], [0.1249, 0.0757, 0.0231, 0.0149, 0.009, 0.009, 0.009, 0.008], [0.1144, 0.0575, 0.0255, 0.0121, 0.01, 0.0094, 0.0073, 0.0069], [0.1175, 0.0555, 0.0246, 0.0231, 0.0124, 0.0075, 0.0075, 0.0071], [0.0403, 0.023, 0.0203, 0.0139, 0.0139, 0.0102, 0.0096, 0.009], [0.0314, 0.0295, 0.0244, 0.0216, 0.0202, 0.0115, 0.0102, 0.0102], [0.0411, 0.0341, 0.0283, 0.0234, 0.022, 0.0194, 0.0182, 0.0151], [0.0746, 0.0227, 0.0201, 0.0147, 0.0147, 0.0138, 0.0138, 0.013], [0.2205, 0.0864, 0.0558, 0.0462, 0.0338, 0.0263, 0.016, 0.011], [0.1954, 0.1724, 0.0634, 0.056, 0.0248, 0.0233, 0.0117, 0.0117], [0.1999, 0.1764, 0.0446, 0.0419, 0.0224, 0.0145, 0.012, 0.01], [0.2261, 0.1068, 0.0474, 0.0445, 0.0326, 0.0254, 0.0238, 0.0224], [0.2166, 0.1489, 0.0312, 0.0275, 0.0275, 0.0243, 0.0228, 0.0201], [0.1383, 0.1012, 0.0576, 0.0478, 0.0422, 0.0309, 0.024, 0.0199], [0.1764, 0.1374, 0.0833, 0.061, 0.0394, 0.0271, 0.0164, 0.0154], [0.1417, 0.1103, 0.0859, 0.0807, 0.0669, 0.0432, 0.0217, 0.018], [0.2366, 0.1626, 0.0818, 0.0466, 0.0386, 0.0301, 0.0265, 0.022], [0.1826, 0.1108, 0.0715, 0.0462, 0.0434, 0.0383, 0.0205, 0.0132], [0.3908, 0.3043, 0.1269, 0.0321, 0.0195, 0.0152, 0.0134, 0.0104], [0.3146, 0.3146, 0.1021, 0.0332, 0.0332, 0.0228, 0.0201, 0.0177], [0.2424, 0.0576, 0.0576, 0.0421, 0.0349, 0.024, 0.0187, 0.0165], [0.11, 0.0711, 0.0667, 0.0204, 0.018, 0.018, 0.0149, 0.0131], [0.2365, 0.1117, 0.0386, 0.0265, 0.0182, 0.0171, 0.0161, 0.0142], [0.1475, 0.1301, 0.0543, 0.0256, 0.02, 0.0187, 0.0176, 0.0146], [0.1743, 0.0683, 0.0499, 0.0322, 0.0303, 0.0236, 0.0236, 0.0222], [0.2548, 0.1985, 0.0502, 0.0416, 0.0286, 0.0286, 0.0209, 0.0153], [0.4663, 0.0918, 0.0715, 0.0631, 0.0491, 0.0298, 0.0141, 0.0132], [0.3288, 0.1553, 0.1371, 0.0571, 0.0504, 0.0445, 0.0347, 0.0088], [0.3798, 0.1583, 0.1088, 0.0312, 0.0312, 0.0258, 0.0157, 0.0138], [0.2743, 0.0891, 0.0507, 0.0349, 0.0328, 0.0328, 0.0289, 0.0272], [0.8558, 0.0483, 0.0122, 0.0074, 0.0061, 0.0058, 0.0058, 0.0051]], "ranks": {"Rust": [34595, 68089, 70888, 18899, 18624, 32160, 28776, 24535, 48896, 34349, 73743, 54605, 35597, 49804, 64342, 35412, 30836, 57707, 72148, 53309, 92567, 113603, 90552, 57182, 48095, 54097, 44285, 27376, 31422, 31475, 16504, 22129, 46177, 78210, 69783, 128211, 105178, 89145, 83190, 100607, 82249, 103452, 74286, 66606, 78745, 83569, 110839, 55729, 22517, 43849, 57499, 50708, 18252, 20829, 19286, 9967, 1195, 440, 359, 286, 246, 112, 87]}}, {"pos": 407, "top": [[".", ",", "\u2013", " \u2013", ";", "\u00a0\u00a0", "\u2026.", ",."], [" \u2013", "\u2013", ".", "\u2013and", ",", " \u200b\u200b", ";", ".\u2013"], [".", "\u2013", ",", "\u2026.", "\u2026..", " \u2013", "\u2026", ";"], [" milfs", " Shemale", " pornstar", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Guta", "aruhi", " Blowjob", " \u041a\u0440\u0430\u0441\u0438"], [".@", ".", ":.", "!.", ",.", "\u2026.", "@d", "....."], ["\u2026.", "\u2026..", "!.", " \u200b\u200b", ".", "!,", "!:", ",."], [".....", "!.", "\u2026..", " \u200b\u200b", ":.", " .....", " favorite", " \u062c\u062f\u064b\u0627"], ["sprozess", " \u062c\u062f\u064b\u0627", " Geile", " dicip", "!.", " *@", "icanos", "\u5c71\u6e56"], ["!.", " \u200b\u200b", ".", ":.", "\u2026..", "?.", ",.", "....."], [",", "!,", "!.", ".", "\u3082\u3057\u3063\u304b\u308a", "\u2026.", ",.", ":."], [".", ",", " \u2013", " ", " [\u2026]", " big", " choice", " way"], [" chance", " big", " bigger", " choice", " way", " huge", " pretty", " success"], [" big", " bigger", " huge", " chance", " choice", " success", " nice", " tough"], [" big", " huge", " bigger", " choice", " kids", " nice", " way", " tough"], [" big", " huge", " truly", " choice", " pretty", " bigger", " tough", " really"], [" big", " huge", " really", " truly", " getting", " pretty", " nice", " kids"], [" big", " huge", " really", " getting", " pretty", " bigger", " tough", " nice"], [" big", " bigger", " scary", " nasty", " huge", " nice", " really", " savvy"], [" scary", " big", " nasty", " buzz", " flashy", " savvy", " bigger", " creepy"], [" big", " bigger", " huge", " buzz", " truly", " scary", " dramatic", " really"], [" big", " hugely", " bigger", " truly", " dramatic", " choice", " tough", " genuinely"], ["\u4efb\u4f55\u4e8b\u60c5", "\u90a3\u4e48\u5bb9\u6613", " bigger", " big", "\u8e0f\u8e0f\u5b9e\u5b9e", "\u751a\u81f3\u4f1a", "\u505a\u8d77\u6765", " buzz"], [" big", " bigger", " choice", " truly", " hugely", " buzz", " challenge", " savvy"], [" choice", " truly", " just", " big", " hugely", " even", " ever", " dramatic"], [" hugely", " truly", " genuinely", " choice", " big", " myriad", " tech", " &#"], [" tech", " big", " hugely", " challenge", " choice", " bigger", " strategy", " anything"], [" tech", " big", " challenge", " technology", " hugely", " industry", " challenges", " strategy"], [" big", " truly", " ,", " just", " tech", " hugely", " effort", " anything"], [" tech", " technology", " big", " strategy", " anything", " challenge", " effort", " hugely"], [" tech", " technology", " strategy", " anything", " big", " challenge", " industry", " challenges"], [" big", " huge", " performance", " technology", " tech", " strategy", " anything", " massive"], [" big", " huge", " technology", " power", " work", " performance", " critical", " hard"], [" big", " technology", " risk", " huge", " massive", " technical", " power", " critical"], [" tech", " technical", " physics", " technology", " anything", " incredibly", " science", " strategy"], [" tech", " technical", " physics", " strategy", " incredibly", " technology", " hype", " science"], [" tech", " technical", " technology", " physics", " strategy", " technological", " \u201c", " performance"], [" tech", " technical", " technology", " performance", " technological", " technologies", " physics", " software"], [" technical", " tech", " technology", " engineering", " technological", " performance", " software", " physics"], [" technical", " tech", " technology", " problem", " engineering", " challenge", " challenges", " technological"], [" technical", " technology", " tech", " engineering", " technological", " technologies", " software", " optimization"], [" technical", " technology", " tech", " engineering", " technological", " software", " technologies", " programming"], [" technical", " engineering", " technology", " tech", " technological", " software", " technologies", " performance"], [" technical", " engineering", " technology", " tech", " technological", " software", " technologies", " performance"], [" technical", " engineering", " technology", " technological", " tech", " challenges", " performance", " problems"], [" technical", " engineering", " technology", " performance", " problem", " problems", " technological", " tech"], [" technical", " engineering", " technology", " problems", " problem", " technological", " performance", " tech"], [" technical", " engineering", " problem", " technology", " problems", " technological", " mere", " tech"], [" technical", " engineering", " problem", " technology", " problems", " tech", " mere", " challenges"], [" engineering", " technical", " technology", " tech", " technological", "\u6280\u672f\u95ee\u9898", ";**", " performance"], ["\u6280\u672f\u95ee\u9898", " engineering", " technology", ";**", "\u90a3\u4e48\u7b80\u5355", " technical", " tech", " challenge"], [";**", "\u6280\u672f\u95ee\u9898", "*;", "**;", ";}", ";*", "\u90a3\u4e48\u7b80\u5355", "%;"], ["\u6280\u672f\u95ee\u9898", ";**", " technical", "*;", " engineering", " software", ";*", "engineering"], ["\u6280\u672f\u95ee\u9898", ";**", " engineering", " optimization", " software", " technical", "*;", ";*"], [" optimization", "\u6280\u672f\u95ee\u9898", " engineering", ";**", " optimizations", " software", "engineering", " technical"], [" optimization", " engineering", " software", " optimizations", " programming", " architectural", " scalability", " usability"], [" optimization", " software", " programming", " engineering", " UI", " optimizations", " usability", " scalability"], [" UI", " software", " optimization", " feature", " programming", "-feature", " frontend", " usability"], [" UI", " software", " optimization", "UI", " frontend", " GUI", " programming", " UX"], [" UI", " frontend", " backend", " software", " optimization", "UI", " programming", " engineering"], [" UI", " frontend", " backend", " engineering", " feature", "UI", " rendering", " software"], [" UI", " frontend", " backend", " engineering", " rendering", " feature", " coding", " software"], [" UI", " frontend", " rendering", " backend", " feature", " software", " GUI", " optimization"], [" UI", " rendering", " feature", " frontend", " software", " engineering", " performance", " backend"]], "p": [[0.8799, 0.1051, 0.0086, 0.0022, 0.0015, 0.0004, 0.0004, 0.0003], [0.3238, 0.3042, 0.0412, 0.0111, 0.0104, 0.0052, 0.0041, 0.0038], [0.3642, 0.3642, 0.1518, 0.0435, 0.0264, 0.0205, 0.0097, 0.0046], [0.0074, 0.0054, 0.0042, 0.0037, 0.0031, 0.0024, 0.0023, 0.0021], [0.0242, 0.0214, 0.0138, 0.0101, 0.0074, 0.0069, 0.0061, 0.0058], [0.0599, 0.0411, 0.0341, 0.0234, 0.0183, 0.0072, 0.0052, 0.0046], [0.0117, 0.0103, 0.0097, 0.0076, 0.0063, 0.0049, 0.0046, 0.0043], [0.0032, 0.0032, 0.003, 0.002, 0.002, 0.002, 0.0019, 0.0017], [0.1136, 0.0647, 0.0608, 0.0504, 0.0253, 0.0197, 0.0106, 0.0088], [0.0263, 0.0059, 0.0055, 0.0043, 0.0033, 0.0022, 0.0022, 0.0017], [0.0458, 0.0295, 0.0216, 0.0109, 0.0102, 0.0096, 0.008, 0.0062], [0.0056, 0.0052, 0.0043, 0.0041, 0.0028, 0.0019, 0.0019, 0.0018], [0.0105, 0.0047, 0.0047, 0.0041, 0.0032, 0.0023, 0.0022, 0.0022], [0.0216, 0.014, 0.008, 0.0066, 0.0051, 0.0045, 0.0043, 0.004], [0.0372, 0.0212, 0.0199, 0.0129, 0.0069, 0.0069, 0.0065, 0.0065], [0.0511, 0.0138, 0.0121, 0.0121, 0.0095, 0.0083, 0.0074, 0.0074], [0.1037, 0.0246, 0.0231, 0.0149, 0.014, 0.0124, 0.0109, 0.0096], [0.0513, 0.0189, 0.0138, 0.0108, 0.0101, 0.0101, 0.0089, 0.0084], [0.0181, 0.017, 0.0117, 0.0071, 0.0062, 0.0062, 0.0052, 0.0043], [0.0253, 0.0077, 0.006, 0.005, 0.0041, 0.0036, 0.0036, 0.0032], [0.0064, 0.0044, 0.0036, 0.0036, 0.003, 0.0028, 0.0021, 0.0019], [0.0019, 0.0019, 0.0019, 0.0015, 0.0014, 0.0014, 0.0012, 0.0012], [0.0066, 0.0054, 0.0048, 0.0029, 0.0027, 0.0027, 0.0024, 0.0019], [0.0071, 0.0055, 0.0052, 0.0052, 0.003, 0.003, 0.0026, 0.0019], [0.0202, 0.0122, 0.0089, 0.0058, 0.004, 0.0037, 0.0037, 0.0033], [0.0169, 0.0103, 0.0091, 0.0062, 0.0052, 0.0049, 0.0043, 0.004], [0.0095, 0.0061, 0.0051, 0.0045, 0.0045, 0.0037, 0.0035, 0.0033], [0.014, 0.0103, 0.0085, 0.0085, 0.0066, 0.0055, 0.0055, 0.0052], [0.0204, 0.0075, 0.0075, 0.0071, 0.0062, 0.0062, 0.0059, 0.0055], [0.033, 0.0138, 0.0114, 0.0101, 0.0089, 0.0078, 0.0078, 0.0078], [0.0239, 0.0113, 0.01, 0.01, 0.0094, 0.0094, 0.0094, 0.0083], [0.0175, 0.0106, 0.01, 0.01, 0.0094, 0.0088, 0.0078, 0.0078], [0.0142, 0.0118, 0.0111, 0.0104, 0.0104, 0.0098, 0.0092, 0.0092], [0.0548, 0.0259, 0.0189, 0.0139, 0.0139, 0.0115, 0.0115, 0.0108], [0.0604, 0.0304, 0.0209, 0.0163, 0.0105, 0.0087, 0.0082, 0.0077], [0.226, 0.0734, 0.0689, 0.021, 0.0099, 0.0077, 0.0073, 0.0064], [0.3197, 0.0975, 0.0916, 0.015, 0.014, 0.0132, 0.0124, 0.0116], [0.2143, 0.1776, 0.0839, 0.0226, 0.0165, 0.0121, 0.0121, 0.0107], [0.4564, 0.0793, 0.0658, 0.0399, 0.0311, 0.0274, 0.0258, 0.0166], [0.4735, 0.1537, 0.1057, 0.0641, 0.044, 0.0152, 0.0143, 0.0068], [0.502, 0.1438, 0.1269, 0.077, 0.0412, 0.0195, 0.0152, 0.0063], [0.38, 0.2305, 0.1398, 0.0748, 0.0312, 0.0275, 0.0167, 0.0079], [0.3393, 0.2642, 0.1248, 0.0405, 0.0405, 0.018, 0.0169, 0.0096], [0.3456, 0.2096, 0.099, 0.0302, 0.0221, 0.0221, 0.0208, 0.0195], [0.3597, 0.2472, 0.0708, 0.0245, 0.0245, 0.0216, 0.0179, 0.0116], [0.334, 0.2026, 0.058, 0.0425, 0.0425, 0.0227, 0.0166, 0.0156], [0.3142, 0.1484, 0.0546, 0.0513, 0.0425, 0.0201, 0.0189, 0.0189], [0.2632, 0.1409, 0.0552, 0.0552, 0.043, 0.0191, 0.0179, 0.0179], [0.2534, 0.1742, 0.0726, 0.0267, 0.0251, 0.0251, 0.0143, 0.0126], [0.0811, 0.0762, 0.0434, 0.0408, 0.036, 0.036, 0.0318, 0.0117], [0.3372, 0.2045, 0.124, 0.0334, 0.026, 0.0216, 0.0148, 0.0139], [0.4167, 0.093, 0.0342, 0.0302, 0.0284, 0.0266, 0.0126, 0.0118], [0.4023, 0.1017, 0.0374, 0.033, 0.0242, 0.0156, 0.0129, 0.0114], [0.1389, 0.1082, 0.0744, 0.0699, 0.0424, 0.0291, 0.0291, 0.0156], [0.3664, 0.0818, 0.0721, 0.0637, 0.0496, 0.0265, 0.022, 0.0171], [0.1982, 0.1749, 0.1543, 0.0729, 0.0729, 0.0344, 0.0209, 0.0184], [0.3345, 0.0958, 0.0846, 0.0659, 0.0581, 0.0242, 0.0214, 0.0189], [0.8098, 0.0665, 0.0457, 0.0102, 0.0079, 0.0042, 0.0042, 0.0033], [0.7342, 0.1638, 0.0251, 0.0251, 0.0105, 0.0072, 0.0049, 0.0044], [0.9029, 0.035, 0.0129, 0.0089, 0.0054, 0.0047, 0.0042, 0.0042], [0.9213, 0.0246, 0.0102, 0.008, 0.007, 0.0038, 0.0038, 0.0033], [0.9182, 0.0314, 0.0102, 0.0079, 0.0048, 0.0033, 0.0024, 0.0023], [0.8494, 0.0615, 0.0137, 0.0137, 0.0107, 0.0094, 0.0065, 0.0051]], "ranks": {"Rust": [28704, 51909, 54785, 114480, 10253, 18990, 28579, 27718, 35870, 14918, 7734, 10349, 8064, 8612, 13186, 9391, 12950, 46426, 87070, 63800, 79177, 110208, 68393, 27551, 25415, 28610, 20459, 15366, 18607, 18157, 16283, 18402, 23568, 35150, 32872, 68546, 47239, 33394, 31761, 35227, 19347, 23696, 19985, 21961, 29833, 43025, 56658, 29874, 12620, 21890, 89740, 67872, 35212, 25664, 9101, 2905, 635, 491, 461, 171, 102, 60, 62]}}, {"pos": 408, "top": [["s", "i", " \u2013", "en", "a", "**\u2013", " |\u2013", "\u2026."], [" \u2013**", "s", "**\u2013", "ihi", " \u2013", " *\u2013", "  \r\n", "i"], ["**\u2013", " \u2013**", "s", " **\u2013", "\u2026..", " \u2013", " |\u2013", " *\u2013"], [" milfs", "sula", "enzi", "satz", "iha", " Geile", "ieli", "ihi"], ["s", "i", "ihi", "iha", " @_", "iho", "\u064a", " *@"], ["ihi", "s", "i", "iha", "sula", "\u064a", "tui", "\u064a\u064a"], ["s", "i", "ihi", "..", "\u064a", "iha", " @_", "sii"], ["s", "i", "ihi", "..", "iha", "!.", "sula", ":."], ["s", "!.", "...\u201d", ":.", "...]", "i", "[..", ".."], ["s", "i", "iha", "ihi", "sula", "ska", "sii", "ieme"], ["i", "s", "ihi", " @_", ".@", " *@", " [_", " [@"], [" **\u25a0", "sula", "satz", "iha", " **\u2022", "ihi", "ieli", "yki"], ["sula", " Geile", " milfs", " Shemale", " **\u25a0", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "sii", "\u548c\u4fe1\u606f\u5316"], ["iha", "ihi", "\u548c\u4fe1\u606f\u5316", " Geile", "sii", "sula", "ieme", " veggies"], ["i", "s", " folks", "iha", " ops", " combo", "ihi", " genre"], [" folks", "iha", "\u548c\u4fe1\u606f\u5316", "sii", " veggies", "ihi", " tech", "IU"], ["i", "s", " tech", " folks", " veggies", "ihi", "iha", " vibe"], ["iha", "ihi", "(UI", "sii", " veggies", "/UI", " carbs", "kits"], [" **\u25a0", "ihi", "iha", "sii", "(UI", "/UI", "ugi", " Geile"], ["iha", "ihi", "ugi", "sii", "/UI", "(UI", "\u5f9c", " folks"], ["i", "ihi", "|i", "iha", "ugi", " sorta", "sii", "/UI"], [" Geile", "sii", " **\u25a0", " ;;^", "iha", " milfs", ":UI", "\u548c\u4fe1\u606f\u5316"], ["sii", " **\u25a0", "iha", " ;;^", ":UI", "ihi", "\u548c\u4fe1\u606f\u5316", " Geile"], ["sii", "\u548c\u4fe1\u606f\u5316", " ;;^", "iha", "/UI", "ihi", ":UI", "\u53cd\u5012\u662f"], ["/UI", "(UI", "sii", ":UI", "iha", "\u548c\u4fe1\u606f\u5316", "ihi", "/UIKit"], [" milfs", " pornstar", " Shemale", " handjob", " Bbw", " **\u25a0", " Geile", ":UI"], [" electronics", "\u548c\u4fe1\u606f\u5316", "/UI", " toolkit", ":UI", " milfs", " Bbw", " pornstar"], [" electronics", " tech", "\u548c\u4fe1\u606f\u5316", "/UI", " toolkit", " hardware", " optics", " apps"], [" electronics", " tech", "\u548c\u4fe1\u606f\u5316", " toolkit", " gadgets", " optics", " architecture", " graphics"], [" electronics", " tech", " toolkit", " graphics", " optics", " architecture", " hardware", " gadgets"], [" electronics", " tech", " graphics", " optics", " architecture", " hardware", " politics", " toolkit"], [" tech", " complex", " electronics", " technology", " architecture", " graphics", " optics", " politics"], [" tech", " optics", " architecture", " electronics", " hardware", " complex", " graphics", " technology"], [" tech", " architecture", " optics", " tweaks", " architectures", "-centric", " meds", " hardware"], [" tech", "/UI", " tweaks", " architecture", "-centric", " physics", " optics", " meds"], [" tech", " tweaks", "-centric", " tweak", "/UI", " graphics", " glitch", " UX"], [" tech", " tweaks", " graphics", "/UI", " UI", " UX", " glitch", " hardware"], [" tech", " graphics", " UI", " tweaks", " UX", " software", " ergonom", " optimizations"], [" tech", " graphics", " UI", " aesthetics", " UX", " software", " ergonom", " tweaks"], [" UI", " graphics", " aesthetics", " tech", " architecture", " aesthetic", "/UI", " tweaks"], [" tech", " UI", " graphics", " aesthetics", " architecture", " software", " aesthetic", " hardware"], [" aesthetics", " graphics", " UI", " architecture", " aesthetic", " software", " tech", " designers"], [" aesthetics", " aesthetic", " graphics", " architecture", " UI", " software", " designers", " designer"], [" aesthetics", " aesthetic", " architecture", " graphics", " designers", " UI", " designer", " software"], [" aesthetics", " architecture", " aesthetic", " graphics", " designers", " design", " UI", " designer"], [" aesthetics", " architecture", " aesthetic", " design", " designers", " graphics", " designer", " UI"], [" aesthetics", " aesthetic", " architecture", " tweaks", " tech", " tweak", " style", " problem"], [" aesthetics", " aesthetic", " architecture", " problem", " problems", " graphics", " designers", " choices"], [" aesthetics", " designer", " designers", " aesthetic", " architecture", " problem", " graphics", "\u90a3\u4e48\u7b80\u5355"], [" problem", " choices", " tweaks", " problems", "\u90a3\u4e48\u7b80\u5355", " aesthetics", " choice", " tweaking"], [" problem", "\u6280\u672f\u95ee\u9898", " problems", "\u7684\u554f\u984c", "\u306e\u554f\u984c", "\u95ee\u9898\u4e86", "\u7684\u95ee\u9898", " issues"], [" problem", "\u6280\u672f\u95ee\u9898", " problems", " issue", "\u7684\u554f\u984c", "\u7684\u95ee\u9898", "\u306e\u554f\u984c", "\u95ee\u9898"], [" problem", " problems", "\u6280\u672f\u95ee\u9898", "\u95ee\u9898", "\u7684\u95ee\u9898", " \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b", "\u7684\u554f\u984c", "\u306e\u554f\u984c"], [" problem", " problems", "\u95ee\u9898", " issue", "/UI", "\u7684\u95ee\u9898", " \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b", "\u6280\u672f\u95ee\u9898"], [" problem", " problems", "\u95ee\u9898", "problem", " challenge", "\u554f\u984c", " \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b", " problema"], [" problem", " challenge", " problems", "\u95ee\u9898", "problem", " challenges", "/UI", " issue"], [" problem", " challenge", "/UI", " choice", "\u95ee\u9898", " problems", " issue", " optimization"], [" problem", " challenge", " issue", "\u95ee\u9898", "/UI", " optimization", "problem", " problems"], [" challenge", " problem", " issue", "\u6311\u6218", "/UI", "\u95ee\u9898", " challenges", " constraint"], [" problem", " challenge", " issue", "\u95ee\u9898", "problem", " constraint", "/UI", " optimization"], [" challenge", " problem", " issue", " constraint", " optimization", " requirement", " Challenge", " choice"], [" challenge", " problem", " issue", " constraint", " choice", " optimization", " requirement", " Challenge"], [" problem", " challenge", " issue", " constraint", " choice", " requirement", " task", " concern"]], "p": [[0.8904, 0.0938, 0.0072, 0.0005, 0.0004, 0.0004, 0.0003, 0.0003], [0.1856, 0.1743, 0.0469, 0.0343, 0.0236, 0.0208, 0.0184, 0.0134], [0.3597, 0.1409, 0.0587, 0.0404, 0.0277, 0.0245, 0.0203, 0.0191], [0.03, 0.0206, 0.0125, 0.0117, 0.0097, 0.0097, 0.0091, 0.0063], [0.4618, 0.1097, 0.0803, 0.0139, 0.0123, 0.009, 0.009, 0.0058], [0.1069, 0.0833, 0.0505, 0.0254, 0.0145, 0.0145, 0.0088, 0.0077], [0.7346, 0.1639, 0.0092, 0.0046, 0.0026, 0.0021, 0.0013, 0.0013], [0.2714, 0.1063, 0.0197, 0.0144, 0.0093, 0.0087, 0.0072, 0.0072], [0.0816, 0.032, 0.0282, 0.0265, 0.0249, 0.0234, 0.0171, 0.0161], [0.0754, 0.0379, 0.0096, 0.009, 0.0045, 0.0035, 0.0031, 0.0031], [0.1555, 0.0369, 0.0145, 0.0099, 0.006, 0.0044, 0.0044, 0.0044], [0.0115, 0.0084, 0.0058, 0.0051, 0.0035, 0.0035, 0.0031, 0.0027], [0.0083, 0.0048, 0.0042, 0.0035, 0.0035, 0.0029, 0.0027, 0.0027], [0.0055, 0.0033, 0.0033, 0.0028, 0.0028, 0.0026, 0.0026, 0.002], [0.011, 0.0075, 0.0049, 0.0043, 0.004, 0.0038, 0.0031, 0.003], [0.0065, 0.0051, 0.0037, 0.0029, 0.0029, 0.002, 0.0018, 0.0016], [0.0199, 0.0129, 0.0094, 0.0088, 0.0078, 0.0065, 0.005, 0.005], [0.0081, 0.0081, 0.0046, 0.0043, 0.0036, 0.003, 0.0026, 0.0025], [0.0105, 0.0099, 0.0087, 0.0077, 0.0047, 0.0047, 0.0039, 0.0034], [0.0089, 0.0069, 0.0061, 0.0057, 0.0057, 0.0042, 0.0024, 0.0021], [0.0052, 0.0038, 0.0036, 0.0034, 0.003, 0.0025, 0.0023, 0.0022], [0.0057, 0.0057, 0.0054, 0.0045, 0.0039, 0.0033, 0.0033, 0.0025], [0.0067, 0.0049, 0.0038, 0.0028, 0.0026, 0.0022, 0.002, 0.0019], [0.0036, 0.0023, 0.0016, 0.0015, 0.0012, 0.0012, 0.0012, 0.0012], [0.0082, 0.0041, 0.0039, 0.0025, 0.002, 0.0018, 0.0017, 0.0017], [0.0108, 0.0101, 0.0074, 0.007, 0.007, 0.0065, 0.0037, 0.0037], [0.0053, 0.005, 0.0047, 0.0039, 0.0036, 0.0034, 0.0032, 0.003], [0.0273, 0.0114, 0.01, 0.0061, 0.0051, 0.0045, 0.0042, 0.0039], [0.0267, 0.0152, 0.0076, 0.0067, 0.0063, 0.0063, 0.0056, 0.0056], [0.0324, 0.0237, 0.0087, 0.0077, 0.0077, 0.0077, 0.0056, 0.0056], [0.0514, 0.0401, 0.0147, 0.013, 0.0095, 0.0095, 0.0079, 0.007], [0.0261, 0.0245, 0.014, 0.0131, 0.0102, 0.0102, 0.009, 0.008], [0.0674, 0.0133, 0.0097, 0.0091, 0.0067, 0.0067, 0.0063, 0.0059], [0.0902, 0.0108, 0.007, 0.0065, 0.0051, 0.0048, 0.004, 0.004], [0.0911, 0.0123, 0.0096, 0.0075, 0.007, 0.0066, 0.0062, 0.0058], [0.1305, 0.0188, 0.0095, 0.0083, 0.0078, 0.0078, 0.0074, 0.0069], [0.1429, 0.016, 0.0141, 0.0125, 0.011, 0.0097, 0.0086, 0.0081], [0.1087, 0.0353, 0.0243, 0.0243, 0.0147, 0.0138, 0.0138, 0.0108], [0.0823, 0.0727, 0.0641, 0.0322, 0.0322, 0.0251, 0.0222, 0.0208], [0.107, 0.1005, 0.0833, 0.0475, 0.0419, 0.0347, 0.0239, 0.0211], [0.1171, 0.1171, 0.1034, 0.0805, 0.0627, 0.0357, 0.0357, 0.0149], [0.2056, 0.1101, 0.0971, 0.0756, 0.0667, 0.038, 0.0357, 0.0336], [0.2443, 0.1018, 0.0899, 0.0657, 0.0452, 0.0375, 0.0292, 0.0213], [0.2631, 0.0854, 0.0665, 0.0665, 0.0403, 0.0314, 0.0295, 0.0245], [0.2299, 0.1086, 0.0795, 0.0311, 0.0258, 0.0242, 0.0201, 0.0156], [0.1392, 0.0956, 0.0657, 0.0292, 0.0274, 0.02, 0.0188, 0.0129], [0.1516, 0.1042, 0.0383, 0.0298, 0.0193, 0.017, 0.015, 0.015], [0.1727, 0.072, 0.041, 0.034, 0.03, 0.0194, 0.0182, 0.0161], [0.1337, 0.0492, 0.0408, 0.0383, 0.0263, 0.0218, 0.0218, 0.0181], [0.0673, 0.0594, 0.0492, 0.0435, 0.0384, 0.0338, 0.0299, 0.0281], [0.4525, 0.101, 0.0786, 0.0477, 0.0477, 0.0328, 0.0175, 0.0155], [0.6224, 0.0842, 0.0656, 0.0213, 0.0188, 0.0146, 0.0146, 0.0146], [0.5727, 0.1448, 0.0775, 0.0196, 0.0153, 0.0135, 0.0135, 0.0119], [0.6251, 0.1231, 0.0311, 0.0189, 0.0189, 0.0114, 0.0114, 0.0101], [0.9369, 0.025, 0.0134, 0.0056, 0.0043, 0.0023, 0.0012, 0.0012], [0.8533, 0.07, 0.0156, 0.0156, 0.0074, 0.0045, 0.0035, 0.0027], [0.6493, 0.1278, 0.0604, 0.0222, 0.0135, 0.0135, 0.0119, 0.0105], [0.7199, 0.1417, 0.0246, 0.0217, 0.0169, 0.0132, 0.0062, 0.0062], [0.5819, 0.3529, 0.0176, 0.0057, 0.005, 0.0044, 0.0039, 0.0027], [0.775, 0.1959, 0.0076, 0.0025, 0.0017, 0.0015, 0.0015, 0.0012], [0.7584, 0.2173, 0.004, 0.004, 0.0017, 0.0011, 0.001, 0.001], [0.8607, 0.1165, 0.0045, 0.0035, 0.0024, 0.0014, 0.0011, 0.0011], [0.4758, 0.4758, 0.0144, 0.0087, 0.0036, 0.0027, 0.0015, 0.0015]], "ranks": {"Rust": [54571, 103144, 79410, 125927, 24081, 27554, 38335, 42158, 56713, 44940, 30606, 82111, 67465, 34944, 29590, 30416, 37497, 119458, 155978, 136252, 128095, 125039, 129006, 95256, 91798, 102874, 112579, 36339, 23664, 29215, 18724, 15373, 20284, 27313, 47025, 87688, 41646, 29869, 24656, 40983, 19215, 22731, 32012, 36838, 37879, 39079, 28134, 30064, 19827, 36874, 67776, 69914, 38957, 54913, 34570, 14759, 9431, 4308, 3776, 5750, 6370, 6695, 4651]}}, {"pos": 409, "top": [[".", ",", "\u00a0\u00a0", " \u2013", "\u2026.", "\u2013", "?", ";"], [",", " \u2013", "\u2013", ".", "??", "!!", "!", "?"], [",", ".", "\u2026", "\u2013", "?", "\u2026.", " \u2013", "!"], [" \u041a\u0440\u0430\u0441\u0438", "\uc3df", " rasseg", " \u0417\u0432\u0435", " Shemale", "\u65f6\u6377", "\ufffd\ufffd", "-------------</"], [" \u201d", "!", "\u00a0\u00a0", "!!!", " \u201c", "\u2026", ".", "bed"], [" \u201d", "!", ".", " \uff08", "\u00a0\u00a0", "\u2026.", "\uff01", "?"], [" \u201d", "\uff01", " \uff08", "!", "\uff1f", "\u3002", "!!!", "?"], ["!", "!!!", " !!!!", "!!", " !!!", " !!", " everybody", "\uff01"], ["!", "!\u201d", "!!!", " \u201d", "?", "!!", ".", "??"], ["\u00a0\u00a0", "!", ",", "\u00a0\u00a0\u00a0", " everybody", "\u00a0", " trouble", " \u00ad"], ["!", ".", "?", "\u00a0", "\u00a0\u00a0", " ", " !", " #"], [" everybody", " trouble", " problems", " !", " seriously", " problem", " **", " big"], [" trouble", " everybody", " big", " even", " problems", " seriously", " everything", " serious"], [" everybody", " just", " even", " big", " ,", " going", " huge", " really"], [" ,", " \"", " just", " ", " even", " big", " in", " for"], [" even", " just", " ,", " big", " everything", " really", " \"", " almost"], [" just", " \"", " everything", " really", " ,", " big", " even", ","], [" everything", " really", " big", " just", " anyway", " something", " getting", " going"], [" !", " everything", " stuff", " really", " anyway", " big", " something", " just"], [" everybody", " !", " ,", " everything", " just", " even", " ?", " really"], [" ,", "<|endoftext|>", " \u2014", " just", " !", " --", "  \n\n", " ?"], [" ?", " anyway", " ,", " everybody", " everything", " stuff", " !", " ---"], [" ,", " --", " ?", " ---", " !", " everybody", " just", " anyway"], [" ,", " --", " ?", " just", " ---", " everybody", " ;", " !"], [" --", " __", "  \n\n", " ,", " ---", " ?", "\n\n", " ___"], [" ___", " __", " ---", " --", " ?", " ____", " stuff", " ?**"], [" __", " ___", " ?", " ,", " ---", " --", " ____", " ..."], [" ?", " ,", " __", " ___", " --", " !", " ____", "\n\n"], [" ,", " ?", " __", " .", " !", " --", " ___", " **"], [" ,", " ?", " .", " !", " \u2014", " everything", " anyway", " something"], [" ,", " ?", " .", " !", " __", " **", " everything", " ___"], [" ,", " .", " **", " ?", " !", " everything", " just", " anyway"], [" ,", " **", " anyway", " everything", " weird", " ?", " !", " something"], [" weird", "\u2014but", " **", " \u2014", " fundamentally", " truly", " really", " anyway"], ["\u2014but", " weird", " truly", " fundamentally", " really", "\u2014not", " worse", " \u2014"], ["\u2014but", " \u2014", " weird", "\u2014not", " truly", " fundamentally", " everything", " really"], ["\u2014but", " fundamentally", " weird", "\u2014not", " \u2014", " incredibly", " everything", " truly"], [" fundamentally", " problem", "\u2014but", "\u2014not", " truly", " weird", " everything", " really"], [" problem", " problems", " Problem", " fundamentally", "/problem", "\u2014not", "\u2014but", "problem"], [" problem", " problems", " Problem", "/problem", "problem", " fundamentally", "(problem", "problems"], [" problem", " problems", " Problem", "problem", "/problem", " solving", "problems", " fundamentally"], [" problem", " problems", " Problem", "/problem", " fundamentally", " solving", "problem", "\u2014not"], [" problem", " problems", " Problem", " fundamentally", "/problem", " solving", " physics", " Problems"], [" problem", " problems", " Problem", " fundamentally", " physics", " Problems", "problems", "problem"], [" problem", " problems", " physics", " Problem", " fundamentally", " worse", "problems", "/problem"], [" problem", " problems", " physics", " Problem", " worse", " fundamentally", " anymore", " Problems"], [" problem", " problems", " anymore", "\u2014it", " physics", "problems", "\u2014not", " Problem"], [" anymore", "\u2014it", " melainkan", "\u800c\u662f", "\u2014they", " problem", " problems", "\u800c\u662f\u4e00\u4e2a"], ["\u2014it", " anymore", "**;", ";**", "\u2014they", " melainkan", "\u2014you", " ;"], [";**", "**;", ";", "\u2014it", "*;", " anymore", ";\\", "__;"], ["**;", ";**", "*;", "\uff1b", ";", "\u2014it", "\u061b", "__;"], ["**;", ";**", ";", "\u2014it", "*;", "\uff1b", "\u061b", "\u2014they"], [";", ";**", "\u2014it", "**;", "*;", "\uff1b", "\u061b", "__;"], [";", ";**", "\u2014it", "**;", "*;", "\uff1b", ";\\", "\u061b"], [";", " anymore", "\u2014it", ";**", "*;", "**;", ";\\", "\u061b"], ["\u2014it", ";", " anymore", ";**", "**;", "*;", ";\\", "\u5b83\u662f"], [";", "\u2014it", " anymore", ";**", "**;", "*;", "\u061b", ";\\"], [";", ";**", "**;", "*;", "\uff1b", "\u2014it", "\u061b", ";\\"], [";", ";**", "**;", "\u2014it", "*;", "\uff1b", "\u061b", " anymore"], [";", ";**", " ;", "**;", "\u2014it", "\uff1b", "*;", "\u061b"], [";", ";**", " ;", "\u2014it", "**;", "*;", "\u061b", "\uff1b"], [";", "\u2014it", " anymore", " ;", ";**", "*;", "**;", "\u061b"], [";", "\u2014it", " anymore", ";**", " ;", ",", "**;", "*;"]], "p": [[0.5635, 0.3873, 0.0071, 0.0071, 0.0055, 0.0055, 0.0043, 0.0043], [0.0417, 0.0346, 0.0269, 0.0174, 0.0153, 0.0112, 0.0072, 0.0072], [0.3964, 0.2725, 0.0885, 0.0781, 0.027, 0.0253, 0.0253, 0.0136], [0.0118, 0.0038, 0.0018, 0.0018, 0.0016, 0.0014, 0.0013, 0.0013], [0.032, 0.0125, 0.0118, 0.011, 0.0063, 0.0063, 0.0063, 0.0059], [0.0669, 0.0489, 0.0279, 0.0217, 0.018, 0.0159, 0.0116, 0.0109], [0.1738, 0.1633, 0.0821, 0.0681, 0.0302, 0.0235, 0.0221, 0.0208], [0.0721, 0.0411, 0.032, 0.0265, 0.0249, 0.0234, 0.022, 0.0182], [0.2199, 0.0671, 0.0433, 0.0407, 0.0317, 0.0298, 0.0298, 0.0159], [0.0463, 0.0435, 0.0435, 0.036, 0.0233, 0.0117, 0.011, 0.0097], [0.1011, 0.1011, 0.0372, 0.0349, 0.0349, 0.0328, 0.0212, 0.0187], [0.1151, 0.048, 0.0374, 0.0291, 0.0213, 0.0177, 0.0156, 0.0156], [0.0373, 0.035, 0.0241, 0.0226, 0.0176, 0.0165, 0.0165, 0.0137], [0.044, 0.0413, 0.0413, 0.0322, 0.0267, 0.0235, 0.0221, 0.0208], [0.0571, 0.0445, 0.0393, 0.0369, 0.0325, 0.0197, 0.0174, 0.0164], [0.0441, 0.0414, 0.0389, 0.0323, 0.0285, 0.0184, 0.0184, 0.0152], [0.0602, 0.0414, 0.0389, 0.0365, 0.0343, 0.0322, 0.0322, 0.0184], [0.0859, 0.0669, 0.0555, 0.046, 0.0297, 0.0217, 0.0169, 0.0169], [0.0553, 0.0519, 0.0404, 0.0404, 0.0404, 0.0335, 0.0245, 0.023], [0.0475, 0.0475, 0.0419, 0.037, 0.0348, 0.0307, 0.0307, 0.0288], [0.1353, 0.0771, 0.0364, 0.0235, 0.0221, 0.0195, 0.0183, 0.0172], [0.0671, 0.0317, 0.028, 0.0263, 0.0192, 0.0159, 0.0159, 0.015], [0.235, 0.1043, 0.1043, 0.0435, 0.0219, 0.0193, 0.0133, 0.0117], [0.3186, 0.1034, 0.052, 0.0191, 0.0124, 0.0124, 0.0116, 0.0116], [0.1876, 0.0943, 0.069, 0.0648, 0.0572, 0.0474, 0.0474, 0.0419], [0.2026, 0.1578, 0.1019, 0.0658, 0.0581, 0.0242, 0.0188, 0.0177], [0.2023, 0.2023, 0.1575, 0.0424, 0.033, 0.033, 0.0257, 0.0129], [0.2895, 0.2895, 0.094, 0.057, 0.0503, 0.0163, 0.0112, 0.0112], [0.4234, 0.2568, 0.0348, 0.0175, 0.0145, 0.0145, 0.0136, 0.0064], [0.5828, 0.1013, 0.0577, 0.0121, 0.0073, 0.0069, 0.0061, 0.0057], [0.3623, 0.1711, 0.1711, 0.0232, 0.0169, 0.014, 0.0085, 0.0066], [0.2459, 0.0622, 0.0622, 0.0515, 0.0313, 0.0243, 0.0229, 0.0157], [0.0636, 0.0562, 0.0341, 0.0249, 0.0234, 0.022, 0.0207, 0.0207], [0.0694, 0.0613, 0.0508, 0.0328, 0.0289, 0.0272, 0.024, 0.0199], [0.0942, 0.0832, 0.021, 0.0154, 0.0144, 0.0136, 0.012, 0.0106], [0.1245, 0.0488, 0.0404, 0.0216, 0.0203, 0.0203, 0.0169, 0.014], [0.059, 0.0459, 0.0296, 0.0217, 0.0191, 0.0169, 0.014, 0.014], [0.0818, 0.0387, 0.0301, 0.0234, 0.022, 0.0183, 0.0172, 0.0134], [0.4294, 0.1086, 0.0352, 0.0258, 0.0147, 0.0138, 0.013, 0.0107], [0.4866, 0.1394, 0.0375, 0.0201, 0.0177, 0.0156, 0.0101, 0.0089], [0.5996, 0.1946, 0.0383, 0.0117, 0.0086, 0.0059, 0.0059, 0.0059], [0.558, 0.2326, 0.0216, 0.0109, 0.0102, 0.0096, 0.0058, 0.0055], [0.499, 0.3027, 0.0248, 0.0133, 0.0125, 0.0097, 0.0059, 0.0041], [0.5082, 0.3493, 0.0287, 0.0093, 0.0087, 0.006, 0.0047, 0.0047], [0.4722, 0.3678, 0.0162, 0.0098, 0.0067, 0.0049, 0.0034, 0.0034], [0.465, 0.3196, 0.0159, 0.0124, 0.008, 0.0075, 0.0049, 0.004], [0.3179, 0.2805, 0.0804, 0.043, 0.0123, 0.0123, 0.009, 0.009], [0.366, 0.222, 0.1188, 0.0495, 0.0265, 0.0265, 0.0234, 0.0161], [0.409, 0.2811, 0.1328, 0.0711, 0.0336, 0.0204, 0.0055, 0.0051], [0.4722, 0.4167, 0.0302, 0.0235, 0.0207, 0.0111, 0.0086, 0.0059], [0.5764, 0.3085, 0.0536, 0.0224, 0.0224, 0.0073, 0.0027, 0.0016], [0.3747, 0.2273, 0.1562, 0.1217, 0.0738, 0.0308, 0.0047, 0.0025], [0.4478, 0.2397, 0.1867, 0.0778, 0.0253, 0.0072, 0.0039, 0.0027], [0.496, 0.3409, 0.0862, 0.0359, 0.0117, 0.008, 0.008, 0.0055], [0.5548, 0.2041, 0.1238, 0.0751, 0.0148, 0.0115, 0.0042, 0.0029], [0.6609, 0.2146, 0.0615, 0.0479, 0.0057, 0.0039, 0.0021, 0.0009], [0.8617, 0.0624, 0.0334, 0.0295, 0.0066, 0.004, 0.0005, 0.0004], [0.9936, 0.0041, 0.0009, 0.0005, 0.0003, 0.0002, 0.0002, 0.0], [0.9912, 0.0046, 0.0017, 0.0015, 0.0007, 0.0001, 0.0001, 0.0001], [0.9997, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9995, 0.0002, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [57783, 86252, 94121, 87675, 7868, 22250, 51469, 37154, 41599, 14105, 14063, 18832, 7628, 9029, 18201, 15696, 23328, 63853, 95033, 67653, 95710, 94505, 66569, 38938, 25001, 52355, 45312, 21593, 18295, 19460, 20001, 19281, 25406, 22806, 47122, 52047, 36924, 37603, 58612, 72892, 42754, 27044, 22102, 18190, 14439, 12486, 16581, 16525, 15672, 29858, 53211, 41804, 40097, 92163, 72776, 73685, 55391, 34510, 27648, 14216, 11331, 6629, 3676]}}, {"pos": 410, "top": [[".", ",", ";", "\u00a0\u00a0", "<|endoftext|>", "\u2013", "\u2022", "  \n"], ["  \n", "\u00ad", "\u00ac", ";", "\u00a0\u00a0", " \u00ad", "\u2014\"", "   \n"], [".", ";", ",", "\u2013", "[", "\u00a0\u00a0", "\u2014\"", "\""], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "---</", " milfs", " Blowjob", " ;;^", " cumshot", " Shemale", "----------</"], ["\u001f", "\u25a0\u25a0", "\u06c0", "\u25a0", "\u2014\"", " \u25a0", "===\"", "\u00a0\u00a0"], ["utable", "\u00a0\u00a0", "\u001f", "\u25a0\u25a0", "\u0670", "neighbor", "\u06c0", "\u2014\""], ["\u00ac", "  \n", "\u001f", "\u25a0\u25a0", "\u00a0\u00a0", "\u25a0", " \u2019", "\u06c0"], ["utable", "  \n", "   \n", "\u00ac", "\u06c0", "\u25a0\u25a0", "  \t\n", "\u001f"], ["  \n", "   \n", " [`", "\u00adi", "utable", "\u00ac", "\u00a0\u00a0", "\u201a"], [" \u00ad", "\u00adi", "\u00ac", "\u2014\"", "\u00a0\u00a0", "\u06c0", "\u00ading", "\u001f"], [" \u00ad", "\u00ac", "\u001f", " \u2014", "\u00a0\u00a0", "\u00adi", "\u318d", " \u25a0"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u318d", "utable", "ighborhood", "\u0ecd", " ;;^", "\u6237\u6653", "\u00adi"], ["utable", "ighborhood", "\u318d", "\u0ecd", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u00adi", "itize", "\u6237\u6653"], ["ighborhood", "\u318d", "\u0ecd", "\u00adi", "utable", " \u00ad", "\u064a\u0631\u064b\u0627", "itize"], [" \u00ad", "\u318d", "\u00ac", "\u2014even", " \u2014", "\u00adi", "ighborhood", "\u70b9\u513f"], ["ighborhood", " \u00ad", "\u2014even", "\u0ecd", "\u318d", " \u2014", "\u00f4nio", " \u062a\u0645\u0627\u0645\u064b\u0627"], [" \u00ad", " incredibly", "\u00ad", "\u2014even", " even", "\u00adi", " \u062a\u0645\u0627\u0645\u064b\u0627", "\u00ac"], [" \u062a\u0645\u0627\u0645\u064b\u0627", "\u00adi", "ighborhood", "utable", " \u00ad", " incredibly", "\u001f", " billions"], [" incredibly", "\u2014even", " \u062a\u0645\u0627\u0645\u064b\u0627", "\u00adi", " \u00ad", "utable", "\u70b9\u513f", " billions"], ["\u2014even", " incredibly", " \u2014", " even", " truly", " \u00ad", " genuinely", "\u2014or"], [" \u2014", "\u2014even", " genuinely", " \u00ad", " truly", " incredibly", "\u2014and", " even"], [" ;;^", ".semantic", " Teixe", "ighborhood", " \u0627\u0631\u0627\u0626", "\u662f\u5317\u4eac", "\u6237\u6653", " \u062a\u0645\u0627\u0645\u064b\u0627"], [" incredibly", " truly", " \u0627\u0631\u0627\u0626", "\u2014even", "\u7b80\u76f4\u5c31\u662f", " ;;^", "\u304f\u3060\u3055\u3044\u307e\u305b", ".semantic"], [" it", " \u00ad", " truly", " incredibly", " genuinely", "\u2014even", "\u5b83\u90a3", " \u2014"], ["  \n\n", " \u00ad", "&nbsp", " \u2014", "   \n\n", "\u2014even", " truly", " it"], [" incredibly", " \u2014", " \u00ad", " truly", "\u2014even", " _____", "  \n\n", "\u2014or"], [" \u2014", "\u2014even", " \u00ad", " incredibly", " truly", "\u2014or", "\u2014and", " _____"], ["  \n\n", " \u2014", " \u00ad", " truly", " \n\n", " incredibly", " \u2019", " arguably"], [" \u2014", "  \n\n", " incredibly", " \u00ad", " fundamentally", " truly", " _____", "\u2014and"], [" \u2014", " incredibly", " it", " massive", " fundamentally", " massively", " truly", " \u00ad"], [" massive", " incredibly", " \u2014", " ...", " it", " huge", " truly", " deeply"], [" massive", " incredibly", " huge", " \u2014", " it", " just", " deeply", " fundamentally"], [" \u2014", " massive", " incredibly", " deeply", " massively", " fundamentally", " huge", " truly"], [" fundamentally", " incredibly", " massive", " relentless", " massively", " \u2014", " deeply", " relentlessly"], [" incredibly", " massively", " massive", " relentlessly", " brutally", " fundamentally", " relentless", " deeply"], [" incredibly", " relentless", " brutally", " fundamentally", " relentlessly", " massively", " massive", " truly"], [" fundamentally", " relentless", " relentlessly", " incredibly", " brutally", " massively", " aggressively", " deeply"], [" fundamentally", " relentless", " relentlessly", " massively", " massive", " incredibly", " brutally", " deeply"], [" fundamentally", " relentless", " relentlessly", " massively", " massive", " incredibly", " brutally", " deeply"], [" fundamentally", " relentless", " engineering", " massively", " massive", " relentlessly", " brutally", " aggressively"], [" engineering", " fundamentally", " hardware", " relentless", " technical", " massive", " massively", " physics"], [" engineering", " fundamentally", " physics", " hardware", " technical", " relentless", " massive", " infrastructure"], [" fundamentally", " engineering", " physics", " hardware", " massive", " technical", " relentless", " aggressively"], [" fundamentally", " engineering", " physics", " technical", " massive", " hardware", " relentless", " infrastructure"], [" fundamentally", " engineering", " physics", " massive", " technical", " relentless", " infrastructure", " hardware"], [" fundamentally", " engineering", " physics", " purely", " massive", " relentless", " technical", " pure"], [" fundamentally", " engineering", " physics", " purely", " massive", " relentless", " massively", " pure"], [" fundamentally", " physics", " engineering", " purely", " massive", " relentless", " hardware", " infrastructure"], [" **", " physics", " fundamentally", " purely", " relentless", " engineering", " catastrophic", " logistical"], ["\u5b83\u662f\u4e00\u4e2a", " physics", "\u5b83\u662f", " **", " logistical", "\u8fd9\u662f\u4e00\u573a", "\u7b80\u76f4\u662f", " catastrophic"], [";**", "\u5b83\u662f\u4e00\u4e2a", "\u5b83\u662f", "**;", "\u5b83\u5c31\u662f", "*;", "\u5b83\u5c06", "\u2014it"], ["\u5b83\u662f", "\u5b83\u662f\u4e00\u4e2a", "\u5b83\u5c31\u662f", " it", "\u5b83\u662f\u4e00\u79cd", "\u2014it", "\u5b83\u5728", "\u5b83"], ["\u5b83\u662f", "\u5b83\u662f\u4e00\u4e2a", "\u5b83\u5c31\u662f", " it", "\u2014it", "\u5b83\u662f\u4e00\u79cd", "\u305d\u308c\u306f", ";**"], ["\u5b83\u662f", "\u5b83\u662f\u4e00\u4e2a", " it", "\u5b83\u5c31\u662f", "\u2014it", "\u5b83\u662f\u4e00\u79cd", "\u305d\u308c\u306f", "\u5b83"], ["\u5b83\u662f", "\u5b83\u662f\u4e00\u4e2a", " it", "\u5b83", "\u305d\u308c\u306f", "\u5b83\u5c31\u662f", " \u043e\u043d\u043e", "\u5b83\u662f\u4e00\u79cd"], ["\u5b83\u662f", " it", "\u5b83\u662f\u4e00\u4e2a", "\u5b83", " \u043e\u043d\u043e", "\u5b83\u5c31\u662f", "\u5b83\u662f\u4e00\u79cd", " n\u00f3"], ["\u5b83\u662f", " it", "\u5b83\u662f\u4e00\u4e2a", "\u5b83", " \u043e\u043d\u043e", "\u5b83\u5c31\u662f", "\u5b83\u662f\u4e00\u79cd", " n\u00f3"], ["\u5b83\u662f", " it", "\u5b83\u662f\u4e00\u4e2a", "\u5b83", " \u043e\u043d\u043e", "\u5b83\u5c31\u662f", " n\u00f3", "\u5b83\u662f\u4e00\u79cd"], ["\u5b83\u662f", " it", "\u5b83\u662f\u4e00\u4e2a", " \u043e\u043d\u043e", "\u5b83", " n\u00f3", "\u5b83\u5c31\u662f", "\u5b83\u662f\u4e00\u79cd"], [" it", "\u5b83\u662f", "\u5b83\u662f\u4e00\u4e2a", " \u043e\u043d\u043e", "\u5b83", " It", " n\u00f3", "\tit"], [" it", "\u5b83\u662f", "\u5b83\u662f\u4e00\u4e2a", " \u043e\u043d\u043e", "\u5b83", " It", "_it", "\tit"], [" it", "\u5b83\u662f", "\u5b83\u662f\u4e00\u4e2a", " It", " \u043e\u043d\u043e", "_it", "\tit", "it"], [" it", " It", "\u5b83\u662f\u4e00\u4e2a", "\u5b83\u662f", " \u043e\u043d\u043e", "it", "_it", "It"]], "p": [[0.6241, 0.2026, 0.0957, 0.0452, 0.0057, 0.0045, 0.002, 0.002], [0.2433, 0.178, 0.0615, 0.0578, 0.0397, 0.0273, 0.0166, 0.0166], [0.275, 0.275, 0.2142, 0.0509, 0.035, 0.0187, 0.0121, 0.0107], [0.0151, 0.0111, 0.0076, 0.0067, 0.0056, 0.0049, 0.0043, 0.0041], [0.093, 0.0439, 0.0364, 0.025, 0.0221, 0.0134, 0.0126, 0.0118], [0.026, 0.0202, 0.0202, 0.007, 0.0066, 0.0051, 0.0045, 0.0042], [0.083, 0.0646, 0.0325, 0.0223, 0.0223, 0.021, 0.0174, 0.0153], [0.0648, 0.0369, 0.0211, 0.0113, 0.0082, 0.0068, 0.0068, 0.0068], [0.1291, 0.061, 0.0505, 0.037, 0.0326, 0.0154, 0.0136, 0.0113], [0.0793, 0.033, 0.0274, 0.02, 0.0177, 0.0138, 0.0078, 0.0069], [0.2308, 0.0584, 0.0515, 0.0333, 0.0259, 0.0202, 0.0178, 0.0139], [0.0128, 0.01, 0.0094, 0.0073, 0.0044, 0.0044, 0.0039, 0.0034], [0.012, 0.012, 0.0093, 0.0073, 0.0068, 0.0064, 0.005, 0.0034], [0.0158, 0.0085, 0.008, 0.0062, 0.0051, 0.0045, 0.004, 0.0033], [0.0449, 0.01, 0.0073, 0.0073, 0.0042, 0.0042, 0.0027, 0.0022], [0.0064, 0.006, 0.0034, 0.0032, 0.0027, 0.0025, 0.0022, 0.0021], [0.0742, 0.0069, 0.0065, 0.0051, 0.0039, 0.0037, 0.0035, 0.0033], [0.0137, 0.0094, 0.0094, 0.0088, 0.0065, 0.0035, 0.0029, 0.0025], [0.0137, 0.0094, 0.0083, 0.0044, 0.0039, 0.0032, 0.003, 0.0029], [0.0429, 0.0168, 0.0139, 0.0102, 0.009, 0.0079, 0.007, 0.0051], [0.0235, 0.0195, 0.0086, 0.0081, 0.0081, 0.0067, 0.0056, 0.0036], [0.0107, 0.0019, 0.0017, 0.0017, 0.0014, 0.0014, 0.0014, 0.0012], [0.0038, 0.0025, 0.0023, 0.0022, 0.0022, 0.002, 0.0018, 0.0018], [0.0109, 0.009, 0.0085, 0.0055, 0.0038, 0.0035, 0.0033, 0.0033], [0.1603, 0.1173, 0.0358, 0.0279, 0.014, 0.0132, 0.0116, 0.0096], [0.0249, 0.022, 0.0171, 0.0171, 0.0171, 0.0151, 0.0086, 0.0063], [0.0834, 0.0288, 0.0271, 0.0154, 0.012, 0.0113, 0.0113, 0.01], [0.1629, 0.0988, 0.0467, 0.0207, 0.0207, 0.0183, 0.0151, 0.0142], [0.1363, 0.0776, 0.0304, 0.0222, 0.0222, 0.0196, 0.0184, 0.0173], [0.2553, 0.0305, 0.0286, 0.0269, 0.0197, 0.0153, 0.0144, 0.0127], [0.0584, 0.0548, 0.0455, 0.0427, 0.0294, 0.0294, 0.0215, 0.0167], [0.0515, 0.0332, 0.0332, 0.0312, 0.0259, 0.0202, 0.0189, 0.0147], [0.0725, 0.0725, 0.0681, 0.0322, 0.0322, 0.0322, 0.0284, 0.0183], [0.1246, 0.0626, 0.0588, 0.0519, 0.0431, 0.0404, 0.0357, 0.0335], [0.0743, 0.0616, 0.0543, 0.051, 0.0479, 0.045, 0.045, 0.0351], [0.0876, 0.0602, 0.0602, 0.0531, 0.0499, 0.0469, 0.0469, 0.0365], [0.1371, 0.0647, 0.0608, 0.0608, 0.0474, 0.0445, 0.0347, 0.0287], [0.2207, 0.0594, 0.0408, 0.0408, 0.0408, 0.0281, 0.0264, 0.0219], [0.2129, 0.0649, 0.0394, 0.0326, 0.0326, 0.0254, 0.0254, 0.0239], [0.2351, 0.0595, 0.0264, 0.0248, 0.0248, 0.0205, 0.0193, 0.0181], [0.1388, 0.1225, 0.0398, 0.0398, 0.033, 0.0273, 0.0227, 0.0213], [0.2264, 0.1763, 0.0649, 0.0475, 0.0224, 0.0224, 0.0145, 0.0145], [0.245, 0.1486, 0.0453, 0.0353, 0.0228, 0.0214, 0.0157, 0.0157], [0.2235, 0.1741, 0.0726, 0.0303, 0.0251, 0.0251, 0.0208, 0.0152], [0.1513, 0.1335, 0.0671, 0.0317, 0.0298, 0.0181, 0.0181, 0.0181], [0.1859, 0.0878, 0.0775, 0.0442, 0.0366, 0.0184, 0.0173, 0.0143], [0.1965, 0.0529, 0.0467, 0.0467, 0.0342, 0.0235, 0.0161, 0.0161], [0.1563, 0.1144, 0.054, 0.0349, 0.024, 0.024, 0.0175, 0.0155], [0.1744, 0.0727, 0.0642, 0.0196, 0.0173, 0.0173, 0.0126, 0.0119], [0.0771, 0.0724, 0.0439, 0.0388, 0.0172, 0.0172, 0.0162, 0.0126], [0.529, 0.1516, 0.1338, 0.0492, 0.0117, 0.011, 0.0103, 0.0086], [0.6715, 0.2799, 0.0179, 0.0066, 0.0035, 0.0029, 0.0015, 0.0014], [0.8555, 0.1312, 0.0031, 0.0021, 0.0019, 0.0017, 0.0005, 0.0004], [0.8405, 0.1461, 0.0044, 0.0024, 0.0008, 0.0006, 0.0005, 0.0005], [0.9662, 0.0257, 0.0065, 0.0004, 0.0002, 0.0002, 0.0002, 0.0002], [0.8302, 0.1443, 0.0195, 0.0044, 0.0011, 0.0001, 0.0001, 0.0001], [0.5971, 0.3622, 0.0297, 0.0066, 0.0028, 0.0004, 0.0002, 0.0002], [0.5112, 0.4512, 0.0255, 0.0064, 0.0044, 0.0002, 0.0002, 0.0002], [0.6084, 0.369, 0.0162, 0.0028, 0.0025, 0.0002, 0.0002, 0.0001], [0.9719, 0.0259, 0.0013, 0.0004, 0.0003, 0.0001, 0.0, 0.0], [0.9982, 0.0015, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9975, 0.0015, 0.0006, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9992, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [51841, 150732, 122837, 32344, 25329, 17894, 50438, 46171, 67902, 57584, 74318, 84439, 64865, 71756, 87580, 82366, 67940, 122646, 160428, 131008, 162707, 149325, 180486, 117962, 76463, 80187, 52932, 31396, 38037, 29570, 18910, 12700, 20590, 34514, 33844, 34364, 34863, 28654, 24613, 24169, 12626, 9644, 8726, 13469, 8640, 9873, 12565, 8538, 6754, 17101, 32142, 42032, 34199, 49485, 34563, 38735, 6499, 3397, 4006, 2836, 2377, 951, 547]}}, {"pos": 411, "top": [[",", ".", "\u2013", ";", "\u00a0", " \u2013", "\u2026.", "\u2026"], ["\u2013", ".", ",", " \u2013", "ting", "\u2013and", ".\u2013", ";"], [",", "\u2013", ".", "\u2026", "\u2026.", " \u2013", ".\u2013", "\u2026.."], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " milfs", " Blowjob", " Pubbl", "abria", " Strec", "ropy"], ["ting", "rogen", "zer", "ters", "(IT", "repid", "ropy", "rost"], [".", ",", "ting", "!", "(IT", " \u201d", "\u2026.", "!."], ["ting", ".", ",", "!", " \u201d", " \u2019", "!\u201d", "\u2019s"], [".", "ting", ",", "!", "!.", "te", "inerary", "!!"], [".", ",", "!", "!.", "ting", "!\u201d", ".\u201d", ":"], [",", ".", "!", ";", "\u2013", "\u00a0", "\u2014", "\ufffd"], [",", ".", "!", " ", "\u00a0", ";", "ting", " \u00ad"], ["ting", " fairly", " pretty", " effortlessly", " barely", " just", " rather", " \u2019"], ["ting", " fairly", " crucial", " effortlessly", " barely", " just", " pretty", " easily"], ["ting", " effortlessly", " just", " fairly", " crucial", " easily", ",", " savvy"], [" just", " truly", " arguably", " effortlessly", " essentially", " genuinely", "ting", " barely"], [" just", " effortlessly", " arguably", " essentially", " \u2019", " even", " largely", " incredibly"], [" just", ",", " arguably", " essentially", " effortlessly", " largely", " much", " even"], [" savvy", " effortlessly", "ting", " arguably", " just", "\u307e\u308b\u3067", " largely", " seamlessly"], [" arguably", " effortlessly", " largely", " savvy", " heavily", "\u00a3o", "ting", " seamlessly"], [" arguably", " largely", " notably", " effortlessly", " heavily", " ultimately", " hugely", " swiftly"], ["<|endoftext|>", " \u2014", " swiftly", " \n\n", "\u2014", " largely", " though", " notably"], [" ''", " arguably", " \u2019", " effortlessly", " notably", " hugely", " swiftly", " heavily"], [" ''", " \u2019", " arguably", " notably", " ``", " heavily", " swiftly", " effortlessly"], [" ''", " \u2019", " much", " notably", " largely", " heavily", " ultimately", " ,"], [" ''", " arguably", " --", " \u2019", " hugely", " notably", " {{--<", " swiftly"], [" hardware", " \u2019", " **", " hugely", " arguably", " heavily", " tech", " faster"], [" hardware", " aerospace", " overclock", " tech", " technology", " seamlessly", " glitches", " multit"], [" heavily", " hardware", " speed", " much", " \u2019", " ,", " arguably", " ''"], [" hardware", " technology", " speed", " tech", " heavily", " faster", " efficiency", " engineering"], [" hardware", " technology", " tech", " speed", " efficiency", " faster", " technologies", " workflows"], [" technology", " hardware", " tech", " fast", " speed", " modern", " heavily", " complex"], [" technology", " hardware", " fast", " speed", " complex", " modern", " faster", " tech"], [" technology", " fast", " speed", " hardware", " complex", " modern", " heavily", " quickly"], [" hardware", " workflows", " technology", " tech", " optimized", " seamlessly", " infrastructure", " faster"], [" hardware", " workflows", " optimized", " tech", " seamlessly", " automation", " meticulously", " infrastructure"], [" hardware", " workflows", " optimized", " \u2026", " \u2014", "\u2011", " complex", " optimization"], [" hardware", " optimized", " workflows", " optimization", " optimizations", " GPU", " speed", " software"], [" hardware", " optimized", " workflows", " optimization", " software", " directly", " architecture", " optimizations"], [" hardware", " workflows", " optimized", " optimization", " architecture", " GPU", " pixel", " animation"], [" workflows", " hardware", " optimization", " optimized", " workflow", " bottleneck", " GPU", " sync"], [" GPU", " workflows", " hardware", " optimized", " bottleneck", " optimization", " CPU", " workflow"], [" GPU", " workflows", " hardware", " optimized", " CPU", " optimization", " workflow", " optimizations"], [" workflows", " optimized", " optimization", " GPU", " optimizations", " hardware", " animation", " workflow"], [" workflows", " optimized", " optimization", " workflow", " optimizations", " GPU", " hardware", " bottleneck"], [" workflows", " optimization", " bottleneck", " workflow", " optimized", " GPU", " hardware", " optimizations"], [" workflows", " optimization", " bottleneck", " optimized", " sync", " workflow", " syncing", " hardware"], [" workflows", " bottleneck", " optimization", " workflow", " sync", " optimized", " avoid", " hardware"], [" bottleneck", " workflows", " sync", " avoid", " avoidance", " workflow", " optimization", " hardware"], [" bottleneck", " syncing", " hardware", " sync", " synced", " avoidance", " optimization", " workflows"], [" bottleneck", " syncing", " avoidance", " workflows", "-sync", " workflow", " framerate", "avoid"], [" bottleneck", " hardware", " syncing", " synchronization", "-sync", " optimization", " avoidance", " workflow"], [" bottleneck", " CPU", " hardware", " GPU", " optimization", " syncing", " backend", " cpu"], [" bottleneck", " CPU", " GPU", " hardware", " physics", " optimization", " syncing", " throughput"], [" bottleneck", " CPU", " hardware", " GPU", " shader", " throughput", " physics", "CPU"], [" GPU", " shader", " bottleneck", " CPU", " renderer", " hardware", " threading", " thread"], [" GPU", "GPU", " CPU", " shader", " gpu", " bottleneck", " renderer", "ryo"], [" GPU", " renderer", " shader", "GPU", " rendering", "\u6e32\u67d3", "/renderer", " Rendering"], [" GPU", " shader", "GPU", " renderer", "/renderer", " rendering", " gpu", "\u6e32\u67d3"], [" GPU", " renderer", "GPU", " thread", " shader", " batching", "/renderer", " thermal"], [" GPU", "GPU", " is", " thread", " CPU", " gpu", " renderer", " shader"], [" is", " GPU", " thermal", "GPU", " CPU", " thread", " shader", "thermal"], ["\u2019s", "'s", " is", " GPU", " thermal", " \u2019", "GPU", "thermal"], ["\u2019s", "'s", "\u2019", "\u2019S", "\u2019a", " GPU", " thermal", " is"]], "p": [[0.5879, 0.4041, 0.004, 0.0011, 0.001, 0.0004, 0.0004, 0.0001], [0.5479, 0.1385, 0.0789, 0.0697, 0.0155, 0.0137, 0.0069, 0.0033], [0.3881, 0.3023, 0.2667, 0.0133, 0.0063, 0.0046, 0.0043, 0.0043], [0.0154, 0.0136, 0.0053, 0.0042, 0.0032, 0.0029, 0.0025, 0.0024], [0.2538, 0.0064, 0.0056, 0.0053, 0.0049, 0.0041, 0.0034, 0.0032], [0.2078, 0.1342, 0.1184, 0.0117, 0.0055, 0.0052, 0.0036, 0.0028], [0.3136, 0.2155, 0.058, 0.0311, 0.0177, 0.0039, 0.0037, 0.0037], [0.1246, 0.1171, 0.1171, 0.0553, 0.0096, 0.0062, 0.0051, 0.0045], [0.7467, 0.1298, 0.0541, 0.01, 0.0061, 0.0047, 0.0016, 0.0014], [0.9776, 0.0048, 0.0015, 0.0015, 0.0007, 0.0006, 0.0003, 0.0002], [0.8738, 0.0361, 0.011, 0.0091, 0.0059, 0.0032, 0.0023, 0.0016], [0.0927, 0.0125, 0.0052, 0.0052, 0.0043, 0.0038, 0.0034, 0.0032], [0.0874, 0.0104, 0.0076, 0.0072, 0.0053, 0.0049, 0.0046, 0.0036], [0.045, 0.0089, 0.0065, 0.0047, 0.0039, 0.0039, 0.0039, 0.0037], [0.0195, 0.0126, 0.0111, 0.0111, 0.0098, 0.0076, 0.0072, 0.0067], [0.0298, 0.0159, 0.0159, 0.0109, 0.0085, 0.0075, 0.0075, 0.0075], [0.0408, 0.0299, 0.016, 0.011, 0.011, 0.0091, 0.0091, 0.0086], [0.0117, 0.0104, 0.0081, 0.0059, 0.0036, 0.0034, 0.003, 0.0028], [0.0092, 0.0067, 0.0063, 0.003, 0.0028, 0.0026, 0.0026, 0.0025], [0.0094, 0.0088, 0.0061, 0.0057, 0.0057, 0.0044, 0.0044, 0.0039], [0.6332, 0.0123, 0.0043, 0.0029, 0.0029, 0.0029, 0.0024, 0.0021], [0.0221, 0.0076, 0.0072, 0.006, 0.0049, 0.0049, 0.0034, 0.0034], [0.2043, 0.0244, 0.0131, 0.0115, 0.0108, 0.0079, 0.007, 0.0062], [0.0346, 0.0269, 0.0163, 0.0153, 0.0127, 0.0119, 0.0119, 0.0112], [0.0204, 0.0159, 0.0132, 0.0132, 0.0116, 0.0116, 0.0102, 0.008], [0.0119, 0.0064, 0.0056, 0.0047, 0.0047, 0.0039, 0.0039, 0.0036], [0.0197, 0.0099, 0.005, 0.0047, 0.0034, 0.0034, 0.0034, 0.0034], [0.026, 0.0216, 0.0139, 0.0139, 0.0131, 0.0131, 0.0123, 0.0108], [0.0693, 0.0225, 0.0211, 0.0199, 0.0187, 0.0088, 0.0083, 0.0069], [0.0817, 0.0598, 0.0363, 0.0234, 0.0161, 0.0151, 0.0133, 0.0125], [0.0662, 0.0585, 0.0259, 0.0229, 0.0229, 0.0229, 0.0178, 0.0157], [0.0584, 0.0293, 0.0293, 0.0276, 0.0259, 0.0215, 0.0157, 0.0139], [0.033, 0.031, 0.0257, 0.0241, 0.0188, 0.0188, 0.0121, 0.0121], [0.1294, 0.0737, 0.0371, 0.0255, 0.0255, 0.0165, 0.0145, 0.0113], [0.1674, 0.0791, 0.0351, 0.0241, 0.0227, 0.0146, 0.0137, 0.0121], [0.1169, 0.038, 0.0191, 0.014, 0.0123, 0.0116, 0.0109, 0.0102], [0.222, 0.0636, 0.034, 0.0249, 0.0249, 0.0194, 0.0142, 0.0118], [0.1422, 0.0557, 0.0383, 0.028, 0.0247, 0.0141, 0.0141, 0.0132], [0.1438, 0.0467, 0.0412, 0.025, 0.0221, 0.0172, 0.0172, 0.0172], [0.1133, 0.0829, 0.0269, 0.0269, 0.0269, 0.0253, 0.0238, 0.0238], [0.1743, 0.0876, 0.0499, 0.0343, 0.0303, 0.0303, 0.0284, 0.0267], [0.1443, 0.1274, 0.0469, 0.0414, 0.0343, 0.0322, 0.0267, 0.0236], [0.1142, 0.1073, 0.0693, 0.0507, 0.0476, 0.0371, 0.0307, 0.0271], [0.122, 0.0788, 0.074, 0.0396, 0.0372, 0.0328, 0.024, 0.0212], [0.122, 0.0653, 0.0576, 0.0576, 0.0542, 0.024, 0.024, 0.0212], [0.0879, 0.0604, 0.0604, 0.0501, 0.0366, 0.0344, 0.0304, 0.0285], [0.0767, 0.0636, 0.0495, 0.0386, 0.032, 0.032, 0.0282, 0.0265], [0.0629, 0.046, 0.0316, 0.0297, 0.0279, 0.0279, 0.0246, 0.0246], [0.0803, 0.0404, 0.0216, 0.0216, 0.0203, 0.0191, 0.0168, 0.0158], [0.181, 0.0158, 0.014, 0.0109, 0.0102, 0.0075, 0.0075, 0.0075], [0.1124, 0.0184, 0.0162, 0.0087, 0.0068, 0.0068, 0.0068, 0.0063], [0.1478, 0.0544, 0.031, 0.0166, 0.0156, 0.0121, 0.0107, 0.0089], [0.7013, 0.0308, 0.0225, 0.0225, 0.0088, 0.0083, 0.005, 0.0047], [0.4626, 0.0709, 0.0519, 0.0519, 0.014, 0.0116, 0.0109, 0.0096], [0.1287, 0.1136, 0.1136, 0.0885, 0.0238, 0.0224, 0.0224, 0.0154], [0.5793, 0.0835, 0.042, 0.0307, 0.0211, 0.0106, 0.01, 0.0078], [0.2695, 0.0725, 0.064, 0.0565, 0.0468, 0.0251, 0.0221, 0.0208], [0.2425, 0.1667, 0.1219, 0.074, 0.0421, 0.0212, 0.0165, 0.0146], [0.2018, 0.115, 0.1015, 0.0578, 0.0351, 0.0351, 0.0291, 0.0188], [0.5454, 0.1379, 0.0421, 0.0289, 0.0199, 0.0187, 0.0145, 0.0137], [0.4557, 0.2764, 0.0617, 0.0398, 0.0156, 0.0083, 0.0074, 0.0069], [0.8457, 0.1297, 0.0044, 0.0042, 0.0037, 0.0014, 0.0007, 0.0004], [0.9925, 0.0063, 0.0003, 0.0002, 0.0001, 0.0001, 0.0, 0.0]], "ranks": {"Rust": [15098, 89515, 49100, 9228, 3822, 4971, 11486, 6956, 15709, 6131, 4964, 3947, 1793, 1717, 3683, 2580, 3184, 11566, 13799, 16592, 13261, 6227, 4239, 3346, 2298, 1679, 1433, 1257, 1040, 1306, 1994, 4819, 8270, 12270, 10327, 10409, 2193, 2842, 2846, 8056, 3074, 3463, 3653, 5882, 6822, 7777, 6255, 5001, 3965, 14849, 9908, 9363, 12962, 15140, 14089, 7503, 1087, 1114, 444, 733, 307, 316, 284]}}, {"pos": 412, "top": [[" \u2013", "\u2013", "i", "\u2026", "\u2026.", "  \n", "**\u2013", "\uff08"], [" \u2013", "**\u2013", "  \r\n", "\u2026\u201d", "\uff0e", "\u2019**", "\uff0d", "\uff08"], [" \u2013", "\u2026\u201d", "\u2013", "\u2026", "**\u2013", "\uff0e", "\u2026**", "\uff0c"], ["  \r\n", "\u2019**", "\uff0d", " **\u2018", " \u2019", "\uff3f", " \r\n", "\u2026**"], ["i", "  \r\n", " \u2019", "\u2026\u201d", "\uff0e", "  \n\n", "\uff0d", "  \n"], ["  \r\n", "\u2026\u201d", "i", " \u2019", "  \n", "\uff0c", "  \n\n", "\u2026"], ["i", "\u2026\u201d", "  \n", "\u2019", "\u2026", "\uff0e", " \u2019", "  \r\n"], ["  \n", "\u2026\u201d", "  \r\n", "\uff0e", "  \n\n", "i", "\u2026", "\u2019"], ["\u2026\u201d", "  \n\n", " \u2019", "\u2019", "\u2026", "  \n", " \u2018", " \u2013"], [" \u2019", "\u2026\u201d", "  \n\n", " \u00ad", "  \n", " \u2013", "\u2026", "\u2019"], [" \u2019", "\u2026\u201d", "  \n\n", "  \n", "\uff0e", "\u2019", " \u00ad", "i"], [" \u2019", "  \r\n", "\u2019**", " \u00ad", "\u2026\u201d", "  \n\n", " **\u2018", "  \n"], [" \u2019", "\u2019**", "  \r\n", "\u2026\u201d", " \u00ad", "\u2026**", "\u2019t", "\u2019"], [" \u2019", "  \r\n", " \u00ad", "\u2019**", "\u2026\u201d", "\u2019t", "\u2013\u2013", "\u2019ll"], [" \u2019", " \u00ad", " \u2018", "\u2019", " \u201c", "  \n\n", "\u2019t", "i"], [" \u2019", " \u00ad", " \u2018", " \u201c", "\u2019", "\u2019t", " \u2013", "i"], [" \u2019", " \u00ad", " \u2018", " \u2013", "\u2019", "\u2019t", " \u201c", "i"], [" \u2019", " \u00ad", "  \r\n", "\u2019t", "\u2013\u2013", "\u2019ll", "\u2019**", " \u2018"], [" \u2019", " \u00ad", "\u2019t", "\u2013\u2013", "i", "\u2019ll", " \u2018", "\u2014and"], [" \u2019", " \u00ad", " \u2018", "\u2019t", "i", "\u2013\u2013", "\u2019ll", "\u2014and"], [" \u2019", " \u00ad", "  \n\n", "i", "\u2014and", "\u2013\u2013", "  \r\n", "\u2014but"], [" \u2019", "\u2013\u2013", " \u00ad", "iha", " incredibly", " smack", " **\u2018", "\u2014even"], [" \u2019", " \u00ad", " ___", "\u2013\u2013", " \r\n", "  \r\n", " --", " incredibly"], [" \u2019", " \u00ad", " --", " \r\n", " \u2018", "\u2013\u2013", "  \r\n", " incredibly"], [" \u2019", " \u00ad", "  \n\n", " \r\n", " \r\n\r\n", " \n  \n", "  \r\n", " ___"], [" \u2019", " ___", " ____", " ______", " _____", " \r\n", " \u00ad", "  \r\n"], [" \u2019", " ___", " ____", " ______", " _____", " \u00ad", " --", " **"], [" \u2019", " ___", " \u00ad", " ______", " --", "  \n\n", " ____", " \u2018"], [" \u2019", " \u00ad", " ___", " ______", "  \n\n", " ____", "\u2011", " \n  \n"], [" \u2019", " ___", " \n  \n", " ______", " ____", " \u00ad", " _____", " **"], [" ...", " \u2019", " ______", " ___", " ____", " incredibly", "...", " \u2026"], [" \u2019", " incredibly", " massive", " huge", " **", " \u2013", " just", " ..."], [" \u2013", " incredibly", " massive", " \u2019", " huge", " massively", "\u2011", " heavily"], [" \u2013", " incredibly", " \u2019", "\u2011", "\u2014even", " massive", "\u2014and", "\u2014but"], [" incredibly", " massive", " massively", " relentless", " \u2013", " arguably", "\u2014even", "\u2014and"], [" \u2013", " incredibly", " hardware", "\u2011", " relentless", " \u2019", "\u2014and", " massive"], [" hardware", " incredibly", " fundamentally", " \u2013", " relentless", " massively", " aggressively", " tech"], [" hardware", " incredibly", " \u2013", " fundamentally", " engineering", " meticulously", " infrastructure", " tech"], [" hardware", " incredibly", " engineering", " fundamentally", " meticulously", " physics", " tech", " relentless"], [" hardware", " engineering", " physics", " incredibly", " tech", " fundamentally", " relentless", "\u2011"], [" hardware", " physics", " engineering", " tech", " technology", " software", " technical", " infrastructure"], [" hardware", " physics", " engineering", " tech", " economics", " fundamentally", " technology", " infrastructure"], [" physics", " hardware", " engineering", " economics", " technical", " infrastructure", " fundamentally", " logistical"], [" physics", " hardware", " engineering", " economics", " technical", " architecture", " infrastructure", " chemistry"], [" physics", " hardware", " engineering", " economics", " logistics", " logistical", " architecture", " technical"], [" physics", " engineering", " hardware", " economics", " logistics", " logistical", " architecture", " chemistry"], [" physics", " hardware", " engineering", " logistics", " logistical", " infrastructure", " economics", " bottleneck"], [" physics", " hardware", " engineering", " economics", " logistics", " logistical", " infrastructure", " relentless"], [" physics", " hardware", " engineering", " economics", " relentless", " logistical", " fundamentally", " chemistry"], [" physics", " hardware", " engineering", " logistical", " bottleneck", " relentless", " survival", "physics"], [" physics", " hardware", "physics", " logistical", " engineering", " bottleneck", "hardware", "\u2019**"], [" physics", " hardware", " engineering", "physics", "\u2019**", " bottleneck", " **\u201c", "hardware"], [" hardware", " physics", "hardware", "Hardware", " Hardware", "\u786c\u4ef6", "physics", " engineering"], [" hardware", " physics", "hardware", "Hardware", " Hardware", "\u786c\u4ef6", " engineering", "physics"], [" hardware", " physics", "hardware", " Hardware", "Hardware", "physics", " engineering", "\u786c\u4ef6"], [" hardware", " GPU", " physics", " Hardware", "hardware", "Hardware", " CPU", " shader"], [" hardware", " physics", " GPU", " shader", "hardware", " Hardware", "Hardware", "physics"], [" hardware", " GPU", " shader", " Hardware", " physics", "hardware", "Hardware", "\u786c\u4ef6"], [" hardware", " GPU", " shader", " physics", " CPU", "hardware", " Hardware", " gpu"], [" hardware", " GPU", " shader", " physics", " memory", " CPU", " Hardware", " kernel"], [" GPU", " hardware", " thermal", " shader", " memory", " physics", " CPU", " kernel"], [" GPU", " thermal", " shader", " hardware", " memory", " physics", " a", " therm"], [" a", " thermal", " an", " GPU", " shader", " physics", " hardware", " memory"]], "p": [[0.9559, 0.0327, 0.0064, 0.0008, 0.0006, 0.0004, 0.0004, 0.0004], [0.4133, 0.1723, 0.0922, 0.0494, 0.0436, 0.0339, 0.0264, 0.0264], [0.5616, 0.142, 0.076, 0.0592, 0.0359, 0.017, 0.0132, 0.0132], [0.4357, 0.1248, 0.0858, 0.0405, 0.0358, 0.0262, 0.0262, 0.0246], [0.3347, 0.203, 0.1231, 0.0659, 0.0513, 0.0513, 0.0353, 0.0311], [0.2366, 0.1842, 0.1117, 0.0768, 0.0598, 0.0363, 0.032, 0.0283], [0.1811, 0.1598, 0.141, 0.0755, 0.0755, 0.0588, 0.0519, 0.0519], [0.2156, 0.1679, 0.1018, 0.0899, 0.0793, 0.07, 0.0618, 0.0375], [0.3573, 0.2167, 0.1314, 0.0797, 0.0548, 0.0484, 0.0293, 0.0095], [0.4226, 0.1762, 0.0648, 0.0393, 0.0393, 0.0393, 0.0393, 0.0306], [0.4881, 0.1089, 0.0961, 0.0514, 0.0354, 0.0354, 0.0275, 0.0243], [0.8306, 0.0322, 0.0284, 0.0105, 0.0105, 0.0092, 0.0081, 0.0063], [0.7401, 0.0473, 0.0418, 0.0325, 0.012, 0.0093, 0.0093, 0.0082], [0.6984, 0.0506, 0.0348, 0.0271, 0.0211, 0.0186, 0.0164, 0.012], [0.864, 0.0804, 0.0066, 0.0066, 0.0043, 0.0038, 0.0038, 0.0027], [0.9651, 0.0121, 0.0107, 0.0027, 0.0024, 0.0015, 0.0007, 0.0007], [0.8033, 0.0747, 0.0243, 0.0138, 0.013, 0.0115, 0.0095, 0.0089], [0.8436, 0.0539, 0.0186, 0.012, 0.0083, 0.0053, 0.0044, 0.0037], [0.8013, 0.0512, 0.0147, 0.0138, 0.0114, 0.0069, 0.0054, 0.0051], [0.8428, 0.0198, 0.0136, 0.0106, 0.0094, 0.0078, 0.0044, 0.0044], [0.2324, 0.091, 0.0404, 0.0335, 0.0261, 0.0245, 0.0179, 0.0168], [0.3089, 0.0144, 0.0136, 0.0136, 0.0077, 0.0057, 0.0053, 0.005], [0.5325, 0.0265, 0.0086, 0.0076, 0.0071, 0.0056, 0.0052, 0.0052], [0.3068, 0.0776, 0.0163, 0.0127, 0.0087, 0.0068, 0.0064, 0.0056], [0.1746, 0.1541, 0.0934, 0.0441, 0.0366, 0.0252, 0.0252, 0.0222], [0.2485, 0.2193, 0.0669, 0.059, 0.046, 0.0231, 0.018, 0.0169], [0.2868, 0.1851, 0.0565, 0.0498, 0.0342, 0.0208, 0.0118, 0.0111], [0.3188, 0.0668, 0.0405, 0.0358, 0.0297, 0.0297, 0.0262, 0.0217], [0.2354, 0.0764, 0.0595, 0.0525, 0.0436, 0.0384, 0.0248, 0.0248], [0.2683, 0.0599, 0.0562, 0.0411, 0.0387, 0.022, 0.0207, 0.0172], [0.137, 0.0647, 0.0392, 0.0369, 0.0346, 0.0287, 0.027, 0.0224], [0.0749, 0.0583, 0.0354, 0.0332, 0.0157, 0.0148, 0.0122, 0.0108], [0.0865, 0.0674, 0.0435, 0.0361, 0.0219, 0.0133, 0.0117, 0.0117], [0.1226, 0.0698, 0.0511, 0.0451, 0.031, 0.0273, 0.0227, 0.0177], [0.1027, 0.0244, 0.0202, 0.0179, 0.0158, 0.0131, 0.0108, 0.0108], [0.1549, 0.1134, 0.0346, 0.0325, 0.0185, 0.0174, 0.0144, 0.0135], [0.1162, 0.0705, 0.0202, 0.019, 0.0157, 0.0148, 0.0148, 0.0139], [0.1458, 0.0647, 0.027, 0.0253, 0.0185, 0.0174, 0.0174, 0.0127], [0.1252, 0.067, 0.0317, 0.0232, 0.0192, 0.0169, 0.015, 0.014], [0.274, 0.0651, 0.0507, 0.0225, 0.0211, 0.0175, 0.0145, 0.0136], [0.4936, 0.1101, 0.0711, 0.0296, 0.0132, 0.0132, 0.0096, 0.0085], [0.3427, 0.3427, 0.0982, 0.0067, 0.0063, 0.0055, 0.0055, 0.0055], [0.3582, 0.3161, 0.0906, 0.0079, 0.0079, 0.0066, 0.0066, 0.0051], [0.4764, 0.255, 0.0828, 0.0082, 0.0056, 0.0053, 0.005, 0.0044], [0.5298, 0.1339, 0.0812, 0.017, 0.008, 0.0067, 0.0063, 0.0063], [0.5671, 0.0721, 0.0721, 0.0151, 0.0092, 0.0086, 0.0063, 0.0056], [0.3866, 0.1422, 0.081, 0.0124, 0.0124, 0.0117, 0.0097, 0.0097], [0.4773, 0.1065, 0.094, 0.0153, 0.0112, 0.0099, 0.0099, 0.0077], [0.3976, 0.1213, 0.0833, 0.0154, 0.0154, 0.012, 0.0088, 0.0083], [0.3677, 0.093, 0.0284, 0.0183, 0.0126, 0.0104, 0.0086, 0.0081], [0.3194, 0.067, 0.0337, 0.0246, 0.014, 0.0124, 0.0091, 0.0085], [0.314, 0.1155, 0.0452, 0.0292, 0.0292, 0.0214, 0.0138, 0.0114], [0.8437, 0.0539, 0.0327, 0.0225, 0.0136, 0.012, 0.0032, 0.0027], [0.8244, 0.0869, 0.022, 0.0171, 0.0171, 0.0071, 0.0049, 0.0043], [0.8041, 0.1233, 0.0167, 0.013, 0.0079, 0.0048, 0.0048, 0.0037], [0.8084, 0.0586, 0.0355, 0.0168, 0.0148, 0.0115, 0.0079, 0.0051], [0.7492, 0.0697, 0.0543, 0.0329, 0.0176, 0.0155, 0.0083, 0.0083], [0.7442, 0.1293, 0.0371, 0.0154, 0.0154, 0.012, 0.0073, 0.005], [0.4387, 0.3417, 0.0864, 0.0673, 0.0055, 0.0049, 0.0049, 0.0038], [0.6328, 0.2328, 0.0405, 0.0405, 0.0055, 0.0048, 0.0048, 0.0043], [0.5481, 0.1386, 0.1223, 0.0578, 0.0273, 0.0273, 0.0078, 0.0073], [0.2512, 0.2217, 0.1047, 0.0924, 0.056, 0.0526, 0.0171, 0.0117], [0.8714, 0.0462, 0.0218, 0.017, 0.0052, 0.0038, 0.0033, 0.0026]], "ranks": {"Rust": [39214, 44887, 64724, 27988, 7517, 12646, 12964, 11979, 15955, 10079, 9050, 7280, 7050, 6750, 4902, 2726, 2495, 4717, 5466, 5229, 9433, 12180, 9247, 5725, 4876, 5748, 4077, 4474, 4510, 4646, 5269, 5848, 7177, 10346, 7953, 12364, 8936, 9177, 8033, 8041, 4679, 4133, 4402, 5201, 4607, 4649, 6275, 5016, 3992, 8142, 17437, 16387, 6342, 5680, 4619, 3916, 461, 394, 262, 442, 371, 281, 160]}}, {"pos": 413, "top": [[".", ",", "\u2013", " \u2013", ";", "\u00a0", "\u2026.", ",."], ["\u2013", " \u2013", ".", ",", "\u2013and", ";", ",.", " \u200b\u200b"], [".", "\u2013", ",", " \u2013", "\u2026.", "\u2026..", "\u2026", ";"], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " pornstar", " Guta", " Blowjob", "aruhi", "\u54e5\u534e"], [".", ":.", ".@", "!.", " \u200b\u200b", ",.", "@a", "@d"], [".", "!.", "\u2026.", " \u200b\u200b", ",", "\u2026..", "!:", ",."], [".", "!.", "!", ":.", "\u2026.", ".....", "\u2026..", "!\""], [".", "!.", "!:", "!", ":.", ".@", "!,", ","], [".", "!.", ",", "!", ":.", ",.", "?.", "....."], [",", ".", ";", "\u2013", "\u00a0", "!", ":", "!,"], [",", ".", ";", "\u00a0", "!", " ", "\u2013", "..."], [" bigger", " big", " savvy", " huge", " guts", " flashy", " makeover", " pretty"], [" big", " bigger", " savvy", " huge", " dysfunction", " showcase", " weird", " flashy"], [" big", " bigger", " huge", " massive", " savvy", " weird", " flashy", " hardcore"], [" big", " massive", " huge", " savvy", " bigger", " flashy", " choice", " incredibly"], [" incredibly", " big", " savvy", " massive", " bigger", " defense", " folks", " huge"], [" big", " incredibly", " savvy", " huge", " massive", " bigger", " tough", " weird"], [" savvy", " big", " bigger", " incredibly", " huge", " massive", " scary", " tweaking"], [" savvy", " incredibly", " massive", " huge", " big", " flashy", " massively", " bigger"], [" incredibly", " hugely", " huge", " massive", " massively", " savvy", " wildly", " big"], ["<|endoftext|>", " \n\n", " hugely", " wildly", "\n\n", "  \n\n", " myriad", " --"], [" skyrocket", " ;;^", " incredibly", " big", " bigger", " savvy", " freaking", " massively"], [" --", " ``", " ''", " big", " huge", " massive", " incredibly", " massively"], [" --", " ,", " ``", " ultimately", " much", " hugely", " heavily", " massive"], [" \n\n", " --", "\n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", " &#"], [" ___", " --", " ____", " **", " _____", " \n\n", " __", " ______"], [" --", " technology", " ___", " engineering", " tech", " \n\n", " physics", " @"], [" \n\n", "\n\n", " --", " ,", " @", " ...", "  \n\n", " heavily"], [" --", " technology", " \n\n", " @", " ,", " complex", " tech", " power"], [" ...", " technology", " complex", " ,", " work", " --", " engineering", " power"], [" technology", " complex", " ,", " ...", " power", " work", " .", " massive"], [" ,", " complex", " technology", " power", " work", " high", " long", " ."], [" complex", " technology", " power", " massive", " high", " ,", " work", " long"], [" technology", " complex", " technical", " tech", " hardware", " infrastructure", " systems", " physical"], [" complex", " hardware", " technology", " tech", " infrastructure", " technical", " modular", " digital"], [" hardware", " complex", " technology", " tech", " technical", " infrastructure", " complexity", " physics"], [" hardware", " optimization", " technology", " performance", " physics", " tech", " technical", " complex"], [" hardware", " technical", " optimization", " technology", " software", " tech", " complex", " physics"], [" hardware", " technical", " labor", " technology", " optimization", " mechanics", " physics", " performance"], [" hardware", " labor", " technical", " optimization", " technology", " physics", " management", " complex"], [" hardware", " labor", " optimization", " technology", " software", " performance", " technical", " tech"], [" hardware", " software", " technology", " optimization", " physics", " computational", " technical", " labor"], [" hardware", " optimization", " software", " computational", " technology", " physics", " workflows", " optimizations"], [" hardware", " optimization", " software", " computational", " workflows", " avoidance", " workflow", " physics"], [" hardware", " physics", " avoidance", " optimization", " workflow", " technology", " technical", " efficiency"], [" hardware", " physics", " avoidance", " optimization", " logistics", " bottleneck", " engineering", " structural"], [" hardware", " avoidance", " logistics", " bottleneck", " optimization", " workflow", " physics", " structural"], [" hardware", " logistics", " avoidance", " physics", " logistical", " engineering", " workflow", " economics"], [" hardware", " physics", " logistical", " logistics", " engineering", " lifecycle", " economics", " structural"], [" physics", " hardware", " bottleneck", " logistical", " logistics", " avoidance", " economics", " survival"], [" physics", " hardware", " logistical", " economics", " logistics", " bottleneck", "hardware", " lifecycle"], [" hardware", " physics", " bottleneck", " engineering", "hardware", " lifecycle", " ecosystem", " ecology"], [" hardware", " physics", "hardware", " Hardware", "\u786c\u4ef6", "Hardware", " bottleneck", " engineering"], [" hardware", " physics", "hardware", " Hardware", "Hardware", "\u786c\u4ef6", " engineering", " bottleneck"], [" hardware", " physics", "hardware", " Hardware", " GPU", "\u786c\u4ef6", "Hardware", " engineering"], [" hardware", " GPU", " CPU", " physics", "hardware", " Hardware", "\u786c\u4ef6", " shader"], [" hardware", " GPU", " physics", " shader", "hardware", " Hardware", "GPU", " renderer"], [" hardware", " GPU", " shader", "hardware", " Hardware", "GPU", " physics", " renderer"], [" hardware", " GPU", " shader", " memory", " pipeline", "hardware", " physics", " renderer"], [" hardware", " GPU", " memory", " shader", " thermal", " CPU", " pipeline", " physics"], [" GPU", " thermal", " hardware", " memory", " shader", " kernel", " CPU", "thermal"], [" memory", " GPU", " thermal", " hardware", " shader", " CPU", " kernel", " physics"], [" thermal", " GPU", " memory", " shader", " hardware", " graphics", " physics", " kernel"]], "p": [[0.835, 0.1451, 0.0119, 0.0034, 0.0018, 0.0004, 0.0004, 0.0004], [0.3475, 0.3264, 0.1201, 0.0209, 0.0093, 0.0077, 0.0064, 0.0039], [0.4963, 0.3411, 0.0863, 0.028, 0.0192, 0.0091, 0.0055, 0.003], [0.0086, 0.0067, 0.0059, 0.0034, 0.0026, 0.0026, 0.0019, 0.0016], [0.0112, 0.006, 0.0056, 0.0041, 0.0028, 0.0024, 0.0021, 0.0018], [0.0929, 0.025, 0.0235, 0.0221, 0.0104, 0.0092, 0.0056, 0.0049], [0.0916, 0.0359, 0.0192, 0.0132, 0.0109, 0.0091, 0.0071, 0.0071], [0.0797, 0.0748, 0.0157, 0.0138, 0.0122, 0.0115, 0.0095, 0.0079], [0.8859, 0.0303, 0.0162, 0.0135, 0.006, 0.0041, 0.0032, 0.003], [0.8963, 0.0348, 0.0078, 0.0047, 0.0022, 0.002, 0.0017, 0.0011], [0.4867, 0.379, 0.0089, 0.0084, 0.0074, 0.0074, 0.0054, 0.0033], [0.0093, 0.0053, 0.0037, 0.0032, 0.0032, 0.0024, 0.0024, 0.0024], [0.0086, 0.0076, 0.0043, 0.0038, 0.003, 0.0028, 0.0026, 0.0025], [0.0098, 0.0076, 0.0072, 0.0067, 0.0052, 0.0043, 0.0038, 0.0032], [0.0144, 0.0127, 0.0093, 0.0093, 0.0064, 0.006, 0.0053, 0.0047], [0.0191, 0.0158, 0.0123, 0.0102, 0.0058, 0.0045, 0.0043, 0.004], [0.0433, 0.0218, 0.0141, 0.0132, 0.0117, 0.0097, 0.0046, 0.0046], [0.0335, 0.0296, 0.0217, 0.0123, 0.0102, 0.009, 0.0066, 0.0048], [0.0251, 0.0221, 0.0143, 0.0134, 0.0126, 0.0063, 0.0063, 0.0053], [0.0161, 0.0125, 0.0125, 0.0104, 0.0104, 0.0098, 0.0098, 0.0092], [0.061, 0.0327, 0.0106, 0.0083, 0.0083, 0.0073, 0.0073, 0.0073], [0.0048, 0.004, 0.0037, 0.0035, 0.0035, 0.0033, 0.0031, 0.0029], [0.0763, 0.0435, 0.0125, 0.011, 0.0067, 0.0063, 0.0055, 0.0052], [0.0773, 0.0111, 0.0105, 0.0068, 0.0056, 0.0053, 0.0044, 0.0044], [0.4532, 0.1076, 0.0787, 0.024, 0.0129, 0.0073, 0.005, 0.0047], [0.1413, 0.0857, 0.0459, 0.0336, 0.0261, 0.0231, 0.0231, 0.0204], [0.0613, 0.0272, 0.024, 0.024, 0.0199, 0.0187, 0.0137, 0.0129], [0.2061, 0.1508, 0.0591, 0.0406, 0.0217, 0.008, 0.0066, 0.0055], [0.0312, 0.0275, 0.0243, 0.0178, 0.0167, 0.0157, 0.013, 0.0115], [0.0824, 0.0344, 0.0184, 0.0135, 0.0126, 0.0126, 0.0119, 0.0119], [0.0332, 0.0243, 0.0228, 0.0189, 0.0147, 0.0122, 0.0108, 0.0095], [0.0312, 0.0201, 0.0157, 0.0157, 0.0115, 0.0095, 0.0089, 0.0089], [0.0316, 0.0231, 0.0231, 0.0116, 0.0103, 0.0091, 0.008, 0.008], [0.0532, 0.05, 0.0344, 0.0268, 0.0222, 0.0184, 0.0126, 0.0126], [0.0527, 0.0465, 0.0385, 0.0265, 0.0249, 0.022, 0.0151, 0.0125], [0.1437, 0.0467, 0.0321, 0.022, 0.0207, 0.0142, 0.0134, 0.0134], [0.2792, 0.026, 0.0244, 0.0229, 0.0178, 0.0168, 0.0168, 0.0148], [0.1713, 0.028, 0.0232, 0.0232, 0.0159, 0.0141, 0.0141, 0.0124], [0.2047, 0.0403, 0.023, 0.0203, 0.0148, 0.0139, 0.0139, 0.0131], [0.1698, 0.0587, 0.0314, 0.0203, 0.0179, 0.0123, 0.0116, 0.0116], [0.2122, 0.0689, 0.0306, 0.0287, 0.0238, 0.0238, 0.021, 0.0154], [0.2431, 0.0373, 0.0329, 0.0309, 0.0256, 0.0226, 0.0187, 0.0165], [0.1912, 0.0515, 0.0354, 0.0354, 0.0228, 0.0189, 0.0167, 0.0167], [0.1574, 0.033, 0.0274, 0.0241, 0.02, 0.02, 0.02, 0.0188], [0.1222, 0.0199, 0.0199, 0.0176, 0.0165, 0.0165, 0.0155, 0.0137], [0.0945, 0.0307, 0.0307, 0.0175, 0.0164, 0.0154, 0.0145, 0.0136], [0.088, 0.0685, 0.0268, 0.0252, 0.0252, 0.0209, 0.0196, 0.0153], [0.0945, 0.037, 0.037, 0.0307, 0.0239, 0.0225, 0.0154, 0.0145], [0.0903, 0.0376, 0.0332, 0.0312, 0.0259, 0.0189, 0.0167, 0.0157], [0.1339, 0.098, 0.0248, 0.0233, 0.0233, 0.0233, 0.0181, 0.017], [0.1326, 0.1099, 0.038, 0.0191, 0.0169, 0.0158, 0.0158, 0.0158], [0.2805, 0.2185, 0.0357, 0.0278, 0.0216, 0.0168, 0.0158, 0.009], [0.8336, 0.0775, 0.0323, 0.0119, 0.0093, 0.0082, 0.0064, 0.0021], [0.876, 0.0635, 0.0206, 0.011, 0.0059, 0.0052, 0.0019, 0.0017], [0.8663, 0.0628, 0.018, 0.0096, 0.0052, 0.004, 0.0031, 0.0031], [0.7013, 0.2009, 0.0165, 0.0128, 0.0113, 0.0088, 0.0037, 0.0037], [0.637, 0.2655, 0.017, 0.017, 0.0117, 0.0062, 0.0049, 0.0038], [0.7099, 0.2305, 0.0167, 0.0089, 0.007, 0.0033, 0.0023, 0.0023], [0.5879, 0.3147, 0.0332, 0.0108, 0.0084, 0.0058, 0.0051, 0.0045], [0.6951, 0.2257, 0.0305, 0.0185, 0.0036, 0.0028, 0.0025, 0.0022], [0.5242, 0.1502, 0.1325, 0.117, 0.0296, 0.0058, 0.0058, 0.0035], [0.2876, 0.2876, 0.224, 0.0727, 0.05, 0.0072, 0.006, 0.006], [0.6693, 0.1163, 0.0799, 0.0294, 0.0202, 0.009, 0.0079, 0.007]], "ranks": {"Rust": [30289, 40033, 42070, 101934, 4600, 11568, 11108, 8922, 16041, 5143, 4274, 2741, 2464, 2621, 4629, 4969, 5320, 11602, 11427, 9035, 7325, 6283, 4394, 5174, 2499, 2780, 2506, 4587, 4982, 6189, 7914, 11162, 9757, 11400, 9172, 4816, 1658, 1671, 1847, 2695, 1213, 1398, 1870, 2474, 3200, 3013, 3160, 2581, 1600, 3301, 8790, 5082, 2193, 1624, 1410, 1453, 260, 231, 171, 233, 195, 205, 156]}}, {"pos": 414, "top": [[" \u2013", "\u2013", "\u2013and", " \u2013,", ".", ".\u2013", " [\u2026]", ","], [" \u2013", " \u2013,", "\u2013and", "\u2013", " *\u2013", "\u2013\u2013", ".\u2013", " \u2013**"], [" \u2013", "\u2013", " \u2013,", "\u2013and", ".\u2013", "\u2013\u2013", "\u2018", " \u2018"], [" *\u2013", "izer", " \u2013,", " *\u201c", "*\u201c.", "\u2018s", " pupper", " \u3001"], [" \u2013", " \u2013,", " \u2018", "\u2013\u2013", " *\u2013", " \u201c", "\u2013", "\u2018"], [" \u2013", " \u2018", " \u2013,", " \u201c", "\u2013", "\u2018", " \u201c.", " *\u2013"], [" \u2018", " \u2013", "\u2018", " \u201c", "\u548c", "\u201c", "<|endoftext|>", "\u2013"], [" \u2013", " \u2013,", " \u2018", "  ", "\u548c", " \ufffd", "\u2018", "<|endoftext|>"], [" \u2013", " \u2013,", "<|endoftext|>", "  ", " [\u2026]", " \n\n\n", "\u00a0", " \u2018"], ["\u2013", " \u2013", " \u2013,", "\u00a0", "  ", "\t  ", "\u2013and", "\t   "], [" \u2013", "\u2013", " \u2013,", "\u00a0", "\t  ", "  ", "\t", "\u548c"], [" heatmap", "ization", "izer", " combustion", " automotive", " orbital", " aerospace", "stial"], [" combustion", " automotive", " heatmap", "ization", " transformative", " orbital", " thermal", " ballistic"], [" combustion", " ballistic", " orbital", " transformative", " automotive", " aerospace", " heatmap", " thermal"], [" combustion", " orbital", " ballistic", " transformative", " thermal", " impact", " catal", " automotive"], [" \u2013", " ballistic", " impact", " combustion", " thermal", " transformative", " orbital", " showcase"], [" \u2013", " impact", " thermal", " combustion", " proximity", " ballistic", " hotspot", "ization"], [" combustion", " thermal", " heatmap", " orbital", " ballistic", " Thermal", " hotspot", " ignition"], [" combustion", " thermal", " ballistic", " impact", " heatmap", " heat", " hotspot", " Therm"], [" \u2013", " thermal", " combustion", " impact", " heat", "<|endoftext|>", " heatmap", " hotspot"], ["<|endoftext|>", " \r\n\r\n", " \n\n\n", "\r\n\r\n", " \n\n", "<|file_sep|>", " \r\n", "\r\n\r\n\r\n"], [" heatmap", " cooldown", " HVAC", " coolant", " combustion", " overclock", "\u5347\u6e29", " ballistic"], [" heatmap", "\u5347\u6e29", " heat", "w\u00e4r", " hotter", " cooldown", " thermal", " coolant"], ["<|endoftext|>", " \r\n", " impact", " \r\n\r\n", " powering", " heat", " impacting", " hotter"], ["<|endoftext|>", " \r\n\r\n", " heat", " \r\n", " hotter", " powering", " thermal", " cooling"], [" thermal", " heat", " cooling", " powering", " hotter", " \r\n\r\n", " coolant", " temperatures"], [" heat", " thermal", " cooling", " hotter", " temperatures", " coolant", " powering", " temperature"], [" heat", " powering", " cooling", " thermal", " hotter", " temperature", " temperatures", " \r\n\r\n"], [" heat", " thermal", " cooling", " overclock", " hotter", " temperatures", " temperature", " powering"], [" heat", " overclock", " thermal", " hotter", " temperatures", " temperature", " cooling", " coolant"], [" heat", " overclock", " hotter", " temperature", " cooling", " thermal", " temperatures", " energy"], [" heat", " cooling", " thermal", " overclock", " hotter", " temperature", " temperatures", " energy"], [" heat", " cooling", " thermal", " hotter", " overclock", " temperature", " temperatures", " powering"], [" heat", " cooling", " overclock", " thermal", " hotter", " temperature", " powering", " temperatures"], [" heat", " overclock", " cooling", " thermal", " hotter", " temperature", " temperatures", " powering"], [" heat", " overclock", " thermal", " cooling", " hotter", " temperature", " hardware", " fatigue"], [" overclock", " heat", " thermal", " hotter", " hardware", " cooling", " temperature", " thrott"], [" heat", " overclock", " thermal", " cooling", " temperature", " hotter", " hardware", " Thermal"], [" heat", " thermal", " temperature", " overclock", " cooling", " hotter", " temperatures", " Heat"], [" heat", " thermal", " overclock", " temperature", " cooling", " temperatures", " hotter", " Thermal"], [" heat", " thermal", " overclock", " cooling", " temperature", " Thermal", " Heat", " temperatures"], [" heat", " thermal", " cooling", " temperature", " Thermal", " Heat", " overclock", " heating"], [" heat", " thermal", " overclock", " cooling", " temperature", " Thermal", " heating", " temperatures"], [" heat", " thermal", " temperature", " cooling", " overclock", " temperatures", " Thermal", " heating"], [" heat", " thermal", " temperature", " overclock", " cooling", " temperatures", " Thermal", " heating"], [" thermal", " heat", " temperature", " cooling", " heating", " Thermal", " temperatures", " overclock"], [" thermal", " heat", " temperature", " cooling", " Thermal", " heating", "thermal", " overclock"], [" thermal", " heat", " cooling", " temperature", " Thermal", " heating", "thermal", " therm"], [" thermal", " heat", " cooling", "thermal", " Thermal", " overclock", " temperature", " heating"], [" thermal", " heat", " cooling", "thermal", " temperature", " Thermal", " heating", " overclock"], [" thermal", "thermal", " heat", " physics", " cooling", " Thermal", " therm", " temperature"], [" physics", " overclock", " hardware", " thermal", "thermal", "-engine", " engine", "-and"], [" hardware", " physics", "/cpu", " overclock", " optimization", " CPU", "-limit", " thermal"], ["\u6563\u70ed", " hardware", " thermal", " physics", " cooling", "/cpu", "thermal", " overclock"], [" thermal", "\u6563\u70ed", " heat", "thermal", " cooling", " overclock", " Thermal", " physics"], [" CPU", " GPU", "/cpu", "CPU", "GPU", " hardware", "\u6563\u70ed", "cpu"], [" CPU", " GPU", "/cpu", " thrott", "GPU", "\u6563\u70ed", "CPU", "cpu"], [" thermal", "thermal", " thrott", " management", " CPU", "/cpu", " Thermal", "-management"], [" thrott", " throttle", " management", " thermal", "-management", " physics", "thermal", " battery"], [" thrott", " throttle", " management", " physics", "-management", " battery", "/power", " bottleneck"], [" thrott", " throttle", " management", " budget", " physics", " battery", "/th", " throughput"], [" thrott", " throttle", " and", " management", " battery", " physics", " budget", " memory"], [" throttle", " thrott", "/th", " and", " management", "-th", "/power", " physics"]], "p": [[0.8622, 0.103, 0.0079, 0.0058, 0.0058, 0.0048, 0.0014, 0.0013], [0.9392, 0.0468, 0.0072, 0.0049, 0.0009, 0.0005, 0.0002, 0.0001], [0.7004, 0.292, 0.0032, 0.0032, 0.0009, 0.0001, 0.0, 0.0], [0.0185, 0.0099, 0.0093, 0.0088, 0.0064, 0.0044, 0.0036, 0.0022], [0.2821, 0.0916, 0.049, 0.0262, 0.0232, 0.0232, 0.014, 0.0124], [0.1712, 0.0556, 0.0522, 0.0461, 0.0359, 0.018, 0.0169, 0.015], [0.3736, 0.2412, 0.2129, 0.0239, 0.0145, 0.0136, 0.0128, 0.0083], [0.3159, 0.0662, 0.0354, 0.0276, 0.019, 0.0148, 0.0108, 0.0102], [0.1604, 0.0758, 0.0279, 0.0262, 0.0217, 0.0204, 0.0169, 0.0159], [0.2529, 0.1354, 0.093, 0.025, 0.0235, 0.0221, 0.0183, 0.0098], [0.1061, 0.0345, 0.0304, 0.0286, 0.0286, 0.0286, 0.0196, 0.0153], [0.0078, 0.006, 0.0047, 0.0044, 0.0039, 0.0037, 0.0034, 0.0032], [0.0122, 0.0065, 0.0065, 0.0065, 0.0057, 0.0048, 0.0045, 0.0045], [0.0138, 0.0069, 0.0069, 0.0065, 0.0061, 0.0054, 0.0054, 0.0048], [0.0111, 0.0072, 0.006, 0.006, 0.0053, 0.0044, 0.0039, 0.0034], [0.0078, 0.0074, 0.0074, 0.0069, 0.0065, 0.0054, 0.0051, 0.0047], [0.1103, 0.0116, 0.0062, 0.0058, 0.0043, 0.004, 0.004, 0.004], [0.0126, 0.0126, 0.0072, 0.0068, 0.006, 0.006, 0.0056, 0.0041], [0.0102, 0.0058, 0.0045, 0.0043, 0.004, 0.0035, 0.0033, 0.0029], [0.0066, 0.0055, 0.0052, 0.0052, 0.004, 0.004, 0.0038, 0.0038], [0.9799, 0.0013, 0.0004, 0.0003, 0.0003, 0.0002, 0.0001, 0.0001], [0.0101, 0.0051, 0.0035, 0.0035, 0.0033, 0.0029, 0.0026, 0.0023], [0.0059, 0.0046, 0.0043, 0.0043, 0.0043, 0.004, 0.0036, 0.0034], [0.0463, 0.011, 0.0067, 0.0055, 0.0055, 0.0052, 0.0046, 0.004], [0.0851, 0.0705, 0.0148, 0.0139, 0.0123, 0.0115, 0.009, 0.0084], [0.0569, 0.0472, 0.0305, 0.0253, 0.0209, 0.0185, 0.0174, 0.0127], [0.0519, 0.0335, 0.0278, 0.0261, 0.0217, 0.0191, 0.0191, 0.0179], [0.0555, 0.0316, 0.0262, 0.0231, 0.018, 0.0149, 0.014, 0.0132], [0.1113, 0.0436, 0.0361, 0.034, 0.034, 0.0281, 0.0248, 0.0206], [0.0986, 0.0678, 0.0411, 0.0386, 0.0363, 0.0363, 0.0341, 0.0151], [0.1567, 0.0695, 0.0576, 0.0478, 0.0478, 0.0449, 0.0422, 0.0146], [0.1433, 0.0527, 0.0386, 0.032, 0.032, 0.032, 0.0265, 0.0249], [0.1855, 0.0532, 0.0441, 0.0343, 0.0322, 0.0267, 0.0251, 0.0236], [0.1289, 0.0505, 0.0445, 0.0445, 0.0306, 0.027, 0.0186, 0.0186], [0.1543, 0.0604, 0.0442, 0.0442, 0.0323, 0.0323, 0.0173, 0.0144], [0.1923, 0.1322, 0.0587, 0.0457, 0.0356, 0.026, 0.0158, 0.0139], [0.2049, 0.1499, 0.043, 0.0335, 0.0277, 0.0216, 0.0168, 0.0139], [0.253, 0.1739, 0.0874, 0.0468, 0.0413, 0.0251, 0.0134, 0.0134], [0.6009, 0.1183, 0.0493, 0.0339, 0.0339, 0.0219, 0.0141, 0.0117], [0.4896, 0.159, 0.0851, 0.0455, 0.0355, 0.0168, 0.0157, 0.0139], [0.6213, 0.1571, 0.0578, 0.035, 0.0273, 0.01, 0.0094, 0.0094], [0.6477, 0.2383, 0.0251, 0.0196, 0.0105, 0.0092, 0.0082, 0.0072], [0.5703, 0.2694, 0.0284, 0.0251, 0.0195, 0.0118, 0.0118, 0.0092], [0.5232, 0.3173, 0.023, 0.023, 0.0158, 0.0139, 0.0139, 0.0123], [0.4363, 0.3851, 0.0358, 0.0192, 0.0192, 0.0169, 0.0116, 0.0116], [0.4181, 0.4181, 0.0303, 0.0236, 0.0111, 0.0111, 0.0098, 0.0072], [0.5271, 0.3197, 0.0232, 0.0159, 0.0124, 0.0097, 0.008, 0.0075], [0.4862, 0.3341, 0.0227, 0.0156, 0.0101, 0.0089, 0.0084, 0.0079], [0.4541, 0.243, 0.0422, 0.0187, 0.0137, 0.0137, 0.0137, 0.0121], [0.5326, 0.1959, 0.0437, 0.0282, 0.0207, 0.0161, 0.0125, 0.0111], [0.3942, 0.0997, 0.0568, 0.0442, 0.0184, 0.0163, 0.0153, 0.0135], [0.1983, 0.0568, 0.0416, 0.0324, 0.0222, 0.0173, 0.0173, 0.0163], [0.2149, 0.1477, 0.0398, 0.0291, 0.0273, 0.0188, 0.0166, 0.0146], [0.1912, 0.116, 0.0903, 0.0903, 0.0621, 0.0454, 0.0454, 0.0332], [0.2622, 0.2314, 0.2042, 0.0585, 0.0215, 0.019, 0.019, 0.0148], [0.3994, 0.1469, 0.0786, 0.0308, 0.0308, 0.0255, 0.0212, 0.0212], [0.2816, 0.1036, 0.0914, 0.0712, 0.0316, 0.0262, 0.0262, 0.0246], [0.328, 0.1065, 0.0829, 0.0646, 0.0503, 0.0325, 0.0325, 0.0269], [0.6927, 0.2548, 0.0144, 0.0087, 0.0047, 0.0041, 0.0032, 0.0014], [0.6515, 0.2397, 0.0535, 0.0119, 0.006, 0.0044, 0.0023, 0.0018], [0.7133, 0.2624, 0.007, 0.0029, 0.002, 0.0014, 0.0009, 0.0007], [0.524, 0.3602, 0.0203, 0.0191, 0.0058, 0.0048, 0.0043, 0.0035], [0.3904, 0.3904, 0.0438, 0.0412, 0.0266, 0.0111, 0.0052, 0.0043]], "ranks": {"Rust": [46199, 87394, 26415, 74848, 22009, 33145, 45444, 46973, 51255, 35514, 43467, 36368, 30666, 35040, 43818, 24582, 20379, 62322, 66718, 36956, 36416, 47171, 58859, 43851, 29994, 50138, 40961, 19464, 16975, 25195, 19107, 15636, 24428, 35381, 26953, 28931, 34759, 26005, 31512, 33972, 22149, 21942, 29557, 17155, 11606, 10122, 9213, 9689, 8798, 12004, 16748, 31760, 14847, 17156, 10997, 8371, 4211, 3469, 3419, 3209, 4692, 3638, 4022]}}, {"pos": 415, "top": [[".", ",", " \u2013", "\u2013", ";", "\u00a0", "\u00a0\u00a0", ",."], [" \u2013", "\u2013", "\u2013and", ".", ",", " very", " \u2013,", " Very"], ["\u2013", " \u2013", ",", "\u2013and", ".", ".\u2013", "\u2026..", ";"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", " Shemale", " \u041a\u0440\u0430\u0441\u0438", "-------------</", "----------</", " Strec", " Hidal"], [":@", " \u041a\u0440\u0430\u0441\u0438", "\u82db", ".@", "@d", "\u65b0\u52a0\u5761", " desid", "\u0636\u064a\u0631"], ["\u2013and", ".\u2013", "\u00a0\u00a0", "\u82b7", "\u00a0", ",", "!:", "\u2013"], ["ronic", "\u4e9b", "\u4e2d", "\u00a0", "\u4e00", " @", "-ish", "r"], [" @{", "eness", ":@", " #@", "ronic", "ulance", " @", "-ish"], [" @{", "\u00a0", ",@", "#@", "-ish", " #@", "eness", "icable"], [" requisite", "\u00a0", "-ish", "Whilst", " whilst", ",", "\u82e5\u975e", " albeit"], [" requisite", "@\\", "ronic", "-&", "ly", "cape", " akin", " albeit"], [" impactful", " outlier", " flavorful", "ronic", "ily", "iverse", "yscale", " reliant"], [" impactful", " reliant", " outlier", " flavorful", " vibe", " incentiv", " leverage", " leveraging"], [" reliant", " impactful", "-esque", " visage", " simplistic", " leveraging", " transformative", " vibe"], [" impactful", " reliant", " incentiv", " impacting", " transformative", " leverage", " leveraging", " vibe"], [" impactful", " impacting", " impact", " strategic", " leverage", " simplistic", " visceral", " reliant"], [" impactful", " leverage", " leveraging", " reliant", " strategic", " visceral", " nuanced", " transformative"], [" impactful", " leverage", " flavorful", " vibe", " ecosystem", " tweak", " estrateg", " glitch"], [" impactful", " flavorful", " leverage", " ecosystem", " complexity", " estrateg", " savory", " strategic"], [" impactful", " complexity", " &#", " leverage", " infrastructure", " ecosystem", " entirety", " fraught"], [" --", " &#", " myriad", "<|file_sep|>", " requisite", " utterly", " complexity", " entirety"], [" impactful", " complexity", " ;;^", " YYS", " BHY", " infrastructure", " MEDIAM", " cumshot"], [" ``", " complexity", " consequence", " impactful", " infrastructure", " --", " BHY", " MEDIAM"], [" --", " ``", " complexity", " infrastructure", " consequence", " &#", " technological", " impact"], [" --", " \r\n\r\n", " &#", " requisite", "\r\n\r\n", " complexity", " complexities", " infrastructure"], [" infrastructure", " complexity", " engineering", " technological", " -**", " computational", " hardware", " physics"], [" infrastructure", " engineering", " technological", " hardware", " complexity", " physics", " electronics", " ecosystem"], [" --", " infrastructure", " engineering", " technological", " hardware", " energy", " technology", " impact"], [" infrastructure", " hardware", " engineering", " energy", " technological", " physics", " technology", " complexity"], [" infrastructure", " technology", " environmental", " engineering", " hardware", " energy", " pressure", " environment"], [" infrastructure", " technology", " power", " environmental", " energy", " pressure", " hardware", " technical"], [" power", " infrastructure", " technology", " pressure", " environmental", " energy", " technical", " **"], [" power", " infrastructure", " environmental", " pressure", " technology", " energy", " hardware", " physical"], [" infrastructure", " hardware", " technological", " technical", " logistical", " complexity", " technology", " power"], [" infrastructure", " hardware", " logistical", " complexity", " technical", " tech", " technological", " physical"], [" hardware", " complexity", " technical", " infrastructure", " computational", " technology", " technological", " tech"], [" hardware", " complexity", " optimization", " overclock", " technical", " technology", " optimized", " infrastructure"], [" hardware", " complexity", " computational", " technical", " engine", " optimization", " overclock", " technology"], [" hardware", " computational", " engine", " CPU", " technical", " complexity", " physics", " technology"], [" hardware", " CPU", " computational", " complexity", " technical", " optimization", " engine", " processor"], [" hardware", " CPU", " computational", " engine", " GPU", " performance", " processor", " technology"], [" hardware", " CPU", " engine", " computational", " processor", " performance", " optimization", " GPU"], [" hardware", " CPU", " engine", " processor", " computational", " optimization", " throughput", " performance"], [" hardware", " engine", " CPU", " computational", " processor", " optimization", " efficiency", " bottleneck"], [" hardware", " engine", " bottleneck", " efficiency", " CPU", " computational", " processor", " optimization"], [" hardware", " bottleneck", " engine", " efficiency", " CPU", " optimization", " computational", " processor"], [" hardware", " bottleneck", " efficiency", " optimization", " engine", " bandwidth", " CPU", " computational"], [" hardware", " bottleneck", " engine", " efficiency", " bandwidth", " logistical", " optimization", " budget"], [" hardware", " logistical", " bottleneck", " bandwidth", " engine", " computational", " processor", " efficiency"], [" hardware", " bottleneck", " logistical", " bandwidth", " framerate", " budget", " latency", " throughput"], [" hardware", " logistical", " bandwidth", " bottleneck", " latency", " framerate", " optimization", " fragmentation"], [" hardware", " CPU", " latency", " bandwidth", " optimization", " GPU", " bottleneck", " throughput"], [" hardware", " CPU", " bottleneck", " latency", " GPU", " optimization", " bandwidth", " throughput"], [" CPU", " hardware", " GPU", " bandwidth", " latency", " throughput", " bottleneck", "CPU"], [" CPU", " GPU", " hardware", " latency", " memory", " processor", "CPU", " bandwidth"], [" CPU", " GPU", "CPU", "GPU", " cpu", " memory", " hardware", "cpu"], [" GPU", " CPU", "GPU", " shader", " garbage", " gpu", " latency", " hardware"], [" GPU", " shader", " latency", "GPU", " CPU", " garbage", " renderer", " gpu"], [" memory", " GPU", "memory", " shader", " driver", " latency", "GPU", " CPU"], [" memory", " GPU", " CPU", "memory", " shader", " latency", " driver", " Memory"], [" memory", " GPU", " CPU", "memory", " shader", " Memory", " latency", " driver"], [" memory", " GPU", " CPU", " GC", " shader", " battery", " garbage", " driver"], [" memory", " GPU", " GC", " driver", " shader", " CPU", " garbage", " power"]], "p": [[0.8049, 0.1585, 0.0243, 0.0079, 0.0018, 0.0007, 0.0003, 0.0003], [0.6702, 0.0664, 0.0108, 0.0029, 0.0029, 0.0026, 0.0018, 0.0015], [0.5938, 0.2475, 0.0911, 0.0216, 0.0216, 0.0048, 0.0027, 0.0018], [0.0097, 0.0097, 0.0086, 0.0049, 0.0046, 0.0038, 0.0036, 0.0031], [0.0061, 0.0042, 0.0029, 0.0029, 0.0027, 0.0027, 0.0021, 0.0021], [0.0059, 0.0046, 0.0046, 0.003, 0.003, 0.0026, 0.0026, 0.0023], [0.0163, 0.0144, 0.0044, 0.0037, 0.0037, 0.0036, 0.0034, 0.0032], [0.0047, 0.0047, 0.0036, 0.0034, 0.003, 0.0027, 0.0022, 0.0021], [0.0081, 0.0063, 0.0056, 0.0046, 0.0036, 0.0036, 0.0034, 0.0034], [0.0119, 0.0053, 0.0053, 0.0046, 0.0044, 0.0026, 0.0026, 0.0025], [0.0503, 0.0082, 0.0077, 0.0072, 0.0068, 0.0064, 0.0053, 0.0053], [0.0056, 0.0023, 0.0022, 0.0021, 0.0018, 0.0016, 0.0015, 0.0014], [0.0073, 0.0027, 0.0023, 0.0022, 0.002, 0.0018, 0.0018, 0.0015], [0.0086, 0.0071, 0.0034, 0.0025, 0.0023, 0.0023, 0.0023, 0.002], [0.0107, 0.0089, 0.0051, 0.0051, 0.0045, 0.0042, 0.0037, 0.0035], [0.0067, 0.0046, 0.0041, 0.0038, 0.0034, 0.0032, 0.0026, 0.0025], [0.0129, 0.0107, 0.0073, 0.0065, 0.005, 0.0047, 0.0044, 0.0037], [0.0046, 0.0034, 0.0023, 0.0018, 0.0018, 0.0016, 0.0015, 0.0015], [0.007, 0.0021, 0.0017, 0.0017, 0.0016, 0.0015, 0.0014, 0.0014], [0.006, 0.0053, 0.0022, 0.0021, 0.0021, 0.0016, 0.0015, 0.0015], [0.0539, 0.0094, 0.006, 0.0044, 0.0034, 0.0032, 0.003, 0.003], [0.0026, 0.0018, 0.0015, 0.0013, 0.0013, 0.0013, 0.0011, 0.0011], [0.0152, 0.0034, 0.0025, 0.0021, 0.0019, 0.0017, 0.0015, 0.0013], [0.0162, 0.0143, 0.0098, 0.0063, 0.0046, 0.003, 0.003, 0.0026], [0.0384, 0.0384, 0.0299, 0.0171, 0.0103, 0.0071, 0.0049, 0.0046], [0.0159, 0.0085, 0.0066, 0.0062, 0.0062, 0.0058, 0.0058, 0.0055], [0.0362, 0.0142, 0.0133, 0.0104, 0.0076, 0.0076, 0.0052, 0.0046], [0.0346, 0.0305, 0.0163, 0.0144, 0.0135, 0.0127, 0.0093, 0.0073], [0.0764, 0.0206, 0.0141, 0.011, 0.0091, 0.0091, 0.0091, 0.0076], [0.0819, 0.022, 0.0194, 0.0194, 0.0194, 0.0194, 0.0151, 0.0126], [0.0674, 0.0318, 0.0299, 0.0219, 0.0219, 0.0206, 0.016, 0.0117], [0.0418, 0.0326, 0.0238, 0.021, 0.0186, 0.0186, 0.0128, 0.012], [0.0339, 0.0281, 0.0248, 0.0182, 0.0141, 0.0141, 0.0103, 0.0103], [0.0848, 0.0259, 0.0178, 0.0157, 0.0138, 0.013, 0.013, 0.0122], [0.0762, 0.0594, 0.0338, 0.0248, 0.016, 0.011, 0.0103, 0.0103], [0.3362, 0.0584, 0.0294, 0.0294, 0.0259, 0.0229, 0.0122, 0.0122], [0.5096, 0.0254, 0.0145, 0.0128, 0.012, 0.012, 0.0113, 0.0113], [0.4415, 0.0206, 0.0194, 0.0182, 0.0182, 0.0151, 0.0125, 0.0111], [0.5299, 0.0361, 0.0264, 0.0219, 0.0219, 0.0103, 0.0097, 0.008], [0.4136, 0.0765, 0.0675, 0.0233, 0.0193, 0.0151, 0.0151, 0.0151], [0.4672, 0.0812, 0.0492, 0.0281, 0.0233, 0.0219, 0.0193, 0.015], [0.3714, 0.1064, 0.0939, 0.0345, 0.0325, 0.021, 0.0163, 0.0135], [0.4274, 0.0655, 0.0655, 0.0398, 0.0351, 0.0156, 0.0129, 0.0121], [0.4301, 0.0582, 0.0453, 0.0332, 0.0332, 0.0214, 0.0189, 0.0157], [0.3503, 0.0369, 0.0347, 0.0288, 0.027, 0.021, 0.021, 0.0174], [0.2963, 0.0377, 0.0354, 0.0276, 0.0243, 0.0215, 0.0215, 0.0148], [0.2111, 0.073, 0.0391, 0.0345, 0.0304, 0.0286, 0.0223, 0.0163], [0.1797, 0.0515, 0.0377, 0.0377, 0.0312, 0.0276, 0.0259, 0.0243], [0.1502, 0.043, 0.043, 0.0335, 0.0335, 0.0278, 0.0245, 0.0216], [0.0969, 0.0754, 0.0518, 0.0458, 0.0404, 0.0245, 0.0216, 0.0203], [0.1704, 0.0553, 0.052, 0.0431, 0.0261, 0.0245, 0.0245, 0.0169], [0.195, 0.134, 0.0921, 0.0813, 0.0718, 0.0435, 0.0435, 0.0299], [0.3244, 0.2527, 0.0724, 0.0724, 0.0497, 0.0439, 0.0387, 0.0183], [0.4026, 0.3553, 0.0793, 0.02, 0.02, 0.0122, 0.0107, 0.0107], [0.65, 0.1644, 0.0534, 0.0153, 0.0135, 0.0119, 0.0105, 0.0105], [0.5266, 0.4101, 0.0085, 0.0075, 0.0075, 0.0066, 0.0046, 0.004], [0.8462, 0.1011, 0.0176, 0.0065, 0.0035, 0.0031, 0.0027, 0.0021], [0.8293, 0.0601, 0.0284, 0.0195, 0.0118, 0.0063, 0.0056, 0.0038], [0.533, 0.3663, 0.0207, 0.0161, 0.0067, 0.0059, 0.0052, 0.0036], [0.8092, 0.1406, 0.0102, 0.009, 0.0042, 0.0037, 0.0026, 0.002], [0.9007, 0.0739, 0.0061, 0.0042, 0.0029, 0.0014, 0.0011, 0.0011], [0.7965, 0.1568, 0.0088, 0.0078, 0.0061, 0.0025, 0.0025, 0.0022], [0.6469, 0.1854, 0.0284, 0.0251, 0.0195, 0.0126, 0.0118, 0.0081]], "ranks": {"Rust": [30706, 82656, 72977, 58797, 11807, 10140, 15833, 14512, 9428, 9003, 9081, 22769, 9904, 7754, 15000, 10696, 24079, 61139, 78758, 65829, 94685, 102482, 94069, 44325, 35846, 48183, 20561, 10251, 9797, 10414, 8178, 8479, 10707, 25009, 13122, 14378, 14694, 13854, 9555, 19426, 17015, 18577, 21295, 18058, 11501, 12024, 10733, 9465, 9432, 14047, 20616, 20345, 13183, 9786, 5568, 7303, 1997, 1214, 738, 546, 420, 466, 323]}}, {"pos": 416, "top": [[".", ",", "\u2013", " \u2013", ";", " ", "?", "\u2026"], [" \u2013", "\u2013", "  \n\n", "  \n", "  \r\n", ".", ",", ";"], ["\u2013", " \u2013", ",", ".", ";", "\u2026", "\u2013and", ".\u2013"], [" cristi", " Blowjob", "alej", " cumshot", "adrid", " Strec", " YYS", " milfs"], ["\u0627\u0644\u0627\u062a", "  \n\n", "  \n", ".cast", " \u2019", "  \r\n", " ***", ".Memory"], [".cast", "undur", "serialization", "-log", "\u0627\u0644\u0627\u062a", " Zer", "\u7687\u51a0", ".Memory"], [" ***", "  \n", " **", "  \r\n", "\u00ac", " \u2019", " MEMORY", "  \n\n"], [" **", " ***", "  \r\n", "-memory", " MEMORY", " MEM", " memory", "/memory"], [" **", " ***", "  \n\n", "  \n", "lessness", " tokens", " \n\n", "  \r\n"], ["\u00ac", "\u2013", "/memory", "  \r\n", "lessness", ".Memory", "-memory", "-token"], [" memory", " **", " ***", "/memory", "er", "-memory", "\u00ac", ".Memory"], [" **", " ***", " )**", " **\u20ac", " **-", " **\u00ab", " **+", " \"**"], [" **", " ***", "alej", " memory", " **\u00ab", " **-", " **\u20ac", " )**"], [" memory", "alej", " gaps", " storage", " backups", "lessness", " protections", "-memory"], [" memory", " resources", " space", " defense", " security", " gaps", " control", " loss"], [" memory", " space", " back", " loss", " power", " memories", " resources", " critical"], [" memory", " space", " resources", " memories", " loss", " Memory", " focus", " back"], [" memory", " space", " Memory", " resources", " gaps", " memories", " storage", " loss"], [" memory", " space", " Memory", " MEMORY", "/memory", "-memory", "-space", " memories"], [" memory", "/memory", " MEMORY", " space", " mem", "-memory", " MEM", " Memory"], ["<|endoftext|>", " \n\n", "  \n\n", " \r\n\r\n", "\r\n\r\n", "  \r\n\r\n", " w", " mem"], [" memory", " space", "/memory", " MEMORY", " Memory", "-memory", " memories", " MEM"], [" space", " memory", " \r\n\r\n", "/memory", " \r\n", " )**", " MEMORY", " --"], [" memory", " space", " --", " \r\n\r\n", " \r\n", " Memory", " \n\n", " mem"], [" \r\n\r\n", " \n\n", " \r\n", "  \n\n", " **", "  \r\n\r\n", "\r\n\r\n", " \n  \n"], [" **", " memory", " ***", " storage", "/memory", " space", "-memory", " )**"], [" memory", " storage", " **", " space", "/memory", "-memory", " memories", " Memory"], [" memory", " **", " space", " storage", " \n\n", " _", " --", " ___"], [" memory", " storage", " space", " **", " Memory", " loss", " capacity", " memories"], [" memory", " **", " storage", " space", " ***", " loss", " .**", " capacity"], [" memory", " **", " storage", " space", " .**", " loss", " complex", " capacity"], [" memory", " storage", " space", " **", " complex", " loss", " security", " capacity"], [" memory", " storage", " space", " **", " complex", " budgets", " leaks", " budget"], [" memory", " storage", "-memory", " vulnerabilities", " MEMORY", " leaks", " exhaustion", "/memory"], [" memory", " storage", " MEMORY", "/memory", " exhaustion", "-memory", " stash", " cache"], [" memory", " MEMORY", " storage", "/memory", " Memory", "-memory", "memory", " complexity"], [" memory", " optimizations", " MEMORY", " Memory", " optimization", "/memory", "-memory", " storage"], [" memory", " Memory", " MEMORY", "/memory", " budget", " optimizations", "-memory", "(memory"], [" memory", " Memory", "/memory", " budget", " storage", " MEMORY", "-memory", " cache"], [" memory", " Memory", " MEMORY", "-memory", "/memory", " budget", " storage", "memory"], [" memory", " Memory", "-memory", " MEMORY", "/memory", "memory", "\u5185\u5b58", "(memory"], [" memory", "-memory", " Memory", "/memory", " MEMORY", " storage", "\u5185\u5b58", "memory"], [" memory", "-memory", " Memory", " storage", "/memory", " MEMORY", " budgets", " budget"], [" memory", "-memory", " storage", " Memory", " MEMORY", "/memory", " fragmentation", " budgets"], [" memory", "-memory", " storage", " fragmentation", " budgets", " MEMORY", " Memory", " budget"], [" memory", " storage", "-memory", " fragmentation", " budget", " budgets", " allocation", " cache"], [" memory", " storage", "-memory", " budgets", " allocation", " budget", " fragmentation", " cache"], [" memory", " storage", "-memory", " budget", " budgets", " fragmentation", " cache", " allocation"], [" memory", "-memory", " budgets", " fragmentation", " budget", " storage", "/memory", " cache"], [" memory", "-memory", "-budget", " fragmentation", " budget", " budgets", "/memory", " storage"], ["-memory", " memory", "-budget", " fragmentation", "-storage", "/memory", " budget", "(memory"], ["-memory", " memory", " allocation", " fragmentation", " bottleneck", "/memory", " bandwidth", "-storage"], ["-memory", " memory", "/memory", " allocation", " Memory", "(memory", "Memory", " fragmentation"], ["-memory", " memory", "(memory", "/memory", " Memory", "memory", " allocation", "Memory"], ["-memory", " memory", "/memory", "(memory", " allocation", " Memory", "memory", " allocator"], ["-memory", " memory", " allocation", "/memory", "(memory", " allocator", " garbage", " allocations"], [" allocation", "-memory", " garbage", " allocator", " memory", " fragmentation", " latency", "/memory"], [" allocation", " management", " memory", "-memory", " latency", " allocator", "-management", "(memory"], [" management", "-management", " layout", " allocation", " latency", " allocator", "management", " fragmentation"], [" bandwidth", " fragmentation", " allocation", " management", " allocator", " latency", "-band", " layout"], [" management", " bandwidth", " fragmentation", " allocation", " latency", " allocator", "-management", " pressure"], [" bandwidth", " fragmentation", " management", " allocation", " latency", "-band", " allocator", "-management"], [" bandwidth", " management", " fragmentation", " allocation", "-band", " latency", " allocator", "-management"]], "p": [[0.595, 0.3609, 0.0159, 0.014, 0.007, 0.0023, 0.0006, 0.0005], [0.6835, 0.1958, 0.0194, 0.0182, 0.0046, 0.0036, 0.0032, 0.0025], [0.6438, 0.3041, 0.0363, 0.0118, 0.002, 0.0003, 0.0003, 0.0003], [0.003, 0.0026, 0.0025, 0.0016, 0.0015, 0.0014, 0.0013, 0.0013], [0.0034, 0.0025, 0.0022, 0.0022, 0.0021, 0.002, 0.0017, 0.0017], [0.0044, 0.0036, 0.0018, 0.0016, 0.0015, 0.0014, 0.0014, 0.0013], [0.0989, 0.068, 0.068, 0.0342, 0.0266, 0.025, 0.0195, 0.0183], [0.1193, 0.0564, 0.0126, 0.0104, 0.0067, 0.0063, 0.0056, 0.0052], [0.0868, 0.0676, 0.0527, 0.011, 0.0071, 0.0067, 0.0056, 0.0043], [0.0123, 0.0108, 0.0051, 0.004, 0.0037, 0.0033, 0.0027, 0.0024], [0.0362, 0.0282, 0.0182, 0.0104, 0.0086, 0.0086, 0.0071, 0.0071], [0.3278, 0.0346, 0.0072, 0.0072, 0.0064, 0.0056, 0.005, 0.0047], [0.0903, 0.0178, 0.0058, 0.0054, 0.0045, 0.0042, 0.0031, 0.0029], [0.009, 0.0038, 0.0035, 0.0026, 0.0026, 0.0023, 0.0021, 0.002], [0.0183, 0.0046, 0.0043, 0.0043, 0.0041, 0.0036, 0.0036, 0.0034], [0.0204, 0.0058, 0.0052, 0.0048, 0.0045, 0.0038, 0.0038, 0.0031], [0.0367, 0.0082, 0.0077, 0.0072, 0.0068, 0.0056, 0.0047, 0.0036], [0.0233, 0.0097, 0.0067, 0.0059, 0.0049, 0.0046, 0.0041, 0.0038], [0.0426, 0.0201, 0.0178, 0.0178, 0.0122, 0.0115, 0.0061, 0.0054], [0.0236, 0.0135, 0.0072, 0.0064, 0.0056, 0.0053, 0.0053, 0.005], [0.6014, 0.1723, 0.0264, 0.0125, 0.0018, 0.001, 0.0009, 0.0009], [0.0311, 0.0122, 0.0114, 0.0074, 0.0057, 0.0042, 0.0042, 0.0035], [0.0324, 0.0286, 0.0119, 0.0087, 0.0082, 0.0068, 0.006, 0.005], [0.0289, 0.0289, 0.0175, 0.0154, 0.01, 0.0064, 0.006, 0.005], [0.4285, 0.2945, 0.0274, 0.0188, 0.0177, 0.0166, 0.0129, 0.0089], [0.2638, 0.193, 0.0459, 0.0169, 0.014, 0.0109, 0.0102, 0.009], [0.2246, 0.039, 0.0209, 0.0163, 0.0112, 0.0105, 0.0068, 0.0056], [0.1608, 0.0556, 0.0522, 0.0359, 0.0232, 0.0169, 0.0109, 0.0091], [0.3118, 0.0696, 0.0478, 0.0212, 0.0114, 0.0094, 0.0073, 0.0061], [0.2366, 0.0986, 0.0598, 0.0386, 0.0118, 0.0092, 0.0076, 0.0063], [0.2861, 0.0989, 0.06, 0.0302, 0.0092, 0.0092, 0.0076, 0.0056], [0.2246, 0.0471, 0.0304, 0.0286, 0.0184, 0.0093, 0.0077, 0.0064], [0.2699, 0.0414, 0.0236, 0.0143, 0.0111, 0.0087, 0.0087, 0.0068], [0.1805, 0.0456, 0.0115, 0.0115, 0.009, 0.0075, 0.007, 0.0062], [0.1399, 0.0312, 0.0275, 0.0147, 0.013, 0.013, 0.0074, 0.0065], [0.3392, 0.0554, 0.0217, 0.0191, 0.018, 0.0159, 0.0109, 0.009], [0.4706, 0.0438, 0.032, 0.0283, 0.0182, 0.0161, 0.0142, 0.0118], [0.6099, 0.0643, 0.0323, 0.0196, 0.0163, 0.0143, 0.0112, 0.0105], [0.6955, 0.0392, 0.0144, 0.0127, 0.012, 0.0112, 0.0106, 0.0077], [0.8538, 0.0274, 0.0122, 0.0114, 0.0101, 0.0058, 0.0045, 0.0045], [0.8969, 0.0307, 0.0164, 0.0113, 0.01, 0.006, 0.0053, 0.0037], [0.889, 0.0304, 0.0209, 0.0087, 0.0077, 0.0068, 0.0053, 0.0047], [0.7041, 0.0742, 0.0273, 0.0241, 0.0213, 0.0137, 0.0083, 0.0069], [0.6667, 0.062, 0.0275, 0.0258, 0.0178, 0.013, 0.0101, 0.0101], [0.4454, 0.0603, 0.0469, 0.0343, 0.0222, 0.0173, 0.0152, 0.0143], [0.3921, 0.0531, 0.0284, 0.0284, 0.0208, 0.0195, 0.0152, 0.0118], [0.356, 0.0482, 0.0331, 0.0228, 0.0214, 0.0201, 0.0201, 0.0156], [0.4071, 0.0403, 0.0356, 0.0277, 0.026, 0.0203, 0.0148, 0.0115], [0.4427, 0.0599, 0.0321, 0.0301, 0.0235, 0.0172, 0.0142, 0.0142], [0.2592, 0.1081, 0.0373, 0.0351, 0.0351, 0.0241, 0.0213, 0.0176], [0.1918, 0.0965, 0.0851, 0.0485, 0.0428, 0.0202, 0.0202, 0.0168], [0.2822, 0.1038, 0.0809, 0.063, 0.0433, 0.0337, 0.0247, 0.0204], [0.4921, 0.2985, 0.0404, 0.0278, 0.0191, 0.0149, 0.0149, 0.0131], [0.6658, 0.1683, 0.0482, 0.0426, 0.0122, 0.0084, 0.0074, 0.0074], [0.5838, 0.2148, 0.0697, 0.0543, 0.0226, 0.0121, 0.0107, 0.0045], [0.5238, 0.1701, 0.1169, 0.043, 0.0335, 0.0296, 0.0123, 0.0096], [0.4919, 0.1244, 0.1097, 0.0518, 0.0457, 0.0356, 0.0216, 0.0191], [0.3672, 0.1351, 0.1192, 0.0819, 0.0638, 0.0497, 0.0266, 0.0235], [0.7217, 0.0761, 0.0461, 0.0407, 0.0359, 0.0218, 0.0062, 0.0055], [0.4368, 0.1821, 0.1607, 0.1104, 0.0406, 0.0279, 0.008, 0.008], [0.2986, 0.2636, 0.2636, 0.097, 0.0357, 0.0116, 0.0062, 0.0048], [0.5229, 0.1697, 0.1322, 0.103, 0.023, 0.0158, 0.0096, 0.0023], [0.2612, 0.2612, 0.2034, 0.1398, 0.0228, 0.0189, 0.0167, 0.0108]], "ranks": {"Rust": [18627, 39851, 20564, 51407, 12374, 14911, 28426, 9165, 8604, 3682, 2131, 9251, 4524, 6792, 7454, 3004, 4037, 8193, 9252, 6994, 5682, 1701, 1668, 1613, 969, 1806, 1154, 1036, 1463, 2569, 3164, 3082, 3583, 3866, 5320, 4610, 3098, 4052, 3742, 3064, 1998, 2109, 3493, 3818, 3270, 3452, 3896, 3102, 2549, 6410, 9942, 27244, 7461, 3993, 2771, 4555, 2706, 2228, 3113, 4247, 5658, 4393, 4185]}}, {"pos": 417, "top": [[".", ",", "\u2013", " ", "\u00a0\u00a0", "\u2026.", ";", "\u2026"], [" \u200b\u200b", "  \n\n", "s", "\u2013", " \u2013", "schaft", "ally", "ed"], [",", "\u2013", ".", "\u2026.", "\u2026", "\u2026..", " \u200b\u200b", " \u2013"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " \u041a\u0440\u0430\u0441\u0438", "\ud07c", "\ufffd\ufffd", "endiz", "uffy", "\ufffd\ufffd"], [",", "ed", " \u200b\u200b", "\u00a0\u00a0", ".", "ally", "s", "ized"], [" \u200b\u200b", "ed", ",", "\u2026.", "ally", ".", "\u00a0\u00a0", "ized"], ["s", "ed", ".", "ally", ".\u00bb", ".\u2014", ",", ".\u201d"], [",", ".", "ally", "ed", ".\u00bb", ";", " \u200b\u200b", " skills"], [".", " \u200b\u200b", ",", ".\u00bb", "ally", "\u00a0\u00a0", "\u9053\u8fdc", ";"], [",", "ally", ".", ";", "istration", "s", "ized", "ed"], ["ized", "ed", ".", "ally", " skills", " strategies", "s", "ation"], [" **\u00ab", " strategies", " logistics", "istration", " policies", " infrastructure", " **\u201e", " functionalities"], [" strategies", " logistics", " strategic", " infrastructure", " systems", " processes", " skills", " policies"], [" strategic", " strategies", " skills", " infrastructure", " systems", " resources", " logistics", " system"], [" strategic", " issues", " skills", " strategies", " tools", " critical", " transition", " efforts"], [" system", " skills", " systems", " strategic", " efforts", " critical", " issues", " tools"], [" system", " strategic", " systems", " resources", " skills", " efforts", " strategically", " capabilities"], [" skills", " strategic", " issues", " systems", " system", " tools", " strategies", " space"], [" space", " tweaks", " issues", " tools", " systems", " skills", " strategic", " strategies"], [" issues", " efforts", " strategic", " skills", " tweaks", " space", " resources", " tools"], ["<|endoftext|>", " \u2014", " \n\n", " efforts", " ", " issues", " space", " system"], [" space", " systems", " tools", " infrastructure", " strategies", " goals", " skills", " resources"], [" space", " tools", " systems", " resources", " skills", " infrastructure", " management", " issues"], [" space", " efforts", " issues", " system", " systems", " ,", " tools", " resources"], [" space", " fluid", " __", " systems", " resources", " processes", " tools", " upkeep"], [" systems", " memory", " processes", " __", " tools", " ___", " space", " skills"], [" systems", " tools", " memory", " processes", " fluid", " skills", " management", " infrastructure"], [" __", " ___", " _", " ,", " systems", " space", " _____", " ______"], [" __", " systems", " memory", " space", " tools", " skills", " technology", " system"], [" systems", " space", " technology", " tools", " memory", " skills", " system", " management"], [" systems", " system", " technology", " space", " .", " complex", " skills", " memory"], [" technology", " system", " systems", " space", " complex", " critical", " work", " over"], [" complex", " space", " critical", " memory", " systems", " system", " technology", " tools"], [" fluid", " technology", " memory", " systems", " crisis", " system", " space", " critical"], [" crisis", " management", " fluid", " memory", " tech", " logistics", " meticulously", " system"], [" memory", " management", " crisis", " complex", " incredibly", " fluid", " optimization", " system"], [" optimization", " optimizations", " memory", " optimized", " crisis", " management", " tweaks", " incredibly"], [" optimization", " management", " optimizations", " crisis", " tweaks", " optimized", " memory", " labor"], [" management", " optimization", " crisis", " labor", " optimized", " optimizations", " memory", " incredibly"], [" management", " optimization", " garbage", " crisis", " labor", " memory", " chaos", " incredibly"], [" memory", " management", " optimization", " crisis", " labor", " garbage", " optimizations", " chaos"], [" management", " memory", " optimization", " garbage", " crisis", " problems", " optimizations", " cleanup"], [" management", " optimization", " memory", " garbage", " crisis", " optimizations", " optimized", " nightmares"], [" management", " optimization", " problems", " crisis", " memory", " nightmares", " systems", " critical"], [" management", " problems", " crisis", " nightmares", " optimization", " problem", " systems", " catastrophic"], [" crisis", " problems", " problem", " management", " nightmare", " nightmares", " crises", " optimization"], [" crisis", " problem", " problems", " management", " nightmare", " nightmares", " crises", " optimization"], [" crisis", " management", " nightmare", " problem", " problems", " nightmares", " crises", " survival"], [" crisis", " nightmare", " relentless", " nightmares", " frantic", " catastrophic", " crises", " management"], [" nightmare", " crisis", " survival", " catastrophe", " nightmares", " relentless", " desperation", " obsession"], [" nightmare", " catastrophe", " nightmares", " obsession", " relentless", " crisis", " desperation", " catastrophic"], [" nightmare", " crisis", " battleground", " nightmares", " catastrophe", " obsession", " relentless", " challenge"], [" nightmare", " crisis", " nightmares", " catastrophe", " hostage", " relentless", " battleground", " bottleneck"], [" nightmare", " crisis", " nightmares", " catastrophe", " battleground", " hostage", " disaster", " obsession"], [" nightmare", " battleground", " battle", " crisis", " battlefield", " battles", " showdown", " nightmares"], [" problem", " nightmare", " battleground", " crisis", " battle", " battlefield", " problems", " catastrophe"], [" nightmare", " battleground", " nightmares", " warfare", " battlefield", " battle", "\u5669\u68a6", " problem"], [" nightmare", " crisis", " battleground", "\u5669\u68a6", " battlefield", " nightmares", " warfare", " battle"], [" nightmare", " crisis", " warfare", " battleground", " battlefield", " war", " battle", " catastrophe"], [" problem", " nightmare", " warfare", " war", " crisis", " suicide", " battleground", " battlefield"], [" war", " nightmare", " crisis", " warfare", " problem", " suicide", " battleground", " battlefield"], [" crisis", " problem", " nightmare", " war", " suicide", " death", " hostage", " apocalypse"], [" problem", " crisis", " nightmare", " war", " suicide", " death", " hostage", " siege"]], "p": [[0.8795, 0.105, 0.0028, 0.0025, 0.002, 0.0017, 0.0015, 0.0009], [0.1309, 0.0054, 0.0051, 0.0045, 0.0037, 0.0026, 0.0016, 0.0016], [0.351, 0.2412, 0.2412, 0.061, 0.0419, 0.0145, 0.012, 0.0073], [0.0032, 0.003, 0.0014, 0.0014, 0.0013, 0.0011, 0.001, 0.0009], [0.0452, 0.0399, 0.0177, 0.0156, 0.0107, 0.0074, 0.0051, 0.0045], [0.047, 0.0303, 0.0082, 0.0036, 0.0032, 0.0032, 0.0032, 0.0026], [0.1376, 0.0573, 0.0198, 0.0164, 0.0145, 0.0094, 0.0088, 0.0083], [0.0294, 0.0294, 0.0215, 0.0167, 0.0058, 0.0048, 0.0048, 0.0045], [0.0905, 0.0401, 0.0377, 0.0333, 0.0178, 0.0054, 0.0048, 0.0045], [0.1042, 0.0052, 0.0046, 0.004, 0.0033, 0.0033, 0.003, 0.002], [0.0184, 0.0127, 0.0112, 0.0087, 0.0072, 0.0068, 0.0068, 0.0064], [0.0073, 0.0053, 0.0042, 0.0029, 0.0029, 0.0027, 0.0025, 0.0025], [0.006, 0.0056, 0.0047, 0.0044, 0.0041, 0.0041, 0.0039, 0.0036], [0.0092, 0.0077, 0.0077, 0.0056, 0.0053, 0.0053, 0.0046, 0.0046], [0.0171, 0.0142, 0.0134, 0.0098, 0.0098, 0.0081, 0.0067, 0.0063], [0.0165, 0.0136, 0.0113, 0.0094, 0.0094, 0.0088, 0.0073, 0.0069], [0.0147, 0.0107, 0.0101, 0.0089, 0.0089, 0.0079, 0.0074, 0.0074], [0.012, 0.01, 0.0093, 0.0088, 0.0088, 0.0083, 0.0083, 0.0078], [0.0145, 0.0106, 0.0106, 0.0099, 0.0088, 0.0088, 0.0088, 0.0088], [0.0122, 0.0107, 0.0101, 0.0095, 0.0089, 0.0084, 0.0069, 0.0069], [0.289, 0.0324, 0.0223, 0.0119, 0.0082, 0.0064, 0.0053, 0.0034], [0.0091, 0.0071, 0.0071, 0.0059, 0.0059, 0.0059, 0.0059, 0.0055], [0.0284, 0.0143, 0.0118, 0.0105, 0.0105, 0.0092, 0.0092, 0.0092], [0.0312, 0.0157, 0.0138, 0.013, 0.0122, 0.0108, 0.0095, 0.0095], [0.0205, 0.0181, 0.0141, 0.0141, 0.0132, 0.0117, 0.0117, 0.011], [0.0168, 0.0158, 0.0139, 0.0139, 0.0115, 0.0115, 0.0115, 0.0108], [0.0231, 0.018, 0.0149, 0.014, 0.0102, 0.0096, 0.0096, 0.0085], [0.1479, 0.048, 0.0274, 0.0188, 0.0156, 0.0156, 0.0129, 0.0129], [0.0256, 0.0226, 0.0187, 0.0187, 0.0176, 0.0146, 0.0129, 0.0121], [0.0189, 0.0156, 0.0156, 0.0138, 0.0122, 0.0122, 0.0122, 0.0089], [0.0216, 0.0179, 0.0168, 0.0168, 0.0158, 0.0123, 0.0096, 0.0096], [0.0127, 0.012, 0.012, 0.0106, 0.0099, 0.0088, 0.0077, 0.0073], [0.0151, 0.0151, 0.0125, 0.0125, 0.0111, 0.0104, 0.0098, 0.0067], [0.0102, 0.0102, 0.0096, 0.0096, 0.0084, 0.0079, 0.0079, 0.0074], [0.0153, 0.0135, 0.0119, 0.0105, 0.0093, 0.0082, 0.0077, 0.0077], [0.0238, 0.0174, 0.0153, 0.012, 0.0099, 0.0093, 0.0073, 0.0073], [0.0243, 0.0167, 0.0167, 0.0138, 0.013, 0.013, 0.0101, 0.0079], [0.03, 0.0182, 0.0161, 0.0142, 0.0142, 0.0133, 0.0086, 0.0076], [0.0502, 0.0223, 0.0163, 0.0135, 0.0112, 0.0099, 0.0099, 0.0082], [0.0556, 0.0232, 0.0204, 0.0192, 0.018, 0.0124, 0.0085, 0.008], [0.0409, 0.0384, 0.0264, 0.0248, 0.0181, 0.016, 0.0097, 0.0086], [0.0441, 0.0366, 0.0303, 0.0208, 0.0196, 0.0134, 0.0105, 0.0105], [0.047, 0.0303, 0.0184, 0.0184, 0.0173, 0.0112, 0.0099, 0.0099], [0.0412, 0.0221, 0.0195, 0.0152, 0.0143, 0.0143, 0.0134, 0.0118], [0.0512, 0.0292, 0.0227, 0.0213, 0.0177, 0.0156, 0.0138, 0.0095], [0.0532, 0.0441, 0.0441, 0.0414, 0.0251, 0.0222, 0.0135, 0.0126], [0.0615, 0.045, 0.0423, 0.0329, 0.0256, 0.0226, 0.0188, 0.0129], [0.0742, 0.0291, 0.0257, 0.0226, 0.0213, 0.0156, 0.0129, 0.0121], [0.0743, 0.0451, 0.0398, 0.0176, 0.0176, 0.0166, 0.0166, 0.0166], [0.1279, 0.0879, 0.0471, 0.039, 0.0367, 0.0323, 0.0173, 0.0153], [0.5644, 0.0595, 0.0435, 0.0264, 0.0193, 0.017, 0.0103, 0.0097], [0.6287, 0.0402, 0.0333, 0.0333, 0.026, 0.0215, 0.0115, 0.0115], [0.6068, 0.0821, 0.0498, 0.0342, 0.0134, 0.0111, 0.0111, 0.0104], [0.7281, 0.0677, 0.0363, 0.0194, 0.0133, 0.0092, 0.0071, 0.0063], [0.2709, 0.2391, 0.1643, 0.088, 0.0605, 0.0252, 0.0153, 0.0119], [0.4072, 0.2179, 0.0802, 0.0429, 0.0429, 0.026, 0.0203, 0.0203], [0.8791, 0.0207, 0.0182, 0.0098, 0.0098, 0.0098, 0.0076, 0.0076], [0.7287, 0.1626, 0.0194, 0.0092, 0.0081, 0.0081, 0.0081, 0.0071], [0.5602, 0.1605, 0.0973, 0.0358, 0.0279, 0.0169, 0.0116, 0.0116], [0.28, 0.2181, 0.1323, 0.0708, 0.0625, 0.0429, 0.0295, 0.0295], [0.2955, 0.1792, 0.1087, 0.0959, 0.0847, 0.0353, 0.0275, 0.0275], [0.1563, 0.1563, 0.1563, 0.1218, 0.1074, 0.0575, 0.0199, 0.0175], [0.5217, 0.1027, 0.08, 0.0485, 0.0485, 0.0428, 0.0148, 0.0108]], "ranks": {"Rust": [27465, 99072, 56194, 77108, 21005, 16472, 46812, 30983, 48209, 32771, 17454, 35988, 18614, 18420, 16129, 6760, 8721, 14621, 16818, 13543, 13027, 11405, 6702, 5985, 3923, 4561, 3368, 3016, 3097, 4008, 4404, 4495, 4670, 3344, 3403, 4090, 2846, 3718, 2899, 2300, 1981, 1981, 2512, 2890, 2876, 3421, 3293, 3029, 1625, 3159, 9687, 30767, 42274, 49099, 67524, 80448, 89869, 69359, 64865, 47930, 36949, 32385, 26788]}}, {"pos": 418, "top": [[".", ",", "\u00a0\u00a0", "\u2026.", " \u2013", "\u2026", "?", ";"], [".", ",", " \u2013", "??", "?", "\u2013", "!", "!!"], [",", ".", "\u2026", "\u2013", "\u2026.", "?", ";", " \u2013"], [" \u041a\u0440\u0430\u0441\u0438", "\uc3df", "uggy", "\ufffd\ufffd", "\u65f6\u6377", " \u0417\u0432\u0435", "shal", " \u0421\u0432\u043e\u0431\u043e"], [".", "\u00a0\u00a0", "!", "!!!", "\u2026", " \u201d", "\u2026.", ","], [".", "!", "?", " \u201d", "\u2026.", ",", "\u00a0\u00a0", "!!!"], [".", "\uff01", "\u3002", "!", "?", ".\u201d", " \u201d", "\uff1f"], [".", "!!!", "!", "?", "???", "??", " !!!!", "!!!!"], [".", "?", "!!!", "!", ".\u201d", "???", "??", "?!"], [",", ".", "\u00a0", "\u00a0\u00a0", "!", ";", "?", "\u00a0\u00a0\u00a0"], [".", ",", "?", "\u00a0", "!", "\u00a0\u00a0", ";", "!!!"], [" problems", "-solving", " problem", " everybody", " seriously", " stuff", ".", " difficulties"], [".", " problems", "-solving", " solving", " problem", " seriously", " everything", " difficult"], [" everything", ".", " everybody", " huge", " problems", " really", " just", ","], [" just", " everything", " going", " \"", " that", " even", " really", " ,"], [" everything", " going", " getting", " incredibly", " really", " just", " that", " basically"], [".", " everything", " just", " incredibly", " getting", " going", ",", " basically"], [" everything", ".", " incredibly", " really", " basically", " huge", " stuff", " getting"], [" .", " everything", " incredibly", " really", " stuff", " even", " fundamentally", " freaking"], [" even", " incredibly", " everything", " fundamentally", " arguably", " truly", " ultimately", " ."], ["<|endoftext|>", " ,", " --", " .", "\n\n", " \n\n", " ultimately", " even"], [" .**", " --", " ---", " fundamentally", " freaking", " stuff", " incredibly", " everything"], [" --", " ---", " .", " ?", " .**", " ,", " !", " truly"], [" --", " ,", " .", " ?", " ---", " even", " ultimately", " truly"], ["\n\n", " \n\n", " --", " ---", "  \n\n", "\r\n\r\n", " __", " ?"], [" **", " ___", " .**", " __", " ---", " --", " ?**", ".__"], [" **", " ___", " __", " .**", " ---", " --", ".__", " \n\n"], [" **", " __", " ___", "\n\n", " \n\n", " --", " ,", " ______"], [" **", " .", " __", " .**", " ?", " ___", " \n\n", " ,"], [" .", " **", " .**", " ,", " __", " ?", " ___", " ______"], [" .", " **", " .**", " ,", " ?", " ...", " **.", " __"], [" .", " **", " .**", " ,", " everything", " huge", " incredibly", " **."], [" .", " huge", " **", " incredibly", " everything", " ,", " heavily", " even"], [" incredibly", " huge", " relentless", " .", " heavily", " fundamentally", " \u2014", " massive"], [" relentless", " incredibly", " .", " heavily", " huge", " relentlessly", " notoriously", " forced"], [" .", " relentless", " incredibly", " heavily", " huge", " \u2014", " forced", " notoriously"], [" .", " relentless", " impossible", " notoriously", " incredibly", " relentlessly", " heavily", " huge"], [" .", " impossible", " relentless", " notoriously", " relentlessly", " incredibly", " huge", " fundamentally"], [" .", " impossible", " relentless", " incredibly", " relentlessly", " notoriously", " even", " huge"], [" .", " impossible", " relentless", " relentlessly", " incredibly", " notoriously", " huge", " EVERY"], [" relentless", " .", " impossible", " relentlessly", " hardware", " incredibly", " huge", " inevitable"], [" relentless", " .", " relentlessly", " hardware", " heat", " notoriously", " aggressively", " engineering"], [" .", " relentless", " relentlessly", " hardware", " notoriously", " heat", " aggressively", " forced"], [" .", " notoriously", " hardware", " relentless", " incredibly", " heavily", " problems", " heat"], [" .", " notoriously", " heavily", " relentless", " aggressively", " impossible", " incredibly", " hardware"], [" .", " notoriously", " heavily", " every", " relentless", " relentlessly", " hard", " aggressively"], [" notoriously", " relentless", " EVERY", " every", " relentlessly", " incredibly", " dangerously", " desperately"], [" notoriously", " relentless", " every", " heavily", " relentlessly", " desperately", " exacerbated", " incredibly"], [" exacerbated", ".", " relentless", " .", " every", " heavily", " combined", " notoriously"], [".", " exacerbated", " combined", ";", ".**", " .", "().", " unless"], [".", " exacerbated", "().", ".**", " combined", ".</", "++.", " compounded"], [".", "().", ".**", " exacerbated", "*.", "**.", ".\"", ".*"], [".", " exacerbated", "().", ".**", "**.", "*.", " compounded", ".\""], [" disguised", ".", " exacerbated", " combined", "().", " compounded", ".**", " {}."], [" exacerbated", " disguised", ".", " combined", " compounded", " Combined", " requiring", " combining"], [" disguised", ".", " exacerbated", " combined", " compounded", " forcing", " masking", " pretending"], [" compounded", ".", " exacerbated", " disguised", " waiting", " masking", " combined", "\u53e0\u52a0"], [" compounded", ".", " disguised", " exacerbated", "\u53e0\u52a0", " coupled", " combined", " waiting"], [" compounded", " disguised", ".", " exacerbated", "\u53e0\u52a0", " wrapped", " combined", " masked"], [" scripting", " Script", " script", ".", " scripted", " compounded", " wrapped", "Script"], [".", " script", " scripting", " compounded", " Script", " scripted", " wrapped", " disguised"], [".", " compounded", " wrapped", " script", " scripted", " scripting", " Script", " waiting"], [".", " wrapped", " compounded", " disguised", " combined", " exacerbated", ",", " waiting"]], "p": [[0.6221, 0.333, 0.0054, 0.0054, 0.0054, 0.0051, 0.0042, 0.0039], [0.1162, 0.0484, 0.0229, 0.0215, 0.0178, 0.0148, 0.013, 0.0122], [0.4576, 0.3564, 0.0619, 0.0547, 0.0138, 0.0115, 0.0084, 0.0058], [0.0097, 0.0032, 0.002, 0.0017, 0.0015, 0.0015, 0.0014, 0.0012], [0.0604, 0.0285, 0.0236, 0.0222, 0.0153, 0.0143, 0.0119, 0.0105], [0.231, 0.0515, 0.019, 0.019, 0.019, 0.0178, 0.0148, 0.0122], [0.1465, 0.1072, 0.0888, 0.0692, 0.0394, 0.0394, 0.0394, 0.0394], [0.1989, 0.1133, 0.057, 0.0368, 0.0346, 0.0325, 0.021, 0.0197], [0.8003, 0.033, 0.0274, 0.0257, 0.0101, 0.0095, 0.0069, 0.0065], [0.6764, 0.1332, 0.0231, 0.0192, 0.0149, 0.0066, 0.0059, 0.0043], [0.9279, 0.028, 0.0085, 0.008, 0.008, 0.0055, 0.001, 0.0006], [0.0369, 0.0254, 0.0154, 0.0099, 0.0093, 0.0082, 0.0082, 0.0077], [0.0194, 0.0194, 0.0194, 0.0126, 0.0104, 0.0072, 0.0067, 0.0056], [0.0199, 0.0175, 0.0128, 0.0128, 0.012, 0.0106, 0.0088, 0.0088], [0.0412, 0.0301, 0.0207, 0.0195, 0.0172, 0.0161, 0.0152, 0.0142], [0.0397, 0.0226, 0.0226, 0.0212, 0.0176, 0.0165, 0.0137, 0.0129], [0.0779, 0.0444, 0.0269, 0.0223, 0.0223, 0.0185, 0.0174, 0.0163], [0.0853, 0.0429, 0.0314, 0.0216, 0.0139, 0.0131, 0.0123, 0.0115], [0.0594, 0.0524, 0.0493, 0.0205, 0.0193, 0.016, 0.0117, 0.0103], [0.0331, 0.0331, 0.0311, 0.0188, 0.0177, 0.0177, 0.0166, 0.0114], [0.7739, 0.0133, 0.0125, 0.0104, 0.0097, 0.0046, 0.0046, 0.0036], [0.0162, 0.0152, 0.0134, 0.0098, 0.0072, 0.0072, 0.0068, 0.006], [0.3629, 0.0761, 0.0232, 0.0232, 0.0218, 0.0192, 0.0103, 0.0097], [0.418, 0.0993, 0.0682, 0.0208, 0.0208, 0.0119, 0.0111, 0.0087], [0.3041, 0.2369, 0.1628, 0.0466, 0.0183, 0.0172, 0.0151, 0.0111], [0.4699, 0.0869, 0.0869, 0.0636, 0.0527, 0.032, 0.0182, 0.0098], [0.5287, 0.0863, 0.0811, 0.0434, 0.015, 0.0141, 0.0124, 0.0103], [0.3016, 0.1425, 0.111, 0.111, 0.0673, 0.0233, 0.0205, 0.0193], [0.4367, 0.086, 0.049, 0.0406, 0.0358, 0.0262, 0.0231, 0.0204], [0.3534, 0.2752, 0.0478, 0.0329, 0.0212, 0.0199, 0.0107, 0.0069], [0.7931, 0.0507, 0.0136, 0.0128, 0.0113, 0.0064, 0.0037, 0.0029], [0.4921, 0.0552, 0.0109, 0.009, 0.0075, 0.0066, 0.0043, 0.0043], [0.2693, 0.0208, 0.0208, 0.0143, 0.0087, 0.0087, 0.0067, 0.0056], [0.0368, 0.0346, 0.0305, 0.0305, 0.0238, 0.0099, 0.0082, 0.0082], [0.0569, 0.0391, 0.0304, 0.0209, 0.0209, 0.0209, 0.0119, 0.0099], [0.1823, 0.028, 0.0263, 0.0218, 0.0205, 0.015, 0.015, 0.0141], [0.1799, 0.0333, 0.0313, 0.0276, 0.0215, 0.0202, 0.0178, 0.0167], [0.0971, 0.0488, 0.0315, 0.0296, 0.0203, 0.0191, 0.014, 0.0116], [0.0727, 0.0603, 0.0323, 0.0222, 0.0208, 0.0184, 0.0143, 0.0143], [0.0609, 0.0475, 0.0419, 0.0224, 0.0198, 0.0154, 0.0128, 0.0106], [0.0412, 0.025, 0.0235, 0.0194, 0.0151, 0.0126, 0.0111, 0.0111], [0.0454, 0.0332, 0.0312, 0.0229, 0.0189, 0.0157, 0.0122, 0.0115], [0.0312, 0.0275, 0.0228, 0.0214, 0.0178, 0.0178, 0.0157, 0.0108], [0.021, 0.021, 0.0174, 0.0163, 0.0144, 0.0144, 0.0135, 0.0119], [0.0552, 0.0216, 0.0149, 0.0131, 0.0131, 0.0116, 0.0109, 0.0109], [0.0288, 0.0254, 0.0186, 0.0154, 0.0154, 0.0145, 0.0136, 0.012], [0.055, 0.0277, 0.0202, 0.019, 0.0179, 0.0139, 0.0131, 0.0123], [0.0384, 0.0299, 0.0219, 0.0193, 0.0193, 0.0181, 0.017, 0.0141], [0.0786, 0.0308, 0.024, 0.0225, 0.0199, 0.0165, 0.0145, 0.0137], [0.3596, 0.0968, 0.0139, 0.0096, 0.0079, 0.0075, 0.0062, 0.0058], [0.5334, 0.0927, 0.0598, 0.0171, 0.0151, 0.0098, 0.0092, 0.0086], [0.6627, 0.0698, 0.0398, 0.0213, 0.0129, 0.0121, 0.0107, 0.0065], [0.6684, 0.1161, 0.0377, 0.0243, 0.0101, 0.007, 0.0048, 0.004], [0.2725, 0.2405, 0.2405, 0.0164, 0.0136, 0.0136, 0.0064, 0.0057], [0.282, 0.1176, 0.0916, 0.086, 0.0522, 0.0169, 0.014, 0.0132], [0.1361, 0.1128, 0.0995, 0.039, 0.0366, 0.0173, 0.0143, 0.0119], [0.2267, 0.1375, 0.1213, 0.0888, 0.0394, 0.0164, 0.0154, 0.0088], [0.395, 0.0881, 0.0881, 0.0828, 0.0324, 0.0269, 0.0253, 0.0237], [0.3538, 0.1149, 0.1014, 0.0742, 0.0373, 0.035, 0.0212, 0.0176], [0.2433, 0.1149, 0.1014, 0.0895, 0.0615, 0.0615, 0.0373, 0.035], [0.3883, 0.1112, 0.1112, 0.0675, 0.0675, 0.0464, 0.0299, 0.0264], [0.9422, 0.0111, 0.0056, 0.0053, 0.0041, 0.0032, 0.0032, 0.0028], [0.9998, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [76177, 99171, 95096, 109253, 13764, 39252, 84100, 94804, 100313, 19770, 12336, 19207, 8272, 6822, 13837, 30986, 34283, 77714, 74840, 61566, 55611, 90612, 39006, 20641, 10575, 7511, 5442, 6178, 6376, 7425, 8374, 10652, 10437, 11150, 12646, 16312, 12242, 16434, 18117, 18654, 12848, 9047, 9504, 11367, 10528, 11643, 6796, 3478, 2134, 2406, 8292, 19439, 17529, 18189, 33103, 7005, 3210, 1543, 1301, 272, 205, 140, 140]}}, {"pos": 419, "top": [[" \u2013", ".", ",", "\u2013", ";", "\u00a0\u00a0", "\u00a0", "\u2026."], [" \u2013", "\u2013", "\u2013and", " \u2013,", " very", " \u200b\u200b", "\u2013\u2013", " West"], ["\u2013", " \u2013", "\u2026..", ".", ",", "\u2026", "\u2026.", "\u2013and"], ["-------------</", " milfs", "----------</", " Shemale", " Blowjob", " ;;^", "\uff0a\uff0a\uff0a\uff0a", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9"], [":@", " (@", "\uff20", " \u201c", ".@", "(@", " \u201c.", "\u2193\u2193"], [" \u200b\u200b", ".", ",", ":", "<|quad_end|>", "!:", " Rangers", "!"], ["  \n\n", "<|endoftext|>", " \n\n", "\n\n", "  \n", " \u201c", "   \n\n", " \u201d"], ["  \n\n", "   \n\n", " \n\n", "    \n\n", "  \n", " @", "   \n", "!"], [" \n\n", "  \n\n", "   \n\n", "    \n\n", "\n\n", "      \n\n", "     \n\n", "\t\n\n"], [" \u00ad", " though", ",", "\u00a0", "though", "\u60df\u4e00", " hugely", " folks"], [" \u00ad", " though", " @", "  \n\n", " even", " folks", " arguably", " "], [" folks", " incredibly", "\u9605\u8bfb\u672c\u6587\u524d", " bigger", " freaking", " gritty", " skyrocket", " arguably"], [" incredibly", " arguably", " folks", " freaking", " skyrocket", " huge", " even", " pervasive"], [" incredibly", " huge", " arguably", " even", " hardcore", " sprawling", " really", " gritty"], [" even", " incredibly", " truly", " arguably", " just", " huge", " though", " much"], [" incredibly", " arguably", " even", " countless", " sprawling", " massive", " truly", " incredible"], [" incredibly", " arguably", " even", " countless", " truly", " many", " myriad", " ultimately"], [" incredibly", " arguably", " countless", " truly", " huge", " relentless", " myriad", " folks"], [" incredibly", " arguably", " even", " truly", " countless", " ultimately", " much", " relentlessly"], [" incredibly", " even", " arguably", " truly", " ultimately", " though", " much", " myriad"], ["<|endoftext|>", " though", " ultimately", " even", " arguably", " much", " truly", " myriad"], [" incredibly", " arguably", " even", " ultimately", " truly", " countless", " relentlessly", " myriad"], [" incredibly", " even", " arguably", " truly", " ultimately", " much", " though", " myriad"], [" even", " incredibly", " much", " truly", " arguably", " though", " ultimately", " myriad"], ["  \n\n", " \n\n", "\n\n", "   \n\n", " arguably", " though", "\r\n\r\n", " \r\n\r\n"], [" incredibly", " arguably", " hugely", " vastly", " truly", " myriad", " wildly", " even"], [" incredibly", " arguably", " even", " truly", " myriad", " vastly", " wildly", " ultimately"], [" incredibly", "\n\n", " arguably", " even", " truly", " \n\n", " vastly", " ultimately"], [" incredibly", " arguably", " truly", "  \n\n", " \n\n", " vastly", " myriad", " even"], [" even", " incredibly", " arguably", " heavily", " truly", " ultimately", " much", " massive"], [" incredibly", " even", " huge", " truly", " much", " massive", " heavily", " just"], [" incredibly", " huge", " heavily", " massive", " even", " truly", " ultimately", " much"], [" incredibly", " huge", " massive", " relentless", " relentlessly", " aggressively", " heavily", " truly"], [" relentlessly", " relentless", " incredibly", " aggressively", " massive", " brutally", " massively", " huge"], [" relentless", " relentlessly", " brutally", " aggressively", " incredibly", " brutal", " massively", " massive"], [" relentless", " relentlessly", " brutally", " aggressively", " brutal", " notoriously", " desperately", " incredibly"], [" relentlessly", " relentless", " brutally", " aggressively", " notoriously", " desperately", " brutal", " insanely"], [" relentless", " relentlessly", " aggressively", " brutally", " insanely", " massively", " notoriously", " desperately"], [" relentless", " relentlessly", " brutally", " impossible", " insanely", " aggressively", " massively", " incredibly"], [" relentless", " relentlessly", " insanely", " brutally", " impossible", " aggressively", " massively", " incredibly"], [" relentless", " brutally", " massively", " insanely", " relentlessly", " aggressively", " brutal", " impossible"], [" aggressively", " massively", " relentless", " brutally", " relentlessly", " desperately", " forcing", " insanely"], [" aggressively", " brutally", " massively", " desperately", " forcing", " relentless", " brutal", " relentlessly"], [" brutally", " massively", " desperately", " aggressively", " forcing", " forced", " drastically", " brutal"], [" forcing", " forced", " massively", " aggressively", " impossible", " desperately", " brutally", " massive"], [" forcing", " aggressively", " forced", " massively", " impossible", " wildly", " drastically", " demanding"], [" massively", " forcing", " drastically", " impossible", " aggressively", " wildly", " massive", " huge"], [" forcing", " impossible", " massively", " massive", " wildly", " forced", " demanding", " aggressively"], [" forcing", " forced", " blindly", " leveraging", " reliance", " combined", " abandoning", " combining"], [" forcing", "\u9605\u8bfb\u672c\u6587\u524d", " dumping", "\u540c\u65f6\u8fd8\u8981", " cheap", " reliance", "\u5012\u903c", "\u540c\u65f6\u8981"], ["\u540c\u65f6\u8981", "\u540c\u65f6\u8fd8\u8981", "\u518d\u52a0\u4e0a", " relying", " forcing", " dumping", "\u540c\u65f6\u5c06", " combining"], [" requiring", "\u518d\u52a0\u4e0a", " Adding", "\u52a0\u4e0a", " forcing", " restricting", " relying", " adding"], [" forcing", " Adding", " relying", " requiring", "\u518d\u52a0\u4e0a", " restricting", " adding", " insisting"], [" Adding", " adding", " combining", " forcing", " restricting", " syncing", " relying", "Adding"], [" combining", " adding", " Adding", " Combined", " requiring", "adding", "Adding", " Combine"], [" forcing", "forcing", " adding", " Adding", " combining", " requiring", " Cheap", "adding"], [" forcing", " Adding", "forcing", " combining", " adding", " Cheap", " requiring", " Mixing"], [" forcing", "forcing", " Adding", " requiring", " adding", " combining", " Cheap", "\u5f3a\u8feb"], [" Adding", " forcing", "forcing", " adding", " combining", " requiring", " Moving", " Combined"], [" scripting", " Cheap", " forcing", " Adding", " Script", " cheap", " Moving", " script"], [" Cheap", " cheap", " scripting", " Adding", " forcing", "cheap", "Cheap", " Script"], [" Cheap", " cheap", " Adding", " forcing", " scripting", "cheap", "Cheap", " Moving"], [" Cheap", " Adding", " Moving", " Asking", " Combined", " Mid", " Using", " Script"]], "p": [[0.5208, 0.3159, 0.0799, 0.0622, 0.0048, 0.0021, 0.0019, 0.0017], [0.2511, 0.0171, 0.0055, 0.0019, 0.0015, 0.0012, 0.001, 0.0009], [0.4367, 0.3401, 0.049, 0.0432, 0.0358, 0.0217, 0.0192, 0.0124], [0.0093, 0.0068, 0.0064, 0.0053, 0.0047, 0.0028, 0.0027, 0.0025], [0.0043, 0.0036, 0.0033, 0.0031, 0.0018, 0.0013, 0.0013, 0.0012], [0.0115, 0.0045, 0.0037, 0.0019, 0.0018, 0.0016, 0.0014, 0.0013], [0.4174, 0.2869, 0.0725, 0.0413, 0.0162, 0.0162, 0.0053, 0.0053], [0.2251, 0.1063, 0.0502, 0.0082, 0.0077, 0.0072, 0.0044, 0.0032], [0.4877, 0.3798, 0.096, 0.0089, 0.0058, 0.0027, 0.0021, 0.0017], [0.0113, 0.0073, 0.0037, 0.0018, 0.0015, 0.0015, 0.0014, 0.0014], [0.0383, 0.0359, 0.0263, 0.0205, 0.017, 0.0117, 0.0117, 0.0085], [0.0037, 0.0035, 0.0024, 0.0022, 0.0021, 0.0021, 0.0021, 0.002], [0.0139, 0.0084, 0.0048, 0.0035, 0.0026, 0.0024, 0.0024, 0.0023], [0.0077, 0.005, 0.0036, 0.0032, 0.0032, 0.0025, 0.0015, 0.0014], [0.0284, 0.0284, 0.0251, 0.0183, 0.0134, 0.0111, 0.0087, 0.0072], [0.1534, 0.0118, 0.0098, 0.0081, 0.0059, 0.0056, 0.0052, 0.0044], [0.2189, 0.0553, 0.018, 0.0149, 0.014, 0.0123, 0.0096, 0.0085], [0.2901, 0.0571, 0.0154, 0.0144, 0.012, 0.0099, 0.0093, 0.0088], [0.2739, 0.0692, 0.0395, 0.0198, 0.0198, 0.012, 0.01, 0.0094], [0.0866, 0.0675, 0.0526, 0.0339, 0.0281, 0.0264, 0.0233, 0.016], [0.423, 0.0224, 0.0164, 0.0154, 0.0145, 0.012, 0.0113, 0.0106], [0.0942, 0.0474, 0.0254, 0.0185, 0.0174, 0.0099, 0.0093, 0.0082], [0.0558, 0.0463, 0.0408, 0.0299, 0.0248, 0.017, 0.0133, 0.0117], [0.0528, 0.032, 0.0283, 0.0283, 0.0265, 0.0234, 0.022, 0.0142], [0.2896, 0.2401, 0.1207, 0.0174, 0.0127, 0.0127, 0.012, 0.0112], [0.0914, 0.0358, 0.0262, 0.0246, 0.0246, 0.0231, 0.0169, 0.0124], [0.0568, 0.0304, 0.0252, 0.0237, 0.0223, 0.0223, 0.0173, 0.0173], [0.0474, 0.0474, 0.0393, 0.0369, 0.0254, 0.0254, 0.0186, 0.0174], [0.0697, 0.0578, 0.0273, 0.0241, 0.0241, 0.0226, 0.0226, 0.02], [0.0671, 0.0407, 0.0338, 0.0263, 0.0263, 0.0247, 0.0247, 0.015], [0.073, 0.0471, 0.0416, 0.0324, 0.0286, 0.0252, 0.0237, 0.0196], [0.075, 0.0455, 0.0276, 0.0259, 0.0259, 0.0243, 0.0215, 0.0167], [0.1224, 0.0655, 0.0397, 0.0309, 0.0256, 0.0166, 0.0156, 0.0156], [0.0535, 0.0503, 0.0444, 0.0345, 0.0237, 0.0197, 0.0185, 0.0185], [0.0736, 0.0611, 0.037, 0.0348, 0.0327, 0.0198, 0.0186, 0.0175], [0.0921, 0.0813, 0.0595, 0.0384, 0.0281, 0.0281, 0.0219, 0.0206], [0.0761, 0.0761, 0.0523, 0.0462, 0.0383, 0.0232, 0.0218, 0.0192], [0.08, 0.0706, 0.0402, 0.0355, 0.026, 0.026, 0.0244, 0.0229], [0.0806, 0.0628, 0.0381, 0.0336, 0.0316, 0.0262, 0.0231, 0.0231], [0.0701, 0.0482, 0.0452, 0.0425, 0.0311, 0.0274, 0.0274, 0.0242], [0.0583, 0.0426, 0.0401, 0.0401, 0.0376, 0.0259, 0.0259, 0.0243], [0.0401, 0.0332, 0.0312, 0.0293, 0.0276, 0.0243, 0.0229, 0.0202], [0.0633, 0.0361, 0.0299, 0.0281, 0.0281, 0.0248, 0.0219, 0.0205], [0.0532, 0.0441, 0.0441, 0.0414, 0.0366, 0.0251, 0.0251, 0.0208], [0.0349, 0.0289, 0.0289, 0.0272, 0.024, 0.0225, 0.0199, 0.0199], [0.0414, 0.0303, 0.0303, 0.0236, 0.0195, 0.0172, 0.0162, 0.0162], [0.0517, 0.0486, 0.023, 0.0216, 0.0203, 0.019, 0.019, 0.0168], [0.0457, 0.026, 0.023, 0.0179, 0.0179, 0.0168, 0.0148, 0.0131], [0.0397, 0.0121, 0.0114, 0.0114, 0.0089, 0.0083, 0.0083, 0.0069], [0.0158, 0.0084, 0.0079, 0.0074, 0.0066, 0.0066, 0.0066, 0.0058], [0.034, 0.0249, 0.0151, 0.0142, 0.0142, 0.0111, 0.0098, 0.0076], [0.0664, 0.055, 0.0429, 0.0295, 0.026, 0.0229, 0.0168, 0.0139], [0.0498, 0.0439, 0.0388, 0.0388, 0.0302, 0.0302, 0.025, 0.0162], [0.1378, 0.089, 0.0395, 0.0395, 0.0327, 0.0175, 0.0165, 0.0155], [0.4928, 0.1813, 0.1412, 0.0278, 0.0245, 0.014, 0.0123, 0.0116], [0.4307, 0.1584, 0.1234, 0.0661, 0.0661, 0.0354, 0.0074, 0.0061], [0.271, 0.211, 0.128, 0.0685, 0.0605, 0.0345, 0.0237, 0.0105], [0.5714, 0.1445, 0.0876, 0.0531, 0.0469, 0.0222, 0.0082, 0.006], [0.3323, 0.3323, 0.084, 0.0577, 0.035, 0.0309, 0.0273, 0.0165], [0.6823, 0.0923, 0.034, 0.03, 0.03, 0.0265, 0.0206, 0.011], [0.7103, 0.1796, 0.0454, 0.0147, 0.0089, 0.007, 0.0048, 0.0048], [0.8378, 0.1001, 0.012, 0.0105, 0.0072, 0.0039, 0.0036, 0.0022], [0.774, 0.1187, 0.034, 0.0067, 0.0049, 0.0041, 0.0038, 0.0038]], "ranks": {"Rust": [34179, 71674, 59766, 70749, 8022, 4506, 10027, 6653, 19423, 8935, 2854, 6842, 1694, 3191, 8727, 8663, 9908, 18794, 59456, 31793, 49217, 68190, 46831, 32912, 30602, 18207, 10483, 11808, 11078, 10347, 10394, 10969, 8734, 12435, 9783, 8985, 6994, 9313, 11235, 15730, 10928, 8442, 6985, 9579, 6746, 6809, 5317, 3080, 1955, 5202, 4956, 3819, 5569, 4610, 7025, 678, 230, 191, 182, 109, 74, 40, 21]}}, {"pos": 420, "top": [[".", " \u2013", ",", "\u2013", "\u00a0", "<|endoftext|>", ";", " "], [" \u2013", "\u2013", "\u2013and", ",", ".", " \u2013,", ";", ".["], ["\u2013", " \u2013", ",", ".", "\u2013and", ";", ".\u2013", "["], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "----------</", "TRGL", " milfs", "-------------</", " Shemale", "\uff0d\uff0d", " ;;^"], ["\u00a0\u00a0", "\u2018", " (@", " \u201c.", " \"@", " \u2018", " \u201c[", "(@"], ["\u00a0\u00a0", " \u200b\u200b", "   \n", "\uff01", "\u2013and", "\u00a0", "<|quad_start|>", ","], ["   \n", "  \n\n", "\u2014\u2014", " \u2014\u2014", " \n\n", "  \n", "\u00a0", "\uff01"], ["   \n", "   \n\n", "  \n\n", "       \n", " \n\n", "  \r\n", "  \n", "    \n\n"], ["  \n\n", " \n\n", "   \n\n", "    \n\n", "        \n\n", "   \n", "  \n\n\n", "     \n\n"], ["\u00a0", "\u2013and", "\u2013", ",", "\u00a0\u00a0", "  \n  \n", "  \n\n", "\u00a0\u00a0\u00a0"], ["\u00a0", "<|endoftext|>", "...", "\u2013", " \n\n", "  \n\n", " [\u2026]", "\u2026"], ["\u99a8", "DMETHOD", "-esque", " **\u2013", "<|object_ref_start|>", " **\u2018", "unky", "\u8d44\u8baf\u7f51"], [" impactful", "-esque", "\u2013and", " showcased", " **\u2013", "...**", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u99a8"], ["-esque", " impactful", "\u5468\u906d", " overarching", " savvy", "\u2013and", " showcased", "\u708e\u708e\u590f\u65e5"], [" arguably", " savvy", "\u5468\u906d", "-esque", " folks", " busted", " sprawling", " touted"], [" arguably", " sprawling", " folks", "\u5468\u906d", " overarching", " savvy", " incredibly", "-esque"], [" arguably", "-esque", " overarching", " incredibly", " myriad", " savvy", " folks", " sprawling"], ["<|endoftext|>", " myriad", " arguably", " sprawling", " savvy", " folks", " incredibly", " overarching"], [" arguably", "\u2014even", " myriad", " incredibly", " savvy", "-esque", " sprawling", " overarching"], [" myriad", " arguably", "\u2014even", " incredibly", "\u5373\u4fbf", " hugely", "<|endoftext|>", " burgeoning"], ["<|endoftext|>", " myriad", " hugely", "\u5373\u4fbf", " arguably", " burgeoning", " ultimately", "\u2014even"], [" incredibly", " ;;^", " hugely", " sprawling", " myriad", "\u6253\u9020\u51fa", " skyrocket", " gritty"], [" hugely", " myriad", " incredibly", " arguably", " sprawling", " ultimately", " huge", " looming"], [" myriad", " hugely", " ultimately", " arguably", " incredibly", " sprawling", " looming", " much"], [" myriad", " hugely", "\u5373\u4fbf", " overarching", " arguably", "  \n\n", " \r\n\r\n", " ultimately"], [" hugely", " incredibly", " myriad", " struggles", " sprawling", " complexities", " arguably", " overarching"], [" myriad", " hugely", " ultimately", " sprawling", " arguably", " incredibly", " complexities", " vastly"], [" ultimately", " myriad", " arguably", " hugely", " much", " heavily", " incredibly", "\n\n"], [" myriad", " ultimately", " sprawling", " arguably", " massive", " hugely", " heavily", " vastly"], [" myriad", " ultimately", " massive", " heavily", " arguably", " sprawling", " huge", " complex"], [" massive", " huge", " ultimately", " complex", " heavily", " much", " myriad", " even"], [" complex", " massive", " heavily", " huge", " ultimately", " much", " critical", " even"], [" massive", " huge", " ultimately", " complex", " incredibly", " heavily", " relentlessly", " even"], [" tech", " relentless", " massive", " complex", " huge", " relentlessly", " complexity", " aggressively"], [" relentless", " relentlessly", " aggressively", " massive", " sprawling", " tech", " notoriously", " horrific"], [" relentless", " tech", " notoriously", " relentlessly", " incredibly", " aggressively", " massive", " huge"], [" notoriously", " relentless", " tech", " relentlessly", " aggressively", " impossible", " horrific", " sprawling"], [" relentless", " tech", " notoriously", " complexity", " impossible", " relentlessly", " cheap", " incredibly"], [" relentless", " notoriously", " tech", " impossible", " complexity", " relentlessly", " cheap", " complex"], [" tech", " relentless", " complexity", " cheap", " budgets", " impossible", " budget", " hardware"], [" tech", " complexity", " relentless", " cheap", " hardware", " constraints", " demands", " technology"], [" demands", " constraints", " demand", " demanding", " budgets", " tech", " cheap", " budget"], [" demands", " constraints", " demand", " budgets", " requirement", " demanding", " complexity", " forcing"], [" constraints", " demands", " demand", " forcing", " requirement", " complexity", " budgets", " forced"], [" demands", " constraints", " demand", " forced", " requirement", " forcing", " cost", " cheap"], [" demands", " forcing", " demand", " forced", " constraints", " requirement", " pressure", " cheap"], [" demands", " constraints", " demand", " synergy", " constraint", " requirement", " forcing", " shift"], [" constraints", " demands", " requirement", " combination", " constraint", " demand", " lack", " synergy"], [" combination", " constraints", " demands", " requirement", " constraint", " combo", " lack", " shift"], [" combo", " constraints", " combination", "\u5012\u903c", " reliance", " lack", " constraint", " synergy"], ["\u554f\u984c\u306f", "\u5012\u903c", "!\u201c", " \ubb38\uc81c\ub294", "\u6700\u6015", "\u5173\u952e\u5728\u4e8e", "\u5173\u952e\u662f", "Constraint"], [" constraints", " constraint", "Constraint", " Constraint", " requirement", " bottleneck", "?\u201c", "constraints"], [" bottleneck", " constraint", " constraints", " Constraint", "Constraint", " Constraints", "\u7684\u9650\u5236", "constraints"], [" bottleneck", " constraint", " constraints", " Constraint", "Constraint", " Constraints", " biggest", "constraints"], [" combination", " constraint", " bottleneck", " constraints", " combo", "combination", " Constraint", " Combination"], [" combination", " constraint", " bottleneck", " CPU", " combo", " cheap", " Constraint", " constraints"], [" combination", " constraint", " CPU", " bottleneck", " Linux", " Constraint", " cheap", " constraints"], [" CPU", " GPU", " combination", " constraint", " Linux", " bottleneck", "CPU", " cheap"], [" bottleneck", " CPU", " constraint", " GPU", " Linux", " combination", " Constraint", " constraints"], [" Linux", " CI", " cheap", " CPU", " bottleneck", " constraint", "Linux", " GPU"], [" cheap", " CI", " Linux", " CPU", " Cheap", " GPU", " bottleneck", " cheapest"], [" cheap", " CI", " Linux", " Cheap", " CPU", " bottleneck", " constraint", " cheapest"], [" CI", " cheap", " Linux", " bottleneck", " moment", " CPU", " constraint", " GPU"]], "p": [[0.4669, 0.3636, 0.1338, 0.0181, 0.0086, 0.0028, 0.0028, 0.0007], [0.8824, 0.0724, 0.0076, 0.0072, 0.0026, 0.0022, 0.0011, 0.0006], [0.4413, 0.2677, 0.184, 0.0985, 0.003, 0.0016, 0.0014, 0.0004], [0.0046, 0.0026, 0.0022, 0.002, 0.0019, 0.0019, 0.0015, 0.0013], [0.0122, 0.0079, 0.0079, 0.0069, 0.0065, 0.0061, 0.0058, 0.0051], [0.0296, 0.0231, 0.0085, 0.0062, 0.0058, 0.0055, 0.0045, 0.0045], [0.1339, 0.1258, 0.0717, 0.0493, 0.0463, 0.0435, 0.0248, 0.0233], [0.3915, 0.1194, 0.0564, 0.025, 0.0152, 0.0134, 0.0098, 0.0086], [0.4034, 0.356, 0.1682, 0.0177, 0.0079, 0.0065, 0.0061, 0.0061], [0.1358, 0.1057, 0.0933, 0.0469, 0.0267, 0.0236, 0.0063, 0.0056], [0.6795, 0.0594, 0.0462, 0.0408, 0.0318, 0.0218, 0.0205, 0.0097], [0.0042, 0.0027, 0.0025, 0.0024, 0.0022, 0.0022, 0.0021, 0.0019], [0.0113, 0.0083, 0.0037, 0.0027, 0.0025, 0.0024, 0.0024, 0.0022], [0.0115, 0.0079, 0.0042, 0.0031, 0.0026, 0.0026, 0.0023, 0.0021], [0.0142, 0.0086, 0.0086, 0.0067, 0.0059, 0.0041, 0.0038, 0.0032], [0.0063, 0.0046, 0.0043, 0.0041, 0.0032, 0.0032, 0.0032, 0.0026], [0.0171, 0.0125, 0.011, 0.0097, 0.0086, 0.0081, 0.0081, 0.0076], [0.0093, 0.0072, 0.0072, 0.0064, 0.0064, 0.0056, 0.0053, 0.0044], [0.0086, 0.0071, 0.0067, 0.0063, 0.0052, 0.0049, 0.003, 0.0028], [0.0116, 0.0091, 0.0075, 0.0046, 0.0046, 0.0046, 0.0043, 0.004], [0.1306, 0.0089, 0.0045, 0.0045, 0.0039, 0.0037, 0.0033, 0.0025], [0.0027, 0.0026, 0.0024, 0.0015, 0.0012, 0.0011, 0.0011, 0.0011], [0.0049, 0.0041, 0.0038, 0.002, 0.0019, 0.0019, 0.0017, 0.0015], [0.0062, 0.0049, 0.004, 0.0029, 0.0028, 0.002, 0.0018, 0.0018], [0.0107, 0.0101, 0.0065, 0.0037, 0.0037, 0.0035, 0.0031, 0.0029], [0.0069, 0.0057, 0.0044, 0.0039, 0.0039, 0.0032, 0.0031, 0.0027], [0.0076, 0.0067, 0.0067, 0.0052, 0.0046, 0.0043, 0.003, 0.003], [0.0199, 0.0106, 0.01, 0.0078, 0.0073, 0.0064, 0.0057, 0.0053], [0.0247, 0.017, 0.0103, 0.0097, 0.0097, 0.0085, 0.0075, 0.0059], [0.0256, 0.0176, 0.0155, 0.0146, 0.0129, 0.01, 0.01, 0.0088], [0.0224, 0.021, 0.0154, 0.0154, 0.0128, 0.012, 0.0113, 0.0099], [0.0178, 0.0147, 0.013, 0.0122, 0.0122, 0.0115, 0.0084, 0.007], [0.0221, 0.0152, 0.0118, 0.0118, 0.0111, 0.0092, 0.0087, 0.0076], [0.0234, 0.022, 0.0194, 0.0172, 0.0151, 0.0142, 0.0125, 0.0125], [0.0422, 0.0241, 0.0199, 0.0187, 0.0146, 0.0137, 0.0121, 0.0114], [0.0492, 0.0408, 0.0218, 0.017, 0.016, 0.016, 0.011, 0.011], [0.0403, 0.0403, 0.026, 0.0203, 0.0179, 0.0109, 0.0109, 0.0085], [0.0414, 0.0322, 0.0303, 0.0143, 0.0134, 0.0126, 0.0111, 0.0087], [0.031, 0.02, 0.0188, 0.0166, 0.0166, 0.0101, 0.0095, 0.0074], [0.0306, 0.0306, 0.0238, 0.0174, 0.0128, 0.0106, 0.0106, 0.0099], [0.0604, 0.0252, 0.0209, 0.0173, 0.0173, 0.0162, 0.0162, 0.0153], [0.0343, 0.0251, 0.0251, 0.0221, 0.0195, 0.0195, 0.0195, 0.0172], [0.0404, 0.0335, 0.0278, 0.0203, 0.0149, 0.0149, 0.0149, 0.0149], [0.0583, 0.0515, 0.0228, 0.0201, 0.0201, 0.0178, 0.0157, 0.0157], [0.0348, 0.0288, 0.0198, 0.0198, 0.0175, 0.0175, 0.012, 0.0113], [0.0462, 0.0205, 0.0192, 0.0181, 0.017, 0.011, 0.0097, 0.0097], [0.0367, 0.0304, 0.0222, 0.0222, 0.0184, 0.0173, 0.0163, 0.0153], [0.0837, 0.0651, 0.0448, 0.0371, 0.0255, 0.0225, 0.0212, 0.0199], [0.0594, 0.0408, 0.0298, 0.0193, 0.016, 0.015, 0.0132, 0.011], [0.0291, 0.0273, 0.0273, 0.02, 0.0188, 0.0188, 0.0188, 0.0146], [0.0206, 0.0161, 0.0133, 0.011, 0.0092, 0.0081, 0.0076, 0.0076], [0.054, 0.054, 0.0371, 0.0328, 0.0255, 0.0165, 0.0155, 0.0128], [0.1809, 0.0855, 0.0803, 0.0625, 0.0487, 0.0203, 0.014, 0.0123], [0.187, 0.1368, 0.1368, 0.0732, 0.0417, 0.0185, 0.0154, 0.0105], [0.5418, 0.1209, 0.0733, 0.0306, 0.027, 0.021, 0.0185, 0.0154], [0.3355, 0.1399, 0.1234, 0.0401, 0.0332, 0.0275, 0.0259, 0.0259], [0.1965, 0.1735, 0.0928, 0.0819, 0.0387, 0.0301, 0.025, 0.0221], [0.4214, 0.083, 0.0646, 0.0646, 0.057, 0.0392, 0.0197, 0.0185], [0.2692, 0.2376, 0.1441, 0.0874, 0.0468, 0.0284, 0.0172, 0.0118], [0.5781, 0.1138, 0.0782, 0.0782, 0.037, 0.0136, 0.0106, 0.0093], [0.5836, 0.1476, 0.1302, 0.0329, 0.0226, 0.0156, 0.0083, 0.0073], [0.4103, 0.3195, 0.1509, 0.018, 0.0159, 0.014, 0.0124, 0.0066], [0.5263, 0.3192, 0.0381, 0.018, 0.0103, 0.008, 0.0066, 0.0062]], "ranks": {"Rust": [62051, 122358, 77733, 81581, 69526, 32836, 59905, 40160, 49677, 25521, 20319, 18492, 3991, 4747, 34705, 22391, 16475, 23325, 49712, 37402, 60056, 87071, 69284, 39993, 32799, 33592, 17457, 10386, 9115, 8007, 7003, 8555, 8708, 13958, 13232, 12663, 6481, 8545, 8364, 11502, 6064, 5367, 4955, 6591, 4263, 5419, 4505, 4027, 3286, 6294, 12921, 8844, 5508, 3956, 8624, 1332, 333, 183, 271, 62, 42, 28, 16]}}, {"pos": 421, "top": [[",", "\u2013", ".", "s", " \u200b\u200b", " \u2013", ";", " "], [" \u200b\u200b", "ness", "tures", " (\"", "\u2013", "\u2013and", " \u0218", "alyzer"], [" \u200b\u200b", "\u2013", ",", "\u2013and", ".", ".\u2013", "\u2026..", ";"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " \u041a\u0440\u0430\u0441\u0438", " Blowjob", " Shemale", "\u683c\u91cc\u62c9", "anceled", " Geile", "Canceled"], [" \u200b\u200b", " Vapor", "neighbor", " offense", "avior", " canceled", "Canceled", "anceled"], [" \u200b\u200b", "avior", "neighbor", " Vapor", "anceled", "elog", "favorite", " offense"], [" \u200b\u200b", "anceled", "Canceled", "\u064b\u0627", " canceled", "avior", "ynec", "-tech"], [" \u200b\u200b", "avior", "ness", "anceled", "Canceled", " canceled", "ization", "niest"], [" \u200b\u200b", "ness", "avior", "ulator", "Canceled", "ization", "anceled", "erness"], ["ness", "avior", "-tech", "\u0930\u0923", "\u4e3d\u4e1d", "\ub9c8\uc790", "-\"", "Canceled"], [" \u200b\u200b", "ness", "-tech", "-\"", "#\"", "ization", "avior", "\u00bb"], ["avior", "\u0930\u0923", "ness", "-tech", "utang", "ographics", "omics", " flavors"], ["ness", " flavors", "avior", " \u200b\u200b", "omics", "utang", "-tech", "\u0930\u0923"], ["-tech", "utang", "\ub9c8\uc790", "-esque", " \u200b\u200b", "omics", " flavors", "\u0930\u0923"], [" trivia", "-tech", " glam", "utang", " vibe", " fake", " flavors", "-esque"], ["-tech", "utang", " pornstar", " trivia", "omics", " hardcore", "-esque", " influencers"], ["-tech", " vibe", "-esque", " vibes", " tech", " skinny", " fake", " tricks"], ["-tech", " vibe", " vibes", " tricks", " kids", "-esque", " tech", " fake"], ["-tech", " freaking", "-esque", " buzz", " tricks", " goofy", " flashy", " fake"], [" freaking", "-esque", " buzz", " flashy", " goofy", " savvy", "-tech", " scary"], ["-esque", " flashy", " buzz", " savvy", "-tech", " fake", " tricks", " freaking"], [" scary", " buzz", "utang", " flashy", " hustle", " freaking", " angst", " fake"], [" buzz", " flashy", " fake", " big", " cheap", " scary", " savvy", " tricks"], [" big", " buzz", " cheap", " fake", " flashy", " tech", " \"", " savvy"], [" savvy", " tech", " flashy", "-tech", "-esque", " busted", " myth", " buzz"], [" tech", " vibe", " hustle", " buzz", " hype", "-tech", " flashy", " savvy"], [" tech", " buzz", " cheap", " flashy", " savvy", " big", " trivia", " hype"], [" tech", " big", " buzz", " cheap", " savvy", " myth", " flashy", " touted"], [" tech", " cheap", " fake", " myth", " big", " buzz", " hype", " flashy"], [" tech", " fake", " cheap", " big", " myth", " hype", " buzz", " technology"], [" tech", " big", " fake", " cheap", " technology", " social", " chaos", " weird"], [" fake", " big", " cheap", " tech", " weird", " technology", " huge", " chaos"], [" fake", " cheap", " tech", " weird", " big", " chaos", " hype", " crap"], [" tech", " fake", " cheap", " hype", " weird", " chaos", " crap", " flashy"], [" tech", " fake", " cheap", " weird", " hype", " crap", " hacker", " synergy"], [" tech", " cheap", " fake", " crap", " hacker", " weird", " hype", "-tech"], [" cheap", " tech", " fake", " crap", " hacker", " weird", " gimm", " hacking"], [" cheap", " tech", " fake", " crap", "cheap", " hacker", " weird", " smarter"], [" cheap", " tech", " fake", " hacker", "cheap", " crap", " hacking", " smarter"], [" cheap", "cheap", " tech", " fake", " hacker", "-tech", " affordable", " crap"], [" cheap", " tech", " fake", "cheap", " hacker", "-tech", " affordable", " outsourcing"], [" cheap", " tech", " fake", "cheap", " hacker", " outsourcing", " affordable", " budget"], [" cheap", " hacker", " fake", "cheap", " tech", " outsourcing", " faux", " affordable"], [" cheap", "cheap", " hacker", " fake", " tech", " Cheap", " cheapest", " affordable"], [" cheap", " fake", " hacker", "cheap", " cheapest", " cheaper", " loophole", " gimm"], [" cheap", " fake", " \"", " \\\"", " gimm", " hacker", " tech", " simplistic"], [" cheap", " fake", " \"", " \\\"", " faux", " tech", " tweak", " gimm"], [" cheap", " fake", " cheapest", " faux", " democrat", " Cheap", " cheaper", "cheap"], [" cheap", " cheapest", " democrat", " fake", " cheaper", "cheap", " loophole", "-friendly"], [" cheap", "cheap", " cheapest", "-friendly", " democrat", " cheaper", " Cheap", " fake"], ["%\"", "+\"", "!\"", "$\"", "#\"", "://\"", "*\"", "/\""], [" cheap", "*\"", "cheap", "%\"", " cheapest", "-friendly", "-safe", "!\""], [" cheap", "-friendly", "cheap", " lazy", "-safe", " cheapest", "-simple", " cute"], [" cheap", "cheap", "-safe", " cheapest", " cheaper", " lazy", " Cheap", "-friendly"], [" cheap", " lightweight", " lazy", "-safe", " cheapest", " casual", "cheap", " flexible"], [" cheap", "cheap", " Cheap", "Cheap", " cheapest", "\u5ec9\u4ef7", "\u4fbf\u5b9c", " inexpensive"], [" cheap", "cheap", " Cheap", "\u5ec9\u4ef7", "Cheap", " cheapest", "\u4fbf\u5b9c", " cheaper"], [" cheap", "cheap", " Cheap", "\u5ec9\u4ef7", "Cheap", "\u4fbf\u5b9c", " cheapest", " cheaper"], [" cheap", "cheap", " Cheap", "\u5ec9\u4ef7", "Cheap", "\u4fbf\u5b9c", " cheapest", " cheaper"], [" cheap", "cheap", " Cheap", " script", "Cheap", " scripting", "/script", "\u5ec9\u4ef7"], [" cheap", "cheap", " Cheap", "Cheap", "\u5ec9\u4ef7", "\u4fbf\u5b9c", "\u5ec9", " cheaper"], [" cheap", "cheap", " Cheap", "Cheap", "\u5ec9\u4ef7", "\u4fbf\u5b9c", "\u5ec9", "-che"], ["cheap", " cheap", "Cheap", " Cheap", "\u5ec9\u4ef7", "\u5ec9", "Linux", "script"]], "p": [[0.3062, 0.2539, 0.1447, 0.047, 0.0441, 0.0389, 0.0143, 0.0126], [0.0298, 0.0055, 0.0036, 0.0026, 0.0024, 0.002, 0.0018, 0.0018], [0.5948, 0.1504, 0.0405, 0.0149, 0.0066, 0.0031, 0.0031, 0.0026], [0.0056, 0.0041, 0.0028, 0.0022, 0.0016, 0.0015, 0.0013, 0.0013], [0.0662, 0.0095, 0.0074, 0.0062, 0.0048, 0.0045, 0.004, 0.004], [0.2357, 0.0067, 0.0032, 0.0022, 0.0019, 0.0018, 0.0016, 0.0015], [0.1385, 0.0212, 0.02, 0.0176, 0.0107, 0.0094, 0.005, 0.0045], [0.1211, 0.0154, 0.0099, 0.0088, 0.0082, 0.0082, 0.0041, 0.0039], [0.3163, 0.0084, 0.0084, 0.0054, 0.0035, 0.0033, 0.0027, 0.0024], [0.0046, 0.0046, 0.0023, 0.0016, 0.0016, 0.0015, 0.0015, 0.0014], [0.1069, 0.0347, 0.0238, 0.0136, 0.0053, 0.0047, 0.0041, 0.0032], [0.0033, 0.0031, 0.0028, 0.0026, 0.0024, 0.0023, 0.002, 0.0019], [0.0038, 0.0028, 0.0028, 0.0026, 0.0025, 0.0023, 0.0021, 0.0018], [0.002, 0.0018, 0.0013, 0.0013, 0.0013, 0.0012, 0.0011, 0.0011], [0.0026, 0.0022, 0.0013, 0.0013, 0.001, 0.001, 0.001, 0.0009], [0.0013, 0.0011, 0.001, 0.001, 0.0008, 0.0008, 0.0008, 0.0007], [0.0087, 0.0034, 0.0032, 0.003, 0.003, 0.0024, 0.0022, 0.0022], [0.0276, 0.0122, 0.0095, 0.0095, 0.009, 0.0079, 0.0079, 0.0065], [0.0095, 0.0066, 0.0066, 0.0054, 0.0051, 0.0042, 0.004, 0.0037], [0.0066, 0.0058, 0.0051, 0.0045, 0.0042, 0.0042, 0.004, 0.0029], [0.0052, 0.0048, 0.004, 0.0029, 0.0026, 0.0024, 0.0021, 0.002], [0.003, 0.0029, 0.0025, 0.0024, 0.0022, 0.0018, 0.0018, 0.0016], [0.0051, 0.0048, 0.0042, 0.0037, 0.0031, 0.0026, 0.0026, 0.0021], [0.0059, 0.0041, 0.0034, 0.0032, 0.0026, 0.0025, 0.0023, 0.0022], [0.0067, 0.0063, 0.0056, 0.0056, 0.0041, 0.0036, 0.0036, 0.0034], [0.0081, 0.006, 0.0056, 0.0053, 0.0053, 0.0053, 0.0049, 0.0049], [0.0115, 0.0066, 0.0051, 0.0051, 0.0051, 0.0042, 0.0042, 0.0042], [0.0167, 0.0115, 0.0084, 0.007, 0.0058, 0.0051, 0.0042, 0.0037], [0.0282, 0.0118, 0.0111, 0.0098, 0.0071, 0.0071, 0.0067, 0.0063], [0.0353, 0.0228, 0.0201, 0.0122, 0.0101, 0.0074, 0.0074, 0.0054], [0.0288, 0.0224, 0.0211, 0.0164, 0.0113, 0.0082, 0.0077, 0.0077], [0.0281, 0.0264, 0.0193, 0.0193, 0.0103, 0.0091, 0.0086, 0.0076], [0.0273, 0.0256, 0.0187, 0.0165, 0.0129, 0.01, 0.0073, 0.0073], [0.0472, 0.0286, 0.0197, 0.0163, 0.0153, 0.0105, 0.0087, 0.0082], [0.0614, 0.0397, 0.0241, 0.0212, 0.0155, 0.0146, 0.0073, 0.0069], [0.1051, 0.0988, 0.0438, 0.0283, 0.022, 0.0142, 0.0118, 0.0092], [0.1096, 0.0551, 0.0403, 0.0158, 0.0139, 0.0085, 0.0079, 0.0079], [0.2065, 0.0382, 0.0297, 0.0132, 0.0109, 0.0109, 0.008, 0.0062], [0.2076, 0.0339, 0.0219, 0.0141, 0.0117, 0.0097, 0.0067, 0.0059], [0.3415, 0.0318, 0.0318, 0.0232, 0.0132, 0.0075, 0.0071, 0.0067], [0.3325, 0.0697, 0.0309, 0.0256, 0.0213, 0.0114, 0.0083, 0.0061], [0.3692, 0.0414, 0.0389, 0.0236, 0.0173, 0.0119, 0.0098, 0.0098], [0.3644, 0.0299, 0.0299, 0.0233, 0.0206, 0.0117, 0.011, 0.011], [0.4053, 0.0294, 0.0229, 0.0202, 0.0101, 0.009, 0.0084, 0.0084], [0.5368, 0.0184, 0.0143, 0.0119, 0.0092, 0.0072, 0.0063, 0.0056], [0.2413, 0.0419, 0.0186, 0.012, 0.0094, 0.0083, 0.0073, 0.0068], [0.1203, 0.0605, 0.0304, 0.0135, 0.0135, 0.0112, 0.0093, 0.0072], [0.3186, 0.0246, 0.0217, 0.0124, 0.0116, 0.0109, 0.007, 0.0066], [0.1708, 0.0381, 0.0192, 0.0109, 0.0091, 0.0085, 0.007, 0.0066], [0.2113, 0.0237, 0.0197, 0.0144, 0.0135, 0.0127, 0.0093, 0.0082], [0.1012, 0.095, 0.0509, 0.0328, 0.0256, 0.024, 0.0199, 0.0199], [0.0881, 0.0471, 0.0237, 0.0237, 0.0223, 0.0153, 0.0144, 0.0127], [0.2291, 0.0374, 0.033, 0.0274, 0.0188, 0.0166, 0.0101, 0.0101], [0.3604, 0.0335, 0.0191, 0.0169, 0.0149, 0.0149, 0.014, 0.0123], [0.2951, 0.0258, 0.0228, 0.0166, 0.0138, 0.0122, 0.0114, 0.0107], [0.9789, 0.0123, 0.0027, 0.0013, 0.0011, 0.0011, 0.001, 0.0006], [0.9813, 0.0124, 0.0028, 0.0011, 0.0011, 0.0005, 0.0004, 0.0002], [0.9691, 0.0258, 0.0024, 0.001, 0.0009, 0.0003, 0.0002, 0.0001], [0.97, 0.0258, 0.0021, 0.0008, 0.0005, 0.0003, 0.0002, 0.0001], [0.9782, 0.0123, 0.0035, 0.0031, 0.001, 0.0008, 0.0003, 0.0001], [0.9742, 0.0202, 0.0045, 0.0008, 0.0002, 0.0001, 0.0, 0.0], [0.8367, 0.1454, 0.0119, 0.0039, 0.0006, 0.0004, 0.0004, 0.0002], [0.7863, 0.1988, 0.0077, 0.003, 0.0008, 0.0006, 0.0005, 0.0003]], "ranks": {"Rust": [18376, 58396, 30585, 8465, 9134, 8180, 9824, 9159, 14894, 9594, 17280, 23224, 14248, 20265, 34236, 33727, 56258, 94628, 95497, 60689, 75010, 76017, 67093, 35675, 30139, 33002, 18166, 13189, 13774, 12040, 11502, 9224, 8438, 15720, 11905, 16199, 12571, 16678, 18865, 21745, 9865, 6820, 5105, 9224, 5373, 5040, 3811, 3620, 2416, 4114, 28418, 28119, 29383, 8934, 15173, 4075, 1288, 771, 988, 348, 168, 163, 298]}}, {"pos": 422, "top": [[",", ".", "-", " ", "ly", "\u00a0", "\"", "a"], ["ly", " \uff1c", " \uff1e", "\uff20", " \uff08", " \uff5e", " \u25ce", " \uff3b"], ["ly", ".@", " \uff1e", "\u3002", " \uff5c", " \uff08", " \uff0c", "."], [" \u300e", " \uff1c", " \ufeff", " \uff1e", " \uff0a", "\uff3f\uff3f", "\u3000\u3000", " ``"], [" \ufeff", " $$$", " \uff08", "ly", ".@", " \uff0c", "\ufeff", " @$"], ["ly", " \uff08", " $$$", " \uff0c", " nasty", " \u300e", "\u5728", " \ufeff"], ["ly", " $$$", "\u3000", " \ufeff", " \uff08", " \u300e", " \uff1c", "\u548c"], ["ly", " \u300e", " \uff1c", " \ufeff", " $$$", " #@", " \uff1e", " \uffe5"], ["ly", " \uff1c", " \u300e", " \uff1e", " \ufeff", " \uffe5", "ement", " #@"], ["ly", " $$$", " \u300e", " nasty", " \uff1c", "ement", " #$", " #@"], ["ly", " \uff1c", " $$$", " \u300e", " \uff1e", " \uffe5", " \ufeff", " #@"], ["ly", " \uff1c", " $$$", " \u300e", " <$", " \uff1e", "ement", " \ufeff"], ["ly", " \u300e", " $$$", " ''", " \uff1c", "ement", " <$", " cheap"], ["ly", " cheap", " $$$", " nasty", " \u300e", " ''", "-ish", " flashy"], ["ly", " ''", " --", " nasty", " cheap", " stuff", " $$$", " flashy"], ["ly", " cheap", " nasty", " stuff", " $$$", " kids", " flashy", " --"], ["ly", " nasty", " cheap", " stuff", " $$$", " kids", " booze", " shit"], [" nasty", " cheap", " stuff", "ly", " booze", " $$$", " flashy", " pricey"], [" nasty", " stuff", " $$$", " cheap", " ''", "ly", " booze", " comfy"], [" $$$", " cheap", " \uff1c", " pricey", " nasty", " booze", " <+", " <$"], [" $$$", " cheap", " <$", " \uff1c", " stuff", "ly", " pricey", " \uffe5"], [" cheap", " $$$", " ''", " pricey", " booze", " ``", " stuff", " cheaper"], [" ''", " cheap", " $$$", " ``", " money", " cheaper", " pricey", " stuff"], [" ''", " ``", " cheap", " $$$", " money", " <$", " --", "ly"], [" $$$", " cheap", " money", " pricey", " ''", " \ufeff", " cheaper", " <$"], [" cheap", " money", " $$$", " cheaper", " pricey", " expensive", " Cheap", " <$"], [" cheap", " money", " cheaper", " pricey", " $$$", " expensive", " cash", " <$"], [" cheap", " money", " cheaper", " $$$", " cash", " <$", " cost", " ''"], [" cheap", " money", " cheaper", " cash", " expensive", " affordable", " $$$", " pricey"], [" cheap", " money", " cheaper", " expensive", " affordable", " cash", " costs", " $$$"], [" cheap", " money", " cheaper", " affordable", " expensive", " costs", " Cheap", " cash"], [" cheap", " money", " cheaper", " affordable", " Cheap", " cash", " budget", " cost"], [" cheap", " cheaper", " money", " affordable", " budget", " Cheap", " expensive", " costs"], [" cheap", " cheaper", " cheapest", " budgets", "cheap", " Cheap", " affordable", " $$$"], [" cheap", " cheaper", " cheapest", "cheap", " budget", " $$$", " affordable", " budgets"], [" cheap", " cheaper", "cheap", " cheapest", " Cheap", " crap", "\u4fbf\u5b9c", "\u5ec9"], [" cheap", " cheaper", "cheap", " cheapest", " Cheap", " inexpensive", "\u5ec9", "Cheap"], [" cheap", " cheaper", " cheapest", "cheap", " inexpensive", " Cheap", "\u5ec9", " affordable"], [" cheap", " cheaper", " cheapest", "cheap", " inexpensive", " Cheap", "\u5ec9", "Cheap"], [" cheap", " cheaper", "cheap", " cheapest", " Cheap", " inexpensive", "\u5ec9", "\u4fbf\u5b9c"], [" cheap", " cheaper", " cheapest", "cheap", " inexpensive", " Cheap", "\u5ec9", "Cheap"], [" cheap", " cheaper", " cheapest", " inexpensive", "cheap", " budget", " Cheap", " cost"], [" cheap", " cheaper", " cheapest", " inexpensive", "cheap", " Cheap", " budget", " cost"], [" cheap", " cheaper", " inexpensive", " cheapest", " Cheap", "cheap", " budget", " budgets"], [" cheap", " cheaper", " cheapest", " inexpensive", " budget", "cheap", " budgets", " Cheap"], [" cheap", " cheaper", " cheapest", " budget", " inexpensive", " budgets", " cost", " Cheap"], [" cheap", " cheaper", " cheapest", " budget", " inexpensive", " cost", " budgets", "cheap"], [" cheap", " cheapest", " cheaper", " budget", " inexpensive", " cost", " budgets", " Cheap"], [" cheap", " cheaper", " cheapest", " budget", " cost", " budgets", " inexpensive", "\u4f4e\u6210\u672c"], [" cheap", " cheaper", " cheapest", " budget", "cheap", " Cheap", "\u4f4e\u6210\u672c", " inexpensive"], [" cheap", " cheapest", "\u5ec9", " cheaper", " budget", "\u4fbf\u5b9c\u7684", "cheap", "\u4f4e\u6210\u672c"], [" Linux", " cheap", "Linux", "\u5ec9", "*\"", " Unix", "_linux", " laptops"], [" Linux", "Linux", " cheap", "\u5ec9", " Unix", "_linux", " linux", " laptop"], [" Linux", "Linux", " cheap", " Unix", " laptop", " CPU", "\u5ec9", " laptops"], [" Linux", "Linux", " Unix", "_linux", " GitHub", " CPU", " linux", " laptop"], [" Linux", "Linux", " linux", "_linux", " LINUX", "linux", "-linux", "/linux"], [" Linux", "Linux", " linux", "_linux", "linux", " LINUX", "/linux", " Docker"], [" Linux", "Linux", " linux", "_linux", "linux", " LINUX", "-linux", "/linux"], [" Linux", "Linux", " linux", "_linux", " container", "linux", " LINUX", " Docker"], [" Linux", "Linux", " linux", " CI", " container", "_linux", " containers", "/Linux"], [" Linux", "Linux", " CI", " linux", "/Linux", "_linux", " container", " linear"], [" Linux", " CI", "Linux", " linux", " linear", " container", " Linear", "/Linux"], [" Linux", " CI", " container", "Linux", " Docker", " linux", " containers", " Unix"]], "p": [[0.3348, 0.3145, 0.0702, 0.0482, 0.0258, 0.0089, 0.0074, 0.0054], [0.8601, 0.0244, 0.0148, 0.0074, 0.0058, 0.0054, 0.0042, 0.0035], [0.1626, 0.0466, 0.0386, 0.0283, 0.0283, 0.0283, 0.0234, 0.0234], [0.2712, 0.1751, 0.073, 0.0686, 0.0286, 0.0237, 0.0127, 0.0112], [0.1536, 0.0725, 0.064, 0.0601, 0.0499, 0.0365, 0.0284, 0.0284], [0.1153, 0.1017, 0.0512, 0.0398, 0.0352, 0.02, 0.0156, 0.0147], [0.1334, 0.063, 0.0556, 0.0522, 0.0522, 0.0491, 0.0461, 0.028], [0.1694, 0.0852, 0.08, 0.055, 0.0378, 0.0229, 0.0168, 0.0168], [0.1803, 0.1404, 0.0485, 0.0355, 0.0202, 0.019, 0.019, 0.0168], [0.3715, 0.0417, 0.0325, 0.0223, 0.0185, 0.0135, 0.0112, 0.0112], [0.3512, 0.061, 0.0327, 0.0288, 0.0225, 0.0211, 0.0211, 0.0198], [0.1889, 0.095, 0.095, 0.0613, 0.0256, 0.0176, 0.0146, 0.0129], [0.2632, 0.0487, 0.0457, 0.0245, 0.0245, 0.0131, 0.0123, 0.0102], [0.2085, 0.0282, 0.0265, 0.0249, 0.0234, 0.0234, 0.0133, 0.0125], [0.0671, 0.0407, 0.0407, 0.0338, 0.0317, 0.028, 0.0181, 0.0181], [0.0654, 0.0542, 0.0509, 0.0372, 0.0272, 0.0226, 0.0129, 0.0121], [0.0615, 0.0615, 0.0578, 0.0423, 0.0176, 0.0176, 0.0155, 0.0137], [0.0642, 0.047, 0.0323, 0.0251, 0.0173, 0.0152, 0.0126, 0.0119], [0.0448, 0.0371, 0.0328, 0.0308, 0.0212, 0.0187, 0.0137, 0.0128], [0.0769, 0.0363, 0.0194, 0.0151, 0.0142, 0.0134, 0.0125, 0.0104], [0.2484, 0.0489, 0.0459, 0.0262, 0.0192, 0.018, 0.0159, 0.0149], [0.0304, 0.0304, 0.0286, 0.0093, 0.0082, 0.0082, 0.0072, 0.0064], [0.2682, 0.0927, 0.0722, 0.0562, 0.0171, 0.0134, 0.0125, 0.0076], [0.4211, 0.1133, 0.094, 0.0392, 0.0346, 0.0197, 0.0072, 0.0068], [0.2367, 0.1962, 0.0637, 0.0386, 0.0341, 0.0194, 0.0151, 0.0142], [0.3396, 0.0758, 0.0712, 0.0432, 0.0204, 0.014, 0.0103, 0.0096], [0.4829, 0.1012, 0.0577, 0.0329, 0.0199, 0.0146, 0.0146, 0.01], [0.4529, 0.1565, 0.0372, 0.0272, 0.024, 0.0146, 0.0137, 0.0121], [0.551, 0.1309, 0.0375, 0.0156, 0.0114, 0.0107, 0.0101, 0.0089], [0.4714, 0.0872, 0.0438, 0.0126, 0.0118, 0.0104, 0.0098, 0.0076], [0.5169, 0.0374, 0.0374, 0.0107, 0.0095, 0.0069, 0.0065, 0.0065], [0.6388, 0.0318, 0.0264, 0.011, 0.0059, 0.0049, 0.0049, 0.0043], [0.695, 0.0346, 0.0238, 0.0077, 0.0073, 0.0068, 0.006, 0.0053], [0.3981, 0.0475, 0.0145, 0.0128, 0.0128, 0.0106, 0.0094, 0.0088], [0.683, 0.041, 0.0125, 0.0118, 0.0086, 0.0086, 0.0071, 0.0067], [0.6458, 0.0322, 0.0195, 0.0126, 0.0098, 0.0059, 0.0056, 0.0056], [0.8239, 0.0495, 0.0171, 0.0161, 0.0071, 0.0071, 0.0049, 0.0036], [0.8811, 0.0439, 0.0126, 0.0104, 0.0086, 0.0076, 0.0032, 0.0026], [0.9033, 0.0397, 0.0121, 0.0083, 0.0078, 0.0057, 0.0031, 0.002], [0.8801, 0.0363, 0.0161, 0.0161, 0.0092, 0.0067, 0.0052, 0.0036], [0.8948, 0.0445, 0.0128, 0.0113, 0.0073, 0.006, 0.0022, 0.0022], [0.879, 0.0562, 0.0142, 0.0111, 0.0076, 0.0052, 0.0041, 0.0032], [0.8997, 0.0508, 0.0128, 0.0128, 0.0032, 0.0029, 0.0029, 0.0022], [0.8927, 0.0346, 0.0164, 0.0106, 0.0068, 0.0064, 0.0064, 0.0041], [0.9298, 0.0193, 0.0117, 0.0103, 0.0043, 0.0038, 0.0032, 0.0028], [0.959, 0.0094, 0.0065, 0.005, 0.0044, 0.0025, 0.0022, 0.0014], [0.9439, 0.0126, 0.0087, 0.0068, 0.0041, 0.0034, 0.003, 0.0014], [0.9361, 0.0125, 0.0104, 0.0071, 0.0059, 0.0043, 0.003, 0.0025], [0.8686, 0.0279, 0.0231, 0.0132, 0.0085, 0.0062, 0.0062, 0.0055], [0.8795, 0.0207, 0.0183, 0.0104, 0.0092, 0.0081, 0.0049, 0.0049], [0.7702, 0.0435, 0.0248, 0.0141, 0.0124, 0.0124, 0.0117, 0.011], [0.525, 0.038, 0.0217, 0.0191, 0.018, 0.0169, 0.0102, 0.0096], [0.6628, 0.0257, 0.0241, 0.0166, 0.0129, 0.0101, 0.0069, 0.0045], [0.6286, 0.0202, 0.0123, 0.0115, 0.0084, 0.0079, 0.0074, 0.007], [0.8981, 0.0186, 0.0094, 0.0053, 0.005, 0.0042, 0.0042, 0.003], [0.9906, 0.004, 0.0025, 0.0017, 0.0004, 0.0003, 0.0001, 0.0001], [0.9919, 0.0041, 0.0019, 0.0009, 0.0002, 0.0002, 0.0002, 0.0001], [0.9953, 0.0028, 0.0012, 0.0004, 0.0001, 0.0001, 0.0001, 0.0], [0.9958, 0.0019, 0.0013, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001], [0.9981, 0.0013, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9993, 0.0004, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9965, 0.0025, 0.0006, 0.0002, 0.0001, 0.0, 0.0, 0.0], [0.9084, 0.0845, 0.0011, 0.0009, 0.0006, 0.0004, 0.0003, 0.0003]], "ranks": {"Rust": [29002, 26538, 26639, 10804, 1891, 1855, 4002, 2276, 3199, 802, 921, 931, 844, 449, 756, 661, 927, 1757, 2222, 3081, 2782, 5510, 3804, 1110, 1121, 2019, 1571, 1334, 1487, 2165, 1922, 2173, 2912, 5822, 3420, 4809, 3088, 2740, 3208, 3757, 2657, 3011, 2205, 2076, 1391, 1031, 801, 733, 619, 1325, 3880, 3819, 3883, 3057, 3205, 1513, 409, 298, 296, 206, 185, 171, 92]}}, {"pos": 423, "top": [[",", "s", ".", ";", "o", "y", " ", "d"], ["s", "sWith", "schild", "l\u00fc", ",", "  \n", "d\u00fcr", " (\u201c"], [",", ".", "s", ";", "\u2026", "\u2026.", "\u2013", "\u2026.."], ["satz", "schutz", "solver", "sWith", "s", "lanjut", "sip", "raries"], ["s", "s\u00e4", "sir", "siz", "sav", "sWith", "sud", "sen"], ["s", "siz", "sWith", "s\u00e4", "sud", "sav", "servers", "sir"], ["s", "sud", "sav", "  \n", "raries", "sor", "siz", "s\u00e4"], ["sud", "s", "sav", "schild", "dach", "raries", " LC", "ska"], ["s", "sud", "schild", "dach", "ska", "sav", " LC", " hardcore"], ["s", ",", "sud", "ska", " \u00ad", "schild", " Linux", "-style"], ["s", "-style", ",", "ian", "-era", " Linux", " \u00ad", "ska"], ["s", " Linux", " $$$", "ian", " hardcore", "ska", " `$", "lanjut"], ["s", " Linux", "ska", "-era", " hardcore", "sud", "\u5927\u9662", "siz"], ["s", " hardcore", " Linux", "-era", " junk", "ska", " vibes", " startups"], ["s", "-era", " hardcore", " Philly", "ska", " Linux", "siz", " savvy"], ["s", " Linux", " hardcore", " folks", "siz", " startups", " geek", " savvy"], ["s", " Linux", " hardcore", " startups", " tech", " geek", "siz", " folks"], ["s", " Linux", " startups", " hardcore", "siz", " Philly", "-linux", "ska"], [" Linux", "s", "-linux", " hardcore", "-esque", "ska", "-era", "-gnu"], [" Linux", "/Linux", "-linux", " hardcore", "-era", "\u76ae\u9769\u57ce", " folks", "_linux"], [" Linux", "Linux", "-linux", "/Linux", "s", "_linux", " hackers", "   \n\n"], [" Linux", "-linux", "satz", "/Linux", "\u76ae\u9769\u57ce", " Geile", " hackers", " hacker"], [" Linux", "-linux", " ``", "/Linux", "Linux", " hackers", "_linux", " hacker"], [" Linux", "Linux", "-linux", "/Linux", "_linux", " ...\\", " computers", " LINUX"], [" Linux", "Linux", "/Linux", "-linux", "   \n\n", "_linux", " LINUX", " linux"], [" Linux", "Linux", "/Linux", "-linux", " Unix", " linux", " LINUX", " UNIX"], [" Linux", " Unix", "/Linux", "-linux", "Linux", " linux", " UNIX", " LINUX"], [" Linux", "/Linux", " Unix", " UNIX", " linux", " ___", "Linux", " \n\n"], [" Linux", "/Linux", " Unix", "Linux", " linux", " UNIX", " LINUX", " GNU"], [" Linux", " Unix", "/Linux", " linux", "Linux", " \n  \n", " ____", " UNIX"], [" Linux", " ...\\", " ____", "  \n\n", " Unix", " ___", "/Linux", " \n\n"], [" ...", " ...\\", " Linux", " ...\"", " [...]", " ....", " .....", " ......"], [" ...", " Linux", " ...\"", " ...\\", " ....", " .....", "...", " [...]"], [" Linux", " Unix", "/Linux", " linux", "Linux", " UNIX", " Ubuntu", " tech"], [" Linux", " Unix", "/Linux", " linux", " tech", " labs", "Linux", " ..."], [" Linux", " Unix", "Linux", " linux", " Ubuntu", " tech", " \n\n", " labs"], [" Linux", "Linux", " Unix", " linux", " Ubuntu", "/Linux", "Unix", " UNIX"], [" Linux", " Unix", "Linux", " linux", " Ubuntu", "Unix", "/Linux", " unix"], [" Linux", "Linux", " Unix", " linux", " Ubuntu", "/Linux", "Unix", " Debian"], [" Linux", "Linux", " Unix", "/Linux", " linux", " Ubuntu", "Unix", "linux"], [" Linux", "Linux", " Unix", " linux", "/Linux", "linux", " Ubuntu", " LINUX"], [" Linux", "Linux", "/Linux", " Unix", " linux", "/linux", "linux", " Ubuntu"], [" Linux", "Linux", "/Linux", " Unix", " linux", "/linux", "linux", " Ubuntu"], [" Linux", "/Linux", " Unix", " linux", "Linux", " Ubuntu", " UNIX", "linux"], [" Linux", " linux", "/Linux", "Linux", " Unix", " Ubuntu", "linux", "/linux"], [" Linux", "/Linux", " linux", " Unix", " Ubuntu", " UNIX", "/linux", " labs"], [" Linux", " linux", "/Linux", " Unix", " labs", " Ubuntu", " UNIX", " software"], [" Linux", "/Linux", " linux", " Unix", " labs", " production", " factory", " Ubuntu"], [" Linux", "/Linux", " labs", " linux", " Unix", "/linux", " Ubuntu", " machines"], [" Linux", "/Linux", " labs", "Linux", " Unix", " linux", " Ubuntu", " Docker"], [" Linux", "/Linux", "Linux", " labs", " Unix", "/L", " backend", " Ubuntu"], [" Linux", "/Linux", " labs", " platform", " Docker", " backend", " CI", " platforms"], ["/Linux", " Docker", " Linux", " CI", " CentOS", " platform", " SDK", " Ubuntu"], [" Linux", " Docker", "/Linux", " CentOS", " backend", " Ubuntu", " SDK", " CI"], [" Linux", "/Linux", " CentOS", " CI", " Docker", " Ubuntu", " backend", " CPU"], [" CI", " container", " containers", "CI", " Docker", " Container", "/container", " Containers"], [" CI", " container", " containers", " Docker", "CI", " Container", " docker", " Containers"], [" CI", " container", " containers", "CI", " Docker", " Container", " docker", " Containers"], [" container", " CI", " containers", " Container", " Docker", "\u5bb9\u5668", "Container", " Containers"], [" container", " containers", " CI", " Container", "container", " Containers", "\u5bb9\u5668", "CI"], [" CI", " container", " containers", "CI", " Container", "container", " Containers", "containers"], [" CI", " container", " containers", "CI", " Container", "container", " Containers", "containers"], [" CI", " container", " containers", "CI", " Container", "\"", " Ci", " Containers"]], "p": [[0.6479, 0.2383, 0.0877, 0.0053, 0.0021, 0.0016, 0.0013, 0.0009], [0.5669, 0.0125, 0.0111, 0.0043, 0.0038, 0.0032, 0.0028, 0.0026], [0.8399, 0.1003, 0.0347, 0.0064, 0.0032, 0.0024, 0.0018, 0.001], [0.0139, 0.007, 0.0066, 0.0048, 0.0048, 0.0048, 0.0048, 0.0048], [0.8717, 0.0022, 0.0019, 0.0018, 0.0018, 0.0018, 0.0011, 0.0011], [0.3947, 0.0252, 0.0112, 0.0087, 0.0082, 0.0072, 0.0072, 0.006], [0.8266, 0.0086, 0.0041, 0.0038, 0.0026, 0.002, 0.0018, 0.0014], [0.1198, 0.0993, 0.0119, 0.0105, 0.0105, 0.0068, 0.0063, 0.006], [0.1456, 0.0646, 0.0163, 0.012, 0.0093, 0.0077, 0.0056, 0.0053], [0.2215, 0.0282, 0.0133, 0.0052, 0.0046, 0.0036, 0.0034, 0.0032], [0.6552, 0.0082, 0.006, 0.0053, 0.0044, 0.0037, 0.0034, 0.003], [0.0389, 0.0152, 0.0087, 0.0072, 0.0068, 0.006, 0.0053, 0.0047], [0.0487, 0.0102, 0.0085, 0.0058, 0.0058, 0.0048, 0.0048, 0.004], [0.0291, 0.0129, 0.0101, 0.0078, 0.0051, 0.0045, 0.0031, 0.0031], [0.2352, 0.0055, 0.0055, 0.0052, 0.0046, 0.0046, 0.0034, 0.0034], [0.0805, 0.008, 0.0062, 0.0045, 0.0033, 0.0031, 0.0028, 0.0028], [0.3169, 0.0075, 0.0066, 0.0048, 0.0037, 0.0035, 0.0033, 0.0033], [0.0273, 0.0129, 0.0073, 0.005, 0.0042, 0.0039, 0.0039, 0.0035], [0.0229, 0.0108, 0.0095, 0.0048, 0.0045, 0.004, 0.004, 0.0035], [0.0132, 0.0063, 0.0055, 0.004, 0.0036, 0.0033, 0.0033, 0.003], [0.0269, 0.0072, 0.0064, 0.0056, 0.0053, 0.0041, 0.0028, 0.0028], [0.0183, 0.0076, 0.0067, 0.0046, 0.0038, 0.0028, 0.0028, 0.0028], [0.0597, 0.0086, 0.0076, 0.0067, 0.0046, 0.0043, 0.0038, 0.0036], [0.263, 0.023, 0.0102, 0.0096, 0.009, 0.0085, 0.0066, 0.0058], [0.3412, 0.1255, 0.0557, 0.0298, 0.0232, 0.0218, 0.0141, 0.0141], [0.6324, 0.0519, 0.0488, 0.0357, 0.0278, 0.0203, 0.0123, 0.0116], [0.7232, 0.0492, 0.0383, 0.0247, 0.017, 0.0141, 0.0124, 0.0055], [0.6948, 0.0287, 0.0269, 0.0185, 0.0174, 0.0144, 0.0144, 0.0127], [0.7059, 0.033, 0.0242, 0.0213, 0.0188, 0.0083, 0.0054, 0.0054], [0.3903, 0.0363, 0.0249, 0.0207, 0.0183, 0.0161, 0.0151, 0.0076], [0.2163, 0.066, 0.0353, 0.0332, 0.0293, 0.0189, 0.0189, 0.0189], [0.3195, 0.0915, 0.0591, 0.0591, 0.0246, 0.0217, 0.0169, 0.0159], [0.4639, 0.0668, 0.0459, 0.0204, 0.0159, 0.0116, 0.0109, 0.007], [0.4038, 0.0619, 0.0201, 0.0138, 0.0101, 0.0095, 0.0069, 0.0065], [0.3048, 0.0266, 0.0221, 0.0195, 0.0126, 0.0126, 0.0118, 0.0098], [0.3946, 0.0443, 0.0324, 0.0153, 0.0105, 0.0099, 0.0093, 0.0082], [0.5583, 0.071, 0.0519, 0.0158, 0.0085, 0.007, 0.0066, 0.004], [0.5894, 0.0584, 0.0548, 0.013, 0.0101, 0.0062, 0.0058, 0.0048], [0.7622, 0.0552, 0.0519, 0.014, 0.0096, 0.0075, 0.0051, 0.0035], [0.7008, 0.1075, 0.0349, 0.0165, 0.0155, 0.0073, 0.0065, 0.0065], [0.8273, 0.0988, 0.0126, 0.0126, 0.0126, 0.0063, 0.0063, 0.0036], [0.897, 0.0394, 0.0186, 0.0145, 0.0088, 0.0068, 0.0032, 0.0025], [0.8864, 0.0344, 0.0236, 0.0162, 0.0143, 0.005, 0.0028, 0.0028], [0.8472, 0.029, 0.0226, 0.0226, 0.0226, 0.0061, 0.0035, 0.0033], [0.7995, 0.0451, 0.031, 0.0257, 0.0166, 0.0074, 0.0048, 0.0035], [0.7725, 0.0675, 0.0409, 0.0193, 0.0059, 0.0055, 0.0052, 0.0049], [0.6418, 0.0561, 0.0495, 0.0265, 0.0104, 0.0063, 0.0052, 0.0049], [0.4811, 0.0575, 0.0395, 0.0289, 0.0155, 0.01, 0.0069, 0.0053], [0.5071, 0.1453, 0.0269, 0.0269, 0.0185, 0.0105, 0.0072, 0.0041], [0.3956, 0.2118, 0.0253, 0.0153, 0.0135, 0.0127, 0.0047, 0.0044], [0.4179, 0.3057, 0.0236, 0.0152, 0.0063, 0.0053, 0.0049, 0.0044], [0.0641, 0.0441, 0.0414, 0.0365, 0.0365, 0.0222, 0.0162, 0.0162], [0.0578, 0.045, 0.0423, 0.0273, 0.0213, 0.0188, 0.0176, 0.0156], [0.0491, 0.0491, 0.0359, 0.0298, 0.0263, 0.0247, 0.0181, 0.017], [0.2671, 0.0814, 0.0634, 0.0634, 0.0526, 0.0464, 0.034, 0.0219], [0.8974, 0.0574, 0.0239, 0.006, 0.0037, 0.0022, 0.0013, 0.0012], [0.861, 0.0624, 0.0334, 0.0179, 0.0096, 0.0031, 0.0021, 0.0019], [0.9508, 0.0224, 0.0093, 0.0073, 0.0057, 0.0009, 0.0007, 0.0005], [0.5062, 0.3479, 0.113, 0.0093, 0.0072, 0.003, 0.0027, 0.0027], [0.4307, 0.3801, 0.1796, 0.0026, 0.002, 0.0014, 0.0011, 0.0007], [0.7731, 0.1522, 0.0719, 0.0008, 0.0007, 0.0005, 0.0002, 0.0001], [0.9785, 0.0123, 0.0075, 0.0015, 0.0001, 0.0, 0.0, 0.0], [0.9727, 0.0157, 0.0074, 0.0021, 0.0003, 0.0002, 0.0001, 0.0001]], "ranks": {"Rust": [12595, 40758, 30566, 2166, 3507, 1913, 3025, 2187, 2549, 888, 3179, 1842, 875, 1222, 3704, 3920, 6148, 5298, 10115, 11525, 24354, 14514, 23081, 14848, 4532, 7881, 22552, 5816, 7115, 9383, 14970, 14748, 11806, 10826, 9387, 8427, 3774, 5068, 5363, 4852, 3734, 2610, 4197, 5479, 7726, 5191, 3470, 3328, 1764, 2703, 6109, 11055, 21466, 18344, 14831, 7678, 1540, 746, 826, 696, 717, 635, 549]}}, {"pos": 424, "top": [[" \u2013", " ......", " \u2502", " \u00b7", " [\u2026]", "@\"", "\u00b7\u00b7", "."], [" \u2013**", " \u25c6", "\u30f3", " \uff1c", ")\",\"", " '\\\"", " \uff5c", ".\",\""], [" \uff5c", "\uff1f\u201d", " \u2013**", " Blowjob", "*\u201c.", "HCI", " \u25c6", " pornstar"], ["':''", " Blowjob", " milfs", " cumshot", " Shemale", " pornstar", " creampie", " Bbw"], [" *@", "(ci", " \u25c6", " '@", ".\",\"", " \":\"", "\u2591", " \u3010"], ["(ci", " \u3011", " Blowjob", ":@", " \u3010", " *)\"", "\u6e2f\u80a1", " \":\""], [" \u3010", " **\u3010", " \u3011", "\u3010", " ......", "\u3011\u3010", " ____", " \u25c6"], [" **\u3010", " **\u25a0", " Blowjob", " '\\\"", " '~/", " **\u300c", " *@", " *))"], [".\",\"", "\u3011\u3010", " *@", " \u3011", " [@", " '~/", " \u3010", ":&"], [" [@", ".\",\"", " '~/", ".','", " [--", "@[", "(ci", " '@"], [" [@", ".\",\"", " \u3010", " [#", ".@", " @", "\ufffd\ufffd", "@"], [" workflows", " ____", " Blowjob", " '~/", "':''", ".','", ".\",\"", " pornstar"], [" workflows", " Blowjob", " pornstar", " macOS", " cumshot", " webinar", " '~/", " creampie"], [" workflows", " Blowjob", " macOS", " pornstar", " labs", " wiki", " webinar", " pipeline"], [" labs", " tech", "-esque", " ops", " OC", " wiki", " vibe", " Ops"], ["-esque", " labs", " wiki", " tech", " macOS", " reboot", " workflows", " cosplay"], ["-esque", " tech", " wiki", " startup", " labs", " TBD", " workflows", " reboot"], [" workflows", " macOS", " startup", " startups", " labs", " wiki", " Blowjob", " tech"], [" wiki", " macOS", " workflows", "-esque", " labs", " startup", " Blowjob", " tech"], [" wiki", " [--", "uci", " ~>", " workflows", " labs", " macOS", " matchups"], [" wiki", " @", "@", " \u3010", " [@", " [|", " ~", " Wiki"], [" workflows", " **\u25a0", " cumshot", " milfs", " Blowjob", " wiki", " pornstar", " *))"], [" workflows", " **\u25a0", " wiki", " macOS", " startup", " startups", " '~/", " cumshot"], [" workflows", " workshops", " labs", " workflow", " wiki", " tech", " startup", " macOS"], [" workflows", " labs", " workflow", " tech", " **\u25a0", " wiki", " macOS", " startup"], [" workflows", " workflow", " labs", " tech", " workshops", " **\u25a0", " startups", " workspace"], [" workflows", " labs", " workflow", " workshops", " tech", " workshop", " workspace", " pipeline"], [" labs", " workflows", " production", " tech", " --", " workflow", " workshops", " workshop"], [" workflows", " workflow", " tech", " labs", " workshops", " workshop", " software", " infrastructure"], [" workflows", " workflow", " tech", " labs", " workshop", " workshops", " startup", " software"], [" workflows", " workflow", " tech", " labs", " workshops", " workshop", " ...", " pipeline"], [" ...", " tech", " workflows", " labs", " workflow", " workshops", " workshop", " infrastructure"], [" tech", " labs", " workflows", " workshops", " production", " technology", " workflow", " workshop"], [" workflows", " tech", " workflow", " labs", " infrastructure", " software", " workshops", " technology"], [" tech", " workflows", " labs", " workflow", " infrastructure", " software", " hardware", " testing"], [" tech", " workflows", " labs", " workflow", " software", " infrastructure", " testing", " hardware"], [" workflows", " tech", " workflow", " labs", " testing", " infrastructure", " software", " hardware"], [" workflows", " tech", " testing", " workflow", " labs", " software", " infrastructure", " hardware"], [" workflows", " testing", " tech", " workflow", " labs", "/testing", " software", "\u6d4b\u8bd5"], [" workflows", " testing", " workflow", "\u6d4b\u8bd5", " labs", " tech", " tests", "/testing"], [" testing", " workflows", " labs", " workflow", "\u6d4b\u8bd5", "/testing", " tests", " Testing"], [" testing", " workflows", " workflow", " labs", " tests", "/testing", " Testing", "\u6d4b\u8bd5"], [" testing", " workflows", " workflow", " labs", " tests", "/testing", " pipelines", " pipeline"], [" testing", " workflows", " labs", " workflow", " tests", " Testing", " pipelines", "/testing"], [" testing", " workflows", " workflow", " labs", " tests", "/testing", " pipelines", " pipeline"], [" testing", " workflows", " tests", " labs", " workflow", " production", "/testing", " pipeline"], [" testing", " tests", " workflows", " workflow", " labs", " pipeline", " production", "/testing"], [" testing", " labs", " tests", " workflow", " workflows", " production", " pipeline", " setup"], [" testing", " labs", " tests", " workflow", " pipeline", " workflows", " pipelines", " production"], [" setup", " testing", " workflow", " labs", " setups", " pipeline", " tests", " lacks"], [" setup", " workflow", " pipeline", " setups", " scenario", " implies", " doesn", " testing"], [" requirement", " setup", " constraint", " doesn", " caveat", " complic", " implies", " workaround"], [" constraint", " requirement", " adds", " doesn", " setup", " ignores", " caveat", " complic"], [" constraint", " requirement", " adds", " +", " caveat", " ignores", " restriction", " setup"], [" constraint", " requirement", " restriction", " constraints", " Constraint", "Constraint", "\u7ea6\u675f", "constraint"], [" constraint", " requirement", " restriction", " Constraint", " constraints", "Constraint", "\u7ea6\u675f", "constraint"], [" constraint", " requirement", " Constraint", " restriction", "Constraint", " constraints", "\u7ea6\u675f", "constraint"], [" constraint", " requirement", " restriction", " Constraint", "Constraint", " constraints", "\u7ea6\u675f", "constraint"], [" constraint", "\u7ea6\u675f", " constraints", " Constraint", "Constraint", "constraint", " Constraints", "Constraints"], [" constraint", " constraints", " Constraint", "\u7ea6\u675f", "Constraint", "constraint", " constrain", " Constraints"], [" constraint", " Constraint", " constraints", "Constraint", "\u7ea6\u675f", "constraint", " constrain", "\""], [" constraint", "\"", " Constraint", " constraints", "Constraint", "\u7ea6\u675f", "constraint", " container"], ["\"", "\u201d", " constraint", "\"**", " container", " Constraint", "'", "\"]"]], "p": [[0.089, 0.0348, 0.0327, 0.0255, 0.0211, 0.0187, 0.0155, 0.0128], [0.0358, 0.0204, 0.0149, 0.0109, 0.0103, 0.0091, 0.0066, 0.0058], [0.0142, 0.0133, 0.0125, 0.0067, 0.0063, 0.0063, 0.0036, 0.0036], [0.0336, 0.0336, 0.0245, 0.0158, 0.0158, 0.007, 0.0062, 0.0062], [0.0164, 0.0128, 0.012, 0.0113, 0.0099, 0.0077, 0.0077, 0.0073], [0.031, 0.0107, 0.0069, 0.0048, 0.0037, 0.0033, 0.0031, 0.0031], [0.0821, 0.025, 0.0143, 0.0118, 0.0104, 0.0104, 0.0081, 0.0072], [0.0155, 0.01, 0.01, 0.0094, 0.0088, 0.0083, 0.0064, 0.0057], [0.0281, 0.017, 0.0091, 0.0071, 0.0071, 0.0071, 0.0067, 0.0063], [0.0289, 0.0271, 0.0088, 0.0069, 0.0061, 0.0053, 0.0042, 0.0042], [0.0586, 0.0334, 0.0216, 0.0102, 0.0096, 0.009, 0.009, 0.0079], [0.0116, 0.0075, 0.0055, 0.0049, 0.0038, 0.0035, 0.0035, 0.0033], [0.0166, 0.0089, 0.0061, 0.0048, 0.0039, 0.0029, 0.0027, 0.0027], [0.0186, 0.0064, 0.0053, 0.005, 0.0042, 0.0039, 0.0037, 0.0032], [0.0144, 0.0072, 0.0064, 0.0064, 0.0047, 0.0039, 0.0036, 0.0032], [0.0086, 0.0056, 0.0043, 0.0038, 0.0038, 0.0036, 0.0034, 0.0028], [0.0156, 0.0121, 0.0107, 0.0089, 0.0089, 0.0078, 0.0074, 0.0061], [0.0096, 0.0071, 0.0066, 0.0062, 0.0052, 0.0048, 0.0043, 0.004], [0.0113, 0.0093, 0.0082, 0.0064, 0.0053, 0.0047, 0.0044, 0.0044], [0.0147, 0.0089, 0.007, 0.0054, 0.0051, 0.0051, 0.0045, 0.004], [0.0315, 0.0278, 0.0203, 0.0102, 0.009, 0.0058, 0.0058, 0.0055], [0.0146, 0.0114, 0.0101, 0.0065, 0.0057, 0.0057, 0.0054, 0.0048], [0.0243, 0.0115, 0.0095, 0.0079, 0.0045, 0.0042, 0.004, 0.0037], [0.0357, 0.0131, 0.0102, 0.0096, 0.0085, 0.007, 0.0066, 0.0066], [0.0625, 0.0168, 0.0139, 0.0131, 0.0116, 0.0109, 0.0085, 0.0075], [0.2964, 0.0584, 0.0401, 0.0189, 0.0157, 0.0089, 0.0084, 0.0079], [0.1578, 0.0618, 0.058, 0.0274, 0.0242, 0.0166, 0.0122, 0.0101], [0.0613, 0.0541, 0.0508, 0.0508, 0.0477, 0.0328, 0.0212, 0.0176], [0.2608, 0.0901, 0.0582, 0.0426, 0.0201, 0.0138, 0.0122, 0.0108], [0.2538, 0.0994, 0.05, 0.0414, 0.0162, 0.0152, 0.0119, 0.0112], [0.3193, 0.0758, 0.0712, 0.0432, 0.018, 0.0149, 0.0116, 0.0091], [0.2315, 0.1494, 0.0516, 0.0378, 0.0294, 0.026, 0.0158, 0.0131], [0.135, 0.0412, 0.0341, 0.0341, 0.0321, 0.0301, 0.025, 0.0183], [0.3214, 0.1518, 0.0865, 0.0435, 0.015, 0.0097, 0.0091, 0.0071], [0.2516, 0.2086, 0.0721, 0.0598, 0.0194, 0.0118, 0.0081, 0.0059], [0.1964, 0.1964, 0.0412, 0.0321, 0.0111, 0.0104, 0.0086, 0.0076], [0.3, 0.125, 0.0316, 0.0279, 0.0149, 0.0109, 0.0103, 0.0091], [0.3696, 0.0825, 0.039, 0.039, 0.0209, 0.0173, 0.0119, 0.0087], [0.3671, 0.1192, 0.0723, 0.0387, 0.0301, 0.0207, 0.0152, 0.0134], [0.4691, 0.1726, 0.0635, 0.0319, 0.0249, 0.0182, 0.0151, 0.0151], [0.3346, 0.2953, 0.0619, 0.0482, 0.0292, 0.0214, 0.0201, 0.0189], [0.3994, 0.3111, 0.0787, 0.0613, 0.0199, 0.0165, 0.0121, 0.0106], [0.3897, 0.3035, 0.0767, 0.0677, 0.0249, 0.0142, 0.0133, 0.0104], [0.4996, 0.1622, 0.0597, 0.0527, 0.0495, 0.0171, 0.0125, 0.0117], [0.4227, 0.2263, 0.0735, 0.0572, 0.0419, 0.0164, 0.0154, 0.0128], [0.5905, 0.0705, 0.0622, 0.0622, 0.0428, 0.019, 0.0148, 0.0148], [0.4373, 0.0976, 0.0976, 0.0861, 0.0671, 0.0181, 0.0181, 0.0103], [0.3678, 0.0821, 0.0771, 0.0564, 0.0498, 0.0342, 0.0235, 0.0162], [0.2397, 0.1132, 0.0778, 0.0569, 0.0443, 0.0345, 0.0324, 0.0237], [0.1238, 0.1163, 0.0799, 0.0402, 0.0377, 0.0377, 0.0244, 0.019], [0.2338, 0.0555, 0.0406, 0.0382, 0.0279, 0.0246, 0.0231, 0.0204], [0.2517, 0.0926, 0.0466, 0.0282, 0.0194, 0.0171, 0.0142, 0.0133], [0.0934, 0.0824, 0.0824, 0.0251, 0.0251, 0.0222, 0.0208, 0.0196], [0.2547, 0.2393, 0.0416, 0.0304, 0.0209, 0.0144, 0.0099, 0.0093], [0.7678, 0.1713, 0.0159, 0.0097, 0.0055, 0.0043, 0.0024, 0.0024], [0.8146, 0.1249, 0.0246, 0.009, 0.0038, 0.0035, 0.0026, 0.0019], [0.873, 0.0632, 0.0125, 0.0125, 0.0071, 0.0049, 0.004, 0.0025], [0.8705, 0.0631, 0.0205, 0.0097, 0.0066, 0.0066, 0.0033, 0.002], [0.9826, 0.0058, 0.004, 0.004, 0.0021, 0.0009, 0.0002, 0.0001], [0.9789, 0.0066, 0.0058, 0.0035, 0.0024, 0.0015, 0.0003, 0.0003], [0.9734, 0.0108, 0.0051, 0.004, 0.0024, 0.0017, 0.0005, 0.0004], [0.683, 0.2847, 0.0081, 0.0063, 0.0034, 0.0028, 0.0011, 0.0011], [0.9995, 0.0002, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [123826, 181160, 201463, 188618, 124739, 120868, 143040, 133716, 127816, 103049, 126038, 153557, 149927, 130995, 95844, 91219, 94101, 152363, 155559, 167387, 146868, 181129, 174885, 129265, 118671, 132680, 95531, 33669, 43137, 47964, 64616, 35941, 28167, 84210, 53231, 53704, 27164, 19491, 21674, 32867, 47875, 41484, 30685, 41397, 30373, 17612, 14783, 10971, 5076, 7600, 14945, 11860, 9550, 10889, 12845, 6518, 4684, 3456, 2538, 1489, 1048, 906, 1465]}}, {"pos": 425, "top": [[".", ",", "\u2013", " \u2013", "<|endoftext|>", "\u00a0", " ", "\u00a0\u00a0"], [" \u200b\u200b", " ", "  \n\n", ".", "\u2013", " (\"", ";", ","], [" \u200b\u200b", "\u2013", ",", "\u2026..", ".", "\u2026.", " \u2013", ";"], [" \u041a\u0440\u0430\u0441\u0438", " Blowjob", " Shemale", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\ufffd\ufffd", " Pubbl", " Hidal", " Binomo"], [" \"", " \u200b\u200b", "\u2014\"", " ", " \"#", "\u663e\u7740", " wrongly", "elog"], [" \u200b\u200b", " **\"", "\u062a\u0631\u0646\u062a", "\u5730\u4e9a", " \"", "elog", "usting", "endi"], [" \"", " \"\"\"", " **\"", " \u00bb", "\u2014\"", " \u201d", "rotch", " \"\""], [" **\"", " \"\"\"", " booze", "ewater", " **\u20ac", " crap", " gadgets", "alej"], [" \"\"\"", " booze", " *&", " \u00bb", " gadgets", "\u8303\u513f", "ewater", " **\u300c"], [" pricey", " booze", "\u2014\"", "\u8303\u513f", " fanc", " savvy", "\u4fe9\u4eba", "\u624e\u5806"], [" \"", " pricey", " \"\"", " savvy", " fanc", " booze", " cheap", "\u8303\u513f"], [" pricey", " booze", " **\u300c", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " trash", " gadget", " junk", " cheap"], [" **\u300c", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " booze", " pricey", " **\u00ab", " \u00ab", " cheap", " savvy"], [" \u00ab", " booze", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " cheap", " gadgets", " gadget", " crap", " junk"], [" cheap", " \"", " even", " savvy", " mostly", " booze", " \u00ab", " crap"], [" \"", " \u00ab", " cheap", " even", " mostly", " modern", " big", " arguably"], [" \"", " big", " even", " cheap", " mostly", " pretty", " just", " plenty"], [" cheap", " big", " pretty", " stuff", " crap", " plenty", " booze", " tweaks"], [" cheap", " even", " pretty", " big", " stuff", " arguably", " oddly", " touted"], [" cheap", " even", " arguably", " wildly", " pretty", " just", " somehow", " barely"], [" just", " even", " largely", " much", " cheap", " arguably", " though", " mostly"], [" cheap", " even", " pricey", " bigger", " big", " arguably", " cheaper", " pretty"], [" cheap", " even", " just", " arguably", " quickly", " much", " wildly", " too"], [" even", " just", " much", " cheap", " ,", " still", " largely", " ultimately"], [" \n\n", " cheap", " arguably", " hugely", " even", " pricey", " wildly", " notably"], [" cheap", " pricey", " arguably", " hugely", " cost", " cheaper", " costs", " infrastructure"], [" cheap", " cost", " costs", " infrastructure", " arguably", " pricey", " cheaper", " even"], [" \n\n", " cheap", " even", " cost", " arguably", " ,", " just", " heavily"], [" \n\n", " cheap", "  \n\n", " cost", " even", " ,", " arguably", " heavily"], [" \n\n", " cheap", "  \n\n", " cost", " ,", " even", " just", " budget"], [" \n\n", " cheap", "  \n\n", " likely", " cost", " ,", " costs", " even"], [" cheap", " only", " just", " even", " cost", " too", " ,", " likely"], [" cheap", " only", " even", " too", " just", " likely", " ,", " cost"], [" cheap", " likely", " infrastructure", " unlikely", " technology", " costs", " tech", " budget"], [" cheap", " notoriously", " likely", " aggressively", " unlikely", " tech", " infrastructure", " weird"], [" cheap", " notoriously", " likely", " unlikely", " aggressively", " crap", " disproportionately", " weird"], [" cheap", " notoriously", " crap", " aggressively", " likely", " weird", " unlikely", " inevitably"], [" cheap", " notoriously", " crap", " risks", " aggressively", " weird", " risk", " nasty"], [" cheap", " crap", " notoriously", " weird", " problematic", " ridiculous", " risks", " aggressively"], [" cheap", " crap", " weird", " problematic", " risks", " notoriously", " budget", " ridiculous"], [" cheap", " budget", " cost", " crap", " weird", " problematic", " ridiculous", " risks"], [" cheap", " budget", " cost", " infrastructure", " risks", " budgets", " costs", " constraints"], [" cheap", " budget", " cost", " budgets", " infrastructure", " costs", " constraints", " risks"], [" cheap", " budget", " risks", " constraints", " infrastructure", " budgets", " problematic", " cost"], [" cheap", " budget", " risks", " cost", " costs", " risk", " constraints", " problem"], [" cheap", " budget", " risks", " cost", " likely", " risk", " restriction", " paradox"], [" cheap", " risks", " likely", " risk", " ironically", " paradox", " constraint", " restriction"], [" cheap", " likely", " constraint", " restriction", " constraints", " ignores", " risks", " cost"], [" ironically", " likely", " cheap", " restriction", " constraint", " ignores", " implies", " restrictions"], [" ignores", " constraint", " likely", " implies", " restriction", "\u5012\u903c", " constraints", " cheap"], [" ignores", "\u5012\u903c", " constraint", " implies", " restriction", " irrelevant", " isn", " ignored"], [" ignores", " constraint", " restriction", " requirement", "\u5012\u903c", " implies", " ignored", "\u5ffd\u7565\u4e86"], [" constraint", " ignores", " restriction", " requirement", " constraints", " ignored", " ignoring", "\u5ffd\u7565\u4e86"], [" constraint", " ignores", " restriction", " requirement", " constraints", "Constraint", " Constraint", " adds"], [" constraint", " restriction", " requirement", " constraints", "Constraint", "\u7ea6\u675f", " Constraint", "constraint"], [" constraint", " restriction", " requirement", " constraints", " Constraint", "Constraint", "\u7ea6\u675f", "constraint"], [" constraint", " restriction", " requirement", " constraints", "Constraint", "\u7ea6\u675f", " Constraint", "constraint"], [" constraint", " restriction", " requirement", "Constraint", " constraints", " Constraint", "\u7ea6\u675f", "constraint"], [" constraint", "\u7ea6\u675f", " constraints", " Constraint", "Constraint", "constraint", "Constraints", " Constraints"], [" constraint", " Constraint", " constraints", "\u7ea6\u675f", "Constraint", "constraint", " constrain", " requirement"], [" constraint", " Constraint", " constraints", "Constraint", "constraint", "\u7ea6\u675f", " requirement", " constrain"], [" constraint", " constraints", " Constraint", "Constraint", "\u7ea6\u675f", "constraint", " requirement", " constrain"], [" constraint", " constraints", " requirement", " Constraint", "\u7ea6\u675f", "Constraint", " assumption", "constraint"]], "p": [[0.4889, 0.1091, 0.0704, 0.0704, 0.0704, 0.0427, 0.0294, 0.0259], [0.0776, 0.0056, 0.0036, 0.0036, 0.0032, 0.0032, 0.003, 0.003], [0.2819, 0.0915, 0.0713, 0.0713, 0.0629, 0.0381, 0.018, 0.0103], [0.0045, 0.0043, 0.004, 0.004, 0.0017, 0.0016, 0.0013, 0.0011], [0.0078, 0.0047, 0.0031, 0.0025, 0.002, 0.0017, 0.0015, 0.0014], [0.0113, 0.0082, 0.0025, 0.0024, 0.0024, 0.0022, 0.0022, 0.0022], [0.0286, 0.0237, 0.0196, 0.0105, 0.0068, 0.0064, 0.0041, 0.0039], [0.0092, 0.0063, 0.006, 0.0044, 0.0044, 0.0038, 0.0036, 0.0034], [0.0083, 0.0073, 0.0069, 0.005, 0.0044, 0.0042, 0.0032, 0.0029], [0.0089, 0.0054, 0.0051, 0.0051, 0.0037, 0.0024, 0.0024, 0.002], [0.0284, 0.0172, 0.0111, 0.0092, 0.0087, 0.0087, 0.0081, 0.0077], [0.0068, 0.0064, 0.005, 0.003, 0.0023, 0.0022, 0.0022, 0.0021], [0.0079, 0.0079, 0.0048, 0.0045, 0.0037, 0.0026, 0.002, 0.0017], [0.0047, 0.0035, 0.0033, 0.002, 0.0017, 0.0015, 0.0013, 0.0013], [0.0055, 0.0052, 0.0038, 0.0032, 0.003, 0.0025, 0.0025, 0.0023], [0.0206, 0.0133, 0.0086, 0.0081, 0.0038, 0.0028, 0.0025, 0.0023], [0.0545, 0.0274, 0.0258, 0.0201, 0.0147, 0.0147, 0.0107, 0.0084], [0.0818, 0.022, 0.0151, 0.0092, 0.0086, 0.0086, 0.0072, 0.0072], [0.0973, 0.0217, 0.018, 0.0109, 0.008, 0.0071, 0.0071, 0.0066], [0.069, 0.0572, 0.0239, 0.0211, 0.0211, 0.0198, 0.0136, 0.012], [0.0449, 0.0449, 0.0256, 0.024, 0.024, 0.0176, 0.0155, 0.0146], [0.0962, 0.0122, 0.007, 0.0065, 0.0065, 0.0058, 0.0054, 0.0051], [0.0965, 0.0402, 0.0229, 0.0179, 0.0115, 0.0115, 0.0102, 0.0102], [0.0711, 0.0459, 0.0315, 0.0231, 0.0217, 0.0204, 0.0159, 0.0149], [0.0925, 0.0816, 0.03, 0.0265, 0.022, 0.0133, 0.0133, 0.0125], [0.1562, 0.0155, 0.0128, 0.0094, 0.0078, 0.0078, 0.0073, 0.0069], [0.2239, 0.0222, 0.0162, 0.0143, 0.0126, 0.0126, 0.0092, 0.0077], [0.2072, 0.0673, 0.0218, 0.0205, 0.0181, 0.0117, 0.0117, 0.0097], [0.3182, 0.0857, 0.0217, 0.0203, 0.0191, 0.0149, 0.0096, 0.0096], [0.4436, 0.06, 0.0468, 0.0172, 0.0162, 0.0134, 0.0067, 0.0059], [0.2305, 0.1089, 0.0293, 0.0167, 0.0167, 0.0157, 0.0108, 0.0108], [0.0872, 0.0341, 0.0195, 0.0183, 0.0134, 0.0134, 0.0111, 0.0111], [0.0771, 0.053, 0.0342, 0.0207, 0.0183, 0.0152, 0.0118, 0.0104], [0.1246, 0.0261, 0.014, 0.0109, 0.009, 0.009, 0.0085, 0.008], [0.1132, 0.0237, 0.0174, 0.0112, 0.0105, 0.0093, 0.0093, 0.0072], [0.1559, 0.0394, 0.0225, 0.0198, 0.012, 0.0113, 0.0094, 0.0073], [0.1327, 0.0405, 0.018, 0.0131, 0.0116, 0.0085, 0.0085, 0.008], [0.2368, 0.0234, 0.0207, 0.0118, 0.0111, 0.0104, 0.0072, 0.0067], [0.1706, 0.0231, 0.018, 0.0116, 0.0116, 0.0116, 0.0116, 0.008], [0.2587, 0.0256, 0.0146, 0.0114, 0.0107, 0.0107, 0.0083, 0.0083], [0.2893, 0.0174, 0.0144, 0.0127, 0.0099, 0.0087, 0.0082, 0.0077], [0.2395, 0.0345, 0.0237, 0.0185, 0.0144, 0.0144, 0.0144, 0.0135], [0.187, 0.0346, 0.0238, 0.0223, 0.0185, 0.0185, 0.0163, 0.0135], [0.1268, 0.0363, 0.022, 0.0207, 0.0194, 0.0194, 0.0183, 0.0172], [0.1447, 0.0285, 0.0268, 0.0251, 0.0184, 0.0173, 0.0143, 0.0135], [0.0973, 0.0246, 0.0204, 0.0169, 0.0159, 0.0149, 0.014, 0.0124], [0.0689, 0.0445, 0.0369, 0.0185, 0.0185, 0.0154, 0.0136, 0.0136], [0.1123, 0.0772, 0.0267, 0.0221, 0.0208, 0.0152, 0.0143, 0.0134], [0.0476, 0.0476, 0.0447, 0.0289, 0.0225, 0.0211, 0.0136, 0.012], [0.0878, 0.0775, 0.0728, 0.047, 0.0415, 0.0222, 0.0196, 0.0173], [0.193, 0.0553, 0.0405, 0.0245, 0.0169, 0.0169, 0.0158, 0.0131], [0.1947, 0.1424, 0.0299, 0.0299, 0.028, 0.016, 0.016, 0.0124], [0.301, 0.2344, 0.0338, 0.0263, 0.0205, 0.017, 0.011, 0.0091], [0.5891, 0.116, 0.0797, 0.0427, 0.0259, 0.0089, 0.0061, 0.0045], [0.8559, 0.062, 0.0376, 0.0178, 0.0065, 0.0058, 0.0035, 0.0024], [0.8683, 0.0808, 0.0231, 0.0066, 0.0052, 0.0052, 0.004, 0.0017], [0.9273, 0.0247, 0.0103, 0.0091, 0.0091, 0.0062, 0.0062, 0.0023], [0.9313, 0.0361, 0.0091, 0.0055, 0.0049, 0.0043, 0.0034, 0.0018], [0.9883, 0.004, 0.0022, 0.0022, 0.0019, 0.0012, 0.0001, 0.0], [0.995, 0.0012, 0.001, 0.001, 0.0009, 0.0007, 0.0001, 0.0], [0.9977, 0.0008, 0.0005, 0.0004, 0.0003, 0.0002, 0.0001, 0.0], [0.9971, 0.0009, 0.0008, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001], [0.9975, 0.0007, 0.0005, 0.0003, 0.0001, 0.0001, 0.0001, 0.0001]], "ranks": {"Rust": [52284, 80537, 77330, 99129, 20831, 29343, 33749, 22123, 41583, 11886, 5800, 22534, 23883, 19973, 15799, 8999, 6926, 10063, 10131, 5678, 8472, 9008, 7375, 5925, 3388, 4616, 3684, 4151, 3781, 4997, 5248, 5421, 6247, 7848, 5393, 5565, 3736, 4678, 4629, 6011, 4021, 3306, 2954, 2814, 2744, 3317, 3400, 3231, 1738, 2817, 6152, 7851, 8174, 11590, 14367, 24340, 22768, 30877, 20844, 8571, 6652, 3344, 3510]}}, {"pos": 426, "top": [[" \u2013", "\u2013", ",", "<|endoftext|>", ".", "i", " ", ";"], [" \u2013", "\u2013", "\u2013\u2013", "\u2013and", "--", "  ", " ", "  \n"], ["\u2013", ",", " \u2013", "\u2013and", "\u2026", ".\u2013", ";", "\u2013\u2013"], [" ``", " ``(", "``", "\u3015", "``,", "\u52a0\u62ff\u5927", "__:", "\u5bb8"], [" (\u201e", ":@", "``", " ``(", "\u201e", ":\\", " ``", ":\\\""], ["\u0d4d\u0d1f", ":@", "\u5bb8", "__:", " (\u201e", " ``(", ":\\", "ively"], ["``", " ``", " ``(", "<|endoftext|>", ":\\\"", " \n \n", "\u3014", " $\\"], [" ``(", ":\\\"", " ``", "``", "\\\"\\", "=\\\"", " \n \n", "(\\\""], [" ``(", ":\\\"", "\\\"\\", "=\\\"", " \\\"$", " *\\", " \n \n", "(\\\""], [" ``(", ":\\", "\\\"\\", " \n \n", " requisite", ".Constraint", " ``", " {\\"], [" \n \n", "\\\"\\", " requisite", ":\\", " ``(", ";\\", "\\_", ":\\\""], [" ``(", " ``", "$__", " \\\"$", " requisite", ".Constraint", "\u6545\u800c", " constraint"], [" ``(", " ``", " requisite", " overarching", " constraint", " \\\"$", "\u6545\u800c", ".Constraint"], [" ``(", " ``", " requisite", " entirety", " overarching", "\u6545\u800c", " constraint", " leveraging"], [" ``", " requisite", " ``(", " entirety", " overarching", "\u6545\u800c", " constraint", " inherently"], [" requisite", " ``", " ``(", " overarching", " entirety", " nuanced", " foundational", " leveraging"], [" requisite", " overarching", " nuanced", " leveraging", " constraint", " mandated", " mandates", " entirety"], [" requisite", " constraint", " ``(", " overarching", " ``", " nuanced", " leveraging", " mandates"], [" ``", " ``(", " constraint", " requisite", " mandates", " mandated", " overarching", " nuanced"], [" requisite", " arguably", " merely", " ``", " overarching", " ``(", "\u6545\u800c", " constraint"], [" requisite", " merely", " arguably", " overarching", " ultimately", " swiftly", " uniquely", " ``"], [" ``", " ``(", " ;;^", "$__", " constraint", "RAINT", "icismo", " *__"], [" ``", " ``(", " constraint", "$__", "\u6545\u800c", " arguably", " requisite", " *__"], [" ``", " ``(", " ultimately", " merely", " arguably", " uniquely", " requisite", " notably"], [" requisite", " arguably", " ultimately", " __", " ``", "$__", " overarching", " merely"], [" ``", "$__", " __", " ``(", " *__", " constraint", " arguably", " leveraging"], [" ``", " __", "$__", " arguably", " constraint", " ultimately", " ``(", " requisite"], [" __", " arguably", " requisite", " ultimately", " ``", " merely", "$__", " uniquely"], [" ultimately", " arguably", " __", " requisite", " uniquely", " heavily", " constraint", " constraints"], [" __", " ultimately", " arguably", " constraint", " constraints", " budget", " heavily", " **"], [" ,", " ultimately", " budget", " limits", " constraints", " heavily", " cost", " arguably"], [" heavily", " ultimately", " cost", " only", " further", " uniquely", " potentially", " budget"], [" heavily", " only", " arguably", " cost", " ultimately", " potentially", " even", " forcing"], [" heavily", " constraints", " constraint", " priorit", " limits", " forcing", " forced", " likely"], [" forcing", " heavily", " constraint", " constraints", " disproportionately", " arguably", " likely", " unlikely"], [" forcing", " unlikely", " likely", " heavily", " disproportionately", " forced", " arguably", " notoriously"], [" forcing", " unlikely", " forced", " impossible", " notoriously", " likely", " aggressively", " disproportionately"], [" forcing", " unlikely", " forced", " impossible", " aggressively", " notoriously", " heavily", " disproportionately"], [" forcing", " impossible", " forced", " constraint", " constraints", " limits", " unlikely", " constrained"], [" forcing", " constraint", " constraints", " forced", " impossible", " paradox", " limits", " constrained"], [" forcing", " constraint", " constraints", " forced", " constrained", " impossible", " cost", " limits"], [" constraints", " constraint", " forcing", " forced", " constrained", " cost", " budget", " limiting"], [" constraints", " constraint", " forcing", " forced", " constrained", " limits", " limiting", " restrictive"], [" constraints", " constraint", " forcing", " forced", " limiting", " restrictions", " restriction", " restrict"], [" constraint", " constraints", " forcing", " restrict", " restriction", " forced", " restrictions", " limiting"], [" constraint", " constraints", " forcing", " restrict", " forced", " restriction", " limiting", " restrictive"], [" constraint", " constraints", " restrict", " forcing", " restriction", " likely", " forced", " restrictive"], [" constraint", " constraints", " restrict", " likely", " forcing", " restriction", " restricting", " limiting"], [" constraint", " forcing", " restrict", "\u9650\u5236\u4e86", " constraints", " forced", " implies", " restricting"], ["\u5012\u903c", " implies", " forcing", " constraint", "\u9650\u5236\u4e86", " restrict", " likely", " constraints"], ["\u5012\u903c", " ignores", "\u9650\u5236\u4e86", " implies", " constraint", "\u903c\u8feb", " forcing", " restrict"], ["\u5012\u903c", " ignores", " ignored", " implies", "\u610f\u5473\u7740", " forcing", " undermines", "ignored"], [" ignores", " ignored", "\u5012\u903c", " implies", " ignoring", "ignored", " forcing", " undermines"], [" ignores", " implies", " ignored", "\u610f\u5473\u7740", "\u5012\u903c", "ignored", " ignoring", " forcing"], [" ignores", " implies", "\u610f\u5473\u7740", " contrad", " forcing", "\u6697\u793a", " ensures", " suggests"], [" means", "\u610f\u5473\u7740", " implies", " ignores", "\u610f\u5473\u8457", " \u043e\u0437\u043d\u0430\u0447\u0430\u0435\u0442", "Means", "means"], [" means", "\u610f\u5473\u7740", " implies", " ignores", " combined", " kills", " ensures", " guarantees"], [" means", " implies", " ignores", "\u610f\u5473\u7740", " suggests", " combined", " kills", " guarantees"], [" implies", " means", " guarantees", " ignores", " kills", " suggests", " combined", " ensures"], [" kills", " means", " implies", " ignores", " guarantees", " suggests", " kill", " ensures"], [" kills", " means", " guarantees", " implies", " ignores", " suggests", " ensures", " combined"], [" means", " kills", " guarantees", " implies", " ignores", " ensures", " suggests", " is"], [" kills", " means", " guarantees", " combined", " implies", " forces", " ignores", " suggests"]], "p": [[0.6973, 0.1763, 0.0446, 0.0393, 0.012, 0.0113, 0.0088, 0.0012], [0.4224, 0.1654, 0.0186, 0.0174, 0.012, 0.0082, 0.0039, 0.003], [0.8985, 0.0651, 0.0239, 0.0061, 0.0015, 0.0014, 0.0007, 0.0005], [0.4071, 0.2978, 0.1807, 0.0024, 0.002, 0.0013, 0.0011, 0.0009], [0.0227, 0.0188, 0.0188, 0.0177, 0.0122, 0.0107, 0.0107, 0.0101], [0.0074, 0.0061, 0.0033, 0.0029, 0.0027, 0.0027, 0.0025, 0.0021], [0.1595, 0.1595, 0.0754, 0.0457, 0.0179, 0.0158, 0.0139, 0.0123], [0.1646, 0.0686, 0.0502, 0.0472, 0.0345, 0.0269, 0.0197, 0.0119], [0.1213, 0.0888, 0.0446, 0.0307, 0.0254, 0.0186, 0.0186, 0.0186], [0.0263, 0.0124, 0.0103, 0.0091, 0.0066, 0.0059, 0.0055, 0.0055], [0.0406, 0.0246, 0.0204, 0.0169, 0.0132, 0.0109, 0.0109, 0.0075], [0.1485, 0.0353, 0.0061, 0.0048, 0.0035, 0.0031, 0.0031, 0.0029], [0.1399, 0.0661, 0.0054, 0.0051, 0.0045, 0.0035, 0.0033, 0.0031], [0.0656, 0.0579, 0.0146, 0.0121, 0.0101, 0.0057, 0.0054, 0.0037], [0.0797, 0.0703, 0.0332, 0.0108, 0.0084, 0.0054, 0.0045, 0.0045], [0.0689, 0.0253, 0.0127, 0.0099, 0.0088, 0.0053, 0.005, 0.0047], [0.0688, 0.012, 0.0068, 0.0056, 0.0056, 0.0056, 0.005, 0.0044], [0.0075, 0.007, 0.007, 0.0066, 0.0055, 0.0048, 0.0045, 0.0045], [0.0106, 0.0106, 0.0093, 0.0053, 0.0047, 0.0047, 0.0039, 0.0037], [0.0203, 0.009, 0.0085, 0.0075, 0.0062, 0.0058, 0.0048, 0.0045], [0.0196, 0.0127, 0.0112, 0.0099, 0.0099, 0.0087, 0.006, 0.0053], [0.0369, 0.0347, 0.0037, 0.0027, 0.0024, 0.0022, 0.002, 0.0016], [0.2115, 0.0778, 0.0044, 0.0041, 0.0021, 0.0021, 0.0018, 0.0018], [0.2427, 0.0256, 0.0199, 0.0107, 0.01, 0.0069, 0.0054, 0.005], [0.0273, 0.0166, 0.0146, 0.0146, 0.0114, 0.0101, 0.0101, 0.0094], [0.0367, 0.0268, 0.0184, 0.0153, 0.0153, 0.0099, 0.0068, 0.0047], [0.0521, 0.0246, 0.014, 0.0132, 0.0124, 0.0116, 0.0071, 0.0062], [0.0938, 0.0345, 0.0197, 0.0197, 0.0153, 0.0153, 0.0112, 0.0105], [0.0378, 0.0355, 0.0295, 0.0179, 0.0168, 0.0139, 0.0123, 0.0102], [0.0495, 0.032, 0.0282, 0.0249, 0.0194, 0.0171, 0.0151, 0.0142], [0.0496, 0.0234, 0.0207, 0.0182, 0.0182, 0.0171, 0.0161, 0.0151], [0.0278, 0.023, 0.0158, 0.0149, 0.014, 0.014, 0.014, 0.014], [0.0334, 0.026, 0.0216, 0.019, 0.0179, 0.0179, 0.0148, 0.0123], [0.0243, 0.0229, 0.0167, 0.0167, 0.0148, 0.0148, 0.013, 0.0122], [0.0231, 0.0192, 0.018, 0.018, 0.014, 0.014, 0.0132, 0.0132], [0.0386, 0.034, 0.0282, 0.0249, 0.022, 0.0194, 0.0133, 0.0125], [0.0422, 0.0256, 0.0212, 0.0165, 0.0165, 0.0146, 0.0146, 0.0137], [0.0374, 0.02, 0.0188, 0.0188, 0.0129, 0.0121, 0.0121, 0.0114], [0.0546, 0.0331, 0.0311, 0.0292, 0.0228, 0.0157, 0.0147, 0.0108], [0.0668, 0.0459, 0.0336, 0.0316, 0.0246, 0.0159, 0.014, 0.0109], [0.1001, 0.0688, 0.0607, 0.0571, 0.021, 0.0154, 0.0127, 0.012], [0.1511, 0.1334, 0.0917, 0.0522, 0.0407, 0.018, 0.015, 0.0141], [0.1838, 0.1622, 0.0868, 0.0597, 0.0265, 0.0161, 0.0161, 0.0142], [0.2259, 0.1759, 0.0647, 0.0346, 0.0346, 0.027, 0.027, 0.027], [0.1565, 0.1381, 0.0652, 0.0448, 0.0448, 0.0372, 0.0349, 0.0308], [0.1172, 0.0711, 0.0554, 0.0431, 0.0431, 0.0357, 0.0296, 0.0231], [0.2048, 0.1096, 0.0457, 0.0457, 0.0356, 0.023, 0.0216, 0.0191], [0.2149, 0.1303, 0.079, 0.0543, 0.0423, 0.0291, 0.0257, 0.0213], [0.0775, 0.0684, 0.0684, 0.047, 0.0441, 0.0323, 0.0303, 0.0268], [0.2044, 0.1405, 0.0586, 0.0586, 0.0456, 0.0403, 0.0314, 0.0202], [0.4169, 0.0498, 0.0498, 0.0388, 0.025, 0.025, 0.025, 0.0221], [0.2689, 0.2094, 0.06, 0.0467, 0.0364, 0.0235, 0.0195, 0.0134], [0.5022, 0.1121, 0.077, 0.0364, 0.0221, 0.0161, 0.0142, 0.0126], [0.6069, 0.0725, 0.044, 0.0388, 0.0208, 0.0162, 0.0126, 0.0104], [0.3287, 0.256, 0.0445, 0.0346, 0.0306, 0.027, 0.0238, 0.0238], [0.4899, 0.4323, 0.0168, 0.0131, 0.0048, 0.0037, 0.0029, 0.0029], [0.3138, 0.3138, 0.1154, 0.0481, 0.0331, 0.0201, 0.0122, 0.0107], [0.2444, 0.1155, 0.1019, 0.0794, 0.07, 0.0545, 0.0545, 0.0292], [0.1707, 0.1507, 0.1036, 0.1036, 0.0712, 0.0712, 0.0432, 0.0262], [0.6184, 0.1772, 0.0349, 0.024, 0.024, 0.0128, 0.01, 0.0088], [0.4846, 0.202, 0.0954, 0.0656, 0.0241, 0.0213, 0.0166, 0.0057], [0.3424, 0.2077, 0.1833, 0.0595, 0.0361, 0.0281, 0.0248, 0.015], [0.2618, 0.2039, 0.18, 0.1091, 0.0377, 0.0276, 0.0244, 0.0202]], "ranks": {"Rust": [44539, 61930, 60583, 54852, 17461, 40126, 75564, 94694, 58340, 48532, 52331, 49525, 51139, 45759, 45353, 42230, 35332, 61420, 63017, 42541, 55462, 86479, 87452, 45341, 29362, 36482, 17517, 11272, 9080, 9494, 8238, 7724, 7704, 8969, 8614, 6957, 4298, 5747, 5725, 6701, 4178, 4092, 4086, 4563, 3666, 4465, 4566, 5244, 3313, 4273, 6881, 4729, 8202, 11469, 17822, 18890, 14777, 15532, 6597, 4436, 3054, 1467, 1268]}}, {"pos": 427, "top": [["s", ".", ",", " \u2013", "o", "\u2013", ";", "\u2026"], ["s", "es", "schild", "sWith", "schaft", "sab", " \u2013", "\u0627\u062a"], ["s", "\u2013", "\u2026", "\u2026..", "\u2026.", "\u2013\u2013", "\u2026,", "\u2013and"], ["sium", "schaft", "sula", "sburg", "ielen", "spra", "schrift", " \u041a\u0440\u0430\u0441\u0438"], ["s", "schaft", "ihi", "schild", "sver", "sab", "samp", "\u2013\u2013"], ["s", " \u200b\u200b", "schaft", "sver", "ihi", "sab", "spro", "sula"], ["s", "schaft", "sburg", "ihi", "sor", "samp", "s\u00e4", "es"], ["s", "sburg", "schaft", "schild", "sula", "sium", "s\u00e4", "spro"], ["s", "schild", "   \n\n", "  \n\n", "schaft", "!\u201d", "sburg", "!\u201d."], ["s", "schild", "sburg", "s\u00f3", "samp", "schaft", "spez", "ska"], ["s", "es", "\u2026", "..", "\u2014", "\u2026\u201d", "schild", "\u2026."], ["s", "s\u00f3", "schild", "sburg", " hardcore", "schaft", " traumatis", "ska"], ["s", "s\u00f3", "schild", "schaft", " hardcore", "spez", "hift", "sburg"], ["s", "s\u00f3", " hardcore", "schaft", " traumatis", " gotta", "ska", " guys"], ["s", "s\u00f3", " hardcore", " hugely", "_colour", " plenty", " tackling", " bigger"], ["s", " plenty", "s\u00f3", " hardcore", " getting", " hugely", "siz", "es"], ["s", " plenty", " folks", " everything", " incredibly", " getting", " big", " hardcore"], ["s", " folks", " guys", " gotta", "siz", "schaft", " hardcore", " pretty"], ["s", "schaft", "spez", " everything", " guys", "siz", "schild", " folks"], ["s", " folks", " incredibly", " everything", "spez", " forever", "schild", " pretty"], ["s", " folks", " everything", " incredibly", " hugely", " plenty", " forever", " everybody"], ["spez", "schaft", " ;;^", "sium", "sburg", "siz", "\u5f88\u591a\u4e1c\u897f", "sste"], [" incredibly", " folks", "spez", " forever", " everybody", "siz", " nobody", " everything"], [" everything", " incredibly", " folks", " forever", " plenty", " everybody", " ultimately", " nobody"], ["  \n\n", " folks", "   \n\n", "\r\n\r\n", " plenty", " hugely", " \n\n", "s"], [" folks", " everything", " nobody", " incredibly", " **", " hardcore", " forever", " plenty"], [" everything", " folks", " nobody", " infrastructure", " upfront", " hardcore", " fracking", " plenty"], [" everything", "\n\n", " \n\n", " **", "  \n\n", " heavily", " ultimately", " folks"], [" everything", " heavily", " ultimately", " infrastructure", " incredibly", " plenty", " resources", " cheap"], [" everything", " heavily", " ultimately", " infrastructure", " resources", " incredibly", " hard", " money"], [" everything", " only", " huge", " heavily", " big", " even", " incredibly", " hard"], [" everything", " only", " huge", " heavily", " hard", " even", " incredibly", " big"], [" heavily", " even", " only", " everything", " hard", " huge", " incredibly", " just"], [" heavily", " infrastructure", " incredibly", " everything", " strategically", " crucial", " only", " huge"], [" heavily", " incredibly", " meticulously", " infrastructure", " everything", " huge", " aggressively", " strategically"], [" incredibly", " everything", " unlikely", " heavily", " cheap", " impossible", " lack", " huge"], [" everything", " impossible", " incredibly", " unlikely", " inevitably", " infrastructure", " meticulously", " heavily"], [" cheap", " everything", " incredibly", " tech", " infrastructure", " impossible", " meticulously", " tools"], [" everything", " hardware", " tech", " impossible", " cheap", " meticulously", " software", " tools"], [" hardware", " tech", " testing", " software", " impossible", " everything", " meticulously", " workflows"], [" hardware", " testing", " software", " tech", " workflows", " labor", " technology", " computers"], [" testing", " hardware", " software", " tech", " labs", " tools", " workflows", " tests"], [" testing", " hardware", " tests", " testers", " labs", " software", " tools", " tech"], [" testing", " hardware", " tests", " testers", " labs", " software", " workflows", " debugging"], [" testing", " tests", " hardware", " testers", " labs", " reliance", " budgets", " expensive"], [" testing", " tests", " reliance", " hardware", " everything", " testers", " labs", " training"], [" testing", " everything", " reliance", " impossible", " must", " MUST", " tests", " hardware"], [" testing", " everything", " lack", " reliance", " nobody", " impossible", " lacks", " anything"], [" testing", " impossible", " reliance", " everything", "\u5c06\u65e0\u6cd5", " anything", " cannot", " nobody"], ["\u5c06\u65e0\u6cd5", " testing", " cannot", " impossible", " inability", "\u4f60\u4e0d\u80fd", " lacks", "\u4f60\u5fc5\u987b"], ["\u4f60\u4e0d\u80fd", " cannot", "\u5c06\u65e0\u6cd5", "\u4f60\u5fc5\u987b", "cannot", "\u4f60\u6ca1\u6709", " testing", " impossible"], [" cannot", "cannot", " testing", " debugging", " nobody", "\u4f60\u4e0d\u80fd", "\u4f60\u5fc5\u987b", "\u4e0d\u80fd\u7528"], [" cannot", " nobody", "cannot", "\u4f60\u4e0d\u80fd", " debugging", "\u4e0d\u80fd\u4f7f\u7528", " testing", "\u4e0d\u80fd\u7528"], ["\u4f60\u4e0d\u80fd", " cannot", " your", "cannot", " you", " nobody", "\u4e0d\u80fd\u7528", "\u4e0d\u80fd\u4f7f\u7528"], [" your", " you", "\u4f60\u4e0d\u80fd", " cannot", "cannot", " nobody", "your", "you"], [" your", " you", "\u4f60\u4e0d\u80fd", " debugging", "your", "\u4f60\u7684", " cannot", " nobody"], [" your", " you", "your", "\u4f60\u7684", "\u4f60\u4e0d\u80fd", " debugging", "cannot", "you"], [" your", " you", "your", "\u4f60\u7684", "you", "\u4f60\u4e0d\u80fd", "\u4f60\u7684\u624b\u673a", " debugging"], [" you", " your", " debugging", "your", "you", "\u4f60\u7684", "\u4f60\u4e0d\u80fd", " debug"], [" your", " you", " debugging", "your", " zero", " plugins", "you", " debug"], [" your", " you", " zero", " binary", " binaries", " debugging", " plugins", " cross"], [" you", " your", " zero", " plugins", " debugging", " binary", " cross", " binaries"], [" you", " your", " zero", " plugins", " debugging", " cross", " CI", " no"]], "p": [[0.9874, 0.0085, 0.0019, 0.0005, 0.0005, 0.0002, 0.0001, 0.0001], [0.9998, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.982, 0.0066, 0.0026, 0.002, 0.0009, 0.0007, 0.0003, 0.0003], [0.0588, 0.0295, 0.0295, 0.0109, 0.0109, 0.0096, 0.009, 0.008], [0.9812, 0.001, 0.0007, 0.0005, 0.0004, 0.0004, 0.0003, 0.0003], [0.7413, 0.0088, 0.0068, 0.0064, 0.0053, 0.0047, 0.0027, 0.0018], [0.9959, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9451, 0.0105, 0.0056, 0.0039, 0.0011, 0.0007, 0.0005, 0.0004], [0.6911, 0.0344, 0.0285, 0.0236, 0.0099, 0.0099, 0.0087, 0.0041], [0.5044, 0.0126, 0.0072, 0.0026, 0.0021, 0.0019, 0.0018, 0.0017], [0.9818, 0.0009, 0.0007, 0.0003, 0.0002, 0.0002, 0.0002, 0.0002], [0.4168, 0.0302, 0.0152, 0.0076, 0.0063, 0.0056, 0.0043, 0.0038], [0.3518, 0.0395, 0.012, 0.0106, 0.0094, 0.0047, 0.0042, 0.0039], [0.1774, 0.0256, 0.0137, 0.0057, 0.0039, 0.0039, 0.0037, 0.0035], [0.2612, 0.0157, 0.0108, 0.0054, 0.004, 0.0037, 0.0037, 0.0037], [0.4529, 0.0107, 0.0061, 0.0044, 0.0035, 0.0035, 0.0032, 0.0027], [0.3932, 0.0112, 0.0082, 0.0064, 0.0044, 0.0044, 0.0041, 0.0039], [0.0468, 0.0126, 0.0098, 0.0092, 0.0063, 0.006, 0.0053, 0.0053], [0.0484, 0.0115, 0.0079, 0.0065, 0.0065, 0.0058, 0.0058, 0.0058], [0.0307, 0.0136, 0.0106, 0.0078, 0.006, 0.006, 0.0057, 0.0053], [0.0146, 0.0094, 0.0054, 0.005, 0.0045, 0.0045, 0.0042, 0.0035], [0.0065, 0.0029, 0.0025, 0.0024, 0.0021, 0.0016, 0.0014, 0.0014], [0.0038, 0.0036, 0.0034, 0.0023, 0.0018, 0.0017, 0.0017, 0.0017], [0.0063, 0.0055, 0.0046, 0.0043, 0.0038, 0.0038, 0.0034, 0.0032], [0.0234, 0.0194, 0.0092, 0.0092, 0.0086, 0.0071, 0.0071, 0.0059], [0.0181, 0.0075, 0.0055, 0.0052, 0.0043, 0.004, 0.0038, 0.0038], [0.0063, 0.0055, 0.0046, 0.0036, 0.0033, 0.0033, 0.0028, 0.0026], [0.0093, 0.0087, 0.0077, 0.0077, 0.0077, 0.0068, 0.006, 0.006], [0.0155, 0.0106, 0.0083, 0.0069, 0.0061, 0.0053, 0.005, 0.0042], [0.0303, 0.0126, 0.0105, 0.0105, 0.0077, 0.0072, 0.0064, 0.006], [0.0663, 0.0178, 0.0148, 0.013, 0.0102, 0.0102, 0.0102, 0.0102], [0.0476, 0.0289, 0.0175, 0.0155, 0.0145, 0.0137, 0.012, 0.01], [0.0251, 0.0236, 0.0236, 0.0236, 0.0126, 0.0118, 0.0118, 0.0076], [0.0205, 0.0181, 0.0132, 0.0132, 0.0091, 0.0085, 0.0085, 0.008], [0.025, 0.0151, 0.0126, 0.0118, 0.0092, 0.0086, 0.0086, 0.0081], [0.0256, 0.024, 0.0165, 0.0165, 0.0146, 0.0121, 0.0107, 0.0094], [0.0241, 0.02, 0.0165, 0.0146, 0.0107, 0.0094, 0.0089, 0.0083], [0.027, 0.0238, 0.0154, 0.0136, 0.0106, 0.0106, 0.0099, 0.0093], [0.0267, 0.0251, 0.0221, 0.0162, 0.0126, 0.0126, 0.0126, 0.0118], [0.0528, 0.0363, 0.0301, 0.0234, 0.0172, 0.0161, 0.0151, 0.0134], [0.1923, 0.1029, 0.0967, 0.0707, 0.0115, 0.0115, 0.0108, 0.0102], [0.2786, 0.1915, 0.0455, 0.0202, 0.0178, 0.0148, 0.0148, 0.0115], [0.4291, 0.0899, 0.0274, 0.0214, 0.0201, 0.0177, 0.013, 0.0122], [0.5823, 0.0396, 0.0309, 0.0212, 0.0129, 0.0088, 0.0069, 0.0069], [0.5216, 0.0294, 0.0215, 0.019, 0.0139, 0.0096, 0.009, 0.0079], [0.3118, 0.024, 0.0187, 0.0165, 0.0155, 0.0107, 0.0107, 0.0094], [0.1874, 0.0369, 0.0238, 0.0238, 0.0154, 0.0154, 0.0154, 0.0128], [0.1761, 0.0418, 0.027, 0.0224, 0.021, 0.0198, 0.0164, 0.0128], [0.0839, 0.0256, 0.0226, 0.0176, 0.0176, 0.0165, 0.0155, 0.0146], [0.0509, 0.0478, 0.0449, 0.0256, 0.0212, 0.0199, 0.0187, 0.0187], [0.0656, 0.0579, 0.0451, 0.0398, 0.033, 0.0227, 0.0227, 0.0188], [0.0869, 0.0495, 0.0495, 0.0362, 0.034, 0.03, 0.0249, 0.0249], [0.1373, 0.1138, 0.069, 0.0609, 0.0419, 0.0326, 0.0326, 0.0288], [0.1845, 0.1845, 0.1845, 0.0987, 0.0679, 0.0363, 0.0266, 0.0172], [0.3979, 0.3511, 0.1464, 0.0175, 0.0106, 0.0083, 0.0083, 0.0057], [0.658, 0.242, 0.0175, 0.0137, 0.0083, 0.0083, 0.0057, 0.0044], [0.7465, 0.1887, 0.0106, 0.0094, 0.0094, 0.0065, 0.0025, 0.0022], [0.772, 0.1952, 0.0086, 0.0067, 0.0019, 0.0019, 0.0015, 0.0012], [0.5735, 0.3942, 0.0119, 0.0027, 0.0023, 0.0014, 0.0013, 0.0013], [0.5261, 0.4643, 0.0028, 0.001, 0.0009, 0.0009, 0.0004, 0.0003], [0.5237, 0.4622, 0.0035, 0.0019, 0.0017, 0.0015, 0.0009, 0.0005], [0.5245, 0.4629, 0.0031, 0.0017, 0.0011, 0.0007, 0.0005, 0.0004], [0.5292, 0.467, 0.0013, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001]], "ranks": {"Rust": [49645, 108598, 113812, 66820, 10726, 25135, 66313, 58146, 90011, 41457, 20844, 37858, 28381, 28851, 24234, 9573, 14465, 62059, 81187, 56592, 73658, 122466, 91821, 40750, 22703, 31153, 23452, 12431, 8215, 7120, 7859, 9743, 12121, 17906, 9511, 8063, 6113, 7251, 8057, 6967, 7553, 9882, 8919, 13896, 9216, 6845, 5432, 5195, 6508, 10063, 11179, 11066, 11139, 6753, 12858, 6454, 1108, 541, 263, 240, 239, 151, 92]}}, {"pos": 428, "top": [[",", ".", "s", ";", "?", "!", ":", "\u2026."], [",", "s", ".", ";", "?", "!", ":", "\u2011"], [",", ".", ";", "\u2026", "?", "s", "\u2026.", "\u2013"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "erdale", "erias", "satz", "schaft", "sache", "sik", "sier"], ["s", ",", ".", "!", ":", "\u2019s", " \u201c", "!!!"], ["s", ",", ".", "!", ":", "\u2019s", "\u2026.", "?"], ["s", ",", ".", "!", "\u2019s", "?", "\u2014", ".\u201d"], ["s", ",", ".", "!", "scape", "schild", "sche", "!!!"], [".", ",", "s", "!", ":", "?", ".\u201d", "!\u201d"], [",", "s", ".", "!", ":", ";", "\u2014you", "!!!"], ["s", ",", ".", "...", "!", "\u2019s", "!!!", "?"], ["s", "schild", "scape", " guys", "sce", "ska", "lessly", "spez"], ["s", " guys", "scape", "schild", " bigger", " Philly", " savvy", "sy"], ["s", " guys", " bigger", "\u2014you", " savvy", " pretty", " Philly", " folks"], ["s", " just", " guys", " bigger", " savvy", " mostly", " going", ","], ["s", " guys", " just", " folks", " savvy", " going", " mostly", " quickly"], [",", "s", " just", " wouldn", " pretty", " savvy", " folks", " bigger"], [" savvy", " bigger", " quickly", " just", " big", " guys", " comfortably", " smarter"], [" just", " quickly", " even", " comfortably", " mostly", " desperately", " largely", " often"], [" just", " even", " largely", " quickly", " sprawling", " hugely", " dramatically", "\u2014even"], ["<|endoftext|>", " just", " largely", " quickly", " even", " hugely", " much", " vastly"], [" bigger", " comfortably", " effortlessly", " quickly", " seamlessly", " massively", " smarter", " sprawling"], [" quickly", " massively", " comfortably", " effortlessly", " arguably", " sprawling", " aggressively", " bigger"], [" even", " ultimately", " just", " quickly", " still", " heavily", " much", " eventually"], [" massively", " heavily", " \n\n", "  \n\n", " \r\n\r\n", " hugely", " ultimately", " aggressively"], [" **", " tech", " massively", " **+", " hardware", " heavily", " overclock", " seamlessly"], [" tech", " **", " hardware", " aggressively", " engineering", " software", " massively", " heavily"], ["\n\n", " even", " heavily", " \n\n", " just", " still", " aggressively", " eventually"], [" tech", " ...", " hardware", " aggressively", " engineering", " heavily", " software", " even"], [" tech", " **", " hardware", " testing", " technology", " software", " engineering", " tools"], [" ...", " **", " tech", " ...\\", " testing", " technology", " even", " hardware"], [" ...", " even", " quickly", " only", " still", " just", " more", " all"], [" even", " ...", " only", " quickly", " just", " more", " still", " often"], [" tech", " testing", " software", " hardware", " complex", " meticulously", " digitally", " technology"], [" meticulously", " testing", " tech", " seamlessly", " massively", " complex", " aggressively", " hardware"], [" testing", " tech", " hardware", " software", " globally", " meticulously", " tests", " test"], [" testing", " tech", " hardware", " tests", " software", " meticulously", " test", " Testing"], [" testing", " hardware", " software", " tech", " tests", " meticulously", " tools", " test"], [" hardware", " testing", " tech", " software", "\u6d4b\u8bd5", " tests", " test", " macOS"], [" testing", " hardware", "\u6d4b\u8bd5", " Android", " iOS", " tests", " tech", " Testing"], [" testing", "\u6d4b\u8bd5", " test", " tests", " hardware", " Testing", " testers", " Android"], [" testing", " hardware", " Android", "\u6d4b\u8bd5", " tests", " Testing", " test", " testers"], [" testing", " tests", "\u6d4b\u8bd5", " test", " Testing", " testers", " hardware", "Testing"], [" testing", " tests", " Testing", "\u6d4b\u8bd5", " test", " testers", "Testing", "testing"], [" testing", " tests", " Testing", " test", "Testing", "\u6d4b\u8bd5", " testers", "testing"], [" testing", " tests", " test", " Testing", " testers", "-testing", "Testing", "testing"], [" testing", " must", " tests", " test", " Testing", " needed", " required", " testers"], [" testing", " must", " tests", " needed", " Testing", " test", " MUST", " likely"], [" must", " testing", " MUST", " lacks", " needed", " tests", " lack", " lacked"], [" cannot", " must", " lacks", " lacked", " lack", " inability", " unable", " desperately"], [" cannot", "\u4f60\u5fc5\u987b", "cannot", " lacks", "\u6839\u672c\u65e0\u6cd5", "\u5c06\u65e0\u6cd5", " must", " lacked"], [" cannot", " must", "cannot", " MUST", "\u5fc5\u987b\u5728", " ignored", " lacked", " lacks"], [" cannot", " ignored", "cannot", " ignoring", "\u5931\u53bb\u4e86", " ignores", " must", " ignore"], [" cannot", "cannot", " Cannot", " ignoring", "\u4e0d\u80fd\u7528", " ignores", "Cannot", " ignored"], [" cannot", "cannot", "\u5931\u53bb\u4e86", " Cannot", "Cannot", "\u4e0d\u80fd\u7528", " lose", " losing"], [" cannot", "\u5931\u53bb\u4e86", "cannot", " lose", "\u5931\u53bb", " losing", " Cannot", " loses"], [" cannot", "cannot", "\u5931\u53bb\u4e86", " Cannot", " losing", " lose", "\u5931\u53bb", "Cannot"], [" cannot", "\u5931\u53bb\u4e86", "cannot", " lose", " losing", "\u5931\u53bb", " loses", " Cannot"], [" cannot", "\u5931\u53bb\u4e86", " lose", "cannot", " losing", "\u5931\u53bb", " loses", " abandoning"], [" cannot", " lose", " losing", "\u5931\u53bb\u4e86", "\u2019re", "cannot", " loses", " lost"], [" cannot", " lose", " have", " can", " are", "cannot", "\u2019re", "\u2019ve"], [" cannot", "\u2019re", " are", " have", " lose", "\u2019ve", " aren", "\u2019ll"], ["\u2019re", " cannot", " lose", " have", " are", "\u2019ve", "\u2019ll", " can"]], "p": [[0.5545, 0.4319, 0.009, 0.0018, 0.0011, 0.0003, 0.0002, 0.0002], [0.7162, 0.1169, 0.0804, 0.0123, 0.0031, 0.0015, 0.001, 0.0008], [0.9086, 0.0845, 0.0015, 0.0015, 0.0012, 0.0008, 0.0005, 0.0003], [0.0035, 0.0031, 0.0029, 0.0021, 0.0021, 0.0019, 0.0019, 0.0015], [0.7913, 0.1214, 0.0254, 0.0017, 0.0012, 0.0008, 0.0006, 0.0005], [0.4944, 0.3192, 0.0406, 0.0071, 0.0043, 0.0035, 0.0022, 0.0017], [0.9991, 0.0003, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9907, 0.0014, 0.0013, 0.0007, 0.0003, 0.0002, 0.0001, 0.0001], [0.6271, 0.1797, 0.1235, 0.0178, 0.0079, 0.004, 0.0033, 0.0027], [0.7119, 0.18, 0.0074, 0.0026, 0.0021, 0.0014, 0.0009, 0.0008], [0.9199, 0.0315, 0.009, 0.0051, 0.002, 0.0012, 0.0009, 0.0008], [0.0974, 0.0124, 0.0096, 0.0062, 0.0049, 0.0043, 0.004, 0.0038], [0.4859, 0.0156, 0.0084, 0.0069, 0.0051, 0.0031, 0.0025, 0.0024], [0.3528, 0.0272, 0.0057, 0.0057, 0.0054, 0.0035, 0.0031, 0.0027], [0.142, 0.0205, 0.018, 0.0085, 0.0075, 0.0075, 0.0062, 0.0062], [0.0595, 0.0248, 0.0248, 0.017, 0.016, 0.008, 0.0067, 0.0067], [0.2793, 0.1239, 0.0277, 0.0123, 0.0108, 0.0102, 0.0096, 0.0096], [0.0164, 0.0136, 0.0128, 0.012, 0.0093, 0.0093, 0.0082, 0.0073], [0.0228, 0.0202, 0.0167, 0.0101, 0.0101, 0.0095, 0.0089, 0.0089], [0.0161, 0.0126, 0.0111, 0.0104, 0.0098, 0.0098, 0.0092, 0.0086], [0.0346, 0.0174, 0.0127, 0.0099, 0.0087, 0.0082, 0.0072, 0.0072], [0.0064, 0.0061, 0.0061, 0.0057, 0.005, 0.0047, 0.0037, 0.003], [0.0115, 0.0108, 0.009, 0.0084, 0.0079, 0.007, 0.007, 0.0066], [0.0237, 0.0222, 0.0184, 0.0184, 0.0163, 0.0135, 0.0127, 0.0127], [0.0149, 0.0131, 0.0123, 0.0096, 0.009, 0.0085, 0.008, 0.008], [0.0833, 0.0254, 0.0224, 0.0198, 0.0145, 0.0145, 0.0094, 0.0083], [0.0249, 0.0206, 0.0194, 0.0151, 0.0142, 0.0086, 0.0081, 0.0076], [0.0314, 0.026, 0.0216, 0.0216, 0.0148, 0.0139, 0.0131, 0.0123], [0.0643, 0.0415, 0.0285, 0.0173, 0.0135, 0.0112, 0.0099, 0.0087], [0.073, 0.0606, 0.0367, 0.0237, 0.0237, 0.0209, 0.0174, 0.0135], [0.649, 0.0268, 0.0135, 0.0087, 0.0072, 0.0056, 0.005, 0.0044], [0.1063, 0.0237, 0.0163, 0.0163, 0.0163, 0.0153, 0.0119, 0.0077], [0.0292, 0.0228, 0.0177, 0.0147, 0.0138, 0.013, 0.0122, 0.0101], [0.0672, 0.0408, 0.0218, 0.016, 0.0141, 0.0132, 0.0132, 0.0124], [0.0727, 0.0469, 0.0469, 0.0162, 0.0162, 0.0126, 0.0119, 0.0098], [0.2365, 0.0637, 0.0265, 0.022, 0.0133, 0.0125, 0.0118, 0.0111], [0.3085, 0.0368, 0.0346, 0.0287, 0.0185, 0.0154, 0.0144, 0.0099], [0.2043, 0.0851, 0.0751, 0.0585, 0.0178, 0.0168, 0.0168, 0.0123], [0.2475, 0.2475, 0.0261, 0.0245, 0.023, 0.0216, 0.014, 0.0109], [0.3223, 0.0983, 0.0924, 0.0815, 0.041, 0.0219, 0.0194, 0.016], [0.6685, 0.0905, 0.0333, 0.0259, 0.0259, 0.0229, 0.0178, 0.0115], [0.6395, 0.0595, 0.0318, 0.0281, 0.0264, 0.0193, 0.017, 0.0125], [0.7697, 0.0492, 0.0232, 0.0232, 0.0232, 0.0181, 0.0091, 0.0067], [0.8271, 0.0599, 0.025, 0.0172, 0.0151, 0.0092, 0.0046, 0.0041], [0.8415, 0.0475, 0.0224, 0.0154, 0.0093, 0.0082, 0.006, 0.0041], [0.8181, 0.0523, 0.0192, 0.0181, 0.0091, 0.0055, 0.0038, 0.0033], [0.7377, 0.0391, 0.0367, 0.0252, 0.0144, 0.0105, 0.006, 0.0056], [0.5895, 0.1161, 0.0276, 0.0202, 0.0157, 0.0139, 0.0065, 0.0062], [0.3195, 0.1509, 0.0382, 0.0246, 0.0159, 0.014, 0.014, 0.0109], [0.1582, 0.1232, 0.1087, 0.0747, 0.0426, 0.0293, 0.0214, 0.0214], [0.4391, 0.0384, 0.0318, 0.0281, 0.0248, 0.0205, 0.0181, 0.015], [0.3949, 0.1131, 0.0269, 0.0269, 0.0209, 0.0197, 0.0185, 0.0144], [0.6583, 0.054, 0.0421, 0.0328, 0.0289, 0.0255, 0.0121, 0.0083], [0.9549, 0.0288, 0.0024, 0.0018, 0.0014, 0.0013, 0.0011, 0.0011], [0.9767, 0.0179, 0.0027, 0.001, 0.0003, 0.0002, 0.0001, 0.0001], [0.9388, 0.0364, 0.0134, 0.0043, 0.0021, 0.0014, 0.0008, 0.0007], [0.9507, 0.0369, 0.0082, 0.0009, 0.0009, 0.0009, 0.0005, 0.0003], [0.8594, 0.0799, 0.0333, 0.0108, 0.0074, 0.0031, 0.0015, 0.0009], [0.9027, 0.0309, 0.0212, 0.0212, 0.0129, 0.0022, 0.0015, 0.0015], [0.7637, 0.1504, 0.0336, 0.0204, 0.0051, 0.0045, 0.0035, 0.0028], [0.9703, 0.0138, 0.0045, 0.0021, 0.0017, 0.0017, 0.0015, 0.0006], [0.6715, 0.103, 0.0909, 0.0625, 0.0429, 0.0109, 0.0051, 0.004], [0.4811, 0.3306, 0.0507, 0.0395, 0.0308, 0.0271, 0.0165, 0.0113]], "ranks": {"Rust": [24765, 60383, 49750, 14386, 2203, 10201, 18246, 8750, 28340, 16261, 7068, 11577, 4881, 3377, 6368, 3661, 3846, 15356, 15305, 20294, 21041, 25838, 18452, 10063, 3455, 3979, 2751, 4467, 4027, 4736, 5834, 7470, 8801, 19152, 15280, 7996, 2526, 3191, 6420, 25157, 23926, 22413, 29252, 47512, 35257, 18772, 11841, 10879, 6537, 6725, 8492, 7390, 12811, 20192, 31184, 17701, 11531, 8725, 6037, 4042, 1955, 1580, 959]}}, {"pos": 429, "top": [["s", " \u2013", "\u2013", ",", ".", " \u2013,", ";", " |\u2013"], ["s", " \u2013", " \u2013,", " \u2013**", " (\\", "\u2013", "@\",", "@@@@"], [" \u2013", "s", "\u2013", " \u2013,", ",", ".\u2013", "\u2013and", " |\u2013"], ["schrift", "\u4f46\u4e0d\u9650\u4e8e", " *\u00ab", " Shemale", "schriften", "\",@\"", "sait", "sium"], ["s", "schild", " (\\", "#\",", "*\".", "@@@@", "\u4f46\u4e0d\u9650\u4e8e", "\u4f17\u6240\u5468\u77e5"], ["s", " (\u2026)", " ().", ",", "schild", " (\\", "\\.", "@\","], ["s", "\\.", " (\u2026)", " (...)", "\u4f46\u4e0d\u9650\u4e8e", " ().", "schild", " (\u00ab"], ["s", "schild", "\\.", " *\u00ab", "\\\"\",", " ().", "\u4f46\u4e0d\u9650\u4e8e", "\u00b4s"], ["s", "\\.", " (\u2026)", "schild", " *\u00ab", "\\\"\",", " (...)", "*\"."], ["s", "\\.", " whilst", "schild", "Whilst", " *\u00ab", "\\\"\",", "\u4f46\u4e0d\u9650\u4e8e"], ["s", "\\.", " whilst", " (...)", " *\u00ab", " \u2013", " [...]", " (\\"], [" *\u00ab", "s", " whilst", " **\u00ab", "\u4f46\u4e0d\u9650\u4e8e", "Whilst", "schild", "\u8fc7\u7a0b\u5f53\u4e2d"], ["s", " *\u00ab", " **\u00ab", "schild", "\u4f46\u4e0d\u9650\u4e8e", " whilst", "\u4f17\u6240\u5468\u77e5", " (\u00ab"], ["s", " whilst", " entirety", "\u4e0d\u80fd\u591f", "\u662f\u5426\u80fd\u591f", " *\u00ab", "\u8fd8\u80fd\u591f", "\u8fc7\u7a0b\u5f53\u4e2d"], ["s", " utilizing", " entirety", "\u4e0d\u80fd\u591f", "\u662f\u5426\u80fd\u591f", " amongst", " whilst", "\u8fd8\u80fd\u591f"], ["s", " utilizing", " entirety", " amongst", " whilst", " utilized", "\u4e0d\u80fd\u591f", "\u671d\u8457"], ["s", " entirety", " \u2013", " whilst", " utilizing", "\u4e0d\u80fd\u591f", " truly", " amongst"], ["s", " entirety", "schild", " \u2013", " (\u00ab", " truly", "\u662f\u5426\u80fd\u591f", " whatsoever"], ["s", " entirety", "schrift", "schild", "\u6839\u672c\u65e0\u6cd5", " whatsoever", "\u7edd\u5bf9\u4e0d\u80fd", "\u518d\u8bf4\u4e86"], ["s", " entirety", " truly", " whatsoever", "schild", " entirely", " fully", " absolutely"], ["s", " entirety", " truly", " fully", " entirely", " uniquely", " genuinely", " perpet"], [" entirety", " truly", " whatsoever", "schrift", " entirely", " fully", "schild", "\u751a\u81f3\u4e8e"], [" entirety", " truly", " fully", " entirely", " perpet", " whatsoever", " solely", " absolutely"], [" fully", " truly", " entirely", " completely", "s", " entirety", " uniquely", " genuinely"], [" truly", " fully", " entirely", " entirety", " genuinely", " perpet", "s", " whatsoever"], [" truly", " fully", " entirely", " technological", " completely", " entirety", " absolutely", " perpet"], [" technological", " entirety", " entirely", " infrastructure", " truly", " perpet", " fully", " utilizing"], [" fully", " truly", " entirely", " technological", " uniquely", "\n\n", " \n\n", " perpet"], [" truly", " fully", " perpet", " technological", "s", " uniquely", " infrastructure", " entirely"], [" [...]", " infrastructure", " fully", " truly", " technological", "s", " technology", " perpet"], [" ...", " [...]", " \n\n", " (...)", " .", " fully", " truly", " ,"], [" ...", " [...]", " truly", " fully", " completely", " (...)", " massive", " extremely"], [" fully", " truly", " critical", " meticulously", " even", " massive", " massively", " extremely"], [" meticulously", " ANY", " infrastructure", " truly", " massively", " technological", " critical", " aggressively"], [" meticulously", " infrastructure", " technological", " critical", " massively", " truly", " aggressively", " technology"], [" technology", " meticulously", " infrastructure", " technological", " testing", " critical", " expensive", " technical"], [" expensive", " testing", " infrastructure", " meticulously", " traditional", " complexity", " technological", " technology"], [" expensive", " software", " meticulously", " complex", " computational", " testing", " infrastructure", " technology"], [" expensive", " reliance", " software", " testing", " relying", " computational", " complex", " hardware"], [" testing", " expensive", " reliance", " software", " relying", " hardware", " computational", " rely"], [" testing", " software", " hardware", " computational", " expensive", " reliance", " technology", " relying"], [" testing", " software", " hardware", " computational", " expensive", " reliance", " comput", " experimentation"], [" testing", " hardware", " expensive", " software", " computational", " machines", " tests", " simulation"], [" testing", " hardware", " expensive", " software", " computational", " tests", " training", " simulations"], [" testing", " expensive", " hardware", " reliance", " rely", " simulation", " tests", " simulations"], [" testing", " expensive", " reliance", " hardware", " rely", " relying", " simulations", " simulation"], [" testing", " reliance", " rely", " expensive", " relying", " hardware", " simulations", " relies"], [" testing", " rely", " reliance", " expensive", " relying", " relies", " reliant", " ANY"], [" reliance", " testing", " rely", " expensive", " relying", " reliant", " hardware", " debugging"], [" rely", " reliance", " testing", " relying", " reliant", "\u63d0\u4f9b\u4efb\u4f55", " expensive", " relies"], [" rely", " testing", " reliance", " relying", "\u4f9d\u8d56", " reliant", " relies", " debugging"], [" rely", "\u4f9d\u8d56", " reliance", " relying", " testing", " reliant", "Testing", " debugging"], [" rely", "\u4f9d\u8d56", " relying", " reliance", " testing", "\u4f9d\u9760", "\u4f9d\u8cf4", " relies"], [" rely", "\u4f9d\u8d56", " relying", " reliance", " relies", "\u4f9d\u8cf4", " testing", "\u4f9d\u9760"], [" rely", "\u4f9d\u8d56", " relying", " reliance", " reliably", " relied", "\u4f9d\u8cf4", " relies"], [" rely", "\u4f9d\u8d56", " relying", " debugging", " testing", " reliably", " reliance", "\u4f9d\u8cf4"], [" rely", "\u4f9d\u8d56", " relying", " reliance", "\u4f9d\u8cf4", " relied", " relies", "\u4f9d\u9760"], [" rely", "\u4f9d\u8d56", " relying", " reliance", " relied", " relies", "\u4f9d\u8cf4", " reliably"], [" rely", " relying", "\u4f9d\u8d56", " reliance", " relied", " relies", " afford", " easily"], [" rely", " relying", " afford", " easily", " reliance", " compile", " relied", " relies"], [" rely", " afford", " compile", " relying", " easily", " cross", " reliably", " relied"], [" rely", " compile", " afford", " easily", " cross", " spin", " relying", " reliably"], [" rely", " compile", " afford", " easily", " cross", " simulate", " debug", " spin"]], "p": [[0.7919, 0.1767, 0.0164, 0.0069, 0.006, 0.0002, 0.0002, 0.0002], [0.9186, 0.0404, 0.0075, 0.0038, 0.0027, 0.0026, 0.0026, 0.0019], [0.3478, 0.3478, 0.2109, 0.0367, 0.0144, 0.0082, 0.0041, 0.0027], [0.05, 0.0389, 0.0285, 0.0119, 0.0105, 0.0092, 0.0077, 0.0072], [0.9961, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9851, 0.0012, 0.0007, 0.0005, 0.0004, 0.0004, 0.0003, 0.0002], [0.9819, 0.0023, 0.0021, 0.001, 0.0007, 0.0007, 0.0007, 0.0005], [0.7001, 0.0308, 0.0225, 0.0175, 0.0106, 0.0057, 0.0053, 0.0047], [0.4095, 0.0758, 0.0459, 0.0405, 0.0358, 0.0358, 0.0217, 0.0149], [0.1986, 0.1063, 0.0223, 0.0163, 0.0144, 0.0077, 0.0068, 0.0068], [0.7313, 0.068, 0.0118, 0.0104, 0.0098, 0.0092, 0.0059, 0.0046], [0.1929, 0.117, 0.038, 0.0335, 0.0216, 0.0149, 0.014, 0.0075], [0.2024, 0.1307, 0.0452, 0.02, 0.0166, 0.0114, 0.0089, 0.0048], [0.1403, 0.0178, 0.0168, 0.0115, 0.0102, 0.0095, 0.0079, 0.0062], [0.0769, 0.0363, 0.0341, 0.0183, 0.0172, 0.0111, 0.0104, 0.0081], [0.1096, 0.0551, 0.023, 0.0216, 0.0179, 0.0123, 0.0115, 0.009], [0.3974, 0.0393, 0.0211, 0.0082, 0.0068, 0.006, 0.0057, 0.0044], [0.1144, 0.0272, 0.0121, 0.0054, 0.0044, 0.0042, 0.0039, 0.0037], [0.0231, 0.0192, 0.0149, 0.0132, 0.0066, 0.0055, 0.0055, 0.0052], [0.0409, 0.0361, 0.0319, 0.0219, 0.0097, 0.0076, 0.0067, 0.0067], [0.0563, 0.0387, 0.0302, 0.0152, 0.0118, 0.0111, 0.0086, 0.0081], [0.0155, 0.0078, 0.0054, 0.0047, 0.0044, 0.0037, 0.0035, 0.0031], [0.031, 0.0227, 0.02, 0.0146, 0.0083, 0.0069, 0.0065, 0.0057], [0.0511, 0.0398, 0.0227, 0.0107, 0.0095, 0.0095, 0.0083, 0.0078], [0.041, 0.0249, 0.0194, 0.0194, 0.0133, 0.0104, 0.0097, 0.0091], [0.0232, 0.0132, 0.0132, 0.0132, 0.011, 0.008, 0.0059, 0.0052], [0.0165, 0.0083, 0.0073, 0.0065, 0.0061, 0.005, 0.005, 0.0042], [0.022, 0.0206, 0.011, 0.0076, 0.0071, 0.0067, 0.0063, 0.0056], [0.0164, 0.0136, 0.0088, 0.0083, 0.0069, 0.0069, 0.0069, 0.0069], [0.0147, 0.0138, 0.0095, 0.0095, 0.0095, 0.0089, 0.0079, 0.0069], [0.1392, 0.0956, 0.0242, 0.0188, 0.0122, 0.0089, 0.0069, 0.0065], [0.0455, 0.0455, 0.0178, 0.0157, 0.013, 0.0095, 0.0084, 0.0084], [0.0217, 0.0204, 0.0103, 0.0103, 0.0091, 0.0085, 0.0075, 0.0071], [0.0257, 0.0213, 0.0213, 0.0177, 0.0114, 0.0114, 0.0095, 0.0089], [0.0341, 0.0265, 0.0142, 0.0133, 0.0118, 0.0118, 0.0111, 0.0098], [0.0279, 0.0231, 0.0217, 0.0217, 0.0217, 0.018, 0.0159, 0.014], [0.1223, 0.02, 0.0176, 0.0166, 0.0146, 0.0094, 0.0089, 0.0089], [0.2452, 0.0243, 0.0167, 0.0138, 0.0138, 0.0138, 0.013, 0.0122], [0.1862, 0.039, 0.0367, 0.0344, 0.0237, 0.0222, 0.0222, 0.0196], [0.2185, 0.097, 0.0626, 0.0404, 0.0335, 0.0335, 0.0296, 0.0261], [0.2986, 0.141, 0.0755, 0.0666, 0.043, 0.023, 0.0191, 0.0158], [0.3923, 0.1124, 0.1124, 0.0992, 0.0322, 0.0143, 0.0134, 0.0105], [0.4104, 0.1332, 0.0808, 0.0555, 0.0433, 0.0109, 0.0097, 0.0085], [0.5501, 0.1083, 0.0844, 0.0257, 0.0188, 0.0129, 0.0122, 0.0095], [0.59, 0.1162, 0.0294, 0.0229, 0.0202, 0.0139, 0.013, 0.013], [0.5637, 0.0463, 0.0408, 0.0318, 0.0281, 0.0248, 0.0193, 0.017], [0.3935, 0.1128, 0.0995, 0.0533, 0.047, 0.0236, 0.0127, 0.0105], [0.3934, 0.1447, 0.1277, 0.0532, 0.0532, 0.0126, 0.0119, 0.0093], [0.2423, 0.2139, 0.1666, 0.0477, 0.0477, 0.0199, 0.0165, 0.0155], [0.172, 0.172, 0.1518, 0.0594, 0.0408, 0.0299, 0.0219, 0.0181], [0.2245, 0.0879, 0.0879, 0.0533, 0.0344, 0.0323, 0.0209, 0.0209], [0.3845, 0.1816, 0.1101, 0.0858, 0.0459, 0.0169, 0.0169, 0.0169], [0.4135, 0.2508, 0.1343, 0.0814, 0.0206, 0.0182, 0.0125, 0.011], [0.6409, 0.162, 0.0867, 0.0319, 0.0104, 0.0081, 0.0071, 0.0063], [0.6182, 0.2274, 0.0837, 0.0187, 0.0078, 0.0078, 0.0053, 0.0053], [0.7, 0.1562, 0.0395, 0.01, 0.0088, 0.0088, 0.0088, 0.0078], [0.7738, 0.1727, 0.0182, 0.0097, 0.0076, 0.0076, 0.0028, 0.0022], [0.9418, 0.0284, 0.0134, 0.0044, 0.0038, 0.0021, 0.0016, 0.0009], [0.9493, 0.0174, 0.012, 0.0039, 0.003, 0.003, 0.0016, 0.0013], [0.9754, 0.0074, 0.0051, 0.0019, 0.0015, 0.0013, 0.0013, 0.0011], [0.9634, 0.0094, 0.0057, 0.0051, 0.0051, 0.0021, 0.0014, 0.0014], [0.9081, 0.0399, 0.0214, 0.0069, 0.0054, 0.0016, 0.0015, 0.0014], [0.4898, 0.2622, 0.0663, 0.0215, 0.0178, 0.0115, 0.0108, 0.0095]], "ranks": {"Rust": [66599, 129073, 94993, 22024, 10567, 21462, 23236, 32364, 29479, 39368, 61059, 53826, 54307, 55888, 102344, 83007, 99912, 123423, 157569, 118550, 126017, 148107, 110818, 50296, 32282, 39622, 40412, 31324, 24353, 21584, 22712, 24215, 25707, 33565, 29793, 20362, 12492, 11579, 17059, 19621, 27820, 40102, 35160, 55238, 56418, 33769, 26543, 27342, 28510, 46496, 81644, 75188, 72141, 21665, 11045, 8289, 2352, 1055, 1066, 815, 393, 376, 252]}}, {"pos": 430, "top": [[",", ".", "\u00a0", ";", "\u2013", "s", "\u2026", " \u2013"], [",", "s", "\u2013", ";", "\\.", "\u2011", "\u2013and", "\u2014"], [",", "\u2013", ".", ";", "\u2026", "\u2013and", "[", ".\u2013"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " milfs", " Blowjob", " pornstar", " ;;^", " \u0641\u0631\u0647\u0646", "\uc3df"], ["@\\", "s", "@", "-\\", ".@", "\\$", ">$", "->"], ["\ud83d\ude42", "-\\", ",", " \u200b\u200b", "s", "@", "\ud83d\ude09", "."], ["s", "|-", "\u501a", "\u0219te", "sos", "|$", "sii", "@\\"], ["rance", "siasi", "\u4e8e\u4e00", "\u4e8e\u6b64", "|-", "-focused", "_->", "|RF"], ["\u00a0", ".&", "\\.", ".", "|.", "&nbsp", ".|", "&"], [",", "\u00a0", ";", "\u2013", "\u2014", "\\.", "\\", "s"], [",", "\u00a0", ";", ".", "\u2014", "\u2013", "-", "&"], [" trustworthy", "s", "-focused", "\u00a0", " $\\", " strategies", " trust", " steadfast"], [" trustworthy", "s", "-focused", " strategies", " trust", " steadfast", " solely", " sophisticated"], [" trustworthy", "-focused", ",", " strategies", "s", "\u2014or", " steadfast", " trust"], ["s", " truly", " strategically", "\u2014", " ", " solely", ",", " strategies"], ["s", " truly", " effortlessly", " strategically", " trustworthy", " key", " ample", " countless"], ["s", "\u00a0", ",", " trustworthy", " solely", " truly", " steadfast", " sophisticated"], [" trustworthy", "\u2014or", "s", " sophisticated", " truly", " steadfast", " strategies", " solely"], ["\u2014or", " trustworthy", "s", " solely", " steadfast", " faithful", " trust", " upfront"], ["\u2014or", "s", " solely", " steadfast", " truly", " heavily", " purely", "\u2014even"], ["\u2014or", "s", " solely", " heavily", " genuinely", " truly", " steadfast", "\u2014and"], [" ;;^", "|RF", " trustworthy", "\u3063\u3071", " St\u00e9ph", " solely", " trust", " impeccable"], [" solely", " trust", " purely", " trustworthy", "\u3063\u3071", " reliance", " trusting", " truly"], [" heavily", " purely", " solely", " truly", " genuinely", " merely", " largely", " strong"], [" heavily", " genuinely", " purely", " solely", "\u2014or", " truly", " reliance", " steadfast"], [" reliance", " infrastructure", " heavily", " technologies", " systems", " mechanisms", " expertise", " relying"], [" infrastructure", " reliance", " heavily", " relying", " systems", " technologies", " expertise", " mechanisms"], [" heavily", " reliance", " infrastructure", " traditional", " systems", " truly", " relying", " arguably"], [" reliance", " infrastructure", " heavily", " systems", " relying", " traditional", " mechanisms", " technologies"], [" infrastructure", " reliance", " systems", " traditional", " relying", " heavily", " technologies", " mechanisms"], [" systems", " infrastructure", " traditional", " **", " heavily", " reliance", " critical", " ..."], [" systems", " **", " traditional", " heavily", " infrastructure", " ...", " critical", " heavy"], [" traditional", " heavily", " reliance", " infrastructure", " critical", " systems", " heavy", " relying"], [" infrastructure", " reliance", " traditional", " heavily", " tech", " logistical", " systems", " technologies"], [" reliance", " traditional", " infrastructure", " heavily", " tech", " logistical", " relying", " critical"], [" traditional", " reliance", " tech", " infrastructure", " technologies", " technology", " tools", " sophisticated"], [" reliance", " traditional", " relying", " infrastructure", " rely", " dependencies", " traditionally", " tech"], [" reliance", " traditional", " relying", " infrastructure", " tools", " tech", " sophisticated", " software"], [" reliance", " relying", " rely", " traditional", " tools", " dependencies", " sophisticated", " infrastructure"], [" reliance", " relying", " rely", " software", " traditional", "\u4f9d\u8d56", " sophisticated", " dependencies"], [" reliance", " software", " relying", " rely", " hardware", " tech", " technologies", " technology"], [" reliance", " software", " relying", " hardware", " tools", " rely", " technologies", "\u4f9d\u8d56"], [" reliance", " hardware", " software", " tools", " relying", " technologies", " libraries", " proprietary"], [" reliance", " hardware", " software", " relying", " tools", "\u4f9d\u8d56", " technologies", " rely"], [" reliance", " relying", " rely", "\u4f9d\u8d56", " hardware", " dependencies", " software", " tools"], [" reliance", " relying", " rely", "\u4f9d\u8d56", " tools", " hardware", " software", " dependencies"], [" reliance", " rely", " relying", "\u4f9d\u8d56", " hardware", " tools", " reliant", " dependencies"], [" reliance", " rely", " relying", "\u4f9d\u8d56", " traditional", " expensive", " sophisticated", " reliant"], [" reliance", " rely", " sophisticated", " relying", "\u4f9d\u8d56", " expensive", " traditional", " hardware"], [" reliance", "-heavy", " sophisticated", " expensive", " rely", "\u4f9d\u8d56", " relying", " reliant"], ["-heavy", " reliance", "\u4f9d\u8d56", " expensive", " hardware", " sophisticated", " shortcuts", "-standard"], ["\u4f9d\u8d56", " heavyweight", "-heavy", " expensive", " debugging", " automated", " hardware", " sophisticated"], [" heavyweight", " expensive", "-heavy", " sophisticated", " heavy", "\u4f9d\u8d56", " caching", " hardware"], [" heavyweight", " expensive", " debugging", " heavy", "-heavy", " GPU", " hardware", " sophisticated"], [" heavyweight", " expensive", " runtime", "\u672c\u5730", " GPU", " sophisticated", " debugging", "-heavy"], [" expensive", "\u6602\u8d35\u7684", "\u6602\u8d35", " costly", " pricey", " heavyweight", " GPU", " Docker"], [" expensive", " Docker", " heavyweight", " heavy", "\u6602\u8d35\u7684", " docker", "\u6602\u8d35", " costly"], [" expensive", " costly", " heavyweight", "\u6602\u8d35", " macOS", "\u6602\u8d35\u7684", " Docker", " heavy"], [" expensive", " macOS", " Docker", " docker", " heavyweight", " native", " GPU", " heavy"], [" heavy", " expensive", " heavyweight", " macOS", " native", " cross", " GPU", " Docker"], [" expensive", " cross", " heavy", " macOS", " heavyweight", " native", " Docker", " Cross"], [" expensive", " cross", " macOS", " on", " heavy", " heavyweight", " native", " host"], [" on", " macOS", " cross", " expensive", " heavy", " native", " heavyweight", " CI"]], "p": [[0.5639, 0.3876, 0.015, 0.0133, 0.0103, 0.0018, 0.0012, 0.0005], [0.0396, 0.035, 0.0309, 0.0187, 0.0121, 0.0047, 0.0044, 0.0039], [0.5458, 0.3751, 0.0575, 0.01, 0.0024, 0.0014, 0.0009, 0.0006], [0.1103, 0.004, 0.0038, 0.0035, 0.0035, 0.0033, 0.0029, 0.0026], [0.0206, 0.0125, 0.011, 0.0103, 0.0097, 0.008, 0.0067, 0.0055], [0.0083, 0.0073, 0.0073, 0.0073, 0.0069, 0.005, 0.0047, 0.0031], [0.0126, 0.0072, 0.0041, 0.0036, 0.0032, 0.0032, 0.0026, 0.0026], [0.0081, 0.0056, 0.0043, 0.0034, 0.0032, 0.0028, 0.0028, 0.0028], [0.0297, 0.0192, 0.018, 0.014, 0.0109, 0.0109, 0.0096, 0.0091], [0.4725, 0.1054, 0.0208, 0.0126, 0.0098, 0.0087, 0.0063, 0.0056], [0.5165, 0.2597, 0.0177, 0.0177, 0.0138, 0.0121, 0.0095, 0.0083], [0.0134, 0.0111, 0.0092, 0.0059, 0.0049, 0.0049, 0.0046, 0.0041], [0.0179, 0.0102, 0.0066, 0.0058, 0.0051, 0.0038, 0.0029, 0.0029], [0.0091, 0.0062, 0.0058, 0.0052, 0.0046, 0.004, 0.0038, 0.0035], [0.0053, 0.0053, 0.0049, 0.0049, 0.0046, 0.0046, 0.0044, 0.0038], [0.0103, 0.0067, 0.0052, 0.0043, 0.004, 0.0036, 0.0033, 0.0033], [0.0484, 0.0084, 0.0079, 0.0058, 0.0058, 0.0054, 0.0035, 0.0033], [0.0066, 0.0035, 0.0031, 0.0028, 0.0026, 0.0024, 0.0024, 0.0023], [0.0109, 0.008, 0.008, 0.0058, 0.0051, 0.0035, 0.0035, 0.0028], [0.0169, 0.0075, 0.0058, 0.0055, 0.0055, 0.0048, 0.0045, 0.0043], [0.0077, 0.0068, 0.0041, 0.0038, 0.0036, 0.0034, 0.0032, 0.0028], [0.0042, 0.0032, 0.0024, 0.002, 0.0017, 0.0017, 0.0014, 0.0013], [0.0076, 0.0049, 0.0046, 0.0046, 0.0036, 0.0036, 0.0034, 0.0032], [0.0073, 0.0073, 0.0065, 0.0054, 0.0044, 0.0044, 0.0035, 0.0035], [0.0095, 0.0061, 0.0054, 0.0051, 0.0042, 0.004, 0.0035, 0.0029], [0.0086, 0.0086, 0.0049, 0.0043, 0.0036, 0.0036, 0.0034, 0.0034], [0.009, 0.008, 0.004, 0.0035, 0.0033, 0.0029, 0.0024, 0.0024], [0.0168, 0.0062, 0.0055, 0.0042, 0.004, 0.0033, 0.0033, 0.0027], [0.0188, 0.0188, 0.0114, 0.0083, 0.0074, 0.0051, 0.0048, 0.0037], [0.0434, 0.0218, 0.016, 0.0103, 0.0085, 0.008, 0.0071, 0.0067], [0.0251, 0.0236, 0.0135, 0.0135, 0.0126, 0.0112, 0.0105, 0.0082], [0.0215, 0.0202, 0.0202, 0.0202, 0.0202, 0.0139, 0.0115, 0.0095], [0.0312, 0.0293, 0.0215, 0.0202, 0.013, 0.0108, 0.0095, 0.0084], [0.0504, 0.0306, 0.0287, 0.0224, 0.0112, 0.0093, 0.0088, 0.0077], [0.0606, 0.0569, 0.0391, 0.0174, 0.0163, 0.0135, 0.0093, 0.0093], [0.114, 0.0538, 0.0446, 0.0327, 0.0239, 0.0198, 0.012, 0.0106], [0.2045, 0.1095, 0.0517, 0.026, 0.0158, 0.0131, 0.0115, 0.0108], [0.1694, 0.0706, 0.0485, 0.0378, 0.026, 0.0179, 0.0168, 0.0168], [0.586, 0.1902, 0.0352, 0.0107, 0.0084, 0.0079, 0.0061, 0.0061], [0.4789, 0.1211, 0.0369, 0.0238, 0.021, 0.0164, 0.0154, 0.0145], [0.3696, 0.1541, 0.0825, 0.0344, 0.0323, 0.0303, 0.0303, 0.0209], [0.2999, 0.1819, 0.0859, 0.0669, 0.0521, 0.0262, 0.0262, 0.0204], [0.1623, 0.1264, 0.1115, 0.0869, 0.0561, 0.0385, 0.0206, 0.0171], [0.2094, 0.1439, 0.0873, 0.0529, 0.0467, 0.0467, 0.0302, 0.0302], [0.4251, 0.0652, 0.0652, 0.0652, 0.0395, 0.0349, 0.0328, 0.0255], [0.4037, 0.1021, 0.0619, 0.0546, 0.0353, 0.0331, 0.0292, 0.0228], [0.5152, 0.0895, 0.079, 0.0241, 0.0213, 0.0137, 0.0137, 0.0129], [0.3912, 0.0989, 0.06, 0.0529, 0.0321, 0.0235, 0.0221, 0.0195], [0.4327, 0.055, 0.0428, 0.0378, 0.026, 0.0244, 0.0215, 0.0202], [0.1417, 0.0591, 0.0358, 0.0358, 0.0297, 0.0297, 0.018, 0.0169], [0.0304, 0.0252, 0.0236, 0.0184, 0.0143, 0.0112, 0.0087, 0.0082], [0.0514, 0.0401, 0.0259, 0.0243, 0.0228, 0.0147, 0.0147, 0.013], [0.1321, 0.0753, 0.0456, 0.0295, 0.0216, 0.0179, 0.0158, 0.0148], [0.1945, 0.0492, 0.0263, 0.0247, 0.0247, 0.0218, 0.0193, 0.016], [0.1079, 0.0578, 0.0423, 0.0241, 0.02, 0.0188, 0.0166, 0.0146], [0.8057, 0.0354, 0.0312, 0.0312, 0.0243, 0.0101, 0.004, 0.0033], [0.4489, 0.0688, 0.0688, 0.0368, 0.0325, 0.0287, 0.0253, 0.021], [0.7489, 0.029, 0.0256, 0.0226, 0.0176, 0.0176, 0.0176, 0.0137], [0.3662, 0.2221, 0.0817, 0.0386, 0.0265, 0.0207, 0.0151, 0.0142], [0.2967, 0.2618, 0.1401, 0.085, 0.0215, 0.0167, 0.0122, 0.0108], [0.3345, 0.1791, 0.0958, 0.0619, 0.0581, 0.0242, 0.0189, 0.0167], [0.2522, 0.1119, 0.1051, 0.0988, 0.0723, 0.0563, 0.0321, 0.0134], [0.4489, 0.0733, 0.0392, 0.0368, 0.0325, 0.0238, 0.021, 0.0163]], "ranks": {"Rust": [37842, 70182, 23190, 20009, 6171, 3713, 7842, 8386, 11708, 6257, 4789, 2536, 2928, 4603, 8764, 8302, 7678, 9720, 6821, 10868, 16922, 19894, 14046, 8489, 6189, 5678, 6718, 5524, 4664, 6276, 6955, 6570, 8892, 11331, 7066, 3069, 1689, 2260, 4164, 4601, 4761, 6221, 6328, 6452, 14650, 10136, 10449, 10927, 8216, 14250, 24780, 32591, 3771, 794, 913, 1140, 81, 48, 58, 106, 62, 74, 54]}}, {"pos": 431, "top": [[".", ",", ";", "\u2013", "\u2026..", ":", " \u2013", "?"], [",", ".", "\u2013", " \u2013", ";", ":", "\u2013and", " very"], [",", ".", "\u2013", ";", "\u2026..", " \u2013", ":", ",."], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Geile", " milfs", " Shemale", " Blowjob", " \u041a\u0440\u0430\u0441\u0438", " addir", " Bbw"], [",", ".", ".@", " \u200b\u200b", ":-", " (@", ":@", ":"], [",", " \u200b\u200b", ".", ":-", ":", ".-", ".@", "-a"], [":-", ".\u00bb", "sson", "able", " \u00a0", ".", "the", " @"], [":-", " @", "sson", ".@", ":@", "able", ".-", ",@"], [".", ",", ":", ".\u00bb", "!", ",.", ":-", " @"], [",", ".", ";", ":", "-", "-but", "the", "-or"], [",", ".", " ", "-", "the", ";", "@", " @"], [" @", " \"", "-or", "-but", " free", " stuff", "sson", " junk"], ["-or", " \"", " back", " pre", " free", " super", " the", " big"], [" \"", " back", "-or", ",", " super", "-but", " social", " big"], [" \"", " ", " New", " the", " all", "-or", " back", " just"], [" \"", " folks", " going", " plenty", " just", " back", " getting", " big"], [" \"", ",", " just", " getting", " big", " going", " much", " back"], [" big", " traditional", " getting", " savvy", " New", " going", " huge", "-or"], [" \"", " savvy", " traditional", " big", " heavily", " tools", " New", "-or"], [" big", " heavily", " much", " myriad", " traditional", " huge", " American", " super"], ["<|endoftext|>", " \"", " myriad", " much", "\n\n", "  \n\n", " vastly", " heavily"], [" ``", " ;;^", " {{--<", " ''", " American", " commercial", " traditional", " computers"], [" ``", " ''", " {{--<", " heavily", " commercial", " much", " traditional", " modern"], [" ``", " much", " {{--<", " heavily", " ''", " traditional", " modern", " commercial"], [" {{--<", " ``", " hardware", " heavily", " technologies", " computers", " vastly", " much"], [" hardware", " technologies", " technology", " computers", " tech", " gaming", " software", " electronics"], [" hardware", " technologies", " technology", " computers", " gaming", " tech", " computer", " software"], [" hardware", " technology", " technologies", " tech", " computers", " computer", " software", " ``"], [" hardware", " technologies", " technology", " tech", " computers", " software", " Windows", " infrastructure"], [" technology", " technologies", " hardware", " tech", " infrastructure", " software", " computers", " Windows"], [" technology", " technologies", " ...\\", " ...", " hardware", " tech", " infrastructure", " software"], [" ...", " ...\\", " technology", " technologies", " ......", " hardware", " tech", "...\\"], [" technology", " ...\\", " technologies", " tech", " hardware", " \\\"", " systems", " modern"], [" technology", " technologies", " tech", " hardware", " digital", " software", " infrastructure", " tools"], [" technologies", " technology", " tech", " hardware", " infrastructure", " tools", " digital", " software"], [" hardware", " Windows", " technologies", " technology", " software", " tech", " European", " macOS"], [" hardware", " Windows", " macOS", " technologies", " Hardware", " Linux", " software", " Unix"], [" Windows", " hardware", " software", " macOS", " Linux", " Hardware", " Unix", " tools"], [" hardware", " Windows", " macOS", " software", " Hardware", " Linux", " Microsoft", "Windows"], [" hardware", " Windows", " Hardware", " macOS", " software", " NVIDIA", "hardware", " Microsoft"], [" Windows", " hardware", " software", "Windows", " macOS", " Hardware", " testing", " NVIDIA"], [" Windows", " hardware", " software", " macOS", "Windows", " testing", " GPU", " Hardware"], [" hardware", " Windows", " testing", " software", " Hardware", " macOS", " simulations", " desktop"], [" hardware", " Windows", " testing", " software", " Hardware", " simulations", " desktop", " simulation"], [" hardware", " testing", " Windows", " software", " simulations", " simulation", " Hardware", " tools"], [" hardware", " testing", " simulations", " Windows", " simulation", " software", " tests", " tools"], [" hardware", " testing", " simulations", " Windows", " software", " simulation", " tests", " Hardware"], [" hardware", " testing", " simulations", " Windows", " tests", " simulation", " Hardware", " labs"], [" hardware", " testing", " simulations", " Windows", " GPUs", " tests", " simulation", " libraries"], [" hardware", " testing", " simulations", " expensive", " Windows", " GPUs", "hardware", " Hardware"], [" hardware", " expensive", " simulations", " automated", "hardware", " GPUs", " testing", " debugging"], [" hardware", " automated", " expensive", " Windows", " desktop", " GPU", "hardware", " GPUs"], [" expensive", " hardware", " macOS", " Windows", " proprietary", " automated", " costly", " GPU"], [" expensive", " hardware", " macOS", " GPU", " automated", " heavyweight", " desktop", " GPUs"], [" expensive", " macOS", " sophisticated", " automated", "\u672c\u5730", " GPU", " local", " Docker"], [" expensive", " costly", "\u6602\u8d35\u7684", " pricey", "\u6602\u8d35", " GPU", " GPUs", " macOS"], [" expensive", " GPU", " costly", "\u6602\u8d35\u7684", " macOS", " Docker", " proprietary", "\u6602\u8d35"], [" expensive", " costly", " macOS", "\u6602\u8d35\u7684", " GPU", "\u6602\u8d35", " pricey", " Docker"], [" macOS", " expensive", " Docker", " GPU", " MacOS", " desktop", " docker", " costly"], [" expensive", " macOS", " GPU", " native", " desktop", " hardware", " MacOS", " cross"], [" expensive", " cross", " macOS", " GPU", " costly", " native", " heavy", " heavyweight"], [" expensive", " macOS", " cross", " native", " heavy", " heavyweight", " proprietary", " costly"], [" macOS", " expensive", " cross", " native", " heavy", " GPU", " heavyweight", " Docker"]], "p": [[0.5848, 0.4019, 0.0039, 0.0016, 0.0014, 0.0011, 0.0007, 0.0005], [0.1144, 0.0477, 0.0199, 0.0155, 0.0128, 0.0037, 0.0032, 0.0032], [0.7549, 0.2163, 0.0084, 0.007, 0.0014, 0.001, 0.0008, 0.0007], [0.0111, 0.0104, 0.0098, 0.0086, 0.0067, 0.0041, 0.0041, 0.0034], [0.0424, 0.031, 0.0146, 0.0129, 0.0101, 0.0065, 0.0054, 0.0054], [0.0252, 0.0222, 0.0184, 0.0173, 0.0068, 0.003, 0.0021, 0.0021], [0.0386, 0.0142, 0.0142, 0.0086, 0.0086, 0.0086, 0.0076, 0.0071], [0.0406, 0.0359, 0.0109, 0.0071, 0.0062, 0.0059, 0.004, 0.0035], [0.3313, 0.1381, 0.0308, 0.0106, 0.0088, 0.0069, 0.0057, 0.0054], [0.7344, 0.0082, 0.0068, 0.0056, 0.003, 0.0028, 0.0026, 0.0015], [0.6657, 0.0331, 0.0214, 0.0201, 0.0157, 0.0079, 0.0069, 0.0058], [0.008, 0.0059, 0.0055, 0.0052, 0.0036, 0.0024, 0.0023, 0.002], [0.0063, 0.0043, 0.0034, 0.0034, 0.0025, 0.0023, 0.0023, 0.002], [0.0045, 0.0039, 0.0039, 0.0027, 0.0027, 0.0024, 0.0021, 0.0021], [0.0166, 0.0089, 0.0051, 0.0042, 0.0042, 0.0039, 0.0035, 0.0035], [0.009, 0.0051, 0.0048, 0.0045, 0.0045, 0.004, 0.004, 0.004], [0.0218, 0.0075, 0.0049, 0.004, 0.004, 0.0038, 0.0033, 0.0033], [0.0043, 0.0031, 0.0026, 0.0025, 0.0019, 0.0018, 0.0018, 0.0017], [0.0036, 0.0032, 0.003, 0.0028, 0.0019, 0.0018, 0.0017, 0.0016], [0.0025, 0.0021, 0.0021, 0.002, 0.0019, 0.0015, 0.0015, 0.0013], [0.0335, 0.0051, 0.0043, 0.004, 0.0031, 0.0031, 0.0027, 0.0024], [0.0561, 0.0052, 0.0043, 0.0025, 0.0014, 0.0012, 0.001, 0.001], [0.2753, 0.0083, 0.0073, 0.0022, 0.0022, 0.0017, 0.0017, 0.0017], [0.0255, 0.0061, 0.005, 0.0039, 0.0025, 0.0021, 0.002, 0.0018], [0.0116, 0.0116, 0.0046, 0.0029, 0.0028, 0.0028, 0.0024, 0.002], [0.0833, 0.037, 0.0254, 0.0224, 0.0175, 0.0136, 0.012, 0.0093], [0.0748, 0.0332, 0.0258, 0.0258, 0.0157, 0.0147, 0.0115, 0.0108], [0.0538, 0.0288, 0.0224, 0.0175, 0.0164, 0.0145, 0.0077, 0.0057], [0.166, 0.1072, 0.0835, 0.0476, 0.0145, 0.0145, 0.012, 0.0106], [0.1641, 0.1542, 0.1278, 0.0323, 0.0209, 0.0196, 0.0105, 0.0093], [0.17, 0.1031, 0.0969, 0.0855, 0.0519, 0.0404, 0.0149, 0.0149], [0.2906, 0.2409, 0.0833, 0.027, 0.0136, 0.0136, 0.0128, 0.0073], [0.1254, 0.0461, 0.0433, 0.0338, 0.028, 0.0205, 0.017, 0.0141], [0.1519, 0.134, 0.0463, 0.0384, 0.0233, 0.0219, 0.016, 0.0133], [0.1028, 0.0966, 0.0624, 0.0334, 0.0277, 0.019, 0.0179, 0.0168], [0.1072, 0.0889, 0.0574, 0.037, 0.0255, 0.0239, 0.0225, 0.0186], [0.1555, 0.1372, 0.0609, 0.0347, 0.0254, 0.0254, 0.0254, 0.021], [0.1788, 0.1788, 0.1085, 0.0793, 0.0331, 0.0227, 0.0177, 0.0156], [0.3472, 0.2704, 0.0775, 0.047, 0.0303, 0.0236, 0.0126, 0.0119], [0.3608, 0.3184, 0.0405, 0.0357, 0.0231, 0.0191, 0.014, 0.0116], [0.3941, 0.2109, 0.0879, 0.0415, 0.0367, 0.0184, 0.0163, 0.0127], [0.3606, 0.2808, 0.0805, 0.0296, 0.0261, 0.0158, 0.014, 0.0131], [0.4042, 0.1909, 0.0796, 0.0426, 0.0243, 0.0157, 0.0138, 0.0138], [0.5004, 0.087, 0.0677, 0.0598, 0.0386, 0.022, 0.0111, 0.0098], [0.37, 0.1361, 0.0729, 0.0501, 0.047, 0.0268, 0.0209, 0.0143], [0.2985, 0.1598, 0.0855, 0.0487, 0.0379, 0.0379, 0.0245, 0.0179], [0.4103, 0.0916, 0.0759, 0.0382, 0.0382, 0.0246, 0.0231, 0.018], [0.3371, 0.1804, 0.0624, 0.0456, 0.0334, 0.0139, 0.0139, 0.0131], [0.4154, 0.0768, 0.0722, 0.0363, 0.0249, 0.0171, 0.0161, 0.0118], [0.4042, 0.0483, 0.0483, 0.0228, 0.0214, 0.0167, 0.0138, 0.0138], [0.1838, 0.0385, 0.034, 0.0265, 0.0265, 0.0161, 0.0117, 0.0097], [0.1837, 0.0676, 0.0635, 0.041, 0.034, 0.03, 0.0282, 0.0265], [0.2721, 0.078, 0.0253, 0.0223, 0.0223, 0.021, 0.0185, 0.0185], [0.2611, 0.1089, 0.0454, 0.04, 0.0259, 0.0243, 0.0228, 0.0189], [0.2343, 0.0761, 0.0383, 0.0383, 0.0359, 0.0338, 0.0263, 0.0218], [0.928, 0.0247, 0.017, 0.008, 0.008, 0.0033, 0.0011, 0.0011], [0.8153, 0.0358, 0.0279, 0.0192, 0.0149, 0.0149, 0.0091, 0.008], [0.937, 0.022, 0.0104, 0.0063, 0.0049, 0.0038, 0.0034, 0.0018], [0.5531, 0.3355, 0.0189, 0.0189, 0.0115, 0.0061, 0.0054, 0.0048], [0.5125, 0.3109, 0.0328, 0.0199, 0.0106, 0.0106, 0.0083, 0.0073], [0.7665, 0.0629, 0.0555, 0.0159, 0.0109, 0.0109, 0.0109, 0.0075], [0.7295, 0.0871, 0.0466, 0.025, 0.022, 0.0126, 0.0076, 0.0072], [0.3501, 0.1874, 0.1003, 0.0537, 0.0445, 0.027, 0.027, 0.0186]], "ranks": {"Rust": [34434, 58963, 49740, 95085, 11179, 6872, 12527, 7589, 10703, 5573, 5670, 3088, 2996, 3684, 8642, 4819, 6540, 8991, 6826, 11118, 12920, 5272, 4596, 7258, 4776, 7821, 12194, 6937, 4451, 7306, 8242, 9229, 6416, 5079, 3035, 1732, 663, 907, 2805, 6468, 12265, 14523, 18248, 25904, 29661, 20888, 14387, 15119, 15792, 21251, 54799, 17443, 6481, 1553, 2984, 2807, 378, 234, 236, 239, 145, 194, 105]}}, {"pos": 432, "top": [[",", " \u2013", ".", "\u2013", ";", "en", " ", "-"], [" \u2013", "\u2013", "\u2013and", " \u2013**", " *\u2013", "**\u2013", ".\u2013", " \u2013,"], ["\u2013", " \u2013", ".\u2013", ",", "\u2013and", "**\u2013", ".", " \u2013,"], [" milfs", " ;;^", " Shemale", "\u52a0\u62ff\u5927", " Nues", " Blowjob", " Guta", " Hidal"], ["@", " *@", "  ", ".@", "en", ":@", " TF", "*@"], ["\ufffd", "  ", " UTF", " TF", ":host", " **\u2013", "bios", " Indigenous"], [" *-", " **\u2018", " *_", "  \n\n\n", "   \n\n", " *\u201c", " *", "  \n\n"], [" *_", " *-", " *@", " **", " *", "-_", " **.", " *\\"], ["   \n\n", " *_", "  \n\n\n", "  \n\n", " *-", " *@", " *", "    \n\n"], ["/native", "-_", " NAT", "\\_", "-native", " Native", "   \n\n", "-*"], [" _", "-_", "-", "  \n\n", " iconic", " @", "i", "/native"], [" **", " _", " transformative", " *_", " iconic", " showcase", " *", " **+"], [" **", " _", " transformative", " iconic", " showcase", " core", " global", " hybrid"], [" transformative", " iconic", " showcase", " core", " global", " elite", " hybrid", " icons"], [" iconic", " transformative", " showcase", " sprawling", " core", " global", " locales", " host"], [" iconic", " sprawling", " host", " showcase", " transformative", " global", " core", " locales"], [" iconic", " showcase", " sprawling", " host", " transformative", " tech", " global", " myriad"], [" showcase", " iconic", " hubs", " sprawling", " transformative", " technologies", " tech", " hybrids"], [" iconic", " hubs", " sprawling", " Gabrie", " transformative", " showcase", " realms", " technologies"], [" sprawling", " NAT", " iconic", " host", " Native", " global", " myriad", " transformative"], [" \n\n", "  \n\n", "<|endoftext|>", "   \n\n", "\n\n", " ^", " \n\n\n", " host"], [" ;;^", " Gabrie", " **\u00ab", " **+", " **\u201e", " Nues", " Geile", " **^"], [" Native", " Indigenous", " iconic", " technologies", " indigenous", " NAT", " ``", " Gabrie"], [" European", " Native", " host", " native", " iconic", " foreign", " indigenous", " NAT"], [" Australian", " technologies", " Indigenous", " European", " Native", " ;;^", " T\u00e9cn", " locales"], [" **^", " **", " **+", " **\u00ab", " **\u201e", " technologies", " ;;^", " **:"], [" technologies", " hardware", " Unix", " electronics", " ;;^", " aerospace", " environments", " architectures"], [" **", " technologies", " hardware", " European", " locales", " tools", " tech", " native"], [" technologies", " hardware", " European", " tools", " tech", " technology", " locales", " Silicon"], [" technologies", " **+", " **", " workflows", " hardware", " toolkit", " **:", " APIs"], [" technologies", " **", " tools", " hardware", " **.", " workflows", " technology", " environments"], [" technologies", " **", " technology", " hardware", " European", " tools", " tech", " environments"], [" technologies", " **", " technology", " hardware", " tech", " tools", " hybrids", " environments"], [" technologies", " hardware", " tech", " workflows", " European", " tools", " technology", " environments"], [" technologies", " hardware", " tech", " tools", " workflows", " European", " **", " hybrids"], [" hardware", " technologies", " Native", " native", "\u672c\u571f", " workflows", " European", " tech"], [" hardware", " Native", " native", " technologies", " European", " architectures", " workflows", " tech"], [" hardware", " workflows", " Native", " tools", " macOS", " technologies", " Hardware", " native"], [" hardware", " Native", " native", " macOS", " workflows", " tools", "/native", " Unix"], [" hardware", " native", " Native", " Hardware", "hardware", "/native", "native", "Native"], [" hardware", " native", " Native", " software", " Hardware", " workflows", " technologies", "hardware"], [" hardware", " native", " Native", "-native", " Hardware", "Native", "/native", "native"], [" hardware", " native", " Native", "-native", " Hardware", "/native", "hardware", " technologies"], [" hardware", " native", " Hardware", " Native", "hardware", "-native", "/native", " technologies"], [" hardware", " native", " workflows", " Native", " Hardware", "-native", " tools", "hardware"], [" hardware", " native", " tools", " workflows", " kits", " Native", " APIs", " Hardware"], [" hardware", " native", " workflows", " kits", "-native", " technologies", " setups", " installations"], [" hardware", " native", " workflows", "-native", " kits", " APIs", " setups", " Native"], [" hardware", "-native", "hardware", " kits", " APIs", " native", "/native", " workflows"], [" hardware", "-native", "hardware", "/native", " kits", " workflows", " APIs", " Hardware"], [" hardware", "-native", "hardware", "/native", " workflows", "_Native", " testers", " native"], [" hardware", "-native", "hardware", " binaries", "/native", " workflows", " Hardware", " libraries"], [" hardware", "-native", " binaries", "hardware", "/native", " libraries", " macOS", " native"], [" binaries", " hardware", "-native", " libraries", " macOS", "hardware", "/native", " plugins"], [" binaries", " libraries", " macOS", " SDK", " plugins", "-native", " hardware", " Windows"], [" binaries", " Windows", " macOS", " libraries", " SDK", " MacOS", " compilers", " Android"], [" binaries", " libraries", " Windows", " macOS", " Android", " SDK", " Linux", " MacOS"], [" Android", " macOS", " binaries", " Windows", " SDK", " compiler", " compilation", " compilers"], [" macOS", " Android", " MacOS", " iOS", " binaries", "-android", " compiler", " Windows"], [" Android", " macOS", "-android", " iOS", " desktop", " mobile", "Android", " binaries"], [" Android", " mobile", " compilers", " macOS", " binaries", " iOS", " desktop", " cross"], [" Android", " macOS", " compilers", " mobile", " tool", " binaries", " Windows", " cross"], [" Android", " macOS", " mobile", " tool", " compilers", " cross", " Windows", " iOS"]], "p": [[0.3817, 0.2623, 0.1803, 0.1591, 0.0018, 0.0014, 0.0013, 0.0012], [0.5356, 0.4172, 0.0126, 0.0104, 0.0036, 0.0034, 0.0023, 0.0017], [0.9278, 0.0523, 0.0063, 0.0063, 0.0038, 0.001, 0.0008, 0.0004], [0.0385, 0.0097, 0.0086, 0.0076, 0.0067, 0.0067, 0.0063, 0.0063], [0.0248, 0.0181, 0.016, 0.011, 0.0067, 0.0067, 0.0067, 0.0063], [0.0083, 0.0083, 0.0035, 0.0035, 0.0029, 0.0029, 0.0025, 0.0024], [0.0837, 0.0328, 0.0225, 0.0187, 0.0175, 0.0175, 0.0165, 0.0128], [0.0882, 0.0779, 0.0253, 0.021, 0.0127, 0.0127, 0.0112, 0.0112], [0.1283, 0.0939, 0.0502, 0.0417, 0.0286, 0.0253, 0.0153, 0.0112], [0.0132, 0.0116, 0.0058, 0.0055, 0.0038, 0.0035, 0.0033, 0.0026], [0.0272, 0.0137, 0.0129, 0.0088, 0.0073, 0.005, 0.0047, 0.0044], [0.1625, 0.0411, 0.0151, 0.0142, 0.0125, 0.0118, 0.0081, 0.0076], [0.0601, 0.0266, 0.025, 0.0172, 0.0162, 0.0104, 0.0056, 0.0056], [0.0353, 0.0353, 0.0156, 0.0089, 0.0089, 0.0074, 0.0061, 0.0042], [0.0247, 0.011, 0.0097, 0.008, 0.0055, 0.0055, 0.0046, 0.0043], [0.0117, 0.011, 0.0097, 0.0085, 0.0055, 0.0046, 0.0043, 0.0038], [0.0166, 0.01, 0.0083, 0.0074, 0.0065, 0.0045, 0.0045, 0.0042], [0.0096, 0.008, 0.0075, 0.0055, 0.0051, 0.0051, 0.0048, 0.004], [0.0085, 0.0055, 0.0055, 0.0051, 0.0048, 0.0045, 0.0033, 0.0031], [0.0083, 0.0074, 0.0057, 0.0051, 0.0035, 0.0029, 0.0027, 0.0025], [0.1148, 0.1148, 0.0697, 0.0165, 0.0057, 0.0035, 0.0029, 0.0027], [0.0131, 0.0045, 0.004, 0.0038, 0.0033, 0.0026, 0.0026, 0.0024], [0.0071, 0.0052, 0.0036, 0.0036, 0.0032, 0.0028, 0.0028, 0.0026], [0.0062, 0.0051, 0.0048, 0.0028, 0.0023, 0.0023, 0.0023, 0.0021], [0.0052, 0.0041, 0.0041, 0.0036, 0.0034, 0.0032, 0.003, 0.0028], [0.0166, 0.0156, 0.0156, 0.0122, 0.0101, 0.0069, 0.0069, 0.0058], [0.0156, 0.0084, 0.0069, 0.0057, 0.0054, 0.0051, 0.0051, 0.0048], [0.0328, 0.0212, 0.0199, 0.0187, 0.0145, 0.0083, 0.005, 0.005], [0.0714, 0.0317, 0.018, 0.0124, 0.0109, 0.0103, 0.0097, 0.008], [0.0504, 0.0306, 0.0287, 0.027, 0.0164, 0.0136, 0.0136, 0.0112], [0.0647, 0.0647, 0.0238, 0.0224, 0.0174, 0.0174, 0.0174, 0.012], [0.064, 0.0498, 0.0364, 0.0172, 0.0162, 0.0162, 0.0152, 0.0118], [0.0716, 0.0524, 0.0263, 0.0232, 0.0218, 0.0193, 0.015, 0.015], [0.1157, 0.04, 0.0331, 0.0258, 0.0243, 0.0157, 0.0157, 0.0147], [0.1041, 0.0434, 0.036, 0.0193, 0.017, 0.016, 0.016, 0.015], [0.0811, 0.0434, 0.0383, 0.0247, 0.0218, 0.0218, 0.0218, 0.0141], [0.1701, 0.0519, 0.0487, 0.043, 0.0216, 0.0203, 0.0179, 0.014], [0.273, 0.027, 0.0254, 0.021, 0.021, 0.0174, 0.0154, 0.0154], [0.2667, 0.1183, 0.1112, 0.0299, 0.015, 0.0141, 0.0141, 0.011], [0.4506, 0.1005, 0.0945, 0.0164, 0.0145, 0.0145, 0.0145, 0.012], [0.5908, 0.0751, 0.0516, 0.026, 0.0157, 0.0123, 0.0108, 0.0102], [0.5751, 0.1454, 0.0882, 0.0163, 0.0135, 0.0119, 0.0105, 0.0099], [0.6846, 0.0926, 0.0438, 0.0194, 0.0194, 0.0142, 0.0081, 0.0063], [0.7595, 0.0378, 0.0313, 0.0244, 0.0096, 0.0096, 0.0074, 0.0062], [0.6679, 0.0484, 0.0215, 0.0148, 0.0148, 0.0108, 0.0095, 0.0079], [0.6342, 0.0489, 0.0159, 0.014, 0.0116, 0.0096, 0.009, 0.0085], [0.663, 0.031, 0.0257, 0.0114, 0.0107, 0.0095, 0.0089, 0.0078], [0.6052, 0.0341, 0.0235, 0.0207, 0.0172, 0.0118, 0.0111, 0.0111], [0.6237, 0.0375, 0.0188, 0.0166, 0.0147, 0.0147, 0.0138, 0.0101], [0.5305, 0.0634, 0.0361, 0.0248, 0.0193, 0.015, 0.0133, 0.0117], [0.3182, 0.2054, 0.0589, 0.038, 0.0149, 0.0123, 0.009, 0.0085], [0.4614, 0.1166, 0.0908, 0.023, 0.023, 0.0148, 0.0139, 0.0115], [0.2327, 0.2327, 0.1099, 0.0431, 0.0261, 0.0261, 0.0179, 0.009], [0.3158, 0.169, 0.1162, 0.0622, 0.0276, 0.0259, 0.0215, 0.0167], [0.6976, 0.0446, 0.0347, 0.0347, 0.0164, 0.0093, 0.0057, 0.0053], [0.696, 0.0445, 0.0445, 0.0393, 0.0164, 0.0144, 0.0127, 0.0127], [0.5309, 0.0814, 0.0634, 0.0634, 0.056, 0.0385, 0.016, 0.0141], [0.2186, 0.1502, 0.1502, 0.117, 0.0488, 0.038, 0.0296, 0.0261], [0.6329, 0.0857, 0.0357, 0.0357, 0.0217, 0.0149, 0.0149, 0.0131], [0.6671, 0.1488, 0.0548, 0.0201, 0.0138, 0.0122, 0.0095, 0.0065], [0.5486, 0.1224, 0.0742, 0.0655, 0.045, 0.0188, 0.0188, 0.0166], [0.7061, 0.058, 0.0451, 0.0451, 0.0188, 0.0166, 0.0166, 0.0166], [0.5849, 0.1152, 0.048, 0.0374, 0.0291, 0.0291, 0.0227, 0.02]], "ranks": {"Rust": [54489, 99988, 37602, 74814, 6971, 11298, 21311, 14893, 21216, 12082, 8214, 7700, 8149, 6601, 8124, 7529, 6753, 10197, 11745, 12418, 10374, 9461, 4583, 5807, 7060, 12940, 11933, 5461, 3848, 6766, 5121, 4708, 5544, 6597, 5649, 3448, 1047, 890, 1346, 2139, 2668, 2463, 3354, 3700, 5698, 4086, 4604, 4936, 3585, 4205, 9538, 10757, 2319, 825, 1282, 1056, 109, 120, 226, 159, 193, 120, 60]}}, {"pos": 433, "top": [[",", ".", "\u2013", "-", "  \n", ";", "<|endoftext|>", " "], ["  \n", "  \r\n", "  \n\n", "  \n  \n", "   \n", "\u2013", "--", "  "], ["  \n", "\u2013", ",", ".", ";", "  \r\n", "--", "\u2026"], ["ingly", "igy", "roads", "  \r\n", " ``", "//--", " Pubbl", "sWith"], ["  \n", "  \n\n", "ingly", "--", "  \r\n", "\\_", "  \n  \n", "  \n\n\n"], ["ingly", "  \n", "  \r\n", "   \n", "  \n\n", "\\_", "ively", "caps"], ["  \n", "--", "ingly", "  \n\n", "  \r\n", "   \n", "cro", ")--"], ["ingly", "  \n", "  \r\n", "ively", "cro", "pike", "ibility", "--"], ["ingly", "  \n", "  \n\n", "athon", "   \n\n", "ibility", "ivist", "ential"], ["ingly", "--", "  \n", "ively", "-minded", "\\_", "ential", "  \r\n"], ["  \n", "  \n\n", "--", "ingly", "\\_", "-minded", "er", "land"], ["ingly", "ibility", "ively", "ential", "-minded", "ivity", "ivist", "ware"], ["ingly", "ibility", "ivity", "ential", "ively", "-minded", "ware", "er"], ["ingly", "ibility", "ential", "-minded", "ivity", "ware", "ively", "side"], ["ingly", "ibility", "-minded", "side", "horn", "mind", "kick", "ties"], ["ingly", "ibility", "kick", "ential", "side", "-minded", "ivity", "mind"], ["ingly", "ibility", "mind", "side", "kick", "ential", "ball", "ware"], ["ibility", "ingly", "kick", "caps", "side", "-global", "iative", "roads"], ["ingly", "iative", "ibility", "kick", "roads", "mind", "-global", "caps"], ["ingly", "-cross", "cross", "ibility", "mind", "iative", "kick", "glob"], ["  \n\n", "cross", "ingly", "--", "mind", "<|endoftext|>", "-cross", "   \n\n"], ["ingly", "roads", "iative", "ativity", "ibility", "ivity", "pike", "glob"], ["ingly", "iative", "ivity", "ativity", "glob", "roads", "mind", "ibility"], ["ingly", "cross", "iative", "glob", "ivity", "ware", "mind", "-cross"], ["\u591a\u56fd", "ativity", "glob", "ingly", "iative", "olvable", "plex", "Pacific"], ["\u591a\u56fd", " milfs", "swire", "iels", "ativity", "olvable", "ugia", "-global"], ["\u591a\u56fd", "swire", "roads", "-global", "ware", "-Pacific", "punk", "ativity"], ["ware", "roads", "\u591a\u56fd", "swire", "-country", "-global", "ingly", "-Pacific"], ["ware", "roads", "-country", "swire", "-Pacific", " technologies", "-global", "\u591a\u56fd"], ["swire", "\u591a\u56fd", "-country", "-Pacific", "roads", "ware", " workflows", "\u5728\u6d77\u5916"], [" workflows", "-country", "roads", "-Pacific", "swire", " technologies", " catalogs", "avors"], [" technologies", " technology", "-Pacific", "-country", "ware", "kit", " workflows", "roads"], ["\u5728\u6d77\u5916", " technologies", "-Pacific", " technology", "\u591a\u56fd", "-country", "ware", "swire"], ["\u591a\u56fd", "-Pacific", "\u5728\u6d77\u5916", "swire", "-country", "-tech", "-global", " technologies"], ["\u5728\u6d77\u5916", "\u591a\u56fd", "swire", "ware", "-country", "-Pacific", "codes", "-cross"], ["cross", "\u5728\u6d77\u5916", "-cross", "\u591a\u56fd", "\u8de8\u5883", "\u8de8", "-Pacific", "\u6d77\u5916"], ["cross", "-cross", "\u591a\u56fd", "\u5728\u6d77\u5916", "\u8de8\u5883", "-native", "-Pacific", "\u8de8"], ["cross", "-cross", "\u591a\u56fd", "\u5728\u6d77\u5916", "-Pacific", "-native", "\u8de8\u5883", "swire"], ["-cross", "cross", "\u591a\u56fd", "\u8de8", "-native", "\u8de8\u5883", "native", "\u5728\u6d77\u5916"], ["\u8de8", "cross", "-cross", "\u591a\u56fd", "\u8de8\u5883", ".Cross", "Cross", "\u4ea4\u53c9"], ["cross", "-cross", "\u8de8", "Cross", "\u4ea4\u53c9", "\u8de8\u5883", " cross", ".Cross"], ["\u8de8", "-cross", "cross", "\u4ea4\u53c9", "\u8de8\u5883", "Cross", "\u8de8\u754c", " cross"], ["-cross", "cross", "\u8de8", "\u4ea4\u53c9", "\u8de8\u5883", "\u5728\u6d77\u5916", "\u8de8\u754c", "Cross"], ["-cross", "cross", "\u8de8", "Cross", " Cross", "\u4ea4\u53c9", " cross", "-production"], ["-cross", "cross", "\u8de8", "Cross", "\u4ea4\u53c9", " cross", "-production", "_cross"], ["-cross", "cross", " cross", "-testing", "-production", " testing", "\u8de8\u7701", "\u8de8"], ["-cross", " cross", "-testing", "cross", "-production", " testing", " technologies", " architectures"], ["-cross", "-production", "-testing", "cross", "-target", "-platform", " architectures", "-produ"], ["-cross", "-platform", "-production", "-testing", "-arm", " compilers", "-target", "-produ"], ["-cross", "-platform", "-testing", "-arm", "-production", "-ios", "-tests", "-target"], ["-cross", "-testing", "-platform", "-production", "-tools", "-tests", "-debug", " testers"], ["-platform", "-browser", "_COMPILE", " platforms", " compilers", "-kit", "-tools", "-machine"], ["-platform", "-tools", "-tool", " platforms", "_COMPILE", "-kit", "-browser", " binaries"], ["-platform", "-tools", "-tool", " compilers", "-kit", "-browser", " binaries", "_COMPILE"], ["-platform", "-sdk", "-tools", "-browser", " compilers", " binaries", "-tool", "_COMPILE"], ["-platform", " compilers", "-tool", "compiler", " compiler", "-tools", "\u7f16\u8bd1", "-sdk"], ["-platform", " compilers", " compiler", "\u7f16\u8bd1", " compilation", "compiler", " binaries", "-tool"], ["\u7f16\u8bd1", " compilation", " compile", "compile", " compiling", "Compile", " compilers", "_compile"], [" compilation", "\u7f16\u8bd1", " compile", " compilers", "compile", "_compile", " compiling", "Compilation"], [" compilation", " compilers", "-comp", " compile", "\u7f16\u8bd1", " compiling", " compiler", "compile"], ["-comp", " compilation", " compilers", "comp", " compiler", " Comp", " compil", " compile"], ["-comp", " Comp", " compilers", "comp", " compilation", "Comp", "_comp", " comp"], ["-comp", " compilers", " compilation", "-", "comp", " Comp", "-tool", " Compilation"]], "p": [[0.5892, 0.2783, 0.0377, 0.0202, 0.0167, 0.013, 0.0065, 0.0061], [0.9434, 0.0222, 0.0072, 0.0047, 0.003, 0.0022, 0.0018, 0.0016], [0.4934, 0.0857, 0.0489, 0.0459, 0.0085, 0.0075, 0.0066, 0.0058], [0.0134, 0.003, 0.0028, 0.0023, 0.002, 0.0017, 0.0017, 0.0017], [0.2668, 0.152, 0.1184, 0.0409, 0.0339, 0.0133, 0.0125, 0.0097], [0.179, 0.1394, 0.0214, 0.0147, 0.0079, 0.0074, 0.0069, 0.0048], [0.6862, 0.0563, 0.0387, 0.025, 0.0195, 0.0059, 0.0038, 0.0036], [0.1751, 0.0568, 0.0209, 0.0144, 0.0127, 0.0112, 0.0105, 0.0099], [0.1016, 0.0792, 0.0744, 0.0213, 0.0121, 0.0114, 0.0101, 0.0095], [0.069, 0.0505, 0.0224, 0.012, 0.0077, 0.0073, 0.0068, 0.006], [0.1721, 0.0813, 0.0463, 0.0361, 0.0181, 0.016, 0.011, 0.0097], [0.0954, 0.0273, 0.0138, 0.0129, 0.0129, 0.0114, 0.0114, 0.0089], [0.1278, 0.0268, 0.0173, 0.0163, 0.0143, 0.0099, 0.0087, 0.006], [0.0547, 0.0108, 0.0079, 0.0065, 0.0054, 0.0048, 0.0042, 0.0035], [0.0308, 0.0065, 0.0057, 0.0054, 0.0037, 0.0032, 0.0025, 0.0025], [0.0147, 0.0037, 0.0024, 0.0015, 0.0015, 0.0015, 0.0015, 0.0014], [0.0243, 0.0065, 0.0054, 0.0051, 0.0051, 0.0048, 0.0035, 0.0033], [0.0076, 0.0067, 0.0049, 0.004, 0.004, 0.0034, 0.0032, 0.0032], [0.011, 0.0076, 0.0049, 0.0041, 0.0034, 0.0032, 0.0032, 0.0028], [0.0166, 0.0061, 0.0048, 0.0045, 0.0042, 0.0039, 0.0037, 0.0035], [0.0243, 0.009, 0.0058, 0.0045, 0.004, 0.004, 0.0035, 0.0031], [0.0124, 0.0055, 0.0048, 0.0035, 0.0035, 0.0035, 0.0029, 0.0029], [0.0309, 0.0089, 0.0061, 0.0054, 0.0042, 0.0039, 0.0039, 0.0037], [0.0162, 0.0105, 0.0068, 0.0056, 0.0053, 0.0053, 0.0046, 0.0041], [0.0041, 0.0036, 0.0034, 0.0034, 0.003, 0.0024, 0.0018, 0.0018], [0.0051, 0.0023, 0.0021, 0.0021, 0.002, 0.0018, 0.0017, 0.0017], [0.0055, 0.0034, 0.0034, 0.0034, 0.003, 0.0028, 0.0022, 0.0022], [0.008, 0.0066, 0.0055, 0.0049, 0.0043, 0.004, 0.0038, 0.0035], [0.0108, 0.0084, 0.0066, 0.0062, 0.0048, 0.0048, 0.004, 0.0037], [0.0053, 0.0049, 0.0041, 0.0041, 0.0036, 0.0034, 0.0028, 0.0026], [0.006, 0.006, 0.005, 0.005, 0.005, 0.0041, 0.0036, 0.0036], [0.013, 0.013, 0.0074, 0.007, 0.0062, 0.0058, 0.0051, 0.0045], [0.0094, 0.0073, 0.0065, 0.0057, 0.0054, 0.0047, 0.0047, 0.0037], [0.0103, 0.0071, 0.0062, 0.0046, 0.0046, 0.0038, 0.0033, 0.0029], [0.0119, 0.0077, 0.005, 0.005, 0.0044, 0.0041, 0.0041, 0.0039], [0.0407, 0.0247, 0.0218, 0.0205, 0.015, 0.0141, 0.0132, 0.008], [0.0253, 0.0185, 0.0144, 0.0144, 0.0105, 0.0087, 0.0072, 0.0068], [0.0246, 0.0231, 0.0103, 0.008, 0.0075, 0.0055, 0.0052, 0.0043], [0.0465, 0.0465, 0.03, 0.0171, 0.011, 0.0092, 0.0092, 0.0081], [0.1634, 0.1442, 0.0931, 0.0143, 0.0143, 0.0118, 0.0104, 0.0104], [0.2327, 0.1412, 0.1326, 0.0245, 0.023, 0.0216, 0.0158, 0.0131], [0.2245, 0.2245, 0.1749, 0.0285, 0.0237, 0.0173, 0.0173, 0.0163], [0.2985, 0.1032, 0.0755, 0.0179, 0.0149, 0.0149, 0.0123, 0.0116], [0.2651, 0.1511, 0.0975, 0.0204, 0.0116, 0.0116, 0.0109, 0.0085], [0.2427, 0.1146, 0.0541, 0.0165, 0.0121, 0.0121, 0.0113, 0.0083], [0.189, 0.0372, 0.0256, 0.0146, 0.0137, 0.01, 0.0088, 0.0083], [0.1509, 0.0192, 0.0192, 0.0169, 0.0169, 0.0132, 0.0124, 0.0116], [0.2067, 0.028, 0.0247, 0.0218, 0.017, 0.0141, 0.0132, 0.0124], [0.1576, 0.0242, 0.0188, 0.0166, 0.0147, 0.0122, 0.0122, 0.0114], [0.0777, 0.0345, 0.0252, 0.0222, 0.0222, 0.0135, 0.0135, 0.0127], [0.0384, 0.0233, 0.0219, 0.0193, 0.011, 0.011, 0.0076, 0.0067], [0.7177, 0.0123, 0.0109, 0.0075, 0.0048, 0.0045, 0.0043, 0.004], [0.8001, 0.0121, 0.0114, 0.0107, 0.0083, 0.0074, 0.0074, 0.0061], [0.5502, 0.1228, 0.0352, 0.0227, 0.0177, 0.0147, 0.0114, 0.0095], [0.8176, 0.0218, 0.0192, 0.017, 0.0117, 0.0097, 0.0062, 0.0052], [0.5891, 0.1314, 0.0332, 0.0259, 0.0259, 0.0178, 0.0157, 0.0139], [0.608, 0.1357, 0.0389, 0.0389, 0.0184, 0.0143, 0.0143, 0.0098], [0.3716, 0.1989, 0.1367, 0.1206, 0.0305, 0.0269, 0.0238, 0.021], [0.2686, 0.1629, 0.1438, 0.0988, 0.077, 0.0412, 0.0321, 0.0283], [0.3066, 0.2705, 0.1448, 0.0775, 0.0366, 0.0285, 0.0252, 0.0196], [0.9877, 0.0059, 0.0036, 0.0007, 0.0005, 0.0004, 0.0003, 0.0003], [0.996, 0.001, 0.001, 0.0009, 0.0006, 0.0002, 0.0001, 0.0], [0.9954, 0.0017, 0.0013, 0.0005, 0.0003, 0.0001, 0.0001, 0.0001]], "ranks": {"Rust": [52925, 95392, 78278, 51374, 37702, 21257, 19950, 11339, 9065, 9834, 16346, 16274, 13311, 13981, 20916, 13190, 18336, 19285, 32665, 42018, 69019, 19903, 30618, 44420, 6643, 7522, 11934, 19471, 15351, 10107, 21052, 13639, 27558, 26664, 22307, 21964, 5822, 4135, 8880, 13753, 13804, 10807, 14324, 21710, 24827, 33063, 38016, 33281, 25954, 24359, 46534, 50475, 16601, 3559, 4440, 1619, 68, 87, 195, 139, 330, 482, 1137]}}, {"pos": 434, "top": [["<|endoftext|>", ".", ",", "\u2026", "a", "\u2026.", " \u2013", "-"], ["\u5728", " \uff08", "  \n", "  \n\n", "  \n  \n", "\u7684", "\uff08", " \uff3b"], ["\u5728", "[\"@", "[", "\u2026", "\u3002", " \uff08", "  \n  \n", "\u2026."], ["\u5728", "---</", "\uff3f\uff3f", " \uff1c", "\u52a0\u62ff\u5927", "\u0eb2\u0e99", "\u25b7", "----</"], ["\u5728", " @_", " \uff08", " \u3010", " //@", " \uff3b", " \"@", ":@"], ["\u5728", " \uff08", "\u4e2d", " \uff09", " \u3010", "\u7684", "\u548c", " \u3011"], ["\u5728", "\u4e2d", " \u3010", " \uff08", "\u7684", "\u548c", "  \n\n", "  \n"], ["\u5728", "\u7684", "\u4e2d", " _____", " \u3010", "  \n\n", " \uff1c", "\u548c"], ["\u5728", "  \n\n", " \uff3b", "   \n\n", "    \n\n", "  \n\n\n", "\u548c", "\uff08"], ["  \n  \n", "\u5728", "  \n", "  \n\n", "&amp", " \uff3b", " \u00a0", "  \n    \n"], ["\u5728", "  \n\n", "  \n  \n", " \uff3b", "  \n", "&amp", " \u3010", " \uff08"], ["ers", "ition", "ions", "ials", "ing", "&amp", "ioni", "ating"], ["ers", "ing", "ed", "ally", "ions", "ials", "ilation", "ition"], ["ers", "ing", "ed", "ally", "ition", "a", "ions", "ors"], ["ed", "ers", "a", "ing", "ally", "ition", "  \n\n", "<|endoftext|>"], ["ers", "ing", "ed", "a", "ally", "&amp", "eter", "ions"], ["ers", "ing", "a", "ed", "ally", "o", "ions", "eter"], ["ers", "ing", "ed", "ally", "a", "ions", "ating", "eter"], ["ers", "ing", "ed", "ally", "ions", "ioni", "ating", "eter"], ["ing", "ers", "ed", "ioni", "eter", "ating", "ions", "ically"], ["<|endoftext|>", "  \n\n", " \n\n", "a", "ing", "\n\n", "ed", "  \n  \n"], ["ing", "ating", "ers", "ilation", "icide", "otron", "ition", "aging"], ["ing", "ation", "ating", "ers", "ilation", "ated", "aging", "ition"], ["ing", "<|endoftext|>", "ation", "ed", "ers", "a", " \n  \n", "eter"], ["ing", " \n  \n", "ation", " \n\n\n\n", "  \n\n", " \n\n", "&amp", " <!--"], [" **\u3010", " *__", " *))", "ilation", "\u52a0\u62ff\u5927", "ufacturing", "icide", " <!--"], ["ufacturing", " *__", " macOS", " engineering", "\u4ee3\u5de5", " *))", "ilation", "icide"], [" engineering", " ___", "ing", "ufacturing", " manufacturing", " hardware", "\u4ee3\u5de5", " technologies"], [" engineering", " technologies", "ing", " macOS", "ufacturing", "\u4ee3\u5de5", "ers", " export"], [" workflows", " **:", " *))", " macOS", " engineering", " export", "avors", "ufacturing"], [" **:", " **", " **.", " workflows", " engineering", " export", " **,", " macOS"], [" **", " engineering", " technology", "ing", " hardware", " **,", "ers", " **."], ["ing", " **", " engineering", " hardware", " technology", "ers", " production", " technologies"], [" workflows", " hardware", "icult", " technologies", "\u4ee3\u5de5", " **\u2013", " firmware", " macOS"], [" hardware", " tech", "icult", " engineering", " workflows", "ing", " technologies", " manufacturing"], [" export", " hardware", " **\u2013", " workflows", "ing", " *[", " Kickstarter", "\u4ee3\u5de5"], [" macOS", " workflows", "\u4ee3\u5de5", " hardware", " export", " manufacturing", " firmware", " software"], [" macOS", " workflows", " software", " hardware", "\u4ee3\u5de5", " firmware", " manufacturing", "ertools"], [" macOS", " workflows", " hardware", "ertools", " Ubuntu", " firmware", " software", " Linux"], [" macOS", " workflows", " hardware", "\u4ee3\u5de5", " Ubuntu", " Android", "Ubuntu", "ertools"], [" hardware", " Ubuntu", " manufacturing", "Ubuntu", " workflows", " macOS", "\u4ee3\u5de5", "\u5f02\u57df"], [" hardware", " manufacturing", " machining", " production", "\u4ee3\u5de5", " workflows", " manufact", " Ubuntu"], [" hardware", " workflows", " machining", " manufacturing", " production", "\u4ee3\u5de5", "tools", " tools"], [" workflows", " hardware", " manufacturing", " production", " machining", "tools", " manufact", " tools"], [" workflows", " hardware", " manufacturing", " tools", " production", "_COMPILE", " setups", " manufact"], [" hardware", " tools", " setups", " production", " manufacturing", " workflows", " rigs", " technologies"], [" setups", " hardware", " workflows", " tools", " production", " rigs", " technologies", " manufacturing"], [" setups", " hardware", " tools", " workflows", " complexities", " rigs", " production", " complex"], [" setups", " complexities", " rigs", " hardware", " tools", " pipelines", " workflows", " complexes"], [" setups", " complexities", " hardware", " rigs", " workflows", " tools", " complexes", " pipelines"], [" setups", " complexities", " workflows", " pipelines", " hardware", " rigs", " tools", " tutorials"], [" setups", " workflows", " hardware", " libraries", " pipelines", " binaries", " dependencies", " tools"], [" setups", " dependencies", " binaries", " libraries", " workflows", " tools", " packages", " hardware"], [" setups", " dependencies", " binaries", " libraries", " workflows", " tools", " plugins", "ertools"], [" setups", " workflows", " binaries", " libraries", " tools", " dependencies", " plugins", " compilers"], [" setups", " binaries", " compilers", " workflows", "ertools", " tools", " libraries", " plugins"], [" binaries", " compilers", " setups", " libraries", " tools", "ertools", "ilers", " plugins"], [" compilers", " compilation", " compiler", "ilation", " binaries", " compil", "compiler", " Compiler"], [" tool", "tool", " compilers", "-tool", "Tool", " Tool", "_tool", " compiler"], [" tool", "tool", "-tool", " Tool", "Tool", "_tool", " compilers", "ilers"], [" compilers", " compilation", " compiler", "-comp", "compiler", " tool", " compil", "ilers"], ["ilers", " compilers", "ilation", " tool", " compilation", " compiler", "-comp", " Tool"], ["ilation", "ilers", " tool", "iling", " compilers", " compilation", "tool", " Tool"]], "p": [[0.4, 0.353, 0.0478, 0.0199, 0.0146, 0.0088, 0.0083, 0.0078], [0.3755, 0.1471, 0.1011, 0.0508, 0.0212, 0.0212, 0.0146, 0.0128], [0.421, 0.0503, 0.0325, 0.0237, 0.0185, 0.0163, 0.0153, 0.0153], [0.0666, 0.0295, 0.0203, 0.007, 0.0058, 0.0055, 0.0051, 0.0045], [0.1963, 0.0678, 0.0562, 0.0438, 0.022, 0.0161, 0.0142, 0.0125], [0.6925, 0.0644, 0.0173, 0.0093, 0.0068, 0.0064, 0.0053, 0.0047], [0.7377, 0.0534, 0.0286, 0.0197, 0.0173, 0.0144, 0.0082, 0.006], [0.508, 0.0269, 0.0197, 0.0099, 0.0093, 0.0093, 0.0056, 0.0056], [0.3225, 0.1838, 0.0219, 0.0171, 0.0125, 0.011, 0.0104, 0.0104], [0.1109, 0.036, 0.0318, 0.0318, 0.016, 0.015, 0.0071, 0.0063], [0.0917, 0.0917, 0.0433, 0.0337, 0.0317, 0.0247, 0.0205, 0.0192], [0.0775, 0.0323, 0.0236, 0.0184, 0.0153, 0.0093, 0.0082, 0.0082], [0.1672, 0.0241, 0.0137, 0.0137, 0.0129, 0.0114, 0.0107, 0.0107], [0.283, 0.0811, 0.0631, 0.0232, 0.017, 0.0097, 0.0071, 0.0063], [0.0947, 0.0836, 0.0785, 0.0348, 0.0145, 0.012, 0.01, 0.0073], [0.1843, 0.105, 0.0598, 0.0266, 0.0104, 0.0076, 0.0076, 0.0071], [0.1889, 0.1774, 0.1298, 0.1076, 0.0137, 0.0057, 0.0054, 0.0044], [0.2221, 0.2086, 0.0437, 0.0182, 0.0125, 0.0111, 0.0104, 0.0076], [0.1554, 0.0609, 0.0369, 0.0164, 0.0154, 0.0136, 0.0093, 0.0077], [0.0982, 0.0867, 0.0494, 0.0142, 0.0133, 0.011, 0.0097, 0.0086], [0.937, 0.0283, 0.0104, 0.0012, 0.0012, 0.0012, 0.0008, 0.0004], [0.0284, 0.0267, 0.0236, 0.0152, 0.0152, 0.0105, 0.0105, 0.0098], [0.1064, 0.0305, 0.0253, 0.0185, 0.0082, 0.0072, 0.0072, 0.0072], [0.1227, 0.1153, 0.0352, 0.0147, 0.0101, 0.0101, 0.0095, 0.0069], [0.0408, 0.0247, 0.0103, 0.0097, 0.008, 0.0075, 0.0071, 0.0067], [0.0197, 0.0153, 0.005, 0.0047, 0.0047, 0.0044, 0.0039, 0.0039], [0.0069, 0.0061, 0.0057, 0.0057, 0.005, 0.0047, 0.0045, 0.0045], [0.0289, 0.0106, 0.0083, 0.0064, 0.0061, 0.0047, 0.0047, 0.0047], [0.0168, 0.0066, 0.0062, 0.0051, 0.0048, 0.0042, 0.0035, 0.0035], [0.0055, 0.0038, 0.0038, 0.0036, 0.0025, 0.0023, 0.0023, 0.002], [0.0105, 0.0077, 0.0077, 0.0077, 0.0056, 0.0046, 0.0046, 0.0041], [0.0921, 0.0125, 0.0103, 0.0103, 0.0103, 0.008, 0.0076, 0.0071], [0.0257, 0.0241, 0.0227, 0.0213, 0.0188, 0.0129, 0.0101, 0.0094], [0.0103, 0.0091, 0.008, 0.0063, 0.0059, 0.0046, 0.0046, 0.0038], [0.0176, 0.0121, 0.0106, 0.0083, 0.0073, 0.0065, 0.0065, 0.0054], [0.0112, 0.0093, 0.0093, 0.0093, 0.0087, 0.0077, 0.0077, 0.0068], [0.0236, 0.0134, 0.0118, 0.0118, 0.0092, 0.0087, 0.0063, 0.006], [0.0387, 0.0183, 0.0126, 0.0104, 0.0098, 0.0067, 0.0063, 0.0056], [0.0789, 0.0187, 0.0146, 0.0078, 0.0078, 0.0073, 0.0069, 0.0054], [0.0343, 0.0285, 0.0126, 0.0092, 0.0053, 0.0046, 0.0044, 0.0041], [0.0238, 0.0164, 0.0136, 0.0136, 0.012, 0.012, 0.0106, 0.0082], [0.0348, 0.0271, 0.0239, 0.0164, 0.0145, 0.0136, 0.01, 0.0094], [0.0375, 0.0177, 0.0167, 0.0167, 0.0138, 0.0115, 0.0108, 0.0108], [0.0257, 0.0227, 0.0177, 0.0121, 0.0101, 0.0101, 0.0089, 0.0083], [0.0341, 0.0235, 0.0235, 0.0207, 0.0207, 0.0134, 0.0126, 0.0118], [0.0455, 0.0455, 0.0377, 0.0377, 0.0294, 0.0215, 0.0178, 0.0139], [0.071, 0.0589, 0.0431, 0.0431, 0.0261, 0.0231, 0.0169, 0.014], [0.0729, 0.0643, 0.0442, 0.039, 0.0323, 0.0237, 0.0209, 0.0196], [0.0905, 0.0584, 0.0485, 0.0455, 0.0377, 0.0259, 0.0202, 0.0167], [0.1849, 0.1632, 0.0724, 0.0364, 0.0321, 0.0266, 0.0162, 0.0143], [0.2491, 0.0714, 0.067, 0.063, 0.0382, 0.0317, 0.0132, 0.0116], [0.3177, 0.0855, 0.0755, 0.0335, 0.0315, 0.0278, 0.0179, 0.0158], [0.386, 0.1253, 0.0671, 0.0433, 0.0247, 0.0232, 0.0218, 0.0205], [0.6644, 0.0618, 0.0481, 0.0166, 0.0166, 0.0166, 0.0101, 0.0057], [0.1593, 0.1593, 0.1241, 0.1095, 0.0457, 0.0403, 0.0356, 0.0356], [0.2465, 0.192, 0.08, 0.055, 0.0402, 0.0355, 0.0334, 0.0168], [0.2255, 0.1756, 0.0646, 0.0646, 0.057, 0.0287, 0.0223, 0.021], [0.6153, 0.0649, 0.0505, 0.0446, 0.0186, 0.0136, 0.0113, 0.0093], [0.6322, 0.1411, 0.0519, 0.0458, 0.0404, 0.0357, 0.0131, 0.0116], [0.7549, 0.0547, 0.0376, 0.0376, 0.0332, 0.0258, 0.0084, 0.0084], [0.6752, 0.1173, 0.1173, 0.0124, 0.0124, 0.0096, 0.0096, 0.0085], [0.3067, 0.2108, 0.1861, 0.1279, 0.0776, 0.0196, 0.0068, 0.0064], [0.6254, 0.2954, 0.0275, 0.0177, 0.0061, 0.0035, 0.0024, 0.0023]], "ranks": {"Rust": [67146, 57688, 61905, 41271, 7171, 10337, 16726, 19939, 21353, 7166, 5009, 4183, 2177, 1377, 4587, 2473, 5420, 9236, 8996, 8979, 14283, 7450, 4557, 3015, 1859, 4045, 1960, 479, 656, 1808, 981, 746, 1146, 5682, 2291, 1518, 248, 252, 411, 1381, 1665, 1778, 1856, 3450, 4467, 2417, 2754, 2373, 1900, 1661, 5312, 3665, 2367, 1577, 1416, 472, 59, 67, 158, 150, 304, 273, 460]}}, {"pos": 435, "top": [[",", ".", " \u2013", "\"", ";", "\u2013", "\u200b", "\u200b\u200b"], [" \u2013", "\u200b\u200b", " \u00b7", "\u00ad", " (\"", "\u200b", ".", " \u200b\u200b"], [",", ".", " \u2013", "[", "\u2013", ";", "\u200b", " \u00b7"], [" Blowjob", " milfs", " cumshot", " Shemale", " Geile", " pornstar", " creampie", " ;;^"], [" \".", "\u200b\u200b", " ().", " (@", " [@", " (*)", " [].", " ->"], [" \u200b\u200b", " \".", " ().", " \u201c.", "\u200b\u200b", " [].", " \uff1a", " \")."], [" \u00b7", ".", " [...]", ",", " ().", "\"", " \u00a9", "\u200b\u200b"], [" ().", ".", " [...]", " [].", " \".", "\u65f3", " \u00b7", ","], [" [...]", ".", " [].", " ().", " \n\n\n\n\n", ",", " \n\n\n", ".\",\""], [",", "\u00ad", " \u00ad", " [...]", ".", " (\"", "\u00adi", "\u65f3"], [" [...]", ",", "\u00ad", " \u00ad", ".", " \u2014", " \ufffd", " [..."], [" [...]", " \u00ad", " **\u00ab", " *\u00ab", " (\u00ab", " \u00ab", "\u00ad", " (\""], [" [...]", " (\u00ab", " \u00ab", " of", " \u00ad", " **\u00ab", " advancements", " \u2014"], [" \u00ad", ",", " \u2014", " alongside", " of", " seamlessly", " advancements", " arguably"], [" \u2014", " alongside", " \u00ad", " arguably", ",", " heavily", " massively", " (\""], [" \u2014", " efforts", " arguably", " largely", " broadly", " disparate", " massively", " notably"], [",", " of", " (\"", " massively", " \"", " efforts", " \u2014", " seamlessly"], [" \u2014", " massively", " efforts", " seamlessly", " of", " strategies", " blockbuster", " strategy"], [" \u2014", " of", " massively", " efforts", " heavily", " alongside", " seamlessly", " largely"], [" \u2014", " of", " massively", " alongside", " ,", " largely", " heavily", " efforts"], [" ,", " \u2014", " alongside", " heavily", " largely", " swiftly", "<|endoftext|>", " ultimately"], [" seamlessly", " alongside", " heavily", " massively", " ;;^", " thereof", "\u8fc7\u7a0b\u5f53\u4e2d", " efforts"], [" ,", " heavily", " alongside", " --", " notably", " fully", " ultimately", " arguably"], [" ,", " fully", " \u2014", " --", " largely", " ultimately", " alongside", " ."], [" ,", " \u2014", " alongside", " notably", " --", " heavily", " largely", " arguably"], [" ,", " technology", " technologies", " heavily", " industrial", " massively", " seamlessly", " techniques"], [" ,", " technology", " production", " industrial", " technologies", " ___", " complex", " software"], [" ,", " ___", " .", " _", " --", " __", " **", " and"], [" ,", " .", " ___", " \u2014", " [...]", " complex", " --", " technology"], [" ___", " ...", " .", " [...]", " ,", " **", " __", " technology"], [" .", " ...", " ,", " [...]", " for", " **", " **.", " ...."], [" ...", " .", " **", " ,", " [...]", " ___", " complex", " for"], [" .", " ,", " complex", " for", " **", " \u2014", " technology", " ..."], [" complex", " \u2014", " technology", " **", " seamlessly", " massively", " [...]", " heavily"], [" complex", " \u2014", " technology", " heavily", " massively", " directly", " seamlessly", " tools"], [" \u2014", " \u2013", " complex", " technology", "\u2014but", " tools", " traditional", " overseas"], [" \u2014", " seamlessly", " complex", " directly", " expensive", " traditional", " massively", " notoriously"], [" expensive", " complex", " seamlessly", " \u2014", " directly", " cheap", " tools", " hardware"], [" complex", " expensive", " directly", " seamlessly", " tools", " \u2014", " hardware", " technology"], [" hardware", " expensive", " complex", " tools", " technology", " seamlessly", " workflows", " software"], [" hardware", " software", " tools", " technology", " machines", " workflows", " expensive", " complex"], [" hardware", " software", " machines", " tools", " workflows", " technology", " expensive", " technologies"], [" hardware", " machines", " tools", " software", " workflows", " equipment", " complex", " expensive"], [" hardware", " tools", " machines", " workflows", " expensive", " software", " equipment", " setups"], [" hardware", " workflows", " expensive", " machines", " tools", " software", " setups", " complex"], [" hardware", " tools", " machines", " expensive", " equipment", " workflows", " setups", " complex"], [" hardware", " expensive", " setups", " workflows", " tools", " complex", " machines", " easily"], [" hardware", " expensive", " setups", " tools", " complex", " workflows", " easily", " machines"], [" hardware", " setups", " tools", " expensive", " machines", " workflows", " labs", "-heavy"], [" setups", " hardware", " workflows", " tools", " complexities", "-heavy", " labs", " libraries"], [" setups", " workflows", " hardware", " pipelines", " libraries", " tools", " rigs", " shortcuts"], [" setups", " hardware", " workflows", " libraries", " pipelines", " tools", " binaries", " packages"], [" libraries", " setups", " hardware", " workflows", " binaries", " dependencies", " tools", " packages"], [" setups", " libraries", " workflows", " tools", " binaries", " plugins", " hardware", " dependencies"], [" libraries", " workflows", " plugins", " pipelines", " binaries", " tools", " setups", " packages"], [" binaries", " workflows", " libraries", " setups", " pipelines", " plugins", " tools", " environments"], [" binaries", " libraries", " tools", " workflows", " pipelines", " plugins", " setups", " artifacts"], [" pipelines", " tools", " binaries", " workflows", " libraries", " setups", " artifacts", " SDK"], [" caches", " tool", " caching", " cache", "tool", "-cache", " pipelines", " artifacts"], [" caches", " tool", " caching", " cache", " workflows", " binaries", " tools", " artifacts"], [" caches", " binaries", " tool", " caching", " tools", " artifacts", " cache", " pipelines"], [" tool", " caches", " binaries", " caching", " tools", " chains", " cache", " pipelines"], [" tool", " tools", " binaries", " caches", " artifacts", " chains", " farms", " pipelines"]], "p": [[0.4619, 0.4619, 0.0245, 0.0131, 0.0048, 0.004, 0.0026, 0.0024], [0.0802, 0.0802, 0.0802, 0.0587, 0.0518, 0.0356, 0.0334, 0.026], [0.515, 0.3124, 0.0615, 0.0309, 0.02, 0.0107, 0.0065, 0.0042], [0.0149, 0.0123, 0.0102, 0.0096, 0.007, 0.0066, 0.0055, 0.0045], [0.0253, 0.021, 0.0197, 0.0174, 0.0119, 0.0105, 0.0093, 0.0093], [0.0449, 0.0329, 0.0187, 0.0114, 0.0107, 0.0073, 0.0073, 0.0042], [0.1291, 0.0649, 0.061, 0.0198, 0.0186, 0.0175, 0.0164, 0.0154], [0.0488, 0.0459, 0.038, 0.0278, 0.0169, 0.0159, 0.0149, 0.0096], [0.1682, 0.0958, 0.0375, 0.0331, 0.0177, 0.0177, 0.0167, 0.0147], [0.4249, 0.1563, 0.1296, 0.0738, 0.0308, 0.0078, 0.005, 0.0047], [0.6758, 0.0669, 0.046, 0.046, 0.0336, 0.0116, 0.0055, 0.0052], [0.367, 0.0172, 0.0118, 0.0092, 0.0086, 0.0043, 0.0036, 0.0036], [0.1394, 0.0242, 0.0214, 0.0107, 0.0095, 0.0084, 0.0058, 0.0058], [0.018, 0.0169, 0.0169, 0.0109, 0.0102, 0.0085, 0.0075, 0.0075], [0.1015, 0.0188, 0.0166, 0.0129, 0.0114, 0.0089, 0.0078, 0.0074], [0.1677, 0.0083, 0.0083, 0.0083, 0.0078, 0.0069, 0.0069, 0.0057], [0.0791, 0.0156, 0.0107, 0.0089, 0.0089, 0.0078, 0.0078, 0.0069], [0.0129, 0.0121, 0.01, 0.0083, 0.0073, 0.0061, 0.0054, 0.0054], [0.0523, 0.0132, 0.0124, 0.011, 0.0091, 0.0091, 0.0085, 0.0049], [0.0338, 0.017, 0.016, 0.016, 0.0141, 0.0124, 0.0124, 0.0103], [0.0723, 0.0638, 0.025, 0.0172, 0.0161, 0.0161, 0.0118, 0.0104], [0.0091, 0.0063, 0.0049, 0.0046, 0.0046, 0.0038, 0.0036, 0.0036], [0.0445, 0.0164, 0.0145, 0.0136, 0.012, 0.0088, 0.0088, 0.0082], [0.252, 0.0151, 0.0142, 0.0142, 0.0118, 0.0104, 0.0104, 0.0104], [0.0827, 0.073, 0.0237, 0.0209, 0.0209, 0.0185, 0.0093, 0.0087], [0.016, 0.0133, 0.0117, 0.0086, 0.0086, 0.0086, 0.0071, 0.0071], [0.09, 0.0201, 0.0138, 0.013, 0.0122, 0.0114, 0.0114, 0.0089], [0.3915, 0.0874, 0.0266, 0.025, 0.0235, 0.0221, 0.0152, 0.0076], [0.2393, 0.0568, 0.0416, 0.0196, 0.0173, 0.0163, 0.0153, 0.0153], [0.1064, 0.1064, 0.0829, 0.0732, 0.0606, 0.0346, 0.0223, 0.0185], [0.4377, 0.2068, 0.0671, 0.0317, 0.0124, 0.0117, 0.0097, 0.008], [0.1807, 0.1322, 0.1096, 0.0708, 0.0624, 0.023, 0.0168, 0.0131], [0.2817, 0.125, 0.0279, 0.0217, 0.0192, 0.0169, 0.0103, 0.0091], [0.0624, 0.0334, 0.0314, 0.0314, 0.019, 0.0148, 0.0131, 0.0123], [0.0538, 0.0446, 0.0224, 0.0198, 0.0175, 0.0154, 0.0145, 0.012], [0.2268, 0.0307, 0.0239, 0.0175, 0.0164, 0.01, 0.0094, 0.0094], [0.1885, 0.0395, 0.0328, 0.0308, 0.024, 0.0199, 0.0165, 0.012], [0.0749, 0.0484, 0.0401, 0.0377, 0.0312, 0.0276, 0.0259, 0.0157], [0.0956, 0.0545, 0.0481, 0.0424, 0.0375, 0.0274, 0.0257, 0.0227], [0.0992, 0.0876, 0.0773, 0.0469, 0.0343, 0.0303, 0.0284, 0.0251], [0.321, 0.0979, 0.0632, 0.0492, 0.0383, 0.0338, 0.0263, 0.0218], [0.5051, 0.0995, 0.047, 0.047, 0.0323, 0.0162, 0.0135, 0.0112], [0.5672, 0.0466, 0.0437, 0.032, 0.0282, 0.0194, 0.0118, 0.0104], [0.5919, 0.0314, 0.0314, 0.0277, 0.0216, 0.019, 0.0148, 0.0084], [0.3725, 0.0474, 0.0474, 0.0418, 0.0346, 0.0224, 0.0185, 0.0185], [0.33, 0.0784, 0.0394, 0.037, 0.0239, 0.0239, 0.0225, 0.0198], [0.2433, 0.0655, 0.0479, 0.045, 0.0423, 0.0213, 0.0188, 0.0176], [0.1289, 0.1211, 0.0609, 0.0474, 0.0306, 0.0288, 0.0254, 0.0198], [0.2234, 0.1055, 0.0565, 0.0531, 0.0302, 0.0235, 0.0221, 0.0195], [0.252, 0.1732, 0.0722, 0.0496, 0.032, 0.0283, 0.0234, 0.0194], [0.313, 0.1478, 0.1305, 0.048, 0.031, 0.02, 0.0177, 0.0146], [0.2097, 0.1633, 0.1633, 0.1633, 0.0322, 0.025, 0.0134, 0.0126], [0.2831, 0.1515, 0.1041, 0.0632, 0.0492, 0.0492, 0.0338, 0.0338], [0.2168, 0.1913, 0.0704, 0.0704, 0.0621, 0.0484, 0.0484, 0.0427], [0.2756, 0.2432, 0.0895, 0.0895, 0.0615, 0.0543, 0.0479, 0.0176], [0.1877, 0.1462, 0.129, 0.1005, 0.0887, 0.0609, 0.0475, 0.0254], [0.2353, 0.1833, 0.1617, 0.0674, 0.0674, 0.0361, 0.0318, 0.0318], [0.129, 0.129, 0.129, 0.1138, 0.0782, 0.0419, 0.0419, 0.0224], [0.4941, 0.1818, 0.1249, 0.0358, 0.0192, 0.0192, 0.0192, 0.0192], [0.4552, 0.2436, 0.0698, 0.0291, 0.0257, 0.0257, 0.0227, 0.0227], [0.2822, 0.249, 0.249, 0.0713, 0.063, 0.018, 0.0097, 0.0052], [0.433, 0.2626, 0.0966, 0.0586, 0.0586, 0.0108, 0.0084, 0.0042], [0.3148, 0.1685, 0.1312, 0.0702, 0.062, 0.062, 0.0293, 0.0201]], "ranks": {"Rust": [39345, 78225, 50865, 80867, 23746, 21367, 38264, 36320, 40224, 14456, 8252, 11376, 8762, 11047, 14750, 10744, 10477, 17193, 22730, 52037, 42893, 51609, 43391, 29022, 32282, 39322, 24644, 14186, 15919, 15780, 16519, 12567, 15135, 27624, 18484, 13823, 14901, 11415, 13183, 17739, 15888, 15360, 16609, 17606, 16264, 11355, 10449, 8148, 3839, 4501, 11335, 9834, 6460, 3396, 4282, 3065, 631, 366, 554, 545, 1094, 616, 525]}}, {"pos": 436, "top": [[" \u2013", ".", "\u2013", ",", "a", "\u00a0", "ing", "\u2013and"], [" \u2013", "\u2013", "\u2013and", "ing", "\u00b7", "er", "a", "  "], ["\u2013", ".", ",", " \u2013", "\u2013and", "..", "a", "ing"], ["zinho", "kits", "erweise", "ing", "iest", "\u6700\u65b0\u53d1\u5e03", "enner", "\ub9c1"], ["ing", "kits", "ed", "a", "e", "er", "ers", "ingly"], ["ing", "kits", "ed", "a", "ingly", "zinho", "t", "e"], ["ing", "a", "er", "e", "i", "\u00b7", "t", "--"], ["ing", "a", "i", "iest", "t", "er", "e", "--"], ["ing", "a", "i", "er", "\u00b7", "e", "ness", "ie"], ["ing", "a", "i", "e", "--", "l", "t", "y"], ["ing", "a", "i", "o", "l", "e", "\u00b7", "er"], ["ing", "ness", "craft", "ship", "er", "iest", "ery", "ment"], ["ing", "craft", "ness", "ship", "iest", "ery", "ies", "ings"], ["ing", "craft", "ship", "ness", "ings", "ery", "ies", "kits"], ["ing", "ship", "ness", "craft", "ings", "ers", "ties", "ies"], ["ing", "ship", "ness", "craft", "ers", "kits", "ies", "ings"], ["ing", "ers", "craft", "kits", "ship", "ies", "ness", "a"], ["ing", "kits", "ship", "craft", "ies", "ness", "ings", "ers"], ["ing", "kits", "craft", "ies", "ship", "ings", "ers", "ties"], ["ing", "craft", "kits", "ies", "ings", "ship", "fully", "eer"], ["ing", "a", "e", "i", "craft", "ies", "t", "l"], ["kits", "craft", "ing", "ings", "werk", "ies", "zinho", "edList"], ["kits", "ing", "craft", "``", "ies", "ship", "ties", "tools"], ["ing", "ies", "i", "kits", "work", "a", "craft", "ship"], ["kits", "ing", "craft", "ship", "ies", "ings", "tools", "ties"], ["kits", " *__", "forge", "craft", "tools", "ship", "ronics", "werk"], ["kits", "forge", "tools", "craft", "ship", "ronics", "ware", "werk"], ["kits", "tools", "forge", "craft", "ship", "work", "ware", "ing"], ["kits", "tools", "craft", "ware", "work", "forge", "ship", "kit"], ["kits", "tools", "forge", "ware", "work", "craft", "ies", "kit"], ["kits", "tools", "forge", "ware", "craft", "ies", "kit", "work"], ["kits", "tools", "ware", "forge", "work", "ies", " tools", "craft"], ["craft", "kits", "tools", "ware", "ies", "forge", "ing", "ship"], ["kits", "tools", "forge", "craft", "ware", "tech", " toolkit", "ies"], ["kits", "tools", "craft", "forge", "ware", "tech", "ies", " toolkit"], ["tools", "kits", "forge", "craft", "ware", "ies", "tech", " toolkit"], ["forge", "kits", "tools", "craft", "ware", "Forge", " toolkit", "ies"], ["tools", "forge", "kits", " tools", "craft", "ware", " Tools", " toolkit"], ["tools", "kits", " tools", "forge", "\u5de5\u5177", " Tools", " toolkit", " Toolkit"], ["tools", "kits", "forge", "\u5de5\u5177", " toolkit", " tools", " Tools", "craft"], ["tools", " tools", " toolkit", "forge", " Tools", "kits", "hardware", " hardware"], ["tools", " toolkit", " tools", "forge", "\u5de5\u5177", "-tools", " Tools", "kits"], ["tools", " toolkit", " tools", "kits", "-tools", "forge", " Tools", " Toolkit"], ["tools", " toolkit", " tools", "kits", " Tools", "-tools", " Toolkit", " compilers"], ["tools", " tools", " toolkit", "kits", " kits", "-tools", " libraries", " compilers"], [" tools", "tools", " kits", " libraries", "kits", " toolkit", " compilers", " setups"], [" tools", " setups", " kits", " libraries", "kits", "tools", " toolkit", " complexities"], [" complexities", " setups", " tools", " libraries", " kits", "kits", "tools", " complexes"], [" setups", " complexities", " complexes", "kits", " kits", " libraries", "-tools", " tools"], [" setups", " complexities", " complexes", " libraries", " kits", "kits", " tools", " workflows"], [" setups", " libraries", " complexities", "kits", " hardware", " workflows", " complexes", " toolkit"], [" setups", " libraries", "kits", " complexities", " hardware", " workflows", " packages", " installs"], [" setups", " libraries", "kits", " binaries", " complexities", " installs", " dependencies", " packages"], [" setups", " libraries", "kits", " binaries", " installs", " dependencies", " workflows", "chains"], ["kits", "chains", " setups", " libraries", "/tool", " kits", " workflows", " toolkit"], ["chains", "chain", "kits", "\u94fe", " chains", "-chain", " chaining", "CHAIN"], ["chains", "chain", "\u94fe", " chains", "-chain", " chaining", "CHAIN", "Chain"], ["chains", "chain", "\u94fe", " chains", " chain", "-chain", "Chain", " chaining"], ["chains", "chain", "\u94fe", " chains", " chain", "-chain", "Chain", " chaining"], ["chains", "chain", " chains", "\u94fe", " chain", "-chain", " chaining", "CHAIN"], ["chains", "chain", " chains", " chaining", "\u94fe", " chain", "-chain", "CHAIN"], ["chains", "chain", " chains", " chaining", " chain", "-chain", "\u94fe", " Chains"], ["chains", "chain", " chains", "ch", "kits", " chaining", "ing", "sets"]], "p": [[0.5396, 0.3273, 0.0534, 0.0286, 0.0144, 0.0047, 0.0023, 0.0022], [0.2722, 0.2722, 0.1457, 0.0536, 0.0163, 0.0064, 0.006, 0.0041], [0.6475, 0.1125, 0.0682, 0.0531, 0.0322, 0.0184, 0.0111, 0.0092], [0.0375, 0.0214, 0.0114, 0.0095, 0.0048, 0.0042, 0.0035, 0.0031], [0.8217, 0.0299, 0.0206, 0.0182, 0.0086, 0.0055, 0.0046, 0.0041], [0.6662, 0.0483, 0.0258, 0.0189, 0.0089, 0.0074, 0.0048, 0.0045], [0.8833, 0.0342, 0.0081, 0.0076, 0.0067, 0.0056, 0.0053, 0.0041], [0.9217, 0.0102, 0.0085, 0.0048, 0.004, 0.0038, 0.0038, 0.0024], [0.906, 0.0107, 0.0101, 0.0057, 0.0048, 0.0045, 0.0039, 0.0033], [0.6016, 0.0814, 0.0814, 0.0219, 0.0206, 0.0182, 0.016, 0.011], [0.6503, 0.088, 0.0777, 0.0153, 0.0153, 0.0135, 0.0099, 0.0093], [0.7608, 0.023, 0.023, 0.0131, 0.0102, 0.0085, 0.0075, 0.0075], [0.3053, 0.064, 0.0565, 0.0322, 0.0322, 0.0235, 0.0195, 0.0183], [0.6903, 0.0344, 0.0344, 0.0208, 0.0119, 0.0098, 0.0082, 0.0077], [0.5383, 0.0935, 0.0344, 0.0344, 0.0163, 0.0112, 0.0099, 0.0087], [0.6618, 0.0373, 0.0226, 0.0188, 0.0188, 0.0188, 0.0176, 0.0078], [0.8181, 0.015, 0.0103, 0.0103, 0.0103, 0.008, 0.0075, 0.0062], [0.4481, 0.1284, 0.0503, 0.0368, 0.0253, 0.0163, 0.0144, 0.0127], [0.3979, 0.1006, 0.0446, 0.037, 0.0198, 0.0113, 0.0088, 0.0078], [0.1889, 0.0576, 0.0576, 0.0212, 0.0165, 0.0137, 0.0113, 0.0094], [0.194, 0.0522, 0.0382, 0.0382, 0.0232, 0.0159, 0.015, 0.015], [0.0945, 0.042, 0.0271, 0.0094, 0.0094, 0.0073, 0.0068, 0.006], [0.0794, 0.0546, 0.0375, 0.0189, 0.0147, 0.0114, 0.0114, 0.0101], [0.2016, 0.051, 0.035, 0.0309, 0.0256, 0.0226, 0.0188, 0.0188], [0.0644, 0.0442, 0.0324, 0.0252, 0.0196, 0.0163, 0.0153, 0.0153], [0.0864, 0.0248, 0.0205, 0.0181, 0.016, 0.0097, 0.0091, 0.008], [0.0947, 0.0395, 0.0307, 0.0211, 0.0128, 0.0113, 0.0113, 0.0113], [0.085, 0.075, 0.0377, 0.0377, 0.0313, 0.0294, 0.0276, 0.019], [0.126, 0.1112, 0.0464, 0.0409, 0.0384, 0.0361, 0.0248, 0.0233], [0.1027, 0.0706, 0.0333, 0.0313, 0.026, 0.0244, 0.0229, 0.019], [0.1133, 0.0535, 0.0392, 0.0392, 0.0305, 0.0287, 0.0223, 0.0223], [0.0658, 0.0481, 0.0399, 0.0375, 0.0375, 0.0375, 0.0242, 0.0227], [0.0593, 0.0524, 0.0434, 0.0408, 0.0408, 0.0338, 0.028, 0.0218], [0.0878, 0.0684, 0.0533, 0.05, 0.0323, 0.0268, 0.0222, 0.0135], [0.1047, 0.0924, 0.0635, 0.0385, 0.0362, 0.0234, 0.022, 0.0133], [0.1154, 0.1018, 0.0793, 0.0375, 0.0274, 0.0188, 0.0166, 0.0129], [0.1348, 0.1189, 0.0926, 0.0301, 0.0207, 0.0171, 0.0161, 0.0125], [0.1636, 0.0823, 0.0641, 0.0208, 0.0184, 0.0184, 0.0184, 0.0172], [0.3248, 0.0681, 0.0564, 0.044, 0.0413, 0.0322, 0.0322, 0.0111], [0.1682, 0.0619, 0.0513, 0.0375, 0.0275, 0.0228, 0.0201, 0.0108], [0.33, 0.0539, 0.0475, 0.037, 0.0307, 0.0211, 0.0154, 0.0154], [0.444, 0.0874, 0.0564, 0.0267, 0.0235, 0.0183, 0.0162, 0.0143], [0.4205, 0.1205, 0.0535, 0.0345, 0.0269, 0.0253, 0.0197, 0.0153], [0.3198, 0.1712, 0.067, 0.0317, 0.0263, 0.0204, 0.0204, 0.0159], [0.2612, 0.1795, 0.0961, 0.0514, 0.0312, 0.0228, 0.0157, 0.0138], [0.2559, 0.0941, 0.0831, 0.0689, 0.0536, 0.0306, 0.027, 0.0238], [0.1597, 0.0803, 0.0803, 0.0709, 0.0552, 0.0458, 0.0261, 0.0245], [0.115, 0.0895, 0.079, 0.051, 0.051, 0.0329, 0.0329, 0.0273], [0.126, 0.126, 0.0559, 0.0339, 0.0248, 0.0219, 0.0181, 0.0181], [0.2928, 0.0951, 0.0478, 0.0256, 0.024, 0.024, 0.0146, 0.0114], [0.2344, 0.0593, 0.036, 0.0298, 0.0181, 0.017, 0.016, 0.015], [0.2025, 0.0957, 0.0352, 0.0242, 0.0227, 0.0166, 0.0138, 0.0114], [0.3381, 0.0855, 0.0314, 0.023, 0.0216, 0.0203, 0.0203, 0.0123], [0.3215, 0.0633, 0.0595, 0.0264, 0.0248, 0.0233, 0.0193, 0.017], [0.7732, 0.0385, 0.016, 0.0125, 0.0076, 0.0076, 0.0063, 0.0049], [0.742, 0.2409, 0.0044, 0.0034, 0.0027, 0.0011, 0.001, 0.0004], [0.5834, 0.4009, 0.0094, 0.0024, 0.0013, 0.0005, 0.0005, 0.0005], [0.555, 0.4322, 0.0062, 0.0048, 0.0006, 0.0005, 0.0003, 0.0002], [0.724, 0.2663, 0.0049, 0.0038, 0.0004, 0.0003, 0.0001, 0.0001], [0.7192, 0.2646, 0.0116, 0.0026, 0.0011, 0.0005, 0.0002, 0.0001], [0.9303, 0.0595, 0.0091, 0.0005, 0.0002, 0.0002, 0.0001, 0.0], [0.9504, 0.0418, 0.0073, 0.0002, 0.0002, 0.0001, 0.0001, 0.0], [0.9849, 0.0124, 0.0019, 0.0003, 0.0001, 0.0001, 0.0001, 0.0]], "ranks": {"Rust": [49266, 79296, 64542, 38441, 34987, 39086, 23173, 20560, 10186, 11061, 10724, 5723, 3209, 3971, 5459, 3823, 5792, 5628, 9605, 9366, 24869, 3691, 3096, 4943, 1098, 1048, 1627, 2825, 2896, 4123, 6002, 3942, 4013, 4788, 3228, 2024, 515, 422, 567, 1505, 1394, 1072, 1322, 1405, 2621, 1848, 2115, 1649, 1675, 1263, 3030, 2740, 1707, 881, 798, 566, 156, 199, 166, 113, 159, 365, 289]}}, {"pos": 437, "top": [[".", " \u2013", "..", " ", "..\"", "\u2026.", "\u2026", "\u2013"], [" Insg", "__[", "rysler", "laves", "..\"", " Hannity", "alyzer", " VH"], ["\u2013", "..", "\u2026..", " \u2013", "..\"", "\u2013and", " \u2013,", "\u2026."], ["``", " ``", " ``(", "__:", "*\u201c.", " Shemale", " Blowjob", " \\\"$"], [" \\\"$", " (@", " [@", " [#", " [$", "#\\", "..\\", ":@"], ["__:", "..\\", " \n \n", "__[", "..\"", "   \n", " Insg", "\u3002\u3002"], ["..\"", "   \n", "..", "\u3002\u3002", " ..", "  \n", " [$", " \n \n"], ["..\"", "__[", " ..", " [#", "__.", " ~~", "..\\", "__:"], [" [#", " [$", "..\"", " [&", "   \n\n", "__.", "__[", "\\\\."], [" [$", "__[", "--[", "\u2013and", " [#", "\\\\.", " \n \n", "__."], [" [@", " [#", " [$", " __", "__[", "__.", ".[", "\\\\."], [" methodologies", " pivotal", " ~~", " [`", " ``", " __", "__[", " $__"], [" disparate", " methodologies", " pivotal", " transformative", " seamlessly", " __", "__[", " orchestr"], [" disparate", " pivotal", " transformative", " methodologies", " swiftly", " seamlessly", " myriad", " arguably"], [" heavily", " myriad", " swiftly", " disparate", " pivotal", " --", " arguably", " alongside"], [" myriad", " disparate", " swiftly", " bolster", " arguably", " requisite", " --", " entirety"], [" myriad", " disparate", " swiftly", " bolster", " heavily", " arguably", " overarching", " pivotal"], [" disparate", " heavily", " methodologies", " seamlessly", " myriad", " overarching", " transformative", " sprawling"], [" myriad", " disparate", " swiftly", " heavily", " arguably", " seamlessly", " overarching", " sprawling"], [" --", " swiftly", " myriad", " disparate", " arguably", " heavily", " alongside", " amid"], [" --", " swiftly", " myriad", " heavily", " alongside", " vastly", " ultimately", " burgeoning"], [" ``", " --", " swiftly", " disparate", " myriad", " amid", " heavily", " ``("], [" ``", " --", " __", " swiftly", " myriad", " heavily", " disparate", " ``("], [" --", " ``", " swiftly", " heavily", " myriad", " ultimately", " ,", " __"], [" --", " __", " ___", " ``", " myriad", " swiftly", " heavily", " requisite"], [" __", " ___", " --", " *__", ".__", " ``", " (__", " ---"], [" __", " --", " ___", " ``", " *__", ".__", " disparate", " heavily"], [" __", " --", " ___", " ,", " _", " heavily", " ``", " myriad"], [" __", " --", " ___", " ,", " _", " heavily", " myriad", " disparate"], [" __", " ___", " --", " ,", " .", " ____", "__.", ".__"], [" __", " .", " ___", " ,", " ...", " --", " ..", " for"], [" __", " ___", " ...", " ____", " --", " ______", " **", " ."], [" __", " .", " ___", " ,", " --", " for", " heavily", " ____"], [" heavily", " deeply", " meticulously", " modern", " rapidly", " .", " aggressively", " specialized"], [" heavily", " meticulously", " deeply", " rapidly", " aggressively", " notoriously", " specialized", " for"], [" \u2014", " heavily", " notoriously", " aggressively", " for", " overseas", " increasingly", " meticulously"], [" heavily", " \u2014", " notoriously", " expensive", " aggressively", "\u2014and", " seamlessly", " sprawling"], [" expensive", " heavily", " notoriously", " cheap", " costly", " rapidly", " seamlessly", " for"], [" expensive", " heavily", " notoriously", " seamlessly", " meticulously", " costly", " hardware", " rapidly"], [" expensive", " costly", " hardware", " heavily", " notoriously", " sophisticated", " cheap", " complex"], [" expensive", " hardware", " tools", " software", " technology", " for", " tech", " labor"], [" hardware", " expensive", " tools", " software", " costly", " heavily", " technology", " workflows"], [" hardware", " expensive", " tools", " software", " specialized", " costly", " commercially", " proprietary"], [" hardware", " expensive", " tools", " software", " costly", " workflows", " labor", " complex"], [" expensive", " hardware", " costly", " tools", " workflows", " complex", " software", " cheap"], [" expensive", " hardware", " costly", " tools", " heavily", " cumbersome", " complex", " cheap"], [" expensive", " easily", " costly", " hardware", " cheap", " cumbersome", " anywhere", " complex"], [" expensive", " easily", " costly", " cumbersome", " cheap", " anymore", " anywhere", " complex"], [" expensive", " easily", " cumbersome", " costly", " cheap", " hardware", " anymore", " unless"], [" easily", " expensive", " cheap", " setups", "-heavy", " costly", " cumbersome", " hardware"], [" easily", " reliably", "-heavy", " hardware", " expensive", " cleanly", " setups", ";**"], [" easily", " reliably", ";**", " cleanly", " anymore", " hardware", " expensive", "-heavy"], [" reliably", " easily", " readily", ";**", " reliable", " cleanly", " for", " expensive"], [" reliably", " for", " easily", " reliable", " (${", " anymore", " cleanly", " readily"], [" easily", " reliably", " being", " anymore", " readily", " effortlessly", " needing", " for"], [" easily", " reliably", " for", " readily", " anymore", " effortlessly", " being", " efficiently"], [" easily", " readily", " reliably", " effortlessly", "\u8f7b\u6613", " Easily", " \u0628\u0633\u0647\u0648\u0644\u0629", " being"], [" easily", " readily", " reliably", " effortlessly", " being", " running", " for", "\u8f7b\u6613"], [" easily", " for", " readily", " effortlessly", " reliably", " being", "\u8f7b\u6613", " easy"], [" easily", " for", " being", " readily", " effortlessly", " running", " reliably", " efficiently"], [" easily", " for", " being", " readily", " effortlessly", " reliably", " running", " cached"], [" easily", " for", " being", " running", " that", " readily", " reliably", " spinning"], [" for", " easily", " that", " being", " running", " spinning", " reliably", " caching"]], "p": [[0.2275, 0.1469, 0.0837, 0.0652, 0.0477, 0.0371, 0.0255, 0.0212], [0.0166, 0.0156, 0.0121, 0.0083, 0.0078, 0.0069, 0.0061, 0.0057], [0.2042, 0.2042, 0.1238, 0.1027, 0.0851, 0.0313, 0.0244, 0.0229], [0.1804, 0.1094, 0.0852, 0.0244, 0.0179, 0.0131, 0.0115, 0.009], [0.0832, 0.0537, 0.0288, 0.0254, 0.0238, 0.021, 0.0145, 0.0136], [0.0258, 0.0157, 0.0138, 0.0122, 0.0101, 0.0095, 0.0079, 0.0061], [0.2849, 0.0386, 0.0362, 0.032, 0.03, 0.022, 0.022, 0.0151], [0.1706, 0.0459, 0.0381, 0.0316, 0.0296, 0.0231, 0.0231, 0.0217], [0.1169, 0.1098, 0.091, 0.043, 0.043, 0.0335, 0.0335, 0.0295], [0.0441, 0.0343, 0.0236, 0.0173, 0.0152, 0.0152, 0.0143, 0.0112], [0.0647, 0.0392, 0.0346, 0.0287, 0.0238, 0.0238, 0.0197, 0.0164], [0.0337, 0.0247, 0.017, 0.0159, 0.015, 0.0141, 0.0132, 0.0103], [0.0312, 0.0275, 0.0178, 0.0167, 0.0115, 0.0101, 0.0095, 0.0084], [0.0452, 0.0399, 0.0375, 0.0274, 0.0214, 0.0201, 0.0166, 0.0147], [0.0416, 0.0304, 0.0269, 0.0269, 0.0252, 0.0237, 0.0237, 0.0209], [0.0697, 0.0615, 0.0543, 0.0479, 0.0329, 0.0241, 0.0188, 0.0188], [0.0669, 0.059, 0.0358, 0.0316, 0.0297, 0.0231, 0.018, 0.0149], [0.0313, 0.0179, 0.0179, 0.0168, 0.0139, 0.0131, 0.0123, 0.0123], [0.0401, 0.0401, 0.0333, 0.0276, 0.0243, 0.0215, 0.0148, 0.013], [0.0585, 0.0485, 0.0428, 0.0277, 0.0229, 0.019, 0.0131, 0.0115], [0.0967, 0.0908, 0.0586, 0.0244, 0.023, 0.019, 0.0148, 0.0131], [0.0691, 0.0224, 0.0186, 0.0154, 0.0093, 0.0088, 0.0082, 0.0068], [0.2369, 0.1529, 0.0321, 0.0235, 0.0126, 0.0118, 0.0111, 0.0086], [0.3479, 0.0644, 0.0252, 0.0209, 0.0184, 0.0184, 0.0144, 0.0119], [0.3903, 0.1732, 0.0301, 0.0194, 0.0125, 0.0118, 0.0086, 0.0076], [0.4138, 0.1954, 0.0983, 0.0635, 0.0104, 0.0086, 0.0067, 0.0038], [0.2932, 0.1013, 0.0789, 0.02, 0.0187, 0.0107, 0.0094, 0.0089], [0.2695, 0.2695, 0.0822, 0.0468, 0.0236, 0.0098, 0.0067, 0.006], [0.3747, 0.2135, 0.0836, 0.0211, 0.0094, 0.0088, 0.0073, 0.0061], [0.6781, 0.1335, 0.0205, 0.0132, 0.0097, 0.0091, 0.0071, 0.0055], [0.3488, 0.1648, 0.0778, 0.0606, 0.0237, 0.0223, 0.0197, 0.0144], [0.6319, 0.2052, 0.0168, 0.0149, 0.014, 0.009, 0.0066, 0.0066], [0.2201, 0.1178, 0.0715, 0.0715, 0.0382, 0.017, 0.0159, 0.0117], [0.0659, 0.0189, 0.0177, 0.0177, 0.0167, 0.013, 0.013, 0.013], [0.0824, 0.0222, 0.0184, 0.0173, 0.0162, 0.0143, 0.0134, 0.0134], [0.0627, 0.0488, 0.0261, 0.0204, 0.0204, 0.0204, 0.0159, 0.0123], [0.0654, 0.0478, 0.0449, 0.0309, 0.0241, 0.0187, 0.0165, 0.0155], [0.1042, 0.0594, 0.0338, 0.0247, 0.0193, 0.0193, 0.016, 0.016], [0.119, 0.0411, 0.0341, 0.0234, 0.0194, 0.0194, 0.0183, 0.0171], [0.2432, 0.0329, 0.0309, 0.0213, 0.02, 0.02, 0.0188, 0.0176], [0.2001, 0.1558, 0.037, 0.0288, 0.0271, 0.0239, 0.0211, 0.0211], [0.2811, 0.1505, 0.0554, 0.0405, 0.0217, 0.0169, 0.014, 0.0124], [0.2509, 0.143, 0.0494, 0.0248, 0.0182, 0.0182, 0.0142, 0.0142], [0.2293, 0.1678, 0.0424, 0.0257, 0.02, 0.0129, 0.0122, 0.0114], [0.2936, 0.1015, 0.0373, 0.0291, 0.0146, 0.0137, 0.0129, 0.0114], [0.2596, 0.0744, 0.033, 0.033, 0.0177, 0.0177, 0.0177, 0.0166], [0.3426, 0.0525, 0.0464, 0.0339, 0.0281, 0.0248, 0.0171, 0.0103], [0.307, 0.0826, 0.0415, 0.0286, 0.0252, 0.0237, 0.0163, 0.0163], [0.1698, 0.0665, 0.0625, 0.0486, 0.0379, 0.0277, 0.026, 0.0216], [0.2261, 0.1761, 0.0418, 0.0326, 0.0306, 0.0254, 0.0238, 0.0186], [0.084, 0.084, 0.0479, 0.045, 0.0423, 0.0397, 0.0309, 0.0256], [0.2464, 0.1164, 0.0706, 0.0623, 0.026, 0.0244, 0.0244, 0.0157], [0.482, 0.258, 0.0289, 0.0255, 0.024, 0.0212, 0.0146, 0.0069], [0.401, 0.1475, 0.0895, 0.0273, 0.0273, 0.0176, 0.01, 0.0083], [0.4084, 0.2807, 0.0278, 0.0216, 0.0179, 0.0149, 0.014, 0.0123], [0.5703, 0.0772, 0.0468, 0.0388, 0.0235, 0.0195, 0.0134, 0.0076], [0.9228, 0.0149, 0.0103, 0.007, 0.0026, 0.0021, 0.0017, 0.0016], [0.875, 0.016, 0.016, 0.0097, 0.0097, 0.0076, 0.0071, 0.0038], [0.9277, 0.0193, 0.0103, 0.0049, 0.0043, 0.0028, 0.0024, 0.002], [0.8337, 0.0684, 0.0252, 0.0082, 0.0077, 0.0041, 0.0041, 0.0022], [0.6223, 0.2594, 0.0351, 0.0074, 0.0069, 0.0065, 0.0048, 0.0027], [0.556, 0.3372, 0.019, 0.0131, 0.0062, 0.0058, 0.0045, 0.0035], [0.707, 0.1229, 0.0352, 0.0311, 0.0214, 0.0074, 0.0045, 0.0045]], "ranks": {"Rust": [85296, 128752, 82551, 110156, 45791, 30489, 71569, 54394, 60928, 29312, 9893, 16817, 10150, 11796, 20074, 20115, 13395, 23822, 33844, 81861, 62119, 63493, 51992, 25433, 26040, 29689, 13989, 7648, 7001, 7832, 9397, 6917, 7238, 9697, 14694, 6557, 9404, 8055, 8128, 13347, 11156, 8012, 8544, 8597, 7665, 5793, 5583, 3529, 1673, 1390, 5816, 4696, 10215, 8121, 9491, 5661, 1870, 1020, 449, 649, 426, 289, 389]}}, {"pos": 438, "top": [[".", ",", ";", "\u00a0", "\u00a0\u00a0", "\u2026.", "\u2013", "?"], ["\u2011", "  \n\n", ".", "\uff0e", "  \n", "\u2013", "\u201d?", "\uff0d"], ["\u2026.", "\u2026", ".", "\u2026..", "\u2013", ",", "\u2026\u2026", "\u3002"], ["\uff3f\uff3f", "----------</", "---</", "\uff0a\uff0a\uff0a\uff0a", " milfs", "----</", "-------------</", "\uff0d\uff0d\uff0d\uff0d"], ["_____", " **\u201c", "\uff20", "\\xc", " $$$", "\u201d\u2026", " \u2019", " \uff3b"], ["\u2026.", "\u00a0\u00a0\u00a0\u00a0", " **\u201c", "_____", "\u2026..", "\u2026**", "!\u2019", "\u201d\u2026"], ["_____", "  \n\n", "\uff3b", " \uff3b", "\u201d?", "\u201d\u2014", "\u2019**", " _____"], ["  \n\n", "_____", " \uff3b", " _____", "\uff3b", "\\xc", "\t  ", "\t  \n"], ["  \n\n", "\uff3b", "\u2026\u201d", ".\u201d", " \uff3b", "\u2026.", "!\u201d", "...\u201d"], [",", "\u2026.", "\u2014but", " \u00ad", "\\xc", "\u2014and", "\u2026", "\u2014for"], [" \u00ad", "\u2026", ",", "\u2014", "\u00ad", "\u00a0", "-", "1"], [" \u00ad", "\\xc", " _____", " **", " $$$", "\u00ading", " ***", "\u2014and"], ["\\xc", " \u00ad", "\u2014even", "\u00ading", "\u2014and", "\u2014or", " goodies", " **"], [" \u00ad", "\u2014even", " savvy", "\u2014and", " resources", "\u2014or", " goodies", "\u2014for"], [" \u00ad", "\u2014even", " savvy", "  \n\n", "\u2014or", "\u2014and", "\u00ad", " myriad"], [" \u00ad", " savvy", " folks", " myriad", " hefty", "\u2014even", " \u2019", " goodies"], [" \u00ad", " myriad", " hefty", " savvy", " plenty", " folks", " \u201c", "  \n\n"], [" \u00ad", " hefty", " savvy", " goodies", "  \n\n", " stuff", "\u2014even", " plenty"], ["\u2014even", "\u2014or", " \u00ad", " hefty", "\u2014for", "\u2014and", " savvy", " myriad"], ["\u2014even", " \u00ad", "\u2014or", " myriad", "\u2014and", " hefty", "\u2014for", "\u5373\u4fbf"], ["  \n\n", "<|endoftext|>", " \u00ad", " myriad", " \n\n", "\u2014even", "\u2014or", "\u2014and"], [" \u0627\u0631\u0627\u0626", " ;;^", " pricey", "\u54ea\u6015\u662f", " hefty", "\u751a\u81f3\u4f1a", "\u2014even", "\u6210\u529f\u540e\u5373\u53ef"], [" myriad", " massively", " ''", " even", "\u2014even", " hefty", " {{--<", " arguably"], [" much", " even", " myriad", " ,", " \u00ad", " ultimately", " both", " arguably"], [" myriad", " {{--<", " requisite", " \u00ad", " \r\n\r\n", "\u5373\u4fbf", " arguably", "  \n\n"], [" hardware", " industrial", " technologies", " ;;^", " weaponry", " engineering", " technology", " massively"], [" industrial", " hardware", " production", " technology", " engineering", " technologies", " resources", " infrastructure"], [" ,", " production", " industrial", " ___", " hardware", " even", " resources", " --"], [" hardware", " industrial", " technology", " production", " technologies", " infrastructure", " resources", " tools"], [" technology", " production", " hardware", " industrial", " technologies", " infrastructure", " resources", " complex"], [" ...", " .", " technology", " complex", " production", " ,", " industrial", " projects"], [" .", " ...", " ,", " complex", " technology", " production", " even", " projects"], [" complex", " .", " ,", " technology", " even", " future", " projects", " massive"], [" complex", " hardware", " technology", " technologies", " infrastructure", " tech", " technical", " projects"], [" complex", " hardware", " **", " technology", " technologies", " tech", " massive", " infrastructure"], [" complex", " hardware", " overseas", "complex", " technologies", " **\u201c", " technology", " tech"], [" hardware", " complex", " technologies", "complex", "hardware", " tech", " peripherals", " exotic"], [" hardware", " complex", "hardware", "complex", " tech", " technologies", " Hardware", " software"], [" hardware", " complex", "hardware", " macOS", "complex", " Hardware", " iOS", "Hardware"], [" hardware", " Android", " iOS", " complex", "hardware", " exotic", "complex", " macOS"], [" hardware", " Android", " iOS", "Android", "hardware", " iPhones", " iPhone", " technologies"], [" Android", " hardware", " iOS", "Android", " iPhone", " iPhones", " technologies", "hardware"], [" Android", " hardware", " iOS", " technologies", "Android", "-android", " iPhones", " iPhone"], [" Android", " hardware", " iOS", " technologies", "Android", "-android", " iPhones", "hardware"], [" Android", " iOS", " hardware", " technologies", " iPhones", " platforms", "Android", " architectures"], [" iOS", " Android", " hardware", " technologies", " architectures", " overseas", " iPhones", " platforms"], [" hardware", " diverse", " technologies", " iOS", " Android", " architectures", " complex", " platforms"], [" diverse", " hardware", " Android", " iOS", " technologies", " complex", " specific", " multiple"], [" hardware", " diverse", " iOS", " Android", " technologies", " platforms", " overseas", " complex"], ["\u591a\u56fd", " Android", " hardware", " iOS", " diverse", "-android", "\u6e2f\u6fb3\u53f0", "hardware"], ["\u591a\u56fd", " hardware", " Android", " iOS", "hardware", "-android", "\u590d\u6742\u7684", "_ANDROID"], [" Android", " hardware", "-android", " iOS", "Android", "hardware", " GPUs", "_ANDROID"], [" Android", "-android", "Android", " hardware", " iOS", "_ANDROID", "/android", "hardware"], [" Android", "Android", "-android", " iOS", "/android", " hardware", "_ANDROID", ".Android"], [" Android", "Android", " iOS", "-android", "/android", "(Android", "_ANDROID", " macOS"], [" Android", "Android", "-android", " iOS", "/android", " android", "_android", ".android"], [" Android", "Android", "-android", " ARM", " android", "_android", "/android", ".android"], [" Android", "Android", "-android", " android", "_android", "/android", " ARM", ".android"], [" Android", "Android", " ARM", "-android", " android", "_android", "/android", ".android"], [" Android", "Android", " android", "-android", " ARM", "_android", "/android", ".android"], [" Android", "Android", " mobile", "-android", " ARM", " android", "_android", " iOS"], [" Android", " ARM", " mobile", "Android", " iOS", "-android", " android", "_android"], [" Android", " ARM", " mobile", " iOS", "Android", " plugins", " macOS", " Mobile"]], "p": [[0.5813, 0.3995, 0.0044, 0.0044, 0.0035, 0.0017, 0.0012, 0.0011], [0.165, 0.0127, 0.0077, 0.0077, 0.0073, 0.0073, 0.0056, 0.0047], [0.2866, 0.197, 0.1195, 0.1054, 0.0771, 0.0439, 0.0162, 0.0098], [0.0146, 0.0078, 0.0073, 0.0073, 0.0069, 0.0069, 0.0065, 0.0024], [0.0197, 0.0106, 0.0106, 0.0088, 0.0082, 0.0077, 0.0077, 0.0068], [0.1499, 0.023, 0.0191, 0.0191, 0.0168, 0.0158, 0.0158, 0.0148], [0.4335, 0.1498, 0.0403, 0.0295, 0.0179, 0.0168, 0.0116, 0.0116], [0.3456, 0.1969, 0.0364, 0.0321, 0.0195, 0.0162, 0.0126, 0.0098], [0.5377, 0.05, 0.047, 0.0441, 0.0285, 0.0251, 0.0236, 0.0208], [0.0541, 0.0478, 0.0372, 0.0309, 0.024, 0.0226, 0.0212, 0.0165], [0.0874, 0.0821, 0.06, 0.0413, 0.0342, 0.0302, 0.0284, 0.0284], [0.058, 0.0451, 0.0242, 0.0095, 0.0095, 0.0095, 0.0089, 0.0083], [0.0381, 0.0204, 0.018, 0.0102, 0.0096, 0.007, 0.0066, 0.0062], [0.0355, 0.0313, 0.0131, 0.0123, 0.009, 0.009, 0.0079, 0.0054], [0.1473, 0.0165, 0.0165, 0.0129, 0.0121, 0.0107, 0.0073, 0.0073], [0.1268, 0.0172, 0.0142, 0.0142, 0.0142, 0.0111, 0.0104, 0.0086], [0.0457, 0.0179, 0.0096, 0.0084, 0.0062, 0.0051, 0.0048, 0.0042], [0.0137, 0.0129, 0.0107, 0.0094, 0.0051, 0.0048, 0.0048, 0.0048], [0.0273, 0.0176, 0.0146, 0.0094, 0.0078, 0.0073, 0.0057, 0.0035], [0.0211, 0.0164, 0.0145, 0.0078, 0.006, 0.0053, 0.0034, 0.0032], [0.0767, 0.0677, 0.0118, 0.0063, 0.0049, 0.0049, 0.0041, 0.0034], [0.0036, 0.002, 0.0018, 0.0016, 0.0012, 0.001, 0.0009, 0.0009], [0.0032, 0.0017, 0.0017, 0.0017, 0.0016, 0.0016, 0.0015, 0.0015], [0.0066, 0.0048, 0.0045, 0.004, 0.0033, 0.0031, 0.0026, 0.0019], [0.0032, 0.0028, 0.0024, 0.0022, 0.0021, 0.0019, 0.0019, 0.0017], [0.0036, 0.0034, 0.0032, 0.0032, 0.0028, 0.0021, 0.0021, 0.0019], [0.0076, 0.0067, 0.0063, 0.0053, 0.0049, 0.0049, 0.0044, 0.0041], [0.0143, 0.0087, 0.006, 0.006, 0.005, 0.0047, 0.0039, 0.0036], [0.0212, 0.0146, 0.0146, 0.0146, 0.0113, 0.0073, 0.0069, 0.0057], [0.0595, 0.0361, 0.0339, 0.0281, 0.0248, 0.0193, 0.016, 0.016], [0.164, 0.1541, 0.0268, 0.0209, 0.0184, 0.0162, 0.0153, 0.0112], [0.1824, 0.0592, 0.0382, 0.0263, 0.0205, 0.0132, 0.011, 0.0091], [0.0342, 0.0266, 0.0207, 0.0172, 0.0172, 0.0134, 0.0126, 0.0098], [0.1289, 0.0446, 0.0419, 0.0306, 0.021, 0.021, 0.0186, 0.0154], [0.2183, 0.0379, 0.0158, 0.014, 0.014, 0.0123, 0.0123, 0.0116], [0.1303, 0.1225, 0.0257, 0.0166, 0.0166, 0.0107, 0.0101, 0.0083], [0.2951, 0.09, 0.0228, 0.0189, 0.0156, 0.0114, 0.0101, 0.0101], [0.4345, 0.0588, 0.0245, 0.0149, 0.0116, 0.0116, 0.0102, 0.0096], [0.56, 0.0628, 0.0358, 0.0192, 0.0159, 0.0124, 0.0096, 0.008], [0.3639, 0.0673, 0.0558, 0.0463, 0.0281, 0.017, 0.017, 0.016], [0.4144, 0.1524, 0.0767, 0.0265, 0.022, 0.0182, 0.0182, 0.0133], [0.3833, 0.2325, 0.1244, 0.0588, 0.0131, 0.0109, 0.0102, 0.009], [0.3351, 0.2032, 0.1233, 0.0258, 0.0258, 0.0201, 0.013, 0.0095], [0.247, 0.218, 0.0909, 0.0457, 0.0131, 0.0123, 0.0109, 0.0109], [0.1601, 0.11, 0.0912, 0.0431, 0.0231, 0.0149, 0.0131, 0.0123], [0.0851, 0.0851, 0.0751, 0.0378, 0.019, 0.0168, 0.0157, 0.0123], [0.1024, 0.0704, 0.0584, 0.0427, 0.0333, 0.0259, 0.0178, 0.0122], [0.0898, 0.0898, 0.0481, 0.0452, 0.0374, 0.0213, 0.0213, 0.0156], [0.0647, 0.0608, 0.0536, 0.0473, 0.027, 0.0238, 0.0185, 0.0144], [0.0476, 0.042, 0.042, 0.0307, 0.0225, 0.01, 0.0088, 0.0083], [0.0471, 0.0304, 0.0286, 0.0197, 0.0173, 0.0153, 0.0105, 0.0093], [0.4664, 0.0557, 0.0434, 0.0434, 0.0434, 0.0205, 0.0124, 0.0117], [0.5421, 0.0571, 0.0445, 0.0418, 0.0287, 0.0144, 0.0136, 0.0099], [0.8457, 0.0613, 0.0255, 0.0121, 0.0083, 0.0057, 0.005, 0.0039], [0.9069, 0.0398, 0.0213, 0.0129, 0.0022, 0.0014, 0.0014, 0.0012], [0.9565, 0.0255, 0.0083, 0.0034, 0.0018, 0.0009, 0.0009, 0.0005], [0.9758, 0.0108, 0.0051, 0.0019, 0.0017, 0.0013, 0.0011, 0.0008], [0.9781, 0.0096, 0.0045, 0.0017, 0.0015, 0.0013, 0.0013, 0.0008], [0.9786, 0.0066, 0.0051, 0.0035, 0.0019, 0.0017, 0.0007, 0.0006], [0.9894, 0.0052, 0.0015, 0.0013, 0.0012, 0.0006, 0.0002, 0.0002], [0.9951, 0.0025, 0.0012, 0.0003, 0.0003, 0.0002, 0.0002, 0.0001], [0.9887, 0.0059, 0.0022, 0.0013, 0.0006, 0.0003, 0.0003, 0.0001], [0.9755, 0.0158, 0.0051, 0.0017, 0.0004, 0.0003, 0.0002, 0.0001]], "ranks": {"Rust": [74703, 183012, 158960, 121324, 27890, 64263, 135282, 91093, 80963, 52445, 24576, 26776, 17536, 16900, 30701, 15305, 20716, 71841, 93315, 59234, 67533, 71833, 50814, 21096, 14676, 14156, 5009, 5291, 3779, 5632, 6673, 8194, 6880, 13112, 9066, 6703, 2363, 2093, 3729, 16376, 18688, 14739, 20788, 29936, 26991, 18037, 21642, 14694, 17776, 22746, 27659, 19630, 5105, 2157, 1367, 795, 78, 79, 67, 75, 99, 80, 26]}}, {"pos": 439, "top": [["s", "a", ".", "o", ",", "i", "er", "\u201d."], ["s", "sWith", "  \n\n", "\u201d.", "\u201d,", "a", "  \r\n", "erweise"], ["s", ".", ",", "\u2026.", "\u2026", "\u2013", " \u2013", "\u201d,"], ["sWith", "sik", "s", "szeit", "erweise", "sze", "schaft", "sver"], ["s", "sWith", "ed", "a", "sik", "s\u00f3", "sche", "sver"], ["s", "sWith", "a", "s\u00f3", "ed", "sver", "(Android", "sik"], ["s", "a", "sWith", " Android", "(Android", ".", " \u00bb.", "\u0627\u062a"], ["s", "sWith", "(Android", " Android", "sik", "sak", ".Android", "sburg"], ["s", ".", "!\u201d.", "(Android", " \u00bb.", "\u201d.", ",", "sWith"], ["s", ",", "(Android", " Android", ".", ".Android", "s\u00f3", "sak"], ["s", ",", " Android", ".", "a", "(Android", ".Android", "..."], ["s", " Android", "(Android", ".Android", "sak", "(android", " android", "sWith"], ["s", " Android", "(Android", ".Android", "sak", "sWith", "(android", "\u76f8\u8f85\u76f8\u6210"], ["s", " Android", "(Android", ".Android", ",", "sak", "(android", " android"], ["s", ",", " Android", ".Android", "-style", " Africa", "a", "(android"], ["s", " Android", ",", ".Android", "\u51ed\u501f\u7740", "a", "(Android", "sak"], ["s", ",", " Android", ".Android", "a", "(Android", "sWith", " android"], ["s", " Android", "(Android", ".Android", "sWith", "sak", ".google", " android"], ["s", "(Android", " Android", ".Android", "sWith", ".google", " Africa", " android"], ["(Android", " Android", ".Android", "s", "sWith", "(android", " Africa", ".google"], ["s", " Android", ".Android", "(Android", " Africa", "sWith", "Android", ".google"], [" Android", ".Android", "(Android", " android", "(android", "_android", "ANDROID", "-android"], [" Android", ".Android", "(Android", "Android", " android", "ANDROID", "_ANDROID", " ``"], [" Android", ".Android", "Android", "(Android", " Africa", " android", " ``", "ANDROID"], [" Android", "(Android", ".Android", "Android", " android", "ANDROID", "_ANDROID", "(android"], [" Android", "(Android", ".Android", " android", "Android", "ANDROID", "_ANDROID", "-android"], [" Android", "(Android", ".Android", " android", "Android", "-android", "_ANDROID", "ANDROID"], [" Android", "(Android", " android", "Android", ".Android", " Africa", "ANDROID", "_ANDROID"], [" Android", " android", "Android", "(Android", ".Android", "ANDROID", " APK", " Africa"], [" Android", "(Android", " android", "Android", ".Android", " APK", "ANDROID", "_ANDROID"], [" Android", " android", "(Android", " APK", ".Android", "Android", " Africa", " ."], [" Android", " android", "(Android", "Android", " APK", " Africa", " .", " ..."], [" Android", " android", "(Android", "Android", " .", " APK", ".Android", " globally"], [" Android", " android", "(Android", ".Android", "Android", " APK", "ANDROID", "(android"], [" Android", " android", "(Android", "Android", ".Android", " APK", "(android", "_ANDROID"], [" Android", "(Android", "Android", " android", ".Android", " APK", "(android", "ANDROID"], [" Android", "Android", "(Android", " android", ".Android", " APK", "(android", "ANDROID"], [" Android", "Android", "(Android", " android", ".Android", "(android", "android", "/android"], [" Android", "Android", "(Android", " android", ".Android", "android", "(android", "ANDROID"], [" Android", "Android", "(Android", " android", ".Android", "android", "/android", "(android"], [" Android", "Android", "(Android", " android", ".Android", "-android", "android", "/android"], [" Android", "Android", "(Android", " android", ".Android", "-android", "ANDROID", "/android"], [" Android", "Android", "(Android", ".Android", " android", "-android", "ANDROID", "/android"], [" Android", "(Android", "Android", ".Android", "-android", " android", "/android", "ANDROID"], [" Android", "(Android", "Android", ".Android", " android", "-android", "ANDROID", "/android"], [" Android", "(Android", ".Android", "-android", " android", "Android", "/android", " APK"], [" Android", "(Android", ".Android", " android", "-android", "/android", "Android", " APK"], [" Android", "(Android", ".Android", "Android", " android", "/android", " APK", "-android"], [" Android", "(Android", "/android", "/Linux", ".Android", " android", "-android", "Android"], ["(Android", "/android", " Android", "/A", "/Linux", "/M", "/T", "/P"], ["(Android", "/Linux", "/android", " Android", "/A", "/T", ".Android", "/P"], ["(Android", "/Linux", " Android", ".Android", "/android", "/T", "/M", "/J"], ["/Linux", "(Android", " Android", "/android", ".Android", "/T", "/K", "/P"], ["(Android", "/android", " Android", ".Android", "/Linux", "Android", " android", "(android"], [" Android", "(Android", "/android", ".Android", "Android", "/Linux", " iOS", "-android"], ["(Android", " Android", "/android", "/Linux", " iOS", "Android", ".Android", "iOS"], [" Android", "(Android", "/android", "Android", ".Android", " iOS", " android", " JNI"], [" Android", "(Android", "/android", " iOS", "/Linux", "Android", "/arm", " APK"], [" Android", "(Android", "/android", "/arm", " ARM", "/Linux", " iOS", "Android"], [" iOS", " ARM", "/arm", " Android", "/Desktop", "/Linux", "-ios", " APK"], [" ARM", " iOS", "/i", "/arm", "/Desktop", " APK", "ARM", "/mac"], ["/i", " ARM", "/arm", " iOS", "ARM", "/N", " arm", "/Desktop"], ["/i", "/N", "/", " ARM", "/W", "/D", "/A", "/I"]], "p": [[0.9599, 0.0256, 0.0057, 0.0025, 0.0011, 0.0009, 0.0003, 0.0003], [0.9346, 0.0059, 0.0049, 0.0043, 0.0038, 0.0019, 0.0011, 0.0009], [0.7635, 0.071, 0.0488, 0.0231, 0.0158, 0.0149, 0.0055, 0.0051], [0.0556, 0.0359, 0.0232, 0.017, 0.015, 0.0075, 0.0071, 0.0066], [0.9893, 0.0018, 0.0011, 0.0009, 0.0003, 0.0002, 0.0002, 0.0001], [0.9723, 0.004, 0.0019, 0.0008, 0.0007, 0.0005, 0.0004, 0.0004], [0.9996, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9913, 0.0014, 0.001, 0.0005, 0.0003, 0.0003, 0.0002, 0.0002], [0.9836, 0.0046, 0.0007, 0.0007, 0.0006, 0.0005, 0.0005, 0.0005], [0.9215, 0.038, 0.0028, 0.0016, 0.0013, 0.0009, 0.0006, 0.0005], [0.9354, 0.0234, 0.0043, 0.0041, 0.0025, 0.0015, 0.0007, 0.0006], [0.473, 0.0725, 0.0302, 0.0251, 0.0098, 0.0081, 0.0063, 0.0056], [0.2397, 0.0535, 0.0253, 0.0197, 0.0119, 0.0105, 0.0082, 0.0072], [0.1958, 0.0386, 0.0206, 0.0142, 0.0104, 0.0086, 0.0076, 0.0052], [0.3993, 0.0371, 0.0128, 0.0042, 0.0037, 0.0027, 0.0027, 0.0022], [0.6897, 0.0068, 0.0046, 0.0021, 0.0018, 0.0017, 0.0013, 0.001], [0.9119, 0.0058, 0.0026, 0.001, 0.0009, 0.0007, 0.0004, 0.0003], [0.2852, 0.0341, 0.0265, 0.0249, 0.0104, 0.0036, 0.0032, 0.0032], [0.1262, 0.0526, 0.0464, 0.0464, 0.0076, 0.0043, 0.0041, 0.0032], [0.0678, 0.0528, 0.0496, 0.0341, 0.0071, 0.0056, 0.0041, 0.0038], [0.0542, 0.0449, 0.0329, 0.0329, 0.01, 0.0054, 0.0047, 0.0047], [0.2839, 0.1427, 0.1183, 0.0133, 0.0097, 0.0081, 0.0067, 0.0055], [0.5012, 0.2089, 0.0678, 0.0194, 0.0171, 0.0081, 0.0076, 0.0067], [0.2386, 0.0995, 0.0344, 0.0251, 0.0135, 0.0126, 0.0112, 0.0098], [0.4951, 0.1105, 0.0975, 0.0808, 0.0359, 0.0192, 0.0132, 0.0062], [0.6641, 0.1482, 0.0545, 0.0292, 0.0227, 0.0122, 0.0095, 0.0057], [0.8284, 0.053, 0.0364, 0.0221, 0.0092, 0.0046, 0.0043, 0.0041], [0.7277, 0.0362, 0.032, 0.0234, 0.0182, 0.0125, 0.0118, 0.0081], [0.8311, 0.0322, 0.0267, 0.0267, 0.0111, 0.0056, 0.0053, 0.0053], [0.7786, 0.0498, 0.0413, 0.0266, 0.0134, 0.0111, 0.0063, 0.0036], [0.7963, 0.035, 0.0187, 0.0114, 0.01, 0.0094, 0.0069, 0.0044], [0.6015, 0.0409, 0.0233, 0.0117, 0.0117, 0.0097, 0.0091, 0.0086], [0.6051, 0.0438, 0.0183, 0.0183, 0.0151, 0.0126, 0.0072, 0.0063], [0.5808, 0.0575, 0.0477, 0.0137, 0.0113, 0.0083, 0.0073, 0.0069], [0.6591, 0.0695, 0.0541, 0.029, 0.0187, 0.0094, 0.0088, 0.0083], [0.7032, 0.084, 0.0577, 0.045, 0.0165, 0.0094, 0.0078, 0.0042], [0.6722, 0.1031, 0.0709, 0.0518, 0.0203, 0.0085, 0.0079, 0.0058], [0.7894, 0.0832, 0.0445, 0.0445, 0.0128, 0.0039, 0.0039, 0.0028], [0.7796, 0.1055, 0.044, 0.0343, 0.0143, 0.0041, 0.0032, 0.0028], [0.7201, 0.1251, 0.067, 0.0359, 0.0279, 0.0049, 0.0038, 0.0031], [0.7662, 0.1037, 0.0713, 0.0231, 0.018, 0.0031, 0.0028, 0.0028], [0.8254, 0.087, 0.0411, 0.0194, 0.0118, 0.0049, 0.0023, 0.002], [0.8393, 0.0537, 0.0473, 0.0174, 0.0174, 0.012, 0.003, 0.0027], [0.8028, 0.0846, 0.0513, 0.0167, 0.0147, 0.0147, 0.0033, 0.0033], [0.83, 0.0468, 0.0468, 0.0221, 0.0221, 0.0152, 0.003, 0.003], [0.7917, 0.0834, 0.0394, 0.0211, 0.0145, 0.0128, 0.0068, 0.0047], [0.6759, 0.1937, 0.0262, 0.0159, 0.014, 0.014, 0.0091, 0.0055], [0.6949, 0.1757, 0.0185, 0.0174, 0.0154, 0.0144, 0.006, 0.0053], [0.3302, 0.3302, 0.1072, 0.0371, 0.0211, 0.0145, 0.0113, 0.0083], [0.2469, 0.1322, 0.0908, 0.0429, 0.0429, 0.0334, 0.0314, 0.0314], [0.4438, 0.0874, 0.0874, 0.0413, 0.0413, 0.0284, 0.0195, 0.0195], [0.3353, 0.3353, 0.0748, 0.0312, 0.0243, 0.0243, 0.0147, 0.013], [0.2934, 0.2285, 0.0655, 0.051, 0.035, 0.0309, 0.0241, 0.0188], [0.4497, 0.2728, 0.1655, 0.0537, 0.0288, 0.0136, 0.0021, 0.0018], [0.37, 0.3265, 0.198, 0.0442, 0.0344, 0.0163, 0.0036, 0.0013], [0.3829, 0.2322, 0.1097, 0.0968, 0.0968, 0.0277, 0.0277, 0.0043], [0.5999, 0.2501, 0.0812, 0.0338, 0.0124, 0.0067, 0.0028, 0.0022], [0.5064, 0.2711, 0.0997, 0.0324, 0.0222, 0.0196, 0.0119, 0.0056], [0.51, 0.1289, 0.1138, 0.0782, 0.0419, 0.0326, 0.0288, 0.0106], [0.3681, 0.1535, 0.0931, 0.0821, 0.064, 0.0388, 0.0208, 0.0183], [0.4329, 0.1593, 0.1405, 0.0852, 0.0244, 0.0131, 0.0115, 0.0102], [0.55, 0.3336, 0.031, 0.0188, 0.0101, 0.0069, 0.0061, 0.0027], [0.9162, 0.0456, 0.0244, 0.0026, 0.0018, 0.0016, 0.0007, 0.0006]], "ranks": {"Rust": [19102, 18103, 10850, 19459, 3647, 2455, 3349, 4776, 9714, 6557, 4814, 10765, 8880, 7419, 11061, 8998, 10534, 28870, 38280, 58835, 49473, 47361, 14879, 16626, 30181, 31813, 17171, 8681, 7664, 11518, 8934, 11331, 11752, 28107, 27795, 16793, 7270, 8542, 11064, 19279, 11543, 13917, 19402, 25713, 28052, 16602, 21400, 11708, 12243, 8579, 26362, 12669, 2738, 3103, 3284, 1603, 171, 205, 119, 116, 143, 116, 172]}}, {"pos": 440, "top": [[" \u2013", ".", "\u2013", ",", "s", "o", "y", ";"], [" \u2013", "\u2013", "sWith", "s", "\u2011", "\u2013and", "\u2013\u2013", "es"], ["\u2013", ",", " \u2013", ".\u2013", ".", "\u2013and", "\u2026", ";"], [" milfs", "\uff0a\uff0a\uff0a\uff0a", "eless", "sWith", "auff", "ielle", "alement", "erweise"], ["sWith", "e", "auf", "s", "es", "ed", "\u064a\u062f\u064a", "y"], ["sWith", "\u064a\u062f\u064a", "auf", "aus", " \u200b\u200b", "\u0438\u0431", "aient", "s"], ["s", "\u3002", "\uff08", "\uff09**", ".\u201d", "\uff1a", "\u3002**", "es"], ["sWith", "i\u010d", "s", "\u064a\u064b\u0627", "\u064a\u062f\u064a", "crap", "ually", "\u094d\u0938"], [".\u201d", "i\u010d", "sWith", " \u200b\u200b", "!\u201d.", "s", "schuss", "\u201d."], [",", "s", "\u2013", "i\u010d", "\u2013and", "sWith", "-Cds", ".\u2013"], ["o", "s", ",", "y", "d", ".", "e", "an"], ["sWith", "ographics", "schuss", "i\u0161", "i\u010d", " veggies", "uably", "a\u00e7\u00f5es"], ["s", "es", "sWith", " veggies", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "ographics", "i\u0161", "i\u010d"], [" arguably", "es", "-esque", " veggies", "s", " anyways", " freaking", "-centric"], [" arguably", " albeit", "s", "o", " mostly", " largely", " though", " notably"], [" arguably", " anyways", "es", " notably", "evo", " albeit", " touted", " mostly"], [" arguably", "o", "e", "s", "even", " notably", "es", " largely"], [" arguably", "-esque", " albeit", "o", "even", " savvy", " anyways", " tweaking"], [" arguably", " notably", " albeit", "-esque", " akin", " ultimately", "\u5373\u4fbf\u5982\u6b64", " anyways"], [" arguably", " notably", " albeit", "\u4e5f\u4f7f\u5f97", " ultimately", " akin", " anyways", "\u5373\u4fbf\u5982\u6b64"], [" arguably", " notably", " ultimately", " albeit", "though", "much", "\u4e5f\u4f7f\u5f97", " though"], [" arguably", " notably", " ;;^", "\u4ea6\u7136", "\u4e5f\u4f7f\u5f97", "\u751a\u81f3\u4f1a", " anyways", "nheim"], [" arguably", " notably", "\u4e5f\u4f7f\u5f97", " ultimately", "\u4ea6\u662f", " famously", "\u4ea6\u7136", " albeit"], [" notably", " arguably", " ultimately", " largely", "\u4e5f\u4f7f\u5f97", " merely", "much", " famously"], [" notably", " arguably", "\u5373\u4fbf", " ultimately", " though", "Though", "though", "Whilst"], [" notably", " arguably", "\u4e5f\u4f7f\u5f97", " ;;^", "\u751a\u81f3\u4e8e", "\u4ea6\u6216\u662f", "\u4ea6\u662f", "\u751a\u81f3\u4f1a"], [" notably", " arguably", " ultimately", "\u4e5f\u4f7f\u5f97", "\u5373\u4fbf", "\u6545\u800c", "\u4ea6\u662f", "\u62e5\u6709\u7740"], ["\n\n", " notably", " arguably", "\r\n\r\n", " ultimately", " \n\n", " \r\n\r\n", " typically"], [" arguably", "\n\n", " notably", " \n\n", " ultimately", "\r\n\r\n", " largely", " typically"], [" arguably", " notably", " ultimately", " often", " ...", " typically", " even", " potentially"], [" ...", "...", " arguably", " \n\n", " often", " ultimately", " even", " ,"], [" ...", " arguably", " even", " ultimately", " **", "...", " often", " notoriously"], [" arguably", " often", " even", " typically", " ultimately", " potentially", " famously", " largely"], [" arguably", " typically", " notoriously", " famously", " often", " technically", " largely", " ultimately"], [" arguably", " notoriously", " famously", " typically", " often", " technically", " largely", " massively"], [" notoriously", " arguably", " famously", " typically", " often", "often", " tech", " technically"], [" notoriously", " expensive", " arguably", " typically", " cumbersome", " often", " costly", " sprawling"], [" notoriously", " expensive", " typically", " cumbersome", " costly", " arguably", " often", " tech"], [" notoriously", " expensive", " typically", " costly", "\u901a\u5e38\u9700\u8981", " cumbersome", " often", " hardware"], [" expensive", " costly", " notoriously", " hardware", " pricey", " cumbersome", " cheap", " tech"], [" expensive", " hardware", " tech", "hardware", " costly", " Linux", " Hardware", " GPUs"], [" hardware", " expensive", " Linux", " costly", " GPUs", "hardware", " tools", " Hardware"], [" hardware", " expensive", " GPUs", " Linux", "hardware", " Hardware", " tools", " GPU"], [" hardware", " expensive", " costly", " GPUs", " Hardware", "hardware", " labs", " cumbersome"], [" expensive", " costly", " hardware", " cumbersome", " labs", " bulky", " GPUs", "requires"], [" expensive", " costly", " cumbersome", " notoriously", " bulky", " hardware", "\u6210\u672c\u9ad8", "\u901a\u5e38\u9700\u8981"], [" expensive", " costly", " cumbersome", " notoriously", "requires", "\u901a\u5e38\u9700\u8981", "\u6210\u672c\u9ad8", " hardware"], [" expensive", " costly", " notoriously", "\u901a\u5e38\u9700\u8981", "requires", " cumbersome", "\u6210\u672c\u9ad8", "\u52a8\u8f84"], [" costly", "\u6210\u672c\u9ad8", "\u52a8\u8f84", " expensive", "\u901a\u5e38\u9700\u8981", "requires", " notoriously", " cumbersome"], ["requires", "\u901a\u5e38\u9700\u8981", "\u6210\u672c\u9ad8", "\u52a8\u8f84", "!),", " requiring", " notoriously", "requ"], ["\u901a\u5e38\u9700\u8981", "requires", "\u52a8\u8f84", "\u6210\u672c\u9ad8", "unless", "!),", "requ", "hardware"], ["requires", " Android", ".Android", "/android", "\u901a\u5e38\u9700\u8981", "Android", "-android", "/Linux"], [" Android", "Android", "/android", ".Android", "-android", "requires", "ANDROID", ".android"], [" Android", "Android", "/android", ".Android", "android", "-android", "ANDROID", " android"], [" Android", "Android", "/android", "-android", "ANDROID", "_android", ".Android", "android"], [" Android", "Android", "/android", "ANDROID", "-android", "android", "_android", ".android"], [" Android", "Android", "/android", "_android", "-android", " android", "android", ".android"], [" Android", "Android", "/android", "-android", " android", "_android", ".android", "android"], [" Android", "Android", " android", "_android", "/android", "android", "ANDROID", ".android"], [" Android", " ARM", " LLVM", "ND", " arme", " JNI", " android", "Android"], [" Android", "ND", " LLVM", " ARM", " JNI", "Android", " APK", " ND"], ["ND", " Android", " LLVM", " N", " ARM", " ND", "which", "tool"], ["ND", "N", " N", "nd", "Android", "which", "Nd", " nd"]], "p": [[0.8156, 0.0669, 0.0521, 0.046, 0.0075, 0.0031, 0.0023, 0.0018], [0.7676, 0.0671, 0.0103, 0.0071, 0.0066, 0.0049, 0.0028, 0.0022], [0.8114, 0.0969, 0.0357, 0.0216, 0.0131, 0.0109, 0.0019, 0.001], [0.0057, 0.005, 0.0047, 0.0044, 0.0037, 0.0037, 0.0034, 0.0032], [0.0624, 0.055, 0.0403, 0.0378, 0.0355, 0.0295, 0.019, 0.0139], [0.0534, 0.0127, 0.0119, 0.0056, 0.005, 0.0039, 0.0034, 0.0032], [0.6252, 0.0311, 0.0157, 0.0147, 0.0122, 0.0101, 0.0069, 0.0065], [0.0553, 0.0278, 0.0261, 0.0096, 0.009, 0.0075, 0.007, 0.007], [0.0302, 0.0172, 0.0152, 0.0152, 0.0143, 0.0105, 0.0098, 0.0087], [0.0508, 0.024, 0.0065, 0.0039, 0.0037, 0.0035, 0.0029, 0.0024], [0.2737, 0.2132, 0.0692, 0.0506, 0.0327, 0.0307, 0.0307, 0.012], [0.0084, 0.0066, 0.0058, 0.0048, 0.0048, 0.0037, 0.0035, 0.0033], [0.0279, 0.0192, 0.0075, 0.007, 0.004, 0.0035, 0.0033, 0.0033], [0.0089, 0.0074, 0.0074, 0.0037, 0.0037, 0.0031, 0.0025, 0.0022], [0.1131, 0.0185, 0.0135, 0.0127, 0.0105, 0.0077, 0.0072, 0.0064], [0.033, 0.0156, 0.0083, 0.0045, 0.0042, 0.0042, 0.0037, 0.0035], [0.162, 0.0815, 0.0206, 0.0206, 0.0171, 0.0151, 0.0151, 0.0142], [0.0262, 0.0055, 0.0052, 0.0046, 0.0046, 0.0026, 0.0023, 0.0021], [0.1025, 0.0139, 0.0122, 0.0066, 0.0048, 0.0045, 0.004, 0.0035], [0.121, 0.027, 0.0144, 0.006, 0.0047, 0.0044, 0.0039, 0.0032], [0.0683, 0.0343, 0.0092, 0.0072, 0.006, 0.006, 0.0056, 0.0049], [0.0152, 0.006, 0.0044, 0.0041, 0.003, 0.0028, 0.0019, 0.0018], [0.0448, 0.0255, 0.0061, 0.0032, 0.0021, 0.002, 0.002, 0.002], [0.0676, 0.0495, 0.0133, 0.0056, 0.0049, 0.0043, 0.0034, 0.0026], [0.0406, 0.0336, 0.0058, 0.0043, 0.0043, 0.004, 0.0038, 0.0033], [0.0185, 0.0136, 0.0028, 0.0027, 0.0024, 0.0017, 0.0016, 0.0015], [0.0247, 0.0117, 0.0022, 0.002, 0.0017, 0.0017, 0.0015, 0.0015], [0.2014, 0.0478, 0.0397, 0.0165, 0.0069, 0.0069, 0.0033, 0.0029], [0.0937, 0.0827, 0.0416, 0.0209, 0.0196, 0.0099, 0.006, 0.0053], [0.1511, 0.0491, 0.0279, 0.018, 0.015, 0.0132, 0.0097, 0.0075], [0.4528, 0.1297, 0.0448, 0.0187, 0.0176, 0.0137, 0.0137, 0.0106], [0.1703, 0.1412, 0.0245, 0.023, 0.0216, 0.0169, 0.0158, 0.014], [0.1297, 0.0541, 0.0508, 0.0421, 0.0328, 0.0272, 0.0165, 0.0155], [0.1096, 0.0429, 0.0314, 0.0216, 0.0216, 0.0115, 0.0108, 0.0102], [0.0577, 0.0577, 0.0176, 0.0146, 0.0088, 0.0073, 0.0057, 0.0047], [0.2381, 0.0322, 0.0173, 0.0152, 0.0143, 0.0068, 0.0068, 0.006], [0.2805, 0.0245, 0.0245, 0.0131, 0.0102, 0.008, 0.0062, 0.0062], [0.26, 0.0844, 0.0156, 0.0147, 0.0138, 0.0129, 0.0114, 0.0061], [0.1912, 0.1399, 0.0275, 0.0259, 0.0189, 0.0178, 0.0095, 0.0089], [0.4489, 0.0884, 0.0445, 0.0197, 0.0144, 0.0127, 0.0064, 0.0057], [0.2058, 0.1706, 0.0405, 0.0296, 0.0262, 0.0246, 0.0246, 0.0159], [0.2338, 0.1037, 0.0432, 0.0316, 0.0246, 0.0217, 0.0204, 0.018], [0.2006, 0.054, 0.042, 0.0395, 0.0255, 0.024, 0.0199, 0.0187], [0.1785, 0.1306, 0.0398, 0.0398, 0.033, 0.0242, 0.0213, 0.0188], [0.2363, 0.0985, 0.0527, 0.0362, 0.0265, 0.0206, 0.0161, 0.0161], [0.2125, 0.1138, 0.0537, 0.0393, 0.0326, 0.0326, 0.0145, 0.0113], [0.1067, 0.0647, 0.0537, 0.0445, 0.0306, 0.027, 0.0253, 0.0238], [0.1288, 0.0831, 0.0831, 0.0648, 0.0393, 0.0347, 0.0306, 0.0238], [0.0653, 0.0449, 0.0396, 0.0372, 0.035, 0.029, 0.0187, 0.0155], [0.0621, 0.0515, 0.0354, 0.0293, 0.0259, 0.0148, 0.0139, 0.0115], [0.0629, 0.0629, 0.0406, 0.0316, 0.0103, 0.0091, 0.0071, 0.0052], [0.1145, 0.0653, 0.0349, 0.0308, 0.0272, 0.0199, 0.0146, 0.0128], [0.2418, 0.1008, 0.1008, 0.0574, 0.054, 0.0289, 0.0225, 0.0165], [0.4934, 0.2057, 0.0668, 0.0405, 0.0315, 0.0246, 0.0246, 0.0149], [0.6309, 0.1808, 0.0356, 0.0314, 0.0148, 0.0131, 0.0131, 0.009], [0.6654, 0.1682, 0.0546, 0.0228, 0.0201, 0.0156, 0.0122, 0.0122], [0.872, 0.0632, 0.0141, 0.0124, 0.011, 0.0097, 0.0059, 0.0052], [0.8054, 0.0749, 0.0312, 0.0167, 0.0167, 0.0148, 0.0115, 0.0115], [0.8162, 0.046, 0.0218, 0.0192, 0.0169, 0.0132, 0.0103, 0.008], [0.4745, 0.0642, 0.05, 0.039, 0.0344, 0.0344, 0.0344, 0.0268], [0.5268, 0.2196, 0.0555, 0.0297, 0.0231, 0.0159, 0.0124, 0.0091], [0.6402, 0.0494, 0.0361, 0.0319, 0.0281, 0.0193, 0.0133, 0.0125], [0.6719, 0.3174, 0.0066, 0.001, 0.0009, 0.0005, 0.0003, 0.0003]], "ranks": {"Rust": [33382, 65263, 26491, 5984, 6073, 5360, 8867, 9897, 11901, 6359, 21700, 28993, 20343, 40833, 68578, 52536, 26732, 50081, 92983, 65470, 127346, 78312, 78031, 73281, 36347, 69221, 83081, 42728, 25987, 19339, 16679, 10876, 15469, 30955, 11947, 5591, 2842, 2831, 4347, 5399, 6721, 7425, 10051, 8242, 12280, 6145, 13709, 8219, 3128, 4302, 16605, 9768, 872, 417, 457, 354, 34, 39, 11, 17, 19, 18, 46]}}, {"pos": 441, "top": [[" \u2013", "\u2013and", "\u2013", " [\u2026]", "\u2013\u2013", ".\u2013", " \u2013,", "u"], [" \u2013", " \u2013**", " \\\"", "\\\"\\", "\\\")", "\u2013\u2013", "(\\\"", "\\\""], [" \u2013", " \u2013**", " \u2013,", "\u2013and", ".\u2013", "\u2013\u2013", " *\u2013", "**\u2013"], ["``", "\\\")", " ``", "\\\"\\", "\uff3f\uff3f", " \\\"\"", "\\\"><", "\\\":\\\""], ["\\\")", "\\\"\\", " \\\"", "\uff06", "\\\":\\\"", "\ufffd\ufffd", "\\\",\\", " \\\"\""], ["\\\")", "\\\"\\", "\u6709", "&eacute", " \u2013**", " ____", "\uff06", "(nd"], ["\ufffd\ufffd", "\\\")", " \ufffd", " ____", "____", "\uff06", " \uff1c", " \r\n \r\n"], ["\\\")", " ____", "\\\"\\", " \\\"\"", "____", " \uff62", " \ufffd", " ...\\"], ["\\\")", " ____", "\ufffd\ufffd", "\uff06", " \ufffd", "____", " ......", "\\\"\\"], ["\\\")", "\ufffd\ufffd", "\\\"\\", " \r\n \r\n", " \ufffd", "\\\",\\", " \n \n", "\\\\\""], ["\ufffd\ufffd", " \ufffd", "\\\")", "\ufffd", "&nbsp", "\\n", " ......", "<br"], [" \ufffd", "\\\")", "<br", "\ufffd\ufffd", "&nbsp", " ____", " \uff1c", "&quot"], ["\\\")", "roid", " \ufffd", "ROID", "ividual", " \\\"\"", "\\\"\\", " ndr"], [" \ufffd", "\\\")", "roid", "ividual", "\u2013\u2013", "\u2013and", " ndr", "-&"], [" \ufffd", "\u2013and", "-&", "\u2013\u2013", "i", "&", "\\\")", " \u00ad"], ["i", "-&", "\u2013and", "\u2013\u2013", "nd", "&", " \ufffd", "u"], ["i", "\u2013and", "\u2013\u2013", "nd", "t", "&", "u", "\u2013"], ["\\\")", "roid", "-&", "ividual", "\u2013and", "(nd", "\u2013\u2013", "&D"], ["-&", "\u2013\u2013", "i", "roid", "&quot", "ividual", ")&", "\"&"], ["-&", "i", " &#", "&#", "&", ")&", "&lt", "u"], ["i", "&", "u", "t", "-&", "nd", "&#", ")&"], ["ROID", "roid", "ustry", "flix", "htag", " &)", "(nd", "aversal"], ["i", "\ufffd\ufffd", " \r\n \r\n", "\u2013\u2013", "nd", "&", "&lt", " \ufffd"], ["<|endoftext|>", "&", "2", "i", "1", "8", "4", "3"], [" \r\n \r\n", "&lt", "&amp", " \r\n", "\ufffd\ufffd", " \n \n", "&nbsp", " \r\n\r\n"], ["ROID", "roid", "Android", "ANDROID", "_ANDROID", "ustry", "(Android", " Android"], ["ROID", "roid", "_ANDROID", "ANDROID", "Android", "ustry", " Android", "``"], ["_ANDROID", "Android", "roid", " Android", "ANDROID", "ROID", " Taiwan", " \r\n \r\n"], ["Android", " Android", "ROID", "roid", "ustry", " Taiwan", "ANDROID", "_ANDROID"], ["Android", " Android", "ROID", "ustry", "(Android", "roid", "__)", "_ANDROID"], [" Android", "Android", "roid", " tech", "ROID", "ustry", "_ANDROID", "(Android"], [" Android", " tech", "&", " technologies", "nd", " Asia", "i", " technology"], [" Android", " tech", "\\\")", "Android", "i", "&", "Tech", " technologies"], [" tech", "ROID", "tech", "roid", " Android", "Android", "Tech", "ustry"], ["tech", "Android", "roid", "/android", "(Android", "ROID", "Tech", " tech"], ["Android", "(Android", " Android", "android", "ROID", "/android", "\u548c", "tech"], ["Android", "(Android", " Android", "/android", "android", "ANDROID", "ROID", "\u5b89\u5353"], ["Android", " Android", "(Android", "android", "/android", "ANDROID", "_ANDROID", "(android"], [" Android", "Android", "(Android", "android", "/android", "ANDROID", "\u5b89\u5353", "-android"], [" Android", "Android", "(Android", "android", "\u5b89\u5353", "/android", "ANDROID", "-android"], [" Android", "Android", "(Android", "\u5b89\u5353", "android", "-android", "/android", " android"], [" Android", "Android", "(Android", "\u5b89\u5353", "-android", "/android", "android", " android"], [" Android", "(Android", "Android", "-android", " SDK", "\u5b89\u5353", " android", "/android"], [" Android", " SDK", "(Android", "Android", "\u5b89\u5353", " APK", " JDK", "-android"], [" Android", " SDK", "Android", " JDK", " APK", "(Android", " Toolkit", " toolkit"], [" Android", " SDK", " JDK", " APK", "(Android", "-android", " Toolkit", " toolkit"], [" SDK", " Android", " JDK", " APK", " APIs", "/Linux", " NVIDIA", " toolkit"], [" SDK", "/", " Android", "/Linux", "/API", " APK", " toolkit", " APIs"], [" SDK", "/Linux", "/API", " toolkit", "/android", " Android", " APIs", " Toolkit"], ["requires", "/Linux", "/API", "/N", " SDK", "/u", " requires", "/etc"], ["requires", "/N", "\u590d\u6742", "\u6210\u672c\u9ad8", "/Linux", " complexities", "\u590d\u6742\u7684", " complexity"], ["requires", "/N", "\u6210\u672c\u9ad8", "/Linux", "\u590d\u6742", " complexities", " requires", " complexity"], ["/N", "requires", "/Linux", "/)", "\u6210\u672c\u9ad8", " complexities", "\u590d\u6742", ")"], ["Android", "/android", "android", "ANDROID", "(Android", "requires", " Android", "-android"], ["Android", " SDK", "/android", "ND", "ANDROID", "android", "-sdk", " Android"], ["Android", " SDK", "/android", "android", " Android", "ANDROID", "SDK", "-sdk"], ["Android", " Android", "/android", "android", "ROID", "roid", "ND", " android"], ["ND", "Android", " SDK", " Android", "/android", "android", "roid", "(nd"], ["ND", " builds", "(nd", " build", " SDK", "/tool", "tool", "-build"], ["ND", " SDK", "SDK", " builds", "roid", " android", " Android", " sdk"], ["ND", " SDK", "roid", " builds", "SDK", " build", "/N", " Android"], ["ND", " SDK", "/N", "SDK", ")", " builds", "nd", "roid"], ["K", "ND", "N", "k", "Q", "T", "LL", "G"]], "p": [[0.9713, 0.0065, 0.0054, 0.0029, 0.0027, 0.0019, 0.0015, 0.0009], [0.6607, 0.1013, 0.0542, 0.0329, 0.0329, 0.029, 0.0176, 0.0155], [0.9553, 0.0136, 0.0136, 0.0039, 0.0034, 0.0029, 0.0021, 0.0016], [0.2471, 0.0518, 0.0487, 0.0379, 0.0314, 0.023, 0.023, 0.0216], [0.4848, 0.0791, 0.0241, 0.02, 0.0177, 0.0146, 0.0138, 0.0138], [0.4188, 0.0603, 0.0143, 0.0143, 0.0126, 0.0105, 0.0099, 0.0099], [0.1478, 0.1305, 0.0897, 0.0791, 0.0398, 0.033, 0.0257, 0.02], [0.2274, 0.0575, 0.054, 0.024, 0.0199, 0.0175, 0.0155, 0.0155], [0.1481, 0.0424, 0.0424, 0.0399, 0.0274, 0.0242, 0.0227, 0.0227], [0.158, 0.09, 0.0659, 0.0311, 0.0258, 0.0242, 0.0228, 0.0177], [0.3124, 0.1476, 0.0578, 0.0543, 0.0423, 0.0373, 0.0273, 0.0273], [0.1767, 0.1072, 0.0784, 0.0539, 0.0288, 0.0239, 0.0186, 0.0145], [0.1399, 0.0312, 0.0293, 0.0275, 0.0228, 0.0139, 0.0115, 0.0095], [0.0624, 0.0518, 0.0356, 0.0314, 0.0295, 0.0295, 0.0179, 0.0168], [0.056, 0.0526, 0.0526, 0.0436, 0.0436, 0.03, 0.0265, 0.0265], [0.0556, 0.0433, 0.0407, 0.0298, 0.028, 0.0232, 0.0218, 0.0192], [0.1094, 0.055, 0.0517, 0.0485, 0.0428, 0.0402, 0.0229, 0.0229], [0.0613, 0.0448, 0.0272, 0.0212, 0.0165, 0.0165, 0.0137, 0.01], [0.0817, 0.032, 0.022, 0.0151, 0.0133, 0.0133, 0.0118, 0.0104], [0.1976, 0.0532, 0.0251, 0.0236, 0.0236, 0.0222, 0.0162, 0.0152], [0.2107, 0.0643, 0.0604, 0.0415, 0.0366, 0.0344, 0.0196, 0.0143], [0.056, 0.041, 0.0233, 0.0086, 0.0067, 0.0052, 0.0049, 0.0049], [0.1259, 0.0463, 0.0435, 0.0339, 0.0219, 0.0141, 0.0133, 0.0125], [0.2054, 0.0804, 0.071, 0.0626, 0.043, 0.038, 0.0335, 0.0296], [0.1274, 0.0365, 0.0184, 0.0152, 0.0134, 0.0126, 0.0118, 0.0111], [0.0398, 0.0398, 0.0351, 0.0274, 0.0274, 0.02, 0.0107, 0.0089], [0.0442, 0.0285, 0.0209, 0.0196, 0.0184, 0.0153, 0.0119, 0.0105], [0.0226, 0.0226, 0.0212, 0.02, 0.0188, 0.0121, 0.0107, 0.01], [0.0796, 0.0796, 0.0293, 0.0293, 0.0275, 0.0157, 0.0122, 0.0115], [0.0405, 0.0336, 0.0261, 0.0231, 0.0131, 0.0131, 0.0096, 0.0085], [0.0697, 0.0273, 0.0166, 0.0166, 0.0156, 0.0156, 0.0137, 0.01], [0.0451, 0.031, 0.02, 0.0166, 0.0137, 0.0129, 0.0114, 0.0101], [0.0336, 0.0315, 0.0131, 0.0109, 0.0102, 0.0096, 0.0085, 0.0085], [0.0178, 0.0178, 0.0168, 0.0157, 0.0115, 0.0115, 0.0102, 0.0095], [0.0195, 0.0172, 0.0143, 0.0134, 0.0126, 0.0126, 0.0105, 0.0098], [0.031, 0.0188, 0.0138, 0.0129, 0.0107, 0.0095, 0.0083, 0.0083], [0.0407, 0.0232, 0.0232, 0.0218, 0.0205, 0.0181, 0.0141, 0.011], [0.0689, 0.0689, 0.0369, 0.0369, 0.0325, 0.0287, 0.0185, 0.0164], [0.093, 0.0771, 0.0413, 0.0388, 0.0364, 0.0321, 0.0221, 0.0207], [0.2341, 0.1823, 0.0861, 0.0461, 0.0407, 0.0407, 0.0263, 0.0247], [0.3168, 0.1497, 0.1241, 0.0403, 0.0378, 0.0355, 0.0295, 0.0216], [0.3869, 0.1337, 0.1041, 0.0434, 0.0434, 0.0263, 0.0232, 0.0218], [0.356, 0.09, 0.0619, 0.0581, 0.0546, 0.0399, 0.0214, 0.0214], [0.159, 0.0906, 0.0428, 0.0402, 0.0313, 0.0294, 0.0244, 0.0229], [0.1319, 0.1319, 0.0485, 0.0402, 0.0294, 0.026, 0.0215, 0.0215], [0.1784, 0.139, 0.0699, 0.0579, 0.0177, 0.0166, 0.0156, 0.0156], [0.1875, 0.069, 0.0418, 0.021, 0.0186, 0.0174, 0.0136, 0.0128], [0.0836, 0.054, 0.0395, 0.0271, 0.0255, 0.0187, 0.0165, 0.0145], [0.0579, 0.031, 0.0274, 0.0257, 0.0213, 0.0213, 0.0188, 0.0146], [0.0583, 0.0401, 0.0275, 0.0189, 0.0189, 0.0157, 0.0138, 0.0138], [0.1418, 0.1251, 0.0316, 0.0297, 0.0246, 0.018, 0.0149, 0.0132], [0.167, 0.0422, 0.0422, 0.0373, 0.0373, 0.0241, 0.0241, 0.0199], [0.079, 0.0543, 0.0397, 0.0329, 0.0213, 0.02, 0.0188, 0.0146], [0.1662, 0.0611, 0.0371, 0.0225, 0.0211, 0.0198, 0.0198, 0.0186], [0.1774, 0.0739, 0.0695, 0.0541, 0.0328, 0.0328, 0.0308, 0.0256], [0.2137, 0.138, 0.0739, 0.0448, 0.0328, 0.0328, 0.0308, 0.0308], [0.2811, 0.1172, 0.0711, 0.0711, 0.0627, 0.0627, 0.0554, 0.0431], [0.3286, 0.0831, 0.0831, 0.0504, 0.0504, 0.0393, 0.0346, 0.0325], [0.7501, 0.0616, 0.0257, 0.0121, 0.0121, 0.0107, 0.0083, 0.0083], [0.4114, 0.1715, 0.0523, 0.0462, 0.0181, 0.0181, 0.0181, 0.017], [0.7042, 0.0697, 0.0309, 0.0309, 0.0256, 0.0121, 0.0089, 0.0065], [0.7792, 0.0364, 0.0183, 0.0143, 0.0134, 0.0126, 0.0072, 0.0049], [0.5866, 0.2771, 0.0845, 0.0095, 0.0024, 0.0023, 0.0021, 0.0014]], "ranks": {"Rust": [70755, 89305, 59793, 69376, 65091, 46702, 31067, 31869, 31769, 24379, 62321, 54104, 37145, 40551, 61762, 39659, 68142, 59653, 85020, 61006, 100954, 37609, 33095, 43149, 20848, 17285, 28865, 24531, 17873, 31899, 15508, 8580, 12730, 29355, 22573, 21428, 12146, 13669, 16884, 18169, 14824, 15363, 13698, 14283, 15144, 7645, 14523, 11315, 12302, 5485, 9065, 23438, 4772, 2279, 3004, 1023, 136, 78, 58, 34, 59, 115, 454]}}, {"pos": 442, "top": [[" \u200b\u200b", "s", " Ken", ".", "\u2026..", " ", "ness", " Her"], [" \u200b\u200b", "rypton", " HK", " NSK", "sWith", "s", "\u200b\u200b", "iosk"], [" \u200b\u200b", "*\u201c.", " Blowjob", " NSK", " *\u201e", " \u0218", "avior", "\u200b\u200b"], [" ``", "``", " Blowjob", " ``(", " handjob", " creampie", " cumshot", " *\u201e"], [" &", " &#", " (&", " =&", " &)", "&apos", "&a", "&r"], [" \u200b\u200b", " Blowjob", " creampie", " ND", "rypton", "\u6d1b\u592b", " shemale", " Guta"], [" \u200b\u200b", " &", "\u200b\u200b", " nd", " Nd", " ND", "nd", " Ark"], [" &", " \u200b\u200b", " &#", "\ufffds", "&apos", ".&", "&eacute", " Nd"], [" \u200b\u200b", " &", ".&", "&apos", " &#", "\u200b\u200b", "&C", " ......"], [" \u200b\u200b", ".&", "&apos", " &", "\u200b\u200b", "&nbsp", "\ufffds", "&D"], [" \u200b\u200b", " &", "\u200b\u200b", ".&", "&nbsp", "&apos", " &#", "."], [" \u200b\u200b", "&apos", "\u200b\u200b", "ampus", " &", " Android", ".&", "&nbsp"], [" \u200b\u200b", "\u200b\u200b", "&apos", "ampus", " Android", " Kush", " frameworks", " &"], [" \u200b\u200b", " &", "&apos", "\u200b\u200b", " Android", "-era", ".&", "&D"], [" &", "&apos", " \u2013", ".&", "&D", " &#", " MK", "\u2013"], [" &", "&apos", " &#", " popular", " myriad", " sprawling", " pivotal", " tech"], [" &", "&apos", " &#", " myriad", " pivotal", "&D", " tech", "&nbsp"], ["&apos", " &", " &#", " pivotal", "&amp", "&D", "-era", "-pop"], ["&apos", " &", " &#", "&amp", "&eacute", "&nbsp", "&#", " pivotal"], ["&apos", " &", " &#", "&amp", "&#", "&lt", "&nbsp", "&eacute"], [" &", " &#", "&apos", "&#", "&amp", "&nbsp", "&lt", " myriad"], ["&apos", " Android", "&eacute", " Rohingya", "_ANDROID", " Nusantara", " TikTok", "rypton"], ["&apos", " &", " &#", "&lt", "&amp", "Android", " Android", "&quot"], [" &", "&apos", " &#", "&#", "&lt", "&amp", "&nbsp", "2"], ["&apos", "&amp", "&lt", " &#", "Android", " \r\n \r\n", "&#", "&nbsp"], [" Android", "Android", "&apos", "_ANDROID", "(Android", " android", ".Android", " APK"], [" Android", "Android", "&apos", "_ANDROID", "(Android", " Taiwanese", " android", ".Android"], [" Android", "Android", "&apos", " Chinese", " &", " Asian", " Korean", " &#"], [" Android", "Android", " Taiwan", " ...", " Taiwanese", " Korean", " Chinese", " Asian"], [" Android", "Android", " robotics", " android", " Korean", " APK", "(Android", " Taiwan"], [" Android", "Android", " technologies", " Asian", " Taiwan", " Korean", " robotics", " tech"], [" Android", " &", " technologies", "&apos", " Asian", " tech", " Asia", " technology"], [" Android", " &", " tech", " technologies", " technology", " robotics", "Android", " Asia"], [" Android", " tech", " technologies", " labs", "Android", " robotics", " workflows", " technology"], [" Android", " tech", " robotics", "Android", " technologies", " APIs", " SDK", " labs"], [" Android", "Android", " \u2026", " \u200b\u200b", " tech", " APK", " workflows", " SDK"], [" Android", " \u200b\u200b", "Android", " workflows", " APK", "\u200b\u200b", " SDK", " APIs"], [" Android", " \u200b\u200b", "Android", " workflows", " SDK", " tech", " APK", " android"], [" Android", " \u200b\u200b", " SDK", " workflows", " complex", "\u590d\u6742", " toolkit", "\u5957\u4ef6"], [" Android", " \u200b\u200b", " SDK", " workflows", " complex", "\u590d\u6742", "Android", "\u200b\u200b"], [" SDK", " Android", " toolkit", " tech", " technologies", " kits", "\u5957\u4ef6", " \u200b\u200b"], [" SDK", " toolkit", " Android", " hardware", " kits", "\u5957\u4ef6", " technologies", " software"], [" SDK", " kits", " toolkit", "\u5957\u4ef6", " hardware", " complex", " Android", " kit"], [" SDK", " kits", " toolkit", " complex", " hardware", "\u5957\u4ef6", " complexities", " Toolkit"], [" SDK", " complex", " kits", " toolkit", " requires", " complexity", " complexities", " installs"], [" complex", " complexities", " requires", " kits", " complexes", " complexity", " Complex", " SDK"], [" complex", " complexities", " requires", " complexity", " complexes", " required", "\u590d\u6742", " kits"], [" complex", " complexities", " requires", " complexity", " complexes", " required", "\u590d\u6742", " Complex"], [" complex", " complexities", " complexity", " requires", " complexes", " complicated", " kits", " required"], [" complexities", " requires", " complexity", " complex", " complexes", "requires", "\u590d\u6742", "\u590d\u6742\u7684"], [" complexities", " complexity", "\u590d\u6742", "\u590d\u6742\u7684", " requires", " complex", "requires", " complexes"], [" complexity", " complexities", " requires", "\u590d\u6742", "requires", "\u590d\u6742\u7684", " installs", " complex"], [" complexity", " complexities", " installs", " setups", "\u590d\u6742", ")", "),", " complexes"], [" installs", " setups", " complexity", " complexities", " dependencies", ")", " installations", " setup"], [" installs", " setups", " complexities", " complexity", " dependencies", " builds", " setup", " installation"], [" setups", " installs", " complexities", " setup", " complexity", " dependencies", " builds", "setup"], [" setups", " SDK", " dependencies", " installs", " setup", " complexities", " integration", " complexity"], [" builds", " setups", " SDK", " setup", " dependencies", " build", " installs", " compilation"], [" builds", " setups", " setup", " build", "/tool", " SDK", "tool", "setup"], [" builds", " setups", " setup", " SDK", " build", " installs", "setup", " downloads"], [" builds", ")", " setups", " setup", "/N", " SDK", " build", " downloads"], [")", " builds", "/N", "),", " setups", " setup", " SDK", " headaches"], [")", "),", "/N", " builds", ").", "/C", "/", " setups"]], "p": [[0.0236, 0.0134, 0.0098, 0.0081, 0.0072, 0.0046, 0.0044, 0.0038], [0.0321, 0.0207, 0.0098, 0.0098, 0.0059, 0.0056, 0.0049, 0.0038], [0.0373, 0.0069, 0.0065, 0.0054, 0.005, 0.0045, 0.0039, 0.0033], [0.1021, 0.0426, 0.0214, 0.0214, 0.0178, 0.0115, 0.0089, 0.0084], [0.232, 0.0518, 0.0168, 0.0096, 0.009, 0.009, 0.0079, 0.0066], [0.088, 0.006, 0.0039, 0.0032, 0.003, 0.0027, 0.0027, 0.0023], [0.2239, 0.0934, 0.0134, 0.0105, 0.0098, 0.0098, 0.0087, 0.0044], [0.0901, 0.0582, 0.0115, 0.0079, 0.0079, 0.0069, 0.0051, 0.004], [0.5264, 0.0974, 0.0358, 0.0149, 0.014, 0.0124, 0.0096, 0.0071], [0.1875, 0.0505, 0.0254, 0.0238, 0.0145, 0.0113, 0.0113, 0.0106], [0.5177, 0.1309, 0.0452, 0.0331, 0.0258, 0.0189, 0.0122, 0.0054], [0.2219, 0.0597, 0.0104, 0.0076, 0.0076, 0.0067, 0.0067, 0.0043], [0.5922, 0.0108, 0.0075, 0.0048, 0.0042, 0.0018, 0.0014, 0.0013], [0.4174, 0.0126, 0.0111, 0.0072, 0.0041, 0.003, 0.0028, 0.0025], [0.1801, 0.0123, 0.0079, 0.0074, 0.0054, 0.0042, 0.0033, 0.0029], [0.0811, 0.0232, 0.0052, 0.0033, 0.0031, 0.003, 0.003, 0.0028], [0.1389, 0.033, 0.0107, 0.0078, 0.0057, 0.0051, 0.0042, 0.0042], [0.1249, 0.014, 0.0058, 0.0043, 0.004, 0.004, 0.0031, 0.0031], [0.2667, 0.0493, 0.0319, 0.0125, 0.0055, 0.004, 0.0034, 0.0032], [0.3027, 0.2215, 0.1522, 0.0219, 0.0133, 0.0086, 0.0055, 0.0046], [0.1516, 0.118, 0.0979, 0.0383, 0.015, 0.0103, 0.0086, 0.0063], [0.2172, 0.0102, 0.0045, 0.0035, 0.0027, 0.0026, 0.0024, 0.0024], [0.4417, 0.0528, 0.0282, 0.0282, 0.0265, 0.0234, 0.0142, 0.0104], [0.2137, 0.1296, 0.0891, 0.0448, 0.0448, 0.024, 0.0175, 0.0175], [0.2321, 0.0802, 0.0802, 0.0708, 0.0486, 0.0245, 0.0245, 0.0245], [0.2622, 0.1403, 0.0706, 0.019, 0.0178, 0.0148, 0.0095, 0.009], [0.324, 0.0872, 0.0321, 0.0152, 0.0152, 0.0142, 0.0111, 0.0104], [0.1913, 0.0584, 0.0427, 0.0333, 0.0312, 0.0229, 0.0202, 0.0189], [0.3667, 0.1051, 0.0161, 0.0151, 0.0118, 0.0111, 0.0098, 0.0092], [0.2495, 0.081, 0.0132, 0.0097, 0.0097, 0.0091, 0.0085, 0.0067], [0.2425, 0.029, 0.0146, 0.0113, 0.0107, 0.0107, 0.01, 0.01], [0.1119, 0.0321, 0.0172, 0.0161, 0.0142, 0.0134, 0.0134, 0.0118], [0.1138, 0.0239, 0.0211, 0.0154, 0.0128, 0.0106, 0.0106, 0.0093], [0.1138, 0.037, 0.0306, 0.0164, 0.0164, 0.012, 0.0113, 0.0093], [0.0632, 0.0408, 0.0181, 0.015, 0.015, 0.0117, 0.0117, 0.011], [0.0906, 0.0333, 0.026, 0.0148, 0.0108, 0.0102, 0.0095, 0.0095], [0.0818, 0.0283, 0.0266, 0.0161, 0.0142, 0.0126, 0.0126, 0.0098], [0.1172, 0.0278, 0.0278, 0.0261, 0.0169, 0.014, 0.0124, 0.0102], [0.0591, 0.0522, 0.0433, 0.0337, 0.0297, 0.0217, 0.0149, 0.0124], [0.1074, 0.0575, 0.0395, 0.0272, 0.0255, 0.0255, 0.0211, 0.0155], [0.1037, 0.0915, 0.0297, 0.0262, 0.0231, 0.0204, 0.0204, 0.0192], [0.1485, 0.0795, 0.0659, 0.0426, 0.0331, 0.0311, 0.0214, 0.0201], [0.1539, 0.1058, 0.0824, 0.0365, 0.0323, 0.0285, 0.0251, 0.0251], [0.1508, 0.0758, 0.0555, 0.0555, 0.0297, 0.0246, 0.0217, 0.0192], [0.1389, 0.0897, 0.0791, 0.0451, 0.033, 0.0273, 0.0241, 0.0177], [0.411, 0.0523, 0.0433, 0.0433, 0.0433, 0.0298, 0.0263, 0.0232], [0.4, 0.1667, 0.1011, 0.0541, 0.0256, 0.0155, 0.0137, 0.01], [0.4148, 0.222, 0.0817, 0.0561, 0.0182, 0.0151, 0.0133, 0.0111], [0.3759, 0.2927, 0.1077, 0.0372, 0.0328, 0.0083, 0.0073, 0.0069], [0.371, 0.1753, 0.1205, 0.1205, 0.0286, 0.0144, 0.0105, 0.0099], [0.3992, 0.2744, 0.0786, 0.0421, 0.0371, 0.0371, 0.0137, 0.0137], [0.2576, 0.2273, 0.0948, 0.0651, 0.0349, 0.0308, 0.0289, 0.024], [0.2481, 0.1933, 0.0627, 0.0489, 0.0278, 0.0278, 0.0262, 0.0149], [0.2686, 0.1846, 0.0679, 0.0599, 0.0412, 0.0161, 0.0142, 0.0134], [0.2862, 0.1736, 0.1532, 0.1352, 0.0321, 0.0161, 0.0143, 0.0086], [0.3611, 0.1505, 0.0711, 0.0554, 0.0459, 0.0431, 0.014, 0.0124], [0.1942, 0.0714, 0.0556, 0.0461, 0.0407, 0.0359, 0.0232, 0.0232], [0.6739, 0.071, 0.0431, 0.0296, 0.0261, 0.018, 0.0102, 0.0096], [0.8176, 0.0761, 0.0247, 0.0247, 0.0055, 0.0055, 0.0043, 0.0033], [0.3635, 0.2831, 0.1515, 0.0298, 0.0117, 0.0097, 0.0097, 0.0085], [0.3951, 0.1647, 0.0882, 0.0502, 0.0472, 0.0368, 0.0127, 0.0119], [0.7067, 0.0657, 0.0352, 0.0257, 0.0242, 0.02, 0.0084, 0.0065], [0.9951, 0.0028, 0.0008, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001]], "ranks": {"Rust": [59580, 67355, 11956, 44015, 19089, 11399, 6272, 6559, 8169, 3023, 2825, 2354, 1385, 1668, 4050, 2555, 2159, 2318, 3991, 3693, 4402, 3906, 1141, 1888, 3538, 4153, 6598, 2822, 3291, 4748, 3209, 2851, 2786, 4221, 5248, 3647, 2544, 2059, 3177, 5093, 5431, 4380, 4197, 3755, 4608, 3716, 7419, 4602, 3843, 3534, 10209, 10819, 5562, 3541, 5115, 2008, 543, 318, 101, 108, 145, 112, 165]}}, {"pos": 443, "top": [[".", " \u2013", ",", "\u00a0", "\u00a0\u00a0", " ", "\u2013", "<|endoftext|>"], ["\u2013", " \u2013", " ", "  \n\n", ",", "\u00a0\u00a0", "  \n  \n", "."], [",", "\u2013", ".", "\u2026", "\u2026.", "\u2026..", ";", " \u2013"], [" Blowjob", " Shemale", " **\u25cb", " **\u300c", "-------------</", " Strec", " cristi", " **\u201c"], [" **#", " **\u201c", " ", " **", " ***", " \u2019", "\u00a0\u00a0", " \u201c"], ["\u00a0\u00a0", " **", " **\u201c", " ", " **#", " \u200b\u200b", " \uff09", "(**"], [" **", " **\u201c", " ***", " **\"", " **#", " **(", " ", " **."], [" **", " **#", " **\u20ac", " **\u300c", " **\"", " **\u201c", " ***", " (**"], [" **", " **\u20ac", " **#", ".", " **\u201c", " ***", " (**", "\u00a0"], [",", "\u00a0", " ", "\u2013", "\ufffd", ";", "\u2014but", "\u2014and"], ["\u00a0", " ", ",", " **", " alongside", ".", " as", " largely"], [" **", " **\u300c", " **#", " **\u20ac", " **>>", " **\u00ab", " \u00bb**", "ropole"], [" **", " **\u300c", " **>>", "draul", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " \u00bb**", "ropole", " **\u00ab"], ["draul", " arguably", " **", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u4ea6\u662f", " similarly", " infrastructure", " deployments"], [" arguably", " similarly", " alongside", " largely", " heavily", " primarily", " mostly", " often"], [" often", " also", " even", " \u00ab", " mostly", " as", " largely", " especially"], [",", " often", " arguably", " largely", " similarly", " even", " via", " typically"], [" leveraging", " arguably", " similarly", " seamlessly", " architectures", " savvy", " frameworks", " fueled"], [" arguably", "\u4ea6\u7136", " similarly", " savvy", " fueled", " Fortal", " touted", " increasingly"], [" arguably", "\u4ea6\u6216\u662f", "\u4ea6\u7136", "\u4ea6\u662f", " notably", " similarly", " largely", " increasingly"], [" arguably", " largely", " alongside", " ultimately", " similarly", " notably", " swiftly", " heavily"], [" ;;^", " Shemale", " Hidal", " Binomo", " arguably", "\u4ea6\u7136", " similarly", " Fortal"], [" arguably", " similarly", " notably", " alongside", " increasingly", " ultimately", " largely", " heavily"], [" largely", " ultimately", " notably", " similarly", " arguably", " subsequently", " even", " increasingly"], [" notably", " arguably", " largely", " ultimately", " similarly", " alongside", " heavily", " increasingly"], [" **", " technologies", " arguably", " notably", " **.**", " leveraging", " **.", " heavily"], [" **", " technologies", " notably", " ultimately", " domestically", " arguably", " increasingly", " heavily"], [" **", " ,", " notably", " ___", " ultimately", " arguably", " heavily", " _"], [" **", " technologies", " technology", " heavily", " ...", " increasingly", " ,", " alongside"], [" **", " ...", " for", " .", " ,", " and", " technology", " to"], [" .", " ,", " for", " and", " as", " to", " ...", " in"], [" .", " **", " ...", " for", " ,", " and", " \u2014", " to"], [" .", " **", " even", " ,", " and", " complex", " for", " heavily"], [" **", " heavily", " even", " complex", " technically", " .", " potentially", " specifically"], [" heavily", " potentially", " technically", " and", " \u2014", " even", " directly", " complex"], [" \u2014", " .", " ,", " and", " heavily", " technically", " notoriously", " often"], [" expensive", " \u2014", " heavily", " .", " notoriously", " complex", " potentially", " costly"], [" expensive", " heavily", " costly", " labor", " complex", " notoriously", " quickly", " even"], [" expensive", " complex", " quickly", " costly", " seamlessly", " easily", " labor", " notoriously"], [" expensive", " workflows", " labor", " costly", " automated", " complex", " hardware", " quickly"], [" expensive", " labor", " hardware", " workflows", " automated", " costly", " software", " automation"], [" expensive", " hardware", " workflows", " costly", " automated", " software", " infrastructure", " automation"], [" expensive", " automated", " hardware", " workflows", " costly", " infrastructure", " automation", " production"], [" expensive", " automated", " workflows", " hardware", " costly", " automation", " labor", " workflow"], [" expensive", " automated", " workflows", " costly", " hardware", " costs", " workflow", " automation"], [" expensive", " costly", " automated", " cumbersome", " hardware", " workflows", " costs", " cost"], [" expensive", " costly", " easily", " cumbersome", " automated", " workflows", " potentially", " costs"], [" expensive", " costly", " due", " easily", " because", " or", " cumbersome", " routinely"], [" expensive", " costly", " unless", " easily", " routinely", " cumbersome", " cheap", " due"], [" easily", " expensive", " routinely", " cumbersome", " costly", " setups", " unless", " workflows"], [" or", " reliably", " easily", " routinely", " workflows", " unless", " comfortably", " setups"], [" or", " easily", " reliably", " \u0438\u043b\u0438", " unless", " inside", "\u6216", " cleanly"], [" or", " reliably", " easily", " inside", " within", " cleanly", " \u0438\u043b\u0438", " without"], [" or", " reliably", " inside", " easily", " without", " within", " unless", " \u0438\u043b\u0438"], [" or", " easily", " reliably", " inside", " \u0438\u043b\u0438", "\u6216", " without", " efficiently"], [" or", " easily", " reliably", " inside", " without", " \u0438\u043b\u0438", "\u6216", " within"], [" easily", " or", " reliably", " inside", " without", " \u0628\u0633\u0647\u0648\u0644\u0629", " effortlessly", " \u0438\u043b\u0438"], [" easily", " or", " running", " reliably", " inside", " desktop", "desktop", " Desktop"], [" easily", " desktop", " Desktop", " or", "desktop", "Desktop", " running", "/desktop"], [" Desktop", " desktop", "desktop", "Desktop", " easily", " or", "/desktop", "-desktop"], [" desktop", " Desktop", "desktop", " easily", "Desktop", " or", "/desktop", " inside"], [" Desktop", " desktop", " easily", " or", " running", "desktop", "Desktop", " inside"], [" easily", " or", " running", " Desktop", " desktop", " inside", " reliably", " without"]], "p": [[0.7225, 0.0978, 0.0863, 0.0247, 0.017, 0.016, 0.0097, 0.008], [0.1857, 0.0532, 0.05, 0.0389, 0.0251, 0.0251, 0.0162, 0.0152], [0.5025, 0.2095, 0.1271, 0.099, 0.0221, 0.0104, 0.0034, 0.0034], [0.0085, 0.0075, 0.0049, 0.0028, 0.0024, 0.0024, 0.0023, 0.0023], [0.0524, 0.0493, 0.0264, 0.0205, 0.0125, 0.0086, 0.0086, 0.0086], [0.0375, 0.0292, 0.0258, 0.013, 0.0122, 0.0108, 0.0089, 0.0058], [0.6488, 0.047, 0.0415, 0.0153, 0.0153, 0.0105, 0.0093, 0.006], [0.5452, 0.0693, 0.0507, 0.0271, 0.0165, 0.0136, 0.0106, 0.0094], [0.0581, 0.0311, 0.0258, 0.0138, 0.013, 0.0107, 0.0089, 0.0079], [0.1971, 0.0162, 0.0034, 0.003, 0.003, 0.0028, 0.0021, 0.0021], [0.1039, 0.0592, 0.0382, 0.0317, 0.0159, 0.0132, 0.008, 0.0071], [0.2876, 0.0208, 0.0064, 0.0049, 0.0041, 0.0026, 0.0023, 0.0021], [0.0489, 0.0058, 0.0023, 0.0019, 0.0015, 0.0012, 0.0012, 0.0012], [0.0024, 0.0017, 0.0013, 0.0009, 0.0009, 0.0008, 0.0008, 0.0008], [0.0047, 0.0039, 0.0032, 0.0027, 0.0024, 0.0022, 0.0022, 0.0021], [0.014, 0.0109, 0.0062, 0.0038, 0.0033, 0.0031, 0.0026, 0.0024], [0.0337, 0.0132, 0.0109, 0.0103, 0.0097, 0.0055, 0.0049, 0.0046], [0.0032, 0.0032, 0.0022, 0.0019, 0.0017, 0.0016, 0.0015, 0.0013], [0.0098, 0.003, 0.0026, 0.0023, 0.0023, 0.0022, 0.0021, 0.0021], [0.01, 0.0025, 0.0024, 0.0021, 0.0021, 0.002, 0.0017, 0.0015], [0.0305, 0.0185, 0.0185, 0.0153, 0.0144, 0.0127, 0.0105, 0.0072], [0.0058, 0.002, 0.0019, 0.0017, 0.0017, 0.0017, 0.0016, 0.0015], [0.0163, 0.0163, 0.0119, 0.0072, 0.0072, 0.0064, 0.006, 0.0039], [0.0386, 0.0362, 0.034, 0.0265, 0.022, 0.0206, 0.0161, 0.0161], [0.034, 0.0265, 0.0151, 0.0142, 0.0133, 0.0117, 0.011, 0.0097], [0.0731, 0.0105, 0.0056, 0.0053, 0.005, 0.0047, 0.0039, 0.0032], [0.079, 0.0226, 0.0083, 0.0078, 0.0078, 0.0069, 0.0065, 0.0054], [0.1499, 0.026, 0.0179, 0.0168, 0.0158, 0.0148, 0.0123, 0.0116], [0.1579, 0.0311, 0.0147, 0.0138, 0.0138, 0.013, 0.0122, 0.0114], [0.0833, 0.0833, 0.0475, 0.0419, 0.0288, 0.0239, 0.0198, 0.0175], [0.4459, 0.0604, 0.0567, 0.0442, 0.0236, 0.0209, 0.0196, 0.0153], [0.1477, 0.0841, 0.0543, 0.0397, 0.0373, 0.0351, 0.0351, 0.02], [0.3296, 0.0833, 0.0419, 0.0271, 0.0224, 0.0164, 0.0164, 0.01], [0.0667, 0.0405, 0.0335, 0.0296, 0.0245, 0.0245, 0.0169, 0.0158], [0.0451, 0.033, 0.0291, 0.0213, 0.02, 0.0188, 0.0177, 0.0166], [0.1042, 0.0762, 0.0218, 0.0205, 0.0205, 0.0193, 0.0132, 0.0124], [0.0668, 0.059, 0.0381, 0.0316, 0.0297, 0.0246, 0.0192, 0.014], [0.1585, 0.0401, 0.0332, 0.0293, 0.0228, 0.0215, 0.0215, 0.0189], [0.1279, 0.0568, 0.039, 0.0304, 0.0268, 0.0268, 0.0252, 0.0196], [0.2823, 0.0917, 0.0809, 0.0522, 0.018, 0.018, 0.015, 0.0132], [0.2419, 0.1008, 0.0785, 0.0785, 0.0507, 0.042, 0.042, 0.0255], [0.2201, 0.104, 0.0918, 0.081, 0.081, 0.0433, 0.028, 0.0263], [0.1997, 0.1212, 0.0735, 0.0648, 0.0648, 0.0419, 0.0347, 0.0175], [0.1617, 0.1617, 0.0595, 0.0559, 0.0559, 0.0318, 0.0281, 0.0264], [0.2033, 0.1088, 0.0748, 0.0748, 0.0426, 0.0293, 0.0228, 0.0201], [0.2106, 0.0878, 0.0684, 0.0344, 0.0303, 0.0252, 0.0236, 0.0184], [0.1787, 0.0956, 0.0618, 0.0481, 0.0424, 0.0399, 0.0331, 0.0227], [0.1844, 0.0987, 0.0678, 0.0678, 0.0387, 0.0341, 0.032, 0.032], [0.1316, 0.1025, 0.0904, 0.0622, 0.0549, 0.0455, 0.0259, 0.0229], [0.121, 0.1067, 0.0537, 0.0474, 0.0474, 0.0287, 0.027, 0.0224], [0.2756, 0.1475, 0.051, 0.0188, 0.0188, 0.0165, 0.0155, 0.0137], [0.9113, 0.0147, 0.0147, 0.0045, 0.004, 0.0037, 0.0024, 0.0021], [0.8263, 0.0871, 0.0363, 0.0049, 0.0038, 0.0036, 0.0034, 0.0034], [0.73, 0.0988, 0.0321, 0.022, 0.0195, 0.0118, 0.0067, 0.0056], [0.7812, 0.1057, 0.0303, 0.0208, 0.0098, 0.0087, 0.006, 0.0032], [0.6336, 0.2331, 0.0246, 0.0217, 0.0102, 0.009, 0.008, 0.007], [0.666, 0.245, 0.0138, 0.0138, 0.0065, 0.0051, 0.0045, 0.004], [0.5498, 0.2023, 0.0657, 0.0274, 0.0188, 0.0147, 0.0114, 0.0101], [0.4473, 0.1646, 0.1282, 0.0881, 0.0777, 0.0252, 0.0135, 0.0093], [0.4994, 0.3029, 0.0868, 0.0526, 0.0194, 0.0194, 0.0117, 0.0026], [0.3799, 0.3799, 0.0848, 0.0583, 0.0454, 0.0275, 0.0048, 0.0029], [0.2834, 0.2207, 0.1948, 0.1043, 0.0435, 0.0384, 0.0384, 0.0181], [0.3153, 0.2455, 0.0797, 0.0548, 0.0427, 0.0427, 0.0427, 0.0332]], "ranks": {"Rust": [36973, 52549, 41897, 52040, 3518, 5443, 18424, 8424, 17988, 7486, 4818, 16014, 15557, 13048, 17281, 11955, 14026, 69121, 78852, 69749, 62613, 66730, 54229, 25671, 22638, 40685, 25674, 17297, 10715, 6757, 9188, 7440, 10226, 13939, 13381, 12262, 10505, 9583, 12180, 16362, 10844, 10214, 9283, 10049, 9562, 6630, 5838, 3589, 1973, 1916, 10942, 21090, 38831, 27121, 22995, 12085, 1828, 1054, 515, 587, 436, 398, 259]}}, {"pos": 444, "top": [[".", "\u2013", ",", " \u2013", ";", "-", ":", "?"], ["\u2013", " \u2013", ",", ".", ";", "\u2013and", ".\u2013", "\u200b"], [",", "\u2013", ".", " \u2013", ";", ".\u2013", "\u2013and", "\u2026"], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " \u041f\u043e\u043f\u0440\u043e", "\ufffd\ufffd", " Shemale", "----------</", " Blowjob", " Strec"], [".", "@", ",", ".@", " (@", "-\"", "\u2013", ".|"], [",", ".", "\u2013", "-\"", "!", ".\u2013", " \ud83d\ude42", "!\"."], ["  \n\n", " \u200b", "\t  ", "\u2014\"", "\u2013", ".", "  \n", ".\""], ["   \n", "\t  ", " \u200b", "\u2013", ".|", "\u2013and", "#####", "  \n"], [" [\u2026]", ".", ",", "\u2013", "  \n\n", " [...]", " \u200b", "\u00a0"], [",", "\u2013", "\u00a0", ";", "\u2014\"", "\u00ad", " [\u2026]", "\u2013and"], [",", "\u2013", "\u00a0", " [\u2026]", ".", ";", "\u2014", ".["], [" fanc", " savvy", "_->", "\u60f3\u65b9", "\u559c\u95fb", " arguably", " **", "s"], [" savvy", " \u00ab", " fanc", " pricey", "_->", " trendy", " arguably", "s"], [" savvy", " trendy", " pricey", " fanc", "\u2013", "\u2014\"", " aficionados", "\u2013and"], [" savvy", " arguably", " ostensibly", " \u00ad", "\u2013", " amongst", "\u2014\"", " enticing"], [" arguably", " savvy", " potentially", " touted", " showcasing", " myriad", " ostensibly", " typically"], [" savvy", " arguably", " potentially", " ostensibly", " hefty", " strategically", " enticing", " trendy"], [" savvy", "\u2013", "\u2013and", " hefty", " trendy", " revamped", " enticing", " arguably"], [" arguably", " savvy", " ostensibly", " myriad", " touted", " strategically", " trendy", " revamped"], [" arguably", " myriad", " ostensibly", " burgeoning", " savvy", "\u2014even", " strategically", " touted"], ["<|endoftext|>", " myriad", " burgeoning", " arguably", "\u2014even", "\u5373\u4fbf", "\u305d\u3046\u3057\u305f", " ostensibly"], ["\u76f8\u5173\u884c\u4e1a", "\u751a\u81f3\u4e8e", "\u5546\u4e1a\u4e2d\u5fc3", " ;;^", " savvy", "\u9887\u5177", " arguably", "\u751a\u81f3\u4f1a"], [" myriad", "\u751a\u81f3\u4e8e", " arguably", "\u305d\u3046\u3057\u305f", "\u90a3\u822c", " savvy", "\u76f8\u5173\u884c\u4e1a", "\u5546\u4e1a\u4e2d\u5fc3"], [" myriad", " arguably", " ultimately", " ostensibly", " increasingly", " seemingly", " eventually", " broadly"], [" \r\n\r\n", " \n\n", "\r\n\r\n", "  \n\n", "...\\", "   \n\n", " myriad", " arguably"], ["...**", " **\u3010", " ___", " **:**", " ...\\", " **\u2014", " *__", "\uff1f**"], [" arguably", "\n\n", " myriad", " ___", " ...\\", "\r\n\r\n", " ____", " \n\n"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", " [...]", " ...", " ...\\"], [" \n\n", "  \n\n", " arguably", "\n\n", " \r\n\r\n", " myriad", " [...]", "   \n\n"], [" [...]", " **", " ...", " industry", " technologies", " commercial", " ...\\", " commercially"], [" ...", " industry", " [...]", " technologies", " technology", " industrial", " increasingly", " commercial"], [" ...", " .", " even", " [...]", " \u2014", " \u2013", " commercial", " more"], [" even", " complex", " industrial", " arguably", " industry", " \u2014", " ultimately", " commercial"], [" technologies", " European", " tech", " technology", " architectures", " Ubisoft", " industry", " globally"], [" technologies", " architectures", " tech", " globally", " European", " geopol", " complex", " technology"], [" iOS", " macOS", " **\u201c", " Australian", " European", " hardware", " Canadian", " Australia"], [" macOS", " iOS", " hardware", " architectures", "hardware", " Ubisoft", " Australian", " software"], [" macOS", " iOS", " hardware", " Android", "hardware", " software", " Shopify", " architectures"], [" macOS", " iOS", " hardware", " Windows", " Android", "hardware", " Apple", "Windows"], [" macOS", " iOS", " Windows", " Apple", "Windows", " Australian", " hardware", " MacOS"], [" macOS", " iOS", " Apple", " Windows", " MacOS", "Windows", "Apple", " OSX"], [" macOS", " iOS", " Apple", " MacOS", " Australian", " Windows", " Australia", " OSX"], [" macOS", " iOS", " MacOS", " Apple", " Australian", " OSX", " Windows", " Australia"], [" macOS", " iOS", " MacOS", " Apple", " Australian", " OSX", " Australia", " Windows"], [" macOS", " iOS", " MacOS", " Apple", " iPhones", " Australia", " OSX", " Australian"], [" macOS", " iOS", " MacOS", " OSX", " Apple", " iPhones", " Australian", " Australia"], [" macOS", " MacOS", " iOS", " OSX", " Apple", "(iOS", " technologies", " Windows"], [" macOS", " iOS", " MacOS", " OSX", " iPhones", " Apple", "(iOS", " technologies"], [" iOS", " macOS", " MacOS", "(iOS", " OSX", " iPhones", " Apple", " technologies"], [" iOS", "(iOS", " MacOS", " macOS", "\u6e2f\u6fb3\u53f0", " OSX", " iPhones", " Nordic"], ["(iOS", " iOS", " macOS", " MacOS", "\u6e2f\u6fb3\u53f0", "\u6e2f\u53f0", " OSX", " iPhones"], [" iOS", " macOS", " MacOS", "(iOS", "/Linux", " OSX", " Windows", "iOS"], [" macOS", " iOS", " MacOS", "(iOS", " Windows", ".iOS", " Apple", "iOS"], [" iOS", " macOS", " MacOS", " Windows", "iOS", "(iOS", " iPhone", " Android"], [" macOS", " iOS", " Windows", " MacOS", "iOS", " Android", " Linux", " Apple"], [" iOS", " macOS", " Windows", " MacOS", "iOS", "-ios", " desktop", " Desktop"], [" iOS", " macOS", "iOS", " Windows", " MacOS", "-ios", " iPhone", " Desktop"], [" iOS", " macOS", "iOS", " Desktop", " MacOS", " desktop", "-ios", " Windows"], [" macOS", " iOS", " MacOS", " Desktop", "iOS", " desktop", "-ios", "mac"], [" iOS", " macOS", " Desktop", " desktop", "iOS", "-ios", " mobile", " MacOS"], [" iOS", " mobile", " macOS", " desktop", " Desktop", " Mobile", "iOS", " Apple"], [" iOS", " macOS", " mobile", " desktop", " Desktop", " Mobile", "iOS", "-ios"], [" iOS", " macOS", " Desktop", " mobile", " desktop", " Mobile", " Windows", " Apple"]], "p": [[0.3717, 0.2555, 0.2255, 0.1368, 0.006, 0.0006, 0.0005, 0.0004], [0.6153, 0.2264, 0.0735, 0.0419, 0.0073, 0.0044, 0.0025, 0.002], [0.434, 0.383, 0.1596, 0.0148, 0.0033, 0.0012, 0.0006, 0.0005], [0.0107, 0.0094, 0.0054, 0.005, 0.0037, 0.0035, 0.0033, 0.0033], [0.2152, 0.2022, 0.1479, 0.1017, 0.0146, 0.0121, 0.0101, 0.0083], [0.2322, 0.1808, 0.0854, 0.0131, 0.0123, 0.0102, 0.0075, 0.0075], [0.0649, 0.0609, 0.0538, 0.0538, 0.0446, 0.0326, 0.0288, 0.027], [0.031, 0.031, 0.0257, 0.0226, 0.0213, 0.0137, 0.0137, 0.0137], [0.1623, 0.1433, 0.0677, 0.0677, 0.0362, 0.0362, 0.0265, 0.0249], [0.6479, 0.2103, 0.0111, 0.0105, 0.0056, 0.0056, 0.0046, 0.0044], [0.3897, 0.2678, 0.1434, 0.0362, 0.0207, 0.0142, 0.0098, 0.0076], [0.0056, 0.0053, 0.0036, 0.0034, 0.0032, 0.003, 0.0025, 0.0022], [0.013, 0.0042, 0.0037, 0.0033, 0.0027, 0.0027, 0.0026, 0.0024], [0.0222, 0.0064, 0.0049, 0.0039, 0.0032, 0.0026, 0.0025, 0.0023], [0.0118, 0.0105, 0.0092, 0.0063, 0.006, 0.0038, 0.0032, 0.0028], [0.034, 0.0282, 0.0104, 0.0076, 0.0059, 0.0052, 0.0049, 0.0043], [0.0123, 0.0116, 0.0062, 0.0038, 0.0035, 0.0029, 0.0029, 0.0029], [0.0106, 0.0044, 0.0042, 0.0024, 0.0017, 0.0017, 0.0017, 0.0017], [0.0102, 0.008, 0.0066, 0.0043, 0.0043, 0.0024, 0.0021, 0.002], [0.0108, 0.0084, 0.0054, 0.0051, 0.0048, 0.0027, 0.0024, 0.0024], [0.111, 0.0067, 0.0038, 0.0036, 0.0022, 0.0022, 0.002, 0.0019], [0.004, 0.0024, 0.0021, 0.0019, 0.0015, 0.0015, 0.0013, 0.0012], [0.0055, 0.0043, 0.0035, 0.0021, 0.0021, 0.0018, 0.0017, 0.0016], [0.0093, 0.0082, 0.0077, 0.0025, 0.0024, 0.0022, 0.0022, 0.0022], [0.0321, 0.025, 0.0118, 0.0104, 0.0098, 0.0086, 0.0067, 0.0056], [0.0087, 0.0087, 0.0044, 0.0041, 0.0038, 0.0038, 0.0038, 0.0036], [0.0058, 0.0054, 0.0051, 0.0045, 0.0037, 0.0037, 0.0033, 0.0029], [0.3628, 0.2067, 0.0407, 0.015, 0.0132, 0.011, 0.0071, 0.0066], [0.0562, 0.0234, 0.0118, 0.0118, 0.0092, 0.0086, 0.0086, 0.0071], [0.0665, 0.0334, 0.0277, 0.019, 0.0158, 0.0115, 0.0102, 0.0102], [0.0566, 0.0196, 0.0162, 0.0134, 0.0134, 0.0126, 0.0126, 0.0119], [0.0345, 0.0237, 0.0237, 0.0174, 0.0153, 0.0135, 0.0112, 0.0105], [0.0273, 0.0156, 0.0156, 0.0107, 0.0107, 0.0107, 0.0101, 0.0094], [0.0297, 0.0232, 0.014, 0.0132, 0.0124, 0.0091, 0.008, 0.0075], [0.0203, 0.0148, 0.0139, 0.0123, 0.0116, 0.0116, 0.0102, 0.0079], [0.019, 0.0168, 0.0158, 0.0158, 0.0139, 0.0115, 0.0102, 0.0102], [0.1079, 0.0479, 0.035, 0.0187, 0.0165, 0.0137, 0.0129, 0.0114], [0.1198, 0.0993, 0.0441, 0.0251, 0.0173, 0.0173, 0.0126, 0.0111], [0.3545, 0.1573, 0.0451, 0.0351, 0.033, 0.0241, 0.02, 0.0156], [0.4966, 0.1108, 0.0492, 0.0317, 0.0218, 0.0193, 0.0181, 0.015], [0.5146, 0.1301, 0.1013, 0.0542, 0.035, 0.029, 0.0146, 0.01], [0.4972, 0.1829, 0.0979, 0.0462, 0.0408, 0.017, 0.016, 0.0141], [0.4413, 0.184, 0.0767, 0.0767, 0.0362, 0.0194, 0.0194, 0.0171], [0.2892, 0.2252, 0.1064, 0.0606, 0.0391, 0.0286, 0.0237, 0.0185], [0.2921, 0.2921, 0.0837, 0.0308, 0.0272, 0.0212, 0.0212, 0.0187], [0.2869, 0.2234, 0.1355, 0.0251, 0.0208, 0.0162, 0.0118, 0.0118], [0.3559, 0.1905, 0.1681, 0.0452, 0.013, 0.0089, 0.0084, 0.0079], [0.3323, 0.2015, 0.1148, 0.0256, 0.0155, 0.0137, 0.0129, 0.0083], [0.2787, 0.1691, 0.1025, 0.0215, 0.0215, 0.0157, 0.0148, 0.0139], [0.0872, 0.0872, 0.0529, 0.0439, 0.0235, 0.0134, 0.0118, 0.0086], [0.0579, 0.033, 0.0274, 0.0213, 0.0213, 0.0121, 0.0074, 0.0065], [0.4012, 0.1476, 0.079, 0.0578, 0.0129, 0.0129, 0.0114, 0.0107], [0.3984, 0.2416, 0.1293, 0.0211, 0.0198, 0.0083, 0.0057, 0.0057], [0.4055, 0.4055, 0.0484, 0.0202, 0.009, 0.009, 0.0079, 0.0074], [0.3996, 0.3996, 0.0892, 0.0541, 0.0094, 0.0073, 0.0057, 0.0044], [0.6545, 0.2125, 0.069, 0.0224, 0.0136, 0.005, 0.0027, 0.0027], [0.8717, 0.0811, 0.0141, 0.0075, 0.0052, 0.004, 0.0031, 0.0022], [0.8879, 0.0826, 0.0099, 0.0053, 0.0041, 0.0036, 0.0022, 0.0022], [0.5191, 0.4581, 0.0074, 0.0045, 0.0045, 0.0024, 0.0015, 0.001], [0.8933, 0.0733, 0.0112, 0.0099, 0.0047, 0.0032, 0.0013, 0.0008], [0.8332, 0.0878, 0.0415, 0.0153, 0.0093, 0.0064, 0.0034, 0.0004], [0.881, 0.0439, 0.0342, 0.0183, 0.0142, 0.0036, 0.0017, 0.0006], [0.717, 0.11, 0.0856, 0.0315, 0.0315, 0.0149, 0.0038, 0.001]], "ranks": {"Rust": [22115, 43683, 36210, 18641, 14638, 9101, 32428, 27687, 26176, 16652, 8931, 15067, 10492, 22492, 32301, 25612, 32355, 92619, 151254, 141551, 153897, 113955, 133151, 103690, 98025, 108712, 122723, 73998, 57775, 51268, 21599, 11237, 9275, 12795, 6139, 5933, 1764, 1622, 2135, 3719, 5214, 5283, 5643, 7513, 8730, 6308, 6678, 9663, 8950, 27880, 53691, 40712, 6092, 1465, 1245, 1370, 137, 201, 206, 220, 167, 126, 38]}}, {"pos": 445, "top": [["  \n", " \u200b\u200b", "@\"", "\\n", " [\u2026]", "#####", "   \n", "\ufffd"], [" \u200b\u200b", "  \n", "   \n", "@\"", "  \n\n", " FIG", " \u24d8", " (@"], [" \u200b\u200b", "  \n", "\u2026..", "\u2013", "\u200b", ":\"", "   \n", ":."], [" \u200b\u200b", " ;;^", " ____", " cumshot", " iOS", " -->", "tiiv", " Geile"], [" \u200b\u200b", "  \n", " FIG", "   \n", " (@", " \t\n", "@\"", "@\\"], [" \u200b\u200b", "   \n", " \t\n", " iOS", " FIG", "  \n", "(iOS", "FIG"], [" \u200b\u200b", "  \n", "   \n", ".\ufffd", " \u00a0", " \u200b", " \t\n", "\u200b"], [" \u200b\u200b", "   \n", "  \n", ".\ufffd", " \t\n", " iOS", " \u200b", ".\u00bb"], [" \u200b\u200b", "  \n", "   \n", ".", ".\u201d", " \t\n", ".\u00bb", ".\ufffd"], [" \u200b\u200b", ",", "  \n", " iOS", " \t\n", "   \n", ".\ufffd", ".iOS"], [" \u200b\u200b", " iOS", "  \n", " \u200b", "   \n", " \t\n", ".\ufffd", "."], [" \u200b\u200b", " iOS", "-ios", ".iOS", "(iOS", " ;;^", " iCloud", " iPhone"], [" \u200b\u200b", " iOS", "-ios", "(iOS", ".iOS", " ;;^", " iPhones", " iCloud"], [" \u200b\u200b", " iOS", ".iOS", "-ios", "(iOS", "-era", " iPhones", " iPhone"], [" \u200b\u200b", " iOS", ".iOS", "(iOS", "-ios", " iPhones", "-era", " iPhone"], [" \u200b\u200b", " iOS", ".iOS", "-ios", " ;;^", "(iOS", " iPhones", " iPod"], [" \u200b\u200b", " iOS", ".iOS", "-ios", "(iOS", "s", " iPhones", " potentially"], [" \u200b\u200b", " iOS", ".iOS", "(iOS", "-ios", " iPhones", " iCloud", " iPhone"], [" \u200b\u200b", " iOS", ".iOS", "(iOS", "-ios", " iPhones", " ;;^", " iCloud"], [" \u200b\u200b", " iOS", ".iOS", "(iOS", "-ios", " iCloud", " iPhones", " iPhone"], [" iOS", ".iOS", "(iOS", " \u200b\u200b", "-ios", " dramatically", " iPhones", " iPhone"], [" iOS", " ;;^", ".iOS", "(iOS", " iCloud", " macOS", "-ios", " iPhones"], [" iOS", ".iOS", "(iOS", " iCloud", "iOS", " macOS", " iPhones", "-ios"], [" iOS", ".iOS", "iOS", " iPhone", " Apple", " iPhones", " iCloud", " iPad"], [" iOS", ".iOS", "iOS", " macOS", "-ios", "(iOS", " iPhone", " iCloud"], [" iOS", "iOS", " iPhone", "(iOS", "-ios", ".iOS", " macOS", " iCloud"], [" iOS", " iPhone", " iPhones", "iOS", " macOS", "-ios", " iCloud", ".iOS"], [" iOS", " iPhone", "iOS", " iPhones", " iPad", " Apple", "-ios", " iCloud"], [" iOS", " iPhone", " iPhones", "iOS", " iPad", " Apple", " iCloud", " macOS"], [" iOS", " iPhone", " macOS", " iPhones", "(iOS", "iOS", " iPad", " iCloud"], [" iOS", " iPhone", " iPhones", " macOS", " iPad", " Apple", "iOS", " iCloud"], [" iOS", " \u200b\u200b", " iPhone", " Apple", " iPhones", " iPad", " macOS", " Australia"], [" iOS", " iPhone", " Apple", " iPhones", " iPad", " macOS", "\u2014but", " globally"], [" iOS", " iPhones", " iPhone", " macOS", "-ios", " iPad", " Apple", "(iOS"], [" iOS", " iPhone", " iPhones", " iPad", " macOS", "(iOS", "iOS", " Apple"], [" iOS", " \u200b\u200b", "(iOS", " iPhone", " macOS", "iOS", " iPhones", " iPad"], [" iOS", " \u200b\u200b", " macOS", "(iOS", "iOS", " iPhones", " iPhone", ".iOS"], [" iOS", " \u200b\u200b", " macOS", "(iOS", "iOS", " iPhone", " iPhones", " Apple"], [" iOS", " macOS", " \u200b\u200b", "(iOS", "iOS", " iPhone", " Apple", " iPhones"], [" iOS", " \u200b\u200b", "(iOS", "iOS", " Apple", " iPhone", " macOS", " iPhones"], [" iOS", " Apple", " iPhone", "iOS", " iPhones", "(iOS", " macOS", "Apple"], [" iOS", " Apple", "iOS", " iPhone", " iPhones", "(iOS", " macOS", ".iOS"], [" iOS", " Apple", "iOS", "(iOS", " macOS", " iPhones", ".apple", ".iOS"], [" iOS", " Apple", "(iOS", "iOS", " iPhones", " macOS", " iPhone", ".iOS"], [" iOS", " iPhones", " Apple", " iPhone", "iOS", "(iOS", "-ios", " macOS"], [" iOS", " Apple", "(iOS", " iPhones", " iPhone", ".apple", " macOS", "-ios"], [" iOS", "(iOS", " iPhones", " Apple", "-ios", " macOS", " iPhone", " iTunes"], [" iOS", "(iOS", " (", " ().", " iPhones", " (.", " Apple", " iPhone"], [" iOS", "(iOS", "/apple", " iPhones", " Apple", "/mac", ".apple", " iPhone"], ["(iOS", " iOS", " iPhones", "-ios", "/apple", "/mac", " Apple", " iTunes"], ["(iOS", " iOS", " iPhones", "-ios", " iTunes", "/apple", "/mac", ".iOS"], ["(iOS", " iOS", " (*.", "/mac", " SDK", " iTunes", " (", " (."], ["(iOS", " iOS", " SDK", " macOS", "/mac", " (*.", " Apple", ".apple"], [" iOS", "(iOS", " macOS", " SDK", " Apple", "/mac", "-ios", " (*."], [" SDK", " iOS", "(iOS", " macOS", "-ios", ".iOS", "iOS", " Apple"], [" iOS", " SDK", "(iOS", "-ios", " macOS", "iOS", " Apple", " LLVM"], [" iOS", " SDK", "-ios", "iOS", "(iOS", " LLVM", ".iOS", " macOS"], [" iOS", " SDK", "-ios", "iOS", " macOS", "(iOS", " LLVM", ".iOS"], [" iOS", " macOS", "iOS", "-ios", " SDK", "/mac", "/apple", " Apple"], ["/mac", " SDK", " macOS", " frameworks", " simulator", " Simulator", " iOS", " LLVM"], [" within", " SDK", " inside", "/mac", " without", " macOS", " simulator", " LLVM"], [" SDK", " easily", " inside", " within", " (", " without", " simulator", " tool"], [" easily", " efficiently", " (", " SDK", " within", " reliably", " effortlessly", " without"]], "p": [[0.2336, 0.1251, 0.0807, 0.0521, 0.0262, 0.0246, 0.0217, 0.0149], [0.7913, 0.0888, 0.0224, 0.0064, 0.0057, 0.0029, 0.0024, 0.0016], [0.9607, 0.0039, 0.0035, 0.0033, 0.0014, 0.0009, 0.0008, 0.0008], [0.0438, 0.0235, 0.0183, 0.0098, 0.0072, 0.0049, 0.0043, 0.0041], [0.954, 0.003, 0.0025, 0.0021, 0.0014, 0.0009, 0.0007, 0.0007], [0.9974, 0.0001, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9974, 0.0009, 0.0004, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9992, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9991, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9428, 0.0105, 0.0036, 0.0022, 0.0018, 0.0018, 0.0014, 0.0009], [0.998, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.8978, 0.0175, 0.0021, 0.0013, 0.0011, 0.0008, 0.0005, 0.0005], [0.9731, 0.0037, 0.0003, 0.0003, 0.0003, 0.0001, 0.0001, 0.0001], [0.9309, 0.0081, 0.0012, 0.0008, 0.0008, 0.0004, 0.0003, 0.0002], [0.2937, 0.0698, 0.0176, 0.0065, 0.0057, 0.0047, 0.0045, 0.0033], [0.2572, 0.0371, 0.0128, 0.0064, 0.0064, 0.0053, 0.0029, 0.002], [0.7799, 0.0152, 0.0041, 0.0019, 0.0019, 0.0011, 0.0008, 0.0007], [0.9509, 0.0057, 0.0017, 0.0013, 0.0009, 0.0003, 0.0002, 0.0002], [0.6869, 0.0467, 0.0162, 0.0086, 0.0043, 0.003, 0.0026, 0.0019], [0.273, 0.129, 0.0419, 0.0211, 0.0082, 0.0077, 0.006, 0.0047], [0.0937, 0.0391, 0.0099, 0.0093, 0.0047, 0.0041, 0.0039, 0.0039], [0.1671, 0.0479, 0.0397, 0.0256, 0.0107, 0.01, 0.0094, 0.0047], [0.4831, 0.0789, 0.0137, 0.0114, 0.0114, 0.0088, 0.0088, 0.0083], [0.4221, 0.0831, 0.021, 0.0164, 0.0154, 0.0144, 0.0144, 0.0093], [0.7774, 0.0439, 0.0387, 0.025, 0.0134, 0.0134, 0.0134, 0.0126], [0.8625, 0.0203, 0.0179, 0.0139, 0.0123, 0.0123, 0.0096, 0.0096], [0.8844, 0.0303, 0.0111, 0.0111, 0.0098, 0.0077, 0.006, 0.006], [0.8027, 0.04, 0.0201, 0.0167, 0.013, 0.0122, 0.0095, 0.0089], [0.9017, 0.0309, 0.0114, 0.01, 0.0078, 0.0057, 0.005, 0.0047], [0.853, 0.0331, 0.0214, 0.0156, 0.0107, 0.0107, 0.0089, 0.0069], [0.8752, 0.0299, 0.0233, 0.011, 0.0091, 0.0067, 0.0052, 0.0049], [0.5767, 0.1287, 0.0473, 0.0445, 0.027, 0.0106, 0.0088, 0.0082], [0.7154, 0.0457, 0.0335, 0.0261, 0.0116, 0.0075, 0.0066, 0.0043], [0.8571, 0.0228, 0.0178, 0.0147, 0.0139, 0.0065, 0.0065, 0.0058], [0.8994, 0.0212, 0.0175, 0.0069, 0.0057, 0.0053, 0.005, 0.005], [0.8214, 0.0674, 0.0141, 0.0141, 0.0133, 0.0133, 0.011, 0.0055], [0.792, 0.0835, 0.0348, 0.0164, 0.0154, 0.0078, 0.0078, 0.0053], [0.9144, 0.0244, 0.0148, 0.0102, 0.0074, 0.0058, 0.0042, 0.0031], [0.9378, 0.0118, 0.0104, 0.0081, 0.0081, 0.0056, 0.0034, 0.0034], [0.9009, 0.024, 0.0129, 0.01, 0.01, 0.0088, 0.0078, 0.0069], [0.9037, 0.0273, 0.0129, 0.0114, 0.0089, 0.0078, 0.0069, 0.0042], [0.9384, 0.0195, 0.0118, 0.0049, 0.0043, 0.0038, 0.0038, 0.0034], [0.9309, 0.015, 0.0103, 0.0071, 0.0063, 0.0063, 0.0049, 0.0049], [0.943, 0.0105, 0.0105, 0.0072, 0.0056, 0.0049, 0.0044, 0.0034], [0.944, 0.0105, 0.0093, 0.0064, 0.0056, 0.005, 0.0039, 0.0039], [0.877, 0.0265, 0.0234, 0.0206, 0.0097, 0.0076, 0.0076, 0.0052], [0.8508, 0.0374, 0.02, 0.0177, 0.0121, 0.0121, 0.0107, 0.0074], [0.4583, 0.0902, 0.0583, 0.0454, 0.0426, 0.0353, 0.0259, 0.0189], [0.4031, 0.1904, 0.0546, 0.0481, 0.0274, 0.0214, 0.0214, 0.0166], [0.291, 0.1375, 0.0475, 0.0327, 0.0307, 0.0254, 0.0154, 0.0154], [0.5275, 0.1039, 0.0205, 0.0141, 0.0124, 0.0117, 0.0103, 0.0071], [0.2592, 0.1224, 0.031, 0.031, 0.0273, 0.0257, 0.0257, 0.0176], [0.1411, 0.1245, 0.0588, 0.0552, 0.0488, 0.038, 0.0335, 0.0203], [0.2666, 0.1427, 0.0595, 0.0463, 0.0409, 0.0318, 0.0299, 0.0233], [0.3285, 0.3285, 0.1209, 0.0504, 0.0185, 0.0164, 0.0164, 0.0112], [0.3964, 0.2404, 0.1002, 0.0369, 0.0325, 0.0224, 0.0224, 0.0099], [0.5871, 0.1484, 0.0701, 0.0375, 0.0331, 0.0156, 0.0138, 0.0122], [0.6867, 0.1053, 0.0724, 0.0439, 0.0266, 0.0098, 0.0086, 0.0059], [0.5169, 0.1307, 0.07, 0.07, 0.0481, 0.0374, 0.0122, 0.0107], [0.1941, 0.1511, 0.1334, 0.063, 0.0592, 0.0461, 0.0298, 0.0263], [0.2554, 0.2254, 0.057, 0.0535, 0.0368, 0.0346, 0.021, 0.0153], [0.2258, 0.0689, 0.0689, 0.0689, 0.0445, 0.0392, 0.027, 0.027], [0.2837, 0.0764, 0.0674, 0.0559, 0.0463, 0.0409, 0.0361, 0.0318]], "ranks": {"Rust": [124654, 155450, 125675, 185453, 111260, 91680, 107328, 116661, 131188, 110570, 96139, 148044, 136173, 136312, 158173, 165712, 159843, 201349, 205841, 204409, 210350, 195471, 172657, 150495, 202614, 227284, 217994, 200792, 186245, 216788, 191732, 128750, 144303, 207683, 206386, 206262, 160067, 149898, 172395, 182647, 196490, 180704, 176177, 159370, 180503, 142216, 129211, 96394, 50595, 38770, 65373, 70437, 41291, 21523, 14398, 5584, 208, 172, 105, 66, 82, 58, 125]}}, {"pos": 446, "top": [[",", ".", "\u2013", ";", " \u2013", "\u00a0", "\u2026.", "\u00a0\u00a0"], ["\u2013", ",", ".", " \u2013", ";", "\u2013and", " \u200b\u200b", ".["], [",", ".", "\u2013", ";", " \u2013", "\u2026.", "\u2026", "\u2026.."], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "-------------</", " Hidal", " \u041a\u0440\u0430\u0441\u0438", "aruhi", " Strec", "----------</"], ["zer", "arity", "iously", "\u0902\u092c\u0930", "pop", " \u0628\u0648\u062a\u064a\u0646", "SSI", "cai"], ["iously", ",", " \u0628\u0648\u062a\u064a\u0646", "-With", "SSI", "\u8d75\u4e3d\u9896", "arity", "\u2026."], ["ning", "iously", "advert", "now", "start", "most", "set", "ness"], ["ners", "ning", "adays", "sson", "ness", "ighbour", "acist", "ager"], ["!.", "ighbour", ",.", ".", ",", "adays", "avour", ";."], [",", "\u2013", "\uaecf", "\u2013and", "much", "ighbour", "\u00ading", "\u76f8\u8f83"], [",", "\u00a0", "ning", "\u2013", ".", "-", "though", "ably"], ["avour", "ning", "\u611f\u5341\u8db3", "ighbour", "antly", " flavours", "adays", "-ish"], ["\u611f\u5341\u8db3", "antly", "ning", "-esque", "-ish", "adays", "atively", "avour"], ["\u611f\u5341\u8db3", "-esque", "-ish", "adays", "antly", "aturing", "ning", " albeit"], ["\u611f\u5341\u8db3", " arguably", "\u9887\u5177", "aturing", " albeit", "though", "-esque", " hugely"], ["\u611f\u5341\u8db3", "\u62e5\u6709\u7740", "\u81ea\u4e2a", "\u8fd8\u6709\u7740", "-esque", "aturing", "\u4e0d\u5149", " anyways"], ["-esque", "\u611f\u5341\u8db3", " entirety", "\u5473\u513f", "\u62e5\u6709\u7740", "outs", "though", "\u76f8\u8f83"], ["-esque", "\u5473\u513f", "\u611f\u5341\u8db3", "stuff", "\u8303\u513f", "locales", "quirer", "otech"], ["\u611f\u5341\u8db3", "-esque", "iative", "\u9887\u5177", "Sharper", "\u8bf8\u591a", "lessly", "\u5473\u513f"], ["\u611f\u5341\u8db3", "\u9887\u5177", "\u8bf8\u591a", "Sharper", "\u4ea6\u6216\u662f", "\u54ea\u6015\u662f", "-esque", " anyways"], ["Though", "much", "\u611f\u5341\u8db3", "though", "\u9887\u5177", "\u76f8\u8f83", "ning", "\u8bf8\u591a"], ["\u611f\u5341\u8db3", "ovski", "Sharper", "ewire", "icum", "itably", " \u03cc\u03bb\u03b5", "acular"], ["\u611f\u5341\u8db3", "ovski", "Sharper", "icum", "itably", "acular", "\u76f8\u5173\u884c\u4e1a", " \u03cc\u03bb\u03b5"], ["\u611f\u5341\u8db3", "much", "ning", "\u0163", "\u9887\u5177", "\u54ea\u6015\u662f", " entirety", "ably"], ["\u611f\u5341\u8db3", "Though", "Whilst", "\u76f8\u8f83", "\u5373\u4fbf", "\u5168\u7403\u7684", "\u54ea\u6015\u662f", "itably"], ["\u611f\u5341\u8db3", "Sharper", "ovski", "\u5168\u7403\u7684", "ewire", "aptops", "_UNSUPPORTED", "\u534e\u8bed"], ["ovski", "\u611f\u5341\u8db3", "Sharper", "\u5168\u7403\u7684", "\u6f2b\u5a01", "aptops", "vironments", "agerie"], [" \r\n\r\n", "\u611f\u5341\u8db3", "ovski", "\u54ea\u6015", "\u5168\u7403\u7684", "amai", "ifold", "elaide"], ["ustry", "\u611f\u5341\u8db3", "\u5168\u7403\u7684", " workflows", "otech", "agerie", "ewire", "iverse"], [" workflows", "ustry", "iverse", "ourcing", "ewire", "\u5168\u7403\u7684", " academia", " setups"], [" **.", " .**", " workflows", " **", "ustry", " academia", "ative", " **:"], [" **", " .**", " **.", " .", " ..", " academia", " -**", " **.**"], [" massively", " .", " ultimately", " arguably", " even", " essentially", " technically", " much"], [" massively", " arguably", " technically", " tech", "\u2011", " workflows", " labs", " setups"], [" massively", " technically", " arguably", " sprawling", " tech", " notoriously", " essentially", " vastly"], [" workflows", " tech", " labs", " cheap", " massively", " technically", " arguably", " Kickstarter"], [" workflows", " tech", " labs", " cheap", " sprawling", " massively", " automated", " hardware"], [" workflows", " cheap", " tech", " automated", " labs", " hardware", " remotely", " infrastructure"], [" workflows", " remotely", " seamlessly", " labs", " tech", " cheap", " hardware", " workflow"], [" workflows", " automated", " remotely", " workflow", " labs", " Workflow", " remote", " environments"], [" workflows", " automated", " labs", " workflow", " remotely", " Workflow", " automation", " labor"], [" workflows", " automated", " labs", " workflow", " remotely", " automation", " pipelines", " setups"], [" workflows", " automated", " labs", " workflow", " automation", " pipelines", " outsourcing", " remotely"], [" workflows", " labs", " automated", " workflow", " outsourcing", " pipelines", " remotely", " environments"], [" workflows", " workflow", " automated", " labs", " outsourcing", " pipelines", " automation", " Workflow"], [" workflows", " automated", " labs", " workflow", " cheap", " pipelines", " setups", " outsourcing"], [" workflows", " automated", " workflow", " labs", " cheap", " pipelines", " setups", " automation"], [" workflows", " cheap", " workflow", " automated", " labs", " setups", " pipelines", " Workflow"], [" workflows", " labs", " workflow", " automated", " setups", " cheap", " pipelines", "cheap"], [" cheap", " workflows", "cheap", " automated", " workflow", " labs", "\u8f7b\u6613", " mainstream"], [" workflows", "\u90a3\u4e48\u7b80\u5355", "\u5e38\u89c4\u7684", "\u5e38\u89c4", " automated", " cheap", "cheap", " pipelines"], [" workflows", "\u5e38\u89c4", " automated", " pipelines", " workflow", "\u90a3\u4e48\u7b80\u5355", "\u5e38\u89c4\u7684", " cheap"], ["\u5e38\u89c4", " automated", " workflows", "\u5e38\u89c4\u7684", " pipelines", "-standard", " automation", "\u5e38\u6001\u5316"], [" workflows", " automated", "\u5e38\u89c4", " pipelines", " standard", "-standard", " automation", "standard"], [" CI", "CI", "_CI", ".ci", "-ci", "_ci", " pipelines", " workflows"], [" CI", "CI", "_CI", ".ci", "-ci", "_ci", " pipelines", "(ci"], [" CI", "CI", "_CI", ".ci", "-ci", "_ci", " pipelines", "(ci"], [" CI", "CI", ".ci", "_CI", "-ci", "_ci", " your", "(ci"], [" CI", "CI", "_CI", ".ci", "-ci", " pipeline", " pipelines", "_ci"], [" CI", "CI", " your", " pipeline", " pipelines", ".ci", "_CI", "-ci"], [" CI", "CI", " your", ".ci", "_CI", "-ci", " standard", " pipeline"], [" CI", "CI", " your", "-ci", "_CI", ".ci", "_ci", " ci"], [" CI", " your", "CI", " GitHub", " the", " standard", "_CI", "-ci"]], "p": [[0.6077, 0.3686, 0.0126, 0.0032, 0.0028, 0.0025, 0.0007, 0.0004], [0.3928, 0.3256, 0.0876, 0.0303, 0.0111, 0.0068, 0.0021, 0.0018], [0.706, 0.2023, 0.0843, 0.0019, 0.0013, 0.0009, 0.0005, 0.0005], [0.0045, 0.0037, 0.0029, 0.0027, 0.0021, 0.002, 0.0019, 0.0017], [0.0025, 0.0023, 0.0018, 0.0017, 0.0014, 0.0013, 0.0013, 0.0012], [0.0026, 0.0021, 0.0016, 0.0013, 0.0012, 0.0012, 0.0012, 0.0011], [0.0117, 0.0091, 0.0055, 0.0055, 0.0055, 0.0052, 0.004, 0.0038], [0.01, 0.0094, 0.0069, 0.0069, 0.0065, 0.0057, 0.0054, 0.0047], [0.0153, 0.0082, 0.0072, 0.0064, 0.0064, 0.0064, 0.0041, 0.0039], [0.0477, 0.0069, 0.0024, 0.0021, 0.0019, 0.0019, 0.0016, 0.0014], [0.1268, 0.0412, 0.0183, 0.0183, 0.0151, 0.0134, 0.0126, 0.0098], [0.0147, 0.0107, 0.0107, 0.0079, 0.0074, 0.0069, 0.0065, 0.0061], [0.0095, 0.0079, 0.0065, 0.0051, 0.0048, 0.0045, 0.0039, 0.0031], [0.0092, 0.0081, 0.003, 0.0026, 0.0025, 0.0019, 0.0019, 0.0018], [0.0041, 0.003, 0.0025, 0.0023, 0.0018, 0.0015, 0.0015, 0.0015], [0.0051, 0.0029, 0.0019, 0.0015, 0.0015, 0.0014, 0.0011, 0.0011], [0.0091, 0.0063, 0.0028, 0.0026, 0.0022, 0.0019, 0.0019, 0.0018], [0.0042, 0.004, 0.0037, 0.0013, 0.0013, 0.0012, 0.0012, 0.0011], [0.0099, 0.005, 0.0017, 0.0015, 0.0014, 0.0013, 0.0013, 0.0013], [0.008, 0.0024, 0.0019, 0.0016, 0.0014, 0.0014, 0.0013, 0.0012], [0.008, 0.0052, 0.0045, 0.0043, 0.0031, 0.0024, 0.0024, 0.0021], [0.005, 0.0024, 0.002, 0.0017, 0.0015, 0.0013, 0.0013, 0.0012], [0.006, 0.0025, 0.0015, 0.0014, 0.0013, 0.001, 0.0009, 0.0009], [0.0033, 0.0021, 0.0013, 0.0012, 0.0012, 0.0011, 0.0011, 0.001], [0.0035, 0.0025, 0.0024, 0.0014, 0.0011, 0.0009, 0.0009, 0.0009], [0.0026, 0.0021, 0.0018, 0.0012, 0.0012, 0.001, 0.001, 0.0009], [0.0021, 0.0021, 0.0015, 0.0013, 0.0012, 0.0012, 0.0011, 0.001], [0.004, 0.0024, 0.0021, 0.0019, 0.0019, 0.0018, 0.0017, 0.0017], [0.0037, 0.003, 0.0024, 0.0022, 0.0022, 0.0018, 0.0017, 0.0017], [0.0092, 0.0063, 0.0034, 0.0028, 0.0023, 0.0021, 0.0021, 0.0018], [0.0248, 0.0233, 0.0097, 0.0063, 0.0059, 0.0049, 0.004, 0.0038], [0.0834, 0.0736, 0.0539, 0.0288, 0.0068, 0.0064, 0.006, 0.006], [0.032, 0.03, 0.0234, 0.0206, 0.0142, 0.0133, 0.0111, 0.0098], [0.0176, 0.0121, 0.0121, 0.01, 0.0094, 0.0078, 0.0061, 0.0044], [0.028, 0.0181, 0.017, 0.0103, 0.0091, 0.0067, 0.0059, 0.0055], [0.0249, 0.0206, 0.0142, 0.0133, 0.0092, 0.0081, 0.0063, 0.0063], [0.0471, 0.0196, 0.0119, 0.0093, 0.0072, 0.0064, 0.006, 0.0056], [0.1255, 0.0298, 0.0218, 0.0205, 0.015, 0.011, 0.011, 0.008], [0.1927, 0.0179, 0.0149, 0.0116, 0.0109, 0.0102, 0.0096, 0.0085], [0.3859, 0.0407, 0.0359, 0.0359, 0.0317, 0.008, 0.008, 0.0075], [0.3868, 0.0919, 0.0811, 0.0492, 0.0462, 0.0097, 0.0091, 0.0091], [0.335, 0.2032, 0.0748, 0.0582, 0.0228, 0.0178, 0.0122, 0.0095], [0.2458, 0.2169, 0.1161, 0.0484, 0.0215, 0.0202, 0.0178, 0.0157], [0.2697, 0.1274, 0.1274, 0.0823, 0.0208, 0.0172, 0.0111, 0.0111], [0.3837, 0.1099, 0.0804, 0.0755, 0.0169, 0.0149, 0.008, 0.007], [0.2667, 0.0764, 0.0718, 0.0674, 0.0264, 0.0193, 0.0103, 0.0097], [0.3409, 0.104, 0.0862, 0.0631, 0.0263, 0.0218, 0.0141, 0.0091], [0.2531, 0.0931, 0.0822, 0.0725, 0.0565, 0.0172, 0.0152, 0.0104], [0.1712, 0.0382, 0.0337, 0.0247, 0.0247, 0.0205, 0.017, 0.008], [0.069, 0.0648, 0.0419, 0.0238, 0.0224, 0.0174, 0.0154, 0.0128], [0.0594, 0.0264, 0.0193, 0.0181, 0.0133, 0.0133, 0.0125, 0.0117], [0.1763, 0.0648, 0.0505, 0.0505, 0.0211, 0.0136, 0.0136, 0.0128], [0.1622, 0.0766, 0.056, 0.0362, 0.0362, 0.0234, 0.0206, 0.0206], [0.0598, 0.0411, 0.0386, 0.0386, 0.0363, 0.0341, 0.0282, 0.0234], [0.7326, 0.1635, 0.0531, 0.0195, 0.0118, 0.0044, 0.0026, 0.0014], [0.7908, 0.1374, 0.0307, 0.0239, 0.0088, 0.0032, 0.0015, 0.001], [0.8492, 0.1149, 0.0156, 0.0121, 0.0035, 0.0021, 0.0007, 0.0004], [0.8847, 0.0932, 0.0077, 0.0068, 0.0041, 0.0012, 0.001, 0.0003], [0.9579, 0.0371, 0.0014, 0.0011, 0.0008, 0.0007, 0.0004, 0.0002], [0.9228, 0.0316, 0.0316, 0.0043, 0.0029, 0.0016, 0.001, 0.001], [0.9894, 0.0059, 0.0036, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.9916, 0.0076, 0.0003, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9718, 0.0229, 0.0045, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001]], "ranks": {"Rust": [85190, 117521, 85431, 41892, 30104, 24430, 14427, 12898, 8633, 9528, 11229, 17766, 17786, 22965, 51268, 61200, 30993, 27170, 67601, 70455, 96869, 44619, 38393, 57809, 11502, 15715, 25331, 49927, 39117, 41376, 122142, 107460, 49468, 115897, 95039, 95649, 69475, 56093, 60032, 66431, 66973, 60877, 62376, 63960, 63250, 59251, 54954, 46949, 71096, 51499, 90129, 95373, 84637, 75253, 77719, 83045, 42617, 25919, 13773, 4382, 4147, 2543, 1006]}}, {"pos": 447, "top": [[" \u2013", "\u2013", ",", ".", "\u2013and", ".\u2013", " \u2013,", ";"], ["\u2013", "\u2013and", " \u2013", ",", ".\u2013", " \u2013,", "\u2013\u2013", "."], ["\u2013", " \u2013", ",", "\u2013and", ".", ".\u2013", " \u2013,", ";"], ["\u6700\u65b0\u53d1\u5e03", " *\u2013", "\u2013and", " -->", "\u2013\u2013", "Advisor", "~\":\"", "('--"], ["\u2013and", "\u2013", "\u2013\u2013", ".\u2013", " \u2013", ",", "-->", ".@"], ["\u2013", "\u2013and", ",", ".", ".\u2013", "\u2013\u2013", " \u2013", "  "], ["\u2013", "\u2013and", " \u2013", ",", "\u2013\u2013", ".", "\u2018", "-->"], ["\u2013and", "\u2013", ".", ",", " \u2013", "-->", "\u6700\u65b0\u53d1\u5e03", "\u2013\u2013"], [",", ".", "\u2013", "\u2013and", " \u2013", "\u2018", ".\u2013", "!"], [",", "\u2013", "\u2013and", ".", "\u2013\u2013", " \u2013", ".\u2013", "@"], ["\u2013", ",", ".", "\u2013and", " \u2013", "@", "\u00a0", " "], ["\u2013and", " -->", "\u6700\u65b0\u53d1\u5e03", " ____", " \ufffd", "____", " ______", "\u2013"], ["\u2013and", "\u2013", "\u6700\u65b0\u53d1\u5e03", " \u2013", "\u2013\u2013", " -->", " folks", "-esque"], ["\u2013and", "\u2013", ",", " \u2013", " folks", " kids", "\u2013\u2013", " savvy"], ["\u2013", "\u2013and", " folks", " \u2013", "--", " ", " hopefully", ","], [" folks", "\u2013", " kids", "\u2013and", "--", " savvy", " \u2013", " --"], ["\u2013", ",", " \u2013", "\u2013and", "\u00a0", "o", "a", "..."], ["\u2013", "\u2013and", ",", " \u2013", "-esque", "o", " tech", "..."], ["\u2013", "\u2013and", "-esque", " folks", " savvy", "--", " \u2013", " tech"], [" folks", " --", "\u2013and", "\u2013", " savvy", "-esque", "--", " \u2018"], ["\u2013", "\u2013and", "<|endoftext|>", " --", " folks", "--", " \u2013", "a"], [" anyways", " savvy", " funky", "-esque", "MUX", " showcase", "\u4e8b\u513f", " tech"], [" tech", " anyways", " folks", " savvy", " --", " showcase", " ballpark", "-esque"], [" --", " tech", " sprawling", " ''", " anyways", " overarching", " folks", " myriad"], [" --", " tech", " sprawling", " overarching", " folks", " anyways", " ballpark", "-esque"], [" tech", " labs", " startup", " --", " workspace", " playbook", " setups", " configs"], [" tech", " --", " sprawling", " labs", " workspace", " setups", " startup", " toolkit"], [" --", " tech", " sprawling", " __", " #", " labs", " ____", " ..."], [" tech", " sprawling", " labs", " --", " industry", " toolkit", " flagship", " tools"], [" tech", " ____", " labs", " toolkit", " \n  \n", " startup", " ______", " ..."], [" ...", " tech", " ____", " .", " __", " **", " labs", " ...\\"], [" ...", " .", " tech", " team", " __", " **", " industry", " #"], [" tech", " .", " team", " projects", " project", " ", " system", " just"], [" tech", " labs", " startup", " toolkit", " setup", " setups", " workflows", " hardware"], [" tech", " labs", " startup", " hardware", " infrastructure", " setup", " workflows", " startups"], [" tech", " labs", " workflows", " workflow", " hardware", " startup", " Tech", " software"], [" tech", " workflows", " labs", " workflow", " hardware", " Tech", " software", " studio"], [" tech", " workflows", " workflow", " labs", " automated", " hardware", " software", " infrastructure"], [" workflows", " workflow", " tech", " labs", " hardware", " Workflow", " infrastructure", " workspace"], [" workflows", " workflow", " labs", " Workflow", " automated", " tech", " pipelines", " infrastructure"], [" workflows", " workflow", " labs", " automated", " Workflow", " tech", " pipelines", " automation"], [" workflows", " workflow", " labs", " automated", " pipelines", " infrastructure", " Workflow", " pipeline"], [" workflows", " workflow", " labs", " pipelines", " automated", " pipeline", " Workflow", " infrastructure"], [" workflows", " workflow", " labs", " pipelines", " Workflow", " pipeline", " automated", " infrastructure"], [" workflows", " workflow", " labs", " pipelines", " Workflow", " pipeline", " automated", " workspace"], [" workflows", " workflow", " labs", " pipelines", " pipeline", " Workflow", " automated", " budget"], [" workflows", " workflow", " labs", " pipelines", " Workflow", " pipeline", " automated", " budget"], [" workflow", " workflows", " labs", " pipelines", " Workflow", " pipeline", " budget", " budgets"], [" workflow", " labs", " workflows", " pipelines", " budget", " pipeline", " backend", " budgets"], [" workflow", " workflows", " labs", " pipelines", " Workflow", " pipeline", " budget", " workspace"], [" workflow", " workflows", " labs", " pipelines", " pipeline", " backend", " Workflow", " automated"], [" workflow", " workflows", " pipelines", " pipeline", " labs", " automated", " automation", " Workflow"], [" automated", " pipelines", " pipeline", " automation", " workflows", " workflow", " Automated", "pipeline"], [" pipeline", " pipelines", " automated", " workflows", " automation", " workflow", " docker", "pipeline"], [" CI", " pipeline", " pipelines", "CI", " workflow", " workflows", "_CI", "pipeline"], [" CI", " pipeline", "CI", " pipelines", "_CI", ".ci", " workflow", "pipeline"], [" CI", "CI", " pipeline", " pipelines", ".ci", "_CI", "-ci", "pipeline"], [" CI", "CI", " pipeline", " pipelines", ".ci", "_CI", "-ci", "pipeline"], [" pipeline", " CI", " pipelines", "pipeline", " Pipeline", "CI", "Pipeline", "_pipeline"], [" pipeline", " pipelines", " CI", "pipeline", " Pipeline", "Pipeline", "_pipeline", "CI"], [" pipeline", " CI", " pipelines", " Pipeline", "pipeline", "Pipeline", "CI", "_pipeline"], [" CI", "CI", " pipeline", " pipelines", ".ci", "-ci", " build", " ci"], [" CI", " pipeline", " pipelines", " build", "CI", " builders", " primary", " standard"]], "p": [[0.6223, 0.3331, 0.0213, 0.0146, 0.0069, 0.0006, 0.0003, 0.0001], [0.7002, 0.177, 0.1074, 0.0037, 0.003, 0.0025, 0.0022, 0.001], [0.8762, 0.056, 0.03, 0.03, 0.0052, 0.0019, 0.0003, 0.0001], [0.0414, 0.0162, 0.0068, 0.006, 0.0046, 0.0036, 0.0034, 0.0034], [0.3263, 0.3263, 0.05, 0.0323, 0.0304, 0.0252, 0.0162, 0.0135], [0.4973, 0.2834, 0.0979, 0.0219, 0.0193, 0.0071, 0.0059, 0.0019], [0.541, 0.2255, 0.0607, 0.0346, 0.0269, 0.0197, 0.0127, 0.0077], [0.4768, 0.1867, 0.0569, 0.0569, 0.0197, 0.0105, 0.0099, 0.0087], [0.3739, 0.33, 0.1376, 0.1071, 0.0039, 0.0034, 0.0027, 0.0022], [0.4571, 0.3141, 0.123, 0.0101, 0.0051, 0.0033, 0.0021, 0.0014], [0.5072, 0.2396, 0.0502, 0.0472, 0.0391, 0.0197, 0.0127, 0.0099], [0.1971, 0.1123, 0.0413, 0.0251, 0.0152, 0.0134, 0.0118, 0.0118], [0.4428, 0.0928, 0.0195, 0.0134, 0.0111, 0.0076, 0.0046, 0.0041], [0.443, 0.2524, 0.0221, 0.0207, 0.0134, 0.0052, 0.0041, 0.0034], [0.0953, 0.0655, 0.0578, 0.0309, 0.0291, 0.0226, 0.0156, 0.0156], [0.1576, 0.0481, 0.0451, 0.0451, 0.0138, 0.0138, 0.0122, 0.0114], [0.4805, 0.2003, 0.0348, 0.0175, 0.0164, 0.0145, 0.012, 0.006], [0.5174, 0.1019, 0.0138, 0.0101, 0.0074, 0.0048, 0.0037, 0.0035], [0.0614, 0.029, 0.0273, 0.0187, 0.0165, 0.0146, 0.0094, 0.0078], [0.0379, 0.0334, 0.0277, 0.0148, 0.009, 0.0084, 0.0079, 0.0075], [0.046, 0.0382, 0.0337, 0.0124, 0.0124, 0.008, 0.008, 0.0059], [0.0031, 0.0028, 0.0026, 0.0023, 0.0023, 0.0023, 0.0022, 0.0019], [0.0066, 0.0062, 0.0059, 0.0049, 0.0046, 0.0038, 0.0033, 0.0031], [0.0714, 0.0103, 0.0091, 0.0043, 0.0036, 0.0036, 0.0033, 0.0029], [0.0352, 0.0129, 0.0084, 0.0065, 0.0051, 0.0033, 0.0029, 0.0027], [0.075, 0.013, 0.0108, 0.009, 0.0074, 0.0066, 0.0062, 0.0062], [0.0701, 0.0311, 0.0167, 0.0156, 0.0095, 0.0079, 0.0069, 0.0051], [0.1851, 0.0874, 0.0235, 0.0126, 0.0118, 0.0098, 0.0098, 0.0076], [0.2118, 0.0305, 0.0287, 0.0185, 0.0077, 0.0072, 0.0068, 0.0064], [0.184, 0.0437, 0.034, 0.0182, 0.0133, 0.0133, 0.0133, 0.0125], [0.2076, 0.1044, 0.0463, 0.0361, 0.0233, 0.0193, 0.015, 0.0125], [0.1458, 0.0733, 0.0536, 0.0174, 0.0164, 0.0136, 0.0127, 0.012], [0.0768, 0.0678, 0.0171, 0.0134, 0.0134, 0.0125, 0.0098, 0.0092], [0.5382, 0.039, 0.0099, 0.0093, 0.0093, 0.0072, 0.0068, 0.0064], [0.4782, 0.0393, 0.0077, 0.0073, 0.006, 0.0057, 0.005, 0.0047], [0.5483, 0.0423, 0.0273, 0.0137, 0.0094, 0.0073, 0.0065, 0.0057], [0.4514, 0.0539, 0.0476, 0.0211, 0.0106, 0.006, 0.006, 0.0053], [0.2344, 0.1611, 0.0631, 0.0461, 0.0181, 0.015, 0.0132, 0.0132], [0.3794, 0.1581, 0.1021, 0.0513, 0.013, 0.0115, 0.0108, 0.0089], [0.4594, 0.2786, 0.0427, 0.0377, 0.0243, 0.0215, 0.0084, 0.0062], [0.4818, 0.2579, 0.0837, 0.0349, 0.0272, 0.0145, 0.0073, 0.0054], [0.4306, 0.2959, 0.0748, 0.0454, 0.0214, 0.0167, 0.0147, 0.0115], [0.4497, 0.3091, 0.0609, 0.0326, 0.0287, 0.0198, 0.0154, 0.0145], [0.358, 0.3159, 0.1162, 0.0276, 0.0276, 0.0148, 0.0148, 0.0062], [0.3614, 0.3614, 0.1035, 0.0246, 0.0124, 0.0124, 0.0096, 0.0058], [0.3083, 0.2721, 0.165, 0.0417, 0.0185, 0.0112, 0.0106, 0.0093], [0.381, 0.3362, 0.1402, 0.0157, 0.0095, 0.0095, 0.0066, 0.0066], [0.3036, 0.3036, 0.1842, 0.0249, 0.0125, 0.0118, 0.0092, 0.0076], [0.3372, 0.2045, 0.1805, 0.0277, 0.0216, 0.019, 0.0096, 0.0096], [0.4023, 0.1677, 0.0843, 0.0257, 0.0242, 0.02, 0.0177, 0.0147], [0.3018, 0.2663, 0.0717, 0.0673, 0.0299, 0.0133, 0.0117, 0.0103], [0.2153, 0.2153, 0.2153, 0.1017, 0.0424, 0.0374, 0.0227, 0.0089], [0.2155, 0.1679, 0.1481, 0.1154, 0.1154, 0.1018, 0.0057, 0.0051], [0.237, 0.237, 0.1437, 0.0988, 0.0872, 0.0872, 0.0081, 0.0072], [0.7529, 0.0899, 0.0545, 0.0425, 0.0227, 0.0177, 0.004, 0.0035], [0.8495, 0.0543, 0.0479, 0.0329, 0.0035, 0.0031, 0.0021, 0.0014], [0.9247, 0.046, 0.0149, 0.0091, 0.0016, 0.0011, 0.0006, 0.0005], [0.9547, 0.037, 0.005, 0.0014, 0.0005, 0.0004, 0.0004, 0.0001], [0.731, 0.2094, 0.0467, 0.0056, 0.0026, 0.0023, 0.0018, 0.0005], [0.8837, 0.0931, 0.0162, 0.0032, 0.0019, 0.001, 0.0004, 0.0002], [0.6253, 0.2953, 0.0747, 0.0018, 0.0014, 0.0006, 0.0004, 0.0002], [0.9978, 0.001, 0.0009, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9799, 0.0158, 0.0015, 0.0009, 0.0009, 0.0002, 0.0001, 0.0001]], "ranks": {"Rust": [13453, 23051, 19873, 25755, 2107, 2384, 5386, 4667, 12180, 11558, 5647, 3407, 2879, 2705, 8457, 7705, 9921, 17119, 37319, 73905, 54384, 51014, 69519, 51678, 53754, 62375, 55231, 27227, 23842, 31773, 26153, 21435, 24005, 58804, 50872, 31186, 27468, 24519, 28600, 22803, 18020, 10945, 16395, 16543, 26660, 18976, 23354, 21640, 34134, 37299, 52478, 58366, 27861, 15710, 27082, 17883, 8972, 6023, 3529, 3076, 2291, 1932, 1567]}}, {"pos": 448, "top": [[" \u2013", ".", "@\"", "\u00b7\u00b7", " [\u2026]", " \u00b7", "\u2026..", " \u2502"], [".\",\"", " \u2013**", "\u30f3", "\u2027", " \uff5c", ")\",\"", " \u25c6", " \u00b7"], [" \uff5c", " \u2013**", "\uff1f\u201d", "\u2027", "HCI", "\uff1f", " \u25c6", " \uff1e"], ["':''", " milfs", " Blowjob", " Shemale", " pornstar", " cumshot", " ','", " ;;^"], [" '@", ".\",\"", "(ci", " CSI", " *@", " \u25c6", " \":\"", " CI"], ["(ci", " \u200b\u200b", " CSI", ":@", " \u3011", "@g", "(si", "\u6e2f\u80a1"], [" \u3010", " ......", " \u3011", " \u200b\u200b", "(ci", "\u200b\u200b", " \uff5c", " \u25c6"], [".\",\"", ".','", "(ci", " pornstar", " '~/", " Geile", ".\u00bb", "HCI"], [".\u00bb", ".\",\"", ".", ".\u201d", " [.", " [].", ":.", ".\"\"\""], [",", ".", ",.", ".|", ".\",\"", ".\u00bb", " [@", "\u00ad"], [".", ",", ".@", ".\",\"", "@", " [@", ".|", ".#"], [".\",\"", ".','", ".\ufffd", " workforce", ".\u00ab", " CI", " CSI", "(ci"], [".\u00ab", "-esque", " workflows", " CSI", " CI", ".\",\"", " workforce", " wiki"], [".", "-esque", " tech", " CSI", "-ish", " CI", " FC", ":."], ["-esque", ".", " tech", " labs", " ops", "-ish", " vibe", " OC"], ["-esque", " tech", " anyways", " mods", " labs", " reboot", "agnostics", " Tech"], ["-esque", " tech", " reboot", " startup", " startups", " Tech", " labs", " wiki"], ["-esque", " tech", " startups", " labs", " startup", " Tech", " freelancer", "-ish"], ["-esque", " tech", " labs", " reboot", " Tech", " wiki", "(ci", " ops"], ["-esque", " wiki", " reboot", "Tumblr", " tech", "(ci", "wiki", " labs"], ["-esque", " wiki", " alongside", " tech", "@", "(ci", " Wiki", ".@"], [" pornstar", " milfs", "ewire", " wiki", " workflows", " cumshot", " startups", " Blowjob"], [" wiki", " workflows", " startups", " macOS", " reboot", "ENCI", " tech", " startup"], [" workshops", " tech", " labs", " workflows", " wiki", " CI", " reboot", " CSI"], [" tech", " workflows", " labs", " wiki", " workshops", " startups", " macOS", " startup"], [" workflows", " labs", " tech", " workshops", " workflow", " startups", " workshop", " workforce"], [" labs", " workflows", " tech", " workshops", " workflow", " workshop", " production", " pipeline"], [" tech", " labs", " --", " production", " ,", " workflows", " workshops", " workshop"], [" tech", " labs", " workflows", " workflow", " workshops", " workshop", " production", " Tech"], [" workflows", " tech", " labs", " workflow", " workshops", " workshop", " startup", " infrastructure"], [" workflows", " tech", " .", " labs", " workflow", " ...", " .**", " workshops"], [" .", " ...", " tech", " ..", " .**", " workflows", " labs", " workshops"], [" .", " ,", " tech", " for", " production", " /", " @", " system"], [" tech", " labs", " workflow", " workflows", " infrastructure", " setup", " technology", " workshops"], [" tech", " labs", " workflows", " workflow", " setup", " Tech", " infrastructure", " hardware"], [" tech", " \u2014", " labs", " workflows", " \u2013", " Tech", " workflow", " hardware"], [" tech", " \u2014", " workflows", " labs", " workflow", " Tech", " \u2013", " hardware"], [" tech", " workflows", " labs", " workflow", " Tech", " automated", " setup", " infrastructure"], [" workflows", " tech", " workflow", " labs", " setup", " hardware", " \u2014", " infrastructure"], [" workflows", " workflow", " automated", " labs", " automation", " tech", " pipelines", " pipeline"], [" workflows", " workflow", " labs", " automated", " automation", " tech", " pipelines", " pipeline"], [" workflows", " workflow", " labs", " pipeline", " pipelines", " automated", " automation", " production"], [" workflows", " workflow", " labs", " pipelines", " pipeline", " automated", " automation", " production"], [" workflows", " workflow", " pipelines", " labs", " pipeline", " automated", " automation", " production"], [" workflows", " workflow", " pipelines", " pipeline", " labs", " production", " machines", " automation"], [" workflow", " workflows", " pipelines", " labs", " pipeline", " production", " machines", " infrastructure"], [" workflow", " workflows", " pipeline", " pipelines", " labs", " setup", " setups", " infrastructure"], [" workflow", " workflows", " pipelines", " pipeline", " labs", " setup", " setups", " costs"], [" workflow", " pipelines", " workflows", " pipeline", " labs", " unless", " setup", " setups"], [" workflow", " pipelines", " pipeline", " workflows", " labs", " setups", " setup", " unless"], [" workflow", " pipelines", " pipeline", " workflows", " setups", ";**", " labs", " infrastructure"], [" pipeline", " pipelines", " workflow", " workflows", " setups", " setup", " platform", " hardware"], [" pipeline", " pipelines", " workflow", " workflows", " setups", " setup", " unless", " platform"], [" pipeline", " pipelines", " workflow", " workflows", " environment", " setups", " environments", " docker"], [" pipeline", " pipelines", " workflow", " workflows", " CI", "CI", "pipeline", " Pipeline"], [" pipeline", " pipelines", " workflow", "pipeline", " workflows", " Pipeline", " environment", " CI"], [" pipeline", " pipelines", "pipeline", " workflow", " Pipeline", " CI", " docker", "CI"], [" pipeline", " pipelines", "pipeline", " Pipeline", " workflow", " CI", "CI", "Pipeline"], [" pipeline", " pipelines", "pipeline", " Pipeline", "Pipeline", " workflow", "_pipeline", ".pipeline"], [" pipeline", " pipelines", "pipeline", " Pipeline", "Pipeline", " workflow", " runners", ".pipeline"], [" pipeline", " pipelines", " Pipeline", "pipeline", " runners", " environment", " workflow", "Pipeline"], [" pipeline", " pipelines", " runners", " workflow", " containers", " Pipeline", " nodes", " environment"], [" pipeline", " pipelines", " runners", " workflow", " containers", "/", " nodes", " matrix"]], "p": [[0.0657, 0.031, 0.0291, 0.0242, 0.0227, 0.0227, 0.0188, 0.0177], [0.0234, 0.0206, 0.0151, 0.0151, 0.0142, 0.0125, 0.0125, 0.011], [0.0506, 0.0154, 0.0128, 0.01, 0.0064, 0.0064, 0.0057, 0.0053], [0.0428, 0.019, 0.0167, 0.0123, 0.009, 0.0074, 0.0054, 0.004], [0.0193, 0.0181, 0.0181, 0.015, 0.0125, 0.0086, 0.0086, 0.0076], [0.0407, 0.0297, 0.0103, 0.0059, 0.0052, 0.0038, 0.0033, 0.0033], [0.033, 0.0213, 0.0137, 0.0101, 0.0074, 0.0065, 0.0057, 0.0057], [0.0203, 0.0062, 0.0051, 0.0048, 0.0042, 0.004, 0.0037, 0.0037], [0.1226, 0.1151, 0.0897, 0.0424, 0.0188, 0.0177, 0.0156, 0.0121], [0.2964, 0.2308, 0.0215, 0.0178, 0.0167, 0.0101, 0.0095, 0.0074], [0.7816, 0.0222, 0.0152, 0.0143, 0.0126, 0.0119, 0.0087, 0.0072], [0.0587, 0.0158, 0.0055, 0.0055, 0.0048, 0.0043, 0.0038, 0.0027], [0.0071, 0.0049, 0.0046, 0.0046, 0.0043, 0.0043, 0.0036, 0.0034], [0.0213, 0.0147, 0.0065, 0.0057, 0.0051, 0.0048, 0.0039, 0.0039], [0.0485, 0.0402, 0.0229, 0.0079, 0.007, 0.0058, 0.0054, 0.0054], [0.0339, 0.0117, 0.0052, 0.0046, 0.0043, 0.0043, 0.0038, 0.0036], [0.0768, 0.0282, 0.0092, 0.0086, 0.0076, 0.0071, 0.0067, 0.0067], [0.0419, 0.0128, 0.0073, 0.0064, 0.006, 0.0047, 0.0044, 0.0037], [0.0851, 0.0157, 0.0066, 0.0066, 0.0062, 0.0054, 0.0048, 0.0042], [0.0252, 0.0163, 0.0068, 0.0064, 0.006, 0.0056, 0.005, 0.005], [0.013, 0.0122, 0.0079, 0.007, 0.0051, 0.0048, 0.0042, 0.004], [0.0109, 0.0066, 0.0058, 0.0058, 0.0048, 0.0043, 0.0038, 0.0033], [0.0067, 0.0059, 0.0055, 0.0049, 0.0043, 0.004, 0.0038, 0.0036], [0.0114, 0.0083, 0.0051, 0.0042, 0.0039, 0.0035, 0.0033, 0.0033], [0.0202, 0.0167, 0.0139, 0.0108, 0.0084, 0.007, 0.0058, 0.0054], [0.1032, 0.0335, 0.0296, 0.0245, 0.0245, 0.0096, 0.009, 0.0066], [0.0509, 0.0449, 0.0372, 0.0329, 0.0187, 0.0176, 0.01, 0.0083], [0.0912, 0.0519, 0.0278, 0.0245, 0.018, 0.0169, 0.0158, 0.0116], [0.0973, 0.0628, 0.0521, 0.0204, 0.0204, 0.0132, 0.0096, 0.0085], [0.1027, 0.0623, 0.0516, 0.0428, 0.019, 0.0139, 0.0084, 0.0074], [0.1123, 0.0601, 0.044, 0.0388, 0.0365, 0.0342, 0.0195, 0.0183], [0.2856, 0.1844, 0.025, 0.025, 0.0098, 0.0086, 0.0076, 0.0076], [0.3516, 0.0447, 0.0371, 0.0186, 0.0164, 0.0094, 0.0088, 0.0083], [0.2353, 0.0435, 0.0318, 0.0318, 0.015, 0.015, 0.0125, 0.011], [0.4057, 0.0622, 0.0215, 0.0167, 0.013, 0.0108, 0.0102, 0.0095], [0.3033, 0.0636, 0.0386, 0.0249, 0.0234, 0.0142, 0.0118, 0.0092], [0.2787, 0.075, 0.0584, 0.0427, 0.019, 0.0108, 0.0079, 0.0079], [0.2062, 0.1104, 0.0406, 0.0358, 0.014, 0.014, 0.0132, 0.0124], [0.2115, 0.1753, 0.0731, 0.0535, 0.0153, 0.0144, 0.0144, 0.0135], [0.4015, 0.1896, 0.0423, 0.0423, 0.0398, 0.031, 0.0241, 0.0226], [0.3308, 0.2007, 0.0837, 0.054, 0.0349, 0.0272, 0.0212, 0.0187], [0.3482, 0.2711, 0.0777, 0.0471, 0.0443, 0.0223, 0.0144, 0.0135], [0.3481, 0.2111, 0.0777, 0.0777, 0.0605, 0.0286, 0.0184, 0.0135], [0.2749, 0.2141, 0.0838, 0.0788, 0.0576, 0.0187, 0.0146, 0.0129], [0.2889, 0.2549, 0.0828, 0.0534, 0.0502, 0.0163, 0.0144, 0.0127], [0.2052, 0.1811, 0.1098, 0.0804, 0.0755, 0.023, 0.0149, 0.0123], [0.302, 0.1832, 0.0764, 0.0764, 0.0717, 0.0248, 0.016, 0.0097], [0.1859, 0.12, 0.0935, 0.0684, 0.0567, 0.0304, 0.0222, 0.0162], [0.1352, 0.1193, 0.0873, 0.082, 0.0724, 0.06, 0.0207, 0.0207], [0.1929, 0.1099, 0.097, 0.0911, 0.0458, 0.0278, 0.0216, 0.0216], [0.2255, 0.199, 0.1756, 0.155, 0.0197, 0.0163, 0.0135, 0.0087], [0.2661, 0.2348, 0.1424, 0.0864, 0.0233, 0.0233, 0.011, 0.0086], [0.3852, 0.2336, 0.1104, 0.0669, 0.0149, 0.0103, 0.0085, 0.0058], [0.4698, 0.285, 0.0561, 0.0437, 0.0206, 0.0092, 0.0086, 0.0067], [0.663, 0.19, 0.0792, 0.0257, 0.02, 0.0065, 0.0051, 0.0016], [0.7715, 0.1721, 0.0264, 0.0067, 0.0052, 0.0036, 0.0032, 0.0025], [0.8313, 0.1445, 0.0072, 0.0038, 0.003, 0.0021, 0.0011, 0.0011], [0.8735, 0.1043, 0.0086, 0.0032, 0.0028, 0.0028, 0.0017, 0.0008], [0.9647, 0.0291, 0.0039, 0.0016, 0.0004, 0.0001, 0.0001, 0.0], [0.9341, 0.0597, 0.003, 0.0016, 0.0003, 0.0003, 0.0001, 0.0001], [0.9671, 0.0292, 0.0011, 0.0011, 0.0002, 0.0002, 0.0001, 0.0001], [0.9569, 0.0255, 0.003, 0.0013, 0.0012, 0.0011, 0.001, 0.0008], [0.9568, 0.0199, 0.0064, 0.0018, 0.0013, 0.0011, 0.0009, 0.0007]], "ranks": {"Rust": [117315, 151364, 164219, 174252, 85021, 74807, 111008, 98661, 97279, 85033, 46383, 65547, 68049, 64331, 77180, 91586, 70743, 144942, 129825, 170947, 117415, 154543, 129875, 88827, 93053, 104834, 85426, 46923, 63283, 94493, 80668, 73035, 71038, 102596, 106119, 60452, 52113, 56295, 64326, 57384, 55510, 39660, 57970, 60255, 66173, 69744, 52730, 55223, 42983, 38576, 67399, 38852, 30277, 13610, 23698, 11291, 4095, 1658, 910, 652, 534, 524, 691]}}, {"pos": 449, "top": [[" \u2013", ".", " ", ",", "  ", "\u2013", " \u200b\u200b", "\u00a0\u00a0"], ["  ", " \u200b\u200b", "   \n", "   \n\n", " [@", ":\"", "[\"@", " \u2013"], [" \u2013", "\u2013", " \u200b\u200b", "\u2013and", ".\u2013", "\u2026..", " \u2013,", " |\u2013"], ["__$", " *__", " *\u201c", "enzi", " *\u201e", "\u6b64\u8d77", "*\u201c.", ".\",\""], [" [$", " [@", " *\u201c", "  ", " \u200b\u200b", " (@", " @_", "   \n\n"], [" \u200b\u200b", "  ", " @_", " *\u201c", ":_", ":@", " (${", " pipeline"], [" ~~", " $\\", " [$", " [_", " ____", " [@", " _", " ._"], [" ~~", " [@", " [_", "   \n\n", " ____", " _", " [$", " __"], ["   \n\n", " [@", "  \n\n", " \n\n\n", " [$", " [_", " \n\n", " [."], [" [@", " $\\", " [$", " [_", " ${", "\u2013", ".${", "  "], [" [@", "  ", " [$", " [_", " \u2013", " $\\", " ${", "[@"], [" [_", " [@", " [$", " transformative", " pipeline", " showcased", " \ufffd", " ~~"], [" pipeline", " showcased", " transformative", " infrastructure", " ~~", " [_", " showcasing", " tasked"], [" showcased", " transformative", " pipeline", " alongside", " ", " \u2013", " showcasing", " overarching"], [" ", " alongside", " showcased", " showcasing", "  ", " crafted", " \u2013", " transformative"], [" swiftly", " bolster", " overarching", " showcasing", " showcased", " crafting", " alongside", " arguably"], [" \u2013", " alongside", " overarching", " ", " bolster", " ultimately", " swiftly", " showcasing"], [" \u2013", " alongside", " overarching", " showcasing", " showcased", " ultimately", " arguably", "-esque"], [" alongside", " arguably", " ultimately", " overarching", " swiftly", " seamlessly", "-esque", " showcased"], [" alongside", " arguably", " swiftly", " ultimately", " overarching", " __", " seamlessly", " heavily"], ["<|endoftext|>", " alongside", " swiftly", " ultimately", " arguably", " heavily", " ,", "  \n\n"], [" __", " alongside", " *__", " seamlessly", ".__", " arguably", " swiftly", " orchestrated"], [" __", " *__", " ___", ".__", " alongside", " --", " ._", " seamlessly"], [" __", " ,", " --", " _", " alongside", " ___", " ultimately", " ."], [" __", " ___", ".__", " ____", " _", " *__", " \n\n", " \r\n\r\n"], [" __", " ___", " *__", ".__", " ____", " _", " ._", " seamlessly"], [" __", " ___", " _", " ,", " ._", " --", " ultimately", ".__"], [" __", " ___", " _", " ,", " .", " ____", " --", " ._"], [" ___", " __", " .", " ____", " ._", " _", " ,", " --"], [" ___", " __", " ._", " .", " ____", " .**", ".__", " infrastructure"], [" .", " ___", " __", " ._", " ____", " .**", " **", " .."], [" .", " ...", " ___", " __", " ,", " **", " ..", " \u2026"], [" .", " ,", " ultimately", " potentially", " for", " via", " \u2014", " .\""], [" .", " \u2026", " potentially", " \u2013", " \u2014", " arguably", " ultimately", " ,"], [" .", " potentially", " arguably", " \u2014", " \u2013", " \u2026", " .\"", " ,"], [" \u2026", " .", " \u2013", " \u2014", " .\"", " ...", " ,", " \u2026."], [" .", " \u2014", " .\"", " \u2013", " unlikely", " potentially", " .**", " likely"], [" .", " \u2014", " .\"", " software", " unlikely", " cheap", " outsourcing", " \u2013"], [" \u2014", " .", " software", " .\"", " complex", " unlikely", " outsourcing", " \u2013"], [" \u2014", " outsourcing", " \u2013", " potentially", " .", " .\"", " unlikely", "\u2014\u2014"], [" software", " outsourcing", " labor", " technology", " hardware", " tools", " tech", " instead"], [" outsourcing", " Docker", " software", " \u2014", " labor", " hardware", " tools", " potentially"], [" outsourcing", " Docker", " software", " labor", " potentially", " cumbersome", " specialized", " workflows"], [" outsourcing", " labor", " cumbersome", " expensive", " Docker", " unlikely", " costly", " bulky"], [" outsourcing", " expensive", " costly", " cumbersome", " labor", " costs", " cost", " instead"], [" instead", " costly", " expensive", " cumbersome", " costs", " cost", " outsourcing", " unless"], [" likely", " costly", " unless", " potentially", " costs", " expensive", " because", " cumbersome"], [" because", " unless", " due", " likely", " potentially", " costs", " costly", " either"], [" unless", " because", " due", " likely", " costly", " costs", " potentially", " cost"], [" unless", " because", " due", ";", " anymore", "because", "\u2014they", " likely"], [" unless", " without", "\u2014they", " because", " due", "unless", " anymore", "\u2014it"], [" unless", " without", " because", " due", "\u2014they", "because", " anymore", "unless"], [" without", " unless", "without", " Without", " due", " because", "\u2014they", "unless"], [" without", " unless", "without", " because", " due", "\u2014they", " Without", " \u0431\u0435\u0437"], [" without", "without", " unless", " \u0431\u0435\u0437", " Without", "Without", "_without", " easily"], [" without", "without", " unless", " \u0431\u0435\u0437", " easily", "\u2014they", " Without", " anymore"], [" without", " easily", "without", " \u0431\u0435\u0437", " unless", " Without", "Without", "\u2014they"], [" without", " easily", "without", "\u2014they", " \u0431\u0435\u0437", " unless", "\u2014you", " Without"], [" without", " easily", "\u2014they", "without", "\u2014you", " unless", " \u0431\u0435\u0437", " efficiently"], [" without", " easily", "without", " \u0431\u0435\u0437", " Without", "\u2014they", "\u2014you", "Without"], [" without", " easily", "\u2014they", "\u2014you", "\u2014it", "without", " reliably", " efficiently"], [" without", " easily", "\u2014they", "\u2014it", " reliably", "\u2014you", " efficiently", " because"], [" without", " easily", "\u2014they", ",", " efficiently", "\u2014you", " reliably", "\u2014it"]], "p": [[0.4621, 0.181, 0.0552, 0.0518, 0.0487, 0.0335, 0.0278, 0.0203], [0.1809, 0.1243, 0.0158, 0.0139, 0.0131, 0.0109, 0.0079, 0.007], [0.4015, 0.4015, 0.0373, 0.0273, 0.0273, 0.0241, 0.0188, 0.0042], [0.0205, 0.0193, 0.0071, 0.0052, 0.0046, 0.0038, 0.0036, 0.0032], [0.0419, 0.0307, 0.0288, 0.0288, 0.0239, 0.0164, 0.0145, 0.0136], [0.0358, 0.0159, 0.0091, 0.008, 0.0066, 0.0055, 0.0055, 0.0052], [0.1896, 0.0842, 0.0791, 0.0698, 0.0479, 0.045, 0.0351, 0.0241], [0.2289, 0.0896, 0.0896, 0.0616, 0.048, 0.0451, 0.0227, 0.02], [0.3031, 0.1432, 0.1115, 0.0816, 0.072, 0.041, 0.0362, 0.0182], [0.0844, 0.0545, 0.0399, 0.0257, 0.0242, 0.0147, 0.0122, 0.0101], [0.3674, 0.0364, 0.0342, 0.025, 0.025, 0.0235, 0.0221, 0.0183], [0.0574, 0.0394, 0.0348, 0.0255, 0.0225, 0.0211, 0.0175, 0.0175], [0.0345, 0.0253, 0.0197, 0.0105, 0.0082, 0.0077, 0.0077, 0.0068], [0.0324, 0.0223, 0.0197, 0.0163, 0.0153, 0.0144, 0.0144, 0.0105], [0.1235, 0.0312, 0.0243, 0.0189, 0.0167, 0.013, 0.0122, 0.0084], [0.044, 0.0343, 0.0302, 0.0236, 0.0221, 0.0183, 0.0162, 0.0134], [0.0626, 0.0315, 0.023, 0.023, 0.0191, 0.0191, 0.0158, 0.0149], [0.0837, 0.0448, 0.0225, 0.0199, 0.0145, 0.0128, 0.0128, 0.0106], [0.0584, 0.0313, 0.0229, 0.0215, 0.019, 0.0178, 0.0167, 0.0095], [0.0854, 0.0487, 0.0379, 0.0334, 0.0245, 0.0191, 0.0148, 0.0131], [0.3524, 0.0612, 0.054, 0.0199, 0.0175, 0.0113, 0.0106, 0.0088], [0.0448, 0.024, 0.0225, 0.0187, 0.0146, 0.0113, 0.0094, 0.0088], [0.2642, 0.0431, 0.0381, 0.0316, 0.0246, 0.014, 0.014, 0.014], [0.2661, 0.0716, 0.0632, 0.0434, 0.0299, 0.028, 0.0263, 0.0263], [0.5949, 0.1504, 0.038, 0.0261, 0.0204, 0.0116, 0.008, 0.007], [0.3293, 0.2263, 0.0446, 0.0239, 0.0198, 0.0128, 0.0113, 0.0053], [0.146, 0.0832, 0.0537, 0.0287, 0.0154, 0.0145, 0.0136, 0.012], [0.2692, 0.2376, 0.0681, 0.0468, 0.0388, 0.0221, 0.0208, 0.0134], [0.2467, 0.2317, 0.0517, 0.0334, 0.0314, 0.0229, 0.019, 0.0123], [0.3285, 0.1758, 0.0536, 0.0536, 0.0473, 0.0136, 0.0127, 0.0093], [0.2921, 0.2578, 0.0786, 0.0371, 0.0255, 0.024, 0.0165, 0.0128], [0.364, 0.1258, 0.092, 0.0384, 0.036, 0.0219, 0.0193, 0.0181], [0.6069, 0.1195, 0.0126, 0.0087, 0.0072, 0.0067, 0.0056, 0.0053], [0.2025, 0.0898, 0.0274, 0.0188, 0.0188, 0.0177, 0.0177, 0.0166], [0.2338, 0.046, 0.0279, 0.0204, 0.018, 0.0149, 0.014, 0.0132], [0.34, 0.3, 0.0555, 0.0432, 0.0279, 0.0246, 0.0071, 0.0055], [0.2324, 0.1168, 0.0335, 0.0261, 0.0203, 0.0149, 0.0123, 0.0116], [0.0844, 0.0399, 0.0311, 0.0227, 0.0188, 0.0156, 0.0147, 0.0147], [0.2429, 0.0199, 0.0176, 0.0176, 0.0155, 0.0155, 0.0146, 0.0129], [0.0763, 0.0299, 0.0205, 0.016, 0.016, 0.015, 0.0141, 0.0133], [0.0521, 0.0358, 0.0297, 0.0246, 0.0149, 0.0149, 0.0124, 0.0124], [0.064, 0.0468, 0.0388, 0.0342, 0.0183, 0.0118, 0.0118, 0.0118], [0.2216, 0.0495, 0.0171, 0.0171, 0.0117, 0.0104, 0.0097, 0.0097], [0.1787, 0.0227, 0.0213, 0.0177, 0.0166, 0.0147, 0.0129, 0.0114], [0.0968, 0.0587, 0.0551, 0.0457, 0.0334, 0.0314, 0.023, 0.0203], [0.1165, 0.0852, 0.0852, 0.0456, 0.0403, 0.0403, 0.0229, 0.0216], [0.2061, 0.0807, 0.0807, 0.0669, 0.0432, 0.0406, 0.0358, 0.0316], [0.2711, 0.2112, 0.1645, 0.0998, 0.0471, 0.0135, 0.0127, 0.0127], [0.7272, 0.1432, 0.0597, 0.0076, 0.0052, 0.0036, 0.0026, 0.0025], [0.5096, 0.3503, 0.0782, 0.0057, 0.0047, 0.0037, 0.003, 0.003], [0.7084, 0.1791, 0.04, 0.0311, 0.0054, 0.0048, 0.0024, 0.0021], [0.4681, 0.2506, 0.1341, 0.0922, 0.0206, 0.0052, 0.0046, 0.0032], [0.8364, 0.1453, 0.0105, 0.0014, 0.0011, 0.0009, 0.0008, 0.0008], [0.8252, 0.1434, 0.0118, 0.0081, 0.0034, 0.0016, 0.0016, 0.0008], [0.9806, 0.0123, 0.0031, 0.0009, 0.0009, 0.0005, 0.0002, 0.0002], [0.9728, 0.0095, 0.0066, 0.0019, 0.0019, 0.0015, 0.001, 0.001], [0.9649, 0.02, 0.0083, 0.0024, 0.0009, 0.0008, 0.0005, 0.0004], [0.9168, 0.0586, 0.0102, 0.0048, 0.002, 0.002, 0.0009, 0.0007], [0.8452, 0.1296, 0.0083, 0.0044, 0.0044, 0.0013, 0.0011, 0.0009], [0.9852, 0.0097, 0.0022, 0.0005, 0.0005, 0.0005, 0.0003, 0.0002], [0.9371, 0.0467, 0.0072, 0.002, 0.0014, 0.0008, 0.0008, 0.0008], [0.5002, 0.3438, 0.0465, 0.0194, 0.0194, 0.0171, 0.0118, 0.0063], [0.5661, 0.236, 0.0319, 0.0282, 0.0282, 0.0219, 0.0194, 0.0171]], "ranks": {"Rust": [41910, 101085, 82823, 148446, 39884, 44870, 80301, 71509, 81233, 52989, 31504, 49882, 32659, 25627, 26170, 26658, 27142, 47577, 59516, 113533, 93753, 110108, 110997, 65509, 65619, 88352, 70892, 47512, 38854, 38211, 45102, 28303, 24034, 32119, 32397, 17779, 8421, 8669, 17360, 18730, 16310, 12798, 26065, 34533, 19490, 12338, 18077, 13635, 10672, 7709, 19894, 13715, 34853, 38110, 32173, 21984, 10378, 8507, 8480, 9595, 8881, 2494, 2836]}}, {"pos": 450, "top": [[",", ".", "s", ";", "\u2013", " \u2013", ",.", ":"], [",", "s", ".", ";", ",.", ",[", "schild", "\u2013"], [",", ".", "s", "\u2026", ",.", ";", "\u2026.", "\u2026\""], [" Shemale", " milfs", "\u52a0\u62ff\u5927", "schrift", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Guta", "sula", "-------------</"], ["s", ",", "ed", ".@", ".", " \"@", "@", "\u52c7\u5f80\u76f4\u524d"], ["s", ",", ".", "ed", "\u4e8b\u534a\u529f\u500d", "!.", ",.", ",.."], ["s", "\u0441\u044f", "\u0627\u062a", ".", ",..", "ed", "\n\n", " \u00a0 \u00a0 \u00a0 \u00a0"], ["s", "\u0441\u044f", "\u4e8b\u534a\u529f\u500d", ",..", "\u52c7\u5f80\u76f4\u524d", ",", ".", "\u5162\u5162\u4e1a\u4e1a"], [".", ",", "s", ",..", "!.", ",.", "\u0441\u044f", ".!"], [",", "s", ".", ".${", "\u52c7\u5f80\u76f4\u524d", ",.", "!.", ",.."], [",", ".", "s", " [@", "\u00a0", ".${", ".@", ",."], ["\u0441\u044f", "s", "\u52c7\u5f80\u76f4\u524d", ".${", "\u52a0\u62ff\u5927", "[${", "\u52e4\u52e4\u6073\u6073", "\u4e8b\u534a\u529f\u500d"], ["\u52a0\u62ff\u5927", "\u0441\u044f", "\u52c7\u5f80\u76f4\u524d", "[${", "\u4e8b\u534a\u529f\u500d", "s", "\u52e4\u52e4\u6073\u6073", " leveraging"], ["\u52a0\u62ff\u5927", "\u52c7\u5f80\u76f4\u524d", "\u0441\u044f", "\u4e8b\u534a\u529f\u500d", "[${", "\u52e4\u52e4\u6073\u6073", " leveraging", ".${"], [" leveraging", " \u2014", "s", "\u2014or", "\u9ad8\u5bc6", " transitioning", " genuinely", " engaging"], [" leveraging", " transitioning", " utilizing", " entirety", "\u51ed\u501f\u7740", "\u62e5\u6709\u7740", " showcasing", "\u52a0\u62ff\u5927"], ["s", ",", " leveraging", "\u00a0", " getting", "..", "ed", "es"], [",", " leveraging", "s", "[${", "\u2014even", ",..", "espace", "\u00a0"], ["s", "\u2014even", "\u2014or", " leveraging", "\u2014and", "\u2014\"", ",", " \u2014"], ["\u2014even", " leveraging", "\u2014or", "s", "\u5373\u4fbf\u5982\u6b64", "\u54ea\u6015\u662f", "\u54ea\u6015", "\u5373\u4fbf"], ["<|endoftext|>", "\n\n", "\u2014even", "\u5373\u4fbf", " \u2014", "s", " burgeoning", "\u2014or"], ["\u52a0\u62ff\u5927", "espace", "\u5373\u4fbf\u5982\u6b64", "\u751a\u81f3\u4f1a", "schn", "\u54ea\u6015\u662f", "schrift", " addirittura"], [" ``", "\u52a0\u62ff\u5927", "\u5373\u4fbf\u5982\u6b64", " {{--<", "\u751a\u81f3\u4f1a", "\u54ea\u6015\u662f", "\u5145\u65a5\u7740", "\u54ea\u6015"], [" ``", " ultimately", " arguably", " myriad", " {{--<", " outright", " \u2015", " disastr"], ["\u5373\u4fbf\u5982\u6b64", " {{--<", "\u5373\u4fbf", " leveraging", " arguably", "\u54ea\u6015", " \u2015", "\u54ea\u6015\u662f"], ["\u52a0\u62ff\u5927", "\u5373\u4fbf\u5982\u6b64", " leveraging", "\u54ea\u6015\u662f", " ;;^", "\u751a\u81f3\u4f1a", "\u54ea\u6015", " **>>"], ["\u5373\u4fbf\u5982\u6b64", " leveraging", "\u52a0\u62ff\u5927", " {{--<", "\u54ea\u6015\u662f", " ``", "\u751a\u81f3\u4f1a", "\u54ea\u6015"], ["\n\n", " \n\n", " leveraging", "\u54ea\u6015", "\u5373\u4fbf\u5982\u6b64", "\r\n\r\n", "\u5373\u4fbf", " arguably"], [" leveraging", "\n\n", "\u5373\u4fbf\u5982\u6b64", "\u54ea\u6015", " sprawling", "\u54ea\u6015\u662f", " relying", "\u5373\u4fbf"], [" leveraging", " **\u2014", "\u54ea\u6015", "\u5373\u4fbf\u5982\u6b64", " -**", " **+", " **,", " **."], [" .", " **.", " ??", " leveraging", " potentially", " **", " **,", "\u5373\u4fbf\u5982\u6b64"], [" .", " ...", " potentially", " **", " **.", " leveraging", " critical", " heavily"], [" leveraging", " potentially", " **", " incredibly", " arguably", " risking", " massively", " heavily"], [" leveraging", " potentially", " incredibly", " arguably", " tweaking", " needing", " technically", " massively"], [" potentially", " incredibly", " needing", " arguably", " leveraging", " massively", " risking", " technically"], [" expensive", " cheap", " costly", " outsourcing", " risking", " hacking", " incredibly", " needing"], [" cheap", " expensive", " outsourcing", " incredibly", " risking", " hacking", " cumbersome", " leveraging"], [" expensive", " cheap", " outsourcing", " costly", " risking", "\u6210\u672c", " hacking", " cheaper"], [" expensive", " costly", " cheap", "\u6210\u672c", " cumbersome", " risking", " costs", " cost"], [" expensive", " costly", "\u6210\u672c", " cheap", " costs", " cumbersome", " cost", " outsourcing"], [" expensive", " costly", "\u6210\u672c", " costs", " cost", " cheap", " outsourcing", " labor"], [" expensive", " costly", " caching", " costs", " cost", " outsourcing", "\u6210\u672c", " logistical"], [" expensive", " caching", " costly", " cumbersome", " logistical", " outsourcing", " costs", " infrastructure"], [" expensive", " costly", " cumbersome", " caching", " logistical", " outsourcing", " costs", " infrastructure"], [" expensive", " costly", " costs", " cumbersome", " cost", " caching", " logistical", " outsourcing"], [" expensive", " costly", " costs", " cumbersome", " cost", " logistical", " caching", " massive"], [" expensive", " costly", " costs", " cumbersome", " cost", " logistical", " massive", " setups"], [" costly", " expensive", " massive", " costs", " cumbersome", " huge", " logistical", " setups"], [" costly", " expensive", " massive", " huge", " cumbersome", " costs", " tedious", " enormous"], [" costly", " expensive", " massive", " huge", " cumbersome", " massively", " tedious", " risking"], [" costly", " risking", " expensive", " cumbersome", " crippling", " tedious", " massive", "\u6210\u672c\u9ad8"], [" crippling", " massive", " massively", " costly", " risking", " huge", " expensive", " immense"], [" risking", " crippling", " costly", " expensive", " massive", " caching", " sacrificing", "\u6602\u8d35\u7684"], [" crippling", " massive", " risking", " immense", " expensive", " caching", " huge", " massively"], [" crippling", " caching", " risking", " massive", " immense", " expensive", " tweaking", " batching"], [" massive", " expensive", " caching", " crippling", " immense", " enormous", " risking", " costly"], [" massive", " caching", " immense", " crippling", " expensive", " enormous", " exhausting", " risking"], [" massive", " crippling", " caching", " immense", " Massive", " exploding", " expensive", " enormous"], [" caching", " massive", " cache", " crippling", "-cache", " caches", "cache", ".cache"], [" caching", " massive", " cache", " crippling", " caches", " cached", "-cache", "cache"], [" caching", " massive", " crippling", " cache", " significant", " immense", " caches", " cached"], [" massive", " caching", " crippling", " significant", " cache", " immense", " severe", " staggering"], [" massive", " caching", " crippling", " significant", " heavy", " hitting", " exploding", " breaking"]], "p": [[0.8136, 0.1815, 0.0038, 0.0005, 0.0001, 0.0001, 0.0001, 0.0001], [0.5231, 0.2471, 0.1323, 0.0035, 0.0023, 0.0013, 0.0011, 0.0009], [0.8436, 0.1466, 0.0014, 0.0011, 0.001, 0.0007, 0.0006, 0.0005], [0.0201, 0.0201, 0.0156, 0.0095, 0.0079, 0.0065, 0.0054, 0.0048], [0.5085, 0.0571, 0.0253, 0.0238, 0.0154, 0.0144, 0.0073, 0.006], [0.4684, 0.1619, 0.0526, 0.0125, 0.0076, 0.0071, 0.0063, 0.0059], [0.9887, 0.0008, 0.0008, 0.0005, 0.0005, 0.0004, 0.0002, 0.0002], [0.8648, 0.0116, 0.0075, 0.0075, 0.0066, 0.0045, 0.004, 0.0026], [0.4055, 0.1691, 0.1691, 0.0402, 0.0215, 0.0202, 0.0045, 0.0037], [0.7639, 0.0357, 0.0169, 0.009, 0.0055, 0.004, 0.0038, 0.0031], [0.4141, 0.2082, 0.2082, 0.0133, 0.0091, 0.0076, 0.0049, 0.0046], [0.0473, 0.021, 0.021, 0.0112, 0.0093, 0.0082, 0.006, 0.006], [0.0463, 0.0281, 0.0181, 0.0103, 0.0049, 0.0046, 0.004, 0.0038], [0.0231, 0.0103, 0.009, 0.0062, 0.0055, 0.0048, 0.0031, 0.0026], [0.0065, 0.005, 0.0035, 0.0035, 0.0031, 0.0031, 0.0029, 0.0025], [0.0361, 0.0125, 0.0125, 0.008, 0.0071, 0.0052, 0.0046, 0.0034], [0.1487, 0.0902, 0.0275, 0.0084, 0.0042, 0.004, 0.0035, 0.0029], [0.0257, 0.0094, 0.0069, 0.0051, 0.0037, 0.0033, 0.0031, 0.0027], [0.0267, 0.0208, 0.0111, 0.0068, 0.0053, 0.0046, 0.0036, 0.0034], [0.0075, 0.0051, 0.0045, 0.0033, 0.0029, 0.0027, 0.0024, 0.0024], [0.2647, 0.0043, 0.0031, 0.0031, 0.0028, 0.0023, 0.0023, 0.0022], [0.0047, 0.0025, 0.0025, 0.0024, 0.0022, 0.0016, 0.0015, 0.0013], [0.0123, 0.0031, 0.0031, 0.0024, 0.0021, 0.0018, 0.0016, 0.0012], [0.006, 0.003, 0.0028, 0.0028, 0.0025, 0.0025, 0.0024, 0.0022], [0.0045, 0.0045, 0.0031, 0.0024, 0.0021, 0.0018, 0.0018, 0.0017], [0.0068, 0.0057, 0.0034, 0.0032, 0.0021, 0.002, 0.002, 0.0018], [0.006, 0.0039, 0.0034, 0.0025, 0.0022, 0.0018, 0.0016, 0.0016], [0.2864, 0.0072, 0.0049, 0.0036, 0.0034, 0.0022, 0.0019, 0.0018], [0.0104, 0.0087, 0.0072, 0.0046, 0.0023, 0.0022, 0.0022, 0.0019], [0.013, 0.0089, 0.0079, 0.0074, 0.0061, 0.0051, 0.0051, 0.0042], [0.0219, 0.0151, 0.0117, 0.0071, 0.0067, 0.0067, 0.0063, 0.0059], [0.0487, 0.0245, 0.0158, 0.0148, 0.0131, 0.0116, 0.0085, 0.0075], [0.0249, 0.0234, 0.0234, 0.0194, 0.0133, 0.0098, 0.0063, 0.0063], [0.0215, 0.0168, 0.0139, 0.0084, 0.0079, 0.0079, 0.0074, 0.0074], [0.0203, 0.0179, 0.0169, 0.0149, 0.0123, 0.0123, 0.0116, 0.008], [0.1205, 0.0645, 0.0269, 0.0237, 0.0185, 0.0135, 0.0135, 0.0127], [0.079, 0.0543, 0.033, 0.0188, 0.0176, 0.0176, 0.0146, 0.0129], [0.1808, 0.1167, 0.0429, 0.0295, 0.0216, 0.0148, 0.0148, 0.0139], [0.2966, 0.0662, 0.0455, 0.0354, 0.0354, 0.0139, 0.013, 0.013], [0.3515, 0.1141, 0.0692, 0.0307, 0.0289, 0.0271, 0.0186, 0.0128], [0.4947, 0.1104, 0.0406, 0.0358, 0.0297, 0.0204, 0.0149, 0.0109], [0.4362, 0.1605, 0.046, 0.046, 0.0316, 0.0169, 0.014, 0.0116], [0.2713, 0.0938, 0.0686, 0.0304, 0.0286, 0.0237, 0.0173, 0.0153], [0.2616, 0.0749, 0.0661, 0.0548, 0.0484, 0.0333, 0.0202, 0.0189], [0.4903, 0.1592, 0.0664, 0.0277, 0.0215, 0.0158, 0.0148, 0.0096], [0.3958, 0.24, 0.0607, 0.0325, 0.0269, 0.0153, 0.0077, 0.0072], [0.2846, 0.2216, 0.072, 0.0436, 0.0219, 0.0206, 0.0161, 0.0161], [0.2843, 0.2509, 0.0361, 0.034, 0.0282, 0.0233, 0.0206, 0.0171], [0.3435, 0.1838, 0.0465, 0.041, 0.0362, 0.0194, 0.0171, 0.0161], [0.335, 0.1582, 0.0582, 0.0514, 0.0243, 0.0228, 0.0157, 0.0147], [0.156, 0.0737, 0.0574, 0.0348, 0.0307, 0.0255, 0.0225, 0.0186], [0.1227, 0.0843, 0.0544, 0.048, 0.0451, 0.031, 0.0257, 0.02], [0.3071, 0.1863, 0.0685, 0.0416, 0.0286, 0.0163, 0.0099, 0.0093], [0.189, 0.1472, 0.1299, 0.0478, 0.0422, 0.0422, 0.0372, 0.0199], [0.1931, 0.1704, 0.1171, 0.0912, 0.038, 0.0296, 0.014, 0.0116], [0.2333, 0.1415, 0.0972, 0.0757, 0.059, 0.0279, 0.0246, 0.0217], [0.438, 0.1107, 0.0977, 0.0977, 0.017, 0.015, 0.0085, 0.008], [0.6525, 0.1001, 0.0688, 0.0253, 0.0135, 0.012, 0.0105, 0.0072], [0.9146, 0.0402, 0.009, 0.0062, 0.0042, 0.0037, 0.0023, 0.0023], [0.8895, 0.0644, 0.0127, 0.0053, 0.0041, 0.0019, 0.0017, 0.0017], [0.6651, 0.2772, 0.0107, 0.0084, 0.0051, 0.0031, 0.0027, 0.002], [0.5932, 0.3175, 0.0179, 0.014, 0.007, 0.0043, 0.0029, 0.0023], [0.2902, 0.2561, 0.0831, 0.0369, 0.021, 0.0197, 0.0186, 0.0186]], "ranks": {"Rust": [36511, 84117, 63637, 43923, 6488, 15448, 36102, 26326, 43508, 25602, 17219, 41606, 63650, 84374, 109340, 109224, 75925, 96617, 134280, 118063, 163441, 124057, 137744, 67659, 76529, 93653, 71808, 57190, 42119, 39034, 16669, 18174, 30293, 50719, 42822, 22512, 12193, 13432, 21274, 26149, 22834, 14503, 11349, 16447, 8627, 8671, 9798, 8014, 5439, 7924, 16146, 17478, 15314, 14404, 12715, 17014, 8403, 3955, 2493, 2535, 2042, 1970, 1489]}}, {"pos": 451, "top": [["**\u2013", " \u2013", "\u2013", " **\u2013", " \u2013,", "\u2013and", ".\u2013", " |\u2013"], ["**\u2013", " **\u2013", " \u2013**", " \u2013,", " *\u2013", "   \n\n", " '**", "\u2013and"], ["**\u2013", " **\u2013", " \u2013**", " \u2013,", "\u2013and", " *\u2013", "\u2013", " \u2013"], [" **\u201e", " **\u300c", " **\u2013", " **+", " **\u00ab", " **:", " **>>", " '**"], [" **\u2013", "**\u2013", ">**", " **+", " ***", "   \n\n", " \u2013**", " **\u201e"], [" **\u2013", "**\u2013", " **\"", " **+", ">**", " **-", " **", " **:"], [" **\"", " **\u2013", " **", " **'", ">**", " **\u201e", " **+", " -**"], [" **\u201e", " **\"", " **'", " **", " **+", " **\u2013", " **\u300c", " **\u00ab"], [" **'", " **\u201e", " **\u2013", " **\"", " **", " **+", "   \n\n", " HUGE"], [" huge", " **\u2013", " HUGE", " massive", " gigantic", " **'", " **\"", " incredibly"], [" **\u2013", " huge", " massive", " **", " **'", " incredibly", " HUGE", " **\""], [" **", " **'", " **\u2013", " **+", " huge", " **\"", " HUGE", " **\u201e"], [" huge", " massive", " HUGE", " gigantic", " **", " incredibly", " enormous", " **'"], [" huge", " massive", " HUGE", " gigantic", " enormous", " incredibly", " colossal", " sprawling"], [" massive", " huge", " incredibly", " enormous", " HUGE", " gigantic", " Massive", " sprawling"], [" massive", " huge", " incredibly", " HUGE", " sprawling", " enormous", " myriad", " hugely"], [" huge", " massive", " incredibly", " myriad", " sprawling", " hugely", " HUGE", " enormous"], [" huge", " massive", " HUGE", " incredibly", " sprawling", " hugely", " Massive", " myriad"], [" huge", " massive", " hugely", " HUGE", " incredibly", " sprawling", " myriad", " entirety"], [" huge", " hugely", " myriad", " sprawling", " incredibly", " massive", " HUGE", " entirety"], ["<|endoftext|>", " hugely", " myriad", " huge", " sprawling", " incredibly", " massive", " burgeoning"], [" hugely", " huge", " HUGE", " sprawling", " myriad", " incredibly", " freaking", " massive"], [" hugely", " myriad", " huge", " sprawling", " incredibly", " HUGE", " massive", " looming"], [" hugely", " myriad", " huge", " sprawling", " massive", " incredibly", " enormous", " looming"], [" \n\n", " hugely", " myriad", "   \n\n", " huge", " sprawling", " \r\n\r\n", " massive"], [" huge", " hugely", " HUGE", " sprawling", " massive", " myriad", " tweaking", " incredibly"], [" huge", " sprawling", " hugely", " massive", " myriad", " HUGE", " crippling", " tweaking"], [" huge", " \n\n", " hugely", " myriad", " sprawling", " massive", " incredibly", " enormous"], [" huge", " sprawling", " massive", " myriad", " hugely", " tweaking", " tweaks", " enormous"], [" huge", " massive", " sprawling", " tweaks", " tweaking", " myriad", " hugely", " HUGE"], [" huge", " massive", " enormous", " sprawling", " tweaks", " hugely", " \n\n", " myriad"], [" huge", " massive", " **", " enormous", " HUGE", " incredibly", " tweaks", " sprawling"], [" huge", " massive", " HUGE", " incredibly", " sprawling", " tweaks", " myriad", " tweaking"], [" huge", " HUGE", " massive", " tweaks", " incredibly", " sprawling", " tweaking", " massively"], [" huge", " massive", " HUGE", " tweaks", " incredibly", " sprawling", " logistical", " massively"], [" HUGE", " tweaks", " huge", " logistical", " tech", " funding", " crowdfunding", " infrastructure"], [" tweaks", " logistical", " huge", " HUGE", " sprawling", " infrastructure", " massive", " tech"], [" logistical", " HUGE", " huge", " infrastructure", " expensive", " tweaks", " complexity", " workflows"], [" complexity", " logistical", " expensive", " tweaks", " infrastructure", " huge", " HUGE", " cost"], [" logistical", " infrastructure", " complexity", " tweaks", " workflows", " expensive", " huge", " HUGE"], [" infrastructure", " logistical", " tweaks", " workflows", " expensive", " hardware", " tech", " complexity"], [" infrastructure", " logistical", " caching", " workflows", " tweaks", " hardware", " complexity", " expensive"], [" logistical", " infrastructure", " caching", " setups", " hardware", " tweaks", " complexity", " workflows"], [" logistical", " infrastructure", " caching", " delays", " complexity", " workflows", " setups", " expensive"], [" logistical", " infrastructure", " expensive", " costs", " delays", " caching", " complexity", " huge"], [" logistical", " infrastructure", " expensive", " delays", " huge", " costs", " setups", " complexity"], [" huge", " infrastructure", " logistical", " setups", " expensive", " delays", " enormous", " costs"], [" logistical", " setups", " huge", " infrastructure", " setup", " massive", " delays", " costs"], [" logistical", " infrastructure", " setups", " caching", " huge", " delays", " costs", " costly"], [" logistical", " setups", " infrastructure", " delays", " downtime", " caching", " tweaks", " workaround"], [" logistical", " setups", " complexity", " infrastructure", " delays", " tweaks", " workaround", " downtime"], [" setups", " caching", " logistical", " complexity", " workaround", " downtime", " tweaks", " timeouts"], [" setups", " caching", " setup", " downtime", " complexity", "Setup", " tweaks", " logistical"], [" setups", " caching", " downtime", " setup", " complexity", " tweaks", " delays", "Setup"], [" complexity", " setups", " caching", " setup", " downtime", "Setup", " tweaks", " timeouts"], [" complexity", " setups", " setup", " caching", " downtime", "/setup", "Setup", " timeouts"], [" caching", " complexity", " customization", " timeouts", " setup", " setups", " downtime", " Docker"], [" complexity", " caching", " customization", " timeouts", " downtime", " hacks", " setup", " build"], [" caching", " overhead", " complexity", " cache", "-cache", " caches", " setup", "cache"], [" caching", " cache", " overhead", "-cache", " complexity", " caches", " setup", "cache"], [" caching", " cache", " overhead", " complexity", " caches", "-cache", " setup", "cache"], [" caching", " cache", " overhead", " complexity", " caches", "-cache", " setup", " friction"], [" caching", " overhead", " cache", " complexity", " build", " setup", " friction", " maintenance"]], "p": [[0.3362, 0.3362, 0.1588, 0.0622, 0.0402, 0.0354, 0.0062, 0.0051], [0.5813, 0.3111, 0.0787, 0.0121, 0.0073, 0.0015, 0.0011, 0.0011], [0.6248, 0.3344, 0.0214, 0.0114, 0.0029, 0.0015, 0.0014, 0.0012], [0.1972, 0.0726, 0.0531, 0.0531, 0.0499, 0.0195, 0.0172, 0.0152], [0.2437, 0.0616, 0.0451, 0.0423, 0.031, 0.0291, 0.0273, 0.0241], [0.7195, 0.0859, 0.0279, 0.0231, 0.0124, 0.0109, 0.0096, 0.0091], [0.1972, 0.1355, 0.1196, 0.0531, 0.0531, 0.044, 0.0388, 0.0388], [0.1259, 0.1259, 0.1183, 0.0981, 0.0674, 0.0525, 0.0493, 0.0463], [0.0992, 0.0823, 0.0773, 0.0682, 0.0682, 0.0565, 0.0469, 0.0365], [0.0939, 0.0732, 0.0646, 0.0444, 0.0417, 0.0287, 0.0253, 0.0238], [0.1385, 0.0696, 0.0614, 0.0397, 0.0256, 0.0226, 0.0212, 0.0212], [0.2287, 0.1572, 0.0953, 0.0578, 0.0291, 0.0273, 0.0257, 0.0213], [0.1529, 0.0769, 0.0638, 0.0529, 0.0438, 0.0438, 0.0387, 0.0341], [0.2148, 0.1673, 0.0543, 0.0479, 0.0423, 0.0373, 0.0273, 0.02], [0.228, 0.228, 0.0449, 0.0372, 0.0309, 0.0272, 0.024, 0.024], [0.1608, 0.1176, 0.1176, 0.0522, 0.0461, 0.0317, 0.0317, 0.0317], [0.2315, 0.1591, 0.0663, 0.0428, 0.0355, 0.0276, 0.026, 0.019], [0.2376, 0.099, 0.0821, 0.0498, 0.0342, 0.0302, 0.0235, 0.0195], [0.1725, 0.0765, 0.0596, 0.056, 0.0464, 0.041, 0.0385, 0.0182], [0.1174, 0.0973, 0.0712, 0.046, 0.046, 0.0336, 0.0336, 0.0169], [0.1603, 0.0806, 0.052, 0.0358, 0.0231, 0.014, 0.014, 0.0109], [0.0708, 0.0551, 0.0429, 0.0356, 0.0245, 0.023, 0.019, 0.0179], [0.0833, 0.0538, 0.0505, 0.037, 0.0306, 0.0224, 0.0211, 0.0113], [0.0816, 0.072, 0.0527, 0.034, 0.0282, 0.0171, 0.0125, 0.0118], [0.0794, 0.0794, 0.0512, 0.0481, 0.0311, 0.0258, 0.0227, 0.0147], [0.0705, 0.0705, 0.0485, 0.0428, 0.0313, 0.0259, 0.0178, 0.0178], [0.0641, 0.0602, 0.0566, 0.0343, 0.0322, 0.0208, 0.0162, 0.0162], [0.1005, 0.0833, 0.0573, 0.0538, 0.0538, 0.0505, 0.0186, 0.0154], [0.1228, 0.0657, 0.0657, 0.0512, 0.0352, 0.0274, 0.0227, 0.0147], [0.1234, 0.0583, 0.0426, 0.0426, 0.0332, 0.0214, 0.0214, 0.0201], [0.3219, 0.1045, 0.0248, 0.0219, 0.0193, 0.0182, 0.0182, 0.016], [0.3027, 0.1343, 0.0248, 0.0219, 0.0206, 0.0206, 0.0142, 0.0142], [0.1526, 0.1049, 0.034, 0.032, 0.032, 0.03, 0.0194, 0.0182], [0.1982, 0.0879, 0.0729, 0.0501, 0.0367, 0.0286, 0.0184, 0.0135], [0.2222, 0.0986, 0.0986, 0.0341, 0.032, 0.032, 0.0171, 0.0161], [0.0626, 0.0519, 0.0488, 0.038, 0.0357, 0.0245, 0.0216, 0.0191], [0.0711, 0.0668, 0.0488, 0.0431, 0.0315, 0.0231, 0.0217, 0.0191], [0.0742, 0.0543, 0.0479, 0.045, 0.045, 0.0423, 0.0309, 0.0176], [0.1124, 0.1124, 0.0823, 0.0565, 0.044, 0.044, 0.0303, 0.0251], [0.1255, 0.1108, 0.081, 0.0631, 0.0338, 0.0338, 0.028, 0.0232], [0.1764, 0.0944, 0.0475, 0.0446, 0.0394, 0.037, 0.0347, 0.0347], [0.1797, 0.1235, 0.0427, 0.0377, 0.0293, 0.0293, 0.0293, 0.0259], [0.1655, 0.1461, 0.0609, 0.0306, 0.0288, 0.0254, 0.0254, 0.0198], [0.1997, 0.1069, 0.0419, 0.0326, 0.0306, 0.027, 0.027, 0.0224], [0.1484, 0.102, 0.0546, 0.0425, 0.0425, 0.0331, 0.0292, 0.0242], [0.1008, 0.0785, 0.0611, 0.0539, 0.0539, 0.0395, 0.0327, 0.0289], [0.096, 0.096, 0.096, 0.066, 0.0453, 0.04, 0.0293, 0.0293], [0.1217, 0.1074, 0.1074, 0.0947, 0.0289, 0.0271, 0.0255, 0.0255], [0.1936, 0.1174, 0.1036, 0.0297, 0.0279, 0.0217, 0.0169, 0.0159], [0.277, 0.2157, 0.07, 0.0189, 0.0177, 0.0166, 0.0147, 0.0147], [0.4528, 0.101, 0.024, 0.0225, 0.0155, 0.0155, 0.0155, 0.0128], [0.1891, 0.0696, 0.0614, 0.0614, 0.0542, 0.0509, 0.0449, 0.0329], [0.3946, 0.0881, 0.0534, 0.0324, 0.0324, 0.0324, 0.0286, 0.0252], [0.3101, 0.1293, 0.0611, 0.0476, 0.0476, 0.037, 0.0225, 0.0225], [0.2691, 0.185, 0.1122, 0.053, 0.0413, 0.0221, 0.0221, 0.0172], [0.3469, 0.1276, 0.1126, 0.0877, 0.0251, 0.0222, 0.0222, 0.0196], [0.3036, 0.2087, 0.0768, 0.0411, 0.0282, 0.0249, 0.022, 0.0194], [0.4666, 0.2498, 0.0263, 0.0205, 0.0141, 0.0141, 0.0124, 0.011], [0.8519, 0.033, 0.0257, 0.0257, 0.0177, 0.0057, 0.0051, 0.0045], [0.8332, 0.0604, 0.0366, 0.0135, 0.0119, 0.0082, 0.0064, 0.003], [0.8898, 0.0502, 0.0209, 0.0099, 0.0047, 0.0036, 0.0022, 0.0013], [0.7966, 0.0951, 0.0654, 0.0054, 0.0033, 0.0029, 0.0022, 0.0017], [0.4467, 0.2391, 0.0685, 0.0568, 0.0344, 0.0135, 0.0087, 0.0072]], "ranks": {"Rust": [49241, 139279, 111399, 122940, 33045, 24532, 69611, 83652, 92050, 48103, 31492, 40657, 32560, 31720, 32252, 25021, 24075, 56370, 92477, 61165, 75649, 91279, 80529, 37815, 33484, 42956, 33815, 20516, 20058, 24853, 18518, 18185, 30325, 45349, 33596, 31738, 17787, 20162, 28640, 28583, 19066, 20964, 19001, 25541, 16614, 17926, 17772, 14407, 10445, 12752, 24813, 36331, 19732, 16159, 11960, 7725, 3368, 1970, 1658, 1663, 1741, 1120, 971]}}, {"pos": 452, "top": [["**\u2013", " \u2013", "\u2013", ".", ".\u2013", " **\u2013", "\u2013and", " *@"], ["**\u2013", " \u2013**", " **\u2013", " *\u2013", " '**", "'**", " )**", " **\u2018"], ["**\u2013", " \u2013**", " **\u2013", "\u2026**", " *\u2013", ".\u2013", " \u2013", "\u2013and"], [" **\u2018", " **:**", " Shemale", " Strec", " milfs", " '**", "\uff1f**", " )**"], [" *@", " **\u2013", " **\u2018", "**\u2013", ">**", " )**", " \r\r\n", " *\u2013"], [" **\u2013", "**\u2013", " **\u2018", "-**", " )**", " \u2013**", " *@", " \r\r\n"], [" *@", " **\u2018", " **\u2013", " \n\n", " \n\n\n", "...**", "  \n\n", " *["], [" *@", " *_", " **\u20ac", " `_", " **\u2013", " &_", " *-", " **-"], [" \n\n", " \n\n\n", " *@", "   \n\n", "  \n\n\n", " *_", "  \n\n", " [@"], [" *@", " `$", " **\u2013", " \r\r\n", " *_", " &_", " **\u20ac", " \u20ac*"], [" *@", " [@", ".@", " `$", " **\u2013", " \n\n\n", " \n", " \n\n"], [" **", " )**", " **\u20ac", " **\u2013", " **+", " **#", " *_", " **-"], [" **", " )**", " **\u2013", " **\u20ac", " **.**", " **-", " *_", " .**"], [" **\u2013", " )**", " **\u20ac", " **", " workflows", "**\u2013", " .**", " `$"], [" --", " `$", " potentially", " \u20ac*", " )**", " `%", " `_", " `"], [" potentially", " \u20ac*", " --", " &#", " )**", " middleware", " `$", " &_"], [" \u2013", " potentially", "\u20ac\u201c", " \u20ac*", "**\u2013", " **\u2013", " entirety", " of"], ["**\u2013", " **\u2013", " \u20ac*", " \u2013**", "\u20ac\u201c", " )**", " *\u2013", " workflows"], [" \u20ac*", " &#", "**\u2013", " **\u2013", " .**", " )**", " +%", " \u2013**"], [" &#", " \u20ac*", " `$", "**\u2013", " **\u2013", " `%", " --", " *@"], [" \n\n", " &#", " `$", " --", " \r\n\r\n", " `%", " *@", " `{"], [" .**", " )**", " \u20ac*", " `%", " +%", " ;;^", " MEDIAM", "ocache"], [" .**", " )**", " `%", " -**", " `$", " \u20ac*", " +%", " --"], [" .**", " --", " `", " ,", " `%", " ;", " `{", " `$"], [" .**", " --", " `%", " \r\n\r\n", " `", " \n\n", " &#", " **"], [" .**", " **", " )**", " -**", " **:", " **.**", " **+", " **."], [" .**", " **", " **:", " **+", " )**", " -**", " *__", " :**"], [" .**", " **", " \n\n", " \r\n\r\n", " )**", " _", " -**", " **+"], [" .**", " **", " )**", " **.", " \n\n", " -**", " .*", " **:"], [" .**", " **", " **.", " **.**", " )**", " -**", " **:", " **+"], [" .**", " **", " **.", " **.**", " )**", " .*", " .", " \n\n"], [" .**", " **", " .", " **.", " .*", " \n\n", " **[", " )**"], [" .**", " **", " **.", " .", ".**", " .*", " **.**", " **,"], [" .**", " workflows", " **", " **\u2013", " **.", " )**", " infrastructure", " **+"], [" .**", " workflows", "\u2026**", " **\u2013", " )**", " **", "**\u2013", " stash"], [" .**", "**\u2013", "\u3002**", " **\u2013", "\u2026**", " workflows", "**", " -**"], [" .**", " workflows", "**\u2013", "\u3002**", " stash", " **\u2013", " cache", ".**"], [" workflows", " cache", " .**", " caching", " caches", " stash", "/cache", " infrastructure"], [" workflows", " cache", " caching", " caches", " .**", " stash", " infrastructure", " optimizations"], [" workflows", " cache", " caching", " caches", " .**", " stash", " storage", " infrastructure"], [" cache", " caching", " caches", " cached", "cache", " storage", "/cache", ".cache"], [" caching", " cache", " caches", "/cache", " cached", " storage", "cache", ".cache"], [" caching", " cache", " caches", " cached", "/cache", " storage", "cache", ".cache"], [" caching", " cache", " caches", "/cache", " cached", "cache", " storage", ".cache"], [" caching", " caches", " cache", " cached", "/cache", " storage", "cache", ".cache"], [" caching", " caches", " cache", "/cache", " cached", " storage", ".cache", "cache"], [" caching", " caches", " cache", "/cache", " storage", " workflows", " cached", " setups"], [" caching", " caches", " cache", "/cache", " storage", " setups", " cached", ".cache"], [" caches", " caching", " cache", "/cache", " setups", ".cache", "-cache", "cache"], [" caching", " caches", " cache", "/cache", " setups", "-cache", "/storage", ".cache"], [" caches", " setups", " caching", "/storage", "/cache", " cache", "-cache", ".cache"], [" caches", " setups", " caching", "/cache", "-cache", " cache", "/storage", ".cache"], [" caching", " setups", " caches", "/cache", "-cache", " strategy", "/storage", " strategies"], [" caching", " caches", "/cache", " setups", " optimizations", " strategies", " strategy", "-cache"], [" caching", " setups", " caches", "/cache", " optimizations", "-cache", " cache", " tricks"], [" setups", " complexity", " optimizations", " complexities", " tricks", " hacks", " strategies", " infrastructure"], [" strategies", " strategy", " optimizations", " hacks", " setups", " complexity", "strategy", " caching"], [" tricks", " strategies", " hacks", " optimizations", " strategy", " infrastructure", " optimization", " complexity"], [" strategies", " tricks", " hacks", " optimizations", " overhead", " caching", " setups", " strategy"], [" strategies", " tricks", " hacks", " overhead", " optimizations", " strategy", " infrastructure", " setups"], [" overhead", " strategies", " hacks", " tricks", " optimizations", " setups", " overrides", " complexities"], [" overhead", " strategies", " hacks", " headaches", " tricks", " optimizations", " strategy", " setups"], [" overhead", " hacks", "/", " headaches", " strategies", " artifacts", " complexities", " tricks"]], "p": [[0.2913, 0.2415, 0.0239, 0.0239, 0.0211, 0.0154, 0.0136, 0.0073], [0.4734, 0.3687, 0.0499, 0.0236, 0.0105, 0.0041, 0.0034, 0.0034], [0.8235, 0.0766, 0.0597, 0.0151, 0.0055, 0.0055, 0.0023, 0.0016], [0.0416, 0.0197, 0.0163, 0.0153, 0.0135, 0.0127, 0.0099, 0.0093], [0.2987, 0.0488, 0.0458, 0.0179, 0.0149, 0.014, 0.014, 0.0131], [0.2299, 0.0546, 0.0425, 0.0353, 0.0311, 0.0114, 0.0114, 0.0089], [0.1147, 0.0449, 0.0329, 0.0309, 0.0226, 0.0212, 0.0176, 0.0165], [0.3464, 0.0469, 0.0284, 0.0172, 0.0162, 0.0143, 0.0134, 0.0111], [0.437, 0.2339, 0.1038, 0.015, 0.0132, 0.0085, 0.008, 0.0062], [0.1218, 0.0694, 0.0272, 0.0255, 0.0145, 0.0137, 0.0113, 0.0106], [0.1977, 0.047, 0.0285, 0.0268, 0.0251, 0.0184, 0.0143, 0.0135], [0.3062, 0.0877, 0.0366, 0.0366, 0.0268, 0.0251, 0.0251, 0.0251], [0.1404, 0.055, 0.0378, 0.0333, 0.0168, 0.0148, 0.0148, 0.0139], [0.0185, 0.0163, 0.0135, 0.0105, 0.0082, 0.0082, 0.0056, 0.0056], [0.0138, 0.013, 0.0058, 0.0051, 0.0048, 0.0042, 0.004, 0.0031], [0.0131, 0.0131, 0.0074, 0.0066, 0.0051, 0.0033, 0.0024, 0.0021], [0.0213, 0.0177, 0.0089, 0.0069, 0.0069, 0.0061, 0.0054, 0.0033], [0.0522, 0.0522, 0.0109, 0.0097, 0.0075, 0.0049, 0.0046, 0.0038], [0.041, 0.0362, 0.0282, 0.0171, 0.0161, 0.0076, 0.0071, 0.0059], [0.0571, 0.0287, 0.0224, 0.0224, 0.0197, 0.0197, 0.0164, 0.0144], [0.1051, 0.0722, 0.0387, 0.0363, 0.0283, 0.0235, 0.022, 0.0134], [0.0391, 0.0253, 0.0197, 0.0112, 0.0105, 0.0099, 0.0082, 0.0077], [0.2223, 0.0386, 0.0341, 0.0161, 0.0133, 0.0118, 0.0098, 0.0098], [0.1132, 0.0828, 0.0472, 0.0417, 0.0305, 0.0223, 0.0174, 0.0163], [0.1618, 0.0384, 0.0361, 0.0361, 0.0319, 0.0299, 0.0219, 0.0193], [0.5232, 0.1323, 0.0314, 0.023, 0.0216, 0.0158, 0.0131, 0.0096], [0.4908, 0.1321, 0.026, 0.0216, 0.0203, 0.0179, 0.0158, 0.0131], [0.4612, 0.2797, 0.0551, 0.0123, 0.0123, 0.0108, 0.009, 0.007], [0.7523, 0.0375, 0.0188, 0.0122, 0.0101, 0.0084, 0.0065, 0.0065], [0.7843, 0.0644, 0.0304, 0.0209, 0.0112, 0.0087, 0.0087, 0.0068], [0.7828, 0.1059, 0.0567, 0.0072, 0.0053, 0.0044, 0.0041, 0.0023], [0.6889, 0.1537, 0.0389, 0.0303, 0.0126, 0.0041, 0.0034, 0.0028], [0.6071, 0.0991, 0.0991, 0.0284, 0.0183, 0.0126, 0.0111, 0.0044], [0.1703, 0.0912, 0.0431, 0.0405, 0.0261, 0.0245, 0.0191, 0.0158], [0.1648, 0.0472, 0.0368, 0.0325, 0.0269, 0.021, 0.021, 0.0185], [0.2043, 0.0485, 0.0428, 0.0428, 0.0402, 0.0333, 0.0215, 0.0202], [0.2166, 0.0483, 0.0401, 0.0275, 0.0243, 0.0243, 0.0202, 0.0167], [0.0982, 0.0814, 0.0526, 0.0494, 0.041, 0.0385, 0.016, 0.0133], [0.1159, 0.1159, 0.0848, 0.0454, 0.0332, 0.0243, 0.0228, 0.0167], [0.1458, 0.1286, 0.083, 0.0647, 0.027, 0.0253, 0.0238, 0.021], [0.3679, 0.2866, 0.1354, 0.0302, 0.0267, 0.0267, 0.0208, 0.0162], [0.4749, 0.288, 0.1201, 0.0209, 0.0184, 0.0184, 0.0162, 0.0099], [0.5853, 0.19, 0.148, 0.0156, 0.0156, 0.0107, 0.0074, 0.0045], [0.5227, 0.1923, 0.1923, 0.023, 0.0158, 0.0096, 0.0066, 0.0058], [0.5044, 0.2383, 0.1856, 0.0134, 0.0119, 0.0092, 0.0056, 0.0034], [0.4805, 0.227, 0.1768, 0.0271, 0.0211, 0.0186, 0.0042, 0.0032], [0.3636, 0.2206, 0.1946, 0.0434, 0.0263, 0.015, 0.015, 0.0086], [0.379, 0.2605, 0.158, 0.0353, 0.0201, 0.0167, 0.0122, 0.0095], [0.3444, 0.2682, 0.1627, 0.0768, 0.0134, 0.0125, 0.0125, 0.0092], [0.2235, 0.1972, 0.1356, 0.0932, 0.0726, 0.0236, 0.0195, 0.0195], [0.1781, 0.1572, 0.1387, 0.0953, 0.0841, 0.0655, 0.051, 0.0188], [0.1759, 0.1759, 0.137, 0.1067, 0.0831, 0.0571, 0.0346, 0.0238], [0.2246, 0.1982, 0.1362, 0.1362, 0.0304, 0.0304, 0.0268, 0.0268], [0.3436, 0.1264, 0.1115, 0.0984, 0.0527, 0.032, 0.032, 0.0194], [0.2377, 0.1634, 0.1442, 0.0874, 0.0601, 0.0365, 0.0284, 0.0284], [0.3379, 0.1243, 0.0854, 0.0587, 0.0518, 0.0457, 0.0216, 0.0168], [0.28, 0.1698, 0.103, 0.0486, 0.0429, 0.0295, 0.026, 0.023], [0.2539, 0.1745, 0.1199, 0.1058, 0.0934, 0.0303, 0.0268, 0.0268], [0.2308, 0.1797, 0.0962, 0.0849, 0.0661, 0.0454, 0.0401, 0.0401], [0.3159, 0.1492, 0.1317, 0.0905, 0.0549, 0.0485, 0.0485, 0.0333], [0.3123, 0.2146, 0.1149, 0.0895, 0.0373, 0.0329, 0.02, 0.0176], [0.5011, 0.1436, 0.0987, 0.0466, 0.0301, 0.0183, 0.0161, 0.0151], [0.5396, 0.1364, 0.073, 0.0416, 0.0286, 0.0173, 0.0153, 0.0119]], "ranks": {"Rust": [86483, 179663, 126656, 123677, 39098, 44575, 63156, 53724, 32905, 9615, 6224, 12441, 12695, 13117, 7624, 3412, 6055, 23432, 34284, 26973, 21922, 44426, 23630, 8504, 8442, 13930, 12419, 6455, 8071, 15685, 7778, 8086, 9604, 13356, 13115, 15972, 10270, 8332, 12240, 17052, 13184, 11702, 16037, 21721, 14580, 11570, 13472, 9565, 7658, 9676, 13707, 20793, 8234, 8833, 11076, 14273, 8423, 4623, 4187, 3358, 2902, 1765, 2318]}}, {"pos": 453, "top": [["s", " \u2013", "\u0627\u062a", "\u2013", "\u044b", "es", "\u2026..", "\u05d9\u05dd"], ["s", "\u0627\u062a", "\u044b", "\u05d9\u05dd", "ske", "siz", "ska", "sze"], ["s", "\u044b", "\u0627\u062a", "\u2026..", "\u05d9\u05dd", "\u2026\"", "ska", " \u2026."], ["s", "\u05d9\u05dd", "\u044b", "\u0627\u062a", "satz", "sze", "ske", "schnitt"], ["s", "\u0627\u062a", "\u044b", "\u05d9\u05dd", "ske", "es", "ska", "siz"], ["s", "\u0627\u062a", "\u044b", "\u05d9\u05dd", "ske", "siz", "ska", "sze"], ["s", "\u0627\u062a", "\u044b", "ske", "es", "ska", "\u05d9\u05dd", "<|im_end|>"], ["s", "\u0627\u062a", "\u044b", "ske", "\u05d9\u05dd", "ska", "sburg", "es"], ["s", "\u0627\u062a", " \n\n", "\u044b", "es", "\n\n", " \u2026.", "ske"], ["s", "\u0627\u062a", "es", "\u044b", "ska", "\u05d9\u05dd", "ske", ","], ["s", "es", "\u0627\u062a", "\u044b", ",", " [\u2026]", "ska", ".${"], ["s", "es", "\u0627\u062a", "\u044b", "\u05d9\u05dd", "ska", "schild", "ske"], ["s", "es", "\u0627\u062a", "\u044b", "\u05d9\u05dd", "ska", "ske", "schild"], ["s", "es", "\u0627\u062a", "\u044b", "\u05d9\u05dd", "ska", "siz", "ske"], ["s", "es", "\u0627\u062a", "ed", "\u044b", "ska", "y", "\u05d9\u05dd"], ["s", "es", "\u0627\u062a", "ed", "\u044b", "\u05d9\u05dd", "siz", "ska"], ["s", "es", "ed", "\u0627\u062a", "y", " \u2013", ",", "t"], ["s", "es", "\u0627\u062a", "\u044b", "ed", " \u200b\u200b", "\u05d9\u05dd", "sWith"], ["s", "es", "\u0627\u062a", "\u044b", "ed", "ska", "ske", "sWith"], ["s", "es", "\u0627\u062a", "\u044b", "ed", "y", " myriad", " largely"], ["s", "<|endoftext|>", "es", "\u0627\u062a", "ed", "y", "t", " myriad"], ["s", "es", "\u0627\u062a", "schn", "\u044b", "sste", "svar", "sWith"], ["s", "es", "\u0627\u062a", "\u044b", "sWith", "ed", "schn", "sste"], ["s", "es", " ,", "\u0627\u062a", " .", "ed", "y", " largely"], ["s", "es", " \n\n", " \r\n\r\n", "\n\n", "\u0627\u062a", "\r\n\r\n", "ed"], ["s", "es", " .**", "\u0627\u062a", " **", " .", "\u044b", "sWith"], ["s", "es", " ,", "\u0627\u062a", " .**", " .", "ed", " myriad"], ["s", " ,", " .", "es", " \n\n", "\n\n", " .**", " --"], ["s", " .", "es", " ,", " .**", " \n\n", "ed", " [["], ["s", " .", " .**", "es", " ,", " **", " \n\n", " [["], ["s", " .", " .**", " ,", "es", " **", " \n\n", " **."], ["s", " .", " .**", " **", " ,", "es", " **.", " .*"], ["s", " .", " .**", " **", ".**", "es", " ,", " **."], ["s", " massively", " .", " heavily", " .**", " sprawling", " massive", " meticulously"], ["s", " .**", " massively", " heavily", " .", " expensive", " sprawling", " costly"], ["s", " .", " .**", " expensive", " cheap", " massively", " costly", " heavily"], ["s", " .", " .**", " expensive", " cheap", " costly", ".**", " unlikely"], ["s", " expensive", " cheap", " costly", " cost", " costs", " .**", " unlikely"], ["s", " expensive", " costly", " cost", " costs", " cheap", " .**", " inefficient"], [" cost", " costs", " expensive", " costly", "s", " cheap", " .**", "\u6210\u672c"], [" cost", " costs", " expensive", " costly", "s", " cheap", " costing", "cost"], [" costs", " cost", " costly", " expensive", " cheap", " costing", " bottleneck", "\u6210\u672c"], [" costs", " cost", " costly", " expensive", " cheap", " bottleneck", " costing", " inefficient"], [" costs", " cost", " costly", " expensive", " delays", " bottleneck", " cheap", " slow"], [" costs", " cost", " costly", " expensive", " delays", " cheap", " bottleneck", " costing"], [" costs", " cost", " costly", " expensive", " delays", " cheap", " costing", " slow"], [" costs", " costly", " expensive", " cost", " delays", " bottleneck", " cheap", " inefficient"], [" costs", " costly", " expensive", " delays", " cost", " bottleneck", " inefficient", " cheap"], [" costs", " costly", " cost", " expensive", " delays", " costing", " cheap", " slow"], [" costs", " costly", ".**", ".", " expensive", " cost", " unless", " costing"], [".**", " costs", "++.", " delays", "**.", " costly", ".", " or"], [" or", ".**", ".", "\u6216\u76f4\u63a5", "**.", "++.", " \u0438\u043b\u0438", "()."], [".**", ".", " or", "**.", " risking", "().", " delays", "++."], [" risking", " or", ".**", ".", " slowing", "\u2014which", " delays", " bottleneck"], [" or", " risking", " slowing", "\u6216", " \u0438\u043b\u0438", "\u6216\u76f4\u63a5", " bottleneck", " delays"], [" or", "\u2014you", " risking", "\u2014it", " complic", " slowing", "\u2014which", "\u2014they"], [" or", " slowing", " \u0438\u043b\u0438", "\u6027\u6216", "\u6216", "\u2014you", " slow", " risking"], [" or", "\u2014you", " slowing", " slow", " delays", " risking", " slowdown", " slows"], [" or", "\u2014you", " slowing", ".", " slow", "\u2014it", " risking", " \u0438\u043b\u0438"], [" or", " plugin", "\u2014you", " plugins", " Plugin", " scripting", ".", " slowing"], [" or", ".", "\u2014you", " plugin", ",", " plugins", " scripting", " Plugin"], [".", ",", " or", "\u2014you", " plugin", "s", " plugins", "\u2014it"], [",", ".", " or", "\u2014you", "s", "\u2014", "\u2014it", ";"]], "p": [[1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9904, 0.0022, 0.0011, 0.001, 0.0008, 0.0004, 0.0004, 0.0003], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9978, 0.0004, 0.0004, 0.0003, 0.0001, 0.0001, 0.0, 0.0], [0.9989, 0.0002, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9975, 0.0009, 0.0004, 0.0003, 0.0001, 0.0001, 0.0, 0.0], [0.9686, 0.0228, 0.002, 0.0013, 0.0005, 0.0004, 0.0002, 0.0001], [0.9202, 0.0404, 0.0149, 0.0075, 0.0016, 0.0008, 0.0007, 0.0003], [0.9167, 0.0355, 0.0168, 0.0021, 0.0016, 0.0011, 0.0009, 0.0007], [0.8192, 0.0091, 0.0071, 0.0055, 0.0049, 0.0036, 0.0033, 0.0028], [0.6256, 0.0157, 0.0138, 0.0108, 0.0089, 0.0061, 0.0058, 0.0058], [0.5815, 0.0396, 0.0225, 0.0155, 0.0155, 0.0094, 0.0094, 0.0083], [0.5764, 0.027, 0.027, 0.021, 0.0197, 0.0164, 0.012, 0.012], [0.4939, 0.0489, 0.0381, 0.0358, 0.0231, 0.0204, 0.0149, 0.0096], [0.1675, 0.0954, 0.0842, 0.0743, 0.0579, 0.0451, 0.0177, 0.0107], [0.1707, 0.133, 0.133, 0.1102, 0.0973, 0.0554, 0.0124, 0.009], [0.1859, 0.1641, 0.1448, 0.0878, 0.0684, 0.0442, 0.0093, 0.0093], [0.3208, 0.2499, 0.1337, 0.118, 0.0193, 0.0124, 0.0075, 0.0055], [0.3129, 0.1675, 0.1675, 0.1304, 0.0188, 0.0137, 0.0094, 0.0089], [0.4167, 0.1353, 0.1194, 0.1053, 0.0162, 0.0143, 0.0126, 0.0092], [0.4679, 0.1721, 0.1183, 0.1044, 0.0125, 0.011, 0.0086, 0.0076], [0.411, 0.1941, 0.1177, 0.0714, 0.0181, 0.0132, 0.0103, 0.0097], [0.2965, 0.2617, 0.0963, 0.075, 0.019, 0.0178, 0.0148, 0.0108], [0.2132, 0.1882, 0.065, 0.0539, 0.0539, 0.042, 0.0239, 0.0136], [0.3241, 0.1531, 0.0679, 0.0467, 0.0387, 0.0207, 0.0172, 0.0172], [0.2254, 0.0732, 0.0535, 0.0368, 0.0368, 0.0346, 0.0253, 0.0238], [0.1851, 0.064, 0.0413, 0.0388, 0.0365, 0.0365, 0.0284, 0.0267], [0.5135, 0.1667, 0.0421, 0.0226, 0.0199, 0.0129, 0.0088, 0.0065], [0.1585, 0.1089, 0.0749, 0.0332, 0.0275, 0.0201, 0.0189, 0.0178], [0.1265, 0.0597, 0.0411, 0.0362, 0.0282, 0.0194, 0.0171, 0.0171], [0.2841, 0.0384, 0.0248, 0.0171, 0.016, 0.0141, 0.0125, 0.011], [0.2599, 0.0512, 0.0274, 0.0227, 0.0188, 0.0166, 0.0156, 0.0114], [0.3953, 0.057, 0.0174, 0.0174, 0.0135, 0.0112, 0.0105, 0.0105], [0.2634, 0.091, 0.0803, 0.0203, 0.0179, 0.0168, 0.0116, 0.0102], [0.3853, 0.2648, 0.0262, 0.0103, 0.0096, 0.0096, 0.0091, 0.0066], [0.4543, 0.1149, 0.0952, 0.0479, 0.0309, 0.0188, 0.0146, 0.0094], [0.2566, 0.1998, 0.1005, 0.0887, 0.0538, 0.0288, 0.0224, 0.0186], [0.6418, 0.2084, 0.0767, 0.0067, 0.0059, 0.0025, 0.0022, 0.002], [0.6505, 0.3482, 0.0005, 0.0002, 0.0001, 0.0001, 0.0, 0.0]], "ranks": {"Rust": [40963, 113828, 67782, 11674, 9701, 6751, 9422, 7748, 9856, 4857, 6263, 6617, 5636, 5885, 9531, 6819, 7156, 8096, 13180, 14668, 15965, 16140, 16364, 7932, 5882, 6832, 3772, 3674, 3356, 5211, 5299, 5335, 5243, 6507, 5093, 4635, 3324, 3377, 3827, 3850, 3172, 2944, 2872, 3341, 2624, 2513, 2849, 2381, 1278, 767, 1605, 1078, 2026, 2370, 2582, 4479, 1957, 1602, 1574, 1833, 3142, 880, 1319]}}, {"pos": 454, "top": [[" \u2013", ".", ",", "\u2013", ";", "\u00a0\u00a0", "\u2026..", "\u2026."], [" \u2013", "\u2013", "\u2013and", " \u2013,", " \u200b\u200b", "\u2013\u2013", " very", " Hammer"], ["\u2013", " \u2013", "\u2026..", "\u2013and", ",", "\u2026", "\u2026.", "."], [" milfs", " Shemale", " Blowjob", "-------------</", "----------</", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " ;;^", " cumshot"], [":@", " (@", "\u2193\u2193", " Millennials", "\uff20", " \u041a\u0440\u0430\u0441\u0438", " cittadin", "_intf"], ["<|quad_end|>", " \u200b\u200b", "arren", "!\u201d.", " Celebrity", "\u6cd5\u62c9", "\u65b0\u52a0\u5761", "fst"], ["  \n\n", " \n\n", "<|endoftext|>", "   \n\n", "  \n", "    \n\n", "  \r\n\r\n", "  \r\n"], ["   \n\n", "  \n\n", " \n\n", "    \n\n", "  \r\n", "     \n\n", " \r\n\r\n", "    \n"], [" \n\n", "   \n\n", "  \n\n", "    \n\n", "     \n\n", "\t\n\n", " \r\n\r\n", "      \n\n"], ["\u51ed\u501f\u7740", "\u5468\u906d", "\u62e5\u6709\u7740", "\u63d0\u4f9b\u66f4\u52a0", "\u5373\u4fbf\u5982\u6b64", "clarsimp", "\u3081\u3061\u3083", "\u5750\u62e5"], ["<|endoftext|>", "\u00a0", " arguably", "  \n\n", " @", " swiftly", "\u5373\u4fbf", " myriad"], [" arguably", " nonetheless", " incredibly", "\u5373\u4fbf\u5982\u6b64", " **", " sprawling", " swiftly", " savvy"], [" arguably", " nonetheless", " incredibly", " swiftly", " sprawling", "\u51ed\u501f\u7740", "\u5373\u4fbf\u5982\u6b64", "\u5373\u4fbf\u662f"], [" arguably", "\u51ed\u501f\u7740", " incredibly", " sprawling", " swiftly", "\u62e5\u6709\u7740", "\u5373\u4fbf\u662f", " entirety"], [" arguably", " sprawling", " swiftly", " even", " myriad", " aggressively", " truly", " incredibly"], [" arguably", " sprawling", " incredibly", "\u51ed\u501f\u7740", " myriad", " swiftly", "\u62e5\u6709\u7740", " ultimately"], [" arguably", " entirety", " incredibly", " myriad", " ultimately", " overarching", " sprawling", " albeit"], [" arguably", " entirety", " incredibly", " myriad", " overarching", "<|endoftext|>", " ultimately", " sprawling"], [" arguably", " incredibly", " myriad", " ultimately", " entirety", " nonetheless", " albeit", " even"], ["<|endoftext|>", " arguably", " ultimately", " myriad", " even", " incredibly", " albeit", " swiftly"], ["<|endoftext|>", "\n\n", " \n\n", " arguably", " ultimately", " swiftly", " myriad", "  \n\n"], [" arguably", " ultimately", " incredibly", " even", " myriad", " swiftly", " sprawling", " vastly"], ["<|endoftext|>", " arguably", " ultimately", "\n\n", " even", " incredibly", " myriad", " swiftly"], ["<|endoftext|>", "\n\n", " ultimately", " even", " arguably", " myriad", " much", " swiftly"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", "<|endoftext|>", " \r\n\r\n", "   \n\n", " arguably"], ["\n\n", " \n\n", "\r\n\r\n", "  \n\n", " \r\n\r\n", " arguably", " **", " incredibly"], ["\n\n", " \n\n", "\r\n\r\n", "  \n\n", " \r\n\r\n", " arguably", " ultimately", " sprawling"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " ultimately", " arguably", " even", " \r\n\r\n"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " arguably", " ultimately", " \r\n\r\n", " incredibly"], [" \n\n", "  \n\n", "\n\n", " ultimately", " ...", "...", " arguably", " heavily"], [" \n\n", "  \n\n", "<|endoftext|>", "...", " ...", "\n\n", " [...]", "\u2026"], [" ...", "...", " \n\n", "<|endoftext|>", "\u2026", " \u2026", " [...]", "  \n\n"], ["<|endoftext|>", " \n\n", " ultimately", "  \n\n", " heavily", " quickly", " incredibly", " even"], [" ultimately", " heavily", "<|endoftext|>", " truly", " rapidly", " quickly", " massively", " incredibly"], [" heavily", " incredibly", " rapidly", " aggressively", " ultimately", " massively", " truly", " quickly"], ["<|endoftext|>", " heavily", " aggressively", " incredibly", " massively", " notoriously", " ultimately", " truly"], [" heavily", " aggressively", " massively", " relentless", " relentlessly", " desperately", " brutally", " notoriously"], [" heavily", " aggressively", " incredibly", " massively", " desperately", " relentless", " relentlessly", " brutally"], [" heavily", " incredibly", " massively", " aggressively", " desperately", " relentless", " truly", " brutally"], [" heavily", " massively", " incredibly", " relentless", " aggressively", " relentlessly", " brutally", " desperately"], [" heavily", " massively", " incredibly", " relentless", " rapidly", " desperately", " brutal", " quickly"], [" heavily", " forcing", " massively", " aggressively", " desperately", " rapidly", " forced", " relentlessly"], [" aggressively", " logistical", " infrastructure", " forcing", " heavily", " massively", " forced", " desperately"], [" desperately", " forcing", " forced", " infrastructure", " heavily", " logistical", " massively", " aggressively"], [" massive", " rapidly", " massively", " desperately", " heavily", " forcing", " forced", " logistical"], [" massively", " massive", " heavily", " rapidly", " logistical", " aggressively", " logistics", " desperately"], [" inevitable", " reliance", " desperately", " logistical", " massively", " bottleneck", " fundamentally", " infrastructure"], [" desperately", " inevitable", " fundamentally", "  \n\n", " reliance", " massive", " heavily", " forcing"], [" reliance", " desperately", "  \n\n", " inevitable", " forcing", " fundamentally", " Worse", " chaos"], ["  \n\n", " \n\n", " Worse", " chaos", "\u5012\u903c", " likely", "\u5927\u6982\u7387", " furthermore"], ["  \n\n", " Worse", " \n\n", " chaos", " reliance", "\u5012\u903c", " Meanwhile", "\u540c\u65f6\u8fd8\u8981"], [" forcing", " Worse", "\u5012\u903c", "\u903c\u8feb", " **\"", " Meanwhile", "\u540c\u65f6\u8fd8\u8981", "  \n\n"], [" forcing", " bottleneck", " Worse", "\u66f4\u8981", "\u6700\u5173\u952e", "\u5012\u903c", "\u52a0\u4e4b", "\u518d\u52a0\u4e0a"], [" forcing", " bottleneck", " your", "forcing", " Your", "\u903c\u8feb", " Meanwhile", "\u5012\u903c"], [" expecting", " Meanwhile", " forcing", " Expect", " your", " attempting", " trying", " meanwhile"], [" forcing", "forcing", " you", " expecting", "\u903c\u8feb", "\u903c", " your", " Expect"], [" forcing", "forcing", " You", " you", " Expect", " Your", " expecting", "\u903c\u8feb"], [" you", " forcing", " You", "forcing", " Your", " your", " Expect", "you"], [" You", " you", " forcing", " Your", "forcing", " your", " Adding", " YOU"], [" plugins", " Plugins", " scripting", " you", " You", "_plugins", " Plugin", " Script"], [" Plugins", " plugins", " scripting", " You", " Script", " Plugin", " script", " plugin"], [" You", " Plugins", " plugins", " you", " scripting", " Your", " forcing", " If"], [" You", " If", " Your", " Plugins", " This", " The", " Plugin", " Adding"]], "p": [[0.6255, 0.2608, 0.0582, 0.04, 0.0027, 0.0015, 0.0014, 0.0013], [0.1949, 0.0248, 0.0076, 0.0028, 0.0026, 0.0014, 0.001, 0.0009], [0.7797, 0.0725, 0.044, 0.0343, 0.0152, 0.0098, 0.0087, 0.0081], [0.0135, 0.0099, 0.0087, 0.0072, 0.0056, 0.005, 0.0041, 0.0034], [0.0035, 0.0029, 0.0027, 0.0022, 0.0019, 0.0017, 0.0014, 0.0013], [0.0068, 0.0016, 0.0014, 0.001, 0.001, 0.001, 0.001, 0.001], [0.6856, 0.1191, 0.0412, 0.0321, 0.0134, 0.0056, 0.0052, 0.0041], [0.3696, 0.1746, 0.0642, 0.0268, 0.0119, 0.0119, 0.0082, 0.0082], [0.4709, 0.2224, 0.2224, 0.0234, 0.0067, 0.0052, 0.0046, 0.0038], [0.0017, 0.0013, 0.001, 0.0009, 0.0008, 0.0008, 0.0008, 0.0007], [0.1991, 0.0238, 0.0174, 0.0073, 0.0064, 0.0053, 0.005, 0.0039], [0.0193, 0.0055, 0.004, 0.0038, 0.0038, 0.0036, 0.0031, 0.0025], [0.0237, 0.0093, 0.0064, 0.0044, 0.0041, 0.0039, 0.0034, 0.0034], [0.0108, 0.0062, 0.0062, 0.0058, 0.0037, 0.0035, 0.0026, 0.0024], [0.0473, 0.0174, 0.0144, 0.0099, 0.0093, 0.0082, 0.0082, 0.0068], [0.0487, 0.0216, 0.0203, 0.0179, 0.0139, 0.009, 0.009, 0.0079], [0.1257, 0.0462, 0.0318, 0.0299, 0.0218, 0.016, 0.0133, 0.0117], [0.1717, 0.0632, 0.0492, 0.0263, 0.017, 0.016, 0.0132, 0.0124], [0.1828, 0.0462, 0.0434, 0.0383, 0.0132, 0.0132, 0.0117, 0.0103], [0.1861, 0.0826, 0.0366, 0.0304, 0.0143, 0.0143, 0.0112, 0.0112], [0.9876, 0.003, 0.0007, 0.0002, 0.0002, 0.0002, 0.0002, 0.0001], [0.0748, 0.04, 0.0275, 0.0228, 0.0167, 0.0157, 0.0147, 0.0089], [0.1126, 0.0603, 0.0532, 0.0469, 0.0366, 0.0222, 0.0196, 0.0184], [0.7194, 0.0859, 0.0132, 0.0109, 0.0075, 0.0035, 0.0035, 0.0029], [0.888, 0.0826, 0.0072, 0.0068, 0.005, 0.0013, 0.0007, 0.0004], [0.5725, 0.136, 0.0642, 0.0184, 0.0126, 0.0112, 0.0044, 0.0039], [0.9227, 0.0405, 0.0109, 0.0035, 0.0012, 0.0011, 0.001, 0.0004], [0.9439, 0.0415, 0.0025, 0.0025, 0.0007, 0.0006, 0.0004, 0.0003], [0.643, 0.268, 0.0249, 0.0111, 0.0043, 0.0034, 0.0032, 0.0019], [0.6257, 0.0847, 0.0514, 0.0275, 0.0214, 0.0201, 0.0101, 0.0061], [0.6527, 0.1001, 0.0883, 0.0473, 0.0368, 0.0253, 0.0044, 0.0044], [0.4083, 0.3603, 0.0488, 0.0296, 0.0261, 0.0203, 0.0116, 0.008], [0.1782, 0.0896, 0.0373, 0.0373, 0.0351, 0.0257, 0.02, 0.0156], [0.0746, 0.0581, 0.0242, 0.0156, 0.0156, 0.0147, 0.0138, 0.0138], [0.0622, 0.0243, 0.0157, 0.0148, 0.0148, 0.0139, 0.0139, 0.0101], [0.1153, 0.0898, 0.0257, 0.0242, 0.0177, 0.0156, 0.0122, 0.0122], [0.0559, 0.0463, 0.0219, 0.0206, 0.0206, 0.0193, 0.0193, 0.0181], [0.0437, 0.0341, 0.032, 0.0301, 0.022, 0.0194, 0.0161, 0.0142], [0.0242, 0.0242, 0.0213, 0.0188, 0.0166, 0.0156, 0.0138, 0.0121], [0.0215, 0.0202, 0.019, 0.0158, 0.0139, 0.0115, 0.0108, 0.0108], [0.0328, 0.0289, 0.0155, 0.0155, 0.0145, 0.0137, 0.0121, 0.0113], [0.0309, 0.0165, 0.0165, 0.0165, 0.0155, 0.0129, 0.0114, 0.0107], [0.0233, 0.0205, 0.0193, 0.017, 0.017, 0.0141, 0.0141, 0.0133], [0.0235, 0.0208, 0.0208, 0.0195, 0.0183, 0.0183, 0.0172, 0.0126], [0.0173, 0.0153, 0.0153, 0.0153, 0.0144, 0.0144, 0.0144, 0.0112], [0.0183, 0.0161, 0.0142, 0.0142, 0.0142, 0.0098, 0.0098, 0.0098], [0.027, 0.0254, 0.0239, 0.0239, 0.0224, 0.0186, 0.0175, 0.0128], [0.0291, 0.0274, 0.0241, 0.0227, 0.0213, 0.0156, 0.0156, 0.0138], [0.0254, 0.0198, 0.0145, 0.0145, 0.0128, 0.01, 0.01, 0.0094], [0.0491, 0.028, 0.0247, 0.0232, 0.0218, 0.0205, 0.015, 0.0141], [0.0634, 0.0339, 0.0299, 0.0193, 0.0171, 0.0141, 0.0081, 0.0081], [0.0403, 0.026, 0.0168, 0.0131, 0.0123, 0.0115, 0.0102, 0.0096], [0.0588, 0.0553, 0.0245, 0.0149, 0.0131, 0.0109, 0.0096, 0.009], [0.0503, 0.0346, 0.0153, 0.0099, 0.0099, 0.0093, 0.0093, 0.0077], [0.079, 0.0397, 0.0291, 0.0273, 0.0273, 0.0256, 0.0226, 0.0176], [0.4583, 0.1159, 0.0426, 0.0243, 0.0228, 0.0214, 0.0189, 0.0138], [0.2944, 0.1083, 0.0512, 0.0398, 0.033, 0.0274, 0.0257, 0.02], [0.2623, 0.2315, 0.2043, 0.0585, 0.0402, 0.0277, 0.0084, 0.007], [0.5539, 0.2616, 0.0455, 0.019, 0.0115, 0.0051, 0.0048, 0.0045], [0.4008, 0.3537, 0.0894, 0.029, 0.0155, 0.0137, 0.0121, 0.0094], [0.3589, 0.2795, 0.1165, 0.055, 0.026, 0.0179, 0.0158, 0.0158], [0.3368, 0.3368, 0.1404, 0.019, 0.0178, 0.0148, 0.0139, 0.0108], [0.9022, 0.024, 0.024, 0.024, 0.0047, 0.0029, 0.0024, 0.0021]], "ranks": {"Rust": [33717, 70535, 74020, 52925, 12706, 6383, 15255, 36449, 47689, 39688, 4250, 4882, 3313, 5105, 14360, 11668, 14682, 30686, 57517, 76293, 83377, 76802, 62178, 37976, 46497, 84173, 51429, 31314, 30200, 22402, 17064, 16920, 16435, 24751, 21970, 17882, 13675, 18158, 19946, 23983, 14857, 9831, 7195, 8002, 5627, 6060, 6933, 6024, 3970, 4869, 6304, 10014, 16001, 13951, 25295, 3876, 1861, 1068, 1056, 200, 150, 57, 47]}}, {"pos": 455, "top": [[".", ",", "er", "?", "o", " \u2013", ";", "a"], [".", ",", "er", ";", "?", "\uff0e", " Very", "!"], [",", ".", ";", "?", "er", "!", "\u2013", ":"], ["erias", "\uff0a\uff0a\uff0a\uff0a", "\uff0d\uff0d\uff0d\uff0d", "enner", "\uff0d\uff0d", "erii", "er", "erende"], ["er", ",", ".", "\uff20", "(@", " (@", ".@", "er\u00e0"], [",", "er", ".", "!", "!\u201d.", "\uff01", "\u2019s", "\u2019re"], ["er", ",", "!", ".", "\u2019re", "\uff01", "er\u00e0", "\uff0e"], ["er", ",", "(@", "!", "erias", "er\u00e0", "ey", "(!"], [",", ".", "!", "er", "!\u201d.", "!.", "(@", "!\u201d"], [",", "er", "!", "!,", ".", ";", "\u00a0", "\u00ad"], [",", "er", ".", "!", "\u00a0", "...", ",...", "(@"], ["erias", "ernt", "repid", "er", "\u0440\u0451\u0445", " flavours", "erii", " \u0435\u0449\u0451"], ["er", "erias", "ernt", "erende", "erii", "\u72ed\u9698", "repid", " seamlessly"], ["\u72ed\u9698", "repid", "\u064a\u0636", " seamlessly", "YNAM", "\u9083", "erias", "er"], [" arguably", " seamlessly", " effortlessly", " savvy", " aggressively", " sprawling", " \u041f\u043b\u044e\u0441", " Philly"], [" savvy", " sprawling", " touted", " folks", " seamlessly", " arguably", " leveraging", " effortlessly"], [",", " savvy", " seamlessly", " arguably", "-esque", " effortlessly", " incredibly", " leveraging"], [" incredibly", " savvy", " seamlessly", " sprawling", " effortlessly", "-esque", " wouldn", " arguably"], [" incredibly", "\u2014you", "\u2014even", " effortlessly", " arguably", " seamlessly", "-esque", " savvy"], [" incredibly", "\u5373\u4fbf", " hugely", "\u2014even", " effortlessly", " sprawling", " arguably", " seamlessly"], ["\n\n", "  \n\n", " \n\n", "\u5373\u4fbf", " swiftly", " \r\n\r\n", " hugely", "   \n\n"], [" seamlessly", " incredibly", " effortlessly", " freaking", "tvr", " smarter", " skyrocket", " savvy"], [" incredibly", " seamlessly", " effortlessly", " sprawling", " desperately", "tvr", " freaking", " massively"], [" ultimately", " incredibly", " massively", " just", " arguably", " wildly", " sprawling", " desperately"], [" \n\n", "\n\n", "  \n\n", " \r\n\r\n", "\r\n\r\n", "   \n\n", "    \n\n", "  \r\n\r\n"], [" seamlessly", " incredibly", " leveraging", " freaking", " massively", " sprawling", " desperately", " wildly"], ["\n\n", " ultimately", " sprawling", "\r\n\r\n", " seamlessly", " \n\n", " arguably", " wildly"], ["\n\n", " \n\n", "  \n\n", " ...", " ultimately", "\r\n\r\n", " arguably", " --"], ["  \n\n", " \n\n", "\n\n", "   \n\n", " tech", " sprawling", " leveraging", " \r\n\r\n"], ["  \n\n", " ...\\", " \n\n", " ...", " ___", " ____", " _____", "..."], [" ...", " \n\n", "  \n\n", "...", " ...\\", " \u2026", " [...]", "   \n\n"], [" ...", "...", " \u2026", " [...]", " just", " ultimately", " ...\\", " @"], [" ...", " ultimately", " just", " @", " instead", " focused", " eventually", " still"], [" \u2026", " ...", " tech", " seamlessly", " ultimately", " focused", " complex", " leveraging"], [" tech", " leveraging", " seamlessly", " ...", " focused", " \u2026", " meticulously", " strategically"], [" \u2026", " ...", " [\u2026]", " tech", "\u2026\u2026", "\u2026", " [...]", " focused"], [" tech", " leveraging", " seamlessly", " \u2026", " likely", " focused", " strategically", " ultimately"], [" tech", " leveraging", " tools", " workflows", " builds", " outsourcing", " automated", " \u2026"], [" tech", " workflows", " leveraging", " outsourcing", " likely", " tools", " automated", " modular"], [" tech", " automated", " workflows", " outsourcing", " leveraging", " modular", "\u2011", " automation"], [" automated", " tech", " workflows", " outsourcing", " automation", " leveraging", " workflow", " builds"], [" automated", " tech", " outsourcing", " workflows", " modular", " engineering", " leveraging", " infrastructure"], [" outsourcing", " automated", " tech", " workflows", " modular", " leveraging", " infrastructure", " automation"], [" outsourcing", " tech", " automated", " needs", " needed", " workflows", " leveraging", " infrastructure"], [" needs", " must", " needed", " need", " tech", " outsourcing", " likely", " reliance"], [" must", " needs", " likely", " need", " needed", " probably", " reliance", " MUST"], [" must", " likely", " needs", " MUST", " need", " needed", " reliance", " probably"], [" must", " needs", " likely", " needed", " need", " MUST", " reliance", " needing"], [" must", " reliance", " likely", " needs", " MUST", " forced", " desperately", " need"], [" likely", " must", " forced", "'ll", "\u5012\u903c", " will", " reliance", " MUST"], ["\u5012\u903c", " \u043f\u0440\u0438\u0434\u0435\u0442\u0441\u044f", "\u4f60\u5fc5\u987b", "\u2019ll", "\u4f60\u9700\u8981", " forced", "\u88ab\u8feb", " must"], ["\u88ab\u8feb", " forced", "\u5012\u903c", " must", "\u903c", " \u043f\u0440\u0438\u0434\u0435\u0442\u0441\u044f", "\u5fc5\u987b\u5728", " forcing"], ["\u2019ll", " forced", "\u88ab\u8feb", " bottleneck", " forcing", "\u903c", "\u5012\u903c", " must"], [" cannot", "\u2019ll", "cannot", " bottleneck", "\u5012\u903c", "\u903c", " Cannot", " forcing"], ["\u2019ll", " cannot", " will", "cannot", " bottleneck", " yourself", "'ll", "\u2019re"], [" cannot", "\u2019ll", " will", " bottleneck", "cannot", "\u2019re", "\u73b0\u5728\u662f", " now"], ["\u2019ll", "\u2019re", " cannot", "cannot", "\u2019ve", " bottleneck", " will", "\u73b0\u5728\u662f"], ["\u2019re", "\u2019ll", " aren", " cannot", " are", " will", "cannot", " bottleneck"], ["\u2019re", " bottleneck", "\u2019ll", " aren", " are", " cannot", " bott", " will"], ["\u2019re", " are", " bottleneck", "\u2019ll", " aren", "'re", "\u2019ve", " will"], ["\u2019re", " are", "\u2019ll", " bottleneck", " will", "\u2019ve", " cannot", "'re"], [" are", "\u2019re", "'re", "\u2019ll", " aren", "\u2019ve", " will", " bottleneck"], ["\u2019re", " are", "\u2019ll", "\u2019ve", " will", " aren", "'re", " cannot"]], "p": [[0.6139, 0.29, 0.0647, 0.0073, 0.006, 0.005, 0.002, 0.001], [0.3503, 0.3503, 0.1211, 0.0099, 0.0039, 0.0025, 0.0024, 0.002], [0.7501, 0.2435, 0.0017, 0.0014, 0.0009, 0.0005, 0.0003, 0.0001], [0.021, 0.0093, 0.0077, 0.0053, 0.0039, 0.0032, 0.0032, 0.0028], [0.8809, 0.0266, 0.0081, 0.003, 0.0026, 0.0017, 0.001, 0.001], [0.4437, 0.099, 0.0601, 0.0052, 0.0041, 0.0036, 0.0021, 0.0019], [0.3107, 0.0948, 0.024, 0.0225, 0.0113, 0.0094, 0.0069, 0.0057], [0.1356, 0.0162, 0.0105, 0.0067, 0.0044, 0.0034, 0.0032, 0.0026], [0.4353, 0.0857, 0.0231, 0.0123, 0.0109, 0.009, 0.007, 0.0066], [0.8518, 0.0012, 0.001, 0.001, 0.0008, 0.0007, 0.0006, 0.0005], [0.7087, 0.0482, 0.0074, 0.0061, 0.0058, 0.0048, 0.0027, 0.0021], [0.0028, 0.0025, 0.0025, 0.0023, 0.0021, 0.0021, 0.0019, 0.0017], [0.013, 0.0058, 0.0021, 0.0018, 0.0017, 0.0016, 0.0016, 0.0015], [0.0022, 0.0015, 0.0014, 0.0013, 0.0013, 0.0011, 0.001, 0.001], [0.0031, 0.0026, 0.0026, 0.0026, 0.0022, 0.0017, 0.0015, 0.0015], [0.0065, 0.0045, 0.0037, 0.0027, 0.0024, 0.0021, 0.002, 0.002], [0.0101, 0.0095, 0.0083, 0.0074, 0.0069, 0.0057, 0.0054, 0.0051], [0.0074, 0.0074, 0.0065, 0.0054, 0.0054, 0.0048, 0.0042, 0.0037], [0.0167, 0.0122, 0.0095, 0.0089, 0.0084, 0.0079, 0.0069, 0.0069], [0.0117, 0.0104, 0.0076, 0.0071, 0.0071, 0.0067, 0.0063, 0.0055], [0.0594, 0.0299, 0.0248, 0.0086, 0.008, 0.0067, 0.0063, 0.0063], [0.0065, 0.0037, 0.0035, 0.0031, 0.0029, 0.0024, 0.002, 0.0019], [0.0086, 0.0071, 0.0055, 0.0046, 0.0043, 0.0026, 0.0026, 0.0025], [0.0243, 0.0115, 0.0101, 0.0101, 0.0095, 0.009, 0.0084, 0.0079], [0.1922, 0.1696, 0.1095, 0.0624, 0.0551, 0.0356, 0.0084, 0.004], [0.0195, 0.0118, 0.0104, 0.0098, 0.0098, 0.0087, 0.0076, 0.0076], [0.0805, 0.014, 0.0131, 0.0102, 0.008, 0.0075, 0.0058, 0.0055], [0.6734, 0.0856, 0.0203, 0.0123, 0.007, 0.0066, 0.004, 0.004], [0.1908, 0.1311, 0.0426, 0.0258, 0.0177, 0.0122, 0.0108, 0.0101], [0.2054, 0.2054, 0.097, 0.0805, 0.038, 0.0357, 0.0296, 0.0278], [0.6473, 0.0993, 0.0602, 0.0531, 0.0322, 0.0322, 0.0072, 0.0046], [0.6105, 0.0286, 0.0196, 0.0112, 0.0112, 0.0087, 0.0082, 0.0082], [0.043, 0.0404, 0.0356, 0.0191, 0.0149, 0.014, 0.0131, 0.0131], [0.1024, 0.0962, 0.0454, 0.0178, 0.0178, 0.0157, 0.0122, 0.0095], [0.0418, 0.0325, 0.027, 0.0197, 0.0174, 0.0164, 0.0127, 0.0127], [0.6314, 0.0625, 0.0335, 0.0102, 0.0096, 0.0079, 0.007, 0.0045], [0.0447, 0.0371, 0.0211, 0.0211, 0.0155, 0.0155, 0.0145, 0.0128], [0.0445, 0.0287, 0.0224, 0.0185, 0.0164, 0.0154, 0.0144, 0.0144], [0.0542, 0.0309, 0.0272, 0.0272, 0.0256, 0.0187, 0.0165, 0.0146], [0.0547, 0.0514, 0.0426, 0.0189, 0.0157, 0.0157, 0.013, 0.013], [0.0857, 0.0667, 0.0488, 0.0296, 0.0217, 0.0169, 0.0149, 0.0131], [0.0643, 0.0471, 0.0324, 0.0304, 0.0209, 0.0209, 0.0196, 0.0184], [0.1072, 0.0692, 0.065, 0.042, 0.0348, 0.0327, 0.0239, 0.0175], [0.063, 0.049, 0.0433, 0.0297, 0.0297, 0.0262, 0.0192, 0.015], [0.0702, 0.0582, 0.0547, 0.0482, 0.0228, 0.0201, 0.0177, 0.0138], [0.1397, 0.0748, 0.0702, 0.0426, 0.0214, 0.0189, 0.0138, 0.013], [0.3398, 0.1103, 0.0758, 0.059, 0.0381, 0.0231, 0.0124, 0.0116], [0.2603, 0.1579, 0.1229, 0.0546, 0.0546, 0.0227, 0.0177, 0.0138], [0.2662, 0.0632, 0.0492, 0.0463, 0.0338, 0.0318, 0.0233, 0.0181], [0.1604, 0.1036, 0.0628, 0.0406, 0.0358, 0.0246, 0.0231, 0.0217], [0.0908, 0.0586, 0.0551, 0.0456, 0.0403, 0.0378, 0.0295, 0.0244], [0.08, 0.0752, 0.0706, 0.0623, 0.0456, 0.0402, 0.0355, 0.0334], [0.2978, 0.0853, 0.0586, 0.0517, 0.0457, 0.0429, 0.0334, 0.0179], [0.4683, 0.1342, 0.1045, 0.0248, 0.011, 0.011, 0.0071, 0.0063], [0.4504, 0.2732, 0.129, 0.0326, 0.0077, 0.0064, 0.0047, 0.0034], [0.3298, 0.2568, 0.0834, 0.0327, 0.0271, 0.0239, 0.0113, 0.0078], [0.3285, 0.2899, 0.1993, 0.0346, 0.0144, 0.0106, 0.0068, 0.0057], [0.3771, 0.2592, 0.108, 0.0841, 0.0351, 0.02, 0.0166, 0.0121], [0.4986, 0.2078, 0.0866, 0.0765, 0.0464, 0.0248, 0.0151, 0.0081], [0.7108, 0.2036, 0.0312, 0.0215, 0.007, 0.0061, 0.0035, 0.0033], [0.5054, 0.3474, 0.047, 0.0285, 0.0196, 0.0093, 0.0082, 0.0077], [0.6706, 0.3168, 0.0035, 0.0031, 0.0021, 0.0013, 0.0011, 0.0004], [0.6909, 0.288, 0.0112, 0.0041, 0.0017, 0.001, 0.0009, 0.0003]], "ranks": {"Rust": [41391, 61113, 37048, 7183, 3458, 3365, 5156, 3249, 6773, 6469, 4012, 5202, 1231, 1665, 12148, 7133, 5654, 20652, 19608, 24544, 27337, 33886, 31386, 12043, 13033, 38029, 28748, 29191, 43587, 51616, 21124, 16663, 15844, 17240, 22322, 6794, 2851, 2997, 5877, 10996, 13297, 6276, 9437, 12691, 12511, 10555, 10825, 8023, 5414, 5582, 10736, 8996, 14829, 35795, 51414, 28960, 23714, 17309, 14324, 6845, 5262, 3117, 1264]}}, {"pos": 456, "top": [[".", ",", "\u2013", " \u2013", ";", "\u00a0", ":", "?"], ["\u2013", " \u2013", ",", ".", ";", "\u2013and", "\u00ad", "\u200b"], [",", ".", "\u2013", ";", " \u2013", ":", ".\u2013", "?"], ["\ufffd\ufffd", " ;;^", "\ufffd\ufffd", " Shemale", " milfs", "\u683c\u91cc\u62c9", "IZAR", " pornstar"], [".", ",", " \u200b\u200b", "st", ":", "hips", " (@", "\u5162\u5162\u4e1a\u4e1a"], [",", ".", " \u200b\u200b", ":", ";", "hips", " Zer", ".pro"], [".", ",", ":", ";", ".\"", "!", "hips", ":\""], [".", ":", ",", "\u4efb\u6028", "hips", "\u5162\u5162\u4e1a\u4e1a", "\u0441\u044f", "archical"], [".", "\u00b4s", ",", "schild", ":", "archical", ".\"", ";"], [" whilst", "Whilst", "\u8ba4\u8ba4\u771f", "\u4e0d\u80fd\u591f", ",", "\u6c34\u4efd", "\u800c\u4e14\u8fd8\u6709", ".epam"], [",", " whilst", ".", " amongst", "\u00b4s", " possessing", "\u4e0d\u80fd\u591f", ";"], ["\u8ba4\u8ba4\u771f", "\u6c34\u4efd", "\u5e74\u9752", " whilst", ".epam", "\u6bcf\u4e00\u4e2a\u4eba\u7684", "\u505a\u81ea\u5df1", "\u4f46\u4e0d\u9650\u4e8e"], ["\u4f46\u4e0d\u9650\u4e8e", "\u8ba4\u8ba4\u771f", "\u505a\u81ea\u5df1", "\u6280\u672f\u4e13\u4e1a", "archical", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u4e13\u4e1a\u8bfe\u7a0b", "\u6bcf\u4e00\u4e2a\u4eba\u7684"], ["\u4f46\u4e0d\u9650\u4e8e", "\u8ba4\u8ba4\u771f", "\u6bcf\u4e00\u4e2a\u4eba\u7684", "\u975e\u5e38\u5927\u7684", "archical", "\u5fc3\u4e2d\u6709\u6570", ".epam", " utilizing"], [" utilizing", " amongst", "\u6bcf\u4e00\u4e2a\u4eba\u7684", " attempting", " truly", " aggressively", " pushing", "\u975e\u5e38\u5927\u7684"], [" utilizing", "\u8ba4\u8ba4\u771f", "\u6bcf\u4e00\u4e2a\u4eba\u7684", " amongst", " impacting", " incredibly", " pushing", " freaking"], [" incredibly", " freaking", " leveraging", " impactful", "\u8ba4\u8ba4\u771f", " impacting", " utilizing", " transitioning"], [" incredibly", " freaking", " leveraging", " impactful", " transitioning", " relentless", " impacting", " relentlessly"], [" incredibly", " freaking", " leveraging", " truly", " incredible", " relentlessly", " aggressively", " relentless"], [" incredibly", " truly", " freaking", " relentlessly", " incredible", " looming", " relentless", " aggressively"], [" incredibly", " truly", " battling", " relentlessly", " wildly", " looming", " aggressively", " freaking"], [" incredibly", " freaking", "\u62e5\u6709\u7740", " impacting", " looming", " incredible", "\u5171\u540c\u6253\u9020", "\u6bcf\u4e00\u4e2a\u4eba\u7684"], [" incredibly", " freaking", " battling", " truly", "\u62e5\u6709\u7740", " looming", " impacting", " relentlessly"], [" incredibly", " battling", " truly", " looming", " relentlessly", " wildly", " pushing", " impacting"], [" \n\n", "\n\n", " \r\n\r\n", " incredibly", " battling", "\r\n\r\n", " looming", " truly"], [" incredibly", " battling", " impacting", " looming", " freaking", " relentless", " leveraging", " wildly"], [" battling", " incredibly", " looming", " relentless", " relentlessly", " aggressively", " impacting", " leveraging"], [" incredibly", "\n\n", " battling", " truly", " looming", " aggressively", " \n\n", " wildly"], [" incredibly", " looming", " aggressively", " relentless", " battling", " relentlessly", " sprawling", " wildly"], [" incredibly", " aggressively", " relentless", " looming", " relentlessly", " wildly", " pushing", " heavily"], [" incredibly", " aggressively", " truly", " relentlessly", " heavily", " massive", " relentless", " wildly"], [" incredibly", " relentlessly", " heavily", " aggressively", " massive", " truly", " relentless", " just"], [" incredibly", " relentlessly", " relentless", " aggressively", " truly", " massive", " heavily", " huge"], [" relentless", " relentlessly", " incredibly", " aggressively", " struggling", " leveraging", " fundamentally", " looming"], [" relentless", " incredibly", " relentlessly", " aggressively", " desperately", " looming", " strategically", " truly"], [" relentless", " incredibly", " relentlessly", " aggressively", " desperately", " struggling", " desperate", " heavily"], [" relentless", " aggressively", " relentlessly", " desperately", " incredibly", " desperate", " struggling", " forcing"], [" incredibly", " desperately", " relentless", " relentlessly", " aggressively", " desperate", " struggling", " impossible"], [" desperately", " desperate", " struggling", " relentlessly", " relentless", " incredibly", " impossible", " aggressively"], [" desperately", " risking", " desperate", " relentless", " relentlessly", " struggling", " forcing", " impossible"], [" risking", " desperately", " desperate", " relentless", " struggling", " relentlessly", " forcing", " pushing"], [" desperately", " desperate", " forcing", " risking", " struggling", " collapsing", " relentlessly", " relentless"], [" desperate", " desperately", " forcing", " risking", " relentlessly", " desperation", " relentless", " collapsing"], [" desperate", " forcing", " desperately", " forced", " desperation", " struggling", " risking", " pushing"], [" forcing", " desperately", " forced", " desperate", " risking", " trying", " risk", " desperation"], [" desperately", " forcing", " risking", " desperate", " dangerously", " desperation", " risk", " pushing"], [" risking", " desperately", " dangerously", " forcing", " desperate", " risk", " risks", " desperation"], [" risking", " forcing", " dangerously", " attempting", " desperately", " trying", " risks", " pushing"], [" forcing", " risking", " dangerously", " doomed", " attempting", "\u903c\u8feb", " shrinking", " desperately"], [" risking", "\u5012\u903c", "\u903c\u8feb", " forcing", " bottleneck", "\u5c06\u9762\u4e34", "\u5927\u6982\u7387", " doomed"], ["\u903c\u8feb", "\u5012\u903c", " risking", "Attempting", "forcing", "\u5927\u6982\u7387", "\u903c", "\u5c06\u9762\u4e34"], ["Attempting", " attempting", "\u903c\u8feb", " risking", "\u5012\u903c", "\u903c", "forcing", "\u8bd5\u56fe"], [" risking", " attempting", "Attempting", " bottleneck", " forcing", "forcing", " trying", "\u903c\u8feb"], [" risking", " attempting", " trying", "Attempting", " forcing", "forcing", " bottleneck", " sacrificing"], [" attempting", " trying", "Attempting", " risking", "\u8bd5\u56fe", " forcing", "trying", " sacrificing"], [" attempting", " trying", "Attempting", " risking", " bottleneck", " sacrificing", "\u8bd5\u56fe", " forcing"], [" attempting", " trying", " bottleneck", "Attempting", " risking", " sacrificing", " squeezing", "\u8bd5\u56fe"], [" optimizing", " attempting", " trying", " bottleneck", " risking", " squeezing", " sacrificing", " forcing"], [" bottleneck", " optimizing", " trying", " bott", " attempting", " squeezing", " committing", " risking"], [" bottleneck", " optimizing", " trading", " trying", " bott", " attempting", " squeezing", " betting"], [" bottleneck", " optimizing", " trying", " trading", " bott", " asking", " squeezing", " attempting"], [" bottleneck", " optimizing", " trying", " trading", " bott", " asking", " now", " attempting"], [" bottleneck", " optimizing", " trading", " trying", " betting", " bott", " asking", " now"]], "p": [[0.5877, 0.2776, 0.0619, 0.0619, 0.0065, 0.0008, 0.0007, 0.0003], [0.1226, 0.1226, 0.0955, 0.0544, 0.0398, 0.0114, 0.0065, 0.0048], [0.6973, 0.2264, 0.0505, 0.0186, 0.003, 0.0007, 0.0006, 0.0006], [0.0052, 0.0032, 0.003, 0.003, 0.0023, 0.0016, 0.0015, 0.0015], [0.016, 0.0132, 0.0071, 0.0028, 0.0024, 0.0024, 0.002, 0.0016], [0.1825, 0.1178, 0.0491, 0.0205, 0.0066, 0.0019, 0.0012, 0.0012], [0.5103, 0.3974, 0.0419, 0.0186, 0.0037, 0.001, 0.0006, 0.0005], [0.014, 0.009, 0.0085, 0.0085, 0.007, 0.0051, 0.0045, 0.0038], [0.0755, 0.0216, 0.0179, 0.0085, 0.0055, 0.0043, 0.0026, 0.0021], [0.01, 0.006, 0.0042, 0.0037, 0.0034, 0.0029, 0.0027, 0.0024], [0.0355, 0.0295, 0.0229, 0.0168, 0.0131, 0.0066, 0.0029, 0.0027], [0.0065, 0.0045, 0.0042, 0.0037, 0.0031, 0.0031, 0.0027, 0.0021], [0.0028, 0.0028, 0.0028, 0.0022, 0.0022, 0.0018, 0.0018, 0.0015], [0.003, 0.0028, 0.0026, 0.0025, 0.0025, 0.0022, 0.0019, 0.0019], [0.0086, 0.0063, 0.004, 0.0036, 0.0031, 0.0023, 0.0023, 0.0022], [0.0056, 0.0046, 0.0034, 0.003, 0.0028, 0.0025, 0.0023, 0.0017], [0.0129, 0.0095, 0.0078, 0.0074, 0.0065, 0.0054, 0.0042, 0.0035], [0.0563, 0.025, 0.0098, 0.0059, 0.0046, 0.0041, 0.0038, 0.0036], [0.1502, 0.0357, 0.009, 0.0085, 0.0085, 0.007, 0.0058, 0.0058], [0.2298, 0.0619, 0.0114, 0.0089, 0.0084, 0.0084, 0.0079, 0.0074], [0.0809, 0.0218, 0.0141, 0.0097, 0.0097, 0.0085, 0.0075, 0.0071], [0.0391, 0.0237, 0.0044, 0.0044, 0.0034, 0.0028, 0.0023, 0.0023], [0.0992, 0.0195, 0.0126, 0.0105, 0.0098, 0.0092, 0.0087, 0.0056], [0.0514, 0.0312, 0.0214, 0.0157, 0.0095, 0.007, 0.007, 0.0061], [0.1186, 0.041, 0.0385, 0.0206, 0.0171, 0.0133, 0.0086, 0.0071], [0.0547, 0.0214, 0.0147, 0.0147, 0.013, 0.0122, 0.0115, 0.0084], [0.0299, 0.0281, 0.0181, 0.0125, 0.0117, 0.0117, 0.011, 0.0103], [0.0335, 0.0335, 0.0296, 0.0217, 0.0191, 0.0149, 0.014, 0.0131], [0.067, 0.0337, 0.0297, 0.0279, 0.0232, 0.0218, 0.0192, 0.0192], [0.0948, 0.0448, 0.0328, 0.024, 0.0212, 0.0199, 0.0155, 0.0155], [0.0554, 0.0316, 0.0231, 0.0217, 0.0191, 0.0191, 0.0169, 0.0159], [0.051, 0.0227, 0.0227, 0.0213, 0.0188, 0.0188, 0.0156, 0.0146], [0.0577, 0.0478, 0.035, 0.024, 0.0199, 0.0187, 0.0129, 0.0121], [0.1042, 0.0763, 0.0558, 0.0524, 0.0133, 0.0125, 0.0125, 0.0117], [0.0758, 0.0669, 0.0628, 0.0521, 0.0192, 0.014, 0.0116, 0.0103], [0.1164, 0.08, 0.0752, 0.0456, 0.0334, 0.0168, 0.0148, 0.0131], [0.072, 0.0635, 0.0635, 0.0561, 0.0495, 0.03, 0.022, 0.0161], [0.0609, 0.0572, 0.0505, 0.0446, 0.037, 0.0288, 0.0254, 0.0175], [0.0637, 0.0466, 0.0386, 0.0386, 0.0363, 0.0265, 0.022, 0.0207], [0.0461, 0.0433, 0.0359, 0.0337, 0.0298, 0.0298, 0.0247, 0.0192], [0.0447, 0.042, 0.0348, 0.0308, 0.0308, 0.0255, 0.024, 0.0199], [0.0341, 0.032, 0.0282, 0.0282, 0.0265, 0.0265, 0.0249, 0.0234], [0.038, 0.0296, 0.0278, 0.0261, 0.0231, 0.0217, 0.0217, 0.0204], [0.0605, 0.0605, 0.0569, 0.0367, 0.0345, 0.0304, 0.0269, 0.0237], [0.0555, 0.0381, 0.0297, 0.0297, 0.0262, 0.0217, 0.0217, 0.0204], [0.0401, 0.0401, 0.0376, 0.0312, 0.0275, 0.0228, 0.0189, 0.0178], [0.0774, 0.0414, 0.0414, 0.0344, 0.0268, 0.0236, 0.0222, 0.0173], [0.1212, 0.0735, 0.0446, 0.0446, 0.0394, 0.0394, 0.0254, 0.0211], [0.0762, 0.0673, 0.0383, 0.028, 0.0263, 0.0232, 0.0181, 0.017], [0.1424, 0.0919, 0.0811, 0.0383, 0.0338, 0.0232, 0.0205, 0.0193], [0.174, 0.1273, 0.0822, 0.0302, 0.0284, 0.0183, 0.0183, 0.0183], [0.2288, 0.1081, 0.0954, 0.0655, 0.0543, 0.0273, 0.0241, 0.0241], [0.512, 0.1295, 0.0612, 0.0371, 0.0327, 0.0239, 0.0165, 0.0128], [0.5575, 0.1597, 0.0519, 0.0278, 0.0216, 0.0191, 0.0179, 0.0109], [0.5768, 0.2122, 0.0608, 0.0369, 0.0253, 0.0136, 0.0106, 0.0057], [0.5995, 0.1516, 0.0434, 0.0263, 0.0205, 0.016, 0.0117, 0.0117], [0.4703, 0.2852, 0.0207, 0.0207, 0.0207, 0.0142, 0.0142, 0.0125], [0.3998, 0.1888, 0.1888, 0.029, 0.0155, 0.0137, 0.0137, 0.0137], [0.8158, 0.0591, 0.0358, 0.0279, 0.0169, 0.0049, 0.0033, 0.0028], [0.5242, 0.2806, 0.043, 0.043, 0.0261, 0.0203, 0.0085, 0.0085], [0.344, 0.3036, 0.1117, 0.0677, 0.0282, 0.022, 0.0171, 0.0151], [0.4646, 0.2818, 0.0629, 0.0432, 0.0204, 0.0149, 0.014, 0.0109], [0.3021, 0.2666, 0.126, 0.0674, 0.0525, 0.0299, 0.015, 0.0141]], "ranks": {"Rust": [36677, 65494, 57217, 27485, 15886, 17187, 16091, 10741, 10064, 17699, 17921, 12050, 5771, 6163, 19834, 22807, 31633, 45000, 63143, 49669, 85061, 74207, 69990, 34469, 29696, 22665, 13712, 9506, 8735, 7704, 7317, 8103, 8361, 9858, 8256, 9409, 8054, 12832, 14162, 15044, 10201, 9809, 8766, 11010, 9217, 8390, 7070, 10646, 6162, 9173, 42651, 53932, 63080, 100991, 74736, 73298, 44689, 35201, 34973, 19096, 16663, 7563, 5619]}}, {"pos": 457, "top": [["s", " \u2013", "\u2013", ",", ".", "?", " ", "-"], ["s", " \u2013", "\u2013", ",", "\u2013and", ".", " \ud83d\ude42", " \u2013,"], ["s", "\u2013", ",", " \u2013", ".", "\u2013and", " \ud83d\ude42", ".."], ["sprozess", "s", "sula", "schrift", "schaft", "sider", "satz", "sik"], ["s", "sche", "sider", "\u0627\u062a", ",", "ska", "sense", "siz"], ["s", "siz", " \u200b\u200b", "sider", "ska", "schaft", " \ud83d\ude42", "sink"], ["s", "ska", ",", "siz", "!\"", ".\"", "schaft", " \u200b\u200b"], ["s", "ska", "schaft", "schn", "sche", "sud", "sut", "adays"], ["s", "!.", "!\u201d.", "schn", "!\",", "!\".", "!\u201d", "ska"], ["s", "ska", "schn", ",", "trz", "!:", "scape", "!,"], ["s", "ska", ",", "scape", "adays", "!\"", " showcasing", " transitioning"], ["ska", "adays", "schn", "trz", "s", "\u8d44\u8baf\u7f51", "apkan", "satz"], ["s", "ska", "schn", "adays", "scape", " leveraging", "schaft", " showcasing"], ["s", "ska", " transitioning", "schn", " showcasing", " leveraging", "adays", "siz"], [" transitioning", "s", " showcasing", "ska", "\u7684\u5168\u65b0", "snap", " leveraging", "\u62e5\u6709\u7740"], [" transitioning", "\u62e5\u6709\u7740", " showcasing", "\u4e5f\u6210\u4e3a\u4e86", "Whilst", " leveraging", "schn", "\u7684\u5168\u65b0"], ["s", " transitioning", " leveraging", " showcasing", "ska", "siz", " partnering", "\u62e5\u6709\u7740"], [" transitioning", " leveraging", "s", " showcasing", "siz", "ska", " tweaking", " partnering"], [" transitioning", " leveraging", " incredibly", "s", " tweaking", " NOW", " seamlessly", "\u7684\u5168\u65b0"], [" transitioning", "s", " incredibly", " leveraging", " NOW", " effortlessly", " tweaking", " seamlessly"], [" transitioning", " swiftly", " incredibly", " leveraging", " NOW", " partnering", " burgeoning", " battling"], [" transitioning", " leveraging", "\u62e5\u6709\u7740", "\u7684\u5168\u65b0", " incredibly", " freaking", "\u7684\u65b0\u65f6\u4ee3", "\u4e5f\u6210\u4e3a\u4e86"], [" transitioning", " leveraging", " incredibly", "\u62e5\u6709\u7740", "\u7684\u5168\u65b0", " partnering", " seamlessly", " NOW"], [" battling", " incredibly", " transitioning", " becoming", " arguably", "\u62e5\u6709\u7740", " NOW", " looming"], ["\n\n", "\r\n\r\n", " \r\n\r\n", " \n\n", " battling", " transitioning", " incredibly", " leveraging"], [" leveraging", " incredibly", " transitioning", " battling", " partnering", "\u62e5\u6709\u7740", " wielding", " looming"], [" leveraging", " battling", " transitioning", " partnering", " incredibly", " wielding", " looming", "\u62e5\u6709\u7740"], ["\n\n", " \n\n", " battling", " arguably", " incredibly", " vastly", " looming", "\r\n\r\n"], [" leveraging", " incredibly", "\n\n", " battling", " aggressively", " looming", " arguably", " transitioning"], [" incredibly", " leveraging", " aggressively", " transitioning", " strategically", " arguably", " battling", " looming"], [" incredibly", " aggressively", " heavily", " ...", " dramatically", " strategically", " rapidly", " relentless"], [" incredibly", " heavily", " aggressively", " strategically", " rapidly", " relentless", " dramatically", " focused"], [" incredibly", " relentless", " aggressively", " focused", " relentlessly", " focus", " strategically", " heavily"], [" aggressively", " relentless", " incredibly", " strategically", " leveraging", " relentlessly", " heavily", " focused"], [" aggressively", " incredibly", " relentless", " strategically", " relentlessly", " massively", " leveraging", " heavily"], [" relentless", " incredibly", " aggressively", " strategically", " relentlessly", " heavily", " massively", " focused"], [" aggressively", " incredibly", " relentless", " relentlessly", " strategically", " desperately", " desperate", " heavily"], [" incredibly", " aggressively", " strategically", " relentless", " desperate", " desperately", " relentlessly", " heavily"], [" desperate", " incredibly", " desperately", " aggressively", " strategically", " struggling", " relentless", " relentlessly"], [" strategically", " desperate", " relentless", " aggressively", " incredibly", " struggling", " desperately", " focused"], [" strategically", " desperate", " focused", " technical", " struggling", " engineering", " leveraging", " desperately"], [" strategically", " engineering", " strategic", " managing", " desperate", " struggling", " aggressively", " technical"], [" strategically", " engineering", " managing", " strategic", " desperate", " aggressively", " bottleneck", " focused"], [" managing", " engineering", " desperate", " bottleneck", " struggling", " forcing", " strategically", " desperately"], [" managing", " forced", " forcing", " engineering", " struggling", " desperately", " bottleneck", " desperate"], [" managing", " competing", " forcing", " engineering", " forced", " focus", " desperate", " desperately"], [" bottleneck", " logistical", " forced", " forcing", " competing", " focus", " managing", " desperately"], [" forcing", " logistical", " forced", " focus", " competing", " managing", " bottleneck", " desperately"], [" logistical", " forced", " bottleneck", " forcing", " desperately", " competing", " managing", " desperate"], [" bottleneck", "\u5012\u903c", " logistical", "\u4e0d\u4ec5\u8981", " forcing", " forced", " priorit", " risking"], ["\u5012\u903c", " bottleneck", "\u903c\u8feb", "\u4e0d\u4ec5\u8981", " risking", "\u88ab\u8feb", " forcing", " forced"], [" bottleneck", " risking", "\u5fc5\u987b\u5728", "\u5012\u903c", "\u88ab\u8feb", "\u4e0d\u4ec5\u8981", "\u903c\u8feb", " needing"], [" bottleneck", " risking", " constrained", " forced", " reliant", " relying", " forcing", "\u88ab\u8feb"], [" bottleneck", " risking", " constrained", " trying", " fighting", " reliant", " relying", " battling"], [" fighting", " battling", " bottleneck", " risking", " trying", " constrained", " attempting", " forcing"], [" battling", " fighting", " bottleneck", " constrained", " optimizing", " debugging", " risking", " committing"], [" optimizing", " battling", " fighting", " bottleneck", " constrained", " debugging", " solving", " sacrificing"], [" optimizing", " battling", " bottleneck", " constrained", " fighting", " optimization", " debugging", " solving"], [" bottleneck", " optimizing", " debugging", " bott", " constrained", " battling", " fighting", "\u74f6\u9888"], [" optimizing", " bottleneck", " fighting", " battling", " debugging", " bott", " constrained", " optimization"], [" optimizing", " bottleneck", " fighting", " debugging", " bott", " battling", " constrained", " trading"], [" bottleneck", " optimizing", " fighting", " bott", " constrained", " battling", " debugging", " racing"], [" optimizing", " bottleneck", " fighting", " bott", " building", " debugging", " betting", " trading"]], "p": [[0.9377, 0.0529, 0.0034, 0.0034, 0.0023, 0.0, 0.0, 0.0], [0.73, 0.1437, 0.1119, 0.0063, 0.0014, 0.0005, 0.0003, 0.0002], [0.4358, 0.4358, 0.0972, 0.0217, 0.0048, 0.0017, 0.0004, 0.0003], [0.0215, 0.0122, 0.0115, 0.0084, 0.0084, 0.0074, 0.007, 0.0066], [0.9976, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.8277, 0.0041, 0.0028, 0.0026, 0.0021, 0.0017, 0.0011, 0.001], [0.993, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.6615, 0.0226, 0.0213, 0.0166, 0.0078, 0.0051, 0.0047, 0.0042], [0.5256, 0.0297, 0.0279, 0.0132, 0.0124, 0.0116, 0.0109, 0.0102], [0.0875, 0.0183, 0.0044, 0.0028, 0.0028, 0.0026, 0.0023, 0.0022], [0.5325, 0.0206, 0.0041, 0.0038, 0.0023, 0.0019, 0.0016, 0.0014], [0.0149, 0.008, 0.0062, 0.0058, 0.0043, 0.004, 0.0035, 0.0035], [0.0155, 0.0083, 0.0054, 0.0054, 0.0037, 0.0031, 0.0029, 0.0029], [0.015, 0.011, 0.008, 0.0055, 0.0043, 0.004, 0.004, 0.0038], [0.0275, 0.013, 0.0095, 0.0079, 0.0051, 0.0045, 0.0042, 0.004], [0.0149, 0.009, 0.0066, 0.0058, 0.0045, 0.0038, 0.0031, 0.0029], [0.0899, 0.0481, 0.0257, 0.0138, 0.0074, 0.0069, 0.0051, 0.0045], [0.077, 0.0412, 0.0183, 0.0092, 0.0086, 0.0086, 0.0072, 0.0059], [0.0354, 0.0215, 0.0139, 0.0101, 0.0065, 0.0054, 0.0054, 0.0051], [0.02, 0.0156, 0.0146, 0.0107, 0.0054, 0.0051, 0.0048, 0.0045], [0.017, 0.0063, 0.0052, 0.0052, 0.0046, 0.0043, 0.004, 0.004], [0.0049, 0.004, 0.0034, 0.0034, 0.0022, 0.002, 0.0019, 0.0016], [0.0238, 0.0119, 0.0099, 0.0093, 0.0044, 0.0041, 0.0024, 0.0024], [0.0144, 0.0127, 0.0119, 0.0077, 0.0072, 0.0053, 0.0044, 0.0041], [0.0336, 0.0296, 0.0262, 0.0159, 0.0085, 0.0066, 0.0066, 0.0055], [0.0305, 0.0153, 0.0144, 0.0099, 0.0082, 0.0064, 0.0047, 0.0044], [0.0272, 0.0155, 0.0146, 0.0113, 0.0113, 0.0078, 0.0073, 0.0057], [0.141, 0.0203, 0.0191, 0.0131, 0.0116, 0.009, 0.0085, 0.0085], [0.0319, 0.0248, 0.0206, 0.0182, 0.0171, 0.0141, 0.0141, 0.0125], [0.0393, 0.0369, 0.0224, 0.0175, 0.0175, 0.0128, 0.0113, 0.0113], [0.0361, 0.0233, 0.0171, 0.0151, 0.0133, 0.0125, 0.0117, 0.0097], [0.0575, 0.0225, 0.0225, 0.0187, 0.0175, 0.0145, 0.0145, 0.0113], [0.0525, 0.0248, 0.0233, 0.0182, 0.0171, 0.0171, 0.0171, 0.0125], [0.0452, 0.0374, 0.033, 0.0274, 0.0257, 0.02, 0.0166, 0.0138], [0.0533, 0.0442, 0.0323, 0.0268, 0.0222, 0.0127, 0.0127, 0.0127], [0.0548, 0.0548, 0.0515, 0.0332, 0.0293, 0.0189, 0.0167, 0.0139], [0.0962, 0.0515, 0.0401, 0.0276, 0.0243, 0.0228, 0.0215, 0.0157], [0.0447, 0.042, 0.0254, 0.0254, 0.0225, 0.0198, 0.0186, 0.0175], [0.0402, 0.0294, 0.0294, 0.0277, 0.0277, 0.0229, 0.0229, 0.0215], [0.0355, 0.0229, 0.0215, 0.0215, 0.0215, 0.0202, 0.019, 0.019], [0.0342, 0.0208, 0.0208, 0.0195, 0.0183, 0.0183, 0.0172, 0.0162], [0.053, 0.0365, 0.0235, 0.0221, 0.0183, 0.0183, 0.0172, 0.0172], [0.0559, 0.0384, 0.0299, 0.0281, 0.0233, 0.0182, 0.016, 0.015], [0.0527, 0.032, 0.032, 0.0282, 0.0265, 0.0249, 0.0249, 0.0249], [0.041, 0.03, 0.03, 0.0282, 0.0219, 0.0171, 0.0161, 0.0161], [0.0251, 0.0236, 0.0208, 0.0208, 0.0184, 0.0173, 0.0162, 0.0152], [0.0352, 0.0257, 0.0257, 0.0257, 0.0242, 0.0213, 0.0166, 0.0156], [0.046, 0.0406, 0.0381, 0.0297, 0.0297, 0.0262, 0.0262, 0.0192], [0.0494, 0.0436, 0.0385, 0.0385, 0.0249, 0.0206, 0.0182, 0.0133], [0.1513, 0.0359, 0.0338, 0.0298, 0.0247, 0.0218, 0.0205, 0.0192], [0.1546, 0.0605, 0.0569, 0.0269, 0.0269, 0.0237, 0.0173, 0.0135], [0.1307, 0.0617, 0.0352, 0.0352, 0.0292, 0.0274, 0.0242, 0.0242], [0.588, 0.1312, 0.0332, 0.0157, 0.0138, 0.0138, 0.0122, 0.007], [0.3553, 0.1481, 0.0898, 0.0399, 0.033, 0.031, 0.0257, 0.0177], [0.5185, 0.2775, 0.0482, 0.0228, 0.0177, 0.0101, 0.0095, 0.0058], [0.2605, 0.2605, 0.158, 0.0746, 0.0214, 0.0189, 0.0156, 0.0147], [0.2896, 0.2896, 0.1368, 0.083, 0.0305, 0.0269, 0.0163, 0.0073], [0.944, 0.0135, 0.0105, 0.0056, 0.005, 0.003, 0.0027, 0.0013], [0.6642, 0.2443, 0.0292, 0.0258, 0.0156, 0.0084, 0.0024, 0.0019], [0.5369, 0.3256, 0.0441, 0.0303, 0.0303, 0.0143, 0.0053, 0.0025], [0.5767, 0.3087, 0.0473, 0.0136, 0.0136, 0.012, 0.0106, 0.0024], [0.5228, 0.4072, 0.0179, 0.0123, 0.0123, 0.004, 0.004, 0.002], [0.5435, 0.3297, 0.0347, 0.0164, 0.01, 0.0088, 0.0088, 0.0078]], "ranks": {"Rust": [32675, 67391, 62519, 18422, 6541, 9125, 20922, 18812, 15674, 25211, 26752, 24193, 9236, 9832, 25863, 35087, 30108, 70893, 104091, 92878, 120517, 104731, 125227, 102338, 79635, 72076, 41272, 24068, 19703, 21050, 16208, 14894, 20654, 35521, 23595, 26942, 21836, 25193, 27287, 32828, 19583, 15639, 13055, 22861, 15555, 16118, 19225, 18491, 11737, 10663, 45938, 47808, 39984, 49381, 35117, 24351, 17763, 12205, 12415, 10568, 17661, 10390, 6251]}}, {"pos": 458, "top": [[".", " \u2013", ",", "\u2013", "  \n", " ", "\u2026..", "\u2026\u2026"], [" *\u201c", "[\"@", " \u2013**", "   \n", "  \n\n", "  \n", " (\u201c", "  \n  \n"], ["\u2026..", "\u2026**", "\u2026*", "\u2026.", "\u2026]", "\u2013", "**\u2013", "\u2026\""], [" Blowjob", " milfs", " cumshot", " **\u201e", " **\u201c", " *__", " *\u201c", " Guta"], [" **\u201c", " *\u201c", ":@", "[\"@", "\u0d4d\u0d1f", " (\u201c", "\u0103\u021b", " **\u201e"], [" **\u201c", "\u0d4d\u0d1f", "incu", " \u200b\u200b", " Guta", " **\u201e", " *\u201c", " Insg"], [" **\u201c", " *\u201c", " **\u201e", "?\u201c", " **\u3010", " **\"", "\u0d4d\u0d1f", ".\u201c"], [" **\u201c", " *\u201c", " **\u201e", "   \n\n", "\u0d4d\u0d1f", " *@", " **\"", "?\u201c"], [" *\u201c", "   \n\n", " **\u201c", ".\u201c", "  \n    \n", "  \n\n\n", "  \n\n", "ally"], ["ally", " *\u201c", " OPT", " leveraging", "(optimizer", "-enh", "Optimizer", "\u0d4d\u0d1f"], [" leveraging", " *\u201c", " OPT", " optimized", " strategic", "-enh", "ally", " optimizing"], [" leveraging", " optimizations", " **\u201e", " **\u201c", " optimizing", " optimization", " **+", " *\u201c"], [" **\u201e", " leveraging", " optimizations", " optimization", " optimized", " optimizing", " leverage", " optimizer"], [" leveraging", " optimizations", " optimized", " optimizing", " optimization", " optimizer", " leverage", " tweaks"], [" leveraging", " optimized", " optimizer", " strategic", " optimizations", " optimizing", " tweaks", " strategically"], [" leveraging", " tweaks", " optimizations", " optimizing", " optimized", " savvy", " optimizer", " nuanced"], [" tweaks", " leveraging", " nuanced", " savvy", "ergi", " optimized", " tweaking", " optimizing"], [" tweaks", " optimizer", " optimizations", "ergi", " optimizing", " leveraging", " milfs", " optimized"], [" tweaks", " optimizer", "\u52e4\u52e4\u6073\u6073", "ergi", "OKIE", " leveraging", " optimizations", "Optimizer"], [" tweaks", "ergi", "\u52e4\u52e4\u6073\u6073", " optimizer", " leveraging", " tweaking", "Optimizer", "OKIE"], [" tweaks", " tweaking", "ergi", " myriad", " leveraging", "Optimizer", " Optim", "\u2014even"], [" ;;^", " milfs", " knull", "Optimizer", "\u52e4\u52e4\u6073\u6073", " tweaks", " optimizer", "OKIE"], [" ;;^", " tweaks", "Optimizer", "ergi", " optimizations", " tweaking", " leveraging", " knull"], [" tweaks", " tweaking", " myriad", " toward", "ergi", " optimizing", " arguably", "Optimizer"], [" tweaks", " tweaking", " leveraging", " optimizing", "ergi", " optimizer", " tweaked", " optimizations"], [" optimizations", " tweaks", " optimizing", " optimizer", " tweaking", " leveraging", " **+", " optimization"], [" optimizations", " tweaks", " optimizing", " tweaking", " optimizer", " optimization", " leveraging", " optimize"], [" tweaking", " optimizing", " tweaks", " optim", " optimizations", " \n\n", " arguably", " boosting"], [" tweaks", " optimizing", " tweaking", " optimizations", " optimization", " optim", " efficiencies", " leveraging"], [" tweaks", " optimizations", " optimizing", " optimization", " tweaking", " optim", " optimized", " optimize"], [" tweaks", " optimization", " optimizations", " for", " optimizing", " optim", " tweaking", " optimized"], [" for", " optimization", " optimizations", " tweaks", " optim", " goals", " optimizing", " optimized"], [" tweaks", " optimization", " optimizations", " optimizing", " incredibly", " tweaking", " optimized", " efficiency"], [" tweaks", " optimizations", " optimization", " optimizing", " optimized", " tweaking", " workflows", " smarter"], [" tweaks", " tweaking", " optimizing", " optimizations", " optimization", " relentless", " incredibly", " obsess"], [" relentless", " relentlessly", " incredibly", " tweaks", " aggressively", " optimizations", " optimizing", " massively"], [" optimizations", " optimization", " optimizing", " optimized", " optim", " aggressively", " relentlessly", " tweaks"], [" optimizations", " optimization", " optimizing", " optimized", " optim", " relentlessly", " incredibly", " Optimization"], [" optimization", " optimizing", " optimizations", " optimized", " optim", " efficiency", " Optimization", " optimize"], [" optimization", " optimizations", " optimizing", " optimized", " optim", " Optimization", " optimize", " efficiency"], [" optimization", " optimizations", " optimizing", " optimized", " optim", " Optimization", " optimize", " efficiency"], [" optimization", " optimizing", " optimizations", " optimized", " optim", " Optimization", " optimize", " efficiency"], [" optimization", " optimizing", " optimizations", " optimized", " optim", " Optimization", " optimize", " efficiency"], [" optimization", " optimizing", " optimizations", " optimized", " optim", " Optimization", " optimize", " efficiency"], [" optimization", " optimizing", " optimizations", " optimized", " optim", " optimize", " Optimization", " efficiency"], [" optimization", " optimizing", " optimizations", " optimized", " optim", " obsess", " optimize", " Optimization"], [" optimization", " optimizing", " optimizations", " optim", " optimized", " optimize", " obsess", " Optimization"], [" optimization", " optimizing", " optimizations", " optim", " optimized", " optimize", " bottleneck", " obsess"], [" optimization", " optimizing", " optimizations", " optim", " optimized", " optimize", " obsess", " Optimization"], [" optimization", " optimizations", " optimizing", " obsess", " bottleneck", " aggressively", " Optimization", " optim"], [" optimization", " optimizations", " optimizing", " bottleneck", " obsess", "\u4e0d\u662f\u4e3a\u4e86", " Optimization", " aggressively"], [" bottleneck", " optimizations", " optimization", " optimizing", " hardware", " obsess", " workflows", " aggressively"], [" bottleneck", " optimizations", " optimization", " optimizing", " hardware", " optimizer", " Optimization", " Optim"], [" bottleneck", " optimizations", " optimization", " hardware", " runtime", " optimizer", " optimizing", " optics"], [" runtime", " optimizations", " optimization", " bottleneck", " hardware", " optimizer", " prematurely", " premature"], [" runtime", " hardware", " prematurely", " premature", " bottleneck", " optimizations", " bytecode", " CPU"], [" runtime", " bytecode", " hardware", " bottleneck", " garbage", " premature", " CPU", " software"], [" bytecode", " hardware", " runtime", " garbage", " software", " JVM", " compiler", " latency"], [" for", " bytecode", " hardware", " runtime", " compiler", " cache", " bottleneck", " software"], [" for", " bytecode", " assembly", " Rust", " garbage", " hardware", " cache", "for"], [" for", " binary", " bytecode", " assembly", "for", " binaries", " Rust", " garbage"], [" for", " assembly", " binary", " Rust", " bytecode", " garbage", " JVM", " binaries"], [" for", " Rust", " assembly", " garbage", " binary", " bytecode", "for", " cache"]], "p": [[0.4157, 0.1268, 0.0987, 0.0599, 0.0207, 0.0161, 0.0142, 0.0126], [0.046, 0.0358, 0.0337, 0.0279, 0.0192, 0.018, 0.0169, 0.0169], [0.1598, 0.0666, 0.0458, 0.0404, 0.0315, 0.0315, 0.0315, 0.0315], [0.0582, 0.0376, 0.0214, 0.0189, 0.0122, 0.0108, 0.0084, 0.0069], [0.1241, 0.0586, 0.0148, 0.0123, 0.0079, 0.007, 0.0062, 0.0058], [0.1055, 0.0195, 0.0063, 0.0056, 0.0056, 0.0044, 0.0038, 0.0036], [0.3292, 0.0832, 0.0224, 0.0088, 0.0073, 0.0068, 0.0068, 0.006], [0.0883, 0.0779, 0.0536, 0.0174, 0.0105, 0.0093, 0.0087, 0.0077], [0.1061, 0.0826, 0.0471, 0.0344, 0.0344, 0.0252, 0.0237, 0.0184], [0.0076, 0.0067, 0.0052, 0.0041, 0.0041, 0.0036, 0.0032, 0.003], [0.0152, 0.0134, 0.0098, 0.0081, 0.0076, 0.0076, 0.0072, 0.0072], [0.0248, 0.015, 0.0125, 0.0103, 0.0091, 0.0076, 0.0076, 0.0076], [0.0293, 0.0214, 0.0157, 0.0089, 0.007, 0.007, 0.007, 0.0065], [0.0236, 0.0153, 0.0135, 0.0112, 0.0112, 0.0093, 0.006, 0.006], [0.0249, 0.0151, 0.0092, 0.0086, 0.0081, 0.0076, 0.0071, 0.0067], [0.0157, 0.0138, 0.0101, 0.0058, 0.0058, 0.0045, 0.0045, 0.0042], [0.0286, 0.0237, 0.0077, 0.0064, 0.0064, 0.005, 0.005, 0.0047], [0.0238, 0.0198, 0.0145, 0.0073, 0.0068, 0.0068, 0.006, 0.006], [0.0192, 0.0091, 0.0075, 0.0066, 0.0066, 0.0062, 0.0049, 0.0043], [0.0179, 0.0079, 0.0058, 0.0051, 0.0048, 0.0043, 0.004, 0.0038], [0.013, 0.0074, 0.0058, 0.0051, 0.0033, 0.0027, 0.0027, 0.0024], [0.0382, 0.017, 0.011, 0.0055, 0.0049, 0.0038, 0.0033, 0.0033], [0.013, 0.0122, 0.0058, 0.0051, 0.0048, 0.0048, 0.0037, 0.0035], [0.0057, 0.0044, 0.0032, 0.0032, 0.003, 0.0028, 0.0028, 0.0025], [0.0134, 0.0098, 0.0056, 0.0049, 0.0038, 0.0032, 0.0032, 0.003], [0.034, 0.03, 0.0194, 0.0194, 0.0151, 0.0133, 0.0092, 0.0081], [0.0757, 0.0459, 0.0405, 0.0262, 0.0231, 0.0204, 0.018, 0.009], [0.0434, 0.0383, 0.0298, 0.028, 0.016, 0.0124, 0.0091, 0.0085], [0.0815, 0.0635, 0.0526, 0.0526, 0.0265, 0.0249, 0.0133, 0.0125], [0.0989, 0.0724, 0.0529, 0.0529, 0.0364, 0.0183, 0.0183, 0.0152], [0.0525, 0.0409, 0.0361, 0.0361, 0.0299, 0.017, 0.016, 0.015], [0.0342, 0.0266, 0.0221, 0.0221, 0.0161, 0.0142, 0.0126, 0.0111], [0.052, 0.038, 0.0278, 0.014, 0.0109, 0.0102, 0.0102, 0.009], [0.0731, 0.0687, 0.0645, 0.0325, 0.021, 0.0163, 0.0144, 0.0112], [0.0626, 0.0261, 0.0261, 0.023, 0.023, 0.0203, 0.0168, 0.0158], [0.045, 0.0423, 0.0351, 0.033, 0.033, 0.0257, 0.0241, 0.0213], [0.1803, 0.124, 0.1164, 0.08, 0.026, 0.0244, 0.0158, 0.0123], [0.164, 0.164, 0.12, 0.0684, 0.0252, 0.0135, 0.0126, 0.0126], [0.226, 0.1995, 0.1995, 0.0885, 0.0254, 0.0099, 0.0099, 0.0077], [0.3538, 0.2755, 0.1671, 0.1014, 0.0146, 0.0114, 0.0089, 0.0069], [0.3805, 0.2615, 0.2037, 0.0962, 0.0148, 0.0089, 0.0089, 0.0042], [0.3647, 0.3219, 0.1952, 0.0718, 0.0182, 0.0076, 0.0067, 0.0025], [0.4323, 0.2971, 0.1802, 0.0516, 0.0115, 0.0079, 0.0079, 0.0016], [0.4207, 0.3277, 0.1754, 0.0305, 0.0127, 0.0099, 0.0099, 0.0013], [0.4937, 0.2643, 0.1415, 0.0279, 0.0149, 0.0102, 0.007, 0.0035], [0.4123, 0.2501, 0.1181, 0.0338, 0.0281, 0.011, 0.0097, 0.0091], [0.4388, 0.2073, 0.1425, 0.0318, 0.0318, 0.015, 0.008, 0.0071], [0.4208, 0.2252, 0.1064, 0.0391, 0.0209, 0.0135, 0.0112, 0.0099], [0.4221, 0.2259, 0.1553, 0.0306, 0.0154, 0.012, 0.0077, 0.0077], [0.2342, 0.1824, 0.1335, 0.0337, 0.0317, 0.0232, 0.0117, 0.0117], [0.1193, 0.1053, 0.0989, 0.0439, 0.025, 0.0221, 0.0152, 0.0092], [0.1045, 0.0596, 0.0464, 0.0264, 0.0248, 0.0206, 0.0141, 0.0086], [0.2445, 0.2157, 0.1155, 0.0452, 0.0352, 0.0166, 0.0166, 0.0107], [0.2005, 0.1216, 0.0651, 0.054, 0.0348, 0.0307, 0.0186, 0.0186], [0.0991, 0.0931, 0.0725, 0.0725, 0.044, 0.0413, 0.0322, 0.0284], [0.1907, 0.0795, 0.0453, 0.0353, 0.0331, 0.0214, 0.0201, 0.0189], [0.1368, 0.1001, 0.0883, 0.0325, 0.0325, 0.0253, 0.0253, 0.0197], [0.1839, 0.1264, 0.1048, 0.0465, 0.032, 0.0234, 0.022, 0.0206], [0.2185, 0.0911, 0.0588, 0.0458, 0.0315, 0.0203, 0.0191, 0.0179], [0.8045, 0.0189, 0.013, 0.0095, 0.0095, 0.0089, 0.0061, 0.0054], [0.951, 0.0093, 0.0057, 0.003, 0.0025, 0.0022, 0.0021, 0.0018], [0.9066, 0.0101, 0.0089, 0.0078, 0.0074, 0.0048, 0.0027, 0.0024], [0.9803, 0.0051, 0.0026, 0.0011, 0.0009, 0.0005, 0.0005, 0.0005]], "ranks": {"Rust": [62994, 143999, 122272, 82085, 61889, 63152, 61537, 64054, 34292, 25853, 30030, 43333, 24070, 27735, 31345, 26024, 36932, 24391, 45777, 44347, 65868, 55653, 58606, 43398, 13754, 14165, 15218, 6802, 7960, 5724, 5046, 4507, 6134, 8114, 6484, 7424, 4274, 4391, 4339, 4339, 2752, 2536, 3337, 3436, 2621, 1926, 1941, 1949, 1613, 1946, 5129, 7291, 6281, 4252, 1099, 942, 511, 207, 79, 4, 7, 4, 2]}}, {"pos": 459, "top": [[".", ",", "\u00a0", "\u00a0\u00a0", ";", "\u2026.", "?", "\u2013"], ["\u2011", "\u2013", ",", "\u00ad", " \u2013", ".", ";", "\ufffd"], [",", "\u2013", "\u2026.", "\u2026", ".", "\u2026..", ";", "["], ["----------</", "\uff3f\uff3f", "-------------</", " milfs", "----</", " \u041a\u0440\u0430\u0441\u0438", " Fortal", "\uff0a\uff0a\uff0a\uff0a"], [" CIF", "_____", "\uff20", " \u2019", "edel", " **\u201c", " \u041a\u0440\u0430\u0441\u0438", "\u0437\u0440\u0435"], ["fst", "ssf", " Insg", "\u8131\u8d2b\u81f4\u5bcc", " Fortal", " \uace0\uac1d\ub2d8\uc758", "-Za", "zg"], ["_____", " _____", " **\u201c", " ***", "\u201d?", "\u201d:", "izr", "\\xc"], ["_____", " _____", " ***", " **\u201c", " **\u2022", "\\xc", "\u201d?", "\u201d:"], ["\u201d:", "\u201d?", ".\u201d", "?\u201d", " ***", "?\u201d.", "!\u201d", " **\u201c"], ["\u00ading", "dataType", " \u0442\u0440\u0451", "\\xc", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", "\u516c\u53f7", " \u00ad", "\u9e92"], ["\\xc", " ***", " _____", "_____", " savvy", "ting", " optim", "-or"], [" ***", " **\u300c", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", " **", " **\u2022", " savvy", " **#", "ingos"], [" **\u300c", "ingos", " matchups", " milfs", " savvy", " \u00bb**", " mindset", " impactful"], [" savvy", " fracking", " gritty", " mindset", " pricey", " matchups", "ingos", " downtime"], [" savvy", " gritty", " mindset", " pricey", " ballpark", " matchups", " arguably", "\u8303\u513f"], [" savvy", " gritty", " mindset", " arguably", " ballpark", " incentiv", " pricey", " matchups"], [" savvy", " gritty", " arguably", " mindset", " pricey", " myriad", "\u5473\u513f", " optim"], [" savvy", " gritty", " smarter", " tweaks", "\u5473\u513f", " scalability", " optim", " pricey"], [" gritty", " savvy", "\u5473\u513f", " ;;^", " arguably", " myriad", "\u7b80\u7b80\u5355", " smarter"], [" myriad", " gritty", "\u2014even", " arguably", "\u7b80\u7b80\u5355", "\u5473\u513f", "\u8303\u513f", " {{--<"], [" myriad", " {{--<", "\u2014even", " arguably", " gritty", "\u8303\u513f", " vastly", " just"], [" ;;^", "\u5473\u513f", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", "\u7701\u90e8\u7ea7", "\u66f4\u7f8e\u597d", " gritty", "CALLTYPE", "\u3079\u304f"], [" {{--<", "\u5473\u513f", " myriad", " ;;^", " quicker", " gritty", " arguably", " sleek"], [" {{--<", " myriad", " arguably", " --", " quicker", " vastly", " ultimately", " just"], [" {{--<", " myriad", "\u2014or", " \r\n\r\n", " gritty", "\u2014even", " arguably", " \n\n"], [" **", " gritty", " {{--<", " myriad", " arguably", " smarter", " sleek", " _____"], [" gritty", " {{--<", " myriad", " arguably", " optim", " vastly", " pricey", " **"], [" **", " myriad", " \n\n", " arguably", " --", " ___", " {{--<", " _____"], [" arguably", " myriad", " gritty", " optim", " **", " vastly", " cheap", " wildly"], [" **", " economy", " efficiency", " cheap", " optim", " global", " gritty", " myriad"], [" **", " high", " less", " rather", " global", " cheap", " economy", " more"], [" rather", " high", " less", " more", " long", " much", " just", " only"], [" rather", " high", " critical", " cheap", " less", " global", " low", " only"], [" cheap", " **", " efficiency", " economy", " global", " rather", " critical", " low"], [" cheap", " **", " efficiency", " global", " arguably", " gritty", " economy", " low"], [" cheap", " efficiency", " **", " \u201c", " hardware", " global", " faster", " technology"], [" cheap", " efficiency", " cheaper", " cost", " hardware", " **", " optimization", " faster"], [" cheap", " efficiency", " cost", " cheaper", " hardware", " optimization", " technical", " budget"], [" cheap", " efficiency", " cost", " hardware", " cheaper", " budget", " optimization", " technical"], [" cheap", " efficiency", " cost", " hardware", " optimization", " cheaper", " speed", " expensive"], [" efficiency", " cheap", " hardware", " cost", " optimization", " technology", " speed", " cheaper"], [" efficiency", " cheap", " hardware", " cost", " optimization", " economy", " budget", " cheaper"], [" efficiency", " cheap", " hardware", " cost", " optimization", " economy", " budget", " cheaper"], [" efficiency", " cheap", " hardware", " cost", " optimization", " economy", " budget", " costs"], [" efficiency", " cheap", " cost", " economy", " hardware", " costs", " budget", " optimization"], [" cheap", " efficiency", " cost", " economy", " hardware", " budget", " economics", " budgets"], [" cheap", " efficiency", " cost", " hardware", " economy", " budget", " logistics", " budgets"], [" cheap", " efficiency", " cost", " budget", " hardware", " budgets", " economy", " costs"], [" cheap", " efficiency", " cost", " budgets", " hardware", " budget", " costs", " logistics"], [" cheap", " efficiency", " budgets", "\u6210\u672c\u63a7\u5236", " hardware", " logistics", " optimization", " survival"], [" cheap", " efficiency", "\u6210\u672c\u63a7\u5236", " budgets", " optimization", " scarcity", " hardware", " logistics"], [" hardware", " efficiency", " optimization", " cheap", " bottleneck", " optimizations", "\u6210\u672c\u63a7\u5236", " latency"], [" hardware", " efficiency", " latency", " bottleneck", " optimization", " optimizations", " constraints", " throughput"], [" hardware", " latency", " throughput", " bottleneck", " bandwidth", " constraints", " runtime", " CPU"], [" latency", " hardware", " CPU", " runtime", " throughput", " bottleneck", " bandwidth", " optimization"], [" latency", " CPU", " hardware", " runtime", " throughput", " framerate", " optimization", " bottleneck"], [" CPU", " latency", " GPU", " hardware", " throughput", " runtime", " cpu", "CPU"], [" CPU", " latency", " GPU", " hardware", " cpu", "CPU", " throughput", " runtime"], [" latency", " CPU", " GPU", " throughput", " cache", " thermal", " battery", " hardware"], [" latency", " CPU", " GPU", " battery", " cache", " hardware", " throughput", " mobile"], [" latency", " CPU", " battery", " throughput", " GPU", " mobile", " cache", " binary"], [" battery", " CPU", " latency", " cache", " throughput", " GPU", " thermal", " bandwidth"], [" battery", " thermal", " cache", " latency", " throughput", " CPU", " GPU", " mobile"]], "p": [[0.6602, 0.3118, 0.0073, 0.0057, 0.0047, 0.0033, 0.0019, 0.0009], [0.0951, 0.0309, 0.0187, 0.0094, 0.0094, 0.0078, 0.0042, 0.0037], [0.2323, 0.205, 0.1597, 0.1244, 0.0969, 0.0552, 0.0096, 0.0066], [0.0073, 0.0064, 0.0053, 0.0053, 0.0047, 0.0047, 0.0039, 0.003], [0.0047, 0.0039, 0.0035, 0.0032, 0.0029, 0.0029, 0.0022, 0.0021], [0.004, 0.0023, 0.0022, 0.0019, 0.0019, 0.0018, 0.0016, 0.0015], [0.5381, 0.1201, 0.0252, 0.0162, 0.0162, 0.0112, 0.005, 0.005], [0.1586, 0.0749, 0.0427, 0.0189, 0.0084, 0.0062, 0.0058, 0.0042], [0.0481, 0.0481, 0.0424, 0.031, 0.02, 0.0188, 0.0147, 0.0138], [0.011, 0.0046, 0.0038, 0.0033, 0.0025, 0.0023, 0.0014, 0.0014], [0.052, 0.0096, 0.0096, 0.008, 0.0048, 0.0048, 0.0048, 0.0045], [0.0051, 0.0039, 0.0033, 0.0025, 0.0024, 0.0024, 0.002, 0.0017], [0.0054, 0.0045, 0.0027, 0.0025, 0.0025, 0.0024, 0.0024, 0.0022], [0.006, 0.0044, 0.0036, 0.0032, 0.0025, 0.0025, 0.0022, 0.0021], [0.0146, 0.0051, 0.0033, 0.0031, 0.0029, 0.0029, 0.0027, 0.0025], [0.008, 0.0046, 0.0043, 0.004, 0.0038, 0.0036, 0.003, 0.003], [0.0085, 0.0066, 0.0066, 0.0035, 0.0029, 0.0028, 0.0024, 0.0023], [0.0059, 0.0043, 0.0033, 0.0028, 0.0026, 0.0022, 0.002, 0.0018], [0.0044, 0.0029, 0.0021, 0.0018, 0.0017, 0.0016, 0.0014, 0.0014], [0.0067, 0.0046, 0.0038, 0.0032, 0.003, 0.0028, 0.0022, 0.0021], [0.0075, 0.0035, 0.0028, 0.0021, 0.002, 0.002, 0.002, 0.0016], [0.0139, 0.0019, 0.0017, 0.0017, 0.0016, 0.0014, 0.0013, 0.0011], [0.0056, 0.0032, 0.0028, 0.0028, 0.0022, 0.0021, 0.0019, 0.0015], [0.0107, 0.0078, 0.0045, 0.0029, 0.0027, 0.0021, 0.002, 0.0019], [0.0102, 0.0085, 0.0085, 0.0085, 0.0062, 0.0045, 0.0045, 0.0035], [0.0154, 0.0128, 0.0088, 0.006, 0.0044, 0.0041, 0.0041, 0.0041], [0.012, 0.0082, 0.0068, 0.0064, 0.0032, 0.003, 0.0028, 0.0027], [0.0164, 0.0136, 0.0136, 0.0136, 0.0106, 0.0088, 0.0088, 0.0068], [0.0124, 0.0116, 0.009, 0.0062, 0.0055, 0.0052, 0.0052, 0.0048], [0.0394, 0.0145, 0.0136, 0.0128, 0.0094, 0.0088, 0.0078, 0.0064], [0.0161, 0.0117, 0.0097, 0.0091, 0.0091, 0.0076, 0.0071, 0.0071], [0.0316, 0.0149, 0.014, 0.014, 0.0116, 0.009, 0.009, 0.009], [0.0275, 0.013, 0.0115, 0.0101, 0.0084, 0.0079, 0.0069, 0.0069], [0.0313, 0.026, 0.0215, 0.0123, 0.009, 0.0084, 0.0074, 0.0066], [0.0341, 0.0283, 0.0207, 0.0098, 0.0081, 0.0076, 0.0076, 0.0072], [0.1064, 0.0345, 0.0223, 0.0163, 0.0163, 0.0144, 0.0112, 0.0112], [0.3081, 0.0732, 0.0287, 0.0163, 0.0112, 0.0112, 0.0099, 0.0099], [0.3609, 0.0405, 0.0278, 0.0191, 0.018, 0.0096, 0.009, 0.0085], [0.2855, 0.0818, 0.0496, 0.0234, 0.0142, 0.0125, 0.0118, 0.0104], [0.3022, 0.1833, 0.0463, 0.0339, 0.0233, 0.0182, 0.0103, 0.0091], [0.2369, 0.209, 0.0987, 0.0387, 0.0301, 0.0151, 0.0134, 0.0118], [0.2591, 0.1572, 0.0841, 0.0742, 0.051, 0.02, 0.0137, 0.0129], [0.172, 0.134, 0.0717, 0.0525, 0.0493, 0.0361, 0.0205, 0.016], [0.2898, 0.1066, 0.0536, 0.0504, 0.0444, 0.0305, 0.0185, 0.0136], [0.1822, 0.1419, 0.0975, 0.0382, 0.0359, 0.0218, 0.0192, 0.017], [0.1671, 0.1474, 0.0615, 0.0397, 0.0309, 0.0256, 0.0187, 0.0176], [0.1667, 0.1472, 0.0372, 0.035, 0.0308, 0.0212, 0.0165, 0.0165], [0.2283, 0.1385, 0.0577, 0.0256, 0.0241, 0.0212, 0.02, 0.0187], [0.1856, 0.1276, 0.0469, 0.0469, 0.0323, 0.0251, 0.0196, 0.0184], [0.159, 0.1164, 0.0378, 0.0244, 0.0229, 0.0157, 0.0148, 0.0148], [0.0513, 0.0482, 0.0331, 0.0227, 0.0201, 0.0166, 0.0147, 0.0138], [0.0751, 0.0516, 0.0516, 0.0276, 0.0276, 0.0244, 0.0244, 0.0229], [0.1573, 0.0954, 0.0842, 0.0656, 0.0579, 0.0351, 0.0291, 0.0241], [0.2444, 0.1482, 0.0793, 0.0425, 0.0425, 0.0375, 0.0331, 0.0311], [0.1758, 0.1758, 0.0941, 0.0941, 0.0733, 0.0444, 0.0305, 0.027], [0.2092, 0.1269, 0.1269, 0.0988, 0.0529, 0.0321, 0.0283, 0.0283], [0.5537, 0.0849, 0.0584, 0.0454, 0.0312, 0.0312, 0.0243, 0.0167], [0.4417, 0.344, 0.0466, 0.032, 0.0194, 0.0151, 0.0151, 0.0118], [0.3921, 0.3461, 0.0468, 0.0195, 0.0195, 0.0195, 0.0172, 0.0152], [0.4279, 0.229, 0.0451, 0.0398, 0.031, 0.0241, 0.0213, 0.0121], [0.348, 0.145, 0.088, 0.0776, 0.0605, 0.0367, 0.0367, 0.0144], [0.1912, 0.1314, 0.116, 0.0749, 0.0661, 0.0427, 0.0332, 0.0312], [0.1367, 0.1133, 0.1133, 0.0882, 0.0535, 0.0535, 0.0286, 0.0269]], "ranks": {"Rust": [75215, 131860, 108088, 118172, 41726, 81809, 114147, 103787, 117452, 87223, 45969, 91107, 49145, 33969, 31957, 24542, 16250, 36824, 53928, 33693, 43117, 80811, 45928, 22379, 16531, 20380, 8963, 5944, 4689, 5304, 5776, 6081, 5465, 5453, 4610, 4810, 3567, 3584, 3860, 4179, 3704, 4179, 5224, 6015, 4577, 4558, 3776, 4267, 3383, 4618, 7758, 12787, 12105, 6712, 5309, 8049, 4090, 3305, 3005, 1801, 1080, 1061, 620]}}, {"pos": 460, "top": [[".", ",", " \u2013", "\u2013", ";", " ", "\u00a0", ":"], [" \u2013", ".", ",", "\u2013", ";", " ", "\u2013and", "  "], [".", ",", "\u2013", " \u2013", ";", "\u2026", "\u2026.", "\u2026.."], [" milfs", "----------</", "-------------</", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", "TRGL", " Blowjob", " ;;^"], [".", " \u201c.", " \u201c", " ", ".@", "\u00a0\u00a0", " CIF", " \"@"], [" \u200b\u200b", " \u201c.", ".", "\u00a0\u00a0", "=\u201d", "!\u201d.", ".cast", " **\u201c"], ["  \n", "   \n", ".\u2019", ".\u201d", " \u201d", " \u2019", "  \n\n", "\u2019."], ["   \n", "  \n", "  ", ".", "  \r\n", "   \r\n", ":.", "       \n"], [".", ",", ":.", "!.", "  \n", ",.", ".\u201d", ":"], [",", "\u2013", " \u00ad", "\u00ad", ".", "\u00ading", "\u2013and", ";"], [",", ".", " ", "-", "\u00a0", ";", "\u2013", ",."], [" potentially", " albeit", " pricey", " arguably", " showcase", " savvy", "\u907a\u7523", "er"], [" impactful", " potentially", "\u88f3", "\u5e7f\u5927\u515a\u5458\u5e72\u90e8", " showcased", "\u4ea6\u6216\u662f", " showcase", " savvy"], [" showcased", " impactful", " showcase", " savvy", "-esque", " pricey", " entirety", " arguably"], [" savvy", " pricey", " arguably", " showcased", " akin", " albeit", " showcase", " touted"], [" savvy", " showcased", " arguably", " pricey", " impactful", " showcase", " touted", " akin"], [" savvy", " potentially", " myriad", " incredibly", " arguably", " entirety", " impactful", " bigger"], [" savvy", " bigger", " smarter", " pricey", " biggest", " big", " gritty", " entirety"], [" savvy", " incredibly", " bigger", " big", " arguably", "-esque", " myriad", " global"], [" myriad", " incredibly", " truly", " arguably", " hugely", " ultimately", " bigger", " big"], [" myriad", " ultimately", " much", " truly", " arguably", " hugely", " even", " just"], [" ;;^", "\u751a\u81f3\u4f1a", "\u4e3a\u5168\u7403", "\u4e2d\u56fd\u5e02\u573a", "\u66f4\u7f8e\u597d", " smarter", " harder", "\u5e7f\u5927\u515a\u5458\u5e72\u90e8"], [" ;;^", " harder", " incredibly", " truly", " arguably", " smarter", "\u4e3a\u5168\u7403", " myriad"], [" much", " ultimately", " truly", " even", " arguably", " myriad", " just", " uniquely"], [" arguably", " myriad", " harder", " truly", " ultimately", " much", " hugely", " vastly"], [" harder", " smarter", " arguably", " tech", " ;;^", " incredibly", " bigger", " worse"], [" harder", " arguably", " ultimately", " industry", " ``", " hardware", " myriad", " worse"], [" much", " ultimately", " ,", " arguably", " --", " '", " myriad", " even"], [" ultimately", " much", " myriad", " arguably", " harder", " heavily", " global", " best"], [" harder", " global", " much", " modern", " future", " beyond", " best", " hard"], [" ,", " much", " global", " even", " hard", " more", " future", " far"], [" much", " more", " far", " even", " ,", " hard", " only", " long"], [" only", " hard", " much", " far", " critical", " more", " even", " rather"], [" worst", " hardest", " harder", " fastest", " global", " cheap", " critical", " hard"], [" hardest", " worst", " global", " hardware", " fastest", " cheap", " incredibly", " weakest"], [" \u201c", " hardware", " fastest", " worst", " hardest", " incredibly", " cheap", " notoriously"], [" cheap", " hardware", " worst", " hardest", " incredibly", " fastest", " notoriously", " harder"], [" cheap", " hardware", " worst", " notoriously", " \u201c", " incredibly", " poorly", " cheaper"], [" hardware", " worst", " cheap", " hardest", " bottleneck", " fastest", " weakest", " cheapest"], [" hardware", " worst", " fastest", " cheap", " hardest", " weakest", " cheapest", " bottleneck"], [" hardware", " worst", " fastest", " weakest", " hardest", " Hardware", " bottleneck", " cheap"], [" hardware", " worst", " Hardware", " hardest", " bottleneck", " poorest", " weakest", " fastest"], [" hardware", " worst", " poorest", " bottleneck", " weakest", " Hardware", " hardest", " lowest"], [" hardware", " worst", " weakest", " poorest", " lowest", " bottleneck", " hardest", " Worst"], [" worst", " hardware", " weakest", " poorest", " bottleneck", " lowest", " hardest", " cheapest"], [" worst", " weakest", " poorest", " lowest", " Worst", " hardest", " hardware", " cheapest"], [" weakest", " worst", " poorest", " lowest", " Worst", " hardest", " cheapest", " smallest"], [" weakest", " worst", " poorest", " lowest", " cheapest", " hardest", " Worst", " smallest"], [" weakest", " worst", " poorest", " lowest", " cheapest", " hardest", " Worst", " smallest"], [" weakest", " poorest", " lowest", " worst", "\u6700\u5dee", " cheapest", "lowest", " Worst"], [" weakest", "\u6700\u5dee", " poorest", " lowest", " worst", " cheapest", "\u6700\u96be", "lowest"], [" weakest", " poorest", "\u6700\u5dee", " worst", " lowest", " cheapest", " Worst", "\u6700\u96be"], [" weakest", " bottleneck", " poorest", " worst", "\u6700\u5dee", " lowest", " cheapest", " Worst"], [" weakest", " lowest", " bottleneck", " worst", " cheapest", " poorest", "lowest", "\u6700\u5dee"], [" lowest", " weakest", "lowest", " Lowest", " Least", " least", "\u6700\u4f4e", "Least"], [" lowest", " weakest", "lowest", " worst", " least", " Least", " Lowest", "Least"], [" lowest", " weakest", "lowest", " Least", " worst", " least", "\u6700\u4f4e", "Least"], [" lowest", " weakest", "lowest", " worst", " Lowest", "\u6700\u4f4e", " poorest", " bottleneck"], [" weakest", " lowest", "lowest", " worst", " Lowest", " poorest", " Least", "\u6700\u5dee"], [" lowest", " weakest", "lowest", " Lowest", " worst", " Least", " bottleneck", " least"], [" lowest", " weakest", " worst", " bottleneck", " Least", " Lowest", "lowest", " least"], [" lowest", " weakest", " worst", " bottleneck", " least", " Least", " Lowest", "lowest"], [" lowest", " weakest", " bottleneck", " worst", " least", " tail", " GC", " CPU"]], "p": [[0.8305, 0.1635, 0.0026, 0.0012, 0.001, 0.0002, 0.0001, 0.0001], [0.3714, 0.2552, 0.1988, 0.1206, 0.0087, 0.0041, 0.0018, 0.0009], [0.6447, 0.2372, 0.077, 0.0364, 0.0012, 0.0009, 0.0008, 0.0004], [0.0121, 0.0083, 0.0083, 0.0047, 0.0042, 0.0032, 0.0032, 0.0032], [0.0185, 0.0174, 0.0127, 0.0099, 0.0072, 0.0072, 0.006, 0.0053], [0.0302, 0.0152, 0.0104, 0.0087, 0.0049, 0.0046, 0.003, 0.003], [0.3666, 0.0927, 0.0386, 0.0363, 0.0301, 0.0171, 0.0151, 0.0142], [0.1906, 0.0513, 0.0177, 0.0147, 0.0138, 0.0084, 0.0084, 0.0065], [0.8438, 0.0348, 0.0094, 0.0088, 0.0073, 0.0073, 0.0061, 0.0053], [0.3865, 0.011, 0.0097, 0.0052, 0.0046, 0.0031, 0.0026, 0.0024], [0.5812, 0.3111, 0.024, 0.0137, 0.0065, 0.0029, 0.0027, 0.0017], [0.0051, 0.0024, 0.0023, 0.0023, 0.0021, 0.0018, 0.0018, 0.0018], [0.0074, 0.0024, 0.0024, 0.0021, 0.0021, 0.0021, 0.002, 0.0016], [0.0152, 0.0134, 0.0087, 0.0081, 0.0072, 0.0044, 0.0038, 0.0025], [0.0154, 0.0088, 0.0083, 0.0064, 0.0047, 0.0047, 0.0044, 0.0042], [0.0092, 0.0059, 0.0059, 0.0059, 0.0052, 0.0049, 0.0043, 0.0038], [0.0154, 0.0106, 0.0073, 0.0073, 0.0073, 0.0068, 0.0068, 0.0053], [0.0132, 0.009, 0.0043, 0.004, 0.0033, 0.0029, 0.0026, 0.0024], [0.0043, 0.0033, 0.0029, 0.0023, 0.0023, 0.002, 0.0019, 0.0017], [0.0085, 0.008, 0.0066, 0.0058, 0.0051, 0.0048, 0.0043, 0.0029], [0.012, 0.0099, 0.0068, 0.0068, 0.0057, 0.0041, 0.0028, 0.0028], [0.0099, 0.0021, 0.0017, 0.0016, 0.0014, 0.0013, 0.0011, 0.001], [0.004, 0.004, 0.0033, 0.0031, 0.0031, 0.0024, 0.0024, 0.0024], [0.0175, 0.0154, 0.01, 0.01, 0.01, 0.0083, 0.0047, 0.0042], [0.0182, 0.0133, 0.0071, 0.0071, 0.0056, 0.0056, 0.0049, 0.0043], [0.0161, 0.0133, 0.0111, 0.0081, 0.0067, 0.0063, 0.0059, 0.0052], [0.0104, 0.0092, 0.0081, 0.0072, 0.0067, 0.0049, 0.0046, 0.0046], [0.0201, 0.0201, 0.0147, 0.0147, 0.013, 0.0115, 0.0074, 0.007], [0.0204, 0.0123, 0.0109, 0.0109, 0.008, 0.0066, 0.0062, 0.0058], [0.0159, 0.015, 0.015, 0.014, 0.0109, 0.0097, 0.0097, 0.0097], [0.0171, 0.0161, 0.0118, 0.0118, 0.0118, 0.011, 0.0104, 0.0097], [0.0221, 0.0195, 0.0134, 0.0126, 0.0118, 0.0104, 0.0104, 0.0104], [0.0135, 0.0119, 0.0112, 0.0112, 0.0087, 0.0087, 0.0082, 0.0077], [0.0203, 0.0179, 0.0158, 0.014, 0.014, 0.0116, 0.0096, 0.0085], [0.0304, 0.0285, 0.0209, 0.0196, 0.0196, 0.0173, 0.0135, 0.0119], [0.0648, 0.0505, 0.0393, 0.0393, 0.0369, 0.0238, 0.0198, 0.0186], [0.068, 0.0639, 0.0413, 0.0302, 0.0284, 0.025, 0.0235, 0.0152], [0.1313, 0.0903, 0.0353, 0.0147, 0.0138, 0.013, 0.0108, 0.0108], [0.1579, 0.09, 0.0581, 0.0242, 0.0242, 0.0201, 0.0166, 0.0166], [0.2517, 0.1526, 0.0677, 0.0386, 0.0341, 0.0265, 0.0234, 0.0194], [0.536, 0.1196, 0.0343, 0.0251, 0.0221, 0.0183, 0.0134, 0.0134], [0.7272, 0.0676, 0.022, 0.0161, 0.0125, 0.0125, 0.0125, 0.0067], [0.6352, 0.0759, 0.0279, 0.0262, 0.0217, 0.0192, 0.0159, 0.0085], [0.3974, 0.2127, 0.0691, 0.0326, 0.0306, 0.027, 0.0175, 0.0154], [0.3033, 0.1839, 0.0869, 0.0597, 0.034, 0.03, 0.0282, 0.0206], [0.425, 0.2275, 0.0739, 0.0652, 0.0349, 0.024, 0.0225, 0.0175], [0.3846, 0.3394, 0.0668, 0.0668, 0.0279, 0.0246, 0.0217, 0.007], [0.5123, 0.1885, 0.1009, 0.0786, 0.0328, 0.0225, 0.0175, 0.0073], [0.607, 0.1195, 0.1195, 0.064, 0.0302, 0.0208, 0.0162, 0.0036], [0.6993, 0.1072, 0.065, 0.0507, 0.0307, 0.0113, 0.0078, 0.0078], [0.7232, 0.0979, 0.0864, 0.0247, 0.0132, 0.0091, 0.008, 0.0071], [0.868, 0.0381, 0.0262, 0.0231, 0.0159, 0.0075, 0.0052, 0.0031], [0.7779, 0.0724, 0.0342, 0.0342, 0.0302, 0.0266, 0.0076, 0.0046], [0.5594, 0.2994, 0.0358, 0.0217, 0.0217, 0.0217, 0.0149, 0.007], [0.8367, 0.1132, 0.0324, 0.0044, 0.0027, 0.0027, 0.0024, 0.0018], [0.8078, 0.1404, 0.0215, 0.0079, 0.0048, 0.0042, 0.0029, 0.0018], [0.6585, 0.2745, 0.0225, 0.0094, 0.0083, 0.0065, 0.003, 0.003], [0.6483, 0.3063, 0.0251, 0.0082, 0.0021, 0.0018, 0.0016, 0.0013], [0.5198, 0.4587, 0.0095, 0.0051, 0.0013, 0.0009, 0.0008, 0.0007], [0.9341, 0.0527, 0.0063, 0.0023, 0.0016, 0.0005, 0.0005, 0.0005], [0.8913, 0.0829, 0.0047, 0.0036, 0.0036, 0.0032, 0.0028, 0.0025], [0.7377, 0.1865, 0.0223, 0.0197, 0.0082, 0.005, 0.0022, 0.0016], [0.6404, 0.2079, 0.0464, 0.0409, 0.0067, 0.0059, 0.0052, 0.0046]], "ranks": {"Rust": [31450, 56417, 48863, 99270, 6316, 19566, 60602, 31939, 61984, 37501, 9729, 14014, 9716, 7307, 10360, 10716, 8109, 20110, 20416, 28145, 42044, 63736, 28324, 14254, 9593, 10201, 6096, 6263, 6305, 6094, 7389, 7550, 7585, 6821, 8141, 6583, 3036, 2885, 2772, 3247, 2509, 2025, 3062, 3061, 2317, 2276, 1795, 1463, 920, 1535, 2990, 7446, 4437, 2606, 7741, 8434, 4519, 2710, 1231, 572, 335, 284, 129]}}, {"pos": 461, "top": [["\u2013", " \u2013", ",", ".", " ", "\u2013and", " \u2013,", ".\u2013"], ["\u2013", " \u2013", " \u2013,", " \u2013**", "\u2013and", " \uff5e", " \n \n", "\u2013\u2013"], ["\u2013", " \u2013", "\u2013and", " \u2013,", ".\u2013", ",", " \u2013**", "**\u2013"], ["\u4f46\u4e0d\u9650\u4e8e", " \uffe5\uffe5", "\uc3df", " /**<", "__',", ")(__", "__)", " \\\"{"], ["\u4f46\u4e0d\u9650\u4e8e", " **\u2018", " $$", "@$", "__.__", " @$", " \n \n", " \n\n\n\n\n"], [" **\u2018", " **\u2013", " \n \n", " \n\n\n\n\n", " \u200b\u200b", "__.__", "\u4f46\u4e0d\u9650\u4e8e", " **\u20ac"], [" **\u2018", "\u4f46\u4e0d\u9650\u4e8e", " ______", " \u2014\u2014", "__)", " \n \n", " \n\n", " __"], [" **\u2018", " \n \n", " \r\n \r\n", "\u4f46\u4e0d\u9650\u4e8e", " _$", " \n            \n", " __(", "__)"], [" \n \n", " \n            \n", " \n\n", " \n\n\n", " \r\n \r\n", " \n        \n", "__.__", "\u4f46\u4e0d\u9650\u4e8e"], [" \n \n", "\u4f46\u4e0d\u9650\u4e8e", " \n            \n", "\u2014\"", "@$", "-$", "@\",", " \r\n \r\n"], [" \n            \n", " \n \n", " \n\n", "\u4f46\u4e0d\u9650\u4e8e", "@$", "@\",", " \u2013,", " \n        \n"], [" **\u2018", "\u4f46\u4e0d\u9650\u4e8e", " **\u20ac", " _$", " **\u2013", " \n            \n", " **'", " \n        \n"], [" **\u2018", " **\u2013", " **\u20ac", "\u4f46\u4e0d\u9650\u4e8e", "__',", " **'", "__.__", " Liebl"], ["\u4f46\u4e0d\u9650\u4e8e", " **\u2018", " **\u2013", " **\u20ac", " lowest", "Highest", " Liebl", " \u2013**"], [" --", " lowest", "\u4f46\u4e0d\u9650\u4e8e", " **\u2018", "Highest", " \u2018", " entirety", " \u2013"], ["\u4f46\u4e0d\u9650\u4e8e", " --", " entirety", " lowest", " impactful", " \u2014", " potential", " standout"], [" lowest", " entirety", " \u2013", " impactful", " **\u2013", " **\u2018", " potential", " \u2018"], [" lowest", " **\u2013", " entirety", " **\u2018", " \u2013**", "\u4f46\u4e0d\u9650\u4e8e", " impactful", " cheapest"], [" **\u2018", " lowest", " Liebl", " **\u2013", " Lowest", " **\u20ac", "-than", " impactful"], [" lowest", " **\u2018", " --", "\u54ea\u6015\u662f", " Lowest", "Highest", " entirety", "lowest"], [" \n\n", " lowest", " \r\n\r\n", " Lowest", "Highest", " --", " \r\n \r\n", "lowest"], [" lowest", " Liebl", " cheapest", " **\u2018", "Highest", " Lowest", " impactful", " **\u20ac"], [" lowest", " Lowest", " --", " cheapest", " highest", " chance", "Highest", "lowest"], [" --", " \n\n", " lowest", " \r\n\r\n", " Lowest", " \r\n \r\n", " highest", "-than"], [" \n\n", " \r\n\r\n", "   \n\n", " \r\n \r\n", " \n\n\n", " \n  \n", " lowest", "     \n\n"], [" lowest", " \n\n", " cheapest", " \r\n\r\n", " Lowest", " \r\n \r\n", " \n  \n", "lowest"], [" lowest", " cheapest", " \n\n", " cheap", " Lowest", " --", " affordable", "\u6700\u4f4e\u7684"], [" \n\n", " lowest", " \r\n\r\n", " --", " cheapest", " cheap", " low", " Lowest"], [" lowest", " cheapest", " cheap", " low", " Lowest", " cost", " affordable", "lowest"], [" lowest", " cheapest", " cheap", " low", " Lowest", " affordable", " cost", " highest"], [" lowest", " low", " cheap", " cheapest", " **", " level", " cost", " highest"], [" lowest", " low", " cheap", " cheapest", " level", " cost", " high", " Low"], [" lowest", " low", " cheap", " cheapest", " Low", " Lowest", " level", " cost"], [" lowest", " cheapest", " cheap", " low", " Lowest", " cheaper", " weakest", " minimum"], [" lowest", " cheapest", "lowest", " Lowest", " cheap", "\u6700\u4f4e\u7684", " low", " weakest"], [" lowest", " cheapest", "lowest", " Lowest", " cheap", " low", "\u6700\u4f4e\u7684", " weakest"], [" lowest", " cheapest", " cheap", "lowest", " Lowest", " low", "\u6700\u4f4e\u7684", " minimum"], [" lowest", " cheapest", " Lowest", "lowest", " cheap", " low", " hardware", " minimum"], [" lowest", " Lowest", " cheapest", "lowest", "\u6700\u4f4e\u7684", "\u6700\u4f4e", " low", " minimum"], [" lowest", "lowest", " Lowest", " cheapest", "\u6700\u4f4e", "\u6700\u4f4e\u7684", " hardware", " low"], [" lowest", "lowest", " Lowest", " cheapest", "\u6700\u4f4e", "\u6700\u4f4e\u7684", " low", " hardware"], [" lowest", " Lowest", "lowest", " hardware", " cheapest", "\u6700\u4f4e\u7684", "\u6700\u4f4e", " low"], [" lowest", " Lowest", "lowest", " cheapest", " hardware", " poorest", "\u6700\u4f4e\u7684", "\u6700\u4f4e"], [" lowest", " Lowest", "lowest", " cheapest", "\u6700\u4f4e", "\u6700\u4f4e\u7684", " poorest", " weakest"], [" lowest", " Lowest", "lowest", " cheapest", "\u6700\u4f4e\u7684", "\u6700\u4f4e", " poorest", " hardware"], [" lowest", " Lowest", "lowest", " cheapest", "\u6700\u4f4e\u7684", " poorest", " weakest", "\u6700\u4f4e"], [" lowest", "lowest", " Lowest", " cheapest", " weakest", "\u6700\u4f4e\u7684", " poorest", "\u6700\u4f4e"], [" lowest", "lowest", " Lowest", " cheapest", " weakest", "\u6700\u4f4e\u7684", "\u6700\u4f4e", " poorest"], [" lowest", "lowest", " Lowest", " cheapest", "\u6700\u4f4e\u7684", "\u6700\u4f4e", " weakest", "akest"], [" lowest", "lowest", " Lowest", "\u6700\u4f4e\u7684", " cheapest", "akest", " weakest", "\u6700\u4f4e"], ["lowest", " lowest", " Lowest", "\u6700\u4f4e", "\u6700\u4f4e\u7684", "akest", "-low", " cheapest"], ["lowest", " lowest", " Lowest", "akest", "\u6700\u4f4e", "\u6700\u4f4e\u7684", "-low", " cheapest"], ["lowest", " lowest", " hardware", "\u6700\u4f4e", "\u6700\u4f4e\u7684", " Lowest", "-low", "akest"], ["lowest", " lowest", "\u6700\u4f4e", " Lowest", "\u6700\u4f4e\u7684", " hardware", " cheapest", "-tier"], [" lowest", "lowest", " Lowest", "\u6700\u4f4e", "-common", "Least", "\u6700\u4f4e\u7684", " common"], [" common", "-common", "common", " Common", "_common", ".common", "Common", " COMMON"], ["-common", " common", "common", " Common", "_common", "Common", ".common", " COMMON"], ["-common", " common", " Common", "common", "_common", "Common", " COMMON", ".common"], [" common", "-common", "common", " Common", "Common", "_common", " COMMON", ".common"], [" common", " denominator", "-common", " Common", " denomin", "common", "Common", "-den"], [" common", "-common", " Common", " denominator", "Common", "common", "_common", " COMMON"], [" common", " denominator", "-common", " Common", "Common", " denomin", "_common", "-den"], [" common", "-common", " denominator", " Common", " LCD", "Common", "-den", " denomination"]], "p": [[0.5034, 0.392, 0.0681, 0.0172, 0.0044, 0.0026, 0.0019, 0.0014], [0.2064, 0.1711, 0.151, 0.1105, 0.0433, 0.0359, 0.0218, 0.0097], [0.8551, 0.0482, 0.0258, 0.0228, 0.0201, 0.0089, 0.0033, 0.0027], [0.037, 0.0224, 0.0224, 0.0175, 0.0106, 0.0093, 0.0088, 0.0073], [0.0807, 0.0669, 0.0591, 0.0521, 0.0432, 0.0358, 0.0279, 0.0159], [0.0704, 0.0427, 0.0354, 0.0313, 0.0202, 0.0202, 0.0157, 0.013], [0.1279, 0.0568, 0.0501, 0.0366, 0.0323, 0.0209, 0.0196, 0.0153], [0.1277, 0.0567, 0.05, 0.0323, 0.0323, 0.0268, 0.0222, 0.0209], [0.1089, 0.0961, 0.0903, 0.0514, 0.0353, 0.0312, 0.0312, 0.0189], [0.0375, 0.0311, 0.0214, 0.0177, 0.0166, 0.0147, 0.013, 0.0084], [0.0586, 0.0486, 0.026, 0.0202, 0.019, 0.0139, 0.0123, 0.0123], [0.1155, 0.0311, 0.0242, 0.0227, 0.0214, 0.0147, 0.0107, 0.0069], [0.2249, 0.0534, 0.0416, 0.0286, 0.0185, 0.0144, 0.0093, 0.0082], [0.0742, 0.0578, 0.0273, 0.0129, 0.0129, 0.0078, 0.0069, 0.0069], [0.0187, 0.0155, 0.0155, 0.0121, 0.0083, 0.0078, 0.0078, 0.0073], [0.0291, 0.0227, 0.0147, 0.0114, 0.0101, 0.0101, 0.0042, 0.0035], [0.0241, 0.0176, 0.0146, 0.0107, 0.0107, 0.0083, 0.0083, 0.0078], [0.0297, 0.0169, 0.0116, 0.0096, 0.0075, 0.0059, 0.0055, 0.0052], [0.0259, 0.0259, 0.0228, 0.013, 0.0074, 0.0065, 0.0058, 0.0051], [0.0353, 0.0138, 0.0114, 0.0079, 0.0069, 0.0069, 0.0054, 0.0054], [0.0677, 0.041, 0.0171, 0.0151, 0.011, 0.0092, 0.0081, 0.0063], [0.0219, 0.0097, 0.0063, 0.0055, 0.0052, 0.0052, 0.0046, 0.0043], [0.0565, 0.0134, 0.0126, 0.0076, 0.0068, 0.0063, 0.0056, 0.0053], [0.0616, 0.0351, 0.0351, 0.0114, 0.0069, 0.0061, 0.0061, 0.0048], [0.7649, 0.1173, 0.0132, 0.0075, 0.0052, 0.0052, 0.0029, 0.0021], [0.1066, 0.0884, 0.0504, 0.0346, 0.0093, 0.0077, 0.0068, 0.0064], [0.1689, 0.0849, 0.013, 0.013, 0.0079, 0.0079, 0.007, 0.0065], [0.3221, 0.056, 0.0281, 0.0281, 0.0133, 0.0091, 0.0081, 0.0043], [0.18, 0.0549, 0.0276, 0.0202, 0.0157, 0.0074, 0.0074, 0.007], [0.2849, 0.0816, 0.0495, 0.0386, 0.0118, 0.0076, 0.0076, 0.0067], [0.1627, 0.0438, 0.0411, 0.032, 0.0142, 0.0142, 0.0081, 0.0071], [0.1064, 0.0645, 0.0325, 0.0163, 0.0153, 0.0093, 0.0093, 0.0093], [0.1379, 0.0786, 0.054, 0.0225, 0.01, 0.0088, 0.0088, 0.0083], [0.4828, 0.13, 0.0839, 0.0272, 0.0107, 0.0088, 0.0061, 0.0057], [0.8766, 0.0385, 0.0171, 0.0151, 0.0043, 0.0038, 0.0034, 0.0022], [0.859, 0.0485, 0.0202, 0.0167, 0.0066, 0.0042, 0.004, 0.0026], [0.8445, 0.0693, 0.0113, 0.0113, 0.01, 0.0069, 0.0042, 0.0025], [0.8468, 0.0613, 0.0176, 0.01, 0.0094, 0.0061, 0.0031, 0.0031], [0.9598, 0.0137, 0.0121, 0.0073, 0.0011, 0.001, 0.0009, 0.0006], [0.9396, 0.025, 0.0134, 0.0081, 0.0056, 0.0026, 0.0011, 0.001], [0.9661, 0.0138, 0.0122, 0.0021, 0.0019, 0.0016, 0.0005, 0.0004], [0.9484, 0.0174, 0.0174, 0.0064, 0.0034, 0.0016, 0.0014, 0.0011], [0.9464, 0.0252, 0.0153, 0.003, 0.0023, 0.0021, 0.0014, 0.0011], [0.9406, 0.0322, 0.0172, 0.0034, 0.0023, 0.0012, 0.0007, 0.0006], [0.9304, 0.0281, 0.0219, 0.0103, 0.002, 0.0016, 0.0014, 0.001], [0.9382, 0.0221, 0.0221, 0.0063, 0.0049, 0.0021, 0.0018, 0.0011], [0.8525, 0.0545, 0.0375, 0.0227, 0.0107, 0.0074, 0.0065, 0.0039], [0.7875, 0.0732, 0.0646, 0.0346, 0.0112, 0.0077, 0.0068, 0.0068], [0.6136, 0.1992, 0.0733, 0.0346, 0.0346, 0.0127, 0.0088, 0.0077], [0.4702, 0.3232, 0.0817, 0.0386, 0.0265, 0.0207, 0.0161, 0.0125], [0.4441, 0.2377, 0.1272, 0.0772, 0.0772, 0.0092, 0.0081, 0.0049], [0.4174, 0.174, 0.0822, 0.064, 0.0565, 0.0531, 0.0208, 0.0143], [0.2778, 0.2451, 0.1685, 0.0514, 0.0453, 0.0332, 0.0228, 0.0147], [0.4373, 0.3405, 0.0671, 0.0461, 0.0247, 0.0192, 0.0117, 0.008], [0.7087, 0.1581, 0.1231, 0.0079, 0.0007, 0.0006, 0.0002, 0.0002], [0.5045, 0.3929, 0.0323, 0.0222, 0.0152, 0.0105, 0.0105, 0.0056], [0.4944, 0.385, 0.0358, 0.0246, 0.0192, 0.0149, 0.0116, 0.0071], [0.5592, 0.2993, 0.0315, 0.0315, 0.0191, 0.0191, 0.0169, 0.0102], [0.5518, 0.3347, 0.0353, 0.0242, 0.0167, 0.0115, 0.0101, 0.0101], [0.5409, 0.2555, 0.1207, 0.0305, 0.0144, 0.0087, 0.0087, 0.0032], [0.8691, 0.063, 0.0433, 0.0109, 0.0059, 0.0031, 0.0019, 0.001], [0.7629, 0.1032, 0.0911, 0.0261, 0.004, 0.0021, 0.0019, 0.0017], [0.8228, 0.1114, 0.041, 0.0117, 0.0014, 0.0011, 0.001, 0.0009]], "ranks": {"Rust": [63334, 144550, 107263, 51305, 35353, 19840, 37970, 24454, 24788, 21069, 26126, 28440, 13188, 11785, 28947, 30325, 34756, 40131, 66848, 45552, 55713, 44896, 32391, 16194, 20012, 15751, 11356, 7188, 6446, 5413, 6277, 5775, 5439, 5738, 5069, 8307, 3805, 3864, 2554, 2906, 1591, 986, 1731, 1657, 1249, 1104, 1041, 683, 735, 1516, 4701, 12886, 12565, 12220, 29503, 31899, 49199, 42191, 14149, 17115, 18711, 15455, 6343]}}, {"pos": 462, "top": [[".", ",", " ", "er", ";", "\u00a0", "?", " \u2013"], ["er", "ality", "spot", "  \n\n", "sWith", "wealth", "  \n", "liness"], ["er", "\u2026", "\u2026..", " Whilst", "\u2013", "ised", "\u2026\u2026", "\u2026."], [" councill", "alisation", " Shemale", "wealth", " milfs", "atisation", "isations", " pornstar"], ["er", "ised", "ality", "ness", "isation", "isations", "Whilst", "st"], ["er", "ised", "ness", "isations", "ality", "  \n\n", "isation", "spot"], ["  \n\n", "\n\n", "ities", "er", "ness", "  \n", "ymous", " \n\n"], ["ities", "  \n\n", "aries", "\\common", "ymous", "wealth", "ality", " **\u00ab"], ["ities", "aries", "ality", "ness", "  \n\n", "ymous", "er", "wealth"], [",", "\\_", "\\-", " requisite", "ities", "ness", "ality", "  \n\n"], ["  \n\n", "\n\n", "<|endoftext|>", "er", " requisite", "\\_", " \\(", " \n\n"], ["ality", "ities", "  \n\n", "er", "aries", "ness", " shared", " common"], ["ality", "\u653e\u77e2", "ities", "ness", " commonplace", "aries", " common", " shared"], ["ality", " commonplace", "\u653e\u77e2", " common", " entirety", " akin", " requisite", " shared"], [" requisite", " commonplace", " common", " amongst", "\u5925", " truly", " Common", "ality"], [" requisite", " commonplace", " common", " myriad", " amongst", " \u00ad", " equally", " truly"], [" commonplace", " common", " requisite", " myriad", " amongst", " truly", " Common", " ubiquitous"], [" commonplace", " common", "\u653e\u77e2", " ubiquitous", " Common", " requisite", " choice", " point"], [" commonplace", " common", " requisite", "\u653e\u77e2", " mundane", " myriad", " clich", " ubiquitous"], [" commonplace", " requisite", " myriad", " amongst", " common", " mundane", " whatsoever", " whence"], [" commonplace", " requisite", " amongst", " myriad", " common", " whence", " disparate", " ubiquitous"], [" commonplace", "\u653e\u77e2", "\u4ea6\u7136", "\u3079\u304f", " common", " disparate", " clich", "ality"], [" commonplace", " common", " myriad", " requisite", " choice", " disparate", " ubiquitous", " mundane"], [" common", " commonplace", " choice", " amongst", " myriad", " point", " equally", " chance"], [" commonplace", " amongst", " \n\n", " requisite", " common", " myriad", " whatever", " choice"], [" commonplace", " thing", " common", " disparate", " chance", " myriad", " cheap", " amongst"], [" commonplace", " common", " disparate", " amongst", " myriad", " mundane", " cheap", " ubiquitous"], [" --", " amongst", " \n\n", " requisite", " myriad", " whatever", " arguably", " commonplace"], [" myriad", " cheap", " disparate", " commonplace", " common", " requisite", " whatever", " arguably"], [" cheap", " common", " whatever", " disparate", " myriad", " ubiquitous", " requisite", " --"], [" cheap", " whatever", " common", " global", " industry", " trade", " lowest", " ubiquitous"], [" cheap", " global", " industry", " common", " best", " trade", " low", " hard"], [" cheap", " global", " best", " critical", " lowest", " low", " power", " trade"], [" cheap", " lowest", " global", " worst", " best", " trade", " critical", " low"], [" lowest", " cheap", " arguably", " worst", " weakest", " global", " hardest", " best"], [" lowest", " cheap", " worst", " weakest", " global", " arguably", " \u2014", " \u2013"], [" lowest", " cheap", " worst", " weakest", " arguably", " mediocre", " hardware", " global"], [" lowest", " cheap", " hardware", " weakest", " mediocre", " disparate", " ubiquitous", " worst"], [" lowest", " cheap", " common", " weakest", " hardware", " worst", " mediocre", " cheapest"], [" lowest", " common", " cheap", " hardware", " weakest", " mediocre", " worst", " poorest"], [" lowest", " common", " hardware", " weakest", " universal", " minimum", "lowest", " shared"], [" lowest", " common", " hardware", " weakest", " poorest", "lowest", " worst", " Common"], [" lowest", " common", " hardware", " weakest", " poorest", " Common", " Lowest", " mediocre"], [" lowest", " hardware", " common", " weakest", " poorest", " Lowest", " worst", " Common"], [" lowest", " hardware", " common", " weakest", " poorest", " cheap", " mediocre", " cheapest"], [" lowest", " common", " weakest", " hardware", " poorest", " worst", " mediocre", " cheapest"], [" lowest", " weakest", " hardware", " common", " worst", " poorest", " mediocre", " cheapest"], [" hardware", " weakest", " lowest", " mediocre", " poorest", " worst", " common", " cheap"], [" hardware", " weakest", " mediocre", " lowest", "akest", " poorest", "lowest", "\u6700\u5dee"], [" hardware", " lowest", "akest", " weakest", " poorest", "lowest", " mediocre", " cheapest"], [" hardware", "lowest", " humanity", "/common", "\u6700\u4f4e\u7684", "\u786c\u4ef6", " mediocre", "akest"], [" hardware", "\u786c\u4ef6", "hardware", " humanity", "Hardware", " Hardware", " denominator", "/common"], [" hardware", "\u786c\u4ef6", "hardware", "Hardware", " Hardware", " denominator", "(Common", "ardware"], [" hardware", "\u786c\u4ef6", " denominator", "hardware", " Hardware", "Hardware", "(Common", "/common"], [" denominator", " common", "(Common", "/common", " COMMON", "-common", "(common", "common"], [" denominator", " denomin", " divisor", " hardware", " denom", " numerator", "\u786c\u4ef6", "-den"], [" denominator", " denomin", " divisor", " hardware", " numerator", " denom", "\u786c\u4ef6", " ancestor"], [" denominator", " divisor", " denomin", " hardware", "\u786c\u4ef6", " denom", " numerator", "ominator"], [" denominator", " divisor", " denomin", " hardware", "\u786c\u4ef6", " denom", " numerator", "ominator"], [" denominator", " Den", " denomin", "den", "-den", "_den", "Den", " denom"], [" denominator", " Den", " denomin", "-den", "_den", "Den", "den", ".den"], [" denominator", " Den", "-den", " denomin", "Den", "_den", "den", " den"], [" denominator", " denomin", "-den", " denom", " denomination", " hardware", " Den", " den"]], "p": [[0.6985, 0.1766, 0.0136, 0.0106, 0.0088, 0.0083, 0.0083, 0.0064], [0.0876, 0.0068, 0.0056, 0.0053, 0.0041, 0.0036, 0.003, 0.0023], [0.0886, 0.0782, 0.0474, 0.0326, 0.027, 0.0238, 0.0224, 0.0198], [0.0126, 0.0056, 0.0049, 0.0049, 0.0049, 0.0041, 0.0041, 0.0032], [0.2175, 0.0456, 0.0244, 0.0229, 0.019, 0.0168, 0.0108, 0.0102], [0.0308, 0.0212, 0.0199, 0.0146, 0.0146, 0.0113, 0.0113, 0.0083], [0.4574, 0.203, 0.0292, 0.013, 0.0069, 0.0042, 0.0037, 0.0031], [0.0931, 0.0601, 0.0208, 0.0162, 0.0134, 0.0098, 0.0098, 0.0092], [0.1475, 0.0742, 0.0479, 0.0479, 0.0373, 0.01, 0.0078, 0.0054], [0.1229, 0.0618, 0.0166, 0.0166, 0.0089, 0.0079, 0.0069, 0.0069], [0.1003, 0.0689, 0.0608, 0.0346, 0.0325, 0.027, 0.0136, 0.012], [0.0596, 0.0362, 0.011, 0.011, 0.0104, 0.0081, 0.0067, 0.0067], [0.0583, 0.0108, 0.0084, 0.0079, 0.0065, 0.0051, 0.0051, 0.0031], [0.0201, 0.0115, 0.007, 0.0065, 0.0054, 0.0042, 0.0042, 0.0042], [0.0229, 0.0202, 0.0123, 0.0074, 0.0045, 0.004, 0.004, 0.004], [0.0516, 0.0178, 0.0096, 0.0084, 0.0074, 0.0054, 0.0042, 0.0037], [0.0212, 0.0187, 0.0165, 0.0088, 0.005, 0.0042, 0.0042, 0.0039], [0.0221, 0.0152, 0.0041, 0.0038, 0.0034, 0.0025, 0.0023, 0.0023], [0.0305, 0.0099, 0.0087, 0.0053, 0.0044, 0.0044, 0.0036, 0.0034], [0.0298, 0.0193, 0.0091, 0.0055, 0.0052, 0.0043, 0.0043, 0.004], [0.0266, 0.0092, 0.0086, 0.0072, 0.0052, 0.003, 0.0026, 0.0026], [0.0075, 0.0049, 0.0036, 0.0022, 0.0019, 0.0015, 0.0015, 0.0014], [0.0236, 0.0077, 0.0044, 0.0041, 0.0034, 0.0034, 0.0034, 0.0028], [0.0156, 0.0146, 0.0107, 0.0051, 0.0048, 0.0033, 0.0029, 0.0024], [0.0251, 0.0143, 0.0119, 0.0105, 0.0105, 0.0098, 0.006, 0.0053], [0.0143, 0.0067, 0.0053, 0.0049, 0.0049, 0.0046, 0.0041, 0.0038], [0.013, 0.0089, 0.0048, 0.0045, 0.0045, 0.0042, 0.0037, 0.0033], [0.0348, 0.0271, 0.0255, 0.0145, 0.012, 0.0113, 0.0069, 0.0064], [0.0144, 0.0093, 0.0087, 0.0082, 0.0082, 0.0082, 0.0073, 0.0068], [0.0155, 0.0129, 0.0089, 0.0078, 0.0078, 0.0073, 0.0069, 0.0069], [0.0228, 0.0122, 0.0122, 0.0122, 0.0095, 0.0074, 0.0074, 0.0069], [0.0204, 0.0149, 0.0103, 0.0096, 0.0096, 0.0091, 0.008, 0.0071], [0.0148, 0.0148, 0.0116, 0.0116, 0.0102, 0.009, 0.0085, 0.0079], [0.0244, 0.0229, 0.0108, 0.009, 0.0066, 0.0062, 0.0058, 0.0054], [0.047, 0.0196, 0.0143, 0.0135, 0.0119, 0.0077, 0.0072, 0.005], [0.0487, 0.0278, 0.0179, 0.014, 0.0123, 0.0116, 0.0116, 0.0116], [0.0529, 0.0342, 0.0183, 0.0118, 0.0098, 0.0081, 0.0081, 0.0081], [0.0474, 0.0474, 0.0154, 0.0106, 0.0099, 0.0093, 0.0088, 0.0073], [0.1636, 0.0389, 0.0343, 0.0208, 0.0184, 0.0152, 0.0134, 0.0092], [0.3025, 0.0385, 0.0385, 0.0361, 0.0319, 0.0248, 0.011, 0.011], [0.5072, 0.1647, 0.0367, 0.0163, 0.0135, 0.0127, 0.0105, 0.0105], [0.3465, 0.1444, 0.1357, 0.0222, 0.0143, 0.0105, 0.0092, 0.0092], [0.2951, 0.1906, 0.123, 0.0242, 0.0177, 0.013, 0.0101, 0.0095], [0.3575, 0.1914, 0.1024, 0.0427, 0.0148, 0.0139, 0.013, 0.0095], [0.2297, 0.2027, 0.1483, 0.0375, 0.0214, 0.0189, 0.013, 0.0122], [0.4204, 0.0828, 0.0778, 0.0731, 0.0391, 0.0269, 0.0153, 0.0127], [0.3042, 0.135, 0.1051, 0.0412, 0.0387, 0.0341, 0.025, 0.0142], [0.2223, 0.119, 0.105, 0.0528, 0.0363, 0.032, 0.0207, 0.0142], [0.2274, 0.0786, 0.0738, 0.0694, 0.0349, 0.0308, 0.0155, 0.0113], [0.1411, 0.0856, 0.0588, 0.0552, 0.0552, 0.0519, 0.0404, 0.0168], [0.0676, 0.0362, 0.03, 0.0282, 0.0265, 0.0219, 0.0219, 0.0194], [0.6096, 0.1128, 0.0533, 0.0082, 0.0072, 0.0064, 0.0056, 0.005], [0.755, 0.1487, 0.0376, 0.0089, 0.0079, 0.0029, 0.0014, 0.0014], [0.6823, 0.1114, 0.0815, 0.0219, 0.0097, 0.0071, 0.0046, 0.002], [0.9797, 0.0045, 0.004, 0.0021, 0.0013, 0.0013, 0.001, 0.0009], [0.9989, 0.0009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9994, 0.0005, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.997, 0.0022, 0.0004, 0.0003, 0.0001, 0.0, 0.0, 0.0], [0.9983, 0.0013, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9148, 0.0455, 0.0168, 0.0062, 0.0062, 0.0048, 0.0048, 0.0004], [0.9892, 0.0067, 0.0019, 0.0009, 0.0004, 0.0004, 0.0003, 0.0001], [0.9926, 0.0046, 0.001, 0.0007, 0.0003, 0.0003, 0.0002, 0.0001], [0.9992, 0.0003, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0]], "ranks": {"Rust": [91499, 203723, 154927, 79263, 66703, 61486, 60825, 43084, 58340, 37861, 21162, 15255, 24659, 13129, 14024, 6557, 8260, 13087, 21222, 15000, 27673, 45460, 18297, 9186, 5630, 7273, 5022, 4953, 3665, 3532, 3819, 3383, 4548, 4383, 3839, 4892, 2639, 3602, 2126, 2371, 1185, 708, 1095, 1083, 938, 566, 842, 539, 557, 1195, 4870, 7504, 13569, 12651, 14943, 23112, 37951, 34987, 23350, 37847, 44394, 13350, 6707]}}, {"pos": 463, "top": [[" \u2013", ".", "\u2013", " ", ",", " .", " [\u2026]", "@\""], [" \u2013", " \u2013**", "\u2013\u2013", "@\"", "@@@@", " (\u201c", "@\",", " (@"], [" \u2013", "\u2013", ".", ",", " \u2013**", " \u2013,", " (\u201c", " (\u2026)"], [" Blowjob", " cumshot", " milfs", "IZER", " creampie", " Shemale", " knull", " \uffe5\uffe5"], [" (\u201c", " \u201c.", " \u201c", " (@", " @\"", " **\u201c", "ized", "@\""], [" \u201c.", " (\u201c", " \u201c", ".", " **\u201c", "=\u201d", " \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026", " \u201d"], [" (\u201c", " **\u201c", " .", " @\"", "@\"", " $(", " (\\", " __________________"], [" **\u201c", " \\\"$", " @\"", " $(", " ___", "@\"", " (\u201c", " [$"], [" **\u201c", " \u201c.", " \\\"$", " [$", " (\u201c", " .", " \\\"\"", "."], [",", ".", ";", ":", " .", " (\u201c", " (\\", "\u2014"], [" .", ".", ",", " in", " ", " (", " ,", " at"], [" .", " ", " unequiv", " ,", ".", " in", " \u201c", "ized"], [" .", " unequiv", " inherently", "ized", " ultimately", " ubiquitous", ".", " aforementioned"], [" .", " unequiv", " weapon", " undeniable", " reality", ".", " ubiquitous", " inherently"], [" .", " in", " ,", " ultimately", " exclusively", " whatsoever", " best", " as"], [" ultimately", " .", " arguably", " in", " ,", " ubiquitous", " \u2014", " exclusively"], [" in", " .", ",", " ultimately", " ,", " as", " \u2013", " even"], [" ultimately", " in", " even", " best", " for", " ubiquitous", " arguably", " whatsoever"], [" .", " ultimately", " ,", " even", " arguably", " whatsoever", " in", " ubiquitous"], [" ultimately", " ,", " even", " whatsoever", " --", " arguably", " .", " truly"], [" ,", " .", " ultimately", "<|endoftext|>", " --", " even", " \u2014", " :"], [" .", " ,", " ultimately", " :", " even", " whatsoever", " cheap", " technological"], [" ,", " .", " --", " :", " ultimately", " even", " that", " arguably"], [" ,", " .", " ultimately", " --", " :", " that", " even", " in"], [" ,", " --", " \u2014", " .", " \n\n", " ultimately", " :", " \u2013"], [" --", " __", " ,", " ___", " .", " ultimately", " :", " **"], [" --", " ,", " __", " ultimately", " :", " ___", " infrastructure", " ."], [" --", " ,", " __", " ___", " .", " ultimately", " :", " \u2014"], [" ,", " --", " ultimately", " arguably", " .", " cheap", " infrastructure", " \u2014"], [" --", " ,", " .", " \u2014", " cheap", " ultimately", " infrastructure", " for"], [" .", " ,", " for", " even", " --", " -", " in", " that"], [" .", " ,", " for", " even", " in", " ultimately", " -", " of"], [" .", " ,", " for", " even", " rather", " ultimately", " in", " that"], [" ,", " .", " even", " for", " rather", " (", " under", " ultimately"], [" ,", " (", " .", " rather", " \u2014", " arguably", " for", " yet"], [" ,", " (", " .", " \u2014", " \u2013", " for", " -", " \u201c"], [" ,", " .", " yet", " cheap", " (", " \u2014", " for", " rather"], [" \u201c", " cheap", " for", " ,", " (", " hardware", " rather", " yet"], [" hardware", " cheap", " technology", " for", " yet", " ,", " \u201c", " ("], [" hardware", " technology", " cheap", " low", " global", " worldwide", " globally", " for"], [" hardware", " technology", " cheap", " low", " for", " global", " technological", " worldwide"], [" hardware", " technology", " cheap", " low", " global", " worldwide", " globally", " technological"], [" hardware", " technology", " low", " cheap", " global", " worldwide", " globally", " extreme"], [" hardware", " technology", " low", " global", " worst", " cheap", " extreme", " weakest"], [" hardware", " technology", " cheap", " worst", " low", " global", " weakest", " worldwide"], [" hardware", " worst", " global", " weakest", " worldwide", " lowest", " low", " technology"], [" hardware", " worst", " weakest", " global", " worldwide", " cheap", " lowest", " hardest"], [" hardware", " global", " worldwide", " yet", " weakest", " worst", " while", " ("], [" hardware", " while", " (", " yet", " but", " global", " worldwide", " weakest"], [" hardware", " while", " weakest", " poorest", " worldwide", " yet", " worst", " lowest"], [" hardware", " while", " weakest", " (", " lowest", " (**", " poorest", "\u7528\u6700"], [" hardware", "\u786c\u4ef6", "hardware", " (", " Hardware", " while", "Hardware", " across"], [" hardware", "\u786c\u4ef6", "hardware", " Hardware", "Hardware", " (", " while", " CPUs"], [" hardware", "\u786c\u4ef6", "hardware", " Hardware", "Hardware", "ardware", " while", " CPUs"], [" hardware", "\u786c\u4ef6", "hardware", " Hardware", "Hardware", " CPU", "ardware", " processor"], [" hardware", "\u786c\u4ef6", "hardware", " Hardware", "Hardware", " CPU", " processor", " Android"], [" hardware", "\u786c\u4ef6", "hardware", " Hardware", "Hardware", " Android", " CPU", " GPU"], [" hardware", "\u786c\u4ef6", " Hardware", "hardware", "Hardware", " CPU", " GPU", " processor"], [" hardware", "\u786c\u4ef6", " Hardware", "hardware", " CPU", "Hardware", " GPU", " processor"], [" hardware", "\u786c\u4ef6", " Hardware", "hardware", "Hardware", ".hardware", "ardware", "\u786c\u9ad4"], [" hardware", " Hardware", "\u786c\u4ef6", "hardware", "Hardware", " mobile", " GPU", " CPU"], [" hardware", " of", " Hardware", "\u786c\u4ef6", "hardware", " mobile", "Hardware", " GPU"], [" hardware", " of", "\u2019s", " mobile", " GPU", " CPU", " Android", " device"]], "p": [[0.9673, 0.0147, 0.0021, 0.0015, 0.0009, 0.0004, 0.0004, 0.0004], [0.5214, 0.08, 0.0066, 0.0066, 0.0058, 0.0045, 0.004, 0.0037], [0.9413, 0.0195, 0.0053, 0.0046, 0.0022, 0.0018, 0.0018, 0.001], [0.0258, 0.0084, 0.0054, 0.0051, 0.0045, 0.0042, 0.0037, 0.0033], [0.1324, 0.0587, 0.0379, 0.0245, 0.0158, 0.009, 0.009, 0.0062], [0.2027, 0.168, 0.0512, 0.0375, 0.0189, 0.0084, 0.0079, 0.0079], [0.0482, 0.0453, 0.0426, 0.0258, 0.0177, 0.0157, 0.0157, 0.013], [0.0718, 0.0248, 0.0248, 0.0193, 0.017, 0.016, 0.0117, 0.0117], [0.0485, 0.026, 0.026, 0.0244, 0.0244, 0.0131, 0.0123, 0.0108], [0.5379, 0.2387, 0.0105, 0.0093, 0.0044, 0.0041, 0.0027, 0.0025], [0.32, 0.2341, 0.028, 0.0103, 0.0103, 0.0075, 0.0066, 0.0052], [0.2957, 0.0074, 0.007, 0.007, 0.0058, 0.0058, 0.0045, 0.0042], [0.0725, 0.0092, 0.0067, 0.0063, 0.0059, 0.0059, 0.0056, 0.0053], [0.0452, 0.0061, 0.0054, 0.0048, 0.0042, 0.0042, 0.0042, 0.0042], [0.0736, 0.012, 0.0088, 0.0083, 0.0078, 0.0069, 0.0069, 0.0064], [0.017, 0.017, 0.015, 0.0141, 0.0141, 0.0132, 0.011, 0.008], [0.0284, 0.0236, 0.0221, 0.0195, 0.0195, 0.0152, 0.0134, 0.0126], [0.0145, 0.0113, 0.0106, 0.0078, 0.0065, 0.0057, 0.0057, 0.005], [0.0251, 0.0221, 0.0126, 0.0105, 0.0098, 0.0081, 0.0068, 0.0053], [0.0349, 0.0226, 0.0187, 0.0176, 0.0176, 0.0155, 0.0121, 0.0083], [0.2025, 0.0481, 0.033, 0.0166, 0.0129, 0.0114, 0.0107, 0.0107], [0.0175, 0.0082, 0.0057, 0.0053, 0.0047, 0.0037, 0.0037, 0.003], [0.2113, 0.0502, 0.0472, 0.0286, 0.0269, 0.0099, 0.0093, 0.0087], [0.4887, 0.0704, 0.0243, 0.0229, 0.0115, 0.0095, 0.009, 0.009], [0.2924, 0.1298, 0.0576, 0.0349, 0.024, 0.0199, 0.0165, 0.0094], [0.0729, 0.0643, 0.0604, 0.0323, 0.0173, 0.0144, 0.0135, 0.0105], [0.1374, 0.1005, 0.0211, 0.0175, 0.0164, 0.0136, 0.0113, 0.0094], [0.2644, 0.2334, 0.0432, 0.0297, 0.0246, 0.018, 0.0109, 0.009], [0.0911, 0.0856, 0.0278, 0.0179, 0.0169, 0.0131, 0.0109, 0.0085], [0.095, 0.0788, 0.0272, 0.024, 0.0146, 0.0121, 0.0114, 0.0114], [0.2259, 0.137, 0.027, 0.0154, 0.0144, 0.0112, 0.0106, 0.0088], [0.1129, 0.0776, 0.0323, 0.0196, 0.0144, 0.0112, 0.0112, 0.0112], [0.1365, 0.1063, 0.0286, 0.0174, 0.0163, 0.0135, 0.0135, 0.0099], [0.0426, 0.0354, 0.0275, 0.0201, 0.0189, 0.0138, 0.0115, 0.0095], [0.0449, 0.0329, 0.029, 0.0187, 0.0146, 0.0137, 0.0137, 0.0129], [0.0638, 0.0638, 0.0599, 0.0599, 0.0387, 0.0207, 0.0172, 0.0142], [0.0405, 0.0261, 0.0217, 0.018, 0.0169, 0.0169, 0.0158, 0.0158], [0.0295, 0.0261, 0.023, 0.023, 0.023, 0.0179, 0.0158, 0.0139], [0.0323, 0.0303, 0.0153, 0.0153, 0.0135, 0.0135, 0.0135, 0.0126], [0.1258, 0.0524, 0.0493, 0.017, 0.0141, 0.0117, 0.011, 0.0097], [0.2449, 0.0846, 0.0311, 0.0177, 0.0147, 0.0122, 0.0115, 0.0108], [0.3715, 0.0687, 0.0237, 0.0197, 0.0144, 0.0135, 0.0105, 0.0105], [0.3019, 0.0525, 0.0264, 0.0193, 0.0181, 0.0125, 0.011, 0.0103], [0.2975, 0.0456, 0.0179, 0.0158, 0.0158, 0.0148, 0.0115, 0.0084], [0.2342, 0.0337, 0.0247, 0.0192, 0.0192, 0.0159, 0.0132, 0.011], [0.1375, 0.0475, 0.0348, 0.0307, 0.0288, 0.0271, 0.0239, 0.0175], [0.1601, 0.0589, 0.0488, 0.0405, 0.0245, 0.018, 0.0169, 0.014], [0.1213, 0.0573, 0.037, 0.0288, 0.0288, 0.0271, 0.0271, 0.0271], [0.179, 0.1682, 0.0958, 0.0701, 0.0214, 0.0189, 0.0189, 0.0166], [0.2271, 0.1661, 0.042, 0.0255, 0.0255, 0.0255, 0.0225, 0.0225], [0.3727, 0.0608, 0.0418, 0.0393, 0.021, 0.0164, 0.0164, 0.0136], [0.927, 0.0097, 0.0062, 0.0033, 0.0024, 0.0023, 0.0018, 0.0011], [0.9844, 0.0066, 0.004, 0.0019, 0.0013, 0.0002, 0.0001, 0.0001], [0.9894, 0.0052, 0.0028, 0.0012, 0.0009, 0.0001, 0.0, 0.0], [0.9931, 0.0041, 0.0013, 0.0009, 0.0005, 0.0001, 0.0, 0.0], [0.9936, 0.0041, 0.0009, 0.0009, 0.0004, 0.0, 0.0, 0.0], [0.992, 0.0052, 0.001, 0.0009, 0.0003, 0.0001, 0.0001, 0.0001], [0.9922, 0.0052, 0.0012, 0.0009, 0.0003, 0.0001, 0.0, 0.0], [0.9944, 0.0032, 0.001, 0.0007, 0.0003, 0.0002, 0.0001, 0.0], [0.9971, 0.0015, 0.0009, 0.0003, 0.0002, 0.0, 0.0, 0.0], [0.9974, 0.0009, 0.0009, 0.0004, 0.0002, 0.0, 0.0, 0.0], [0.9948, 0.0012, 0.0009, 0.0007, 0.0005, 0.0004, 0.0002, 0.0002], [0.8249, 0.1434, 0.0063, 0.0046, 0.0032, 0.002, 0.0013, 0.0013]], "ranks": {"Rust": [99868, 172463, 122860, 141197, 60282, 54233, 86764, 73950, 103628, 41319, 26467, 24313, 21265, 17152, 22211, 14974, 15310, 21960, 20108, 21129, 23447, 24251, 15652, 12051, 7688, 9354, 7377, 6431, 6453, 5965, 7173, 7044, 7393, 10505, 11114, 13627, 7706, 7347, 6506, 7143, 5934, 5313, 6027, 6512, 5475, 4661, 3633, 3562, 1556, 1087, 1133, 2050, 2550, 3445, 5020, 5872, 2016, 2071, 1149, 720, 1089, 495, 529]}}, {"pos": 464, "top": [[".", ",", "\u2013", " \u2013", "\u2026..", "\u2026.", ";", "\u00a0"], [" \u2013", "\u2013", "\u2013and", "\u2013\u2013", " \u2013,", "  ", " \u2013**", ".\u2013"], ["\u2013", " \u2013", "\u2013and", ".\u2013", "\u2026..", "\u2026", ".", ","], [" milfs", " Shemale", " Blowjob", " ;;^", "-------------</", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Guta", " Strec"], [":@", ".@", " (@", "//@", " @_", "@", ",@", " CIF"], ["\u2026..", ":@", ".\u2013", "\u82b7", " \u200b\u200b", "   \n", " Guta", "\u2013and"], ["   \n", "\u2014\u2014", "..\"", "  ", "\u2013\u2013", "-\"", " #\"", " :\""], [" #\"", " \u2013**", "**\u2013", "######", " *\u2013", " **\u2013", "   \n", " #@"], [" \u2013", "\u2013", ".\u2013", "\u2013and", ".", "..\"", "   \n", ",."], ["\u2013", ",", "\u2013and", " \u2013", "-$", "\u2013\u2013", "-,", "-\""], [" \u2013", "\u2013", "-", ",", " ", "--", "&", "\\_"], [" potentially", " societal", " impactful", " nuanced", " arguably", " --", " transformative", " myriad"], [" impactful", " societal", " **", " flavorful", " **\u201e", " savory", " **\u2013", " transformative"], [" societal", " impactful", " talent", " flavorful", " transformative", " savory", " infrastructure", " worldview"], [" --", " societal", " myriad", " fueled", " entirety", " flavorful", " weaponry", " talent"], [" entirety", " societal", " impactful", " demographics", " myriad", " arguably", " ;;^", " flavorful"], [" myriad", " entirety", " societal", " potentially", " folks", " incredibly", " --", " arguably"], [" myriad", " societal", " entirety", " weaponry", " sprawling", " gritty", " potentially", " mundane"], [" entirety", " myriad", " societal", "\u2013\u2013", "\u2014even", " weaponry", " arguably", " humanity"], [" myriad", " entirety", " --", " weaponry", " arguably", "\u2014even", " societal", "\u2013\u2013"], [" --", " myriad", " entirety", " arguably", " weaponry", "\u5145\u65a5\u7740", "\u2014even", " societal"], [" ;;^", " societal", "\u5750\u62e5", "\u54ea\u6015\u662f", " humanity", " entirety", " weaponry", " --"], [" --", " myriad", " societal", " entirety", " weaponry", " arguably", " humanity", " ;;^"], [" --", " myriad", " ,", " arguably", " ultimately", " weaponry", " potentially", " '"], [" --", " myriad", " arguably", " weaponry", " societal", " potentially", " entirety", " humanity"], [" --", " weaponry", " societal", " ;;^", " humanity", " infrastructure", " hardware", " arguably"], [" --", " weaponry", " societal", " infrastructure", " humanity", " hardware", " culture", " ;;^"], [" --", " ,", " arguably", " '", " myriad", " ultimately", " potentially", " weaponry"], [" --", " infrastructure", " humanity", " culture", " hardware", " weaponry", " technology", " arguably"], [" infrastructure", " technology", " culture", " --", " hardware", " humanity", " cheap", " industry"], [" .", " ,", " culture", " of", " technology", " -", " power", " --"], [" .", " ,", " of", " power", " -", " technology", " even", " modern"], [" power", " technology", " culture", " modern", " ,", " infrastructure", " massive", " quality"], [" technology", " culture", " infrastructure", " power", " technological", " modern", " hardware", " cheap"], [" technology", " hardware", " cheap", " culture", " infrastructure", " tech", " arguably", " technological"], [" technology", " hardware", " tech", " technological", " technologies", " cheap", " infrastructure", " digital"], [" hardware", " technology", " technological", " tech", " technologies", " cheap", " infrastructure", " modern"], [" hardware", " technology", " technological", " tech", " cheap", " infrastructure", " technologies", " digital"], [" hardware", " technology", " technological", " tech", " technologies", " software", " Hardware", " cheap"], [" hardware", " technology", " technological", " tech", " Hardware", " technologies", " software", " performance"], [" hardware", " technology", " Hardware", " technological", " tech", " technologies", "hardware", " performance"], [" hardware", " technology", " Hardware", "hardware", " technological", " technologies", " machines", " equipment"], [" hardware", " technology", " Hardware", " technologies", " technological", "hardware", " machines", " equipment"], [" hardware", " technology", " Hardware", " machines", " technologies", "hardware", " equipment", " technological"], [" hardware", " technology", " machines", " equipment", " Hardware", " technologies", " computers", "hardware"], [" hardware", " technology", " machines", " Hardware", " equipment", " technologies", "hardware", " technological"], [" hardware", " technology", " Hardware", " machines", " technologies", " equipment", "hardware", " software"], [" hardware", " technology", " machines", " equipment", " Hardware", " technologies", " engines", "hardware"], [" hardware", " technology", "hardware", " Hardware", " machines", " equipment", " technologies", " CPUs"], [" hardware", "hardware", " Hardware", " technology", " European", "\u786c\u4ef6", " machines", " weaponry"], [" hardware", "hardware", "\u786c\u4ef6", " Hardware", "Hardware", " technology", " weaponry", " machines"], [" hardware", "hardware", " Hardware", "\u786c\u4ef6", "Hardware", " Android", " smartphones", " CPUs"], [" hardware", "hardware", "\u786c\u4ef6", " Hardware", "Hardware", " Android", ".hardware", "ardware"], [" hardware", "hardware", "\u786c\u4ef6", " Hardware", "Hardware", " Android", "ardware", " smartphone"], [" hardware", "\u786c\u4ef6", " Hardware", "hardware", " Android", "Hardware", " smartphone", " GPU"], [" hardware", " Android", " Hardware", "\u786c\u4ef6", "hardware", " mobile", "Hardware", " smartphone"], [" hardware", " Android", " GPU", " mobile", " smartphone", "Android", " Hardware", "\u786c\u4ef6"], [" hardware", " Android", " GPU", " Hardware", "\u786c\u4ef6", "hardware", " mobile", "Hardware"], [" mobile", " Android", " hardware", " GPU", " smartphone", " Mobile", "mobile", "Android"], [" hardware", " mobile", " Android", " Hardware", "hardware", "\u786c\u4ef6", " GPU", "Hardware"], [" mobile", " Mobile", "mobile", " hardware", " Android", "/mobile", "-mobile", "Mobile"], [" mobile", " hardware", " Android", " Mobile", " ARM", "mobile", " smartphone", "-mobile"], [" mobile", " hardware", " Android", " ARM", " GPU", " smartphone", " silicon", " Mobile"]], "p": [[0.5835, 0.1894, 0.1302, 0.079, 0.0035, 0.0035, 0.0031, 0.0017], [0.8261, 0.0818, 0.0283, 0.0017, 0.0015, 0.0014, 0.0012, 0.001], [0.6684, 0.3157, 0.0074, 0.0035, 0.0017, 0.0007, 0.0005, 0.0005], [0.0168, 0.0055, 0.0048, 0.0045, 0.0045, 0.004, 0.0038, 0.0038], [0.1368, 0.0444, 0.0238, 0.0163, 0.012, 0.012, 0.0112, 0.0105], [0.021, 0.0077, 0.0053, 0.0044, 0.0044, 0.0039, 0.0036, 0.0036], [0.0353, 0.0084, 0.0084, 0.0079, 0.0074, 0.0074, 0.0065, 0.0058], [0.0522, 0.0433, 0.0159, 0.0097, 0.0066, 0.0066, 0.0066, 0.0062], [0.1091, 0.0705, 0.0455, 0.0313, 0.0276, 0.0259, 0.0178, 0.0139], [0.5742, 0.0937, 0.0324, 0.0286, 0.0153, 0.0105, 0.0087, 0.0087], [0.4731, 0.2533, 0.0992, 0.0183, 0.0126, 0.0067, 0.0053, 0.0049], [0.0065, 0.0065, 0.0057, 0.0045, 0.0045, 0.0042, 0.0039, 0.0037], [0.0223, 0.0163, 0.0093, 0.0093, 0.0072, 0.0056, 0.0053, 0.0053], [0.0112, 0.0087, 0.0068, 0.0068, 0.005, 0.0044, 0.0041, 0.0039], [0.0119, 0.0105, 0.0087, 0.0077, 0.0056, 0.0056, 0.0053, 0.0053], [0.0266, 0.0162, 0.0162, 0.0111, 0.0081, 0.0056, 0.0052, 0.0052], [0.1135, 0.0269, 0.0163, 0.0154, 0.0144, 0.0112, 0.0106, 0.0106], [0.0158, 0.0115, 0.0115, 0.0066, 0.0042, 0.004, 0.0031, 0.0029], [0.0219, 0.016, 0.0117, 0.0081, 0.0063, 0.0052, 0.0041, 0.0036], [0.0309, 0.0272, 0.0199, 0.0088, 0.0078, 0.0069, 0.005, 0.0047], [0.0446, 0.0239, 0.01, 0.0073, 0.0068, 0.0057, 0.0057, 0.0044], [0.0154, 0.0039, 0.0027, 0.0025, 0.0024, 0.0024, 0.0021, 0.0017], [0.0788, 0.0176, 0.0107, 0.0088, 0.0083, 0.0069, 0.0054, 0.005], [0.1509, 0.0279, 0.014, 0.0124, 0.0096, 0.0066, 0.0055, 0.0055], [0.2123, 0.0287, 0.0136, 0.012, 0.0073, 0.0047, 0.0041, 0.0041], [0.058, 0.0188, 0.0147, 0.0089, 0.0084, 0.0078, 0.0061, 0.0061], [0.0486, 0.0179, 0.0108, 0.009, 0.0079, 0.007, 0.0066, 0.0055], [0.2605, 0.0292, 0.0114, 0.0108, 0.0095, 0.0061, 0.0048, 0.0045], [0.02, 0.0176, 0.0137, 0.0129, 0.0129, 0.0114, 0.0114, 0.0094], [0.0323, 0.0285, 0.0267, 0.0236, 0.0162, 0.0152, 0.0143, 0.0119], [0.0704, 0.0455, 0.0259, 0.0243, 0.0215, 0.0167, 0.0157, 0.013], [0.0441, 0.0366, 0.0268, 0.0252, 0.0196, 0.0196, 0.0143, 0.0135], [0.0317, 0.0317, 0.015, 0.015, 0.0141, 0.0124, 0.0117, 0.0109], [0.0466, 0.0249, 0.022, 0.0182, 0.0171, 0.0161, 0.0151, 0.0142], [0.0493, 0.0409, 0.0233, 0.0182, 0.0171, 0.0171, 0.0151, 0.0141], [0.2716, 0.2716, 0.0472, 0.0417, 0.0174, 0.0144, 0.0127, 0.0105], [0.4239, 0.2269, 0.0476, 0.037, 0.0145, 0.0128, 0.0073, 0.0073], [0.5668, 0.1624, 0.03, 0.0282, 0.0151, 0.0086, 0.0086, 0.0067], [0.8258, 0.087, 0.0161, 0.0076, 0.0046, 0.0036, 0.0032, 0.0026], [0.9164, 0.0517, 0.007, 0.0037, 0.0029, 0.0027, 0.0013, 0.0008], [0.9656, 0.02, 0.0027, 0.0024, 0.0015, 0.0011, 0.0006, 0.0004], [0.9879, 0.0052, 0.0022, 0.0006, 0.0005, 0.0005, 0.0004, 0.0002], [0.9797, 0.0085, 0.0024, 0.001, 0.0009, 0.0007, 0.0007, 0.0004], [0.9803, 0.0085, 0.0024, 0.0011, 0.0009, 0.0007, 0.0006, 0.0004], [0.9712, 0.0122, 0.0027, 0.0015, 0.0013, 0.001, 0.0007, 0.0005], [0.9672, 0.0122, 0.0023, 0.0019, 0.0015, 0.0012, 0.0007, 0.0006], [0.9734, 0.0066, 0.0019, 0.0015, 0.0011, 0.0011, 0.0008, 0.0004], [0.9514, 0.0093, 0.0044, 0.0022, 0.0021, 0.0014, 0.001, 0.0009], [0.9667, 0.0042, 0.0029, 0.0027, 0.0026, 0.0015, 0.0007, 0.0006], [0.935, 0.0063, 0.0052, 0.0036, 0.0025, 0.0018, 0.0018, 0.0013], [0.9492, 0.0119, 0.0053, 0.005, 0.0018, 0.0016, 0.0013, 0.0013], [0.9678, 0.0122, 0.0051, 0.004, 0.0016, 0.0008, 0.0006, 0.0006], [0.985, 0.0066, 0.0031, 0.0028, 0.001, 0.0002, 0.0001, 0.0001], [0.9933, 0.0032, 0.0015, 0.0012, 0.0005, 0.0001, 0.0001, 0.0], [0.9934, 0.0017, 0.0017, 0.0017, 0.0006, 0.0004, 0.0001, 0.0001], [0.9771, 0.0158, 0.0024, 0.0019, 0.001, 0.0004, 0.0003, 0.0003], [0.6358, 0.3403, 0.0049, 0.0049, 0.0033, 0.0023, 0.0018, 0.0014], [0.9464, 0.0367, 0.0064, 0.0034, 0.0021, 0.0018, 0.0014, 0.0005], [0.4518, 0.3105, 0.2134, 0.005, 0.005, 0.0039, 0.003, 0.0024], [0.983, 0.0124, 0.0015, 0.0013, 0.0005, 0.0005, 0.0003, 0.0002], [0.9919, 0.0041, 0.0015, 0.0013, 0.0005, 0.0003, 0.0002, 0.0001], [0.9652, 0.0257, 0.0031, 0.0027, 0.0011, 0.0008, 0.0003, 0.0003], [0.8158, 0.1251, 0.0246, 0.0169, 0.008, 0.0026, 0.0012, 0.0012]], "ranks": {"Rust": [41467, 124578, 88540, 96344, 34756, 64580, 65816, 69712, 42106, 36946, 36498, 45578, 30853, 18533, 34144, 25621, 11477, 25762, 45077, 42101, 55172, 63692, 32499, 10831, 7141, 10858, 8009, 5738, 4782, 4579, 5875, 5575, 6104, 6713, 5174, 5605, 3641, 4028, 4048, 4506, 3911, 3920, 5271, 6343, 7090, 5909, 4730, 3937, 4232, 4484, 5174, 7223, 4787, 1705, 1297, 1204, 352, 278, 145, 47, 83, 38, 10]}}, {"pos": 465, "top": [[".", ",", "er", "y", "o", ";", "\u00ad", "\u00a0"], ["\u00ad", "er", "\u2011", " \u00ad", ",", ".", " \u200b", "\u200b"], [",", ".", "\u2013", "\u2011", "er", "\u200b", ";", "\u00ad"], [" Geile", " milfs", "erot", "ebrit", "erop", "\u53ef\u68a6", "eriale", " Shemale"], ["er", "\u2011", "\u00ad", "s", " PC", " \u00ad", "erop", "erot"], ["er", "casino", " Geile", "esktop", "tv", "\u5e38\u59d4", " Vodafone", "sink"], ["  \n", "  \n\n", "  \n\n\n", "casino", "er", "\u5e38\u59d4", "s", "cars"], ["eric", "casino", " VM", "-Mobile", "\u5e38\u59d4", "er", "/mobile", "erop"], [" \u00ad", "  \n\n", "  \n\n\n", "\u00ad", "\u00adi", "eric", "er", "/mobile"], [" \u00ad", "\u00ad", "\u00ads", "\u00adtion", "\u00adi", "\u00adt", "\u6e21\u5047", "\u00ading"], [" \u00ad", "\u00ad", "\u00ads", " \u200b", "er", "-friendly", "-esque", "&nbsp"], ["\u6e21\u5047", " smartphone", "-centric", "\u7ad9\u5730\u94c1\u7ad9", "-friendly", " phones", "-esque", "\u7279\u5340"], [" smartphone", "-centric", "-esque", "-friendly", "\u7ad9\u5730\u94c1\u7ad9", " showcase", " robotic", " smartphones"], ["-esque", "-centric", " smartphone", " robotics", " media", " robotic", " showcase", " blockbuster"], ["-esque", " showcase", " savvy", " media", " blockbuster", " lifestyle", " platforms", " tech"], ["-esque", " savvy", " showcase", "\u6e21\u5047", " tech", " messaging", "-centric", " blockbuster"], ["-esque", " savvy", " showcase", " tech", "-centric", " apps", " media", " blockbuster"], ["-esque", " smartphone", " apps", " phones", " tech", " blockbuster", " savvy", " showcase"], ["-esque", " apps", " tech", " smartphone", " media", "-centric", " internet", " savvy"], ["-esque", " apps", " blockbuster", " internet", " media", " MMO", " tech", " TV"], ["-esque", " TV", " apps", " media", " internet", "  \n\n", " tech", " MMO"], [" MEDIAM", " smartphone", "tainment", " apps", " ;;^", "nheim", " MOB", "_media"], [" apps", " media", " smartphone", " TV", " MOB", " MMO", " Android", " iOS"], [" media", " apps", " TV", " mobile", " games", " technologies", " ventures", " careers"], [" MEDIAM", " apps", "\u6e21\u5047", " smartphone", "tainment", "-esque", " handset", ".Mobile"], [" smartphone", " apps", " smartphones", " iOS", " handset", " Smartphone", " Android", " phones"], [" smartphone", " apps", " handset", " smartphones", " iOS", " Android", " technologies", " phones"], [" smartphone", " apps", " tech", " technologies", " mobile", " handset", "\u6e21\u5047", "/mobile"], [" smartphone", " tech", " technologies", " smartphones", " mobile", " apps", " iOS", " Android"], [" smartphone", " smartphones", " tech", " apps", " technologies", " technology", " mobile", " iOS"], [" smartphone", " technology", " tech", " technologies", " smartphones", " apps", " mobile", " phones"], [" technology", " tech", " technologies", " smartphone", " mobile", " media", " apps", " global"], [" technology", " tech", " technologies", " media", " smartphone", " mobile", " global", " hardware"], [" tech", " technology", " technologies", " smartphone", " mobile", " hardware", " media", " infrastructure"], [" tech", " smartphone", " technology", " mobile", " technologies", " hardware", " smartphones", " apps"], [" tech", " technology", " hardware", " technologies", " smartphone", " mobile", " smartphones", " apps"], [" hardware", " tech", " technology", " smartphone", " technologies", " smartphones", " Android", " mobile"], [" hardware", " smartphone", " tech", " Android", " technology", " smartphones", " iOS", " mobile"], [" hardware", " tech", " smartphone", " Android", " technology", " iOS", " smartphones", " technologies"], [" hardware", " smartphone", " technology", " tech", " technologies", " smartphones", " Android", "hardware"], [" hardware", " technology", " smartphone", " tech", " technologies", " smartphones", " Android", " iPhone"], [" hardware", " technology", " smartphone", " Android", " technologies", " tech", " smartphones", "hardware"], [" hardware", " technology", " technologies", " smartphone", " Android", " smartphones", " tech", " phones"], [" hardware", " technology", " technologies", " smartphone", " Android", " smartphones", " electronics", " engines"], [" hardware", " technology", " technologies", " smartphone", " smartphones", " Android", " engines", " phones"], [" hardware", " technology", " smartphone", " technologies", " smartphones", " phones", " engines", " electronics"], [" hardware", " technology", " technologies", " tech", " smartphone", " smartphones", " phones", " engines"], [" hardware", " technology", " technologies", " tech", " engines", " phones", " smartphones", " smartphone"], [" hardware", " smartphones", " phones", " smartphone", " engines", " Android", " technology", " tech"], [" hardware", " smartphones", " phones", " smartphone", " engines", "hardware", " technologies", " technology"], [" hardware", " smartphones", "hardware", "\u786c\u4ef6", " smartphone", " phones", " CPUs", " chipset"], [" hardware", "hardware", "\u786c\u4ef6", " CPUs", "Hardware", " Hardware", " chipset", " GPUs"], [" hardware", "hardware", "\u786c\u4ef6", "Hardware", " Hardware", " CPUs", "ardware", " CPU"], [" hardware", "hardware", "\u786c\u4ef6", " Hardware", "Hardware", " CPUs", " processors", " CPU"], [" hardware", "hardware", " CPU", "\u786c\u4ef6", " CPUs", " Hardware", " processors", " GPU"], [" hardware", " GPU", "\u786c\u4ef6", "hardware", " CPU", " GPUs", " Hardware", " CPUs"], [" hardware", " GPU", " GPUs", "hardware", "\u786c\u4ef6", " Hardware", "GPU", " CPU"], [" hardware", " GPU", " GPUs", "GPU", " CPU", "hardware", "\u786c\u4ef6", " Hardware"], [" GPU", " hardware", " GPUs", "GPU", " CPU", " gpu", " CPUs", "gpu"], [" hardware", " GPU", "hardware", "\u786c\u4ef6", " Hardware", " GPUs", "Hardware", "GPU"], [" hardware", " GPU", " GPUs", " CPU", " silicon", "GPU", "hardware", " CPUs"], [" hardware", " GPU", " GPUs", " silicon", " CPU", " CPUs", " Silicon", "hardware"], [" hardware", " GPU", " GPUs", " silicon", " CPU", " CPUs", " Silicon", " ARM"]], "p": [[0.5087, 0.2723, 0.1286, 0.0112, 0.0106, 0.0088, 0.0068, 0.005], [0.4603, 0.2315, 0.1494, 0.0168, 0.0131, 0.0115, 0.0102, 0.009], [0.3456, 0.305, 0.0771, 0.0681, 0.0498, 0.0221, 0.0195, 0.0162], [0.0229, 0.0062, 0.0045, 0.0042, 0.0033, 0.0024, 0.0023, 0.0021], [0.539, 0.0105, 0.0064, 0.0053, 0.0027, 0.0021, 0.0019, 0.0018], [0.0143, 0.0046, 0.0039, 0.0039, 0.0032, 0.0028, 0.0028, 0.0022], [0.0157, 0.0108, 0.0089, 0.0079, 0.0074, 0.0065, 0.0061, 0.0048], [0.0061, 0.0044, 0.0042, 0.0042, 0.0042, 0.0035, 0.0033, 0.0033], [0.0204, 0.0159, 0.0103, 0.0066, 0.0062, 0.0062, 0.0055, 0.0052], [0.0398, 0.0121, 0.0107, 0.0042, 0.0033, 0.0031, 0.002, 0.002], [0.0896, 0.0176, 0.0094, 0.0065, 0.0051, 0.0042, 0.0027, 0.0025], [0.005, 0.0034, 0.0024, 0.0021, 0.002, 0.002, 0.002, 0.0017], [0.0053, 0.0041, 0.003, 0.0025, 0.0025, 0.0022, 0.0019, 0.0019], [0.0057, 0.0042, 0.0032, 0.0021, 0.002, 0.002, 0.0017, 0.0017], [0.0099, 0.0039, 0.0034, 0.003, 0.0028, 0.0028, 0.0023, 0.0022], [0.0095, 0.0033, 0.0024, 0.0021, 0.0015, 0.0014, 0.0014, 0.0012], [0.0131, 0.0038, 0.0038, 0.0033, 0.0026, 0.0026, 0.0024, 0.0023], [0.0069, 0.0034, 0.0032, 0.0029, 0.0027, 0.0024, 0.0024, 0.0024], [0.0144, 0.0044, 0.0036, 0.0028, 0.0028, 0.0027, 0.0027, 0.0027], [0.0058, 0.0033, 0.0027, 0.0027, 0.0023, 0.002, 0.002, 0.002], [0.002, 0.002, 0.0016, 0.0014, 0.0013, 0.001, 0.001, 0.001], [0.0031, 0.0026, 0.0024, 0.0022, 0.002, 0.0018, 0.0017, 0.0015], [0.0049, 0.0038, 0.0026, 0.0026, 0.002, 0.0017, 0.0017, 0.0015], [0.0033, 0.0024, 0.0019, 0.0014, 0.0013, 0.0012, 0.0012, 0.0012], [0.007, 0.0066, 0.0037, 0.0037, 0.0027, 0.0026, 0.0021, 0.002], [0.0315, 0.0102, 0.009, 0.008, 0.0075, 0.0066, 0.0058, 0.0055], [0.041, 0.0133, 0.0133, 0.0117, 0.0091, 0.0081, 0.0071, 0.0071], [0.0191, 0.014, 0.0124, 0.0102, 0.009, 0.0075, 0.007, 0.007], [0.069, 0.0186, 0.0164, 0.0164, 0.0136, 0.0136, 0.0113, 0.0106], [0.112, 0.0412, 0.0235, 0.0207, 0.0195, 0.0118, 0.0118, 0.0111], [0.0702, 0.0619, 0.0453, 0.0353, 0.0311, 0.0214, 0.0201, 0.0138], [0.0823, 0.0441, 0.0267, 0.0196, 0.0196, 0.0184, 0.0119, 0.0105], [0.0657, 0.0451, 0.0227, 0.0147, 0.0147, 0.0122, 0.0101, 0.0084], [0.0788, 0.0577, 0.0329, 0.0199, 0.0155, 0.0155, 0.0114, 0.0094], [0.1536, 0.0992, 0.064, 0.044, 0.0343, 0.0284, 0.0162, 0.0143], [0.2145, 0.1301, 0.1148, 0.0614, 0.0614, 0.029, 0.0129, 0.0114], [0.2914, 0.1881, 0.0784, 0.0692, 0.0506, 0.0164, 0.0145, 0.0106], [0.2861, 0.1531, 0.112, 0.06, 0.0364, 0.0321, 0.0221, 0.0207], [0.6482, 0.0603, 0.0566, 0.0303, 0.0303, 0.0162, 0.0143, 0.0126], [0.7123, 0.0455, 0.0455, 0.0402, 0.0178, 0.0148, 0.0148, 0.0084], [0.7802, 0.044, 0.0343, 0.0343, 0.0143, 0.0126, 0.0126, 0.0076], [0.8957, 0.0211, 0.0128, 0.0128, 0.0077, 0.0053, 0.0053, 0.0037], [0.8767, 0.0234, 0.0142, 0.0125, 0.0076, 0.0071, 0.0038, 0.0038], [0.8848, 0.0267, 0.0143, 0.0087, 0.0068, 0.0056, 0.0041, 0.0028], [0.8445, 0.0371, 0.0155, 0.012, 0.0094, 0.0064, 0.0061, 0.0061], [0.8626, 0.026, 0.0116, 0.0102, 0.0096, 0.0066, 0.0055, 0.0045], [0.8875, 0.0143, 0.0099, 0.0077, 0.006, 0.0047, 0.0044, 0.0036], [0.8565, 0.0147, 0.0084, 0.0084, 0.0084, 0.0065, 0.0048, 0.0048], [0.8034, 0.0167, 0.0157, 0.0115, 0.0115, 0.0084, 0.0074, 0.0058], [0.8506, 0.0129, 0.0078, 0.0074, 0.0061, 0.0061, 0.0054, 0.0048], [0.8678, 0.0159, 0.014, 0.0096, 0.0058, 0.0048, 0.004, 0.0031], [0.9572, 0.0137, 0.0064, 0.0039, 0.0027, 0.0021, 0.0014, 0.0013], [0.9807, 0.0109, 0.0045, 0.0013, 0.0011, 0.0005, 0.0001, 0.0001], [0.9917, 0.0046, 0.0017, 0.0005, 0.0004, 0.0004, 0.0001, 0.0001], [0.9918, 0.0025, 0.0015, 0.0012, 0.001, 0.0006, 0.0005, 0.0003], [0.9904, 0.0036, 0.0015, 0.0015, 0.0008, 0.0008, 0.0008, 0.0003], [0.9492, 0.0368, 0.0072, 0.0024, 0.0021, 0.0008, 0.0007, 0.0002], [0.5427, 0.4227, 0.0164, 0.0088, 0.0022, 0.002, 0.0017, 0.0009], [0.7929, 0.1561, 0.0239, 0.0128, 0.01, 0.0011, 0.0008, 0.0007], [0.9918, 0.0059, 0.0007, 0.0007, 0.0005, 0.0002, 0.0001, 0.0001], [0.7772, 0.1965, 0.0207, 0.0015, 0.0015, 0.0009, 0.0005, 0.0004], [0.7927, 0.1216, 0.0651, 0.0145, 0.002, 0.002, 0.0006, 0.0003], [0.6258, 0.2609, 0.0582, 0.04, 0.007, 0.0024, 0.0017, 0.0008]], "ranks": {"Rust": [45989, 87514, 47265, 46835, 13413, 18045, 34429, 31052, 36832, 36285, 27508, 42569, 38190, 42106, 38861, 32067, 33156, 69111, 70038, 43568, 70376, 94763, 55309, 54827, 89561, 108709, 87542, 59446, 70380, 78589, 38331, 33007, 36880, 35104, 62363, 49130, 36035, 27626, 21924, 34535, 14813, 11351, 16221, 20545, 11343, 8732, 5813, 4868, 4792, 5778, 11191, 14619, 10774, 6456, 3987, 3708, 1176, 912, 541, 285, 199, 103, 55]}}, {"pos": 466, "top": [[".", ",", "\u00a0", ";", " \u2013", " ", "<|endoftext|>", "\u2013"], [" \u2013", " \u200b", " \u200b\u200b", "\u200b\u200b", ".[", "schild", ".", "\u2013"], [",", ".", "\u2013", " \u2013", ".\u2013", ";", ".[", "\u2013and"], [" milfs", "enticate", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **\u300c", "\u00bb.**", " Henrique", "\u0e40\u0e2a\u0e49\u0e19\u0e40\u0e25\u0e37\u0e2d\u0e14\u0e02\u0e2d\u0e14", " kbh"], [".", ",", " \u200b\u200b", "\u00a0", " \n\n\n\n", "\u200b\u200b", " \n\n\n\n\n", "s"], [" \u200b\u200b", ".", ",", "\u00a0", ".\u2013", " \n\n\n\n\n", " \n\n\n\n", "\u00a0\u00a0"], ["\u00a0", "<|fim_suffix|>", "&#", "<|im_end|>", ".\u2022", " \r\n\r\n", " <![", "\u200b\u200b"], ["<|fim_suffix|>", "-intensive", "\u00a0", " \r\n\r\n", "/software", "enticate", ".\u2022", ";&#"], ["\u00a0", " \n\n", ".", " \r\n\r\n", ".[", " \n\n\n", "&nbsp", "\u00a0\u00a0"], ["\u00a0", ",", ".[", "\u00a0\u00a0", ".\u2013", ";", "\u2013", "/software"], ["\u00a0", ".[", ".", "&nbsp", " \ufffd", " equipment", ",", "&#"], [" electronics", "/software", " equipment", "ardware", " hardware", "ancock", " machinery", " **\u300c"], [" hardware", "/software", " infrastructure", "ardware", " electronics", "-intensive", " Hardware", " equipment"], [" hardware", " infrastructure", " electronics", " Hardware", " Weapon", "/software", " weaponry", " capabilities"], [" requisite", " hardware", " weaponry", " equipment", " savvy", " experimentation", " capability", "\u00a0"], [" requisite", " hardware", " touted", " savvy", " weaponry", " sprawling", " bolster", " arguably"], ["\u00a0", " requisite", " arguably", " uniquely", " savvy", " genuinely", " myriad", " touted"], [" savvy", " arguably", " touted", " sprawling", " uniquely", " capabilities", " incredibly", " effortlessly"], [" arguably", " uniquely", " genuinely", " myriad", " sprawling", " incredibly", " vastly", " swiftly"], [" arguably", " genuinely", " uniquely", " requisite", " ultimately", " vastly", " swiftly", " myriad"], ["<|endoftext|>", " \n\n", " \r\n\r\n", " genuinely", " vastly", "\u00a0", " swiftly", " myriad"], [" hardware", "/software", " infrastructure", " weaponry", "ardware", " electronics", " capabilities", " incredibly"], [" vastly", " uniquely", " hardware", " arguably", " ultimately", " --", " incredibly", " weaponry"], ["<|endoftext|>", " ultimately", " --", " uniquely", " ,", " vastly", " arguably", " hardware"], [" \r\n\r\n", " \n\n", "\r\n\r\n", " \r\n", " vastly", " --", "  \r\n\r\n", " hardware"], [" hardware", " \r\n\r\n", " weaponry", "Hardware", " \n\n", " Hardware", " capabilities", " vastly"], [" hardware", " weaponry", " infrastructure", " capabilities", " technological", " technology", "Hardware", " technologies"], [" hardware", " \r\n\r\n", " --", " vastly", " \n\n", " arguably", " weaponry", " massively"], [" hardware", " vastly", " infrastructure", " weaponry", " overclock", " capabilities", " powering", " technologies"], [" hardware", " infrastructure", " technology", " technologies", " capabilities", " overclock", " equipment", " vastly"], [" hardware", " .", " infrastructure", " technology", " **", " .**", " technologies", " incredibly"], [" hardware", " technology", " infrastructure", " incredibly", " \u2013", " .", " heavily", " technologies"], [" hardware", " incredibly", " technology", " infrastructure", " massively", " heavily", " extremely", " cheap"], [" hardware", " heavily", " massively", " incredibly", " technology", " cheap", " extremely", " infrastructure"], [" hardware", " incredibly", " heavily", " massively", " notoriously", " vastly", " extremely", " cheap"], [" hardware", " incredibly", " extremely", " heavily", " notoriously", " massively", " increasingly", " yet"], [" notoriously", " incredibly", " hardware", " heavily", " extremely", " yet", " massively", " increasingly"], [" hardware", " incredibly", " notoriously", " extremely", " yet", " heavily", " massively", " poorly"], [" hardware", " incredibly", " extremely", " notoriously", " while", " yet", " heavily", " massively"], [" hardware", " while", " incredibly", " extremely", " technology", " yet", " notoriously", " impossible"], [" hardware", " while", " technology", " incredibly", " extremely", " yet", " heavily", " cheap"], [" hardware", " technology", " while", " extremely", " incredibly", " notoriously", " technological", " yet"], [" hardware", " technology", " while", " notoriously", " extremely", " extreme", " incredibly", " equipment"], [" hardware", " while", " technology", " extreme", " notoriously", " heavily", " extremely", " simultaneously"], [" hardware", " while", " technology", " extremely", " impossible", " notoriously", " simultaneously", " incredibly"], [" hardware", " simultaneously", " while", " without", " notoriously", " incredibly", " aggressively", " extremely"], [" hardware", " while", " incredibly", " extremely", " notoriously", " impossible", " aggressively", " massively"], [" while", " without", " using", " combined", " simultaneously", " whilst", " WITHOUT", " hardware"], [" while", " without", " whilst", " using", " WITHOUT", "while", " simultaneously", " yet"], [" while", " whilst", "while", " without", " using", " WHILE", " simultaneously", " yet"], [" while", " whilst", "while", " WHILE", " using", " without", "_while", "\twhile"], [" while", " using", "while", " whilst", "using", " WHILE", " without", "\u7528\u6700"], [" while", " using", "while", " whilst", " WHILE", "using", "_while", " mientras"], [" while", "while", " using", " whilst", " WHILE", "using", " While", "_while"], [" using", " while", "using", "while", " whilst", " WHILE", "\u7528\u6700", " USING"], [" while", "while", " using", " whilst", " WHILE", "_while", " mientras", " enquanto"], [" while", "while", " using", " whilst", " WHILE", "_while", " mientras", "\twhile"], [" while", "while", " using", " whilst", " WHILE", "_while", " mientras", "\twhile"], [" while", "while", " using", " whilst", "_while", " WHILE", " While", " mientras"], [" while", " using", "while", " While", " whilst", "_while", " WHILE", " mientras"], [" while", " using", "while", " While", " whilst", " WHILE", "_while", " mientras"], [" while", " using", "while", " whilst", " While", " WHILE", ",", " with"], [" while", " using", ",", " with", " whilst", " constraints", "while", " While"]], "p": [[0.8455, 0.1075, 0.0065, 0.0054, 0.0044, 0.0027, 0.0016, 0.0013], [0.0373, 0.0373, 0.029, 0.0256, 0.0188, 0.0146, 0.0121, 0.01], [0.5723, 0.2386, 0.1447, 0.0105, 0.0093, 0.0093, 0.0047, 0.0034], [0.0093, 0.0087, 0.0041, 0.0027, 0.0014, 0.0013, 0.0013, 0.0013], [0.0508, 0.0255, 0.0212, 0.0145, 0.0113, 0.0106, 0.0106, 0.0088], [0.0341, 0.0194, 0.0133, 0.0104, 0.0098, 0.0056, 0.0056, 0.0036], [0.0535, 0.0112, 0.0112, 0.0068, 0.0064, 0.006, 0.006, 0.0053], [0.0337, 0.0091, 0.008, 0.0071, 0.0052, 0.0048, 0.0033, 0.0029], [0.6986, 0.0945, 0.0136, 0.0094, 0.005, 0.0039, 0.0034, 0.0029], [0.4595, 0.0102, 0.0054, 0.0029, 0.0026, 0.0024, 0.0023, 0.0023], [0.7422, 0.0128, 0.0057, 0.0053, 0.0053, 0.005, 0.0039, 0.0032], [0.0113, 0.01, 0.0088, 0.0083, 0.0057, 0.005, 0.0039, 0.0034], [0.011, 0.0081, 0.0067, 0.0063, 0.0059, 0.0052, 0.0052, 0.0046], [0.0091, 0.0063, 0.0059, 0.0055, 0.0049, 0.0049, 0.0041, 0.0038], [0.0091, 0.0059, 0.0043, 0.0041, 0.0034, 0.0032, 0.0028, 0.0028], [0.0093, 0.0044, 0.0041, 0.0034, 0.0034, 0.0032, 0.003, 0.0025], [0.0164, 0.0144, 0.0099, 0.0073, 0.0064, 0.0064, 0.006, 0.0053], [0.0087, 0.006, 0.005, 0.0047, 0.0047, 0.0039, 0.0036, 0.0036], [0.0224, 0.01, 0.0094, 0.0068, 0.0064, 0.0064, 0.006, 0.0057], [0.0171, 0.0118, 0.0097, 0.0092, 0.0086, 0.0086, 0.0071, 0.0071], [0.8528, 0.0054, 0.0033, 0.0015, 0.0015, 0.0013, 0.0012, 0.0011], [0.0052, 0.004, 0.0038, 0.0035, 0.0031, 0.0022, 0.002, 0.002], [0.0141, 0.0125, 0.0103, 0.0091, 0.0076, 0.0076, 0.0071, 0.0063], [0.0201, 0.0177, 0.0147, 0.013, 0.0108, 0.0108, 0.0079, 0.0069], [0.3084, 0.0688, 0.0238, 0.0136, 0.012, 0.0077, 0.0073, 0.0056], [0.2339, 0.0759, 0.018, 0.0169, 0.0132, 0.0124, 0.0109, 0.0103], [0.2642, 0.0358, 0.0149, 0.0116, 0.0116, 0.0102, 0.0102, 0.0096], [0.0466, 0.0341, 0.0171, 0.0161, 0.0134, 0.0134, 0.0104, 0.0092], [0.1099, 0.0158, 0.0149, 0.014, 0.0102, 0.0102, 0.0096, 0.0096], [0.164, 0.0389, 0.0222, 0.0196, 0.0173, 0.0135, 0.0098, 0.0082], [0.0997, 0.0568, 0.0345, 0.0345, 0.0304, 0.0163, 0.0163, 0.0153], [0.0537, 0.0369, 0.0224, 0.021, 0.0197, 0.0197, 0.0174, 0.0127], [0.0567, 0.047, 0.0304, 0.0209, 0.0196, 0.0163, 0.0143, 0.0127], [0.046, 0.0262, 0.0217, 0.0192, 0.018, 0.0132, 0.0116, 0.0085], [0.0616, 0.0291, 0.0291, 0.0274, 0.0213, 0.0156, 0.0156, 0.0146], [0.0498, 0.0387, 0.0364, 0.0342, 0.0342, 0.0302, 0.0221, 0.0172], [0.0525, 0.0493, 0.0463, 0.0339, 0.0318, 0.0318, 0.0299, 0.016], [0.0849, 0.0548, 0.0354, 0.0332, 0.0259, 0.0228, 0.0202, 0.0122], [0.0773, 0.0413, 0.0322, 0.0236, 0.0236, 0.0236, 0.0172, 0.0162], [0.1613, 0.0492, 0.0338, 0.0247, 0.0205, 0.017, 0.016, 0.016], [0.378, 0.0512, 0.033, 0.0156, 0.0138, 0.0107, 0.0095, 0.0095], [0.5046, 0.0267, 0.0251, 0.0105, 0.0092, 0.0082, 0.0072, 0.0068], [0.4341, 0.023, 0.0158, 0.0123, 0.0109, 0.0102, 0.0085, 0.0085], [0.413, 0.0248, 0.0206, 0.0125, 0.0125, 0.0117, 0.0103, 0.0097], [0.3048, 0.0207, 0.0183, 0.0126, 0.0126, 0.0118, 0.0111, 0.0111], [0.1981, 0.0415, 0.0415, 0.0252, 0.0184, 0.0163, 0.0143, 0.0135], [0.2483, 0.0628, 0.0336, 0.0231, 0.0204, 0.018, 0.014, 0.0124], [0.4607, 0.1496, 0.0624, 0.0355, 0.0277, 0.0244, 0.0215, 0.0168], [0.9241, 0.0358, 0.0246, 0.0026, 0.0026, 0.002, 0.0011, 0.0011], [0.9554, 0.037, 0.0021, 0.0018, 0.0011, 0.0008, 0.0003, 0.0001], [0.9873, 0.0059, 0.0046, 0.0006, 0.0004, 0.0003, 0.0001, 0.0001], [0.7788, 0.1969, 0.0087, 0.0052, 0.0046, 0.0019, 0.0007, 0.0004], [0.9636, 0.0257, 0.0057, 0.0024, 0.0011, 0.0004, 0.0003, 0.0001], [0.9817, 0.0085, 0.0066, 0.0019, 0.0005, 0.0001, 0.0001, 0.0001], [0.5229, 0.4614, 0.0066, 0.0045, 0.0011, 0.0009, 0.0004, 0.0004], [0.9886, 0.0052, 0.004, 0.0015, 0.0003, 0.0001, 0.0001, 0.0001], [0.9949, 0.0032, 0.001, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001], [0.9972, 0.0022, 0.0001, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9976, 0.0017, 0.0003, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9984, 0.0009, 0.0005, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9926, 0.0067, 0.0003, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9868, 0.0124, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9676, 0.0292, 0.0006, 0.0006, 0.0002, 0.0001, 0.0001, 0.0001]], "ranks": {"Rust": [33277, 36344, 10764, 24829, 1137, 906, 3524, 2230, 5874, 5813, 3910, 10992, 4109, 4318, 4820, 4553, 5473, 7952, 13891, 26512, 27163, 29379, 13920, 11547, 18215, 14032, 15442, 12785, 9522, 8094, 6315, 8013, 6465, 6480, 9497, 12267, 8130, 8850, 8165, 9594, 7769, 8485, 8253, 8577, 8006, 7290, 6144, 6367, 2287, 2474, 3226, 4515, 7807, 10336, 9492, 3621, 922, 504, 414, 192, 127, 73, 42]}}, {"pos": 467, "top": [["s", ",", "\u00a0\u00a0", ".", "\u2026.", "\u2013", "\u2022", "a"], ["s", "\u0627\u062a", "  \r\n", "sider", "\u044b", "\u00a0\u00a0", "  ", "schild"], ["s", "\u2013", "\u2026.", "\u2026..", "**!", "!.", "\u00a0\u00a0", ","], ["\u52a0\u62ff\u5927", "sium", "sik", "sider", "sache", "sula", "schrift", "s\u00f6k"], ["s", "sider", "\u0627\u062a", "sik", "\u52a0\u62ff\u5927", "ska", "\u65b0\u52a0\u5761", "sche"], ["s", "\u52a0\u62ff\u5927", "sider", "\u65b0\u52a0\u5761", "sik", "svar", "sii", "s\u00f6k"], ["s", " \u2022", "\u2022", "sider", "\u0627\u062a", "**!", "sik", "ska"], ["s", "sider", " \u2022", "sburg", "\u52a0\u62ff\u5927", "\u2022", "sik", "ska"], ["s", "\u2022", "**!", " \u2022", "  \n\n", "sider", "ska", "sik"], ["s", "\u2022", ".\u2022", "\u0670", "!:", "\u52a0\u62ff\u5927", "s\u00f6k", "ska"], ["s", "\u2022", " \u2022", ".\u2022", "\u00a0\u00a0", "\u2013", "\u0670", "ska"], ["s", " \u2022", "\u52a0\u62ff\u5927", "ska", ".\u2022", "\u2022", "s\u00f6k", "sburg"], ["s", "\u52a0\u62ff\u5927", "s\u00f6k", "sii", " \u2022", " **\u2022", "szeit", "ska"], ["s", "\u52a0\u62ff\u5927", "s\u00f6k", "\u65b0\u52a0\u5761", "sii", "sider", "ska", "szeit"], ["s", "\u2022", " \u2022", " showcasing", " effortlessly", "sampling", ".\u2022", " transitioning"], ["s", " showcasing", " transitioning", "\u62e5\u6709\u7740", "\u52a0\u62ff\u5927", " leveraging", " utilizing", " effortlessly"], ["s", "\u2013", "\u2022", " showcasing", " effortlessly", "\u00a0", " transitioning", "\u00a0\u00a0"], ["s", "\u2013", "\u2013and", " showcasing", "\u2022", "\u52a0\u62ff\u5927", " transitioning", " daunting"], ["s", " showcasing", " daunting", " transitioning", " effortlessly", "\u62e5\u6709\u7740", "\u2022", "sii"], ["s", "<|endoftext|>", "\u2022", "\u00a0", " showcasing", " effortlessly", " daunting", " burgeoning"], ["<|endoftext|>", "\u00a0", "  \n\n", "s", "\u2022", " burgeoning", "<|file_sep|>", " effortlessly"], ["\u62e5\u6709\u7740", " effortlessly", " showcasing", " daunting", "\u900f\u7740", "\u52a0\u62ff\u5927", "sste", "sii"], ["\u62e5\u6709\u7740", " effortlessly", " daunting", " burgeoning", " showcasing", " aggressively", " relentlessly", "\u900f\u7740"], ["<|endoftext|>", " effortlessly", " burgeoning", "s", " aggressively", " daunting", "\u62e5\u6709\u7740", " relentlessly"], ["  \n\n", "   \n\n", " \n\n", " \r\n\r\n", "\t\n\n", "<|endoftext|>", "\u2022", "  \r\n\r\n"], [" daunting", "\u62e5\u6709\u7740", " leveraging", " effortlessly", "\u900f\u7740", " showcasing", " burgeoning", " aggressively"], [" aggressively", " effortlessly", " burgeoning", " relentlessly", " leveraging", " daunting", "\u62e5\u6709\u7740", " showcasing"], ["  \n\n", " aggressively", " burgeoning", " effortlessly", " relentlessly", " arguably", " \n\n", " looming"], [" aggressively", " relentlessly", " effortlessly", " relentless", " looming", " burgeoning", " meticulously", " daunting"], [" aggressively", " relentlessly", " relentless", " effortlessly", " looming", " increasingly", " meticulously", " burgeoning"], [" aggressively", " relentlessly", " relentless", " increasingly", " meticulously", " effortlessly", " dramatically", " looming"], [" aggressively", " relentlessly", " relentless", " increasingly", " meticulously", " heavily", " effortlessly", " yet"], [" relentlessly", " aggressively", " relentless", " meticulously", " increasingly", " effortlessly", " strategically", " massively"], [" aggressively", " relentlessly", " relentless", " meticulously", " massively", " massive", " increasingly", " effortlessly"], [" aggressively", " relentlessly", " relentless", " meticulously", " massively", " arguably", " incredibly", " effortlessly"], [" aggressively", " relentlessly", " relentless", " meticulously", " massively", " demanding", " simultaneously", " incredibly"], [" aggressively", " relentlessly", " relentless", " meticulously", " simultaneously", " demanding", " maintaining", " massively"], [" meticulously", " aggressively", " relentless", " relentlessly", " simultaneously", " demanding", " maintaining", " ambitious"], [" meticulously", " relentlessly", " relentless", " demanding", " aggressively", " maintaining", " simultaneously", " complexity"], [" meticulously", " demanding", " aggressively", " relentlessly", " relentless", " complexity", " maintaining", " complex"], [" demanding", " complexity", " maintaining", " meticulously", " tech", " optimizing", " leveraging", " complex"], [" demanding", " simultaneously", " complexity", " complex", " constraints", " maintaining", " optimizing", " aggressively"], [" complexity", " complex", " demanding", " simultaneously", " maintaining", " complexities", " aggressively", " meticulously"], [" simultaneously", " complexity", " demanding", " complex", " maintaining", " constraints", " complexities", " concurrently"], [" simultaneously", " complex", " demanding", " complexity", " maintaining", " competing", " concurrently", " constraints"], [" simultaneously", " demanding", " complex", " maintaining", " complexity", " competing", " concurrently", " aggressively"], [" simultaneously", " demanding", " complexity", " maintaining", " complex", " constraints", " trying", " constrained"], [" simultaneously", " maintaining", " demanding", " trying", " attempting", " constraints", " demands", " complexity"], [" simultaneously", " maintaining", " demanding", "\u540c\u65f6\u8fd8\u8981", " attempting", " concurrently", " trying", " simultaneous"], [" simultaneously", " attempting", " maintaining", " trying", "\u540c\u65f6\u8fd8\u8981", " demanding", "\u8bd5\u56fe", "Attempting"], ["\u540c\u65f6\u8fd8\u8981", " maintaining", "\u8bd5\u56fe", " attempting", "Attempting", " trying", " simultaneously", "trying"], [" attempting", "\u8bd5\u56fe", " trying", "Attempting", " maintaining", "Trying", "trying", "\u540c\u65f6\u8fd8\u8981"], [" maintaining", " trying", " attempting", "\u8bd5\u56fe", "Attempting", " relying", "trying", "Trying"], [" maintaining", " trying", "\u8bd5\u56fe", " attempting", "Attempting", " pretending", " relying", "trying"], [" maintaining", " trying", " attempting", "\u8bd5\u56fe", " pretending", "Attempting", " retaining", "trying"], [" maintaining", " pretending", " trying", " retaining", " attempting", " keeping", " sacrificing", " enforcing"], [" maintaining", " trying", " pretending", " enforcing", " sacrificing", " retaining", " attempting", " keeping"], [" maintaining", " pretending", " trying", " retaining", " enforcing", " deploying", " paying", " sacrificing"], [" maintaining", " trying", " retaining", " pretending", " keeping", " enforcing", " paying", " deploying"], [" maintaining", " trying", " paying", " pretending", " enforcing", " retaining", " carrying", " sacrificing"], [" maintaining", " trying", " pretending", " retaining", " demanding", " carrying", " paying", " enforcing"], [" maintaining", " trying", " pretending", " carrying", " paying", " using", " demanding", " retaining"], [" maintaining", " trying", " paying", " demanding", " pretending", " carrying", " forcing", " building"]], "p": [[0.998, 0.0006, 0.0006, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.9953, 0.0004, 0.0002, 0.0002, 0.0002, 0.0002, 0.0002, 0.0001], [0.992, 0.0028, 0.0018, 0.0004, 0.0002, 0.0002, 0.0002, 0.0001], [0.0351, 0.0257, 0.0213, 0.0177, 0.0177, 0.0146, 0.0146, 0.0138], [0.9935, 0.0007, 0.0005, 0.0003, 0.0002, 0.0002, 0.0002, 0.0002], [0.4733, 0.044, 0.0389, 0.0251, 0.0126, 0.0105, 0.0105, 0.0077], [0.8982, 0.0078, 0.0064, 0.005, 0.0027, 0.0022, 0.0022, 0.0022], [0.445, 0.0236, 0.0208, 0.0152, 0.0134, 0.0098, 0.0092, 0.0082], [0.5086, 0.0154, 0.0144, 0.0112, 0.0106, 0.0106, 0.0088, 0.0082], [0.1472, 0.0329, 0.0256, 0.0137, 0.01, 0.0094, 0.0078, 0.0069], [0.7726, 0.0675, 0.0219, 0.0125, 0.0086, 0.0038, 0.0038, 0.0025], [0.6074, 0.0221, 0.0063, 0.0046, 0.0044, 0.0041, 0.0038, 0.0036], [0.3058, 0.0499, 0.0077, 0.0068, 0.0068, 0.006, 0.0056, 0.0049], [0.1021, 0.0332, 0.0074, 0.0065, 0.0061, 0.0054, 0.0054, 0.0051], [0.4628, 0.0179, 0.0123, 0.0075, 0.0035, 0.0033, 0.0029, 0.0029], [0.1949, 0.0384, 0.0233, 0.0097, 0.0076, 0.0076, 0.0071, 0.0046], [0.6699, 0.0074, 0.0074, 0.0062, 0.0035, 0.0033, 0.0031, 0.0031], [0.0452, 0.0166, 0.0114, 0.0084, 0.0057, 0.0054, 0.0054, 0.0051], [0.0888, 0.0083, 0.0069, 0.006, 0.0057, 0.0047, 0.0039, 0.0029], [0.0434, 0.0232, 0.0091, 0.0085, 0.0071, 0.0063, 0.0052, 0.0049], [0.9454, 0.001, 0.0009, 0.0007, 0.0005, 0.0003, 0.0003, 0.0002], [0.0102, 0.0051, 0.0043, 0.004, 0.0035, 0.0023, 0.0023, 0.0023], [0.0107, 0.0094, 0.0057, 0.0051, 0.0047, 0.0037, 0.0035, 0.0033], [0.0298, 0.008, 0.0066, 0.0062, 0.0052, 0.0049, 0.0046, 0.0046], [0.284, 0.0319, 0.0193, 0.0141, 0.0103, 0.0063, 0.0059, 0.0055], [0.0075, 0.0075, 0.0062, 0.0059, 0.0049, 0.0046, 0.0043, 0.004], [0.0131, 0.0102, 0.009, 0.0084, 0.007, 0.007, 0.0062, 0.0054], [0.0432, 0.0217, 0.0124, 0.0116, 0.0109, 0.0109, 0.0075, 0.0071], [0.0498, 0.025, 0.0183, 0.0162, 0.0143, 0.0143, 0.0092, 0.0087], [0.077, 0.0302, 0.025, 0.0183, 0.0142, 0.0126, 0.0104, 0.0104], [0.0895, 0.0615, 0.0351, 0.0256, 0.0137, 0.0137, 0.0121, 0.01], [0.0659, 0.0546, 0.0292, 0.0275, 0.0177, 0.013, 0.0122, 0.0114], [0.0881, 0.0645, 0.0416, 0.0286, 0.0135, 0.0112, 0.0105, 0.0105], [0.1226, 0.0843, 0.0656, 0.0451, 0.0166, 0.0095, 0.0095, 0.0083], [0.1234, 0.0848, 0.0583, 0.0332, 0.0201, 0.0115, 0.0115, 0.0108], [0.1027, 0.0906, 0.0851, 0.0485, 0.0229, 0.0123, 0.0123, 0.0123], [0.102, 0.0794, 0.0794, 0.0546, 0.0201, 0.0156, 0.0114, 0.0108], [0.0788, 0.0695, 0.0653, 0.0576, 0.0226, 0.0199, 0.0155, 0.0146], [0.0693, 0.0574, 0.0574, 0.0574, 0.042, 0.0255, 0.0198, 0.0186], [0.06, 0.06, 0.0387, 0.0364, 0.0364, 0.025, 0.025, 0.0183], [0.0632, 0.0338, 0.0299, 0.0264, 0.0264, 0.0219, 0.0205, 0.0205], [0.0773, 0.0469, 0.0389, 0.0251, 0.0208, 0.0208, 0.0196, 0.0196], [0.0589, 0.052, 0.0488, 0.0459, 0.0278, 0.0217, 0.0217, 0.0191], [0.1159, 0.0703, 0.062, 0.0426, 0.0275, 0.0214, 0.0201, 0.0178], [0.2479, 0.0488, 0.0488, 0.0431, 0.0231, 0.0191, 0.0169, 0.0149], [0.4557, 0.0351, 0.0291, 0.0257, 0.02, 0.0188, 0.0138, 0.0129], [0.2978, 0.0665, 0.0486, 0.0457, 0.0295, 0.023, 0.0216, 0.0148], [0.4568, 0.0794, 0.0618, 0.0546, 0.0274, 0.0138, 0.0114, 0.0107], [0.6855, 0.0563, 0.0341, 0.0235, 0.0142, 0.0134, 0.0134, 0.0098], [0.2005, 0.1073, 0.1073, 0.0947, 0.0574, 0.054, 0.0175, 0.0145], [0.1485, 0.1485, 0.0795, 0.0659, 0.0546, 0.0375, 0.0156, 0.0138], [0.1874, 0.1654, 0.146, 0.1288, 0.0689, 0.0537, 0.0418, 0.0164], [0.5944, 0.0804, 0.071, 0.0488, 0.0335, 0.023, 0.0085, 0.0085], [0.5444, 0.156, 0.0946, 0.0946, 0.0239, 0.0145, 0.0069, 0.0069], [0.8654, 0.071, 0.0296, 0.0096, 0.0066, 0.0051, 0.0024, 0.0017], [0.9422, 0.0134, 0.0082, 0.0063, 0.0063, 0.0023, 0.0021, 0.0021], [0.9571, 0.0137, 0.0064, 0.0039, 0.0018, 0.0018, 0.0018, 0.0016], [0.9784, 0.0051, 0.004, 0.0027, 0.0019, 0.0008, 0.0008, 0.0006], [0.9844, 0.0052, 0.0019, 0.0019, 0.0006, 0.0006, 0.0003, 0.0003], [0.9473, 0.0286, 0.0034, 0.0034, 0.0018, 0.0016, 0.0016, 0.0009], [0.752, 0.1678, 0.0177, 0.0074, 0.0065, 0.0065, 0.0051, 0.0039], [0.6866, 0.1736, 0.0207, 0.0126, 0.0126, 0.0111, 0.0081, 0.0067], [0.7596, 0.0707, 0.0429, 0.0108, 0.0108, 0.007, 0.007, 0.007]], "ranks": {"Rust": [10841, 45227, 33208, 77746, 13471, 28897, 56107, 69816, 77928, 71174, 33103, 33313, 67101, 53509, 59881, 68300, 79447, 120287, 156552, 132927, 133378, 133296, 135143, 94027, 81924, 83341, 60095, 42600, 26180, 18357, 8798, 9528, 9051, 21204, 17096, 28378, 29751, 23251, 21707, 18155, 10534, 10216, 8111, 10934, 8477, 6595, 5204, 7525, 3647, 4195, 10302, 16458, 27193, 20058, 16648, 10597, 5102, 3086, 2790, 2139, 1676, 1305, 1092]}}, {"pos": 468, "top": [[".", "\u2013", ",", " \u2013", "\u00a0", ".\u2013", ";", "\u2013and"], ["\u2013", " \u2013", " \u2013,", "**\u2013", ".\u2013", " \u2013**", "  \r\n", "\u2013and"], ["\u2013", ",", ".", ".\u2013", "\u2013and", " \u2013", ".[", "**\u2013"], ["aruhi", " **\u2018", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " linni", "\u0e19\u0e32\u0e04\u0e21", "\ub370\ubbf8", "uggy", " milfs"], ["\u00a0", ".", ",", "\u00a0\u00a0", "\ufffd", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0", "().", ".\u2013"], ["\u00a0", ".", ",", "\u00a0\u00a0", ".\u2013", "().", "\u2013", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0"], ["\u00a0", ".", ".[", "().", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0", "\u00a0\u00a0", "\ufffd", ".\u2013"], ["\u00a0", "().", ".\u2013", ".", ".[", " adherence", "-focused", "\ufffd"], ["\u00a0", ".", "().", "\ufffd", ".\u2013", ",", ".[", "\u2019."], ["\u00a0", "\ufffd", ",", "\u2013", ".\u2013", ".", ".[", ".\\"], ["\u00a0", "\u2013", "\ufffd", ",", ".", ".\u2013", ".[", "\u00a0\u00a0"], ["\u00a0", " adherence", "\ufffd", "-focused", " entirety", " maintenance", " priorit", " preventative"], [" adherence", " entirety", "\u00a0", " capabilities", " maintenance", "-focused", " oversight", " upkeep"], [" entirety", " adherence", " oversight", " priorit", " strategic", "-focused", " upkeep", " collaborative"], [" entirety", " adherence", " upkeep", " strategic", " utilizing", " showcasing", " priorit", " requisite"], [" entirety", " utilizing", "\u62e5\u6709\u7740", " adherence", " preventative", " advancements", " showcasing", " utilization"], [" entirety", " adherence", " oversight", " utilizing", " overarching", " requisite", " upkeep", " preventative"], [" entirety", " adherence", " requisite", " overarching", " upkeep", " oversight", "\u00a0", "\u62e5\u6709\u7740"], [" entirety", " upkeep", " adherence", " requisite", "Maint", " overarching", " preventative", " oversight"], [" entirety", " requisite", " upkeep", " overarching", " adherence", "\u00a0", "\u62e5\u6709\u7740", " oversight"], ["\u00a0", " entirety", " requisite", " upkeep", " overarching", "Maint", " adherence", " solely"], [" entirety", " upkeep", " adherence", "Maint", " oversight", " impactful", " sustainability", "\u62e5\u6709\u7740"], [" entirety", " upkeep", " adherence", "Maint", " requisite", " oversight", " maintenance", " integrity"], [" entirety", " upkeep", " adherence", " requisite", " maintenance", " maintaining", " ongoing", "Maint"], [" entirety", " upkeep", " adherence", " requisite", "Maint", " integrity", " maintenance", " expertise"], [" upkeep", " entirety", " adherence", " expertise", " impactful", " integrity", " maintenance", " oversight"], [" upkeep", " entirety", " maintenance", " adherence", " integrity", " infrastructure", " expertise", " oversight"], [" entirety", " upkeep", " requisite", " maintenance", " maintaining", " rigorous", " maintain", " efforts"], [" upkeep", " maintenance", " entirety", " requisite", " rigorous", " integrity", " infrastructure", " robust"], [" maintenance", " upkeep", " integrity", " maintain", " infrastructure", " rigorous", " robust", " maintaining"], [" maintenance", " rigorous", " robust", " global", " maintain", " upkeep", " integrity", " critical"], [" maintenance", " global", " critical", " maintain", " rigorous", " complex", " stability", " robust"], [" global", " maintenance", " rigorous", " complex", " critical", " robust", " maintain", " relentless"], [" global", " maintenance", " rigorous", " complex", " integrity", " complexity", " stability", " robust"], [" maintenance", " upkeep", " rigorous", " complexity", " integrity", " robust", " maintain", " relentless"], [" maintenance", " rigorous", " complex", " complexity", " global", " integrity", " sophisticated", " robust"], [" complexity", " complex", " scalability", " rigorous", " maintenance", " sophisticated", " robust", " integrity"], [" complexity", " maintenance", " scalability", " complex", " rigorous", " sophisticated", " robust", " integrity"], [" complexity", " complex", " maintenance", " sophisticated", " scalability", " rigorous", " robust", " integrity"], [" complexity", " complex", " maintenance", " sophisticated", " rigorous", " scalability", " integrity", " technical"], [" complexity", " complex", " maintenance", " sophisticated", " technical", " rigorous", " integrity", " maintain"], [" complexity", " complex", " sophisticated", " maintenance", " rigorous", " technical", " complexities", " optimized"], [" complexity", " complex", " sophisticated", " maintenance", " rigorous", " technical", " maintaining", " maintain"], [" complexity", " complex", " maintenance", " sophisticated", " rigorous", " simultaneous", " maintain", " maintaining"], [" complexity", " complex", " maintenance", " dual", " simultaneous", " rigorous", " sophisticated", " maintain"], [" complexity", " complex", " dual", " maintenance", " simultaneous", " maintain", " rigorous", " sophisticated"], [" complexity", " complex", " maintenance", " dual", " sophisticated", " simultaneous", " maintain", " rigorous"], [" complexity", " complex", " dual", " sophisticated", " maintenance", " maintain", " maintaining", " integrity"], [" complexity", " sophisticated", " dual", " complex", " integrity", " sophistication", " rigorous", " simultaneous"], [" complexity", " sophisticated", " complex", " rigorous", " seamless", " sophistication", " dual", " integrity"], [" complexity", " rigorous", " sophisticated", " integrity", " complex", " seamless", "\u590d\u6742\u5ea6", " sophistication"], [" complexity", " complex", " sophisticated", " rigorous", " flexibility", " Complexity", " seamless", " desktop"], [" complexity", " complex", " Complexity", " sophisticated", " flexibility", "\u590d\u6742\u6027", "complex", "\u590d\u6742\u5ea6"], [" complexity", " complex", " Complexity", "\u590d\u6742\u6027", "\u590d\u6742\u5ea6", "complex", " desktop", "\u590d\u6742\u7684"], [" complexity", "\u590d\u6742\u6027", " complex", " Complexity", "\u590d\u6742\u5ea6", "complex", "\u590d\u6742", "\u590d\u6742\u7684"], [" complexity", " desktop", " complex", "\u590d\u6742\u6027", " Complexity", "\u590d\u6742\u5ea6", "complex", "\u590d\u6742"], [" complexity", " desktop", " complex", "\u590d\u6742\u6027", "complex", " Complexity", "desktop", "\u590d\u6742\u5ea6"], [" desktop", "desktop", " Desktop", " complexity", "Desktop", " complex", "-desktop", "complex"], [" desktop", " Desktop", "desktop", "Desktop", "-desktop", "/desktop", ".desktop", "\u684c\u9762"], [" desktop", " Desktop", "desktop", "Desktop", "-desktop", "/desktop", " complexity", " complex"], [" desktop", "desktop", " Desktop", "Desktop", "-desktop", " complex", "/desktop", " complexity"], [" desktop", "desktop", " Desktop", "-desktop", "Desktop", ".desktop", "/desktop", " plugin"], [" desktop", "desktop", " plugin", " complex", " Desktop", " cross", " async", "Desktop"]], "p": [[0.5821, 0.189, 0.1668, 0.0478, 0.0083, 0.0016, 0.0011, 0.0004], [0.2598, 0.0452, 0.0242, 0.0213, 0.0213, 0.0213, 0.0156, 0.0129], [0.8683, 0.0555, 0.0337, 0.0231, 0.004, 0.0018, 0.001, 0.0008], [0.0025, 0.0021, 0.0014, 0.0014, 0.0012, 0.0011, 0.0011, 0.0009], [0.0921, 0.0318, 0.0181, 0.016, 0.0117, 0.0097, 0.0091, 0.0086], [0.2059, 0.0405, 0.0217, 0.0149, 0.0149, 0.0109, 0.0085, 0.0058], [0.798, 0.0114, 0.0078, 0.0073, 0.0069, 0.0057, 0.0051, 0.0037], [0.1674, 0.0423, 0.0176, 0.0137, 0.0089, 0.0074, 0.0061, 0.0037], [0.7431, 0.0834, 0.0239, 0.0211, 0.0073, 0.0068, 0.0044, 0.0021], [0.7916, 0.0348, 0.0307, 0.0128, 0.0088, 0.005, 0.0047, 0.0021], [0.9691, 0.0089, 0.007, 0.0033, 0.0015, 0.0014, 0.001, 0.0005], [0.0877, 0.0196, 0.0082, 0.0064, 0.006, 0.0056, 0.0056, 0.0039], [0.0363, 0.0171, 0.0104, 0.0081, 0.0081, 0.0076, 0.0071, 0.0059], [0.0377, 0.0244, 0.0095, 0.009, 0.009, 0.007, 0.0062, 0.0062], [0.0682, 0.0195, 0.0118, 0.0118, 0.0105, 0.0098, 0.0098, 0.0081], [0.1965, 0.0988, 0.0321, 0.0235, 0.0195, 0.0195, 0.0081, 0.0067], [0.2278, 0.0226, 0.0107, 0.01, 0.01, 0.0094, 0.0083, 0.0073], [0.2428, 0.0155, 0.0146, 0.0137, 0.0114, 0.0107, 0.0069, 0.0057], [0.1558, 0.037, 0.0175, 0.0113, 0.0094, 0.0083, 0.0083, 0.0083], [0.187, 0.0325, 0.0269, 0.012, 0.0112, 0.0082, 0.006, 0.006], [0.1598, 0.0588, 0.0487, 0.014, 0.009, 0.007, 0.0058, 0.0055], [0.0254, 0.0198, 0.0106, 0.0064, 0.005, 0.0047, 0.0037, 0.003], [0.0834, 0.042, 0.0307, 0.0113, 0.0094, 0.0088, 0.0083, 0.0083], [0.127, 0.0364, 0.0235, 0.0221, 0.0195, 0.0111, 0.0104, 0.0098], [0.0952, 0.0894, 0.0309, 0.0273, 0.0165, 0.0137, 0.0137, 0.0114], [0.0649, 0.0419, 0.0239, 0.0175, 0.0164, 0.0164, 0.0164, 0.0145], [0.0927, 0.0678, 0.0341, 0.0234, 0.0183, 0.0151, 0.0142, 0.0125], [0.0536, 0.0536, 0.0444, 0.0287, 0.0144, 0.012, 0.0112, 0.0099], [0.0702, 0.0453, 0.0258, 0.0258, 0.0189, 0.0189, 0.0138, 0.013], [0.0871, 0.0562, 0.0301, 0.0266, 0.0234, 0.022, 0.0194, 0.0161], [0.0515, 0.0276, 0.0243, 0.0215, 0.0189, 0.0167, 0.0157, 0.0148], [0.0538, 0.0307, 0.0211, 0.0198, 0.0186, 0.0164, 0.0128, 0.012], [0.0467, 0.0342, 0.0207, 0.0195, 0.0172, 0.0152, 0.0142, 0.0126], [0.0513, 0.0375, 0.0292, 0.0242, 0.0201, 0.0177, 0.0138, 0.0138], [0.0529, 0.0439, 0.0412, 0.0283, 0.0266, 0.025, 0.025, 0.0207], [0.0565, 0.053, 0.0468, 0.0413, 0.0388, 0.0235, 0.0208, 0.0195], [0.0992, 0.044, 0.0414, 0.0389, 0.0343, 0.0284, 0.0267, 0.0184], [0.1049, 0.0598, 0.0437, 0.0386, 0.032, 0.0265, 0.022, 0.022], [0.2798, 0.1029, 0.0518, 0.0403, 0.0295, 0.0277, 0.019, 0.0168], [0.2581, 0.1219, 0.0653, 0.0421, 0.0272, 0.024, 0.0199, 0.0176], [0.2777, 0.0901, 0.062, 0.0376, 0.0275, 0.0201, 0.0189, 0.0167], [0.3452, 0.1121, 0.06, 0.0321, 0.025, 0.0207, 0.0161, 0.0134], [0.2854, 0.1348, 0.0818, 0.0562, 0.0265, 0.0171, 0.0142, 0.0142], [0.3187, 0.1329, 0.0554, 0.0431, 0.0381, 0.0191, 0.0191, 0.018], [0.2479, 0.2188, 0.0553, 0.0431, 0.0336, 0.0336, 0.0217, 0.0217], [0.1944, 0.1514, 0.081, 0.0631, 0.0434, 0.028, 0.028, 0.0232], [0.2803, 0.1324, 0.0552, 0.0487, 0.0379, 0.0335, 0.0314, 0.023], [0.228, 0.095, 0.0839, 0.0509, 0.0509, 0.0422, 0.029, 0.0256], [0.2162, 0.0795, 0.0747, 0.062, 0.0312, 0.0243, 0.0228, 0.0214], [0.2151, 0.1305, 0.048, 0.0291, 0.0291, 0.0257, 0.0257, 0.0241], [0.1834, 0.0299, 0.0264, 0.0219, 0.0171, 0.016, 0.0117, 0.011], [0.3728, 0.0287, 0.0287, 0.027, 0.0224, 0.021, 0.021, 0.0154], [0.4972, 0.0762, 0.0383, 0.036, 0.0248, 0.0193, 0.016, 0.015], [0.5882, 0.0703, 0.0426, 0.0258, 0.0201, 0.0147, 0.0095, 0.0095], [0.7669, 0.0433, 0.0433, 0.0382, 0.0297, 0.0124, 0.0097, 0.0085], [0.4712, 0.1964, 0.0928, 0.0497, 0.0266, 0.0207, 0.0207, 0.0183], [0.3533, 0.3118, 0.0788, 0.0329, 0.0256, 0.0199, 0.0176, 0.0107], [0.9165, 0.0277, 0.019, 0.0148, 0.0062, 0.0062, 0.0018, 0.0016], [0.9571, 0.0199, 0.0175, 0.0044, 0.0005, 0.0003, 0.0001, 0.0001], [0.9788, 0.0109, 0.0075, 0.0019, 0.0005, 0.0002, 0.0001, 0.0001], [0.9843, 0.0075, 0.0059, 0.0012, 0.0006, 0.0002, 0.0001, 0.0001], [0.9872, 0.0052, 0.004, 0.0017, 0.0012, 0.0001, 0.0001, 0.0001], [0.9881, 0.0019, 0.0015, 0.0013, 0.0012, 0.0009, 0.0007, 0.0004]], "ranks": {"Rust": [69939, 153516, 75956, 19463, 30212, 20057, 16464, 19612, 19658, 19073, 31817, 31656, 22543, 20967, 39574, 50193, 60831, 84250, 83954, 66269, 102051, 55092, 66724, 71696, 27908, 29121, 42731, 35596, 34940, 30577, 17958, 18417, 20052, 36358, 22744, 20219, 9877, 9808, 9520, 4263, 2499, 2536, 2081, 3407, 4458, 3488, 3497, 4785, 3314, 5768, 16065, 23860, 7835, 3933, 3225, 835, 71, 52, 53, 27, 18, 15, 9]}}, {"pos": 469, "top": [[".", ",", "\u2013", ";", "\u2026.", " \u2013", ",.", "\u00a0\u00a0"], ["\u2013", ".", " \u2013", ",", "\u2013and", ";", ".\u2013", " \u200b\u200b"], [".", "\u2013", ",", "\u2026.", "\u2026..", "\u2026", " \u2013", ".\u2013"], [" Shemale", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", " pornstar", " Blowjob", " cumshot", "odle", "sprozess"], [".@", "@d", " \u200b\u200b", "@a", " \"@", "(@", " (@", "\u7fe1"], [" \u200b\u200b", "\u2026.", ".", "\u7fe1", "!\u201d.", "!.", "\u5730\u4e9a", "sver"], [".\"", "\t  ", ".\u201d", ".-", "s", ".\u2019", ".(", "(@"], ["(@", "!.", ".@", "@a", "@d", " @", " \u062c\u062f\u064b\u0627", ".-"], [".", "!.", ",.", ":.", ",", ".\u201d", ".\"", "!\u201d."], [",", ".", ",.", "!,", " \u00ad", "!.", "\u3082\u3057\u3063\u304b\u308a", "\u2013"], [",", ".", "...", "\u2013", " \u00ad", " ", ",.", ".\""], [" supportive", " youthful", "\u6e21\u5047", "\u8e0f\u8e0f\u5b9e\u5b9e", " flavorful", " savvy", " pricey", " showcase"], [" flavorful", " supportive", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " showcase", " robust", " lucrative", " impactful", " savvy"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " flavorful", " impactful", " supportive", " showcase", " savvy", " pricey", " cohesive"], [" savvy", " pricey", " showcase", " standout", " flavorful", " showcasing", " funky", " expansive"], [" savvy", " pricey", " standout", " touted", " flavorful", " showcasing", "\u62e5\u6709\u7740", "-esque"], [" savvy", " standout", "-esque", " pricey", " expansive", " hefty", " disparate", " quirky"], [" savvy", " pricey", "-esque", " quirky", " standout", " hefty", " impactful", " funky"], [" savvy", " quirky", "-esque", " flashy", " funky", " hefty", " pricey", " aggressively"], [" pricey", " hefty", " sprawling", " savvy", " aggressively", " requisite", " lucrative", " myriad"], [" myriad", " requisite", " vastly", " burgeoning", " aggressively", " hefty", " genuinely", " sprawling"], [" lucrative", " pricey", " savvy", " flashy", " sprawling", " impactful", " aggressively", " expansive"], [" lucrative", " pricey", " aggressively", " sprawling", " expansive", " savvy", " hefty", " vastly"], [" aggressively", " sprawling", " vastly", " requisite", " myriad", " largely", " lucrative", " wildly"], [" sprawling", " requisite", " vastly", " hugely", " expansive", " aggressively", " hefty", " disparate"], [" sprawling", " lucrative", " aggressively", " expansive", " robust", " disparate", " impactful", " tech"], [" sprawling", " aggressively", " disparate", " modular", " lucrative", " expansive", " robust", " tech"], [" sprawling", " heavily", " complex", " aggressively", " vastly", " myriad", " massive", " largely"], [" sprawling", " complex", " heavily", " massive", " aggressively", " modular", " myriad", " global"], [" complex", " modular", " global", " sprawling", " massive", " heavily", " aggressively", " infrastructure"], [" complex", " massive", " heavily", " global", " aggressively", " high", " ", " modular"], [" complex", " massive", " heavily", " high", " long", " global", " aggressively", " full"], [" complex", " massive", " global", " high", " long", " heavily", " full", " aggressively"], [" complex", " modular", " global", " massive", " tech", " hybrid", " elite", " aggressively"], [" complex", " massive", " modular", " complexity", " aggressively", " sprawling", " relentless", " tech"], [" complex", " tech", " modular", " complexity", " global", " sophisticated", " massive", " hybrid"], [" complex", " complexity", " tech", " sophisticated", " modular", " massive", " global", " hybrid"], [" complex", " complexity", " sophisticated", " modular", " dual", " tech", "complex", " multi"], [" complex", " complexity", " sophisticated", "complex", " modular", " complexities", " dual", " massive"], [" complex", " complexity", " sophisticated", "complex", " modular", " unified", " global", " dual"], [" complex", " complexity", " sophisticated", "complex", " modular", " software", " massive", " tech"], [" complex", " complexity", " sophisticated", " modular", "complex", " architecture", " complexities", " software"], [" complex", " complexity", " sophisticated", " modular", "complex", " complexities", " architecture", " massive"], [" complex", " complexity", " modular", "complex", " sophisticated", " massive", " architecture", " multi"], [" complex", " complexity", " dual", " modular", "complex", " massive", " sophisticated", " multi"], [" complex", " complexity", " dual", " modular", "complex", " sophisticated", " massive", " multi"], [" complex", " complexity", " sophisticated", "complex", " multi", " dual", " massive", " modular"], [" complex", " complexity", " multi", " dual", " unified", " sophisticated", "complex", "-heavy"], [" complex", " complexity", " multi", " sophisticated", " unified", " dual", "-heavy", "complex"], [" complex", " sophisticated", " complexity", "-heavy", " heavyweight", " unified", "complex", " multi"], [" complex", "complex", " sophisticated", " complexity", "\u590d\u6742\u7684", "\u590d\u6742", "-heavy", " heavyweight"], [" complex", " unified", " sophisticated", "complex", " complexity", "\u590d\u6742\u7684", "\u590d\u6742", " modular"], [" complex", " sophisticated", "complex", "\u590d\u6742", " unified", " complexity", "\u590d\u6742\u7684", " heavyweight"], [" complex", " unified", "complex", " sophisticated", "\u590d\u6742\u7684", "\u590d\u6742", " heavyweight", " complexity"], [" complex", "\u590d\u6742", "complex", "\u590d\u6742\u7684", " complexity", " sophisticated", " unified", "Complex"], [" complex", "\u590d\u6742", "\u590d\u6742\u7684", "complex", " complexity", " desktop", " sophisticated", "Complex"], [" complex", "complex", "\u590d\u6742", " desktop", "\u590d\u6742\u7684", " complexity", " plugin", " unified"], [" complex", " desktop", "complex", "\u590d\u6742", "desktop", "Complex", " complexity", "\u590d\u6742\u7684"], [" desktop", " complex", "desktop", " Desktop", "complex", "Desktop", "\u590d\u6742", "-desktop"], [" desktop", " plugin", " complex", "plugin", "desktop", " Desktop", "-plugin", " plugins"], [" desktop", " plugin", " complex", "plugin", "-plugin", "desktop", " Desktop", " plugins"], [" desktop", " plugin", "-plugin", " complex", "plugin", " plugins", "desktop", " Plugin"], [" desktop", " plugin", " complex", " unified", " synchronous", " mon", " cross", "-plugin"]], "p": [[0.827, 0.1628, 0.0049, 0.0014, 0.0011, 0.0005, 0.0005, 0.0004], [0.3538, 0.3122, 0.0654, 0.0543, 0.0129, 0.0129, 0.0107, 0.01], [0.6541, 0.146, 0.0885, 0.0537, 0.0254, 0.012, 0.0064, 0.0039], [0.0083, 0.0083, 0.0078, 0.0054, 0.0048, 0.0029, 0.0017, 0.0017], [0.0199, 0.0113, 0.0088, 0.0065, 0.0061, 0.0054, 0.0044, 0.0037], [0.0138, 0.0074, 0.0045, 0.0045, 0.0033, 0.0027, 0.0024, 0.0022], [0.0517, 0.0295, 0.026, 0.0168, 0.0158, 0.0139, 0.0102, 0.0066], [0.0135, 0.0105, 0.0099, 0.0093, 0.006, 0.0056, 0.0041, 0.003], [0.5886, 0.0797, 0.0275, 0.0214, 0.0157, 0.013, 0.0101, 0.0084], [0.0803, 0.0045, 0.0029, 0.0024, 0.0021, 0.002, 0.0019, 0.0019], [0.1264, 0.0984, 0.0249, 0.0249, 0.0133, 0.011, 0.0097, 0.0097], [0.0031, 0.0016, 0.0015, 0.0013, 0.0013, 0.0013, 0.0012, 0.0012], [0.0034, 0.0034, 0.0022, 0.002, 0.0017, 0.0017, 0.0015, 0.0014], [0.0036, 0.0023, 0.0016, 0.0014, 0.0013, 0.0013, 0.0012, 0.0012], [0.0083, 0.0054, 0.0042, 0.0035, 0.0035, 0.0027, 0.0027, 0.0024], [0.009, 0.0062, 0.0048, 0.0037, 0.0031, 0.0027, 0.0026, 0.0024], [0.0322, 0.0195, 0.0119, 0.0087, 0.0087, 0.0087, 0.0077, 0.0072], [0.0257, 0.0147, 0.0122, 0.0107, 0.0101, 0.0079, 0.0065, 0.0057], [0.0269, 0.0135, 0.0127, 0.0112, 0.0105, 0.0105, 0.0105, 0.0099], [0.0137, 0.0121, 0.0114, 0.0114, 0.0094, 0.0069, 0.0054, 0.005], [0.017, 0.016, 0.016, 0.011, 0.011, 0.0103, 0.0097, 0.0086], [0.0086, 0.0041, 0.0022, 0.0021, 0.0021, 0.0019, 0.0017, 0.0016], [0.028, 0.0132, 0.011, 0.011, 0.0075, 0.0067, 0.0059, 0.0059], [0.0197, 0.0185, 0.0136, 0.0099, 0.0093, 0.0088, 0.0077, 0.0077], [0.0228, 0.0214, 0.0178, 0.013, 0.0115, 0.0108, 0.0101, 0.0084], [0.0212, 0.0165, 0.0107, 0.01, 0.01, 0.0094, 0.0083, 0.0069], [0.0453, 0.0177, 0.013, 0.0114, 0.0107, 0.0095, 0.0089, 0.0084], [0.0388, 0.0302, 0.0221, 0.0162, 0.0143, 0.0126, 0.0118, 0.0118], [0.0597, 0.0495, 0.0249, 0.0234, 0.0206, 0.0171, 0.0151, 0.011], [0.1144, 0.0289, 0.0199, 0.0175, 0.0175, 0.0137, 0.0128, 0.0121], [0.1593, 0.0378, 0.0216, 0.019, 0.0158, 0.0131, 0.0102, 0.0102], [0.1315, 0.0377, 0.0259, 0.0259, 0.0228, 0.0157, 0.013, 0.0115], [0.186, 0.0366, 0.0252, 0.0209, 0.0163, 0.0127, 0.0119, 0.0093], [0.3289, 0.0445, 0.0287, 0.0224, 0.0224, 0.0174, 0.0128, 0.0113], [0.3855, 0.0359, 0.0217, 0.0192, 0.018, 0.0169, 0.0169, 0.0149], [0.6377, 0.0263, 0.0232, 0.0181, 0.016, 0.0141, 0.0103, 0.0071], [0.729, 0.0363, 0.0161, 0.0151, 0.0111, 0.0081, 0.0059, 0.0052], [0.7947, 0.0349, 0.0137, 0.0128, 0.0069, 0.0065, 0.005, 0.0042], [0.9145, 0.0355, 0.0079, 0.0042, 0.0026, 0.0011, 0.001, 0.0009], [0.9286, 0.0247, 0.0063, 0.0063, 0.0036, 0.0014, 0.001, 0.0009], [0.9174, 0.0314, 0.0062, 0.0048, 0.0023, 0.0016, 0.0015, 0.0012], [0.9024, 0.0449, 0.0078, 0.0078, 0.0042, 0.0015, 0.0014, 0.0014], [0.9195, 0.0357, 0.0062, 0.0062, 0.0038, 0.0015, 0.0015, 0.0012], [0.8952, 0.0393, 0.0077, 0.0068, 0.0053, 0.0022, 0.002, 0.002], [0.9204, 0.0278, 0.0048, 0.0048, 0.0038, 0.0026, 0.0026, 0.0026], [0.8559, 0.0332, 0.0122, 0.0084, 0.0058, 0.0051, 0.0051, 0.0051], [0.8502, 0.0423, 0.0121, 0.0083, 0.0065, 0.0051, 0.0051, 0.0042], [0.7831, 0.0304, 0.0268, 0.0236, 0.0127, 0.0112, 0.0099, 0.0056], [0.6444, 0.0364, 0.0321, 0.025, 0.0221, 0.0221, 0.0195, 0.0142], [0.3074, 0.0881, 0.0686, 0.0605, 0.0304, 0.0237, 0.0209, 0.0209], [0.175, 0.073, 0.0534, 0.0534, 0.0502, 0.0471, 0.0209, 0.0153], [0.135, 0.1191, 0.1191, 0.0723, 0.0497, 0.0467, 0.0412, 0.0341], [0.3671, 0.1192, 0.0723, 0.0638, 0.0638, 0.0638, 0.0438, 0.0266], [0.426, 0.0839, 0.0653, 0.0653, 0.0576, 0.0576, 0.0396, 0.0309], [0.5176, 0.1019, 0.0794, 0.0794, 0.07, 0.0227, 0.0177, 0.0138], [0.4468, 0.1451, 0.088, 0.0685, 0.0471, 0.0196, 0.0173, 0.0135], [0.4378, 0.0977, 0.0862, 0.0407, 0.0359, 0.028, 0.0247, 0.0192], [0.6032, 0.2219, 0.072, 0.0386, 0.0097, 0.0097, 0.0097, 0.0076], [0.8767, 0.056, 0.034, 0.0125, 0.0052, 0.0046, 0.0028, 0.0013], [0.7111, 0.1798, 0.0584, 0.0101, 0.009, 0.0062, 0.0042, 0.0037], [0.6645, 0.1904, 0.1019, 0.0065, 0.0065, 0.0057, 0.004, 0.004], [0.5997, 0.321, 0.0233, 0.016, 0.0052, 0.0038, 0.0036, 0.0036], [0.6987, 0.1559, 0.0946, 0.0128, 0.0044, 0.0017, 0.0016, 0.0014]], "ranks": {"Rust": [37304, 100349, 89031, 149807, 13019, 50299, 84087, 38110, 48939, 21343, 9250, 23569, 25640, 38794, 31247, 43608, 33986, 84476, 104169, 84080, 96587, 120391, 97954, 31786, 24442, 29467, 18196, 11515, 10885, 14142, 14132, 14440, 15168, 29885, 26495, 26548, 16582, 14153, 12009, 4637, 1915, 1522, 1421, 2329, 4107, 4614, 5246, 6015, 5523, 8606, 21852, 28602, 11631, 3518, 3232, 766, 97, 58, 28, 49, 30, 28, 14]}}, {"pos": 470, "top": [[".", ",", "\u2013", " \u2013", "\u2026", " ", "\u2026.", "-"], ["\u2013", " \u2013", "  \n", "  \n\n", "\uff0e", "  \r\n", "\u2026", ","], ["\u2013", " \u2013", "\u2026", ",", ".", "\u2026.", "\u2026..", "\u2026\u2026"], ["\u52a0\u62ff\u5927", " Shemale", "ELIT", " milfs", " CSG", " YYS", " Guta", " pupper"], [" (@", "  ", "ed", "mente", "\\_", " \u201c", "  \n", ":@"], ["\uff0c", " Frag", " Complex", "\uff08", "\uff01", "\uff1a", " \uff08", "-CS"], ["\uff08", "  \n", "\u4e2d", "\u548c", "\u5728", "\\_", "\u7684", "  \n\n"], [" `_", " complex", "raries", " Complex", " LCS", "\\_", "ities", "ly"], ["  \n", "ly", " complex", "  \n\n", " Complex", "ities", "-themed", " complexity"], ["\\_", "\u2013", ",", " complex", " Complex", " complexities", " intric", "ly"], [" complex", "\\_", " Complex", "Complex", " complexity", " intric", " complexities", "\u2013"], [" complex", " complexities", " complexity", " Complex", " intric", " sophisticated", " architectural", " hybrid"], [" complex", " complexities", " complexity", " intertwined", " intric", " Complex", " labyrinth", " architectural"], [" complex", " complexities", " complexity", " intertwined", " intric", " architectural", " sophisticated", " Complex"], [" complex", " complexities", " intric", " Complex", " strategic", " complexity", " sophisticated", " architectural"], [" complex", " complexities", " strategic", " sophisticated", " Complex", " intric", " complexity", " diverse"], [" complex", " intric", " complexities", " myriad", " Complex", " intricate", "\u2013", " overarching"], [" complex", " complexities", " complexity", " intric", " overarching", " intricate", " Complex", " sprawling"], [" complex", " complexities", " complexity", " Complex", " intricate", " intric", " intertwined", " Complexity"], [" complex", " complexities", " complexity", " intric", " intricate", " Complex", " intertwined", " sophisticated"], [" complex", " complexities", " intric", " myriad", "Complex", " complexity", " Complex", " intricate"], [" complexities", " complex", " complexity", " Complexity", " intricate", " Complex", " sophisticated", "Complex"], [" complex", " complexities", " complexity", " Complex", " intricate", "Complex", " Complexity", " sophisticated"], [" complex", " complexities", " complexity", " Complex", "Complex", "complex", " intricate", " myriad"], [" complex", " complexities", " complexity", " intricate", "Complex", "complex", " Complex", " intric"], [" complex", " complexity", " complexities", " intricate", " Complexity", " Complex", "Complex", "complex"], [" complex", " complexity", " complexities", " intricate", " Complex", " Complexity", "Complex", "complex"], [" complex", " complexity", " complexities", " Complex", " intricate", " systems", "complex", " complicated"], [" complex", " complexity", " complexities", " Complex", " intricate", "complex", "Complex", " Complexity"], [" complex", " complexity", " complexities", " Complex", " intricate", "complex", " systems", " architecture"], [" complex", " complexity", " Complex", " intricate", " complexities", " systems", " sophisticated", " system"], [" complex", " complexity", " Complex", " intricate", " systems", " system", "complex", " complicated"], [" complex", " complexity", " Complex", " intricate", " complexities", " systems", " system", "complex"], [" complex", " complexity", " complexities", "complex", " intricate", " Complex", " modular", " hybrid"], [" complex", " complexity", "complex", " complexities", " intricate", "Complex", " Complex", "\u590d\u6742"], [" complex", " complexity", "complex", " complexities", " Complex", "\u590d\u6742", "Complex", " intricate"], [" complex", " complexity", "complex", " complexities", "\u590d\u6742", "Complex", " Complex", "\u590d\u6742\u7684"], [" complex", " complexity", "complex", " Complex", " complexities", "Complex", "\u590d\u6742", " Complexity"], [" complex", " complexity", "complex", " Complex", " complexities", "\u590d\u6742", "Complex", " Complexity"], [" complex", " complexity", "complex", " Complex", "Complex", "\u590d\u6742", " complexities", "\u590d\u6742\u7684"], [" complex", " complexity", "complex", " Complex", "Complex", "\u590d\u6742", " complexities", " Complexity"], [" complex", " complexity", "complex", " Complex", " complexities", "Complex", "\u590d\u6742", " Complexity"], [" complex", " complexity", "complex", " Complex", " complexities", "Complex", "\u590d\u6742", " Complexity"], [" complex", " complexity", "complex", " complexities", " Complex", "\u590d\u6742", "\u590d\u6742\u7684", "Complex"], [" complex", " complexity", "complex", " complexities", "\u590d\u6742\u7684", " Complex", "\u590d\u6742", " complexes"], [" complex", " complexity", "complex", " complexities", " Complex", "\u590d\u6742\u7684", "\u590d\u6742", " complexes"], [" complex", " complexity", "complex", "\u590d\u6742\u7684", " complexities", "\u590d\u6742", " Complex", " Complexity"], [" complex", " complexity", "complex", "\u590d\u6742\u7684", "\u590d\u6742", " complexities", " multi", "Complex"], [" complex", " complexity", "complex", "\u590d\u6742\u7684", " complexities", " multi", "\u590d\u6742", "Complex"], [" complex", " complexity", "complex", "\u590d\u6742\u7684", " multiplayer", " multi", "\u590d\u6742", "Complex"], [" complex", "complex", "\u590d\u6742", "\u590d\u6742\u7684", " complexity", "Complex", " Complexity", "_complex"], [" complex", "complex", "Complex", " modular", "\u590d\u6742\u7684", " multiplayer", "\u590d\u6742", " complexity"], [" complex", " multit", " multiplayer", "complex", "Complex", " modular", " complexity", " multi"], [" multit", " multiplayer", " multi", " modular", " complex", "Complex", " architecture", "multi"], [" multiplayer", " multit", " architecture", " modular", " multi", " runtime", " ecosystem", " architectural"], [" plugin", "plugin", " Plugin", " multiplayer", " plugins", " multit", "-plugin", "Plugin"], [" plugin", "plugin", " Plugin", " plugins", "-plugin", "Plugin", "_plugin", "\u63d2\u4ef6"], [" plugin", "plugin", " Plugin", " desktop", " plugins", "-plugin", "Plugin", "_plugin"], [" architecture", " plugin", " desktop", " architectural", "plugin", " Plugin", "desktop", " architectures"], [" plugin", "plugin", " Plugin", " desktop", " plugins", ".plugin", "_plugin", "Plugin"], [" plugin", "plugin", " Plugin", " desktop", " plugins", "-plugin", ".plugin", " async"], [" plugin", " Plugin", " desktop", "plugin", "-plugin", " plugins", ".plugin", "_plugin"], [" plugin", " desktop", " async", " architecture", "plugin", ",", " Rust", " Plugin"]], "p": [[0.4538, 0.2752, 0.1147, 0.1013, 0.0165, 0.0057, 0.005, 0.0029], [0.2845, 0.2845, 0.2216, 0.0924, 0.0161, 0.0076, 0.0055, 0.0049], [0.7089, 0.2031, 0.0353, 0.0214, 0.0061, 0.0058, 0.0051, 0.0024], [0.0038, 0.0031, 0.0024, 0.0022, 0.0022, 0.002, 0.002, 0.002], [0.0076, 0.0056, 0.0056, 0.0053, 0.0049, 0.0046, 0.0041, 0.0038], [0.0115, 0.0101, 0.0061, 0.0058, 0.0054, 0.0045, 0.0027, 0.0026], [0.1234, 0.0483, 0.0312, 0.0201, 0.0178, 0.0178, 0.013, 0.0122], [0.039, 0.0105, 0.0077, 0.0072, 0.0064, 0.0064, 0.0044, 0.0044], [0.0282, 0.0194, 0.0171, 0.0171, 0.0071, 0.0063, 0.0052, 0.0049], [0.1153, 0.0352, 0.0242, 0.0147, 0.0122, 0.0057, 0.0057, 0.0048], [0.0995, 0.0603, 0.0441, 0.0119, 0.0105, 0.0105, 0.0105, 0.0072], [0.0898, 0.031, 0.0242, 0.0213, 0.0138, 0.0101, 0.0078, 0.0074], [0.1312, 0.0178, 0.0178, 0.0138, 0.0115, 0.0101, 0.0089, 0.0084], [0.0516, 0.0276, 0.026, 0.0148, 0.0115, 0.0108, 0.0084, 0.0084], [0.128, 0.0222, 0.0153, 0.0144, 0.0144, 0.0135, 0.0119, 0.0093], [0.1844, 0.0207, 0.0172, 0.0161, 0.0134, 0.0126, 0.0111, 0.0111], [0.1798, 0.0215, 0.0215, 0.0178, 0.0157, 0.0139, 0.0122, 0.0115], [0.1427, 0.0559, 0.0281, 0.0264, 0.0193, 0.0193, 0.016, 0.0125], [0.2223, 0.0927, 0.0678, 0.0249, 0.022, 0.0182, 0.0161, 0.0118], [0.2564, 0.0943, 0.069, 0.027, 0.0224, 0.0186, 0.0164, 0.0128], [0.2599, 0.1228, 0.0399, 0.0374, 0.0352, 0.0352, 0.0274, 0.0242], [0.0983, 0.0983, 0.0815, 0.0171, 0.0125, 0.0117, 0.0097, 0.0091], [0.3128, 0.1388, 0.0954, 0.0227, 0.0213, 0.0188, 0.0146, 0.0114], [0.7083, 0.0581, 0.0425, 0.0201, 0.0189, 0.0147, 0.0114, 0.0061], [0.554, 0.1587, 0.075, 0.0313, 0.0294, 0.0202, 0.0157, 0.009], [0.5155, 0.1896, 0.1303, 0.0156, 0.0137, 0.0121, 0.0107, 0.0069], [0.7097, 0.1088, 0.0848, 0.0108, 0.0084, 0.0048, 0.0048, 0.0037], [0.9222, 0.0191, 0.0124, 0.0058, 0.0048, 0.0018, 0.0017, 0.0015], [0.906, 0.0351, 0.0114, 0.0089, 0.0057, 0.0037, 0.0014, 0.0014], [0.8947, 0.0445, 0.0088, 0.005, 0.0044, 0.0027, 0.0018, 0.0015], [0.9445, 0.0153, 0.0034, 0.0027, 0.0025, 0.0018, 0.0012, 0.0012], [0.9498, 0.0099, 0.0044, 0.0021, 0.0016, 0.0013, 0.0012, 0.0011], [0.9378, 0.0172, 0.0036, 0.0025, 0.0019, 0.0015, 0.0012, 0.0012], [0.9014, 0.0509, 0.0069, 0.0042, 0.0039, 0.0037, 0.0015, 0.0012], [0.9163, 0.0517, 0.0102, 0.007, 0.0029, 0.0015, 0.0014, 0.0009], [0.9218, 0.0459, 0.0131, 0.0048, 0.0023, 0.002, 0.0018, 0.0012], [0.8916, 0.0732, 0.0144, 0.006, 0.0022, 0.0022, 0.002, 0.0017], [0.919, 0.0518, 0.0116, 0.0033, 0.0029, 0.002, 0.0014, 0.0012], [0.9485, 0.0325, 0.0082, 0.0024, 0.0018, 0.0016, 0.0013, 0.0008], [0.9534, 0.0254, 0.0106, 0.0024, 0.0018, 0.0018, 0.0009, 0.0008], [0.9447, 0.0323, 0.0105, 0.003, 0.0021, 0.0016, 0.0013, 0.0011], [0.9433, 0.0366, 0.0082, 0.0023, 0.0018, 0.0018, 0.0011, 0.001], [0.9551, 0.0288, 0.0064, 0.0024, 0.0014, 0.0013, 0.0011, 0.0007], [0.9305, 0.0463, 0.0103, 0.0023, 0.0023, 0.0018, 0.0016, 0.0014], [0.9588, 0.029, 0.005, 0.0014, 0.0009, 0.0009, 0.0007, 0.0007], [0.9561, 0.0255, 0.0073, 0.0018, 0.0014, 0.0014, 0.001, 0.001], [0.9056, 0.0579, 0.0146, 0.0042, 0.0033, 0.0025, 0.0015, 0.0009], [0.9099, 0.0453, 0.0167, 0.0054, 0.0037, 0.0037, 0.0033, 0.0018], [0.8447, 0.089, 0.0175, 0.0083, 0.0064, 0.005, 0.0039, 0.0024], [0.5157, 0.215, 0.048, 0.0291, 0.0227, 0.0176, 0.0176, 0.0156], [0.2978, 0.1594, 0.1242, 0.1242, 0.1096, 0.0853, 0.0115, 0.0079], [0.171, 0.1509, 0.1509, 0.0629, 0.0629, 0.0555, 0.0555, 0.049], [0.131, 0.131, 0.102, 0.09, 0.09, 0.0482, 0.0425, 0.0425], [0.2901, 0.176, 0.0647, 0.0445, 0.0393, 0.027, 0.027, 0.0238], [0.2772, 0.1905, 0.102, 0.0482, 0.0425, 0.0375, 0.0228, 0.0201], [0.6774, 0.063, 0.0337, 0.0298, 0.0298, 0.0205, 0.0205, 0.0141], [0.7616, 0.091, 0.0487, 0.0179, 0.0179, 0.0158, 0.0123, 0.004], [0.7964, 0.0654, 0.0449, 0.0165, 0.0146, 0.0129, 0.0114, 0.0061], [0.3378, 0.3378, 0.2049, 0.0277, 0.0168, 0.0168, 0.0079, 0.0062], [0.9528, 0.0224, 0.0082, 0.005, 0.0016, 0.0014, 0.0013, 0.0013], [0.9683, 0.0084, 0.0084, 0.0058, 0.0019, 0.0009, 0.0008, 0.0008], [0.9769, 0.0051, 0.0045, 0.004, 0.0017, 0.0015, 0.001, 0.0008], [0.9395, 0.0364, 0.0056, 0.0034, 0.0018, 0.0015, 0.0014, 0.0013]], "ranks": {"Rust": [32351, 56065, 57476, 85522, 25839, 29752, 55638, 59402, 72727, 43895, 33727, 40802, 41186, 68180, 53393, 32154, 44531, 65262, 99155, 94396, 103055, 120483, 115645, 75864, 58311, 63997, 40869, 22973, 22993, 26155, 22789, 23323, 23313, 41160, 35073, 39754, 27872, 23997, 17651, 18397, 9748, 7752, 7147, 10156, 13249, 13940, 15985, 16734, 14823, 22411, 54990, 37391, 7734, 1904, 1713, 478, 95, 69, 59, 23, 17, 16, 7]}}, {"pos": 471, "top": [[" \u2013", ".", "\u2013", " ", "\u2013and", ",", "..", "..\""], [" \u2013", "\u2013and", "\u2013", " *\u2013", " \u00b7", "\u6700\u65b0\u53d1\u5e03", "..\"", " \u2013,"], [" \u2013", "\u2013", "..\"", "\u2013and", "\u2026..", "..", " *\u2013", " \ud83d\ude42"], ["\u6700\u65b0\u53d1\u5e03", "*\u201c.", " Blowjob", " *\u2013", "~\":\"", " Plugin", " PLUGIN", " toolkit"], [" *@", " (@", " @", ":@", "@", ".@", "@\"", " \"@"], [":@", " (@", " *@", " @", " \u200b\u200b", "@g", "@", ".@"], [" ..", " *@", "..\"", " @", " ~~", " *", " *\u201c", " \u00b7"], [" *@", "..\"", " ..", " ~~", " *\"", " @", " *\u201c", "\u6700\u65b0\u53d1\u5e03"], ["..\"", " *@", " ..", " *\"", " *\u201c", " *\u2013", "..)", "[.."], ["..\"", " *@", "-\"", " *\u2013", " #\"", ":@", " *\"", "!\""], [" *@", "..\"", " @", " ..", " *\"", " #\"", " \u00b7", " ~~"], [" *@", " *_", " *", " ~~", " *\"", " *\u201c", " *\u2013", " toolkit"], [" *_", " *", " *@", " toolkit", " pipeline", " ~~", " showcase", " *\u2013"], [" showcase", " pipeline", " toolkit", "-style", " firmware", "-esque", " combo", " plugin"], [" showcase", "-style", " pipeline", " combo", "-esque", " toolkit", " software", " hardware"], [" showcase", "-esque", " pipeline", " toolkit", " combo", " tech", " centerpiece", "-style"], [" showcase", "-esque", " pipeline", " toolkit", " combo", " tech", " podcast", "-style"], [" pipeline", " showcase", " toolkit", "-esque", " combo", " *\u2013", "-style", " tech"], ["-esque", " pipeline", " toolkit", " showcase", " *\u2013", " combo", "-style", " &,"], [" &,", "-esque", " *\u2013", " pipeline", " toolkit", " *@", " combo", "-style"], [" *@", "<|endoftext|>", "@", " &,", " @", "&", " \u00b7", " #"], [" toolkit", " *@", " pipeline", " *&", " *))", " plugins", " plugin", " *\u2013"], [" toolkit", " pipeline", " *@", " plugins", " plugin", " ~~", " *&", " firmware"], [" --", " pipeline", " *@", " system", " combo", " toolkit", " ~~", " systems"], [" --", " ~~", " &,", " toolkit", " *@", "-esque", " pipeline", " system"], [" toolkit", " plugins", " firmware", " plugin", " frameworks", " workflows", " software", " ecosystem"], [" toolkit", " plugins", " plugin", " firmware", " software", " ecosystem", " systems", " frameworks"], [" software", " --", " system", " systems", " toolkit", " complex", " modular", " tech"], [" toolkit", " systems", " ..", " software", " system", " plugins", " modular", " plugin"], [" toolkit", " workflows", " plugins", " workflow", " ..", " frameworks", " ecosystem", " plugin"], [" ..", " ...", " systems", " workflows", " system", " toolkit", " frameworks", " workflow"], [" system", " systems", " complex", " ..", " technology", " program", " .", " software"], [" system", " systems", " complex", " .", " technology", " program", " software", " programs"], [" systems", " tech", " ecosystem", " system", " frameworks", " software", " complex", " technologies"], [" ecosystem", " tech", " software", " system", " systems", " frameworks", " modular", " complex"], [" software", " tech", " ecosystem", " complex", " modular", " system", " plugin", " systems"], [" software", " ecosystem", " modular", " plugin", " frameworks", " tech", " workflows", " complex"], [" software", " ecosystem", " modular", " plugin", " complex", " firmware", " interoper", " frameworks"], [" system", " systems", " ecosystem", " complex", " modular", " plugin", " software", " frameworks"], [" plugin", " ecosystem", " system", " frameworks", " modular", " plugins", " framework", " systems"], [" plugin", " ecosystem", " plugins", " software", " system", " workflows", " systems", " workflow"], [" system", " software", " ecosystem", " plugin", " plugins", " systems", " modular", " workflows"], [" software", " ecosystem", " system", " systems", " plugin", " plugins", " modular", " workflows"], [" system", " systems", " ecosystem", " software", " complex", " workflows", " modular", " plugin"], [" system", " systems", " ecosystem", " subsystem", " complex", " framework", " workflows", " software"], [" system", " ecosystem", " systems", " complex", " subsystem", " framework", " workflows", " modular"], [" system", " ecosystem", " systems", " workflows", " workflow", " framework", " complex", " subsystem"], [" ecosystem", " system", " systems", " workflows", " workflow", " framework", " complex", " frameworks"], [" system", " ecosystem", " systems", " framework", " workflows", " workflow", " functionality", " infrastructure"], [" ecosystem", " system", " workflows", " infrastructure", " workflow", " functionality", " interface", " framework"], [" ecosystem", " workflow", " infrastructure", " workflows", " interoper", " complexity", " interface", " toolkit"], [" ecosystem", " runtime", " architecture", " system", " infrastructure", " interface", " interoper", " framework"], [" ecosystem", " runtime", " architecture", " system", "\u751f\u6001\u7cfb\u7edf", " SDK", "-runtime", " plugin"], [" ecosystem", " architecture", " runtime", " plugin", " system", " architectures", " lifecycle", " sandbox"], [" ecosystem", " architecture", " runtime", " plugin", " system", "\u67b6\u6784", "/plugin", " infrastructure"], [" ecosystem", " runtime", " system", " architecture", " sandbox", "\u751f\u6001\u7cfb\u7edf", " subsystem", " lifecycle"], [" ecosystem", " runtime", " architecture", " sandbox", " system", " loader", "\u751f\u6001\u7cfb\u7edf", " lifecycle"], [" ecosystem", "\u751f\u6001\u7cfb\u7edf", " runtime", " architecture", " sandbox", " system", " infrastructure", " ecosystems"], [" architecture", "Architecture", "\u67b6\u6784", "architecture", " architectures", " ecosystem", " Architecture", " architectural"], [" architecture", " system", " ecosystem", " architectures", "Architecture", "architecture", "\u67b6\u6784", " Architecture"], [" ecosystem", " architecture", " system", " sandbox", " runtime", " API", "\u751f\u6001\u7cfb\u7edf", " ecology"], [" architecture", " ecosystem", " system", " sandbox", " API", " runtime", " engine", " ABI"], [" architecture", " system", " ecosystem", " sandbox", " API", " engine", " runtime", " ABI"]], "p": [[0.7586, 0.0585, 0.0428, 0.0157, 0.0108, 0.0095, 0.0066, 0.0054], [0.6835, 0.072, 0.041, 0.0182, 0.0182, 0.0104, 0.0097, 0.0063], [0.3006, 0.2653, 0.142, 0.1253, 0.0359, 0.0218, 0.0117, 0.0075], [0.054, 0.0073, 0.0047, 0.0044, 0.0035, 0.0024, 0.0022, 0.0021], [0.3218, 0.1184, 0.0675, 0.0299, 0.016, 0.0151, 0.0151, 0.0125], [0.0531, 0.0303, 0.0236, 0.0236, 0.0162, 0.0152, 0.0134, 0.0087], [0.2164, 0.1397, 0.0796, 0.0748, 0.0426, 0.04, 0.04, 0.0312], [0.2668, 0.1952, 0.0866, 0.0339, 0.0248, 0.016, 0.0141, 0.0133], [0.4347, 0.1702, 0.038, 0.0261, 0.0245, 0.014, 0.0109, 0.0109], [0.3405, 0.076, 0.0232, 0.0141, 0.0132, 0.0132, 0.0117, 0.0117], [0.1881, 0.166, 0.0476, 0.0447, 0.0211, 0.0211, 0.0164, 0.0154], [0.1309, 0.0794, 0.0746, 0.0375, 0.0311, 0.0311, 0.0166, 0.0074], [0.0281, 0.0205, 0.017, 0.0141, 0.0141, 0.0117, 0.0117, 0.011], [0.0214, 0.0201, 0.0177, 0.0166, 0.0084, 0.0069, 0.0035, 0.0033], [0.0288, 0.0174, 0.0154, 0.0093, 0.0088, 0.0057, 0.0041, 0.0039], [0.0305, 0.0144, 0.012, 0.0093, 0.0082, 0.0064, 0.0064, 0.0047], [0.0312, 0.0178, 0.0178, 0.013, 0.0084, 0.007, 0.0042, 0.004], [0.0275, 0.0258, 0.0214, 0.0167, 0.0084, 0.0074, 0.0061, 0.0054], [0.0324, 0.0185, 0.0127, 0.0119, 0.0099, 0.0093, 0.0068, 0.0056], [0.0365, 0.0251, 0.0119, 0.0119, 0.0111, 0.0111, 0.0092, 0.0087], [0.0607, 0.057, 0.0444, 0.0417, 0.0269, 0.0223, 0.0119, 0.0105], [0.0215, 0.0157, 0.0157, 0.0108, 0.0102, 0.0084, 0.007, 0.0062], [0.023, 0.0203, 0.0179, 0.0115, 0.0108, 0.009, 0.0084, 0.007], [0.0276, 0.0108, 0.0101, 0.0084, 0.0079, 0.007, 0.0058, 0.0048], [0.0454, 0.0157, 0.0157, 0.0157, 0.0147, 0.0101, 0.0095, 0.0079], [0.1042, 0.0632, 0.0318, 0.0299, 0.0218, 0.015, 0.015, 0.0141], [0.1041, 0.0492, 0.028, 0.0263, 0.0263, 0.0141, 0.0132, 0.011], [0.0438, 0.0411, 0.0386, 0.0363, 0.0171, 0.0171, 0.0125, 0.0111], [0.0484, 0.0454, 0.0401, 0.0401, 0.0332, 0.0229, 0.0167, 0.0167], [0.0516, 0.0355, 0.0294, 0.0276, 0.0244, 0.0229, 0.0215, 0.019], [0.1448, 0.0415, 0.0344, 0.0209, 0.0196, 0.0196, 0.0153, 0.0135], [0.0718, 0.0633, 0.0384, 0.0219, 0.0206, 0.0193, 0.0181, 0.015], [0.0974, 0.0669, 0.0629, 0.0297, 0.0217, 0.0159, 0.0149, 0.014], [0.041, 0.0385, 0.0362, 0.0319, 0.0282, 0.0265, 0.0265, 0.0219], [0.0707, 0.0624, 0.0277, 0.0244, 0.0229, 0.0216, 0.0216, 0.0203], [0.0521, 0.0316, 0.0297, 0.0262, 0.0262, 0.0159, 0.0124, 0.0124], [0.057, 0.0472, 0.0417, 0.0223, 0.021, 0.021, 0.0185, 0.0185], [0.0624, 0.0517, 0.0334, 0.0314, 0.0314, 0.0244, 0.0244, 0.023], [0.1188, 0.0677, 0.0677, 0.0636, 0.0597, 0.0527, 0.0437, 0.0265], [0.1002, 0.1002, 0.0571, 0.0504, 0.0474, 0.0474, 0.0393, 0.0369], [0.1335, 0.0917, 0.0862, 0.0714, 0.0592, 0.0359, 0.0317, 0.0298], [0.1112, 0.1112, 0.0866, 0.0765, 0.0765, 0.0765, 0.0299, 0.0281], [0.1014, 0.0895, 0.079, 0.0697, 0.0578, 0.0578, 0.0479, 0.035], [0.1322, 0.0967, 0.0853, 0.0486, 0.0356, 0.0334, 0.0334, 0.0277], [0.3661, 0.1729, 0.0817, 0.0265, 0.0207, 0.0207, 0.0194, 0.0194], [0.332, 0.1221, 0.0839, 0.0422, 0.029, 0.0199, 0.0187, 0.0187], [0.2273, 0.1562, 0.0738, 0.0612, 0.0371, 0.0271, 0.0271, 0.024], [0.1959, 0.1959, 0.0636, 0.0437, 0.032, 0.0282, 0.0194, 0.0133], [0.2016, 0.1302, 0.0615, 0.0309, 0.0241, 0.02, 0.0188, 0.0188], [0.2059, 0.0554, 0.0316, 0.0316, 0.0316, 0.0279, 0.0231, 0.0204], [0.3319, 0.024, 0.0226, 0.0212, 0.0199, 0.0155, 0.0114, 0.0094], [0.5564, 0.023, 0.023, 0.0168, 0.0131, 0.0123, 0.0102, 0.009], [0.7433, 0.037, 0.0327, 0.0094, 0.0078, 0.005, 0.0042, 0.0039], [0.6033, 0.0925, 0.0386, 0.0125, 0.0118, 0.0092, 0.0071, 0.0067], [0.4846, 0.1573, 0.1388, 0.0351, 0.0273, 0.0114, 0.0114, 0.0101], [0.664, 0.07, 0.0618, 0.0481, 0.0156, 0.0122, 0.0095, 0.0084], [0.6821, 0.0634, 0.0436, 0.0385, 0.0206, 0.0125, 0.0125, 0.0097], [0.9245, 0.0192, 0.0132, 0.0091, 0.0062, 0.0062, 0.0018, 0.0016], [0.9635, 0.0107, 0.0094, 0.0065, 0.0039, 0.0027, 0.0024, 0.0002], [0.8643, 0.0911, 0.023, 0.004, 0.0035, 0.0035, 0.0017, 0.0015], [0.4881, 0.4308, 0.0401, 0.0243, 0.0029, 0.0026, 0.0014, 0.0011], [0.5228, 0.3171, 0.0908, 0.0429, 0.004, 0.0035, 0.0021, 0.001], [0.6426, 0.1841, 0.1434, 0.0081, 0.0046, 0.0025, 0.002, 0.0013]], "ranks": {"Rust": [67186, 142253, 136180, 142639, 38569, 37818, 84276, 79607, 67105, 64323, 53393, 80994, 82078, 50411, 48204, 34575, 48606, 100722, 93617, 82667, 97127, 99625, 116836, 90971, 96636, 97495, 93959, 37159, 46767, 66192, 35348, 31571, 31464, 68832, 56091, 53542, 37047, 33950, 36282, 66248, 65623, 62389, 86615, 80549, 63685, 57663, 37555, 31654, 28177, 33026, 54404, 57660, 13612, 12996, 15374, 9881, 2935, 1676, 994, 841, 347, 405, 578]}}, {"pos": 472, "top": [[".", ",", " \u2013", "\u2013", "\u00a0", "\u00a0\u00a0", " ", ";"], [" \u2013", "  \n\n", "  \n", "\u2013", " \u2013**", "   \n", " \u200b\u200b", " very"], ["\u2013", " \u2013", ".", ",", "\u2026", "\u2013and", ";", "\u2026.."], ["\uff1a**", " **:**", " Shemale", " YYS", "\ufffd\ufffd", " \u041a\u0440\u0430\u0441\u0438", " cumshot", "ympi"], ["  \n\n", "ality", "ed", "\u2014\u2014", "\u30ba", "  \n", "arity", " System"], ["\u2014\u2014", "  \n\n", "\uff1a", "  \n", "\u30ba", " \u200b\u200b", "ed", " System"], ["  \n\n", "  \n", "\u2014\u2014", " **", " _", " \u2014\u2014", "\uff1a", " *"], ["  \n\n", "  \n", " **", "\u2014\u2014", " _", "._", "ality", "   \n"], ["  \n\n", "  \n", "\u2014\u2014", " \n\n", " [...]", "   \n\n", ".", "   \n"], ["  \n", "  \n\n", "._", ",", ".\\", " _", "ality", "\u2013"], ["  \n\n", " _", "  \n", "._", ".\\", " **", "&nbsp", "\\n"], [" **", " _", "._", " frameworks", " **#", "ality", " framework", " *"], [" **", " _", " framework", " frameworks", " system", "ality", " complex", " organized"], [" largely", " complex", " alongside", " frameworks", " framework", " system", " infrastructure", " organized"], [" ", " largely", " alongside", " complex", " through", " via", "  \n\n", " developed"], [" alongside", " through", " via", " utilizing", " system", " largely", " utilized", " organized"], [" via", " alongside", " largely", " utilizing", " akin", " utilized", " through", " complex"], [" alongside", " akin", " leveraging", " overarching", " tasked", " via", " largely", " utilizing"], [" alongside", " akin", " largely", " complex", " overarching", " via", " foundational", " leveraging"], [" alongside", " largely", " akin", " overarching", " complex", " arguably", " foundational", " ultimately"], ["  \n\n", " \n\n", "<|endoftext|>", " alongside", "   \n\n", "\n\n", " akin", " largely"], [" alongside", " **", " akin", " orchestrated", " foundational", " leveraging", " complex", " overarching"], [" alongside", " akin", " complex", " largely", " **", " foundational", " overarching", " orchestrated"], [" alongside", " \n\n", " complex", " largely", " _", "  \n\n", " ultimately", " **"], [" \n\n", "  \n\n", "\n\n", "   \n\n", " \r\n\r\n", " _", "\r\n\r\n", " alongside"], [" \n\n", " **", "  \n\n", " complex", " leveraging", " complexities", " frameworks", " foundational"], [" \n\n", "  \n\n", " complex", "\n\n", " alongside", " leveraging", " complexities", " intricate"], [" \n\n", "\n\n", "  \n\n", "   \n\n", " complex", " _", " \r\n\r\n", "\r\n\r\n"], [" \n\n", "  \n\n", "\n\n", " complex", "   \n\n", " .", " \r\n\r\n", " intricate"], [" \n\n", "  \n\n", " complex", " .", " ...", "   \n\n", " complexity", " intricate"], [" \n\n", " .", "  \n\n", " complex", " ...", " \n", " **", " ,"], [" .", " complex", " \n\n", " ,", " for", " alongside", " system", " heavily"], [" .", " complex", " complexity", " .**", " complicated", " intricate", "  \n\n", " technology"], [" complex", " .", " complexity", "  \n\n", " intricate", " \n\n", " complicated", " uniquely"], [" complex", " complexity", "  \n\n", " .", " intricate", " complexities", " seamlessly", " \n\n"], [" complex", "  \n\n", " \n\n", " .", " complexity", " complicated", " .\"", "complex"], [" complex", " complexity", " .", " seamlessly", " complicated", " complexities", "complex", " notoriously"], [" complex", " complexity", " seamlessly", " complicated", " .", " complexities", "complex", " requiring"], [" complex", " complexity", " seamlessly", " complicated", " complexities", " requiring", " intricate", " notoriously"], [" complex", " complexity", " seamlessly", " unpredictable", " complicated", " fragmented", " hardware", " requiring"], [" complex", " complexity", " hardware", " seamlessly", " tech", " technology", " complicated", " software"], [" complex", " complexity", " hardware", " seamlessly", " technology", " software", " complexities", " complicated"], [" complex", " complexity", " hardware", " seamlessly", " software", " technology", " complicated", " systems"], [" complex", " complexity", " complicated", " complexities", " seamlessly", " technology", " systems", " hardware"], [" complex", " complexity", " complicated", " simultaneously", " seamlessly", " complexities", " impossible", " hardware"], [" complex", " complexity", " simultaneously", " seamlessly", " complicated", " impossible", " complexities", " hardware"], [" complex", " complexity", " seamlessly", " simultaneously", " complexities", " impossible", " potentially", " complic"], [" complex", " potentially", " complexity", " impossible", " without", ".\"", ".\\", " arguably"], [".", ".**", ".\\", "\u2014a", " impossible", " without", " complexity", ".\""], [".", ".\"", ".**", ".\\", " without", "\u2014a", " complexity", " impossible"], [".", ".**", "().", ".\\", "+.", "++.", ".\"", "\u2014all"], [".**", ".", "().", "**.", ".\"", "\u2014all", ".*", "+."], [".**", ".", "\u2014all", "**.", "().", "++.", "*.", "+."], [".**", ".", "\u2014all", ".\\", ".*", "++.", "().", "**."], ["\u2014all", ".**", ".", "++.", ".*", "\u2014that", " overhead", ".\\"], [".**", "\u2014all", ".", ".\\", " that", "\u2014that", ".*", " overhead"], [".**", ".", "\u2014all", "++.", "**.", " overhead", "\u2014that", " that"], [".", ".**", "\u2014all", " that", "\u2014that", "++.", "**.", " That"], [".", "\u2014all", " that", ".**", " That", "\u2014that", "++.", "that"], [".", " that", "\u2014all", " That", "\u2014that", ".**", "\n\n", "that"], [".", "\u2014all", " that", "\n\n", "\u2014that", ".**", "\u2014a", " That"], [".", " that", "\u2014all", "\n\n", ".**", ",", "\u2014that", " That"], [".", " that", ",", ".**", "\u2014all", "\u2014that", "\u2014", " and"]], "p": [[0.8376, 0.0688, 0.0535, 0.0153, 0.0044, 0.0041, 0.0025, 0.002], [0.6621, 0.0273, 0.0273, 0.0156, 0.0031, 0.0024, 0.002, 0.0014], [0.4732, 0.4732, 0.0208, 0.0208, 0.0023, 0.0013, 0.001, 0.0008], [0.0045, 0.0027, 0.0026, 0.0024, 0.0021, 0.0019, 0.0019, 0.0019], [0.0347, 0.0106, 0.0088, 0.0053, 0.0053, 0.0041, 0.0039, 0.0039], [0.0093, 0.0093, 0.0064, 0.0056, 0.0047, 0.0047, 0.0044, 0.0034], [0.4553, 0.2761, 0.1675, 0.0078, 0.0039, 0.0033, 0.0031, 0.0024], [0.3429, 0.2843, 0.0526, 0.0182, 0.0182, 0.0081, 0.0071, 0.0046], [0.8075, 0.1238, 0.0115, 0.0027, 0.002, 0.002, 0.0018, 0.0015], [0.0547, 0.0514, 0.0214, 0.0167, 0.0157, 0.0108, 0.0079, 0.0074], [0.481, 0.0738, 0.0693, 0.0574, 0.0175, 0.0145, 0.0073, 0.0064], [0.6509, 0.0416, 0.0127, 0.0087, 0.005, 0.005, 0.0047, 0.0019], [0.1335, 0.0359, 0.011, 0.011, 0.011, 0.011, 0.0097, 0.0071], [0.0185, 0.0112, 0.0112, 0.0106, 0.0106, 0.0093, 0.0088, 0.0082], [0.0614, 0.024, 0.0212, 0.0155, 0.0107, 0.0078, 0.0073, 0.0065], [0.0281, 0.0193, 0.0181, 0.017, 0.015, 0.011, 0.0103, 0.0091], [0.0287, 0.027, 0.0254, 0.0254, 0.0238, 0.0145, 0.0106, 0.0093], [0.0449, 0.0328, 0.0256, 0.024, 0.0187, 0.0187, 0.0165, 0.0146], [0.0798, 0.0294, 0.0259, 0.019, 0.0139, 0.0139, 0.0115, 0.0108], [0.1501, 0.0458, 0.0404, 0.023, 0.0123, 0.0116, 0.0109, 0.0096], [0.4722, 0.4167, 0.0564, 0.0056, 0.0028, 0.0022, 0.0012, 0.0012], [0.0389, 0.0343, 0.0119, 0.0119, 0.0105, 0.0098, 0.0087, 0.0081], [0.0786, 0.0225, 0.0199, 0.0175, 0.0137, 0.0121, 0.0113, 0.0094], [0.0594, 0.0558, 0.028, 0.0263, 0.0233, 0.015, 0.0141, 0.011], [0.7637, 0.2188, 0.0066, 0.0033, 0.0012, 0.0004, 0.0002, 0.0002], [0.2503, 0.1182, 0.0633, 0.017, 0.0141, 0.0117, 0.008, 0.0076], [0.4423, 0.0562, 0.0363, 0.0194, 0.0111, 0.0104, 0.0098, 0.0071], [0.7345, 0.1446, 0.1126, 0.0007, 0.0006, 0.0004, 0.0003, 0.0002], [0.7609, 0.1924, 0.0379, 0.0015, 0.0012, 0.0004, 0.0003, 0.0002], [0.5751, 0.1648, 0.0882, 0.0269, 0.0093, 0.0041, 0.0028, 0.0027], [0.5145, 0.243, 0.0789, 0.0509, 0.0137, 0.0027, 0.0022, 0.0017], [0.2768, 0.2768, 0.0156, 0.0069, 0.0069, 0.0069, 0.0069, 0.0065], [0.328, 0.2555, 0.0112, 0.0082, 0.0077, 0.0077, 0.0039, 0.0039], [0.41, 0.046, 0.0149, 0.0109, 0.0096, 0.0096, 0.0096, 0.0071], [0.3218, 0.0361, 0.0339, 0.0206, 0.0151, 0.0133, 0.0133, 0.0125], [0.1976, 0.1199, 0.0877, 0.0877, 0.0236, 0.0087, 0.0087, 0.0087], [0.2782, 0.0483, 0.0275, 0.0189, 0.0167, 0.0122, 0.0108, 0.0089], [0.2918, 0.0612, 0.0211, 0.0175, 0.0113, 0.0106, 0.0106, 0.0078], [0.3156, 0.0548, 0.0312, 0.0157, 0.0115, 0.0108, 0.0074, 0.007], [0.2585, 0.0372, 0.0226, 0.0114, 0.01, 0.0088, 0.0078, 0.0078], [0.2763, 0.0351, 0.0166, 0.0146, 0.0121, 0.0121, 0.0101, 0.0101], [0.2649, 0.049, 0.0297, 0.0192, 0.0159, 0.0159, 0.0109, 0.0109], [0.3978, 0.0538, 0.0239, 0.0164, 0.0128, 0.0128, 0.0113, 0.0106], [0.4055, 0.0905, 0.0157, 0.0148, 0.0139, 0.0102, 0.009, 0.009], [0.4373, 0.0671, 0.0205, 0.0141, 0.0103, 0.0085, 0.008, 0.0071], [0.4559, 0.048, 0.0213, 0.0147, 0.0107, 0.0101, 0.0089, 0.0061], [0.2793, 0.0852, 0.0277, 0.0202, 0.0179, 0.0168, 0.0148, 0.0131], [0.1049, 0.0817, 0.0598, 0.0528, 0.032, 0.0249, 0.022, 0.0194], [0.2127, 0.0572, 0.0538, 0.0419, 0.0347, 0.0347, 0.0326, 0.0326], [0.48, 0.0834, 0.0834, 0.0446, 0.0327, 0.0106, 0.0094, 0.0083], [0.2627, 0.2627, 0.0429, 0.0356, 0.0356, 0.0334, 0.0277, 0.0179], [0.4295, 0.179, 0.0453, 0.0311, 0.0275, 0.0258, 0.0258, 0.0228], [0.4123, 0.2834, 0.036, 0.0338, 0.0219, 0.0133, 0.0125, 0.0117], [0.3281, 0.2255, 0.0392, 0.0253, 0.0223, 0.0223, 0.0163, 0.0153], [0.1755, 0.1549, 0.0444, 0.0368, 0.0269, 0.0223, 0.021, 0.0174], [0.3293, 0.1373, 0.0446, 0.0224, 0.0211, 0.0198, 0.0198, 0.0175], [0.2811, 0.1328, 0.0757, 0.0191, 0.018, 0.0124, 0.0096, 0.009], [0.2796, 0.1496, 0.1321, 0.0229, 0.019, 0.019, 0.0131, 0.0123], [0.3748, 0.177, 0.0651, 0.0612, 0.0271, 0.0187, 0.0113, 0.0083], [0.531, 0.1724, 0.1724, 0.0151, 0.0125, 0.0086, 0.0046, 0.0036], [0.9341, 0.022, 0.0194, 0.0041, 0.0023, 0.0017, 0.0011, 0.001], [0.9907, 0.0052, 0.0015, 0.0004, 0.0003, 0.0001, 0.0001, 0.0001], [0.9998, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [82105, 132732, 92080, 89216, 42958, 50996, 95015, 89631, 115709, 77300, 86936, 113162, 45759, 49289, 30885, 23766, 36664, 100548, 117071, 108763, 124049, 149094, 123069, 83851, 72057, 110118, 62435, 30634, 20613, 20032, 16045, 14167, 13900, 16254, 20926, 21225, 14830, 12543, 10607, 11920, 7690, 5886, 4948, 6687, 4376, 3659, 2276, 2416, 1050, 557, 482, 788, 1302, 1687, 1001, 849, 329, 128, 70, 12, 10, 16, 25]}}, {"pos": 473, "top": [[" \u2013", ".", ",", "\u2013", ";", "\u00a0\u00a0", "\u2026.", "\u00a0"], [" \u2013", "\u2013", "\u2013and", " \u200b\u200b", " \u2013,", ",", ".", "\u2013\u2013"], ["\u2013", " \u2013", "\u2026..", "\u2026.", "\u2013and", "\u2026", ".", ","], [" milfs", " Shemale", " Blowjob", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "-------------</", "----------</", " ;;^", " cumshot"], [" \u041a\u0440\u0430\u0441\u0438", ":@", " \u0628\u0648\u062a\u064a\u0646", " cittadin", "\u65b0\u52a0\u5761", " CSG", "\u2193\u2193", "_intf"], ["<|quad_end|>", "arren", "fst", " \u0628\u0648\u062a\u064a\u0646", "\u6cd5\u62c9", " Celebrity", "!:", "\u65b0\u52a0\u5761"], ["  \n\n", " \n\n", "<|endoftext|>", "\n\n", "   \n\n", "  \n", "    \n\n", "     \n\n"], [" \n\n", "   \n\n", "  \n\n", "    \n\n", "     \n\n", "       \n\n", " \r\n\r\n", "      \n\n"], [" \n\n", "  \n\n", "   \n\n", "    \n\n", "     \n\n", "\n\n", "\t\n\n", " \n\n\n"], ["Whilst", "\u62e5\u6709\u7740", "   \n\n", "\u51ed\u501f\u7740", "\u8ba4\u8ba4\u771f", "<|quad_end|>", "\u63d0\u4f9b\u66f4\u52a0", "\u5468\u906d"], ["<|endoftext|>", " \n\n", "  \n\n", " swiftly", "   \n\n", "\u00a0", " arguably", "  \n  \n"], ["\u62e5\u6709\u7740", " **", " complexities", "\u5c55\u73b0\u51fa\u4e86", " leveraging", " swiftly", " arguably", " advancements"], [" swiftly", " overarching", " complexities", " arguably", " leveraging", "\u62e5\u6709\u7740", " incredibly", " nuanced"], ["\u62e5\u6709\u7740", " swiftly", " overarching", "\u51ed\u501f\u7740", " arguably", " leveraging", "\u5468\u906d", " entirety"], [" \n\n", " arguably", " swiftly", "  \n\n", " overarching", " \r\n\r\n", "\u62e5\u6709\u7740", "\u5373\u4fbf"], ["\u62e5\u6709\u7740", " overarching", "\u51ed\u501f\u7740", " transitioning", "\u5468\u906d", " swiftly", " arguably", " leveraging"], [" overarching", " entirety", "\u62e5\u6709\u7740", " arguably", " transitioning", "\u51ed\u501f\u7740", " leveraging", "<|endoftext|>"], ["\u62e5\u6709\u7740", "<|endoftext|>", " overarching", " entirety", " \n\n", " \r\n\r\n", " arguably", "  \n\n"], [" arguably", "<|endoftext|>", "\u62e5\u6709\u7740", " entirety", " myriad", " overarching", " swiftly", " incredibly"], ["<|endoftext|>", "\n\n", " arguably", " myriad", " swiftly", " \n\n", "\u5373\u4fbf", "  \n\n"], ["<|endoftext|>", "\n\n", " \n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", "<|file_sep|>", "   \n\n"], ["\n\n", " arguably", " swiftly", "\r\n\r\n", "\u62e5\u6709\u7740", " myriad", "<|endoftext|>", "\u5373\u4fbf"], ["<|endoftext|>", "\n\n", "\r\n\r\n", " \n\n", " swiftly", " arguably", " myriad", " \r\n\r\n"], ["<|endoftext|>", "\n\n", "\r\n\r\n", " \n\n", "  \n\n", " \r\n\r\n", " myriad", " swiftly"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", "<|endoftext|>", "   \n\n", "<|im_end|>"], ["\r\n\r\n", " \n\n", " \r\n\r\n", "\n\n", "  \n\n", "\t\n\n", "...**", "   \n\n"], ["\n\n", " \n\n", "\r\n\r\n", "  \n\n", " \r\n\r\n", "\t\n\n", "<|endoftext|>", "   \n\n"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", "<|endoftext|>", "   \n\n", "\t\n\n"], ["  \n\n", " \n\n", "\n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", "<|endoftext|>", "\t\n\n"], ["  \n\n", " \n\n", " \r\n\r\n", "\n\n", "\r\n\r\n", "   \n\n", "<|endoftext|>", "  \r\n\r\n"], [" \n\n", "  \n\n", "<|endoftext|>", "\n\n", " arguably", "\r\n\r\n", " incredibly", "   \n\n"], ["  \n\n", " \n\n", "<|endoftext|>", " incredibly", " heavily", "\n\n", " focused", " arguably"], [" incredibly", " **", "  \n\n", " heavily", " relentless", " leveraging", " struggles", " complexity"], [" incredibly", " relentless", " heavily", " drastically", " aggressively", " leveraging", " arguably", " priorit"], ["<|endoftext|>", " incredibly", " relentless", "  \n\n", " brutal", " relentlessly", " drastically", " aggressively"], ["<|endoftext|>", "  \n\n", " relentless", " brutal", " incredibly", " relentlessly", " brutally", " aggressively"], [" brutal", " relentless", " brutally", " relentlessly", " incredibly", " aggressively", " ridiculously", " insanely"], [" relentless", " brutal", " incredibly", " brutally", " relentlessly", " insanely", " ridiculously", " desperately"], [" brutal", " relentless", " brutally", " incredibly", " impossible", " relentlessly", " insanely", " desperation"], [" brutal", " relentless", " brutally", " impossible", " incredibly", " insanely", " desperation", " relentlessly"], [" brutal", " relentless", " brutally", " incredibly", " impossible", " desperation", " desperately", " insanely"], [" desperation", " brutal", " brutally", " relentless", " desperately", " aggressively", " relentlessly", " desperate"], [" brutal", " desperation", " brutally", " aggressively", " relentless", " ruthless", " relentlessly", " desperately"], [" desperation", " brutal", " brutally", " desperately", " desperate", " relentless", " impossible", " ruthless"], [" desperation", " brutal", " brutally", " impossible", " desperately", " relentless", " desperate", " dangerously"], [" brutal", " desperation", " brutally", " desperately", " dangerously", " impossible", " relentless", " aggressively"], ["  \n\n", " brutal", " desperately", " desperation", " brutally", " dangerously", " inevitable", " \n\n"], ["  \n\n", "\n\n", " \n\n", " desperately", " inevitable", " brutal", " aggressively", " desperation"], ["  \n\n", "\n\n", " \n\n", "\u5927\u6982\u7387", " desperation", " brutal", " inevitable", " ruthless"], ["\n\n", "  \n\n", " \n\n", "   \n\n", "\u5927\u6982\u7387", "\t\n\n", "    \n\n", " desperation"], ["\n\n", " \n\n", "  \n\n", "   \n\n", "\t\n\n", "    \n\n", "\u5927\u6982\u7387", "     \n\n"], ["\n\n", " \n\n", "  \n\n", "   \n\n", "    \n\n", "\t\n\n", "\r\n\r\n", "     \n\n"], ["\n\n", " \n\n", "  \n\n", "   \n\n", "    \n\n", " **", "\u5927\u6982\u7387", " **\""], ["\n\n", "  \n\n", " \n\n", "   \n\n", " sanity", " realism", "\u5927\u6982\u7387", "    \n\n"], ["\n\n", " expect", " Expect", "expect", " expectation", "Expect", " \n\n", " expects"], ["\n\n", " expect", " Expect", "expect", " expectation", "Expect", " \n\n", " buckle"], ["\n\n", " Expect", " \n\n", " expect", "  \n\n", "expect", "Expect", " This"], ["\n\n", " \n\n", " Expect", " expect", "  \n\n", " buckle", "expect", " This"], ["\n\n", " This", " \n\n", " Expect", " expect", "  \n\n", " buckle", "Expect"], ["\n\n", " This", " \n\n", " Expect", " expect", " this", "  \n\n", " buckle"], ["\n\n", " This", " \n\n", " Expect", "  \n\n", " expect", " buckle", " this"], ["\n\n", " This", " \n\n", " Expect", "  \n\n", " **", " expect", " Rust"], [" This", "\n\n", " Expect", " If", " Most", " Move", " The", " Rust"]], "p": [[0.5952, 0.2811, 0.0554, 0.0489, 0.004, 0.0018, 0.0017, 0.0015], [0.3144, 0.0453, 0.0084, 0.0027, 0.0024, 0.0015, 0.0014, 0.0013], [0.6308, 0.1242, 0.1096, 0.0216, 0.0216, 0.0168, 0.0158, 0.0116], [0.015, 0.0086, 0.0071, 0.0052, 0.0049, 0.0038, 0.0038, 0.0036], [0.0029, 0.0014, 0.0014, 0.0014, 0.0013, 0.0013, 0.0012, 0.0011], [0.0045, 0.0012, 0.0012, 0.001, 0.0009, 0.0006, 0.0006, 0.0006], [0.4678, 0.221, 0.1832, 0.0206, 0.0193, 0.0063, 0.0043, 0.003], [0.3376, 0.263, 0.2321, 0.0314, 0.0179, 0.009, 0.0079, 0.0051], [0.7797, 0.1196, 0.0725, 0.0098, 0.0032, 0.0026, 0.0023, 0.0014], [0.0043, 0.0036, 0.0018, 0.0016, 0.0012, 0.0012, 0.0012, 0.001], [0.0268, 0.0268, 0.0173, 0.0144, 0.0112, 0.0087, 0.0064, 0.0047], [0.0042, 0.004, 0.0033, 0.0021, 0.002, 0.0019, 0.0018, 0.0017], [0.0086, 0.0081, 0.0052, 0.0052, 0.0038, 0.003, 0.003, 0.0018], [0.0073, 0.0053, 0.0034, 0.0022, 0.0021, 0.002, 0.002, 0.0017], [0.0168, 0.0102, 0.0096, 0.0055, 0.0051, 0.0051, 0.0048, 0.0038], [0.0154, 0.0078, 0.0073, 0.0044, 0.0039, 0.0039, 0.0034, 0.003], [0.0296, 0.0231, 0.0204, 0.0191, 0.0159, 0.0075, 0.0075, 0.0062], [0.0298, 0.0247, 0.0205, 0.0205, 0.0192, 0.0181, 0.017, 0.0159], [0.0444, 0.0325, 0.0223, 0.0163, 0.0144, 0.0112, 0.0099, 0.0093], [0.7452, 0.012, 0.0061, 0.0039, 0.0035, 0.0029, 0.0025, 0.0025], [0.9882, 0.0085, 0.0014, 0.0007, 0.0001, 0.0, 0.0, 0.0], [0.0387, 0.0194, 0.0142, 0.0142, 0.0142, 0.0104, 0.0092, 0.0086], [0.2844, 0.1262, 0.0249, 0.0194, 0.0151, 0.0125, 0.011, 0.0067], [0.6378, 0.2346, 0.015, 0.0141, 0.0043, 0.003, 0.0024, 0.002], [0.6732, 0.1326, 0.0911, 0.0626, 0.0203, 0.0055, 0.0031, 0.0021], [0.2649, 0.1418, 0.1332, 0.1175, 0.1175, 0.0124, 0.0109, 0.0075], [0.5605, 0.1417, 0.1104, 0.1104, 0.0279, 0.0043, 0.0031, 0.0026], [0.7685, 0.1335, 0.0715, 0.0141, 0.004, 0.0018, 0.0008, 0.0005], [0.3238, 0.3238, 0.2225, 0.0497, 0.0363, 0.0046, 0.0034, 0.0017], [0.5862, 0.3556, 0.0147, 0.0089, 0.0069, 0.0054, 0.0015, 0.001], [0.419, 0.3263, 0.12, 0.0567, 0.0041, 0.0036, 0.0034, 0.0032], [0.2316, 0.2044, 0.1239, 0.0402, 0.0334, 0.0202, 0.0123, 0.0074], [0.1291, 0.0573, 0.0446, 0.037, 0.0271, 0.0224, 0.0186, 0.0154], [0.0381, 0.0279, 0.0231, 0.018, 0.0159, 0.0149, 0.0124, 0.0124], [0.0498, 0.0468, 0.0413, 0.0143, 0.0134, 0.0126, 0.0098, 0.0098], [0.7555, 0.062, 0.0138, 0.0089, 0.0084, 0.0048, 0.0045, 0.0027], [0.0932, 0.0823, 0.0566, 0.0343, 0.0303, 0.0236, 0.0184, 0.0172], [0.0954, 0.0698, 0.051, 0.048, 0.0398, 0.0273, 0.0241, 0.0213], [0.0703, 0.0703, 0.0515, 0.0454, 0.0427, 0.0312, 0.0293, 0.0259], [0.0848, 0.0583, 0.0583, 0.0376, 0.0332, 0.0312, 0.0275, 0.0259], [0.1115, 0.0495, 0.0436, 0.0319, 0.0319, 0.0282, 0.0265, 0.0219], [0.0699, 0.0657, 0.0452, 0.0399, 0.0352, 0.0292, 0.0257, 0.0213], [0.0937, 0.073, 0.0568, 0.0416, 0.0391, 0.0324, 0.0268, 0.0268], [0.114, 0.0888, 0.0783, 0.0506, 0.0419, 0.0327, 0.0271, 0.0224], [0.0636, 0.0561, 0.0437, 0.041, 0.0385, 0.03, 0.022, 0.0194], [0.0576, 0.0508, 0.0448, 0.0308, 0.029, 0.0256, 0.0225, 0.0212], [0.2129, 0.0506, 0.0394, 0.037, 0.0327, 0.0307, 0.0239, 0.0186], [0.335, 0.1233, 0.1088, 0.0201, 0.0178, 0.0167, 0.0147, 0.0138], [0.3682, 0.1535, 0.1055, 0.0183, 0.0162, 0.0134, 0.0126, 0.0111], [0.5152, 0.2758, 0.1476, 0.0089, 0.0061, 0.0039, 0.0035, 0.0012], [0.9042, 0.045, 0.045, 0.0017, 0.0011, 0.0011, 0.0002, 0.0001], [0.9665, 0.0258, 0.0074, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.941, 0.0251, 0.0251, 0.001, 0.0004, 0.0003, 0.0002, 0.0002], [0.9662, 0.0122, 0.0084, 0.0007, 0.0004, 0.0003, 0.0003, 0.0002], [0.8277, 0.0467, 0.0195, 0.0161, 0.0111, 0.0092, 0.0043, 0.0043], [0.6053, 0.1052, 0.0723, 0.0301, 0.0235, 0.022, 0.0086, 0.0063], [0.9888, 0.0025, 0.0019, 0.0015, 0.0007, 0.0006, 0.0005, 0.0003], [0.992, 0.0022, 0.0012, 0.0008, 0.0007, 0.0003, 0.0003, 0.0003], [0.9912, 0.0022, 0.0014, 0.0011, 0.0007, 0.0004, 0.0002, 0.0001], [0.9903, 0.0028, 0.001, 0.001, 0.0008, 0.0005, 0.0003, 0.0003], [0.9989, 0.0004, 0.0003, 0.0002, 0.0, 0.0, 0.0, 0.0], [0.9985, 0.0007, 0.0004, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.7675, 0.194, 0.0159, 0.0046, 0.0026, 0.0024, 0.0017, 0.0009]], "ranks": {"Rust": [32208, 57579, 85466, 57844, 21304, 19275, 46132, 47787, 55319, 37928, 22175, 43578, 32471, 19460, 31750, 33512, 57352, 97115, 163485, 122019, 116359, 123864, 122556, 85415, 51972, 37747, 59066, 53342, 52851, 38186, 22695, 19403, 20180, 42948, 48925, 38430, 20058, 23747, 27867, 33645, 22884, 16453, 11621, 13464, 12380, 12043, 14812, 12154, 12007, 16299, 26574, 21659, 11370, 6156, 8189, 2359, 722, 516, 509, 16, 14, 8, 8]}}, {"pos": 474, "top": [[".", ",", " \u2013", "\u2013", ";", "\u00a0", "?", "\u00a0\u00a0"], [" \u2013", "\u00ad", ".", ",", "  \n", "\u2013", "  \n\n", "\u2013and"], [",", ".", "\u2013", " \u2013", ";", "\u2013and", ".\u2013", "\u2026.."], [" Shemale", "----------</", " **\u300c", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", " ;;^", "erias", "TRGL"], [" **#", "(**", " **+", "-**", " (**", "***", "**!", "**."], ["(**", " **#", " **+", " **", " (**", "**!", "-**", " **\u300c"], ["  \n", "  \n\n", " **\u300c", " **", "(**", " **\u3010", " **#", "**!"], [" **#", " **\u300c", "(**", "  \n\n", " **", " **+", " **\u3010", " **\u00ab"], ["  \n\n", " **#", "    \n\n", "(**", "   \n\n", "...**", " **\u300c", "**!"], ["\u00adi", " \u00ad", "\u00ading", "\u00adtion", "\u00ads", "\u00ad", "\u0436\u0451", " **#"], [" \u00ad", "\u00ad", "...\\", " [...]", "  \n\n", "...**", "\\n", "..."], [" **", " **#", " **+", " **\u300c", "...**", " **\u00ab", " ***", "\u0436\u0451"], ["...**", " **", " **\u300c", " **+", " **\u00ab", " **#", " ***", "...\\"], ["...**", " **+", " **\u00ab", " **\u300c", " **#", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " \u00bb**", "\u0436\u0451"], [" arguably", " albeit", "...**", " revamped", " incredibly", "\u5927\u90e8\u4efd", "\u5468\u906d", "\u62e5\u6709\u7740"], [" arguably", " incredibly", "\u62e5\u6709\u7740", "\u5927\u90e8\u4efd", " revamped", " albeit", " ;;^", " showcasing"], [" arguably", " overarching", " incredibly", " albeit", " revamped", "\u62e5\u6709\u7740", " entirety", " leveraging"], [" arguably", "...\\", "...**", "  \n\n", " incredibly", " overarching", " revamped", "..."], [" arguably", " incredibly", "...**", " overarching", " hugely", "...\\", " revamped", "..."], ["<|endoftext|>", " arguably", "  \n\n", " hugely", " incredibly", " myriad", " ultimately", " truly"], ["<|endoftext|>", "  \n\n", " arguably", "\n\n", " hugely", " myriad", " swiftly", " \n\n"], [" arguably", " incredibly", "\u62e5\u6709\u7740", " hugely", " impactful", " **#", " sprawling", " overarching"], [" arguably", " incredibly", " hugely", "\u62e5\u6709\u7740", " sprawling", " dramatically", " impacting", " effortlessly"], [" arguably", " incredibly", " hugely", " ultimately", " dramatically", " myriad", " heavily", " sprawling"], ["  \n\n", " \n\n", "\n\n", "   \n\n", " \r\n\r\n", " arguably", " hugely", "    \n\n"], [" **#", " arguably", " hugely", " **", " incredibly", " **+", " impactful", " impacting"], [" arguably", " hugely", " incredibly", "  \n\n", "\n\n", " sprawling", " vastly", " myriad"], ["\n\n", "  \n\n", " arguably", " hugely", " \n\n", " incredibly", " ultimately", " heavily"], ["  \n\n", " arguably", " incredibly", " hugely", " heavily", " \n\n", " vastly", " myriad"], ["  \n\n", " arguably", " heavily", " incredibly", " hugely", " ultimately", " vastly", " dramatically"], [" heavily", " ultimately", " incredibly", " arguably", " dramatically", " hugely", " wildly", " truly"], [" heavily", " incredibly", " ultimately", " dramatically", " truly", " massive", " arguably", " huge"], [" incredibly", " heavily", " ultimately", " relentlessly", " relentless", " massively", " dramatically", " massive"], [" incredibly", " relentless", " relentlessly", " heavily", " aggressively", " massively", " sprawling", " wildly"], [" incredibly", " relentless", " relentlessly", " massively", " heavily", " aggressively", " horrific", " hugely"], [" incredibly", " relentless", " relentlessly", " aggressively", " brutally", " massively", " horrific", " heavily"], [" incredibly", " relentless", " relentlessly", " horrific", " brutally", " aggressively", " brutal", " massively"], [" incredibly", " relentless", " relentlessly", " horrific", " insanely", " massively", " impossible", " aggressively"], [" incredibly", " impossible", " relentless", " desperation", " insanely", " horrific", " relentlessly", " massively"], [" incredibly", " impossible", " relentless", " relentlessly", " insanely", " desperation", " horrific", " brutally"], [" incredibly", " relentless", " massively", " impossible", " insanely", " desperation", " unsustainable", " brutal"], [" desperation", " relentless", " incredibly", " unsustainable", " impossible", " relentlessly", " massively", " brutal"], [" desperation", " unsustainable", " impossible", " relentless", " incredibly", " brutal", " strategy", " brutally"], [" impossible", " desperation", " unsustainable", " incredibly", " relentless", " brutal", " brutally", " massively"], [" impossible", " desperation", " incredibly", " unsustainable", " relentless", " massively", " risky", " fundamentally"], [" impossible", " desperation", " incredibly", " unsustainable", " massively", " risky", " relentless", " fundamentally"], [" impossible", " requires", " incredibly", " fundamentally", " risky", " risks", " massively", " desperation"], [" requires", " impossible", " fundamentally", " incredibly", " heavily", " drastically", " likely", " massively"], [" requires", " fundamentally", " impossible", " unsustainable", "\u5927\u6982\u7387", " drastically", " risky", "\u6781\u6613"], [" requires", "requires", "\u5012\u903c", "Requires", " Requires", "\u5927\u6982\u7387", " unsustainable", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442"], [" requires", "requires", "Requires", "\u5012\u903c", "\u5927\u6982\u7387", " Requires", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442", " unsustainable"], [" requires", "requires", "Requires", "\u5012\u903c", " Requires", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442", "\u5927\u6982\u7387", " unsustainable"], [" requires", "requires", "Requires", " Requires", "\u5012\u903c", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442", "\u5927\u6982\u7387", "\u903c\u8feb"], [" requires", "requires", "Requires", " Requires", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442", " screams", " violates", " unsustainable"], [" requires", "requires", "Requires", " Requires", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442", " violates", " screams", " require"], [" requires", "requires", "Requires", " Requires", " require", " screams", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442", " violates"], [" requires", "requires", " screams", "Requires", " Requires", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442", " require", " demands"], [" requires", "requires", " screams", "Requires", " require", " Requires", " \u0442\u0440\u0435\u0431\u0443\u0435\u0442", " violates"], [" requires", " smells", " screams", "requires", " smell", "Requires", " Requires", " require"], [" requires", " screams", " smells", " smell", " scream", " require", " screaming", " architecture"], [" screams", " requires", " smells", " demands", " architecture", " smell", " scream", " will"], [" screams", " requires", " smells", " demands", " will", " is", " breaks", " architecture"], [" screams", " smells", " requires", " architecture", " breaks", " demands", " will", " is"]], "p": [[0.545, 0.2574, 0.1769, 0.0039, 0.0034, 0.003, 0.0013, 0.001], [0.2697, 0.0876, 0.0876, 0.0823, 0.0565, 0.0389, 0.0126, 0.0087], [0.4446, 0.4446, 0.0602, 0.0365, 0.003, 0.0012, 0.0011, 0.0011], [0.0182, 0.0151, 0.0142, 0.011, 0.0097, 0.0086, 0.0076, 0.0071], [0.0172, 0.0152, 0.0092, 0.0056, 0.0049, 0.0043, 0.003, 0.0028], [0.1114, 0.034, 0.0265, 0.0233, 0.0171, 0.0133, 0.0091, 0.0059], [0.1441, 0.1441, 0.1195, 0.1122, 0.0601, 0.0413, 0.0342, 0.025], [0.1817, 0.1817, 0.0806, 0.0712, 0.0628, 0.0628, 0.0554, 0.0336], [0.8288, 0.0284, 0.0221, 0.0172, 0.0152, 0.0134, 0.0092, 0.0056], [0.0349, 0.0349, 0.0328, 0.024, 0.0212, 0.0212, 0.0175, 0.0165], [0.2847, 0.1345, 0.0924, 0.0816, 0.0385, 0.0362, 0.0234, 0.0151], [0.2349, 0.1338, 0.092, 0.0558, 0.036, 0.0248, 0.0103, 0.0076], [0.1491, 0.1236, 0.0963, 0.0622, 0.0515, 0.0484, 0.013, 0.0095], [0.0227, 0.0213, 0.02, 0.02, 0.0083, 0.0069, 0.0054, 0.0048], [0.0247, 0.0066, 0.0062, 0.0043, 0.0031, 0.0029, 0.0029, 0.0028], [0.0108, 0.0066, 0.004, 0.0035, 0.0031, 0.0026, 0.0026, 0.0019], [0.0478, 0.0146, 0.0113, 0.0073, 0.0057, 0.0047, 0.0047, 0.0042], [0.026, 0.0202, 0.0168, 0.0148, 0.0102, 0.0079, 0.0051, 0.004], [0.0552, 0.0179, 0.0131, 0.008, 0.0058, 0.0058, 0.0048, 0.0043], [0.0532, 0.0344, 0.0236, 0.0087, 0.0087, 0.0072, 0.0056, 0.005], [0.1382, 0.0576, 0.0165, 0.0088, 0.0065, 0.0057, 0.0042, 0.0042], [0.012, 0.0106, 0.005, 0.0047, 0.0027, 0.0027, 0.0027, 0.0025], [0.0217, 0.018, 0.0097, 0.0043, 0.0038, 0.0036, 0.0033, 0.0033], [0.029, 0.0165, 0.0137, 0.0107, 0.0069, 0.0061, 0.0057, 0.005], [0.544, 0.0539, 0.0239, 0.0175, 0.0094, 0.0078, 0.0073, 0.0053], [0.0302, 0.0183, 0.0161, 0.0152, 0.0143, 0.0067, 0.0059, 0.0056], [0.0265, 0.0171, 0.0161, 0.0125, 0.0097, 0.0092, 0.0076, 0.0067], [0.0975, 0.086, 0.0461, 0.0218, 0.0192, 0.018, 0.014, 0.0132], [0.1921, 0.0355, 0.0244, 0.0229, 0.0158, 0.0158, 0.0148, 0.0148], [0.1712, 0.0382, 0.0317, 0.0247, 0.0192, 0.0169, 0.015, 0.0124], [0.0455, 0.0354, 0.0354, 0.0313, 0.0215, 0.0178, 0.0122, 0.0122], [0.059, 0.0432, 0.0336, 0.0159, 0.0149, 0.0149, 0.0132, 0.0124], [0.067, 0.0406, 0.0247, 0.0204, 0.0159, 0.015, 0.015, 0.014], [0.0818, 0.0466, 0.0387, 0.0283, 0.0283, 0.0207, 0.0142, 0.0134], [0.1155, 0.0452, 0.0352, 0.0214, 0.0201, 0.0201, 0.0156, 0.0122], [0.1755, 0.0939, 0.0535, 0.0253, 0.0237, 0.0237, 0.0237, 0.021], [0.1314, 0.0797, 0.0548, 0.0401, 0.0354, 0.0293, 0.0228, 0.0202], [0.2005, 0.0693, 0.0371, 0.0271, 0.0255, 0.0239, 0.0225, 0.0211], [0.126, 0.0634, 0.0436, 0.0319, 0.0319, 0.0319, 0.0299, 0.0206], [0.0956, 0.0545, 0.0512, 0.031, 0.0274, 0.0257, 0.0227, 0.0227], [0.0808, 0.0382, 0.0337, 0.0316, 0.0297, 0.0262, 0.0262, 0.0232], [0.045, 0.0351, 0.0309, 0.0257, 0.0226, 0.0213, 0.02, 0.0188], [0.0408, 0.0281, 0.0281, 0.0264, 0.0233, 0.0233, 0.017, 0.017], [0.0801, 0.0517, 0.0334, 0.0334, 0.0295, 0.026, 0.0229, 0.0229], [0.0813, 0.0435, 0.0264, 0.0233, 0.0181, 0.0181, 0.017, 0.016], [0.0564, 0.0387, 0.0302, 0.0266, 0.0221, 0.0221, 0.0183, 0.0183], [0.0825, 0.0415, 0.0366, 0.0323, 0.0251, 0.0236, 0.0222, 0.0208], [0.1642, 0.0643, 0.0568, 0.0415, 0.0237, 0.0184, 0.0184, 0.0173], [0.2241, 0.0567, 0.0441, 0.0184, 0.0184, 0.0173, 0.0173, 0.0162], [0.5142, 0.0614, 0.0478, 0.0449, 0.0273, 0.0212, 0.0129, 0.0088], [0.2426, 0.1472, 0.0838, 0.0695, 0.0576, 0.029, 0.024, 0.024], [0.3079, 0.1868, 0.1455, 0.0392, 0.0346, 0.0253, 0.0223, 0.0077], [0.5439, 0.1375, 0.1214, 0.0348, 0.0254, 0.0186, 0.0057, 0.0042], [0.7143, 0.0753, 0.0586, 0.019, 0.019, 0.0131, 0.0102, 0.0096], [0.903, 0.0273, 0.0146, 0.01, 0.0089, 0.0054, 0.0047, 0.0031], [0.9226, 0.0191, 0.0132, 0.0116, 0.008, 0.0055, 0.0055, 0.0017], [0.8765, 0.034, 0.0182, 0.0182, 0.011, 0.0067, 0.0059, 0.0046], [0.8723, 0.0338, 0.0232, 0.011, 0.0086, 0.0063, 0.0049, 0.004], [0.7735, 0.1344, 0.0265, 0.0125, 0.0059, 0.0052, 0.0043, 0.0032], [0.4666, 0.283, 0.1945, 0.0124, 0.0075, 0.0038, 0.003, 0.0023], [0.4374, 0.3006, 0.1823, 0.0192, 0.008, 0.0075, 0.0059, 0.0059], [0.4817, 0.2922, 0.1075, 0.0395, 0.0145, 0.01, 0.0083, 0.0073], [0.5371, 0.1976, 0.0641, 0.0441, 0.0267, 0.0251, 0.0173, 0.0119]], "ranks": {"Rust": [56486, 127251, 76726, 87890, 96032, 74008, 104876, 106378, 122600, 116003, 46292, 87561, 68605, 78853, 80994, 55864, 85219, 105782, 115915, 75525, 95187, 118047, 88769, 43270, 39404, 49721, 33296, 20799, 19145, 17369, 10670, 9152, 9469, 13871, 12783, 13695, 8924, 10905, 10651, 18334, 14911, 15241, 12900, 13151, 13060, 13520, 17636, 22166, 20489, 68359, 81520, 67642, 58621, 71356, 37993, 27398, 11166, 7781, 6888, 2571, 2588, 2659, 1805]}}, {"pos": 475, "top": [[".", ",", " \u2013", "\u2013", "\u00a0", ";", ":", "\u00a0\u00a0"], [".", ",", "\u2013", " \u2013", ";", ":", " \u200b\u200b", ".["], [",", ".", "\u2013", ";", " \u2013", "\u2026..", ":", "\u2026."], ["----------</", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "-------------</", "\ufffd\ufffd", " ;;^", " \u041a\u0440\u0430\u0441\u0438", " milfs", " Shemale"], [".", " \u200b\u200b", ",", ":", " \u041a\u0440\u0430\u0441\u0438", " MIS", "(IS", " IS"], [" \u200b\u200b", ".", ",", ":", "fst", "\u00a0", "\u00e9ch", "!:"], [".", ":", ",", "\u00a0", ":-", "ably", " \u200b\u200b", "  \n"], ["ness", "colour", "avour", "aldi", " \u0442\u0440\u0451", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "ibility", "amente"], [".", "\u0436\u0451", "colour", "avour", "\u00a0", "!\u201d.", "!.", "!:"], [",", "\u0436\u0451", "\u00a0", " whilst", "colour", " \u0442\u0440\u0451", "\u783c", "Whilst"], ["\u00a0", ",", ".", "\u0436\u0451", " whilst", " though", "\u00ad", "&nbsp"], ["\u783c", " \u0442\u0440\u0451", "\u0436\u0451", "avour", " flavours", " whilst", "aviours", " arguably"], [" arguably", " incredibly", "\u0436\u0451", "\u783c", "\uaecf", " \u0442\u0440\u0451", "\u0930\u0923", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9"], [" arguably", "\uaecf", " incredibly", "\u0930\u0923", " \u0442\u0440\u0451", "\u8ba4\u8ba4\u771f", "\u0436\u0451", " thankfully"], [" arguably", " incredibly", " truly", " amongst", " revamped", " though", " savvy", " albeit"], [" arguably", " incredibly", " truly", " amongst", " faux", " revamped", " savvy", " thankfully"], [" arguably", " incredibly", " savvy", " revamped", " faux", " truly", " tweaking", " hugely"], [" incredibly", " arguably", " savvy", " revamped", " tweaking", " truly", " hugely", " gritty"], [" arguably", " incredibly", " truly", " savvy", " hugely", " revamped", " effortlessly", " overwhelmingly"], [" arguably", " incredibly", " truly", " hugely", " wildly", " burgeoning", " revamped", " myriad"], [" arguably", " hugely", " truly", " incredibly", " burgeoning", " myriad", " vastly", " wildly"], [" arguably", " incredibly", " hugely", " truly", " gritty", " savvy", " ;;^", " freaking"], [" arguably", " incredibly", " hugely", " truly", " wildly", " myriad", " savvy", " gritty"], [" arguably", " incredibly", " truly", " hugely", " much", " myriad", " ultimately", " wildly"], [" arguably", " hugely", " incredibly", " \n\n", " truly", "  \n\n", " myriad", " vastly"], [" incredibly", " arguably", " hugely", " wildly", " gritty", " truly", " crafting", " famously"], [" arguably", " incredibly", " hugely", " wildly", " truly", " gritty", " myriad", " sprawling"], [" arguably", " incredibly", " truly", " hugely", " wildly", " myriad", "\n\n", " vastly"], [" arguably", " incredibly", " hugely", " wildly", " truly", " myriad", " vastly", " heavily"], [" incredibly", " arguably", " hugely", " wildly", " relentless", " truly", " heavily", " famously"], [" incredibly", " arguably", " huge", " truly", " heavily", " much", " wildly", " massive"], [" incredibly", " huge", " truly", " arguably", " complex", " massive", " heavily", " much"], [" incredibly", " arguably", " truly", " relentless", " relentlessly", " huge", " massive", " wildly"], [" incredibly", " relentless", " arguably", " brutal", " notoriously", " horrific", " relentlessly", " gritty"], [" incredibly", " relentless", " arguably", " notoriously", " relentlessly", " brutal", " horrific", " brutally"], [" incredibly", " relentless", " notoriously", " relentlessly", " brutal", " arguably", " horrific", " brutally"], [" incredibly", " relentless", " notoriously", " horrific", " brutal", " relentlessly", " brutally", " aggressively"], [" incredibly", " relentless", " impossible", " notoriously", " relentlessly", " horrific", " insanely", " brutal"], [" impossible", " incredibly", " relentless", " notoriously", " Impossible", " horrific", " insanely", " relentlessly"], [" impossible", " incredibly", " relentless", " relentlessly", " Impossible", " unsustainable", " notoriously", " insanely"], [" impossible", " incredibly", " relentless", " brutal", " insanely", " unsustainable", " relentlessly", " Impossible"], [" impossible", " relentless", " engineering", " incredibly", " unsustainable", " Impossible", " relentlessly", " desperation"], [" impossible", " engineering", " relentless", " incredibly", " Impossible", " unsustainable", " brutal", " hardcore"], [" impossible", " Impossible", " relentless", " incredibly", " engineering", " notoriously", " unsustainable", " brutal"], [" impossible", " incredibly", " relentless", " engineering", " Impossible", " difficult", " notoriously", " desperation"], [" impossible", " Impossible", " incredibly", " relentless", " unsustainable", " engineering", " desperation", " brutal"], [" impossible", " Impossible", " incredibly", " relentless", " risky", " nightmare", " difficult", " desperation"], [" impossible", " incredibly", " Impossible", " difficult", " relentless", " extreme", " risky", " hardcore"], [" impossible", " incredibly", " difficult", " relentless", " unsustainable", " brutal", " risky", " hardcore"], [" unsustainable", " impossible", " risky", " hardcore", " brutal", " hardest", " Impossible", " unrealistic"], [" unsustainable", "Impossible", " impossible", "\u5f97\u4e0d\u507f", "\u6700\u96be", "\u5927\u6982\u7387", " unrealistic", " risky"], [" unsustainable", "Impossible", " impossible", " Impossible", " risky", "\u5f97\u4e0d\u507f", "\u5927\u6982\u7387", "\u5012\u903c"], [" unsustainable", " risky", "Impossible", " bottleneck", " impossible", " unrealistic", " sabotage", " doomed"], [" unsustainable", " bottleneck", " risky", " doomed", " impossible", "Impossible", " borderline", " sabotage"], [" unsustainable", " impossible", " risky", " bottleneck", " feasible", " borderline", " doomed", "Impossible"], [" unsustainable", " risky", " bottleneck", " doomed", " borderline", " brittle", " impossible", " desperation"], [" unsustainable", " suicide", " risky", " suicidal", " bottleneck", " brittle", " feasible", " dangerously"], [" unsustainable", " suicide", " brittle", " optimization", " bottleneck", " risky", " suicidal", " optimizing"], [" unsustainable", " brittle", " bottleneck", " suicide", " fragile", " optimization", " risky", " engineering"], [" unsustainable", " suicide", " brittle", " bottleneck", " optimization", " engineering", " suicidal", " precarious"], [" unsustainable", " suicide", " suicidal", " brittle", " engineering", " fragile", " likely", " optimization"], [" unsustainable", " suicide", " suicidal", " brittle", " surviv", " brutal", " fragile", " bottleneck"], [" unsustainable", " suicide", " likely", " brittle", " barely", " bottleneck", " fragile", " architectural"]], "p": [[0.6617, 0.2758, 0.0176, 0.0176, 0.0074, 0.0074, 0.0014, 0.0011], [0.3508, 0.2265, 0.0505, 0.037, 0.0288, 0.0057, 0.0057, 0.0016], [0.4701, 0.4701, 0.0386, 0.0092, 0.0018, 0.0012, 0.001, 0.001], [0.0073, 0.0069, 0.0044, 0.0044, 0.0044, 0.0042, 0.0035, 0.002], [0.0654, 0.0226, 0.0176, 0.0035, 0.0015, 0.0012, 0.0011, 0.0011], [0.0218, 0.018, 0.0116, 0.0043, 0.0012, 0.0012, 0.001, 0.001], [0.2207, 0.0463, 0.0281, 0.0205, 0.008, 0.0059, 0.0055, 0.0055], [0.0148, 0.009, 0.0054, 0.0037, 0.0037, 0.0033, 0.0033, 0.0024], [0.0344, 0.0285, 0.0196, 0.0153, 0.0127, 0.0099, 0.0099, 0.006], [0.0887, 0.0271, 0.0186, 0.0186, 0.0145, 0.0088, 0.0088, 0.0073], [0.1701, 0.1325, 0.0296, 0.0191, 0.0109, 0.0075, 0.007, 0.007], [0.0218, 0.0091, 0.0091, 0.0049, 0.0043, 0.0038, 0.0033, 0.003], [0.0078, 0.0061, 0.0047, 0.0039, 0.0035, 0.003, 0.0027, 0.0027], [0.0038, 0.0028, 0.0028, 0.0026, 0.0023, 0.0022, 0.0019, 0.0016], [0.033, 0.0166, 0.0147, 0.0054, 0.0045, 0.0045, 0.0042, 0.0042], [0.036, 0.0298, 0.0059, 0.0036, 0.0033, 0.0033, 0.0033, 0.0031], [0.0918, 0.081, 0.0091, 0.008, 0.0071, 0.0071, 0.0055, 0.0049], [0.0624, 0.055, 0.0131, 0.0102, 0.0074, 0.0055, 0.0055, 0.0037], [0.1614, 0.1042, 0.017, 0.0117, 0.011, 0.0063, 0.004, 0.0038], [0.0788, 0.0422, 0.0226, 0.0155, 0.0057, 0.0054, 0.005, 0.0047], [0.0331, 0.0095, 0.0079, 0.0069, 0.0054, 0.0054, 0.0035, 0.0035], [0.0167, 0.0147, 0.0045, 0.0029, 0.0029, 0.0029, 0.0027, 0.0021], [0.0481, 0.033, 0.0095, 0.0084, 0.0048, 0.0037, 0.0035, 0.0033], [0.0381, 0.018, 0.0132, 0.0096, 0.0075, 0.0062, 0.0052, 0.0048], [0.053, 0.0235, 0.0208, 0.0134, 0.0111, 0.0098, 0.0092, 0.0072], [0.057, 0.0503, 0.021, 0.0105, 0.0087, 0.0072, 0.0056, 0.0053], [0.0644, 0.0345, 0.0173, 0.0127, 0.0087, 0.0082, 0.0077, 0.0064], [0.1088, 0.04, 0.0228, 0.0189, 0.0157, 0.013, 0.013, 0.0108], [0.0944, 0.0833, 0.0211, 0.0198, 0.0164, 0.0145, 0.0113, 0.0093], [0.119, 0.0986, 0.0194, 0.0171, 0.0142, 0.0125, 0.0118, 0.0111], [0.0832, 0.0505, 0.0254, 0.021, 0.0186, 0.0186, 0.0164, 0.0164], [0.085, 0.0259, 0.0215, 0.0215, 0.0202, 0.0178, 0.0157, 0.0157], [0.1479, 0.0274, 0.0257, 0.0241, 0.0177, 0.0156, 0.0129, 0.0121], [0.1209, 0.0608, 0.027, 0.0253, 0.0238, 0.021, 0.0197, 0.012], [0.1551, 0.0473, 0.0392, 0.027, 0.0238, 0.0223, 0.0223, 0.0127], [0.1701, 0.0855, 0.0519, 0.0335, 0.0315, 0.0191, 0.0191, 0.0168], [0.1513, 0.0761, 0.0556, 0.0317, 0.0317, 0.0298, 0.0247, 0.0181], [0.1701, 0.0626, 0.0458, 0.0458, 0.0245, 0.0245, 0.0245, 0.0179], [0.2028, 0.09, 0.0331, 0.0292, 0.0274, 0.0228, 0.0214, 0.0189], [0.1622, 0.072, 0.0561, 0.0234, 0.0234, 0.0206, 0.0206, 0.0194], [0.1214, 0.065, 0.0573, 0.0254, 0.0224, 0.0224, 0.0198, 0.0198], [0.1224, 0.0543, 0.0329, 0.0309, 0.0241, 0.0213, 0.0188, 0.0156], [0.126, 0.0384, 0.0339, 0.0248, 0.0233, 0.0206, 0.016, 0.016], [0.2634, 0.0666, 0.0458, 0.0261, 0.0245, 0.0191, 0.0191, 0.0179], [0.23, 0.0331, 0.0311, 0.0275, 0.0258, 0.0189, 0.0122, 0.0115], [0.1848, 0.0321, 0.0302, 0.0283, 0.0172, 0.0172, 0.0172, 0.0126], [0.282, 0.0432, 0.0337, 0.0217, 0.0204, 0.0169, 0.0149, 0.0132], [0.2839, 0.0633, 0.0409, 0.0299, 0.0248, 0.016, 0.016, 0.015], [0.2073, 0.0463, 0.0408, 0.036, 0.0338, 0.0264, 0.0233, 0.0181], [0.0663, 0.0585, 0.0313, 0.0229, 0.0215, 0.0178, 0.0168, 0.0168], [0.1073, 0.0947, 0.0447, 0.0211, 0.0199, 0.0199, 0.0175, 0.0165], [0.1595, 0.1498, 0.0587, 0.0277, 0.0168, 0.0131, 0.0131, 0.0123], [0.2502, 0.0717, 0.0264, 0.0248, 0.0248, 0.0248, 0.0133, 0.0125], [0.712, 0.0148, 0.0148, 0.0095, 0.0095, 0.0079, 0.0066, 0.0051], [0.7063, 0.0227, 0.0177, 0.0129, 0.0101, 0.0084, 0.0074, 0.0069], [0.686, 0.0195, 0.0152, 0.0086, 0.0076, 0.0063, 0.0059, 0.0056], [0.5064, 0.0268, 0.0222, 0.0196, 0.0153, 0.0105, 0.0105, 0.0087], [0.7844, 0.0135, 0.0127, 0.0112, 0.0068, 0.0056, 0.0053, 0.0032], [0.8035, 0.0228, 0.0122, 0.0084, 0.0079, 0.0058, 0.0058, 0.0058], [0.6816, 0.0436, 0.0206, 0.016, 0.0125, 0.0117, 0.0103, 0.0091], [0.7029, 0.0789, 0.0187, 0.0146, 0.0137, 0.0094, 0.0069, 0.0065], [0.5468, 0.1383, 0.0199, 0.0113, 0.01, 0.0094, 0.0088, 0.0078], [0.7184, 0.0231, 0.0231, 0.0102, 0.0096, 0.0096, 0.0085, 0.0075]], "ranks": {"Rust": [48048, 76434, 67947, 58716, 39776, 28068, 46501, 25057, 46027, 61463, 31121, 52314, 39378, 32182, 34009, 43908, 44677, 56839, 79200, 76641, 93294, 97800, 75070, 32070, 28881, 36453, 19420, 13033, 12728, 11316, 10506, 10452, 13299, 16523, 15810, 16574, 11229, 15243, 14184, 22620, 17097, 14899, 10805, 10411, 10474, 9014, 10941, 10540, 6597, 15539, 43514, 62209, 32446, 24947, 28888, 19835, 5543, 1400, 893, 421, 577, 420, 475]}}, {"pos": 476, "top": [[".", ",", "\u2013", " \u2013", ";", "\u00a0", ",.", "\u00a0\u00a0"], [".", " \u2013", "\u2013", ",", " \u200b\u200b", ";", ",.", ":."], [".", ",", "\u2013", " \u2013", "\u2026.", "\u2026..", ";", "\u2026"], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " pornstar", " Blowjob", " \u041a\u0440\u0430\u0441\u0438", " cumshot", " Guta"], [" \u200b\u200b", ":.", ".", "!.", ".@", " \".", " (@", ",."], [" \u200b\u200b", "!.", ".", "!:", ":.", "\u2026..", "\u2026.", "!,"], ["!.", ":.", ".....", " .....", " \u200b\u200b", " \u062c\u062f\u064b\u0627", "!\"", ":-"], ["sprozess", " *@", " previden", " \u062c\u062f\u064b\u0627", " Geile", "icanos", "\u6316\u6398\u516c\u53f8", "!:"], ["!.", ":.", ".", ".....", "!\u201d.", "!:", " \u200b\u200b", ";."], [",", "!,", "!.", "!:", "\u7279\u8272\u548c", ".", "\u3082\u3057\u3063\u304b\u308a", ":."], [".", ",", ":.", "!.", ".....", ",.", "....", "!"], ["\u6e21\u5047", "\u663e\u7740", "\u4e30\u7855", "\u826f\u673a", "\u7279\u8272\u548c", "\u6027\u5de5\u4f5c", "\u8fd8\u6709\u4e0d\u5c11", " bigger"], ["\u663e\u7740", " hardcore", " showcase", " bigger", "issance", " hassle", " clash", " success"], [" hardcore", " bigger", "\u5927\u5496", " savvy", "\u3082\u3057\u3063\u304b\u308a", " showcase", "\u5f15\u9886\u4f5c\u7528", " pricey"], [" savvy", " revamped", " bigger", " showcase", " huge", " big", " flashy", " choice"], [" savvy", " incredibly", " bigger", " big", " revamped", " pricey", " massive", " nasty"], [" incredibly", " savvy", " bigger", " revamped", " huge", " standout", " big", " tricky"], [" savvy", " incredibly", " revamped", " tweaking", " bigger", " tweaks", " huge", " quirky"], [" savvy", " incredibly", " revamped", " hugely", " huge", " nasty", " tweaking", " massively"], [" hugely", " incredibly", " huge", " revamped", " massively", " savvy", " hefty", " massive"], [" hugely", " revamped", " vastly", "<|endoftext|>", " heavily", " myriad", " swiftly", " massively"], [" hugely", " incredibly", " savvy", " impactful", " massively", " blockbuster", " huge", " bigger"], [" hugely", " incredibly", " savvy", " revamped", " massively", " impactful", " huge", " massive"], [" hugely", " massively", " massive", " incredibly", " heavily", " myriad", " huge", " wildly"], ["  \n\n", " \n\n", " hugely", "   \n\n", "\n\n", " \r\n\r\n", " myriad", "\r\n\r\n"], [" hugely", " impactful", " leveraging", " tech", " massively", " incredibly", " massive", " reboot"], ["\n\n", " \n\n", " hugely", " leveraging", " tech", " massively", " heavily", " massive"], ["\n\n", " \n\n", "  \n\n", " heavily", " massive", " hugely", " massively", " huge"], [" massive", " heavily", " tech", " \n\n", " massively", "  \n\n", " strategic", " huge"], [" massive", "  \n\n", " tech", " heavily", " risk", " massively", " strategy", " global"], [" massive", " huge", " complex", " heavily", " risk", " long", " global", " critical"], [" complex", " massive", " huge", " long", " critical", " heavily", " risk", " work"], [" massive", " complex", " huge", " heavily", " risk", " critical", " long", " hard"], [" tech", " relentless", " massive", " risk", " strategic", " complex", " catastrophic", " huge"], [" relentless", " massive", " tech", " massively", " incredibly", " strategic", " aggressively", " brutal"], [" relentless", " incredibly", " massively", " tech", " massive", " brutal", " huge", " aggressively"], [" relentless", " incredibly", " brutal", " tech", " aggressively", " massively", " hardcore", " relentlessly"], [" relentless", " complex", " incredibly", " tech", " massive", " massively", " engineering", " relentlessly"], [" relentless", " engineering", " catastrophic", " massively", " tech", " relentlessly", " incredibly", " massive"], [" relentless", " engineering", " tech", " technical", " relentlessly", " catastrophic", " impossible", " massively"], [" engineering", " tech", " relentless", " technical", " massively", " technology", " massive", " hardware"], [" engineering", " technical", " tech", " relentless", " technological", " strategic", " hardware", " strategy"], [" engineering", " technical", " relentless", " tech", " strategic", " hardware", " strategy", " technological"], [" engineering", " relentless", " technical", " tech", " hardware", " bottleneck", " logistical", " strategic"], [" engineering", " technical", " relentless", " strategic", " strategy", " logistical", " massive", " tech"], [" engineering", " relentless", " technical", " strategic", " massive", " logistical", " bottleneck", " strategy"], [" engineering", " relentless", " technical", " strategic", " logistical", " bottleneck", " nightmare", " massive"], [" engineering", " relentless", " logistical", " technical", " strategic", " bottleneck", " massive", " impossible"], [" relentless", " engineering", " logistical", " strategic", " fundamentally", " tactical", " bottleneck", " unsustainable"], [" logistical", " relentless", " bottleneck", " unsustainable", " engineering", " contradictions", " nightmare", " hardcore"], [" nightmare", " unsustainable", "Impossible", " contradictions", " sabotage", " bottleneck", " logistical", " relentless"], [" nightmare", " bottleneck", "Impossible", " unsustainable", ";**", " logistical", " doomed", " engineering"], [" bottleneck", " nightmare", " engineering", " unsustainable", " desperation", " optimization", " sabotage", " doomed"], [" bottleneck", " nightmare", " engineering", " optimization", " disaster", "engineering", " contradiction", " doomed"], [" bottleneck", " nightmare", " optimization", " contradiction", " scalability", " engineering", " battleground", " battle"], [" bottleneck", " scalability", " nightmare", " deadlock", " optimization", " performance", " trap", " battleground"], [" nightmare", " scalability", " trap", " optimization", " deadlock", " debugging", " bottleneck", " performance"], [" optimization", " trap", " recipe", " optimizations", " bottleneck", " nightmare", " performance", " scalability"], [" performance", "performance", " optimization", " Performance", " trap", "Performance", " bottleneck", "\u6027\u80fd"], [" performance", " Performance", "performance", " recipe", " optimization", " bottleneck", "Performance", " trap"], [" performance", " Performance", " recipe", "performance", " trap", " bottleneck", " optimization", "-performance"], [" performance", " recipe", " trap", " bottleneck", " race", " optimization", " Performance", " deadlock"], [" performance", " recipe", " trap", " bottleneck", " race", " sprint", " optimization", " sustainability"]], "p": [[0.8729, 0.1043, 0.0125, 0.0067, 0.0017, 0.0003, 0.0002, 0.0002], [0.2981, 0.2631, 0.2322, 0.0429, 0.0131, 0.0109, 0.0055, 0.0048], [0.8377, 0.0779, 0.0607, 0.0093, 0.005, 0.0024, 0.0018, 0.0008], [0.0145, 0.0136, 0.0064, 0.005, 0.0034, 0.0021, 0.0021, 0.002], [0.0197, 0.0185, 0.0174, 0.005, 0.0047, 0.0041, 0.0032, 0.0028], [0.0492, 0.0263, 0.0218, 0.011, 0.0091, 0.008, 0.008, 0.004], [0.0395, 0.0307, 0.0271, 0.0128, 0.01, 0.0083, 0.0083, 0.0073], [0.009, 0.0045, 0.0035, 0.0033, 0.0033, 0.0031, 0.0026, 0.0026], [0.2639, 0.1171, 0.0627, 0.052, 0.0169, 0.0149, 0.0131, 0.0123], [0.0412, 0.0104, 0.0092, 0.0038, 0.0032, 0.003, 0.003, 0.003], [0.1083, 0.0242, 0.0129, 0.0129, 0.0095, 0.0089, 0.0084, 0.0054], [0.0024, 0.0013, 0.0012, 0.0011, 0.0011, 0.0011, 0.0011, 0.001], [0.0033, 0.0017, 0.0016, 0.0015, 0.0012, 0.0011, 0.001, 0.001], [0.0017, 0.0017, 0.0015, 0.0014, 0.0013, 0.0012, 0.001, 0.001], [0.0084, 0.0062, 0.0062, 0.0042, 0.0035, 0.0033, 0.0033, 0.0031], [0.0079, 0.0054, 0.004, 0.0035, 0.0033, 0.0024, 0.0024, 0.0021], [0.0231, 0.0204, 0.0102, 0.0096, 0.007, 0.0062, 0.0062, 0.0062], [0.0275, 0.0122, 0.0122, 0.0108, 0.0089, 0.0084, 0.0084, 0.007], [0.0303, 0.0162, 0.0118, 0.0111, 0.0092, 0.0076, 0.0068, 0.006], [0.0525, 0.016, 0.0141, 0.0125, 0.011, 0.0091, 0.0076, 0.0052], [0.0293, 0.0074, 0.0058, 0.0048, 0.0048, 0.0048, 0.0045, 0.0037], [0.0073, 0.0047, 0.0045, 0.0037, 0.0033, 0.0031, 0.0029, 0.0024], [0.0192, 0.0109, 0.008, 0.0071, 0.0071, 0.0048, 0.0046, 0.0043], [0.0211, 0.0106, 0.0077, 0.0077, 0.0064, 0.0064, 0.006, 0.0053], [0.1235, 0.1023, 0.0515, 0.0401, 0.0139, 0.0089, 0.0084, 0.0084], [0.0338, 0.0317, 0.0247, 0.015, 0.015, 0.0141, 0.008, 0.0066], [0.0209, 0.0209, 0.0209, 0.0163, 0.0163, 0.0135, 0.0135, 0.0127], [0.0812, 0.0716, 0.0263, 0.0233, 0.017, 0.016, 0.0132, 0.0097], [0.0289, 0.0255, 0.0186, 0.0164, 0.0154, 0.0145, 0.012, 0.0106], [0.0265, 0.0265, 0.0234, 0.022, 0.0142, 0.0125, 0.0125, 0.0125], [0.0263, 0.0218, 0.017, 0.017, 0.0124, 0.0097, 0.0091, 0.0085], [0.0192, 0.0181, 0.0141, 0.0141, 0.0124, 0.0117, 0.0117, 0.0117], [0.0285, 0.0222, 0.0184, 0.0153, 0.0135, 0.0135, 0.0112, 0.0105], [0.0505, 0.0326, 0.0211, 0.0198, 0.0175, 0.0175, 0.0175, 0.0154], [0.0533, 0.0344, 0.0323, 0.0323, 0.0252, 0.0236, 0.0173, 0.0163], [0.0882, 0.0472, 0.0391, 0.0367, 0.0345, 0.0324, 0.0223, 0.0223], [0.1199, 0.0642, 0.0532, 0.0441, 0.0343, 0.0285, 0.0285, 0.0222], [0.0568, 0.0344, 0.0323, 0.0304, 0.0285, 0.0285, 0.0196, 0.0163], [0.0649, 0.037, 0.0288, 0.0271, 0.0254, 0.0224, 0.0224, 0.0186], [0.0903, 0.0427, 0.0332, 0.0228, 0.0228, 0.0202, 0.0178, 0.0157], [0.1391, 0.0898, 0.0512, 0.0481, 0.0166, 0.0138, 0.0129, 0.0129], [0.3385, 0.0519, 0.0488, 0.038, 0.0149, 0.014, 0.0131, 0.0123], [0.3656, 0.0597, 0.0282, 0.022, 0.0182, 0.0151, 0.0125, 0.0118], [0.2726, 0.0648, 0.0504, 0.0197, 0.0164, 0.0154, 0.0144, 0.0136], [0.1901, 0.0512, 0.0512, 0.0177, 0.0166, 0.0147, 0.0138, 0.0129], [0.1377, 0.065, 0.0447, 0.0211, 0.0211, 0.0186, 0.0128, 0.012], [0.1354, 0.064, 0.0388, 0.0322, 0.0284, 0.0221, 0.0183, 0.0152], [0.0921, 0.0865, 0.0409, 0.0318, 0.0281, 0.016, 0.015, 0.0133], [0.1936, 0.0628, 0.046, 0.0246, 0.0217, 0.0217, 0.0217, 0.0192], [0.0612, 0.054, 0.0508, 0.0255, 0.0255, 0.024, 0.0212, 0.0199], [0.0582, 0.0375, 0.0353, 0.0258, 0.0258, 0.0214, 0.0201, 0.0167], [0.1242, 0.0625, 0.019, 0.0179, 0.0123, 0.0109, 0.0109, 0.0109], [0.1589, 0.1493, 0.0313, 0.0202, 0.0167, 0.0157, 0.0148, 0.0139], [0.0981, 0.0981, 0.0866, 0.0319, 0.0219, 0.0206, 0.0182, 0.0133], [0.1245, 0.1099, 0.0588, 0.0552, 0.038, 0.0357, 0.0335, 0.0261], [0.1181, 0.1042, 0.0812, 0.0524, 0.0463, 0.0318, 0.0299, 0.0205], [0.2093, 0.0929, 0.0638, 0.06, 0.0467, 0.0342, 0.0321, 0.025], [0.3785, 0.1788, 0.0957, 0.0311, 0.0258, 0.0214, 0.0156, 0.013], [0.7731, 0.0385, 0.03, 0.0265, 0.0265, 0.0233, 0.016, 0.0125], [0.9258, 0.017, 0.0117, 0.0091, 0.0055, 0.0049, 0.0049, 0.0049], [0.9336, 0.0118, 0.0092, 0.0063, 0.0056, 0.0056, 0.0043, 0.0032], [0.6432, 0.1118, 0.0678, 0.0438, 0.0249, 0.0092, 0.0046, 0.0034], [0.4576, 0.1908, 0.1311, 0.0959, 0.0058, 0.0054, 0.0045, 0.0033]], "ranks": {"Rust": [26427, 35876, 34138, 110016, 6878, 23678, 41355, 51783, 66988, 24342, 8665, 17945, 17427, 22470, 20827, 19709, 25845, 68952, 69565, 41990, 58776, 75548, 60074, 23080, 24822, 24141, 12472, 12144, 10785, 11579, 13341, 13495, 14866, 15817, 14445, 13076, 10262, 9875, 11624, 14705, 9632, 8268, 6289, 7146, 8986, 8086, 12218, 11285, 8590, 17587, 65820, 102168, 49310, 67221, 51051, 55895, 20950, 9428, 9196, 6895, 4597, 4275, 2723]}}, {"pos": 477, "top": [[" \u2013", "\u2013", ".", ",", ".\u2013", "\u2013and", "\u00a0", "\u2022"], ["\u2013", " \u2013", "\u2013and", "\u2013\u2013", ".\u2013", " \u2013,", "  \n\n", "**\u2013"], ["\u2013", " \u2013", ".\u2013", "\u2013and", "\u2026..", "\u2013\u2013", ",", " \u2013,"], ["\u52a0\u62ff\u5927", "odle", "\u0eb2\u0e99", " Shemale", " milfs", " logistique", "CursorPosition", "ersp"], ["\u2013", "\u2013\u2013", ".\u2013", "\u2013and", "\u7fe1", ".\u2022", " capabilities", "\ufffd"], ["\u2013", ".\u2013", "\u2013and", "\u2013\u2013", "\u7fe1", "-display", " capabilities", "capabilities"], [".\u2013", "\u2013", ".`", ".\u2022", "\ufffd", "\u2013\u2013", "\u2013and", " \u2013"], [".\u2013", "\u2013", ".`", "\u2013and", "-performance", "\u8e42", ".\u2022", "-quality"], [".\u2013", " \u2013", "?...", "\u2013", ".`", "\u2013and", ".\u00bb", "......"], ["\u2013", ".\u2013", "\u2013and", "\u2013\u2013", " \u2013", "Whilst", "?...", "\u4e0d\u4f73"], ["\u2013", ".\u2013", "...", " \u2013", " [\u2026]", "?...", ":...", "\u2013and"], ["\u4e0d\u4f73", "\u8e42", "avanaugh", "\u5fc3\u7406\u538b\u529b", "\u4e0d\u61c8\u52aa\u529b", " capabilities", " performance", "\u827a\u672f\u4e2d\u5fc3"], ["\u4e0d\u4f73", " performance", "\u8e42", " capabilities", "avanaugh", " leverage", "-driven", " vehicle"], ["\u4e0d\u4f73", " performance", " capabilities", "avanaugh", "\u8e42", "\u559c\u6012\u54c0", "\u7ecf\u6d4e\u5b66\u9662", " scalability"], [" performance", "\u8e42", " strategic", " savvy", "\u4e0d\u4f73", " capabilities", " showcase", " capability"], [" performance", "\u8e42", "\u4e0d\u4f73", " savvy", "\u559c\u6012\u54c0", " strategic", " effortlessly", " challenges"], ["\u4e0d\u4f73", " capabilities", "\u8e42", " savvy", " performance", " capability", " scalability", " challenges"], ["\u4e0d\u4f73", " scalability", " savvy", " tweaks", "\u7ecf\u6d4e\u5b66\u9662", "\u9ad8\u6027\u4ef7\u6bd4", "\u8e42", "\u8212\u9002\u5ea6"], ["\u4e0d\u4f73", "\u8e42", "\u8212\u9002\u5ea6", " tweaks", " scalability", "avanaugh", " savvy", "\u4f4e\u8ff7"], ["\u4e0d\u4f73", "\u8e42", " savvy", " prowess", " effortlessly", " tweaks", "avanaugh", "\u6027\u4ef7\u6bd4"], ["\u4e0d\u4f73", "\u8e42", "<|endoftext|>", " requisite", " savvy", " prowess", " capability", " effortlessly"], ["\u4e0d\u4f73", "\u4f4e\u8ff7", " scalability", "\u8212\u9002\u5ea6", "\u8e42", "avanaugh", " impactful", "Optimizer"], [" ``", "\u4e0d\u4f73", "\u8e42", " prowess", " performance", " capabilities", " savvy", " impactful"], [" ``", "\u8e42", "\u4e0d\u4f73", " performance", " capabilities", " incredibly", " prowess", " capability"], ["\u4e0d\u4f73", " impactful", " capabilities", " capability", "\u8e42", "Performance", " prowess", " savvy"], [" impactful", " overclock", " capabilities", "\u4e0d\u4f73", " metrics", " optimizations", " performance", " scalability"], [" overclock", " optimizations", " capabilities", " metrics", " impactful", " scalability", " performance", " agility"], [" performance", " speed", " efficiency", " capabilities", " capability", " engine", " agility", " engines"], [" performance", " speed", " efficiency", " capabilities", " engine", " capability", " technologies", " agility"], [" performance", " optimization", " speed", " efficiency", " capabilities", " engine", " optimizations", " metrics"], [" performance", " speed", " optimization", " efficiency", " engine", " metrics", " optimizations", " technology"], [" performance", " critical", " optimization", " speed", " efficiency", " technology", " upgrades", " impact"], [" performance", " critical", " speed", " optimization", " engine", " efficiency", " relentless", " incredibly"], [" optimization", " optimizations", " bottleneck", " scalability", " metrics", " optimized", " overclock", " tweaks"], [" bottleneck", " overclock", " scalability", " optimization", " relentless", " tweaks", " optimizations", " metrics"], [" relentless", " overclock", " optimization", " bottleneck", " scalability", " optimizations", " relentlessly", " tweaks"], [" bottleneck", " optimizations", " scalability", " optimization", " overclock", " relentless", " tweaks", " relentlessly"], [" bottleneck", " optimization", " optimizations", " scalability", " overclock", " relentless", " tweaks", " unsustainable"], [" optimization", " bottleneck", " optimizations", " performance", " scalability", " relentless", " optimized", " overclock"], [" optimization", " optimizations", " bottleneck", " overclock", " performance", " optimized", " scalability", " relentless"], [" optimization", " optimizations", " bottleneck", " performance", " overclock", " optimized", " efficiency", " optimizing"], [" optimization", " optimizations", " bottleneck", " performance", " optimizing", " overclock", " optimized", " efficiency"], [" optimization", " bottleneck", " optimizations", " performance", " optimizing", " optimized", " overclock", " engineering"], [" optimization", " bottleneck", " optimizations", " performance", " optimizing", " engineering", "-performance", " optimized"], [" optimization", " bottleneck", " performance", " optimizations", " engineering", " budgets", " efficiency", "-intensive"], [" bottleneck", " optimization", " performance", " engineering", " optimizations", " crisis", "-intensive", " budgets"], [" optimization", " bottleneck", " optimizations", "-intensive", " obsession", " engineering", " performance", "-heavy"], [" bottleneck", " optimization", "-intensive", "-driven", "-heavy", " obsession", "-focused", " relentless"], [" bottleneck", " optimization", "-intensive", " relentless", "-heavy", " obsession", " relentlessly", "-focused"], [" bottleneck", "-heavy", " optimization", "-intensive", "-driven", "-focused", " relentless", " obsession"], [" bottleneck", "-heavy", "-driven", "-intensive", " nightmare", " optimization", "-focused", "\u5012\u903c"], [" bottleneck", " nightmare", "-driven", " obsession", "-heavy", "-intensive", "-focused", " optimization"], [" bottleneck", " nightmare", " optimization", "-driven", "-focused", "-intensive", " obsession", "\u74f6\u9888"], [" bottleneck", " nightmare", "-driven", "-performance", " optimization", " obsession", " engineering", "-intensive"], [" bottleneck", " nightmare", " optimization", " showdown", " battleground", " engineering", " trap", " obsession"], [" bottleneck", " nightmare", " optimization", " trap", " showdown", " torture", " deadlock", " catastrophe"], [" nightmare", " bottleneck", " trap", " optimization", "\u9677\u9631", " traps", " deadlock", " catastrophe"], [" trap", " nightmare", " optimization", "\u9677\u9631", " traps", " bottleneck", "Trap", "trap"], [" trap", " traps", "\u9677\u9631", " bottleneck", "Trap", " nightmare", " Trap", "trap"], [" trap", " traps", " bottleneck", " optimization", "\u9677\u9631", " nightmare", " engineering", " Trap"], [" trap", " bottleneck", " traps", " optimization", " nightmare", " engineering", "\u9677\u9631", " bott"], [" trap", " bottleneck", " traps", " mine", " nightmare", " optimization", " engineering", " treadmill"], [" trap", " bottleneck", " engineering", " traps", " cliff", " treadmill", " nightmare", " optimization"]], "p": [[0.6551, 0.3094, 0.0224, 0.003, 0.0024, 0.0013, 0.0006, 0.0006], [0.6295, 0.1694, 0.0907, 0.0123, 0.0084, 0.0031, 0.0004, 0.0003], [0.9556, 0.0198, 0.0106, 0.0106, 0.0007, 0.0004, 0.0004, 0.0003], [0.0016, 0.0011, 0.0011, 0.0011, 0.0009, 0.0008, 0.0007, 0.0007], [0.0582, 0.0483, 0.04, 0.0138, 0.0035, 0.002, 0.0019, 0.0018], [0.0429, 0.0334, 0.0075, 0.007, 0.0055, 0.0017, 0.0017, 0.0017], [0.0476, 0.0448, 0.0137, 0.0128, 0.0113, 0.0088, 0.0057, 0.0044], [0.031, 0.01, 0.0054, 0.0047, 0.0039, 0.0029, 0.0027, 0.0027], [0.0317, 0.0097, 0.0085, 0.0075, 0.0067, 0.0055, 0.0049, 0.004], [0.0618, 0.0292, 0.0188, 0.0079, 0.0051, 0.0024, 0.0018, 0.0018], [0.114, 0.0736, 0.0691, 0.061, 0.0224, 0.0145, 0.0128, 0.01], [0.0027, 0.0021, 0.0016, 0.0015, 0.0014, 0.0013, 0.0013, 0.0012], [0.0035, 0.0029, 0.0023, 0.0023, 0.0019, 0.0015, 0.0015, 0.0014], [0.0035, 0.0019, 0.0019, 0.0019, 0.0019, 0.0014, 0.0013, 0.0013], [0.0066, 0.0038, 0.0033, 0.0028, 0.0028, 0.0026, 0.0023, 0.0023], [0.0045, 0.0039, 0.0031, 0.0024, 0.002, 0.002, 0.0019, 0.0019], [0.0049, 0.0043, 0.0038, 0.0029, 0.0022, 0.002, 0.0019, 0.0019], [0.0061, 0.0027, 0.0025, 0.0021, 0.0017, 0.0015, 0.0015, 0.0015], [0.0145, 0.0032, 0.0022, 0.0018, 0.0018, 0.0016, 0.0015, 0.0014], [0.0105, 0.006, 0.002, 0.0016, 0.0014, 0.0013, 0.0013, 0.0012], [0.0092, 0.0053, 0.003, 0.0018, 0.0015, 0.0012, 0.001, 0.001], [0.0062, 0.0026, 0.0021, 0.002, 0.002, 0.0015, 0.0013, 0.0012], [0.019, 0.0102, 0.0058, 0.0024, 0.0024, 0.0023, 0.0019, 0.0018], [0.0071, 0.0067, 0.0052, 0.0049, 0.0023, 0.002, 0.0019, 0.0017], [0.0085, 0.0049, 0.0043, 0.0038, 0.0033, 0.0033, 0.0033, 0.0024], [0.0113, 0.01, 0.0094, 0.0057, 0.0057, 0.0054, 0.005, 0.0047], [0.0131, 0.0085, 0.008, 0.0066, 0.0062, 0.0055, 0.0055, 0.0051], [0.0189, 0.0115, 0.0095, 0.0079, 0.0065, 0.0048, 0.0042, 0.004], [0.0448, 0.0176, 0.0137, 0.0121, 0.0073, 0.0069, 0.0065, 0.0061], [0.0958, 0.0228, 0.0177, 0.0177, 0.0122, 0.0114, 0.0107, 0.0089], [0.1628, 0.0235, 0.022, 0.0151, 0.0111, 0.0092, 0.0086, 0.0086], [0.1244, 0.0203, 0.0191, 0.0179, 0.0131, 0.0109, 0.009, 0.0085], [0.0417, 0.0185, 0.0135, 0.0127, 0.0093, 0.0087, 0.0082, 0.0077], [0.0483, 0.0293, 0.0243, 0.0214, 0.0157, 0.0147, 0.013, 0.0122], [0.0218, 0.0205, 0.017, 0.0159, 0.0159, 0.011, 0.0097, 0.0085], [0.0473, 0.0305, 0.0269, 0.0253, 0.0223, 0.021, 0.0119, 0.0119], [0.0493, 0.0384, 0.0318, 0.0318, 0.0281, 0.0264, 0.0117, 0.0097], [0.0802, 0.0708, 0.0487, 0.0295, 0.0245, 0.0191, 0.0131, 0.0109], [0.1452, 0.1131, 0.0644, 0.0223, 0.0185, 0.0185, 0.0173, 0.0153], [0.2435, 0.1081, 0.0842, 0.031, 0.0273, 0.0241, 0.0227, 0.0213], [0.2772, 0.1155, 0.102, 0.0794, 0.0292, 0.0274, 0.0214, 0.0201], [0.3627, 0.1512, 0.0809, 0.0714, 0.0382, 0.028, 0.0247, 0.0117], [0.3224, 0.1344, 0.1344, 0.0465, 0.0249, 0.0194, 0.0171, 0.0151], [0.3407, 0.1253, 0.1253, 0.0671, 0.0205, 0.0132, 0.011, 0.0091], [0.2804, 0.1501, 0.0666, 0.0458, 0.0191, 0.0109, 0.0109, 0.009], [0.2063, 0.1607, 0.0406, 0.0231, 0.0217, 0.0132, 0.0124, 0.0109], [0.225, 0.1985, 0.0286, 0.0209, 0.0197, 0.0144, 0.0144, 0.0135], [0.2372, 0.1352, 0.0342, 0.025, 0.0235, 0.0235, 0.0207, 0.0161], [0.3037, 0.0637, 0.0598, 0.0466, 0.0363, 0.0234, 0.0182, 0.0161], [0.3804, 0.0797, 0.0354, 0.0354, 0.0312, 0.0293, 0.0276, 0.0228], [0.4437, 0.0564, 0.0302, 0.0284, 0.0284, 0.0266, 0.0235, 0.0195], [0.4811, 0.1216, 0.0371, 0.0327, 0.0211, 0.0199, 0.0199, 0.0128], [0.7748, 0.0636, 0.0234, 0.0104, 0.0067, 0.0063, 0.0059, 0.0043], [0.6614, 0.1149, 0.02, 0.0176, 0.0166, 0.0078, 0.0069, 0.0057], [0.8025, 0.0746, 0.0275, 0.0069, 0.0048, 0.0029, 0.002, 0.002], [0.7382, 0.0882, 0.0535, 0.0135, 0.0053, 0.0053, 0.005, 0.0034], [0.5604, 0.1606, 0.1104, 0.0669, 0.0149, 0.008, 0.0035, 0.0035], [0.744, 0.0784, 0.0539, 0.0476, 0.0327, 0.0198, 0.0021, 0.002], [0.8941, 0.0572, 0.0306, 0.0068, 0.0025, 0.0025, 0.002, 0.0017], [0.9004, 0.0349, 0.0349, 0.0078, 0.0069, 0.0025, 0.002, 0.0017], [0.8377, 0.1134, 0.0119, 0.0093, 0.005, 0.0032, 0.0027, 0.0013], [0.864, 0.0911, 0.0075, 0.0062, 0.004, 0.0031, 0.0029, 0.0024], [0.8996, 0.0575, 0.0069, 0.0065, 0.0044, 0.0035, 0.0021, 0.0015]], "ranks": {"Rust": [11903, 52393, 28293, 76097, 17333, 19149, 33438, 29761, 31121, 37137, 12843, 32406, 23369, 41349, 27764, 23381, 28635, 55579, 82440, 88225, 58007, 87986, 46548, 26455, 28786, 33486, 17995, 7218, 7174, 7037, 5997, 8167, 9379, 15910, 19766, 17697, 9198, 9461, 9401, 11561, 7400, 9230, 11580, 15375, 9120, 9666, 12346, 12178, 12384, 18148, 18002, 29179, 33981, 29814, 26480, 37607, 45729, 33507, 30709, 19055, 19228, 29361, 22983]}}, {"pos": 478, "top": [[".", ",", " ", "\"", "-", ";", "\u00a0", "["], [" \u00ae", "  \n  \n", "@", " [@", " @", " \u25b3", " *@", " (@"], [",", ".", "[", "\u2026", "@", ";", "\u2013", "'"], [" \u300e", " ''", ",''", " ``", "\uff3f\uff3f", " \u2018\u2019", "\u3001\u300e", ",__"], ["*@", " \u300e", " *@", " @", " @$", " (@", "\uff20", " \u00ae"], ["trap", "ghost", " Guta", " Ejem", " Trap", "shit", "mist", "elib"], [" \u300e", " __", " @", " \u00ae", "__", "trap", ",__", "\u3000"], [" __", " \u300e", ",__", ".__", " *@", "__", " @", "trap"], [" *@", " __", " \u300e", ",__", "trap", "*@", "buster", "__"], [",''", " trap", "trap", " \u300e", " Trap", "buster", ".''", "Trap"], [" trap", " Trap", "trap", " traps", " \u300e", "Trap", " havoc", " hell"], [" trap", "buster", " Trap", "trap", " \u300e", ",''", " havoc", " traps"], [" trap", "buster", " unleashed", " traps", "trap", " Trap", " havoc", " hell"], [" trap", "buster", " havoc", " unleashed", " doom", " traps", " hell", " Trap"], [" trap", " unleashed", " havoc", " traps", " Trap", " relentlessly", " doom", " obliv"], [" trap", " unleashed", " traps", " relentlessly", " Trap", " obliv", "trap", " doom"], [" trap", " Trap", " relentlessly", " traps", " looming", " unleashed", "trap", " doom"], [" trap", " Trap", " traps", " doomed", "\u9677\u9631", " unleashed", " looming", "trap"], [" trap", " doomed", " looming", " relentlessly", " unleashed", " elusive", "buster", " obliv"], [" trap", " looming", " doomed", " wildly", " relentlessly", " lurking", " merciless", " unleashed"], [" looming", " trap", " wildly", " --", " doomed", " relentlessly", "\u9677\u9631", " havoc"], ["buster", " doomed", " trap", "\u9677\u9631", " doom", " havoc", " looming", "\u7edd\u5883"], [" trap", " doomed", "\u9677\u9631", " relentlessly", " looming", "buster", " --", " elusive"], [" --", " trap", " relentlessly", " traps", " looming", " wildly", " doomed", " lurking"], ["\n\n", " \n\n", "  \n\n", " relentlessly", " trap", " looming", " --", " wildly"], [" trap", " traps", " relentlessly", " doom", "\u9677\u9631", " doomed", " hell", " lurking"], [" trap", " traps", " relentlessly", " lurking", " looming", " hell", " relentless", " doom"], [" trap", " relentlessly", " traps", " wildly", " looming", " relentless", " lurking", " --"], [" trap", " traps", " relentlessly", " relentless", " wildly", " looming", " paradox", " lurking"], [" trap", " traps", " relentlessly", " relentless", " paradox", " looming", " hell", " Trap"], [" trap", " traps", " .", " relentlessly", " hell", " relentless", " paradox", " ?"], [" trap", " traps", " .", " hell", " paradox", " relentless", " relentlessly", " hidden"], [" trap", " traps", " hell", " relentless", " relentlessly", " paradox", " hidden", " Trap"], [" trap", " traps", " relentlessly", " relentless", " hell", " paradox", " doom", " Trap"], [" relentlessly", " trap", " traps", " relentless", " looming", " merciless", " lurking", " Trap"], [" relentlessly", " relentless", " trap", " traps", " wildly", " hell", " merciless", " heavily"], [" relentlessly", " trap", " relentless", " traps", " doomed", " hell", " merciless", " Trap"], [" trap", " relentlessly", " traps", " relentless", " Trap", " doomed", " hell", "\u9677\u9631"], [" trap", " traps", " relentlessly", "\u9677\u9631", " Trap", " relentless", " doomed", " trapping"], [" trap", " traps", "\u9677\u9631", " Trap", " relentlessly", "trap", " relentless", " trapping"], [" trap", " traps", " Trap", "\u9677\u9631", " relentlessly", "trap", " trapping", " relentless"], [" trap", " traps", "\u9677\u9631", " Trap", " trapping", "trap", " relentlessly", "Trap"], [" traps", " trap", "\u9677\u9631", " Trap", " trapping", "trap", " pitfalls", "Trap"], [" traps", " trap", "\u9677\u9631", " Trap", "trap", " pitfalls", " trapping", " relentlessly"], [" traps", " trap", "\u9677\u9631", " Trap", " pitfalls", " relentlessly", "trap", " relentless"], [" trap", " traps", "\u9677\u9631", " Trap", " relentlessly", " pitfalls", "trap", " relentless"], [" trap", " traps", "\u9677\u9631", " Trap", "trap", " pitfalls", " relentlessly", " doomed"], [" trap", " traps", "\u9677\u9631", " Trap", "trap", "Trap", " relentlessly", " pitfalls"], [" trap", " traps", "\u9677\u9631", ".", ".**", " Trap", "trap", "Trap"], [" trap", " traps", ".", ".**", "\u9677\u9631", " Trap", ".*", " disguised"], [" trap", "\u9677\u9631", " traps", ".", ".**", ".*", " Trap", "Trap"], [" disguised", ".**", ".", ".*", ".)", ".\"", ".]", " trap"], [" disguised", ".**", ".", " trap", "Trap", "**.", ".]", "\u9677\u9631"], [" disguised", " trap", "\u4f2a\u88c5", " disguise", "Trap", "trap", " traps", " Trap"], [" disguised", " trap", "Trap", " Trap", "trap", " traps", "\u9677\u9631", "\u4f2a\u88c5"], [" disguised", " trap", "Trap", " Trap", "trap", ".**", ".", " traps"], [" disguised", " waiting", " trap", "waiting", "Trap", "trap", "\u7b49\u5f85", " Trap"], [" trap", "Trap", " disguised", "trap", " Trap", " waiting", " traps", "\u9677\u9631"], [" disguised", " waiting", " trap", "doors", "Trap", " bait", " masked", "door"], [" disguised", " waiting", "door", "doors", " wrapped", " bait", ".", " masked"], [" disguised", " waiting", ".", "door", " wrapped", "\n\n", "doors", " dressed"], [".", " disguised", " waiting", "door", " wrapped", "\n\n", " dressed", " designed"], [".", " disguised", " waiting", "door", " wrapped", ",", " dressed", " masked"]], "p": [[0.5715, 0.1975, 0.0343, 0.0267, 0.0184, 0.0098, 0.0072, 0.0068], [0.0464, 0.034, 0.0319, 0.03, 0.0182, 0.0171, 0.0151, 0.0151], [0.5699, 0.0681, 0.0439, 0.0388, 0.0302, 0.025, 0.0092, 0.0087], [0.3061, 0.1199, 0.0441, 0.0323, 0.0162, 0.0119, 0.0082, 0.0072], [0.0298, 0.0232, 0.0218, 0.017, 0.0132, 0.0124, 0.0097, 0.0097], [0.0089, 0.0078, 0.0054, 0.0045, 0.0042, 0.0037, 0.0033, 0.0031], [0.1458, 0.078, 0.021, 0.0185, 0.0144, 0.0136, 0.0127, 0.012], [0.2448, 0.0795, 0.0701, 0.0258, 0.0242, 0.0138, 0.013, 0.0108], [0.1048, 0.0766, 0.0527, 0.0527, 0.0182, 0.0142, 0.0142, 0.0133], [0.039, 0.0252, 0.0237, 0.0237, 0.0153, 0.0127, 0.0112, 0.0082], [0.1188, 0.03, 0.0265, 0.0194, 0.0092, 0.0092, 0.0059, 0.0059], [0.0395, 0.0186, 0.01, 0.01, 0.0088, 0.0088, 0.0078, 0.0069], [0.0338, 0.017, 0.0091, 0.0071, 0.0059, 0.0059, 0.0049, 0.0049], [0.0309, 0.0155, 0.0137, 0.0114, 0.0061, 0.0061, 0.0061, 0.005], [0.074, 0.0165, 0.0155, 0.0146, 0.0113, 0.01, 0.0088, 0.0069], [0.0742, 0.0187, 0.0165, 0.0137, 0.0137, 0.0069, 0.0057, 0.005], [0.1214, 0.0239, 0.0164, 0.0154, 0.012, 0.0113, 0.0083, 0.0078], [0.0876, 0.0236, 0.0126, 0.0126, 0.0105, 0.0098, 0.0092, 0.0092], [0.0407, 0.0263, 0.0141, 0.0124, 0.011, 0.011, 0.0103, 0.0097], [0.0419, 0.0254, 0.0175, 0.0154, 0.0136, 0.0106, 0.0099, 0.0093], [0.0215, 0.0215, 0.0178, 0.0157, 0.0148, 0.0139, 0.0108, 0.0101], [0.0208, 0.0152, 0.0143, 0.0143, 0.0072, 0.0072, 0.0063, 0.006], [0.025, 0.0183, 0.0142, 0.0126, 0.0126, 0.0111, 0.0111, 0.0104], [0.0381, 0.0381, 0.0336, 0.0217, 0.0217, 0.0149, 0.014, 0.0085], [0.2241, 0.12, 0.0775, 0.0173, 0.0173, 0.0162, 0.0126, 0.0112], [0.0587, 0.0403, 0.0295, 0.0203, 0.0203, 0.0168, 0.0168, 0.0168], [0.0952, 0.0696, 0.035, 0.0226, 0.0176, 0.0146, 0.0137, 0.0137], [0.0705, 0.0549, 0.0402, 0.0294, 0.0244, 0.0178, 0.013, 0.013], [0.1497, 0.0966, 0.0517, 0.0244, 0.023, 0.0203, 0.0168, 0.0115], [0.2336, 0.1606, 0.0279, 0.0192, 0.014, 0.0132, 0.0116, 0.0109], [0.1258, 0.1182, 0.098, 0.0318, 0.0205, 0.0181, 0.015, 0.0117], [0.0967, 0.0708, 0.0551, 0.0245, 0.019, 0.0179, 0.0179, 0.0131], [0.1221, 0.0951, 0.0329, 0.0309, 0.0272, 0.0199, 0.0137, 0.0121], [0.1134, 0.1, 0.0883, 0.0688, 0.0144, 0.0135, 0.0077, 0.0077], [0.1273, 0.1055, 0.0725, 0.0681, 0.0126, 0.0092, 0.0092, 0.0092], [0.1739, 0.1055, 0.0772, 0.0498, 0.0098, 0.0092, 0.0087, 0.0081], [0.1711, 0.086, 0.0759, 0.0556, 0.018, 0.0109, 0.0097, 0.0075], [0.1752, 0.1546, 0.0828, 0.0472, 0.0197, 0.0185, 0.0127, 0.0119], [0.4008, 0.1893, 0.0654, 0.0479, 0.0329, 0.0187, 0.0114, 0.0045], [0.5005, 0.3036, 0.0767, 0.0466, 0.0118, 0.0046, 0.0038, 0.0036], [0.5184, 0.3563, 0.0426, 0.0426, 0.0051, 0.0045, 0.0027, 0.002], [0.5073, 0.3951, 0.0416, 0.0324, 0.003, 0.003, 0.0021, 0.0016], [0.5172, 0.4028, 0.0481, 0.0177, 0.0021, 0.0019, 0.0014, 0.0009], [0.5449, 0.3745, 0.0507, 0.0145, 0.0018, 0.0017, 0.0012, 0.0009], [0.5586, 0.384, 0.0169, 0.009, 0.0031, 0.0021, 0.0011, 0.0011], [0.5282, 0.4114, 0.011, 0.0097, 0.0024, 0.0016, 0.0015, 0.0013], [0.5784, 0.3508, 0.0198, 0.0078, 0.003, 0.0025, 0.002, 0.002], [0.5491, 0.3774, 0.0273, 0.0083, 0.0035, 0.0019, 0.0015, 0.0014], [0.4581, 0.4043, 0.0426, 0.0258, 0.0095, 0.0084, 0.0054, 0.0031], [0.395, 0.2715, 0.0999, 0.0472, 0.0237, 0.0153, 0.0093, 0.006], [0.319, 0.1707, 0.133, 0.0712, 0.0712, 0.0231, 0.0169, 0.0149], [0.3742, 0.2914, 0.1377, 0.0394, 0.0198, 0.0164, 0.0154, 0.0106], [0.6508, 0.1452, 0.0777, 0.0173, 0.0077, 0.0072, 0.0072, 0.0068], [0.9871, 0.004, 0.0015, 0.0013, 0.0009, 0.0008, 0.0008, 0.0005], [0.8501, 0.0791, 0.0257, 0.0156, 0.0094, 0.0074, 0.0031, 0.0014], [0.9033, 0.0309, 0.0129, 0.0114, 0.0078, 0.005, 0.0033, 0.0029], [0.6919, 0.2246, 0.0119, 0.0072, 0.0068, 0.0047, 0.0039, 0.0039], [0.3544, 0.1897, 0.1304, 0.1016, 0.1016, 0.0544, 0.048, 0.0051], [0.7641, 0.1705, 0.0062, 0.0051, 0.0048, 0.0048, 0.0035, 0.0029], [0.4689, 0.3223, 0.1186, 0.034, 0.0142, 0.0043, 0.0041, 0.0041], [0.6119, 0.2551, 0.0569, 0.0345, 0.0099, 0.0053, 0.0053, 0.0025], [0.7, 0.1562, 0.0836, 0.0187, 0.012, 0.0053, 0.0027, 0.0022], [0.9969, 0.0015, 0.0005, 0.0003, 0.0003, 0.0001, 0.0, 0.0]], "ranks": {"Rust": [65673, 56239, 67928, 36439, 6073, 15165, 15149, 14299, 17918, 6209, 4367, 8986, 6462, 4827, 5008, 3989, 6077, 20392, 29323, 19020, 27808, 35412, 20019, 6614, 5769, 6105, 4894, 3893, 3767, 3928, 4775, 5005, 5726, 4804, 5810, 6685, 6979, 8979, 9974, 11523, 11262, 10731, 9626, 11046, 7519, 6883, 5974, 5106, 3203, 2971, 12452, 61769, 101274, 70134, 80139, 72151, 75504, 98525, 86686, 24997, 31443, 9653, 5811]}}, {"pos": 479, "top": [[".", " \u2013", ",", "\u2013", ";", "\u00a0\u00a0", "\u00a0", "\u2026."], [" \u2013", "\u2013", "\u2013and", ",", " \u2013,", ".", " \u200b\u200b", "\u2013\u2013"], ["\u2013", ",", ".", " \u2013", "\u2026..", "\u2026", "\u2026.", "\u2013and"], [" milfs", " Shemale", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Guta", " Blowjob", " \u041a\u0440\u0430\u0441\u0438", "-------------</", " Geile"], [":@", " Guta", " \u041a\u0440\u0430\u0441\u0438", "\u2193\u2193", " (@", " CSG", " \u201c.", ".@"], [" \u200b\u200b", "\u2026..", " Guta", "fst", " Vodafone", ":href", "!:", " Celebrity"], ["  \n\n", "\n\n", "<|endoftext|>", "  \n", "\u2026..", " \u201c", " \u00a0", " \u201d"], ["   \n\n", "  \n\n", "    \n\n", " \n\n", "     \n\n", "   \n", "       \n\n", "    \n"], [" \n\n", "   \n\n", "  \n\n", "    \n\n", "\n\n", "\t\n\n", "     \n\n", "      \n\n"], [" hugely", "\u516c\u53f7", " \u00ad", "\u0434\u044c\u043c\u0438", "Whilst", "\ufffd\ufffd", "\u00a0\u00a0\u00a0", "\u4e94\u82b1\u516b"], [" @", " even", " \u00ad", "<|endoftext|>", "\n\n", " truly", " genuinely", " effortlessly"], [" **#", "\u667a\u9020", " **>>", " **", " **\u20ac", " unimagin", " junk", " **+"], [" incredibly", " relentlessly", " unimagin", " uncomfort", "\u54ab\u5c3a", "\u6bcf\u4e00\u4e2a\u4eba\u7684", "\u0631\u0635", "\u534e\u5fb7"], [" relentlessly", " incredibly", " hugely", "\u0631\u0635", " effortlessly", " relentless", " plenty", "\u6bcf\u4e00\u4e2a\u4eba\u7684"], ["\n\n", "  \n\n", " \n\n", " --", " relentlessly", " truly", "<|endoftext|>", "\t\n\n"], ["\n\n", " incredibly", " folks", " arguably", "\u5373\u4fbf", "\u5373\u4fbf\u662f", " truly", " plenty"], ["<|endoftext|>", "\n\n", "  \n\n", " arguably", " \n\n", " swiftly", " incredibly", " overarching"], ["\n\n", "  \n\n", "<|endoftext|>", " \n\n", "   \n\n", "\r\n\r\n", "<|im_end|>", "\t\n\n"], ["\n\n", "<|endoftext|>", "  \n\n", "\r\n\r\n", "\u5373\u4fbf", " arguably", " incredibly", "\u5373\u4fbf\u662f"], ["<|endoftext|>", "\n\n", "  \n\n", " \n\n", "\r\n\r\n", "\u5373\u4fbf", "   \n\n", " swiftly"], ["<|endoftext|>", "\n\n", " \n\n", "  \n\n", "\r\n\r\n", "   \n\n", "<|im_end|>", "\t\n\n"], ["\n\n", "<|endoftext|>", "\r\n\r\n", " \n\n", "  \n\n", " swiftly", " \r\n\r\n", "\u5373\u4fbf"], ["\n\n", "<|endoftext|>", "\r\n\r\n", " \n\n", "  \n\n", " \r\n\r\n", " swiftly", "\n\n\n"], ["<|endoftext|>", "\n\n", " \n\n", "\r\n\r\n", "  \n\n", "\n\n\n", " \r\n\r\n", "<|im_end|>"], ["\n\n", "  \n\n", " \n\n", "\r\n\r\n", "<|endoftext|>", " \r\n\r\n", "   \n\n", "<|im_end|>"], ["\n\n", "  \n\n", "\r\n\r\n", " \n\n", " \r\n\r\n", "   \n\n", "\t\n\n", "<|im_end|>"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", "<|endoftext|>", " \r\n\r\n", "   \n\n", "\t\n\n"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", "<|endoftext|>", " \r\n\r\n", "   \n\n", "<|im_end|>"], ["\n\n", "  \n\n", " \n\n", "\r\n\r\n", "<|endoftext|>", " \r\n\r\n", "<|im_end|>", "   \n\n"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", "   \n\n", "<|im_end|>", " \r\n\r\n"], ["\n\n", "<|endoftext|>", " \n\n", "  \n\n", "\r\n\r\n", "   \n\n", " @", " ..."], ["<|endoftext|>", "\n\n", "  \n\n", " \n\n", "\r\n\r\n", "   \n\n", " @", "\n\n\n"], ["\n\n", "<|endoftext|>", "  \n\n", " \n\n", "\r\n\r\n", "<|im_end|>", " @", "   \n\n"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", "   \n\n", " \r\n\r\n", "<|im_end|>"], ["  \n\n", "<|endoftext|>", " \n\n", "\n\n", "   \n\n", "\r\n\r\n", " \r\n\r\n", "  \r\n\r\n"], ["  \n\n", "<|endoftext|>", "\n\n", " \n\n", "   \n\n", "\r\n\r\n", "<|im_end|>", "    \n\n"], ["  \n\n", "\n\n", "<|endoftext|>", " \n\n", "   \n\n", "\r\n\r\n", "<|im_end|>", "    \n\n"], ["  \n\n", "<|endoftext|>", "\n\n", " \n\n", "   \n\n", "<|im_end|>", "\r\n\r\n", "    \n\n"], ["  \n\n", "<|endoftext|>", "\n\n", " \n\n", "   \n\n", "<|im_end|>", " **", "\r\n\r\n"], ["  \n\n", "<|endoftext|>", "\n\n", " \n\n", "   \n\n", "<|im_end|>", "\r\n\r\n", "    \n\n"], ["  \n\n", "<|endoftext|>", "\n\n", " \n\n", "   \n\n", "<|im_end|>", "\r\n\r\n", " [\u2026]"], ["  \n\n", "\n\n", "<|endoftext|>", " \n\n", "   \n\n", "\r\n\r\n", "\t\n\n", "    \n\n"], ["  \n\n", "\n\n", "<|endoftext|>", " \n\n", "   \n\n", "\r\n\r\n", " **\u201c", "  \r\n\r\n"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "   \n\n", "\r\n\r\n", "<|im_end|>", "  \r\n\r\n"], ["  \n\n", "\n\n", "<|endoftext|>", " \n\n", "   \n\n", "\u2026**", "<|im_end|>", "\r\n\r\n"], ["  \n\n", "\n\n", "<|endoftext|>", " \n\n", " **", "   \n\n", " **\u201c", "\r\n\r\n"], ["  \n\n", "\n\n", " \n\n", "   \n\n", "\r\n\r\n", "\t\n\n", "    \n\n", "  \r\n\r\n"], ["  \n\n", "\n\n", " \n\n", "   \n\n", "\r\n\r\n", "    \n\n", "\t\n\n", "<|im_end|>"], ["  \n\n", " \n\n", "\n\n", " **", "   \n\n", "!**", " **\u201c", "**"], ["  \n\n", " \n\n", "\n\n", "   \n\n", "  \n  \n", "\t\n\n", "    \n\n", " **"], ["  \n\n", " \n\n", "\n\n", "   \n\n", "    \n\n", "\t\n\n", "  \n  \n", "\r\n\r\n"], ["\n\n", "  \n\n", " \n\n", "   \n\n", "    \n\n", " **", "\t\n\n", "**"], ["  \n\n", "\n\n", " \n\n", "**", " **", " **\"", "   \n\n", ";**"], ["\n\n", "  \n\n", "**", " \n\n", " **", ";**", " **\"", "\u2019**"], ["\n\n", "  \n\n", " \n\n", "**", "\u2019**", ";**", " **", "   \n\n"], ["\n\n", "  \n\n", "**", " **", " \n\n", "\u2019**", ";**", "-**"], ["\n\n", "  \n\n", " \n\n", "**", "   \n\n", "\t\n\n", ";**", " **\""], ["\n\n", "  \n\n", " \n\n", "**", "   \n\n", "\t\n\n", "    \n\n", "\r\n\r\n"], ["\n\n", "  \n\n", " \n\n", "**", "   \n\n", " **", "    \n\n", "\t\n\n"], ["\n\n", "  \n\n", " \n\n", "**", " **", " **\"", "-**", " **\u201c"], ["\n\n", "  \n\n", " \n\n", " **", "**", "\n\n\n\n", " **\"", "   \n\n"], ["\n\n", "  \n\n", " \n\n", " **", "\n\n\n\n", "**", " **\"", "   \n\n"], ["\n\n", "  \n\n", " \n\n", "\n\n\n\n", " If", " **", " You", " What"]], "p": [[0.432, 0.3813, 0.0964, 0.0663, 0.0062, 0.0029, 0.0027, 0.0019], [0.3777, 0.0744, 0.0107, 0.0027, 0.0027, 0.0022, 0.0019, 0.0014], [0.5234, 0.1499, 0.1499, 0.1031, 0.0261, 0.0131, 0.0109, 0.004], [0.0129, 0.0054, 0.0054, 0.005, 0.005, 0.0037, 0.0029, 0.0029], [0.0033, 0.0026, 0.0022, 0.002, 0.0018, 0.0017, 0.0016, 0.0014], [0.0063, 0.003, 0.0015, 0.0012, 0.0011, 0.0009, 0.0009, 0.0009], [0.1017, 0.0898, 0.0242, 0.0242, 0.0166, 0.0147, 0.0147, 0.0138], [0.1992, 0.0608, 0.0325, 0.0224, 0.0112, 0.0068, 0.0068, 0.0064], [0.3174, 0.2801, 0.2181, 0.0625, 0.0487, 0.0123, 0.0116, 0.0066], [0.001, 0.001, 0.0009, 0.0008, 0.0007, 0.0007, 0.0006, 0.0006], [0.0508, 0.0155, 0.0113, 0.0106, 0.01, 0.0078, 0.0078, 0.0053], [0.0027, 0.0022, 0.0021, 0.002, 0.0015, 0.0014, 0.0014, 0.0012], [0.0048, 0.0029, 0.0024, 0.0019, 0.0015, 0.0014, 0.0012, 0.0012], [0.0059, 0.0049, 0.0032, 0.0025, 0.0023, 0.0022, 0.0022, 0.0017], [0.9362, 0.0018, 0.0011, 0.0009, 0.0009, 0.0008, 0.0005, 0.0004], [0.0431, 0.0169, 0.008, 0.0066, 0.0062, 0.0055, 0.0055, 0.0055], [0.5647, 0.0764, 0.0063, 0.0059, 0.0038, 0.0036, 0.0032, 0.0028], [0.3415, 0.3208, 0.1717, 0.0492, 0.0247, 0.0132, 0.0046, 0.0038], [0.4203, 0.2113, 0.0472, 0.0105, 0.0087, 0.0077, 0.0056, 0.0039], [0.8896, 0.1063, 0.0012, 0.0004, 0.0002, 0.0001, 0.0, 0.0], [0.9034, 0.0952, 0.0006, 0.0006, 0.0001, 0.0, 0.0, 0.0], [0.9434, 0.0268, 0.0047, 0.0032, 0.0016, 0.0003, 0.0002, 0.0002], [0.4964, 0.4964, 0.0016, 0.0014, 0.0007, 0.0001, 0.0001, 0.0001], [0.5907, 0.406, 0.001, 0.0008, 0.0005, 0.0001, 0.0, 0.0], [0.965, 0.0156, 0.0121, 0.0045, 0.0016, 0.0005, 0.0002, 0.0002], [0.9263, 0.028, 0.0247, 0.017, 0.002, 0.0005, 0.0004, 0.0003], [0.9949, 0.0025, 0.0017, 0.0008, 0.0001, 0.0, 0.0, 0.0], [0.9988, 0.0008, 0.0003, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9922, 0.0046, 0.0028, 0.0004, 0.0, 0.0, 0.0, 0.0], [0.8619, 0.0908, 0.0429, 0.0027, 0.001, 0.0002, 0.0002, 0.0001], [0.848, 0.13, 0.0107, 0.0107, 0.0003, 0.0001, 0.0, 0.0], [0.6069, 0.3681, 0.0143, 0.0098, 0.0003, 0.0, 0.0, 0.0], [0.7209, 0.1823, 0.076, 0.0192, 0.0004, 0.0003, 0.0001, 0.0001], [0.6923, 0.1363, 0.1062, 0.0501, 0.006, 0.003, 0.0018, 0.0008], [0.6969, 0.2564, 0.0306, 0.0053, 0.0047, 0.0013, 0.001, 0.0008], [0.6022, 0.251, 0.1046, 0.0385, 0.0025, 0.0003, 0.0002, 0.0002], [0.7984, 0.1224, 0.045, 0.0273, 0.0047, 0.0004, 0.0004, 0.0003], [0.8059, 0.0963, 0.0584, 0.0312, 0.0048, 0.0016, 0.0003, 0.0003], [0.7725, 0.1521, 0.056, 0.0125, 0.0036, 0.0012, 0.0002, 0.0002], [0.677, 0.2822, 0.018, 0.0109, 0.0046, 0.004, 0.0002, 0.0002], [0.6726, 0.2804, 0.023, 0.014, 0.004, 0.0035, 0.0002, 0.0002], [0.431, 0.3804, 0.1399, 0.0454, 0.0018, 0.0005, 0.0002, 0.0001], [0.9131, 0.0515, 0.0148, 0.0115, 0.0024, 0.0012, 0.0006, 0.0003], [0.9505, 0.0369, 0.0064, 0.0034, 0.0013, 0.0003, 0.0002, 0.0001], [0.9762, 0.0096, 0.0075, 0.0013, 0.0007, 0.0004, 0.0003, 0.0002], [0.9876, 0.0085, 0.0006, 0.0005, 0.0005, 0.0003, 0.0002, 0.0002], [0.9798, 0.0179, 0.0019, 0.0002, 0.0, 0.0, 0.0, 0.0], [0.9637, 0.033, 0.0031, 0.0002, 0.0, 0.0, 0.0, 0.0], [0.9973, 0.0017, 0.0004, 0.0002, 0.0002, 0.0001, 0.0001, 0.0], [0.9946, 0.0041, 0.0008, 0.0003, 0.0001, 0.0, 0.0, 0.0], [0.9735, 0.0139, 0.0123, 0.0003, 0.0, 0.0, 0.0, 0.0], [0.4642, 0.4642, 0.0712, 0.0003, 0.0, 0.0, 0.0, 0.0], [0.8452, 0.1009, 0.0371, 0.0065, 0.003, 0.0016, 0.0014, 0.0011], [0.8555, 0.1312, 0.0058, 0.0031, 0.0013, 0.0007, 0.0006, 0.0005], [0.8584, 0.1316, 0.0045, 0.0027, 0.0005, 0.0005, 0.0003, 0.0002], [0.6904, 0.1978, 0.0728, 0.0068, 0.006, 0.0053, 0.0053, 0.0032], [0.998, 0.0019, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9995, 0.0004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [31006, 55324, 48322, 39849, 10206, 12529, 4912, 9503, 28551, 7199, 1429, 3951, 1905, 1534, 4106, 9227, 17710, 65833, 121103, 54741, 74555, 67615, 54189, 37142, 45226, 41900, 43698, 23303, 25866, 19846, 12633, 13958, 17034, 76131, 94508, 123732, 119400, 141423, 135046, 119132, 122269, 120985, 110860, 114969, 133503, 119262, 117496, 94480, 49592, 53734, 43399, 54064, 62509, 79699, 89103, 32279, 30446, 18050, 20289, 519, 233, 128, 16]}}, {"pos": 480, "top": [[".", " \u200b\u200b", "\u00a0\u00a0", "  \n\n", "  ", "  \n", "   \n", " \u2013"], [" **:", " **'", " **:**", "\uff1a**", "\uff1f**", " (**", " Blowjob", "  \n\n"], ["\u2026**", "\u3002", "**\u3002", "\uff1f**", "**?", "\uff1f", "**!", "\u2026\""], ["\uff1f**", " **\u3010", " Blowjob", " **\u25cb", " **\u25a0", " cumshot", "\uff1a**", " milfs"], [" **\u201c", "  \n\n", " \n\n\n\n", "\uff1a**", " *</", "\uff1f**", "<|im_end|>", " **\u3010"], [" **\u201c", " **\u3010", "\uff1f**", "\u3002", "\uff1a**", "**\u3002", "\u662f", " **\""], ["  \n\n", " **\u3010", " **\u201c", " \n\n", "<|im_end|>", "   \n\n", "\uff1f**", "\u662f"], ["  \n\n", "   \n\n", " \n\n", " **\u3010", "     \n\n", "    \n\n", "       \n\n", " **\u201c"], ["  \n\n", " \n\n", "   \n\n", "    \n\n", "\n\n", "     \n\n", "       \n\n", "      \n\n"], ["  \n\n", " **#", " **\u3010", "   \n\n", "  \r\n\r\n", " **\u201c", "     \n\n", "       \n\n"], ["  \n\n", " \n\n", "   \n\n", "<|im_end|>", "\n\n\n\n", "\n\n", "  \r\n\r\n", "\r\n\r\n"], [" **\u201c", " **\u3010", " **#", " **+", " **'", " **", " *__", " **:"], [" **\u3010", " **#", " **\u201c", " **+", " **'", " **", " *__", " **:"], [" **'", " **\u3010", " **+", " **#", " **\u201c", "\uff1f**", " **", "\u2019**"], ["\r\n\r\n", "\n\n", "  \n\n", " \n\n", "\r\n\r\n\r\n", " \r\n\r\n", "\t\t\n\n", "\t\n\n"], ["\r\n\r\n", "\u62e5\u6709\u7740", "\t\t\n\n", "\n\n", " foundational", " leveraging", " impactful", "  \n\n"], ["  \n\n", " \n\n", "\r\n\r\n", "   \n\n", "\n\n", " \r\n\r\n", "<|im_end|>", "  \r\n\r\n"], ["  \n\n", " \n\n", "   \n\n", "\r\n\r\n", "<|im_end|>", " \r\n\r\n", "  \r\n\r\n", "\n\n"], ["  \n\n", "\r\n\r\n", " **'", " **", "\n\n", "<|im_end|>", " **#", " \n\n"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", "<|im_end|>", " \r\n\r\n", "  \r\n\r\n"], ["<|endoftext|>", "\n\n", "  \n\n", " \n\n", "\r\n\r\n", "<|im_end|>", "   \n\n", " \r\n\r\n"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " **", "<|endoftext|>", " \r\n\r\n", "<|im_end|>"], ["<|endoftext|>", "\n\n", "  \n\n", " \n\n", "\r\n\r\n", "<|im_end|>", " \r\n\r\n", "\n\n\n\n"], ["<|endoftext|>", "\n\n", " \n\n", "  \n\n", "<|im_end|>", "\r\n\r\n", " \r\n\r\n", "\n\n\n\n"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", "<|im_end|>", "   \n\n", " \r\n\r\n"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", "<|im_end|>", " \r\n\r\n", "   \n\n"], ["\n\n", "<|endoftext|>", "  \n\n", " \n\n", "\r\n\r\n", "<|im_end|>", " \r\n\r\n", "   \n\n"], ["\n\n", " \n\n", "  \n\n", "<|endoftext|>", "\r\n\r\n", "<|im_end|>", " \r\n\r\n", "   \n\n"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "<|im_end|>", "\r\n\r\n", " \r\n\r\n", "   \n\n"], ["<|endoftext|>", "  \n\n", " \n\n", "\n\n", "\r\n\r\n", "<|im_end|>", "   \n\n", " \r\n\r\n"], ["<|endoftext|>", " \n\n", "  \n\n", "\n\n", "   \n\n", "\r\n\r\n", " \r\n\r\n", "  \r\n\r\n"], ["<|endoftext|>", "\n\n", "  \n\n", " \n\n", "\r\n\r\n", "   \n\n", "<|im_end|>", " @"], ["<|endoftext|>", "  \n\n", " \n\n", "\n\n", "   \n\n", "\r\n\r\n", " \r\n\r\n", "<|im_end|>"], ["  \n\n", "<|endoftext|>", " \n\n", "   \n\n", "  \r\n\r\n", " \r\n\r\n", "<|im_end|>", "\n\n"], ["  \n\n", " \n\n", "<|endoftext|>", "  \r\n\r\n", "   \n\n", " \r\n\r\n", "<|im_end|>", " **\u201c"], ["  \n\n", "<|endoftext|>", " \n\n", "<|im_end|>", "  \r\n\r\n", "   \n\n", " \r\n\r\n", " **\u201c"], ["  \n\n", "<|endoftext|>", " \n\n", "<|im_end|>", "   \n\n", "  \r\n\r\n", " \r\n\r\n", " **\u201c"], ["<|endoftext|>", "  \n\n", "<|im_end|>", " \n\n", "   \n\n", " **", "  \r\n\r\n", " **\u201c"], ["<|endoftext|>", "  \n\n", "<|im_end|>", " **\u201c", " \n\n", " **", "?**", " **["], ["<|endoftext|>", "  \n\n", "<|im_end|>", " \n\n", " **\u201c", "  \r\n\r\n", "   \n\n", "\u2026**"], ["<|endoftext|>", "  \n\n", "<|im_end|>", " \n\n", "\u2026**", "  \r\n\r\n", "   \n\n", "**\u2014"], ["<|endoftext|>", "  \n\n", " \n\n", " **\u201c", "**\u2014", "\u2026**", " **\u2014", "\n\n"], ["  \n\n", "\u2026**", " **\u201c", "**\u2014", "<|endoftext|>", " **\u2014", "\u2019**", "\uff1f**"], ["  \n\n", " **\u201c", "\uff1a**", "\uff1f**", " **\u2014", "**\u2014", "\u2019**", "\u2026**"], ["  \n\n", "\u2026**", "<|endoftext|>", " **\u201c", "\u2019**", "**\u2014", "\uff1a**", "**"], ["  \n\n", " **\u201c", " **", "\u2019**", "\u2026**", "**", " **\u2018", "\uff1a**"], ["  \n\n", " **\u201c", "**", "\u2019**", "\uff1a**", " **", ";**", "!**"], [" **\u201c", "**", "\u2019**", "  \n\n", "\uff1a**", " **", ":**", "**\u2014"], [" **\u201c", "\u2019**", " **", "**", "!**", " **\u2014", " **\"", "\uff1a**"], [" **\u201c", "\u2019**", " **\"", " **\u2014", " **#", " **", "!**", "**"], [" **\u201c", "\u2019**", ";**", "?**", "**", "!**", " **\"", "\uff1a**"], [";**", "**", "\u2019**", " **\"", " **\u201c", " **", "?**", " **#"], ["**", " **", "\u2019**", " **\"", ";**", "-**", " **\u201c", "?**"], ["**", "\u2019**", "-**", ";**", "?**", " **", " **\"", "(**"], ["\u2019**", "**", ";**", "-**", "?**", " **\"", " **", ">**"], ["**", "\u2019**", "-**", " **", ";**", " **\"", "?**", ">**"], ["**", "\u2019**", "-**", ";**", " **\"", "?**", " **", ">**"], ["**", "\u2019**", "-**", " **\"", ";**", " **", "?**", ">**"], ["**", "\u2019**", " **", "-**", " **\"", ";**", "Top", "?**"], ["**", " **", " Top", "Top", "-**", " top", "\u2019**", " **\""], ["**", " **", " Top", "Top", " top", " **\"", "-**", "***"], ["**", " **", " **\"", "-**", "***", " Top", " top", "Top"], ["**", " **", "***", "###", "\"**", "**,", "**.", "**:"]], "p": [[0.1426, 0.1259, 0.1111, 0.098, 0.0717, 0.0361, 0.0299, 0.008], [0.0583, 0.0312, 0.0228, 0.0214, 0.0201, 0.0147, 0.0108, 0.0089], [0.429, 0.1308, 0.07, 0.0618, 0.0311, 0.0214, 0.0114, 0.0095], [0.039, 0.0366, 0.0323, 0.0268, 0.0209, 0.0162, 0.0153, 0.0143], [0.2423, 0.1564, 0.0575, 0.0477, 0.0421, 0.0396, 0.0396, 0.0328], [0.6612, 0.0479, 0.0373, 0.0273, 0.0213, 0.0166, 0.0146, 0.0083], [0.35, 0.1287, 0.0942, 0.0885, 0.0608, 0.0185, 0.0164, 0.0144], [0.3714, 0.1754, 0.1206, 0.1064, 0.0391, 0.0286, 0.0269, 0.0127], [0.4499, 0.4499, 0.0609, 0.0082, 0.0073, 0.0064, 0.0039, 0.0034], [0.1724, 0.0923, 0.0867, 0.0765, 0.0526, 0.0319, 0.0206, 0.0206], [0.8143, 0.1102, 0.0169, 0.0169, 0.0103, 0.0062, 0.0043, 0.0038], [0.2842, 0.2508, 0.1342, 0.0464, 0.03, 0.0233, 0.0206, 0.0104], [0.2981, 0.1499, 0.0909, 0.0551, 0.0429, 0.0314, 0.0277, 0.0191], [0.0872, 0.0638, 0.0599, 0.0563, 0.0467, 0.0301, 0.0207, 0.0161], [0.2762, 0.0616, 0.0398, 0.0156, 0.0156, 0.0146, 0.0121, 0.0121], [0.013, 0.0079, 0.0048, 0.0037, 0.0037, 0.0035, 0.0033, 0.0033], [0.3293, 0.1069, 0.0886, 0.0446, 0.0369, 0.0254, 0.0175, 0.0136], [0.5808, 0.1296, 0.0508, 0.0508, 0.0421, 0.0199, 0.0155, 0.0145], [0.1673, 0.1387, 0.1303, 0.0742, 0.0697, 0.0615, 0.0615, 0.0329], [0.4212, 0.2555, 0.1368, 0.0829, 0.0346, 0.0174, 0.0082, 0.0047], [0.5376, 0.1978, 0.154, 0.1059, 0.0013, 0.001, 0.0008, 0.0004], [0.4249, 0.2275, 0.1217, 0.0837, 0.0225, 0.0128, 0.0121, 0.01], [0.6648, 0.2446, 0.0375, 0.0375, 0.0065, 0.0045, 0.0008, 0.0007], [0.8846, 0.0932, 0.0111, 0.0087, 0.0008, 0.0008, 0.0001, 0.0001], [0.4206, 0.3712, 0.1547, 0.0345, 0.0068, 0.006, 0.0019, 0.0019], [0.4751, 0.2543, 0.1543, 0.0729, 0.0184, 0.0068, 0.006, 0.003], [0.6701, 0.192, 0.0706, 0.0623, 0.0024, 0.001, 0.0004, 0.0003], [0.7397, 0.1285, 0.0883, 0.0417, 0.0007, 0.0006, 0.0001, 0.0001], [0.7083, 0.2029, 0.0581, 0.0214, 0.0026, 0.0026, 0.0014, 0.0012], [0.5049, 0.3062, 0.1446, 0.0414, 0.0006, 0.0005, 0.0005, 0.0004], [0.835, 0.0777, 0.0777, 0.0082, 0.0002, 0.0002, 0.0001, 0.0001], [0.9493, 0.0197, 0.0153, 0.0153, 0.0001, 0.0, 0.0, 0.0], [0.8811, 0.082, 0.0301, 0.0059, 0.0002, 0.0001, 0.0001, 0.0001], [0.5037, 0.3462, 0.1443, 0.0011, 0.001, 0.001, 0.0009, 0.0005], [0.9016, 0.0396, 0.0396, 0.0069, 0.0037, 0.0029, 0.0008, 0.0008], [0.6471, 0.3057, 0.0322, 0.0049, 0.0026, 0.0023, 0.001, 0.0006], [0.7358, 0.2108, 0.0285, 0.0105, 0.0039, 0.0039, 0.0011, 0.0007], [0.5017, 0.4428, 0.022, 0.0195, 0.0026, 0.0023, 0.0023, 0.0014], [0.8586, 0.1162, 0.0066, 0.0024, 0.0021, 0.0017, 0.0011, 0.0011], [0.8658, 0.1172, 0.0075, 0.0028, 0.0007, 0.0006, 0.0006, 0.0005], [0.8778, 0.1048, 0.0076, 0.0036, 0.0012, 0.0006, 0.0006, 0.0003], [0.914, 0.0662, 0.0045, 0.0019, 0.0017, 0.0015, 0.0006, 0.0006], [0.4001, 0.1668, 0.1012, 0.0614, 0.0449, 0.0396, 0.0155, 0.0155], [0.5168, 0.0898, 0.0617, 0.0481, 0.0424, 0.0399, 0.0257, 0.02], [0.439, 0.235, 0.0594, 0.0524, 0.036, 0.015, 0.0133, 0.0133], [0.2691, 0.1632, 0.1122, 0.1122, 0.099, 0.068, 0.0284, 0.0195], [0.5447, 0.1215, 0.1073, 0.0507, 0.0271, 0.0164, 0.0145, 0.0128], [0.4087, 0.1503, 0.0912, 0.0627, 0.0553, 0.0488, 0.038, 0.018], [0.4904, 0.124, 0.1094, 0.0586, 0.0517, 0.0244, 0.0215, 0.019], [0.4612, 0.1166, 0.0707, 0.0429, 0.0379, 0.026, 0.026, 0.026], [0.3624, 0.249, 0.063, 0.0556, 0.0433, 0.0382, 0.0262, 0.018], [0.1582, 0.1582, 0.1582, 0.096, 0.096, 0.0847, 0.0453, 0.0275], [0.1813, 0.1813, 0.16, 0.1412, 0.0756, 0.0519, 0.0458, 0.0278], [0.2852, 0.196, 0.1189, 0.0926, 0.0721, 0.0562, 0.0562, 0.0111], [0.276, 0.215, 0.1304, 0.0896, 0.0543, 0.048, 0.0423, 0.0156], [0.3476, 0.1642, 0.1642, 0.0604, 0.0604, 0.0415, 0.0285, 0.0196], [0.3888, 0.2081, 0.0868, 0.0676, 0.0362, 0.0319, 0.0282, 0.0133], [0.4309, 0.1796, 0.0749, 0.0515, 0.0454, 0.0401, 0.0202, 0.0147], [0.4223, 0.1761, 0.0734, 0.0572, 0.0504, 0.0306, 0.0306, 0.0164], [0.7691, 0.0715, 0.0434, 0.0298, 0.0124, 0.011, 0.0097, 0.0067], [0.7932, 0.177, 0.0061, 0.0039, 0.0035, 0.0029, 0.0024, 0.0012], [0.8119, 0.1812, 0.0009, 0.0007, 0.0007, 0.0007, 0.0003, 0.0002], [0.9991, 0.0007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [86376, 153988, 153876, 92368, 102477, 72001, 108216, 122089, 134242, 144795, 95113, 92413, 50870, 52513, 109801, 84320, 117048, 114266, 188215, 136997, 138732, 144748, 113503, 71648, 85125, 89108, 79526, 66258, 78751, 42122, 34419, 17549, 19621, 64412, 118655, 131667, 108796, 98465, 86724, 74008, 96666, 123534, 118593, 99011, 58839, 25224, 16477, 7090, 2587, 4595, 6843, 18195, 15221, 32959, 38487, 22332, 22407, 26518, 30199, 8420, 5421, 3929, 1335]}}, {"pos": 481, "top": [["**", "**.", ".", "**\u2013", "-**", "\u2026**", "**?", "?**"], [" **", "-**", "'**", "\uff1f**", "(**", "\u2019**", "**", "\u2026**"], ["\u2026**", "\uff1f**", "**", "'**", "\u2019**", "-**", "(**", "**?"], ["\uff1f**", "\u300d**", "'**", " **\u300c", "\u2019**", "\uff1a**", " **", "\u3002**"], ["**", " **", "...**", "-**", "\uff1f**", "'**", ">**", "\u2019**"], ["-**", " **", "\uff1f**", "**", "(**", "\u2019**", ">**", "\uff01**"], ["**", " **", "\uff1f**", "-**", "\u2019**", "'**", "...**", "\uff09**"], ["**", "-**", "\uff1f**", " **", "...**", "'**", "(**", "\u2019**"], ["**", "...**", "\uff1f**", "\u2019**", "'**", " **", "(**", "-**"], ["...**", "**", "-**", "'**", " **", "\u2019**", "\uff1f**", "\u2026**"], ["...**", "**", " **", "-**", "'**", "\u2026**", "\uff1f**", "!**"], ["...**", " **", "**", "-**", "'**", "\uff1f**", " **'", " **#"], ["...**", " **", "**", "-**", "'**", "\uff1f**", "\u2026**", " **'"], ["...**", "**", " **", "-**", "'**", "\u2026**", "\uff1f**", "\u2019**"], ["...**", "**", " **", "\u2026**", "'**", "-**", "\u2019**", "!**"], ["...**", "**", "'**", "-**", "\u2026**", "\uff1f**", " **", ">**"], ["...**", "**", "\u2026**", " **", "'**", "-**", ">**", "?**"], ["**", "...**", " **", "-**", "'**", "\u2026**", ">**", "(**"], ["...**", "**", "'**", " **", " **'", "-**", "\u2026**", "\u2019**"], ["...**", "**", " **", "\u2026**", "'**", "  \n\n", "?**", "\u2019**"], ["...**", "  \n\n", "\n\n", " \n\n", "**", "<|endoftext|>", " **", "\u2026**"], ["...**", " **", "**", " **'", "'**", " **#", "\u2026**", "?**"], ["...**", "\n\n", "**", " **", "  \n\n", " \n\n", " **'", "'**"], ["\n\n", "  \n\n", "<|endoftext|>", " \n\n", "...**", "**", " **", "\r\n\r\n"], ["  \n\n", "\n\n", " \n\n", "...**", "   \n\n", "\r\n\r\n", " \r\n\r\n", "**"], ["  \n\n", "\n\n", " \n\n", "...**", " **", "**", "\u2026**", " **'"], ["\n\n", "  \n\n", " \n\n", "...**", " **", "\r\n\r\n", "**", "\u2026**"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", "...**", " **", " \r\n\r\n", "   \n\n"], ["\n\n", "  \n\n", " \n\n", "...**", "\u2026**", "\r\n\r\n", "**", "   \n\n"], ["  \n\n", "\n\n", " \n\n", "...**", "\u2026**", "   \n\n", "<|endoftext|>", "\r\n\r\n"], ["\n\n", "  \n\n", " \n\n", "...**", "<|endoftext|>", "\r\n\r\n", "   \n\n", " **"], ["\n\n", " \n\n", "  \n\n", "<|endoftext|>", "\r\n\r\n", "   \n\n", "...", " \r\n\r\n"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", "   \n\n", "\r\n\r\n", " **", "...**"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "...**", " **", "\r\n\r\n", "   \n\n"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", " **", "   \n\n", "\t\n\n", "\r\n\r\n"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", "   \n\n", "    \n\n", "\r\n\r\n", "\t\n\n"], ["  \n\n", "\n\n", " \n\n", "   \n\n", "\t\n\n", "\r\n\r\n", "<|endoftext|>", "    \n\n"], ["  \n\n", "\n\n", " \n\n", "   \n\n", "<|endoftext|>", "\r\n\r\n", " **", "    \n\n"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", " **", "   \n\n", "\u2026**", "...**"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "\u2026**", "...**", "**:", " **"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "**:", "?**", "   \n\n", "\u2026**"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", "   \n\n", "\t\n\n", "\r\n\r\n", "**:"], ["  \n\n", "\n\n", " \n\n", "**:", " **", " priorit", "?**", "\uff1a**"], ["  \n\n", "\n\n", " \n\n", "**:", " **", "...**", "\uff1a**", "**"], ["  \n\n", "...**", "\n\n", " **", " \n\n", "**:", "\u2026**", "<|im_end|>"], ["  \n\n", "\n\n", " \n\n", "**:", " **", " breakdown", " Priority", " Key"], ["  \n\n", " \n\n", "**:", "\uff1a**", ":**", "\n\n", ":\\", " **"], ["  \n\n", "\uff1a**", " \n\n", ":**", "**:", "**", " Priority", " **"], ["\uff1a**", ":**", " **", "**:", " Priority", "**", " :**", " Immediate"], [" Priority", " Immediate", " Biggest", " Worst", " Crisis", ":**", " Scenario", " Primary"], [";**", "?**", "\uff1a**", ">**", "\uff1f**", ":**", "%**", "]**"], [" Priority", " Biggest", ";**", "\u6700\u5148", " Who", "?**", " Immediate", ":**"], [" Biggest", "\u6700\u5148", " Who", " Priority", ";**", " Worst", " What", "\u8c01\u4f1a"], [" Biggest", " Priority", " What", "\u6700\u5148", " Who", " Worst", " Immediate", "what"], [" Biggest", " What", " Priority", "what", "\u6700\u5148", " what", ";**", " Worst"], [" what", "what", " What", "\u4ec0\u4e48\u662f", "What", ".what", " whats", " WHAT"], [" what", "what", " What", "\u4ec0\u4e48\u662f", "What", ".what", " whats", " g\u00ec"], [" what", " What", "what", "What", "\u4ec0\u4e48\u662f", ".what", " WHAT", " whats"], [" What", " what", "what", "What", "\u4ec0\u4e48\u662f", ".what", " WHAT", " whats"], [" what", " What", "what", "What", "\u4ec0\u4e48\u662f", ".what", " Top", " whats"], [" What", " what", "What", "what", " Top", ".what", "\u4ec0\u4e48\u662f", " WHAT"], [" What", " what", "What", "what", " Top", ".what", "\u4ec0\u4e48\u662f", "Top"], ["What", " What", "Top", "what", " what", " Top", "Re", "Who"]], "p": [[0.399, 0.242, 0.0693, 0.0371, 0.0272, 0.0225, 0.0211, 0.0165], [0.2021, 0.1574, 0.1574, 0.1082, 0.0955, 0.0579, 0.0511, 0.0188], [0.3875, 0.1831, 0.1831, 0.0524, 0.0318, 0.0281, 0.0219, 0.015], [0.5123, 0.0693, 0.054, 0.0477, 0.0421, 0.0328, 0.0272, 0.0187], [0.267, 0.1835, 0.1619, 0.0982, 0.0867, 0.0596, 0.0361, 0.0248], [0.3214, 0.2836, 0.1518, 0.0633, 0.0493, 0.0233, 0.0141, 0.0097], [0.6631, 0.1017, 0.0699, 0.0257, 0.0257, 0.02, 0.02, 0.0177], [0.5191, 0.1158, 0.1022, 0.062, 0.062, 0.0332, 0.0157, 0.0138], [0.5437, 0.291, 0.0348, 0.0145, 0.0145, 0.0145, 0.0128, 0.0113], [0.4662, 0.2828, 0.0715, 0.0434, 0.0338, 0.016, 0.016, 0.0124], [0.5108, 0.4508, 0.0175, 0.0034, 0.0027, 0.0024, 0.0021, 0.0013], [0.487, 0.2954, 0.0747, 0.04, 0.0353, 0.0214, 0.0079, 0.0069], [0.7817, 0.0934, 0.0727, 0.0162, 0.0126, 0.0046, 0.0041, 0.0028], [0.8107, 0.0587, 0.0314, 0.0314, 0.0245, 0.0148, 0.0062, 0.0038], [0.7048, 0.1782, 0.031, 0.0273, 0.0241, 0.0101, 0.0047, 0.0033], [0.5631, 0.1613, 0.0979, 0.0462, 0.0247, 0.0193, 0.0193, 0.017], [0.674, 0.2479, 0.0231, 0.0123, 0.0085, 0.0066, 0.0051, 0.0031], [0.5437, 0.3298, 0.0271, 0.0239, 0.0211, 0.0128, 0.01, 0.0053], [0.5808, 0.3109, 0.0289, 0.0199, 0.0094, 0.0083, 0.0083, 0.0083], [0.5047, 0.3469, 0.0196, 0.0173, 0.0162, 0.0111, 0.0087, 0.0072], [0.2514, 0.1958, 0.1728, 0.1187, 0.1187, 0.0816, 0.011, 0.0071], [0.6072, 0.174, 0.0931, 0.0267, 0.0208, 0.0087, 0.0087, 0.0063], [0.2664, 0.2664, 0.1259, 0.1111, 0.0717, 0.0233, 0.0125, 0.0097], [0.6078, 0.1197, 0.1056, 0.0682, 0.0143, 0.0056, 0.0046, 0.0021], [0.4272, 0.4272, 0.1387, 0.0014, 0.001, 0.0009, 0.0004, 0.0004], [0.4519, 0.3106, 0.1295, 0.054, 0.0165, 0.0064, 0.0039, 0.0029], [0.8408, 0.069, 0.0609, 0.0198, 0.0018, 0.0015, 0.0012, 0.0011], [0.9485, 0.0286, 0.0223, 0.0002, 0.0002, 0.0, 0.0, 0.0], [0.8632, 0.091, 0.043, 0.0021, 0.0002, 0.0001, 0.0001, 0.0001], [0.505, 0.3471, 0.1447, 0.0018, 0.0003, 0.0002, 0.0001, 0.0001], [0.473, 0.3251, 0.1972, 0.0006, 0.0006, 0.0005, 0.0005, 0.0004], [0.8827, 0.0564, 0.0564, 0.0041, 0.0001, 0.0, 0.0, 0.0], [0.8916, 0.0732, 0.0346, 0.0005, 0.0, 0.0, 0.0, 0.0], [0.4859, 0.3339, 0.1788, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001], [0.794, 0.1074, 0.0948, 0.0009, 0.0005, 0.0003, 0.0003, 0.0003], [0.5281, 0.3203, 0.1513, 0.0002, 0.0001, 0.0, 0.0, 0.0], [0.4608, 0.4067, 0.132, 0.0002, 0.0, 0.0, 0.0, 0.0], [0.517, 0.3136, 0.1678, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001], [0.5778, 0.3505, 0.069, 0.0013, 0.0002, 0.0002, 0.0001, 0.0001], [0.7953, 0.122, 0.0653, 0.0047, 0.0014, 0.001, 0.0008, 0.0006], [0.7391, 0.1649, 0.0779, 0.0053, 0.0013, 0.0009, 0.0009, 0.0005], [0.5776, 0.2728, 0.146, 0.0009, 0.0004, 0.0003, 0.0002, 0.0001], [0.6665, 0.1312, 0.1312, 0.0115, 0.0084, 0.0026, 0.0021, 0.0019], [0.731, 0.127, 0.077, 0.0092, 0.0056, 0.0043, 0.0028, 0.0021], [0.4177, 0.2236, 0.0932, 0.0726, 0.0389, 0.0303, 0.0119, 0.0098], [0.6109, 0.1363, 0.1062, 0.0153, 0.0072, 0.006, 0.006, 0.0044], [0.8105, 0.0587, 0.0277, 0.0245, 0.0216, 0.0131, 0.007, 0.007], [0.3859, 0.1609, 0.076, 0.076, 0.0461, 0.0317, 0.0205, 0.018], [0.3742, 0.1072, 0.0737, 0.042, 0.0394, 0.0289, 0.0255, 0.0198], [0.4132, 0.0814, 0.0559, 0.0281, 0.0141, 0.011, 0.0103, 0.0097], [0.1236, 0.109, 0.109, 0.0962, 0.0661, 0.0584, 0.0584, 0.0312], [0.1803, 0.0752, 0.0485, 0.0428, 0.0402, 0.0378, 0.0378, 0.0378], [0.202, 0.1388, 0.0656, 0.0656, 0.048, 0.0291, 0.02, 0.0146], [0.2867, 0.1055, 0.053, 0.0388, 0.0365, 0.0302, 0.0284, 0.0183], [0.2164, 0.0902, 0.0796, 0.0796, 0.0376, 0.0376, 0.0189, 0.0189], [0.787, 0.1756, 0.0346, 0.0013, 0.0006, 0.0004, 0.0002, 0.0001], [0.598, 0.22, 0.1713, 0.004, 0.0036, 0.0013, 0.0005, 0.0003], [0.6717, 0.1698, 0.1499, 0.0045, 0.0027, 0.0009, 0.0002, 0.0001], [0.5045, 0.4452, 0.0414, 0.0082, 0.0004, 0.0002, 0.0001, 0.0001], [0.8246, 0.1433, 0.0282, 0.0034, 0.0003, 0.0001, 0.0, 0.0], [0.819, 0.1613, 0.015, 0.0038, 0.0005, 0.0001, 0.0001, 0.0001], [0.8538, 0.0794, 0.0482, 0.0156, 0.0011, 0.0004, 0.0003, 0.0001], [0.8686, 0.1176, 0.0085, 0.0019, 0.0015, 0.0005, 0.0001, 0.0001]], "ranks": {"Rust": [105973, 172133, 143597, 74408, 99508, 79386, 87446, 89688, 103479, 97058, 122164, 96840, 61491, 60933, 118708, 93861, 138054, 157983, 207884, 188549, 183688, 192778, 176361, 155746, 158797, 169488, 175645, 120193, 118638, 68707, 68582, 28537, 36284, 78675, 118842, 80304, 73160, 99779, 94392, 72524, 62850, 51439, 28761, 19382, 9573, 4137, 4093, 2965, 3546, 4439, 5236, 3041, 4992, 4503, 7998, 3900, 8385, 7582, 10527, 5127, 5794, 2039, 1715]}}, {"pos": 482, "top": [["\u00a0", ".", ",", "?", " \u2013", "\u00a0\u00a0", "<|endoftext|>", "\u2013"], ["??", "?", "?,", ",", "?\u201d", "\u2013", " \u2013", "?!"], [",", "?", ".", "\u2026", "\u2013", "\uff1f", "\u2026.", "?,"], [" Shemale", "\uff3f\uff3f", "\uc3df", "\ufffd\ufffd", " \u300e", " ``(", " ``", "-------------</"], ["\ufffd\ufffd", " \"@", "\uff1f", "\uff20", "InView", "\u866b", " \u300e", "\ufeff"], ["\uff1f", "\ufffd\ufffd", " **:", " **\u201e", " \u300d", " **\u300c", "\uff01", "letin"], ["\uff1f", " **\u300c", " \u300d", " \u300e", "\uff01", "\u300e", "\u3000\u3000", " \u300c"], [" **\u300c", " **\u201e", "\uff1f", " **\u3010", "\uff1f\u300d", " \u300e", "__:", " **\u00ab"], ["\uff1f", " **\u300c", " **\u201e", "?\u00bb", "?!", "\uff1f\u300d", "\uff01\uff1f", "!?"], ["?!", " \u00a0 \u00a0", "?\\", "soever", "?=", "!?", " \u00a0 \u00a0 \u00a0 \u00a0", "\uff1f\u300d"], ["\uff1f", "?!", "?", " \u00a0 \u00a0", "?(", " \u00a0 \u00a0 \u00a0 \u00a0", "?=", "?\\"], [" **\u300c", " **\u3010", " **\u201e", " **\u00ab", " ''", "\uff1f\u300d", "\u505a\u4ec0\u4e48", " \u300e"], [" **\u300c", "\uff1f\u300d", " \u300d", " ''", " **\u201e", " \u300c", "?!", " **\u00ab"], ["?!", "\uff1f\u300d", " **\u300c", " \u300c", " ''", " \u300d", "stuff", "\uff01\uff1f"], ["?!", " ''", " savvy", " Philly", " \u300c", "stuff", " vibe", " stuff"], ["?!", " guys", " savvy", " goodies", " stuff", " really", " kids", "stuff"], ["?!", "...", "?...", " savvy", "??", "???", "?", " guys"], ["?!", "?...", "?", "...", "??", "???", " savvy", "?\u00bb"], ["?!", "?...", "...", "??", "!?", "???", "?", "?\u00bb"], ["?...", "?!", "...", "\n\n", "???", "...(", "<|endoftext|>", "??"], ["?...", "\n\n", "...", "<|endoftext|>", "...\\", " \n\n", "...(", "?!"], [" ?**", " g\u00ec", "?!", "\u4ec0\u4e48", " \u061f", "?...", "\u505a\u4ec0\u4e48", "\u4ec0\u4e48\u5462"], [" ?**", "\u4ec0\u4e48", "?...", " ?", "\n\n", " ?',", "?=", " g\u00ec"], ["\n\n", "?...", "<|endoftext|>", " ?", " ...", " ''", "?=", " \n\n"], ["\n\n", " \n\n", "?...", "  \n\n", "?\\", " \r\n\r\n", "...\\", "\r\n\r\n"], ["\n\n", " \n\n", "?...", " ?**", "/how", "\r\n\r\n", " g\u00ec", "\u4ec0\u4e48"], ["\n\n", " \n\n", "?...", " ?**", " g\u00ec", "\r\n\r\n", "/how", "\u4ec0\u4e48"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", "<|endoftext|>", " ?", " \r\n\r\n", "\n\n\n"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", "?...", "\n\n\n", " ?**", " \r\n\r\n"], ["\n\n", " \n\n", "  \n\n", "?...", "...", " \n\n\n", "\r\n\r\n", "   \n\n"], ["\n\n", " \n\n", "  \n\n", "<|endoftext|>", " ?", "   \n\n", "?...", " ..."], [" \n\n", "\n\n", "  \n\n", "<|endoftext|>", " ...", " ?", " \n\n\n", " what"], [" \n\n", "  \n\n", "\n\n", "<|endoftext|>", " \u2014", " ultimately", " what", " ?"], ["  \n\n", " \n\n", "<|endoftext|>", " \u2014", "\n\n", "\ufffd", " \u00ad", " \u2026"], ["  \n\n", "<|endoftext|>", " \n\n", "?:", "?**", "?!", " \u2014", "?):"], ["<|endoftext|>", "  \n\n", " \n\n", "\n\n", " \u2014", " \u2026", " [\u2026]", " WHY"], ["  \n\n", " WHY", "?!", " \u2014", " \n\n", " WHAT", "?):", "?:"], [" WHY", "?!", "?:", "?):", " WHAT", " ?", " ?:", " What"], [" WHY", "?!", " ?", "?:", " WHAT", "?):", " ?:", " What"], [" WHY", " WHAT", " fallout", " failures", "?!", "\u2011", " Break", " breakdown"], [" WHY", "?!", " WHAT", " failures", "?):", "?:", " What", " fallout"], ["?):", " failures", " WHY", " fallout", " breakdown", "?!", "?:", " catastrophic"], [" fallout", " breakdown", " failures", " destabil", " WHY", " catastrophic", "?):", "?**"], [" breakdown", " Worst", " destabil", " Crisis", " Worse", " fallout", " Break", " failures"], [" breakdown", " Worse", " failures", " Worst", " immediate", " destabil", " collapse", " Immediate"], [" Immediate", " immediate", " breakdown", " Worst", " inevitable", " Crisis", "\u6700\u5148", " Worse"], [" Immediate", " immediate", " Worst", " breakdown", " inevit", " inevitable", " Worse", "\u6700\u5148"], ["\u6700\u5148", " Immediate", " FIRST", " inevitable", " immediate", " Worst", " inevit", " Worse"], ["\u6700\u5148", "\u7b2c\u4e00\u4ef6\u4e8b", " Immediate", "akest", " FIRST", ":first", " Worst", "\u6700\u5bb9\u6613"], ["\u6700\u5148", " Immediate", " Worst", "\u7b2c\u4e00\u4ef6\u4e8b", "akest", " Worse", " Biggest", "?):"], ["\u6700\u5148", "?**", "?):", "\uff1f**", "\u7b2c\u4e00\u4ef6\u4e8b", " Immediate", "?*", " Worst"], ["\u6700\u5148", "?**", "\u7b2c\u4e00\u4ef6\u4e8b", "?):", "?\\", " Immediate", "\u5fc5\u5148", " Worst"], ["\u6700\u5148", "?**", "\u7b2c\u4e00\u4ef6\u4e8b", " Biggest", " Worst", " Immediate", "\u2019ll", " \u0623\u0648\u0644\u0627\u064b"], ["\u6700\u5148", "?**", "\u7b2c\u4e00\u4ef6\u4e8b", " \u0623\u0648\u0644\u0627\u064b", "\u2019ll", "?\\", "?):", " broke"], ["\u6700\u5148", " happens", "\u5d29\u584c", "\u2019ll", " gets", " broke", "?**", " breaks"], [" breaks", " Break", " Breaking", " broke", " break", " breaking", ".break", "-break"], [" breaks", " Break", " Breaking", " broke", " breaking", " break", ".break", " Broken"], [" breaks", " Break", " Breaking", " breaking", " break", " broke", " Broken", "-break"], [" Break", " breaks", " Breaking", " break", " breaking", " Broken", " broke", "-break"], [" breaks", " Break", " break", " Breaking", " breaking", "break", "-break", " broke"], [" breaks", " Break", " break", "break", "-break", " breaking", "_break", " broke"], [" breaks", " Break", " break", "-break", " Breaking", "break", "_break", " breaking"], [" Break", " breaks", " Breaking", " BREAK", "_break", " Broken", "Break", "break"]], "p": [[0.5744, 0.1282, 0.0998, 0.0569, 0.0569, 0.0367, 0.0068, 0.005], [0.0141, 0.011, 0.0097, 0.0076, 0.0046, 0.0041, 0.0034, 0.003], [0.2125, 0.1875, 0.0943, 0.0609, 0.0418, 0.0369, 0.0306, 0.0186], [0.015, 0.0117, 0.0075, 0.0062, 0.0059, 0.0059, 0.0059, 0.0055], [0.0204, 0.0097, 0.0055, 0.0031, 0.0029, 0.0024, 0.0023, 0.0022], [0.0247, 0.0097, 0.0066, 0.0055, 0.0049, 0.0046, 0.0033, 0.0029], [0.385, 0.0336, 0.0297, 0.0262, 0.0262, 0.0149, 0.014, 0.014], [0.1254, 0.0556, 0.0232, 0.0192, 0.0055, 0.0055, 0.0052, 0.0049], [0.1505, 0.0627, 0.0246, 0.0231, 0.0231, 0.018, 0.0159, 0.0149], [0.014, 0.0062, 0.0045, 0.0045, 0.0045, 0.0043, 0.0035, 0.0024], [0.1217, 0.0738, 0.042, 0.0395, 0.0211, 0.0199, 0.0199, 0.0187], [0.1337, 0.016, 0.0103, 0.0085, 0.0085, 0.008, 0.0049, 0.0049], [0.1195, 0.0195, 0.0183, 0.0143, 0.0104, 0.0104, 0.0092, 0.0087], [0.0375, 0.0122, 0.0095, 0.0074, 0.0065, 0.0048, 0.0045, 0.0045], [0.0279, 0.0231, 0.0132, 0.0096, 0.0071, 0.0055, 0.0046, 0.0038], [0.0184, 0.0163, 0.0153, 0.0087, 0.0064, 0.0064, 0.0053, 0.005], [0.1911, 0.0138, 0.0101, 0.0089, 0.0089, 0.0058, 0.0048, 0.0042], [0.2324, 0.043, 0.0168, 0.0158, 0.0123, 0.0062, 0.0051, 0.0048], [0.5001, 0.0985, 0.0194, 0.0194, 0.0104, 0.0104, 0.0086, 0.0063], [0.3109, 0.1771, 0.1009, 0.0371, 0.0155, 0.0155, 0.0128, 0.01], [0.2228, 0.2093, 0.082, 0.0412, 0.0342, 0.0342, 0.0172, 0.0172], [0.0448, 0.0349, 0.0255, 0.0199, 0.0175, 0.0155, 0.0113, 0.0113], [0.0485, 0.0277, 0.026, 0.0244, 0.0202, 0.0179, 0.0179, 0.0158], [0.0547, 0.0258, 0.0189, 0.0189, 0.0138, 0.0101, 0.0054, 0.0051], [0.7307, 0.1053, 0.0364, 0.0172, 0.0059, 0.0041, 0.0038, 0.003], [0.3357, 0.0312, 0.0312, 0.0095, 0.0058, 0.0051, 0.0051, 0.0048], [0.7824, 0.0093, 0.0068, 0.0056, 0.0028, 0.0023, 0.0022, 0.0015], [0.9905, 0.0076, 0.0006, 0.0002, 0.0001, 0.0001, 0.0, 0.0], [0.9948, 0.0041, 0.0006, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.7868, 0.1549, 0.0503, 0.0009, 0.0006, 0.0005, 0.0005, 0.0004], [0.7572, 0.1914, 0.0427, 0.001, 0.0008, 0.0004, 0.0003, 0.0003], [0.6408, 0.1836, 0.1114, 0.0194, 0.0016, 0.0011, 0.001, 0.001], [0.1668, 0.1383, 0.0449, 0.0372, 0.0137, 0.0057, 0.0054, 0.0054], [0.5094, 0.226, 0.0689, 0.0136, 0.0099, 0.0037, 0.0024, 0.0022], [0.3144, 0.1087, 0.0513, 0.0177, 0.0167, 0.0147, 0.013, 0.013], [0.5441, 0.188, 0.0945, 0.0288, 0.0083, 0.0057, 0.0037, 0.003], [0.0702, 0.0547, 0.0228, 0.0177, 0.0147, 0.0122, 0.0115, 0.0108], [0.0567, 0.0236, 0.0236, 0.0196, 0.0173, 0.0152, 0.0126, 0.0082], [0.0612, 0.024, 0.0187, 0.0155, 0.0145, 0.0137, 0.0113, 0.01], [0.0401, 0.0138, 0.0122, 0.0108, 0.0101, 0.0095, 0.0089, 0.0079], [0.0542, 0.0396, 0.0329, 0.0155, 0.0146, 0.0146, 0.0121, 0.0114], [0.0265, 0.0265, 0.0249, 0.0207, 0.0161, 0.0151, 0.0133, 0.0125], [0.031, 0.0274, 0.0213, 0.0156, 0.0156, 0.0147, 0.0138, 0.0122], [0.0664, 0.0244, 0.0203, 0.0203, 0.019, 0.0168, 0.0158, 0.0158], [0.0513, 0.0375, 0.0258, 0.0242, 0.0228, 0.0201, 0.0177, 0.0167], [0.1121, 0.082, 0.0412, 0.025, 0.0207, 0.0195, 0.0172, 0.0172], [0.1942, 0.0671, 0.0298, 0.0263, 0.0247, 0.0218, 0.0192, 0.015], [0.4816, 0.0786, 0.0421, 0.0199, 0.0199, 0.0187, 0.0155, 0.0137], [0.8249, 0.0207, 0.0092, 0.0081, 0.0063, 0.0063, 0.0059, 0.0052], [0.5679, 0.0722, 0.0386, 0.0283, 0.0142, 0.0104, 0.0098, 0.0086], [0.2307, 0.1797, 0.0704, 0.0377, 0.0354, 0.0332, 0.0215, 0.0178], [0.8469, 0.0256, 0.024, 0.0129, 0.0039, 0.0031, 0.0025, 0.0024], [0.8729, 0.015, 0.0103, 0.0034, 0.003, 0.003, 0.003, 0.0028], [0.6791, 0.0318, 0.0181, 0.0141, 0.0063, 0.0059, 0.004, 0.0038], [0.2219, 0.1116, 0.03, 0.03, 0.0282, 0.0282, 0.0265, 0.0249], [0.5702, 0.2377, 0.0991, 0.0413, 0.0118, 0.0092, 0.0049, 0.0038], [0.4056, 0.358, 0.1916, 0.0122, 0.0084, 0.0045, 0.0031, 0.0019], [0.4945, 0.3851, 0.0974, 0.0071, 0.0055, 0.0043, 0.0014, 0.0008], [0.6932, 0.255, 0.0443, 0.0028, 0.0013, 0.0009, 0.0007, 0.0005], [0.7711, 0.2209, 0.0046, 0.0022, 0.0005, 0.0002, 0.0001, 0.0001], [0.8588, 0.1317, 0.0066, 0.0008, 0.0006, 0.0004, 0.0003, 0.0002], [0.8496, 0.1476, 0.0014, 0.0003, 0.0003, 0.0002, 0.0001, 0.0001], [0.9817, 0.018, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [76849, 103868, 63132, 47017, 33085, 29974, 17732, 13395, 27414, 25331, 30427, 22999, 16817, 24684, 28792, 13095, 14207, 19185, 51240, 61402, 109732, 96841, 118783, 84945, 71138, 84724, 66408, 19355, 42054, 25703, 15409, 9379, 10787, 13368, 23457, 17538, 16077, 23152, 30884, 19526, 16019, 16211, 7737, 5838, 6534, 3011, 4598, 5010, 8820, 6238, 13641, 5326, 9028, 9711, 9559, 10416, 6188, 7257, 9291, 4669, 5363, 2902, 1540]}}, {"pos": 483, "top": [["s", ",", "er", "y", ".", "es", "o", "d"], ["s", "\u0627\u062a", "es", "\u2011", "\u044b", "er", "schild", "sul"], ["s", "\u0627\u062a", "\u044b", "es", "\u2011", "er", "\u2026", "sand"], ["s", "\u0627\u062a", "\u044b", "\u05d9\u05dd", "\u3044\u308b", "sburg", "sche", "sik"], ["s", "\u0627\u062a", "\u044b", "es", "\u05d9\u05dd", "sand", "sor", "sche"], ["s", "\u0627\u062a", "\u044b", "es", "siz", "\u05d9\u05dd", "sor", "sand"], ["s", "\u0627\u062a", "\u044b", "es", "sor", "sand", "\u05d9\u05dd", "siz"], ["s", "\u0627\u062a", "\u044b", "sburg", "\u05d9\u05dd", "sand", "sor", "sche"], ["s", "\u0627\u062a", "\u044b", "sburg", "\u05d9\u05dd", "sand", "schild", "sia"], ["s", "\u0627\u062a", "\u044b", "sburg", "\u05d9\u05dd", "sand", "siz", "sia"], ["s", "\u0627\u062a", "\u044b", "es", "\u05d9\u05dd", "sburg", "sia", "sand"], ["s", "\u0627\u062a", "\u044b", "sburg", "\u05d9\u05dd", "es", "schild", "sia"], ["s", "\u0627\u062a", "\u044b", "sburg", "\u05d9\u05dd", "siz", "schild", "es"], ["s", "\u0627\u062a", "\u044b", "sburg", "\u05d9\u05dd", "sense", "siz", "es"], ["s", "\u0627\u062a", "\u044b", "es", "\u05d9\u05dd", "sburg", "siz", "sense"], ["s", "\u0627\u062a", "\u044b", "es", "\u05d9\u05dd", "er", "sburg", "sing"], ["s", "\u0627\u062a", "es", "\u044b", "er", "y", "\u05d9\u05dd", "sing"], ["s", "\u0627\u062a", "es", "\u044b", "er", "y", "sing", "\u05d9\u05dd"], ["s", "\u0627\u062a", "\u044b", "es", "\u05d9\u05dd", "ingly", "sia", "sburg"], ["s", "\u0627\u062a", "\u044b", "es", "ingly", "sia", "\u05d9\u05dd", "ful"], ["s", " \n\n", "\u0627\u062a", "ingly", "\u044b", "es", "sia", "ful"], ["s", "\u0627\u062a", "ingly", "\u044b", "sia", "sburg", "\u05d9\u05dd", "scheid"], ["s", " \n\n", "\u0627\u062a", "ingly", "fully", "lessly", "\u044b", "ful"], ["s", " \n\n", "\u0627\u062a", "\n\n", " --", "ingly", " \r\n\r\n", "fully"], [" \n\n", "\n\n", "s", "  \n\n", " \r\n\r\n", "\r\n\r\n", "\t\n\n", "   \n\n"], [" \n\n", "s", "\n\n", " \r\n\r\n", "  \n\n", "\r\n\r\n", "\t\n\n", " ___"], [" \n\n", "s", "\n\n", "\r\n\r\n", " \r\n\r\n", " ___", "___", "  \n\n"], [" \n\n", "\n\n", "s", "  \n\n", "\r\n\r\n", " \r\n\r\n", " ___", " --"], [" \n\n", "\n\n", "s", "  \n\n", "\r\n\r\n", " \r\n\r\n", "\t\n\n", " ___"], [" \n\n", "s", "  \n\n", "\n\n", " \r\n\r\n", " \n  \n", "\r\n\r\n", "   \n\n"], [" \n\n", "s", "  \n\n", "\n\n", " \r\n\r\n", "?\\", "\r\n\r\n", "   \n\n"], ["s", " \n\n", "  \n\n", " \u2014", " quickly", "\n\n", " \r\n\r\n", " worse"], ["s", " havoc", " \u2014", " worse", " quickly", " undone", " destabil", " catast"], ["s", " havoc", " undone", "\u2014or", " \u2014", " destabil", " hardest", " unpredict"], ["s", " havoc", "\u2014or", " \u2014", " cleanly", " hardest", " undone", "Fuck"], ["s", " havoc", " \u2014", " unsustainable", " hardest", " fastest", " worse", " worst"], ["s", " havoc", " unsustainable", " fastest", " hardest", " \u2014", " failure", " failures"], ["s", " unsustainable", " havoc", " fastest", " failure", " failures", " catast", " brittle"], [" failure", " unsustainable", " failures", " havoc", " catast", " fastest", " quickly", " fragile"], [" fastest", " unsustainable", " failure", " fragile", " failures", " quickly", " catast", " brittle"], [" failures", " fragile", " failure", " brittle", " catast", " unsustainable", " breakdown", " broken"], [" fragile", " brittle", " catast", "\u5d29\u6e83", " failures", " breakdown", " collapse", " failure"], [" fragile", " brittle", "\u5d29\u6e83", " broken", " catast", " breakdown", " failures", " collapse"], ["\u5d29\u6e83", " breakdown", " catast", " broken", " Break", " fragile", " collapse", " brittle"], [" catast", "\u5d29\u6e83", " fragile", " fastest", " collapse", " brittle", " breakdown", " broken"], [" fastest", "\u6700\u5148", " catast", " inevit", " breakdown", " quickest", " inevitable", "\u5d29\u6e83"], ["\u6700\u5148", " inevit", " fastest", " inevitable", " quickest", " sooner", " Break", " hardest"], ["\u6700\u5148", " fastest", " FIRST", " quickest", " sooner", " inevit", " first", " First"], ["\u6700\u5148", " FIRST", ":first", "-first", "\u7b2c\u4e00\u65f6\u95f4", " \u0623\u0648\u0644\u0627\u064b", " quickest", " fastest"], ["\u6700\u5148", ":**", ":\\", ":", ":*", " FIRST", "*:", "**:"], ["\u6700\u5148", ":**", "?**", "*:", ":*", "\uff1a**", "**:", ":\\"], ["\u6700\u5148", ":**", ":first", " \u0623\u0648\u0644\u0627\u064b", " FIRST", "?**", "\u7b2c\u4e00\u4ef6\u4e8b", "?:"], ["\u6700\u5148", ":**", " FIRST", " \u0623\u0648\u0644\u0627\u064b", ":*", "\u7b2c\u4e00\u4ef6\u4e8b", ":first", "?**"], ["\u6700\u5148", " \u0623\u0648\u0644\u0627\u064b", "\u9996\u5148", " FIRST", ":**", " zuerst", " primero", ":first"], ["\u6700\u5148", " FIRST", "\u9996\u5148", " \u0623\u0648\u0644\u0627\u064b", ":first", " zuerst", " primero", " first"], [" FIRST", " first", "first", " First", "-first", "\u9996\u5148", "\u6700\u5148", "\u7b2c\u4e00"], [" first", " FIRST", "first", " First", "\u9996\u5148", "-first", " primero", "_first"], [" first", " FIRST", " First", "first", "\u9996\u5148", "-first", " primero", "\u6700\u5148"], [" first", " First", " FIRST", "first", "-first", "First", "\u9996\u5148", "_first"], [" First", " first", " FIRST", "first", "First", "-first", "_first", ".first"], [" first", " First", "first", " FIRST", "First", "-first", "_first", ".first"], [" First", "s", " first", " FIRST", "First", "first", "_first", "-first"], ["s", " First", "es", "ers", "ks", "ts", "ges", "ures"]], "p": [[1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9994, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9993, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9977, 0.0012, 0.0001, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.7812, 0.1538, 0.0441, 0.0098, 0.0046, 0.0036, 0.0006, 0.0003], [0.8411, 0.0782, 0.037, 0.012, 0.0088, 0.0068, 0.0016, 0.001], [0.4533, 0.4001, 0.0788, 0.0065, 0.0057, 0.0054, 0.002, 0.0017], [0.5214, 0.4601, 0.0123, 0.0017, 0.0013, 0.0008, 0.0007, 0.0003], [0.5637, 0.3419, 0.0864, 0.003, 0.0014, 0.0008, 0.0002, 0.0001], [0.8275, 0.1438, 0.0152, 0.0067, 0.0012, 0.0005, 0.0005, 0.0004], [0.7376, 0.2395, 0.0119, 0.005, 0.0008, 0.0003, 0.0002, 0.0002], [0.8482, 0.1301, 0.0022, 0.0007, 0.0004, 0.0004, 0.0002, 0.0002], [0.9718, 0.0006, 0.0006, 0.0003, 0.0003, 0.0002, 0.0002, 0.0002], [0.4528, 0.0137, 0.0047, 0.0037, 0.0032, 0.0029, 0.0027, 0.0027], [0.2123, 0.0306, 0.005, 0.0044, 0.0041, 0.0034, 0.003, 0.003], [0.2632, 0.0123, 0.0116, 0.0085, 0.0079, 0.007, 0.0055, 0.0045], [0.0558, 0.0232, 0.016, 0.0097, 0.0059, 0.0059, 0.0055, 0.0052], [0.0256, 0.0226, 0.0226, 0.0129, 0.01, 0.0088, 0.0069, 0.0061], [0.0251, 0.0222, 0.0195, 0.0184, 0.0184, 0.0173, 0.0173, 0.0119], [0.0289, 0.024, 0.0199, 0.0175, 0.0165, 0.0165, 0.0155, 0.0155], [0.0382, 0.0358, 0.0337, 0.0297, 0.0297, 0.0231, 0.0192, 0.0169], [0.0636, 0.0562, 0.0466, 0.0437, 0.0301, 0.0282, 0.022, 0.0207], [0.0997, 0.0729, 0.039, 0.0324, 0.0286, 0.0268, 0.0237, 0.0209], [0.0576, 0.0449, 0.0396, 0.0349, 0.0328, 0.0308, 0.0256, 0.0212], [0.0537, 0.0418, 0.0418, 0.0306, 0.0306, 0.027, 0.027, 0.0254], [0.0737, 0.0507, 0.0271, 0.0239, 0.0239, 0.0225, 0.0225, 0.0211], [0.1156, 0.102, 0.0746, 0.0659, 0.0242, 0.0228, 0.0177, 0.0156], [0.6018, 0.0385, 0.0248, 0.0233, 0.0193, 0.0142, 0.0133, 0.0104], [0.8282, 0.0235, 0.0111, 0.0098, 0.0076, 0.0076, 0.0063, 0.0056], [0.5227, 0.0802, 0.0551, 0.0295, 0.0203, 0.0179, 0.0139, 0.0131], [0.498, 0.0525, 0.0339, 0.0248, 0.0206, 0.017, 0.017, 0.0133], [0.6816, 0.0385, 0.0361, 0.0281, 0.0248, 0.0171, 0.016, 0.0141], [0.5993, 0.1515, 0.0383, 0.0247, 0.0181, 0.0141, 0.0141, 0.011], [0.3114, 0.1889, 0.1298, 0.1298, 0.029, 0.029, 0.0165, 0.0155], [0.2236, 0.1973, 0.1537, 0.1537, 0.0303, 0.0303, 0.0184, 0.0184], [0.3718, 0.3718, 0.1207, 0.0346, 0.0185, 0.0163, 0.0087, 0.0087], [0.5625, 0.2069, 0.1108, 0.0672, 0.015, 0.0062, 0.0038, 0.0033], [0.5104, 0.2411, 0.0887, 0.0887, 0.0154, 0.0073, 0.0057, 0.0039], [0.3635, 0.3208, 0.2205, 0.0557, 0.0059, 0.004, 0.0036, 0.0036], [0.5221, 0.4066, 0.0378, 0.0202, 0.0024, 0.0021, 0.0021, 0.0006], [0.5709, 0.3924, 0.0152, 0.0134, 0.0021, 0.0014, 0.0012, 0.0007], [0.6364, 0.3406, 0.015, 0.0022, 0.0014, 0.001, 0.0007, 0.0007], [0.9878, 0.0071, 0.0023, 0.0004, 0.0003, 0.0002, 0.0001, 0.0001]], "ranks": {"Rust": [43351, 48684, 16361, 2185, 2408, 1883, 1267, 1228, 1072, 980, 1444, 1337, 1021, 908, 1123, 1141, 2142, 2198, 2565, 1868, 4239, 2285, 3428, 4985, 2755, 1293, 1324, 1278, 1101, 1240, 1015, 999, 697, 1315, 1101, 2024, 1680, 1527, 1479, 1461, 1761, 1595, 1103, 1295, 1089, 1090, 1805, 2533, 5243, 10799, 16253, 62227, 93367, 119648, 109496, 84866, 47642, 49017, 61189, 10803, 11508, 4723, 3206]}}, {"pos": 484, "top": [[".", " \u2013", "\u2013", ",", " ", "<|endoftext|>", "\u00a0\u00a0", "\u00a0"], [" \u2013", "\u2013", " ", "  \n\n", "  \n", "   \n", " \u200b\u200b", "  \n  \n"], ["\u2013", "\u2026", "\u2026.", " \u2013", ".", "\u2026..", ",", "\u2013and"], ["ickle", "bucks", "uggy", "---</", "linky", "agna", "rokes", "uckt"], [" \n  \n", "ively", "  \n  \n", "        \n        \n", " kids", "atria", "agna", "ambul"], ["rokes", " \n  \n", "agna", "insky", " pretty", "\u7d2f\u7d2f", "ighbors", ".pretty"], [" \n", " \n  \n", "  \n", "   \n", " \n \n", "        \n        \n", " \n    \n", "    \n"], [" \n  \n", " \n", "\u7d2f\u7d2f", "ighbors", "        \n        \n", "breaker", " havoc", "celed"], [" \n    \n", " \n  \n", "        \n        \n", " \n", " \n \n", " \n\n", "breaker", " \n        \n"], [" \n  \n", " \n \n", " havoc", "-down", "\u7d2f\u7d2f", "<|object_ref_start|>", "-Cds", " \n"], [" \n  \n", " \n", " \n\n", " \n \n", "  \n\n", "  \n  \n", "  \n", " \n\n\n"], [" havoc", " \n  \n", " \n\n", " \n", "\u2014and", " Philly", " --", " ___"], [" havoc", " Philly", " \n", " \n  \n", " kids", " \n\n", " --", "\u7d2f\u7d2f"], [" havoc", " \n\n", " --", " kids", " pretty", " Philly", " horribly", "pretty"], [" \n\n", " --", " \u2014", "  \n\n", " pretty", " havoc", " kids", "\n\n"], [" \u2014", " pretty", " --", " kids", " horribly", " wildly", " incredibly", " havoc"], [" pretty", " bigger", " wildly", " incredibly", " horribly", " kids", " \u2014", " going"], [" \u2014", " \n\n", " pretty", " bigger", " big", " really", " even", " horribly"], [" \u2014", " \n\n", " --", " pretty", " havoc", "\u2014and", "\u2014or", " bigger"], [" \n\n", " --", " \u2014", "  \n\n", " havoc", " pretty", "\u2014or", " horribly"], [" \n\n", "  \n\n", "\n\n", " --", "   \n\n", " \u2014", "<|endoftext|>", "\t\n\n"], [" --", " havoc", " bigger", " worse", " horribly", " harder", " \n\n", " tougher"], [" --", " \n\n", " havoc", " horribly", " \u2014", " worse", " ---", " harder"], [" --", " \n\n", " worse", " havoc", " horribly", " ,", " \u2014", " even"], [" \n\n", "\n\n", "  \n\n", " --", "   \n\n", " \n\n\n", " \r\n\r\n", " \n  \n"], [" \n\n", "  \n\n", "\n\n", " --", " ___", " \n  \n", "   \n\n", " \r\n\r\n"], [" \n\n", "\n\n", " --", " ___", "  \n\n", " __", " ---", " \n\n\n"], [" \n\n", "\n\n", "  \n\n", " --", " ___", " __", "   \n\n", " \n\n\n"], [" \n\n", "\n\n", "  \n\n", " --", " \n  \n", "   \n\n", " \n\n\n", " ___"], [" \n\n", "  \n\n", " \n  \n", " ___", "\n\n", " \n\n\n", " \n", "   \n\n"], [" \n\n", " ...", "  \n\n", "\n\n", " \n  \n", " \n", " \u2026", " ?"], [" \n\n", " ...", " ,", " quickly", " \u2014", " over", " \u2026", " -"], [" \u2014", " quickly", " :", " ,", " heavily", " over", " fast", " -"], [" tech", " \u2014", " infrastructure", " technology", " heavily", " engineering", " hardware", " faster"], [" \u2014", " infrastructure", " tech", " heavily", " quickly", " hardware", " bottleneck", " rapidly"], [" \u2014", " \n\n", " hardware", " \u2014\u2014", " \u2013", " tech", " faster", " infrastructure"], [" \u2014", " hardware", " bottleneck", " faster", " tech", " \n\n", " infrastructure", " inefficient"], [" faster", " \u2014", " hardware", " speed", " fast", " quickly", " tech", " slower"], [" performance", " speed", " faster", " fast", " inefficient", " hardware", " efficiency", " slower"], [" performance", " speed", " faster", " efficiency", " fast", " slower", " hardware", " fastest"], [" performance", " speed", " faster", " optimization", " fastest", " slower", " efficiency", " slow"], [" performance", " speed", " faster", " optimization", " slower", " efficiency", " optimized", " fastest"], [" performance", " speed", " faster", " optimization", " slower", " optimized", " slow", " efficiency"], [" performance", " speed", " faster", " slower", " bottleneck", " optimization", " slow", " fast"], [" performance", " speed", " bottleneck", " faster", " fastest", " fast", " slower", " optimization"], [" speed", " performance", " fastest", " faster", " fast", " bottleneck", " slow", " slower"], [" speed", " fastest", " performance", " fast", " faster", " bottleneck", " slow", " speeds"], [" fastest", " speed", " performance", " bottleneck", " fast", " slow", " faster", " quickly"], [" fastest", " speed", " bottleneck", " quickest", " throughput", " Speed", "crast", " performance"], [":", ":\\", ":**", "__:", ":*", " **:**", "**:", " :\\"], ["\u6700\u5148", " Priority", ":", ":**", " \u0623\u0648\u0644\u0627\u064b", " fastest", " quickest", " Immediate"], ["\u6700\u5148", ":first", ":**", " FIRST", " \u0623\u0648\u0644\u0627\u064b", "-first", "\u7b2c\u4e00\u4ef6\u4e8b", " :**"], [":**", "\u6700\u5148", " :**", ":*", "?**", " \u0623\u0648\u0644\u0627\u064b", " FIRST", "\uff1a**"], [" \u0623\u0648\u0644\u0627\u064b", "\u9996\u5148", ":**", " FIRST", " first", "\u6700\u5148", " zuerst", "-first"], [" first", "\u9996\u5148", " FIRST", " \u0623\u0648\u0644\u0627\u064b", "first", ":first", "-first", "\u6700\u5148"], [" first", "first", " FIRST", " First", "-first", ":first", "_first", ".first"], [" first", "first", " First", " FIRST", "-first", "\u9996\u5148", "First", "_first"], [" first", "first", " First", " FIRST", "-first", "First", "\u9996\u5148", "_first"], [" first", " First", "first", " FIRST", "First", "-first", "_first", ".first"], [" first", " First", "first", " FIRST", "First", "_first", "-first", ".first"], [" first", " First", "first", "_first", "First", " FIRST", "-first", ".first"], [" First", " first", "First", "_first", " FIRST", "first", "-first", ":**"], [" First", " first", ":**", " Last", " FIRST", "_first", " Next", " Second"]], "p": [[0.4096, 0.2193, 0.1174, 0.0712, 0.0669, 0.0262, 0.0149, 0.0116], [0.0622, 0.0484, 0.0276, 0.0276, 0.0229, 0.0079, 0.0079, 0.0054], [0.6879, 0.1195, 0.0601, 0.0365, 0.0221, 0.0126, 0.0126, 0.0056], [0.008, 0.0058, 0.0031, 0.0028, 0.0021, 0.0019, 0.0018, 0.0017], [0.0084, 0.0084, 0.0074, 0.007, 0.0045, 0.0042, 0.0042, 0.0033], [0.0072, 0.005, 0.0044, 0.0044, 0.0028, 0.0025, 0.0023, 0.0022], [0.0685, 0.0534, 0.0209, 0.0144, 0.006, 0.0056, 0.0053, 0.0041], [0.0099, 0.0073, 0.006, 0.006, 0.0053, 0.0034, 0.0032, 0.0032], [0.0247, 0.0204, 0.0103, 0.0103, 0.0071, 0.0059, 0.0055, 0.0055], [0.0088, 0.0047, 0.0042, 0.0025, 0.0025, 0.002, 0.0015, 0.0014], [0.3056, 0.1853, 0.1741, 0.0499, 0.0236, 0.0143, 0.0087, 0.0081], [0.0544, 0.0273, 0.0273, 0.0146, 0.0095, 0.0074, 0.0074, 0.0069], [0.0516, 0.0148, 0.0139, 0.0131, 0.0131, 0.0095, 0.0084, 0.0066], [0.0743, 0.0698, 0.0291, 0.0241, 0.0226, 0.0137, 0.0121, 0.0107], [0.6744, 0.0711, 0.0554, 0.0109, 0.0109, 0.0085, 0.007, 0.0066], [0.0709, 0.0335, 0.0278, 0.0278, 0.0245, 0.0216, 0.0149, 0.0123], [0.0538, 0.0288, 0.0211, 0.0198, 0.0198, 0.0186, 0.0175, 0.0154], [0.2434, 0.115, 0.0479, 0.0291, 0.0137, 0.0107, 0.0089, 0.0074], [0.3342, 0.2027, 0.0512, 0.0227, 0.0189, 0.0166, 0.0166, 0.0138], [0.8376, 0.0417, 0.0223, 0.0112, 0.005, 0.0032, 0.003, 0.0027], [0.9831, 0.0096, 0.004, 0.0008, 0.0003, 0.0003, 0.0002, 0.0002], [0.1257, 0.0716, 0.0338, 0.028, 0.028, 0.017, 0.017, 0.0141], [0.6831, 0.0984, 0.0133, 0.0118, 0.0076, 0.0076, 0.0063, 0.0041], [0.5986, 0.104, 0.0103, 0.008, 0.0059, 0.0055, 0.0055, 0.0052], [0.9595, 0.0328, 0.0065, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001], [0.9894, 0.0028, 0.0028, 0.0008, 0.0007, 0.0004, 0.0002, 0.0002], [0.9151, 0.0751, 0.0024, 0.0018, 0.001, 0.0004, 0.0001, 0.0001], [0.8483, 0.1474, 0.0024, 0.0009, 0.0002, 0.0001, 0.0, 0.0], [0.9409, 0.0531, 0.0044, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.9776, 0.0109, 0.004, 0.0016, 0.0012, 0.0005, 0.0004, 0.0004], [0.9317, 0.0171, 0.0133, 0.0103, 0.0034, 0.0022, 0.0022, 0.0016], [0.2181, 0.103, 0.0245, 0.0191, 0.0158, 0.0139, 0.0102, 0.0102], [0.0407, 0.0359, 0.0317, 0.0317, 0.0192, 0.0192, 0.0181, 0.0117], [0.0579, 0.0291, 0.0257, 0.0129, 0.0129, 0.0101, 0.0094, 0.0089], [0.1339, 0.0299, 0.0264, 0.0181, 0.0141, 0.0141, 0.0141, 0.0103], [0.4869, 0.04, 0.0167, 0.0138, 0.0122, 0.0122, 0.0122, 0.0115], [0.1773, 0.0396, 0.0328, 0.0308, 0.0212, 0.0212, 0.0199, 0.0146], [0.0587, 0.0379, 0.0356, 0.0335, 0.0335, 0.0261, 0.023, 0.0216], [0.0824, 0.0684, 0.0441, 0.0323, 0.0268, 0.0268, 0.0251, 0.0236], [0.1308, 0.1084, 0.0512, 0.0311, 0.0292, 0.0274, 0.0257, 0.0257], [0.1975, 0.1198, 0.0682, 0.0322, 0.0303, 0.0303, 0.0303, 0.0267], [0.2804, 0.1501, 0.0626, 0.0519, 0.0315, 0.0278, 0.023, 0.023], [0.1966, 0.1052, 0.0497, 0.0497, 0.0439, 0.0283, 0.0283, 0.025], [0.1767, 0.1215, 0.037, 0.0348, 0.0327, 0.0327, 0.0307, 0.0271], [0.1396, 0.1311, 0.0426, 0.04, 0.0332, 0.0275, 0.0275, 0.0243], [0.1449, 0.0996, 0.0643, 0.0501, 0.0415, 0.0366, 0.0304, 0.0252], [0.0938, 0.073, 0.0645, 0.0534, 0.0304, 0.0269, 0.0185, 0.0144], [0.07, 0.0658, 0.0481, 0.0227, 0.0201, 0.0177, 0.0122, 0.0114], [0.0774, 0.0303, 0.0222, 0.0152, 0.0135, 0.0087, 0.0077, 0.0077], [0.2713, 0.1364, 0.0605, 0.0391, 0.0209, 0.0135, 0.0135, 0.0135], [0.147, 0.0477, 0.0477, 0.0448, 0.0372, 0.0372, 0.0328, 0.0212], [0.2182, 0.1097, 0.1097, 0.0665, 0.0457, 0.0379, 0.0277, 0.0261], [0.5479, 0.157, 0.051, 0.051, 0.0309, 0.0146, 0.0129, 0.0114], [0.2884, 0.2246, 0.1202, 0.0568, 0.0344, 0.0304, 0.0209, 0.0209], [0.2967, 0.1588, 0.1401, 0.1237, 0.0516, 0.0354, 0.0354, 0.0313], [0.8661, 0.0627, 0.0336, 0.0231, 0.0075, 0.0019, 0.0008, 0.0007], [0.9162, 0.0517, 0.0168, 0.0115, 0.0014, 0.0005, 0.0005, 0.0003], [0.9207, 0.0357, 0.0245, 0.0149, 0.0012, 0.0006, 0.0004, 0.0003], [0.6868, 0.2527, 0.0342, 0.0207, 0.0013, 0.0012, 0.0007, 0.0003], [0.8203, 0.1615, 0.015, 0.0011, 0.0007, 0.0006, 0.0004, 0.0001], [0.7902, 0.1998, 0.0077, 0.0006, 0.0005, 0.0005, 0.0002, 0.0002], [0.9716, 0.0259, 0.0007, 0.0006, 0.0004, 0.0003, 0.0002, 0.0001], [0.9998, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [16173, 17398, 20346, 51762, 3062, 1525, 1520, 2345, 7629, 3752, 751, 947, 802, 1503, 1837, 1640, 1715, 1596, 1235, 1715, 3891, 2372, 1556, 1572, 1288, 1167, 1189, 2290, 2140, 3359, 4401, 5257, 5240, 6934, 4946, 3605, 3281, 3179, 2554, 2593, 2450, 4332, 6577, 5915, 11648, 6678, 5593, 4734, 5178, 8332, 9295, 18415, 47913, 72013, 73855, 65007, 44058, 55658, 40565, 6730, 8374, 2847, 1379]}}, {"pos": 485, "top": [["s", " \u2013", ".", "<|endoftext|>", "\u2013", ",", " ", "  \n"], ["s", " \u2013", "\u2013", " very", " Very", "  \n", "  \n\n", "spre"], ["\u2013", " \u2013", "s", "\u2026", ",", ".", "\u2013and", "?"], ["sWith", "schaft", "sik", "schn", "scha", "sstr", "schrift", "satz"], ["s", "sWith", "ively", "sik", "sand", "schaft", "sche", "iest"], ["s", "schaft", "sver", " **", "sWith", "spre", "sand", "sab"], ["s", " **", "\u300d**", "sie", "schaft", "sor", "sand", " \u00bb**"], [" **", "schaft", " **\u300c", "\u300d**", "schn", " **\u00ab", " `_", " \u00bb**"], ["schaft", "schn", "s", "sik", "\u300d**", "schuss", "sWith", "spre"], ["s", "\\_", "\\-", "!\\", "sand", "\u5148\u5f97", "ively", "!,"], ["s", "\\_", "\\-", " \\(", "!\\", " \\", "\\", ","], ["s", " **", "\\_", " _", "._", "ively", "_\\", "schaft"], ["s", "schaft", " **", " _", "ively", "iest", "\\_", " `_"], ["s", "-ish", "kick", "\\_", "-ever", "er", " _", "kit"], ["s", "\n\n", " _", "\\_", " \n\n", " @", "\\'", " \u2014"], ["s", " ,", " \u2014", " -", " ?", " --", " right", " really"], ["s", " ,", ",", " really", " just", "?", " in", " \u2014"], ["s", " \u2014", ",", " ,", "?", " just", " really", " in"], ["s", " \u2014", " ?", " --", " \ufffd", " ,", "-ever", "\n\n"], [" \u2014", " --", "\n\n", " ?", "s", " \ufffd", " ,", " \n\n"], ["\n\n", " \n\n", "<|endoftext|>", " \u2014", " --", "  \n\n", " ?", " ,"], [" ?", " --", " ?**", " :", " ___", " ---", " \u2014", " \u061f"], ["\n\n", " --", " ?", " :", " ,", " ___", " \u2014", " ---"], [" --", "\n\n", " ,", " ?", " \u2014", " :", "<|endoftext|>", " \n\n"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " --", " ___", "<|endoftext|>", " \u2014"], ["\n\n", " \n\n", " ___", " --", "\r\n\r\n", "  \n\n", " ______", " ____"], ["\n\n", " ___", " --", " \n\n", " ?", " __", " ---", " ____"], ["\n\n", " \n\n", " --", " ___", " ?", " __", "  \n\n", " \u2014"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " ___", " ?", " --", " \u2014"], [" \n\n", "\n\n", "  \n\n", " \u2014", " --", " ___", " ?", " \n\n\n"], ["\n\n", " \n\n", "  \n\n", " ___", " ?", " ______", " \u2014", " :"], [" \u2014", " \n\n", " ?", "\n\n", " ,", " :", " --", " @"], [" :", " ?", " \u2014", " ,", " --", " quickly", " **", " early"], [" \u2014", " :", " **", " \ufffd", " --", " quickly", " ?", " fastest"], [" \u2014", " :", " quickly", " **", " --", " fastest", " rapidly", " rapid"], [" \u2014", " :", " **", " :**", " ?", " \ufffd", " quickly", " \u2013"], [" :", " \u2014", " **", " :**", " **:", " fastest", "**:", " quickly"], [" :", " \u2014", "**:", " :**", " **:", " ?", " **", " quickly"], [" :", " \u2014", " quickly", " **", " :**", " rapidly", " **:", " fastest"], [" :", " quickly", " **", " **:", " fastest", " rapidly", "**:", " :**"], [" :", "**:", " **:", " quickly", " **", " :**", "*:", " fastest"], [" :", " quickly", " rapidly", " fastest", " rapid", " prematurely", " catastrophic", " crisis"], [" quickly", " rapidly", " :", " fastest", " rapid", " early", " prematurely", " destabil"], [" :", " fastest", " quickly", " quickest", " rapidly", " rapid", ":", " destabil"], [" :", " fastest", " quickly", " early", " bottleneck", " prematurely", " rapid", " rapidly"], [" :", " first", " fastest", " quickly", " early", " immediate", " rapidly", " immediately"], [":", " :", ":**", "**:", " :**", " **", " Immediate", " fastest"], [":", " :", ":**", " :**", "**:", ":\\", " **", "\uff1a**"], [":", " :", ":**", "**:", " :**", " **:", " **", "\uff1a**"], [":", ":**", "**:", " **:", "\uff1a**", ":\\", " :**", " :"], [" **:", ":**", "\uff1a**", " **", ":", " :**", "**:", "?**"], [":**", "\uff1a**", " :**", ":", " **:", "**:", ":*", ":\\"], [":**", "\uff1a**", " :**", ":*", "?**", ":", "**:", " **:"], [":**", "\uff1a**", " :**", ":", ":*", "?**", ":\\", "**:"], [":**", "\uff1a**", " :**", ":", ":*", ":`", "**:", ":\\"], [":**", "\uff1a**", " :**", ":", ":*", "**:", "?**", ":`"], [":**", " :**", "\uff1a**", "?**", ":*", "**:", ":", " **:"], [":**", " :**", "\uff1a**", ":", ":*", "**:", "?**", " **:"], [":**", " :**", ":", "\uff1a**", ":*", "**:", "?**", " **:"], [":**", " :**", ":*", ":", "\uff1a**", "?**", "**:", "**"], [":**", ":", ":*", " :**", "\uff1a**", "?**", ":\"", "**:"], [":**", ":", ":*", " :**", "?**", "**:", "\uff1a**", ":`"], [":**", ":", "?**", "\uff1a**", "**:", " :**", "**", ".**"]], "p": [[0.698, 0.2568, 0.0145, 0.0106, 0.0078, 0.0032, 0.0022, 0.0007], [0.809, 0.1406, 0.0179, 0.0008, 0.0006, 0.0006, 0.0005, 0.0004], [0.5478, 0.2284, 0.2015, 0.0094, 0.0025, 0.0021, 0.0019, 0.0008], [0.0223, 0.0185, 0.0173, 0.0105, 0.0099, 0.0077, 0.0053, 0.0053], [0.9971, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.7131, 0.0123, 0.0123, 0.009, 0.0054, 0.0048, 0.0045, 0.0042], [0.8215, 0.015, 0.0103, 0.0055, 0.0055, 0.004, 0.0038, 0.0034], [0.1181, 0.0594, 0.0299, 0.028, 0.0205, 0.0141, 0.0132, 0.0117], [0.0855, 0.0404, 0.0404, 0.0149, 0.0102, 0.009, 0.007, 0.007], [0.1967, 0.0639, 0.0104, 0.0032, 0.0026, 0.0026, 0.0025, 0.0023], [0.6487, 0.2704, 0.0068, 0.005, 0.0047, 0.0032, 0.0028, 0.0021], [0.6388, 0.0384, 0.0264, 0.0086, 0.0086, 0.0036, 0.0026, 0.0023], [0.2955, 0.0108, 0.0084, 0.0065, 0.0035, 0.0035, 0.0031, 0.0029], [0.7847, 0.0036, 0.0019, 0.0019, 0.0016, 0.0015, 0.0014, 0.0013], [0.8706, 0.0066, 0.0055, 0.002, 0.0009, 0.0009, 0.0008, 0.0008], [0.6716, 0.0191, 0.0102, 0.0079, 0.0035, 0.0035, 0.0033, 0.0029], [0.9344, 0.0018, 0.0017, 0.0011, 0.001, 0.0008, 0.0007, 0.0006], [0.4229, 0.0735, 0.0164, 0.0145, 0.0093, 0.0077, 0.0068, 0.005], [0.2576, 0.1217, 0.0308, 0.0272, 0.0113, 0.0094, 0.0078, 0.0069], [0.3737, 0.1071, 0.0691, 0.0506, 0.0475, 0.0186, 0.0186, 0.0154], [0.8942, 0.0393, 0.0128, 0.012, 0.0099, 0.0073, 0.0057, 0.0047], [0.3038, 0.0768, 0.0283, 0.0249, 0.022, 0.0133, 0.0111, 0.0098], [0.5957, 0.2192, 0.0806, 0.0159, 0.0132, 0.0116, 0.0103, 0.009], [0.3737, 0.3298, 0.1071, 0.0475, 0.0307, 0.0239, 0.0094, 0.0032], [0.9907, 0.0086, 0.0005, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9232, 0.0358, 0.0246, 0.0033, 0.0018, 0.0015, 0.0014, 0.0014], [0.9345, 0.0282, 0.0151, 0.0046, 0.0026, 0.0023, 0.0015, 0.0014], [0.9932, 0.0052, 0.0007, 0.0003, 0.0002, 0.0001, 0.0001, 0.0], [0.9815, 0.018, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0], [0.6259, 0.335, 0.0312, 0.0029, 0.0007, 0.0006, 0.0005, 0.0003], [0.4987, 0.4401, 0.0281, 0.0081, 0.0049, 0.0022, 0.0022, 0.0019], [0.1691, 0.1237, 0.1092, 0.1025, 0.0584, 0.0549, 0.0402, 0.0229], [0.5059, 0.106, 0.0996, 0.0471, 0.0163, 0.0135, 0.0105, 0.0072], [0.4295, 0.0581, 0.0482, 0.0147, 0.0147, 0.0138, 0.0138, 0.0074], [0.2927, 0.0576, 0.0422, 0.035, 0.0308, 0.0212, 0.0187, 0.0137], [0.4296, 0.2953, 0.0258, 0.0147, 0.0084, 0.0074, 0.0069, 0.0061], [0.4487, 0.1457, 0.0305, 0.0287, 0.0136, 0.0127, 0.0106, 0.0099], [0.5626, 0.0263, 0.0232, 0.0218, 0.016, 0.015, 0.0141, 0.0124], [0.5308, 0.0385, 0.0361, 0.0206, 0.0171, 0.016, 0.0141, 0.0117], [0.2324, 0.0487, 0.0458, 0.0295, 0.023, 0.0216, 0.0216, 0.0203], [0.1886, 0.0575, 0.0395, 0.0349, 0.0328, 0.0212, 0.0199, 0.0199], [0.0994, 0.0933, 0.0566, 0.0285, 0.0285, 0.0222, 0.0162, 0.0152], [0.1196, 0.0601, 0.0601, 0.0365, 0.0343, 0.0284, 0.0208, 0.0208], [0.1415, 0.0668, 0.0668, 0.0316, 0.0262, 0.0231, 0.0231, 0.0159], [0.2556, 0.0536, 0.0368, 0.0325, 0.0185, 0.0174, 0.0163, 0.0163], [0.1252, 0.0808, 0.0759, 0.063, 0.0461, 0.0382, 0.0317, 0.0279], [0.357, 0.1911, 0.0376, 0.0275, 0.0259, 0.0259, 0.0167, 0.013], [0.6379, 0.1108, 0.0762, 0.0318, 0.0263, 0.0218, 0.0124, 0.0097], [0.6011, 0.1045, 0.0813, 0.0634, 0.0435, 0.0182, 0.0171, 0.016], [0.6921, 0.1363, 0.0304, 0.0268, 0.0209, 0.0209, 0.0184, 0.0163], [0.3251, 0.1972, 0.1535, 0.1196, 0.064, 0.0498, 0.0302, 0.0162], [0.5307, 0.2507, 0.0922, 0.0718, 0.0182, 0.0086, 0.0086, 0.0046], [0.9135, 0.0401, 0.0354, 0.0048, 0.0026, 0.0018, 0.0006, 0.0003], [0.9216, 0.0405, 0.0191, 0.009, 0.008, 0.0008, 0.0002, 0.0001], [0.9022, 0.0396, 0.024, 0.024, 0.0088, 0.0003, 0.0002, 0.0001], [0.9608, 0.0176, 0.0137, 0.0035, 0.0035, 0.0003, 0.0003, 0.0001], [0.9771, 0.0123, 0.0085, 0.0008, 0.0005, 0.0003, 0.0003, 0.0], [0.9859, 0.0075, 0.0036, 0.0019, 0.0006, 0.0002, 0.0002, 0.0], [0.9771, 0.0096, 0.0075, 0.0021, 0.0017, 0.0015, 0.0003, 0.0001], [0.9915, 0.0052, 0.0015, 0.0008, 0.0003, 0.0002, 0.0002, 0.0002], [0.9866, 0.0075, 0.0046, 0.0006, 0.0002, 0.0001, 0.0001, 0.0001], [0.9243, 0.067, 0.0043, 0.0018, 0.001, 0.0003, 0.0003, 0.0002], [0.9987, 0.0008, 0.0003, 0.0001, 0.0001, 0.0, 0.0, 0.0]], "ranks": {"Rust": [80613, 96575, 89092, 106364, 65230, 59538, 92520, 97095, 79541, 52444, 29574, 36327, 22654, 7536, 12610, 7277, 9237, 8809, 14527, 16979, 22019, 25830, 16112, 9728, 9838, 8151, 3538, 2787, 2000, 2907, 2630, 3320, 3661, 3524, 2915, 6494, 6126, 6188, 5660, 4305, 4506, 3465, 2320, 2647, 1736, 1594, 2086, 2551, 3185, 4268, 4457, 12758, 14772, 25545, 57667, 30007, 18751, 13812, 10664, 2268, 3381, 1335, 572]}}, {"pos": 486, "top": [[" \u2013", ".", "  \n", " (\u201e", "\u2026..", "   \n", "\u201e", "\u2026\u2026"], ["  \n", " \u2013**", "   \n", ",\\\"", ",**", ":**", ":\\\"", "\u30f3"], ["\u2026\u2026", "\u2026..", ",**", ",..", ".", "..", " \u2013**", ":**"], [" ``(", " **\u201e", "\u52a0\u62ff\u5927", " ``", "``", "raries", " **:**", " ;;^"], [" ##", "ed", ":@", "raries", "\u52a0\u62ff\u5927", " //@", ":**", "\u65b0\u52a0\u5761"], [":**", "raries", ".:**", ",..", "\u52a0\u62ff\u5927", "\u65b0\u52a0\u5761", "ed", "\u30f3"], [" ......", " ~~", "raries", ":**", ",..", " ##", ",**", "......"], [" **\u201e", " ~~", "raries", "\u52c7\u5f80\u76f4\u524d", "\u52a0\u62ff\u5927", " ......", ",..", ":**"], [",..", " ......", " *@", "raries", " **\u201e", " ~~", ",\\\"", "\u52c7\u5f80\u76f4\u524d"], ["\u52c7\u5f80\u76f4\u524d", "\u4e0d\u53ef\u601d\u8bae", "\u52a0\u62ff\u5927", "\u8033\u719f\u80fd\u8be6", "\u8eab\u4e34\u5176\u5883", "\u4e8b\u534a\u529f\u500d", "\u52e4\u52e4\u6073\u6073", "raries"], [" ......", " ____", "......", "...\\", ",\\\"", ",..", "an", "..."], [" ____", "raries", " ~~", "\u52c7\u5f80\u76f4\u524d", " ##", " ......", " -->", "____"], ["\u52c7\u5f80\u76f4\u524d", "raries", " ~~", " ____", " **\u201e", "\u52a0\u62ff\u5927", " ......", "\u4e0d\u53ef\u601d\u8bae"], ["\u52c7\u5f80\u76f4\u524d", "\u8eab\u4e34\u5176\u5883", "\u4e0d\u53ef\u601d\u8bae", "\u52a0\u62ff\u5927", "raries", " LGBTQ", " backstory", "\u4e8b\u534a\u529f\u500d"], [" --", "\n\n", "\u52c7\u5f80\u76f4\u524d", "\u8eab\u4e34\u5176\u5883", "\u4e0d\u53ef\u601d\u8bae", "an", "raries", " backstory"], [" theater", " --", " even", "an", " neighborhood", "\u52c7\u5f80\u76f4\u524d", " maneuver", " \u201e"], [",", "an", "n", "<|endoftext|>", " even", " \u2013", " just", "d"], [",", " --", "an", "\u52c7\u5f80\u76f4\u524d", "n", "<|endoftext|>", " unpredict", " potentially"], ["\n\n", " --", "\u4e0d\u53ef\u601d\u8bae", " unpredict", "\u52c7\u5f80\u76f4\u524d", " ~~", " incredibly", "\u8eab\u4e34\u5176\u5883"], ["\n\n", "<|endoftext|>", " --", "  \n\n", " \n\n", "\u4e0d\u53ef\u601d\u8bae", "   \n\n", " unpredict"], ["\n\n", "<|endoftext|>", " \n\n", "  \n\n", " --", "   \n\n", "\n\n\n", " swiftly"], [" --", " **", "\n\n", " ;;^", " ``", "\u4e0d\u53ef\u601d\u8bae", "\u52e4\u52e4\u6073\u6073", " **>>"], ["\n\n", " --", " ``", " **", " {{--<", " \n\n", " ''", " arguably"], ["\n\n", " --", "<|endoftext|>", " ``", " ,", " \n\n", " ultimately", " swiftly"], ["\n\n", " \n\n", "  \n\n", "   \n\n", " --", "<|endoftext|>", "    \n\n", "\n\n\n"], ["\n\n", " \n\n", " **", " --", "  \n\n", " __", " ____", "   \n\n"], ["\n\n", " \n\n", " **", " --", " __", " ____", "  \n\n", "\n\n\n"], ["\n\n", " \n\n", " --", "  \n\n", " **", " ,", "<|endoftext|>", " __"], ["\n\n", " \n\n", "  \n\n", " **", " --", "   \n\n", "\n\n\n", "<|endoftext|>"], ["\n\n", " \n\n", "  \n\n", " **", " ...", "   \n\n", " --", " __"], ["\n\n", " \n\n", " ...", "  \n\n", "<|endoftext|>", " **", " \u2026", " ,"], ["\n\n", " ...", " ,", " \n\n", " **", "<|endoftext|>", " -", " --"], [" ,", " **", " over", " -", " heavily", " critical", " power", " due"], [" **", " fundamentally", " \u2026", " infrastructure", " catastrophic", " aggressively", " critical", " heavily"], [" **", " *", " aggressively", " infrastructure", " --", " **\"", "<|endoftext|>", " relentless"], [" \u2026", " **", "\n\n", " \n\n", "  \n\n", " ...", " [\u2026]", " \u2013"], [" **", "\n\n", " hardware", " bottleneck", " \n\n", " *", "  \n\n", " speed"], [" **", " hardware", " bottleneck", " *", "\n\n", " fast", " performance", " speed"], [" **", " performance", " bottleneck", " hardware", " speed", " inefficient", " overclock", " sluggish"], [" performance", " bottleneck", " **", " speed", " hardware", " sluggish", " overclock", " inefficient"], [" performance", " speed", " bottleneck", " sluggish", " overclock", " hardware", " slow", " slowdown"], [" performance", " speed", " hardware", " framerate", " bottleneck", " engine", " overclock", " throughput"], [" performance", " bottleneck", " framerate", " overclock", " speed", " hardware", " throughput", " engine"], [" bottleneck", " performance", " framerate", " hardware", " overclock", " crashes", " engine", " thermal"], [" bottleneck", " performance", " framerate", " hardware", " overclock", " speed", " crashes", " thermal"], [" bottleneck", " framerate", " performance", " speed", " hardware", " crashes", " unsustainable", " thermal"], [" bottleneck", "  \n\n", " **", " framerate", " \n\n", " thermal", " unsustainable", " hardware"], [" **", "  \n\n", " bottleneck", " \n\n", " framerate", " **\"", " thermal", " unsustainable"], [" **", " **\"", " **\u201c", "-**", " **'", " **-", " **#", "**"], [" **", " **\"", "  \n", "**", "-**", " **\u201c", " **#", ":**"], [" **", " **\"", " **#", " **\u201c", "**", "-**", " **-", " **("], [" **", " **\"", " **#", " **\u201c", "**", " **'", "-**", " **("], [" **", " **\"", "**", " **#", " **\u201c", " **'", " **[", " **("], [" **", " **\"", "**", " **#", " **'", "-**", " **[", " **("], [" **", "**", " **\"", " **#", "-**", " **\u00ab", " **+", " **("], [" **", "**", " **#", " **\"", "-**", " **(", " **-", " **+"], [" **", "**", " **\"", " **#", "-**", " **+", " **(", " **-"], [" **", "**", " **\"", " **#", " **(", " **+", "-**", " **-"], [" **", "**", " **\"", " **+", "-**", " **(", " **#", " **'"], [" **", "**", "\n", " **\"", " GPU", " **+", " Frame", " **'"], [" **", "\n", "**", "\n\n", " GPU", " **\"", " **+", " **("], [" **", "\n", "**", "\n\n", " **\"", " The", " Frame", " **("], ["\n", " **", "\n\n", "  \n", " The", " Frame", "**", " **\""]], "p": [[0.4647, 0.1331, 0.1175, 0.0713, 0.0262, 0.0246, 0.0204, 0.0159], [0.508, 0.0687, 0.0646, 0.0368, 0.0269, 0.0163, 0.0153, 0.0119], [0.3357, 0.1913, 0.0293, 0.0293, 0.0293, 0.0259, 0.0202, 0.0202], [0.0856, 0.0458, 0.0431, 0.0357, 0.0278, 0.0261, 0.0191, 0.0149], [0.0651, 0.0651, 0.0539, 0.042, 0.042, 0.0348, 0.0307, 0.0271], [0.038, 0.0296, 0.0296, 0.0278, 0.0261, 0.0217, 0.0204, 0.0159], [0.1661, 0.0692, 0.0539, 0.0395, 0.0348, 0.0307, 0.0239, 0.0211], [0.1464, 0.0834, 0.0692, 0.042, 0.037, 0.0348, 0.0288, 0.0271], [0.1061, 0.0776, 0.0415, 0.0415, 0.0415, 0.0415, 0.0323, 0.0285], [0.2026, 0.0481, 0.0425, 0.0375, 0.0331, 0.0274, 0.0188, 0.0138], [0.1272, 0.0874, 0.0725, 0.0498, 0.0468, 0.0364, 0.025, 0.0195], [0.1956, 0.056, 0.0385, 0.0319, 0.0249, 0.0194, 0.0182, 0.0104], [0.0421, 0.0255, 0.0225, 0.0187, 0.0065, 0.0061, 0.0061, 0.0054], [0.1362, 0.0153, 0.0119, 0.0112, 0.0112, 0.0072, 0.0064, 0.0056], [0.0796, 0.0514, 0.0275, 0.013, 0.0115, 0.007, 0.007, 0.0061], [0.0168, 0.0168, 0.0096, 0.0079, 0.0062, 0.0055, 0.0048, 0.0045], [0.2411, 0.0347, 0.0306, 0.0186, 0.0145, 0.0128, 0.0128, 0.0099], [0.0195, 0.0111, 0.0104, 0.0104, 0.0092, 0.0076, 0.0072, 0.0067], [0.0766, 0.041, 0.0219, 0.0142, 0.0142, 0.0097, 0.0081, 0.0067], [0.8211, 0.0525, 0.0281, 0.0059, 0.0055, 0.0017, 0.0015, 0.0013], [0.8725, 0.1181, 0.0052, 0.0013, 0.0009, 0.0002, 0.0, 0.0], [0.0994, 0.0603, 0.0343, 0.0184, 0.0111, 0.0064, 0.006, 0.0056], [0.5517, 0.2606, 0.0375, 0.0048, 0.0031, 0.0014, 0.0011, 0.001], [0.5156, 0.1782, 0.0423, 0.0094, 0.0074, 0.0065, 0.0025, 0.0025], [0.9828, 0.0159, 0.001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9173, 0.0517, 0.019, 0.0026, 0.0019, 0.0011, 0.0008, 0.0006], [0.9954, 0.0036, 0.0003, 0.0002, 0.0001, 0.0, 0.0, 0.0], [0.9735, 0.0229, 0.0006, 0.0005, 0.0005, 0.0002, 0.0001, 0.0001], [0.9831, 0.0159, 0.0004, 0.0002, 0.0, 0.0, 0.0, 0.0], [0.758, 0.2172, 0.0123, 0.0045, 0.0016, 0.0006, 0.0005, 0.0002], [0.9453, 0.0367, 0.0064, 0.005, 0.0017, 0.0006, 0.0004, 0.0003], [0.4701, 0.0677, 0.0465, 0.022, 0.0207, 0.0133, 0.0081, 0.0081], [0.0778, 0.0305, 0.0119, 0.0119, 0.0119, 0.0099, 0.0082, 0.0077], [0.2464, 0.0229, 0.0157, 0.0148, 0.0148, 0.0131, 0.0131, 0.0108], [0.7466, 0.005, 0.0047, 0.0044, 0.0044, 0.0039, 0.0037, 0.0037], [0.2668, 0.2507, 0.0982, 0.0559, 0.0339, 0.0219, 0.0133, 0.0133], [0.6043, 0.0341, 0.0301, 0.0283, 0.0194, 0.0092, 0.0076, 0.0067], [0.3453, 0.0529, 0.0221, 0.0161, 0.0134, 0.0118, 0.0118, 0.0111], [0.2012, 0.0788, 0.0478, 0.0449, 0.0212, 0.0212, 0.0121, 0.0107], [0.104, 0.081, 0.081, 0.0631, 0.0557, 0.0298, 0.0263, 0.017], [0.1878, 0.1657, 0.0649, 0.0475, 0.0288, 0.0271, 0.0239, 0.0175], [0.1739, 0.0772, 0.053, 0.0468, 0.044, 0.0364, 0.0322, 0.0183], [0.0953, 0.045, 0.045, 0.0397, 0.0351, 0.0329, 0.0241, 0.0241], [0.0898, 0.0657, 0.0424, 0.0398, 0.0257, 0.0242, 0.0227, 0.0213], [0.1297, 0.0576, 0.0508, 0.0225, 0.0212, 0.0199, 0.0176, 0.0155], [0.1196, 0.0322, 0.0284, 0.0267, 0.0208, 0.0172, 0.0162, 0.0162], [0.1174, 0.0521, 0.0489, 0.0279, 0.0231, 0.0204, 0.0149, 0.0103], [0.1491, 0.1401, 0.0662, 0.0427, 0.0167, 0.0157, 0.013, 0.0122], [0.9368, 0.0194, 0.0063, 0.0034, 0.0026, 0.0026, 0.0026, 0.0023], [0.942, 0.0222, 0.0063, 0.0049, 0.0044, 0.0034, 0.0028, 0.0018], [0.9954, 0.0022, 0.0006, 0.0005, 0.0003, 0.0002, 0.0002, 0.0001], [0.9876, 0.0085, 0.0012, 0.0007, 0.0005, 0.0003, 0.0002, 0.0002], [0.9891, 0.0052, 0.0022, 0.0012, 0.0005, 0.0003, 0.0003, 0.0003], [0.9894, 0.0036, 0.0028, 0.0015, 0.0004, 0.0003, 0.0003, 0.0003], [0.9947, 0.0019, 0.001, 0.0006, 0.0003, 0.0002, 0.0002, 0.0001], [0.9942, 0.0041, 0.0003, 0.0003, 0.0003, 0.0001, 0.0001, 0.0001], [0.9904, 0.0076, 0.0005, 0.0003, 0.0003, 0.0002, 0.0001, 0.0001], [0.9942, 0.0036, 0.0005, 0.0003, 0.0003, 0.0002, 0.0002, 0.0001], [0.9961, 0.0028, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9949, 0.0019, 0.0006, 0.0005, 0.0003, 0.0002, 0.0001, 0.0001], [0.98, 0.0109, 0.0023, 0.001, 0.0007, 0.0007, 0.0003, 0.0002], [0.9795, 0.0109, 0.0021, 0.0018, 0.0006, 0.0003, 0.0003, 0.0003], [0.9143, 0.0428, 0.0333, 0.0029, 0.0009, 0.0007, 0.0004, 0.0002]], "ranks": {"Rust": [30757, 48763, 55010, 95857, 28833, 20818, 31116, 40052, 48133, 51275, 21556, 24685, 17152, 10394, 7139, 5878, 6851, 5908, 11364, 8437, 15475, 25617, 12349, 6190, 4012, 3454, 2589, 3931, 3459, 5459, 5808, 8123, 8708, 10036, 11047, 7285, 6096, 7005, 6948, 6397, 6944, 10858, 11105, 11612, 16198, 14622, 14728, 14174, 7789, 6064, 6730, 7385, 2332, 3095, 2712, 1308, 516, 491, 309, 136, 85, 117, 43]}}, {"pos": 487, "top": [[" \u2013", ".", "\u2013", " \u2013,", "\u200b\u200b", ".\u2013", "   \n", "\u2013and"], [" \u2013**", "**\u2013", " *\u2013", "\u2013and", "   \n", " \u2013,", " Guta", "pedia"], [".", "\u3002", "\u2026..", "\u2013", ".\u2013", "\u2013and", "\u2026\u2026", " \u2013"], ["raries", "``", " ``(", "\u52a0\u62ff\u5927", " milfs", " **\u201e", "\u0103\u021b", " Guta"], ["ly", "!\u201c", "raries", ".\u201c", ".\",\"", " (\u201e", "\u0d30\u0d4d", "\uff1a\u201c"], ["!\u201c", "\uff01", "raries", "\u0d30\u0d4d", ".\u201c", "ly", "\u0103\u021b", "\uff1f"], [".\u201c", "!\u201c", "ly", "raries", "\n\n", "\u4e2d", "\uff01", "\u201e"], ["!\u201c", "\u201e", "ly", "raries", "____", " (\u201e", "   \n\n", ".\u201c"], ["   \n\n", "\n\n\n", "!\u201c", "\n\n", "  \n\n\n", ".\u201c", "    \n\n", ".\",\""], ["raries", "\u6700\u65b0\u53d1\u5e03", ".\",\"", "ly", "!--", ",\\\"", "pedia", "ighbor"], ["ly", "\u6700\u65b0\u53d1\u5e03", "____", " ____", "raries", ".\",\"", "\n\n\n", ",\\\""], ["raries", " ____", " **\u201e", "____", "ly", "\u6700\u65b0\u53d1\u5e03", " freaking", " *\u201e"], [" ____", "____", "ly", "raries", " **\u201e", " freaking", " moms", "\u6700\u65b0\u53d1\u5e03"], ["raries", "ly", " freaking", " moms", " Savior", " Moms", " incredibly", " veggies"], [" --", "\n\n", " moms", "ly", "--", "raries", " Moms", " rumored"], [" --", " folks", " moms", " incredibly", " kids", " sprawling", "--", "ly"], [" --", "--", " incredibly", "a", "ly", "\u2013and", " folks", "\u2013"], ["   \n\n", "  \n\n", "...", "\n\n", " --", "<|endoftext|>", "...\\", " incredibly"], ["\n\n", " --", "  \n\n", "   \n\n", " incredibly", " swiftly", " folks", " savvy"], ["\n\n", "  \n\n", " --", "   \n\n", " \n\n", "<|endoftext|>", "    \n\n", " incredibly"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", "   \n\n", " --", "\n\n\n", "    \n\n"], [" --", " **", "\n\n", " ``", " **\u201e", "__$", " **\u2022", " ``("], ["\n\n", " --", " ``", " \n\n", "\n\n\n", "  \n\n", "   \n\n", " **"], ["\n\n", " --", " \n\n", "\n\n\n", "  \n\n", "   \n\n", "<|endoftext|>", " ``"], ["\n\n", " \n\n", "  \n\n", "   \n\n", "\r\n\r\n", "    \n\n", "\t\n\n", "\n\n\n"], ["\n\n", " \n\n", "  \n\n", "   \n\n", "\r\n\r\n", "\t\n\n", "    \n\n", " --"], ["\n\n", " \n\n", "  \n\n", "   \n\n", "\r\n\r\n", "\n\n\n", "\t\n\n", "    \n\n"], ["\n\n", " \n\n", "  \n\n", "   \n\n", "\n\n\n", "\r\n\r\n", " --", " **"], ["\n\n", " \n\n", "  \n\n", "   \n\n", "\n\n\n", "\r\n\r\n", " **", "    \n\n"], ["\n\n", "  \n\n", " \n\n", "   \n\n", "  \n\n\n", "\n\n\n", " **", " \n\n\n"], ["\n\n", "  \n\n", " \n\n", "   \n\n", " --", " heavily", " **", " dramatically"], ["\n\n", " \n\n", "  \n\n", " --", " heavily", " just", " rapidly", " dramatically"], ["  \n\n", " \n\n", " \u2013", "\n\n", " heavily", "<|endoftext|>", " ,", " rapidly"], ["  \n\n", " \n\n", "<|endoftext|>", "\n\n", " heavily", "   \n\n", " \u2013", " dramatically"], ["  \n\n", " **", "<|endoftext|>", " \n\n", " heavily", " --", " aggressively", " dramatically"], ["  \n\n", "<|endoftext|>", " \n\n", "\n\n", " **", "   \n\n", " \u2013", " \u2014"], ["  \n\n", " **", " \n\n", "\n\n", "<|endoftext|>", "   \n\n", " aggressively", " **\""], [" **", "  \n\n", " **\"", " *", " \n\n", "<|endoftext|>", " **\u201c", "\n\n"], [" **", "  \n\n", " *", " **\"", "<|endoftext|>", " **\u201c", " --", " dramatically"], [" **", "  \n\n", " **\"", " **\u201c", " *", "<|endoftext|>", " rapidly", " dramatically"], [" **", "  \n\n", "<|endoftext|>", " **\"", " rapidly", " \n\n", " dramatically", "\n\n"], [" **", " rapidly", " dramatically", "  \n\n", " aggressively", " swiftly", " relentless", " catastrophic"], [" **", " rapidly", " **\"", "  \n\n", " relentless", " aggressively", " dramatically", " swiftly"], [" **", "  \n\n", " rapidly", " **\"", " relentless", " dramatically", " rapid", " swiftly"], [" **", " **\"", " rapidly", " relentless", " rapid", " critical", "  \n\n", " catastrophic"], [" **", " **\"", "  \n\n", " **\u201c", " rapidly", " immediate", " destabil", " immediately"], [" **", " **\"", " **\u201c", "  \n\n", "-**", " **'", " **(", ":**"], [" **", " **\"", " **\u201c", "-**", " **'", " **(", " **#", "  \n\n"], [" **", " **\"", "-**", " **'", " **\u201c", "**", " **-", " **#"], [" **", " **\"", "-**", " **'", "**", " **#", " **\u201c", " **-"], [" **", " **\"", " **\u201c", "-**", " **'", " **#", "**", " **+"], [" **", " **\"", " **\u201c", " **'", " **#", "-**", "**", " **["], [" **", " **\"", "**", " **\u201c", " **#", "-**", " **'", " **["], [" **", " **\"", "**", " **#", " **[", "-**", " **\u201c", " **'"], [" **", " **\"", "**", " **#", " **[", "-**", " **'", " **\u201c"], [" **", "**", " **\"", "-**", " **#", " **[", " **+", " **("], [" **", "**", " **\"", "-**", " **#", " **[", " **+", " **\u201c"], [" **", "**", " **\"", " **#", "-**", " **[", " **+", " **("], [" **", "**", " **\"", " **#", "-**", " **\u201c", " **[", " **'"], [" **", "**", " **\"", "-**", " **\u201c", " **#", " **[", " **'"], [" **", "**", " **\"", " **[", " **#", " **\u201c", "-**", " **'"], [" **", "**", " **\"", " **#", " **.", " **'", " **[", " **\u201c"], ["**", " **", "1", "The", "3", "2", "**(", " The"]], "p": [[0.682, 0.2843, 0.0071, 0.0049, 0.0046, 0.0017, 0.0015, 0.0013], [0.0832, 0.0609, 0.0347, 0.0164, 0.0113, 0.0073, 0.005, 0.0047], [0.1995, 0.1654, 0.1137, 0.0943, 0.0572, 0.0418, 0.0369, 0.0306], [0.0235, 0.0195, 0.0111, 0.0092, 0.0086, 0.0076, 0.0063, 0.0056], [0.3739, 0.065, 0.065, 0.0506, 0.0225, 0.0164, 0.0154, 0.01], [0.1084, 0.0452, 0.0375, 0.0292, 0.0274, 0.0188, 0.0122, 0.0122], [0.0835, 0.0574, 0.0539, 0.0507, 0.0476, 0.0476, 0.0348, 0.0307], [0.1186, 0.0815, 0.0635, 0.0465, 0.041, 0.0265, 0.0249, 0.0206], [0.313, 0.1016, 0.0791, 0.0743, 0.0544, 0.0511, 0.048, 0.0227], [0.0898, 0.07, 0.031, 0.0227, 0.02, 0.0166, 0.0084, 0.0084], [0.2541, 0.0775, 0.0604, 0.0415, 0.0415, 0.0252, 0.0236, 0.0196], [0.1014, 0.084, 0.0256, 0.0256, 0.0176, 0.0089, 0.0061, 0.005], [0.0711, 0.0553, 0.0431, 0.0405, 0.0131, 0.0116, 0.0096, 0.0085], [0.0778, 0.0237, 0.0237, 0.0163, 0.0093, 0.0053, 0.005, 0.0047], [0.221, 0.0193, 0.017, 0.015, 0.011, 0.0097, 0.0086, 0.0086], [0.407, 0.0295, 0.0277, 0.0203, 0.0158, 0.0102, 0.0096, 0.009], [0.2409, 0.0505, 0.0369, 0.0224, 0.021, 0.0136, 0.012, 0.0113], [0.1073, 0.1008, 0.0836, 0.0738, 0.0574, 0.0327, 0.0239, 0.0225], [0.085, 0.0705, 0.0662, 0.0622, 0.0428, 0.007, 0.007, 0.0054], [0.8115, 0.0855, 0.0335, 0.0191, 0.0168, 0.0031, 0.0014, 0.0012], [0.9191, 0.0404, 0.0245, 0.009, 0.0043, 0.0006, 0.0003, 0.0003], [0.0462, 0.0232, 0.0205, 0.0193, 0.015, 0.0036, 0.0031, 0.0026], [0.9571, 0.0155, 0.003, 0.0027, 0.0022, 0.0009, 0.0007, 0.0006], [0.9707, 0.0079, 0.0065, 0.0029, 0.0024, 0.0008, 0.0004, 0.0004], [0.9274, 0.036, 0.0317, 0.0033, 0.0004, 0.0004, 0.0002, 0.0001], [0.761, 0.0909, 0.0587, 0.0168, 0.0058, 0.0027, 0.0027, 0.0021], [0.98, 0.0096, 0.0033, 0.0009, 0.0005, 0.0004, 0.0002, 0.0002], [0.9942, 0.0041, 0.0013, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9826, 0.0096, 0.0066, 0.0004, 0.0002, 0.0001, 0.0001, 0.0], [0.5527, 0.2958, 0.1397, 0.0061, 0.0009, 0.0008, 0.0007, 0.0005], [0.5132, 0.2424, 0.2139, 0.0065, 0.0017, 0.0009, 0.0007, 0.0005], [0.3463, 0.1636, 0.1274, 0.0365, 0.0105, 0.0077, 0.0063, 0.0053], [0.0711, 0.0381, 0.0381, 0.0217, 0.0204, 0.0159, 0.0149, 0.014], [0.4965, 0.1826, 0.1179, 0.0218, 0.0097, 0.0097, 0.0091, 0.0071], [0.4045, 0.0583, 0.0376, 0.0332, 0.0189, 0.0189, 0.0178, 0.0138], [0.5643, 0.1832, 0.0865, 0.0633, 0.0318, 0.008, 0.0063, 0.0028], [0.6151, 0.1555, 0.0474, 0.0254, 0.0136, 0.0106, 0.0064, 0.0057], [0.7796, 0.1196, 0.0104, 0.0098, 0.0087, 0.006, 0.0056, 0.0046], [0.8271, 0.0497, 0.0118, 0.0098, 0.0081, 0.0052, 0.0043, 0.0034], [0.886, 0.0285, 0.0087, 0.0056, 0.0053, 0.0036, 0.0026, 0.0023], [0.6246, 0.1155, 0.0375, 0.0258, 0.0089, 0.0089, 0.0079, 0.0069], [0.2461, 0.0485, 0.0215, 0.0167, 0.0157, 0.0139, 0.013, 0.0123], [0.7511, 0.0107, 0.0095, 0.0074, 0.0054, 0.0048, 0.0042, 0.0039], [0.7144, 0.0179, 0.0148, 0.0075, 0.0062, 0.0055, 0.0051, 0.0042], [0.6928, 0.0197, 0.0112, 0.0056, 0.0056, 0.0053, 0.005, 0.0047], [0.8344, 0.0324, 0.0163, 0.0053, 0.0044, 0.0032, 0.0021, 0.0019], [0.9778, 0.0158, 0.0024, 0.0015, 0.0002, 0.0002, 0.0002, 0.0002], [0.9934, 0.0046, 0.001, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9995, 0.0004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9995, 0.0004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9994, 0.0006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9988, 0.0009, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9996, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9958, 0.0041, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9878, 0.0085, 0.0036, 0.0001, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [57968, 131064, 112323, 77357, 43042, 36059, 56515, 63600, 63977, 67458, 28275, 34858, 13122, 5108, 7264, 3601, 6275, 5844, 17026, 23580, 28949, 43449, 33940, 29221, 61224, 74564, 80377, 41322, 25476, 14834, 10821, 9315, 11059, 9387, 15048, 10814, 11686, 13150, 13231, 10878, 7760, 6018, 3650, 3565, 4411, 2870, 2225, 3038, 1938, 2589, 1656, 2489, 2365, 1748, 4673, 1914, 759, 549, 420, 167, 224, 193, 189]}}, {"pos": 488, "top": [[".", "**.", "**", " \u2013", "\u00a0\u00a0", "-**", "\u00a0", "**\u2013"], [" **", "-**", "'**", "(**", "\uff1f**", "\u2019**", "**", " **'"], ["\u2026**", "\uff1f**", "**", "(**", "-**", "'**", "\u2019**", "**\u2013"], ["\uff1f**", " **\u300c", "\u300d**", "'**", " **", "\u2019**", "\uff1a**", " **\u00ab"], [" **", "-**", "**", "...**", "\uff1f**", "'**", ">**", "\u2019**"], ["-**", " **", "\uff1f**", "(**", "**", "\u2019**", "\uff1a**", "\uff01**"], ["**", " **", "-**", "\uff1f**", "...**", "'**", "\u2019**", "\uff09**"], ["**", " **", "-**", "...**", "\uff1f**", "'**", " **\u300c", " **'"], ["...**", "**", " **", "'**", "-**", "\uff1f**", " **\u300c", "(**"], [" **", "...**", "-**", "'**", " **\u300c", " **\u00ab", "**", " **'"], ["...**", " **", "**", "-**", "'**", " **\u300c", " **#", " **\u00ab"], [" **", "...**", " **\u300c", " **\u00ab", "-**", "'**", " **'", "**"], [" **", "-**", " **\u00ab", "'**", " **\u300c", "**", "...**", " **'"], [" **", "-**", "'**", "**", "...**", " **\u00ab", " **\u300c", " **'"], [" **", "'**", "-**", "**", "...**", " **'", "\uff1f**", "!**"], [" **", "'**", "-**", "**", " **'", "...**", ">**", "\uff1f**"], ["**", " **", "-**", "...**", "'**", ">**", " **'", "!**"], ["**", "...**", "-**", " **", "'**", "!**", "(**", ">**"], ["**", "...**", "-**", " **", "'**", " **'", "!**", "\u2019**"], ["**", "...**", "-**", " **", "'**", "!**", " **'", "\u2019**"], ["**", "...**", " **", "-**", "'**", "!**", ">**", " **'"], [" **", "-**", "**", "'**", "...**", " **'", "\uff1f**", " !**"], [" **", "**", "...**", " **'", "'**", "-**", " !**", " ?**"], [" **", "**", "...**", " **'", " !**", " ?**", "'**", "-**"], [" **", "**", "...**", " **'", "'**", "-**", "  \n\n", "\u2026**"], [" **", "...**", "**", " **'", "'**", "-**", " **#", ">**"], [" **", "**", " **'", "...**", "'**", "-**", " !**", " **#"], [" **", " **'", "**", "...**", " !**", " ?**", " **#", "'**"], [" **", "**", "...**", " **'", "-**", "'**", " **#", " ?**"], [" **", "**", "...**", "  \n\n", "\u2026**", " **'", " \n\n", "-**"], [" **", "**", "  \n\n", " \n\n", "\n\n", "...**", " **'", " .**"], [" **", "\n\n", "**", "  \n\n", " \n\n", " **'", "...**", " .**"], [" **", " **'", "**", " !**", " .**", " **\"", " truly", " -**"], [" **", " **'", "**", "  \n\n", " !**", "...**", "\u2026**", " -**"], [" **", " **'", "!**", "**", " !**", " **\"", " -**", " **\u201c"], [" **", "  \n\n", "**", " !**", "!**", "?**", " **'", " **\u201c"], [" **", " !**", "?**", "!**", " -**", "**", " **\"", " **'"], [" **", " !**", "?**", "**", "!**", " -**", " **\u201c", " ?**"], [" **", " !**", " **\u201c", " -**", "!**", "?**", " **'", " **\""], [" **", "!**", " !**", "?**", " infrastructure", " unsustainable", " bottleneck", "**"], ["!**", " infrastructure", " unsustainable", " hardware", " bottleneck", " **", " failure", "?**"], [" infrastructure", " bottleneck", " hardware", " unsustainable", " failure", " logistical", " scalability", " collapsing"], [" infrastructure", " **", " bottleneck", " hardware", " unsustainable", "!**", " logistical", " scalability"], [" infrastructure", " bottleneck", " hardware", " **", " unsustainable", " failure", " logistical", " performance"], [" **", " infrastructure", " bottleneck", " hardware", " failure", " unsustainable", " logistical", " collapse"], [" **", " infrastructure", " bottleneck", " hardware", " crisis", " failure", " collapse", " unsustainable"], [" **", "!**", " bottleneck", " infrastructure", "\uff01**", "**", " Infrastructure", " **\""], [" **", "!**", "\uff01**", ";**", "**", " **'", ">**", ".**"], ["!**", " **", ".**", "\uff01**", "**", ";**", " **'", " **\""], [".**", ":**", "!**", ";**", "\uff01**", " bottleneck", ",**", "\uff1a**"], [".**", "!**", ";**", "\u3002**", ":**", "\uff01**", ">**", "\uff1a**"], [".**", "!**", ";**", "\u3002**", "\uff01**", ":**", ">**", "]**"], [".**", ";**", "!**", " Performance", "\u3002**", "]**", ":**", "\uff01**"], [" Performance", ".**", ";**", " Runtime", " latency", " framerate", "\u3002**", " runtime"], [" runtime", " Runtime", " Performance", ".**", " GPU", " latency", " framerate", "\u3002**"], [" Android", " Runtime", " GPU", " Performance", " Memory", ".**", " runtime", "\u3002**"], [" Android", " GPU", "_android", " Rendering", " Performance", " Runtime", " Memory", ".**"], [" Android", " GPU", "_android", "Android", " Runtime", " Memory", " Rendering", " Mobile"], [" Android", " GPU", " Memory", "_android", "Android", " Frame", " Mobile", " Rendering"], [" Android", " Plugin", "Android", " Mobile", "_android", " android", " mobile", " plugin"], [" Android", " Mobile", "Android", " mobile", " android", "_android", " Plugin", " GPU"], [" Android", "Android", " Mobile", " The", " Plugin", "_android", " Frame", " android"], ["The", "Android", " The", " Android", "Mobile", "Frame", " Mobile", "GPU"]], "p": [[0.3488, 0.1867, 0.1754, 0.0368, 0.0185, 0.0185, 0.0174, 0.0174], [0.2024, 0.1391, 0.1391, 0.1228, 0.0512, 0.0352, 0.0352, 0.0274], [0.3605, 0.1503, 0.1326, 0.0553, 0.0488, 0.0488, 0.038, 0.023], [0.4142, 0.1047, 0.0635, 0.0495, 0.041, 0.034, 0.0265, 0.0265], [0.2212, 0.1952, 0.152, 0.1184, 0.0814, 0.0718, 0.0299, 0.0264], [0.5047, 0.2104, 0.0774, 0.0603, 0.0366, 0.0173, 0.0092, 0.0092], [0.463, 0.1503, 0.0805, 0.071, 0.0431, 0.0431, 0.0296, 0.0158], [0.2335, 0.1605, 0.1416, 0.1103, 0.0669, 0.059, 0.046, 0.0246], [0.4128, 0.221, 0.1044, 0.0299, 0.0264, 0.0264, 0.0233, 0.0206], [0.2353, 0.2353, 0.126, 0.0674, 0.0595, 0.0595, 0.0409, 0.0281], [0.409, 0.3609, 0.1172, 0.0231, 0.018, 0.0159, 0.0075, 0.0075], [0.7833, 0.0501, 0.0304, 0.0268, 0.0209, 0.0209, 0.0163, 0.0112], [0.4805, 0.0946, 0.065, 0.065, 0.065, 0.0506, 0.0506, 0.0239], [0.2889, 0.225, 0.1365, 0.0569, 0.0391, 0.0345, 0.0345, 0.0304], [0.3624, 0.194, 0.1333, 0.1038, 0.0556, 0.0263, 0.0192, 0.0085], [0.4599, 0.1493, 0.1318, 0.0906, 0.0333, 0.0168, 0.0148, 0.0084], [0.4349, 0.3387, 0.0589, 0.0589, 0.0519, 0.0116, 0.008, 0.007], [0.7552, 0.0902, 0.0796, 0.0376, 0.0138, 0.004, 0.004, 0.0035], [0.5933, 0.1324, 0.1324, 0.0552, 0.0335, 0.0158, 0.0058, 0.004], [0.8295, 0.0772, 0.0284, 0.025, 0.0172, 0.0044, 0.0038, 0.0026], [0.7134, 0.1804, 0.0456, 0.0215, 0.0102, 0.0048, 0.0033, 0.0029], [0.4266, 0.1222, 0.1079, 0.084, 0.0741, 0.0509, 0.0212, 0.0187], [0.6585, 0.1297, 0.0612, 0.0371, 0.0328, 0.0225, 0.0121, 0.0094], [0.8655, 0.038, 0.0296, 0.0231, 0.0085, 0.0066, 0.0058, 0.0031], [0.4616, 0.28, 0.1698, 0.026, 0.0096, 0.0096, 0.0075, 0.0035], [0.8936, 0.0306, 0.0238, 0.0238, 0.0068, 0.0053, 0.0037, 0.002], [0.94, 0.0172, 0.0152, 0.0104, 0.0034, 0.0026, 0.0021, 0.0018], [0.9861, 0.0075, 0.0019, 0.0005, 0.0005, 0.0004, 0.0003, 0.0003], [0.9425, 0.0285, 0.0173, 0.0049, 0.0013, 0.0008, 0.0007, 0.0007], [0.9484, 0.0286, 0.0153, 0.0027, 0.0009, 0.0009, 0.0009, 0.0003], [0.9731, 0.0095, 0.004, 0.0027, 0.0027, 0.002, 0.0016, 0.0003], [0.9649, 0.0078, 0.0051, 0.0042, 0.0042, 0.0013, 0.0011, 0.0003], [0.9465, 0.0025, 0.0019, 0.001, 0.0009, 0.0007, 0.0006, 0.0006], [0.9302, 0.0071, 0.0059, 0.0043, 0.0038, 0.0034, 0.0032, 0.0032], [0.9288, 0.008, 0.0059, 0.0055, 0.0043, 0.0036, 0.0033, 0.0028], [0.8145, 0.0217, 0.0204, 0.0169, 0.0159, 0.007, 0.0066, 0.0058], [0.7796, 0.0208, 0.0111, 0.0104, 0.0098, 0.0098, 0.0087, 0.0076], [0.6928, 0.0209, 0.0173, 0.0127, 0.0119, 0.0099, 0.0099, 0.0077], [0.608, 0.0195, 0.0111, 0.0092, 0.0081, 0.0077, 0.0068, 0.0053], [0.3625, 0.0359, 0.017, 0.017, 0.0141, 0.0124, 0.0103, 0.0103], [0.048, 0.0451, 0.0374, 0.0374, 0.031, 0.0291, 0.0213, 0.0176], [0.1152, 0.0657, 0.0579, 0.0156, 0.0107, 0.0101, 0.0089, 0.0083], [0.1007, 0.0737, 0.042, 0.0327, 0.0154, 0.0106, 0.0088, 0.0078], [0.1106, 0.0861, 0.0433, 0.0218, 0.0192, 0.0141, 0.0132, 0.0085], [0.2268, 0.0784, 0.0539, 0.0198, 0.0154, 0.0094, 0.0088, 0.0088], [0.0597, 0.0386, 0.0386, 0.0125, 0.0118, 0.011, 0.011, 0.0104], [0.2268, 0.1766, 0.0394, 0.0271, 0.0175, 0.0164, 0.01, 0.0078], [0.3394, 0.1934, 0.052, 0.0336, 0.0316, 0.014, 0.0132, 0.0124], [0.2234, 0.1196, 0.0875, 0.0822, 0.0322, 0.0195, 0.0172, 0.0152], [0.2744, 0.1144, 0.0652, 0.0371, 0.0165, 0.0121, 0.0113, 0.01], [0.4352, 0.2056, 0.11, 0.0589, 0.0357, 0.0357, 0.0315, 0.0116], [0.5047, 0.2384, 0.0877, 0.0414, 0.0222, 0.0196, 0.0082, 0.0077], [0.3307, 0.1379, 0.1217, 0.0836, 0.0476, 0.0199, 0.0165, 0.0128], [0.1672, 0.1223, 0.0655, 0.0543, 0.051, 0.0329, 0.0309, 0.0309], [0.1374, 0.1374, 0.107, 0.0834, 0.0419, 0.0394, 0.0288, 0.0271], [0.174, 0.0992, 0.0772, 0.0682, 0.0682, 0.064, 0.0413, 0.0267], [0.5354, 0.093, 0.0388, 0.0342, 0.0342, 0.025, 0.0172, 0.0162], [0.655, 0.129, 0.0326, 0.0224, 0.0093, 0.0077, 0.0073, 0.0064], [0.6284, 0.0964, 0.0244, 0.019, 0.019, 0.0178, 0.0115, 0.0084], [0.9363, 0.0134, 0.0118, 0.0081, 0.0063, 0.0049, 0.0026, 0.0026], [0.943, 0.0152, 0.0105, 0.0049, 0.0044, 0.0039, 0.0028, 0.0016], [0.8218, 0.0464, 0.0193, 0.016, 0.0091, 0.0076, 0.0067, 0.0063], [0.8455, 0.0612, 0.0541, 0.0137, 0.0032, 0.002, 0.0016, 0.0015]], "ranks": {"Rust": [74380, 131417, 146384, 69436, 83598, 42920, 56296, 66676, 80154, 88009, 127854, 101398, 46736, 67093, 104643, 100756, 101072, 56239, 103358, 81758, 99425, 44079, 67457, 86319, 47555, 44996, 59154, 31578, 44798, 25135, 17881, 17568, 20817, 43930, 29706, 26430, 20982, 19074, 18178, 15222, 11168, 9936, 7483, 8490, 9513, 5455, 5367, 5305, 4011, 2775, 3383, 3673, 1518, 940, 1130, 521, 105, 117, 97, 62, 84, 79, 122]}}, {"pos": 489, "top": [[".", " \u2013", ",", "\u2013", "\u00a0", "<|endoftext|>", ";", " "], [" \u2013", "\u2013", ",", "\u2013and", ".", ";", " \u2013,", "  \n"], ["\u2013", " \u2013", ".", ",", "\u2013and", "\u2026", "[", ";"], ["TRGL", "-------------</", " milfs", "----------</", "\ufffd\ufffd", " ;;^", "aruhi", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9"], ["@$", "(@", " (@", "\u2018", " \u2018", "{@", "\u00a0\u00a0", "=@"], [" \u200b\u200b", "   \n", "kits", "\uff01", "\u00a0", "wine", " Celebrity", "-American"], ["\u2018", "   \n", " \n", "  \n", "\uff01", "       \n", " \u2018", "         \n"], ["   \n", "       \n", "     \n", "  \n", "        \n", "           \n", "         \n", "      \n"], [" \n\n", "   \n\n", "  \n\n", "   \n", "    \n\n", "  \n", "       \n", " \n    \n"], ["\u00a0", "  \n  \n", "\u2013and", "<|object_ref_start|>", "\u00a0\u00a0", "\\-", "DMETHOD", "\uaecf"], ["\u00a0", "...", "...\"", " \n", "  \n", "...(", "...\\", "   \n"], ["egger", "DMETHOD", " \\\"", " \\\"$", " Dollar", "struk", "idere", "ergebn"], [" \\\"", " \\\"$", "idere", " vibe", "ergebn", " savory", " hustle", "iglich"], [" vibe", " gorgeous", " savvy", " vibes", " \\\"", " Philly", "-esque", " timeless"], [" --", " \\\"", " dramatic", " '", " truly", " savvy", " gorgeous", " incredibly"], [" incredibly", " folks", " savvy", " kids", " busted", " sprawling", "-esque", " gorgeous"], [" incredibly", " savvy", "-esque", " folks", " busted", "...", " myriad", " sprawling"], ["...", " savvy", "...\\", " incredibly", "...**", " \\\"", "-esque", " gorgeous"], [" incredibly", " savvy", "-esque", " gorgeous", " busted", "...", " freaking", " quirky"], [" incredibly", " truly", " myriad", " busted", " utterly", "-esque", " savvy", " relentless"], ["<|endoftext|>", " incredibly", " myriad", " truly", " utterly", "\n\n", " burgeoning", " busted"], [" busted", " incredibly", " skyrocket", " horrific", " gorgeous", " meltdown", " freaking", " havoc"], [" ``", " busted", " incredibly", " ''", " --", " skyrocket", " meltdown", " horrific"], [" ``", " --", " incredibly", " myriad", " truly", " ''", " busted", " \\'"], ["\n\n", " \n\n", " --", "\r\n\r\n", " &#", " \r\n\r\n", "  \n\n", " myriad"], [" incredibly", "\n\n", " --", " busted", " meltdown", " \n\n", " ___", " skyrocket"], ["\n\n", " --", " ``", " \n\n", " meltdown", " incredibly", " busted", " skyrocket"], ["\n\n", " \n\n", " --", " '", " truly", " incredibly", " ultimately", " complex"], ["\n\n", " \n\n", " complex", " infrastructure", " sprawling", " tech", " incredibly", " myriad"], [" \n\n", "\n\n", " complex", " infrastructure", " ...", " tech", " technology", " incredibly"], ["\n\n", " ...", " \n\n", " complex", " technology", " ___", " systems", " power"], ["\n\n", " complex", " ...", " \n\n", " power", " '", " system", " @"], [" complex", " power", " critical", " system", " massive", " '", " core", " technology"], [" complex", " infrastructure", " complexity", " tech", " synergy", " foundational", " technology", " dual"], [" complex", " infrastructure", " complexity", " dual", " synergy", " foundational", " systemic", " hybrid"], [" complexity", " complex", " infrastructure", " hardware", " dual", " synergy", " modular", " hybrid"], [" complexity", " complex", " infrastructure", " hardware", " bottleneck", " scalability", " synergy", " performance"], [" complexity", " complex", " hardware", " infrastructure", " bottleneck", " optimization", " synergy", " dual"], [" complexity", " complex", " infrastructure", " bottleneck", " hardware", " performance", " logistical", " dual"], [" complexity", " complex", " bottleneck", " performance", " infrastructure", " hardware", " workflow", " integration"], [" bottleneck", " performance", " complexity", " complex", " workflow", " workload", " engine", " infrastructure"], [" bottleneck", " engine", " workflow", " performance", " workflows", " infrastructure", " complexity", " integration"], [" bottleneck", " workflow", " engine", " workflows", " performance", " modular", " infrastructure", " throughput"], [" bottleneck", " workflow", " workflows", " processing", " engine", " integration", " modular", " infrastructure"], [" bottleneck", " workflow", " integration", " workflows", " modular", " processing", " throughput", " infrastructure"], [" integration", " bottleneck", " modular", " workflow", " synchronization", " Modular", " workflows", " interface"], [" bottleneck", " integration", " workflow", " synchronization", " modular", " workflows", " synergy", " Modular"], [" bottleneck", " integration", " Integrated", " synergy", " synchronization", " Modular", " Integration", " Dual"], [" bottleneck", " framerate", " Modular", " Interface", " Integrated", " synchronization", " Dual", " interoper"], [" bottleneck", " framerate", " Interface", " synchronization", " interoper", " synergy", " Integration", " Processing"], [" framerate", " Interface", " bottleneck", " synchronization", " Runtime", " Integration", " Workflow", " Processing"], [" Runtime", " framerate", " Interface", " Performance", " bottleneck", " GPU", " runtime", " CPU"], [" bottleneck", " Runtime", " Performance", " framerate", " GPU", " CPU", " runtime", " Pipeline"], [" bottleneck", " framerate", " Runtime", " Pipeline", " GPU", " CPU", " Renderer", " Performance"], [" Loop", " Runtime", " bottleneck", " Pipeline", " GPU", "-loop", " renderer", " Renderer"], [" Renderer", " renderer", " Plugin", " Runtime", " Rendering", " GPU", " Pipeline", " Loop"], [" Renderer", " Plugin", " renderer", " Rendering", " Android", " GPU", " plugin", " Render"], [" Renderer", " Plugin", " renderer", " Rendering", " GPU", " Android", " Render", " Graphics"], [" Plugin", " Renderer", " Rendering", " renderer", " Frame", " GPU", " Android", " Texture"], [" Plugin", " plugin", " Plugins", "Plugin", " Android", "_plugin", "-plugin", "plugin"], [" Plugin", " plugin", " Android", " Plugins", "Plugin", "-plugin", " plugins", "_plugin"], [" Plugin", " Android", " plugin", " Main", " Plugins", "-plugin", " Plasma", " GPU"], [" Plugin", " Main", " Android", " Frame", " Render", " Mobile", " Rendering", " Renderer"]], "p": [[0.5545, 0.2311, 0.1589, 0.0276, 0.0102, 0.007, 0.0048, 0.0016], [0.7608, 0.1924, 0.0148, 0.0055, 0.0055, 0.0018, 0.0008, 0.0008], [0.5391, 0.2885, 0.0937, 0.0644, 0.0025, 0.0022, 0.0018, 0.0017], [0.0026, 0.0023, 0.0021, 0.0021, 0.0017, 0.0016, 0.0015, 0.0015], [0.0215, 0.0115, 0.0102, 0.0096, 0.0062, 0.0062, 0.0054, 0.0054], [0.0036, 0.003, 0.0028, 0.0022, 0.0018, 0.0012, 0.0011, 0.001], [0.106, 0.0996, 0.0729, 0.0344, 0.0252, 0.0237, 0.0222, 0.0119], [0.2292, 0.0291, 0.0095, 0.0083, 0.0054, 0.0054, 0.0045, 0.0042], [0.2954, 0.1791, 0.1485, 0.0901, 0.0311, 0.0214, 0.0189, 0.0138], [0.0275, 0.0033, 0.0024, 0.002, 0.0015, 0.0015, 0.0012, 0.0012], [0.4522, 0.1885, 0.0371, 0.0255, 0.012, 0.0106, 0.0073, 0.0073], [0.0035, 0.0031, 0.0027, 0.0021, 0.0017, 0.0012, 0.0011, 0.0011], [0.0064, 0.0024, 0.0023, 0.0018, 0.0015, 0.0013, 0.0013, 0.0012], [0.0142, 0.0063, 0.0049, 0.0049, 0.0043, 0.0034, 0.0028, 0.0024], [0.0421, 0.0272, 0.0155, 0.0137, 0.0121, 0.0121, 0.0113, 0.0106], [0.1139, 0.0326, 0.0307, 0.0145, 0.0136, 0.0106, 0.0077, 0.0077], [0.077, 0.0438, 0.0161, 0.0126, 0.0118, 0.0118, 0.0092, 0.0086], [0.1917, 0.0402, 0.0215, 0.019, 0.0178, 0.0148, 0.0123, 0.0102], [0.0575, 0.0255, 0.0187, 0.0165, 0.0145, 0.0088, 0.0069, 0.0069], [0.1277, 0.0268, 0.0196, 0.0162, 0.0112, 0.0105, 0.0105, 0.0098], [0.5174, 0.0114, 0.0084, 0.0065, 0.0051, 0.0048, 0.0042, 0.004], [0.0068, 0.0068, 0.0056, 0.0039, 0.0039, 0.003, 0.003, 0.0022], [0.0339, 0.0091, 0.008, 0.0055, 0.0049, 0.004, 0.0038, 0.0038], [0.0432, 0.0246, 0.0096, 0.008, 0.008, 0.0066, 0.0046, 0.0035], [0.6268, 0.1234, 0.0138, 0.0115, 0.0042, 0.004, 0.0033, 0.0031], [0.0185, 0.0164, 0.0136, 0.0112, 0.0106, 0.0099, 0.0093, 0.0082], [0.3386, 0.0158, 0.0102, 0.0058, 0.0055, 0.0055, 0.0048, 0.0043], [0.5772, 0.0393, 0.0287, 0.005, 0.0041, 0.0039, 0.003, 0.0028], [0.4052, 0.0354, 0.0074, 0.0054, 0.0051, 0.0048, 0.0042, 0.0042], [0.1422, 0.0383, 0.0218, 0.0132, 0.0097, 0.0097, 0.0085, 0.0062], [0.322, 0.1619, 0.0719, 0.0193, 0.0052, 0.0049, 0.0041, 0.0034], [0.0404, 0.0404, 0.0379, 0.0116, 0.0102, 0.0075, 0.0058, 0.0058], [0.041, 0.0133, 0.0097, 0.0076, 0.0071, 0.0067, 0.0055, 0.0055], [0.0528, 0.0301, 0.0182, 0.0161, 0.0142, 0.0133, 0.0133, 0.0118], [0.0561, 0.034, 0.03, 0.0194, 0.0133, 0.0125, 0.011, 0.0097], [0.0729, 0.0685, 0.0304, 0.0222, 0.0173, 0.0144, 0.0105, 0.0093], [0.1221, 0.0449, 0.0256, 0.0256, 0.0212, 0.0176, 0.0146, 0.0146], [0.1169, 0.0315, 0.023, 0.023, 0.0149, 0.0149, 0.0149, 0.0149], [0.0786, 0.0575, 0.0272, 0.0255, 0.0145, 0.0128, 0.012, 0.01], [0.07, 0.058, 0.0481, 0.02, 0.02, 0.0177, 0.0156, 0.0147], [0.0779, 0.0473, 0.0473, 0.0346, 0.0305, 0.0223, 0.0197, 0.0174], [0.0732, 0.0646, 0.057, 0.0392, 0.0346, 0.0253, 0.0197, 0.0197], [0.0638, 0.0497, 0.0341, 0.0321, 0.0207, 0.0194, 0.0183, 0.0172], [0.056, 0.0464, 0.034, 0.0206, 0.0206, 0.0182, 0.0182, 0.0142], [0.0553, 0.0458, 0.038, 0.0261, 0.0261, 0.0169, 0.0131, 0.0123], [0.0548, 0.0515, 0.0293, 0.0202, 0.0157, 0.0122, 0.0108, 0.0108], [0.0627, 0.0488, 0.038, 0.0336, 0.0217, 0.0204, 0.0159, 0.0131], [0.0468, 0.0343, 0.0221, 0.0183, 0.0172, 0.0152, 0.0152, 0.0143], [0.0479, 0.0226, 0.0226, 0.0166, 0.0146, 0.0129, 0.0107, 0.0094], [0.0632, 0.0318, 0.0218, 0.016, 0.011, 0.0103, 0.0097, 0.0091], [0.0214, 0.0177, 0.0157, 0.0101, 0.0089, 0.0079, 0.0069, 0.0069], [0.0836, 0.0612, 0.0612, 0.0476, 0.0447, 0.0307, 0.0225, 0.0199], [0.2331, 0.0805, 0.0711, 0.0554, 0.0405, 0.018, 0.0169, 0.0102], [0.1813, 0.0756, 0.0589, 0.0553, 0.0405, 0.0158, 0.014, 0.0116], [0.1621, 0.056, 0.0436, 0.0436, 0.0385, 0.034, 0.034, 0.0319], [0.1217, 0.1074, 0.0947, 0.0575, 0.0448, 0.042, 0.0308, 0.0289], [0.266, 0.1828, 0.1424, 0.1109, 0.0462, 0.0318, 0.016, 0.0132], [0.2866, 0.1738, 0.1354, 0.0821, 0.0564, 0.0498, 0.0183, 0.0162], [0.3159, 0.246, 0.0799, 0.0622, 0.0428, 0.0294, 0.0202, 0.0202], [0.9895, 0.0076, 0.0007, 0.0005, 0.0005, 0.0003, 0.0003, 0.0002], [0.9724, 0.0178, 0.0045, 0.0011, 0.0005, 0.0005, 0.0004, 0.0004], [0.9423, 0.0285, 0.0173, 0.0021, 0.0021, 0.001, 0.0006, 0.0006], [0.8181, 0.0672, 0.0672, 0.0091, 0.004, 0.0031, 0.0023, 0.0019]], "ranks": {"Rust": [62281, 83202, 77356, 111492, 57447, 48010, 97725, 72866, 66148, 34599, 17935, 43050, 21761, 22605, 16040, 21437, 22434, 19906, 34864, 50583, 61032, 70474, 66665, 29829, 18440, 18911, 12003, 10885, 9706, 9442, 12271, 13416, 14821, 22009, 23914, 12217, 9791, 11217, 9227, 8833, 4884, 5164, 5556, 6776, 8645, 6248, 8437, 4398, 2562, 2129, 3972, 5227, 1159, 1147, 1434, 477, 82, 73, 65, 38, 31, 35, 21]}}, {"pos": 490, "top": [[" \u2013", "\u2013", " \u00b7", "\u2013and", " \u2013,", " ", "@\"", " |\u2013"], [" \u2013", " \u00b7", " *@", " \u2013,", " *\u2013", " [@", "\u2013and", " \u2013**"], [" \u2013", "\u2013and", " \u00b7", "\u2013", " \u2013,", " *\u2013", " \u2013**", "..\""], ["\u6700\u65b0\u53d1\u5e03", "*\u201c.", " *\u2013", " *@", " *\u201c", " *\u00ab", " \u2591", "isode"], [" *@", " (@", " @", " [@", " #\"", " '@", " *\u2013", " \u00b7"], [" *@", "@g", " @(", " @", " *\u2013", " (@", " @}", ":@"], [" *@", " \u00b7", " *\u201c", " @", " ..", " *\"", "..\"", " #\""], [" *@", " *\"", " #\"", "..\"", " *_", " ~~", " *\u201c", " .."], [" *@", "..\"", " *\"", " *\u201c", " *\u2013", "*\".", " #\"", " *_"], [" *@", "..\"", " #\"", " *\u2013", " *\"", " [@", "-\"", "@\","], [" *@", " \u00b7", "..\"", " [@", " #\"", " @", "@", "\u00b7\u00b7"], [" *@", " *_", " *\u2013", " #\"", " *\"", " *\u201c", " ~~", " *\u00ab"], [" *@", " *_", " *\u2013", " *\u00ab", " toolkit", " ~~", "isode", " *,"], [" toolkit", "-esque", " showcase", " firmware", " *\u2013", " pipeline", " Pipeline", " Showcase"], [" showcase", "-esque", "-style", " toolkit", " \u2013", " Showcase", " pipeline", " --"], ["-esque", " showcase", " Showcase", " --", " toolkit", " powerhouse", " tech", " Pipeline"], ["-esque", " showcase", " toolkit", " Showcase", " tweaks", " tech", " Pipeline", " powerhouse"], ["-esque", " *\u2013", " toolkit", " showcase", " Showcase", " tweaks", "-program", " pipeline"], ["-esque", " *\u2013", " \u2013", "-program", "-style", " \u00b7", " #\"", " &,"], [" \u2013", " &,", "-esque", " &#", " *@", "\u2013", " *\u2013", "&"], ["<|endoftext|>", " *@", "@", " \u00b7", " @", "&", " &,", " #"], [" *@", " *&", " **\u25a0", " *\u2013", " *))", " toolkit", " \u2591", " &)"], [" *@", " ~~", "-esque", " *&", " --", " ']", "/plugin", " toolkit"], [" --", " *@", " ~~", " \u00ae", " _", "\u5f0f\u7684", " #", " &#"], [" --", " ~~", " *@", " &#", " _", "-esque", " toolkit", " __"], [" toolkit", " firmware", " plugins", " software", " frameworks", " plugin", " gadget", " ~~"], [" toolkit", " plugins", " firmware", " software", " plugin", " gadget", " frameworks", " systems"], [" _", " --", " software", " ''", " [[", " system", " systems", " __"], [" ...", " ..", " toolkit", " ...\"", "\n\n", " software", " modular", " systems"], [" ...", " ...\"", " toolkit", " ..", " ......", " (...)", " plugins", " [...]"], [" ...", " ...\"", " ..", " ......", " toolkit", " (...)", " __", " frameworks"], [" ...", " ..", " ...\"", " system", " systems", " technology", " [...]", " complex"], [" system", " modular", " systems", " complex", " technology", " /", " software", " tech"], [" tech", " frameworks", " software", " modular", " ecosystem", " workflows", " toolkit", " technology"], [" toolkit", " ecosystem", " tech", " modular", " frameworks", " software", " \u2014\u2014", " plugin"], [" \u2014\u2014", "\u2014\u2014", "\u2026*", " \u2014", " modular", " software", " ...\"", " toolkit"], [" \u2014\u2014", " interoper", " toolkit", " modular", " frameworks", " software", " plugin", " firmware"], [" interoper", " software", " toolkit", " plugin", " frameworks", " firmware", " modular", " ecosystem"], [" interoper", " modular", " software", " plugin", " firmware", " complex", " frameworks", " complexity"], [" plugin", " modular", " frameworks", " interoper", " software", " plugins", " framework", " firmware"], [" plugin", " software", " frameworks", " plugins", " framework", " ecosystem", " firmware", " interoper"], [" software", " plugin", " modular", " workflows", " frameworks", " plugins", " interoper", " framework"], [" software", " modular", " frameworks", " interoper", " dynamically", " plugin", " workflows", " framework"], [" modular", " frameworks", " software", " framework", " interface", " workflows", " complexity", " safety"], [" modular", " system", " framework", " frameworks", " complexity", " systems", " workflows", " interface"], [" system", " integration", " modular", " safety", " complexity", " ecosystem", " interface", " framework"], [" integration", " system", " modular", " ecosystem", " framework", " interface", " interoper", " safety"], [" integration", " interoper", " interface", " system", " Integration", " Modular", " ecosystem", " flexibility"], [" interoper", " integration", " interface", " flexibility", " ecosystem", " functionality", " Modular", " complexity"], [" integration", " interoper", " Integration", " interface", " Interface", "-enabled", " Complexity", " ecosystem"], [" interoper", " Interface", " integration", " Integration", " Complexity", " interface", " Toolkit", " Compatibility"], [" Interface", " interface", " interoper", " runtime", " Runtime", " integration", " Execution", " ecosystem"], [" runtime", " Runtime", " ecosystem", "-loader", " Interface", " Execution", "-runtime", " lifecycle"], [" runtime", " Runtime", "-loader", " execution", " Execution", " lifecycle", " ecosystem", " Interface"], [" runtime", " Runtime", " Plugin", " plugin", "runtime", "-runtime", " execution", "loader"], [" runtime", " Runtime", " loader", "loader", "-loader", "/loader", " Loader", " execution"], [" Runtime", " runtime", " loader", " Loader", " sandbox", "/loader", " Execution", " execution"], [" Runtime", " runtime", " execution", " Execution", " sandbox", " Sandbox", " Loader", " loader"], [" Architecture", " Loader", " Runtime", " architecture", " Execution", " loader", " runtime", " Loading"], [" Architecture", " System", " Runtime", " Execution", " system", " Loader", " Loading", " runtime"], [" Sandbox", " sandbox", " Architecture", " Execution", " Runtime", " Safety", " Boundary", " System"], [" Sandbox", " Architecture", " sandbox", " System", " Execution", " Boundary", " Loader", " Host"], [" System", " Architecture", " Execution", " Sandbox", " Boundary", " ABI", " Loader", " Security"]], "p": [[0.991, 0.0019, 0.0019, 0.0007, 0.0006, 0.0003, 0.0003, 0.0002], [0.8994, 0.0651, 0.0069, 0.0047, 0.0029, 0.0027, 0.0022, 0.0018], [0.9041, 0.0188, 0.0188, 0.0121, 0.0094, 0.0083, 0.0047, 0.0033], [0.1052, 0.0497, 0.0152, 0.0126, 0.0092, 0.0067, 0.0067, 0.0049], [0.8405, 0.0128, 0.012, 0.0106, 0.0082, 0.0077, 0.0077, 0.0068], [0.2691, 0.0302, 0.025, 0.0208, 0.0195, 0.0183, 0.0152, 0.0134], [0.4225, 0.1875, 0.0369, 0.0287, 0.0224, 0.021, 0.0154, 0.0145], [0.7092, 0.0228, 0.0214, 0.0122, 0.0115, 0.0108, 0.0101, 0.0065], [0.635, 0.0432, 0.0337, 0.0316, 0.014, 0.0132, 0.0116, 0.0096], [0.2941, 0.0843, 0.0579, 0.033, 0.02, 0.0146, 0.0095, 0.0095], [0.2383, 0.1125, 0.0683, 0.0532, 0.0499, 0.0441, 0.0236, 0.0184], [0.2892, 0.0503, 0.0472, 0.0368, 0.0324, 0.0237, 0.0185, 0.0072], [0.0705, 0.0313, 0.0229, 0.0157, 0.0148, 0.0095, 0.007, 0.0066], [0.0229, 0.0102, 0.009, 0.0079, 0.007, 0.0062, 0.0058, 0.0058], [0.0143, 0.0118, 0.0063, 0.0063, 0.0063, 0.0063, 0.0049, 0.0041], [0.0265, 0.0133, 0.0081, 0.0059, 0.0049, 0.0043, 0.0041, 0.0038], [0.0368, 0.0127, 0.0099, 0.0082, 0.0039, 0.0039, 0.0036, 0.0036], [0.0342, 0.0152, 0.0092, 0.0067, 0.0056, 0.0049, 0.0046, 0.0041], [0.047, 0.0143, 0.0053, 0.0047, 0.0044, 0.0044, 0.0044, 0.0041], [0.0545, 0.0292, 0.0227, 0.0189, 0.0177, 0.013, 0.0122, 0.0089], [0.3737, 0.037, 0.0348, 0.0348, 0.0198, 0.0128, 0.012, 0.0083], [0.0239, 0.0099, 0.0093, 0.0073, 0.006, 0.006, 0.0053, 0.005], [0.0306, 0.0113, 0.0077, 0.0077, 0.0053, 0.0047, 0.0044, 0.0041], [0.0618, 0.0095, 0.0057, 0.0045, 0.0045, 0.0042, 0.0042, 0.0039], [0.0652, 0.0255, 0.0165, 0.0155, 0.0146, 0.0128, 0.0057, 0.0044], [0.0454, 0.0275, 0.0243, 0.0115, 0.0108, 0.0095, 0.0089, 0.007], [0.0558, 0.0233, 0.0218, 0.015, 0.011, 0.0063, 0.0063, 0.0055], [0.0302, 0.0266, 0.0235, 0.0162, 0.0152, 0.0152, 0.0143, 0.0143], [0.0598, 0.0341, 0.0341, 0.0341, 0.0265, 0.0249, 0.0161, 0.0142], [0.124, 0.0486, 0.0244, 0.0244, 0.0179, 0.0158, 0.0123, 0.0115], [0.2023, 0.1017, 0.0843, 0.0156, 0.0107, 0.0101, 0.0089, 0.0078], [0.2138, 0.0508, 0.0289, 0.0155, 0.0146, 0.0094, 0.0083, 0.0083], [0.0359, 0.028, 0.0263, 0.0205, 0.0205, 0.0181, 0.0141, 0.0091], [0.0293, 0.0243, 0.0214, 0.0214, 0.0189, 0.0178, 0.0178, 0.0167], [0.02, 0.0188, 0.0188, 0.0156, 0.0129, 0.0129, 0.0121, 0.01], [0.1287, 0.0136, 0.012, 0.0106, 0.0093, 0.0082, 0.0077, 0.0077], [0.03, 0.0219, 0.016, 0.016, 0.0151, 0.0125, 0.0125, 0.0104], [0.0288, 0.0224, 0.021, 0.0198, 0.0186, 0.0186, 0.0164, 0.0113], [0.0509, 0.0449, 0.0309, 0.0272, 0.0256, 0.0226, 0.0199, 0.0199], [0.0485, 0.0402, 0.0377, 0.0294, 0.0244, 0.0215, 0.0215, 0.019], [0.0597, 0.0597, 0.03, 0.0282, 0.022, 0.0182, 0.0182, 0.0171], [0.1288, 0.0393, 0.0369, 0.0287, 0.0287, 0.027, 0.0238, 0.0238], [0.0788, 0.0614, 0.0309, 0.0309, 0.0309, 0.029, 0.0256, 0.024], [0.0352, 0.0292, 0.0242, 0.0214, 0.0201, 0.0201, 0.0201, 0.0189], [0.0563, 0.0497, 0.0342, 0.0266, 0.025, 0.0207, 0.0207, 0.0207], [0.0522, 0.049, 0.0406, 0.0246, 0.0231, 0.0204, 0.0192, 0.0149], [0.066, 0.04, 0.04, 0.0293, 0.0258, 0.0228, 0.0201, 0.0178], [0.0481, 0.0292, 0.0188, 0.0188, 0.0166, 0.0166, 0.0147, 0.0147], [0.032, 0.032, 0.0161, 0.0125, 0.0125, 0.0111, 0.0111, 0.0104], [0.0537, 0.0445, 0.027, 0.0224, 0.021, 0.0093, 0.0088, 0.0088], [0.0467, 0.025, 0.0183, 0.0172, 0.0118, 0.0104, 0.0098, 0.0092], [0.0783, 0.0649, 0.037, 0.037, 0.0224, 0.0164, 0.0145, 0.0128], [0.1185, 0.0719, 0.0464, 0.0264, 0.0182, 0.016, 0.0151, 0.0141], [0.0826, 0.0604, 0.039, 0.039, 0.0344, 0.0268, 0.0209, 0.0184], [0.4627, 0.0911, 0.0626, 0.0261, 0.0261, 0.0203, 0.014, 0.014], [0.3118, 0.1012, 0.0788, 0.0696, 0.0372, 0.0329, 0.0329, 0.0256], [0.1997, 0.1762, 0.0505, 0.0505, 0.0446, 0.0446, 0.0393, 0.0347], [0.2578, 0.2275, 0.1218, 0.0837, 0.0349, 0.0308, 0.0165, 0.0128], [0.6066, 0.0821, 0.0498, 0.0439, 0.0342, 0.0267, 0.0183, 0.0162], [0.2099, 0.1273, 0.0875, 0.0875, 0.0875, 0.0531, 0.0365, 0.0322], [0.4124, 0.3212, 0.0558, 0.0338, 0.0205, 0.016, 0.0141, 0.0125], [0.4954, 0.1105, 0.067, 0.067, 0.0461, 0.0382, 0.0141, 0.0132], [0.4438, 0.2096, 0.099, 0.0601, 0.0221, 0.0172, 0.0152, 0.0118]], "ranks": {"Rust": [63840, 137149, 125154, 165146, 67251, 37581, 79173, 73437, 84563, 78003, 40579, 65677, 79085, 56632, 57229, 39354, 48629, 77064, 83052, 77825, 91503, 115226, 131473, 99202, 118326, 129105, 115336, 34757, 30051, 36016, 27988, 22842, 29541, 60430, 63074, 31277, 19622, 14580, 14463, 24857, 24106, 24157, 34996, 30625, 47346, 26067, 30549, 21132, 18042, 21106, 31686, 28844, 3454, 2868, 3888, 1951, 267, 262, 239, 257, 182, 197, 262]}}, {"pos": 491, "top": [[".", " \u2013", " \u200b\u200b", "\"", ",", "\u00a0", "\u00a0\u00a0", " "], [" \u2013", " \u00b7", " \u200b\u200b", "  \n", " Very", "\u00b7", "  \n\n", "\u00ad"], [" \u2013", "\u2013", ".", ",", "\u00b7", "\u2013and", ".\u2013", " \u00b7"], ["\uff1a**", "\uff1f**", " Shemale", " cumshot", " YYS", " milfs", " Blowjob", "zlich"], ["ed", " \u2014\u2014", " System", "ality", "&(", "\u2014\u2014", " IS", ":&"], [" \u200b\u200b", "ed", " System", "\u2014\u2014", " \u2014\u2014", " \uff1a", "\u30ba", "\uff1a"], ["\u2014\u2014", " \u2014\u2014", "  \n", " &", "  \n\n", " \u00b7", "\uff1a", "ed"], ["  \n", "ality", "\u2014\u2014", " _", " *", "   \n", " &", " **"], ["  \n\n", "  \n", " [...]", "\u2014\u2014", "&nbsp", " &", " \u200b\u200b", " \u2014\u2014"], ["\u00a0", "&nbsp", "  \n", "\u00ad", ",", " \u00ad", "ality", "\u00a0\u00a0\u00a0"], [" [...]", "&nbsp", "...", "\u00a0", "  \n", " _", "...\\", "  \n\n"], [" frameworks", " framework", "ality", "...**", " &_", " toolkit", " **", " _"], [" frameworks", " framework", " _", " **", "ality", " Framework", " toolkit", " System"], [" frameworks", " framework", " System", " system", " infrastructure", " organization", " Framework", " architecture"], [" akin", " via", " largely", " frameworks", " revamped", " primarily", " framework", " alongside"], [" via", " akin", "-esque", " largely", " System", " overarching", " system", " alongside"], [" akin", " overarching", " frameworks", " via", "-esque", " foundational", " framework", " revamped"], [" frameworks", " overarching", " akin", " revamped", " tweaks", " framework", "-esque", " crafted"], [" largely", " akin", " overarching", " revamped", " foundational", " \u2014", " frameworks", " framework"], [" largely", " overarching", " \u2014", " akin", " revamped", " arguably", " foundational", " alongside"], [" \n\n", "  \n\n", " \u2014", "<|endoftext|>", " largely", "   \n\n", " akin", " overarching"], [" **", " frameworks", " **\u25a0", " !**", " framework", " overarching", " )**", " foundational"], [" overarching", " **", " largely", " revamped", " _", " akin", " foundational", " --"], [" --", " ,", " _", " largely", " revamped", " **", " ultimately", " outright"], [" \n\n", " _", "  \n\n", " __", " --", " revamped", " overarching", "\n\n"], [" **", " \n\n", " _", " frameworks", " revamped", " __", " framework", " foundational"], [" \n\n", " ,", " _", " complex", " infrastructure", " revamped", " modular", " frameworks"], [" \n\n", "\n\n", "  \n\n", " ,", " _", " ...", " __", " --"], [" \n\n", "\n\n", " ...", "  \n\n", " [...]", " ,", " __", "   \n\n"], [" ...", " \n\n", " [...]", " ...\\", " complex", " __", " **", " ___"], [" ...", " \n\n", " **", " ___", " __", " .", " ...\"", "\n\n"], [" ...", " complex", " .", " ,", " \n\n", " **", " _", " [...]"], [" complex", " ,", " ...", " .", " \u2014", " heavily", " -", " system"], [" complex", " \u2014", " modular", " heavily", " fundamentally", " radically", " leveraging", " uniquely"], [" leveraging", " complex", " fundamentally", " \u2014", " modular", " seamlessly", " complexity", " heavily"], [" \u2014", " \u2014\u2014", " complex", "\u2014\u2014", " leveraging", " \u2026", " complexity", " fundamentally"], [" \u2014", " \u2014\u2014", " complexity", " complex", " leveraging", " fundamentally", " compromised", " inherently"], [" complexity", " complex", " leveraging", " fundamentally", " inherently", " \u2014", " compromised", " \u2014\u2014"], [" complex", " complexity", " leveraging", " compromised", " fundamentally", " seamlessly", " inherently", " flawed"], [" complex", " complexity", " leveraging", " compromised", " flawed", " modular", " fundamentally", " seamlessly"], [" complex", " complexity", " compromised", " leveraging", " flawed", " modular", " radically", " fundamentally"], [" complexity", " complex", " modular", " leveraging", " compromised", " system", " interoper", " infrastructure"], [" complex", " modular", " complexity", " system", " leveraging", " compromised", " systems", " interoper"], [" complex", " complexity", " modular", " system", " compromised", " leveraging", " systems", " incompatible"], [" complex", " complexity", " modular", " system", " compromised", " incompatible", " bottleneck", " leveraging"], [" complex", " compromised", " destabil", " modular", " system", " complexity", " incompatible", " integration"], [" compromised", " destabil", " incompatible", " complexity", " modular", " fundamentally", " complex", " incompat"], [" combined", " incompatible", " compromised", " incompat", " destabil", " concurrently", " coupled", " intertwined"], [" incompatible", " combined", " incompat", " coupled", " destabil", " compromised", " intertwined", " complexity"], [".**", " combined", " coupled", " bottleneck", "'s", " incompat", " incompatible", " destabil"], [".**", ".*", "**.", " .**", "*.", " coupled", " destabil", " combined"], [".**", ".*", " .**", "**.", "*.", " bottleneck", " interoper", " coupled"], [".**", ".*", ".`", " .**", ".\"", ".'", ".</", "\u3002**"], [".**", ".*", ".+", ".`", " +", ".'", ".\"", " bottleneck"], [".**", ".*", ".+", ".`", " bottleneck", " throughput", " +", " becomes"], [".**", ".*", ".`", " bottleneck", " concurrency", ".+", " throughput", " latency"], [".**", ".*", ".`", " bottleneck", " concurrency", " Runtime", "\u3002**", " .**"], [".**", " breaks", " breaking", " latency", ".`", " Breaking", " bottleneck", " crashing"], [".**", " breaks", " crashing", " breaking", " crashes", " latency", " bottleneck", " Breaking"], [".**", "\u2019s", " crashing", " latency", " Memory", " Runtime", "'s", " crashes"], ["\u2019s", "'s", ".**", " Memory", ".`", " +", " Runtime", " Architecture"], ["\u2019s", ".**", " +", "'s", " Memory", " Architecture", " **+", " crashes"], [".**", "\u2019s", " +", " .**", " **+", "**", " Architecture", "**."]], "p": [[0.6324, 0.097, 0.0315, 0.0131, 0.0131, 0.009, 0.009, 0.008], [0.2841, 0.1429, 0.0182, 0.011, 0.0055, 0.0052, 0.0043, 0.0043], [0.8075, 0.1238, 0.0313, 0.0079, 0.0074, 0.0031, 0.0029, 0.0019], [0.0133, 0.0125, 0.0118, 0.0104, 0.0052, 0.0046, 0.0036, 0.0025], [0.0472, 0.0197, 0.0127, 0.0112, 0.0093, 0.0068, 0.006, 0.0053], [0.0164, 0.0099, 0.0099, 0.0088, 0.0073, 0.0068, 0.0053, 0.0047], [0.5124, 0.2007, 0.0693, 0.0212, 0.01, 0.0073, 0.0047, 0.0044], [0.1276, 0.0323, 0.0323, 0.0323, 0.0162, 0.0135, 0.0135, 0.0098], [0.0976, 0.0976, 0.0809, 0.076, 0.063, 0.0337, 0.0159, 0.015], [0.0736, 0.0288, 0.0271, 0.0224, 0.0145, 0.01, 0.01, 0.0078], [0.149, 0.1161, 0.1024, 0.0798, 0.0377, 0.0259, 0.0215, 0.0202], [0.0682, 0.0152, 0.0143, 0.0087, 0.0081, 0.0063, 0.0056, 0.0053], [0.0903, 0.0353, 0.0243, 0.0157, 0.0122, 0.0084, 0.0079, 0.0079], [0.0442, 0.0324, 0.0144, 0.0135, 0.0127, 0.0072, 0.0068, 0.0056], [0.0133, 0.0118, 0.0118, 0.0086, 0.0086, 0.0076, 0.0076, 0.0071], [0.017, 0.0085, 0.008, 0.0075, 0.0075, 0.0075, 0.0055, 0.0049], [0.0288, 0.0211, 0.0198, 0.0164, 0.0136, 0.0113, 0.0094, 0.0088], [0.0249, 0.0206, 0.0182, 0.0171, 0.0151, 0.0133, 0.0118, 0.011], [0.0243, 0.0228, 0.0228, 0.0189, 0.0167, 0.0157, 0.0115, 0.0095], [0.0495, 0.0465, 0.0437, 0.0386, 0.0182, 0.0171, 0.0161, 0.0161], [0.8468, 0.074, 0.0042, 0.0029, 0.0024, 0.002, 0.002, 0.0016], [0.0472, 0.0174, 0.0127, 0.0119, 0.0068, 0.0068, 0.006, 0.006], [0.0197, 0.0185, 0.0154, 0.0154, 0.0136, 0.0136, 0.0127, 0.0106], [0.0465, 0.041, 0.0362, 0.0319, 0.0117, 0.0117, 0.0117, 0.011], [0.8208, 0.0248, 0.0219, 0.0071, 0.004, 0.0028, 0.0028, 0.0028], [0.0822, 0.0641, 0.0267, 0.0221, 0.0134, 0.0105, 0.0105, 0.0092], [0.0864, 0.0408, 0.0281, 0.015, 0.0117, 0.011, 0.011, 0.0097], [0.8259, 0.1118, 0.0111, 0.0059, 0.0056, 0.0026, 0.0016, 0.0014], [0.8004, 0.1576, 0.0114, 0.0101, 0.0016, 0.0008, 0.0007, 0.0005], [0.62, 0.1568, 0.0165, 0.0121, 0.0073, 0.0057, 0.005, 0.0039], [0.8493, 0.0241, 0.0083, 0.0069, 0.0069, 0.0061, 0.0051, 0.0045], [0.5171, 0.0331, 0.0331, 0.0274, 0.02, 0.0166, 0.0122, 0.0054], [0.1056, 0.0726, 0.0565, 0.0343, 0.0152, 0.0105, 0.0087, 0.0081], [0.0843, 0.0398, 0.0274, 0.0213, 0.02, 0.0147, 0.0138, 0.0138], [0.0427, 0.0354, 0.0243, 0.0243, 0.0215, 0.0178, 0.0157, 0.0115], [0.2308, 0.14, 0.0229, 0.0229, 0.0202, 0.0189, 0.0101, 0.0095], [0.0906, 0.0485, 0.0378, 0.0355, 0.026, 0.019, 0.0168, 0.0131], [0.0676, 0.0436, 0.0385, 0.0206, 0.0182, 0.0151, 0.0151, 0.0142], [0.0782, 0.0734, 0.0224, 0.021, 0.021, 0.0145, 0.0136, 0.0136], [0.0801, 0.055, 0.026, 0.0179, 0.0179, 0.0179, 0.0179, 0.0115], [0.0791, 0.0616, 0.0291, 0.0213, 0.0146, 0.0146, 0.0129, 0.0101], [0.0645, 0.0569, 0.0367, 0.0305, 0.0269, 0.0269, 0.0185, 0.0174], [0.0644, 0.0534, 0.0471, 0.0324, 0.0252, 0.0237, 0.0173, 0.0144], [0.0663, 0.055, 0.0402, 0.0294, 0.0229, 0.0168, 0.0168, 0.0158], [0.067, 0.049, 0.0337, 0.0262, 0.0232, 0.0218, 0.0124, 0.0124], [0.0439, 0.0387, 0.0302, 0.0235, 0.0207, 0.0172, 0.0161, 0.0111], [0.0333, 0.0276, 0.0276, 0.0243, 0.0202, 0.0178, 0.0122, 0.0115], [0.0729, 0.0533, 0.0237, 0.0222, 0.0163, 0.0153, 0.0153, 0.0144], [0.0476, 0.042, 0.0349, 0.0308, 0.0271, 0.0211, 0.0136, 0.012], [0.0731, 0.0174, 0.0174, 0.0153, 0.0153, 0.0144, 0.0144, 0.0135], [0.3795, 0.0514, 0.0376, 0.0258, 0.0178, 0.0115, 0.0089, 0.0084], [0.4602, 0.1027, 0.0244, 0.0168, 0.0157, 0.0115, 0.0096, 0.0062], [0.8623, 0.0625, 0.0123, 0.0075, 0.0058, 0.0038, 0.0035, 0.0024], [0.6631, 0.148, 0.0374, 0.02, 0.0078, 0.0069, 0.0057, 0.0054], [0.4677, 0.1182, 0.0409, 0.0248, 0.0233, 0.0117, 0.0117, 0.0097], [0.5801, 0.0737, 0.0165, 0.0155, 0.0145, 0.0113, 0.0113, 0.0094], [0.7995, 0.0257, 0.0188, 0.0083, 0.0061, 0.0057, 0.0051, 0.0045], [0.3683, 0.1055, 0.0531, 0.0302, 0.0195, 0.0172, 0.0152, 0.0143], [0.1979, 0.0728, 0.0604, 0.0442, 0.0366, 0.0344, 0.0303, 0.0252], [0.1198, 0.0823, 0.0683, 0.0683, 0.0532, 0.0469, 0.0414, 0.0365], [0.2621, 0.2313, 0.1801, 0.0294, 0.0244, 0.0244, 0.0139, 0.0123], [0.6304, 0.1806, 0.0753, 0.0457, 0.0062, 0.0042, 0.0026, 0.0026], [0.8983, 0.0737, 0.0211, 0.001, 0.0008, 0.0007, 0.0004, 0.0003]], "ranks": {"Rust": [89399, 96871, 78259, 109886, 55221, 24697, 41059, 36672, 55086, 37836, 36005, 72859, 35271, 22702, 28832, 20815, 21432, 35155, 42025, 76762, 70357, 93194, 73324, 63431, 67373, 74223, 54024, 24807, 21137, 21751, 18607, 17018, 18933, 26148, 46947, 25698, 33920, 36048, 22861, 21030, 13176, 9907, 8899, 10709, 8099, 5826, 5466, 5857, 3790, 2524, 3234, 3207, 1765, 2357, 1956, 2712, 1101, 916, 803, 593, 744, 728, 657]}}, {"pos": 492, "top": [["s", "er", "es", " \u2013", "y", "o", "u", ","], ["s", "es", "er", " (\u201c", "sWith", "\u0647", "erweise", "eios"], ["s", "er", " \u2013", "es", " (\u201c", "\uff1a\u201c", " \u2013,", " \u200b\u200b"], [" cumshot", " Blowjob", "\u54e5\u534e", " milfs", " <+", " +:+", " pupper", "HeaderCode"], [" +", "er", "s", " \u201c", "\u0647", "es", " +'", " \u201c."], [" +", " \u201c", " Plus", "s", " +\"", "er", " \"+", " +'"], [" +", " +\"", "s", " +'", " +=", " +%", " Plus", " \u201c"], [" +\"", " +", " +'", " <+", " +%", " +=", " combo", " @"], [" +\"", " +'", " +%", " +", " +=", " combo", " #%", " <+"], [" combo", " +\"", " +=", " Plus", " \"+", " +#", " +%", " combos"], [" +", " combo", " @", " #", " +\"", " +=", " %+", " Plus"], [" combo", " +", " +%", " +=", " Philly", " %+", " +\"", " +'"], [" combo", " combos", " +", " veggies", " Philly", " vibe", " +%", " freaking"], [" combo", " combos", " veggies", " vibe", " freaking", " Philly", " meds", " funky"], [" combo", " Philly", " stuff", " combos", " busted", " +", " folks", " freaking"], [" combo", " folks", " freaking", " kids", " busted", " veggies", " vibe", " kinda"], [" combo", " freaking", " veggies", " folks", " vibe", " kids", " meds", " stuff"], [" combo", " meds", " freaking", " Philly", " vibe", " tweaks", " veggies", " combos"], [" combo", " freaking", " Philly", " combos", " tweaks", " meds", " funky", " busted"], [" combo", " freaking", " tweaks", " combos", " busted", " Philly", " funky", " veggies"], [" combo", " %+", " busted", " Philly", " tweaks", " freaking", " combos", " tweaking"], [" combo", " freaking", " combos", " Philly", " tweaks", " %+", " busted", " funky"], [" combo", " %+", " freaking", " combos", " Philly", " PLUS", " tweaks", " busted"], [" combo", " combos", " %+", " PLUS", " busted", " stuff", " freaking", " tweaks"], [" combo", " %+", " combos", " busted", " freaking", " funky", " tweaking", " tweaks"], [" combo", " freaking", " **+", " combos", " <+", " %+", " busted", " funky"], [" combo", " combos", " %+", " freaking", " busted", " tech", " stuff", " funky"], [" combo", " tech", " stuff", " combos", " busted", " freaking", " tweaking", " tweaks"], [" combo", " tech", " combos", " tweaks", " stuff", " +", " busted", " tweaking"], [" combo", " tech", " stuff", " +", " tweaks", " combos", " ...", " tweaking"], [" combo", " tech", " ...", " +", " stuff", " tweaks", " hardcore", " combos"], [" +", " combo", " tech", " huge", " incredibly", " massive", " stuff", " ..."], [" combo", " tech", " +", " massive", " weird", " hardcore", " complex", " power"], [" combo", " tech", " synergy", " combos", " tweaks", " tweaking", " leveraging", " weird"], [" combo", " synergy", " tech", " leveraging", " combos", " +", " hybrid", " leverage"], [" synergy", " combo", " tech", " hardware", " +", " tweaks", " hybrid", " leveraging"], [" combo", " synergy", " tech", " hardware", " complexity", " +", " overclock", " hybrid"], [" synergy", " combo", " +", " hardware", " tech", " complexity", " overclock", " combos"], [" synergy", " combo", " +", " hardware", " complexity", " tech", " overclock", " integration"], [" synergy", " hardware", " combo", " +", " complexity", " framerate", " overclock", " tech"], [" hardware", " combo", " +", " tech", " synergy", " complexity", " framerate", " overclock"], [" hardware", " framerate", " runtime", " combo", " software", " throughput", " workload", " speed"], [" hardware", " combo", " throughput", " synergy", " framerate", " software", " overclock", " workload"], [" combo", " hardware", " synergy", " throughput", " workload", " multit", " framerate", " integration"], [" combo", " synergy", " integration", " hardware", " throughput", " multit", " simultaneous", " workload"], [" combo", " integration", " synergy", " simultaneous", " hardware", " combined", " +", " combos"], [" combo", " synergy", " +", " Combined", " integration", " simultaneous", " workload", " bottleneck"], [" Combined", " combo", " +", " Combine", " simultaneous", " Hybrid", " synergy", " combined"], [" Combined", " framerate", " combo", " synergy", " synchronization", " simultaneous", " workload", " FPS"], [" framerate", " Interface", " Combined", " Hardware", " Processing", " synergy", " Complexity", " Runtime"], [" framerate", " **+", " Interface", "+F", " Runtime", " Serialization", " buffering", " Complexity"], [" GPU", " Runtime", " CPU", " runtime", " Interface", " framerate", " JIT", " Backend"], [" GPU", " JIT", " Runtime", " CPU", " Serialization", " runtime", " framerate", " concurrency"], [" GPU", " CPU", " concurrency", " Runtime", " framerate", " Serialization", " JIT", " runtime"], [" GPU", " runtime", " Runtime", " Serialization", " CPU", " JIT", " Memory", " framerate"], [" UI", " Serialization", " GPU", " serialization", " CPU", " JIT", " Memory", " Runtime"], [" UI", " GC", " Renderer", " GPU", " JIT", " renderer", " Rendering", " Serialization"], [" UI", " GPU", " Renderer", " renderer", " GC", " JIT", " Rendering", " Android"], [" UI", " GC", " Renderer", " GPU", " renderer", " JIT", " Memory", " Rendering"], [" UI", " GC", " Android", " GPU", " Async", " Renderer", " Rendering", " renderer"], [" UI", " GC", " GPU", " Android", " Mobile", " JIT", " Async", " Rendering"], [" UI", " GC", " Android", " GPU", " Mobile", " Main", " JNI", " JIT"], [" UI", " Main", " Mobile", " GC", " Android", " Async", " Memory", " GPU"]], "p": [[0.5231, 0.1499, 0.0625, 0.0587, 0.0487, 0.0457, 0.0334, 0.0102], [0.0798, 0.0454, 0.0312, 0.0148, 0.013, 0.0089, 0.0054, 0.0051], [0.1136, 0.0608, 0.0537, 0.0144, 0.0128, 0.0088, 0.0073, 0.0064], [0.0116, 0.0075, 0.0075, 0.0066, 0.0055, 0.0051, 0.0045, 0.0043], [0.3187, 0.1506, 0.0554, 0.0554, 0.0116, 0.0109, 0.0109, 0.0102], [0.0534, 0.0324, 0.0223, 0.0209, 0.0185, 0.0173, 0.0163, 0.0153], [0.1582, 0.0959, 0.0353, 0.0258, 0.0201, 0.0147, 0.0147, 0.013], [0.1081, 0.0743, 0.0544, 0.0241, 0.0213, 0.0166, 0.0107, 0.0101], [0.066, 0.0353, 0.0259, 0.0157, 0.0157, 0.0147, 0.0122, 0.0115], [0.0468, 0.0388, 0.0195, 0.0172, 0.0172, 0.0162, 0.0162, 0.0111], [0.1405, 0.0624, 0.0586, 0.055, 0.0378, 0.0295, 0.0244, 0.0179], [0.1264, 0.0677, 0.0206, 0.0194, 0.0182, 0.0171, 0.0171, 0.011], [0.1463, 0.0175, 0.0164, 0.0154, 0.0145, 0.0136, 0.012, 0.0113], [0.1835, 0.0193, 0.0193, 0.0182, 0.0141, 0.0125, 0.0117, 0.0091], [0.4657, 0.0298, 0.0247, 0.0218, 0.017, 0.015, 0.0141, 0.0132], [0.2118, 0.1134, 0.094, 0.0607, 0.0473, 0.0444, 0.0287, 0.0223], [0.2472, 0.0487, 0.0356, 0.0335, 0.0335, 0.0295, 0.0277, 0.0277], [0.2114, 0.0345, 0.0305, 0.0305, 0.0269, 0.0237, 0.0237, 0.0223], [0.1733, 0.0363, 0.0301, 0.0266, 0.025, 0.022, 0.0207, 0.0172], [0.1544, 0.0442, 0.0237, 0.0237, 0.0222, 0.0209, 0.0184, 0.0163], [0.1645, 0.0391, 0.0304, 0.0269, 0.0269, 0.0223, 0.0185, 0.0153], [0.0553, 0.0158, 0.0131, 0.0102, 0.0096, 0.0075, 0.0058, 0.0055], [0.1506, 0.0231, 0.0217, 0.0204, 0.0132, 0.0109, 0.0102, 0.0096], [0.2205, 0.0247, 0.0232, 0.016, 0.0141, 0.0117, 0.011, 0.0103], [0.0886, 0.027, 0.021, 0.0198, 0.0174, 0.0088, 0.0088, 0.0088], [0.0716, 0.0263, 0.0263, 0.0218, 0.0141, 0.0141, 0.0132, 0.011], [0.1045, 0.0299, 0.0206, 0.0182, 0.0171, 0.016, 0.011, 0.0103], [0.1226, 0.0398, 0.031, 0.0242, 0.02, 0.0177, 0.0146, 0.0146], [0.199, 0.057, 0.0305, 0.0197, 0.0163, 0.0163, 0.0163, 0.0127], [0.1751, 0.0686, 0.0304, 0.0269, 0.0252, 0.0196, 0.0163, 0.0135], [0.1191, 0.0638, 0.0412, 0.0363, 0.0301, 0.0172, 0.0161, 0.0142], [0.0452, 0.0425, 0.0274, 0.0156, 0.0147, 0.0138, 0.013, 0.0107], [0.0837, 0.0652, 0.024, 0.0146, 0.01, 0.01, 0.01, 0.0094], [0.117, 0.117, 0.0278, 0.0179, 0.0158, 0.014, 0.0102, 0.0102], [0.0981, 0.0674, 0.0633, 0.0181, 0.0117, 0.0117, 0.0097, 0.0097], [0.0679, 0.0679, 0.0599, 0.0172, 0.0161, 0.0111, 0.0111, 0.0098], [0.069, 0.0648, 0.0393, 0.0347, 0.0198, 0.0136, 0.012, 0.012], [0.0853, 0.0707, 0.0334, 0.0334, 0.0295, 0.0203, 0.0123, 0.0108], [0.0618, 0.0618, 0.0375, 0.0375, 0.0292, 0.0214, 0.0107, 0.0101], [0.0678, 0.0528, 0.0386, 0.0282, 0.0265, 0.0182, 0.0182, 0.0182], [0.0521, 0.0406, 0.0381, 0.0297, 0.0262, 0.0246, 0.0217, 0.0204], [0.0534, 0.0367, 0.0286, 0.0252, 0.0209, 0.0196, 0.0196, 0.0196], [0.0464, 0.0281, 0.0248, 0.0219, 0.0206, 0.0206, 0.0171, 0.0171], [0.0584, 0.0312, 0.0215, 0.0178, 0.0167, 0.0157, 0.0148, 0.0139], [0.0713, 0.0262, 0.0246, 0.0169, 0.014, 0.014, 0.0132, 0.0132], [0.0847, 0.0376, 0.0332, 0.0138, 0.0138, 0.0138, 0.013, 0.0115], [0.0717, 0.0361, 0.0248, 0.016, 0.0133, 0.0125, 0.0103, 0.0103], [0.0776, 0.0604, 0.0344, 0.0153, 0.0093, 0.0093, 0.0087, 0.0087], [0.0202, 0.0158, 0.0148, 0.0096, 0.0079, 0.0074, 0.007, 0.0066], [0.0131, 0.0102, 0.0084, 0.0054, 0.0054, 0.0051, 0.0051, 0.0048], [0.0134, 0.0092, 0.0067, 0.0063, 0.0052, 0.0049, 0.0049, 0.0049], [0.051, 0.0479, 0.0373, 0.0309, 0.0291, 0.0226, 0.0213, 0.0166], [0.0765, 0.0765, 0.0719, 0.056, 0.0409, 0.0339, 0.0281, 0.0206], [0.1014, 0.0841, 0.079, 0.0578, 0.0543, 0.0373, 0.0351, 0.0309], [0.1071, 0.0834, 0.0736, 0.0539, 0.0539, 0.0506, 0.042, 0.037], [0.1672, 0.1149, 0.1014, 0.0895, 0.0615, 0.0423, 0.0373, 0.0373], [0.1808, 0.1096, 0.1096, 0.1096, 0.0854, 0.0754, 0.0457, 0.0314], [0.5261, 0.1174, 0.0712, 0.0628, 0.0555, 0.0336, 0.014, 0.0124], [0.4127, 0.1182, 0.1043, 0.1043, 0.0559, 0.0493, 0.0233, 0.0181], [0.8233, 0.041, 0.0219, 0.0194, 0.0133, 0.0104, 0.0091, 0.0091], [0.7128, 0.1239, 0.0313, 0.0276, 0.0276, 0.0115, 0.009, 0.0054], [0.4453, 0.1856, 0.0994, 0.0532, 0.0414, 0.0366, 0.0184, 0.0173], [0.3, 0.1417, 0.1104, 0.086, 0.0759, 0.0759, 0.0316, 0.0231]], "ranks": {"Rust": [63710, 143549, 126931, 93063, 48884, 72399, 139693, 148511, 124978, 137305, 108768, 116030, 113636, 135378, 114441, 70994, 77447, 149557, 187906, 164717, 196440, 181300, 169888, 123541, 80498, 88048, 96658, 46749, 37222, 22315, 22382, 21188, 16004, 33166, 47904, 52427, 41523, 40613, 29543, 25719, 10024, 10745, 9116, 12982, 12002, 7735, 8388, 6033, 4301, 7427, 13211, 7405, 707, 765, 1540, 545, 85, 72, 73, 52, 33, 29, 17]}}, {"pos": 493, "top": [["s", "i", " \u2013", "\u0627\u062a", "es", "en", "**\u2013", "ihi"], ["s", " \u2013**", "sburg", "\u0627\u062a", "sula", "ihi", "sik", "schn"], ["s", "**\u2013", " \u2013**", " **\u2013", "sula", "sburg", "i", " |\u2013"], ["sula", "satz", " milfs", "ieli", "enzi", "sii", "iha", "sburg"], ["s", "i", "ihi", "\u0627\u062a", "sii", "sik", "sula", "\u064a"], ["s", "ihi", "i", "sula", "sii", "\u0627\u062a", "iha", "\u064a"], ["s", "i", "\u0627\u062a", "..", "sii", "ihi", "s\u00e4", "sburg"], ["s", "i", "..", "\u0627\u062a", "sula", "sburg", "sii", "!."], ["s", "!.", "..", ":.", "[..", "...]", "sula", ",."], ["s", "i", "sii", "sula", "ska", "sburg", "sik", "!."], ["s", "i", "..", ".@", " @_", "ska", ",.", "\u0627\u062a"], ["sula", "satz", "s", "sii", " **\u25a0", "iha", "ska", " **\u2022"], ["s", "sula", "satz", "sii", "s\u00e4", " milfs", " **\u25a0", "ska"], ["s", " electronics", "sii", "sula", "ska", " matchups", "satz", " vibe"], ["s", " electronics", " matchups", "ska", " genre", " vibe", " visuals", " transitioning"], ["s", " matchups", "sii", " influencers", " messaging", "ska", " vibe", " backstory"], ["s", " matchups", " tech", "i", " vibe", "sii", " tweaks", " visuals"], ["s", " matchups", " vibe", " tweaks", " tech", "ska", " electronics", "sii"], ["s", " matchups", " tweaks", "ska", "sii", " vibe", "i", " tech"], ["s", "i", " matchups", " folks", "sii", "\u5f9c", "ugi", " tweaks"], ["<|endoftext|>", "i", "@", "s", ".@", " matchups", "|i", "\u3011,"], [" matchups", " ;;^", "sii", " **\u25a0", " Geile", ":UI", " milfs", " electronics"], [" matchups", " electronics", "sii", " wiki", " **\u25a0", " tweaks", " ;;^", " genre"], [" electronics", "\u53cd\u5012\u662f", " matchups", " complex", " genre", " apps", " tweaks", " aesthetics"], [" matchups", " electronics", "/UI", " wiki", " apps", "(UI", " toolkit", "-centric"], [" electronics", " toolkit", " aesthetics", " optics", " visuals", " handjob", " pornstar", ":UI"], [" electronics", " visuals", " toolkit", " optics", " architecture", " aesthetics", " graphics", " widgets"], [" electronics", " architecture", " optics", " graphics", " aesthetics", " visuals", " complex", " hardware"], [" electronics", " architecture", " aesthetics", " toolkit", " optics", " visuals", " graphics", " frontend"], [" ...", " electronics", " architecture", " aesthetics", " optics", " visuals", " widgets", " toolkit"], [" ...", " electronics", " architecture", " graphics", " complex", " optics", " ..", " visuals"], [" complex", " systems", " architecture", " system", " integration", " games", " graphics", " tech"], [" complex", " integration", " tech", " architecture", " optics", " transition", " systems", " graphics"], [" tech", " architecture", " integration", " complex", " visuals", " tweaks", " optics", " hardware"], [" tech", " glitch", " integration", "/UI", " UI", " complexity", " architecture", " UX"], [" tech", " complexity", " overclock", " complex", " hardware", " glitch", " UX", " integration"], [" overclock", " complexity", " optimizations", " glitch", " hardware", " latency", " tech", " optimized"], [" graphics", " UI", " complexity", " interface", " optimizations", " transparency", " hardware", " glitch"], [" UI", " graphics", " complexity", "/UI", " interface", " complex", " integration", " transparency"], [" graphics", " UI", " visuals", "/UI", " interface", " aesthetics", " complexity", " sync"], [" graphics", " UI", " visuals", " animations", " animation", "/UI", " interface", " framerate"], [" graphics", " UI", " interface", " visuals", " animation", "/UI", " framerate", " animations"], [" graphics", " interface", " synchronization", " sync", " UI", " animation", " syncing", " visuals"], [" graphics", " synchronization", " interface", " sync", " synchronized", " syncing", " UI", " animations"], [" synchronization", " sync", " interface", " syncing", " synchronized", " synced", " graphics", " synchron"], [" synchronization", " sync", " interface", " synchronized", " synced", " integration", " syncing", " synchron"], [" synchronization", " sync", " interface", " integration", " syncing", " synchron", " synced", " synchronized"], [" synchronization", " interface", " integration", " sync", " synced", "/UI", " syncing", " interaction"], [" synchronization", " interface", " sync", " synced", " syncing", " integration", " synchron", "/UI"], [" synchronization", " interface", " syncing", " integration", " synergy", " bottleneck", " interaction", "/UI"], [" synchronization", " interface", "/UI", " Interface", " synergy", " syncing", " integration", " sync"], [" synchronization", " interface", " syncing", " sync", " Interface", " bottleneck", "/UI", " interaction"], [" synchronization", " bottleneck", "/UI", " framerate", " syncing", " latency", " responsiveness", " sync"], ["/UI", " synchronization", " bottleneck", " framerate", " UI", " responsiveness", " latency", " concurrency"], ["/UI", " loop", " UI", " thread", " synchronization", "-thread", "-loop", " Loop"], [" synchronization", " thread", "/UI", "-thread", " loop", " framerate", " Rendering", " bottleneck"], [" loop", " Rendering", " responsiveness", " thread", "/UI", " Renderer", " Loop", "-thread"], [" Rendering", " loop", " Renderer", " Render", " thread", " render", " renderer", " rendering"], [" Thread", " thread", "-thread", " Rendering", " threading", "\u7ebf\u7a0b", "thread", " Render"], [" Thread", " thread", " Rendering", " Render", "-thread", " Renderer", " render", " synchronization"], [" Thread", " thread", " Rendering", " synchronization", " Render", " Frame", " Renderer", " Loop"], [" Frame", " Thread", " Rendering", " Loop", " Render", " thread", " Renderer", " Main"], [" Thread", " Frame", " Render", " Main", " Rendering", " Loop", " Renderer", " Pipeline"]], "p": [[0.9712, 0.0243, 0.0013, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9573, 0.0035, 0.0027, 0.0025, 0.0022, 0.0017, 0.0015, 0.0012], [0.6644, 0.1155, 0.0311, 0.0122, 0.0107, 0.0065, 0.0048, 0.0042], [0.0441, 0.0414, 0.0236, 0.0126, 0.0126, 0.0105, 0.0092, 0.0077], [0.9902, 0.0023, 0.0012, 0.0009, 0.0003, 0.0002, 0.0002, 0.0002], [0.9457, 0.0056, 0.0041, 0.0025, 0.0022, 0.0021, 0.0012, 0.0009], [0.9986, 0.0007, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9753, 0.0027, 0.0012, 0.001, 0.0009, 0.0008, 0.0007, 0.0004], [0.9025, 0.0057, 0.005, 0.0042, 0.0031, 0.0025, 0.0022, 0.0021], [0.865, 0.0033, 0.0024, 0.0024, 0.0017, 0.001, 0.001, 0.001], [0.8949, 0.0288, 0.0037, 0.0027, 0.0021, 0.001, 0.0009, 0.0008], [0.0219, 0.0193, 0.0151, 0.0133, 0.0086, 0.0049, 0.0038, 0.0036], [0.0414, 0.0143, 0.0087, 0.0077, 0.0041, 0.0034, 0.0034, 0.0034], [0.0454, 0.0061, 0.0058, 0.0045, 0.0042, 0.0042, 0.0029, 0.0029], [0.3887, 0.0071, 0.0059, 0.0052, 0.0032, 0.0032, 0.003, 0.003], [0.0364, 0.0126, 0.0092, 0.0052, 0.0038, 0.003, 0.003, 0.0026], [0.6951, 0.0028, 0.0027, 0.0027, 0.0022, 0.002, 0.002, 0.0018], [0.0952, 0.0083, 0.0065, 0.005, 0.005, 0.0047, 0.0045, 0.0037], [0.0684, 0.0119, 0.005, 0.005, 0.0047, 0.0047, 0.0047, 0.0041], [0.0362, 0.0071, 0.0052, 0.0043, 0.0026, 0.0025, 0.0025, 0.0025], [0.0236, 0.0127, 0.0093, 0.0082, 0.0039, 0.0034, 0.0023, 0.0022], [0.0062, 0.0043, 0.0038, 0.0036, 0.0024, 0.0022, 0.002, 0.0019], [0.0068, 0.0039, 0.0032, 0.0027, 0.0021, 0.0018, 0.0017, 0.0017], [0.0046, 0.0028, 0.0023, 0.0023, 0.0019, 0.0018, 0.0017, 0.0016], [0.0081, 0.0056, 0.0044, 0.0034, 0.0032, 0.0026, 0.0025, 0.0023], [0.0135, 0.0105, 0.0044, 0.0044, 0.0044, 0.0041, 0.0041, 0.0039], [0.0248, 0.0097, 0.0097, 0.0091, 0.0086, 0.008, 0.0063, 0.0055], [0.0491, 0.0159, 0.0124, 0.0117, 0.0091, 0.0085, 0.0071, 0.0066], [0.0358, 0.0204, 0.0132, 0.0109, 0.0102, 0.0102, 0.0096, 0.008], [0.0294, 0.0178, 0.0148, 0.0108, 0.0102, 0.0095, 0.0074, 0.007], [0.0651, 0.0199, 0.0199, 0.0137, 0.0128, 0.0128, 0.0106, 0.0088], [0.069, 0.0106, 0.0088, 0.0082, 0.0073, 0.0057, 0.0053, 0.0053], [0.0465, 0.0118, 0.0097, 0.0097, 0.0071, 0.0067, 0.0059, 0.0049], [0.0219, 0.0182, 0.0171, 0.0125, 0.0097, 0.0076, 0.0076, 0.0067], [0.0223, 0.0106, 0.0106, 0.0099, 0.0073, 0.0068, 0.0068, 0.0064], [0.0227, 0.0177, 0.0129, 0.0122, 0.0114, 0.0095, 0.0078, 0.0061], [0.0307, 0.0225, 0.0175, 0.0175, 0.0175, 0.0136, 0.0113, 0.0088], [0.0278, 0.0261, 0.0261, 0.0179, 0.014, 0.0116, 0.0109, 0.0109], [0.114, 0.0573, 0.0327, 0.0239, 0.0239, 0.0211, 0.0128, 0.012], [0.1228, 0.0899, 0.0274, 0.0213, 0.0188, 0.0188, 0.0188, 0.0156], [0.2657, 0.1179, 0.0247, 0.0232, 0.0218, 0.0205, 0.0205, 0.016], [0.3572, 0.0749, 0.0483, 0.0354, 0.0293, 0.0259, 0.0243, 0.0228], [0.2056, 0.0857, 0.0756, 0.0553, 0.038, 0.0296, 0.0278, 0.0261], [0.1147, 0.0893, 0.0839, 0.074, 0.0329, 0.0309, 0.0309, 0.0212], [0.1578, 0.1393, 0.0794, 0.0425, 0.0399, 0.0399, 0.0352, 0.0214], [0.2029, 0.1156, 0.0795, 0.0353, 0.0353, 0.0331, 0.0311, 0.0311], [0.3537, 0.0894, 0.0654, 0.0479, 0.0273, 0.0273, 0.0241, 0.0226], [0.1985, 0.0881, 0.0827, 0.0686, 0.0416, 0.0367, 0.0304, 0.0223], [0.1882, 0.1466, 0.0737, 0.0447, 0.0371, 0.0371, 0.0225, 0.0211], [0.2546, 0.1544, 0.0534, 0.0534, 0.0345, 0.0324, 0.0268, 0.0268], [0.3568, 0.1022, 0.062, 0.0426, 0.04, 0.0332, 0.0275, 0.0147], [0.703, 0.0509, 0.0241, 0.0241, 0.0187, 0.0165, 0.0146, 0.0129], [0.4246, 0.177, 0.0738, 0.0575, 0.0395, 0.0308, 0.024, 0.0165], [0.2717, 0.2717, 0.1454, 0.0882, 0.0535, 0.0197, 0.0174, 0.0119], [0.4465, 0.1279, 0.0996, 0.0685, 0.0533, 0.0285, 0.0222, 0.0173], [0.1935, 0.1707, 0.133, 0.0806, 0.0806, 0.0554, 0.0297, 0.0262], [0.2047, 0.1241, 0.1241, 0.1096, 0.0586, 0.0457, 0.0403, 0.0314], [0.2227, 0.1052, 0.0723, 0.0638, 0.0563, 0.0497, 0.0387, 0.0387], [0.3691, 0.3691, 0.0641, 0.0303, 0.0184, 0.0184, 0.0143, 0.0143], [0.3166, 0.3166, 0.1028, 0.0623, 0.026, 0.026, 0.0179, 0.0139], [0.3653, 0.1523, 0.1186, 0.0494, 0.0385, 0.034, 0.034, 0.0265], [0.4231, 0.2566, 0.0735, 0.0326, 0.0326, 0.0224, 0.0175, 0.0128], [0.732, 0.1272, 0.0413, 0.0284, 0.0152, 0.0134, 0.0053, 0.0038]], "ranks": {"Rust": [56913, 93024, 77607, 133910, 29234, 19392, 23819, 24237, 37256, 31433, 16261, 53422, 44651, 47805, 45351, 61132, 40940, 64031, 91363, 107541, 116789, 119128, 111667, 73328, 61798, 97757, 72455, 31419, 46306, 60181, 25578, 22087, 27846, 52711, 74754, 58319, 21899, 16121, 15571, 25686, 11323, 23324, 23757, 24617, 18632, 19105, 21563, 20483, 11491, 22777, 40214, 46526, 9992, 13919, 20121, 22503, 4666, 5752, 3889, 2700, 1330, 1369, 959]}}, {"pos": 494, "top": [[".", "  \n", ",", "\u00a0\u00a0", "\u00ac", "er", " ", "\uff0e"], ["\uff20", " \uff3b", " \ufffd", " \u00ad", "sWith", " \uff5e", "  \n", "\ufffd\ufffd"], [" \uff3b", "sWith", " \uff08", "\u2026..", "\uff3b", "iness", "\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014", "sville"], ["\uff0a\uff0a\uff0a\uff0a", "TRGL", "\uff3f\uff3f", "\uff0a\uff0a", "---</", " ``", " _____", " RTBU"], [" \u2019", " _____", " --->", "ed", " ---", " ----", "_____", " \uff3b"], ["sWith", "\ufffd\ufffd", "ed", "_____", " \u3011", "erable", " _____", " \uff08"], ["_____", " _____", " \u3010", "\u7684", " ---", " \u2019", "ed", " ___"], [" _____", "_____", " --->", "ed", " \u3010", " ___", " ----", " ---"], [" _____", " \u3010", "ed", " \u3011", "_____", "\u3000", " ___", " ____"], ["ed", "edly", "sWith", "  \r\n", "---", "iness", "er", " _____"], ["ed", "er", "\ufffd\ufffd\ufffd", " @", " _____", " #", "edly", "\\n"], ["edly", "ed", " ---", " ___", " _____", "er", " ``", " atop"], ["ed", "edly", "er", "sWith", "(Thread", "ly", " atop", "nal"], ["ed", "edly", "er", " atop", "sWith", " pacing", "(Thread", " governance"], ["ed", "edly", " aggressively", " arguably", "er", " atop", " via", " requisite"], ["ed", " atop", " arguably", " aggressively", " via", " myriad", "edly", "er"], ["ed", "er", " atop", " via", "edly", " myriad", " arguably", "s"], ["ed", "edly", "sWith", "er", " aggressively", " via", " atop", " amid"], ["ed", "edly", "sWith", " atop", " myriad", " arguably", " aggressively", "er"], ["ed", " --", " myriad", "edly", " \u2014", " atop", " aggressively", " arguably"], ["<|endoftext|>", " --", " myriad", " \u2014", "ed", " swiftly", " atop", "edly"], [" ``", "edly", " ''", " atop", " --", " ---", " aggressively", " amid"], [" ``", " --", " ''", "edly", " ---", " atop", " aggressively", " amid"], [" --", " ``", " ''", "edly", " toward", " ---", " aggressively", " ,"], [" --", " ---", " ``", " ''", "edly", " atop", " toward", " amid"], [" --", " ---", " ``", "edly", " motion", " atop", " ''", " pacing"], [" ``", " --", " ---", " motion", " ''", "edly", " ___", " pacing"], [" --", " ---", " ``", " ___", " ,", " ''", " motion", " '"], [" ___", " motion", " ---", " --", " hours", " ``", " pacing", " ===="], [" ___", " ____", " __", " ---", " _____", " uptime", "___", " workflow"], [" ___", " uptime", " workflow", " motion", " runtime", " hours", " pacing", " synchronization"], [" ___", " hours", " motion", " .", " ---", " time", " traffic", " --"], [" pacing", " synchronization", " motion", " shift", " \\\\", " shifts", " multit", " hours"], [" synchronization", " pacing", " uptime", " sync", " multit", " downtime", " synced", " runtime"], [" synchronization", " synced", " sync", " pacing", " syncing", " distraction", " delay", " multit"], [" synchronization", " sync", " dynamics", " multit", " synchronous", " faster", " concurrency", " pacing"], [" synchronization", " sync", " synchronous", " synchronized", " concurrency", " asynchronously", " bottleneck", " asynchronous"], [" synchronization", " synchronized", " sync", " synchronous", " Thread", " concurrency", " syncing", " synced"], [" synchronization", " synchronous", " synchronized", " sync", " bottleneck", " Thread", " concurrency", " synchron"], [" synchronization", " synchronized", " synchronous", " sync", " Thread", " thread", " bottleneck", " concurrency"], [" synchronization", " Thread", " thread", " bottleneck", " synchronous", " sync", " synchronized", " workload"], [" synchronization", " synchronous", " thread", " Thread", " sync", " synchronized", " workflow", " threads"], [" synchronization", " synchronous", " sync", " bottleneck", " thread", " synchronized", " Thread", " syncing"], [" synchronization", " synchronous", " Thread", " bottleneck", " sync", " thread", " synchronized", " concurrency"], [" synchronization", " bottleneck", " synchronous", " sync", " concurrency", " Thread", " synchronized", " thread"], [" synchronization", " bottleneck", " sync", " synchronous", " synchronized", " synchron", " syncing", " thread"], [" synchronization", " bottleneck", " sync", " workflow", " concurrency", " Thread", " thread", " synchronous"], [" synchronization", " bottleneck", " Timeline", " sync", " Thread", " syncing", " timing", " concurrency"], [" synchronization", " bottleneck", " sync", " syncing", " concurrency", " synced", " interference", " Sync"], [" synchronization", " bottleneck", " syncing", " concurrency", " interference", " synergy", " sync", " coordination"], [" synchronization", " bottleneck", " synergy", " syncing", " interference", " overlap", " Combined", " sync"], [" synchronization", " bottleneck", " syncing", " sync", " synergy", "\u540c\u6b65", " concurrency", " interference"], [" synchronization", " bottleneck", " concurrency", " syncing", " synergy", " sync", ".**", " deadlock"], [" bottleneck", " synchronization", " concurrency", " deadlock", " latency", " Thread", " syncing", " threading"], [" synchronization", " bottleneck", " Thread", " thread", " concurrency", " threading", " interaction", " Threads"], [" synchronization", " bottleneck", " concurrency", " deadlock", " Thread", " sync", " contention", " latency"], [" synchronization", " bottleneck", " concurrency", " deadlock", " Thread", " responsiveness", " Blocking", " latency"], [" synchronization", " bottleneck", " coupling", " latency", " concurrency", " deadlock", " contention", " Blocking"], [" bottleneck", " Blocking", " synchronization", " blocking", " Bott", " contention", "blocking", " bott"], [" synchronization", " bottleneck", " Blocking", " contention", " latency", " Bott", " blocking", " coupling"], [" synchronization", " bottleneck", " coupling", " Blocking", " contention", " Bott", " latency", " saturation"], [" synchronization", " bottleneck", " coupling", " Blocking", " contention", " Bott", " Interaction", " latency"], [" Bott", " Blocking", ".**", " Sync", " Boundary", " Interaction", " Collision", " Cont"]], "p": [[0.1006, 0.0649, 0.0573, 0.0475, 0.0394, 0.0224, 0.0164, 0.0154], [0.0509, 0.0273, 0.0155, 0.0121, 0.0094, 0.0094, 0.0094, 0.0057], [0.0697, 0.0273, 0.0256, 0.02, 0.0146, 0.0129, 0.0114, 0.01], [0.009, 0.009, 0.0075, 0.0066, 0.0066, 0.0055, 0.0048, 0.0045], [0.0815, 0.0635, 0.0635, 0.0596, 0.056, 0.0526, 0.0494, 0.0385], [0.0416, 0.0253, 0.0174, 0.0105, 0.0087, 0.0077, 0.0072, 0.006], [0.1798, 0.149, 0.1161, 0.0962, 0.0484, 0.0312, 0.0259, 0.0243], [0.3674, 0.1193, 0.0439, 0.0439, 0.0439, 0.0387, 0.0364, 0.0221], [0.2135, 0.0836, 0.054, 0.0507, 0.042, 0.0289, 0.0255, 0.0225], [0.1571, 0.0615, 0.0089, 0.0083, 0.0078, 0.0073, 0.0057, 0.005], [0.7184, 0.0757, 0.008, 0.0075, 0.0075, 0.007, 0.0066, 0.0055], [0.0288, 0.0288, 0.0224, 0.0186, 0.0164, 0.0082, 0.0082, 0.0073], [0.0717, 0.0435, 0.0181, 0.0052, 0.0036, 0.0036, 0.0028, 0.0017], [0.0285, 0.0208, 0.006, 0.0039, 0.003, 0.0027, 0.0023, 0.0021], [0.1126, 0.0222, 0.0143, 0.0111, 0.0087, 0.0082, 0.0077, 0.0056], [0.0465, 0.0151, 0.011, 0.0086, 0.0055, 0.0049, 0.0034, 0.0028], [0.2272, 0.0136, 0.0088, 0.0083, 0.0064, 0.0064, 0.0057, 0.0044], [0.0524, 0.0063, 0.0059, 0.0049, 0.0025, 0.0023, 0.0021, 0.0019], [0.029, 0.0094, 0.0069, 0.0065, 0.0065, 0.0061, 0.0061, 0.0054], [0.0293, 0.0243, 0.0243, 0.0201, 0.013, 0.0122, 0.0101, 0.0089], [0.089, 0.0651, 0.0271, 0.0239, 0.0186, 0.0113, 0.0088, 0.0078], [0.0539, 0.0145, 0.0136, 0.01, 0.0083, 0.0064, 0.0034, 0.0034], [0.187, 0.0607, 0.0473, 0.0163, 0.0106, 0.0082, 0.0041, 0.0034], [0.1626, 0.0249, 0.0234, 0.0111, 0.0111, 0.0076, 0.0063, 0.0059], [0.271, 0.0324, 0.0268, 0.0196, 0.0153, 0.0099, 0.006, 0.0044], [0.0517, 0.0486, 0.0179, 0.0115, 0.0084, 0.0079, 0.0062, 0.0045], [0.0251, 0.0222, 0.0152, 0.0105, 0.0077, 0.0068, 0.0064, 0.006], [0.2453, 0.04, 0.0293, 0.0293, 0.0258, 0.0243, 0.0095, 0.0058], [0.0262, 0.014, 0.0132, 0.0109, 0.0071, 0.0062, 0.0049, 0.0046], [0.2428, 0.0176, 0.0121, 0.0121, 0.0114, 0.0057, 0.0047, 0.0044], [0.0281, 0.0071, 0.0063, 0.0063, 0.0059, 0.0059, 0.0055, 0.0052], [0.0473, 0.0099, 0.0087, 0.0073, 0.0053, 0.0053, 0.0047, 0.0047], [0.0107, 0.0069, 0.0069, 0.0061, 0.0057, 0.0054, 0.0054, 0.0054], [0.0274, 0.0084, 0.0074, 0.0069, 0.0065, 0.0061, 0.0058, 0.0054], [0.0339, 0.0103, 0.0103, 0.0091, 0.0086, 0.0049, 0.0043, 0.0041], [0.0393, 0.0088, 0.0073, 0.0073, 0.0068, 0.006, 0.0057, 0.0053], [0.1148, 0.0226, 0.0212, 0.0212, 0.0114, 0.01, 0.0094, 0.0094], [0.1732, 0.032, 0.0234, 0.0234, 0.0118, 0.0111, 0.0092, 0.0092], [0.2349, 0.0434, 0.0338, 0.0205, 0.0132, 0.011, 0.0103, 0.0097], [0.3212, 0.0463, 0.0463, 0.0281, 0.0219, 0.017, 0.015, 0.0133], [0.1691, 0.0705, 0.0584, 0.0427, 0.0377, 0.0259, 0.0215, 0.0157], [0.3221, 0.0634, 0.056, 0.0436, 0.0361, 0.0233, 0.0219, 0.0142], [0.3973, 0.0609, 0.0347, 0.0239, 0.0224, 0.0211, 0.0198, 0.0164], [0.2073, 0.0408, 0.0318, 0.0299, 0.0281, 0.0193, 0.015, 0.0141], [0.2741, 0.0447, 0.0395, 0.0371, 0.0175, 0.0175, 0.0165, 0.0155], [0.3188, 0.0405, 0.0381, 0.0246, 0.0159, 0.0159, 0.014, 0.0124], [0.3964, 0.0504, 0.0224, 0.0144, 0.0136, 0.0127, 0.0112, 0.0112], [0.2232, 0.0413, 0.0235, 0.0235, 0.0221, 0.0172, 0.0162, 0.0152], [0.2776, 0.1021, 0.0311, 0.0258, 0.0228, 0.0189, 0.0167, 0.0122], [0.4919, 0.1244, 0.0278, 0.0179, 0.014, 0.0131, 0.0123, 0.0096], [0.6231, 0.0744, 0.0512, 0.02, 0.0095, 0.0095, 0.0078, 0.0074], [0.8036, 0.096, 0.0167, 0.0101, 0.0079, 0.0048, 0.0048, 0.0042], [0.578, 0.3506, 0.0154, 0.0082, 0.0039, 0.003, 0.0028, 0.0028], [0.527, 0.4104, 0.0232, 0.0052, 0.0028, 0.002, 0.0018, 0.0016], [0.7205, 0.1419, 0.0406, 0.0218, 0.0132, 0.0103, 0.0055, 0.0049], [0.9403, 0.0365, 0.0063, 0.0038, 0.0014, 0.0008, 0.0008, 0.0007], [0.6573, 0.2418, 0.0198, 0.012, 0.0073, 0.0073, 0.0073, 0.0064], [0.8091, 0.0753, 0.0356, 0.0277, 0.0148, 0.0048, 0.0037, 0.0026], [0.4592, 0.3576, 0.0904, 0.0294, 0.0157, 0.0108, 0.0045, 0.004], [0.4213, 0.3281, 0.1065, 0.0444, 0.0269, 0.0185, 0.0144, 0.006], [0.5929, 0.1699, 0.0708, 0.0429, 0.0295, 0.0203, 0.0179, 0.0062], [0.3173, 0.1698, 0.1499, 0.103, 0.0802, 0.0314, 0.0139, 0.0109], [0.1425, 0.1258, 0.0763, 0.0673, 0.0558, 0.0524, 0.0492, 0.0463]], "ranks": {"Rust": [99563, 126239, 139973, 51692, 41330, 46674, 35836, 41321, 54671, 35784, 41645, 38832, 22215, 20012, 50108, 32825, 44762, 73602, 79309, 62996, 71241, 71010, 66815, 42961, 50320, 43721, 42148, 27122, 36547, 75118, 62365, 55604, 73306, 109087, 114142, 66631, 26536, 24173, 26561, 19917, 14948, 23765, 30996, 29786, 39133, 19770, 28896, 12942, 30360, 31483, 51226, 64696, 34145, 53752, 44658, 41217, 16563, 17086, 10631, 8627, 5375, 4024, 2719]}}, {"pos": 495, "top": [["s", "sburg", "\u0627\u062a", "\u044b", "scher", "\u05d9\u05dd", "schild", "schn"], ["s", "sburg", "\u0627\u062a", "\u05d9\u05dd", "scher", "\u044b", "sstr", "sste"], ["s", "\u0627\u062a", "sburg", "\u044b", "siz", "\u05d9\u05dd", "sstr", "scher"], ["s", "sburg", " ``", "sste", "\u05d9\u05dd", "siz", "sula", "sstr"], ["s", "\u0627\u062a", "sburg", "siz", "sche", "\u05d9\u05dd", "sste", "\u044b"], ["s", "siz", "sburg", "\u0627\u062a", "sste", "\u044b", "\u05d9\u05dd", "sce"], ["s", "siz", "\u0627\u062a", "sburg", " ``", "``", "sste", "scher"], ["s", "sburg", "siz", "\u0627\u062a", "sste", "scheid", "sce", "sut"], ["s", "sburg", "scheid", "\u0627\u062a", "sce", "schn", "schild", "sste"], ["s", "siz", "sburg", "sste", "sce", "scheid", "\u0627\u062a", "schild"], ["s", "@@", "\u0627\u062a", "siz", "es", "\\_", "sce", "sie"], ["s", "sburg", "scheid", "sste", "siz", "sce", "satz", "\u0627\u062a"], ["s", "siz", "sburg", "scheid", "sste", "sce", "skega", "\u0627\u062a"], ["s", "siz", "sburg", "sste", " bottleneck", "sce", "scheid", "\u0627\u062a"], ["s", "siz", "\u0627\u062a", " bottleneck", "es", "sste", "sce", "sie"], ["s", "siz", "es", "\u0627\u062a", "sste", "sce", "sburg", " bottleneck"], ["s", "es", "siz", "\u0627\u062a", "sburg", "sce", "sste", "sor"], ["s", "siz", "sburg", "\u0627\u062a", "sste", "sce", "schn", "ske"], ["s", "sburg", "siz", "sste", "ske", "schn", "sce", "scheid"], ["s", "siz", "sste", "sburg", "sce", " bottleneck", "schn", "\u0627\u062a"], ["s", "<|endoftext|>", "\u0627\u062a", "\n\n", "siz", "sce", "sste", " myriad"], ["s", "sste", "sburg", "scheid", "sce", " bottleneck", "schn", "siz"], ["s", " ``", " bottleneck", "sste", "sburg", "\u74f6\u9888", "sce", "leneck"], ["s", " bottleneck", " ``", " looming", "sste", "\u74f6\u9888", " bott", " myriad"], ["s", " bottleneck", " \n\n", "\n\n", "\u74f6\u9888", " \r\n \r\n", "sste", " ``"], ["s", " bottleneck", "leneck", "sste", "sburg", "\u74f6\u9888", " ``", " bott"], ["s", " bottleneck", "leneck", "\u74f6\u9888", "sste", " bott", "sburg", " throughput"], ["s", " bottleneck", " bott", "\u74f6\u9888", " ``", " stalled", " throughput", " thrott"], [" bottleneck", "s", " bott", "\u74f6\u9888", " stalled", " throughput", "leneck", " thrott"], [" bottleneck", "s", " bott", " stalled", " thrott", "\u74f6\u9888", " leveraging", " throughput"], [" bottleneck", "s", " bott", " stalled", " critical", " thrott", " heavily", " leveraging"], ["s", " bottleneck", " critical", " heavily", " bott", " pushing", " crucial", " shifting"], [" bottleneck", "s", " bott", " critical", " pushing", " leveraging", " crucial", " shifting"], [" bottleneck", " bott", " leveraging", " thrott", " sluggish", " pacing", " crucial", " accelerating"], [" bottleneck", " bott", " leveraging", "\u74f6\u9888", " thrott", " syncing", " sluggish", "leneck"], [" bottleneck", "\u74f6\u9888", " bott", " thrott", " leveraging", " sluggish", " exacerbated", " accelerating"], [" bottleneck", "\u74f6\u9888", " bott", " thrott", " sluggish", " exacerbated", " ineff", " accelerating"], [" bottleneck", " bott", "\u74f6\u9888", " thrott", " sluggish", " accelerating", " ineff", "leneck"], [" bottleneck", " bott", "\u74f6\u9888", " thrott", "leneck", " accelerating", " exacerbated", " sluggish"], [" bottleneck", "\u74f6\u9888", " bott", " thrott", " accelerating", " sluggish", " exacerbated", "leneck"], [" bottleneck", "\u74f6\u9888", " bott", " thrott", " accelerating", " Bott", " throughput", " sluggish"], [" bottleneck", " bott", "\u74f6\u9888", " thrott", " throughput", " accelerating", " choke", " throttle"], [" bottleneck", " bott", "\u74f6\u9888", " thrott", " throughput", " choke", " accelerating", " throttle"], [" bottleneck", " bott", "\u74f6\u9888", " thrott", " throughput", " congestion", " congest", " choke"], [" bottleneck", " bott", "\u74f6\u9888", " thrott", " overcrow", " throughput", " choke", " exacerbated"], [" bottleneck", " bott", "\u74f6\u9888", " exacerbated", " overcrow", " thrott", " critical", " choke"], [" bottleneck", " bott", "\u74f6\u9888", " exacerbated", " thrott", " critical", " inevitable", " choke"], [" bottleneck", " Combined", " exacerbated", " combined", "\u74f6\u9888", " bott", " simultaneous", ".**"], [" bottleneck", ".**", "**.", "\u74f6\u9888", " Combined", ".*", " .**", "**"], [".**", " bottleneck", "**.", ".*", ".\\", " Combined", "\u3002**", "\u74f6\u9888"], [".**", "**.", ".*", "*.", ".\\", "\u3002**", " bottleneck", "**\u3002"], [".**", ".*", "**.", "*.", ".\\", ".\"", " .**", "\u3002**"], [".**", ".*", ".\"", "\u3002**", " .**", ".\\\"", ".\\", ".)"], [".**", ".*", ".\"", ".\\\"", "\u3002**", " .**", ".)", ".\\"], [".**", " bottleneck", " Bott", ".*", " .**", "leneck", ".\"", "\u3002**"], [".**", "leneck", ".*", ".\\\"", " .**", ".\"", "\u3002**", " bottleneck"], [".**", "\u3002**", " .**", "leneck", " bottleneck", " Bott", ".\"", "\u74f6\u9888"], [".**", "\u3002**", "leneck", " .**", ".\"", " bottleneck", " Bott", ".*"], [" Bott", " bottleneck", ".**", "\u74f6\u9888", " bott", " Bottle", "leneck", " bottle"], [".**", "leneck", " bottleneck", " Bott", "\u74f6\u9888", " bott", " .**", " Bottle"], ["leneck", " neck", "neck", " bottleneck", " Neck", ".**", " Bott", "-neck"], ["leneck", " neck", "neck", "lene", " bottleneck", " Neck", ".**", "-neck"], ["leneck", "le", "lene", ".**", "les", "ling", "lec", "ler"]], "p": [[1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9986, 0.0005, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.8737, 0.016, 0.016, 0.0097, 0.0063, 0.0063, 0.0052, 0.0043], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9985, 0.0003, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.9977, 0.0006, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9995, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9995, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.998, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9957, 0.0003, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.9981, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9993, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9994, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9986, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9886, 0.0007, 0.0007, 0.0004, 0.0004, 0.0004, 0.0003, 0.0002], [0.9912, 0.0005, 0.0004, 0.0004, 0.0003, 0.0002, 0.0002, 0.0001], [0.9988, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.7783, 0.0162, 0.0092, 0.0063, 0.0059, 0.0046, 0.0043, 0.0041], [0.8921, 0.0068, 0.0053, 0.0036, 0.0021, 0.0017, 0.0014, 0.0012], [0.963, 0.0016, 0.0014, 0.0006, 0.0004, 0.0004, 0.0003, 0.0003], [0.8493, 0.0107, 0.0042, 0.0031, 0.0024, 0.0019, 0.0015, 0.0015], [0.2361, 0.1264, 0.0171, 0.0161, 0.011, 0.0104, 0.0071, 0.0046], [0.2618, 0.246, 0.0095, 0.0095, 0.009, 0.009, 0.007, 0.0045], [0.3706, 0.2712, 0.0173, 0.0068, 0.006, 0.0053, 0.0047, 0.0041], [0.5284, 0.1826, 0.0141, 0.011, 0.0046, 0.0043, 0.004, 0.0038], [0.489, 0.2038, 0.0139, 0.0074, 0.0062, 0.0048, 0.0045, 0.004], [0.4681, 0.1618, 0.0233, 0.0081, 0.0067, 0.0067, 0.0055, 0.0052], [0.3226, 0.1115, 0.0385, 0.0194, 0.0125, 0.011, 0.0104, 0.0063], [0.4289, 0.058, 0.0227, 0.0188, 0.0114, 0.0107, 0.0084, 0.0079], [0.6532, 0.0144, 0.0099, 0.0064, 0.0041, 0.0032, 0.0028, 0.0028], [0.7072, 0.0095, 0.0069, 0.0069, 0.0054, 0.0033, 0.0026, 0.0024], [0.6141, 0.012, 0.0099, 0.0064, 0.0047, 0.0034, 0.0028, 0.0024], [0.7429, 0.012, 0.0113, 0.0088, 0.0047, 0.0022, 0.0021, 0.0018], [0.7916, 0.0136, 0.0113, 0.0083, 0.0017, 0.0015, 0.0014, 0.0014], [0.9196, 0.0116, 0.0116, 0.0031, 0.0006, 0.0006, 0.0005, 0.0005], [0.9348, 0.0182, 0.0111, 0.0023, 0.0006, 0.0005, 0.0003, 0.0003], [0.9659, 0.0095, 0.0089, 0.0009, 0.0003, 0.0003, 0.0003, 0.0002], [0.9842, 0.0052, 0.0035, 0.0009, 0.0003, 0.0001, 0.0001, 0.0001], [0.9873, 0.0046, 0.0024, 0.0008, 0.0003, 0.0001, 0.0001, 0.0001], [0.9821, 0.0058, 0.0028, 0.0008, 0.0002, 0.0002, 0.0002, 0.0002], [0.9814, 0.0048, 0.0012, 0.0007, 0.0004, 0.0003, 0.0002, 0.0002], [0.9581, 0.0069, 0.0011, 0.0009, 0.0007, 0.0007, 0.0006, 0.0006], [0.9731, 0.0031, 0.0024, 0.0013, 0.0003, 0.0002, 0.0002, 0.0002], [0.8519, 0.0089, 0.0069, 0.0061, 0.0048, 0.0042, 0.002, 0.0014], [0.4788, 0.2904, 0.021, 0.0099, 0.0053, 0.0047, 0.0044, 0.0039], [0.7932, 0.0651, 0.0476, 0.0083, 0.005, 0.005, 0.0037, 0.003], [0.7779, 0.1532, 0.0183, 0.0161, 0.0072, 0.0025, 0.0025, 0.0019], [0.8781, 0.0437, 0.034, 0.0076, 0.0056, 0.0056, 0.0043, 0.0034], [0.9846, 0.0052, 0.004, 0.0013, 0.0012, 0.0007, 0.0004, 0.0004], [0.9756, 0.0096, 0.0035, 0.0019, 0.0017, 0.0017, 0.0008, 0.0007], [0.8581, 0.0427, 0.0139, 0.0139, 0.0122, 0.0101, 0.0066, 0.0062], [0.8628, 0.0335, 0.0179, 0.0116, 0.0102, 0.0096, 0.0066, 0.0045], [0.9707, 0.0065, 0.0051, 0.0045, 0.0027, 0.0019, 0.0015, 0.0009], [0.9769, 0.0066, 0.0051, 0.004, 0.0013, 0.0009, 0.0007, 0.0006], [0.6552, 0.1877, 0.0475, 0.0475, 0.0254, 0.0224, 0.012, 0.0008], [0.4263, 0.2282, 0.2282, 0.0449, 0.0212, 0.0137, 0.01, 0.0069], [0.876, 0.0494, 0.03, 0.0182, 0.011, 0.0032, 0.0028, 0.0028], [0.9864, 0.0031, 0.0029, 0.0018, 0.0017, 0.0013, 0.0007, 0.0007], [0.9777, 0.0079, 0.0058, 0.0035, 0.0024, 0.0005, 0.0003, 0.0002]], "ranks": {"Rust": [17858, 40533, 12125, 7378, 700, 1314, 2466, 2156, 1789, 768, 876, 972, 385, 367, 832, 808, 1262, 999, 1926, 1467, 4402, 2095, 2038, 2628, 1313, 1311, 2398, 1615, 1537, 1427, 2187, 3034, 2764, 4048, 7612, 7723, 11147, 11450, 12052, 13920, 13265, 10325, 11687, 11274, 6955, 7731, 15940, 9992, 6647, 11701, 10232, 17726, 8048, 9908, 11356, 12253, 6450, 4299, 4164, 4261, 5401, 2535, 583]}}, {"pos": 496, "top": [["i", "ed", "o", "\u2026\u2026", ".", "\u2026..", "\u2026.", "\u2026"], ["ed", "i", " \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026", "\u064a\u064b\u0627", ",\u201d", "ers", "ation", " @"], ["\u2026..", "\u2026\u2026", "\u2026.", "ed", "\u2026", ".", "i", "\u2026\u201d"], ["ed", "i\u00e9e", "\u064a\u0629", "edr", "ielle", "\u064a\u064a", " ``", "ers"], ["ed", "i", ",\u201d", "ers", ".\u201d", "ing", " \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026", "\u2026\u201d"], ["ed", "i", ",\u201d", "ers", "ing", "\u064a\u064b\u0627", " \u201d", ".\u201d"], ["ed", "ers", ".\u201d", "i", "\ufe0f", "ing", ",\u201d", "&amp"], ["ed", "ers", "\u064a\u0629", "\ufe0f", "ing", "\u064a\u064b\u0627", ":@", ".&"], ["ed", ".\u201d", ".&", "\ufe0f", ",\u201d", "!\u201d", "  \n\n", "."], ["ed", ".&", "ing", ",", "i", "ers", "\ufe0f", "\u2014and"], ["ed", "i", ".", ",", "o", "ers", ".&", " "], ["ed", " ___", "ers", "ing", " bottleneck", "\ufe0f", "\u064a\u0629", " ____"], ["ed", " bottleneck", "ers", "ing", " fueled", "es", "ized", " pivotal"], ["ed", " bottleneck", " pivotal", " showcased", " fueled", " skyrocket", " showcasing", " leveraging"], ["ed", " heavily", " pivotal", " transitioning", " swiftly", " myriad", " showcasing", " arguably"], ["ed", " myriad", " swiftly", " utilizing", " showcasing", " pivotal", " fueled", " transitioning"], ["ed", " myriad", "i", "es", " heavily", " swiftly", "o", "e"], ["ed", " myriad", " fueled", " heavily", "es", " pivotal", " skyrocket", " sprawling"], [" swiftly", " myriad", " fueled", " heavily", "ed", " skyrocket", " sprawling", " pivotal"], [" swiftly", " myriad", "<|endoftext|>", " sprawling", "ed", " heavily", " arguably", " &"], ["<|endoftext|>", "\n\n", " \n\n", "  \n\n", " swiftly", " myriad", "\r\n\r\n", " ,"], [" swiftly", " .", " myriad", " ``", " ,", " heavily", " amid", " .**"], [" ``", " ,", " swiftly", " myriad", " .", " heavily", " fueled", "ed"], [" ,", " .", "<|endoftext|>", " heavily", " swiftly", " myriad", "ed", " ;"], [" ,", "\n\n", " \n\n", " .", " swiftly", " heavily", " --", " myriad"], [" ,", " heavily", " ___", " .", " swiftly", " ``", " __", " .**"], [" ___", " __", " ,", " .", " .**", " ``", " ____", " ?"], ["\n\n", " ,", " \n\n", " __", " ___", " .", " ?", " _"], ["\n\n", " \n\n", " .", " ,", " ___", " ?", " __", " heavily"], [" ___", " __", " ____", " \n\n", " .", " _____", " .**", " \n  \n"], [" ___", " .", " __", " \n\n", " ?", " ____", "\n\n", " ,"], [" .", " ___", " ,", " __", " ...", " \u2026", " ?", " ____"], [" .", " ___", " ?", " ,", " .**", " heavily", " \u2026", " .\""], [" workflows", " leveraging", " workflow", " ___", " .**", " infrastructure", " fueled", " seamlessly"], [" .**", " **\u201c", " leveraging", " ___", " workflows", " .", " **", " infrastructure"], [" \u2026", " .**", " \u3002", " .", "\u2026*", " **\u201c", " \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026", " workflows"], [" .**", " .", " \u3002", " synchronized", " asynchronous", " \u2026", " **\u201c", " .\""], [" .", " .**", " synchronized", " /", " ?", " workflows", " \u3002", " asynchronous"], [" synchronized", " workflows", " .", " tasks", " workflow", " /", " synchronization", " asynchronous"], [" synchronized", " asynchronous", " workflows", " .**", " synchronization", " asynchronously", " synchronous", " workflow"], [" workflows", " asynchronous", " workflow", " asynchronously", " synchronized", " tasks", " synchronous", " workload"], [" workflows", " asynchronous", " workflow", " tasks", " asynchronously", " processing", " synchronous", " workload"], [" workflows", " asynchronous", " asynchronously", " tasks", " processing", " workflow", " processes", " synchronous"], [" workflows", " tasks", " asynchronous", " processing", " asynchronously", " workflow", " processes", " synchronous"], [" workflows", " tasks", " asynchronous", " asynchronously", " processing", " workflow", " processes", " synchronous"], [" workflows", " asynchronous", " processing", " tasks", " asynchronously", " workflow", " processes", " synchronous"], [" workflows", " asynchronous", " tasks", " processing", " workflow", " directly", " processes", " asynchronously"], [" asynchronous", " workflows", " tasks", " directly", " processing", " ANY", " concurrent", " concurrently"], [" ANY", " asynchronous", " workflows", " directly", " **", "\u4efb\u4f55\u5f62\u5f0f\u7684", " any", " asynchronously"], [".**", ".\\", " .", " .**", " .\"", "**.", " ANY", "."], [".**", "**.", " .**", " .", ".\\", ".", ".*", "*."], [".**", " .**", ".*", "**.", ".\\", " .\"", ".\"", "*."], [".**", ".\"", ".*", " .**", ".`", ".\\", ".\\\"", " .\""], [".**", ".*", ".\"", ".\\", " .**", ".`", ".\\\"", ".</"], [".**", ".\"", ".*", ".\\", ".`", " .**", ".</", ".\\\""], [".**", ".\"", ".*", ".\\", ".`", " .**", ".\\\"", ".</"], [".**", ".\"", " .**", ".*", ".`", "\u3002**", ":**", ".\u201d"], [".**", ".\"", " .**", ".`", ".*", "\u3002**", ":**", ".\u201d"], [".**", ".\"", " .**", ".`", ".*", ":**", ".'", ".</"], [".**", ".\"", ".`", " .**", ".*", ":**", ".'", ".\u00bb"], [".**", ".\"", ".`", ".*", ".'", " on", " .**", ".\u00bb"], [".**", " on", ".\"", ".`", ".*", " .**", ".'", ".\u00bb"], [".**", " .**", "**", "**.", "\u3002**", ":**", ".\"", ").**"]], "p": [[0.7145, 0.0853, 0.0486, 0.0203, 0.019, 0.0079, 0.0075, 0.0075], [0.6396, 0.0764, 0.011, 0.0103, 0.0091, 0.0063, 0.0055, 0.0043], [0.3309, 0.138, 0.1217, 0.1074, 0.0948, 0.0508, 0.0371, 0.0199], [0.3057, 0.0111, 0.0072, 0.0063, 0.0063, 0.0056, 0.0056, 0.0053], [0.9807, 0.0048, 0.0018, 0.0015, 0.0008, 0.0008, 0.0003, 0.0002], [0.9794, 0.0017, 0.0007, 0.0007, 0.0007, 0.0006, 0.0004, 0.0003], [0.975, 0.0037, 0.0016, 0.0007, 0.0006, 0.0005, 0.0005, 0.0005], [0.9138, 0.0066, 0.0045, 0.004, 0.0033, 0.0029, 0.0016, 0.0015], [0.5147, 0.084, 0.035, 0.0241, 0.0241, 0.0212, 0.0187, 0.0137], [0.6151, 0.0073, 0.0064, 0.006, 0.006, 0.005, 0.0039, 0.0034], [0.8395, 0.0287, 0.0064, 0.005, 0.0041, 0.0039, 0.0037, 0.0034], [0.6124, 0.0105, 0.0077, 0.006, 0.005, 0.005, 0.0047, 0.0032], [0.6822, 0.0067, 0.0052, 0.0049, 0.0041, 0.0036, 0.0026, 0.0025], [0.4692, 0.0104, 0.0091, 0.0081, 0.0067, 0.0055, 0.0052, 0.0049], [0.1462, 0.0211, 0.0154, 0.0145, 0.0145, 0.0145, 0.012, 0.0113], [0.0882, 0.0286, 0.0237, 0.021, 0.0197, 0.0185, 0.0135, 0.0127], [0.2267, 0.0224, 0.0224, 0.0211, 0.0106, 0.01, 0.0078, 0.0078], [0.1164, 0.0202, 0.0157, 0.0157, 0.0131, 0.0096, 0.009, 0.0079], [0.0482, 0.0376, 0.0177, 0.0147, 0.0138, 0.013, 0.0108, 0.0095], [0.1203, 0.0997, 0.0127, 0.0119, 0.0105, 0.0105, 0.0099, 0.0087], [0.9907, 0.0043, 0.002, 0.0005, 0.0002, 0.0001, 0.0001, 0.0001], [0.0673, 0.0318, 0.0248, 0.0219, 0.0193, 0.0133, 0.0125, 0.011], [0.1042, 0.0524, 0.0463, 0.0299, 0.0233, 0.017, 0.0117, 0.0091], [0.2537, 0.1276, 0.0343, 0.0173, 0.0143, 0.0119, 0.0092, 0.0087], [0.1582, 0.0619, 0.0453, 0.04, 0.0228, 0.0228, 0.0167, 0.0138], [0.1164, 0.0334, 0.0244, 0.0229, 0.0179, 0.0158, 0.0158, 0.0123], [0.3703, 0.2246, 0.0568, 0.0252, 0.0196, 0.0135, 0.0127, 0.0099], [0.7585, 0.0549, 0.0485, 0.0313, 0.0294, 0.0178, 0.0058, 0.0033], [0.3053, 0.1634, 0.1634, 0.0772, 0.0195, 0.0183, 0.0172, 0.0098], [0.5496, 0.2022, 0.0744, 0.0177, 0.0146, 0.0129, 0.0114, 0.0095], [0.2591, 0.1781, 0.1303, 0.0742, 0.045, 0.0291, 0.0241, 0.0213], [0.4259, 0.095, 0.0576, 0.0478, 0.0372, 0.0226, 0.0146, 0.0107], [0.3413, 0.0462, 0.0383, 0.028, 0.0263, 0.016, 0.0124, 0.0085], [0.0472, 0.0368, 0.0197, 0.0163, 0.0153, 0.0135, 0.0135, 0.0105], [0.1492, 0.0333, 0.0157, 0.0122, 0.0122, 0.0115, 0.009, 0.0084], [0.2614, 0.0484, 0.0401, 0.0293, 0.0259, 0.0079, 0.0074, 0.0054], [0.0804, 0.0519, 0.0203, 0.0168, 0.0109, 0.0102, 0.009, 0.009], [0.0916, 0.0433, 0.0382, 0.0169, 0.0124, 0.0116, 0.0071, 0.0071], [0.0442, 0.0304, 0.0222, 0.0173, 0.0144, 0.0127, 0.0112, 0.0105], [0.062, 0.0454, 0.0426, 0.0189, 0.0189, 0.0178, 0.0167, 0.0157], [0.1131, 0.0938, 0.0416, 0.0416, 0.0269, 0.0209, 0.0185, 0.0185], [0.2414, 0.1214, 0.0736, 0.0736, 0.065, 0.0506, 0.0198, 0.0175], [0.2063, 0.1607, 0.0713, 0.0629, 0.049, 0.0406, 0.018, 0.0159], [0.1683, 0.1021, 0.0901, 0.0546, 0.0513, 0.0311, 0.0258, 0.0101], [0.2434, 0.0841, 0.079, 0.0578, 0.051, 0.0479, 0.02, 0.0107], [0.1117, 0.0817, 0.0677, 0.0466, 0.0411, 0.0301, 0.0194, 0.0171], [0.1055, 0.0725, 0.0468, 0.0413, 0.0235, 0.0183, 0.0172, 0.0152], [0.04, 0.0275, 0.0259, 0.0243, 0.0178, 0.0167, 0.013, 0.0108], [0.0763, 0.0193, 0.0181, 0.0133, 0.0125, 0.0103, 0.0086, 0.008], [0.1181, 0.0594, 0.0383, 0.036, 0.0318, 0.0247, 0.0232, 0.0205], [0.3722, 0.1369, 0.0733, 0.0733, 0.0733, 0.0536, 0.0346, 0.0325], [0.6679, 0.1161, 0.0484, 0.0333, 0.0293, 0.0276, 0.0115, 0.0062], [0.9653, 0.0122, 0.0107, 0.0035, 0.0024, 0.0024, 0.0006, 0.0006], [0.953, 0.0154, 0.0136, 0.0082, 0.0027, 0.0024, 0.0013, 0.0005], [0.9298, 0.0219, 0.0193, 0.0133, 0.0049, 0.0038, 0.002, 0.0011], [0.9206, 0.0245, 0.0217, 0.0131, 0.0062, 0.0043, 0.002, 0.0018], [0.9944, 0.0032, 0.0008, 0.0006, 0.0003, 0.0002, 0.0001, 0.0001], [0.994, 0.0032, 0.0012, 0.0006, 0.0003, 0.0001, 0.0001, 0.0001], [0.9903, 0.0052, 0.0013, 0.0012, 0.0008, 0.0003, 0.0001, 0.0001], [0.9847, 0.0075, 0.0024, 0.0024, 0.0012, 0.0005, 0.0004, 0.0001], [0.9714, 0.0122, 0.0065, 0.0031, 0.0015, 0.0009, 0.0007, 0.0006], [0.9788, 0.0066, 0.004, 0.0027, 0.0021, 0.0011, 0.001, 0.0004], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [33298, 52174, 28324, 11824, 2349, 3321, 3425, 3672, 4606, 2218, 2162, 1767, 1498, 2435, 5024, 5548, 4392, 4745, 7306, 14325, 15814, 9969, 10834, 6610, 4385, 5246, 5413, 6069, 5872, 8662, 9023, 13355, 12599, 21369, 16714, 10199, 5312, 4595, 5303, 5896, 5437, 7284, 8533, 10257, 13801, 9458, 9428, 5972, 6472, 3563, 8519, 20097, 31832, 28401, 18466, 11591, 4961, 1270, 985, 334, 319, 339, 263]}}, {"pos": 497, "top": [[" \u2013", "  \n", ".", "\u2013", "\u2026..", "   \n", "**\u2013", "\u2026."], [" \u2013**", "**\u2013", " **\u2013", ";**", " **'", "-**", " (**", " '**"], ["\u2026**", "\uff1f**", " \u2013**", "\u3002**", "**\u2013", "\uff1a**", "-**", ";**"], [" **\u3010", "\uff1f**", " **\u201e", "\uff1a**", " -**", "\u3002**", " **\u25a0", " **:**"], [" -**", " **\u3010", "-**", " **\u201c", " **\u201e", "\uff1a**", " **", "\u3002**"], ["-**", " **\u3010", " **", " **\u201c", " **\u201e", "\uff1a**", " -**", " **\""], [" -**", " **\u3010", " **", "\uff1a**", "\u3002**", " **'", " **\u201e", "\uff01**"], [" **\u201e", " **\u3010", " -**", " **", " **'", "-**", "\uff1a**", " **\""], [" **\u201e", " **\u3010", " **\u201c", " **'", " **", " **\u2018", "\uff1a**", " -**"], [" **", " **'", " -**", " **\u201e", "-**", " **\u3010", " **\"", " **\u2018"], [" **", " -**", " **\u3010", " **'", " **\u201e", " **\u2018", " **\"", "-**"], [" **", " **'", " **\u3010", " **\u201e", " -**", " '**", " **\u2018", " **\u25a0"], [" **", " **\u201e", " **'", " **\u3010", " -**", "-**", " **\u2018", " '**"], [" **", " **'", " **\u201e", "-**", " **\u2018", " -**", " **\u3010", " '**"], [" **", " --", " **'", " **\u2018", " folks", " -**", " arguably", " revamped"], [" **", " --", " arguably", "s", " folks", " incredibly", " **\u2018", " **'"], ["s", " **", " arguably", " incredibly", " folks", " **\u2018", " myriad", " transitioning"], [" **", "\u2026**", "...**", " **'", " **\u2018", "-**", " **\"", "**"], [" **", " **'", "...**", " incredibly", "\u2026**", "s", " **\u2018", " **\""], [" **", " arguably", " **'", " incredibly", "s", " **\u2018", " folks", "...**"], [" \n\n", "\n\n", "<|endoftext|>", "  \n\n", " **", " arguably", " swiftly", " myriad"], [" **", " **'", " !**", " **\u2018", " **\u3010", " '**", " **\u25a0", " -**"], [" **", " **'", " --", " arguably", " **\u2018", " swiftly", " !**", " -**"], [" --", " **", "\n\n", " arguably", " \n\n", " swiftly", " myriad", " merely"], ["\n\n", " \n\n", "  \n\n", "   \n\n", "\r\n\r\n", " \r\n\r\n", "...**", " **"], [" **", " \n\n", "...**", "\u2026**", " **'", " **\u3010", "\n\n", " **\u2018"], [" **", "\n\n", " \n\n", " **'", " **\u2018", "  \n\n", "\u2026**", "...**"], ["\n\n", " \n\n", " **", "  \n\n", "   \n\n", " --", " **'", " arguably"], ["\n\n", " \n\n", " **", "  \n\n", "   \n\n", " **'", "\r\n\r\n", " \r\n\r\n"], [" \n\n", "  \n\n", " **", "\n\n", "   \n\n", " \n  \n", " \n", " \n\n\n"], [" \n\n", "\n\n", "  \n\n", " **", " ...", " \u2026", "   \n\n", " \n"], [" **", " \n\n", "\n\n", "  \n\n", " incredibly", " ...", " heavily", " \u2026"], [" heavily", " incredibly", " rapidly", " largely", " truly", " essentially", " because", " even"], [" heavily", " incredibly", " aggressively", " essentially", " rapidly", " arguably", " relentlessly", " truly"], [" heavily", " aggressively", " incredibly", " relentlessly", " relentless", " rapidly", " notoriously", " deeply"], [" heavily", " notoriously", " aggressively", " incredibly", " relentless", " relentlessly", " rapidly", " \u2013"], [" aggressively", " heavily", " notoriously", " relentlessly", " rapidly", " relentless", " incredibly", " insanely"], [" aggressively", " heavily", " relentlessly", " rapidly", " relentless", " notoriously", " incredibly", " inefficient"], [" aggressively", " rapidly", " relentless", " relentlessly", " incredibly", " heavily", " notoriously", " inefficient"], [" rapidly", " incredibly", " relentless", " aggressively", " insanely", " heavily", " inefficient", " \u200b\u200b"], [" rapidly", " incredibly", " aggressively", " heavily", " relentless", " insanely", " massively", " rapid"], [" rapidly", " rapid", " aggressively", " fast", " frantic", " quickly", " heavily", " exploding"], [" rapidly", " aggressively", " fast", " rapid", " heavily", " inherently", " massively", " inefficient"], [" rapidly", " rapid", " fast", " bottleneck", " aggressively", " exploding", " panicked", " massively"], [" rapidly", " rapid", " fast", " aggressively", " panicked", " exploding", " quickly", " bottleneck"], [" rapidly", " rapid", " quickly", " aggressively", " fast", " because", " inherently", " inevitably"], [" rapidly", "  \n\n", " inevitable", " inevitably", " inherently", " panicked", " rapid", " fast"], [" combined", " because", " rapidly", " combining", " inevitable", " attempting", " inevitably", " quickly"], [" combined", " inevitable", " attempting", " combining", " rapidly", "  \n\n", " panicked", " inevitably"], ["  \n", "  \n\n", "\u4f1a\u56e0\u4e3a", " attempting", "  \n  \n", " attempts", " inevitable", "\u6025\u4e8e"], ["  \n", "  \n\n", " \n", " \n\n", "   \n", "  \n  \n", "  \r\n", "\n\n"], ["  \n", " \n", "  \n\n", " \n\n", "   \n", "  \n  \n", "\n\n", "  \r\n"], ["  \n", "  \n\n", " \n", " \n\n", "   \n", "  \n  \n", "\n\n", "\n"], ["  \n", " \n", "   \n", "  \n\n", "\n", " \n\n", "  \n  \n", "    \n"], ["  \n", " \n", " \n\n", "  \n\n", "   \n", "\n", "    \n", "  \n  \n"], ["  \n", " \n", " \n\n", "   \n", "\n", "  \n\n", "  \r\n", " attempting"], ["  \n", " \n", "\n\n", "\n", "  \n\n", " \n\n", "   \n", "  \n  \n"], ["  \n", "\n\n", " \n", "\n", "  \n\n", " \n\n", "   \n", "  \n  \n"], ["  \n", " \n", "\n\n", " \n\n", "  \n\n", "\n", "   \n", "    \n"], ["  \n", "\n\n", " End", "\n", " Mid", " \n", " end", "  \n\n"], ["  \n", "\n\n", "\n", " \n", " \n\n", "  \n\n", " End", " end"], ["\n\n", "  \n", " End", " \n\n", "\n", " \n", " end", "  \n\n"], ["\n", "  \n", "\n\n", " End", " \n", " Mid", "  \n\n", " Your"]], "p": [[0.9305, 0.016, 0.0133, 0.0133, 0.0059, 0.0034, 0.0032, 0.0017], [0.5678, 0.0768, 0.0528, 0.0466, 0.0411, 0.0363, 0.0171, 0.0134], [0.5227, 0.1029, 0.0707, 0.0551, 0.0379, 0.0334, 0.0203, 0.0203], [0.2806, 0.1326, 0.0911, 0.0804, 0.071, 0.043, 0.043, 0.0315], [0.4096, 0.1036, 0.0807, 0.0807, 0.0628, 0.0628, 0.0204, 0.0204], [0.214, 0.1667, 0.1146, 0.1146, 0.0613, 0.0478, 0.0372, 0.029], [0.2592, 0.2288, 0.0743, 0.0655, 0.045, 0.0398, 0.0351, 0.031], [0.2348, 0.1829, 0.1109, 0.1109, 0.0762, 0.0673, 0.036, 0.0248], [0.2881, 0.2542, 0.0643, 0.0643, 0.0567, 0.0442, 0.0268, 0.0268], [0.2485, 0.1174, 0.0807, 0.0807, 0.0712, 0.0628, 0.0432, 0.0432], [0.4224, 0.1995, 0.0734, 0.0648, 0.0445, 0.0306, 0.021, 0.0186], [0.6598, 0.1012, 0.0614, 0.0372, 0.0372, 0.0121, 0.0121, 0.0094], [0.55, 0.1083, 0.0744, 0.058, 0.0352, 0.031, 0.0213, 0.0177], [0.4792, 0.129, 0.0782, 0.0419, 0.0419, 0.0393, 0.0198, 0.0198], [0.4962, 0.1715, 0.017, 0.0159, 0.0117, 0.011, 0.0103, 0.0046], [0.1681, 0.0658, 0.0352, 0.0331, 0.0292, 0.0214, 0.0114, 0.0095], [0.3528, 0.3114, 0.0328, 0.0256, 0.0199, 0.0088, 0.0065, 0.0057], [0.8715, 0.0298, 0.0298, 0.015, 0.008, 0.0052, 0.0043, 0.0026], [0.8273, 0.0387, 0.0161, 0.0104, 0.0081, 0.0081, 0.0072, 0.0036], [0.2428, 0.0422, 0.0396, 0.0396, 0.024, 0.0199, 0.0137, 0.0114], [0.2565, 0.1461, 0.0886, 0.069, 0.0224, 0.0164, 0.012, 0.0088], [0.4944, 0.0915, 0.0169, 0.0149, 0.0109, 0.0091, 0.0091, 0.0066], [0.4109, 0.0433, 0.0359, 0.015, 0.0124, 0.0085, 0.0085, 0.0066], [0.1093, 0.0799, 0.0705, 0.0294, 0.0276, 0.0202, 0.0123, 0.0108], [0.4964, 0.438, 0.0462, 0.0036, 0.0028, 0.0024, 0.0019, 0.0014], [0.5074, 0.1063, 0.0778, 0.0472, 0.0416, 0.0286, 0.0253, 0.0237], [0.2792, 0.2792, 0.2042, 0.0139, 0.0096, 0.0084, 0.007, 0.007], [0.5739, 0.3481, 0.0324, 0.0252, 0.001, 0.001, 0.0009, 0.0008], [0.5332, 0.3664, 0.0496, 0.0341, 0.0017, 0.0014, 0.0012, 0.0009], [0.7149, 0.2048, 0.0356, 0.0277, 0.0035, 0.0016, 0.0011, 0.0009], [0.5832, 0.2431, 0.1013, 0.029, 0.0107, 0.0054, 0.0014, 0.0014], [0.2588, 0.2588, 0.157, 0.0373, 0.0212, 0.0155, 0.0114, 0.0069], [0.0386, 0.0301, 0.0161, 0.0134, 0.0125, 0.0125, 0.0118, 0.0118], [0.0445, 0.0346, 0.021, 0.0185, 0.0154, 0.0136, 0.0127, 0.0106], [0.048, 0.031, 0.031, 0.0188, 0.0156, 0.0137, 0.0101, 0.0101], [0.0467, 0.0266, 0.0266, 0.0221, 0.0195, 0.0183, 0.0161, 0.0126], [0.0369, 0.0288, 0.0239, 0.0186, 0.0145, 0.0145, 0.0136, 0.0099], [0.0495, 0.0282, 0.0234, 0.0219, 0.0206, 0.0194, 0.0161, 0.0151], [0.0368, 0.0325, 0.0238, 0.0223, 0.021, 0.0197, 0.0185, 0.0144], [0.0479, 0.0329, 0.0273, 0.0257, 0.0213, 0.0166, 0.0156, 0.0156], [0.0701, 0.0292, 0.0275, 0.0228, 0.0201, 0.0189, 0.0189, 0.0156], [0.1036, 0.0336, 0.0336, 0.0246, 0.0204, 0.0169, 0.0169, 0.0149], [0.0504, 0.0369, 0.027, 0.0253, 0.0185, 0.0174, 0.0164, 0.0154], [0.0673, 0.0435, 0.0264, 0.0248, 0.0233, 0.0193, 0.0181, 0.015], [0.0777, 0.0471, 0.0304, 0.0237, 0.0196, 0.0163, 0.0153, 0.0144], [0.1328, 0.0336, 0.0262, 0.0262, 0.0246, 0.0231, 0.0204, 0.0149], [0.0616, 0.0579, 0.0451, 0.0257, 0.0241, 0.02, 0.02, 0.0166], [0.0899, 0.07, 0.0618, 0.0425, 0.0227, 0.0214, 0.0166, 0.0156], [0.042, 0.0307, 0.0255, 0.0211, 0.0198, 0.0198, 0.0164, 0.0164], [0.4455, 0.0414, 0.0112, 0.0098, 0.0098, 0.0082, 0.0068, 0.0064], [0.9858, 0.0075, 0.0031, 0.0009, 0.0006, 0.0004, 0.0004, 0.0001], [0.9696, 0.0122, 0.0095, 0.0031, 0.0015, 0.0006, 0.0006, 0.0004], [0.8977, 0.0506, 0.0164, 0.0128, 0.0047, 0.0044, 0.002, 0.0009], [0.9642, 0.0257, 0.0031, 0.0031, 0.0011, 0.0011, 0.0004, 0.0003], [0.921, 0.0667, 0.0029, 0.0026, 0.0023, 0.0012, 0.0004, 0.0004], [0.8136, 0.1414, 0.0062, 0.0043, 0.0035, 0.0031, 0.0012, 0.0011], [0.936, 0.0194, 0.0151, 0.0063, 0.0063, 0.0056, 0.0038, 0.0006], [0.9296, 0.0281, 0.015, 0.0091, 0.0055, 0.0034, 0.003, 0.0004], [0.9345, 0.032, 0.0118, 0.0063, 0.0049, 0.0038, 0.0034, 0.0004], [0.7148, 0.0518, 0.0457, 0.0277, 0.0245, 0.0245, 0.0245, 0.0066], [0.5332, 0.2223, 0.0722, 0.0496, 0.0301, 0.0182, 0.0182, 0.0098], [0.2814, 0.2814, 0.1329, 0.0712, 0.0628, 0.0554, 0.0432, 0.0204], [0.5052, 0.3472, 0.0775, 0.0323, 0.0196, 0.0056, 0.0013, 0.0013]], "ranks": {"Rust": [59271, 116299, 95028, 37001, 40652, 35251, 41663, 50641, 56440, 56952, 62829, 83710, 60355, 58211, 47803, 28585, 42379, 53528, 96541, 91368, 118264, 106983, 99653, 54994, 49700, 49687, 50204, 24529, 26605, 13480, 11379, 11293, 10338, 10021, 10427, 13943, 15243, 15290, 17278, 19025, 14227, 7934, 7457, 9128, 8278, 7080, 8136, 8814, 5918, 6998, 5985, 6917, 13844, 11741, 9312, 1175, 766, 287, 233, 33, 26, 23, 10]}}, {"pos": 498, "top": [[" \u2013", ".", "\u2013", " \u2013,", ".\u2013", "\u2013and", "\u200b\u200b", " (\u201e"], ["**\u2013", " \u2013**", " \u2013", "\u2013and", " \u2013,", ".\u2013", " **\u2013", " *\u2013"], ["\u2013", " \u2013", ".", ".\u2013", "\u2013and", "\u2026..", "\u3002", " \u2013,"], [" **\u201e", "\uff1f**", "\u52a0\u62ff\u5927", " milfs", " cumshot", "``", "*\u201c.", " Blowjob"], ["ly", "\u4e2d", " *@", " **\u201e", "\u7684", "a", "\u5728", "\uff08"], ["\u4e2d", " **\u201e", "\u5728", "\uff01", "\uff1f**", "\u52a0\u62ff\u5927", "\uff1f", "\u7684"], ["\u4e2d", "\u5728", "\u7684", "\uff01", "\u548c", "\uff1f**", "\u3002", "\uff1f"], [" **\u201e", "\u4e2d", "\uff1f**", "\u5728", "**!", "\u7684", "ly", "\uff01**"], [" **\u201e", "   \n\n", "    \n\n", " *@", " *\u201e", "**!", " \n\n\n", "  \n\n\n"], [" **\u201e", "\u52a0\u62ff\u5927", "\u65b0\u52a0\u5761", "aufen", "ingas", " **\u2013", "-**", "raries"], [" **\u201e", "ly", "a", " *\u201e", "\u52a0\u62ff\u5927", "\u0627", " **\u2013", "\u0441\u044f"], [" **\u201e", "\u52a0\u62ff\u5927", " *\u201e", " milfs", " **\u3010", " **.**", " handjob", " **"], [" **\u201e", " milfs", "\u52a0\u62ff\u5927", " **:", " **.**", "-**", "htags", " cumshot"], [" **\u201e", "\u52a0\u62ff\u5927", " milfs", "pedia", " freaking", "raries", "-**", " pornstar"], [" **\u201e", " busted", "\u52a0\u62ff\u5927", "aft", " seperate", "aider", "a", " --"], [" incredibly", " seperate", " alot", " busted", " freaking", " seper", " whilst", " showcasing"], [" incredibly", "a", " standout", " folks", " busted", "ing", " alot", " transitioning"], [" **\u201e", " incredibly", "-**", "**!", "a", "!**", " folks", " **"], [" incredibly", " **\u201e", " transitioning", " folks", " busted", " savvy", " **", " alot"], [" incredibly", "a", " transitioning", " battling", " folks", " arguably", " amongst", " swiftly"], [" incredibly", "\n\n", "a", " swiftly", " arguably", " vastly", "  \n\n", " myriad"], [" incredibly", " **\u201e", " **", "\u62e5\u6709\u7740", " transitioning", " arguably", " impactful", " skyrocket"], [" incredibly", " arguably", " **", " --", " swiftly", " transitioning", "\u62e5\u6709\u7740", " battling"], [" --", " arguably", " swiftly", " incredibly", " battling", " myriad", " vastly", " transitioning"], ["\n\n", " \n\n", "  \n\n", "   \n\n", "\r\n\r\n", " \r\n\r\n", "    \n\n", "\t\n\n"], [" **", " **\u2018", " \n\n", "  \n\n", " arguably", " incredibly", " swiftly", " battling"], [" **", "\n\n", " \n\n", " arguably", " battling", " incredibly", " swiftly", " vastly"], ["\n\n", " \n\n", "  \n\n", " **", " arguably", " --", " swiftly", " incredibly"], ["\n\n", "  \n\n", " \n\n", " **", "\r\n\r\n", "   \n\n", " arguably", " \r\n\r\n"], ["  \n\n", "\n\n", " \n\n", "   \n\n", " **", " arguably", "\r\n\r\n", " incredibly"], ["\n\n", " \n\n", "  \n\n", " \u2013", " incredibly", " heavily", " arguably", " just"], [" \n\n", "  \n\n", "\n\n", " \u2013", " incredibly", " just", " heavily", " massive"], [" \u2013", " heavily", " just", " incredibly", " essentially", " rapidly", " arguably", " largely"], [" \u2013", " heavily", " incredibly", " aggressively", " arguably", " essentially", " specifically", " rapidly"], [" heavily", " \u2013", " incredibly", " aggressively", " relentlessly", " arguably", " rapidly", " specifically"], [" \u2013", " heavily", "  \n\n", "\u2013", " aggressively", " incredibly", " rapidly", "<|endoftext|>"], [" heavily", " \u2013", " aggressively", " incredibly", " relentlessly", "  \n\n", " relentless", " rapidly"], [" \u2013", " heavily", " aggressively", " incredibly", " rapidly", " relentlessly", " relentless", " massively"], [" \u2013", " heavily", " incredibly", " aggressively", " rapidly", " relentlessly", " relentless", " massively"], [" \u2013", " incredibly", " heavily", " rapidly", " aggressively", " relentless", "  \n\n", " relentlessly"], [" incredibly", " heavily", " rapidly", " aggressively", " \u2013", " relentless", " massively", " relentlessly"], [" rapidly", " aggressively", " heavily", " incredibly", " relentless", " massively", " relentlessly", " massive"], [" aggressively", " heavily", " incredibly", " rapidly", " massively", " relentless", " massive", " inherently"], [" aggressively", " rapidly", " heavily", " incredibly", " massively", " relentless", " massive", " quickly"], [" aggressively", " rapidly", " heavily", " incredibly", " relentless", " rapid", " massively", " massive"], [" rapidly", " aggressively", "  \n\n", " heavily", " because", " rapid", " inherently", " quickly"], ["  \n\n", " rapidly", " aggressively", " **", " heavily", " inherently", " relentless", " rapid"], [" aggressively", " rapidly", "  \n\n", " **", " heavily", " inherently", " incredibly", " because"], [" **", "-**", " **\"", "  \n\n", " **+", " **\u2013", " **-", " aggressively"], ["-**", ":", " attempting", ":\\", "\u56e0\u4e3a\u4f60", "\u4e0d\u662f\u56e0\u4e3a", ":*", ":\\\\"], [":", " attempting", ":*", "\u6700\u6015", "\u4e0d\u662f\u56e0\u4e3a", "Attempting", "\u56e0\u4e3a\u4f60", ":<"], [" attempting", "Attempting", " Attempt", " *\"", "\u8bd5\u56fe", " *\u201c", " Attempts", ":*"], [" *\u201c", " *\"", " attempting", ":*", "Attempting", " Initially", " expecting", "-**"], [" *\"", " *\u201c", "\u7406\u7531\u306f", " attempting", ":*", "Attempting", " *@", "-**"], [" attempting", "\u8bd5\u56fe", "Attempting", " Attempt", " Attempts", " Trying", " trying", " *\""], [":end", "/end", "-end", " end", " attempting", "\u672b\u7aef", "_End", " End"], [" attempting", " Trying", "Attempting", ":end", "\u8bd5\u56fe", " Specifically", " *\u201c", " Attempt"], [" attempting", "\u8bd5\u56fe", " Trying", ":end", "Attempting", " End", "/end", " trying"], [" Trying", " attempting", " End", "Attempting", ":end", " Specifically", " trying", "\u8bd5\u56fe"], [" Mid", " End", "Mid", " mid", " end", "-end", " Rust", ":end"], [" Mid", " End", "Mid", " mid", " end", ".mid", " Rust", " scripting"], [" End", " end", " Mid", "End", "-end", "Mid", " Android", "_end"], ["Mid", "End", "You", " End", "Your", " Mid", "Android", "On"]], "p": [[0.7521, 0.2155, 0.0114, 0.0039, 0.0035, 0.0022, 0.0021, 0.0012], [0.2304, 0.1795, 0.0902, 0.0454, 0.04, 0.0189, 0.0157, 0.0157], [0.434, 0.2983, 0.1097, 0.0587, 0.0216, 0.0168, 0.0168, 0.0096], [0.0656, 0.02, 0.0188, 0.0166, 0.0107, 0.0074, 0.0069, 0.0051], [0.1559, 0.0573, 0.0539, 0.0447, 0.0394, 0.0254, 0.0211, 0.0198], [0.0784, 0.0573, 0.0506, 0.0506, 0.037, 0.0348, 0.0254, 0.0254], [0.4206, 0.1132, 0.0569, 0.0324, 0.0269, 0.0237, 0.0237, 0.0163], [0.4003, 0.0372, 0.029, 0.0256, 0.024, 0.0226, 0.0176, 0.0155], [0.3078, 0.2717, 0.0286, 0.0197, 0.0163, 0.0144, 0.0144, 0.0127], [0.2103, 0.0994, 0.0126, 0.0064, 0.0053, 0.0049, 0.0039, 0.0039], [0.2026, 0.1392, 0.0375, 0.0242, 0.0227, 0.0156, 0.0065, 0.0065], [0.4524, 0.0106, 0.0073, 0.0069, 0.0054, 0.0042, 0.0042, 0.0042], [0.4524, 0.01, 0.0088, 0.0069, 0.0065, 0.0053, 0.0037, 0.0037], [0.1428, 0.0193, 0.0081, 0.0059, 0.0049, 0.0049, 0.0036, 0.0034], [0.0141, 0.0141, 0.0125, 0.0086, 0.0081, 0.0076, 0.0076, 0.0076], [0.1054, 0.0266, 0.0208, 0.0152, 0.0063, 0.0063, 0.0063, 0.0063], [0.1769, 0.0737, 0.0327, 0.0255, 0.0175, 0.0136, 0.0136, 0.0113], [0.1913, 0.109, 0.109, 0.0484, 0.0259, 0.0189, 0.0167, 0.0148], [0.2263, 0.1763, 0.0145, 0.0136, 0.0128, 0.0106, 0.0082, 0.0077], [0.3357, 0.0243, 0.0215, 0.0148, 0.0148, 0.013, 0.0074, 0.0074], [0.1046, 0.0765, 0.0385, 0.0219, 0.0219, 0.0182, 0.0171, 0.0142], [0.043, 0.0335, 0.0203, 0.0085, 0.0079, 0.0075, 0.007, 0.0066], [0.0414, 0.0208, 0.0196, 0.0162, 0.0152, 0.0126, 0.0126, 0.0119], [0.0389, 0.0303, 0.0284, 0.0222, 0.0208, 0.0126, 0.0105, 0.0077], [0.5656, 0.1836, 0.162, 0.0282, 0.0076, 0.0023, 0.0019, 0.0018], [0.2428, 0.0212, 0.0146, 0.0121, 0.0107, 0.0088, 0.0078, 0.0061], [0.0323, 0.0323, 0.0173, 0.0135, 0.0127, 0.0119, 0.0099, 0.0072], [0.5369, 0.1357, 0.0469, 0.0184, 0.0111, 0.0072, 0.0063, 0.006], [0.6521, 0.1455, 0.1284, 0.0163, 0.0077, 0.0064, 0.0018, 0.0015], [0.4061, 0.2791, 0.2791, 0.0062, 0.0048, 0.0011, 0.001, 0.0009], [0.3358, 0.2308, 0.1586, 0.0202, 0.007, 0.0065, 0.0062, 0.0058], [0.1202, 0.1061, 0.0879, 0.0643, 0.0442, 0.0252, 0.0196, 0.0135], [0.1633, 0.0302, 0.025, 0.0162, 0.0152, 0.0152, 0.0118, 0.0118], [0.1463, 0.061, 0.0419, 0.0224, 0.0224, 0.0224, 0.0211, 0.0164], [0.0693, 0.0693, 0.0395, 0.0307, 0.0175, 0.0175, 0.0165, 0.0155], [0.4688, 0.0494, 0.0206, 0.0171, 0.016, 0.016, 0.0133, 0.0117], [0.0708, 0.0587, 0.0551, 0.0403, 0.0277, 0.026, 0.0245, 0.0216], [0.1014, 0.0697, 0.0543, 0.0351, 0.0273, 0.0256, 0.0241, 0.0176], [0.0966, 0.0517, 0.0517, 0.0378, 0.0295, 0.0244, 0.023, 0.0179], [0.0731, 0.0606, 0.0502, 0.0391, 0.0345, 0.0269, 0.0223, 0.0209], [0.0802, 0.0754, 0.0457, 0.0429, 0.0356, 0.023, 0.023, 0.0203], [0.091, 0.0665, 0.0665, 0.043, 0.0191, 0.0191, 0.0168, 0.0148], [0.08, 0.0623, 0.0623, 0.0485, 0.0215, 0.019, 0.0157, 0.0148], [0.0998, 0.0881, 0.0645, 0.0569, 0.0209, 0.0209, 0.0163, 0.0119], [0.089, 0.0693, 0.0371, 0.0187, 0.0175, 0.0155, 0.0128, 0.0128], [0.1106, 0.0714, 0.063, 0.0407, 0.0141, 0.0141, 0.0132, 0.0132], [0.3453, 0.0497, 0.0387, 0.0162, 0.0162, 0.0134, 0.0118, 0.0104], [0.0899, 0.0581, 0.0375, 0.0331, 0.0331, 0.0201, 0.0114, 0.0095], [0.4865, 0.0581, 0.0375, 0.0292, 0.0122, 0.0114, 0.0101, 0.0084], [0.0223, 0.0144, 0.0135, 0.0112, 0.0093, 0.0077, 0.0077, 0.0068], [0.0328, 0.0128, 0.01, 0.0083, 0.0078, 0.0057, 0.0057, 0.005], [0.0811, 0.036, 0.0318, 0.028, 0.0263, 0.0205, 0.0141, 0.0141], [0.0697, 0.0351, 0.0329, 0.0309, 0.0241, 0.0114, 0.0089, 0.0083], [0.0351, 0.0241, 0.0226, 0.0213, 0.0156, 0.0114, 0.0114, 0.0107], [0.2463, 0.1163, 0.0706, 0.0428, 0.0333, 0.0229, 0.0215, 0.0178], [0.2035, 0.0961, 0.0548, 0.0454, 0.0293, 0.0243, 0.0243, 0.0243], [0.0569, 0.0472, 0.0472, 0.0472, 0.0443, 0.0345, 0.0252, 0.0223], [0.0687, 0.0472, 0.0346, 0.0346, 0.0346, 0.0237, 0.021, 0.0153], [0.0961, 0.0548, 0.0483, 0.0483, 0.0275, 0.0228, 0.0201, 0.0178], [0.5135, 0.1298, 0.1146, 0.0695, 0.0613, 0.0137, 0.0094, 0.0094], [0.6355, 0.1104, 0.0591, 0.0591, 0.0359, 0.0103, 0.0096, 0.0062], [0.4989, 0.162, 0.0867, 0.0319, 0.0264, 0.0264, 0.0182, 0.016], [0.5739, 0.2111, 0.0501, 0.0304, 0.0237, 0.0209, 0.0099, 0.0093]], "ranks": {"Rust": [48067, 98366, 65905, 52476, 53304, 37002, 63710, 93615, 107415, 108224, 34267, 74843, 58788, 44572, 69215, 40379, 42852, 43219, 76715, 43337, 79862, 89081, 91201, 58306, 49382, 52160, 44338, 29551, 39633, 17898, 11683, 10279, 11227, 11226, 9890, 11090, 11860, 15936, 20889, 21150, 19293, 10188, 11487, 13552, 16614, 16265, 20032, 14042, 8964, 6971, 6383, 9703, 11020, 3177, 5095, 213, 74, 42, 25, 7, 7, 10, 11]}}, {"pos": 499, "top": [["s", "t", "\u2013", " \u2013", "i", "sor", "<|endoftext|>", "o"], ["s", "sWith", "\u0627\u062a", "sor", "saf", "schild", "sand", "\u044b"], ["s", "\u2013", "sWith", "t", "sor", "saf", "\u0627\u062a", "sand"], ["s", "sWith", "siz", "\u0627\u062a", "satz", "sor", "sider", "sheets"], ["s", "sWith", "\u0627\u062a", "sor", "siz", "sand", "sche", "sider"], ["s", "sWith", "siz", "sor", "\u0627\u062a", "sand", "sider", "spro"], ["s", "sWith", "siz", "sor", "\u0627\u062a", "sand", "spro", "\u044b"], ["s", "sWith", "siz", "sor", "sand", "\u0627\u062a", "sburg", "\u044b"], ["s", "sWith", "sand", "\u0627\u062a", "scheid", "siz", "sburg", "sor"], ["s", "sWith", "siz", "sand", "\u0627\u062a", "sport", "sing", "sens"], ["s", "sWith", "\u0627\u062a", "siz", "es", "t", "sand", "sing"], ["s", "sWith", "siz", "\u0627\u062a", "sburg", "scheid", "sheets", "sport"], ["s", "sWith", "siz", "\u0627\u062a", "sheets", "schaft", "a\u00e7", "\u044b"], ["s", "sWith", "siz", "a\u00e7", "sheets", "sport", "\u0627\u062a", "sburg"], ["s", "sWith", "siz", "ties", "\u0627\u062a", "sheets", "sid", "sut"], ["s", "sWith", "siz", "\u0627\u062a", "ties", "sel", "sing", "es"], ["s", "sWith", "siz", "es", "sel", "\u0627\u062a", "ties", "sing"], ["s", "sWith", "siz", "sel", "\u0627\u062a", "ties", "es", "sing"], ["s", "sWith", "siz", "ties", "sid", "\u0627\u062a", "sens", "sing"], ["s", "sWith", "siz", "sport", " folks", "ties", "edly", "sid"], ["s", "<|endoftext|>", "  \n\n", " folks", "sid", "i", "though", "edly"], ["sWith", "angered", "ties", "urance", "s", "siz", "iator", " folks"], ["s", "sWith", "ties", "angered", " folks", "edly", "iw", "atively"], ["s", "sWith", "fully", "ties", " folks", "ful", "edly", "atively"], ["\r\n\r\n", " \r\n\r\n", "s", " folks", "   \n\n", "  \n\n", "    \n\n", "\n\n"], [" folks", "sWith", "quisites", "kids", "amai", "wares", "ancies", "stalk"], [" folks", "sWith", "wares", "ties", "ancies", "kids", "entimes", "atively"], ["\n\n", "  \n\n", " folks", " \n\n", "\r\n\r\n", "s", "   \n\n", "fully"], ["  \n\n", "\n\n", "s", " \n\n", "   \n\n", " folks", "    \n\n", "\u2011"], ["s", "  \n\n", "\u2011", " \n\n", "   \n\n", " folks", "\u2013", "\n\n"], ["s", "  \n\n", "\n\n", " \n\n", " customers", "ers", " projects", " users"], ["s", "\u2011", " aggressively", " projects", " customers", " demanding", " people", " increasingly"], [" aggressively", "s", " often", " -", " even", " demanding", " increasingly", " arguably"], ["\u2011", " aggressively", " inherently", "\u2014even", " notoriously", " arguably", " demanding", " massively"], ["\u2011", " aggressively", " notoriously", " tech", " inherently", "_requires", " arguably", " ergonom"], ["\u2011", " notoriously", "\u2014even", "_requires", " MUST", "zens", "\u2014you", " tech"], [" notoriously", "\u2011", "_requires", " freaking", "zens", " ergonom", " MUST", " aggressively"], ["\u2011", "_requires", " ergonom", " notoriously", " MUST", " freaking", " workflows", "zens"], ["\u2011", "_requires", " ergonom", " customizable", " notoriously", " MUST", " freaking", " ANY"], ["\u2011", " customizable", "_requires", " users", "requires", " MUST", " newbie", " hobby"], [" users", "\u2011", " customizable", " hackers", " user", " hacker", " customers", " hobby"], [" users", " customizable", " user", " customers", " hackers", "-user", " hobby", " hacker"], [" users", " customizable", " user", "-user", " customers", " hackers", "-users", "/users"], [" users", " user", "-user", "-users", " customers", "-access", " customizable", " unrestricted"], [" users", " unpredictable", " user", " customizable", " amateurs", " inexperienced", " customers", " hackers"], [" users", " unpredictable", " amateurs", " unrestricted", "-safe", " requires", " demanding", " customizable"], [" users", "-friendly", " requires", "-access", "-safe", "-required", " unpredictable", " customizable"], [" users", "-friendly", "\u2011", "-access", "-safe", " amateurs", "\\-", "-users"], ["-friendly", "-access", " users", "-safe", "-users", "-user", "-required", "-facing"], ["-access", "-friendly", "-safe", "-**", "-users", "-facing", "-ready", "-user"], ["-facing", "-friendly", "-access", "-safe", "-ready", "-users", "-generated", "-user"], ["-users", "-friendly", "-user", "-facing", "-access", " users", "-authored", "-safe"], ["-friendly", "-user", "-facing", "-users", "-authored", "-safe", "-native", "-custom"], ["-friendly", "-user", "-users", "-facing", "-authored", "-safe", "-coded", "-ready"], ["-users", "-user", "-facing", " users", "-friendly", "-custom", "-safe", "-authored"], ["-user", "-users", " users", "\u7528\u6237", " user", "users", "-custom", "-plugin"], ["-user", "-users", " users", "\u7528\u6237", " user", "users", "-custom", "-plugin"], ["-user", "-users", " users", " user", "\u7528\u6237", "users", "\u7528\u6237\u7684", "user"], ["-user", "-users", " users", " user", "\u7528\u6237", "users", "\u7528\u6237\u7684", "_user"], ["-user", "-script", "-users", " users", " script", " scripts", " scripting", "/script"], ["-user", " users", " user", "-users", "-script", "\u7528\u6237", " scripts", " script"], ["-user", " users", "-users", " user", "\u7528\u6237", "_user", "-script", "users"], ["-user", "-users", " users", " user", "-script", "\u7528\u6237", " User", "_user"]], "p": [[1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9982, 0.0009, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0], [0.987, 0.0059, 0.0012, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9981, 0.0006, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9987, 0.0003, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.999, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9601, 0.0037, 0.0015, 0.0005, 0.0005, 0.0003, 0.0003, 0.0003], [0.8671, 0.0016, 0.0012, 0.0012, 0.0012, 0.0009, 0.0008, 0.0008], [0.1905, 0.1681, 0.0058, 0.0031, 0.0027, 0.0027, 0.0026, 0.002], [0.0075, 0.0051, 0.0037, 0.0031, 0.0029, 0.0024, 0.0023, 0.0018], [0.0111, 0.0059, 0.0052, 0.0049, 0.0041, 0.0036, 0.0026, 0.0025], [0.0342, 0.0049, 0.0041, 0.0034, 0.0034, 0.0028, 0.0028, 0.0023], [0.0069, 0.005, 0.0039, 0.0034, 0.003, 0.0027, 0.0022, 0.002], [0.0055, 0.0024, 0.0018, 0.0017, 0.0016, 0.0016, 0.0016, 0.0014], [0.0047, 0.0027, 0.0024, 0.0022, 0.0021, 0.002, 0.0018, 0.0016], [0.2712, 0.0223, 0.0127, 0.0127, 0.0082, 0.0064, 0.0041, 0.0032], [0.1353, 0.1353, 0.0771, 0.0284, 0.0266, 0.0092, 0.0092, 0.0063], [0.1828, 0.1515, 0.0408, 0.0338, 0.0247, 0.0097, 0.0085, 0.0075], [0.2541, 0.0236, 0.0196, 0.0126, 0.0119, 0.0093, 0.0093, 0.0064], [0.0647, 0.0106, 0.0106, 0.0064, 0.0064, 0.0057, 0.0053, 0.005], [0.0122, 0.0122, 0.0108, 0.0084, 0.0084, 0.0069, 0.0069, 0.0065], [0.0379, 0.0203, 0.0096, 0.0085, 0.0079, 0.0079, 0.007, 0.0066], [0.0385, 0.0076, 0.0067, 0.0063, 0.0043, 0.0038, 0.0032, 0.0028], [0.2277, 0.0069, 0.0054, 0.0047, 0.0035, 0.0029, 0.0027, 0.0025], [0.0096, 0.009, 0.0066, 0.0055, 0.0035, 0.0035, 0.0035, 0.0024], [0.022, 0.0104, 0.0063, 0.0056, 0.0043, 0.0043, 0.0036, 0.0036], [0.0372, 0.0165, 0.0061, 0.0054, 0.0047, 0.0047, 0.0042, 0.0039], [0.0711, 0.0169, 0.0149, 0.0062, 0.0045, 0.0038, 0.0035, 0.0035], [0.0575, 0.054, 0.024, 0.012, 0.01, 0.0088, 0.0083, 0.0073], [0.1602, 0.0668, 0.0246, 0.014, 0.014, 0.014, 0.0124, 0.0124], [0.2328, 0.0405, 0.0231, 0.018, 0.018, 0.0158, 0.0131, 0.0123], [0.2051, 0.023, 0.0158, 0.0131, 0.0131, 0.0123, 0.0116, 0.0109], [0.1478, 0.0213, 0.0146, 0.0137, 0.0137, 0.0121, 0.0101, 0.0101], [0.0857, 0.0204, 0.0159, 0.014, 0.0131, 0.0131, 0.0124, 0.0116], [0.0512, 0.0166, 0.0166, 0.0147, 0.0129, 0.0122, 0.0107, 0.0101], [0.0712, 0.0521, 0.0231, 0.0192, 0.0192, 0.0149, 0.014, 0.014], [0.0414, 0.0322, 0.0236, 0.0195, 0.0172, 0.0143, 0.0126, 0.0119], [0.053, 0.0498, 0.0207, 0.0207, 0.0162, 0.0143, 0.0118, 0.0098], [0.0501, 0.0415, 0.0344, 0.0237, 0.0222, 0.0105, 0.0093, 0.0087], [0.0821, 0.0821, 0.0725, 0.0364, 0.0284, 0.025, 0.025, 0.0172], [0.1819, 0.1605, 0.0807, 0.0712, 0.046, 0.0262, 0.018, 0.0149], [0.2143, 0.13, 0.0951, 0.0951, 0.0542, 0.0309, 0.0146, 0.0146], [0.378, 0.1576, 0.0291, 0.0274, 0.0257, 0.0242, 0.02, 0.0166], [0.5884, 0.3569, 0.0376, 0.0035, 0.0021, 0.0019, 0.0017, 0.0004], [0.768, 0.1942, 0.0263, 0.0036, 0.0036, 0.001, 0.0003, 0.0002], [0.6643, 0.2769, 0.0425, 0.0074, 0.0065, 0.001, 0.0002, 0.0002], [0.6764, 0.2819, 0.0337, 0.004, 0.0019, 0.0008, 0.0001, 0.0001], [0.5705, 0.1852, 0.0772, 0.0531, 0.0251, 0.0195, 0.0172, 0.0152], [0.8407, 0.0782, 0.0537, 0.0174, 0.003, 0.0011, 0.001, 0.0009], [0.9096, 0.04, 0.0311, 0.0147, 0.0007, 0.0007, 0.0005, 0.0004], [0.969, 0.0228, 0.0051, 0.0015, 0.0002, 0.0002, 0.0002, 0.0002]], "ranks": {"Rust": [31886, 45155, 16994, 3194, 3929, 3120, 2409, 1989, 2347, 2528, 4149, 4367, 2919, 2930, 2771, 3748, 4751, 6423, 12352, 16239, 32836, 19197, 30908, 57820, 14719, 13482, 20663, 71460, 44117, 18737, 10237, 7581, 9931, 37686, 59306, 112214, 93743, 97100, 113524, 116409, 93435, 88489, 74722, 85858, 39434, 26739, 32033, 34648, 39541, 40620, 51227, 54436, 21237, 22904, 11488, 12341, 3552, 2011, 2466, 1682, 984, 1753, 1668]}}, {"pos": 500, "top": [["er", " \u2013", "i", ",", ".", "\u2013", "\u00b7", "u"], [" \u2013", "er", " \u00b7", "\u00b7", "\u2013", "\u00ac", "i", "\u00b9"], [" \u2013", "er", "[", "\u2013", ",", ".", ";", "\u00b7"], ["er", " pupper", "eru", "stig", "\uff0d\uff0d\uff0d\uff0d", " \r\r\n", "\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500", "eniu"], ["er", "@", "eru", "i", "\uff3b", "#", "en", "\u00ac"], ["er", "stig", "eru", "\\xc", "\uff1f", " client", "enho", "\uff3b"], ["er", "\uff3b", "[", ",", ".", "@", " [...]", "?"], ["er", ",", ".", ";", "[", "?", "@", " #\""], ["er", ",", ".", " [...]", ";", "\uff3b", "?", "\u00b9"], [",", "er", " \u00ad", "\u00ac", ";", " '@/", "-cent", " \r\r\n"], [",", "er", ".", "<|endoftext|>", " \u00ad", ";", "@", " [...]"], ["er", " audience", " personnel", " electronics", "eru", " clientele", " '@/", "-facing"], ["er", " audience", " demographics", " clientele", " electronics", "-centric", " impactful", " audiences"], ["er", " demographics", " audience", " advancements", " showcased", " populace", " impactful", "-centric"], [" requisite", " populace", " purported", " utilizing", " crafting", " garner", " showcased", " advancements"], [" populace", " crafting", " demographics", " messaging", " advancements", " utilizing", " requisite", " showcased"], ["er", " messaging", " demographics", " crafting", " marketing", " audience", " functionality", " services"], [" electronics", "er", " services", " messaging", " platforms", " marketing", " savvy", " demographics"], ["-facing", " folks", "er", "i", " electronics", " advertiser", " touted", " savvy"], [" folks", " requisite", " myriad", "-facing", "er", " advertiser", " marketing", " savvy"], ["<|endoftext|>", "i", " folks", " myriad", " requisite", "er", "\n\n", " \n\n"], [" electronics", " advertiser", " clientele", " folks", " shopper", " marketing", " demographics", " audiences"], [" folks", " electronics", " demographics", " clientele", " advertiser", " shoppers", " marketing", " shopper"], [" production", " applications", " services", " electronics", " activities", " programs", " folks", " industry"], [" folks", " electronics", " applications", " resources", " software", " production", " tools", " marketing"], [" workflows", " electronics", " software", " hobby", " fandom", " gameplay", " toolkit", " hobbies"], [" electronics", " workflows", " software", " tools", " hobby", " programming", " hacker", " toolkit"], [" tools", " software", " electronics", " hobby", " programs", " craft", " projects", " technologies"], [" tools", " software", " hobby", " programs", " technologies", " electronics", " products", " workflows"], [" ...", " ...\\", " ___", " [...]", " workflows", " tools", " software", " ...\""], [" ...", " ...\\", " ...\"", " [...]", " tools", " \u2026", " software", " workflows"], [" ...", " ...\\", " [...]", " ...\"", " \u2026", " tools", " [", " projects"], [" tools", " '", " software", " [", " design", " projects", " /", " technology"], [" software", " workflows", " hobby", " tools", " technologies", " users", " user", " automation"], [" software", " hobby", " user", " tools", " users", " workflows", " automation", " automated"], [" software", " user", " hobby", " users", " workflows", " tools", " DIY", " ["], [" hobby", " user", " software", " customization", " workflows", " customizable", " users", " tools"], [" hobby", " user", " software", " users", " customizable", " workflows", " customization", " tools"], [" user", " customizable", " software", " hobby", " users", " customization", " custom", " workflows"], [" customizable", " scripts", " software", " hobby", " user", " workflows", " customization", " plugins"], [" scripts", " scripting", " software", " programming", " hobby", " customizable", " script", " plugins"], [" scripts", " scripting", " software", " programming", " script", " scripted", " customizable", " hobby"], [" scripts", " scripting", " programming", " software", " script", " scripted", " customizable", " users"], [" scripts", " scripting", " software", " programming", " scripted", " script", " languages", " hobby"], [" scripts", " scripting", " software", " programming", " workflows", " script", " scripted", " languages"], [" scripts", " scripting", " software", " scripted", " programming", " hobby", " workflows", " users"], [" scripts", " scripting", " scripted", " workflows", " hobby", " software", " programming", " script"], [" scripts", " scripting", " scripted", " hobby", " programming", " workflows", " software", " likely"], [" scripts", " scripting", " scripted", " hobby", " programming", " workflows", " likely", " languages"], [" scripts", " scripting", " scripted", " hobby", " workflows", " likely", " languages", " hobbies"], [" scripts", " scripting", " workflows", "-friendly", "-facing", " scripted", "-access", " users"], [" scripting", " scripts", " plugins", " scripted", " programming", " customizable", " parsers", " software"], [" scripting", " scripts", " scripted", " plugins", " parsers", " programming", " customizable", "-friendly"], [" scripting", " scripts", " scripted", " plugins", " APIs", " runtime", " parsers", " customization"], [" scripts", " scripting", " plugins", " scripted", " runtime", "-generated", "-authored", " customizable"], [" scripting", " scripts", " plugins", " scripted", " plugin", " script", "\u811a\u672c", "-plugin"], [" scripting", " scripts", " plugins", " scripted", " plugin", "\u811a\u672c", " script", " Scripts"], [" scripting", " scripts", " plugins", " scripted", " script", "\u811a\u672c", " plugin", " Scripts"], [" scripting", " scripts", " scripted", " plugins", " writable", " script", "\u811a\u672c", " plugin"], [" scripting", " scripts", " script", " scripted", " plugins", "\u811a\u672c", "-script", " Script"], [" scripting", " scripts", " script", " scripted", " plugins", "-script", " Script", "\u811a\u672c"], [" scripts", " scripting", " script", " plugins", " scripted", "-script", " plugin", " scri"], [" plugins", " scripts", " script", " scripting", " scripted", " plugin", " scri", "-script"]], "p": [[0.5869, 0.2772, 0.0352, 0.0258, 0.0214, 0.0107, 0.0074, 0.0048], [0.5453, 0.3748, 0.0289, 0.0128, 0.005, 0.0032, 0.002, 0.0018], [0.4122, 0.2833, 0.092, 0.0812, 0.0812, 0.0086, 0.0063, 0.0052], [0.5378, 0.0135, 0.0112, 0.0064, 0.0064, 0.0047, 0.0036, 0.0028], [0.9987, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.955, 0.001, 0.0006, 0.0003, 0.0003, 0.0002, 0.0002, 0.0002], [0.9742, 0.0024, 0.002, 0.0008, 0.0008, 0.0005, 0.0004, 0.0004], [0.9689, 0.0095, 0.0061, 0.0007, 0.0006, 0.0004, 0.0002, 0.0002], [0.6486, 0.1746, 0.0567, 0.005, 0.0047, 0.0044, 0.003, 0.0028], [0.1991, 0.0732, 0.012, 0.0028, 0.0027, 0.0022, 0.0021, 0.0018], [0.4834, 0.2932, 0.0114, 0.0094, 0.0089, 0.0073, 0.0069, 0.0069], [0.3336, 0.0051, 0.0039, 0.0037, 0.0033, 0.0033, 0.0024, 0.0024], [0.0262, 0.0097, 0.0071, 0.0055, 0.0036, 0.0036, 0.0033, 0.0031], [0.0128, 0.0064, 0.0053, 0.0041, 0.0039, 0.0037, 0.0034, 0.003], [0.0157, 0.007, 0.0054, 0.0048, 0.0045, 0.004, 0.0035, 0.0031], [0.0053, 0.0053, 0.0044, 0.0044, 0.0041, 0.0036, 0.0028, 0.0027], [0.0072, 0.0067, 0.0063, 0.0043, 0.0041, 0.0038, 0.0036, 0.0036], [0.0105, 0.0072, 0.0064, 0.006, 0.005, 0.0044, 0.0039, 0.0039], [0.0076, 0.0071, 0.0056, 0.0052, 0.0052, 0.0052, 0.0052, 0.0046], [0.0114, 0.0065, 0.0054, 0.0039, 0.0039, 0.0035, 0.0035, 0.0029], [0.9361, 0.001, 0.0006, 0.0005, 0.0003, 0.0003, 0.0003, 0.0003], [0.0063, 0.0052, 0.0049, 0.0038, 0.0038, 0.0036, 0.0036, 0.0028], [0.0129, 0.0054, 0.0045, 0.0045, 0.0027, 0.0027, 0.0027, 0.0025], [0.0058, 0.0045, 0.0042, 0.0031, 0.0031, 0.0031, 0.0029, 0.0027], [0.0109, 0.0066, 0.0055, 0.0051, 0.0045, 0.0045, 0.0045, 0.0043], [0.0293, 0.0189, 0.0108, 0.0101, 0.0101, 0.007, 0.0065, 0.0061], [0.017, 0.015, 0.0141, 0.0086, 0.0081, 0.0081, 0.0071, 0.0067], [0.0304, 0.0236, 0.0153, 0.0127, 0.0105, 0.0099, 0.0099, 0.0093], [0.049, 0.0297, 0.0218, 0.018, 0.017, 0.0159, 0.0124, 0.0117], [0.0855, 0.0755, 0.0335, 0.0315, 0.0278, 0.023, 0.0179, 0.0179], [0.331, 0.0652, 0.0508, 0.0308, 0.0225, 0.0187, 0.0155, 0.0113], [0.6848, 0.0234, 0.0134, 0.0125, 0.0118, 0.0067, 0.0056, 0.0041], [0.0254, 0.0185, 0.0154, 0.0154, 0.0144, 0.0136, 0.0136, 0.0112], [0.0401, 0.0294, 0.0259, 0.0229, 0.0178, 0.0167, 0.0122, 0.0101], [0.0641, 0.0343, 0.0303, 0.0236, 0.0222, 0.0143, 0.0126, 0.0119], [0.0909, 0.0587, 0.0486, 0.023, 0.0191, 0.0168, 0.0109, 0.0096], [0.0793, 0.0658, 0.0618, 0.0311, 0.0274, 0.0257, 0.0242, 0.0188], [0.095, 0.0787, 0.0396, 0.029, 0.029, 0.0272, 0.024, 0.0212], [0.119, 0.1118, 0.0722, 0.0599, 0.0438, 0.0411, 0.0283, 0.022], [0.0843, 0.0617, 0.058, 0.058, 0.0398, 0.033, 0.0291, 0.0274], [0.395, 0.1753, 0.1063, 0.0253, 0.0197, 0.0197, 0.0153, 0.0153], [0.4125, 0.4125, 0.0248, 0.0219, 0.017, 0.017, 0.0086, 0.0052], [0.5238, 0.2474, 0.0379, 0.0278, 0.0149, 0.0131, 0.009, 0.007], [0.4561, 0.1678, 0.0352, 0.031, 0.0156, 0.0147, 0.0129, 0.0114], [0.5914, 0.132, 0.0294, 0.0148, 0.0139, 0.0131, 0.0123, 0.0084], [0.5211, 0.1493, 0.0244, 0.0202, 0.019, 0.0157, 0.0108, 0.0102], [0.4606, 0.1592, 0.0334, 0.0294, 0.0179, 0.0179, 0.0096, 0.0084], [0.3266, 0.1202, 0.0471, 0.0268, 0.0144, 0.0135, 0.0119, 0.0112], [0.3026, 0.1724, 0.034, 0.0281, 0.0182, 0.0117, 0.0117, 0.0091], [0.2767, 0.0956, 0.0292, 0.0227, 0.0227, 0.02, 0.0069, 0.0069], [0.1561, 0.0889, 0.0225, 0.0186, 0.0145, 0.0136, 0.0128, 0.01], [0.4098, 0.2485, 0.0246, 0.0204, 0.0192, 0.0062, 0.0062, 0.0062], [0.5161, 0.2438, 0.0274, 0.0241, 0.0042, 0.0042, 0.0037, 0.0029], [0.452, 0.352, 0.0289, 0.0271, 0.0042, 0.0039, 0.0032, 0.003], [0.4024, 0.3551, 0.0898, 0.0188, 0.0095, 0.0084, 0.0045, 0.0045], [0.5994, 0.1717, 0.1516, 0.0558, 0.016, 0.0012, 0.001, 0.0005], [0.5998, 0.3211, 0.0492, 0.016, 0.004, 0.0036, 0.0036, 0.0005], [0.5728, 0.3474, 0.0415, 0.0252, 0.0044, 0.0039, 0.0023, 0.0005], [0.5464, 0.3756, 0.0308, 0.024, 0.01, 0.0054, 0.0022, 0.0011], [0.565, 0.2078, 0.1834, 0.0248, 0.0103, 0.0034, 0.0014, 0.0012], [0.4745, 0.2878, 0.1978, 0.0184, 0.0126, 0.0032, 0.0017, 0.0013], [0.3017, 0.2663, 0.2074, 0.183, 0.0248, 0.0055, 0.003, 0.0016], [0.4599, 0.2462, 0.1692, 0.0906, 0.0148, 0.0048, 0.0031, 0.0015]], "ranks": {"Rust": [102304, 126742, 91058, 121419, 39994, 44179, 49198, 47178, 69118, 97406, 45586, 65904, 74551, 88168, 122557, 113517, 100169, 149313, 129391, 140524, 114223, 149754, 154054, 96358, 91552, 135835, 142509, 45254, 36303, 39159, 28036, 21001, 28953, 64641, 54723, 33435, 28553, 25881, 40882, 45320, 36719, 36855, 34114, 39700, 40935, 27374, 26675, 19957, 16700, 23407, 47660, 29517, 17911, 8414, 2829, 3045, 1016, 813, 1173, 497, 232, 197, 149]}}, {"pos": 501, "top": [[".", ",", ";", " ", " \u00a0", "-", "?", ":"], ["  \n", ",", ";", " \u00a0", ".", "   \n", "\u2013", "  "], [",", ".", "\u2013", ";", "\u2026", "[", ":", "?"], [" ``", "``", ":''", " ``(", "':''", " ;;^", "\u3015", " \u300e"], ["ually", "&", " ``", "ively", "@", " IB", "``", " \\$"], ["spill", ".rt", ".rf", "ually", " \u300e", " \u3011", "HK", ".argv"], [" ``", "``", " \u300e", " __", " \u3010", "\u300e", " **\u300c", "ually"], [" ``", "``", " **\u300c", "ually", "ural", " \u300e", " __", ":''"], ["ually", "ural", "*&", ":''", " ``", "``", "&quot", "ily"], ["ural", "ually", "edly", "--", "ively", "&", "ily", "\u00a0"], ["&", "\u00a0", "--", " \\`", "&nbsp", "-&", "ually", "''"], [" ``", "ural", " \\`", "ually", "``", " ''", "edly", "ily"], [" ``", "ually", "edly", "ural", "ively", "ive", ":''", "ingly"], ["edly", " ``", "ually", "ural", "ingly", " ''", "ian", "al"], [" ``", "edly", " ''", "``", "ually", "--", "''", "ian"], [" ``", "edly", "able", "ingly", "ually", "ily", "ed", "ic"], ["edly", "ic", "ed", "able", "ers", "al", "ually", "ingly"], ["edly", "ic", "ually", " ``", "ian", "ily", "able", "al"], ["edly", "ually", "ic", "ingly", "ily", "urally", "ian", "ural"], ["edly", "-&", "ily", "ually", "ingly", "ic", "ed", "--"], ["--", "&", "-&", "edly", "i", "ed", " --", " \\`"], [" ``", "``", " ``(", "edly", " ''", "ily", " '`", "urally"], [" ``", "``", " ''", " ``(", "edly", "ually", " '`", "ily"], [" ``", "``", " ''", "edly", " ``(", " --", "ily", "ingly"], [" ``", "``", " ''", "edly", "able", " --", "--", "ed"], [" ``", " scripting", "``", "edly", " scripts", " ''", "/script", "able"], [" ``", "``", " scripting", " ''", " scripts", " ``(", " script", "edly"], [" ``", " ''", " `", " --", " scripting", "``", " '`", " scripts"], [" ``", " scripting", " ''", " scripts", " script", "``", "/script", "script"], [" scripting", " scripts", " ``", "``", " script", " ''", " workflows", " SCRIPT"], [" scripts", " scripting", " ``", "``", " script", " __", " ''", " workflows"], [" ``", " scripts", " scripting", " script", " ''", " code", " programming", " software"], [" ``", " scripting", " scripts", " script", " code", " ''", " \\\"", " --"], [" scripting", " scripts", " algorithms", "/script", " workflows", " code", " software", " script"], [" scripting", " scripts", "/script", " code", " script", " syntax", " algorithms", " software"], [" scripting", " code", " scripts", " syntax", "/script", " algorithms", " [", " software"], [" scripting", " syntax", " code", " scripts", " algorithms", "/script", " programming", " ["], [" scripting", " scripts", " syntax", " code", "/script", " script", "script", " programming"], [" scripting", " scripts", " syntax", "/script", " languages", " code", " script", " programming"], [" scripting", " scripts", "/script", "\u811a\u672c", " languages", " script", "script", " syntax"], [" scripting", " scripts", "/script", " languages", " script", "\u811a\u672c", "script", " Script"], [" scripting", " scripts", "/script", " languages", " script", " Script", "\u811a\u672c", "-script"], [" scripting", " scripts", " languages", "/script", " programming", " JavaScript", " Lua", " Python"], [" scripting", " languages", " scripts", "/script", " programming", " JavaScript", " Lua", " script"], [" scripting", " scripts", " languages", " programming", "/script", " JavaScript", " script", " Lua"], [" scripting", " scripts", " languages", " programming", "/script", " script", " Python", " language"], [" scripting", " scripts", " languages", "/script", " programming", " likely", " script", " language"], [" scripting", " scripts", " languages", " likely", "/script", " programming", " script", " language"], [" scripting", " scripts", " likely", " languages", "/script", " programming", " (~", " ("], [" scripting", " scripts", " languages", "/script", " likely", "-language", " programming", "-script"], [" scripting", " scripts", "/script", " languages", "-language", "-script", " programming", " likely"], [" scripting", " scripts", " languages", " plugins", "/script", " programming", "able", "-language"], [" scripting", " scripts", "able", " plugins", "/script", " languages", " runtime", "-friendly"], ["able", " scripting", " scripts", "/script", " plugins", " kidd", "-friendly", " languages"], ["able", " scripting", " scripts", " plugins", "/script", "ability", " kidd", ".Script"], ["able", " plugins", " scripting", " scripts", " plugin", "/script", "ing", " kidd"], [" plugins", " scripting", " scripts", "able", "/script", " plugin", "(script", ".Script"], ["able", " plugins", " scripting", " scripts", "ability", "/script", " plugin", "ables"], ["able", " plugins", "ability", " scripts", "ables", " scripting", "ABLE", "ible"], ["able", " plugins", "ability", " plugin", "ables", "plugins", " Plugins", "/plugins"], ["able", "ability", "ables", "ABLE", " plugins", "ible", "ableObject", "ably"], ["able", "ability", "ables", " plugins", "ABLE", "ible", "ed", "ably"], ["able", "ability", "ables", " plugins", "ABLE", "ible", "ably", "abled"]], "p": [[0.8217, 0.1428, 0.0133, 0.0049, 0.0025, 0.0016, 0.0014, 0.0012], [0.074, 0.0422, 0.0372, 0.0328, 0.0165, 0.0114, 0.01, 0.01], [0.4118, 0.4118, 0.0492, 0.028, 0.0205, 0.0181, 0.0036, 0.0024], [0.1939, 0.0591, 0.0159, 0.0132, 0.0109, 0.0085, 0.0055, 0.0049], [0.0209, 0.0144, 0.0144, 0.0144, 0.0044, 0.0044, 0.0039, 0.0036], [0.0029, 0.0029, 0.0026, 0.0026, 0.0024, 0.0024, 0.0024, 0.0023], [0.2452, 0.1794, 0.0514, 0.0483, 0.04, 0.0189, 0.0115, 0.0115], [0.2572, 0.1072, 0.0447, 0.0271, 0.0175, 0.0164, 0.0128, 0.0094], [0.0514, 0.0426, 0.0275, 0.0189, 0.0178, 0.0178, 0.0167, 0.0138], [0.0206, 0.0171, 0.0171, 0.0171, 0.016, 0.0141, 0.0091, 0.0081], [0.3025, 0.0814, 0.0385, 0.0339, 0.0182, 0.0182, 0.0151, 0.0117], [0.2219, 0.034, 0.0249, 0.0171, 0.0171, 0.0118, 0.0097, 0.0092], [0.1081, 0.0398, 0.0351, 0.031, 0.0227, 0.0188, 0.0146, 0.0146], [0.041, 0.0385, 0.0182, 0.0151, 0.0086, 0.0076, 0.0071, 0.0067], [0.3927, 0.0322, 0.0322, 0.0196, 0.0082, 0.0068, 0.0063, 0.0056], [0.0699, 0.0242, 0.0101, 0.0095, 0.0084, 0.0078, 0.0069, 0.0065], [0.0602, 0.0303, 0.0285, 0.0267, 0.0251, 0.0251, 0.0222, 0.0173], [0.0762, 0.0383, 0.0299, 0.0263, 0.0233, 0.017, 0.016, 0.0141], [0.0758, 0.0297, 0.0159, 0.0124, 0.0109, 0.0096, 0.0096, 0.0075], [0.0637, 0.0234, 0.0234, 0.0234, 0.022, 0.0142, 0.0098, 0.0098], [0.1769, 0.0395, 0.0371, 0.0164, 0.0145, 0.0145, 0.0136, 0.0128], [0.734, 0.0641, 0.0143, 0.0068, 0.0044, 0.0032, 0.0028, 0.0025], [0.9133, 0.0401, 0.0084, 0.007, 0.0021, 0.0007, 0.0007, 0.0006], [0.9232, 0.0204, 0.0124, 0.0035, 0.0024, 0.0015, 0.0007, 0.0007], [0.7061, 0.0511, 0.0352, 0.0213, 0.0095, 0.0078, 0.0069, 0.0065], [0.5024, 0.1053, 0.0439, 0.025, 0.0221, 0.0161, 0.0098, 0.0072], [0.8604, 0.0277, 0.026, 0.0202, 0.007, 0.0026, 0.0023, 0.0016], [0.8094, 0.0853, 0.0216, 0.0148, 0.0066, 0.0048, 0.0021, 0.0016], [0.4228, 0.1461, 0.0943, 0.0538, 0.0175, 0.0106, 0.0099, 0.0068], [0.1821, 0.1104, 0.067, 0.0297, 0.018, 0.014, 0.0096, 0.0096], [0.1528, 0.1266, 0.1118, 0.032, 0.032, 0.0161, 0.0161, 0.0125], [0.138, 0.0694, 0.0541, 0.0328, 0.0328, 0.0255, 0.0165, 0.0106], [0.0899, 0.0658, 0.0425, 0.0311, 0.0311, 0.0258, 0.0177, 0.0138], [0.12, 0.0878, 0.0222, 0.0196, 0.0153, 0.0143, 0.0143, 0.0119], [0.1581, 0.0619, 0.0513, 0.0214, 0.0214, 0.0147, 0.0138, 0.0115], [0.0626, 0.0296, 0.0261, 0.0203, 0.0168, 0.014, 0.0102, 0.0096], [0.0738, 0.0289, 0.0212, 0.0175, 0.0165, 0.0113, 0.0094, 0.0083], [0.3205, 0.0491, 0.0298, 0.0247, 0.0232, 0.0192, 0.0085, 0.008], [0.3569, 0.0426, 0.0312, 0.0243, 0.0214, 0.0201, 0.0157, 0.013], [0.3324, 0.0543, 0.0479, 0.0241, 0.0176, 0.0155, 0.0155, 0.0129], [0.6995, 0.0693, 0.0476, 0.0155, 0.0155, 0.0145, 0.0106, 0.0094], [0.8348, 0.0471, 0.0252, 0.0087, 0.0077, 0.0068, 0.0064, 0.006], [0.7688, 0.0631, 0.0298, 0.0205, 0.0117, 0.011, 0.0103, 0.0075], [0.7044, 0.0655, 0.0655, 0.0166, 0.0146, 0.0107, 0.0083, 0.0078], [0.6948, 0.1066, 0.0646, 0.0144, 0.0099, 0.0077, 0.0077, 0.0073], [0.6456, 0.1271, 0.0874, 0.0221, 0.0118, 0.0072, 0.0063, 0.0056], [0.5841, 0.1673, 0.0743, 0.0121, 0.0114, 0.0107, 0.0069, 0.0069], [0.4692, 0.1344, 0.0676, 0.0526, 0.0171, 0.0117, 0.0086, 0.0076], [0.4591, 0.14, 0.0584, 0.0455, 0.0243, 0.0139, 0.0101, 0.009], [0.474, 0.1539, 0.0566, 0.0389, 0.0303, 0.0082, 0.0077, 0.0044], [0.4867, 0.179, 0.0546, 0.0482, 0.0122, 0.0045, 0.004, 0.0037], [0.3492, 0.0779, 0.0287, 0.0269, 0.0197, 0.0185, 0.0144, 0.0082], [0.2991, 0.0756, 0.052, 0.0315, 0.0296, 0.0149, 0.0109, 0.0102], [0.2658, 0.1515, 0.0672, 0.0383, 0.0218, 0.0132, 0.0124, 0.0124], [0.3685, 0.1356, 0.0875, 0.0343, 0.0303, 0.0221, 0.0172, 0.0134], [0.4087, 0.3183, 0.071, 0.0431, 0.0149, 0.0102, 0.0096, 0.0055], [0.4355, 0.1815, 0.1414, 0.0972, 0.0278, 0.0149, 0.0102, 0.0066], [0.9388, 0.0283, 0.0104, 0.0092, 0.0026, 0.001, 0.0009, 0.0008], [0.9971, 0.0008, 0.0005, 0.0003, 0.0003, 0.0002, 0.0002, 0.0001], [0.9359, 0.0598, 0.002, 0.0005, 0.0003, 0.0002, 0.0001, 0.0001], [0.9994, 0.0006, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9991, 0.0008, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9954, 0.0041, 0.0003, 0.0002, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [25698, 29029, 16574, 36940, 7592, 16398, 27456, 17532, 13448, 15218, 14091, 23682, 22313, 27032, 30739, 17726, 24598, 54382, 62312, 56060, 53647, 58784, 61931, 43062, 49581, 55683, 38932, 18107, 13035, 21015, 13380, 10304, 10690, 21918, 12702, 3049, 325, 303, 440, 696, 835, 910, 1056, 1325, 2474, 2810, 3267, 1966, 2164, 3682, 10543, 18203, 8463, 4912, 4284, 3978, 825, 975, 1112, 669, 412, 718, 1194]}}, {"pos": 502, "top": [["o", "a", "e", "i", ".", ",", "\u2026.", " \u2013"], ["\u53bb\u8ba4\u8bc1", "iach", "ihi", "  \r\n", "tui", "i\u00e9s", "erweise", "tvr"], ["\u2026.", "\u2026..", "\u2026", "**\u2013", ")\u2026", "\u201d\u2026", "\u00a0\u00a0", "\u2026**"], [" ``", "``", " ``(", "iante", "---</", "ielen", "(___", "odle"], [" ---", " --->", " ***", "_____", " $$$", " _____", " ===", " *"], [" pageable", "_____", " _____", " $$$", "iop", "aum", " ---", " ***"], [" _____", " ---", " $\\", " ____", " ``", " `_", " --->", " _"], [" `_", " ``", "iante", " --->", " //*", " _____", " -->", " ---"], [" `_", "iante", " ~>", " ``", " *_", " //*", " *&", " ____"], [" thru", " $\\", " autobio", " `_", "TML", " Gabrie", " requisite", " `\\"], [" $\\", " _", " `_", " ---", " \\`", " ~", " `\\", " _____"], [" ``", " `_", " ---", " --->", " thru", " _", " `\\", " unto"], [" ``", " `_", " Gabrie", " noop", " ---", " unto", " _", " `\\"], [" ``", " requisite", " unto", " Gabrie", " entirety", " akin", "-esque", " noop"], [" ``", " thru", " requisite", " unto", " akin", " noop", " ala", " rendition"], [" ``", " thru", " unto", " Gabrie", " entirety", " existent", " akin", " utilizing"], [" ``", " Gabrie", " noop", " Fortal", " thru", " goofy", " akin", " unto"], [" ``", " Gabrie", " noop", " Fortal", "iante", " goofy", " **\u2022", "\u6210\u7ae0"], [" Gabrie", " ``", "iante", " Fortal", " noop", " autobio", "appable", " moot"], [" ``", " Gabrie", "iante", " moot", " autobio", " requisite", " ``(", " ~>"], [" ``", " ---", " `\\", " requisite", " myriad", " Gabrie", " thru", " :::"], [" ``", " ``(", " Gabrie", " ;;^", "iante", " **\u25a0", " **\u2022", " Fortal"], [" ``", " ``(", " `_", " Gabrie", "``", " ;;^", " ---", " `\\"], [" ``", " ``(", " `_", " `\\", "``", " --", " `", " ---"], [" ``", " _", " ---", " `_", " `\\", " --", " ~", " `"], [" ``", " ``(", " `_", " `\\", " ---", " frameworks", " robotic", " *__"], [" ``", " ``(", " `_", " tools", " robotic", " _", " ~", " modular"], [" ``", " --", "\n\n", " _", " `", " ~", " ,", " \\`"], [" ``", " ~", " ,", " tools", " via", " modular", " --", " _"], [" ``", " tools", " modular", " ___", " _", " via", " software", " frameworks"], [" ___", " tools", " frameworks", " *", " via", " _", " tech", " systems"], [" *", " ___", " <", " **", " _", " ~", " via", " __"], [" *", " ,", " via", " complex", " ~", " -", " tools", " modular"], [" via", " tech", " modular", " *", " ~", " complex", " **", " technologies"], [" via", " tech", " *", " modular", " ~", " **", " tools", " software"], [" *", " via", " ~", " tech", " software", " modular", " algorithms", " tools"], [" *", " via", " ~", " software", " modular", " **", " tech", " algorithms"], [" via", " ~", " *", " software", " tools", " modular", " \"", " algorithms"], [" via", " *", " software", " ~", " modular", " complex", " tools", " algorithms"], [" modular", " via", " software", " complex", " tools", " customizable", " APIs", " ~"], [" software", " modular", " programming", " via", " algorithms", " tools", " complex", " tech"], [" software", " modular", " programming", " via", " tools", " algorithms", " complex", " languages"], [" modular", " software", " via", " programming", " tools", " programs", " algorithms", " complex"], [" via", " modular", " software", " systems", " programming", " languages", " complex", " technologies"], [" via", " modular", " software", " systems", " algorithms", " workflows", " complex", " tools"], [" via", " modular", " systems", " algorithms", " software", " APIs", " complex", " modules"], [" via", " likely", " requires", " systems", " workflows", " modular", " interfaces", " software"], [" likely", " via", " requires", " (", " means", " tools", " systems", " often"], [" (", " likely", " (~", " requires", " via", " (`", " typically", " implies"], [" (~", " likely", " requires", " implies", " (", " means", " APIs", " (\""], [" requires", " implies", " inevitably", "\u610f\u5473\u7740", " inherently", "\u5927\u6982\u7387", " likely", "\u5fc5\u7136\u662f"], [" requires", "\u901a\u5e38\u9700\u8981", " implies", " inevitably", " likely", "\u610f\u5473\u7740", "requires", " inherently"], [" requires", " inherently", " implies", " inevitably", "\u901a\u5e38\u9700\u8981", "\u610f\u5473\u7740", " (`", " typically"], ["\u610f\u5473\u7740", " implies", " requires", " cannot", " inherently", " inevitably", " APIs", " means"], [" implies", " imply", "\u610f\u5473\u7740", " requires", " implying", "impl", " cannot", "\u6697\u793a"], [" plugins", " implies", "\u610f\u5473\u7740", " imply", " means", " plugin", "\u610f\u5473\u8457", "impl"], [" plugins", " implies", "\u610f\u5473\u7740", "plugins", " imply", " plugin", " Plugins", " means"], [" plugins", " implies", " imply", "plugins", " plugin", " Plugins", "\u610f\u5473\u7740", "impl"], [" plugins", " implies", "impl", " imply", "plugins", "\u610f\u5473\u7740", " plugin", " implying"], [" plugins", "plugins", " Plugins", " plugin", " implies", "\u63d2\u4ef6", "_plugins", "-plugins"], [" plugins", "plugins", " Plugins", " plugin", "\u63d2\u4ef6", ".plugins", "_plugins", " plugs"], [" plugins", "plugins", " Plugins", " plugin", "_plugins", ".plugins", "/plugins", "-plugins"], [" plugins", "plugins", " Plugins", " plugs", "/plugins", ".plugins", "_plugins", "-plugins"]], "p": [[0.4269, 0.178, 0.1302, 0.1223, 0.0397, 0.0107, 0.0083, 0.0039], [0.0132, 0.0116, 0.0103, 0.0091, 0.0062, 0.0058, 0.0055, 0.004], [0.1167, 0.0314, 0.0277, 0.0203, 0.0102, 0.0075, 0.007, 0.0062], [0.1281, 0.0209, 0.0209, 0.0119, 0.0068, 0.0036, 0.003, 0.0028], [0.2855, 0.0363, 0.0301, 0.0301, 0.0283, 0.0249, 0.0249, 0.022], [0.0142, 0.0067, 0.0063, 0.0056, 0.0043, 0.0041, 0.0041, 0.0036], [0.0871, 0.0679, 0.0301, 0.0301, 0.0266, 0.0183, 0.0134, 0.0118], [0.0568, 0.0222, 0.0163, 0.0153, 0.0127, 0.0127, 0.0093, 0.0087], [0.0207, 0.0098, 0.0056, 0.0056, 0.0056, 0.0056, 0.0052, 0.0049], [0.0145, 0.0128, 0.0073, 0.0068, 0.006, 0.0053, 0.005, 0.0047], [0.0507, 0.0447, 0.0447, 0.0198, 0.0175, 0.0154, 0.0136, 0.0106], [0.1037, 0.0358, 0.0279, 0.0109, 0.0103, 0.0085, 0.0066, 0.0062], [0.0558, 0.017, 0.0071, 0.004, 0.0038, 0.0034, 0.0031, 0.0031], [0.0149, 0.0132, 0.0071, 0.0071, 0.0049, 0.0043, 0.004, 0.0038], [0.0988, 0.0151, 0.0126, 0.0072, 0.0056, 0.0046, 0.0043, 0.0041], [0.0294, 0.0079, 0.0066, 0.0062, 0.0045, 0.004, 0.0033, 0.0029], [0.0124, 0.008, 0.0038, 0.0038, 0.0018, 0.0017, 0.0017, 0.0017], [0.0254, 0.0088, 0.0053, 0.0032, 0.003, 0.0019, 0.0018, 0.0017], [0.0184, 0.0135, 0.0068, 0.0053, 0.0047, 0.0036, 0.0023, 0.0018], [0.0341, 0.0098, 0.0049, 0.0043, 0.0036, 0.0036, 0.0034, 0.0032], [0.0396, 0.0106, 0.0094, 0.0088, 0.0073, 0.0073, 0.005, 0.005], [0.3081, 0.0197, 0.0099, 0.0087, 0.006, 0.0034, 0.0034, 0.003], [0.8495, 0.02, 0.0019, 0.0017, 0.0016, 0.0011, 0.0009, 0.0008], [0.9409, 0.0036, 0.0011, 0.0009, 0.0008, 0.0008, 0.0008, 0.0007], [0.7283, 0.0125, 0.0118, 0.0111, 0.0111, 0.0067, 0.0038, 0.0036], [0.7422, 0.0099, 0.0057, 0.0034, 0.0028, 0.0025, 0.0022, 0.0022], [0.876, 0.0041, 0.002, 0.0019, 0.0015, 0.0014, 0.0013, 0.0012], [0.7142, 0.026, 0.019, 0.0148, 0.0148, 0.0115, 0.0084, 0.0048], [0.1836, 0.0385, 0.0206, 0.0193, 0.0182, 0.0151, 0.011, 0.0104], [0.0344, 0.0252, 0.0184, 0.0184, 0.0163, 0.0144, 0.0135, 0.0112], [0.0284, 0.0235, 0.0126, 0.0126, 0.0126, 0.0118, 0.0111, 0.0111], [0.0504, 0.0473, 0.0473, 0.0346, 0.0325, 0.0253, 0.0136, 0.0127], [0.0569, 0.0472, 0.0391, 0.0324, 0.0253, 0.0197, 0.0105, 0.0087], [0.0311, 0.0242, 0.0228, 0.0228, 0.0201, 0.0166, 0.0147, 0.0095], [0.0406, 0.0381, 0.0381, 0.0149, 0.0149, 0.0124, 0.0109, 0.0109], [0.1036, 0.0432, 0.0262, 0.018, 0.0169, 0.0159, 0.0116, 0.008], [0.1752, 0.0367, 0.0252, 0.0173, 0.0163, 0.0153, 0.0135, 0.0112], [0.0652, 0.0395, 0.0349, 0.0255, 0.0212, 0.0212, 0.0165, 0.0145], [0.0553, 0.0405, 0.0357, 0.0315, 0.0278, 0.0231, 0.0217, 0.0203], [0.0637, 0.0598, 0.0411, 0.0183, 0.0171, 0.0142, 0.0142, 0.0125], [0.0974, 0.0406, 0.0358, 0.0262, 0.0246, 0.0231, 0.0217, 0.018], [0.109, 0.0661, 0.0661, 0.0548, 0.0312, 0.0189, 0.0189, 0.0167], [0.0896, 0.0578, 0.0543, 0.045, 0.0241, 0.0188, 0.0188, 0.0188], [0.1036, 0.0758, 0.0358, 0.0217, 0.0217, 0.018, 0.014, 0.0116], [0.2698, 0.0932, 0.0267, 0.0184, 0.0162, 0.0152, 0.0152, 0.0105], [0.1553, 0.0648, 0.0254, 0.0174, 0.0164, 0.0164, 0.0154, 0.0128], [0.1427, 0.0384, 0.0233, 0.0193, 0.0193, 0.0193, 0.0141, 0.0133], [0.1401, 0.0622, 0.0484, 0.0115, 0.0101, 0.0101, 0.0095, 0.0084], [0.1755, 0.1649, 0.1367, 0.0392, 0.0135, 0.0135, 0.0127, 0.0127], [0.1178, 0.1178, 0.0977, 0.063, 0.0359, 0.0181, 0.017, 0.017], [0.1029, 0.0967, 0.0853, 0.0551, 0.0277, 0.0244, 0.0203, 0.019], [0.3208, 0.0716, 0.0593, 0.0524, 0.0193, 0.017, 0.017, 0.0141], [0.2113, 0.1131, 0.0998, 0.0443, 0.0416, 0.0345, 0.0209, 0.0127], [0.1489, 0.1314, 0.1314, 0.0797, 0.0332, 0.0228, 0.0178, 0.0157], [0.8798, 0.0562, 0.0234, 0.0067, 0.0046, 0.003, 0.0022, 0.0017], [0.3303, 0.3303, 0.2572, 0.0307, 0.0164, 0.0053, 0.0037, 0.0027], [0.7504, 0.1478, 0.0544, 0.0094, 0.0094, 0.0074, 0.0024, 0.0024], [0.8589, 0.1026, 0.0084, 0.0074, 0.0045, 0.0031, 0.0027, 0.0015], [0.5761, 0.3494, 0.0287, 0.0253, 0.0039, 0.0024, 0.0024, 0.0018], [0.9947, 0.0036, 0.0006, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001], [0.9971, 0.0019, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001, 0.0], [0.9957, 0.0028, 0.0005, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.9987, 0.0008, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [26438, 69622, 33391, 75282, 17110, 14404, 50025, 49525, 67107, 40806, 30815, 33896, 41147, 38044, 39833, 39471, 34577, 46010, 60962, 48247, 46765, 61476, 61044, 26949, 21096, 29289, 22135, 11969, 7637, 7707, 7306, 6899, 8373, 12701, 15713, 8433, 6260, 5627, 8358, 9695, 5378, 5139, 4845, 5044, 6085, 6141, 7225, 6989, 4086, 4788, 10388, 19195, 19254, 21052, 9236, 6139, 2702, 1603, 1505, 487, 386, 294, 383]}}, {"pos": 503, "top": [[".", " \u2013", ",", "\u2013", " ", "\u2013and", "\u2026..", ",."], ["\u2013", " \u2013", "\u2013and", " \u2013,", "  ", ".\u2013", " \u200b\u200b", " [@"], ["\u2013", " \u2013", "\u2013and", ",", "\u2026..", ".\u2013", " \u2013,", "."], ["*\u201c.", "__[\"", " *\u201c", " *\u2013", "~\":\"", " \u041a\u0440\u0430\u0441\u0438", "__:", "[\"."], [" (@", ",", " *@", "  ", " \"@", " [@", " \u200b\u200b", " "], [" \u200b\u200b", ",", "  ", "!.", "\u2026..", " &,", ":@", " (@"], [" *\u201c", "..\"", " *@", " ~~", "!\"", "__[\"", " *\"", " \u200b\u200b"], [" *@", " *\u201c", "..\"", "__[\"", " ~~", " *\"", "!.", " #\""], ["..\"", ",", " *\u201c", " \u200b\u200b", ".", "!.", ".\".", "!\","], [",", "\u2013and", "!\"", "!\",", "..\"", ",\",", "!,", "\u2013"], [",", ".", "\u2013", "\u00a0", "..\"", "..", "!\"", " [\u2026]"], [" *\u201c", " *_", " *\"", "__[\"", " *\u2013", " *@", " *,", " toolkit"], [" *\u201c", " toolkit", " showcased", "__[\"", " pipeline", " *\u2013", " *_", " showcase"], [" showcased", " toolkit", " showcase", "-esque", " seamlessly", " pipeline", " frameworks", " flagship"], [" showcased", " seamlessly", " arguably", " showcase", " crafted", "-esque", " flagship", " featured"], [" showcased", "-esque", " arguably", " centerpiece", " touted", " showcase", " seamlessly", " showcasing"], [" showcase", "-esque", " showcased", " arguably", " seamlessly", " touted", " showcasing", " toolkit"], ["-esque", " arguably", " seamlessly", " showcase", " touted", " showcased", " featured", " showcasing"], [" arguably", "-esque", " ostensibly", "__[\"", " seamlessly", " touted", "\u2014including", "\u2014and"], [" &,", " arguably", " ostensibly", "\u2014including", "\u2013and", "\u305d\u3046\u3057\u305f", "\u2014and", "-esque"], ["<|endoftext|>", "\u2014and", "\u2013", "\u2013and", "\u2014\"", "\u2014including", "\u2014which", " &,"], [" *&", " **\u25a0", " MEDIATEK", " MEDIAM", "/plugin", "__[\"", "\ufffd\ufffd", " *__"], [" *__", "/plugin", " *&", " seamlessly", " *\u201c", "__$", "__[\"", " ~~"], [" --", " ,", " arguably", " uniquely", " aggressively", " notably", " outright", " ultimately"], [" \n\n", " --", " \r\n\r\n", " _", "   \n\n", "  \n\n", "\u2014including", " \u2014"], [" software", " plugins", " firmware", " toolkit", " plugin", " modular", "/plugin", " frameworks"], [" software", " plugins", " firmware", " toolkit", " plugin", " hardware", " workflows", " modular"], [" software", " _", " ,", " __", " programs", " hardware", " technology", " \n\n"], [" software", " plugins", " programs", " firmware", " modular", " \n\n", " workflows", " technology"], [" workflows", " software", " plugins", " toolkit", " frameworks", " plugin", " __", " firmware"], [" \n\n", " __", " software", " ..", " ___", " workflows", " **", " plugins"], [" ,", " software", " \u2014", " complex", " technology", " programs", " ", " ."], [" ,", " complex", " \u2014", " software", " often", " .", " independently", " \""], [" software", " tech", " technologies", " technology", " workflows", " hardware", " modular", " \u2014"], [" software", " hardware", " tech", " modular", " potentially", " workflows", " complex", " likely"], [" \u2014", " software", " \u2014\u2014", " likely", " complex", " hardware", " potentially", " tech"], [" likely", " software", " potentially", " \u2014", " must", " requires", " complex", " inherently"], [" likely", " potentially", " software", " must", " requires", " complex", " inherently", " workflows"], [" likely", " requires", " complex", " must", " potentially", " software", " inherently", " requiring"], [" likely", " software", " requires", " complex", " must", " inherently", " potentially", " dynamically"], [" software", " likely", " plugins", " must", " requires", " workflows", " plugin", " hardware"], [" software", " dynamically", " workflows", " likely", " plugins", " complex", " potentially", " plugin"], [" software", " dynamically", " plugins", " workflows", " potentially", " plugin", " likely", " inherently"], [" potentially", " software", " workflows", " unsafe", " dynamically", " likely", " inherently", " plugins"], [" potentially", " workflows", " unsafe", " inherently", " unpredictable", " likely", " software", " risks"], [" potentially", " inevitably", " likely", " inherently", " unpredictable", " often", " typically", " unsafe"], [" likely", " inevitably", " inherently", " potentially", " often", " typically", " unpredictable", " must"], [" likely", " inevitably", " inherently", " typically", " often", " potentially", " usually", " invariably"], [" likely", " inevitably", " typically", " inherently", " often", " invariably", " usually", " inevitable"], [" likely", " inevitably", " inherently", " typically", " invariably", " inevitable", "\u5927\u6982\u7387", " requires"], [" inevitably", " inherently", " likely", "\u5927\u6982\u7387", " requires", " inevitable", " typically", "\u4e0d\u53ef\u907f\u514d\u5730"], [" inevitably", " likely", " inherently", " requires", "\u5fc5\u7136", "\u5fc5\u7136\u662f", " typically", " invariably"], [" inevitably", " inherently", " requires", " invariably", " MUST", " typically", " must", " cannot"], [" inevitably", " inherently", " will", " cannot", " MUST", " inevitable", " requires", "\u5fc5\u7136"], [" inevitably", " will", " inherently", " implies", " MUST", "\u5fc5\u7136", " cannot", " imply"], [" inevitably", " will", " implies", " imply", " inherently", "\u610f\u5473\u7740", " cannot", " MUST"], [" inevitably", " imply", " implies", " will", " inherently", "\u610f\u5473\u7740", " implying", " cannot"], [" executing", " running", " inevitably", " executed", " imply", " will", " implies", "running"], [" running", " executing", " imply", " implies", " will", " inevitably", " executed", "running"], [" running", " will", " executing", " imply", " inevitably", " implies", " executed", " cannot"], [" running", " will", " imply", " executing", " inevitably", " implies", " cannot", " ("], [" imply", " will", " running", " (", " cannot", " executing", " introduce", " require"], [" (", " imply", " running", " will", " executing", " inevitably", " introduce", " cannot"]], "p": [[0.3657, 0.2848, 0.1048, 0.0925, 0.03, 0.0071, 0.0071, 0.0059], [0.2365, 0.1435, 0.1435, 0.1117, 0.0496, 0.0161, 0.0151, 0.0142], [0.6812, 0.0718, 0.0634, 0.0493, 0.0493, 0.0206, 0.0182, 0.0133], [0.0491, 0.0407, 0.0298, 0.0071, 0.0066, 0.0055, 0.004, 0.0036], [0.2464, 0.1094, 0.0706, 0.0378, 0.0355, 0.0334, 0.0334, 0.0277], [0.2017, 0.0953, 0.0188, 0.0166, 0.0146, 0.0146, 0.0146, 0.0137], [0.3068, 0.0568, 0.0344, 0.0304, 0.0237, 0.0237, 0.0173, 0.0173], [0.1418, 0.1104, 0.049, 0.0406, 0.0262, 0.0231, 0.0132, 0.0132], [0.1234, 0.1089, 0.0848, 0.0796, 0.0376, 0.0353, 0.0259, 0.0243], [0.7323, 0.0172, 0.0118, 0.0111, 0.0098, 0.0098, 0.0063, 0.0063], [0.7612, 0.0487, 0.0191, 0.0109, 0.0085, 0.0085, 0.0066, 0.0058], [0.1982, 0.0173, 0.0163, 0.0144, 0.0093, 0.0072, 0.006, 0.006], [0.015, 0.0132, 0.0132, 0.0091, 0.0085, 0.0067, 0.0067, 0.0062], [0.027, 0.0144, 0.0112, 0.0106, 0.0093, 0.0082, 0.0068, 0.005], [0.0199, 0.01, 0.01, 0.0088, 0.0083, 0.0073, 0.0061, 0.005], [0.0124, 0.011, 0.0097, 0.0085, 0.0071, 0.0063, 0.0063, 0.0043], [0.0169, 0.0169, 0.0149, 0.0102, 0.009, 0.0062, 0.0058, 0.0058], [0.01, 0.01, 0.0078, 0.0073, 0.0057, 0.005, 0.0047, 0.0037], [0.0173, 0.0077, 0.006, 0.0056, 0.0053, 0.0047, 0.0044, 0.0039], [0.0134, 0.0111, 0.0072, 0.0052, 0.0046, 0.0041, 0.0038, 0.0034], [0.1548, 0.0135, 0.0112, 0.0082, 0.0077, 0.0077, 0.0077, 0.0077], [0.0054, 0.005, 0.0047, 0.0044, 0.0042, 0.0039, 0.0033, 0.0033], [0.0053, 0.005, 0.005, 0.0047, 0.0047, 0.0044, 0.0039, 0.0039], [0.0155, 0.0065, 0.0044, 0.0035, 0.0031, 0.0027, 0.0025, 0.0025], [0.0371, 0.0211, 0.0136, 0.012, 0.0113, 0.0106, 0.0078, 0.0078], [0.0471, 0.0237, 0.0184, 0.0144, 0.0077, 0.0072, 0.0072, 0.0064], [0.1107, 0.0461, 0.0298, 0.0232, 0.017, 0.0117, 0.011, 0.0085], [0.0992, 0.0322, 0.0302, 0.0195, 0.0105, 0.0098, 0.0092, 0.0076], [0.1416, 0.0262, 0.0217, 0.0149, 0.0149, 0.014, 0.014, 0.0124], [0.0845, 0.0746, 0.0482, 0.0201, 0.0147, 0.0147, 0.0114, 0.0114], [0.084, 0.079, 0.0479, 0.029, 0.0273, 0.0226, 0.0146, 0.0146], [0.0342, 0.0342, 0.0195, 0.0143, 0.0126, 0.0104, 0.0104, 0.0092], [0.0821, 0.0134, 0.0134, 0.0118, 0.0098, 0.0087, 0.0087, 0.0087], [0.0673, 0.0205, 0.0141, 0.0141, 0.0133, 0.0125, 0.0097, 0.0086], [0.0943, 0.0198, 0.0154, 0.0099, 0.0088, 0.0082, 0.0077, 0.0077], [0.0698, 0.048, 0.0291, 0.0291, 0.0146, 0.0095, 0.0083, 0.0069], [0.0712, 0.0336, 0.0246, 0.0192, 0.0159, 0.014, 0.0124, 0.0109], [0.0845, 0.0331, 0.0292, 0.0258, 0.0214, 0.0122, 0.0107, 0.0089], [0.0989, 0.0364, 0.0302, 0.0266, 0.0235, 0.0207, 0.0195, 0.0126], [0.0611, 0.0307, 0.0239, 0.0211, 0.0175, 0.0164, 0.0164, 0.0145], [0.0984, 0.022, 0.0194, 0.0182, 0.0182, 0.0171, 0.0161, 0.0133], [0.1671, 0.0256, 0.0212, 0.0155, 0.0146, 0.0114, 0.0114, 0.0107], [0.0946, 0.0307, 0.0239, 0.0239, 0.0136, 0.0128, 0.012, 0.01], [0.0388, 0.0322, 0.0302, 0.0162, 0.0162, 0.0152, 0.0126, 0.0118], [0.0463, 0.0339, 0.0281, 0.0264, 0.0219, 0.0206, 0.0181, 0.017], [0.1227, 0.0898, 0.0699, 0.0657, 0.031, 0.02, 0.0177, 0.0177], [0.4018, 0.1478, 0.0791, 0.0579, 0.0213, 0.0188, 0.0101, 0.0078], [0.5388, 0.1749, 0.0729, 0.0568, 0.039, 0.0344, 0.005, 0.0039], [0.5247, 0.2479, 0.0805, 0.0553, 0.0123, 0.0051, 0.0045, 0.0038], [0.6328, 0.2328, 0.0458, 0.0278, 0.0055, 0.0048, 0.0031, 0.0026], [0.6571, 0.1008, 0.0476, 0.0136, 0.0136, 0.0136, 0.012, 0.0113], [0.7877, 0.0392, 0.0346, 0.0163, 0.0144, 0.0112, 0.0099, 0.0088], [0.6021, 0.3223, 0.0076, 0.0067, 0.0059, 0.0046, 0.0046, 0.0038], [0.6668, 0.1686, 0.0332, 0.0228, 0.0079, 0.0074, 0.0074, 0.007], [0.5535, 0.1797, 0.0849, 0.0401, 0.0167, 0.0148, 0.0148, 0.0089], [0.2682, 0.2367, 0.1267, 0.0871, 0.0769, 0.0528, 0.0194, 0.0104], [0.3778, 0.139, 0.1226, 0.1082, 0.0843, 0.0242, 0.0146, 0.0146], [0.416, 0.3671, 0.0438, 0.0266, 0.0266, 0.0235, 0.0142, 0.0111], [0.5457, 0.2008, 0.0575, 0.0308, 0.0272, 0.0272, 0.0187, 0.0128], [0.2551, 0.2251, 0.1547, 0.1205, 0.0569, 0.0569, 0.0269, 0.0185], [0.3298, 0.1765, 0.1558, 0.1375, 0.0348, 0.0348, 0.0307, 0.0186], [0.3461, 0.3461, 0.1273, 0.0413, 0.0322, 0.0322, 0.0081, 0.0081], [0.5472, 0.1776, 0.0951, 0.0577, 0.0165, 0.0146, 0.0129, 0.0129]], "ranks": {"Rust": [35000, 90606, 67161, 65990, 14960, 11295, 31683, 19594, 10299, 11007, 15546, 25972, 35258, 38235, 49593, 57752, 49208, 73739, 83121, 77221, 93713, 81436, 98143, 55383, 63302, 70695, 56080, 18336, 20872, 28018, 16173, 14856, 10190, 11617, 11320, 15188, 10372, 9343, 7988, 14850, 11992, 11431, 12795, 13904, 10119, 9759, 10353, 11295, 5855, 5517, 14184, 12489, 15315, 28898, 13751, 11353, 4671, 2404, 1260, 505, 336, 340, 528]}}, {"pos": 504, "top": [[" \u2013", "\u2013", ".", ",", "s", ";", "y", "o"], [" \u2013", "\u2013", "\u2013and", "s", "\u2013\u2013", "sWith", "\u2011", ".\u2013"], ["\u2013", ",", " \u2013", ".\u2013", ".", "\u2013and", "\u2026", ";"], [" milfs", "\uff0a\uff0a\uff0a\uff0a", "eless", "eits", " Blowjob", "enzi", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\uff1d\uff1d\uff1d\uff1d"], ["s", " \u200b\u200b", "e", "\u2013\u2013", " \u201c", ".\u2013", "y", "auf"], ["kits", " \u200b\u200b", ".\u2013", "sver", "sWith", "auf", "\u2026..", "\u0438\u0431"], ["s", "\uff1a", "\uff08", "\uff09**", "\u3002", "\uff0c", " **\u2013", "\uff01"], [" **\u2013", " **\u201e", " **:", "s", "sut", " **#", " **+", " **"], [" \u200b\u200b", "scheid", "sdale", "schuss", "i\u0161", "\u2013and", "!\u201d.", ".\u2013"], ["\u2013", "\u2013and", "\u2013\u2013", ",", ".\u2013", "s", "\u00a0", " \u00ad"], ["\u2013", "s", "\u00a0", " [\u2026]", " \u2013", "\u2013and", "o", "..."], [" veggies", " savvy", " pricey", "ographics", " hardcore", "schuss", "-ish", " goodies"], [" veggies", " savvy", " pricey", " hardcore", " touted", " crappy", "kids", " goodies"], [" savvy", " touted", " arguably", " pricey", " folks", " faux", " veggies", " tweaked"], [" arguably", " folks", " touted", " savvy", " akin", " pricey", " garner", " faux"], [" arguably", " myriad", " touted", " savvy", " folks", " requisite", " sprawling", " akin"], [" folks", "o", "s", " savvy", " akin", "a", " arguably", " myriad"], [" folks", " savvy", "o", " touted", "kids", " myriad", " arguably", " hefty"], [" arguably", " touted", " myriad", " savvy", " folks", " akin", " hefty", " pricey"], [" arguably", " myriad", " akin", " folks", " touted", " pricey", " requisite", " ostensibly"], ["<|endoftext|>", " arguably", " myriad", "\n\n", " akin", "\u5373\u4fbf", " \n\n", " requisite"], [" ;;^", " pricey", " savvy", " arguably", " Fortal", " Gabrie", " setups", " impactful"], [" arguably", " myriad", " akin", " ``", " pricey", " savvy", " sprawling", " touted"], [" arguably", " myriad", " akin", " notably", " sprawling", " requisite", " burgeoning", " ostensibly"], [" \r\n\r\n", "\r\n\r\n", " \n\n", "\n\n", "  \n\n", "\t\n\n", "   \n\n", " arguably"], [" arguably", " \r\n\r\n", " PROFE", " akin", " leveraging", " crafting", " setups", "\r\n\r\n"], [" arguably", " myriad", " akin", " notably", " sprawling", " crafting", " requisite", " burgeoning"], ["\n\n", " \n\n", " arguably", "  \n\n", " myriad", "\r\n\r\n", " akin", " notably"], ["\n\n", " \n\n", " arguably", "  \n\n", " myriad", " akin", " tech", " complex"], [" \n\n", "  \n\n", " arguably", "\n\n", "   \n\n", " complex", " tech", " akin"], [" complex", " \n\n", " arguably", " \u201c", " tech", " potentially", "  \n\n", " technologies"], [" \u201c", " arguably", " complex", " potentially", " typically", " often", " essentially", " tech"], [" arguably", " typically", " complex", " often", " potentially", " essentially", " mostly", " perhaps"], [" arguably", " typically", " essentially", " potentially", " likely", " akin", " complex", " perhaps"], [" arguably", " likely", " typically", " potentially", " akin", " tech", " inherently", " notoriously"], [" likely", " arguably", " typically", " potentially", " often", " \u201c", " akin", " perhaps"], [" likely", " typically", " arguably", " potentially", " often", " akin", " perhaps", " presumably"], [" likely", " typically", " arguably", " potentially", " often", " notoriously", " inherently", " presumably"], [" likely", " typically", " often", " arguably", " potentially", " presumably", " usually", " probably"], [" likely", " typically", " often", "likely", " arguably", " potentially", " presumably", " probably"], [" likely", " typically", " languages", " scripting", " often", " arguably", " software", " mostly"], [" languages", " typically", " scripting", " likely", " software", " programming", " arguably", " Python"], [" typically", " languages", " likely", " scripting", " software", " Python", " programming", " arguably"], [" languages", " likely", " typically", " scripting", " potentially", " arguably", " via", " software"], [" typically", " likely", " languages", " potentially", " arguably", " probably", " presumably", " usually"], [" likely", " typically", " perhaps", " potentially", " probably", " arguably", " usually", " presumably"], [" likely", " presumably", "likely", " typically", " probably", "\u5927\u6982\u7387", " Likely", " perhaps"], [" likely", " typically", "likely", " presumably", " Likely", "\u5927\u6982\u7387", " probably", " usually"], [" likely", "likely", " presumably", " typically", "\u5927\u6982\u7387", " Likely", " probably", "\u901a\u5e38\u662f"], [" likely", "likely", " Likely", "\u5927\u6982\u7387", " presumably", " typically", " probably", "\u5f88\u53ef\u80fd\u662f"], [" likely", "likely", "\u5927\u6982\u7387", " Likely", " presumably", "\u5f88\u53ef\u80fd\u662f", "\u5f88\u53ef\u80fd", " typically"], [" likely", "likely", "\u5927\u6982\u7387", " Likely", " presumably", " typically", "\u5f88\u53ef\u80fd\u662f", "\u5f88\u53ef\u80fd"], [" likely", "likely", " presumably", "\u5927\u6982\u7387", " Likely", " typically", "typically", "\u5f88\u53ef\u80fd\u662f"], [" likely", "likely", "\u5927\u6982\u7387", " Likely", " presumably", " inevitably", "\u5fc5\u7136\u662f", " typically"], [" likely", "likely", " Likely", "\u5927\u6982\u7387", " presumably", "\u5fc5\u7136\u662f", "\u5f88\u53ef\u80fd\u662f", " inevitably"], [" likely", "likely", " Likely", "\u5927\u6982\u7387", " presumably", " probably", "\u5f88\u53ef\u80fd\u662f", "\u5f88\u53ef\u80fd"], [" likely", "likely", " Likely", " Lua", "Lua", "\u5927\u6982\u7387", " presumably", " Python"], [" likely", "likely", " Lua", "Lua", " Likely", " Python", "Python", "\u5927\u6982\u7387"], [" likely", " Lua", "likely", " Likely", " Python", "Lua", "Python", " Rust"], [" likely", "likely", " Likely", " Lua", " Python", "Python", "Lua", " presumably"], [" likely", "likely", " Lua", " Python", " Likely", "Lua", "Python", " Rust"], ["likely", " likely", " Lua", "Lua", " Python", " Likely", "Python", " Rust"], ["likely", " likely", "Lua", "Python", "assuming", "e", " Lua", " Likely"]], "p": [[0.8241, 0.0597, 0.0597, 0.0465, 0.0034, 0.0015, 0.0012, 0.001], [0.7592, 0.1404, 0.0084, 0.007, 0.0054, 0.0033, 0.0024, 0.0015], [0.8815, 0.082, 0.0142, 0.0098, 0.0067, 0.0032, 0.0009, 0.0004], [0.007, 0.0035, 0.0026, 0.0026, 0.0024, 0.0024, 0.0024, 0.0023], [0.1597, 0.0588, 0.0552, 0.0261, 0.0216, 0.0203, 0.0203, 0.0179], [0.0125, 0.0125, 0.0091, 0.0052, 0.0052, 0.0041, 0.0038, 0.0034], [0.2864, 0.093, 0.0468, 0.025, 0.0195, 0.0172, 0.0172, 0.0111], [0.0247, 0.0218, 0.008, 0.0075, 0.0075, 0.0067, 0.0062, 0.0059], [0.0092, 0.0081, 0.0067, 0.0063, 0.0063, 0.0059, 0.0052, 0.0049], [0.362, 0.1037, 0.0591, 0.0217, 0.0217, 0.0049, 0.0022, 0.0015], [0.3696, 0.254, 0.0684, 0.047, 0.0366, 0.0173, 0.0135, 0.0126], [0.0153, 0.0056, 0.005, 0.0041, 0.0027, 0.0023, 0.0022, 0.0022], [0.0268, 0.0135, 0.005, 0.0041, 0.0036, 0.003, 0.0025, 0.0022], [0.0274, 0.0156, 0.0083, 0.0078, 0.0065, 0.0054, 0.0045, 0.0039], [0.0359, 0.0263, 0.0247, 0.0205, 0.0117, 0.008, 0.0075, 0.0066], [0.0416, 0.0305, 0.0269, 0.0209, 0.0163, 0.0099, 0.0082, 0.0082], [0.0815, 0.056, 0.041, 0.034, 0.0264, 0.0264, 0.0264, 0.0206], [0.0348, 0.0327, 0.0307, 0.0239, 0.0136, 0.012, 0.0106, 0.01], [0.0447, 0.0348, 0.0271, 0.0225, 0.0211, 0.0175, 0.0088, 0.0083], [0.0516, 0.0294, 0.0168, 0.0123, 0.009, 0.009, 0.0058, 0.0054], [0.2032, 0.0115, 0.0101, 0.0101, 0.0045, 0.0045, 0.004, 0.0037], [0.0035, 0.0023, 0.002, 0.002, 0.0018, 0.0017, 0.0012, 0.0011], [0.013, 0.0045, 0.0037, 0.0033, 0.0029, 0.0027, 0.0026, 0.002], [0.0281, 0.016, 0.0041, 0.0041, 0.0034, 0.0032, 0.0028, 0.0028], [0.046, 0.0382, 0.0382, 0.0316, 0.0262, 0.0204, 0.0159, 0.0085], [0.0085, 0.0028, 0.0028, 0.0028, 0.0026, 0.0026, 0.0023, 0.0023], [0.0179, 0.0058, 0.0051, 0.0045, 0.0031, 0.0029, 0.0023, 0.0021], [0.4712, 0.0723, 0.0301, 0.0183, 0.0118, 0.0086, 0.0056, 0.0046], [0.2176, 0.0966, 0.0801, 0.0403, 0.026, 0.0202, 0.009, 0.0074], [0.3826, 0.1498, 0.0457, 0.019, 0.0179, 0.0158, 0.0139, 0.0109], [0.1102, 0.0521, 0.0489, 0.0358, 0.0246, 0.0169, 0.014, 0.014], [0.1099, 0.0804, 0.0588, 0.0245, 0.0191, 0.0158, 0.0149, 0.0116], [0.0703, 0.0483, 0.0454, 0.0376, 0.0243, 0.0228, 0.0178, 0.0167], [0.2297, 0.1155, 0.0375, 0.0331, 0.0311, 0.0214, 0.0189, 0.0177], [0.3768, 0.1014, 0.0655, 0.0397, 0.0373, 0.0226, 0.0166, 0.0114], [0.2991, 0.2056, 0.1247, 0.0296, 0.0261, 0.0169, 0.014, 0.0116], [0.4116, 0.1716, 0.1336, 0.0247, 0.017, 0.016, 0.0124, 0.0117], [0.4281, 0.1784, 0.0511, 0.0351, 0.031, 0.0121, 0.0114, 0.0107], [0.4546, 0.4012, 0.0188, 0.0166, 0.01, 0.0089, 0.0061, 0.0051], [0.6254, 0.1792, 0.0242, 0.0122, 0.0108, 0.0084, 0.0084, 0.0074], [0.1963, 0.1844, 0.1118, 0.032, 0.022, 0.0171, 0.0151, 0.0125], [0.2288, 0.1388, 0.0896, 0.0791, 0.031, 0.02, 0.0176, 0.0156], [0.2177, 0.2177, 0.0907, 0.0586, 0.019, 0.0158, 0.0158, 0.0131], [0.3073, 0.1281, 0.0998, 0.0324, 0.0119, 0.0119, 0.0112, 0.0105], [0.4057, 0.2788, 0.0354, 0.0202, 0.013, 0.0108, 0.009, 0.0074], [0.6055, 0.2524, 0.0207, 0.0183, 0.0161, 0.0118, 0.0098, 0.0086], [0.9532, 0.0106, 0.0106, 0.0093, 0.0034, 0.003, 0.003, 0.0021], [0.9779, 0.0075, 0.0051, 0.0035, 0.0027, 0.0011, 0.0009, 0.0003], [0.9639, 0.02, 0.0065, 0.0045, 0.0019, 0.0014, 0.0003, 0.0002], [0.9692, 0.0258, 0.0017, 0.0013, 0.0013, 0.0002, 0.0001, 0.0001], [0.7687, 0.1943, 0.0205, 0.0067, 0.0052, 0.0008, 0.0005, 0.0004], [0.8214, 0.1617, 0.0071, 0.0055, 0.002, 0.0005, 0.0003, 0.0003], [0.8443, 0.1295, 0.0094, 0.0083, 0.0057, 0.001, 0.0002, 0.0002], [0.7705, 0.1948, 0.0125, 0.011, 0.0067, 0.0008, 0.0003, 0.0003], [0.7874, 0.1757, 0.0112, 0.0112, 0.0112, 0.0004, 0.0002, 0.0002], [0.8968, 0.0945, 0.0068, 0.0013, 0.0003, 0.0, 0.0, 0.0], [0.8867, 0.0935, 0.0112, 0.0041, 0.0017, 0.0013, 0.0006, 0.0002], [0.721, 0.142, 0.0861, 0.017, 0.017, 0.008, 0.0038, 0.0014], [0.7569, 0.1024, 0.0904, 0.0178, 0.0108, 0.0108, 0.0045, 0.0031], [0.9439, 0.0366, 0.0093, 0.0044, 0.0039, 0.0009, 0.0005, 0.0002], [0.8989, 0.0651, 0.0145, 0.01, 0.0069, 0.0017, 0.0012, 0.0005], [0.4683, 0.4683, 0.0299, 0.0097, 0.0055, 0.0041, 0.002, 0.0018], [0.9588, 0.0225, 0.0083, 0.0044, 0.0011, 0.0007, 0.0005, 0.0004]], "ranks": {"Rust": [31993, 70056, 34236, 5401, 7348, 6369, 10578, 9001, 9440, 8375, 17474, 43403, 25250, 25134, 44640, 14233, 15640, 49753, 45260, 54065, 82587, 87845, 68830, 40728, 52572, 58337, 21566, 8901, 5891, 5867, 8182, 8407, 7874, 14132, 19689, 8800, 2664, 2217, 2292, 2915, 2843, 2033, 1888, 2170, 4450, 3120, 5384, 3891, 2131, 4385, 14395, 11041, 1552, 589, 234, 138, 17, 13, 8, 10, 8, 8, 22]}}, {"pos": 505, "top": [[" \u2013", "\u2013", "\u2013and", " |\u2013", " \u2013,", "   \n", "s", "\u200b\u200b"], [" \u2013**", " \u2013,", "\u2013and", " **\u2013", "sprozess", "aviors", "avanaugh", "ighborhood"], ["\u2013", "\u2013and", " \u2013,", " **\u2013", " \u2013**", " \u2013", "\u2013\u2013", " |\u2013"], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " ;;^", "odle", " LGBTQ", " **\u201e", " **\u25a0", "arkin"], [" LGBTQ", " behaviors", " @_", "abeled", " harbor", "\u0670", " counselor", " endeavors"], [" LGBTQ", " **\"", "\u0670", "aviors", "avior", " **:", " \u200b\u200b", "abeled"], [" **\"", " LGBTQ", "\u0670", " **\u2018", "aviors", " **'", " **\u201e", " **\u3010"], [" **\u201e", " **\"", " LGBTQ", " **'", "avior", " \\\"\"", "aviors", " _)"], [" #####", "   \n\n", " \\\"\"", "avior", " LGBTQ", " **\u201e", " _.", "\u200b\u200b"], ["\u0670", " utilizing", " endeavors", "\u00a0\u00a0", "hardt", " showcased", " envisioned", "avior"], ["\u00a0\u00a0", " utilizing", " \u00a0", " likely", "  ", " endeavors", " #####", "\u2013"], [" LGBTQ", " utilizing", " **\"", " impactful", " endeavors", " rumored", " showcased", " prioritize"], [" LGBTQ", " utilizing", " impactful", " endeavors", " showcased", " likely", " TBD", " prioritize"], [" LGBTQ", " utilizing", " impactful", " transitioning", " endeavors", " TBD", " entirety", " prioritize"], [" utilizing", " transitioning", " entirety", " likely", " showcasing", " overarching", " utilized", " showcased"], [" utilizing", " entirety", " transitioning", " overarching", " showcasing", "-esque", " myriad", " arguably"], [" entirety", " utilizing", " transitioning", " overarching", " likely", " akin", " arguably", "-esque"], [" entirety", " transitioning", " overarching", " utilizing", "-esque", " likely", " TBD", " Likely"], [" entirety", " transitioning", "-esque", " utilizing", " overarching", " touted", " fueled", " TBD"], [" entirety", " utilizing", " overarching", " transitioning", "-esque", " touted", " likely", " akin"], [" overarching", " entirety", " utilizing", " transitioning", " myriad", "-esque", " akin", " heavily"], [" overarching", " ;;^", " transitioning", " impactful", " entirety", " TBD", " LGBTQ", " touted"], [" transitioning", " utilizing", " overarching", " likely", " entirety", " myriad", " leveraging", " impacting"], [" utilizing", " heavily", " overarching", " transitioning", " likely", " myriad", " arguably", " entirety"], ["  \n\n", "   \n\n", "\n\n", " \n\n", "\r\n\r\n", "  \r\n\r\n", " \r\n\r\n", " utilizing"], [" transitioning", " leveraging", " impactful", " utilizing", " overarching", " likely", " TBD", " sourcing"], [" leveraging", " transitioning", " utilizing", " overarching", " likely", " impactful", " sourcing", " impacting"], ["  \n\n", "\n\n", " \n\n", "   \n\n", " heavily", " likely", " utilizing", "\r\n\r\n"], [" likely", "  \n\n", " leveraging", " heavily", "   \n\n", " arguably", "\n\n", " utilizing"], [" likely", "  \n\n", " leveraging", "   \n\n", " \n\n", " potentially", " ___", " Likely"], [" likely", " potentially", " heavily", " via", " arguably", " leveraging", "  \n\n", " utilizing"], [" likely", " heavily", " via", " leveraging", " potentially", " **", " transitioning", " tech"], [" likely", " potentially", " via", " heavily", " leveraging", " tech", " focused", " arguably"], [" likely", " leveraging", " heavily", " tech", " via", " potentially", " transitioning", " arguably"], [" likely", " leveraging", " via", " arguably", " tech", " potentially", " transitioning", " heavily"], [" likely", " leveraging", " via", " software", "via", " Likely", "likely", " tech"], [" likely", " leveraging", " via", " software", " Likely", "via", " curated", " tech"], [" likely", " via", " leveraging", " software", " customizable", " Likely", " modeled", " curated"], [" likely", " via", " software", " leveraging", " using", " customizable", "via", " language"], [" via", " likely", " leveraging", "via", " languages", " software", " language", " linguistic"], [" scripting", " languages", " Python", " software", " scripted", " Lua", " language", " JavaScript"], [" scripting", " languages", " scripted", " Python", " Lua", " software", " JavaScript", " language"], [" scripting", " languages", " Python", " scripted", " Lua", " scripts", " JavaScript", " language"], [" scripting", " languages", " software", " scripted", " Lua", " Python", " via", " JavaScript"], [" scripting", " languages", " via", " Python", " software", " Lua", " scripted", " scripts"], [" scripting", " via", " likely", " scripted", " languages", " Python", " Lua", " scripts"], [" likely", " either", " via", " scripting", " Likely", "\u5927\u6982\u7387", " scripted", "likely"], [" either", " via", "\u8981\u4e48", "either", "via", " \u043b\u0438\u0431\u043e", " scripting", " scripted"], [" via", "via", " either", " scripting", " Lua", " scripted", " \u043b\u0438\u0431\u043e", "\u6027\u6216"], [" via", "via", " Lua", "\u6587\u4ef6\u6216", "_via", "\u4eba\u6216", "\u8981\u4e48\u662f", "Via"], ["via", " via", "_via", " Lua", "Via", " berbasis", "_lua", " leveraging"], ["via", " via", "Via", " Lua", "_via", "using", " Python", "Python"], [" via", "via", " Lua", "Via", " Kotlin", " Python", "_via", "using"], [" Lua", "via", " via", " Python", "Lua", " Kotlin", " scripting", " JavaScript"], [" Lua", " Python", " JavaScript", "Python", "Lua", "via", " Kotlin", " via"], [" Lua", " Python", " JavaScript", "Python", "Lua", " scripting", " Rust", " via"], [" Rust", " Lua", "Lua", " Python", " scripting", " rust", "lua", " lua"], [" Lua", " Rust", "Lua", " Python", " scripting", "lua", " lua", " rust"], [" Rust", " Lua", "Lua", " Python", " rust", "rust", "lua", " lua"], [" Lua", " via", "Lua", " Rust", " Python", "via", " interpreted", " Via"], [" Lua", " Rust", " Python", "Lua", " via", " interpreted", " JavaScript", "via"], [" Lua", " Rust", " Python", " via", " interpreted", "Lua", " JavaScript", " using"], [" Lua", " Python", " Rust", " via", " WAS", " JavaScript", "Lua", " interpreted"]], "p": [[0.64, 0.2668, 0.0193, 0.0091, 0.0091, 0.0063, 0.0055, 0.0052], [0.101, 0.0145, 0.0094, 0.0078, 0.0065, 0.0057, 0.005, 0.0047], [0.6317, 0.181, 0.0379, 0.0278, 0.0216, 0.0158, 0.0109, 0.0109], [0.0168, 0.0116, 0.0116, 0.0066, 0.0038, 0.0035, 0.0035, 0.0033], [0.0236, 0.0126, 0.0105, 0.0098, 0.0077, 0.0077, 0.0068, 0.0063], [0.0323, 0.0303, 0.0173, 0.0119, 0.0112, 0.0105, 0.0092, 0.0087], [0.0846, 0.0311, 0.0242, 0.0177, 0.0167, 0.0167, 0.0108, 0.0101], [0.064, 0.0388, 0.0221, 0.0172, 0.0162, 0.0111, 0.0104, 0.0076], [0.0518, 0.0277, 0.0179, 0.0139, 0.0131, 0.0109, 0.0109, 0.0102], [0.017, 0.0075, 0.0063, 0.0052, 0.0052, 0.004, 0.0038, 0.0038], [0.017, 0.0132, 0.0117, 0.0117, 0.011, 0.0103, 0.0091, 0.0085], [0.0293, 0.0214, 0.0178, 0.0167, 0.0147, 0.013, 0.013, 0.0122], [0.0273, 0.0273, 0.0241, 0.0227, 0.0137, 0.0107, 0.0101, 0.0094], [0.0504, 0.0325, 0.0238, 0.0174, 0.0144, 0.0144, 0.0127, 0.012], [0.1014, 0.051, 0.0309, 0.02, 0.0155, 0.0146, 0.0114, 0.0114], [0.0806, 0.0554, 0.0431, 0.0381, 0.0246, 0.0217, 0.0191, 0.018], [0.0651, 0.0507, 0.0327, 0.0307, 0.0198, 0.0175, 0.0145, 0.0136], [0.0441, 0.0236, 0.0222, 0.0196, 0.0173, 0.0153, 0.0112, 0.0093], [0.0245, 0.0203, 0.0203, 0.0191, 0.0149, 0.0131, 0.0075, 0.007], [0.0252, 0.0209, 0.0185, 0.0163, 0.0153, 0.0087, 0.0082, 0.0082], [0.0162, 0.0098, 0.0092, 0.0087, 0.0076, 0.0056, 0.0053, 0.0049], [0.0066, 0.0059, 0.0049, 0.0043, 0.004, 0.0031, 0.0028, 0.0028], [0.0138, 0.0122, 0.0115, 0.0095, 0.0074, 0.0048, 0.0045, 0.0042], [0.0148, 0.0148, 0.0131, 0.0123, 0.0108, 0.0108, 0.0084, 0.0079], [0.1433, 0.0636, 0.0386, 0.0249, 0.0194, 0.0182, 0.0151, 0.0118], [0.0292, 0.0275, 0.0189, 0.0167, 0.0138, 0.0101, 0.0101, 0.0084], [0.0223, 0.0209, 0.0184, 0.0163, 0.0099, 0.0093, 0.0077, 0.0072], [0.1765, 0.1765, 0.0691, 0.0271, 0.0198, 0.0164, 0.0128, 0.0128], [0.1156, 0.1086, 0.0311, 0.0242, 0.0242, 0.0167, 0.0167, 0.0167], [0.261, 0.1158, 0.0454, 0.0353, 0.0201, 0.0157, 0.0122, 0.0108], [0.467, 0.0434, 0.0205, 0.017, 0.011, 0.0091, 0.0086, 0.0071], [0.4325, 0.0244, 0.0229, 0.019, 0.019, 0.0096, 0.007, 0.0066], [0.4165, 0.0302, 0.0302, 0.0266, 0.0152, 0.0126, 0.0086, 0.0081], [0.3995, 0.0349, 0.024, 0.0225, 0.0225, 0.0199, 0.0187, 0.0113], [0.3774, 0.0656, 0.0616, 0.0156, 0.0146, 0.0137, 0.0129, 0.0129], [0.3344, 0.0845, 0.0658, 0.0147, 0.0138, 0.013, 0.013, 0.0107], [0.2352, 0.0921, 0.0865, 0.0299, 0.0117, 0.0086, 0.008, 0.0067], [0.1973, 0.0992, 0.0531, 0.0499, 0.0152, 0.0111, 0.0092, 0.0072], [0.2071, 0.1717, 0.0557, 0.0524, 0.0263, 0.0132, 0.0124, 0.0091], [0.1998, 0.0649, 0.0649, 0.0347, 0.0288, 0.0239, 0.0145, 0.0128], [0.2435, 0.1477, 0.0743, 0.0373, 0.0373, 0.0351, 0.033, 0.0291], [0.4269, 0.1079, 0.0697, 0.0615, 0.0329, 0.0291, 0.0241, 0.0241], [0.3722, 0.1552, 0.0941, 0.0473, 0.0287, 0.0253, 0.0238, 0.021], [0.2573, 0.2004, 0.0371, 0.0348, 0.0327, 0.0289, 0.0255, 0.0225], [0.1725, 0.0983, 0.056, 0.041, 0.041, 0.0385, 0.03, 0.0233], [0.1077, 0.0951, 0.0788, 0.035, 0.035, 0.035, 0.0272, 0.0199], [0.3831, 0.0803, 0.0588, 0.0315, 0.0295, 0.0191, 0.0168, 0.0123], [0.3067, 0.2244, 0.0304, 0.0268, 0.0222, 0.0222, 0.0209, 0.0184], [0.3231, 0.0768, 0.0341, 0.0207, 0.0161, 0.0151, 0.0142, 0.0142], [0.1559, 0.1072, 0.0255, 0.0211, 0.0186, 0.0186, 0.0128, 0.012], [0.283, 0.0863, 0.0672, 0.028, 0.0263, 0.0091, 0.0085, 0.008], [0.4803, 0.2913, 0.0447, 0.0394, 0.0225, 0.0136, 0.01, 0.0073], [0.3472, 0.3064, 0.0995, 0.0236, 0.0173, 0.0162, 0.0112, 0.0093], [0.4855, 0.1576, 0.0956, 0.0452, 0.0292, 0.0227, 0.0156, 0.0138], [0.5736, 0.2391, 0.0685, 0.0286, 0.0135, 0.0119, 0.0119, 0.0072], [0.6485, 0.2386, 0.0323, 0.0196, 0.0196, 0.0072, 0.0064, 0.0034], [0.5175, 0.4567, 0.0138, 0.0027, 0.0024, 0.0016, 0.0011, 0.0011], [0.7928, 0.1769, 0.0186, 0.0037, 0.002, 0.0015, 0.0011, 0.0007], [0.6692, 0.3161, 0.0095, 0.0015, 0.0013, 0.0006, 0.0004, 0.0003], [0.9246, 0.0316, 0.0169, 0.0132, 0.0038, 0.0029, 0.0026, 0.0008], [0.9388, 0.0221, 0.0134, 0.0104, 0.0092, 0.0023, 0.0005, 0.0004], [0.9151, 0.0215, 0.0215, 0.0123, 0.0102, 0.004, 0.0011, 0.0011], [0.9107, 0.04, 0.0275, 0.0058, 0.0023, 0.0018, 0.0018, 0.0013]], "ranks": {"Rust": [23325, 83065, 33453, 106929, 19489, 16083, 21169, 17481, 22221, 11703, 5147, 7276, 4289, 5450, 6325, 6292, 8645, 5967, 21622, 36760, 46023, 47808, 41110, 23885, 30566, 43499, 34457, 13922, 8431, 7275, 8115, 7859, 8665, 18378, 24118, 4524, 804, 634, 763, 1003, 1122, 996, 1602, 3361, 4376, 2455, 4246, 2805, 1028, 977, 1706, 390, 19, 12, 10, 7, 1, 2, 1, 4, 2, 2, 3]}}, {"pos": 506, "top": [[" \u25aa", "[\"@", " (\u201e", " \u2022", "@\"", " //@", " \u201e", "\u201e"], [" \u25aa", "[\"@", " *@", " (\u201e", "\u00e3n", " \u0218", " Guta", " \"@"], [" \u25aa", "[\"@", " (\u201e", " \u201e", "\u201e", ":.", " \"..", " \u200b\u200b"], [" ``", " ``(", "``", " *\u201e", "``,", " /*!", " \\\"\"", " /*!<"], [" ``", " ``(", "``", " *\u201e", "/*@", " @}", " \u201e", " *@"], [" Guta", "\u0d4d\u0d1f", " \u062a\u0645\u0627\u0645\u064b\u0627", "\ud83d\ude00", " \u200b\u200b", " /*!", ".ua", "[\"@"], [" ``", "``", " ``(", " *\u201e", " /*!", " `\"", " [`", " \u25aa"], [" ``", "``", " ``(", " `\"", " *\u201e", " \u200b\u200b", " /*!", " \u25aa"], [" \u200b\u200b", " *\u201e", "..\"", " \"..", "\"..", " `\"", " ..", "\u30fb\u30fb"], ["..\"", " \"..", " Lua", "\"..", ":.", "!.", " {@", "Lua"], [" ``", "``", " Lua", " `\"", " {@", " \u25aa", " [`", " {\""], [" ``", " ``(", "``", " Lua", "Lua", " /*!<", "\u001b[", "\\uC"], [" ``", " Lua", " ``(", "juana", "``", " theater", "Lua", " Guta"], [" ``", " Lua", "Lua", "juana", " theater", "-esque", "\u00e3n", "\u5fd8\u8fd4"], [" ``", " ``(", " Lua", "``", "-esque", " theater", "\u03c3\u03bc\u03b1", "\u4e0d\u53ef\u601d\u8bae"], [" ``", "-esque", " Lua", "\u5fd8\u8fd4", "\u00e3n", "\u4e0d\u53ef\u601d\u8bae", "``", " Tacoma"], ["-esque", " ``", " Lua", "Lua", "``", "\u4e0d\u53ef\u601d\u8bae", " Tacoma", ".lua"], [" Lua", " ``", "Lua", "-esque", "``", ".lua", "\u00e3n", "\u4e0d\u53ef\u601d\u8bae"], [" ``", " Lua", "Lua", "-esque", "``", "\u4e0d\u53ef\u601d\u8bae", ".lua", "(lua"], [" ``", " Lua", "-esque", "Lua", " \u00c3", "``", "\u4e0d\u53ef\u601d\u8bae", " `\""], ["a", " Lua", " ``", "Lua", "e", "\\/", " \u00c3", " `\""], [" ``", "``", " ``(", " Lua", "Lua", ".lua", "(lua", " luaL"], [" ``", "``", " ``(", " Lua", "Lua", ".lua", "``,", " \\\"\""], [" ``", "``", " ``(", " Lua", "Lua", ".lua", " {{--<", "``,"], [" ``", " Lua", "Lua", "``", ".lua", " {{--<", " ``(", "\\\\/"], [" ``", " Lua", "Lua", ".lua", "``", "(lua", "lua", " scripting"], [" ``", " Lua", "Lua", ".lua", "``", " ``(", " scripting", "(lua"], [" ``", " Lua", "Lua", ".lua", " scripting", " ''", " ,", "``"], [" Lua", "Lua", ".lua", " ``", " scripting", "lua", " lua", "(lua"], [" Lua", "Lua", ".lua", " ``", " scripting", " lua", " Lisp", "lua"], [" Lua", ".lua", "Lua", " ``", " scripting", " or", " lua", " scripts"], [" Lua", " or", ".lua", " .", "Lua", " Tolkien", " Icelandic", " RPG"], [" Lua", " or", ".lua", "Lua", " Tolkien", " scripting", " RPG", " Icelandic"], [" Lua", ".lua", "Lua", "(lua", " LUA", " lua", " scripting", "lua"], [" Lua", ".lua", "Lua", "(lua", " lua", " LUA", "lua", " scripting"], [" Lua", ".lua", "Lua", "(lua", " or", " LUA", " lua", "lua"], [" Lua", ".lua", "Lua", "(lua", " lua", "lua", " luaL", " LUA"], [" Lua", ".lua", "Lua", "(lua", " lua", " LUA", "lua", " luaL"], [" Lua", ".lua", "Lua", "(lua", " lua", "lua", " LUA", "\u6216"], [" Lua", "Lua", ".lua", "\u6216", "(lua", " lua", " LUA", "lua"], [" Lua", "Lua", ".lua", " lua", "(lua", " LUA", " scripting", " Lisp"], [" Lua", "Lua", ".lua", " scripting", " lua", " LUA", "_lua", " Lisp"], [" Lua", "Lua", ".lua", " lua", " scripting", " LUA", "lua", "_lua"], [" Lua", "Lua", ".lua", " lua", " LUA", " scripting", "lua", "(lua"], [" Lua", "Lua", ".lua", " lua", " scripting", "lua", " LUA", "_lua"], [" Lua", " or", "Lua", ".lua", "\u6216\u5c0f", "\u6216\u5176\u4ed6", " lua", " LUA"], [" or", "\u6216\u5176\u4ed6", " Lua", " \u0438\u043b\u0438", "\u6216\u5c0f", "\u6216", " ho\u1eb7c", "\u6216\u8005\u5176\u4ed6"], [" or", "\u6216", "\u6216\u5176\u4ed6", " \u0438\u043b\u0438", " Lua", "\u6216\u5c0f", " ho\u1eb7c", " \u06cc\u0627"], [" or", "\u6216", " \u0438\u043b\u0438", "\u6216\u5176\u4ed6", "\u6216\u5c0f", " ho\u1eb7c", "\u6216\u8005", "\u6216\u662f"], ["\u6216", " \u0438\u043b\u0438", " or", "/L", "\u6216\u5c0f", "\u6216\u5176\u4ed6", "/C", "/Z"], ["/L", " Lua", "/V", "/Z", "Lua", " \u0438\u043b\u0438", "\u6216", "/C"], [" Lua", "Lua", "/L", ".lua", "/V", "/C", "/J", "/python"], [" Lua", "Lua", "/V", ".lua", "/L", "/Z", "/C", "/G"], [" Lua", "Lua", ".lua", "lua", "/L", " LUA", "/python", "_lua"], [" Lua", "Lua", "/python", " LUA", "Python", " JavaScript", ".lua", "JavaScript"], [" Lua", "/python", "Lua", "Python", " Python", " JavaScript", "-python", "JavaScript"], [" Lua", "Lua", "lua", " lua", " LUA", ".lua", "_lua", "(lua"], [" Lua", "Lua", "lua", " lua", ".lua", " LUA", "_lua", "(lua"], [" Lua", "Lua", "lua", " lua", " LUA", ".lua", "_lua", "(lua"], [" Lua", "Lua", "lua", " Python", " lua", "Python", "/python", ".lua"], [" Lua", "Lua", " Python", "lua", "/python", "Python", " lua", ".lua"], [" Lua", "Lua", "/W", " Python", "/python", ",", "/R", "/L"], ["/", ",", "/W", "/L", "/S", "/R", "/Web", "/P"]], "p": [[0.0693, 0.0507, 0.0476, 0.0225, 0.0106, 0.0106, 0.0088, 0.0083], [0.1239, 0.1093, 0.0378, 0.0276, 0.0215, 0.0148, 0.0102, 0.0102], [0.374, 0.1293, 0.1141, 0.0394, 0.0145, 0.0128, 0.012, 0.0094], [0.5893, 0.2457, 0.109, 0.0017, 0.0012, 0.001, 0.0006, 0.0005], [0.5471, 0.1077, 0.0614, 0.0114, 0.0069, 0.0061, 0.0061, 0.0054], [0.0374, 0.0129, 0.0089, 0.0083, 0.0078, 0.0054, 0.0051, 0.0051], [0.0707, 0.0586, 0.0229, 0.0202, 0.0123, 0.0123, 0.0096, 0.009], [0.0604, 0.0344, 0.0323, 0.0268, 0.0237, 0.0237, 0.0127, 0.0119], [0.3517, 0.0539, 0.0198, 0.0186, 0.0164, 0.0136, 0.01, 0.0088], [0.0274, 0.0257, 0.0213, 0.0156, 0.0146, 0.0146, 0.0129, 0.0114], [0.051, 0.0423, 0.0351, 0.0291, 0.0257, 0.02, 0.0188, 0.0129], [0.3211, 0.0632, 0.0632, 0.0117, 0.0067, 0.0052, 0.0046, 0.0038], [0.1102, 0.0217, 0.014, 0.0116, 0.0109, 0.008, 0.007, 0.0052], [0.0359, 0.0192, 0.0091, 0.0075, 0.0071, 0.0046, 0.004, 0.0036], [0.1685, 0.0101, 0.0095, 0.0095, 0.0074, 0.0051, 0.0035, 0.0035], [0.0522, 0.0149, 0.0116, 0.0036, 0.0033, 0.0033, 0.0031, 0.0031], [0.0393, 0.027, 0.0186, 0.0077, 0.0032, 0.0032, 0.003, 0.003], [0.0466, 0.0301, 0.022, 0.0151, 0.0142, 0.0111, 0.0056, 0.0041], [0.0487, 0.0457, 0.0277, 0.023, 0.0109, 0.007, 0.0066, 0.0058], [0.0501, 0.0367, 0.0252, 0.0173, 0.0099, 0.0082, 0.0068, 0.0068], [0.0591, 0.049, 0.0279, 0.0247, 0.0124, 0.008, 0.0071, 0.0071], [0.6155, 0.0649, 0.0306, 0.0306, 0.0164, 0.0077, 0.0024, 0.0022], [0.9241, 0.0521, 0.0071, 0.0026, 0.0013, 0.0006, 0.0003, 0.0001], [0.952, 0.0154, 0.003, 0.0025, 0.0013, 0.0007, 0.0006, 0.0002], [0.7564, 0.0259, 0.0178, 0.0167, 0.007, 0.0037, 0.0019, 0.0014], [0.4845, 0.2593, 0.0791, 0.0451, 0.0061, 0.0051, 0.0033, 0.0031], [0.7094, 0.1022, 0.0426, 0.0258, 0.0101, 0.0058, 0.0042, 0.002], [0.4833, 0.1078, 0.0309, 0.0226, 0.0057, 0.0037, 0.0035, 0.0033], [0.5404, 0.1284, 0.1, 0.0472, 0.0105, 0.0068, 0.0068, 0.0041], [0.5819, 0.122, 0.1011, 0.0256, 0.0129, 0.0065, 0.0054, 0.0042], [0.5981, 0.0862, 0.0407, 0.0192, 0.0159, 0.0085, 0.0071, 0.0052], [0.2928, 0.0576, 0.0449, 0.0165, 0.0137, 0.0094, 0.0073, 0.0061], [0.3023, 0.1045, 0.0595, 0.0171, 0.0141, 0.0103, 0.0097, 0.0086], [0.6144, 0.1371, 0.0781, 0.012, 0.0088, 0.0073, 0.0073, 0.0068], [0.4979, 0.2352, 0.098, 0.0206, 0.0103, 0.0097, 0.0086, 0.0076], [0.5172, 0.1482, 0.1308, 0.0188, 0.0101, 0.0089, 0.0084, 0.0074], [0.6218, 0.1572, 0.1572, 0.0089, 0.0051, 0.0039, 0.0033, 0.0031], [0.71, 0.1398, 0.1089, 0.0065, 0.0051, 0.0035, 0.0033, 0.0026], [0.7313, 0.1121, 0.1121, 0.0063, 0.0038, 0.003, 0.0028, 0.0026], [0.6666, 0.191, 0.0796, 0.0084, 0.0079, 0.0058, 0.004, 0.0033], [0.7959, 0.1221, 0.0396, 0.0047, 0.0044, 0.0044, 0.0044, 0.0025], [0.85, 0.1015, 0.0227, 0.0051, 0.0045, 0.0031, 0.002, 0.0019], [0.8117, 0.1245, 0.0357, 0.0048, 0.0048, 0.0029, 0.0023, 0.0019], [0.841, 0.0782, 0.0419, 0.0053, 0.0044, 0.0039, 0.0024, 0.0016], [0.7543, 0.1311, 0.0376, 0.0108, 0.0065, 0.0065, 0.0051, 0.004], [0.7081, 0.0746, 0.0353, 0.0242, 0.0242, 0.0147, 0.0084, 0.0069], [0.5317, 0.0815, 0.072, 0.0635, 0.056, 0.0436, 0.0182, 0.011], [0.4305, 0.1584, 0.0848, 0.0848, 0.0514, 0.0454, 0.0189, 0.0089], [0.5084, 0.2119, 0.1134, 0.0417, 0.0223, 0.0174, 0.0093, 0.0082], [0.1545, 0.1363, 0.073, 0.0644, 0.0345, 0.0345, 0.0268, 0.0268], [0.3136, 0.1679, 0.0375, 0.0257, 0.0257, 0.0213, 0.02, 0.02], [0.614, 0.1209, 0.0306, 0.0185, 0.0144, 0.0127, 0.0088, 0.0088], [0.7718, 0.1045, 0.0097, 0.0086, 0.0059, 0.0059, 0.0059, 0.0052], [0.8475, 0.13, 0.0065, 0.0024, 0.0013, 0.001, 0.0009, 0.0008], [0.9093, 0.0846, 0.0011, 0.0008, 0.0006, 0.0006, 0.0005, 0.0005], [0.6144, 0.121, 0.1068, 0.0572, 0.0445, 0.0186, 0.0113, 0.0088], [0.876, 0.1185, 0.0025, 0.0017, 0.0006, 0.0005, 0.0001, 0.0], [0.8995, 0.0948, 0.0032, 0.0014, 0.0005, 0.0004, 0.0001, 0.0], [0.9025, 0.0951, 0.0012, 0.0006, 0.0003, 0.0002, 0.0001, 0.0], [0.8906, 0.0939, 0.0053, 0.0047, 0.0017, 0.001, 0.001, 0.0007], [0.8663, 0.1172, 0.0075, 0.0024, 0.0015, 0.001, 0.001, 0.0008], [0.5858, 0.0898, 0.0545, 0.0545, 0.0375, 0.0129, 0.0122, 0.0122], [0.482, 0.3313, 0.1219, 0.0212, 0.0069, 0.0061, 0.0047, 0.0032]], "ranks": {"Rust": [17596, 59474, 43803, 128729, 79005, 50619, 119344, 102693, 124668, 92856, 91014, 138070, 105842, 100232, 114163, 106276, 105783, 125104, 137378, 133386, 115108, 150804, 137774, 123238, 120149, 126858, 139053, 56606, 38833, 28763, 15858, 13456, 16885, 55339, 57950, 29616, 13883, 10895, 12468, 11605, 6789, 5280, 8407, 7299, 24699, 12835, 23591, 16985, 21523, 23358, 15757, 2861, 650, 387, 143, 88, 18, 22, 9, 10, 10, 13, 65]}}, {"pos": 507, "top": [[",", ".", "\u2013", " \u2013", ";", "\u00a0", ",.", "\u00a0\u00a0"], [",", "\u2013", ".", " \u2013", ";", "\u2013and", " ", ",."], [",", "\u2013", ".", " \u2013", ";", "\u2013and", ".\u2013", "\u2026"], [" milfs", " Guta", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Blowjob", "\u54e5\u534e", " pornstar", " Shemale", " cumshot"], ["@", ".@", ":@", ".", ",", ",@", "  ", "&"], [",", "\uff01", ".", "\uff0c", "\u3002", " \u200b\u200b", "\u2013and", "!)."], ["\uff01", "\u3002", "\uff0c", ".", ",", "\u00a0", " \u00a0", "!\""], [",", ".", "   \n", "-ish", "\u2013and", "!\"", "!", "!:"], [",", ".", "!\u201d", "\u00a0", "!\"", " \u200b\u200b", "!\u201d.", "!)."], [",", "\u00a0", ";", "-ish", "\u2013and", "\u2013", "!,", "-but"], [",", "2", "\u00a0", "@", "...", "&", "1", "0"], ["-ish", " funky", " veggies", "unky", "-esque", " comfy", " stuff", "ily"], ["-ish", " veggies", "-esque", " funky", "ish", " savvy", "-or", " stuff"], ["-ish", "-esque", " savvy", " funky", " folks", " veggies", "-or", "-but"], ["-esque", "-ish", " savvy", " folks", "-or", "-but", " oddly", " stuff"], [" folks", "-esque", " savvy", " incredibly", " though", " kids", " arguably", " tech"], ["-esque", "-ish", " folks", " savvy", " tech", " incredibly", ",", " stuff"], ["-esque", "-ish", " savvy", " tech", "-or", "-but", " funky", " tweaking"], ["-esque", "-or", "-ish", " savvy", "-but", "\u4ea6\u6216\u662f", " akin", " simplistic"], ["-esque", "-or", " though", "\u4ea6\u6216\u662f", "-but", "-ish", " hugely", " myriad"], ["<|endoftext|>", " \n\n", "<|file_sep|>", "  \n\n", "   \n\n", "\n\n", " though", " \r\n\r\n"], [" ``", "-esque", " ;;^", " Catalu", " Palav", " geopol", "unky", " anyways"], [" ``", "``", " ''", "-esque", "\u751a\u81f3\u4e8e", " Catalu", " anyways", "\u4ea6\u6216\u662f"], [" ``", " ultimately", " --", " ,", " eventually", " heavily", " much", " ''"], [" \n\n", "\n\n", "  \n\n", " \r\n\r\n", "   \n\n", "\r\n\r\n", "\t\n\n", " though"], [" ``", "-esque", " academia", " geopol", " Unix", "\u4ea6\u6216\u662f", "\u548c\u65e5\u672c", " heavily"], [" ``", " ultimately", " heavily", " scripting", "-esque", " similarly", " academia", " ''"], ["\n\n", " \n\n", " ,", "<|endoftext|>", " --", "  \n\n", " though", " ultimately"], [" \n\n", " ,", "\n\n", " or", " ultimately", " heavily", " complex", " perhaps"], [" or", " ,", " complex", " \n\n", " systems", " ultimately", " modern", " rather"], [" or", " ,", " complex", " .", " rather", " perhaps", " various", " ultimately"], [" or", " ,", " rather", " complex", " .", " perhaps", " as", " non"], [" or", " but", " perhaps", " complex", " ,", " rather", " Or", " ."], [" or", " tech", "-esque", "\u6216\u975e", " software", " hybrid", "\u6216\u8005\u5176\u4ed6", "/etc"], [" or", "\u6216\u975e", " tech", "-esque", "\u6216\u5176\u4ed6", "\u6216\u8005\u5176\u4ed6", "/etc", "agnostic"], [" \n\n", "  \n\n", "\u6216", "\u6216\u5176\u4ed6", " or", "<|endoftext|>", " ...\"", "   \n\n"], ["\u6216\u5176\u4ed6", " Kotlin", "\u6216", "\u6216\u975e", " Java", " or", " Lua", " Python"], [" Lua", "\u6216\u975e", " Python", " Kotlin", " SQLite", " Java", " or", "agnostic"], ["\u6216\u5176\u4ed6", "\u6216", " Lua", " Java", " Python", " languages", "Java", " Kotlin"], ["Python", "Java", " Python", "\u6216", " languages", " Java", "\u8bed\u8a00", " Lisp"], ["Python", " Python", " JavaScript", " scripting", " languages", "Java", " Lisp", "JavaScript"], [" scripting", "Python", " JavaScript", " Python", " languages", "JavaScript", " Lisp", " Lua"], ["Python", " scripting", " JavaScript", " Python", "JavaScript", " Lua", " languages", " Lisp"], [" JavaScript", " scripting", "Python", " Python", "JavaScript", " languages", " Lua", " Lisp"], [" Python", " scripting", " JavaScript", "Python", " Lua", "_python", " languages", " Lisp"], [" Python", " scripting", " JavaScript", "Python", "_python", " Lua", "-python", " Lisp"], [" scripting", " Python", "Python", " JavaScript", "\u6216\u5176\u4ed6", " Lua", "-python", "_python"], ["Python", " scripting", " Python", " JavaScript", "JavaScript", " Lua", "-python", "\u6216"], ["Python", "\u6216", " scripting", "\u6216\u5176\u4ed6", "/etc", "\u6216\u5c0f", "-python", " Lua"], ["Python", "/etc", "-python", " Lua", " scripting", "/javascript", "_lua", "/python"], ["Python", "_lua", "-python", " Lua", "_python", "Lua", " scripting", "-script"], [" Lua", "Python", "Lua", " JavaScript", "JavaScript", "_lua", " Python", " scripting"], [" Lua", " JavaScript", "Lua", "Python", "JavaScript", " Python", " scripting", " Kotlin"], [" Lua", "Lua", " JavaScript", " Python", "Python", " scripting", "JavaScript", " Javascript"], [" Lua", " JavaScript", " Python", "Python", "JavaScript", "Lua", " Javascript", "Javascript"], [" Python", " JavaScript", " Lua", "Python", "JavaScript", " Javascript", "Lua", "-python"], [" Lua", "Lua", "lua", " lua", " Rust", " LUA", " scripting", " Python"], [" Lua", "Lua", "lua", " lua", " LUA", " Python", " JavaScript", " Rust"], [" Lua", "Lua", " Rust", "lua", " JavaScript", " Python", " lua", " LUA"], [" Python", " JavaScript", " Lua", " JS", "JavaScript", "Python", "Lua", " Javascript"], [" Python", " Lua", " JavaScript", " Rust", " JS", "Lua", "Python", "JavaScript"], [" Python", " JavaScript", " Lua", " JS", " Rust", " WAS", " Zig", " wasm"], [" Python", " JavaScript", " JS", " WAS", " Lua", " Rust", " Web", " Zig"]], "p": [[0.6875, 0.2866, 0.0208, 0.0022, 0.0019, 0.0006, 0.0001, 0.0001], [0.652, 0.2117, 0.1, 0.0197, 0.0077, 0.0039, 0.0006, 0.0004], [0.6979, 0.2, 0.0945, 0.0022, 0.0015, 0.0015, 0.0008, 0.0003], [0.0043, 0.0031, 0.0018, 0.0017, 0.001, 0.0009, 0.0009, 0.0009], [0.11, 0.0553, 0.0459, 0.0405, 0.0315, 0.0149, 0.0116, 0.0109], [0.1129, 0.0996, 0.0568, 0.0268, 0.0153, 0.0099, 0.0082, 0.0077], [0.201, 0.1145, 0.1011, 0.0892, 0.0695, 0.0349, 0.0272, 0.0212], [0.3374, 0.0908, 0.0403, 0.026, 0.0179, 0.0148, 0.0123, 0.0096], [0.3654, 0.2359, 0.0234, 0.0206, 0.0117, 0.0104, 0.0097, 0.0086], [0.9347, 0.0022, 0.0018, 0.0012, 0.0011, 0.001, 0.0008, 0.0006], [0.2168, 0.0798, 0.0584, 0.0401, 0.0401, 0.0377, 0.0354, 0.0293], [0.0932, 0.0236, 0.0221, 0.0195, 0.0111, 0.0081, 0.0068, 0.006], [0.302, 0.0339, 0.0264, 0.0103, 0.0071, 0.0067, 0.0052, 0.004], [0.3671, 0.1192, 0.0235, 0.0195, 0.0152, 0.0098, 0.0092, 0.0092], [0.0505, 0.0306, 0.0306, 0.027, 0.0164, 0.0128, 0.012, 0.0099], [0.0467, 0.0364, 0.0342, 0.0142, 0.0142, 0.0104, 0.0092, 0.0092], [0.1874, 0.0306, 0.021, 0.0186, 0.0174, 0.0113, 0.0077, 0.0068], [0.2995, 0.0262, 0.008, 0.007, 0.0062, 0.0033, 0.0028, 0.0021], [0.1274, 0.0056, 0.0053, 0.003, 0.0019, 0.0018, 0.0017, 0.0015], [0.0254, 0.0064, 0.0057, 0.0041, 0.0034, 0.0034, 0.0034, 0.0034], [0.9456, 0.005, 0.0006, 0.0005, 0.0004, 0.0004, 0.0004, 0.0003], [0.0236, 0.0036, 0.0025, 0.0025, 0.0021, 0.0015, 0.0014, 0.0014], [0.4212, 0.0099, 0.0021, 0.0021, 0.002, 0.0015, 0.0012, 0.0011], [0.0871, 0.0063, 0.0043, 0.0038, 0.0034, 0.003, 0.0028, 0.0026], [0.4614, 0.232, 0.0131, 0.0116, 0.0109, 0.0079, 0.0026, 0.0024], [0.0122, 0.0065, 0.0057, 0.0039, 0.0033, 0.0031, 0.0029, 0.0029], [0.018, 0.0038, 0.0031, 0.0023, 0.0023, 0.0021, 0.002, 0.0019], [0.3986, 0.2418, 0.0175, 0.0106, 0.0061, 0.0039, 0.0039, 0.0032], [0.1212, 0.0288, 0.0271, 0.0271, 0.01, 0.0093, 0.0073, 0.0053], [0.1201, 0.0323, 0.0222, 0.0209, 0.0077, 0.006, 0.0053, 0.005], [0.1947, 0.0408, 0.0124, 0.0103, 0.0086, 0.0076, 0.0071, 0.0052], [0.0991, 0.0302, 0.0111, 0.0098, 0.0087, 0.0076, 0.0067, 0.006], [0.444, 0.0172, 0.0098, 0.0087, 0.0081, 0.0076, 0.0063, 0.0059], [0.1179, 0.0557, 0.0192, 0.0124, 0.0085, 0.0071, 0.0066, 0.0062], [0.1144, 0.0421, 0.0372, 0.0289, 0.0199, 0.0165, 0.0128, 0.0113], [0.0658, 0.0618, 0.0482, 0.0425, 0.0258, 0.0147, 0.0147, 0.0138], [0.0273, 0.0241, 0.0212, 0.0176, 0.0165, 0.0165, 0.0137, 0.0137], [0.0234, 0.0194, 0.0194, 0.0171, 0.0151, 0.0133, 0.0133, 0.0118], [0.0372, 0.0349, 0.0328, 0.0308, 0.0308, 0.0212, 0.0212, 0.0187], [0.2118, 0.0732, 0.0646, 0.0305, 0.0287, 0.0238, 0.0174, 0.0119], [0.3128, 0.1897, 0.0511, 0.048, 0.0423, 0.033, 0.0291, 0.0257], [0.1905, 0.1905, 0.1484, 0.1156, 0.0546, 0.0482, 0.0292, 0.0228], [0.2006, 0.177, 0.1562, 0.1562, 0.0448, 0.0255, 0.0225, 0.0165], [0.1697, 0.1498, 0.1498, 0.1322, 0.0429, 0.0277, 0.026, 0.0168], [0.2177, 0.1496, 0.0908, 0.0908, 0.0277, 0.0216, 0.0179, 0.0158], [0.2329, 0.1412, 0.052, 0.052, 0.0405, 0.0315, 0.0261, 0.0203], [0.0876, 0.0726, 0.0469, 0.0414, 0.0251, 0.0236, 0.0195, 0.0172], [0.2179, 0.0518, 0.0486, 0.0277, 0.0277, 0.026, 0.023, 0.0108], [0.087, 0.0341, 0.0282, 0.0249, 0.0249, 0.022, 0.0194, 0.0194], [0.0251, 0.0143, 0.0143, 0.0119, 0.0111, 0.0105, 0.0087, 0.0082], [0.0258, 0.0177, 0.0147, 0.0122, 0.0069, 0.0065, 0.0058, 0.0042], [0.2603, 0.1085, 0.0701, 0.0513, 0.0513, 0.0352, 0.0274, 0.0258], [0.43, 0.1232, 0.0582, 0.0514, 0.0453, 0.0453, 0.0275, 0.0214], [0.6573, 0.089, 0.0785, 0.0289, 0.0255, 0.0255, 0.0198, 0.0106], [0.3838, 0.2989, 0.1813, 0.0519, 0.0315, 0.0169, 0.0149, 0.0043], [0.4283, 0.2943, 0.1083, 0.0843, 0.0213, 0.0188, 0.0101, 0.0061], [0.94, 0.0468, 0.0049, 0.0018, 0.0014, 0.0012, 0.0011, 0.0011], [0.9492, 0.0368, 0.0072, 0.0018, 0.0011, 0.0009, 0.0009, 0.0005], [0.9428, 0.0414, 0.0039, 0.0039, 0.0023, 0.0021, 0.0013, 0.0005], [0.4045, 0.315, 0.2165, 0.0178, 0.0108, 0.0095, 0.0084, 0.0058], [0.426, 0.3318, 0.2012, 0.0146, 0.0114, 0.0054, 0.0021, 0.0015], [0.5213, 0.3162, 0.0906, 0.0294, 0.0095, 0.0058, 0.0027, 0.0023], [0.4375, 0.3861, 0.076, 0.0359, 0.0317, 0.011, 0.0038, 0.0024]], "ranks": {"Rust": [31012, 47248, 47327, 65684, 19416, 26418, 56583, 41169, 32845, 14123, 24684, 27989, 22725, 19796, 27043, 11209, 22343, 93895, 125083, 106948, 120452, 121160, 99433, 76149, 64128, 87758, 50718, 16098, 9544, 9341, 8904, 8472, 6274, 8909, 7275, 599, 66, 33, 98, 194, 388, 279, 404, 505, 417, 295, 653, 775, 1778, 4491, 5320, 209, 40, 32, 21, 16, 5, 8, 3, 9, 4, 5, 6]}}, {"pos": 508, "top": [[" \u2013", ",", "\u2013", ".", "<|endoftext|>", "a", " ", " [\u2026]"], [" \u2013", "\u2013", " \u2013,", " \u200b\u200b", "\u2013and", " (@", "@g", " [@"], ["\u2013", " \u2013", " \u2013,", ",", "\u2013and", ".\u2013", ".", "\u2026\u2026"], [" ``", "-------------</", " \uffe5\uffe5", "\uff1a<", "----------</", " PYTHON", "aikan", "\uff0d\uff0d"], [" (@", " \u201c", " @", " \uff08", " $(", ":@", " \u200b\u200b", "ed"], [" \u200b\u200b", " \u201c", ",", "ed", "a", "-n", " Python", " \uff08"], [" \u200b\u200b", " \u00a0", ",", " Python", " $(", " ", " $", "a"], [" \u200b\u200b", ",", " Python", " \u00a0", "  ", " \u200b", ".", " "], [" \u200b\u200b", ",", ".", " \u00a0", "\u200b\u200b", " \u200b", " Python", "\u201c."], [",", " \u200b\u200b", ".", "\\n", " Python", " \u00a0", ".py", ".\\"], [",", "\\n", " Python", "a", " \u200b\u200b", ".", " ", ".py"], [" Python", ".py", "-esque", "/python", " PYTHON", ".python", "\\n", " \\\""], [" Python", "-esque", " \\\"", "-style", ".py", " \u200b\u200b", " Django", "/python"], [",", " Python", "-esque", "-style", "-python", "-speaking", " back", " \""], [",", " Python", "-esque", "-style", " \"", " \\\"", " back", " British"], [",", " \"", " ,", " back", " and", " Python", "-esque", " "], [",", "-esque", " \"", "a", " Python", " ,", " back", " often"], [",", "-esque", " Python", "a", " \\\"", "-style", "-python", ".py"], ["-esque", " Python", " \\\"", ",", "-python", "-style", "/python", " Django"], ["-esque", ",", " --", " Python", " \\\"", " ,", "a", "--"], [" ,", "<|endoftext|>", "a", " --", " \"", " Python", " ", "  \n\n"], [" ``", " Python", " \\\"", " PYTHON", "/python", ".py", "_python", "-esque"], [" ``", " Python", " \\\"", " ,", " PYTHON", ".py", " ''", "_python"], [" ``", " ,", " Python", " --", " ''", " \\\"", " and", " `"], [" Python", " ,", " ``", " --", "_python", "Python", " python", " British"], [" Python", " python", "/python", "_python", "Python", " PYTHON", ".py", ".python"], [" Python", " python", "/python", "_python", " PYTHON", "Python", ".py", "-python"], [" Python", " ,", " python", " __", "_python", " --", "Python", "/python"], [" Python", " python", "Python", "/python", ".py", " PYTHON", "_python", "-python"], [" Python", " python", "Python", "/python", " __", ".py", "-python", " PYTHON"], [" Python", " python", "/python", "Python", ".py", " __", "-python", " or"], [" Python", " or", " python", " ,", " .", " science", " and", " scientific"], [" Python", " or", " python", " .", " ,", "Python", " science", "/python"], [" Python", " python", "/python", "Python", "-python", ".python", "python", " PYTHON"], [" Python", "/python", "Python", " python", "-python", "python", " PYTHON", ".python"], [" Python", "Python", "/python", " python", "-python", "python", " PYTHON", ".python"], [" Python", "Python", "/python", " python", "-python", "python", ".python", " PYTHON"], [" Python", "Python", "/python", " python", "-python", " or", "python", ".python"], [" Python", "Python", "/python", " python", ".python", "python", "-python", " PYTHON"], ["Python", " Python", "/python", " python", ".python", "python", "-python", " PYTHON"], [" Python", "Python", "/python", " python", ".python", "python", "-python", "_python"], [" Python", "Python", "/python", " python", "-python", ".python", " PYTHON", "python"], [" Python", "Python", "/python", " python", "-python", ".python", " PYTHON", "_python"], [" Python", "Python", "/python", " python", "-python", " PYTHON", ".python", "python"], [" Python", "Python", " python", "/python", "-python", " PYTHON", ".python", "_python"], [" Python", "/python", "Python", " python", "-python", " PYTHON", "_python", ".python"], [" Python", "Python", "/python", "-python", " python", " PYTHON", "\u6216\u5176\u4ed6", ".python"], [" Python", "Python", "/python", "-python", "\u6216\u5176\u4ed6", " or", " python", "\u6216"], [" or", "\u2014or", "\u6216\u5176\u4ed6", "\u6216\u901a\u8fc7", "/python", " Python", " \u0438\u043b\u0438", "\u6216"], ["/python", "\u6216\u5176\u4ed6", " or", "\u6216\u901a\u8fc7", "\u2014or", "/etc", " \u0438\u043b\u0438", "-python"], ["/python", "Python", "-esque", "\u6216\u901a\u8fc7", "\u6216\u5176\u4ed6", "-python", "\u2014or", " Python"], ["\u2014or", "\u6216\u901a\u8fc7", "via", " via", "Python", " or", "\u6216\u5176\u4ed6", " \u0438\u043b\u0438"], ["Python", "via", " Python", " via", "-like", "/python", "-esque", "-python"], ["Python", "via", " Python", "/python", " via", "-like", "-esque", "-python"], ["Python", " Python", "/python", " python", " PYTHON", "-python", "/py", ".python"], ["Python", " Python", "/python", " wrappers", " wrapper", " via", " bindings", "via"], ["Python", " Python", "/python", "/py", " bindings", " wrappers", " python", "(Py"], ["Python", " Python", "/python", "/embed", "/py", " embeddings", " bindings", "Embedded"], [" Python", "Python", " bindings", "/python", "/py", "(Py", " embeddings", "Py"], [" bindings", " via", " embeddings", " wrappers", " embedded", " Python", " embedding", "/embed"], [" bindings", " via", " Python", "/py", " wrappers", " embeddings", " embedded", " py"], [",", " bindings", " via", " embeddings", " wrappers", " bytecode", " embedded", " wrapper"], [",", " bindings", " wrappers", " via", " binding", " embeddings", "Bindings", " embedded"]], "p": [[0.5294, 0.2501, 0.1042, 0.0558, 0.0233, 0.0103, 0.0052, 0.0025], [0.6954, 0.0536, 0.0418, 0.0253, 0.0112, 0.0112, 0.0047, 0.0032], [0.6442, 0.237, 0.0301, 0.0266, 0.0195, 0.0086, 0.0041, 0.003], [0.0076, 0.0063, 0.0046, 0.0041, 0.0038, 0.0026, 0.002, 0.002], [0.0292, 0.0167, 0.0114, 0.0095, 0.0095, 0.0089, 0.0084, 0.0084], [0.079, 0.0078, 0.0065, 0.0031, 0.0029, 0.0025, 0.0024, 0.0024], [0.2086, 0.0767, 0.0721, 0.0437, 0.03, 0.0207, 0.0182, 0.0142], [0.7694, 0.0434, 0.0141, 0.0124, 0.008, 0.0036, 0.0031, 0.003], [0.9293, 0.0463, 0.0067, 0.0017, 0.0017, 0.0006, 0.0004, 0.0004], [0.9812, 0.0017, 0.0009, 0.0006, 0.0005, 0.0002, 0.0002, 0.0001], [0.8755, 0.0264, 0.0142, 0.0091, 0.0076, 0.0052, 0.0034, 0.0019], [0.1582, 0.0243, 0.0214, 0.0189, 0.0157, 0.0095, 0.0089, 0.0089], [0.1276, 0.0236, 0.0173, 0.0143, 0.0087, 0.0087, 0.0087, 0.0077], [0.4274, 0.0273, 0.02, 0.0156, 0.0027, 0.0024, 0.0022, 0.0021], [0.0636, 0.034, 0.0234, 0.011, 0.0092, 0.0056, 0.0043, 0.0032], [0.0831, 0.021, 0.0154, 0.0093, 0.0082, 0.0077, 0.0073, 0.0068], [0.5307, 0.0281, 0.0193, 0.0091, 0.0059, 0.0046, 0.0038, 0.0034], [0.3267, 0.0776, 0.0568, 0.0087, 0.0064, 0.0053, 0.0036, 0.0036], [0.3419, 0.0594, 0.0141, 0.011, 0.0071, 0.0059, 0.0043, 0.0038], [0.1084, 0.0481, 0.0425, 0.0331, 0.0292, 0.0242, 0.0156, 0.0089], [0.0936, 0.0568, 0.0285, 0.0252, 0.0184, 0.0184, 0.0173, 0.0099], [0.6691, 0.0516, 0.0244, 0.0102, 0.0062, 0.0058, 0.0037, 0.0029], [0.7769, 0.0928, 0.0126, 0.0059, 0.0056, 0.0046, 0.0038, 0.0025], [0.5034, 0.1055, 0.064, 0.0118, 0.0098, 0.0098, 0.0063, 0.0053], [0.3053, 0.1355, 0.0931, 0.0267, 0.0235, 0.0152, 0.0134, 0.0111], [0.9236, 0.0246, 0.0116, 0.008, 0.0071, 0.0055, 0.0048, 0.0022], [0.894, 0.0347, 0.0164, 0.0164, 0.0068, 0.0068, 0.0039, 0.0034], [0.6848, 0.0438, 0.0411, 0.0301, 0.0183, 0.0134, 0.0125, 0.0081], [0.8949, 0.0393, 0.0164, 0.0093, 0.0047, 0.0047, 0.0041, 0.0039], [0.8408, 0.0609, 0.0186, 0.0136, 0.0068, 0.0068, 0.0057, 0.0041], [0.8339, 0.0685, 0.0077, 0.006, 0.006, 0.005, 0.0041, 0.0041], [0.5371, 0.0683, 0.0441, 0.0366, 0.0196, 0.0126, 0.0119, 0.0092], [0.556, 0.1805, 0.0624, 0.0148, 0.0102, 0.009, 0.0079, 0.0058], [0.6172, 0.1072, 0.0946, 0.0395, 0.0348, 0.0088, 0.0088, 0.0078], [0.5262, 0.133, 0.133, 0.0712, 0.0358, 0.0124, 0.0109, 0.0103], [0.4901, 0.3368, 0.0378, 0.0333, 0.019, 0.0131, 0.0079, 0.0079], [0.4815, 0.3309, 0.0652, 0.0272, 0.0165, 0.0113, 0.0094, 0.0069], [0.6297, 0.2317, 0.0403, 0.0244, 0.009, 0.009, 0.0079, 0.0062], [0.6386, 0.2662, 0.0318, 0.0219, 0.0091, 0.008, 0.0071, 0.0043], [0.4919, 0.4341, 0.0216, 0.0168, 0.0102, 0.009, 0.0062, 0.0033], [0.4748, 0.4748, 0.0143, 0.0112, 0.0087, 0.0053, 0.0047, 0.0022], [0.5651, 0.3884, 0.0151, 0.0117, 0.0055, 0.0049, 0.0034, 0.003], [0.5597, 0.3847, 0.0169, 0.0116, 0.007, 0.0062, 0.0055, 0.0043], [0.617, 0.3303, 0.0145, 0.0145, 0.0078, 0.0053, 0.0032, 0.0032], [0.7459, 0.1886, 0.0225, 0.0137, 0.0094, 0.0083, 0.0035, 0.003], [0.8606, 0.0428, 0.0334, 0.0202, 0.0179, 0.0084, 0.0058, 0.0051], [0.6917, 0.0936, 0.0826, 0.0304, 0.0304, 0.0127, 0.0099, 0.0087], [0.5095, 0.1875, 0.0537, 0.0418, 0.0418, 0.0287, 0.0287, 0.0154], [0.358, 0.1026, 0.0905, 0.0799, 0.0622, 0.0428, 0.0333, 0.0294], [0.1411, 0.1099, 0.0969, 0.0666, 0.0519, 0.0458, 0.0458, 0.0404], [0.2159, 0.09, 0.0619, 0.0482, 0.0482, 0.0425, 0.0425, 0.0425], [0.2448, 0.1906, 0.09, 0.0619, 0.0425, 0.0331, 0.0292, 0.0258], [0.3478, 0.1643, 0.0996, 0.0776, 0.0685, 0.0471, 0.0323, 0.0173], [0.3542, 0.1673, 0.1015, 0.0697, 0.0616, 0.0373, 0.0291, 0.0226], [0.6348, 0.2646, 0.0669, 0.0055, 0.0048, 0.0043, 0.0033, 0.0033], [0.4634, 0.2189, 0.1034, 0.0711, 0.0336, 0.0204, 0.0159, 0.0085], [0.368, 0.3248, 0.1195, 0.0725, 0.0235, 0.0143, 0.0087, 0.0076], [0.3354, 0.2612, 0.0961, 0.0454, 0.0454, 0.0243, 0.0214, 0.0214], [0.32, 0.2824, 0.1039, 0.063, 0.0433, 0.0205, 0.0181, 0.0159], [0.3751, 0.331, 0.0448, 0.0349, 0.0272, 0.024, 0.0187, 0.0165], [0.369, 0.2238, 0.0566, 0.0566, 0.0499, 0.0499, 0.0251, 0.0126], [0.5952, 0.2481, 0.0246, 0.0246, 0.0217, 0.0043, 0.0038, 0.0035], [0.9942, 0.0052, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0]], "ranks": {"Rust": [15248, 27215, 60331, 15713, 16663, 8271, 18332, 9731, 17990, 9039, 8517, 11709, 7955, 7210, 14445, 12558, 12126, 14546, 25269, 26392, 19070, 28918, 24681, 22707, 24112, 34906, 48530, 19942, 15839, 13703, 14010, 11766, 14428, 23991, 16394, 5680, 3336, 2553, 4018, 4328, 4789, 4031, 7141, 5914, 7040, 6175, 12961, 13149, 16636, 23108, 26750, 13987, 2432, 1156, 471, 265, 60, 73, 45, 43, 31, 19, 33]}}, {"pos": 509, "top": [[",", ".", "\u2013", ";", " \u2013", "\u00a0", ",.", "\u00a0\u00a0"], [",", ".", "\u2013", ";", " \u2013", "\u2013and", ",.", ".\u2013"], [",", ".", "\u2013", ";", "\u2026", "\u2026..", "\u2026.", ".\u2013"], [" milfs", " Guta", " Blowjob", " Shemale", "-------------</", " Strec", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " addir"], [".", ".@", ":@", ",", "@", " (@", "\uff20", "ed"], [".", ",", "\uff01", " \u200b\u200b", "-a", ":@", "\u3002", "!)."], [".", ",", ".\u201d", " \u00a0", "\uff01", "\u3002", "<|endoftext|>", "!"], [".", ",", ":@", ".@", "  ", ",@", "   \n", "-and"], [".", ",", ";", ".\u201d", " \u200b\u200b", "\u00a0", ":", "!"], [",", ".", ";", ".\\", "-and", ".@", "-but", ".&"], [".", ",", "<|endoftext|>", ".@", "@", ".\\", "\u00a0", " @"], ["&eacute", " ``", " ____", " junk", "\ufffdt", " veggies", "izer", "junk"], [" fiber", " theater", " fibers", " neighbor", " neighbors", " veggies", " theaters", " flavors"], [" theater", "-esque", " savvy", "-ish", " artifacts", " artifact", " junk", " neighbor"], [" savvy", " folks", "-esque", "-or", " stuff", "-but", " aggressively", " ``"], [" savvy", "-esque", " kids", " folks", " incredibly", " tech", " stuff", "kids"], ["-esque", " savvy", " myriad", " incredibly", " disparate", " tech", " akin", " folks"], ["-esque", " savvy", " myriad", " ultimately", "-or", "o", " tech", " oddly"], ["-esque", " myriad", " ``", " savvy", " arguably", " ultimately", " akin", " disparate"], [" --", " ``", "-esque", " myriad", " arguably", "&amp", " ultimately", "\u5373\u4fbf"], ["<|endoftext|>", " --", " myriad", " \n\n", "  \n\n", "\u5373\u4fbf", "--", "Though"], [" ``", " savvy", " gaming", "\u751a\u81f3\u4e8e", " leveraging", " creatively", "-esque", "&eacute"], [" ``", " --", " ultimately", " crafting", " wildly", " arguably", " myriad", " gaming"], [" --", " ``", " ,", " ultimately", "<|endoftext|>", " myriad", " complex", " wildly"], [" \n\n", "<|endoftext|>", "\n\n", "  \n\n", " --", " \r\n\r\n", "\r\n\r\n", " ,"], [" software", " engineering", " tech", " robotic", " science", " crafting", " tools", " programming"], [" software", " engineering", " scripting", " programming", " ``", " workflows", " robotics", " tech"], ["\n\n", " \n\n", " software", " ,", " engineering", " --", " @", " crafting"], ["\n\n", " \n\n", " software", " ...", " engineering", " ...\\", " workflows", "  \n\n"], [" ...", " ...\\", " \u2026", " ...\"", " workflows", " software", " [...]", " workflow"], [" \n\n", " ...", " \u2026", " [...]", "<|endoftext|>", "  \n\n", " \n", " ...\\"], [" ,", " ...", " complex", " \n\n", " \u2026", " software", " work", " systems"], [" ,", " complex", " and", " or", " work", " over", " even", " various"], [" workflows", " tech", " software", "\u2011", " complex", " hardware", " workflow", " tools"], [" workflows", " tech", " software", " hardware", " workflow", "\u2011", " complex", " tools"], [" \u2026", "\u2011", " workflows", "\u2026*", " [\u2026]", " tech", " software", " workflow"], ["\u2011", " workflows", " workflow", " software", " tech", " gameplay", " hardware", " robotics"], [" workflows", "\u2011", " workflow", " software", " simulation", " visualization", " gameplay", " animations"], [" workflows", " workflow", " gameplay", " simulation", " software", " interactive", "\u2011", " algorithms"], [" workflows", " workflow", " software", " interactive", "\u2011", " interact", " algorithms", " robotics"], [" workflows", " software", " workflow", " robotics", " algorithms", " interactive", " animations", " scripting"], [" workflows", " scripting", " software", " workflow", " programming", " algorithms", " interactive", " robotics"], [" workflows", " scripting", " software", " programming", " workflow", " algorithms", " interactive", " gameplay"], [" workflows", " software", " workflow", " programming", " scripting", " animations", " gameplay", " algorithms"], [" workflows", " software", " workflow", " programming", " algorithms", " animations", " scripting", " simulation"], [" workflows", " software", " scripting", " programming", " animations", " algorithms", " scripts", " robotics"], [" workflows", " or", " scripting", " scripts", " software", " workflow", " algorithms", " scripted"], [" or", " workflows", " scripts", " scripting", " software", " algorithms", "/etc", " scripted"], [" or", "/etc", " etc", " workflows", " scripting", " scripts", "?)", "\u2014or"], [" or", "/etc", "\u6216\u76f4\u63a5", " \u0438\u043b\u0438", "\u6027\u6216", "\u6216\u5176\u4ed6", "\u751a\u81f3\u662f", "\u6216\u975e"], [" or", " \u0438\u043b\u0438", "\u6216\u76f4\u63a5", "\u6216\u5c0f", " \u06cc\u0627", "\u6216", "\u6027\u6216", "\u6216\u975e"], [" or", "\u6216", " \u0438\u043b\u0438", "\u6216\u76f4\u63a5", " \u06cc\u0627", "\u6216\u662f", "\u6216\u5c0f", "\u6216\u975e"], [" or", "\u6216", " \u0438\u043b\u0438", "\u6216\u76f4\u63a5", " \u06cc\u0627", "\u6216\u5c0f", "\u6216\u975e", "\u0e2b\u0e23\u0e37\u0e2d"], [" or", " Lua", "\u6216", " JavaScript", " \u0438\u043b\u0438", " scripting", "/custom", " Python"], [" or", "\u6216", " JavaScript", " \u0438\u043b\u0438", " Lua", " Python", "\u6216\u662f", " \u0623\u0648"], [" JavaScript", " or", " Lua", "\u6216", " \u0438\u043b\u0438", " Javascript", " Python", "\u6216\u662f"], [" Lua", " Rust", "Lua", " JavaScript", " or", " scripting", "lua", " \u0438\u043b\u0438"], [" Lua", " Rust", "Lua", " JavaScript", " or", "lua", " JS", " scripting"], [" Rust", " Lua", " JavaScript", "Lua", "rust", " JS", " or", " rust"], [" Rust", " or", " JavaScript", " JS", " Lua", " rust", " wasm", "rust"], [" Rust", " or", " JavaScript", " JS", " Lua", " wasm", " rust", " WAS"], [" or", " Rust", " JavaScript", " JS", " WAS", " wasm", " Lua", " rust"], [" or", " Rust", " JS", " Web", " JavaScript", " WAS", " wasm", " \u0438\u043b\u0438"]], "p": [[0.6737, 0.2808, 0.038, 0.0031, 0.0021, 0.0009, 0.0003, 0.0003], [0.4988, 0.2079, 0.2079, 0.0193, 0.0086, 0.0052, 0.0022, 0.0012], [0.732, 0.2376, 0.025, 0.0018, 0.0007, 0.0006, 0.0004, 0.0003], [0.0081, 0.0052, 0.0022, 0.0017, 0.0016, 0.0015, 0.0013, 0.0012], [0.0755, 0.0487, 0.0357, 0.0245, 0.023, 0.0066, 0.0062, 0.0058], [0.1338, 0.0979, 0.0071, 0.0049, 0.0036, 0.003, 0.003, 0.0028], [0.8799, 0.0412, 0.0098, 0.0098, 0.0076, 0.0063, 0.0032, 0.0032], [0.1735, 0.1438, 0.0364, 0.0283, 0.0111, 0.0086, 0.0081, 0.0081], [0.7226, 0.2658, 0.0011, 0.001, 0.0008, 0.0007, 0.0005, 0.0004], [0.957, 0.0106, 0.003, 0.0005, 0.0003, 0.0003, 0.0003, 0.0003], [0.471, 0.3237, 0.0387, 0.0283, 0.0134, 0.0081, 0.0067, 0.0063], [0.0166, 0.0138, 0.0084, 0.004, 0.0037, 0.0037, 0.0037, 0.0029], [0.0085, 0.0075, 0.0048, 0.0048, 0.0046, 0.0033, 0.0029, 0.0028], [0.0055, 0.0055, 0.004, 0.0035, 0.0029, 0.0022, 0.002, 0.002], [0.0091, 0.0091, 0.007, 0.0052, 0.0046, 0.004, 0.0033, 0.0026], [0.0124, 0.0117, 0.0055, 0.0055, 0.0046, 0.0043, 0.0038, 0.0022], [0.0315, 0.0096, 0.0085, 0.0051, 0.0051, 0.0051, 0.0045, 0.0045], [0.0191, 0.0116, 0.0116, 0.0062, 0.0043, 0.004, 0.0038, 0.0033], [0.0863, 0.0383, 0.0218, 0.0181, 0.0132, 0.0071, 0.0055, 0.0052], [0.0229, 0.0167, 0.0139, 0.013, 0.0062, 0.0058, 0.0058, 0.0045], [0.3968, 0.0224, 0.0093, 0.0077, 0.0077, 0.0068, 0.0047, 0.0044], [0.2714, 0.0028, 0.0022, 0.0021, 0.0019, 0.0018, 0.0018, 0.0017], [0.1975, 0.0251, 0.0126, 0.0053, 0.0046, 0.0044, 0.0044, 0.0044], [0.0656, 0.033, 0.0257, 0.0121, 0.0094, 0.0045, 0.0045, 0.0037], [0.2627, 0.2046, 0.1029, 0.0486, 0.0158, 0.0131, 0.0123, 0.0058], [0.0868, 0.0494, 0.0234, 0.0206, 0.0194, 0.0161, 0.0161, 0.0151], [0.098, 0.0558, 0.0281, 0.0264, 0.0219, 0.017, 0.017, 0.016], [0.1983, 0.1061, 0.0268, 0.0173, 0.0153, 0.0144, 0.0112, 0.0087], [0.1699, 0.1596, 0.0625, 0.0245, 0.0216, 0.0191, 0.0191, 0.0158], [0.5085, 0.0941, 0.078, 0.0473, 0.0368, 0.0269, 0.0223, 0.0068], [0.3548, 0.3548, 0.0617, 0.0121, 0.0101, 0.0095, 0.0089, 0.0078], [0.0763, 0.0408, 0.0338, 0.0205, 0.015, 0.0141, 0.011, 0.0103], [0.0743, 0.0226, 0.0137, 0.0129, 0.0121, 0.0121, 0.0114, 0.0107], [0.0794, 0.0746, 0.0513, 0.0258, 0.0189, 0.0189, 0.0166, 0.0114], [0.0858, 0.0554, 0.0316, 0.0217, 0.0204, 0.0169, 0.009, 0.009], [0.3411, 0.1826, 0.028, 0.0192, 0.0124, 0.0117, 0.0085, 0.0085], [0.1177, 0.1106, 0.0247, 0.017, 0.0132, 0.011, 0.011, 0.0085], [0.116, 0.0749, 0.0312, 0.0178, 0.0139, 0.0115, 0.0115, 0.0101], [0.3118, 0.0696, 0.024, 0.0212, 0.0199, 0.0146, 0.0137, 0.0129], [0.3443, 0.0818, 0.0171, 0.0161, 0.0133, 0.0118, 0.0118, 0.0111], [0.2937, 0.0841, 0.0655, 0.0241, 0.0226, 0.0213, 0.0188, 0.0166], [0.284, 0.1342, 0.0718, 0.0525, 0.0464, 0.0264, 0.0182, 0.0182], [0.2724, 0.0884, 0.0571, 0.0536, 0.0418, 0.0287, 0.021, 0.0197], [0.1798, 0.0548, 0.0427, 0.0354, 0.0312, 0.0229, 0.0215, 0.0167], [0.1346, 0.0677, 0.032, 0.0194, 0.0182, 0.0171, 0.0161, 0.0142], [0.0758, 0.0669, 0.0381, 0.0262, 0.0169, 0.0159, 0.0149, 0.014], [0.2031, 0.0513, 0.0426, 0.0311, 0.0293, 0.0228, 0.0157, 0.0138], [0.3993, 0.0786, 0.0199, 0.0199, 0.0165, 0.0088, 0.0083, 0.0078], [0.4441, 0.0681, 0.0235, 0.0143, 0.0134, 0.0104, 0.0098, 0.0087], [0.4456, 0.0683, 0.0285, 0.0268, 0.0251, 0.0236, 0.0208, 0.0162], [0.3715, 0.1549, 0.0829, 0.0444, 0.0392, 0.0346, 0.0305, 0.0237], [0.5506, 0.1228, 0.0745, 0.0512, 0.0188, 0.0188, 0.0166, 0.0147], [0.5186, 0.0901, 0.0619, 0.0201, 0.0189, 0.0177, 0.0157, 0.0147], [0.1919, 0.1319, 0.08, 0.0623, 0.0402, 0.0378, 0.0244, 0.0244], [0.4428, 0.1846, 0.077, 0.077, 0.0412, 0.0321, 0.0134, 0.0118], [0.2495, 0.2495, 0.1513, 0.0491, 0.0491, 0.0263, 0.0232, 0.0205], [0.6246, 0.2604, 0.0513, 0.013, 0.013, 0.0089, 0.0042, 0.002], [0.6975, 0.1764, 0.0505, 0.0306, 0.0113, 0.0041, 0.0037, 0.0032], [0.8245, 0.1433, 0.0118, 0.0063, 0.0023, 0.0023, 0.0023, 0.0018], [0.8078, 0.1404, 0.0168, 0.0102, 0.0054, 0.0042, 0.0033, 0.0021], [0.8207, 0.1111, 0.0248, 0.0219, 0.0059, 0.0038, 0.0023, 0.002], [0.8184, 0.1422, 0.011, 0.008, 0.0052, 0.0024, 0.001, 0.0009], [0.9741, 0.009, 0.0042, 0.004, 0.0024, 0.0024, 0.0003, 0.0002]], "ranks": {"Rust": [23726, 50927, 48114, 71355, 15947, 18327, 61052, 29063, 33615, 13282, 13271, 23087, 24993, 9741, 16551, 16464, 10946, 26385, 52130, 54034, 84720, 55277, 24970, 12823, 27871, 28922, 36677, 14590, 21487, 24739, 13486, 14124, 9961, 14976, 11870, 18470, 14988, 13101, 16474, 17466, 18600, 17432, 17176, 17507, 13292, 11936, 10835, 5661, 5351, 6760, 3954, 192, 64, 44, 43, 14, 2, 2, 1, 1, 1, 2, 2]}}, {"pos": 510, "top": [["\u2013", " \u2013", ".", ",", ";", "?", "\u2013and", "-"], ["\u2013", " \u2013", "\u2013and", "\u200b", ",", ".", " \u200b\u200b", ".\u2013"], ["\u2013", ",", ".", " \u2013", "\u2013and", ".\u2013", ";", "\u200b"], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "----------</", " Shemale", " addir", " Blowjob", "-------------</", "\ufffd\ufffd"], ["@", ".@", "\u200b", "na", ".", ",", " \u200b\u200b", " (@"], [" \u200b\u200b", ".", ",", "\u200b", "-\"", "\u3002", " \u200b", ".\u2013"], ["\u2014\"", "\u200b", ".\"", "  \n", "   \n", ".", "\"", " \u200b"], ["   \n", "  \n", ".\"", "-\"", "\u2014\"", "!\"", "?\"", ":\""], [".", "  \n\n", ".\"", "   \n", ".|", "!\"", "\u00a0", "   \n\n"], ["\u2014\"", ",", "\u2013", "-\"", ".|", ".\\", ".\"", "\u2013and"], ["\\n", "\u2014\"", "\"", ".\"", ".\\", "@", "&nbsp", "\u2013"], [" ____", "<br", " _", " savvy", "\\n", " _____", " rumored", " **\""], [" savvy", " rumored", "-ish", "neighbor", "-esque", "-or", "\u2014or", " goofy"], [" savvy", "-esque", "-ish", "\u2014or", " folks", "\u2014\"", " rumored", "-or"], [" savvy", " arguably", "\u2014or", "-esque", "-or", " ostensibly", " fanc", " folks"], [" savvy", " myriad", "\u2014or", " crafting", " folks", " touted", " arguably", "-esque"], [" savvy", " myriad", "-esque", " arguably", " crafting", " ostensibly", " potentially", " touted"], [" savvy", "-esque", " crafting", " myriad", " arguably", " revamped", " touted", " mundane"], [" savvy", "-esque", " myriad", " arguably", " ostensibly", "\u2014or", " touted", " mundane"], [" myriad", " savvy", " arguably", " burgeoning", " ostensibly", "-esque", "\u2014or", " seemingly"], [" \n\n", "  \n\n", "<|endoftext|>", " myriad", "   \n\n", " \r\n\r\n", " \n\n\n", " burgeoning"], [" savvy", " ;;^", " **", " academia", " ``", " **'", " **\u2022", " mundane"], [" ``", " **", " mundane", " savvy", " arguably", " myriad", " crafting", " \\\""], [" ultimately", " myriad", " arguably", " eventually", " heavily", " ``", " ostensibly", " potentially"], [" \n\n", "  \n\n", " \r\n\r\n", "   \n\n", "\r\n\r\n", " \n\n\n", "  \r\n\r\n", " \n\n\n\n"], [" **", " *__", " **'", " \r\n\r\n", " **#", " )**", " academia", " **\""], [" **", " \n\n", " arguably", " \r\n\r\n", " unconventional", " ultimately", " crafting", " academia"], [" \n\n", "  \n\n", "\n\n", "   \n\n", " \r\n\r\n", " **", "\r\n\r\n", " _"], [" \n\n", "  \n\n", "   \n\n", " \r\n\r\n", " \n  \n", " **", " arguably", " ultimately"], [" \n\n", " **", " \n  \n", "  \n\n", " \n", " \n    \n", "   \n\n", " unconventional"], [" \n\n", " ultimately", " **", " complex", " potentially", " eventually", " heavily", " unconventional"], [" complex", " ultimately", " modern", " potentially", " heavily", " unconventional", " **", " hybrid"], [" complex", " ultimately", " hybrid", " potentially", " tech", " unconventional", " heavily", " via"], [" tech", " hybrid", " potentially", " unconventional", " modular", " hybrids", " complex", "\u2014but"], [" tech", " hybrid", " unconventional", " cyber", " modular", " via", " hybrids", " leveraging"], [" tech", " hybrid", " modular", " unconventional", " software", " hacker", " proprietary", " cyber"], [" modular", " unconventional", " tech", " hybrid", " software", " simplistic", " bespoke", " algorithms"], [" modular", " unconventional", " hybrid", " software", " tech", " proprietary", " bespoke", " algorithms"], [" modular", " tech", " customizable", " bespoke", " unconventional", " algorithms", " languages", " software"], [" modular", " languages", " linguistic", " customizable", " syntax", " hybrid", "\u2011", " language"], [" scripting", " languages", " JavaScript", " software", " language", " tech", " programming", " modular"], [" scripting", " languages", " JavaScript", " language", " software", " programming", " bytecode", "\u7f16\u7a0b\u8bed\u8a00"], [" scripting", " languages", " JavaScript", " programming", " language", " software", "\u7f16\u7a0b\u8bed\u8a00", " bytecode"], [" scripting", " languages", " JavaScript", " software", " bytecode", " programming", " language", " embedded"], [" scripting", " languages", " embedded", " software", " programming", " proprietary", " internally", " algorithms"], [" scripting", " languages", " modular", " proprietary", " simplistic", " scripted", " bespoke", " embedded"], [" scripting", " scripted", "\u67d0\u79cd", " simplistic", "\u67d0\u7a2e", " FPGA", " bytecode", " tech"], [" scripting", "\u67d0\u79cd", " scripted", " bespoke", "\u67d0\u7a2e", "\u751a\u81f3\u662f", " proprietary", " hybrids"], [" scripting", "\u67d0\u79cd", " bespoke", "\u67d0\u7a2e", " scripted", " proprietary", "-script", " FPGA"], [" scripting", "\u751a\u81f3\u662f", "\u67d0\u7a2e", "\u67d0\u79cd", " bespoke", " simplistic", "/etc", "-script"], [" scripting", "\u751a\u81f3\u662f", "\u67d0\u7a2e", "\u67d0\u79cd", " FPGA", "\u751a\u81f3", "-script", "-lite"], [" scripting", " JavaScript", " Lua", "JavaScript", "Python", " Kotlin", ".Java", "-script"], [" JavaScript", " scripting", " Lua", "JavaScript", " Javascript", " Kotlin", "-js", "Javascript"], [" Lua", " JavaScript", " scripting", " Javascript", "Lua", "JavaScript", "-script", " Kotlin"], [" JavaScript", " Lua", " Javascript", "JavaScript", " Python", " scripting", "Javascript", " Rust"], [" JavaScript", " Lua", " Javascript", " Rust", "JavaScript", " scripting", "Javascript", " Python"], [" Rust", " Lua", " JavaScript", "Lua", " scripting", " Javascript", " JS", "lua"], [" Lua", " Rust", " JavaScript", "Lua", " JS", " scripting", " Javascript", "JavaScript"], [" Rust", " Lua", " JavaScript", " JS", " wasm", " Javascript", "Lua", "JavaScript"], [" Rust", " JS", " JavaScript", " wasm", " Javascript", " rust", "JavaScript", " Lua"], [" Rust", " JS", " JavaScript", " wasm", " WAS", " Lua", " rust", " Javascript"], [" Rust", " JS", " JavaScript", " WAS", " wasm", " JIT", " rust", " rusty"], [" Rust", " JS", " Web", " WAS", " JavaScript", " wasm", " W", " JIT"]], "p": [[0.6119, 0.1753, 0.1365, 0.0645, 0.0068, 0.0006, 0.0006, 0.0005], [0.7689, 0.1108, 0.0141, 0.0075, 0.0043, 0.004, 0.0028, 0.0026], [0.9076, 0.058, 0.0166, 0.0048, 0.0029, 0.0022, 0.0016, 0.0013], [0.0143, 0.0053, 0.0053, 0.005, 0.0044, 0.0039, 0.003, 0.0027], [0.1249, 0.0669, 0.0316, 0.0169, 0.014, 0.0116, 0.0109, 0.0096], [0.1063, 0.0416, 0.0197, 0.0082, 0.0072, 0.0064, 0.006, 0.0056], [0.1218, 0.0739, 0.0694, 0.0652, 0.0448, 0.0349, 0.0328, 0.0308], [0.3061, 0.0389, 0.0366, 0.0323, 0.0285, 0.0236, 0.0236, 0.0208], [0.1305, 0.0897, 0.0544, 0.0511, 0.0511, 0.0424, 0.0424, 0.0374], [0.1474, 0.0509, 0.0397, 0.029, 0.0241, 0.0199, 0.0114, 0.0107], [0.1221, 0.0696, 0.0614, 0.0478, 0.0309, 0.0309, 0.0309, 0.0226], [0.026, 0.0229, 0.0178, 0.0139, 0.0123, 0.0096, 0.009, 0.0084], [0.0646, 0.0185, 0.0153, 0.0099, 0.0087, 0.0082, 0.0053, 0.005], [0.1169, 0.0552, 0.0216, 0.0158, 0.014, 0.0116, 0.0116, 0.0109], [0.0867, 0.0219, 0.0182, 0.0171, 0.011, 0.0104, 0.0091, 0.0091], [0.0988, 0.0387, 0.0207, 0.0161, 0.0161, 0.0126, 0.0126, 0.0118], [0.0774, 0.0285, 0.0208, 0.0196, 0.0105, 0.0098, 0.0087, 0.0082], [0.0639, 0.0364, 0.0152, 0.0052, 0.0043, 0.0038, 0.0038, 0.0038], [0.0375, 0.0242, 0.0107, 0.0095, 0.0089, 0.0079, 0.0074, 0.0065], [0.031, 0.0213, 0.0101, 0.0078, 0.0078, 0.0078, 0.0057, 0.0045], [0.0748, 0.0332, 0.0293, 0.0147, 0.0138, 0.0095, 0.0079, 0.0054], [0.009, 0.0079, 0.0066, 0.0029, 0.0027, 0.0026, 0.0024, 0.0024], [0.0392, 0.0077, 0.0068, 0.0068, 0.0056, 0.0044, 0.0039, 0.0028], [0.0112, 0.0082, 0.0082, 0.0056, 0.005, 0.005, 0.0036, 0.0032], [0.565, 0.1953, 0.0675, 0.0559, 0.0103, 0.0086, 0.0067, 0.0032], [0.1028, 0.0123, 0.0096, 0.0096, 0.007, 0.0066, 0.0062, 0.0058], [0.0273, 0.0213, 0.0069, 0.0065, 0.0048, 0.0039, 0.0037, 0.0033], [0.5991, 0.1108, 0.0141, 0.0132, 0.0124, 0.0103, 0.0046, 0.0036], [0.4418, 0.1625, 0.0411, 0.0125, 0.0111, 0.0086, 0.0063, 0.0049], [0.1969, 0.1353, 0.0874, 0.0413, 0.0388, 0.0235, 0.0183, 0.0081], [0.0332, 0.0228, 0.0215, 0.0189, 0.0167, 0.0148, 0.0101, 0.0095], [0.024, 0.0165, 0.0128, 0.0121, 0.0121, 0.0113, 0.0106, 0.0094], [0.0275, 0.0258, 0.0214, 0.0166, 0.0122, 0.0114, 0.0107, 0.0107], [0.1234, 0.0547, 0.0167, 0.0157, 0.0115, 0.0101, 0.0095, 0.0084], [0.1582, 0.0514, 0.0147, 0.0147, 0.013, 0.013, 0.0115, 0.0108], [0.0431, 0.0315, 0.0245, 0.0191, 0.0149, 0.014, 0.009, 0.008], [0.0476, 0.0289, 0.0239, 0.0186, 0.0128, 0.0113, 0.01, 0.0088], [0.0493, 0.0299, 0.015, 0.0141, 0.0141, 0.011, 0.011, 0.008], [0.0579, 0.0177, 0.0156, 0.0138, 0.0138, 0.0129, 0.0121, 0.0107], [0.0319, 0.0219, 0.0193, 0.0133, 0.0133, 0.0117, 0.011, 0.0104], [0.0785, 0.0693, 0.0371, 0.0289, 0.0239, 0.0199, 0.0155, 0.0128], [0.2632, 0.1409, 0.0754, 0.0356, 0.023, 0.023, 0.014, 0.0131], [0.2176, 0.132, 0.08, 0.0277, 0.026, 0.0179, 0.0123, 0.0115], [0.1201, 0.0825, 0.0304, 0.0252, 0.0209, 0.0196, 0.0163, 0.0112], [0.0954, 0.0423, 0.0227, 0.02, 0.0166, 0.0166, 0.0156, 0.0137], [0.1471, 0.0176, 0.0176, 0.0146, 0.0146, 0.0137, 0.0107, 0.0107], [0.1163, 0.0215, 0.0215, 0.0178, 0.0139, 0.0108, 0.0095, 0.009], [0.0531, 0.0284, 0.0152, 0.0143, 0.0143, 0.0134, 0.0134, 0.0111], [0.0527, 0.0234, 0.0194, 0.0161, 0.011, 0.0104, 0.0092, 0.0086], [0.0251, 0.0208, 0.0162, 0.0111, 0.0105, 0.0092, 0.0087, 0.0077], [0.0196, 0.0126, 0.0105, 0.0092, 0.0087, 0.0077, 0.0068, 0.006], [0.1083, 0.0792, 0.058, 0.033, 0.0213, 0.0138, 0.0129, 0.0129], [0.1657, 0.1462, 0.1139, 0.0307, 0.0254, 0.0254, 0.0145, 0.0128], [0.2793, 0.192, 0.1694, 0.026, 0.026, 0.0202, 0.0202, 0.0148], [0.6056, 0.2228, 0.0439, 0.0302, 0.0235, 0.0111, 0.0076, 0.0067], [0.6148, 0.1762, 0.0572, 0.027, 0.0238, 0.021, 0.0099, 0.0099], [0.583, 0.3536, 0.0199, 0.0155, 0.0121, 0.0024, 0.0024, 0.0016], [0.4843, 0.3772, 0.0655, 0.0213, 0.0188, 0.0069, 0.0069, 0.0037], [0.7982, 0.0742, 0.0655, 0.0397, 0.0054, 0.0037, 0.0029, 0.0025], [0.8393, 0.0781, 0.0689, 0.005, 0.0018, 0.0011, 0.001, 0.0009], [0.8186, 0.1108, 0.0593, 0.0038, 0.002, 0.001, 0.0008, 0.0006], [0.7799, 0.1056, 0.0565, 0.0302, 0.0105, 0.0028, 0.0012, 0.001], [0.4103, 0.2489, 0.171, 0.0808, 0.0629, 0.0052, 0.0031, 0.0023]], "ranks": {"Rust": [24617, 45598, 41844, 43611, 17066, 13675, 26376, 22753, 36451, 20919, 13346, 26200, 14319, 15678, 27148, 20276, 22215, 41463, 79882, 84274, 62782, 55556, 44680, 34755, 43228, 68175, 32253, 13946, 8929, 7508, 8647, 9503, 7468, 8877, 6659, 678, 124, 116, 205, 323, 302, 237, 306, 524, 486, 368, 566, 534, 308, 570, 980, 80, 12, 10, 8, 4, 1, 2, 1, 1, 1, 1, 1]}}, {"pos": 511, "top": [[".", ",", "\u2013", ";", " \u2013", "\u00a0\u00a0", "\u2026.", ",."], [" \u200b\u200b", ".", " \u2013", "\u2013", "\u2013and", ":.", ",.", ".\u2013"], [".", "\u2013", ",", "\u2026.", " \u2013", "\u2026..", " \u200b\u200b", "\u2026"], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " Guta", " pornstar", " Blowjob", "sprozess", " cumshot"], [".@", " \u200b\u200b", "@d", "@a", "@c", "\u7fe1", " \"@", "(@"], [" \u200b\u200b", "\u2026.", "\u2026..", "\u7fe1", ".ac", "!:", "!,", ".ua"], ["s", ".....", "\u2026.", "\u2026..", "\t  ", "@a", " \u200b\u200b", "!\""], [" @", ".@", "@a", ".....", "@d", "@c", "!.", "(@"], [" [\u2026]", "...", ".", "\u2026.", "\u00a0", ".....", " \n\n", "\u2026.."], [",", " [\u2026]", "\u2026", "\u00a0", "@", "\u2013", "\u2026.", "..."], ["...", "@", " @", " [\u2026]", "\u00a0", "&", "-", "2"], [" @", " _", " #", " pricey", " ~", " folks", " fanc", " savvy"], [" pricey", " savvy", " _", " funky", " nerd", " veggies", " sizable", " hefty"], [" savvy", " pricey", " funky", " vibe", " trendy", " folks", " tech", "-esque"], [" savvy", " folks", " pricey", " tech", " hefty", " sorta", " teen", " touted"], [" savvy", " folks", " pricey", "-esque", " tech", " hefty", " potentially", " kids"], [" savvy", "-esque", " folks", " tech", " s", " \"", " hefty", " w"], ["-esque", " savvy", " tech", " pricey", " hefty", " quirky", " funky", " tweaked"], ["-esque", " savvy", " pricey", " revamped", " tech", " quirky", " hefty", " tweaked"], [" savvy", "-esque", " pricey", " myriad", " funky", " tech", " slick", " wildly"], [" myriad", " \n\n", " savvy", " revamped", " tech", " wildly", "-esque", " pricey"], [" savvy", " tech", " quirky", " trendy", "-esque", " pricey", " hacker", " buzz"], [" ``", " ''", " quirky", " tech", " savvy", " funky", "-esque", " pricey"], [" ''", " ``", " modern", " myriad", " wildly", " heavily", " tech", " popular"], [" ''", " modern", " myriad", " heavily", " ``", " wildly", "-esque", " seemingly"], [" tech", " modern", " software", " ''", " ``", " heavily", " modular", " robotic"], [" tech", " software", " ''", " modern", " modular", " ``", " complex", " technology"], [" tech", " ''", " modern", " complex", " software", " popular", " heavily", " ,"], [" tech", " modular", " software", " modern", " technology", " complex", " commercial", " creative"], [" modular", " tech", " software", " modern", " technology", " complex", " toolkit", " customizable"], [" modern", " tech", " modular", " complex", " technology", " \\\"", " ''", " software"], [" modern", " complex", " modular", " commercial", " tech", " technology", " similar", " popular"], [" modern", " complex", " modular", " tech", " hybrid", " commercial", " novel", " non"], [" tech", " modular", " software", " hacker", " hybrid", " customizable", " toolkit", " complex"], [" tech", " modular", " hacker", " hybrid", " Tech", " software", " toolkit", " Modular"], [" tech", " modular", " software", " hacker", " Tech", " Modular", " Kickstarter", " hybrid"], [" modular", " tech", " Modular", " software", " customizable", " hybrid", " toolkit", " indie"], [" modular", " software", " customizable", " tech", " Modular", " modern", " Minecraft", " scripting"], [" modular", " customizable", " language", " minimalist", " scripting", " tech", " software", " syntax"], [" modular", " minimalist", " syntax", " customizable", " tech", " language", " software", " scripting"], [" scripting", " language", " languages", " JavaScript", " Language", " Lua", " software", " tech"], [" scripting", " languages", " language", " Language", " JavaScript", " bytecode", " Lua", " Lisp"], [" scripting", " languages", " language", " JavaScript", " bytecode", " Language", " sandbox", " safer"], [" scripting", " safer", " languages", " Safe", " language", " simplified", " bytecode", " safe"], [" safer", " scripting", " safe", " simplified", " sandbox", " lightweight", " Safe", " proprietary"], [" safer", " scripting", " safe", " bespoke", " simplified", " proprietary", " Safe", " sandbox"], [" safer", " scripting", " safe", " bespoke", " Safe", " proprietary", "-safe", "safe"], [" bespoke", " safer", " proprietary", " Safe", " scripting", " safe", " custom", "SAFE"], [" bespoke", " proprietary", " safer", " custom", " Safe", " scripting", "\u81ea\u5b9a\u4e49", " safe"], [" bespoke", " proprietary", "-lite", " scripting", " Teixe", " simplistic", "\u81ea\u4e3b\u7814\u53d1", " safer"], [" bespoke", " Teixe", " proprietary", "-lite", " simplistic", " scripting", "\u5c0f\u4f17", "\u7b80\u6613"], [" bespoke", " proprietary", " Teixe", " scripting", " custom", "\u5b9a\u5236\u7684", "\u81ea\u5b9a\u4e49", "/custom"], [" bespoke", " proprietary", " custom", " scripting", "\u81ea\u5b9a\u4e49", " lightweight", "\u5b9a\u5236\u7684", "/custom"], [" bespoke", " proprietary", " subset", " custom", "\u81ea\u5b9a\u4e49", "subset", " Subset", "Subset"], [" subset", " Subset", "subset", "Subset", " bespoke", " scripting", "_subset", " proprietary"], [" subset", " Subset", "subset", " scripting", "Subset", " bespoke", " Lua", " DSL"], [" custom", " Rust", " scripting", " subset", " Lua", " bespoke", " DSL", " Subset"], [" custom", " DSL", " Rust", " bespoke", " scripting", " subset", " JIT", "custom"], [" Rust", " custom", " DSL", " subset", " scripting", " bespoke", " wasm", " JIT"], [" Rust", " custom", " subset", " DSL", " rust", " rusty", "rust", " bespoke"], [" Rust", " sandbox", " DSL", " rust", " rusty", " subset", " safe", " JS"], [" Rust", " subset", " custom", " sandbox", " rusty", " rust", " DSL", " safe"], [" Rust", " WAS", " custom", " JS", " DSL", " sandbox", " Web", " subset"]], "p": [[0.8702, 0.1178, 0.0059, 0.0019, 0.0013, 0.0005, 0.0005, 0.0005], [0.2231, 0.1849, 0.144, 0.1353, 0.0118, 0.0098, 0.0092, 0.0076], [0.6029, 0.2513, 0.0495, 0.03, 0.0206, 0.0142, 0.0086, 0.0059], [0.007, 0.0055, 0.0051, 0.0043, 0.0031, 0.0026, 0.0024, 0.002], [0.0458, 0.0261, 0.0216, 0.0169, 0.0116, 0.0102, 0.0051, 0.0038], [0.0869, 0.032, 0.0161, 0.0071, 0.0025, 0.0022, 0.0019, 0.0019], [0.0529, 0.0341, 0.0283, 0.0207, 0.0195, 0.0172, 0.0172, 0.0134], [0.0384, 0.0281, 0.0193, 0.0141, 0.0133, 0.0125, 0.0103, 0.0097], [0.2718, 0.0731, 0.057, 0.057, 0.0325, 0.0325, 0.0269, 0.0223], [0.2823, 0.1039, 0.0382, 0.0317, 0.0263, 0.0232, 0.0218, 0.0141], [0.5511, 0.1085, 0.0452, 0.0375, 0.0274, 0.0201, 0.0166, 0.013], [0.0291, 0.0213, 0.0146, 0.01, 0.0083, 0.0083, 0.0078, 0.005], [0.0167, 0.013, 0.0058, 0.0045, 0.0045, 0.0042, 0.0037, 0.0037], [0.0408, 0.0247, 0.0181, 0.0075, 0.0067, 0.0067, 0.0059, 0.0055], [0.0348, 0.0155, 0.0128, 0.0113, 0.0069, 0.0064, 0.0061, 0.0053], [0.0455, 0.0294, 0.0178, 0.0139, 0.0095, 0.009, 0.0066, 0.0066], [0.0346, 0.0197, 0.0174, 0.0144, 0.0127, 0.0112, 0.0106, 0.0087], [0.07, 0.07, 0.0274, 0.0201, 0.0122, 0.0095, 0.0084, 0.0069], [0.0951, 0.0542, 0.0114, 0.0088, 0.0088, 0.0088, 0.0069, 0.0065], [0.0421, 0.0328, 0.0187, 0.0121, 0.0121, 0.0121, 0.0078, 0.0073], [0.022, 0.0133, 0.0118, 0.0086, 0.0076, 0.0067, 0.0067, 0.0046], [0.0056, 0.0056, 0.0046, 0.0044, 0.0038, 0.0038, 0.0032, 0.0032], [0.0354, 0.0215, 0.0115, 0.0079, 0.0061, 0.0058, 0.0054, 0.0054], [0.0351, 0.0257, 0.0114, 0.0054, 0.0047, 0.0039, 0.0037, 0.0037], [0.0292, 0.0101, 0.0084, 0.0079, 0.0065, 0.0061, 0.0048, 0.0045], [0.0219, 0.0171, 0.0117, 0.0081, 0.0063, 0.0059, 0.0052, 0.0043], [0.0277, 0.0277, 0.0202, 0.019, 0.0148, 0.0096, 0.0079, 0.0074], [0.0158, 0.0139, 0.0139, 0.0108, 0.009, 0.0074, 0.007, 0.0066], [0.0537, 0.0347, 0.0224, 0.0224, 0.0145, 0.012, 0.0082, 0.0053], [0.07, 0.0657, 0.0242, 0.02, 0.02, 0.0147, 0.0138, 0.0089], [0.0442, 0.039, 0.0304, 0.0286, 0.0163, 0.0135, 0.0112, 0.0112], [0.0439, 0.0195, 0.0162, 0.0092, 0.0092, 0.0076, 0.0076, 0.0063], [0.0243, 0.0167, 0.0138, 0.0108, 0.0074, 0.0058, 0.0048, 0.0048], [0.3517, 0.0889, 0.0155, 0.0128, 0.012, 0.0088, 0.0083, 0.0064], [0.4082, 0.0626, 0.0158, 0.014, 0.009, 0.009, 0.007, 0.0066], [0.0933, 0.0603, 0.0208, 0.0173, 0.0134, 0.0119, 0.0105, 0.0105], [0.1032, 0.0335, 0.0158, 0.0149, 0.0131, 0.0116, 0.009, 0.009], [0.074, 0.0187, 0.0165, 0.0155, 0.0121, 0.0114, 0.0114, 0.0107], [0.0967, 0.0334, 0.0216, 0.019, 0.019, 0.0179, 0.0131, 0.0116], [0.0461, 0.017, 0.0159, 0.0159, 0.0159, 0.0141, 0.0103, 0.0091], [0.0671, 0.0433, 0.0337, 0.0298, 0.0298, 0.0247, 0.0232, 0.0218], [0.2292, 0.0843, 0.0792, 0.0424, 0.033, 0.0257, 0.0227, 0.0166], [0.2087, 0.0768, 0.0411, 0.0363, 0.022, 0.0194, 0.0182, 0.0171], [0.104, 0.0557, 0.0434, 0.0263, 0.0263, 0.0247, 0.0232, 0.0218], [0.1655, 0.0735, 0.0419, 0.0238, 0.0224, 0.0174, 0.0174, 0.0164], [0.172, 0.0812, 0.0339, 0.0318, 0.0264, 0.0233, 0.0181, 0.017], [0.3834, 0.0519, 0.043, 0.0404, 0.023, 0.0168, 0.0168, 0.0149], [0.1286, 0.1002, 0.0733, 0.0444, 0.0346, 0.0174, 0.0174, 0.0154], [0.1969, 0.1534, 0.0498, 0.0284, 0.0195, 0.0195, 0.0134, 0.0126], [0.1892, 0.1078, 0.0199, 0.0187, 0.0165, 0.0165, 0.0155, 0.0146], [0.0738, 0.0308, 0.024, 0.0212, 0.0137, 0.0137, 0.0113, 0.0083], [0.2803, 0.1098, 0.0314, 0.0295, 0.0191, 0.0168, 0.0168, 0.0158], [0.4638, 0.1329, 0.0316, 0.018, 0.0149, 0.0132, 0.0109, 0.0102], [0.4627, 0.0911, 0.0626, 0.0553, 0.0335, 0.0261, 0.023, 0.0179], [0.5502, 0.1576, 0.1228, 0.1083, 0.0147, 0.0042, 0.0042, 0.0037], [0.4744, 0.12, 0.0934, 0.0642, 0.0567, 0.0236, 0.0208, 0.0208], [0.2086, 0.1624, 0.1265, 0.0985, 0.0767, 0.0465, 0.0362, 0.032], [0.3963, 0.1286, 0.0608, 0.0536, 0.0473, 0.0418, 0.0287, 0.0287], [0.5865, 0.1155, 0.0899, 0.0546, 0.0331, 0.0122, 0.0095, 0.0074], [0.9876, 0.0052, 0.0019, 0.0017, 0.001, 0.0009, 0.0003, 0.0001], [0.9795, 0.0031, 0.0028, 0.0028, 0.0021, 0.0019, 0.0019, 0.0011], [0.9227, 0.0149, 0.0132, 0.0116, 0.009, 0.0055, 0.0055, 0.0028], [0.8579, 0.0333, 0.0333, 0.0259, 0.0084, 0.0062, 0.004, 0.004]], "ranks": {"Rust": [35165, 68360, 52535, 127395, 9166, 15656, 45906, 29586, 28392, 8453, 9815, 10265, 6255, 9972, 16827, 14309, 13398, 30418, 40389, 36042, 29269, 20906, 27608, 12416, 6505, 4228, 3237, 3631, 2282, 3077, 3822, 5198, 4723, 3518, 2494, 402, 91, 95, 168, 262, 456, 278, 390, 687, 1053, 1116, 1851, 1825, 1586, 3957, 8451, 844, 212, 124, 58, 18, 2, 3, 1, 1, 1, 1, 1]}}, {"pos": 512, "top": [[" \u2013", ".", ",", "\u2013", "a", "er", "@", " "], ["\u2013and", " \u2013", "\u2013", " \u2013,", "\u6700\u65b0\u53d1\u5e03", "@\",", "@g", " *\u2013"], ["\u2013", " \u2013", ",", "\u2013and", ".", " \u2013,", ".\u2013", "**\u2013"], ["erweise", " milfs", "\u6700\u65b0\u53d1\u5e03", "izer", " Shemale", " pupper", " *_", " Blowjob"], ["@", ".@", " @", "(@", ":@", " (@", "@g", " *@"], ["@", ".@", "@g", ":@", ",", "(@", "-_", " @"], ["&", "@", " @", "-_", " _", " \n\n", " \n\n\n", " Austin"], [" @", " *_", "@", "-_", " *@", "ly", " _", " \n\n\n"], [" \n\n", " \n\n\n", "\u00a0", "@", "&", " @", "   \n\n", "    \n\n"], ["\u00a0", "@", ",", "&", " @", ".@", "-", "\u2013"], ["\u00a0", "@", "&", " \n\n", " @", " \n\n\n", ",", "-"], [" _", " \n\n\n", " showcase", " \n\n", "ive", "-_", " *_", "ly"], [" _", " showcase", "-_", "ive", " iconic", "ly", "ised", " DIY"], [" showcase", " iconic", "-_", " tweaked", " tweaks", " wildcard", " video", " showcased"], [" showcase", " iconic", " tweaked", " video", " tech", " combo", " revamped", " tweaks"], [" showcase", " iconic", " tweaks", " tech", " tweaked", " showcasing", " crafting", " combo"], [" tech", " showcase", "\u00a0", " tweaked", " tweaks", " iconic", " DIY", " w"], [" showcase", " tech", " tweaks", " tweaked", " DIY", " combo", " tweaking", " iconic"], [" showcase", " tweaked", " DIY", " tech", " tweaks", " combo", " funky", " iconic"], [" showcase", " DIY", " tech", " funky", " tweaks", " combo", " tweaked", " iconic"], [" \n\n", " \n\n\n", " showcase", " tech", "   \n\n", " DIY", " tweaked", " @"], [" DIY", " showcase", " tweaks", " tech", " funky", " toolkit", " iconic", " wildcard"], [" DIY", " tech", " showcase", " tweaks", " funky", " tweaked", " combo", " software"], [" design", " tech", " software", " designer", " DIY", " showcase", " tweaked", " video"], [" \n\n", " tech", " \n\n\n", " \r\n\r\n", " design", " tweaked", " crafting", "   \n\n"], [" tech", " software", " DIY", " designer", " design", " toolkit", " showcase", " crafting"], [" software", " tech", " designer", " design", " technology", " architecture", " modular", " designs"], [" \n\n", " tech", " software", "\n\n", " design", " _", " technology", " @"], [" tech", " software", " \n\n", " design", " designer", " technology", " modular", " craft"], [" tech", " software", " design", " modular", " designer", " technology", " toolkit", " \n\n"], [" tech", " design", " software", " designer", " technology", " modular", " \n\n", " __"], [" design", " hybrid", " software", " designer", " modular", " technology", " complex", " tech"], [" design", " hybrid", " tech", " complex", " designer", " modular", " software", " technology"], [" tech", " hybrid", " modular", " software", " design", " hacker", " technology", " designer"], [" tech", " hybrid", " hacker", " modular", " software", " cyber", " bespoke", " DIY"], [" tech", " software", " modular", " hacker", " hybrid", " DIY", " bespoke", " code"], [" software", " modular", " bespoke", " tech", " custom", " language", " hacker", " hybrid"], [" software", " language", " custom", " modular", " bespoke", " syntax", " scripting", " tech"], [" language", " syntax", " software", " modular", " bespoke", " custom", " tech", " scripting"], [" syntax", " language", " Language", " software", " grammar", " modular", " languages", " scripting"], [" language", " Language", " syntax", " scripting", " languages", " software", " bytecode", " parser"], [" language", " Language", " scripting", " syntax", " languages", " bytecode", " software", " parser"], [" language", " scripting", " bytecode", " syntax", " Language", " languages", " software", " programming"], [" bytecode", " language", " syntax", " scripting", " languages", " Language", " parser", " software"], [" bytecode", " syntax", " scripting", " language", " bespoke", " parser", " custom", " languages"], [" bespoke", " bytecode", " scripting", " syntax", " custom", " parser", " language", " proprietary"], [" bespoke", " bytecode", " scripting", " custom", "/custom", " parser", " proprietary", " syntax"], [" bespoke", " bytecode", " scripting", "/custom", " proprietary", " syntax", " custom", " parser"], [" bytecode", " bespoke", " scripting", " parser", "/custom", " crafted", " sandbox", " modular"], [" bytecode", " bespoke", " scripting", "/custom", " XML", "/simple", " simplistic", " parser"], [" bytecode", " bespoke", " scripting", " XML", "-lite", "/simple", " SDK", "\u7b80\u6613"], [" bytecode", " scripting", " parser", " SDK", "-parser", " XML", "-syntax", " syntax"], [" bytecode", " scripting", " DSL", "\u8bed\u8a00", "-language", " parser", "language", " Lua"], [" DSL", " scripting", " bytecode", " Lua", " parser", "\u8bed\u8a00", " JIT", " JSON"], [" DSL", " scripting", " bytecode", " Lua", "\u8bed\u8a00", " JSON", " syntax", " YAML"], [" DSL", " scripting", " bytecode", " Lua", "DSL", " parser", "interpreter", " JSON"], [" scripting", " DSL", " Lua", " bytecode", "DSL", "\u811a\u672c", "-script", "script"], [" DSL", " scripting", " VM", " bytecode", " Lua", " interpreter", "interpreter", "Interpreter"], [" DSL", " VM", " scripting", " bytecode", " interpreter", " Lua", "interpreter", "VM"], [" DSL", " VM", " bytecode", " interpreter", " AST", "VM", "interpreter", " Rust"], [" DSL", " bytecode", " VM", " AST", " JS", " Rust", " JIT", "DSL"], [" DSL", " bytecode", " AST", " VM", " JIT", " JS", " WAS", " Rust"], [" DSL", " AST", " bytecode", " VM", " JS", " WAS", " JIT", " Rust"]], "p": [[0.4935, 0.1172, 0.1035, 0.0489, 0.0217, 0.0217, 0.0159, 0.0075], [0.2424, 0.2009, 0.0739, 0.0541, 0.0289, 0.0106, 0.0106, 0.0088], [0.6088, 0.1744, 0.1058, 0.0824, 0.0087, 0.0072, 0.0046, 0.001], [0.0051, 0.0038, 0.0038, 0.0035, 0.0024, 0.002, 0.0016, 0.0016], [0.2257, 0.1001, 0.0473, 0.0238, 0.0238, 0.0238, 0.0223, 0.0154], [0.0519, 0.0109, 0.0048, 0.004, 0.004, 0.0038, 0.0035, 0.0035], [0.0791, 0.0616, 0.0398, 0.0156, 0.0129, 0.0114, 0.0101, 0.0065], [0.0496, 0.0387, 0.0301, 0.0301, 0.0283, 0.0172, 0.0151, 0.0134], [0.3458, 0.1272, 0.064, 0.0235, 0.0183, 0.0111, 0.0111, 0.0087], [0.2381, 0.0876, 0.0876, 0.0184, 0.0087, 0.0081, 0.0068, 0.006], [0.3597, 0.1699, 0.0625, 0.0552, 0.0335, 0.0168, 0.0109, 0.0109], [0.1018, 0.0352, 0.033, 0.0177, 0.0156, 0.0138, 0.0138, 0.0101], [0.0549, 0.0354, 0.0202, 0.0115, 0.0084, 0.0045, 0.0042, 0.0033], [0.0412, 0.0134, 0.0081, 0.0076, 0.0063, 0.0056, 0.0049, 0.0046], [0.0291, 0.0129, 0.0101, 0.0074, 0.0074, 0.0069, 0.0057, 0.0057], [0.0493, 0.0182, 0.015, 0.015, 0.0117, 0.0117, 0.0086, 0.0086], [0.0154, 0.0154, 0.0113, 0.0093, 0.0088, 0.0088, 0.006, 0.0053], [0.0309, 0.0273, 0.0213, 0.0213, 0.0121, 0.0094, 0.0078, 0.0073], [0.0253, 0.0197, 0.0185, 0.0174, 0.0163, 0.0099, 0.0093, 0.0087], [0.0403, 0.0216, 0.019, 0.0179, 0.0168, 0.0131, 0.0131, 0.0108], [0.4834, 0.0741, 0.0057, 0.005, 0.005, 0.0045, 0.0042, 0.0039], [0.0251, 0.0235, 0.0104, 0.0081, 0.0081, 0.006, 0.0053, 0.0046], [0.0191, 0.0149, 0.014, 0.0109, 0.0096, 0.0075, 0.0058, 0.0058], [0.0122, 0.0115, 0.0058, 0.0058, 0.0054, 0.0045, 0.0042, 0.0042], [0.3726, 0.012, 0.0113, 0.0077, 0.005, 0.005, 0.005, 0.0041], [0.0456, 0.026, 0.0131, 0.0123, 0.0115, 0.0079, 0.0074, 0.007], [0.0436, 0.0361, 0.0233, 0.0206, 0.011, 0.0081, 0.0076, 0.0076], [0.411, 0.0218, 0.017, 0.0132, 0.011, 0.0097, 0.0059, 0.0052], [0.0609, 0.0326, 0.0288, 0.0186, 0.0145, 0.0145, 0.0136, 0.0073], [0.043, 0.0278, 0.0261, 0.0203, 0.0169, 0.0131, 0.0131, 0.0109], [0.0386, 0.032, 0.0234, 0.0151, 0.0142, 0.0133, 0.0111, 0.0098], [0.0358, 0.0132, 0.0109, 0.0109, 0.0102, 0.0102, 0.0096, 0.009], [0.027, 0.0224, 0.0154, 0.0113, 0.0106, 0.0093, 0.0088, 0.0077], [0.095, 0.0372, 0.0328, 0.0309, 0.0129, 0.0107, 0.01, 0.0078], [0.1747, 0.0344, 0.0236, 0.0222, 0.0196, 0.0112, 0.0093, 0.0087], [0.0596, 0.0385, 0.0282, 0.0234, 0.0182, 0.0171, 0.011, 0.0086], [0.0549, 0.0485, 0.0402, 0.0294, 0.0244, 0.0215, 0.0168, 0.0168], [0.068, 0.0412, 0.0302, 0.0302, 0.0221, 0.0207, 0.0152, 0.0152], [0.1062, 0.0644, 0.0502, 0.0391, 0.0237, 0.0237, 0.0184, 0.0173], [0.179, 0.1156, 0.0274, 0.0214, 0.0177, 0.0166, 0.0166, 0.0147], [0.2211, 0.0866, 0.0764, 0.0435, 0.0361, 0.0319, 0.0264, 0.0141], [0.2639, 0.1247, 0.11, 0.0756, 0.0667, 0.052, 0.0149, 0.0131], [0.1851, 0.1354, 0.0821, 0.064, 0.0601, 0.0564, 0.0172, 0.0162], [0.1091, 0.0963, 0.0798, 0.075, 0.0401, 0.0259, 0.0215, 0.0167], [0.1081, 0.1015, 0.0698, 0.048, 0.0423, 0.0291, 0.0241, 0.02], [0.1116, 0.0869, 0.0721, 0.0495, 0.0437, 0.0265, 0.0249, 0.0182], [0.1663, 0.1295, 0.054, 0.0289, 0.024, 0.0187, 0.0187, 0.0187], [0.1312, 0.0847, 0.0514, 0.0178, 0.0157, 0.0138, 0.0138, 0.0122], [0.1341, 0.0718, 0.0435, 0.0206, 0.0181, 0.0133, 0.0103, 0.0103], [0.1167, 0.0708, 0.0334, 0.0139, 0.0139, 0.0131, 0.0123, 0.0116], [0.1448, 0.0268, 0.0252, 0.0135, 0.0127, 0.0119, 0.0112, 0.0093], [0.2142, 0.189, 0.0509, 0.0372, 0.0176, 0.0176, 0.0165, 0.0137], [0.2021, 0.1783, 0.0579, 0.0579, 0.0257, 0.0213, 0.0166, 0.0166], [0.5686, 0.1438, 0.1269, 0.0152, 0.0092, 0.0067, 0.0063, 0.0063], [0.6418, 0.1115, 0.0869, 0.022, 0.022, 0.0151, 0.0092, 0.0056], [0.7743, 0.1346, 0.034, 0.0125, 0.0097, 0.0036, 0.0032, 0.0032], [0.6138, 0.2559, 0.0733, 0.0306, 0.0025, 0.0025, 0.002, 0.0017], [0.4026, 0.1902, 0.1481, 0.1153, 0.0374, 0.0292, 0.0227, 0.0095], [0.5272, 0.1939, 0.1038, 0.0808, 0.0297, 0.0159, 0.014, 0.0059], [0.6303, 0.2977, 0.0356, 0.0131, 0.0042, 0.0037, 0.002, 0.002], [0.7236, 0.1615, 0.0673, 0.0318, 0.0038, 0.0026, 0.002, 0.001], [0.7357, 0.186, 0.0366, 0.0222, 0.0034, 0.003, 0.0021, 0.0021], [0.8135, 0.0459, 0.0459, 0.0405, 0.0217, 0.0149, 0.0048, 0.0038]], "ranks": {"Rust": [23368, 37472, 17783, 30329, 4059, 2495, 5086, 3940, 5904, 4457, 5031, 3161, 3162, 4230, 7902, 8123, 8188, 7461, 10133, 12848, 9840, 5707, 6779, 5975, 3565, 2929, 2936, 3725, 3503, 3761, 3981, 5066, 4556, 3620, 3064, 806, 267, 328, 318, 343, 366, 366, 502, 1038, 1363, 747, 1028, 885, 582, 739, 2040, 975, 175, 115, 78, 45, 15, 21, 14, 7, 6, 7, 8]}}, {"pos": 513, "top": [["s", " \u2013", "@\"", " [\u2026]", " @", " (@", " *@", " @("], [" \u2013", "s", " *\u2013", "\u2013\u2013", " @(", " \u2013,", " \\\"\"", " \u2013**"], [" \u2013", "s", "\u2013\u2013", "\u2013", " *\u2013", " \u2013,", " \u2013**", " |\u2013"], [" \\\"\"", " @_", " \"&#", " *\u201e", " '\\''", " '&#", " \ufd3f", "spraak"], ["s", " @_", " @(", " (@", " #\"", "@\\", " @\"", " *@"], ["s", " @_", " @(", " Insg", " @}", "@\\", " (@", " #\""], ["s", " @_", " @(", " #\"", " @\"", " (@", " @", " [#"], ["s", " @_", " @(", " #\"", " *@", " `\"", " @", " @\""], [" @_", " @(", " *@", " `\"", " \\@", " #\"", " *\"", " *\u201e"], [" @_", " \\@", "@\\", " @(", " @$", " #\"", " @{", " @\""], [" @_", " @", " @(", "s", " \\@", "@\\", " [@", " (@"], ["s", " @_", " `\"", " \\@", " &_", " #\"", " `\\", " \\`"], ["s", " *\u00ab", " &_", " `\"", "_-", " **\u00ab", " _)", " `_"], ["s", " `\"", " &_", " DSL", " *\u00ab", "_-", " `_", " ~>"], ["s", " `\"", " &_", " DSL", " `\\", " `_", " \\\"\"", " \\/"], ["s", " DSL", " `\"", " ~>", " \\/", " &_", " \\<^", " `\\"], ["s", " DSL", " `\"", " ~>", " akin", "es", " &_", " \\/"], ["s", " `\"", " DSL", " `\\", " *\u00ab", " `_", " \\\"\"", " ~>"], ["s", " `\"", " YYS", " DSL", " Insg", " ~>", " \\\"\"", " \\<^"], ["s", " `\"", " \\<^", " ``", " `\\", " `'", " [`", " \\`"], ["s", " `\"", "i", " @_", " @", " @(", " [`", " \"`"], [" ``", " ``(", " YYS", " `\"", " \\<^", " \\\"\"", " **\u25a0", "``"], [" ``", "``", " ``(", " `\"", " *__", " YYS", " `_", " \\\"\""], [" ``", "``", " `\"", "s", " ``(", " `\\", " `_", " `'"], ["s", "\n\n", " ``", " _", "\r\n\r\n", " `\"", " `_", " `\\"], [" ``", "s", " `\"", "``", " `_", " `\\", " `", " DSL"], [" ``", "s", "``", " `\"", " ``(", " `", " `_", " `<"], [" ``", " `", " ,", " _", " `\"", " --", "s", " `\\"], [" ``", "s", " ,", " language", " .", " `\"", " DSL", " programming"], [" ``", "s", " .", "``", " language", " ,", " \\\"\"", " architecture"], [" .", " ``", "s", " ,", " language", " _", " via", " __"], [" .", " ,", " complex", "s", " ``", " language", " via", " -"], [" .", " ,", " complex", "s", " via", " -", " /", " for"], [" tech", " complex", " via", " software", "s", " programming", " ``", " conceptual"], [" tech", " via", " /", " complex", " akin", "s", " software", " language"], [" .", " /", " -", " \u2014", " ,", " \"", " via", "s"], ["s", " /", " \"", " via", " embedded", " -", " complex", " \u2014"], ["s", " via", " /", " embedded", " \"", " -", " language", " DSL"], [" via", " /", " language", " embedded", " syntax", " \u201c", " \"", " -"], [" via", " language", " embedded", "s", " syntax", " /", " DSL", " languages"], [" language", " languages", " embedded", " via", " software", " code", " syntax", " programming"], [" languages", " language", " embedded", " via", " programming", " syntax", " software", " code"], [" languages", " language", " embedded", " via", " syntax", " programming", " software", " translators"], [" languages", " embedded", " via", " language", " code", " software", " translated", " syntax"], [" embedded", " via", " languages", " language", " syntax", " code", " integrated", " complex"], [" embedded", " via", " integrated", " or", " complex", " translated", " language", " code"], [" via", " embedded", " integrated", " or", " translated", " complex", " code", " encoded"], [" via", " embedded", " translated", " integrated", " encoded", " converted", " translating", " mapped"], [" via", " embedded", " translated", " converted", " integrated", " interpreted", " powered", " wrapped"], [" via", " embedded", " translated", " integrated", "via", " synced", " requires", " interacting"], [" translated", " via", " embedded", " synced", " integrated", "via", " converted", " interacting"], [" via", "via", " embedded", " implemented", " translated", " parsed", " synced", " interacting"], [")", " via", " implemented", "via", " injected", " embedded", " runtime", " parsed"], [")", " injected", " implemented", " executed", " via", " interpreted", " parsed", " embedded"], [" parsed", " executed", ")", " implemented", " runtime", " injected", " interpreted", " executing"], [" wrapped", " parsed", " wrapper", " interpreted", " executed", " wrappers", " wrapping", ")"], [" interpreted", " parsed", " wrapped", " executed", ")", " wrapper", " wrappers", " executing"], [" running", " executed", " interpreted", " executing", " embedded", " compiled", " interpreter", " parsed"], [" interpreted", " running", " executed", " embedded", " interpreter", " executing", " compiled", " interpre"], [" interpreted", " executed", " parsed", " running", ")", " embedded", " interpreter", " executing"], [")", " injected", " executed", " interpreted", " running", " )", " embedded", " executing"], [")", " )", " executed", " injected", " running", " interpreted", " executing", " sandbox"], [")", "?)", " )", " executed", " injected", " running", "\")", "!)"]], "p": [[0.3853, 0.3853, 0.0204, 0.0091, 0.0085, 0.0071, 0.0071, 0.0066], [0.4727, 0.1354, 0.0821, 0.0725, 0.0302, 0.0251, 0.0221, 0.0208], [0.9024, 0.0577, 0.0114, 0.0069, 0.0054, 0.0054, 0.0015, 0.0012], [0.1349, 0.032, 0.0234, 0.0234, 0.022, 0.0194, 0.0183, 0.0183], [0.6542, 0.146, 0.0287, 0.0224, 0.0113, 0.0077, 0.0077, 0.0053], [0.5943, 0.1326, 0.0245, 0.0123, 0.009, 0.0085, 0.0058, 0.0055], [0.5841, 0.0698, 0.051, 0.0213, 0.0137, 0.0121, 0.0089, 0.0083], [0.2156, 0.1482, 0.0844, 0.0399, 0.0331, 0.0242, 0.0177, 0.0166], [0.0844, 0.0745, 0.07, 0.0481, 0.0399, 0.033, 0.0257, 0.0227], [0.2398, 0.1284, 0.1133, 0.0779, 0.0305, 0.0286, 0.0223, 0.0223], [0.2349, 0.0763, 0.0673, 0.0673, 0.0434, 0.0434, 0.0434, 0.0264], [0.1317, 0.0705, 0.0455, 0.0428, 0.0402, 0.0244, 0.0229, 0.019], [0.4904, 0.0355, 0.0179, 0.0148, 0.0102, 0.009, 0.0074, 0.007], [0.6309, 0.0131, 0.0123, 0.0102, 0.0096, 0.004, 0.0038, 0.0038], [0.9182, 0.0075, 0.0016, 0.0014, 0.0012, 0.0009, 0.0008, 0.0008], [0.7791, 0.0046, 0.0044, 0.0026, 0.0023, 0.0022, 0.0018, 0.0017], [0.9414, 0.0018, 0.0015, 0.0005, 0.0004, 0.0004, 0.0004, 0.0003], [0.3821, 0.0456, 0.0168, 0.0108, 0.0079, 0.0062, 0.0058, 0.0045], [0.2486, 0.0358, 0.014, 0.0116, 0.0062, 0.0062, 0.0055, 0.0048], [0.638, 0.0492, 0.0103, 0.0091, 0.0067, 0.0049, 0.0043, 0.0036], [0.9039, 0.0107, 0.0054, 0.002, 0.0019, 0.0016, 0.0016, 0.0014], [0.2256, 0.0368, 0.0368, 0.0253, 0.0154, 0.0127, 0.0127, 0.012], [0.7646, 0.0381, 0.0231, 0.0085, 0.0052, 0.0045, 0.0045, 0.0038], [0.8418, 0.0211, 0.0175, 0.0164, 0.0057, 0.0053, 0.0044, 0.0032], [0.2851, 0.1347, 0.1049, 0.032, 0.0301, 0.0234, 0.0151, 0.0133], [0.5034, 0.1055, 0.0302, 0.0183, 0.0104, 0.0092, 0.0056, 0.0053], [0.8227, 0.0142, 0.0125, 0.0104, 0.0041, 0.0038, 0.0032, 0.0023], [0.5783, 0.0306, 0.027, 0.0186, 0.0175, 0.0164, 0.0164, 0.0068], [0.3594, 0.0429, 0.0216, 0.0102, 0.009, 0.0075, 0.0048, 0.0048], [0.2535, 0.0284, 0.0236, 0.0111, 0.0111, 0.0077, 0.0063, 0.0056], [0.1063, 0.0882, 0.0324, 0.0185, 0.0112, 0.0082, 0.0072, 0.0072], [0.0704, 0.0259, 0.0157, 0.0148, 0.013, 0.0122, 0.0095, 0.009], [0.134, 0.0409, 0.0205, 0.0117, 0.0117, 0.0103, 0.0103, 0.0097], [0.0304, 0.0153, 0.0112, 0.0112, 0.0112, 0.0077, 0.0077, 0.0072], [0.0361, 0.0248, 0.0133, 0.0117, 0.0097, 0.0097, 0.0091, 0.0086], [0.0673, 0.0524, 0.0338, 0.0281, 0.017, 0.015, 0.0133, 0.0133], [0.0426, 0.0243, 0.0228, 0.0228, 0.0122, 0.0089, 0.0089, 0.0074], [0.037, 0.0307, 0.0254, 0.0154, 0.0145, 0.0128, 0.012, 0.0106], [0.0471, 0.0269, 0.0223, 0.0223, 0.0163, 0.0144, 0.0144, 0.0144], [0.0423, 0.031, 0.0227, 0.0213, 0.02, 0.0188, 0.0129, 0.0121], [0.0549, 0.0354, 0.0276, 0.0202, 0.019, 0.0178, 0.0178, 0.0157], [0.0729, 0.0729, 0.0533, 0.0367, 0.0285, 0.0252, 0.0252, 0.0222], [0.0718, 0.0675, 0.0494, 0.0319, 0.0264, 0.0193, 0.0182, 0.0133], [0.063, 0.0556, 0.0461, 0.0433, 0.0117, 0.0109, 0.0103, 0.0097], [0.1186, 0.0815, 0.0219, 0.0182, 0.0171, 0.0161, 0.0151, 0.0125], [0.2178, 0.1241, 0.0295, 0.019, 0.0168, 0.0123, 0.009, 0.009], [0.1977, 0.1539, 0.0222, 0.0152, 0.0112, 0.0072, 0.0064, 0.0049], [0.2685, 0.1437, 0.0412, 0.0266, 0.0076, 0.0076, 0.0063, 0.0056], [0.4552, 0.0743, 0.0227, 0.0101, 0.0074, 0.0069, 0.0051, 0.0051], [0.4232, 0.0446, 0.0198, 0.0198, 0.0128, 0.0113, 0.0093, 0.0088], [0.0883, 0.0687, 0.0503, 0.0305, 0.0253, 0.0185, 0.0174, 0.0135], [0.2787, 0.0584, 0.0427, 0.0401, 0.0333, 0.0276, 0.0157, 0.0148], [0.3799, 0.1398, 0.0293, 0.0214, 0.0189, 0.0189, 0.0147, 0.0138], [0.26, 0.058, 0.0512, 0.0512, 0.0512, 0.0452, 0.0352, 0.0257], [0.1058, 0.1058, 0.1058, 0.0642, 0.0642, 0.0603, 0.0567, 0.0236], [0.2854, 0.105, 0.0818, 0.0722, 0.0637, 0.0496, 0.0341, 0.0341], [0.1916, 0.1162, 0.1025, 0.0799, 0.0402, 0.0354, 0.0354, 0.0354], [0.2596, 0.2291, 0.1785, 0.0843, 0.0656, 0.0511, 0.0146, 0.0146], [0.5751, 0.1454, 0.0999, 0.0324, 0.0286, 0.0223, 0.0153, 0.0082], [0.512, 0.1467, 0.0612, 0.042, 0.0327, 0.0289, 0.0255, 0.0255], [0.8437, 0.042, 0.0327, 0.0136, 0.01, 0.0088, 0.0073, 0.0057], [0.971, 0.0139, 0.0031, 0.0026, 0.0016, 0.0011, 0.0005, 0.0005], [0.9994, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [53831, 76584, 41520, 87341, 46781, 40357, 51692, 69954, 92469, 66661, 40244, 65362, 48200, 55242, 48817, 47359, 33036, 42415, 45051, 48540, 38577, 49208, 45620, 25276, 18463, 12067, 12840, 10520, 7322, 9637, 8339, 9151, 7477, 9211, 9778, 4490, 3649, 3251, 3711, 5945, 3302, 3332, 2888, 4739, 7182, 5531, 4941, 5676, 4367, 5718, 12300, 19222, 4487, 4169, 4110, 1217, 178, 281, 273, 112, 61, 68, 73]}}, {"pos": 514, "top": [[".", ",", " \u2013", "\u00a0\u00a0", "\u00a0", " ", "\u2013", ";"], [" \u2013", "\u2013", " ", ".", " \u200b\u200b", "\u2013and", "  \n  \n", ","], ["\u2013", ",", ".", " \u2013", "\u2026", "\u2026.", "\u2026..", "\u2013and"], [" Shemale", " Blowjob", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **\u300c", " **\u25cb", " **:**", " \u00bb**", " **>>"], [" **#", " **\u201c", " (**", " **", " **\"", " **(", " (@", " ***"], [" **#", " **\u201c", " **\"", "(**", " **", " (**", " **\u20ac", "\u00a0\u00a0"], [" **#", " **\u201c", " **\"", " **", " **\u300c", " **\u3010", " **(", " (**"], [" **#", " **\u300c", " **\"", " **\u20ac", " **", " **\u201c", " **\u3010", " (**"], [" **#", " **\u20ac", " **\u300c", " **\u201c", " **\"", " (**", "(**", " **\u2018"], [" **#", " **\"", "\u2014\"", " **\u20ac", " **\u2013", " **\u2014", " Kontaktd", "(**"], [" **#", " **", "\u2014", "\u00a0", " _", "\u2014\"", "\u00a0\u00a0", " arguably"], [" **", " **#", " **\u300c", " **\"", " **\u20ac", " _", " **\u201c", " **\u00ab"], [" **", " **#", " **\u300c", " **\u20ac", " **\u00ab", " arguably", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **\""], [" arguably", " ostensibly", " largely", " similarly", " savvy", " thinly", " tweaked", " fanc"], [" arguably", " ostensibly", " largely", " aggressively", " typically", " similarly", " savvy", " akin"], [" arguably", " typically", " savvy", " touted", " largely", " sprawling", " aggressively", " swiftly"], [" arguably", " myriad", " typically", " savvy", " specifically", " largely", " potentially", " akin"], [" arguably", " **", " largely", " typically", " specifically", " myriad", " touted", " often"], [" arguably", " largely", " ostensibly", " myriad", " often", " touted", " ultimately", " aggressively"], [" arguably", " myriad", " largely", " ostensibly", " ultimately", " swiftly", " often", " broadly"], ["<|endoftext|>", " largely", " ultimately", " arguably", " often", " swiftly", " myriad", " ostensibly"], [" **", " arguably", " often", " ultimately", " largely", " seamlessly", " increasingly", " orchestrated"], [" ultimately", " often", " arguably", " largely", " eventually", " **", " increasingly", " typically"], [" often", " ultimately", " eventually", " largely", " quickly", " heavily", " increasingly", " typically"], [" often", " ultimately", " heavily", " largely", " arguably", " eventually", " typically", " alongside"], [" **", " often", " ultimately", " heavily", " complex", " largely", " eventually", " increasingly"], [" ultimately", " often", " heavily", " eventually", " complex", " ,", " arguably", " typically"], [" ,", " ultimately", "\n\n", " often", " '", " heavily", " largely", " eventually"], [" heavily", " ,", " often", " complex", " ultimately", " typically", " largely", " quickly"], [" complex", " \u2014", " ,", " often", " **", " \n\n", " heavily", " increasingly"], [" ,", " often", " complex", " in", " .", " heavily", " as", " **"], [" ,", " complex", " in", " \u2014", " often", " heavily", " as", " quickly"], [" heavily", " often", " ,", " complex", " over", " quickly", " rapidly", " \u2014"], [" heavily", " \u2014", " often", " typically", " aggressively", " inherently", " complex", " rapidly"], [" heavily", " aggressively", " inherently", " often", " rapidly", " typically", " notoriously", " quickly"], [" \u2014", " heavily", " \u201c", " inherently", " often", " notoriously", " \u2013", " aggressively"], [" heavily", " inherently", " often", " notoriously", " aggressively", " slower", " complex", " inefficient"], [" inherently", " often", " heavily", " quickly", " inefficient", " slower", " notoriously", " aggressively"], [" inherently", " heavily", " inefficient", " slower", " notoriously", " often", " complex", " inevitably"], [" inherently", " slower", " heavily", " inefficient", " notoriously", " unpredictable", " slow", " complex"], [" slower", " slow", " inherently", " heavily", " inefficient", " CPU", " complex", " unpredictable"], [" inherently", " slower", " CPU", " inefficient", " heavily", " slow", " software", " interacting"], [" inherently", " slower", " inefficient", " interacting", " CPU", " slow", " interoper", " software"], [" inherently", " inefficient", " slower", " notoriously", " slow", " heavily", " embedded", " CPU"], [" inherently", " inefficient", " notoriously", " incompatible", " typically", " inevitably", " slower", " often"], [" inherently", " inevitably", " notoriously", " typically", " often", " inefficient", " incompatible", " heavily"], [" inherently", " inevitably", " notoriously", " typically", " often", " likely", " inefficient", " incompatible"], [" inherently", " inevitably", " typically", " requires", " often", " usually", " notoriously", " likely"], [" inherently", " inevitably", " typically", " requires", " incompatible", " cannot", " likely", " notoriously"], [" inherently", " inevitably", " cannot", " requires", " typically", " incompatible", " invariably", " require"], [" inherently", " inevitably", " cannot", " requires", " incompatible", " will", " violates", " typically"], [" inherently", " requires", " inevitably", " cannot", " require", "requires", " requiring", " typically"], [" inherently", " inevitably", " cannot", " requires", " require", " requiring", " MUST", " will"], [" inherently", " cannot", " inevitably", " requires", "cannot", " will", " require", " must"], [" inherently", " cannot", " will", " requires", " MUST", " inevitably", " require", " must"], [" cannot", " inherently", " will", " require", " MUST", " requires", " must", " inevitably"], [" cannot", " inherently", " will", " require", " invoked", "cannot", " requires", " inevitably"], [" running", " executed", " executing", " invoked", "running", " cannot", " run", "-running"], [" running", " executed", " executing", " cannot", " run", " invoked", "running", " runs"], [" executed", " running", " executing", " cannot", " will", " introduced", " invoked", " introduce"], [" running", " introduce", " executed", " introduced", " executing", " introducing", " cannot", " will"], [" introduce", " running", " will", " cannot", " executed", " executing", " require", " introduced"], [" introduce", " running", " executed", " will", " cannot", " run", " executing", " require"]], "p": [[0.683, 0.0924, 0.0816, 0.0465, 0.041, 0.0151, 0.0081, 0.0052], [0.1195, 0.0302, 0.0143, 0.0092, 0.0052, 0.0044, 0.0041, 0.0041], [0.4242, 0.2573, 0.1377, 0.0574, 0.0395, 0.0225, 0.0145, 0.0113], [0.0388, 0.0195, 0.0143, 0.0143, 0.0126, 0.0038, 0.0038, 0.0036], [0.1909, 0.0426, 0.0115, 0.0061, 0.0045, 0.004, 0.0035, 0.0033], [0.0444, 0.0253, 0.0127, 0.0112, 0.0087, 0.0082, 0.0064, 0.0047], [0.1659, 0.1375, 0.1292, 0.1006, 0.0888, 0.0419, 0.0348, 0.0239], [0.3928, 0.1445, 0.0993, 0.0641, 0.0602, 0.0303, 0.0173, 0.0173], [0.3326, 0.1014, 0.0841, 0.051, 0.0256, 0.0188, 0.0176, 0.0129], [0.043, 0.0109, 0.0066, 0.0045, 0.0043, 0.0026, 0.0019, 0.0019], [0.1164, 0.0276, 0.0244, 0.0215, 0.0179, 0.0148, 0.0123, 0.0123], [0.4518, 0.3519, 0.0155, 0.0078, 0.0069, 0.005, 0.0034, 0.0027], [0.2633, 0.0314, 0.0131, 0.0085, 0.0075, 0.0058, 0.0055, 0.0048], [0.031, 0.0065, 0.0061, 0.0045, 0.0042, 0.0033, 0.0029, 0.0029], [0.1172, 0.0159, 0.0149, 0.009, 0.009, 0.0058, 0.0058, 0.0055], [0.0489, 0.0159, 0.0149, 0.0124, 0.0109, 0.009, 0.008, 0.0052], [0.1021, 0.0275, 0.0214, 0.0214, 0.0177, 0.0167, 0.0167, 0.0157], [0.0916, 0.0629, 0.0169, 0.0159, 0.0159, 0.014, 0.0116, 0.0109], [0.1913, 0.0401, 0.0312, 0.0293, 0.0167, 0.0148, 0.013, 0.0115], [0.1316, 0.0515, 0.0427, 0.0294, 0.0215, 0.0215, 0.0178, 0.0157], [0.5854, 0.0138, 0.0107, 0.0095, 0.0084, 0.0084, 0.0074, 0.0057], [0.0473, 0.0197, 0.0127, 0.0112, 0.0064, 0.0064, 0.0064, 0.0047], [0.0433, 0.0337, 0.0297, 0.018, 0.0159, 0.0141, 0.0132, 0.0109], [0.0573, 0.0475, 0.0271, 0.0254, 0.0128, 0.0128, 0.0128, 0.0106], [0.0503, 0.0503, 0.0237, 0.0223, 0.0197, 0.0174, 0.0127, 0.0105], [0.0349, 0.0308, 0.0289, 0.024, 0.0128, 0.0121, 0.0121, 0.0121], [0.0353, 0.0243, 0.0178, 0.0167, 0.0138, 0.0095, 0.0095, 0.0095], [0.052, 0.0231, 0.0217, 0.0191, 0.0169, 0.0169, 0.0149, 0.014], [0.0356, 0.0277, 0.0245, 0.0158, 0.0148, 0.0131, 0.0131, 0.0109], [0.0373, 0.0351, 0.033, 0.031, 0.0291, 0.0257, 0.0188, 0.0114], [0.0587, 0.0356, 0.0335, 0.0191, 0.0191, 0.0148, 0.0123, 0.0116], [0.0341, 0.0321, 0.025, 0.0235, 0.022, 0.0207, 0.0183, 0.0134], [0.034, 0.032, 0.032, 0.03, 0.0118, 0.011, 0.0104, 0.0104], [0.058, 0.0452, 0.0311, 0.0201, 0.0188, 0.0166, 0.0166, 0.0138], [0.0731, 0.057, 0.0325, 0.0305, 0.0269, 0.0163, 0.0144, 0.0127], [0.1695, 0.0486, 0.0314, 0.0295, 0.0277, 0.0229, 0.0202, 0.019], [0.0704, 0.0455, 0.0354, 0.0333, 0.0333, 0.0229, 0.0215, 0.0189], [0.0642, 0.05, 0.047, 0.0236, 0.0222, 0.0208, 0.0208, 0.0196], [0.0703, 0.0426, 0.04, 0.0376, 0.0243, 0.0214, 0.0201, 0.0167], [0.1042, 0.0462, 0.0263, 0.0247, 0.0218, 0.0193, 0.0181, 0.016], [0.0881, 0.0605, 0.0345, 0.0252, 0.0163, 0.0153, 0.0127, 0.0127], [0.0464, 0.0362, 0.0265, 0.0219, 0.0194, 0.0194, 0.0182, 0.0171], [0.0646, 0.0368, 0.0269, 0.021, 0.0163, 0.0144, 0.0144, 0.0144], [0.0833, 0.0538, 0.0326, 0.0211, 0.0198, 0.0145, 0.0136, 0.0113], [0.1507, 0.0758, 0.0358, 0.018, 0.018, 0.0169, 0.0169, 0.014], [0.2884, 0.0643, 0.0501, 0.0471, 0.0367, 0.0304, 0.0127, 0.0119], [0.432, 0.1092, 0.0428, 0.0355, 0.0244, 0.0108, 0.0095, 0.009], [0.6379, 0.0863, 0.0863, 0.0218, 0.0218, 0.0132, 0.0071, 0.0071], [0.6449, 0.0989, 0.0412, 0.0183, 0.0142, 0.0111, 0.0056, 0.0046], [0.6493, 0.1449, 0.0252, 0.0209, 0.0173, 0.0105, 0.0087, 0.005], [0.6445, 0.1269, 0.077, 0.0321, 0.0052, 0.0041, 0.0034, 0.0032], [0.3476, 0.2389, 0.1642, 0.0776, 0.0252, 0.0173, 0.0087, 0.0077], [0.9429, 0.0196, 0.0173, 0.0082, 0.0011, 0.0006, 0.0005, 0.0005], [0.7913, 0.1375, 0.0211, 0.0164, 0.0032, 0.0032, 0.0024, 0.002], [0.3997, 0.3113, 0.1298, 0.0328, 0.0256, 0.0256, 0.0155, 0.0137], [0.4021, 0.2764, 0.1305, 0.048, 0.0257, 0.02, 0.0156, 0.0095], [0.4963, 0.2345, 0.0761, 0.0462, 0.0132, 0.0117, 0.0117, 0.0091], [0.6502, 0.2111, 0.0777, 0.0105, 0.0082, 0.005, 0.0044, 0.0039], [0.7523, 0.1481, 0.0331, 0.0107, 0.0095, 0.0095, 0.0074, 0.0031], [0.3648, 0.3219, 0.0922, 0.0718, 0.0494, 0.016, 0.011, 0.0097], [0.4398, 0.1833, 0.0866, 0.0764, 0.0595, 0.0464, 0.0319, 0.0319], [0.4168, 0.2528, 0.1353, 0.0821, 0.0342, 0.0183, 0.0111, 0.0098], [0.3963, 0.1652, 0.1458, 0.1135, 0.0473, 0.0287, 0.0224, 0.0224]], "ranks": {"Rust": [51207, 65907, 68914, 53399, 18851, 28157, 49336, 51354, 48043, 42701, 30797, 58374, 45606, 45590, 50239, 32057, 32931, 78396, 89823, 56580, 49438, 88724, 82126, 39447, 35400, 43670, 23932, 12357, 10230, 11828, 11820, 11182, 8815, 10313, 9454, 9810, 5711, 4662, 3351, 4144, 3673, 3156, 3802, 4932, 3671, 3815, 3805, 4095, 1951, 2049, 3728, 5382, 8075, 13671, 9017, 13495, 4115, 3031, 1972, 1307, 726, 716, 859]}}, {"pos": 515, "top": [["s", " \u2013", "\u2013", ",", ".", "\u2013and", "t", "y"], ["s", " \u2013", "\u2013", "\u2013and", "sWith", "\u0627\u062a", " \u2013**", " \u2013,"], ["s", "\u2013", " \u2013", "\u2013and", ",", ".\u2013", " \u2013,", "\u2013\u2013"], ["s", "sWith", "sprozess", "\u0627\u062a", "\u6700\u65b0\u53d1\u5e03", "scha", "schrift", "sii"], ["s", "\u0627\u062a", "sWith", "sche", "\u2013and", "en", "er", "sense"], ["s", "sWith", "\u0627\u062a", "\u2013and", "sver", "\u2013", "sche", "sand"], ["s", "\u0627\u062a", "t", "   \n", "**", "sand", "saf", "......"], ["s", "\u0627\u062a", "sWith", "   \n", " '**", "sburg", " **", "saf"], ["s", "   \n\n", "\u2013and", "   \n", "......", "    \n\n", " [...]", "#####"], ["s", "\u2013and", "\u2013", "\u2013\u2013", "sWith", "\u0627\u062a", " **\u2013", ","], ["s", "\u2013", "\u2013and", " \u2013", " [\u2026]", " [...]", "l", "t"], ["s", " **", "\u0627\u062a", "\u2013and", "sWith", " '**", " **\u2013", " **'"], ["s", "\u2013and", " **", "\u0627\u062a", "sWith", " '**", " **\u2013", "sste"], ["s", "sWith", "\u2013and", "\u0627\u062a", "sste", "sii", "sburg", " '**"], ["s", "\u2013and", " hopefully", " --", "\u0627\u062a", "sWith", " `", " arguably"], ["s", " ultimately", " quickly", " arguably", " eventually", " incredibly", "\u0627\u062a", " showcase"], ["s", " incredibly", "\u2013and", " ultimately", " arguably", "\u2013", "\u0627\u062a", " likely"], ["s", "\u2013and", "\u2013", " incredibly", "   \n\n", " **", " \u2013", "\u0627\u062a"], ["s", " incredibly", " aggressively", "\u0627\u062a", " arguably", " touted", "\u2013and", " drastically"], ["s", "<|endoftext|>", "\u2013and", "  \n\n", " incredibly", " ultimately", " arguably", " dramatically"], ["<|endoftext|>", "s", "  \n\n", " \n\n", "\n\n", "   \n\n", " ultimately", " swiftly"], ["s", " incredibly", " ultimately", " aggressively", " **", " drastically", " overwhelmingly", " dramatically"], ["s", " ultimately", " incredibly", " eventually", " drastically", " dramatically", " aggressively", " much"], ["s", " ultimately", " eventually", "<|endoftext|>", " much", " dramatically", " incredibly", " drastically"], [" \n\n", "  \n\n", "\n\n", " \r\n\r\n", "\r\n\r\n", "   \n\n", "s", "    \n\n"], [" **", " \r\n\r\n", " \n\n", "\r\n\r\n", " incredibly", " drastically", " **'", "  \n\n"], ["\n\n", " \n\n", " **", "\r\n\r\n", " \r\n\r\n", " aggressively", " ultimately", "s"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", "<|endoftext|>", " **", "   \n\n"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", "   \n\n", " \r\n\r\n", " **", "<|endoftext|>"], [" \n\n", "  \n\n", " **", "\n\n", "   \n\n", " \r\n\r\n", " heavily", " ..."], [" \n\n", " **", "\n\n", " ...", "  \n\n", " heavily", " aggressively", " likely"], [" **", " heavily", " quickly", " aggressively", " dramatically", " incredibly", " eventually", " rapidly"], [" heavily", " aggressively", " rapidly", " dramatically", " drastically", " quickly", " ultimately", " inevitably"], [" aggressively", " heavily", " drastically", " dramatically", " massively", " incredibly", " rapidly", " vastly"], [" aggressively", " heavily", " drastically", " massively", " rapidly", " inevitably", " dramatically", " incredibly"], [" aggressively", " inevitably", " heavily", " notoriously", " rapidly", " incredibly", " dramatically", " massively"], [" aggressively", " inevitably", " heavily", " notoriously", " rapidly", " inefficient", " slow", " unpredictable"], [" aggressively", " rapidly", " inevitably", " slow", " slower", " inefficient", " heavily", " quickly"], [" slow", " inefficient", " slower", " sluggish", " aggressively", " rapidly", " inevitably", " bottleneck"], [" slow", " slower", " sluggish", " inefficient", " unpredictable", " inevitably", " bottleneck", " rapidly"], [" slow", " slower", " sluggish", " slowing", " slowdown", " slowed", " bottleneck", " inefficient"], [" slow", " slower", " sluggish", " slowing", " slowdown", " bottleneck", " inefficient", " slowed"], [" slow", " inefficient", " sluggish", " slower", " bottleneck", " slowing", " slowdown", " slowed"], [" slow", " bottleneck", " inefficient", " slower", " slowing", " sluggish", " slowdown", " crashes"], [" bottleneck", " inefficient", " slow", " inevitably", " slower", " unpredictable", " slowing", " crashes"], [" inevitably", " bottleneck", " inefficient", " unpredictable", " inevitable", " slow", " sluggish", " crashes"], [" inevitably", " inevitable", " bottleneck", " unpredictable", " unavoidable", " inefficient", " disrupt", " crashes"], [" inevitably", " inevitable", " bottleneck", " disrupt", " crashes", " unavoidable", " unpredictable", " bursts"], [" inevitably", " inevitable", " bottleneck", " disrupt", " unavoidable", " bursts", " crashes", " disrupting"], [" inevitably", " bottleneck", " disrupt", " inevitable", " crashes", " unavoidable", " instantly", " destabil"], [" inevitably", "\u4e0d\u53ef\u907f\u514d\u5730", " bottleneck", " inevitable", " disrupt", " unavoidable", "\u4e0d\u53ef\u907f\u514d", " inherently"], [" inevitably", " bottleneck", "\u4e0d\u53ef\u907f\u514d\u5730", " inevitable", " disrupt", " inherently", " crashes", " inevit"], [" inevitably", " bottleneck", "\u4e0d\u53ef\u907f\u514d\u5730", " inherently", " disrupt", " bott", " inevitable", " crashes"], [" inevitably", " bottleneck", "\u4e0d\u53ef\u907f\u514d\u5730", " inherently", " inevitable", " bott", " inevit", " unavoid"], [" inevitably", " bottleneck", "\u4e0d\u53ef\u907f\u514d\u5730", " inevitable", " inevit", " unavoid", " unavoidable", "\u4e0d\u53ef\u907f\u514d"], [" inevitably", " bottleneck", " deadlock", "\u4e0d\u53ef\u907f\u514d\u5730", " unavoid", " thread", "-thread", " choking"], [" inevitably", " inevitable", " bottleneck", "\u4e0d\u53ef\u907f\u514d\u5730", " deadlock", " unavoid", " inevit", " unavoidable"], [" inevitably", " execute", " inevitable", "\u4e0d\u53ef\u907f\u514d\u5730", " deadlock", " bottleneck", " run", " running"], [" blocking", " inevitably", "\u963b\u585e", " bottleneck", " deadlock", " choking", "Blocking", " Blocking"], [" execute", " inevitably", " blocking", " deadlock", " garbage", " crash", " allocate", " destroy"], [" execute", " introduce", " inevitably", " run", " garbage", " allocate", " destroy", " deadlock"], [" execute", " introduce", " run", " inevitably", " allocate", " deadlock", " invoke", " destroy"], [" block", " execute", " run", " introduce", " inevitably", " allocate", " destroy", " crash"]], "p": [[0.9939, 0.0046, 0.0013, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9941, 0.0036, 0.0012, 0.0004, 0.0001, 0.0, 0.0, 0.0], [0.5062, 0.3479, 0.128, 0.0153, 0.0014, 0.0004, 0.0002, 0.0001], [0.1523, 0.0319, 0.0142, 0.0117, 0.011, 0.0097, 0.0086, 0.0081], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9958, 0.001, 0.0007, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001], [0.9837, 0.0052, 0.0018, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9972, 0.0013, 0.0005, 0.0004, 0.0002, 0.0001, 0.0, 0.0], [0.997, 0.0007, 0.0002, 0.0002, 0.0001, 0.0001, 0.0, 0.0], [0.9948, 0.001, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.9218, 0.0023, 0.0016, 0.0014, 0.0011, 0.0005, 0.0004, 0.0004], [0.9672, 0.0009, 0.0006, 0.0004, 0.0003, 0.0003, 0.0002, 0.0002], [0.9933, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9966, 0.0002, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.986, 0.002, 0.0007, 0.0005, 0.0004, 0.0003, 0.0003, 0.0003], [0.9835, 0.0007, 0.0005, 0.0004, 0.0003, 0.0002, 0.0002, 0.0002], [0.7925, 0.0047, 0.0042, 0.0039, 0.0037, 0.0034, 0.003, 0.003], [0.8224, 0.0409, 0.0117, 0.011, 0.0043, 0.0028, 0.002, 0.0017], [0.086, 0.0316, 0.0192, 0.0169, 0.0149, 0.0124, 0.0091, 0.008], [0.1108, 0.036, 0.0247, 0.016, 0.016, 0.016, 0.016, 0.0103], [0.0967, 0.0457, 0.0295, 0.0277, 0.0244, 0.0158, 0.0158, 0.0108], [0.3299, 0.1375, 0.1071, 0.1071, 0.0691, 0.0538, 0.0128, 0.0057], [0.2643, 0.0405, 0.0297, 0.0191, 0.018, 0.0124, 0.0124, 0.0124], [0.2001, 0.0834, 0.065, 0.0539, 0.0288, 0.0145, 0.0145, 0.0145], [0.8213, 0.1112, 0.0206, 0.0059, 0.0028, 0.002, 0.0018, 0.0017], [0.6517, 0.2397, 0.0606, 0.0064, 0.0044, 0.0044, 0.0032, 0.0015], [0.5104, 0.1139, 0.0887, 0.0783, 0.012, 0.0113, 0.0106, 0.01], [0.2134, 0.2134, 0.1073, 0.0693, 0.042, 0.0186, 0.0136, 0.012], [0.2586, 0.0614, 0.0187, 0.0187, 0.0176, 0.0176, 0.0155, 0.0146], [0.0519, 0.0296, 0.0245, 0.0216, 0.0179, 0.0179, 0.0149, 0.014], [0.078, 0.0647, 0.0418, 0.0325, 0.027, 0.0253, 0.0238, 0.0223], [0.0939, 0.0368, 0.0237, 0.0237, 0.0237, 0.0209, 0.0209, 0.0174], [0.0818, 0.0466, 0.0438, 0.0301, 0.0266, 0.0234, 0.0207, 0.0183], [0.0739, 0.0652, 0.0349, 0.0308, 0.0272, 0.0256, 0.0212, 0.0199], [0.0617, 0.0511, 0.0424, 0.031, 0.031, 0.0274, 0.0257, 0.0257], [0.059, 0.052, 0.0459, 0.0431, 0.0358, 0.0336, 0.0336, 0.0204], [0.0951, 0.0839, 0.074, 0.0449, 0.0396, 0.0309, 0.0256, 0.0226], [0.2865, 0.1353, 0.1054, 0.0564, 0.0439, 0.0364, 0.0321, 0.0235], [0.1326, 0.0911, 0.0911, 0.0626, 0.0553, 0.0488, 0.0488, 0.0335], [0.08, 0.0706, 0.0623, 0.0623, 0.0585, 0.0355, 0.0244, 0.0157], [0.0805, 0.0805, 0.0589, 0.0488, 0.0405, 0.0357, 0.0261, 0.0158], [0.0737, 0.0692, 0.0476, 0.0289, 0.0271, 0.0255, 0.0211, 0.0155], [0.1471, 0.0372, 0.035, 0.035, 0.0328, 0.0165, 0.0121, 0.0121], [0.282, 0.0974, 0.0555, 0.0231, 0.018, 0.0132, 0.0109, 0.0103], [0.3502, 0.0832, 0.0504, 0.021, 0.0186, 0.0186, 0.0145, 0.012], [0.3173, 0.0665, 0.0429, 0.0216, 0.0203, 0.0168, 0.0158, 0.0096], [0.3465, 0.0993, 0.0365, 0.0303, 0.0134, 0.0111, 0.0111, 0.0111], [0.3833, 0.0588, 0.0519, 0.0315, 0.0203, 0.009, 0.009, 0.0085], [0.6562, 0.061, 0.0327, 0.0186, 0.0136, 0.0064, 0.0064, 0.006], [0.5553, 0.1803, 0.0244, 0.0168, 0.0096, 0.0096, 0.009, 0.0062], [0.4627, 0.2186, 0.0191, 0.0123, 0.0116, 0.009, 0.0062, 0.0062], [0.686, 0.0638, 0.0387, 0.0195, 0.0118, 0.0086, 0.0081, 0.0072], [0.5146, 0.0542, 0.0256, 0.0187, 0.0146, 0.0129, 0.0114, 0.0114], [0.6842, 0.0341, 0.0341, 0.0301, 0.0161, 0.0161, 0.0142, 0.0111], [0.4968, 0.0593, 0.0298, 0.0247, 0.0232, 0.0193, 0.017, 0.015], [0.2021, 0.1784, 0.0743, 0.0656, 0.0511, 0.0227, 0.0227, 0.0188], [0.2377, 0.1272, 0.0725, 0.0342, 0.0342, 0.0302, 0.0208, 0.0208], [0.3338, 0.1577, 0.1084, 0.0274, 0.0257, 0.0147, 0.0138, 0.0129], [0.506, 0.1061, 0.0604, 0.0344, 0.0237, 0.0127, 0.0119, 0.0119], [0.3861, 0.161, 0.0976, 0.063, 0.0247, 0.0205, 0.0141, 0.0132]], "ranks": {"Rust": [22387, 68749, 37635, 39140, 25021, 23125, 27158, 17524, 19828, 23088, 18766, 26797, 13864, 19429, 15627, 9432, 14386, 21849, 26557, 24114, 30390, 30825, 17933, 9080, 7492, 9157, 4442, 3587, 2967, 3196, 3945, 4613, 4520, 6343, 5262, 6882, 4357, 4961, 2534, 2139, 2311, 2096, 2800, 3512, 2216, 2222, 2565, 2741, 1594, 1567, 2892, 5736, 6949, 19240, 12461, 12114, 3975, 3609, 1830, 1559, 1038, 1018, 916]}}, {"pos": 516, "top": [[".", ",", ";", "o", "er", "-", "a", "\u00a0"], [",", ".", ";", "\u2013", "er", " Run", "\u2013and", ",."], [",", ".", "\u2013", ";", "\u2026", ",.", ":", ".."], ["runner", "nable", "ners", "aruhi", "\ufffd\ufffd", " Fonse", " Guta", " Geile"], [",", "er", ".", "ar", "log", "back", "na", "ners"], [",", ".", "log", "back", "run", "fst", "ners", "er"], ["run", "er", "ners", "track", "**.", "ably", "tracked", "won"], ["ners", "run", "ner", "nable", "er", ".Run", "ning", "(run"], ["ners", "er", "**.", "run", "athon", "    \n", ".", " \n    \n"], [",", "er", "--", "run", "\u00ading", "ably", "ners", "nings"], ["er", "--", "ably", "ning", ",", "back", "tr", "run"], [" **", "er", " **>>", " **'", " '**", "ners", "ning", "nings"], ["er", " **", "ners", " **>>", "ning", "nings", "ingly", " '**"], ["er", "nings", "tracks", "\u5c31\u8dd1", "ners", "aways", "ingly", "back"], ["er", " smack", " wildly", " mostly", "ably", "tracks", "back", " aggressively"], ["er", " wildly", " mostly", " across", " tough", " back", " much", " aggressively"], [" wildly", "er", " mostly", " incredibly", " tough", " smack", " much", " bigger"], [" wildly", "er", "outs", "aways", " tougher", "back", " smack", " bigger"], [" wildly", " smack", "aways", " incredibly", " aggressively", "tracks", "-esque", " RuntimeObject"], [" wildly", "much", " smack", " hugely", " incredibly", " aggressively", " much", "ably"], ["much", " wildly", "though", " much", " though", " hugely", " swiftly", " just"], [" wildly", " RuntimeObject", "aways", "\u5c31\u8dd1", "\u6da6\u53d1", " smack", " incredibly", "avirus"], [" wildly", " across", " incredibly", " much", " ``", " aggressively", " smack", " atop"], [" wildly", " much", " across", " heavily", " --", " mostly", "much", " aggressively"], [" wildly", "much", " --", " much", " heavily", " hugely", " across", " vastly"], [" **", " wildly", " **'", " **>>", " incredibly", " '**", "avirus", " multit"], [" **", " wildly", " ``", " multit", " aggressively", " onstage", " heavily", " unpredictable"], [" **", " much", " wildly", " heavily", " --", " '", " aggressively", " over"], [" **", " wildly", " heavily", " aggressively", " multit", " much", " unpredictable", " faster"], [" **", " ____", " **:", " ___", " **'", " __", " **.", " .**"], [" **", " heavily", " wildly", " much", " ____", " aggressively", " complex", " on"], [" **", " heavily", " on", " much", " live", " complex", " wildly", " outside"], [" much", " heavily", " **", " wildly", " on", " over", " mostly", " aggressively"], [" heavily", " aggressively", " **", " wildly", " unpredictable", " incredibly", " massively", " chaotic"], [" heavily", " aggressively", " **", " wildly", " incredibly", " unpredictable", " massively", " chaotic"], [" **", " wildly", " heavily", " aggressively", " unpredictable", " multit", " incredibly", " .**"], [" slower", " wildly", " heavily", " **", " unpredictable", " aggressively", " chaotic", " incredibly"], [" slower", " wildly", " unpredictable", " concurrently", " heavily", " incredibly", " aggressively", " inefficient"], [" slower", " faster", " inefficient", " unpredictable", " run", " wildly", " CPU", " heavily"], [" slower", " unpredictable", " CPU", " faster", " independently", " slow", " wildly", " inefficient"], [" slower", " CPU", " slow", " faster", " threads", " runtime", " speed", " fast"], [" slower", " asynchronously", " CPU", " threads", " concurrently", " runtime", " asynchronous", " faster"], [" slower", " asynchronously", " CPU", " runtime", " concurrently", " asynchronous", " threads", " engines"], [" asynchronously", " concurrently", " slower", " CPU", " threads", " asynchronous", " unsafe", " outside"], [" separate", " concurrently", " asynchronously", " slower", " outside", " CPU", " unsafe", " inefficient"], [" concurrently", " outside", " separate", " unsafe", " inefficient", " dangerously", " asynchronously", " inherently"], [" either", "\u8981\u4e48", " EITHER", " concurrently", " anywhere", " inherently", " potentially", "either"], [" either", "\u8981\u4e48", " EITHER", "either", "\u8981\u4e48\u662f", " inevitably", " inherently", " anywhere"], [" either", "\u8981\u4e48", "\u8981\u4e48\u662f", " EITHER", " \u0625\u0645\u0627", "either", " entweder", "Either"], ["\u8981\u4e48", " either", "\u8981\u4e48\u662f", " EITHER", " \u0625\u0645\u0627", "either", "ynchronously", "Either"], ["\u8981\u4e48", "ynchronously", " \u0625\u0645\u0627", "\u8981\u4e48\u662f", " EITHER", " asynchronously", " inefficient", "_cpu"], [" asynchronously", "ynchronously", " slower", "\u8981\u4e48", "\u5f02\u6b65", " sluggish", " EITHER", " inefficient"], [" asynchronously", " slower", "ynchronously", " inefficient", "\u5f02\u6b65", " asynchronous", " sluggish", " concurrently"], [" asynchronously", " threads", "ynchronously", " concurrently", " slower", "\u591a\u7ebf\u7a0b", " unpredict", "threads"], [" threads", " asynchronously", "ynchronously", "\u591a\u7ebf\u7a0b", " thread", "threads", "\u7ebf\u7a0b", "-thread"], [" asynchronously", " threads", "ynchronously", "-thread", " thread", "\u7ebf\u7a0b", " threading", " Python"], [" threads", " asynchronously", " slower", " Python", " thread", "-thread", " threading", "Python"], [" slower", " threads", " interpreter", "Interpreter", " Python", "interpreter", " slow", " asynchronously"], [" interpreter", "interpreter", "Interpreter", " interpreted", " interpre", " slower", " interpret", " Interpreter"], [" interpreter", " interpreted", " interpre", "interpreter", " synchron", " synchronous", " slower", " asynchronously"], [" off", " interpreted", " slower", " interpreter", " asynchronously", " interpre", " synchron", " synchronous"], [" off", " on", " asynchronously", " synchron", " slower", " interpreted", " blocking", " synchronous"], [" on", " off", " synchron", " slower", " asynchronously", " in", " unpredict", " slow"]], "p": [[0.7448, 0.2418, 0.0025, 0.0018, 0.0015, 0.0008, 0.0008, 0.0005], [0.4054, 0.2618, 0.019, 0.019, 0.0037, 0.0027, 0.002, 0.002], [0.7809, 0.1974, 0.0143, 0.0036, 0.0005, 0.0002, 0.0002, 0.0002], [0.0042, 0.0021, 0.002, 0.0015, 0.0012, 0.0009, 0.0009, 0.0009], [0.0781, 0.0306, 0.0224, 0.0099, 0.0068, 0.006, 0.005, 0.0039], [0.0062, 0.0051, 0.004, 0.0035, 0.0029, 0.0029, 0.0024, 0.0021], [0.0269, 0.0269, 0.0144, 0.0099, 0.0068, 0.0064, 0.0064, 0.0064], [0.0329, 0.0121, 0.0073, 0.0065, 0.0061, 0.0039, 0.0037, 0.0035], [0.0188, 0.0138, 0.013, 0.0122, 0.0101, 0.0101, 0.0095, 0.0089], [0.0152, 0.0105, 0.0087, 0.0056, 0.0041, 0.0038, 0.0034, 0.0026], [0.2706, 0.0268, 0.0135, 0.0119, 0.0087, 0.0077, 0.0077, 0.0064], [0.0829, 0.0223, 0.0127, 0.0082, 0.0072, 0.0053, 0.0041, 0.0039], [0.1225, 0.0273, 0.0107, 0.0078, 0.0048, 0.0048, 0.0048, 0.0045], [0.0391, 0.0041, 0.0036, 0.0034, 0.0032, 0.003, 0.0023, 0.0021], [0.0308, 0.0069, 0.0057, 0.0054, 0.0044, 0.0039, 0.0039, 0.0033], [0.0203, 0.0168, 0.0102, 0.0045, 0.0042, 0.004, 0.0037, 0.0035], [0.0243, 0.0202, 0.0089, 0.0062, 0.0058, 0.0054, 0.0048, 0.0045], [0.0098, 0.006, 0.0039, 0.0032, 0.003, 0.003, 0.003, 0.003], [0.0177, 0.0083, 0.0057, 0.0042, 0.0039, 0.0037, 0.0035, 0.0033], [0.051, 0.0146, 0.0094, 0.0078, 0.0057, 0.0047, 0.0047, 0.0037], [0.0226, 0.0212, 0.0199, 0.0187, 0.0129, 0.0083, 0.0073, 0.0065], [0.0077, 0.005, 0.003, 0.0028, 0.0027, 0.0024, 0.0021, 0.002], [0.019, 0.0045, 0.0042, 0.0042, 0.004, 0.0037, 0.0033, 0.0031], [0.0249, 0.0219, 0.0104, 0.0081, 0.0071, 0.0059, 0.0052, 0.0046], [0.0256, 0.01, 0.0088, 0.0061, 0.005, 0.005, 0.0047, 0.0044], [0.0405, 0.0245, 0.0096, 0.0055, 0.004, 0.0038, 0.0038, 0.0029], [0.019, 0.0148, 0.0051, 0.0045, 0.004, 0.0037, 0.0033, 0.0029], [0.0397, 0.0291, 0.0273, 0.0213, 0.0166, 0.0094, 0.0069, 0.0069], [0.1202, 0.0286, 0.0163, 0.0099, 0.0093, 0.0093, 0.0072, 0.006], [0.6853, 0.0363, 0.0092, 0.0092, 0.0067, 0.0059, 0.0041, 0.0041], [0.4045, 0.013, 0.0108, 0.0108, 0.0101, 0.0089, 0.0084, 0.0079], [0.2304, 0.0201, 0.0189, 0.0157, 0.0115, 0.0115, 0.0095, 0.0095], [0.0358, 0.0358, 0.0316, 0.0192, 0.0169, 0.0159, 0.0149, 0.0132], [0.0634, 0.0436, 0.0385, 0.0339, 0.0233, 0.0219, 0.0097, 0.0081], [0.0489, 0.0489, 0.0381, 0.0316, 0.0169, 0.014, 0.0075, 0.007], [0.0388, 0.0322, 0.0221, 0.0152, 0.0134, 0.0118, 0.0111, 0.0098], [0.0485, 0.0428, 0.0313, 0.026, 0.026, 0.0229, 0.0131, 0.0131], [0.0286, 0.0185, 0.0185, 0.0174, 0.0163, 0.0153, 0.0144, 0.0127], [0.0714, 0.0218, 0.017, 0.0159, 0.015, 0.0141, 0.0141, 0.0132], [0.1065, 0.0325, 0.0238, 0.0185, 0.0144, 0.0135, 0.0135, 0.0127], [0.1835, 0.0765, 0.0361, 0.0281, 0.0248, 0.0233, 0.0171, 0.0141], [0.0739, 0.0694, 0.0652, 0.0421, 0.0328, 0.0328, 0.024, 0.0155], [0.0604, 0.0442, 0.0415, 0.0285, 0.0285, 0.0285, 0.0252, 0.0162], [0.0658, 0.0512, 0.0452, 0.0399, 0.0242, 0.0242, 0.0201, 0.0189], [0.0857, 0.0668, 0.0405, 0.0261, 0.0246, 0.0231, 0.0217, 0.0204], [0.0641, 0.0414, 0.0365, 0.0251, 0.0208, 0.0208, 0.0184, 0.0184], [0.5183, 0.0546, 0.0242, 0.0214, 0.0167, 0.0167, 0.0147, 0.0138], [0.7392, 0.0779, 0.0269, 0.021, 0.0093, 0.0087, 0.0077, 0.0068], [0.4618, 0.1699, 0.0708, 0.0625, 0.0404, 0.0404, 0.009, 0.0045], [0.1658, 0.114, 0.0783, 0.0736, 0.0419, 0.0288, 0.0128, 0.0106], [0.0582, 0.0425, 0.0292, 0.0228, 0.0214, 0.0189, 0.0095, 0.0089], [0.1839, 0.1345, 0.034, 0.0182, 0.0171, 0.0161, 0.0151, 0.0125], [0.2504, 0.221, 0.0813, 0.017, 0.017, 0.0133, 0.0103, 0.0091], [0.3066, 0.1448, 0.0775, 0.0252, 0.0222, 0.0222, 0.0184, 0.0184], [0.3758, 0.1567, 0.0653, 0.0309, 0.024, 0.024, 0.0226, 0.0199], [0.308, 0.2399, 0.0606, 0.0286, 0.0253, 0.0223, 0.0163, 0.0135], [0.2576, 0.0948, 0.0738, 0.0738, 0.0349, 0.0327, 0.0327, 0.0289], [0.3734, 0.0833, 0.0735, 0.0505, 0.0394, 0.0288, 0.027, 0.0254], [0.6041, 0.1731, 0.105, 0.0438, 0.0301, 0.0059, 0.0059, 0.0046], [0.4332, 0.1407, 0.0753, 0.0517, 0.0356, 0.0277, 0.0277, 0.0244], [0.119, 0.119, 0.105, 0.0927, 0.0768, 0.0598, 0.0562, 0.0386], [0.2957, 0.2609, 0.0702, 0.0514, 0.0483, 0.0228, 0.0167, 0.013], [0.6076, 0.0932, 0.0565, 0.0565, 0.0531, 0.0098, 0.0087, 0.0076]], "ranks": {"Rust": [40782, 38951, 19994, 21994, 8880, 8650, 10588, 13343, 14690, 25642, 22707, 25848, 14445, 22104, 44471, 27383, 34510, 52108, 85653, 72127, 52825, 83380, 75999, 42836, 53537, 68985, 56520, 16640, 12536, 18493, 11137, 12058, 14198, 34636, 35288, 11236, 3392, 1836, 2834, 4887, 2320, 2156, 4551, 4150, 4782, 4938, 10933, 9699, 20679, 10569, 24564, 30610, 10661, 4572, 2034, 1802, 208, 180, 72, 74, 39, 37, 62]}}, {"pos": 517, "top": [[",", ".", ";", "\u2013", "\u2026..", " \u2013", ":", "?"], [",", "\u2013", ".", ";", " \u2013", "\u2013and", "\u200b", " \u200b\u200b"], [",", ".", "\u2013", ";", "\u2026..", ":", " \u2013", "\u2013and"], ["\ufffd\ufffd", "\ufffd\ufffd", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Geile", " addir", " Pubbl", " \u041a\u0440\u0430\u0441\u0438", "matchCondition"], [",", " \u200b\u200b", ".@", ":@", "@", "ed", "ess", "&A"], [",", ".argv", "&A", " \u00a0", ":-", "-back", " \u200b\u200b", "\u2026.."], ["\u00c3", ":`", "\ufffds", "\ufffdt", "&R", "\u00ading", "`t", "\u00a7\u00c3"], ["\u00a7\u00c3", "\ufffds", "\u00c3", "&R", "\u54b1\u4eec\u7684", "\ufffdt", "&nbsp", "\u00ading"], ["&nbsp", "  \n    \n", "\u00ading", "    \n", "\n    \n", "&R", "\u00c3", "athon"], ["\u00ading", ",", "&nbsp", " \u00ad", "\u00c3", "-but", "\u00ad", "\u00ads"], ["&nbsp", "\\n", "-or", "\u00c3", "-but", "\u00ading", "&R", "-and"], [" **\u2022", " ____", " **>>", "nett", " **\u300c", "unky", "\ufffdt", "\u9605\u8bfb\u672c\u6587\u524d"], [" vibes", " **\u2022", " ____", " **\u300c", " veggies", "\u76ae\u9769\u57ce", " **>>", " Philly"], [" vibes", "\u76ae\u9769\u57ce", " Philly", "matchCondition", " Geile", "eroon", " veggies", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9"], [" Philly", "-or", " savvy", " vibes", " folks", "-but", " cops", " Hammond"], [" vibes", " Philly", " savvy", " kids", " tech", " big", " mostly", " pricey"], ["\u00c3", " vibes", " savvy", " meds", " tech", " Philly", " folks", " specs"], ["-ons", " Philly", " meds", " vibes", "-lite", " **\u2022", "\u5473\u513f", " RuntimeObject"], [" Geile", "nheim", "xeda", " Pubbl", " RuntimeObject", "\u8fd9\u4e8b\u513f", " Teixe", "-ons"], ["\u76ae\u9769\u57ce", "\u8fd9\u4e8b\u513f", "\u0274", " Geile", " pricey", "\u5473\u513f", " RuntimeObject", " Philly"], ["much", "though", "-but", "\u00c3", "\u2014or", " vastly", " myriad", " much"], [" Geile", " **\u2022", " RuntimeObject", " ;;^", "\u76ae\u9769\u57ce", " **>>", " MEDIAM", "keyp"], [" ``", "\ufffdt", " RuntimeObject", "ouncing", "nheim", "unky", "matchCondition", " smack"], [" much", " \ufffd", " heavily", " just", "much", " mostly", " \u00ad", " --"], ["&nbsp", "much", " &#", " \ufffd", " {{--<", " atop", " RuntimeMethod", " ____"], [" **", " **\u2022", "\u0274", "aptops", " **>>", " ____", " -**", " **#"], [" **", " ____", " computers", " hardware", "aptops", " tech", " electronics", "\u0274"], [" ____", " **", " much", " heavily", " ,", " ~", " --", " computers"], [" **", " ____", " tech", " hardware", " -**", " _____", " CPU", " computers"], [" ____", " **", " _____", " ___", " ______", " ...", " -**", "____"], [" ____", " **", " ...", " _____", " ___", " ______", " ???", " __"], [" **", " ____", " ...", " _____", " ___", " ______", " __", " ???"], [" **", " -", " much", " rather", " heavily", " ,", " but", " a"], ["\u2011", " **", "\u2014but", " ____", " -**", " tech", "\u2014or", " **\u2013"], ["\u2011", "?**", " -**", " **", "\u2014but", " ____", "\u2014or", " **\u201c"], ["\u2011", " -**", "\u2014but", "\u2014or", "\u2014\u2014", " **", "**\u2014", "?**"], [" -**", "\u2014or", " **", "\u2014\u2014", "\u2011", " \u2014\u2014", " ____", " *"], ["\u2011", " -**", "\u2014or", " internally", " **", " concurrently", " internal", " *"], ["\u2011", " internally", " CPU", "\u2014or", " internal", " -**", " synchronous", " concurrently"], [" threads", " Thread", " thread", "-thread", "threads", "\u591a\u7ebf\u7a0b", "Thread", "\u7ebf\u7a0b"], [" Thread", " threads", "-thread", " thread", "\u591a\u7ebf\u7a0b", "threads", " Threads", "\u7ebf\u7a0b"], [" threads", " thread", " Thread", "-thread", "\u591a\u7ebf\u7a0b", "\u7ebf\u7a0b", "threads", " Threads"], [" threads", " Thread", " thread", "-thread", " Threads", "\u7ebf\u7a0b", "threads", "\u591a\u7ebf\u7a0b"], [" threads", " Thread", " thread", "-thread", "threads", " Threads", "\u7ebf\u7a0b", "\u591a\u7ebf\u7a0b"], [" threads", " thread", " Thread", "threads", "-thread", " separate", "\u591a\u7ebf\u7a0b", " Threads"], [" threads", " thread", " Thread", " separate", "threads", " Threads", "-thread", "\u591a\u7ebf\u7a0b"], [" threads", " Thread", " thread", " separate", " either", "threads", " Threads", "-thread"], [" threads", " separate", " either", " Thread", " thread", "threads", " Threads", "\u8981\u4e48"], ["\u2014or", " threads", " either", "\u8981\u4e48", "\u591a\u7ebf\u7a0b", "threads", "\u8981\u4e48\u662f", "\u5355\u4e00\u7684"], [" separate", " either", "\u8981\u4e48", "\u8981\u4e48\u662f", " threads", "\u591a\u7ebf\u7a0b", "threads", "\u4e2a\u6216\u591a\u4e2a"], ["ynchronously", " separate", "threads", "\u591a\u7ebf\u7a0b", "_THREAD", " CPUs", " threads", "_threads"], ["ynchronously", " separate", " CPUs", " CPU", "threads", " threads", "-thread", " backend"], [" CPUs", " separate", " CPU", "ynchronously", " threads", "-thread", " backend", "threads"], [" threads", "-thread", "threads", " thread", " Thread", "thread", "\u7ebf\u7a0b", "Threads"], [" threads", " thread", "-thread", "\u7ebf\u7a0b", "threads", "thread", " Thread", "Threads"], [" threads", " thread", "\u7ebf\u7a0b", "-thread", "thread", "threads", " Thread", "Thread"], [" threads", " thread", "\u7ebf\u7a0b", "thread", "-thread", "threads", " Thread", " Threads"], [" threads", " thread", "\u7ebf\u7a0b", "-thread", "thread", "threads", " Thread", " Threads"], [" threads", " thread", "\u7ebf\u7a0b", "-thread", "thread", " Thread", "threads", " Threads"], [" threads", " thread", "-thread", "\u7ebf\u7a0b", "threads", " separate", " heap", " Threads"], [" threads", " separate", " thread", " Rust", " heap", "-thread", "threads", " dynamically"], [" threads", " separate", " OS", " Rust", " thread", " heap", " interpreter", "threads"], [" threads", " separate", " the", " Rust", " OS", " thread", " background", " main"]], "p": [[0.6359, 0.3404, 0.0059, 0.0059, 0.0019, 0.0014, 0.0012, 0.0008], [0.2489, 0.0759, 0.0204, 0.0159, 0.0103, 0.0097, 0.0085, 0.0062], [0.8721, 0.0919, 0.0205, 0.0075, 0.0016, 0.0006, 0.0005, 0.0004], [0.0052, 0.0049, 0.0041, 0.0032, 0.0032, 0.0028, 0.0023, 0.0014], [0.0275, 0.0054, 0.0054, 0.0045, 0.0042, 0.0042, 0.0037, 0.0029], [0.0021, 0.002, 0.002, 0.0018, 0.0016, 0.0015, 0.0015, 0.0015], [0.0154, 0.0113, 0.0068, 0.006, 0.0053, 0.0047, 0.0042, 0.0039], [0.0089, 0.0074, 0.0065, 0.0058, 0.0058, 0.0058, 0.0037, 0.0037], [0.0731, 0.0286, 0.0197, 0.0127, 0.0105, 0.0099, 0.0099, 0.0087], [0.0346, 0.0325, 0.0153, 0.0099, 0.0077, 0.006, 0.0056, 0.0053], [0.0555, 0.0262, 0.0232, 0.0159, 0.0116, 0.0091, 0.0046, 0.004], [0.0101, 0.0057, 0.0035, 0.0035, 0.0029, 0.0027, 0.0025, 0.002], [0.0047, 0.0035, 0.0032, 0.003, 0.003, 0.0025, 0.0018, 0.0018], [0.0034, 0.0018, 0.0015, 0.0015, 0.0013, 0.0013, 0.0012, 0.0011], [0.0095, 0.0045, 0.004, 0.0035, 0.0029, 0.0021, 0.0021, 0.0017], [0.0045, 0.0031, 0.0026, 0.0024, 0.0021, 0.0019, 0.0018, 0.0017], [0.0058, 0.0048, 0.0035, 0.0031, 0.0028, 0.0024, 0.0024, 0.0021], [0.0027, 0.0026, 0.0023, 0.0021, 0.0018, 0.0017, 0.0017, 0.0015], [0.0073, 0.003, 0.0024, 0.0021, 0.002, 0.0018, 0.0017, 0.0017], [0.0025, 0.0024, 0.0022, 0.0022, 0.002, 0.002, 0.0018, 0.0016], [0.0114, 0.0037, 0.0033, 0.0033, 0.0027, 0.0024, 0.0024, 0.0024], [0.005, 0.0039, 0.0025, 0.0021, 0.0021, 0.0019, 0.0019, 0.0018], [0.0081, 0.0022, 0.0015, 0.0012, 0.0012, 0.0012, 0.0011, 0.0011], [0.0087, 0.0064, 0.0034, 0.0032, 0.0025, 0.0024, 0.0018, 0.0018], [0.0067, 0.0036, 0.0032, 0.0026, 0.0025, 0.0022, 0.0022, 0.0021], [0.0136, 0.0061, 0.0061, 0.005, 0.0044, 0.0039, 0.0034, 0.0032], [0.0073, 0.0061, 0.0061, 0.0053, 0.005, 0.0047, 0.0042, 0.0034], [0.0156, 0.0146, 0.0114, 0.0094, 0.0061, 0.0045, 0.0045, 0.0042], [0.0918, 0.081, 0.0192, 0.0132, 0.0117, 0.0062, 0.0052, 0.0049], [0.4687, 0.2843, 0.034, 0.0264, 0.0182, 0.0076, 0.0076, 0.0055], [0.3128, 0.215, 0.1573, 0.0351, 0.033, 0.0176, 0.0156, 0.0107], [0.4583, 0.1795, 0.066, 0.0293, 0.0259, 0.0228, 0.0089, 0.0089], [0.0465, 0.0234, 0.0194, 0.0171, 0.0161, 0.0161, 0.0151, 0.0133], [0.303, 0.1727, 0.0282, 0.0265, 0.0206, 0.0194, 0.0118, 0.011], [0.1378, 0.1143, 0.0947, 0.089, 0.0225, 0.0211, 0.0165, 0.0165], [0.1482, 0.0957, 0.0331, 0.0331, 0.0292, 0.0274, 0.0227, 0.0201], [0.089, 0.0448, 0.0289, 0.0272, 0.0255, 0.0155, 0.0155, 0.0145], [0.1928, 0.043, 0.0261, 0.0123, 0.008, 0.008, 0.0048, 0.0048], [0.0828, 0.0305, 0.0253, 0.0197, 0.0144, 0.0127, 0.0112, 0.0087], [0.0876, 0.0773, 0.0441, 0.0389, 0.0365, 0.0365, 0.0267, 0.0267], [0.2022, 0.2022, 0.1226, 0.1226, 0.048, 0.0351, 0.0351, 0.031], [0.2908, 0.1764, 0.1373, 0.0944, 0.037, 0.0306, 0.0306, 0.027], [0.2365, 0.1266, 0.1266, 0.0768, 0.0341, 0.0265, 0.0265, 0.0207], [0.1997, 0.1555, 0.0943, 0.0369, 0.027, 0.027, 0.0224, 0.0211], [0.175, 0.0827, 0.073, 0.0268, 0.0252, 0.0223, 0.0209, 0.0184], [0.1341, 0.0525, 0.0525, 0.0299, 0.0182, 0.0171, 0.0151, 0.0141], [0.1267, 0.0562, 0.0438, 0.0363, 0.032, 0.0301, 0.0207, 0.0171], [0.1003, 0.0504, 0.0474, 0.0393, 0.0224, 0.0197, 0.012, 0.0112], [0.0405, 0.0405, 0.038, 0.0315, 0.0261, 0.0246, 0.0169, 0.0169], [0.0866, 0.0206, 0.016, 0.016, 0.0151, 0.0133, 0.0133, 0.0125], [0.0206, 0.016, 0.0117, 0.011, 0.0103, 0.0091, 0.0086, 0.0067], [0.0511, 0.048, 0.0351, 0.0227, 0.0188, 0.0166, 0.0129, 0.0101], [0.0714, 0.0556, 0.0522, 0.028, 0.0218, 0.015, 0.0124, 0.0124], [0.502, 0.112, 0.0679, 0.0529, 0.0364, 0.0364, 0.025, 0.025], [0.7, 0.1073, 0.0575, 0.0395, 0.024, 0.0165, 0.0145, 0.01], [0.6861, 0.1192, 0.0638, 0.0563, 0.0207, 0.0142, 0.0111, 0.0059], [0.7321, 0.1272, 0.0364, 0.0251, 0.0251, 0.0221, 0.0104, 0.0038], [0.668, 0.1491, 0.0548, 0.0484, 0.0259, 0.0178, 0.0065, 0.004], [0.6753, 0.1935, 0.0381, 0.0336, 0.018, 0.0096, 0.0085, 0.0035], [0.8613, 0.0551, 0.0139, 0.0084, 0.0084, 0.0058, 0.0048, 0.0033], [0.8315, 0.0285, 0.0208, 0.0162, 0.0082, 0.0077, 0.0063, 0.0049], [0.6096, 0.1747, 0.0268, 0.0173, 0.0105, 0.0099, 0.006, 0.005], [0.6065, 0.1738, 0.0284, 0.0235, 0.0208, 0.0098, 0.0072, 0.0063]], "ranks": {"Rust": [56869, 75241, 49178, 89858, 21568, 17830, 68079, 66170, 48429, 55005, 35840, 74587, 32603, 37079, 32437, 30554, 33297, 84832, 108792, 114452, 35489, 28575, 23030, 11816, 23775, 38197, 25085, 10999, 6706, 8512, 8847, 8121, 8518, 19961, 28030, 7336, 953, 566, 1140, 569, 310, 354, 761, 1157, 1530, 1209, 1645, 882, 2658, 2317, 12452, 3746, 1246, 737, 732, 274, 35, 35, 20, 9, 4, 4, 4]}}, {"pos": 518, "top": [[".", ",", " \u2013", ";", "\u2013", " ", "\u00a0\u00a0", "\u00a0"], [".", ",", " \u2013", "\u2013", ";", " ", "\u2013and", ":"], [".", ",", "\u2013", " \u2013", ";", "\u2026.", "\u2026", "\u2026.."], [" milfs", "-------------</", "----------</", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " ;;^", " Blowjob", " Shemale", "TRGL"], [".", ",", " ", ".@", " (@", " \u201c.", "  ", " \u201c"], [".", " \u200b\u200b", "!\u201d.", ",", "\u00a0\u00a0", " \u201c.", "kits", "  "], ["  \n", ".", "   \n", ".\u201d", "  \n\n", ".\u2019", "  \r\n", " "], ["   \n", "  \n", ".", "  \r\n", "  ", "   \r\n", ".@", "(@"], [".", ",", "  \n\n", "  \n", "\u00a0", ",.", ".\u201d", "..."], [",", ".", " \u00ad", "\u00a0", "\u00ad", "\u2013", ";", "\u00a0\u00a0"], [".", ",", "...", "-", " ", "\u00a0", "o", "d"], [" **", "-ish", "-esque", "\u5f3a\u9669", "\u5e97\u94fa\u7ecf\u8425\u8005", "\u907a\u7523", "igan", " pricey"], ["er", "\u4ea6\u6216\u662f", " impactful", "-ish", "\u5e7f\u5927\u515a\u5458\u5e72\u90e8", " savvy", "-esque", " potentially"], ["-esque", " savvy", " impactful", "-ish", " vibe", "\u4ea6\u6216\u662f", "-or", "-down"], [" savvy", " arguably", " folks", " potentially", " requisite", "-esque", " garner", " myriad"], [" potentially", " arguably", " savvy", " folks", " myriad", "-esque", " akin", " ultimately"], ["o", ",", " potentially", " myriad", " arguably", "an", "e", "s"], ["o", "-esque", ",", " savvy", " potentially", "-or", " myriad", "-down"], ["-esque", " myriad", " savvy", " arguably", "\u2014or", " ultimately", " potentially", "-or"], [" myriad", "\u2014or", " requisite", " arguably", " ultimately", " seemingly", "much", "-esque"], ["<|endoftext|>", " \n\n", "  \n\n", " myriad", "Though", " requisite", " swiftly", "\n\n"], [" myriad", " heavily", " ultimately", " aggressively", " arguably", " sprawling", " swiftly", " largely"], [" ``", " ''", " heavily", " ultimately", " myriad", " aggressively", " arguably", " --"], [" much", " ,", " ultimately", " heavily", " largely", " --", " rapidly", " eventually"], [" heavily", " --", " much", " myriad", " swiftly", " ultimately", " seemingly", " arguably"], [" **", " heavily", " swiftly", " tech", " seemingly", " hardware", " arguably", " aggressively"], [" **", " ___", " __", " tech", " @", " heavily", " labor", " multit"], [" \n\n", "\n\n", " ,", " @", " --", " __", " heavily", " \n"], [" \n\n", " **", " ___", " __", " \n", " ____", " \n  \n", "  \n\n"], [" ___", " **", " ____", " __", " ______", " \n", " ...", " _____"], [" ...", " ___", " **", " ____", " \n\n", " ______", " __", " ...\\"], [" ...", " **", " ___", " [...]", " ____", " __", " ______", " ...\\"], [" time", " **", " complex", " heavily", " work", " ,", " power", " tech"], [" **", " tech", " workflows", " runtime", " workflow", " multit", " complex", " labor"], [" **", " tech", " runtime", " multit", " workflows", " agile", " workflow", " \u2014"], [" \u2026", "\u2011", " \u2014", " **", " tech", " runtime", " multit", " asynchronous"], [" **", " asynchronous", " asynchronously", " \u2014", " synchronized", " agile", " GPU", " tech"], [" asynchronous", " synchronized", " **", " concurrently", " asynchronously", "\u2011", " sync", " concurrent"], [" asynchronous", " synchronized", " asynchronously", " synchronous", " workflows", " concurrently", " workflow", " sync"], [" asynchronous", " asynchronously", " synchronized", " synchronous", " workflows", " Async", "\u5f02\u6b65", " async"], [" asynchronous", " asynchronously", " worker", "\u5f02\u6b65", " CPU", " workflows", " Async", " thread"], [" asynchronous", " worker", " asynchronously", " workflows", " workers", " workflow", " thread", " Worker"], [" asynchronous", " workflows", " asynchronously", " workflow", " worker", " threads", " tasks", " thread"], [" asynchronous", " workflows", " asynchronously", " workflow", " worker", " tasks", " threads", "\u591a\u7ebf\u7a0b"], [" workflows", " worker", " workflow", " asynchronous", " workers", " asynchronously", " tasks", " threads"], [" worker", " workflows", " workers", " workflow", " tasks", " separate", " threads", " asynchronous"], [" workflows", " workflow", " tasks", " worker", " asynchronous", " threads", " thread", " workers"], [" workflows", " workflow", " tasks", " workers", " worker", " thread", " threads", " workforce"], [" workflows", " workflow", " workforce", " thread", " backend", " CPU", "\u591a\u7ebf\u7a0b", " tasks"], [" backend", " busiest", " CPU", " workforce", " runtime", "\u7684\u4e3b\u529b", ";**", " mainland"], ["_THREAD", "\u591a\u7ebf\u7a0b", " CPU", "MainThread", " backend", " mainland", " busiest", ";**"], [" CPU", " backend", "MainThread", " CPUs", " runtime", " frontend", " GPU", "CPU"], [" CPU", " backend", "MainThread", " runtime", " CPUs", " frontend", " JVM", "CPU"], ["MainThread", " thread", " CPU", "-thread", " Thread", " threads", " Threads", "\u7ebf\u7a0b"], [" thread", "MainThread", " threads", "-thread", " Thread", "\u7ebf\u7a0b", "thread", " main"], [" thread", " threads", "-thread", "MainThread", "\u7ebf\u7a0b", " Thread", "thread", " ThreadPool"], [" thread", " threads", "-thread", "\u7ebf\u7a0b", "thread", " Thread", "MainThread", "hread"], [" main", " thread", "MainThread", "\u7684\u4e3b", "\u4e3b", " UI", " threads", "-thread"], [" thread", " main", "MainThread", " threads", " heap", " Thread", "-thread", "\u7ebf\u7a0b"], [" UI", " main", " heap", " CPU", " Rust", " thread", " Main", "\u7684\u4e3b"], [" main", " UI", " heap", " Rust", " CPU", " Main", " JVM", "_main"], [" main", " UI", " Rust", " heap", " host", " CPU", " Main", " JVM"], [" main", " UI", " Rust", " heap", " Main", " CPU", " host", " wrong"]], "p": [[0.7738, 0.2217, 0.0013, 0.001, 0.001, 0.0002, 0.0002, 0.0002], [0.2933, 0.2146, 0.1671, 0.0894, 0.0129, 0.0042, 0.0029, 0.0021], [0.6421, 0.3033, 0.0362, 0.0133, 0.0014, 0.0009, 0.0007, 0.0005], [0.0126, 0.0077, 0.006, 0.0046, 0.0044, 0.0041, 0.0039, 0.0034], [0.0542, 0.0329, 0.0107, 0.0094, 0.0042, 0.0037, 0.0037, 0.0033], [0.0213, 0.02, 0.0074, 0.0065, 0.0045, 0.0042, 0.0035, 0.0025], [0.5122, 0.1295, 0.054, 0.0349, 0.0289, 0.0187, 0.012, 0.0088], [0.26, 0.1154, 0.0844, 0.0352, 0.0274, 0.0188, 0.0069, 0.0065], [0.9058, 0.0511, 0.0095, 0.0042, 0.0039, 0.0029, 0.0019, 0.0017], [0.7747, 0.034, 0.0111, 0.0043, 0.0038, 0.0025, 0.0025, 0.0023], [0.6719, 0.2801, 0.0116, 0.0062, 0.0048, 0.0026, 0.0016, 0.0011], [0.0044, 0.0037, 0.0037, 0.0033, 0.0029, 0.0025, 0.0025, 0.0021], [0.0051, 0.004, 0.0035, 0.0031, 0.0027, 0.0027, 0.0027, 0.0026], [0.0165, 0.0061, 0.0047, 0.0044, 0.0033, 0.0022, 0.0022, 0.002], [0.0145, 0.0099, 0.0082, 0.0077, 0.0073, 0.0073, 0.0064, 0.0053], [0.0129, 0.0121, 0.0107, 0.01, 0.0069, 0.0047, 0.0042, 0.0039], [0.0532, 0.0389, 0.0143, 0.0126, 0.0087, 0.0077, 0.0068, 0.0068], [0.0323, 0.0135, 0.0127, 0.0093, 0.0077, 0.0072, 0.0047, 0.003], [0.0122, 0.0101, 0.0074, 0.0069, 0.0048, 0.0037, 0.0037, 0.0035], [0.018, 0.0085, 0.007, 0.0052, 0.0043, 0.0033, 0.0031, 0.0031], [0.9305, 0.001, 0.0009, 0.0007, 0.0003, 0.0003, 0.0003, 0.0002], [0.0033, 0.0029, 0.0024, 0.002, 0.002, 0.0019, 0.0017, 0.0015], [0.0569, 0.0237, 0.0072, 0.0056, 0.0039, 0.0036, 0.0036, 0.0034], [0.0111, 0.0111, 0.0098, 0.0071, 0.0046, 0.0038, 0.0034, 0.0034], [0.0076, 0.0067, 0.0049, 0.0049, 0.0049, 0.0046, 0.0044, 0.0041], [0.0738, 0.0121, 0.0044, 0.0044, 0.0042, 0.0039, 0.0037, 0.003], [0.182, 0.0279, 0.018, 0.0149, 0.0124, 0.0096, 0.0075, 0.0066], [0.2921, 0.0448, 0.0448, 0.0328, 0.0137, 0.0083, 0.0073, 0.0069], [0.6237, 0.0618, 0.058, 0.0257, 0.0177, 0.0147, 0.0138, 0.0101], [0.2957, 0.2164, 0.1397, 0.0702, 0.0514, 0.0243, 0.0201, 0.0157], [0.7642, 0.0489, 0.0431, 0.0278, 0.0149, 0.0124, 0.0116, 0.0102], [0.7746, 0.0465, 0.0206, 0.0133, 0.0104, 0.0092, 0.0076, 0.0063], [0.0224, 0.0198, 0.0198, 0.0154, 0.0154, 0.0128, 0.0113, 0.0106], [0.0962, 0.0621, 0.0259, 0.0167, 0.0139, 0.0115, 0.0095, 0.007], [0.0394, 0.037, 0.0164, 0.0145, 0.0136, 0.0088, 0.0083, 0.0083], [0.0465, 0.0341, 0.0282, 0.0194, 0.0151, 0.0142, 0.0133, 0.0133], [0.0492, 0.0317, 0.0247, 0.0192, 0.0132, 0.0117, 0.0117, 0.011], [0.0281, 0.0264, 0.0193, 0.0182, 0.016, 0.0151, 0.0133, 0.0125], [0.0496, 0.0386, 0.032, 0.0265, 0.022, 0.0182, 0.0161, 0.0133], [0.146, 0.0648, 0.0418, 0.0306, 0.027, 0.021, 0.0186, 0.0174], [0.1978, 0.0878, 0.0285, 0.0251, 0.0251, 0.0222, 0.0208, 0.0208], [0.1347, 0.0869, 0.0721, 0.0495, 0.0495, 0.034, 0.03, 0.022], [0.1281, 0.0997, 0.0605, 0.0443, 0.0345, 0.0268, 0.0252, 0.0184], [0.0897, 0.0792, 0.0511, 0.0451, 0.0374, 0.0351, 0.031, 0.0213], [0.0557, 0.0557, 0.0492, 0.0408, 0.036, 0.0318, 0.0263, 0.0218], [0.0503, 0.0392, 0.0368, 0.0346, 0.0287, 0.0287, 0.0174, 0.0163], [0.0478, 0.0449, 0.0328, 0.0308, 0.0256, 0.0199, 0.0199, 0.0176], [0.0333, 0.0294, 0.0259, 0.0215, 0.0202, 0.0202, 0.0167, 0.0139], [0.0561, 0.0495, 0.0194, 0.0151, 0.0125, 0.0118, 0.0118, 0.011], [0.0509, 0.0176, 0.0121, 0.0094, 0.0065, 0.0065, 0.0057, 0.0054], [0.017, 0.0132, 0.0124, 0.0124, 0.0117, 0.0117, 0.0103, 0.008], [0.5497, 0.0511, 0.0291, 0.0188, 0.0156, 0.0121, 0.0107, 0.0069], [0.6785, 0.0317, 0.0263, 0.0232, 0.0192, 0.0117, 0.0085, 0.0055], [0.4277, 0.1081, 0.0954, 0.0842, 0.0656, 0.0579, 0.0166, 0.0114], [0.4337, 0.263, 0.0854, 0.0754, 0.0587, 0.0277, 0.0102, 0.009], [0.5368, 0.1198, 0.0933, 0.0933, 0.0441, 0.0303, 0.0162, 0.0087], [0.7023, 0.0653, 0.0577, 0.035, 0.0309, 0.0309, 0.024, 0.0129], [0.4759, 0.1363, 0.0827, 0.073, 0.0502, 0.0391, 0.0209, 0.0163], [0.5345, 0.1193, 0.0929, 0.0563, 0.0497, 0.0387, 0.0207, 0.0126], [0.3798, 0.3798, 0.096, 0.0454, 0.0147, 0.013, 0.007, 0.0061], [0.6498, 0.239, 0.0471, 0.0196, 0.0153, 0.0082, 0.0016, 0.0016], [0.7732, 0.1046, 0.0385, 0.0385, 0.0125, 0.0097, 0.0052, 0.0019], [0.6863, 0.2525, 0.0342, 0.0052, 0.0041, 0.0041, 0.0021, 0.0014]], "ranks": {"Rust": [26776, 54893, 38685, 84465, 6804, 11701, 45291, 18269, 41427, 30990, 14362, 21982, 8004, 4192, 7374, 6731, 8673, 15526, 32717, 41835, 33183, 5707, 6955, 6534, 8538, 4888, 4724, 4889, 2782, 6352, 7341, 8655, 6334, 7895, 8010, 2472, 417, 436, 891, 1027, 521, 547, 544, 818, 795, 321, 392, 195, 257, 450, 3136, 1575, 182, 278, 535, 132, 28, 31, 13, 5, 4, 3, 3]}}, {"pos": 519, "top": [[".", ",", " \u2013", "er", "\u2013", "i", "-", ";"], ["er", " favourite", " centre", " \u2013", "\u2011", " favourites", "\u2013", "s"], [",", ".", "\u2013", " \u2013", ";", "\u2026", "!", "?"], [" organiser", " jewellery", " flavours", " \u0e46", " Hidal", " favourites", "\u0639\u0649", "organisation"], ["er", " centre", "s", " favourite", " Centre", " organised", " organiser", " defence"], ["er", ",", " favourite", "s", " organiser", " centre", " Centre", "\u0451"], ["er", "s", ",", "-", "!", " favourite", ".", "\u2019"], ["er", "s", " favourite", "ship", " favourites", "\u0451\u0440", " centre", " Centre"], ["er", "\u0451\u0440", "ship", ",", "s", ".", "!", " favourites"], ["er", "s", "ship", ",", "\u0451\u0440", "\u00ading", "ness", "ment"], ["er", "s", "ship", "ment", "-", ",", "ness", "i"], ["ship", "er", "/Main", "\u0451\u0440", "stay", "ness", "\u0451\u0434", " \u0442\u0440\u0451"], ["ship", "er", "ness", "stay", "\u0451\u0440", "/Main", "ment", "\u00ading"], ["ship", "\u0451\u0440", "stay", "er", "ness", "/Main", "\u0451\u0434", " \u0442\u0440\u0451"], ["ship", "\u9592", "stay", "ness", " showcase", "er", "side", "tron"], ["ship", "\u9592", "stay", "er", "\u0451\u0434", "ness", "ment", " MVP"], ["ship", "er", "stay", "\u9592", "s", "ness", "ment", "\u0451\u0434"], ["ship", "er", "stay", "/Main", "\u9592", "side", "ness", "kit"], ["ship", "er", "\u9592", "stay", "/Main", "\u0451\u0434", "side", "ment"], ["ship", "\u9592", "er", "stay", "/Main", "ment", "hattan", "\u513f\u7684"], ["er", "\u9592", "ship", "n", " \u00ad", "m", " Main", "s"], ["\u9592", "ship", "/Main", "hattan", "stay", "\u4e3b\u57ce", "nheim", "\u7b54\u4e3b"], ["\u9592", "ship", "nheim", "/Main", "shaft", "stay", "\u4e3b\u57ce", "hattan"], ["\u9592", "ship", " Main", "nheim", "er", "\u4e3b\u57ce", " main", "/Main"], ["\u9592", "ship", "\u0434\u044c\u043c\u0438", "\u9ebd", "\u6301\u4e4b\u4ee5", "\u0440\u043e\u0432\u0430\u043d\u043d\u044b", "\u5176\u5b83\u5a92\u4f53", "\u8e5f"], ["\u9592", "\u5176\u5b83\u5a92\u4f53", "ship", "\u6301\u4e4b\u4ee5", "\u4e3b\u57ce", "shaft", "/Main", "\u79ef\u7535"], ["\u9592", "\u6301\u4e4b\u4ee5", "\u5e97\u94fa\u7ecf\u8425\u8005", "ship", "\u5176\u5b83\u5a92\u4f53", " Broadway", " startup", "\u90fd\u5e02\u8a00\u60c5"], ["\u9592", "ship", " Broadway", " Main", " main", " TV", " '", " day"], [" ___", " **", "ship", " startup", " __", "board", " MCU", "\u6301\u4e4b\u4ee5"], [" **", " ___", " startup", " workflow", " macOS", "ship", " timeline", " MCU"], [" **", " .**", " ___", " theater", " **.", " startup", " **:", " workflow"], [" **", " theater", " ___", " TV", " Main", " time", " day", " hours"], ["\u2011", " day", " or", " time", " space", " TV", " Main", " ."], ["\u2011", "\u2014or", " tech", " \u2014", "/Main", " theater", "\u2014but", " **"], ["\u2011", "\u2014or", "**\u2014", "/Main", " \u2014", "\u2014but", " tech", " **["], ["\u2011", "\u2014or", " \u2014", "/Main", "**\u2014", " \u2013", "\u2013", " Main"], ["\u2011", "\u2014or", "/Main", "**\u2014", " \u2014", " **[", " macOS", " **"], ["\u2011", "/Main", "\u2014or", " Main", " UI", " synchronous", " macOS", "(Main"], ["\u2011", "/Main", "\u2014or", " UI", " synchronous", " Main", " thread", " workflow"], ["\u2011", "/Main", " thread", "-thread", "\u7ebf\u7a0b", " Main", "\u2014or", " Thread"], ["/Main", " thread", "-thread", "\u2011", " Thread", "\u7ebf\u7a0b", "MainThread", " Main"], [" thread", "/Main", "-thread", "MainThread", "\u7ebf\u7a0b", " UI", " Main", " Thread"], ["/Main", "MainThread", " thread", "-thread", " Main", " UI", " main", " threads"], ["/Main", " Main", "MainThread", " thread", " main", "/main", " UI", "-thread"], ["/Main", " thread", "MainThread", " Main", " main", " workflow", " sync", " UI"], ["/Main", " thread", "/main", " main", " Main", "/UI", " sync", " UI"], ["/Main", "/main", "/UI", " thread", " main", " Main", " sync", " workflow"], ["/Main", "/main", "/UI", "\u2014or", " or", " thread", " sync", " synced"], ["\u2014or", "\u6216\u901a\u8fc7", "/Main", "\u6216\u56e0", " or", "\u6216\u4e0e", "/UI", "/main"], ["/Main", "\u6216\u56e0", "\u2014or", "/UI", "\u6216\u901a\u8fc7", "\u6216\u4e0e", "/main", " or"], ["/Main", "\u6216\u56e0", "\u6216\u901a\u8fc7", "\u2014or", "/UI", "/main", "\u6216\u4e0e", "\u6216\u76f4\u63a5"], ["\u6216\u56e0", "\u6216\u4e0e", "\u2014or", "\u6216\u901a\u8fc7", "\u6216\u76f4\u63a5", "\u6216\u7531", "\u6216", "\u6216\u5176"], ["/UI", "/Main", "\u6216\u56e0", "-thread", "/Core", " thread", "/thread", "/API"], [" thread", "/Main", "-thread", "\u7ebf\u7a0b", "/UI", "thread", "/thread", " threads"], [" thread", "\u7ebf\u7a0b", "-thread", "thread", " threads", " Thread", "/Main", "/thread"], [" thread", "-thread", "\u7ebf\u7a0b", "thread", " threads", " Thread", "/thread", "Thread"], [" thread", "-thread", "\u7ebf\u7a0b", "thread", " Thread", " threads", "_thread", "/thread"], [" thread", "-thread", "thread", "\u7ebf\u7a0b", "/UI", " UI", " Thread", " threads"], [" thread", "-thread", "thread", " Thread", "\u7ebf\u7a0b", " threads", "Thread", "_thread"], [" thread", "-thread", "thread", "\u7ebf\u7a0b", " Thread", " threads", " UI", "Thread"], [" thread", " UI", "/UI", "-thread", "thread", "\u7ebf\u7a0b", " Thread", " loop"], [" thread", " UI", "/UI", "-thread", "thread", "\u7ebf\u7a0b", " loop", " Thread"], [" thread", " UI", "/UI", "thread", "-thread", "\u7ebf\u7a0b", " Thread", " loop"]], "p": [[0.5384, 0.2882, 0.0533, 0.0184, 0.0087, 0.0077, 0.0068, 0.0068], [0.0223, 0.0223, 0.0196, 0.0153, 0.0112, 0.0099, 0.0077, 0.0064], [0.6246, 0.2298, 0.0746, 0.0242, 0.0074, 0.0035, 0.0023, 0.0023], [0.0129, 0.005, 0.0047, 0.0037, 0.0035, 0.0031, 0.0029, 0.0029], [0.2573, 0.042, 0.0327, 0.0327, 0.0225, 0.0164, 0.0113, 0.0088], [0.0425, 0.0275, 0.0201, 0.0167, 0.0156, 0.0138, 0.013, 0.0101], [0.2473, 0.2323, 0.0295, 0.0191, 0.0179, 0.0179, 0.0158, 0.0158], [0.2052, 0.1032, 0.0357, 0.0357, 0.0245, 0.0168, 0.0168, 0.0116], [0.1591, 0.0378, 0.0355, 0.0313, 0.0313, 0.0277, 0.0168, 0.0139], [0.0721, 0.0561, 0.0437, 0.032, 0.0265, 0.0171, 0.0125, 0.0081], [0.4351, 0.1327, 0.0756, 0.018, 0.014, 0.0123, 0.0102, 0.0062], [0.0547, 0.0293, 0.013, 0.0122, 0.0095, 0.0089, 0.0065, 0.0061], [0.0416, 0.0237, 0.0105, 0.0099, 0.0072, 0.0068, 0.0056, 0.0039], [0.0506, 0.0078, 0.0078, 0.0073, 0.006, 0.0053, 0.0044, 0.0039], [0.0744, 0.0114, 0.0074, 0.0048, 0.0029, 0.0027, 0.0025, 0.0025], [0.0369, 0.0082, 0.006, 0.0044, 0.0032, 0.0025, 0.0016, 0.0015], [0.0652, 0.0199, 0.0121, 0.0061, 0.0042, 0.0042, 0.0032, 0.0029], [0.1299, 0.0137, 0.0129, 0.0054, 0.0047, 0.0044, 0.0042, 0.0037], [0.0408, 0.0181, 0.0141, 0.008, 0.0046, 0.004, 0.0031, 0.0031], [0.0301, 0.0133, 0.0118, 0.0071, 0.0071, 0.0038, 0.0034, 0.003], [0.0138, 0.0115, 0.0108, 0.0051, 0.0042, 0.0037, 0.0027, 0.0026], [0.0086, 0.0081, 0.0067, 0.0036, 0.0028, 0.0028, 0.0026, 0.0025], [0.0092, 0.0072, 0.0032, 0.003, 0.003, 0.0026, 0.0023, 0.0019], [0.0189, 0.0042, 0.0026, 0.0026, 0.0018, 0.0018, 0.0017, 0.0011], [0.0123, 0.0035, 0.002, 0.0018, 0.0018, 0.0016, 0.0016, 0.0015], [0.0066, 0.0051, 0.0033, 0.0031, 0.0027, 0.0026, 0.0026, 0.0021], [0.0101, 0.0058, 0.0033, 0.0029, 0.0027, 0.0023, 0.0023, 0.0023], [0.0079, 0.0039, 0.0037, 0.0037, 0.0031, 0.0031, 0.0026, 0.0026], [0.0129, 0.0069, 0.0061, 0.0048, 0.0042, 0.0039, 0.0039, 0.0033], [0.0107, 0.0089, 0.0084, 0.0037, 0.0035, 0.0033, 0.0031, 0.0029], [0.0476, 0.0078, 0.0078, 0.0064, 0.0061, 0.0047, 0.0044, 0.0044], [0.0285, 0.0268, 0.0064, 0.0064, 0.006, 0.006, 0.0047, 0.0047], [0.0392, 0.0144, 0.0127, 0.0112, 0.0099, 0.0099, 0.0077, 0.0072], [0.5072, 0.0135, 0.0034, 0.0034, 0.0025, 0.0025, 0.0023, 0.0023], [0.339, 0.0553, 0.0131, 0.0116, 0.008, 0.004, 0.004, 0.0038], [0.3678, 0.0439, 0.0221, 0.0183, 0.0143, 0.0098, 0.0043, 0.0036], [0.1804, 0.0586, 0.026, 0.0244, 0.0229, 0.0108, 0.0074, 0.0045], [0.5035, 0.0413, 0.0162, 0.0067, 0.006, 0.0038, 0.0036, 0.0032], [0.1702, 0.0911, 0.0278, 0.0216, 0.0179, 0.0131, 0.0109, 0.0096], [0.1557, 0.1557, 0.0307, 0.0271, 0.0128, 0.012, 0.01, 0.01], [0.1572, 0.1015, 0.0953, 0.0615, 0.0309, 0.0309, 0.0309, 0.0166], [0.1262, 0.1114, 0.0766, 0.056, 0.03, 0.0282, 0.0282, 0.0182], [0.0899, 0.07, 0.07, 0.0399, 0.0399, 0.0213, 0.0201, 0.0138], [0.1656, 0.0474, 0.0446, 0.0326, 0.0224, 0.0164, 0.0145, 0.0128], [0.0817, 0.0411, 0.032, 0.0282, 0.0234, 0.0182, 0.0161, 0.0151], [0.1302, 0.0309, 0.0256, 0.0213, 0.0213, 0.0188, 0.0146, 0.0121], [0.2798, 0.0586, 0.0334, 0.0295, 0.023, 0.0123, 0.0115, 0.0115], [0.3362, 0.085, 0.075, 0.0354, 0.0202, 0.0178, 0.007, 0.0066], [0.4512, 0.0784, 0.0692, 0.0611, 0.037, 0.0348, 0.0198, 0.0186], [0.1563, 0.1217, 0.1217, 0.0948, 0.0652, 0.0308, 0.0225, 0.0175], [0.2107, 0.1448, 0.0684, 0.0684, 0.047, 0.0442, 0.039, 0.0196], [0.3233, 0.1348, 0.0818, 0.0818, 0.0341, 0.0301, 0.0234, 0.0234], [0.4178, 0.0726, 0.0365, 0.0343, 0.0236, 0.0221, 0.0208, 0.0195], [0.2449, 0.2161, 0.2161, 0.1021, 0.0482, 0.0376, 0.0258, 0.0228], [0.7668, 0.0808, 0.0808, 0.0232, 0.0159, 0.0109, 0.0059, 0.0052], [0.8007, 0.0844, 0.0657, 0.0242, 0.0101, 0.0054, 0.0033, 0.0029], [0.8549, 0.0619, 0.0331, 0.0293, 0.0065, 0.0045, 0.0031, 0.0027], [0.8378, 0.0779, 0.0287, 0.0223, 0.0072, 0.0064, 0.0056, 0.0044], [0.9605, 0.0155, 0.0094, 0.0057, 0.0044, 0.0021, 0.0011, 0.0008], [0.9762, 0.0108, 0.0051, 0.0027, 0.0019, 0.0011, 0.0008, 0.0004], [0.8818, 0.082, 0.0183, 0.0076, 0.0028, 0.0025, 0.0013, 0.0012], [0.9463, 0.0367, 0.0105, 0.0027, 0.0011, 0.0007, 0.0005, 0.0005], [0.9337, 0.0527, 0.0118, 0.0005, 0.0004, 0.0002, 0.0001, 0.0001]], "ranks": {"Rust": [80517, 113365, 103610, 58202, 36876, 42015, 72555, 62022, 63343, 68498, 79711, 74951, 61623, 36362, 55599, 53053, 81943, 89066, 127936, 128492, 118219, 118743, 145000, 104974, 107916, 114260, 119438, 53207, 58942, 72689, 65207, 26213, 17893, 41135, 54361, 29245, 3984, 5052, 6521, 5625, 1815, 3234, 3591, 5169, 6374, 3580, 4063, 2817, 7930, 10446, 53103, 24575, 2379, 4554, 2385, 601, 50, 42, 50, 38, 16, 13, 9]}}, {"pos": 520, "top": [[".", ",", " \u2013", "\u2013", ";", "\u00a0", " ", "\""], [" \u2013", "\u2013", "\u2013and", ",", "\u2013\u2013", "\u200b", ".", " \u2018"], [",", "\u2013", " \u2013", ".", ";", "\u2013and", ".\u2013", "\u2026.."], [" Strec", " \uffe5\uffe5", "TROD", "HeaderCode", " cittadin", "':''", "TRGL", " Shemale"], [",", ".", " (@", "@", "er", ".@", " ", " @"], [",", ".", ":", ";", "er", "!", " \u200b\u200b", " Pro"], [".", ",", ";", ":", "!", "--", "\u00a0", " "], [",", ".", ";", ":", "!", "er", "--", "\ufffds"], [".", ",", ";", ":", "!", "&nbsp", "\u00a0", ".&"], [",", ".", ";", "--", ".\\", ":", "\u00a0", ".["], [",", ".", ";", ":", ".\\", " ", ".[", "er"], [",", "er", " --", " -->", "--", ".\\", " #", "'s"], [",", "er", ".", ":", ";", "\u2019s", "'s", " via"], [",", ";", ".", "er", " via", "\u2014", "\u2013", "'s"], [",", " via", " arguably", " alongside", "--", " at", " along", " heavily"], [",", " via", " as", " in", " arguably", " alongside", " through", " at"], [",", " of", " in", " via", " at", " as", " just", " through"], [",", " of", ";", ".", " in", " at", "er", " rather"], [",", " \u2014", " --", " ,", " arguably", " rather", " yet", "\u2014"], [",", " \u2014", " ,", "\u2014", " --", "--", "<|endoftext|>", " just"], ["<|endoftext|>", " ,", " \u2014", ",", " --", "--", "\u2014", " though"], [" --", " ,", " heavily", " ''", " alongside", " even", " while", " just"], [" --", " ,", " ''", " heavily", " while", " of", " alongside", " arguably"], [" ,", " --", " of", " along", " while", " and", " .", " ;"], [" --", " ,", " \u2014", " while", " though", " along", "--", " ;"], [" --", " ,", " while", " heavily", " \u2014", " and", " '", " even"], [" --", " ,", " ___", " while", " \u2014", " __", " and", " '"], [" ,", " --", " __", " ___", " '", " .", " and", " while"], [" ,", " --", " ___", " __", " .", " while", " ______", " and"], [" ___", " __", " ______", " .", " ,", " --", " ____", " _____"], [" ___", " .", " __", " ,", " --", " ______", " ?", " ____"], [" .", " ,", " ___", " ...", " __", " ______", " --", " during"], [" .", " ,", " despite", " because", " ...", " \u2014", " only", " ?"], [" \u2014", " despite", " because", " heavily", " --", " during", " only", " rather"], [" \u2014", " because", " despite", " unless", " --", " heavily", "\u2014or", " arguably"], [" \u2014", " because", " \u2013", " unless", "\u2014or", " \u2014\u2014", " due", " unnecessarily"], [" because", " \u2014", " unless", " due", " unnecessarily", "\u2014or", " despite", " potentially"], [" because", " \u2014", " unless", " due", " unnecessarily", " potentially", "\u2014or", " \u2013"], [" because", " unless", " \u2014", " due", " unnecessarily", " if", " potentially", " or"], [" because", " unless", " due", " potentially", " if", " unnecessarily", " dangerously", " \u2014"], [" because", " unless", " due", " if", " blocking", " dangerously", " or", " potentially"], [" because", " unless", " \u2014", " due", " during", " potentially", " or", " blocking"], [" because", " unless", " due", " blocking", " during", " directly", " potentially", " unnecessarily"], [" because", " unless", " potentially", " blocking", " dangerously", " during", " directly", " due"], [" because", " unless", " due", " potentially", " inefficient", " or", " unnecessarily", " during"], [" because", " unless", " or", " due", " unnecessarily", " either", " potentially", " inevitably"], [" or", " either", " because", " unless", " due", " inadvertently", " inevitably", "\u6216\u56e0"], [" or", " unless", " because", " due", " either", "\u6216\u56e0", " if", " inadvertently"], [" or", " unless", "\u6216\u56e0", " due", " because", " either", " if", "\u2014or"], [" unless", "\u6216\u56e0", " or", " because", " due", "unless", "\u9664\u975e", " if"], [" unless", "\u6216\u56e0", " because", "unless", " due", " or", "\u9664\u975e", " Unless"], [" unless", "\u6216\u56e0", " or", "\u6216\u4e0e", " because", " due", "\u6216\u901a\u8fc7", "\u6216\u7531"], [" unless", "unless", "\u6216\u56e0", "\u9664\u975e", " or", " Unless", "Unless", " if"], [" unless", "unless", "\u9664\u975e", " Unless", "\u6216\u56e0", " because", " or", " if"], [" unless", " initially", "\u6216\u56e0", " or", "unless", "\u9664\u975e", "\u6216\u4e0e", " if"], [" unless", " or", "\u6216\u56e0", "unless", "\u9664\u975e", " if", " initially", " Unless"], [" unless", " or", "\u6216\u56e0", "unless", " if", "\u9664\u975e", " initially", " Unless"], [" unless", " if", " or", "\u6216\u56e0", "unless", "\u9664\u975e", " initially", " Unless"], [" unless", " by", " if", " or", "\u6216\u56e0", "\u6216\u7531", "unless", " Unless"], [" by", " unless", " if", " or", " because", "\u6216\u7531", " initially", "\u6216\u56e0"], [" unless", " if", " by", " or", " initially", " because", " due", " UI"], [" unless", " if", " by", " or", " initially", " because", ".", " due"], [" unless", " if", " by", " or", " initially", " because", ".", " due"]], "p": [[0.7474, 0.1668, 0.0695, 0.0083, 0.0025, 0.0007, 0.0006, 0.0005], [0.4229, 0.1763, 0.0154, 0.0154, 0.0093, 0.0082, 0.0064, 0.0044], [0.3072, 0.3072, 0.2112, 0.1281, 0.0082, 0.0068, 0.006, 0.0056], [0.0053, 0.003, 0.0027, 0.0027, 0.0025, 0.0024, 0.0022, 0.0022], [0.2795, 0.1028, 0.055, 0.0355, 0.026, 0.0229, 0.0215, 0.0202], [0.3854, 0.2488, 0.0316, 0.0124, 0.0062, 0.0055, 0.0029, 0.002], [0.5269, 0.4103, 0.0217, 0.0132, 0.0023, 0.0015, 0.0014, 0.0012], [0.5219, 0.4064, 0.0277, 0.0131, 0.0019, 0.0017, 0.0011, 0.0008], [0.5702, 0.3919, 0.0195, 0.0046, 0.0012, 0.0012, 0.0012, 0.0009], [0.9735, 0.0095, 0.0095, 0.0009, 0.0006, 0.0006, 0.0004, 0.0002], [0.6685, 0.3158, 0.0095, 0.0008, 0.0005, 0.0004, 0.0003, 0.0003], [0.3045, 0.077, 0.0118, 0.0111, 0.0072, 0.0063, 0.0063, 0.0063], [0.6903, 0.0323, 0.0143, 0.0064, 0.0041, 0.0041, 0.0041, 0.0025], [0.951, 0.0024, 0.002, 0.0013, 0.0006, 0.0005, 0.0005, 0.0004], [0.2404, 0.0144, 0.0127, 0.0127, 0.012, 0.0112, 0.0106, 0.0093], [0.0535, 0.0163, 0.0153, 0.0135, 0.0135, 0.0135, 0.0119, 0.0119], [0.5437, 0.0154, 0.0113, 0.0106, 0.0083, 0.0078, 0.0057, 0.0057], [0.8716, 0.0049, 0.0046, 0.0031, 0.0026, 0.0019, 0.0017, 0.0016], [0.2697, 0.0565, 0.0208, 0.0172, 0.0172, 0.0118, 0.0111, 0.0111], [0.4551, 0.0743, 0.0291, 0.0241, 0.0166, 0.0114, 0.0078, 0.0074], [0.6758, 0.0297, 0.0231, 0.018, 0.0103, 0.0066, 0.0066, 0.0048], [0.1711, 0.049, 0.0116, 0.0109, 0.0097, 0.008, 0.0062, 0.0059], [0.5561, 0.0801, 0.0216, 0.007, 0.0042, 0.0042, 0.004, 0.0035], [0.3186, 0.219, 0.014, 0.0109, 0.0085, 0.0075, 0.007, 0.0066], [0.4042, 0.1583, 0.0228, 0.013, 0.0089, 0.0074, 0.0054, 0.0054], [0.3053, 0.1739, 0.0208, 0.0126, 0.0111, 0.0098, 0.0072, 0.0063], [0.406, 0.1692, 0.0178, 0.0157, 0.0148, 0.0148, 0.007, 0.0062], [0.4129, 0.2838, 0.0181, 0.0141, 0.0141, 0.0125, 0.011, 0.0097], [0.3423, 0.2076, 0.0813, 0.0813, 0.0409, 0.015, 0.0125, 0.0076], [0.385, 0.2061, 0.0521, 0.0489, 0.0489, 0.0432, 0.0246, 0.0085], [0.2679, 0.2087, 0.1117, 0.0598, 0.0466, 0.0363, 0.022, 0.0182], [0.2352, 0.1111, 0.098, 0.0865, 0.0559, 0.0299, 0.0281, 0.0141], [0.2068, 0.1335, 0.0433, 0.0383, 0.0383, 0.0359, 0.028, 0.0247], [0.1723, 0.0494, 0.0319, 0.0264, 0.0248, 0.0219, 0.0219, 0.0182], [0.2513, 0.0527, 0.0265, 0.0234, 0.0206, 0.0194, 0.0133, 0.0125], [0.5728, 0.0684, 0.039, 0.0153, 0.0127, 0.0112, 0.0082, 0.0077], [0.4394, 0.2209, 0.0463, 0.0339, 0.0086, 0.0086, 0.0063, 0.0059], [0.313, 0.1226, 0.1016, 0.0374, 0.0166, 0.0166, 0.0121, 0.0107], [0.3289, 0.1554, 0.0734, 0.0393, 0.0154, 0.0145, 0.0128, 0.0106], [0.2838, 0.1617, 0.0318, 0.0233, 0.0193, 0.0181, 0.0181, 0.0141], [0.3599, 0.0969, 0.0379, 0.0203, 0.0149, 0.014, 0.0131, 0.0131], [0.3442, 0.0678, 0.0438, 0.0363, 0.0207, 0.0171, 0.0142, 0.0125], [0.2701, 0.0532, 0.0343, 0.0343, 0.0285, 0.0251, 0.0208, 0.0162], [0.1296, 0.0652, 0.0421, 0.0421, 0.0328, 0.0308, 0.0289, 0.024], [0.203, 0.1021, 0.0453, 0.0426, 0.0311, 0.0292, 0.0275, 0.0275], [0.2596, 0.1574, 0.1226, 0.0744, 0.0257, 0.0213, 0.0166, 0.0156], [0.6628, 0.1305, 0.0792, 0.0374, 0.0227, 0.0089, 0.0078, 0.0065], [0.4596, 0.3159, 0.1317, 0.0622, 0.0178, 0.0045, 0.0015, 0.0006], [0.5901, 0.3159, 0.0549, 0.0108, 0.0095, 0.004, 0.004, 0.0021], [0.9847, 0.0059, 0.0031, 0.0031, 0.0012, 0.001, 0.0003, 0.0001], [0.9716, 0.0139, 0.0065, 0.0021, 0.0015, 0.0015, 0.001, 0.0002], [0.6048, 0.2857, 0.0722, 0.0076, 0.0059, 0.0046, 0.0032, 0.0032], [0.9938, 0.0025, 0.0013, 0.001, 0.0004, 0.0003, 0.0001, 0.0001], [0.9969, 0.0013, 0.0006, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001], [0.9871, 0.0031, 0.0028, 0.0017, 0.0015, 0.0009, 0.0004, 0.0004], [0.9865, 0.0036, 0.0031, 0.0013, 0.001, 0.0009, 0.0007, 0.0004], [0.9919, 0.0017, 0.0013, 0.0012, 0.0009, 0.0009, 0.0004, 0.0004], [0.9888, 0.004, 0.0025, 0.0009, 0.0009, 0.0006, 0.0006, 0.0004], [0.9657, 0.0156, 0.0107, 0.0035, 0.0008, 0.0007, 0.0007, 0.0004], [0.5444, 0.3741, 0.0574, 0.0186, 0.0009, 0.0008, 0.0007, 0.0003], [0.647, 0.1854, 0.0992, 0.0531, 0.0081, 0.0017, 0.0007, 0.0005], [0.4817, 0.2275, 0.1772, 0.0948, 0.0069, 0.0032, 0.0018, 0.0011], [0.4759, 0.3706, 0.0937, 0.0502, 0.0041, 0.0022, 0.0007, 0.0006]], "ranks": {"Rust": [71389, 58910, 58498, 34524, 15369, 7923, 18078, 16700, 27774, 25741, 16696, 17836, 12391, 18497, 30684, 29812, 38378, 61917, 89956, 89494, 76620, 100830, 111600, 59841, 78085, 81955, 85464, 35034, 33474, 51079, 60824, 28047, 26133, 42054, 52550, 40017, 43405, 48555, 46871, 43948, 23920, 18310, 18265, 21813, 23199, 13179, 12258, 10501, 12472, 26805, 45137, 29570, 44825, 72315, 52119, 41127, 17824, 10309, 5538, 2954, 1576, 564, 447]}}, {"pos": 521, "top": [[",", ".", "\u2013", ";", "\u2026.", "-", "\u2026", "?"], ["\u2013", "-**", "\u2013and", "**\u2013", "tures", "  \n", "(**", ";**"], [".", "\u2013", ",", "\u2026", "\u2026.", "\u2026**", "\u2026..", "**\u2013"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " **\u300c", " **>>", " milfs", " **\u25cb", " **\u00ab", " Blowjob"], ["CHF", "-**", "teenth", " CHF", " **#", "(**", " **\u2022", " **+"], ["-**", "(**", "\u2026**", "CHF", "**!", " **#", " **\"", "tf"], ["...**", "  \n", "  \n\n\n", "**", "   \n", "\u2026**", " **", "-**"], ["   \n", "-**", "...**", " **\u00ab", " **", " **\u300c", "(**", " **#"], ["...**", "  \n\n\n", "...", "\u2026**", "   \n", "**!", "(**", " **#"], ["|RF", "\u2026**", "\u2026", "-**", "-if", "tf", ",//", "VF"], ["...", "\u2026", "...**", "\u2026**", "#", "if", "\u00a0", "\u2014"], [" **", " **\u00ab", "...**", " **\u300c", " **#", " **\u2022", "-**", " **+"], [" **\u00ab", " **\u300c", "...**", " **\u201e", "\u2026**", " **", "-**", " **\u2022"], [" **\u00ab", " **\u300c", "...**", " veggies", " **\u201e", "|RF", " \u00bb**", "uire"], [" goofy", "erguson", " veggies", "/if", " folks", " goof", " \u0445\u043e\u0442\u044c", "tf"], [" veggies", " goofy", " folks", "\u797a", "erguson", "uire", "/if", "razier"], [" veggies", "/if", "-ish", " goofy", " \u0445\u043e\u0442\u044c", "\u797a", "erguson", "razier"], ["erguson", "razier", "/if", " OTHERWISE", " \u0445\u043e\u0442\u044c", "ensif", "rames", "itif"], ["erguson", "razier", "/if", "\u00a3o", "\u2014if", "efault", " \u0445\u043e\u0442\u044c", "idelity"], ["/if", "erguson", "\u2014or", "\u2014if", "yf", "efault", "\u2014even", "razier"], ["<|endoftext|>", "\u2014or", "if", "/if", "...", "\u2014if", "\u86c9", "\u2014even"], ["erguson", "/if", "efault", "\u00e3ng", "\u86c9", "razier", "ertain", "ewire"], [" ``", "/if", "erguson", " ''", "\u86c9", "``", "ertain", "elsif"], ["<|endoftext|>", " ``", " ,", "if", " even", " otherwise", "\u86c9", " ultimately"], ["if", "/if", "\u86c9", "though", "Though", "\u2014or", "ertain", "any"], ["/if", "erguson", "\u86c9", "ertain", "efault", "ifr", "Luck", "omething"], ["\u86c9", "/if", "erguson", " **", "\u79ba", "efault", "ertain", "\u4ec0\u9ebd"], [" ,", " **", " or", " ``", " if", "\u86c9", " --", " _"], [" **", " if", "if", "\u86c9", " .**", " or", " otherwise", " ,"], [" **", " .**", "  ", " if", " )**", "   ", " ***", " or"], [" ...", " **", " .", " .**", "...", " if", "  ", " or"], [" **", " .", " if", " ...", " or", " ,", " even", "  "], [" if", " **", " or", " *", " even", " otherwise", " unless", " ,"], [" **", " unless", " if", " otherwise", " or", " technically", " improperly", " potentially"], ["\u2014if", " if", "\u2014or", " unless", " technically", "unless", "if", " \u2014"], [" unless", "\u2014if", "\u2014or", "unless", " \u2014", " otherwise", " traditional", " due"], [" unless", "\u2014if", "unless", "\u2014or", "\u5982\u679c\u4e0d\u80fd", " improperly", "\u82e5\u65e0", " otherwise"], [" unless", "\u2014if", "unless", " inefficient", " improperly", " simplistic", "\u5982\u679c\u4e0d\u80fd", "\u2014or"], [" unless", " improperly", "unless", " inefficient", " simplistic", "\u82e5\u65e0", " poorly", " lazy"], [" improperly", " unless", " simplistic", " inefficient", "unless", " lazy", " inconvenient", " poorly"], [" improperly", " simplistic", " inefficient", " lazy", " unless", " unprotected", " inconvenient", " properly"], [" improperly", " simplistic", " inefficient", " integration", " coordination", " integrated", " unprotected", " poorly"], [" improperly", " simplistic", " inefficient", " improper", " lazy", " integration", " poorly", " properly"], [" improperly", " simplistic", " inefficient", " unprotected", " improper", " unsafe", " poorly", " incorrectly"], [" improperly", " inefficient", " simplistic", " improper", " incorrectly", " unprotected", " poorly", " unless"], [" improperly", " inefficient", " incorrectly", " inadvertently", " simplistic", " improper", " poorly", " unless"], [" improperly", " incorrectly", " improper", " inefficient", " inadvertently", " simplistic", " unless", " poorly"], [" improperly", " unless", " simplistic", " incorrectly", " improper", "\u672a\u53ca\u65f6", " poorly", " properly"], [" improperly", " incorrectly", " simplistic", " improper", " unless", "\u672a\u53ca\u65f6", " poorly", " inefficient"], [" improperly", " simplistic", " improper", " incorrectly", " clums", " poorly", " inefficient", " clumsy"], [" improperly", " improper", "\u672a\u53ca\u65f6", " incorrectly", " \u043d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e", "\u4e0d\u5f53", " poorly", " simplistic"], [" improperly", " poorly", " careless", " naive", "\u672a\u53ca\u65f6", " simplistic", "\u4e0d\u5f53", " improper"], [" improperly", " poorly", "\u4e0d\u5f53", " incorrectly", " improper", " \u043d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e", " careless", " naive"], [" improperly", " poorly", "\u4e0d\u5f53", " careless", "\u4e0d\u614e", " improper", " naive", " incorrectly"], [" improperly", " naive", " poorly", " na\u00ef", " incorrectly", "\u4e0d\u5f53", " careless", " \u043d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e"], [" naive", " improperly", " poorly", " na\u00ef", "\u4e0d\u5f53", "\u4f60\u4e0d", " careless", "\u4e0d\u597d"], [" naive", " na\u00ef", " improperly", " poorly", "\u4f60\u4e0d\u662f", " careless", " implemented", "\u5929\u771f"], [" naive", " improperly", " na\u00ef", " poorly", "\u4f60\u4e0d\u662f", "\u4f60\u4e0d", "\u4e0d\u597d", " implemented"], [" naive", " integration", " improperly", " na\u00ef", " archit", " poorly", "_integration", "\u4f60\u4e0d"], [" naive", " integration", " integrated", " improperly", " archit", " poorly", "\u96c6\u6210", " na\u00ef"], [" naive", " archit", " poorly", " implemented", " improperly", " you", " na\u00ef", " integrated"], [" archit", " naive", " integrated", " implemented", " not", " you", " poorly", " na\u00ef"], [" archit", " integrated", " naive", " you", " implemented", " not", " na\u00ef", " improperly"]], "p": [[0.5758, 0.3957, 0.0087, 0.0036, 0.0027, 0.0027, 0.0018, 0.0014], [0.0166, 0.0073, 0.005, 0.0047, 0.0047, 0.0033, 0.0031, 0.0029], [0.2561, 0.1994, 0.1371, 0.1371, 0.0474, 0.0474, 0.0185, 0.0136], [0.0264, 0.0248, 0.0181, 0.0181, 0.0097, 0.0086, 0.0076, 0.0071], [0.028, 0.0181, 0.0086, 0.0086, 0.0059, 0.0043, 0.0038, 0.0033], [0.0537, 0.0154, 0.0145, 0.0136, 0.0073, 0.0057, 0.005, 0.0044], [0.0878, 0.0775, 0.0728, 0.0603, 0.047, 0.0441, 0.0285, 0.0252], [0.0559, 0.0559, 0.0494, 0.0464, 0.0464, 0.0464, 0.0436, 0.0385], [0.1232, 0.0959, 0.0514, 0.0482, 0.0201, 0.0189, 0.0167, 0.0122], [0.0185, 0.0174, 0.005, 0.0047, 0.0044, 0.0041, 0.0039, 0.0037], [0.5231, 0.1408, 0.023, 0.0109, 0.0085, 0.0055, 0.0051, 0.004], [0.0885, 0.0781, 0.0734, 0.0648, 0.0504, 0.0128, 0.0064, 0.0053], [0.1125, 0.0322, 0.0322, 0.0134, 0.0098, 0.0098, 0.0077, 0.0049], [0.0531, 0.0111, 0.0076, 0.0056, 0.0053, 0.0053, 0.0049, 0.0049], [0.0084, 0.0079, 0.0065, 0.0057, 0.0045, 0.0031, 0.0031, 0.0025], [0.0106, 0.0088, 0.0057, 0.0053, 0.0047, 0.0044, 0.0039, 0.0034], [0.0117, 0.0097, 0.0076, 0.0067, 0.0063, 0.0049, 0.0043, 0.0038], [0.0238, 0.0088, 0.0047, 0.0041, 0.0039, 0.0034, 0.0034, 0.0028], [0.0171, 0.011, 0.0043, 0.0043, 0.0036, 0.0036, 0.0032, 0.003], [0.0065, 0.0054, 0.0051, 0.0035, 0.0023, 0.0021, 0.0019, 0.0018], [0.4377, 0.004, 0.004, 0.0033, 0.0033, 0.0024, 0.002, 0.0016], [0.0064, 0.0028, 0.0022, 0.0022, 0.0021, 0.0021, 0.0019, 0.0016], [0.0448, 0.0069, 0.0065, 0.0053, 0.0042, 0.0042, 0.0022, 0.0017], [0.0154, 0.0128, 0.0064, 0.0053, 0.0044, 0.0039, 0.0039, 0.0034], [0.0115, 0.0084, 0.0045, 0.0042, 0.0035, 0.0029, 0.0027, 0.0024], [0.0101, 0.0035, 0.0033, 0.0031, 0.0031, 0.0021, 0.0018, 0.0018], [0.0101, 0.0061, 0.0035, 0.0027, 0.0017, 0.0017, 0.0017, 0.0016], [0.0245, 0.0158, 0.0109, 0.0096, 0.0085, 0.0079, 0.0079, 0.0062], [0.0516, 0.0402, 0.0168, 0.007, 0.0066, 0.0066, 0.0054, 0.0051], [0.572, 0.0303, 0.0222, 0.0208, 0.0105, 0.0068, 0.006, 0.0044], [0.3211, 0.1425, 0.0594, 0.0408, 0.036, 0.036, 0.0318, 0.016], [0.3318, 0.0839, 0.0695, 0.0542, 0.0329, 0.0212, 0.0199, 0.0137], [0.1824, 0.1824, 0.1106, 0.0337, 0.028, 0.0132, 0.0124, 0.011], [0.0487, 0.0357, 0.0245, 0.0191, 0.0123, 0.0116, 0.0075, 0.0075], [0.0431, 0.0278, 0.0261, 0.0217, 0.0102, 0.0085, 0.008, 0.0075], [0.0417, 0.0392, 0.0368, 0.0287, 0.0223, 0.0163, 0.0087, 0.0082], [0.0764, 0.0674, 0.0299, 0.0264, 0.0233, 0.0103, 0.0091, 0.0081], [0.0807, 0.0336, 0.0262, 0.0231, 0.0204, 0.0192, 0.0159, 0.0103], [0.1633, 0.0874, 0.0388, 0.0342, 0.0284, 0.0152, 0.0126, 0.0126], [0.1498, 0.0429, 0.0314, 0.0295, 0.026, 0.0158, 0.0116, 0.0096], [0.1177, 0.0592, 0.028, 0.0232, 0.017, 0.015, 0.0117, 0.011], [0.225, 0.0416, 0.0173, 0.0163, 0.0105, 0.0099, 0.0093, 0.0093], [0.4193, 0.0366, 0.0237, 0.0105, 0.0105, 0.0099, 0.0093, 0.0093], [0.6299, 0.0517, 0.0378, 0.0139, 0.0108, 0.0102, 0.0074, 0.0074], [0.8095, 0.0314, 0.0158, 0.0096, 0.0079, 0.007, 0.0062, 0.0035], [0.8965, 0.0113, 0.0078, 0.0057, 0.0053, 0.0053, 0.0039, 0.0034], [0.9074, 0.0089, 0.0089, 0.0079, 0.0065, 0.0057, 0.0045, 0.0019], [0.9236, 0.0132, 0.0091, 0.008, 0.0046, 0.0023, 0.0018, 0.0017], [0.9285, 0.0091, 0.0071, 0.0055, 0.0033, 0.0017, 0.0017, 0.0012], [0.8393, 0.0224, 0.0068, 0.006, 0.005, 0.0041, 0.003, 0.0028], [0.9423, 0.0036, 0.0034, 0.0032, 0.0026, 0.0025, 0.0021, 0.0018], [0.9173, 0.0102, 0.0051, 0.0042, 0.0042, 0.0029, 0.0027, 0.0027], [0.977, 0.0058, 0.0035, 0.0021, 0.0015, 0.0013, 0.0009, 0.0007], [0.8997, 0.0349, 0.024, 0.01, 0.0042, 0.0042, 0.0042, 0.0025], [0.4979, 0.3422, 0.0865, 0.0409, 0.0091, 0.0034, 0.003, 0.0026], [0.5296, 0.2835, 0.0633, 0.0558, 0.0097, 0.0059, 0.0059, 0.0052], [0.7712, 0.0717, 0.0633, 0.0181, 0.0141, 0.0076, 0.0043, 0.0028], [0.5877, 0.1684, 0.0619, 0.0619, 0.0228, 0.0122, 0.0084, 0.0058], [0.5735, 0.0685, 0.0685, 0.0604, 0.0415, 0.0286, 0.0153, 0.0135], [0.2646, 0.2335, 0.1103, 0.059, 0.046, 0.0406, 0.0316, 0.0316], [0.3347, 0.1231, 0.0959, 0.0959, 0.0846, 0.0513, 0.0513, 0.0513], [0.4601, 0.1318, 0.0623, 0.0623, 0.0485, 0.0485, 0.0355, 0.0313], [0.4203, 0.1985, 0.0938, 0.073, 0.0569, 0.0502, 0.0163, 0.0135]], "ranks": {"Rust": [80776, 161355, 158113, 101492, 64558, 94079, 105140, 105079, 92462, 68128, 110885, 129657, 119178, 130211, 142111, 135305, 121337, 143267, 187174, 170557, 194127, 176427, 189456, 136906, 117618, 119563, 114414, 62046, 42053, 20359, 20940, 16331, 23000, 43525, 47733, 138046, 102992, 107238, 109348, 133478, 61861, 51891, 37426, 48327, 45113, 35519, 33349, 47124, 67519, 96515, 124664, 138750, 109587, 89965, 78997, 64620, 19808, 9045, 6411, 3212, 2041, 1086, 857]}}, {"pos": 522, "top": [[".", ",", "s", "?", ";", "!", ":", "\u2026."], [".", ",", "s", "?", "!!!", ";", "!", "\u2011"], [",", ".", "?", "\u2026", ";", "s", "\u2026.", "!"], ["sik", "erdale", "sprozess", "-------------</", " milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "----------</", "sache"], ["s", ",", ".", "!", ":", "a", "!!!", " \u201c"], [",", ".", "s", "!", "\u2026.", "\u2019s", ":", "?"], ["s", ",", ".", "!", "a", "\u2019s", "?", " \u201c"], ["s", ",", ".", "!", " @", "!!!", "(@", "a"], [",", ".", "s", "!", ";", "...", "?", "!."], [",", "s", ".", "!", "\u2026", ";", "\u00a0", "..."], [",", "s", ".", "...", "!", "\u00a0", "\u2026", ";"], ["s", "scape", "er", "sy", " comfortably", "\u2019s", "ska", " guys"], ["s", "...", "scape", ",", "er", " guys", "sy", " bigger"], ["s", " guys", ",", " bigger", "...", " Philly", "er", " mostly"], ["s", " just", " mostly", " going", " ", ",", "a", " big"], ["s", " just", " big", " even", "a", " going", " back", " more"], ["s", ",", "a", "e", " just", "o", " ", "\u2019s"], ["...", "s", " savvy", " Philly", " big", " bigger", "a", "e"], ["...", " ...", "s", " savvy", " just", " [...]", " big", "e"], ["s", " hugely", "e", " sprawling", " just", "...", "\u2014even", " wildly"], ["<|endoftext|>", "  \n\n", " \n\n", " \r\n\r\n", "\r\n\r\n", "   \n\n", "  \r\n\r\n", "\n\n"], [" sprawling", " aggressively", " savvy", " wildly", " quickly", "\u8fd9\u4e48\u505a", " hugely", " bigger"], [" aggressively", " ''", " outright", " even", " sprawling", " wildly", " just", " ``"], [" just", " even", " still", " eventually", " quickly", " ,", " ultimately", " more"], [" \r\n\r\n", " \n\n", "  \n\n", "   \n\n", "  ", "   ", " \r\n", "\r\n\r\n"], [" **", " wildly", " _____", " aggressively", " \r\n\r\n", " ____", " heavily", " sprawling"], [" **", " __", " @", " ___", " _", " @_", " ____", " _____"], [" \n\n", " @", "  \n\n", " \r\n\r\n", " **", " _", " __", " [["], [" \n\n", "  \n\n", " @", " \r\n\r\n", "\r\n\r\n", " **", " [[", " __"], [" ____", " __", " **", " _____", " ___", " ______", " ________", " \n\n"], [" \n\n", " ...", " ", " **", " .", " ,", "  ", " use"], [" ...", " ", " ,", " even", " @", " just", " using", " use"], [" even", " strategically", " quickly", " just", " using", " aggressively", " **", " only"], [" strategically", " tech", " aggressively", " leveraging", " seamlessly", " meticulously", " optimized", " **"], [" seamlessly", " strategically", "\u2014but", " tech", " leveraging", " meticulously", " aggressively", "\u2011"], [" \u2014", " deliberately", " aggressively", "\u2011", "\u2014but", " intentionally", "  \n\n", " seamlessly"], [" aggressively", " deliberately", " seamlessly", " inevitably", " awkward", " \u2014", " intentionally", " incredibly"], [" deliberately", " intentionally", " avoid", " awkward", " lazy", " inefficient", " seamlessly", " \u2014"], [" deliberately", " intentionally", " inefficient", " carefully", " avoid", " incorrectly", " lazy", " meticulously"], [" deliberately", " intentionally", " carefully", " lazy", " inefficient", " incorrectly", " avoid", " inadvertently"], [" deliberately", " lazy", " intentionally", " carefully", " avoid", " inefficient", " risk", " incorrectly"], [" deliberately", " intentionally", " carefully", " incorrectly", " lazy", " inefficient", " clever", " improperly"], [" deliberately", " intentionally", " improperly", " lazy", " sloppy", " carefully", " incorrectly", " clever"], [" deliberately", " improperly", " intentionally", " inefficient", " inadvertently", " dangerously", " risky", " inexperienced"], [" improperly", " inefficient", " incorrectly", " inadvertently", " inexperienced", " poorly", " deliberately", " hastily"], [" improperly", " inadvertently", " careless", " lazy", " blindly", " sloppy", " mistake", " inefficient"], [" improperly", " mistake", " inadvertently", " mistakes", " blindly", " careless", " clever", " lazy"], [" clever", " improperly", " anything", " hastily", " blindly", " lazy", " simplistic", " mistakes"], [" improperly", " naive", " na\u00ef", " simplistic", " mistakes", " sloppy", " mistake", " hastily"], [" improperly", " sloppy", " naive", " mistake", " mistakes", " careless", " na\u00ef", " simplistic"], [" improperly", " careless", " sloppy", " naive", " na\u00ef", "\u672a\u53ca\u65f6", "\u4e0d\u6ce8\u610f", "\u4e0d\u5c0f\u5fc3"], [" improperly", " careless", " naive", " na\u00ef", " sloppy", "\u672a\u53ca\u65f6", "\u4e0d\u6ce8\u610f", "\u4e0d\u5c0f\u5fc3"], [" improperly", " careless", " na\u00ef", " sloppy", " naive", " improper", "\u5077\u61d2", "\u4e0d\u5f53"], [" careless", "\u4e0d\u6ce8\u610f", " improperly", "\u4e0d\u5f53", "\u4e0d\u5c0f\u5fc3", "\u4e0d\u614e", " na\u00ef", " sloppy"], [" na\u00ef", " naive", " careless", "\u4e0d\u5c0f\u5fc3", "\u4e0d\u6ce8\u610f", "\u4e0d\u614e", "\u5929\u771f", " foolish"], [" na\u00ef", " naive", " careless", "\u4e0d\u5c0f\u5fc3", " aren", "\u4e0d\u6ce8\u610f", " lazy", "\u4e0d\u614e"], [" aren", " na\u00ef", " naive", " careless", " lazy", " isn", "\u4e0d\u5c0f\u5fc3", " weren"], [" aren", " na\u00ef", " naive", " weren", " isn", "\u2019re", " careless", " lazy"], [" aren", "\u2019re", " na\u00ef", " naive", " weren", "'re", " isn", " lazy"], ["\u2019re", " aren", "'re", " na\u00ef", " naive", " don", " are", " weren"], ["\u2019re", " aren", "'re", " na\u00ef", " naive", " are", " weren", " don"], ["\u2019re", " aren", "'re", " are", " na\u00ef", " naive", " weren", " don"], ["\u2019re", " aren", "'re", " na\u00ef", " naive", "\u2019s", " implement", " architect"]], "p": [[0.5856, 0.4025, 0.0084, 0.0011, 0.0009, 0.0003, 0.0003, 0.0002], [0.2482, 0.1505, 0.1414, 0.0066, 0.0035, 0.0035, 0.0033, 0.0018], [0.7204, 0.265, 0.0024, 0.0023, 0.0019, 0.0018, 0.0015, 0.001], [0.0024, 0.0022, 0.0017, 0.0016, 0.0014, 0.0014, 0.0014, 0.0013], [0.5462, 0.2924, 0.101, 0.0061, 0.0014, 0.0011, 0.0008, 0.0008], [0.5076, 0.2116, 0.1867, 0.0185, 0.0028, 0.0027, 0.0025, 0.0018], [0.9933, 0.0028, 0.0025, 0.0005, 0.0002, 0.0001, 0.0, 0.0], [0.9619, 0.0155, 0.0121, 0.0039, 0.0004, 0.0003, 0.0003, 0.0003], [0.548, 0.3767, 0.045, 0.0165, 0.0015, 0.0013, 0.0011, 0.0007], [0.9539, 0.0224, 0.0113, 0.0018, 0.0011, 0.0009, 0.0006, 0.0003], [0.5237, 0.2803, 0.1169, 0.0278, 0.0075, 0.0075, 0.0062, 0.0024], [0.4366, 0.0109, 0.0029, 0.0026, 0.002, 0.002, 0.002, 0.002], [0.6752, 0.007, 0.0055, 0.0055, 0.0052, 0.0043, 0.0028, 0.0028], [0.4244, 0.0198, 0.0136, 0.0088, 0.0078, 0.0073, 0.0073, 0.0064], [0.329, 0.0369, 0.0164, 0.0154, 0.0145, 0.0136, 0.0113, 0.0088], [0.4072, 0.0518, 0.0295, 0.0139, 0.0123, 0.0123, 0.0116, 0.0109], [0.5592, 0.1172, 0.0431, 0.0357, 0.0132, 0.0102, 0.0045, 0.004], [0.0487, 0.0457, 0.0245, 0.0131, 0.0123, 0.0085, 0.0085, 0.0079], [0.3344, 0.0352, 0.0189, 0.0095, 0.0074, 0.0074, 0.0065, 0.0058], [0.0105, 0.0098, 0.0092, 0.0092, 0.0092, 0.0087, 0.0072, 0.006], [0.202, 0.1897, 0.1573, 0.031, 0.02, 0.0188, 0.0078, 0.0065], [0.0065, 0.0058, 0.0037, 0.0035, 0.0031, 0.0029, 0.0027, 0.0027], [0.0136, 0.0088, 0.0083, 0.0078, 0.0069, 0.0057, 0.0057, 0.0057], [0.0286, 0.0252, 0.0127, 0.0099, 0.0099, 0.0082, 0.0064, 0.006], [0.0463, 0.0339, 0.015, 0.0125, 0.011, 0.011, 0.0103, 0.0097], [0.068, 0.0126, 0.0092, 0.0092, 0.0092, 0.0086, 0.0072, 0.0067], [0.1549, 0.0687, 0.0503, 0.0325, 0.0286, 0.0238, 0.0223, 0.0153], [0.3066, 0.0775, 0.0415, 0.0222, 0.0222, 0.0184, 0.0173, 0.0162], [0.2455, 0.0903, 0.0903, 0.0454, 0.0312, 0.0215, 0.0178, 0.0167], [0.2036, 0.1586, 0.116, 0.0797, 0.0749, 0.0704, 0.0377, 0.0276], [0.1392, 0.0512, 0.0352, 0.0292, 0.0292, 0.0227, 0.0227, 0.0177], [0.1075, 0.0448, 0.0308, 0.0255, 0.0225, 0.0212, 0.0175, 0.0165], [0.0475, 0.0326, 0.0224, 0.0211, 0.0211, 0.0175, 0.0164, 0.0136], [0.0394, 0.0394, 0.0288, 0.0254, 0.0239, 0.0154, 0.0154, 0.0145], [0.0283, 0.0266, 0.0266, 0.025, 0.0235, 0.0207, 0.0161, 0.0134], [0.0318, 0.0298, 0.0263, 0.0247, 0.0218, 0.0141, 0.0124, 0.0117], [0.0356, 0.0334, 0.0158, 0.0158, 0.0131, 0.0131, 0.0115, 0.0102], [0.0356, 0.0149, 0.0149, 0.0123, 0.0116, 0.0116, 0.0109, 0.0102], [0.1066, 0.0325, 0.0287, 0.0287, 0.0269, 0.021, 0.0144, 0.0135], [0.1026, 0.0402, 0.0294, 0.026, 0.0215, 0.0215, 0.019, 0.0139], [0.0808, 0.0297, 0.0279, 0.0262, 0.0218, 0.018, 0.0149, 0.014], [0.0796, 0.0353, 0.0228, 0.0178, 0.0178, 0.0157, 0.0138, 0.013], [0.096, 0.0426, 0.0275, 0.0258, 0.0228, 0.0201, 0.0189, 0.0167], [0.0573, 0.0239, 0.0224, 0.0186, 0.0175, 0.0175, 0.0154, 0.0145], [0.0908, 0.0379, 0.0295, 0.0244, 0.0216, 0.019, 0.019, 0.0179], [0.1127, 0.0441, 0.0344, 0.0323, 0.0323, 0.0251, 0.0236, 0.0222], [0.0369, 0.0369, 0.0347, 0.0238, 0.021, 0.0186, 0.0164, 0.0136], [0.0417, 0.0253, 0.0185, 0.0163, 0.0163, 0.0163, 0.0144, 0.0144], [0.0619, 0.0425, 0.0399, 0.0311, 0.0258, 0.0228, 0.0214, 0.0177], [0.1744, 0.0727, 0.0642, 0.0366, 0.0343, 0.0323, 0.0236, 0.0236], [0.2981, 0.0854, 0.0587, 0.0457, 0.0403, 0.0403, 0.0245, 0.0203], [0.2781, 0.1159, 0.0621, 0.0548, 0.0483, 0.0427, 0.0293, 0.0293], [0.3256, 0.1538, 0.1057, 0.0727, 0.0389, 0.0173, 0.0152, 0.0152], [0.4438, 0.1441, 0.0771, 0.053, 0.053, 0.0364, 0.0322, 0.0221], [0.5376, 0.3261, 0.0567, 0.0162, 0.0077, 0.0053, 0.0041, 0.0041], [0.4796, 0.3296, 0.0307, 0.0271, 0.0211, 0.0088, 0.0088, 0.0073], [0.7607, 0.1167, 0.0909, 0.004, 0.0023, 0.0021, 0.0021, 0.0021], [0.9853, 0.0059, 0.004, 0.0012, 0.001, 0.0008, 0.0002, 0.0002], [0.9345, 0.0282, 0.0171, 0.0133, 0.0012, 0.0007, 0.0004, 0.0004], [0.8091, 0.1241, 0.0517, 0.0055, 0.0042, 0.001, 0.0007, 0.0004], [0.7156, 0.205, 0.0666, 0.0043, 0.0023, 0.0011, 0.0008, 0.0003], [0.8806, 0.0723, 0.0438, 0.0015, 0.0004, 0.0001, 0.0001, 0.0001], [0.9764, 0.0158, 0.0066, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001]], "ranks": {"Rust": [15828, 35147, 26281, 35681, 2527, 5473, 7577, 4765, 10673, 7316, 7595, 5951, 2327, 4114, 7906, 5107, 6532, 27615, 40027, 35806, 45236, 20431, 18298, 5017, 2142, 895, 1196, 2721, 2203, 3646, 4591, 6140, 5697, 7336, 10772, 10054, 5091, 7299, 14627, 14527, 6295, 7516, 4656, 5998, 6661, 4172, 5992, 10791, 6826, 19693, 36182, 36646, 36636, 54415, 47875, 46740, 22830, 20642, 13263, 12572, 5960, 3481, 1316]}}, {"pos": 523, "top": [[" \u2013", "\u2013", "**\u2013", "\u2013and", "\u2013\u2013", ".\u2013", " \u2013,", " **\u2013"], ["**\u2013", " \u2013", "\u2013\u2013", " \u2013**", " **\u2013", "\u2013", "\u2013and", "  \r\n"], [" \u2013", "\u2013", "**\u2013", "\u2013\u2013", "\u2013and", "\u2026", "\u2026\u201d", " **\u2013"], ["**\u2013", "\u2013\u2013", " **\u2018", " **\u2013", " \u2013**", " \r\n", "iha", "\u2019**"], ["\u2013\u2013", " \u2013", "**\u2013", "i", "\u2013", " **\u2013", "\u2026\u201d", "\uff0d"], ["\u2013\u2013", "**\u2013", "\u2013", "\u2026\u201d", " \u2013", " **\u2013", "\u2013and", "i"], ["\u2013\u2013", "i", " \u2013", "\u2013", "**\u2013", "\u2026\u201d", "\u2026", "\u2019"], ["\u2013\u2013", "**\u2013", " \u2013", "\u2013", "i", "\u2026\u201d", "\u2013and", " \r\n\r\n"], ["\u2026\u201d", " \u2013", "\u2013\u2013", " \u2018", "\u2026", "\u2013", "\u2019", "\u2018"], ["\u2013\u2013", " \u2013", "\u2026\u201d", "\u2013", "**\u2013", " \u2018", " \u2019", "\u2026"], [" \u2013", "\u2013\u2013", "\u2026\u201d", "**\u2013", "\u2013", " \u2018", " \u2019", "i"], ["\u2013\u2013", "**\u2013", " \u2013", " \u2019", " **\u2013", "\uff0d", "i", " \u2018"], ["\u2013\u2013", "**\u2013", " \u2013", "\u2013", "\uff0d", "\u2013and", " **\u2013", " \u2018"], ["\u2013\u2013", "**\u2013", " \u2013", "\u2013and", "\uff0d", "\u2013", " **\u2013", "i"], ["\u2013\u2013", " \u2013", "**\u2013", "\u2013", "\u2013and", "\uff0d", "i", " \u2019"], ["\u2013\u2013", "**\u2013", " \u2013", " \u2019", "\u2013and", " folks", "\u2013", "\uff0d"], ["\u2013\u2013", " \u2013", "**\u2013", "\u2013", "\u2013and", "i", " \u2019", "\u2019t"], ["**\u2013", "\u2013\u2013", " \u2013", "\u2013and", " **\u2013", " *\u2013", "\u2013", " \u2013**"], ["\u2013\u2013", "**\u2013", "\u2013and", "\u2019ll", "\u2019t", "i", " \u2013", "\uff0d"], ["\u2013\u2013", "**\u2013", " \u2013", "\u2013and", "\u2013", "\u2019t", " \u2019", "\uff0d"], ["\u2013\u2013", "\u2013and", "**\u2013", " \r\n", "\u2013", "\uff0d", " \r\n\r\n", " \u2013"], ["**\u2013", "\u2013\u2013", "\u2013and", " folks", "kids", " \r\n", " *\u2013", " savvy"], ["\u2013\u2013", "**\u2013", " \r\n", " folks", "\u2013and", " pricey", " savvy", " \r\n \r\n"], ["\u2013\u2013", " \r\n", "**\u2013", " folks", " \u00ad", "\u2013and", "\uff0d", " \u2019"], [" \r\n\r\n", " \r\n", "\u2013\u2013", "**\u2013", " \n  \n", " \r\n \r\n", " \u00ad", "\u2013and"], ["**\u2013", " \r\n", "\u2013\u2013", " \r\n\r\n", " folks", "\u2011", " \r\n \r\n", " \n  \n"], ["\u2013\u2013", " \r\n\r\n", "**\u2013", "\u2011", " \r\n", " folks", " \r\n \r\n", " \u2019"], ["\u2011", " \r\n\r\n", " \u2019", " \u00ad", "\u2013\u2013", " \r\n", "\u2013", " \n  \n"], ["\u2011", " \u00ad", " \u2019", "\u2013", "\u2013\u2013", " \r\n\r\n", " \u2013", " \n  \n"], ["\u2011", " \n  \n", " \u2019", " \r\n\r\n", " \r\n", " \u00ad", " \r\n \r\n", " \ufffd"], ["\u2011", " \n  \n", " \u2019", " \r\n\r\n", " \u2013", " \u00ad", " \n\n", " \r\n \r\n"], ["\u2011", " \u2013", " \u2019", " \u2018", " \n  \n", " \ufffd", " \u00ad", "\u2013"], ["\u2011", " \u2013", " \u2019", " \u2018", " \u00ad", " \n  \n", "\u2013", " \u201c"], ["\u2011", " \u2019", " \u2018", " \u2013", " \u00ad", " \r\n\r\n", "\u2014even", "\u2014but"], ["\u2011", " \u2019", " \r\n\r\n", "\u2014but", "\u2013\u2013", " \n  \n", "\u2014you", "\u2019t"], ["\u2011", "\u2014but", " \u2013", " \u2019", "\u2019t", "\u2014you", "\u2013and", "\u2019ll"], ["\u2011", "\u2014but", "\u2014you", "\u2014if", "\u2014even", "\u2013\u2013", " simplistic", " \u2013"], ["\u2011", "\u2014you", " \u2013", " simplistic", "\u2013and", "\u2019ll", "\u2013\u2013", "\u2014but"], ["\u2011", " simplistic", " \u2013", " \u2019", " sloppy", " panicked", "\u2014you", "\u2019ll"], ["\u2011", " simplistic", " sloppy", " \u2013", " savvy", "\u2013", "\u2013and", "\u2019ll"], ["\u2011", " simplistic", " sloppy", " savvy", " paranoid", " trying", " panicked", " tweaking"], ["\u2011", " simplistic", " sloppy", " savvy", " tweaking", " trying", " na\u00ef", " paranoid"], [" sloppy", " simplistic", "\u2011", " savvy", " syncing", " paranoid", " tight", " na\u00ef"], [" simplistic", " sloppy", " panicked", " na\u00ef", " awkward", " paranoid", " trying", " frantic"], [" sloppy", " simplistic", " na\u00ef", " inefficient", " panicked", " trying", " overly", " poorly"], [" sloppy", " simplistic", " clumsy", " careless", " na\u00ef", " inefficient", " panicked", " clums"], [" sloppy", " simplistic", " na\u00ef", " syncing", "\u2014if", " clumsy", " panicked", " careless"], ["\u2014if", " simplistic", " sloppy", " trying", " syncing", " na\u00ef", "\u2014you", " decent"], [" trying", "\u2014if", " simplistic", " sloppy", " na\u00ef", " syncing", " decent", " improperly"], [" sloppy", " trying", " improperly", " simplistic", " na\u00ef", "trying", " misguided", " clumsy"], ["\u2019ll", " na\u00ef", " sloppy", " careless", " improperly", "=\u201d", " trying", " simplistic"], [" na\u00ef", " sloppy", " trying", " careless", "\u2019ll", "trying", "\u8bd5\u56fe", " clumsy"], [" careless", " sloppy", " na\u00ef", " trying", " lazy", " clumsy", " naive", "trying"], [" careless", "\u4e0d\u6ce8\u610f", " unlucky", "\u4e0d\u5c0f\u5fc3", " sloppy", " clumsy", "\u4e0d\u614e", " na\u00ef"], [" careless", " unlucky", " na\u00ef", "\u4e0d\u6ce8\u610f", " naive", " sloppy", "\u4e0d\u5c0f\u5fc3", " clumsy"], [" careless", " unlucky", " lazy", " sloppy", " naive", " na\u00ef", " clumsy", "\u4e0d\u6ce8\u610f"], [" careless", " sloppy", " lazy", " naive", " unlucky", " careful", " na\u00ef", " clumsy"], [" careless", " unlucky", " lazy", " naive", " sloppy", " clumsy", " na\u00ef", "\u4e0d\u6ce8\u610f"], [" careless", " unlucky", " lazy", " naive", " sloppy", " not", " na\u00ef", " clumsy"], [" careless", " lazy", " not", " unlucky", " naive", " sloppy", " na\u00ef", " careful"], [" careless", " not", " \u201c", " lazy", " unlucky", " naive", " sloppy", " na\u00ef"], [" not", " careless", " unlucky", " naive", " lazy", " sloppy", " na\u00ef", "not"], [" not", " careless", " naive", " sloppy", " lazy", " unlucky", " na\u00ef", " lucky"]], "p": [[0.9054, 0.0842, 0.0078, 0.0011, 0.0007, 0.0003, 0.0001, 0.0001], [0.8986, 0.0507, 0.0186, 0.0145, 0.0069, 0.0053, 0.0012, 0.0006], [0.7395, 0.187, 0.0536, 0.0073, 0.003, 0.0024, 0.0018, 0.001], [0.5594, 0.1414, 0.0858, 0.0668, 0.0405, 0.0132, 0.0096, 0.0096], [0.5247, 0.193, 0.1171, 0.0553, 0.0158, 0.0109, 0.009, 0.008], [0.3782, 0.2946, 0.0844, 0.031, 0.031, 0.0242, 0.0166, 0.0147], [0.3379, 0.1409, 0.1409, 0.0854, 0.0587, 0.0518, 0.0314, 0.0148], [0.2903, 0.1761, 0.121, 0.0734, 0.0648, 0.0393, 0.0198, 0.0174], [0.2824, 0.1334, 0.0917, 0.0809, 0.063, 0.0491, 0.0433, 0.0382], [0.3568, 0.2779, 0.0902, 0.0547, 0.0483, 0.0228, 0.0178, 0.0178], [0.5002, 0.1624, 0.0869, 0.032, 0.0265, 0.0206, 0.0161, 0.0161], [0.4547, 0.1673, 0.1303, 0.0257, 0.0176, 0.0156, 0.0137, 0.0129], [0.3555, 0.2156, 0.1903, 0.0242, 0.0214, 0.0188, 0.0177, 0.0122], [0.3371, 0.2975, 0.1405, 0.026, 0.0215, 0.0215, 0.0179, 0.0102], [0.3856, 0.3003, 0.1105, 0.0359, 0.0359, 0.0262, 0.0169, 0.015], [0.5652, 0.1046, 0.0765, 0.0385, 0.0319, 0.0182, 0.0125, 0.0104], [0.4798, 0.1765, 0.1375, 0.0649, 0.0394, 0.012, 0.0083, 0.0083], [0.5331, 0.2854, 0.0283, 0.0234, 0.0234, 0.0104, 0.0086, 0.0081], [0.3874, 0.2663, 0.0219, 0.0205, 0.0181, 0.016, 0.015, 0.0133], [0.4274, 0.0616, 0.0543, 0.0543, 0.048, 0.0351, 0.0291, 0.0257], [0.4274, 0.0842, 0.0698, 0.0698, 0.0655, 0.033, 0.0291, 0.0176], [0.2369, 0.2225, 0.0172, 0.0134, 0.0104, 0.0098, 0.0092, 0.0086], [0.2068, 0.1714, 0.0491, 0.0247, 0.0247, 0.0117, 0.0103, 0.008], [0.1836, 0.1046, 0.0464, 0.0319, 0.03, 0.0265, 0.0206, 0.0194], [0.2524, 0.112, 0.0989, 0.0412, 0.0342, 0.0283, 0.0283, 0.0221], [0.1775, 0.0787, 0.0613, 0.0613, 0.0308, 0.0226, 0.0187, 0.0165], [0.1115, 0.1115, 0.0766, 0.072, 0.0526, 0.0219, 0.0206, 0.0182], [0.337, 0.08, 0.0664, 0.0623, 0.0586, 0.0215, 0.0202, 0.019], [0.5003, 0.1116, 0.0527, 0.034, 0.032, 0.022, 0.0207, 0.0194], [0.3354, 0.1795, 0.062, 0.0547, 0.0483, 0.0454, 0.0332, 0.0157], [0.2936, 0.1571, 0.0543, 0.045, 0.0309, 0.0241, 0.02, 0.0188], [0.3368, 0.0907, 0.0907, 0.0456, 0.0402, 0.0229, 0.0139, 0.0139], [0.5209, 0.1402, 0.0705, 0.0294, 0.019, 0.0139, 0.0123, 0.0084], [0.5609, 0.1104, 0.0217, 0.0217, 0.0204, 0.0149, 0.0149, 0.0149], [0.353, 0.0396, 0.0308, 0.029, 0.0212, 0.0212, 0.0212, 0.0176], [0.4237, 0.0573, 0.0419, 0.037, 0.0225, 0.0198, 0.0154, 0.0154], [0.1292, 0.0539, 0.0539, 0.0307, 0.0225, 0.0198, 0.0198, 0.0186], [0.6296, 0.0158, 0.0148, 0.0115, 0.0108, 0.0102, 0.0096, 0.0096], [0.5974, 0.0218, 0.0159, 0.0124, 0.0124, 0.0075, 0.0062, 0.0062], [0.6677, 0.0228, 0.0178, 0.0079, 0.0074, 0.0058, 0.0054, 0.0048], [0.2507, 0.0765, 0.0319, 0.0206, 0.0141, 0.0133, 0.0133, 0.0133], [0.1305, 0.0743, 0.0424, 0.0227, 0.02, 0.0188, 0.0156, 0.0146], [0.0678, 0.0496, 0.0466, 0.0234, 0.0183, 0.0172, 0.0172, 0.0142], [0.0778, 0.0645, 0.0345, 0.0237, 0.0174, 0.0163, 0.0144, 0.0144], [0.0825, 0.0684, 0.0268, 0.0252, 0.0222, 0.0173, 0.0162, 0.0162], [0.1388, 0.0374, 0.031, 0.0257, 0.0241, 0.0241, 0.0241, 0.0213], [0.0784, 0.0574, 0.0476, 0.0348, 0.0211, 0.0175, 0.0175, 0.0136], [0.0762, 0.0492, 0.0462, 0.0434, 0.0434, 0.0298, 0.0263, 0.0247], [0.1001, 0.0503, 0.0503, 0.0473, 0.0417, 0.0223, 0.0163, 0.0154], [0.1409, 0.1031, 0.0457, 0.0404, 0.0335, 0.0261, 0.023, 0.0168], [0.1484, 0.1484, 0.1086, 0.0619, 0.0189, 0.0177, 0.0167, 0.013], [0.1419, 0.0861, 0.0809, 0.0522, 0.0522, 0.0491, 0.0298, 0.0218], [0.1613, 0.1423, 0.0811, 0.0716, 0.0408, 0.0338, 0.0263, 0.017], [0.6881, 0.1196, 0.0267, 0.0267, 0.0208, 0.0183, 0.0143, 0.0143], [0.5871, 0.1682, 0.0619, 0.0425, 0.0375, 0.0258, 0.0156, 0.0156], [0.6954, 0.1066, 0.0504, 0.0306, 0.027, 0.021, 0.0185, 0.0099], [0.9457, 0.0082, 0.0082, 0.0082, 0.0072, 0.005, 0.0039, 0.0039], [0.8698, 0.0298, 0.0232, 0.0181, 0.0159, 0.0085, 0.0085, 0.004], [0.7771, 0.0497, 0.0387, 0.0266, 0.0266, 0.0235, 0.0111, 0.0086], [0.7609, 0.0551, 0.0429, 0.0429, 0.0203, 0.0179, 0.0123, 0.0085], [0.4055, 0.1317, 0.1025, 0.0799, 0.0705, 0.0549, 0.0427, 0.0148], [0.9478, 0.0223, 0.0072, 0.0056, 0.0047, 0.0036, 0.001, 0.0009], [0.9304, 0.0193, 0.017, 0.008, 0.0071, 0.0063, 0.0017, 0.0009]], "ranks": {"Rust": [27746, 57745, 36246, 27278, 8221, 16289, 15035, 16372, 27852, 24408, 21076, 16410, 12114, 16892, 12045, 9288, 8759, 30751, 30181, 21699, 39254, 39778, 36061, 13494, 18095, 16669, 8486, 6266, 5695, 4459, 4308, 5095, 6473, 13418, 21342, 59639, 43883, 49964, 54181, 51767, 30563, 30939, 26868, 25428, 17972, 11823, 18787, 17863, 11089, 23729, 48323, 60693, 34810, 33178, 44924, 42784, 29433, 17605, 16948, 14609, 7596, 2868, 2476]}}, {"pos": 524, "top": [[".", ",", "\u2013", " \u2013", ";", "?", "s", "\u200b"], ["\u2013", " \u2013", ",", ".", ";", "\u2013and", ".\u2013", "\u200b"], ["\u2013", ",", ".", " \u2013", "\u2026..", "\u2026", "\u2026.", "?"], [" Shemale", "\ufffd\ufffd", " Guta", " \u041a\u0440\u0430\u0441\u0438", "\ufffd\ufffd", " \u041f\u043e\u043f\u0440\u043e", " milfs", " Pubbl"], ["s", ",", ".", "\u2013", "!", ".@", "?", " people"], [",", ".", "\u2013", "!", "s", ".\u2013", "\u00a0", " \ud83d\ude42"], ["s", ",", ".", "\u2013", "\u00a0", "!", " \u2013", "-"], [",", ".", "s", "!", "\u2013", " getting", " going", "\u00a0"], [",", ".", "\u00a0", "\u2013", "!", "\u2013and", " [\u2026]", ".\u2013"], [",", "\u00a0", "\u2013", ".", "\u00ad", "s", "!", "\u2013and"], ["\u00a0", ",", ".", "\u2013", " \u2013", " [\u2026]", "\u2026", "\u00ad"], ["\u00a0", "\u2013", " \u2013", " going", " \u00ad", "s", " getting", "&nbsp"], [" \u2013", "\u2013", " going", ",", " getting", " [\u2026]", "s", "\u00a0"], [" going", " getting", " \u2013", ",", "\u2013", " pretty", " [\u2026]", " guys"], [" going", " getting", " \u2013", " pretty", "\u2013", " looking", " just", " doing"], [" getting", " going", " guys", " big", " kids", " pretty", " just", " looking"], [" getting", " going", "\u2013", " \u2013", ",", " just", " looking", " pretty"], ["\u2013", " \u2013", " getting", ",", " going", "\u2013and", " \u00ad", "\u00a0"], ["\u2013", " \u2013", " \u00ad", " getting", " going", "\u2013and", "\u2013\u2013", " tweaking"], ["\u2013", " \u2013", " going", " getting", " \u00ad", "\u2013and", "\u00a0", " tweaking"], ["<|endoftext|>", "\u2013", "\u00a0", " \u00ad", " \u2013", "\u2013and", " going", "\ufffd"], [" tweaking", " getting", " going", " savvy", " outright", " \u00ad", " battling", " smack"], [" outright", " going", " tweaking", " savvy", " battling", " getting", " \u00ad", " hugely"], [" \u00ad", " going", " outright", " battling", " genuinely", " getting", " heavily", " just"], [" \u00ad", "\ufffd", "\u00a0", "\u2013", "&nbsp", "\u2013and", " genuinely", "\u2013\u2013"], [" savvy", " tweaking", " \u00ad", " plenty", " getting", " folks", " going", " hugely"], [" \u00ad", " savvy", " tweaking", " going", "\ufffd", " battling", " getting", " plenty"], [" \u00ad", " going", " heavily", " truly", " getting", " just", " battling", " plenty"], [" \u00ad", " heavily", " going", "\ufffd", " tweaking", " truly", " savvy", " aggressively"], [" savvy", " heavily", " tweaking", " aggressively", " truly", " \u00ad", " going", " getting"], [" incredibly", " heavily", " savvy", " truly", " aggressively", " going", " enough", " tweaking"], [" incredibly", " truly", " heavily", " aggressively", " clever", " quickly", " tough", " really"], [" incredibly", " truly", " strategically", " aggressively", " genuinely", " clever", " savvy", " heavily"], [" incredibly", " truly", " aggressively", " strategically", " tweaking", " meticulously", " savvy", " smarter"], [" incredibly", " truly", " aggressively", " genuinely", " meticulously", " tweaking", " strategically", " rigor"], [" incredibly", " aggressively", " truly", " meticulously", " strategically", " rigor", " heavily", " ridiculously"], [" aggressively", " incredibly", " meticulously", " rigor", " ridiculously", " strategically", " insanely", " truly"], [" incredibly", " aggressively", " meticulously", " rigor", " ridiculously", " insanely", " savvy", " paranoid"], [" careful", " meticulously", " carefully", " aggressively", " incredibly", " rigor", " meticulous", " deliberately"], [" meticulously", " careful", " carefully", " incredibly", " rigor", " aggressively", " meticulous", " deliberately"], [" careful", " meticulously", " carefully", " incredibly", " rigor", " aggressively", " meticulous", " paranoid"], [" careful", " meticulously", " carefully", " incredibly", " aggressively", " meticulous", " rigor", " paranoid"], [" careful", " meticulously", " carefully", " meticulous", " rigor", " incredibly", " paranoid", " aggressively"], [" careful", " meticulously", " carefully", " meticulous", " rigor", " paranoid", " aggressively", " incredibly"], [" careful", " carefully", " meticulously", " rigor", " meticulous", " paranoid", " strict", " properly"], [" careful", " meticulously", " carefully", " meticulous", " rigor", " aggressively", " strict", " paranoid"], [" meticulously", " careful", " meticulous", " carefully", " rigor", " incredibly", " aggressively", " strict"], [" meticulously", " careful", " carefully", " incredibly", " meticulous", " rigor", " aggressively", " strict"], [" meticulously", " careful", " meticulous", " incredibly", " rigor", " carefully", " aggressively", " rigorous"], [" meticulously", " careful", " meticulous", " carefully", " rigor", " incredibly", " explicitly", " strict"], [" careful", " meticulously", " carefully", " meticulous", " rigor", "\u7cbe\u5fc3", "\u4e25\u683c\u6267\u884c", "\u4e25\u683c\u63a7\u5236"], [" careful", " meticulously", " incredibly", " carefully", " meticulous", "\u6781\u5176", " rigor", " explicitly"], [" careful", " meticulously", " carefully", " meticulous", " aggressively", " rigor", "\u7cbe\u5fc3", " explicitly"], [" careful", " carefully", "\u5c0f\u5fc3", "\u614e", " meticulously", " meticulous", " aggressively", " rigor"], [" careful", " meticulous", "\u5c0f\u5fc3", " meticulously", " vigilant", " \u043e\u0441\u0442\u043e\u0440\u043e", "\u614e", " carefully"], [" careful", " meticulous", " vigilant", " ruthless", " paranoid", " aggressively", "\u5c0f\u5fc3", " meticulously"], [" careful", "\u5c0f\u5fc3", " meticulous", " carefully", "\u614e", " meticulously", " \u043e\u0441\u0442\u043e\u0440\u043e", "\u8c28\u614e"], [" careful", " meticulous", "\u5c0f\u5fc3", " aggressive", " \u043e\u0441\u0442\u043e\u0440\u043e", " ruthless", "\u614e", " carefully"], [" careful", " meticulous", " ruthless", " aggressive", " paranoid", "\u6781\u5176", " aggressively", " rigorous"], [" careful", " meticulous", " ruthless", " aggressive", " paranoid", " aggressively", " rigorous", " meticulously"], [" careful", " ruthless", " meticulous", " aggressive", " paranoid", " brutally", " extremely", " incredibly"], [" careful", " ruthless", " meticulous", " aggressive", " paranoid", " extremely", " brutally", " incredibly"], [" careful", " aggressive", " meticulous", " paranoid", " ruthless", " extremely", " incredibly", " brutally"]], "p": [[0.5839, 0.3541, 0.0373, 0.0156, 0.0035, 0.0008, 0.0006, 0.0005], [0.571, 0.2101, 0.1056, 0.0602, 0.0044, 0.0044, 0.0019, 0.0012], [0.5101, 0.241, 0.1656, 0.0326, 0.012, 0.0093, 0.0082, 0.0032], [0.0046, 0.0038, 0.0026, 0.0026, 0.0023, 0.0022, 0.0016, 0.0014], [0.1953, 0.1184, 0.1045, 0.0117, 0.0103, 0.0063, 0.0041, 0.0034], [0.5354, 0.1633, 0.0681, 0.0104, 0.0098, 0.0059, 0.0052, 0.0036], [0.264, 0.1705, 0.1413, 0.0589, 0.0553, 0.0278, 0.0116, 0.0102], [0.2273, 0.1074, 0.1074, 0.0225, 0.0187, 0.0165, 0.0137, 0.0094], [0.514, 0.2143, 0.1669, 0.0272, 0.0155, 0.005, 0.0033, 0.0021], [0.8465, 0.0695, 0.0328, 0.024, 0.0017, 0.0013, 0.0013, 0.0009], [0.4332, 0.2977, 0.1095, 0.0967, 0.0216, 0.0168, 0.0029, 0.0024], [0.1775, 0.0892, 0.0892, 0.0613, 0.0396, 0.0349, 0.0272, 0.0176], [0.2589, 0.1475, 0.0895, 0.0543, 0.051, 0.0423, 0.0241, 0.0188], [0.1557, 0.1291, 0.107, 0.0691, 0.0505, 0.0347, 0.0254, 0.0164], [0.1876, 0.129, 0.0446, 0.0224, 0.0211, 0.0211, 0.0175, 0.0164], [0.2908, 0.1764, 0.0288, 0.027, 0.0254, 0.0211, 0.0164, 0.0145], [0.1793, 0.1396, 0.0847, 0.0426, 0.04, 0.0228, 0.0167, 0.0138], [0.4651, 0.1607, 0.0522, 0.0337, 0.0279, 0.0192, 0.0116, 0.0116], [0.2123, 0.0608, 0.0445, 0.0347, 0.0254, 0.0198, 0.0164, 0.0136], [0.1245, 0.0458, 0.038, 0.0357, 0.0335, 0.023, 0.0149, 0.0102], [0.2688, 0.0989, 0.0564, 0.0221, 0.0183, 0.0118, 0.0104, 0.0086], [0.0151, 0.0142, 0.0142, 0.011, 0.0086, 0.0055, 0.0052, 0.0043], [0.0158, 0.0148, 0.0102, 0.0102, 0.009, 0.0085, 0.0079, 0.0066], [0.0227, 0.0138, 0.0083, 0.0074, 0.0065, 0.0065, 0.0061, 0.0061], [0.0699, 0.0699, 0.0617, 0.0374, 0.0156, 0.0138, 0.0069, 0.0061], [0.0179, 0.0168, 0.0116, 0.0109, 0.0109, 0.0102, 0.0096, 0.009], [0.0153, 0.0105, 0.0099, 0.0072, 0.0068, 0.0064, 0.006, 0.006], [0.0277, 0.0148, 0.0139, 0.0102, 0.0096, 0.0084, 0.007, 0.0066], [0.0413, 0.0162, 0.0126, 0.0111, 0.0104, 0.0098, 0.0086, 0.0086], [0.0214, 0.0214, 0.0189, 0.0138, 0.0122, 0.0122, 0.0114, 0.0107], [0.0169, 0.0169, 0.0158, 0.0149, 0.014, 0.014, 0.014, 0.0123], [0.0402, 0.0276, 0.0229, 0.0157, 0.0131, 0.0123, 0.0123, 0.0115], [0.0528, 0.0528, 0.0234, 0.022, 0.0183, 0.0171, 0.0142, 0.0118], [0.0443, 0.0367, 0.0324, 0.0185, 0.0174, 0.0153, 0.0144, 0.0127], [0.0537, 0.0288, 0.027, 0.0174, 0.0164, 0.0128, 0.0113, 0.0113], [0.1151, 0.0579, 0.0291, 0.0166, 0.0156, 0.0146, 0.0146, 0.0137], [0.0939, 0.0779, 0.0346, 0.0197, 0.0144, 0.0144, 0.0112, 0.0112], [0.08, 0.0623, 0.0428, 0.0202, 0.0158, 0.0148, 0.0148, 0.0139], [0.1753, 0.1453, 0.0881, 0.0367, 0.0324, 0.0252, 0.0223, 0.0185], [0.1959, 0.1265, 0.0869, 0.0527, 0.0437, 0.034, 0.032, 0.0207], [0.1499, 0.1243, 0.0909, 0.0802, 0.0379, 0.0335, 0.0295, 0.0203], [0.207, 0.1256, 0.0811, 0.0557, 0.0434, 0.0383, 0.0298, 0.0232], [0.2471, 0.1924, 0.0802, 0.0708, 0.0429, 0.026, 0.0245, 0.0191], [0.3651, 0.1185, 0.0923, 0.056, 0.0464, 0.0361, 0.0219, 0.0193], [0.3997, 0.0892, 0.0695, 0.0613, 0.0477, 0.0272, 0.0199, 0.0165], [0.3204, 0.1336, 0.104, 0.0631, 0.0491, 0.0205, 0.0205, 0.0192], [0.3189, 0.2192, 0.0914, 0.0712, 0.0554, 0.0489, 0.018, 0.0159], [0.2786, 0.1915, 0.1316, 0.0704, 0.0549, 0.0484, 0.0377, 0.0202], [0.232, 0.1807, 0.1242, 0.0753, 0.0665, 0.0457, 0.0403, 0.019], [0.4317, 0.1091, 0.085, 0.0662, 0.0455, 0.0455, 0.0215, 0.0148], [0.4615, 0.218, 0.0802, 0.0708, 0.0334, 0.0158, 0.0123, 0.0085], [0.3831, 0.181, 0.0588, 0.0588, 0.0458, 0.0278, 0.0278, 0.0216], [0.7165, 0.097, 0.0588, 0.0357, 0.0149, 0.0131, 0.0131, 0.007], [0.9724, 0.0095, 0.0045, 0.0027, 0.0024, 0.0017, 0.0011, 0.0008], [0.9633, 0.0094, 0.0057, 0.0039, 0.0035, 0.0019, 0.0019, 0.0016], [0.9321, 0.0193, 0.0081, 0.0063, 0.0049, 0.0049, 0.003, 0.0023], [0.999, 0.0007, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9946, 0.0022, 0.0009, 0.0004, 0.0003, 0.0003, 0.0002, 0.0002], [0.9542, 0.0175, 0.0154, 0.0034, 0.0021, 0.001, 0.0009, 0.0008], [0.9369, 0.0363, 0.0081, 0.0049, 0.003, 0.002, 0.0018, 0.0018], [0.9027, 0.035, 0.0212, 0.0114, 0.0088, 0.0029, 0.0025, 0.0022], [0.8774, 0.03, 0.0265, 0.0182, 0.0142, 0.0052, 0.0046, 0.0046], [0.8133, 0.0357, 0.0315, 0.0278, 0.0278, 0.0131, 0.0085, 0.0075]], "ranks": {"Rust": [29221, 52153, 53564, 31797, 10497, 9377, 12539, 9623, 15810, 19889, 16137, 14065, 5342, 7302, 14181, 7545, 6479, 15056, 29231, 15321, 24873, 27381, 25388, 13757, 15280, 9898, 8308, 7873, 9050, 7196, 7419, 7359, 12787, 18228, 18652, 39868, 23865, 47857, 68966, 56864, 25420, 23864, 16535, 16509, 17420, 9291, 15647, 12864, 18637, 48010, 110118, 115499, 67968, 74331, 100174, 99295, 80471, 63850, 82528, 68480, 22988, 7468, 7881]}}, {"pos": 525, "top": [["s", " \u2013", ".", "i", ",", "\u2026", "\u2013", "@"], ["s", "i", " \u2013", "es", "\u2013", "\u2026", "t", "\u00ae"], ["s", "\u2026", "i", " \u2013", "\u2013", ",", "\u2026.", "."], ["s", "ihi", "sprozess", "es", "sula", "sik", "iho", "sver"], ["s", "i", "es", ".@", "t", "@", "ar", " @"], ["s", "i", "t", "es", "\u2026", ".@", "@", "l"], ["s", "i", "t", "\u00ae", "@", ".@", " @", "es"], ["s", "i", " @", ".@", "@", "\u00ae", "!", "t"], ["s", ".", ",", "!", "i", "@", ".@", "?"], ["s", ",", "i", "@", ".@", "!", "\\_", "."], ["s", "i", ".@", ".", "@", "!", ".\\", " @"], ["s", " **", " _", "i", "es", ".@", "._", " ."], ["s", " .", ".", "!", " _", " nice", " pretty", " things"], ["s", " .", " pretty", "i", " things", " nice", " enough", " just"], [" .", "s", " ,", " just", " pretty", " going", " even", " things"], [" pretty", "s", " just", " going", " ,", " things", " looking", " clever"], ["s", " just", " pretty", " going", " ,", " even", " looking", " though"], [" \u2013", " pretty", " just", " going", " enough", " getting", " things", " even"], [" ,", " pretty", " just", "s", " even", " .", " enough", " going"], [" ,", " though", " just", " even", " pretty", " enough", "s", " going"], [" ,", " though", "<|endoftext|>", " just", " .", " even", " much", " going"], [" ,", " .**", " enough", " **", " folks", " .", " even", " pretty"], [" ,", " .**", " **", " enough", " even", " though", " .", " just"], [" ,", " .", " even", " just", " much", " though", " enough", " too"], [" ,", " .", " though", " even", " just", " much", " \u2013", ","], [" ,", " **", " .", " clever", " folks", " pretty", " things", " even"], [" ,", " **", " clever", " .", " _", " even", " just", " folks"], [" ,", " **", " _", " .", " even", " __", " just", " though"], [" ,", " **", " .", " even", " __", " clever", " just", " _"], [" **", " ,", " __", " .", " _", " .**", " ___", " even"], [" .", " ,", " **", " __", " _", " .**", " even", " ?"], [" .", " ,", " **", " even", " .**", " just", " _", " clever"], [" **", " .", " ,", " even", " clever", " .**", " wildly", " incredibly"], [" even", " **", " ,", " wildly", " incredibly", " truly", " much", " quickly"], [" wildly", " even", " **", " ,", " quickly", " dangerously", " incredibly", " aggressively"], [" wildly", " ,", " \u2013", " dangerously", " **", " even", " quickly", " incredibly"], [" wildly", " because", " dangerously", " notoriously", " horrific", " sloppy", " incredibly", " **"], [" wildly", " sloppy", " dangerously", " because", " quickly", " horrific", " awkward", " notoriously"], [" wildly", " dangerously", " quickly", " because", " horrific", " .**", " aggressively", " **"], [" dangerously", " wildly", " .**", " quickly", " horrific", " incredibly", " sloppy", " **"], [" dangerously", " quickly", " wildly", " because", " sloppy", " horrific", " disastrous", " incredibly"], [" dangerously", " wildly", " sloppy", " aggressively", " because", " quickly", " inadvertently", " horrific"], [" dangerously", " sloppy", " inadvertently", " aggressively", " catastrophic", " horrific", " reckless", " unintention"], [" dangerously", " inadvertently", " sloppy", " aggressively", " catastrophic", " disastrous", " wildly", " horrific"], [" inadvertently", " dangerously", " sloppy", " unintention", " catastrophic", " disastrous", " quickly", " mistakes"], [" inadvertently", " unintention", " inadvert", " dangerously", " inevitably", " mistakes", " disastrous", " sloppy"], [" inadvertently", " inevitably", " EVERY", " dangerously", " mistakes", " sloppy", " inadvert", " inevitable"], [" inevitably", " quickly", "\u2014and", " inadvertently", ".**", "\u2014or", " or", "\u2014even"], [".", "\u2014or", "\u2014and", ".**", " because", "\u6781\u6613", " causing", "\u6216\u56e0"], ["\u6216\u56e0", " because", ".", "\u2014or", "\u2014even", ".**", " due", " ruining"], ["\u6216\u56e0", ".", ".**", "\u2014or", " because", "**.", " due", "\u2014even"], [".**", ".", "\u2014or", "\u6216\u56e0", "**.", " because", "*.", "\u6216\u4e0e"], [".**", ".", "**.", " because", "*.", ".*", " due", "because"], [".**", ".", " because", "**.", "because", " Because", " due", "*."], [".**", ".", "\u2014or", "**.", "\u2014even", ".With", " because", " instantly"], [".**", ".", "**.", "\u2014or", "\u2014even", " instantly", " because", "\u77ac\u95f4"], [".", ".**", "**.", " Because", "\u2014or", "\u2014even", "\u77ac\u95f4", " because"], [".", ".**", "**.", " Because", " because", "\u77ac\u95f4", "\u2014even", "\u2014or"], [".", " because", " Because", ".**", "**.", " Combined", " instantly", " destroying"], [".", " Mid", " mid", " hitting", " because", "Mid", " middleware", " Middleware"], [".", " mid", " Mid", ",", " MID", " middleware", "Mid", " hitting"], [".", ",", " Mid", " mid", " MID", " because", " middleware", " Middleware"], [".", ",", " mid", " because", ".,", " Mid", " to", ",."]], "p": [[0.6417, 0.1622, 0.0868, 0.041, 0.0206, 0.0151, 0.0071, 0.0034], [0.9622, 0.0256, 0.0057, 0.0021, 0.0009, 0.0005, 0.0003, 0.0001], [0.8476, 0.0696, 0.0329, 0.0226, 0.0094, 0.0042, 0.0019, 0.0014], [0.7168, 0.0109, 0.0066, 0.0055, 0.004, 0.0038, 0.0035, 0.0035], [0.9992, 0.0006, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.995, 0.0036, 0.0002, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9844, 0.0124, 0.0008, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001], [0.959, 0.0146, 0.0047, 0.0047, 0.0031, 0.0017, 0.0015, 0.0009], [0.5077, 0.1133, 0.0882, 0.0882, 0.0503, 0.0286, 0.0269, 0.0093], [0.6221, 0.1225, 0.0656, 0.031, 0.031, 0.0227, 0.0129, 0.0121], [0.7553, 0.0376, 0.0376, 0.0293, 0.0228, 0.0178, 0.0108, 0.0084], [0.8494, 0.02, 0.0166, 0.0078, 0.0031, 0.0024, 0.0022, 0.0022], [0.4382, 0.0672, 0.0317, 0.015, 0.0091, 0.0071, 0.0067, 0.0067], [0.2373, 0.0639, 0.0266, 0.0207, 0.0172, 0.0104, 0.0098, 0.0086], [0.0754, 0.0587, 0.0314, 0.0295, 0.0245, 0.0179, 0.0179, 0.0123], [0.0859, 0.0758, 0.0629, 0.0279, 0.0231, 0.0217, 0.018, 0.0169], [0.1549, 0.0732, 0.0417, 0.0305, 0.0223, 0.021, 0.0163, 0.0163], [0.0564, 0.0342, 0.0302, 0.0221, 0.0221, 0.0134, 0.0126, 0.0118], [0.0388, 0.0267, 0.0267, 0.0251, 0.0235, 0.0183, 0.0183, 0.0172], [0.1389, 0.0424, 0.031, 0.0291, 0.0166, 0.0166, 0.0166, 0.0156], [0.1912, 0.0515, 0.0401, 0.0202, 0.013, 0.0108, 0.0101, 0.0084], [0.0404, 0.0216, 0.0168, 0.0123, 0.0085, 0.0079, 0.0079, 0.0079], [0.1858, 0.0236, 0.0184, 0.0173, 0.0135, 0.0105, 0.0098, 0.0098], [0.5059, 0.0268, 0.0196, 0.0163, 0.0127, 0.0105, 0.0077, 0.0072], [0.3948, 0.0416, 0.0416, 0.0163, 0.0163, 0.0135, 0.0112, 0.0068], [0.2196, 0.1104, 0.0522, 0.0358, 0.0231, 0.0204, 0.0192, 0.0192], [0.2787, 0.1316, 0.0294, 0.0215, 0.0215, 0.0202, 0.0102, 0.0084], [0.4187, 0.0728, 0.0344, 0.0268, 0.0222, 0.0196, 0.0135, 0.0126], [0.3489, 0.1284, 0.0503, 0.0269, 0.0174, 0.0153, 0.0119, 0.0105], [0.5854, 0.1306, 0.0792, 0.0451, 0.0257, 0.0121, 0.0057, 0.0057], [0.5595, 0.2332, 0.1102, 0.0124, 0.008, 0.0066, 0.0035, 0.0023], [0.5279, 0.1714, 0.1512, 0.0097, 0.0052, 0.0043, 0.0038, 0.0033], [0.4422, 0.1118, 0.1118, 0.0466, 0.0151, 0.0104, 0.0081, 0.0076], [0.1166, 0.1029, 0.0551, 0.0334, 0.019, 0.0179, 0.0158, 0.0158], [0.0399, 0.0331, 0.0257, 0.0213, 0.0188, 0.0147, 0.0129, 0.0122], [0.0599, 0.0341, 0.0321, 0.025, 0.025, 0.0194, 0.0142, 0.0142], [0.0493, 0.0361, 0.0248, 0.0248, 0.0193, 0.0171, 0.016, 0.016], [0.046, 0.0246, 0.0192, 0.018, 0.018, 0.0169, 0.0149, 0.0149], [0.0335, 0.0335, 0.0278, 0.0216, 0.0203, 0.0191, 0.0158, 0.0158], [0.0499, 0.0343, 0.0303, 0.0251, 0.0208, 0.0195, 0.0162, 0.0162], [0.044, 0.0267, 0.0251, 0.0251, 0.0183, 0.0172, 0.0118, 0.0118], [0.0443, 0.0223, 0.0197, 0.0197, 0.0173, 0.0163, 0.0163, 0.0144], [0.0527, 0.0362, 0.0341, 0.0171, 0.0142, 0.0142, 0.0111, 0.0104], [0.083, 0.0392, 0.0185, 0.0174, 0.0163, 0.0154, 0.0154, 0.0144], [0.055, 0.0428, 0.026, 0.0178, 0.0178, 0.0168, 0.0148, 0.0148], [0.0983, 0.0319, 0.0265, 0.0234, 0.0206, 0.0182, 0.0171, 0.0151], [0.068, 0.0638, 0.025, 0.0235, 0.0207, 0.0183, 0.0183, 0.0172], [0.0636, 0.0386, 0.032, 0.0265, 0.0234, 0.0207, 0.0182, 0.0171], [0.1023, 0.0401, 0.0293, 0.0228, 0.0202, 0.0202, 0.0178, 0.0139], [0.2018, 0.0841, 0.0697, 0.0329, 0.0309, 0.02, 0.0176, 0.01], [0.1364, 0.0938, 0.0881, 0.0827, 0.0569, 0.0304, 0.0153, 0.0153], [0.2294, 0.1902, 0.1153, 0.0793, 0.0399, 0.0213, 0.0177, 0.0107], [0.3581, 0.2461, 0.0799, 0.0355, 0.0229, 0.0108, 0.0102, 0.0095], [0.3508, 0.1764, 0.107, 0.0649, 0.0224, 0.0224, 0.0145, 0.012], [0.2166, 0.0749, 0.0583, 0.0454, 0.0312, 0.0243, 0.0228, 0.0201], [0.3478, 0.0604, 0.0533, 0.0367, 0.0184, 0.0173, 0.0119, 0.0105], [0.1324, 0.1168, 0.0335, 0.023, 0.0216, 0.0203, 0.0203, 0.0179], [0.2526, 0.0724, 0.0266, 0.0195, 0.0172, 0.0152, 0.0134, 0.0111], [0.4255, 0.0372, 0.0308, 0.029, 0.0165, 0.0113, 0.01, 0.01], [0.4197, 0.0776, 0.0644, 0.0286, 0.0237, 0.0237, 0.0222, 0.0209], [0.7734, 0.034, 0.034, 0.0219, 0.0071, 0.0059, 0.0055, 0.0052], [0.9276, 0.0523, 0.0015, 0.0014, 0.0007, 0.0006, 0.0004, 0.0003], [0.9668, 0.0331, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [53262, 55295, 70982, 47689, 9106, 11896, 12300, 9372, 21398, 10353, 10907, 10234, 6004, 6816, 9294, 6649, 6948, 16850, 22604, 13120, 20996, 32794, 25264, 13132, 9346, 8904, 7464, 8287, 7078, 7689, 9689, 8736, 7831, 7987, 6615, 9170, 8329, 13527, 18398, 16055, 11750, 9741, 6467, 8447, 4681, 3867, 3036, 4098, 4172, 6462, 9437, 14296, 14728, 6077, 9612, 4589, 2324, 1461, 741, 263, 326, 86, 72]}}, {"pos": 526, "top": [[" \u2013", ".", ",", "\u2013", ";", "\u00a0", "\u00a0\u00a0", "\u2026."], [" \u2013", "\u2013", "\u2013and", ",", " \u200b\u200b", " \u2013,", ".", "\u2013\u2013"], ["\u2013", ",", " \u2013", ".", "\u2013and", "\u2026..", ";", "\u2026."], [" milfs", " Shemale", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "-------------</", " Blowjob", " ;;^", "----------</", " pornstar"], [" (@", ":@", " \u201c", " \u201c.", " Millennials", " cittadin", " \"@", " Aussie"], [" \u200b\u200b", ".", ",", ":", "!:", "!\u201d.", "<|quad_end|>", " \u201c."], ["  \n\n", "  \n", " \u201c", " \u201d", "!\u201d", " \n\n", "\uff01", " \u2018"], ["   \n\n", "   \n", "  \n\n", "  \n", "<|quad_end|>", " \n\n", "!.", " *@"], [" \n\n", "  \n\n", "   \n\n", "!\u201d", "    \n\n", "   \n", "!\u201d.", "     \n\n"], ["\u76f8\u8f85\u76f8\u6210", "\u5f88\u591a\u4eba\u7684", " though", "\u5927\u5496", "\u5162\u5162\u4e1a\u4e1a", "Luckily", "\u6bdb\u6cfd\u4e1c\u601d\u60f3", "\u63d0\u4f9b\u66f4\u52a0"], [" though", " @", " even", " mostly", " arguably", " albeit", " folks", " plenty"], [" folks", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " veggies", " **", " **#", "\u4e94\u82b1\u516b", " arguably", "\u751a\u81f3\u4f1a"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " veggies", " anyways", " arguably", " folks", "\u4e94\u82b1\u516b", "\u7c89\u4e1d\u4eec", "utang"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " veggies", " folks", " anyways", " ;;^", "\u4e94\u82b1\u516b", "\u751a\u81f3\u4f1a", " pricey"], [" arguably", " folks", " though", " savvy", " albeit", "\u751a\u81f3\u4f1a", "\u5e38\u5e38\u4f1a", " pricey"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " arguably", " folks", " savvy", "\u751a\u81f3\u4f1a", "\u4e94\u82b1\u516b", " ;;^", "\u5750\u62e5"], [" folks", " arguably", " incredibly", " savvy", " though", " albeit", "-esque", " mostly"], [" arguably", " folks", "-esque", " incredibly", " albeit", " tweaking", " sprawling", " savvy"], [" arguably", " incredibly", " albeit", " folks", "\u751a\u81f3\u4f1a", " even", "-esque", " anyways"], [" arguably", " though", " albeit", " even", " ultimately", " incredibly", " folks", " seemingly"], ["<|endoftext|>", " though", "though", "Though", " arguably", " ultimately", " swiftly", " albeit"], [" arguably", "\u62e5\u6709\u7740", "\u751a\u81f3\u4f1a", "\u5e38\u5e38\u4f1a", " incredibly", " ultimately", "\u4e5f\u4f7f\u5f97", " even"], [" arguably", " though", "\u62e5\u6709\u7740", " ultimately", " even", "\u4e5f\u4f7f\u5f97", " incredibly", " swiftly"], [" though", " arguably", " ultimately", " even", " eventually", " much", " heavily", " seemingly"], [" though", "though", "Though", " arguably", " ultimately", "\u5373\u4fbf", " even", " hugely"], [" arguably", " even", " though", " ultimately", " hugely", " incredibly", " heavily", " eventually"], [" arguably", " even", " ultimately", " eventually", " heavily", " though", " hugely", " notably"], [" even", " arguably", " though", " ultimately", " heavily", " eventually", " much", " notably"], [" arguably", " even", " though", " heavily", " ultimately", " eventually", " incredibly", " potentially"], [" even", " arguably", " heavily", " eventually", " ultimately", " potentially", " often", " increasingly"], [" even", " ,", " often", " heavily", " eventually", " much", " potentially", " many"], [" even", " ,", " many", " heavily", " much", " often", " eventually", " quickly"], [" even", " heavily", " much", " often", " quickly", " ultimately", " incredibly", " eventually"], [" heavily", " even", " massively", " rapidly", " aggressively", " incredibly", " notoriously", " wildly"], [" notoriously", " dangerously", " aggressively", " massively", " heavily", " rapidly", " incredibly", " horrific"], [" notoriously", " rapidly", " dangerously", " massively", " heavily", " aggressively", " \u201c", " inefficient"], [" notoriously", " inefficient", " rapidly", " sluggish", " massively", " aggressively", " inevitably", " dangerously"], [" notoriously", " rapidly", " inefficient", " massively", " aggressively", "\u2014even", " sluggish", " incredibly"], [" notoriously", " rapidly", " massively", " inefficient", "\u2014even", " incredibly", " sluggish", " aggressively"], [" rapidly", " sluggish", " notoriously", " incredibly", " inefficient", " massively", " slower", "\u2014even"], [" sluggish", " slow", " slower", " rapidly", " slowing", " fast", " inefficient", " speeds"], [" slow", " slower", " sluggish", " rapidly", " slowing", " speeds", " speeding", " fast"], [" slower", " slow", " sluggish", " slowing", " speeds", " speeding", " unpredictable", " fast"], [" slow", " slowing", " sluggish", " slower", " speeds", " rapidly", " massively", " inefficient"], [" slow", " slower", " rapidly", " slowing", " unpredictable", " inefficient", " sluggish", " fast"], [" slow", " unpredictable", " inevitably", " sluggish", " rapidly", " notoriously", " massively", " instantly"], [" inevitably", " inevitable", " ANY", " spikes", " instantly", " massively", " sluggish", " combined"], [" combined", " Combined", " ANY", "\u2014even", " instantly", " inevitably", " anywhere", "Combined"], [" combined", " Combined", "\u2014even", "Combined", "combined", " bursts", " crashes", " ANY"], [" combined", " ANY", " Combined", "Combined", "combined", " slightest", "\u518d\u52a0\u4e0a", " instantly"], [" ANY", "\u518d\u52a0\u4e0a", "Combined", "\u52a0\u4e4b", " Combined", " \uc544\ubb34\ub9ac", "combined", "\u4efb\u4f55\u5f62\u5f0f\u7684"], ["\u518d\u52a0\u4e0a", "\u52a0\u4e0a", "\u52a0\u4e4b", " Combined", "Combined", " **+", "combined", " combined"], ["\u518d\u52a0\u4e0a", " **+", " Combined", "\u52a0\u4e4b", "Combined", " combined", " ANY", "\u52a0\u4e0a"], [" **+", " ANY", " Combined", "\u518d\u52a0\u4e0a", " simultaneous", " syncing", "\u6bcf\u4e00\u6b21", " combined"], [" Combined", " combined", "Combined", "combined", " combining", "\u7ed3\u5408", " syncing", "\u4e0e\u6b64\u540c\u65f6"], [" Combined", " combined", "Combined", "combined", " combining", " syncing", " parsing", "\u7ed3\u5408"], [" Combined", " combined", "Combined", "combined", " Even", " combining", " syncing", " scripting"], [" Combined", " combined", "Combined", "combined", " combining", "\u7ed3\u5408", " Combine", " Even"], [" Combined", " combined", "Combined", "combined", " combining", " Even", " Combine", " parsing"], [" Combined", " combined", " Android", " Mid", " on", " parsing", " combining", " JavaScript"], [" Combined", " On", " Mid", " parsing", " scripting", " combined", " Android", " Parsing"], [" On", " Combined", " on", " Android", " Even", " Mid", " combined", " At"], [" On", " Combined", " At", " Even", " Mid", " When", " If", " With"]], "p": [[0.4647, 0.3619, 0.0915, 0.0629, 0.0052, 0.0018, 0.0017, 0.0012], [0.2933, 0.0578, 0.0094, 0.0027, 0.0025, 0.0024, 0.0015, 0.0013], [0.5615, 0.2066, 0.1106, 0.0671, 0.015, 0.008, 0.0049, 0.004], [0.0172, 0.0098, 0.0063, 0.0063, 0.0063, 0.0046, 0.0044, 0.003], [0.0042, 0.0035, 0.0019, 0.0018, 0.0015, 0.0014, 0.0014, 0.0013], [0.0361, 0.0052, 0.003, 0.0023, 0.002, 0.0019, 0.0015, 0.0013], [0.1159, 0.0426, 0.0426, 0.0376, 0.0312, 0.0312, 0.0293, 0.0214], [0.0805, 0.0668, 0.0261, 0.009, 0.0085, 0.008, 0.0075, 0.007], [0.2916, 0.2271, 0.2271, 0.012, 0.012, 0.0088, 0.0057, 0.0057], [0.0015, 0.0011, 0.0011, 0.001, 0.001, 0.0009, 0.0009, 0.0009], [0.0689, 0.027, 0.0224, 0.0174, 0.0164, 0.0106, 0.0093, 0.0093], [0.0092, 0.0087, 0.0053, 0.0041, 0.0034, 0.003, 0.0026, 0.0023], [0.0192, 0.0052, 0.0048, 0.0038, 0.0035, 0.0028, 0.0028, 0.0023], [0.0288, 0.0034, 0.0029, 0.0022, 0.0021, 0.002, 0.002, 0.0017], [0.0186, 0.0128, 0.005, 0.0042, 0.0039, 0.0032, 0.0032, 0.0027], [0.003, 0.0026, 0.0025, 0.0018, 0.0018, 0.0017, 0.0017, 0.0016], [0.0815, 0.0597, 0.0194, 0.0151, 0.0117, 0.0117, 0.011, 0.0091], [0.0268, 0.0251, 0.0126, 0.0098, 0.0077, 0.0068, 0.0068, 0.0064], [0.0369, 0.0093, 0.0082, 0.0077, 0.006, 0.0044, 0.0044, 0.0041], [0.0624, 0.023, 0.0216, 0.0158, 0.0131, 0.0102, 0.0084, 0.0079], [0.1145, 0.0508, 0.0212, 0.0199, 0.0165, 0.0113, 0.01, 0.0057], [0.0113, 0.0069, 0.0044, 0.0037, 0.0037, 0.0029, 0.0022, 0.0022], [0.0174, 0.0077, 0.0068, 0.0057, 0.0041, 0.0037, 0.0034, 0.0034], [0.0247, 0.0192, 0.018, 0.018, 0.0109, 0.0085, 0.0062, 0.0052], [0.0484, 0.0189, 0.0189, 0.0178, 0.007, 0.0065, 0.0062, 0.0062], [0.0183, 0.0118, 0.0098, 0.0072, 0.0067, 0.0056, 0.0046, 0.0041], [0.0301, 0.0266, 0.0207, 0.0118, 0.0104, 0.0104, 0.0056, 0.0052], [0.0506, 0.0476, 0.0348, 0.0225, 0.0198, 0.0186, 0.0154, 0.01], [0.1215, 0.1007, 0.0371, 0.0348, 0.0307, 0.0186, 0.0164, 0.0154], [0.1375, 0.0736, 0.0475, 0.0348, 0.0327, 0.0307, 0.0186, 0.0164], [0.1893, 0.0479, 0.0373, 0.035, 0.0241, 0.0241, 0.0212, 0.0212], [0.177, 0.042, 0.0289, 0.0255, 0.0187, 0.0175, 0.0175, 0.0145], [0.1079, 0.0273, 0.0176, 0.0146, 0.0129, 0.0129, 0.0121, 0.0121], [0.0383, 0.0317, 0.0247, 0.0247, 0.0218, 0.0192, 0.015, 0.0132], [0.0318, 0.0263, 0.0263, 0.0232, 0.0218, 0.0205, 0.0124, 0.0117], [0.0562, 0.0283, 0.0249, 0.0182, 0.0151, 0.0151, 0.0125, 0.0125], [0.0578, 0.0397, 0.0256, 0.0241, 0.0226, 0.0155, 0.0137, 0.0129], [0.0399, 0.0258, 0.0242, 0.0214, 0.0189, 0.0166, 0.0147, 0.0138], [0.0355, 0.0277, 0.0229, 0.0229, 0.0215, 0.0202, 0.0158, 0.0158], [0.0455, 0.0401, 0.0294, 0.0259, 0.0215, 0.0202, 0.019, 0.019], [0.0746, 0.0746, 0.0481, 0.0452, 0.0375, 0.0258, 0.0227, 0.0201], [0.0638, 0.0497, 0.0438, 0.0387, 0.0363, 0.0283, 0.022, 0.0195], [0.0485, 0.0485, 0.0455, 0.0355, 0.0244, 0.0229, 0.019, 0.0168], [0.0499, 0.044, 0.0365, 0.0343, 0.0251, 0.0221, 0.0195, 0.0172], [0.0463, 0.0281, 0.0219, 0.0219, 0.0219, 0.0181, 0.0181, 0.017], [0.0251, 0.0236, 0.0222, 0.0184, 0.0162, 0.0143, 0.0143, 0.0143], [0.0472, 0.0286, 0.0269, 0.0209, 0.0209, 0.0174, 0.0144, 0.0144], [0.382, 0.0378, 0.0314, 0.0244, 0.0229, 0.019, 0.0115, 0.0108], [0.4136, 0.0361, 0.0142, 0.0133, 0.0133, 0.0125, 0.011, 0.011], [0.1708, 0.0807, 0.0628, 0.0192, 0.018, 0.0116, 0.0096, 0.0091], [0.0437, 0.0386, 0.0386, 0.0265, 0.0249, 0.0194, 0.0182, 0.0171], [0.2737, 0.0737, 0.0539, 0.0539, 0.0394, 0.0327, 0.0225, 0.0211], [0.0936, 0.0729, 0.0644, 0.0345, 0.0345, 0.0268, 0.0237, 0.0222], [0.0938, 0.0569, 0.0471, 0.0269, 0.0209, 0.0209, 0.0185, 0.0173], [0.3689, 0.2873, 0.0933, 0.0823, 0.0267, 0.0098, 0.0081, 0.0077], [0.3004, 0.1822, 0.0714, 0.0714, 0.0263, 0.0192, 0.0103, 0.0091], [0.4878, 0.0961, 0.0426, 0.0312, 0.0259, 0.0243, 0.0138, 0.0122], [0.6088, 0.1539, 0.0441, 0.0343, 0.0173, 0.0119, 0.0077, 0.0064], [0.7566, 0.0904, 0.0259, 0.0148, 0.0108, 0.0095, 0.0051, 0.0045], [0.4038, 0.1683, 0.0702, 0.0376, 0.0258, 0.0214, 0.0214, 0.0201], [0.2996, 0.1102, 0.059, 0.0521, 0.0521, 0.0432, 0.0381, 0.0336], [0.7902, 0.0572, 0.0393, 0.0198, 0.012, 0.0093, 0.005, 0.0044], [0.9775, 0.0058, 0.004, 0.0031, 0.0027, 0.0011, 0.0008, 0.0007]], "ranks": {"Rust": [30660, 48152, 48405, 59053, 4516, 3479, 12162, 12188, 22625, 31102, 8646, 21371, 14019, 33035, 41652, 54457, 21031, 113311, 148747, 99788, 129733, 159413, 137670, 80296, 66735, 62511, 41486, 22725, 13362, 13175, 12579, 11369, 7496, 9880, 7710, 14022, 12989, 18938, 21224, 19546, 13222, 7858, 6069, 6448, 4354, 4001, 4865, 3717, 2213, 3947, 19579, 16273, 13868, 6154, 9882, 1582, 595, 428, 320, 30, 36, 28, 31]}}, {"pos": 527, "top": [[" \u2013", "\u2013", ",", ".", "<|endoftext|>", "\u2013and", ",.", "["], ["\u2013", " \u2013", "\u2013and", ",", " \u2013,", "\u2013\u2013", "?,", ".\u2013"], [",", "\u2013", " \u2013", ".", "\u2013and", ";", ".\u2013", ",."], ["slaught", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "erias", " aarhus", "\u52a0\u62ff\u5927\u7684", "matchCondition", "getc", "orgeous"], [",@", "@", "(@", ".@", ",", ":@", "@c", "!,"], ["!,", "!:", "!!,", "boarding", "!),", ":,", "!\u201d.", ","], ["slaught", ",on", "/off", "(`", "!!,", "edly", "!,", "`t"], ["nelly", "werpen", "athon", "nett", "!!,", "slaught", "alytics", "ivery"], ["!,", "athon", "!\u201d.", "nette", "!!,", "werpen", "\u00a7\u00c3", "    \n    \n"], ["!,", ",", "/off", "!!,", "-ish", "\u2013and", "+,", "\u00a7\u00c3"], [",", "-ish", "/off", ",@", "!,", "\u00c3", "\u00a0", "+,"], ["-ish", "/off", "nett", "ardon", "nette", "ecchio", "-esque", "\u0440\u044f\u0434\u0443"], ["ecchio", "-ish", "/off", "\u0440\u044f\u0434\u0443", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u623f\u7f51", "\u4e8b\u513f", "matchCondition"], ["-ish", "\u4e8b\u513f", "ecchio", "\u54e5\u534e", "-esque", " iepaz\u012b\u0161an\u0101s", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "/off"], [" folks", " Philly", "-ish", "/off", " savvy", " sorta", "-esque", "\u4e8b\u513f"], [" skinny", " folks", "\u4e8b\u513f", "matchCondition", "-ish", "\u3079\u304f", " savvy", " arguably"], ["-esque", "-ish", " skinny", " folks", " savvy", " plenty", " incredibly", " big"], ["-esque", "-ish", " savvy", " Aussie", " incredibly", "\u4e8b\u513f", " Philly", " skinny"], ["-esque", " arguably", "-ish", " incredibly", "\u4e8b\u513f", "\u00c3", " savvy", "(!"], [" arguably", "much", "-esque", " hugely", " seemingly", "\u4e8b\u513f", "(!", "\u00c3"], ["much", " arguably", " hugely", "<|endoftext|>", " myriad", " seemingly", "though", " much"], ["\u623f\u7f51", "matchCondition", "akaan", "\u5bf9\u6b64\u4e0d\u627f\u62c5\u4efb\u4f55", "\u4e8b\u513f", "\u5473\u513f", "ecchio", "itably"], [" arguably", "much", " hugely", " incredibly", " famously", "akaan", " myriad", " heavily"], [" much", "much", " arguably", " heavily", " seemingly", " hugely", " myriad", " \u00ad"], ["much", " arguably", " hugely", "\u5373\u4fbf", " {{--<", " famously", "akaan", " seemingly"], ["akaan", " arguably", " famously", " pricey", " gritty", " hugely", " {{--<", " incredibly"], [" arguably", " hugely", " gritty", " famously", " pricey", " heavily", " {{--<", " notoriously"], [" arguably", " heavily", " famously", " hugely", " typically", " vastly", " much", " seemingly"], [" heavily", " arguably", " gritty", "-heavy", " notoriously", " hugely", " pricey", " famously"], [" heavily", " **", " notoriously", " gritty", " arguably", "-heavy", " famously", " incredibly"], [" heavily", " incredibly", " ...", " notoriously", " **", " even", " massive", " heavy"], [" even", " heavily", " incredibly", " heavy", " huge", " massive", " high", " notoriously"], [" incredibly", " even", " heavily", " massive", " notoriously", " massively", " huge", " heavy"], [" incredibly", " notoriously", " massively", " gritty", " massive", " heavily", " brutal", " huge"], [" notoriously", " incredibly", " gritty", " massively", "\u2014even", "-heavy", "\u52a8\u8f84", " sluggish"], [" notoriously", " hardware", " overclock", " sluggish", "\u2014even", "-heavy", " multit", " gritty"], [" hardware", " notoriously", " overclock", " sluggish", " slower", "hardware", "\u2014even", "\u52a8\u8f84"], [" hardware", " overclock", " notoriously", " sluggish", " multit", "hardware", " Android", "\u2014even"], [" hardware", " overclock", "hardware", " multit", " Android", " sluggish", " iOS", " CPU"], [" hardware", " overclock", " sluggish", "hardware", " slower", " smartphone", " smartphones", " CPU"], [" hardware", " overclock", " smartphone", " sluggish", " Android", " CPU", " smartphones", "hardware"], [" hardware", " overclock", " Android", " smartphone", " CPU", "hardware", " CPUs", " Hardware"], [" hardware", " overclock", " sluggish", " Android", " smartphone", " smartphones", " iOS", " slower"], [" hardware", " overclock", " Android", " sluggish", " slower", " smartphone", " Hardware", " iOS"], [" hardware", " slower", " sluggish", " overclock", " Android", " smartphone", " smartphones", " weaker"], [" hardware", " sluggish", " weaker", " weak", " mediocre", " slower", " Android", " limited"], [" hardware", " sluggish", " weaker", " fragile", " weak", " mediocre", " limited", " weakest"], [" sluggish", " weak", " low", " mediocre", " hardware", " weaker", " limited", " weakest"], [" sluggish", " Android", " mediocre", " hardware", " weak", " CPUs", " iOS", " fragile"], [" hardware", " CPUs", " sluggish", " Android", " shaky", " iOS", "-tier", "aptops"], [" CPUs", " iOS", " Android", " smartphones", " shaky", "aptops", " hardware", " GPUs"], [" Android", " CPUs", " iOS", " desktop", " CPU", " mediocre", "\u53f0\u5f0f\u673a", " Linux"], [" CPUs", " desktop", " Android", " CPU", "\u4f4e\u7aef", " mediocre", "-tier", " hardware"], [" Android", " iOS", " desktop", " CPU", " CPUs", " hardware", "\u4f4e\u7aef", " iPhone"], [" Android", " iOS", " CPU", " CPUs", " desktop", " macOS", " iPhone", " hardware"], [" Android", " mid", " Mid", " iOS", "Android", " middleware", ",mid", "midd"], [" Android", " mid", " Mid", " iOS", ",mid", "Android", " middleware", " android"], [" Android", " mid", " desktop", " Mid", "Android", " iOS", " Desktop", " android"], [" Android", " mid", " desktop", " Mid", " Desktop", "Android", " android", ",mid"], [" mid", " Android", "mid", " Mid", ".mid", "(mid", ",mid", "Android"], [" mid", " Android", " Mid", "Android", "mid", "(mid", ".mid", " mobile"], [" mid", " Android", " Mid", "mid", ".mid", "(mid", "Android", " mobile"], [" mid", " Android", " mobile", " Mid", " desktop", " iOS", " a", "Android"]], "p": [[0.9363, 0.0411, 0.0118, 0.0071, 0.0008, 0.0003, 0.0003, 0.0002], [0.4271, 0.3769, 0.0479, 0.0166, 0.0042, 0.0031, 0.0022, 0.0014], [0.5615, 0.3406, 0.0592, 0.028, 0.0043, 0.0008, 0.0008, 0.0008], [0.0049, 0.0028, 0.0026, 0.0022, 0.0022, 0.0022, 0.0021, 0.0018], [0.0987, 0.0637, 0.0528, 0.0386, 0.0341, 0.0234, 0.022, 0.0207], [0.0139, 0.009, 0.007, 0.0058, 0.004, 0.0033, 0.0031, 0.0024], [0.0067, 0.0041, 0.0038, 0.0038, 0.0038, 0.003, 0.0028, 0.0026], [0.0079, 0.0058, 0.0051, 0.0048, 0.0048, 0.0045, 0.0037, 0.0037], [0.0083, 0.0061, 0.0061, 0.0061, 0.0057, 0.005, 0.0037, 0.0037], [0.0095, 0.0042, 0.0035, 0.0029, 0.0025, 0.0021, 0.002, 0.0017], [0.0345, 0.0112, 0.0112, 0.0087, 0.0082, 0.0082, 0.0041, 0.0039], [0.0054, 0.0048, 0.0026, 0.0021, 0.0019, 0.0018, 0.0018, 0.0016], [0.0058, 0.0058, 0.0037, 0.0026, 0.0019, 0.0018, 0.0017, 0.0017], [0.0069, 0.0029, 0.002, 0.002, 0.0018, 0.0017, 0.0017, 0.0016], [0.0041, 0.0038, 0.0034, 0.0023, 0.002, 0.0019, 0.0018, 0.0015], [0.002, 0.0017, 0.0014, 0.0011, 0.0011, 0.0011, 0.0011, 0.0011], [0.0074, 0.0054, 0.0048, 0.0033, 0.0031, 0.0026, 0.0024, 0.0024], [0.0056, 0.0053, 0.0025, 0.0019, 0.0018, 0.0017, 0.0016, 0.0014], [0.0064, 0.0028, 0.0021, 0.0018, 0.0018, 0.0017, 0.0017, 0.0015], [0.0035, 0.0032, 0.0024, 0.0016, 0.0015, 0.0014, 0.0014, 0.0014], [0.0064, 0.0027, 0.0021, 0.0021, 0.0016, 0.0015, 0.0012, 0.0012], [0.002, 0.002, 0.0011, 0.001, 0.001, 0.0009, 0.0008, 0.0008], [0.0044, 0.0036, 0.0022, 0.0017, 0.0015, 0.0013, 0.0013, 0.0013], [0.0064, 0.006, 0.0057, 0.0039, 0.0034, 0.0028, 0.0027, 0.0021], [0.0046, 0.0038, 0.003, 0.0023, 0.0022, 0.0017, 0.0017, 0.0017], [0.0022, 0.0022, 0.002, 0.0019, 0.0019, 0.0019, 0.0015, 0.0012], [0.003, 0.0026, 0.0026, 0.0023, 0.0022, 0.0018, 0.0015, 0.0014], [0.009, 0.0066, 0.0043, 0.0043, 0.0038, 0.0026, 0.0026, 0.0023], [0.0094, 0.0083, 0.0064, 0.005, 0.0047, 0.0044, 0.0042, 0.0042], [0.0137, 0.0137, 0.0128, 0.0121, 0.0083, 0.0083, 0.0078, 0.0069], [0.037, 0.0327, 0.0239, 0.0239, 0.0225, 0.0186, 0.0164, 0.0145], [0.0575, 0.0371, 0.0327, 0.0199, 0.0175, 0.0155, 0.0145, 0.0136], [0.0314, 0.0277, 0.023, 0.0216, 0.0216, 0.0149, 0.014, 0.0109], [0.0381, 0.0278, 0.0217, 0.0132, 0.0096, 0.0075, 0.007, 0.0066], [0.0252, 0.0127, 0.0087, 0.0077, 0.0064, 0.0044, 0.0041, 0.0041], [0.0265, 0.0171, 0.0133, 0.0076, 0.0071, 0.0071, 0.0059, 0.0049], [0.0457, 0.0334, 0.0216, 0.0203, 0.009, 0.0062, 0.0042, 0.004], [0.0388, 0.0236, 0.0118, 0.0081, 0.006, 0.0053, 0.0053, 0.0049], [0.1008, 0.054, 0.0128, 0.0113, 0.0078, 0.0069, 0.0061, 0.0061], [0.16, 0.097, 0.0191, 0.0191, 0.0158, 0.0109, 0.0102, 0.0102], [0.2129, 0.114, 0.0224, 0.0211, 0.0198, 0.0186, 0.0175, 0.0164], [0.3361, 0.0798, 0.0313, 0.0215, 0.0157, 0.0148, 0.0148, 0.0148], [0.2304, 0.0848, 0.0454, 0.04, 0.0275, 0.0201, 0.0167, 0.0167], [0.2389, 0.0501, 0.0344, 0.0304, 0.0222, 0.0173, 0.0153, 0.0135], [0.108, 0.0329, 0.0309, 0.0291, 0.0226, 0.0188, 0.0176, 0.0129], [0.054, 0.0308, 0.0255, 0.0175, 0.0175, 0.0165, 0.0137, 0.0121], [0.063, 0.0382, 0.0247, 0.0232, 0.0218, 0.0181, 0.0141, 0.0141], [0.0386, 0.0265, 0.0265, 0.0234, 0.0234, 0.0207, 0.0194, 0.0182], [0.0384, 0.0193, 0.0171, 0.0171, 0.0141, 0.0125, 0.0117, 0.0091], [0.0135, 0.0135, 0.0127, 0.0099, 0.0093, 0.0093, 0.0087, 0.0072], [0.0232, 0.017, 0.0091, 0.0091, 0.008, 0.0071, 0.0071, 0.0052], [0.0745, 0.0424, 0.0374, 0.033, 0.0177, 0.0129, 0.0114, 0.0095], [0.0543, 0.048, 0.0351, 0.033, 0.02, 0.02, 0.0188, 0.0176], [0.2848, 0.1048, 0.034, 0.032, 0.0282, 0.0234, 0.0171, 0.0161], [0.6282, 0.1237, 0.0516, 0.0167, 0.0115, 0.0095, 0.0079, 0.0074], [0.9057, 0.0656, 0.0069, 0.0042, 0.0033, 0.0029, 0.0025, 0.0008], [0.9602, 0.0256, 0.0027, 0.0016, 0.0016, 0.0014, 0.0013, 0.0009], [0.9687, 0.0177, 0.0035, 0.0017, 0.0015, 0.0013, 0.0007, 0.0007], [0.8767, 0.1047, 0.0052, 0.0046, 0.001, 0.001, 0.0009, 0.0008], [0.9612, 0.0373, 0.0007, 0.0005, 0.0001, 0.0001, 0.0001, 0.0001], [0.6214, 0.3769, 0.0005, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001], [0.7964, 0.2014, 0.0009, 0.0002, 0.0002, 0.0002, 0.0002, 0.0001], [0.557, 0.4338, 0.0027, 0.0011, 0.0008, 0.0005, 0.0004, 0.0003]], "ranks": {"Rust": [58788, 78750, 44339, 64055, 27608, 26494, 25875, 37807, 49244, 49097, 42429, 62586, 22636, 22941, 18042, 14484, 6634, 14778, 26455, 44501, 40898, 57539, 54881, 24582, 62039, 86253, 49332, 28029, 20096, 15387, 8287, 8974, 12501, 49613, 39767, 39673, 31191, 58662, 67325, 61092, 54483, 26053, 19964, 12941, 15457, 8773, 10274, 6778, 3792, 8157, 11383, 10267, 5947, 2401, 1698, 818, 291, 352, 263, 63, 42, 31, 10]}}, {"pos": 528, "top": [[",", ".", "\u2013", "-", ";", "\u2026..", "\u2026.", " \u2013"], ["\u2011", "\u2013", "\u2013and", "\u00ad", "\u00adi", ",", "\uff5e", "son"], ["\u2013", ",", ".", ".\u2013", "\u2013and", " \u2013", ";", "\u2011"], ["\uff0a\uff0a\uff0a\uff0a", "\uff1d\uff1d\uff1d\uff1d", "weise", " \uc77c\uc808", "irectional", " milfs", "ewire", " Hidal"], ["ly", "&nbsp", "ser", "son", "server", "n", "@", "&"], ["ly", "lif", "server", "dias", "ilion", ",mid", "FIG", "ranges"], ["ly", "&nbsp", " \ufffd", "\u4e00", "\u4e2d", "\ufffd", "\u6211", "\u5728"], ["ly", "ivial", "irectional", "&nbsp", "ily", "athon", "ustrial", "-ID"], ["&nbsp", "ly", "athon", "\u00adi", "irectional", "ily", "<br", "ivial"], ["&nbsp", " \u00ad", "\u00adi", "\u00ading", "[mid", "\u00ad", "irectional", "ly"], ["&nbsp", " \u00ad", "[mid", "ly", "-&", "\u2011", "\u00adi", "\u00ad"], ["ivial", "irectional", "ewire", "ustrial", " //~", "&nbsp", "-low", "ily"], ["ivial", "irectional", "ustrial", "ewire", "-low", "ly", "-tier", "ROID"], ["irectional", "-tier", "-low", "ewire", "ivial", "[mid", ",mid", "-ish"], ["-tier", ",mid", "irectional", "-ish", "-low", "[mid", "\u2011", "-esque"], ["-low", ",mid", "-ish", "-esque", "irectional", "\u5982\u82e5", "[mid", "-tier"], ["-ish", "-tier", "-low", ",mid", "-esque", "-market", "[mid", "Mid"], [",mid", "-ish", "-low", "-tier", "[mid", "-market", "-tech", "-esque"], [",mid", "[mid", "-market", "-ish", "-tier", "irectional", "-low", "--)"], ["[mid", ",mid", "-market", "--)", "-tier", "irectional", " //~", "-ish"], ["[mid", "Mid", "-market", ",mid", "--)", "\u54b1", " //~", "irectional"], ["-market", "irectional", "ewire", " MEDIAM", ",mid", "owntown", "[mid", "--)"], ["-market", "[mid", "--)", "&eacute", " {{--<", " //~", "Mid", "-tier"], ["&nbsp", " --", " \ufffd", "\u2011", " {{--<", "Mid", " \u00ad", " \u2015"], ["&nbsp", " \r\n\r\n", "\u2011", "\t\n\n", "   \n\n", " \n\t\n", " \u00ad", "Mid"], ["\u2011", "-market", "&nbsp", " pricey", "[mid", "amai", "-tier", "-ish"], ["\u2011", "-market", "-era", "-tier", " pricey", "-tech", "-low", "[mid"], ["\u2011", " \u00ad", " \n\n", "-era", "-heavy", " \r\n\r\n", " --", "-tier"], ["\u2011", "-era", "-market", "-heavy", "-tech", "-tier", "-low", "-high"], ["\u2011", "-era", "-heavy", "-market", " \n  \n", " tech", " \n\t\n", " \n    \n"], ["\u2011", "-heavy", "-era", " tech", " mid", " \n\n", "  \n\n", "-"], ["\u2011", " tech", " -", "-heavy", " global", " mid", " high", " heavy"], ["\u2011", " -", " massively", " heavy", " tech", " massive", " heavily", " low"], ["\u2011", "-tier", " tech", "-heavy", " massively", " brutal", " overclock", "-tech"], ["\u2011", "-tier", " tech", "-heavy", " overclock", "-tech", "/fast", "-era"], ["\u2011", "-tier", " tech", " overclock", "-heavy", "/fast", "-tech", " hardware"], ["\u2011", "-tier", " overclock", " tech", "/fast", " hardware", "-heavy", " framerate"], ["\u2011", " overclock", "-tier", "/fast", " tech", " hardware", "-heavy", "-fast"], ["\u2011", " overclock", "-tier", "/fast", " hardware", " tech", "-fast", "-tech"], ["\u2011", " overclock", " hardware", " framerate", "-tier", " tech", "/fast", "-speed"], [" hardware", " overclock", "\u2011", " tech", "-tech", " framerate", "-tier", "-speed"], [" hardware", " overclock", " tech", "\u2011", "-tech", "-tier", " framerate", " CPUs"], [" hardware", " overclock", "-tier", " tech", "-tech", "-speed", "/fast", "-fast"], [" hardware", "-tier", " overclock", " tech", "\u2011", "-speed", "-tech", "-fast"], [" hardware", "-tier", "-speed", "\u2011", " tech", " framerate", " overclock", "-heavy"], ["-tier", " hardware", "\u2011", "-budget", "-speed", " tech", " framerate", "-low"], ["\u2011", "-tier", " hardware", "-budget", "-heavy", " tech", "-speed", "-tech"], ["\u2011", "-tier", "-budget", " hardware", "-grade", "-heavy", " budgets", "-low"], ["\u2011", "-tier", "-budget", "-target", " hardware", "-grade", "-low", "-tech"], ["-tier", "\u2011", "-target", "-budget", "-grade", "-heavy", "-low", "-UA"], ["-tier", "\u2011", "-grade", "-target", " CPUs", "-tech", "-budget", " hardware"], ["-tier", "\u2011", "-grade", "-range", "-tech", " CPUs", " hardware", "-level"], ["-tier", "-grade", "-range", " hardware", "-tech", "-target", " CPUs", "\u2011"], ["-tier", "-range", "-grade", " hardware", "\u786c\u4ef6", "hardware", " Android", "-android"], ["-tier", "-range", "-grade", " Android", " hardware", "-android", "-priced", "-device"], ["-range", " Android", "-tier", "-android", "Android", "/android", "\u5b89\u5353", "range"], ["-range", " Android", "-tier", "-android", "Android", "/android", "\u5b89\u5353", "_android"], ["-range", " Android", "-tier", "-android", "Android", "/android", " hardware", " android"], ["-range", " Android", "-tier", "-android", "Android", "range", "/android", "_android"], [" Android", "-range", "Android", "-android", "(Android", "range", "-tier", ".Android"], ["-range", " Android", "Android", "range", " range", "(Android", "-android", "-tier"], ["-range", " Android", "Android", "range", "-android", "(Android", "-tier", " range"], ["-range", " Android", "-", "-tier", "-android", "Android", "-end", "(Android"]], "p": [[0.611, 0.327, 0.0237, 0.0093, 0.0039, 0.0018, 0.0016, 0.0014], [0.1953, 0.0922, 0.0596, 0.0436, 0.0219, 0.0206, 0.0151, 0.0151], [0.3727, 0.3289, 0.2261, 0.0128, 0.0093, 0.0064, 0.0037, 0.0027], [0.0075, 0.0055, 0.0052, 0.0052, 0.0048, 0.004, 0.0035, 0.0029], [0.5477, 0.0212, 0.0083, 0.0073, 0.0054, 0.0047, 0.0039, 0.0037], [0.0521, 0.0116, 0.0091, 0.008, 0.0075, 0.0066, 0.0062, 0.0046], [0.1041, 0.0205, 0.0193, 0.016, 0.016, 0.0103, 0.0097, 0.0097], [0.0391, 0.0087, 0.0053, 0.005, 0.0044, 0.0044, 0.0039, 0.0036], [0.0497, 0.0118, 0.0076, 0.0059, 0.0041, 0.0038, 0.0036, 0.0034], [0.0165, 0.0155, 0.0121, 0.0107, 0.0061, 0.0047, 0.0044, 0.0042], [0.2566, 0.0239, 0.0113, 0.0082, 0.0082, 0.0082, 0.0073, 0.006], [0.0053, 0.0053, 0.0041, 0.0041, 0.0032, 0.003, 0.003, 0.0028], [0.0071, 0.0071, 0.0055, 0.0046, 0.0046, 0.0036, 0.0026, 0.0026], [0.0088, 0.0047, 0.0042, 0.0037, 0.0037, 0.0034, 0.0032, 0.0029], [0.0091, 0.0081, 0.0076, 0.0059, 0.0059, 0.0049, 0.0043, 0.0041], [0.0094, 0.0057, 0.0057, 0.0048, 0.0045, 0.0045, 0.0045, 0.0042], [0.0169, 0.0124, 0.0124, 0.0116, 0.007, 0.0058, 0.0058, 0.0048], [0.0145, 0.012, 0.0106, 0.0082, 0.0077, 0.006, 0.0057, 0.0039], [0.0083, 0.0074, 0.0069, 0.0057, 0.0054, 0.0039, 0.0037, 0.0033], [0.0122, 0.0069, 0.0065, 0.0058, 0.0048, 0.0045, 0.0033, 0.0033], [0.0113, 0.0073, 0.0044, 0.0044, 0.0039, 0.0037, 0.0025, 0.0025], [0.0078, 0.0065, 0.0037, 0.0035, 0.0025, 0.0025, 0.0025, 0.0022], [0.0065, 0.0045, 0.0045, 0.0037, 0.0033, 0.0031, 0.0031, 0.0025], [0.0115, 0.0079, 0.0054, 0.0054, 0.0048, 0.0048, 0.004, 0.0031], [0.0363, 0.0183, 0.0118, 0.0081, 0.0076, 0.0059, 0.0052, 0.0049], [0.0254, 0.0145, 0.0068, 0.005, 0.0047, 0.0039, 0.0039, 0.0037], [0.0488, 0.0231, 0.0096, 0.008, 0.0062, 0.0055, 0.0043, 0.004], [0.2044, 0.0108, 0.0102, 0.0096, 0.0074, 0.0054, 0.0048, 0.0045], [0.2769, 0.0177, 0.0166, 0.0114, 0.0089, 0.0065, 0.0054, 0.0051], [0.8372, 0.0056, 0.0041, 0.0024, 0.0022, 0.0016, 0.0014, 0.0014], [0.8717, 0.0067, 0.0052, 0.0043, 0.0018, 0.0015, 0.0012, 0.0012], [0.3571, 0.013, 0.0108, 0.0079, 0.0074, 0.0058, 0.0058, 0.0054], [0.0759, 0.049, 0.0109, 0.0109, 0.0103, 0.008, 0.008, 0.008], [0.0952, 0.0137, 0.0137, 0.0107, 0.0057, 0.0057, 0.0057, 0.0047], [0.3046, 0.0152, 0.0081, 0.0063, 0.0043, 0.0038, 0.0034, 0.0034], [0.8156, 0.0029, 0.0028, 0.0028, 0.0022, 0.0017, 0.0011, 0.0011], [0.3241, 0.0142, 0.0134, 0.0076, 0.0076, 0.0052, 0.0046, 0.0038], [0.5788, 0.0154, 0.0094, 0.0064, 0.0064, 0.005, 0.0042, 0.0034], [0.5689, 0.0142, 0.0104, 0.0086, 0.0072, 0.0063, 0.0046, 0.0038], [0.3117, 0.0839, 0.029, 0.0199, 0.0165, 0.0155, 0.0146, 0.0137], [0.1415, 0.1248, 0.0972, 0.0459, 0.0246, 0.0217, 0.0169, 0.0159], [0.29, 0.137, 0.0369, 0.027, 0.0253, 0.0197, 0.0144, 0.0112], [0.1991, 0.1001, 0.0325, 0.0305, 0.021, 0.0112, 0.0106, 0.0099], [0.1322, 0.0624, 0.0379, 0.0244, 0.0216, 0.0216, 0.0168, 0.0139], [0.1129, 0.0826, 0.0237, 0.0222, 0.0209, 0.0184, 0.0184, 0.0143], [0.0972, 0.0757, 0.0262, 0.0204, 0.0191, 0.0159, 0.0132, 0.0124], [0.1171, 0.0912, 0.052, 0.0245, 0.014, 0.0131, 0.008, 0.0066], [0.4939, 0.0381, 0.0246, 0.014, 0.0116, 0.0096, 0.0066, 0.0066], [0.1434, 0.0768, 0.0437, 0.0161, 0.0142, 0.0118, 0.0111, 0.0104], [0.177, 0.0349, 0.0165, 0.0165, 0.0155, 0.0113, 0.0094, 0.0094], [0.287, 0.0726, 0.0284, 0.0105, 0.0098, 0.0087, 0.0072, 0.0067], [0.4371, 0.049, 0.0407, 0.0218, 0.0085, 0.008, 0.0075, 0.0071], [0.6828, 0.0282, 0.0249, 0.0071, 0.0055, 0.0055, 0.0052, 0.0052], [0.6501, 0.0304, 0.0268, 0.0268, 0.0099, 0.0082, 0.0077, 0.0072], [0.6368, 0.2067, 0.0218, 0.011, 0.008, 0.0071, 0.0052, 0.0036], [0.6119, 0.2551, 0.0502, 0.0345, 0.0237, 0.0047, 0.0023, 0.0018], [0.5367, 0.3689, 0.0343, 0.0267, 0.0143, 0.0046, 0.0017, 0.0016], [0.4402, 0.4402, 0.0464, 0.0281, 0.0219, 0.0043, 0.0026, 0.0018], [0.8169, 0.0976, 0.0522, 0.0218, 0.0038, 0.0012, 0.0008, 0.0005], [0.5211, 0.4599, 0.0123, 0.0017, 0.0011, 0.0011, 0.001, 0.0004], [0.7455, 0.242, 0.005, 0.0027, 0.0021, 0.0007, 0.0006, 0.0003], [0.762, 0.2183, 0.007, 0.0021, 0.0021, 0.0018, 0.0015, 0.0015], [0.9761, 0.0102, 0.0051, 0.0027, 0.0004, 0.0004, 0.0004, 0.0003]], "ranks": {"Rust": [31176, 46022, 35822, 7099, 6652, 5160, 3421, 3896, 3749, 3319, 6674, 6667, 2959, 1821, 3654, 2964, 4809, 9092, 21130, 28295, 55793, 44951, 63964, 77443, 31415, 26539, 41816, 63460, 35655, 35896, 17050, 14222, 10851, 35545, 29224, 26386, 25796, 34308, 38066, 34476, 29246, 22907, 21256, 14312, 8216, 6869, 7867, 2952, 4249, 6509, 7989, 10626, 12880, 7956, 24852, 6631, 4098, 2787, 2090, 800, 978, 648, 1140]}}, {"pos": 529, "top": [[" \u2013", "\u2013", ".", ",", " ", "\u2013and", ".\u2013", "["], [" \u2013", "\u2013", "\u2013\u2013", " \u2013**", "\u2013and", "**\u2013", ".\u2013", " \u2013,"], [" \u2013", "\u2013", ".\u2013", "\u2013and", ",", "**\u2013", ".", "\u2013\u2013"], ["ieli", "enje", "uarte", "AREN", "\u3093\u3070\u3093", "inaldo", "erokee", " Marketplace"], [" \u2013", "\u2013\u2013", ".\u2013", " ", "en", "\u2013", " [@", "[@"], [".\u2013", " \u2013", "\u2013\u2013", "\u2013", "\u2013and", "**\u2013", " **\u2013", " Centre"], [" \u2013", "\u2013\u2013", ".\u2013", "\u2013", "\u2013and", " ", " Centre", " sophisticated"], [" \u2013", ".\u2013", "\u2013\u2013", " Centre", "\u2013and", " armour", "\u0436\u0434\u0451", " neighbourhood"], [" \u2013", ".\u2013", "\u2013\u2013", "\u2013and", ",", "\u2013", "\u0436\u0434\u0451", " \u2013,"], [" \u2013", "\u2013", "\u0436\u0434\u0451", ".\u2013", " Centre", ",", " armour", "\u2013\u2013"], [" \u2013", " Centre", " armour", " centre", "\u0436\u0434\u0451", ".\u2013", ",", " neighbourhood"], [" armour", " neighbourhood", " Centre", " specialised", " flavours", " jewellery", " favourites", " centre"], [" neighbourhood", " flavours", " \u2013", " armour", " jewellery", " specialised", " neighbours", " electronics"], [" neighbourhood", " armour", " flavours", " electronics", " hardcore", " \u2013", " neighbours", " favourites"], [" \u2013", " armour", " neighbourhood", " Centre", " favourites", " popularity", " areas", " massive"], [" \u2013", " popular", " high", " popularity", " neighbourhood", " massive", " low", " showcasing"], [" \u2013", " popular", " popularity", " massive", " folks", " high", " Middle", " middle"], [" \u2013", " popularity", " massive", " folks", " tweaks", " showcase", " outfits", " kits"], [" ballpark", " folks", " upscale", " contenders", " blockbuster", " outfits", " electronics", " gaming"], [" folks", " ballpark", " midd", " blockbuster", " gaming", " popularity", " heavily", " \u2013"], [" folks", "<|endoftext|>", " heavily", " ballpark", " midd", " swiftly", " popularity", " Middle"], [" electronics", " ballpark", " upscale", " gaming", " gamers", " folks", " eSports", " upgrades"], [" folks", " electronics", " [[", " ballpark", " gaming", " ''", " hardware", " upgrades"], [" ,", " high", " ultimately", " heavily", " [[", " popular", "<|endoftext|>", " heavy"], [" [[", " pricey", " upgrades", " heavily", " hardware", " midd", " affordable", " whilst"], [" hardware", " electronics", " smartphone", " upgrades", " tech", " affordable", " gaming", " smartphones"], [" hardware", " electronics", " smartphone", " smartphones", " gaming", " affordable", " upgrades", " tech"], [" hardware", " \n\n", " low", " heavily", " ,", " whilst", " high", " \u2013"], [" hardware", " low", " electronics", " smartphone", " Android", " smartphones", " technology", " tech"], [" smartphones", " smartphone", " hardware", " affordable", " low", " electronics", " technology", " tech"], [" hardware", " technology", " smartphones", " tech", " smartphone", " low", " Android", " technologies"], [" technology", " low", " hardware", " \u200b\u200b", " mobile", " smartphones", " tech", " devices"], [" low", " hardware", " technology", " tech", " cheap", " equipment", " \u2013", " devices"], [" hardware", " tech", " smartphone", " smartphones", " cheap", " technology", " low", " budgets"], [" hardware", " tech", " smartphone", " smartphones", " overclock", " cheap", " budgets", " technology"], [" hardware", " tech", " Android", " smartphone", " overclock", " smartphones", " \u2013", " electronics"], [" hardware", " Android", " tech", " overclock", " smartphones", " smartphone", " CPUs", " electronics"], [" hardware", " Android", " smartphone", " smartphones", " overclock", " tech", " android", " phones"], [" hardware", " Android", " smartphones", " smartphone", " overclock", " tech", " CPUs", " CPU"], [" hardware", " Android", " smartphones", " smartphone", " overclock", " android", " CPUs", " tech"], [" Android", " hardware", " smartphone", " smartphones", " android", " overclock", " phones", " tech"], [" Android", " hardware", " smartphone", " smartphones", " android", " phones", " Samsung", " iPhone"], [" Android", " hardware", " smartphone", " smartphones", " android", " phones", " overclock", " iPhone"], [" Android", " hardware", " smartphones", " smartphone", " android", " phones", " iPhone", " devices"], [" Android", " hardware", " phones", " smartphone", " smartphones", " android", " devices", " iPhone"], [" Android", " hardware", " smartphone", " smartphones", " phones", " android", " engines", " iPhone"], [" Android", " hardware", " smartphone", " smartphones", " phones", " android", " CPUs", " engines"], [" Android", " hardware", " phones", " smartphones", " android", " CPUs", " smartphone", " (~"], [" Android", " phones", " CPUs", " smartphones", " hardware", " GPUs", " (~", " android"], [" Android", " CPUs", " (~", " phones", " GPUs", " hardware", " smartphones", " iOS"], [" CPUs", " GPUs", " Android", " phones", " hardware", " smartphones", " laptops", "\u673a\u578b"], [" Android", " CPUs", "(Android", "Android", " GPUs", " android", " iOS", " (~"], [" Android", " CPUs", " hardware", "Android", " GPUs", " android", "(Android", "/android"], [" Android", " hardware", "Android", " android", " CPUs", "/android", " GPUs", "(Android"], [" Android", " hardware", "Android", " CPUs", " iOS", " GPUs", " android", " CPU"], [" Android", "Android", " android", "-android", "/android", "\u5b89\u5353", "(Android", " iOS"], [" Android", "Android", " android", "/android", "-android", "(Android", "\u5b89\u5353", "_android"], [" Android", "Android", " android", "-android", "/android", "(Android", " hardware", "_android"], [" Android", "Android", "-android", " android", "_android", "/android", "(Android", "\u5b89\u5353"], [" Android", "Android", " android", "-android", "(Android", "_android", "/android", "android"], [" Android", "Android", " android", "-android", "(Android", "_android", ".Android", "/android"], [" Android", "Android", " android", "-android", "(Android", "_android", "\u5b89\u5353", ".Android"], [" Android", "Android", " android", "(Android", " ARM", "-android", " devices", " mobile"]], "p": [[0.9694, 0.0228, 0.0045, 0.0007, 0.0003, 0.0003, 0.0003, 0.0002], [0.9324, 0.0282, 0.0117, 0.0104, 0.0063, 0.0038, 0.0034, 0.0023], [0.6104, 0.3702, 0.0077, 0.0047, 0.0041, 0.0006, 0.0006, 0.0005], [0.0075, 0.0029, 0.0029, 0.0024, 0.0024, 0.0019, 0.0017, 0.0017], [0.6213, 0.0226, 0.02, 0.0166, 0.0129, 0.0114, 0.0107, 0.01], [0.3479, 0.2709, 0.0776, 0.0729, 0.0344, 0.0044, 0.0041, 0.0019], [0.7595, 0.0215, 0.0123, 0.0048, 0.0037, 0.0023, 0.0015, 0.0009], [0.2153, 0.02, 0.0146, 0.0083, 0.0078, 0.0078, 0.0065, 0.0039], [0.3184, 0.0488, 0.0169, 0.0159, 0.009, 0.0075, 0.004, 0.0038], [0.2714, 0.0324, 0.0305, 0.0269, 0.0209, 0.0209, 0.0174, 0.0119], [0.3449, 0.0467, 0.0439, 0.0142, 0.0142, 0.0126, 0.0118, 0.0104], [0.0534, 0.0304, 0.0252, 0.0223, 0.0209, 0.0185, 0.0173, 0.0153], [0.0134, 0.0082, 0.0082, 0.0072, 0.0056, 0.0056, 0.0053, 0.0046], [0.015, 0.011, 0.008, 0.0071, 0.0055, 0.0055, 0.0052, 0.0049], [0.023, 0.007, 0.0066, 0.0055, 0.0055, 0.0043, 0.0035, 0.0031], [0.0185, 0.0064, 0.006, 0.0057, 0.005, 0.0047, 0.0047, 0.0032], [0.0321, 0.0092, 0.0067, 0.0043, 0.0043, 0.0038, 0.0032, 0.0032], [0.0054, 0.0045, 0.0031, 0.0029, 0.0029, 0.0029, 0.0029, 0.0027], [0.0039, 0.0039, 0.003, 0.003, 0.0029, 0.0029, 0.0029, 0.0027], [0.0104, 0.0052, 0.0046, 0.0036, 0.0026, 0.0023, 0.0023, 0.0022], [0.0081, 0.0063, 0.0046, 0.004, 0.0036, 0.0032, 0.0028, 0.0025], [0.0069, 0.0042, 0.0029, 0.0029, 0.0029, 0.0029, 0.0027, 0.0024], [0.0068, 0.0053, 0.005, 0.0044, 0.0041, 0.0041, 0.0032, 0.003], [0.0064, 0.0053, 0.0042, 0.0042, 0.0035, 0.003, 0.0029, 0.0029], [0.006, 0.0053, 0.0047, 0.0044, 0.0041, 0.0041, 0.0039, 0.0036], [0.041, 0.0362, 0.0151, 0.0142, 0.0117, 0.0117, 0.011, 0.0091], [0.0512, 0.0452, 0.0374, 0.0257, 0.0177, 0.0156, 0.0138, 0.0138], [0.0124, 0.0116, 0.0109, 0.0062, 0.0059, 0.0059, 0.0059, 0.0052], [0.0297, 0.0192, 0.0169, 0.0149, 0.0124, 0.0116, 0.0116, 0.0109], [0.0366, 0.0323, 0.0323, 0.0209, 0.0184, 0.0163, 0.0143, 0.0143], [0.029, 0.0256, 0.0212, 0.0199, 0.0187, 0.0176, 0.0146, 0.0107], [0.0226, 0.0226, 0.0146, 0.0094, 0.0094, 0.0089, 0.0089, 0.0083], [0.0416, 0.0367, 0.0253, 0.0135, 0.0135, 0.0099, 0.0099, 0.0093], [0.0652, 0.0396, 0.0308, 0.024, 0.0212, 0.0187, 0.0165, 0.0155], [0.1319, 0.1094, 0.0402, 0.0244, 0.0229, 0.019, 0.0131, 0.0131], [0.2818, 0.0591, 0.0406, 0.0381, 0.0297, 0.0279, 0.0159, 0.014], [0.4077, 0.0666, 0.0552, 0.0487, 0.0379, 0.0379, 0.0096, 0.0085], [0.3399, 0.1417, 0.0758, 0.0629, 0.0406, 0.0246, 0.0124, 0.0096], [0.5195, 0.1023, 0.0548, 0.0483, 0.0401, 0.0157, 0.0147, 0.0115], [0.3387, 0.1703, 0.0912, 0.0756, 0.0627, 0.0169, 0.0158, 0.0149], [0.436, 0.1817, 0.0973, 0.0858, 0.0336, 0.018, 0.0149, 0.0096], [0.6967, 0.0943, 0.0505, 0.0393, 0.0254, 0.0106, 0.0064, 0.0057], [0.5554, 0.1404, 0.0663, 0.0585, 0.0244, 0.0202, 0.009, 0.0079], [0.559, 0.1328, 0.0431, 0.0431, 0.0296, 0.0204, 0.0116, 0.0096], [0.436, 0.0806, 0.0712, 0.0712, 0.0712, 0.0381, 0.0116, 0.0109], [0.4124, 0.0763, 0.0632, 0.0632, 0.0493, 0.0219, 0.011, 0.0091], [0.3195, 0.0915, 0.049, 0.0382, 0.0297, 0.0217, 0.0159, 0.0109], [0.3523, 0.054, 0.0395, 0.0371, 0.024, 0.0212, 0.0212, 0.0145], [0.2714, 0.0472, 0.0443, 0.0443, 0.0367, 0.0304, 0.0237, 0.0223], [0.1852, 0.064, 0.0531, 0.0413, 0.0365, 0.0365, 0.0343, 0.0172], [0.1877, 0.0573, 0.0573, 0.0393, 0.037, 0.0306, 0.0224, 0.0186], [0.8429, 0.0198, 0.0113, 0.01, 0.01, 0.0053, 0.0047, 0.0044], [0.8623, 0.0216, 0.0203, 0.0131, 0.0085, 0.0066, 0.0043, 0.004], [0.8824, 0.0564, 0.0162, 0.0063, 0.0052, 0.003, 0.0028, 0.0018], [0.9479, 0.0223, 0.0105, 0.0034, 0.0016, 0.0016, 0.0013, 0.0012], [0.9925, 0.0046, 0.0007, 0.0005, 0.0005, 0.0003, 0.0002, 0.0002], [0.9961, 0.0019, 0.0008, 0.0003, 0.0002, 0.0002, 0.0002, 0.0001], [0.9959, 0.0022, 0.0005, 0.0003, 0.0002, 0.0002, 0.0002, 0.0001], [0.9954, 0.0025, 0.0006, 0.0006, 0.0002, 0.0002, 0.0001, 0.0001], [0.9981, 0.0017, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9993, 0.0006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.999, 0.0009, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [66270, 148709, 66295, 93934, 29946, 27728, 28047, 20015, 24120, 23140, 13059, 17777, 13764, 11013, 16345, 11577, 11070, 14860, 15889, 20064, 23555, 26602, 18345, 13809, 16567, 24350, 21822, 16168, 12553, 12616, 9718, 11701, 11313, 12852, 10405, 6909, 7764, 9849, 11685, 11465, 12168, 13745, 11633, 10006, 8874, 6049, 4452, 2651, 2460, 2171, 1920, 3482, 3200, 2626, 1296, 1333, 636, 604, 481, 260, 187, 119, 44]}}, {"pos": 530, "top": [["s", "a", ".", "o", ",", "i", "er", "\u2026."], ["s", "sWith", "\u201d,", "  \n\n", "\u201d.", "  \r\n", "s\u00f3", "erweise"], ["s", ",", "\u2013", "\u2026.", ".", "\u2026", " \u2013", "a"], ["sWith", "sik", "szeit", "s", "erweise", "satz", " **\u2022", "sze"], ["s", "ed", "sWith", "a", "sik", "s\u00f3", "\u0627\u062a", "sver"], ["s", "sWith", "sver", "s\u00f3", "a", "ed", "(Android", "sik"], ["s", "(Android", " Android", "sWith", "a", "\u0627\u062a", "sak", ".Android"], ["s", "(Android", "sWith", " Android", "sak", "s\u00f3", "sik", "sburg"], ["s", "(Android", "!\u201d.", "sak", " Android", "sWith", "schild", "(android"], ["s", ",", "(Android", " Android", ".Android", "\u76f8\u8f85\u76f8\u6210", "(android", "sak"], ["s", " Android", ",", "(Android", "...", ".Android", "a", "&nbsp"], [" Android", "s", "(Android", ".Android", "(android", " android", "/android", "sak"], [" Android", "(Android", "s", ".Android", "(android", " android", "sak", "-android"], [" Android", "(Android", "s", ".Android", "(android", " android", "sak", "-android"], ["s", " Android", ".Android", " largely", "-style", "(android", " massively", " android"], ["s", "\u51ed\u501f\u7740", " Android", " arguably", " largely", " massively", ".Android", "-esque"], ["s", " Android", ".Android", "-esque", " arguably", "(Android", " android", "\u51ed\u501f\u7740"], ["s", " Android", "(Android", ".Android", " android", ".google", "-esque", "sWith"], ["s", "(Android", " Android", ".Android", ".google", "-esque", " android", "sak"], ["(Android", "s", " Android", ".Android", " hugely", ".google", "(android", " largely"], ["s", " Android", "(Android", ".Android", "<|endoftext|>", "Android", " hugely", ".google"], [" Android", ".Android", "(Android", " android", "(android", "_android", "ANDROID", "_ANDROID"], [" Android", ".Android", "(Android", "Android", " ``", " android", "ANDROID", "_ANDROID"], [" Android", ".Android", " ,", " ``", "Android", "(Android", " heavily", " Africa"], [" Android", "Android", ".Android", "(Android", " \r\n\r\n", " android", "\r\n\r\n", "ANDROID"], [" Android", "(Android", ".Android", " android", "Android", "_ANDROID", "ANDROID", "/android"], [" Android", " android", ".Android", "(Android", "Android", "/android", "_android", "_ANDROID"], [" Android", " android", "Android", ".Android", " ,", "(Android", " Africa", " India"], [" Android", " android", "Android", ".Android", "(Android", "/android", "ANDROID", " Africa"], [" Android", " android", "(Android", "Android", ".Android", " Africa", " smartphone", "/android"], [" Android", " android", "(Android", "Android", ".Android", " Africa", "/android", " smartphone"], [" Android", " android", ".Android", "(Android", " Africa", "Android", " .", " mobile"], [" Android", " android", " ,", " heavily", ".Android", " .", " mobile", "Android"], [" Android", " android", "(Android", "Android", ".Android", " smartphone", "/android", " smartphones"], [" Android", " android", "Android", "(Android", ".Android", "/android", " smartphone", " smartphones"], [" Android", " android", "Android", "(Android", ".Android", " smartphone", "/android", " smartphones"], [" Android", " android", "Android", "(Android", ".Android", "/android", " smartphone", " smartphones"], [" Android", " android", "Android", "(Android", ".Android", "/android", " smartphone", "android"], [" Android", " android", "Android", "(Android", ".Android", "/android", " smartphone", "android"], [" Android", " android", "Android", "(Android", ".Android", "/android", " smartphone", "android"], [" Android", " android", "Android", "(Android", ".Android", "/android", " smartphone", "android"], [" Android", " android", "Android", "(Android", ".Android", "/android", "-android", "android"], [" Android", " android", "(Android", "Android", ".Android", "/android", "-android", " Java"], [" Android", "(Android", " android", "Android", ".Android", "/android", " Java", " smartphone"], [" Android", " android", "(Android", "Android", ".Android", " Java", "/android", " hardware"], [" Android", " android", "(Android", ".Android", "Android", " Java", " hardware", " smartphone"], [" Android", " android", "(Android", " limited", ".Android", " fragile", " hardware", " Java"], [" Android", " limited", "(Android", " android", " fragile", " hardware", " bottleneck", " (~"], [" Android", "(Android", " android", " (~", " limited", " fragile", "/android", "Android"], ["(Android", " Android", " android", " (~", " fragile", "/android", "Android", ".Android"], ["(Android", " Android", "Android", ".Android", " android", "/android", " (~", "(iOS"], ["(Android", " (~", " (>", " Android", " (<", " bottleneck", " sluggish", ".Android"], [" (~", " CPU", " bottleneck", " limited", " Android", "(Android", " hardware", " latency"], [" Android", "(Android", " CPU", " (~", " hardware", " GPU", " processors", "Android"], [" CPU", " Android", " processors", " GPU", "(Android", " CPUs", " processor", " GPUs"], [" CPU", " Android", "(Android", " GPU", " CPUs", " processors", " processor", "Android"], [" Android", "(Android", "Android", " JNI", " GPU", " CPU", "/android", " GPUs"], [" Android", " GPU", "(Android", " CPU", " GPUs", "Android", " JNI", " CPUs"], [" Android", " GPU", " CPU", "(Android", " JNI", " Java", " GPUs", " CPUs"], [" devices", " GPU", " CPU", " GPUs", " Android", " Java", " JNI", " CPUs"], [" devices", " GPUs", " GPU", " CPUs", " Android", " CPU", " JNI", " phones"], [" devices", ",", " GPUs", " CPUs", " JNI", " GPU", " phones", " Java"], [",", " devices", " GPUs", " CPUs", " phones", " Java", " JS", " JNI"]], "p": [[0.9179, 0.0518, 0.0123, 0.0058, 0.0038, 0.0018, 0.0005, 0.0004], [0.925, 0.0097, 0.0031, 0.0026, 0.0023, 0.0022, 0.0017, 0.0017], [0.8353, 0.0534, 0.0237, 0.0173, 0.0163, 0.0112, 0.006, 0.0044], [0.0399, 0.0311, 0.0156, 0.0107, 0.0107, 0.0101, 0.0079, 0.0065], [0.9951, 0.0009, 0.0005, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001], [0.9731, 0.0033, 0.0012, 0.0011, 0.0011, 0.0008, 0.0005, 0.0005], [0.9995, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9856, 0.0015, 0.0014, 0.0007, 0.0005, 0.0004, 0.0004, 0.0003], [0.9749, 0.0016, 0.0014, 0.0009, 0.0008, 0.0008, 0.0007, 0.0004], [0.8759, 0.0151, 0.0067, 0.0038, 0.0026, 0.0019, 0.0018, 0.0012], [0.9352, 0.0071, 0.0036, 0.003, 0.002, 0.0014, 0.0013, 0.0012], [0.0835, 0.0447, 0.042, 0.0394, 0.0175, 0.012, 0.0113, 0.0106], [0.0983, 0.0596, 0.0494, 0.0362, 0.0194, 0.0171, 0.0086, 0.0086], [0.0475, 0.0326, 0.0326, 0.0186, 0.0145, 0.012, 0.005, 0.0047], [0.0454, 0.0108, 0.0058, 0.0035, 0.0031, 0.0027, 0.0026, 0.0026], [0.033, 0.0069, 0.0033, 0.0031, 0.0027, 0.0022, 0.0022, 0.0019], [0.4665, 0.0071, 0.0033, 0.003, 0.0023, 0.0023, 0.002, 0.0019], [0.122, 0.024, 0.0187, 0.0165, 0.0044, 0.0039, 0.0031, 0.0031], [0.0363, 0.022, 0.022, 0.0207, 0.0046, 0.0041, 0.0034, 0.0028], [0.0168, 0.0139, 0.0115, 0.0115, 0.0045, 0.004, 0.0029, 0.0029], [0.0136, 0.0088, 0.0083, 0.0078, 0.0053, 0.003, 0.003, 0.0027], [0.1212, 0.0944, 0.0887, 0.0136, 0.0113, 0.0073, 0.0068, 0.0064], [0.1377, 0.0737, 0.0307, 0.0155, 0.0145, 0.0136, 0.0064, 0.0061], [0.0306, 0.0145, 0.0145, 0.0068, 0.0064, 0.0044, 0.0037, 0.0034], [0.1079, 0.0543, 0.0397, 0.0309, 0.0309, 0.0273, 0.0226, 0.0121], [0.6065, 0.0874, 0.0681, 0.0601, 0.0342, 0.0152, 0.0126, 0.0118], [0.6405, 0.0719, 0.0526, 0.0494, 0.03, 0.0117, 0.011, 0.0104], [0.2334, 0.0316, 0.0192, 0.0169, 0.0159, 0.0132, 0.0124, 0.0085], [0.7253, 0.0634, 0.0494, 0.0281, 0.0248, 0.0076, 0.0046, 0.0043], [0.781, 0.0726, 0.0303, 0.0267, 0.0208, 0.0049, 0.003, 0.003], [0.8436, 0.0785, 0.0175, 0.01, 0.0094, 0.0037, 0.0022, 0.002], [0.7158, 0.0709, 0.009, 0.0085, 0.007, 0.007, 0.0062, 0.0058], [0.5501, 0.0545, 0.0122, 0.0095, 0.0089, 0.0078, 0.0074, 0.0061], [0.8027, 0.1086, 0.0147, 0.0147, 0.0089, 0.0061, 0.0048, 0.0035], [0.7303, 0.1438, 0.0321, 0.0195, 0.0152, 0.0126, 0.0126, 0.0046], [0.7749, 0.1049, 0.0437, 0.0161, 0.0125, 0.0076, 0.0041, 0.0034], [0.7531, 0.0794, 0.0794, 0.0227, 0.0201, 0.0079, 0.0051, 0.0029], [0.8056, 0.0962, 0.0454, 0.0215, 0.0115, 0.007, 0.0029, 0.0017], [0.8469, 0.0788, 0.029, 0.0199, 0.0083, 0.0065, 0.0016, 0.0012], [0.8044, 0.0848, 0.0454, 0.0312, 0.013, 0.0061, 0.0017, 0.0017], [0.8311, 0.0773, 0.0322, 0.0284, 0.0134, 0.0049, 0.0021, 0.0012], [0.8823, 0.0439, 0.0302, 0.0266, 0.0086, 0.0025, 0.0006, 0.0005], [0.8496, 0.0479, 0.0479, 0.0291, 0.0107, 0.0027, 0.0014, 0.0009], [0.832, 0.0532, 0.0532, 0.0323, 0.0092, 0.0019, 0.0019, 0.001], [0.8019, 0.0845, 0.0399, 0.0242, 0.0138, 0.0021, 0.002, 0.0015], [0.7857, 0.0443, 0.0416, 0.0127, 0.005, 0.0044, 0.0036, 0.0034], [0.5982, 0.0671, 0.0523, 0.015, 0.011, 0.0097, 0.0071, 0.0049], [0.3475, 0.0879, 0.0442, 0.039, 0.0222, 0.0105, 0.0099, 0.0099], [0.5082, 0.187, 0.0473, 0.0135, 0.0112, 0.0087, 0.0082, 0.0082], [0.3224, 0.2359, 0.0436, 0.0385, 0.0182, 0.0125, 0.011, 0.0104], [0.6218, 0.1572, 0.0257, 0.0226, 0.0166, 0.0094, 0.0074, 0.0045], [0.1349, 0.1268, 0.0599, 0.0387, 0.0283, 0.025, 0.0151, 0.0151], [0.0679, 0.0467, 0.0412, 0.0387, 0.0364, 0.0321, 0.0301, 0.0283], [0.1518, 0.134, 0.0595, 0.0339, 0.0339, 0.0299, 0.0281, 0.0206], [0.221, 0.134, 0.0921, 0.0865, 0.0813, 0.0493, 0.0339, 0.0318], [0.2558, 0.1551, 0.1066, 0.0647, 0.0536, 0.0368, 0.0238, 0.021], [0.6666, 0.191, 0.0332, 0.0157, 0.0122, 0.0074, 0.007, 0.0061], [0.4296, 0.1791, 0.1086, 0.0659, 0.0659, 0.0214, 0.0189, 0.0167], [0.3578, 0.1316, 0.0905, 0.0905, 0.0705, 0.0549, 0.0484, 0.0229], [0.2029, 0.2029, 0.1086, 0.1086, 0.0746, 0.0581, 0.0242, 0.0228], [0.5481, 0.1779, 0.0578, 0.029, 0.0273, 0.0166, 0.0129, 0.0129], [0.3339, 0.2946, 0.1787, 0.0242, 0.0156, 0.0138, 0.0122, 0.0101], [0.9916, 0.0052, 0.0019, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001]], "ranks": {"Rust": [20905, 17343, 8580, 20345, 2927, 1908, 3176, 3798, 10095, 5575, 4709, 12164, 5392, 3746, 8032, 4848, 5970, 21359, 33763, 28977, 62704, 73481, 38172, 34139, 46977, 59165, 47719, 27172, 22888, 16664, 17655, 15686, 15963, 25122, 28173, 24443, 15801, 22030, 18504, 34377, 19404, 16740, 20005, 16516, 11484, 10267, 9274, 7872, 5320, 2857, 9632, 6667, 6056, 4444, 3798, 1156, 499, 399, 245, 56, 83, 58, 26]}}, {"pos": 531, "top": [[",", ".", "\u2013", ";", " \u2013", "\u00a0", "\u00a0\u00a0", ",."], [",", "\u2013", ".", " \u2013", ";", "\u2013and", "\u200b", ".\u2013"], [",", "\u2013", ".", ";", " \u2013", "\u2026", "\u2013and", ".\u2013"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "-------------</", "\ufffd\ufffd", " milfs", "----------</", " Shemale", "\u683c\u91cc\u62c9", "\u54e5\u534e"], [",", ".", "\u00a0\u00a0", " ", "\u00a0", ":", "\u2013", ";"], [",", ".", "\u00a0\u00a0", "\u2026.", " \u200b\u200b", "\u00a0", ":", "\u2026.."], [",", ".", "\u00a0", "\u00a0\u00a0", "\u2026\u201d", ":", " ", ".\u201d"], [",", ".", "\u2013and", "\u2026..", "\u2026but", ",@", "   \n", "@\""], [",", "\u00a0", "...\u201d", "\u2013and", "\u2026but", "!\u201d", "\u2026\u201d", "\u2026and"], [",", "\u00a0", "\u2013and", "\u2013", " \u00ad", "\u2026but", "\u00a0\u00a0", "\u2013\u2013"], [",", "\u00a0", "...", " [\u2026]", "\u00a0\u00a0", " \u00ad", " ", "\u2026"], [" arguably", " mostly", " albeit", "\u751a\u81f3\u4f1a", " comfortably", " pricey", " oddly", " uniquely"], [" mostly", " arguably", " even", " savvy", " potentially", " oddly", " effortlessly", " albeit"], [" mostly", ",", " even", " savvy", " arguably", " albeit", " much", " sprawling"], [" even", " mostly", " just", " often", " much", " only", " truly", " all"], [" mostly", " even", " arguably", " just", " often", " typically", " much", " more"], [",", " mostly", " even", " just", " often", " much", " arguably", " typically"], [" sprawling", " arguably", " mostly", " even", " often", " myriad", " typically", " plenty"], [" arguably", " even", "\u2014even", " sprawling", " incredibly", " myriad", " seemingly", " effortlessly"], [" arguably", " even", " myriad", "\u2014even", " seemingly", " sprawling", " barely", " vastly"], ["<|endoftext|>", " myriad", " even", " much", " swiftly", " vastly", " arguably", " seemingly"], [" even", " arguably", "\u751a\u81f3\u4f1a", " sprawling", " myriad", " vastly", " incredibly", " heavily"], [" arguably", " even", " myriad", " much", " swiftly", " heavily", " vastly", " seemingly"], [" even", " much", "<|endoftext|>", " arguably", " myriad", " heavily", " swiftly", " seemingly"], [" \n\n", " \r\n\r\n", " arguably", "\r\n\r\n", " vastly", " myriad", " hugely", " {{--<"], [" vastly", " arguably", " hugely", " heavily", " sprawling", " {{--<", " even", " pricey"], [" heavily", " even", " \n\n", " arguably", " vastly", " sprawling", " skyrocket", " hugely"], [" even", " much", " heavily", "\n\n", " \n\n", " arguably", " nearly", " ,"], [" even", " heavily", " much", " barely", " arguably", " nearly", " vastly", " typically"], [" even", " heavily", " much", " often", " barely", " cheap", " typically", " heavy"], [" even", " often", " heavily", " much", " ,", " many", " only", " more"], [" even", " heavily", " only", " often", " much", " many", " heavy", " more"], [" even", " heavily", " often", " only", " much", " heavy", " rapidly", " massive"], [" even", " heavily", " cheap", " aggressively", " quickly", " rapidly", " massive", " huge"], [" rapidly", " even", " heavily", " aggressively", " notoriously", " sluggish", " massive", " quickly"], [" rapidly", " sluggish", " slower", " slow", " fast", " quickly", " speed", " notoriously"], [" sluggish", " slower", " slow", " notoriously", " rapidly", " expensive", " hardware", " inefficient"], [" even", " slower", " sluggish", " rapidly", " slow", " expensive", " quickly", " notoriously"], [" even", " sluggish", " slow", " slower", " rapidly", " bottleneck", "\u2014even", " inefficient"], [" sluggish", " slower", " slow", " bottleneck", " speed", " even", " multit", " slowing"], [" slow", " slower", " speed", " sluggish", " slowing", " bottleneck", " speeds", " slows"], [" slower", " slow", " speed", " CPU", " sluggish", " slowing", " bottleneck", " speeds"], [" slower", " sluggish", " CPU", " slow", " bottleneck", " delays", " slowing", " speed"], [" slower", " slow", " spikes", " sluggish", " slowing", " delays", " CPU", " bursts"], [" slow", " spikes", " slower", " delays", " bursts", " bottleneck", " sluggish", " slowing"], [" sluggish", " spikes", " bursts", " slow", " every", " bottleneck", " delays", " slower"], [" every", " sluggish", " spikes", " bursts", " bottleneck", " slow", " glitches", " interruptions"], [" every", " ANY", " bursts", " spikes", " slow", " delays", " bottleneck", " sluggish"], [" bursts", " ANY", " interruptions", " sluggish", " glitches", " crashes", " framerate", " delays"], [" ANY", "\u7684\u4efb\u4f55", "\u4efb\u4f55\u5f62\u5f0f\u7684", " anything", " sluggish", "anything", " any", " interruptions"], [" ANY", "\u7684\u4efb\u4f55", "\u4efb\u4f55\u5f62\u5f0f\u7684", "\u4efb\u4f55", "anything", "Anything", " anything", "\u4efb\u4f55\u4e00\u4e2a"], [" ANY", "\u7684\u4efb\u4f55", "\u4efb\u4f55", "anything", "\u4efb\u4f55\u5f62\u5f0f\u7684", " anything", "Anything", " CPU"], [" ANY", "\u4efb\u4f55", " CPU", "\u7684\u4efb\u4f55", " latency", " any", "\u4efb\u4f55\u5f62\u5f0f\u7684", " anything"], [" ANY", "\u4efb\u4f55", " any", "\u7684\u4efb\u4f55", " anything", " CPU", "\u4efb\u4f55\u5f62\u5f0f\u7684", "Anything"], [" ANY", " CPU", "\u4efb\u4f55", "\u7684\u4efb\u4f55", "CPU", " any", " allocating", " anything"], [" ANY", " CPU", "\u4efb\u4f55", " any", "\u7684\u4efb\u4f55", "CPU", "_any", " anything"], [" ANY", "\u4efb\u4f55", " any", "\u7684\u4efb\u4f55", "\u4efb\u4f55\u5f62\u5f0f\u7684", " JNI", " anything", " garbage"], [" ANY", "\u4efb\u4f55", " any", " JNI", "\u7684\u4efb\u4f55", " JIT", "\u4efb\u4f55\u5f62\u5f0f\u7684", " allocating"], [" ANY", " any", "\u4efb\u4f55", "\u7684\u4efb\u4f55", " JNI", "\u4efb\u4f55\u5f62\u5f0f\u7684", " JIT", "_any"], [" any", " ANY", " JIT", " garbage", " JNI", " allocating", " GC", "\u4efb\u4f55"], [" any", " ANY", " JIT", " JNI", " garbage", " GC", " allocating", " UI"], [" any", " JIT", " even", " JNI", " garbage", " GC", " ANY", " JavaScript"], [" any", " garbage", " GC", " even", " JIT", " JavaScript", " JNI", " *"]], "p": [[0.7863, 0.1988, 0.0112, 0.0015, 0.0012, 0.0006, 0.0001, 0.0001], [0.6927, 0.2548, 0.0304, 0.0112, 0.006, 0.0014, 0.0003, 0.0002], [0.8938, 0.0734, 0.0306, 0.0008, 0.0005, 0.0003, 0.0001, 0.0001], [0.006, 0.0037, 0.0022, 0.002, 0.0018, 0.0012, 0.0012, 0.0011], [0.8999, 0.0371, 0.0025, 0.0013, 0.0012, 0.001, 0.0008, 0.0004], [0.7208, 0.0337, 0.0097, 0.0038, 0.0033, 0.0029, 0.0028, 0.0019], [0.7851, 0.1282, 0.0197, 0.0112, 0.0028, 0.0025, 0.0023, 0.0013], [0.5472, 0.0226, 0.0114, 0.0033, 0.0029, 0.0027, 0.0025, 0.0024], [0.158, 0.0375, 0.0189, 0.0167, 0.0089, 0.0061, 0.0058, 0.0042], [0.2034, 0.0095, 0.0089, 0.0042, 0.0029, 0.0027, 0.0017, 0.0013], [0.6902, 0.2241, 0.0072, 0.0039, 0.0032, 0.0032, 0.0023, 0.0021], [0.0027, 0.0023, 0.002, 0.0019, 0.0019, 0.0017, 0.0017, 0.0016], [0.0108, 0.007, 0.0029, 0.0027, 0.0027, 0.0024, 0.0024, 0.002], [0.0188, 0.0083, 0.0074, 0.0051, 0.0048, 0.0039, 0.0039, 0.0031], [0.0374, 0.0352, 0.031, 0.0138, 0.0129, 0.0089, 0.0084, 0.0078], [0.0297, 0.0262, 0.0232, 0.0218, 0.0204, 0.0192, 0.0169, 0.0132], [0.0503, 0.0392, 0.0305, 0.0253, 0.0223, 0.021, 0.0144, 0.012], [0.0175, 0.0165, 0.0137, 0.0106, 0.0094, 0.0094, 0.0088, 0.0088], [0.028, 0.0218, 0.015, 0.0141, 0.0132, 0.0124, 0.0117, 0.0071], [0.0278, 0.0245, 0.023, 0.0203, 0.0179, 0.0131, 0.0123, 0.0109], [0.6484, 0.0064, 0.0053, 0.005, 0.0047, 0.0047, 0.0041, 0.0036], [0.0124, 0.0091, 0.0071, 0.0052, 0.004, 0.0036, 0.0036, 0.0036], [0.0195, 0.0162, 0.0134, 0.0111, 0.0105, 0.0081, 0.0081, 0.0077], [0.0274, 0.0257, 0.0138, 0.0122, 0.0114, 0.0114, 0.0095, 0.0084], [0.0299, 0.0193, 0.0125, 0.011, 0.011, 0.0103, 0.0091, 0.0076], [0.0087, 0.0087, 0.0087, 0.0076, 0.0072, 0.0072, 0.0067, 0.0056], [0.0173, 0.0143, 0.0126, 0.0098, 0.0092, 0.0082, 0.0072, 0.0068], [0.0312, 0.0214, 0.0189, 0.0147, 0.0115, 0.0101, 0.0084, 0.0074], [0.0689, 0.0393, 0.0224, 0.0136, 0.0106, 0.0077, 0.0077, 0.0077], [0.1193, 0.0283, 0.0195, 0.0118, 0.0104, 0.0081, 0.0076, 0.0076], [0.1574, 0.0291, 0.0257, 0.0257, 0.0177, 0.0138, 0.0101, 0.0101], [0.1805, 0.0229, 0.0179, 0.0168, 0.0158, 0.0148, 0.0115, 0.0115], [0.1808, 0.0295, 0.0131, 0.0131, 0.0123, 0.0116, 0.0109, 0.0096], [0.1327, 0.0296, 0.014, 0.0131, 0.0131, 0.0116, 0.0116, 0.0109], [0.0341, 0.0321, 0.0301, 0.0235, 0.0142, 0.0111, 0.0111, 0.0111], [0.046, 0.0316, 0.0279, 0.0246, 0.0231, 0.0231, 0.0204, 0.0192], [0.0645, 0.0416, 0.0305, 0.0286, 0.0269, 0.0197, 0.0185, 0.0174], [0.0497, 0.0342, 0.0321, 0.0301, 0.0235, 0.0142, 0.0134, 0.0126], [0.0585, 0.0485, 0.0355, 0.0334, 0.0215, 0.0168, 0.0158, 0.0148], [0.0981, 0.0922, 0.0634, 0.0384, 0.0339, 0.0219, 0.0206, 0.0141], [0.2022, 0.139, 0.0955, 0.0792, 0.048, 0.033, 0.031, 0.0274], [0.0778, 0.0687, 0.0606, 0.0443, 0.0443, 0.0368, 0.0345, 0.0324], [0.0587, 0.0404, 0.0404, 0.0356, 0.0335, 0.0261, 0.0261, 0.0216], [0.0565, 0.0499, 0.0343, 0.0284, 0.0284, 0.0284, 0.0251, 0.0221], [0.0401, 0.0377, 0.0377, 0.0333, 0.0333, 0.0276, 0.0243, 0.0202], [0.0322, 0.0322, 0.0251, 0.0251, 0.0235, 0.0195, 0.0195, 0.0172], [0.0436, 0.0385, 0.0361, 0.0339, 0.0319, 0.0233, 0.0219, 0.0182], [0.0803, 0.0588, 0.0404, 0.0295, 0.0278, 0.0278, 0.0261, 0.023], [0.0558, 0.0558, 0.0383, 0.0338, 0.0318, 0.0247, 0.0232, 0.0232], [0.3549, 0.0843, 0.0398, 0.0351, 0.0241, 0.0227, 0.0188, 0.0177], [0.2716, 0.1132, 0.0882, 0.0882, 0.0687, 0.0324, 0.0269, 0.0174], [0.3158, 0.0622, 0.0622, 0.0484, 0.0455, 0.0313, 0.0294, 0.0294], [0.5745, 0.0472, 0.0416, 0.0367, 0.0324, 0.0252, 0.0223, 0.0197], [0.5582, 0.097, 0.0519, 0.0458, 0.0404, 0.0357, 0.0278, 0.0116], [0.4195, 0.2883, 0.039, 0.0209, 0.0209, 0.0184, 0.0163, 0.0144], [0.5037, 0.1443, 0.1124, 0.0602, 0.0468, 0.0152, 0.0105, 0.0081], [0.5388, 0.1061, 0.1061, 0.0568, 0.0304, 0.0112, 0.0082, 0.0082], [0.5801, 0.0693, 0.054, 0.054, 0.0327, 0.0225, 0.0175, 0.0155], [0.7024, 0.1077, 0.074, 0.0212, 0.0129, 0.0088, 0.0088, 0.0078], [0.4619, 0.2182, 0.0625, 0.0379, 0.0295, 0.0139, 0.0139, 0.0116], [0.2914, 0.1072, 0.0946, 0.065, 0.0574, 0.0348, 0.0289, 0.0225], [0.32, 0.0917, 0.0592, 0.0592, 0.0522, 0.0407, 0.0298, 0.028], [0.3835, 0.097, 0.043, 0.0404, 0.038, 0.0315, 0.0296, 0.023]], "ranks": {"Rust": [31868, 48613, 45709, 83012, 12735, 22088, 62612, 67118, 81059, 71855, 33717, 59200, 18064, 9233, 9269, 6710, 6752, 12282, 17668, 19076, 26742, 41976, 24540, 14543, 15353, 18931, 7685, 7116, 3870, 4025, 5024, 6738, 5325, 6173, 4377, 7617, 5958, 8973, 7347, 9831, 10932, 11547, 7933, 10631, 7432, 7184, 7223, 4873, 3510, 3771, 19926, 26868, 32794, 29664, 22885, 16970, 6752, 5204, 3594, 842, 720, 540, 360]}}, {"pos": 532, "top": [[",", ".", ";", "\u2013", "?", "\u00ad", " \u2013", "-"], [",", "\u00ad", "\u2013", "\u00ac", " \u00ad", ";", "er", " \u2013"], [",", ".", "\u2013", ";", "[", "?", "\u00ad", " \u2013"], [" Hidal", "erias", " milfs", " Shemale", " Palav", "\u4e94\u989c\u516d\u8272\u7684", " councill", " Fortal"], ["\u00ac", "\\-", " \u00ad", "  \r\n", "\\xc", "er", "s\u00f3", "\u30e3\u30f3"], ["  \r\n", "s\u00f3", "\u00ac", "-**", " (**", "ut\u00e9", "\\xc", "\u30e3\u30f3"], ["  \r\n", "\u00ac", "  \n", " **\u2014", "\u2019**", "   \r\n", " \u00ad", "\u00adi"], ["  \r\n", " **\u2014", "\u4e94\u989c\u516d\u8272\u7684", "-**", " (**", "   \r\n", " **+", "\u5170\u8fbe"], ["  \r\n", "\u00adi", "\u4e94\u989c\u516d\u8272\u7684", " **\u2014", "   \r\n", "**!", "...**", "\u5170\u8fbe"], ["\u00adi", " \u00ad", "\\-", "  \r\n", "\u00adtion", "\u4e94\u989c\u516d\u8272\u7684", "\u00ac", "\u00ading"], [" \u00ad", "\u00adi", "\\-", "\u00ac", "\u00ad", "  \r\n", "\u2014or", "\\xc"], ["\u00adi", "\u4e94\u989c\u516d\u8272\u7684", " **+", " **\u2022", " **", "...**", " **\u2014", "\u5170\u8fbe"], ["\u4e94\u989c\u516d\u8272\u7684", " Palav", "\u00adi", "uncio", "yyy", "...**", "erias", " **\u00ab"], ["\u4e94\u989c\u516d\u8272\u7684", "amanan", "\u00adi", "yyy", " goofy", "uncio", " Palav", " pricey"], [" goofy", " savvy", "amanan", " flashy", "\u00adi", " pricey", " impactful", " freaking"], ["amanan", " goofy", "\u0e48\u0e2d\u0e22", " impactful", " Palav", "\u4e94\u989c\u516d\u8272\u7684", "yyy", " tweaks"], [" goofy", "amanan", " savvy", "yyy", " freaking", " skinny", "\u00adi", " tweaks"], [" goofy", " savvy", "amanan", " tweaks", "\u00adi", "\u0e48\u0e2d\u0e22", " freaking", " flashy"], [" goofy", "amanan", " savvy", " flashy", " freaking", " tweaks", "yyy", " impactful"], ["amanan", "/all", "\u2014even", " sorta", "-any", " potentially", "\u2014or", " goofy"], ["-any", "/all", " sorta", "amanan", "anything", "\u2014even", "(any", "ANY"], ["\u4efb\u4f55\u4e00\u79cd", "amanan", "\u4efb\u4f55\u5f62\u5f0f\u7684", "\u76f8\u5173\u884c\u4e1a", "\u4efb\u4f55\u5176\u4ed6", "\u4efb\u4f55\u4e8b\u60c5", "\u00e3ng", "-any"], [" anytime", " ANY", " sorta", "-any", "/all", " mundane", "anything", " whatsoever"], [" any", " &#", "anything", " eventual", " anytime", "-any", " potentially", " whatsoever"], [" \r\n\r\n", "  \n\n", " &#", "anything", "   \n\n", "\r\n\r\n", "-any", " whatsoever"], [" impactful", " pricey", " distractions", " ANY", "\u4efb\u4f55\u4e8b\u60c5", "\u54ea\u6015\u662f", " tweaking", " tweaks"], [" impactful", " distractions", " pricey", " mundane", " glitches", " tweaks", " impacting", " tweaking"], [" effort", " any", " mundane", " potentially", " anything", " tweaking", " anywhere", " distractions"], [" anything", " any", " effort", " potentially", " mundane", " distractions", "anything", " tweaks"], [" any", " anything", " distractions", " mundane", " tweaks", " effort", "anything", " impactful"], [" any", " anything", " effort", " anywhere", " potentially", " dozens", " distractions", " impact"], [" any", " anything", " potentially", " effort", " dozens", " anywhere", " critical", " potential"], [" anything", " any", " potentially", " ANY", " potential", " anywhere", " effort", " critical"], [" tweaks", " anything", " ANY", " flashy", " unpredictable", " potentially", " mundane", " any"], [" mundane", " tweaks", " unpredictable", "\u2014even", " glitches", " tweaking", " distractions", " potentially"], [" multit", " glitches", " slow", " sluggish", " tweaks", "\u2014even", " mundane", " unpredictable"], [" slow", " sluggish", " glitches", " slower", " slowing", " multit", " unpredictable", " slowdown"], [" slow", " anything", " multit", " glitches", " unpredictable", " sluggish", " slower", " hardware"], [" sluggish", " slow", " unpredictable", " delays", " multit", " delay", " anything", " latency"], [" unpredictable", " delays", " sluggish", " clutter", " delay", " latency", " multit", " slowdown"], [" slowdown", " slow", " slowing", " delays", " delay", " sluggish", " slows", " downtime"], [" slowdown", " delays", " glitches", " downtime", " slowing", " latency", " interruptions", " delay"], [" glitches", " interruptions", " slowdown", " delays", " glitch", " latency", " slowing", " downtime"], [" interruptions", " glitches", " slowdown", " delays", " interruption", " slowing", " downtime", " glitch"], [" interruptions", " glitches", " delays", " interruption", " slowdown", " disruptions", " latency", " downtime"], [" glitches", " interruptions", " delays", " interruption", " ANY", " latency", " glitch", " slowdown"], [" ANY", " anything", "\u7684\u4efb\u4f55", "anything", " any", "\u4efb\u4f55\u5f62\u5f0f\u7684", "\u4efb\u4f55", " anywhere"], [" ANY", "\u7684\u4efb\u4f55", " anything", "anything", "\u4efb\u4f55", "\u4efb\u4f55\u5f62\u5f0f\u7684", " slightest", " any"], [" glitches", " interruptions", "\u4efb\u4f55\u5f62\u5f0f\u7684", " delays", "anything", " slightest", " ANY", "\u7684\u4efb\u4f55"], [" glitches", "\u4efb\u4f55\u5f62\u5f0f\u7684", " interruptions", " slightest", "anything", "\u7684\u4efb\u4f55", " ANY", " delays"], ["\u4efb\u4f55\u5f62\u5f0f\u7684", " glitches", "anything", " downtime", " interruptions", " slightest", "\u7684\u4efb\u4f55", "\u4efb\u4f55"], [" slowdown", " interruptions", " interruption", " CPU", " latency", " delays", " downtime", "CPU"], [" delays", " delay", " slowdown", " latency", " CPU", "\u5ef6\u8fdf", " hesitation", "CPU"], [" CPU", " latency", " delays", "CPU", " slowdown", " hesitation", " delay", "\u5361\u987f"], [" CPU", "CPU", " latency", " cpu", " slowdown", "-thread", " stutter", " thread"], [" CPU", "CPU", " latency", " slowdown", " cpu", " serialization", "\u5361\u987f", " garbage"], ["\u5361\u987f", " garbage", " latency", " CPU", " pause", " GC", " slowdown", " hesitation"], [" stutter", " pause", "\u5361\u987f", " latency", "\u505c\u987f", " pauses", " garbage", " GC"], [" blocking", "-blocking", "blocking", "\u963b\u585e", " Blocking", "Blocking", "\u5361\u987f", "/block"], [" blocking", " synchronous", " GC", "blocking", "-blocking", " Blocking", " synchronization", " frame"], [" blocking", " synchronous", " GC", " synchronization", " JIT", " pause", " frame", " stutter"], [" blocking", " synchronous", " GC", " synchronization", " pause", " frame", " JIT", " jitter"], [" GC", " synchronous", " pause", " plugin", " frame", " JIT", " blocking", " UI"]], "p": [[0.9049, 0.0842, 0.0061, 0.0029, 0.0003, 0.0002, 0.0002, 0.0002], [0.3868, 0.1613, 0.0762, 0.0492, 0.0318, 0.0318, 0.0193, 0.0124], [0.9549, 0.0288, 0.0083, 0.0064, 0.0004, 0.0003, 0.0001, 0.0001], [0.0066, 0.0055, 0.0051, 0.0045, 0.0038, 0.0038, 0.0029, 0.0024], [0.1401, 0.0798, 0.0148, 0.0122, 0.0122, 0.0101, 0.0058, 0.0054], [0.0084, 0.0069, 0.0061, 0.0042, 0.0031, 0.0029, 0.0027, 0.0024], [0.2385, 0.1446, 0.0251, 0.0236, 0.0135, 0.0126, 0.0087, 0.0072], [0.072, 0.0249, 0.0206, 0.0171, 0.0118, 0.0092, 0.0081, 0.0067], [0.092, 0.0716, 0.015, 0.011, 0.0086, 0.0076, 0.0063, 0.0052], [0.0519, 0.0404, 0.0203, 0.0131, 0.0058, 0.0045, 0.0043, 0.0029], [0.3641, 0.0594, 0.0525, 0.0281, 0.017, 0.016, 0.0067, 0.0043], [0.0112, 0.0064, 0.0041, 0.0039, 0.0034, 0.0034, 0.0032, 0.0028], [0.0079, 0.0035, 0.0035, 0.0033, 0.0033, 0.0021, 0.002, 0.0019], [0.0063, 0.003, 0.0026, 0.0026, 0.0021, 0.0015, 0.0015, 0.0012], [0.005, 0.0034, 0.0032, 0.0027, 0.0024, 0.0024, 0.002, 0.0018], [0.0048, 0.0039, 0.0031, 0.0029, 0.0027, 0.002, 0.0016, 0.0015], [0.0081, 0.0046, 0.0032, 0.0032, 0.003, 0.0025, 0.0023, 0.0023], [0.008, 0.0038, 0.0033, 0.0033, 0.0026, 0.0023, 0.0021, 0.0021], [0.0082, 0.0053, 0.0034, 0.0032, 0.0027, 0.0021, 0.0021, 0.0019], [0.0047, 0.0036, 0.0034, 0.0027, 0.0027, 0.0025, 0.0023, 0.0019], [0.0066, 0.0048, 0.004, 0.004, 0.004, 0.0033, 0.0024, 0.0024], [0.0029, 0.0027, 0.0026, 0.0024, 0.002, 0.002, 0.0019, 0.0019], [0.0033, 0.0031, 0.0028, 0.0028, 0.0026, 0.0026, 0.0024, 0.0021], [0.0059, 0.0052, 0.0052, 0.0034, 0.0034, 0.0034, 0.0034, 0.0028], [0.0146, 0.0078, 0.0065, 0.0054, 0.0051, 0.0037, 0.0031, 0.0029], [0.0097, 0.0043, 0.0033, 0.0031, 0.0029, 0.0028, 0.0026, 0.0024], [0.0118, 0.0086, 0.0056, 0.0056, 0.0046, 0.0043, 0.0041, 0.0036], [0.0102, 0.0096, 0.0096, 0.0096, 0.0085, 0.004, 0.0038, 0.0033], [0.0249, 0.0219, 0.0182, 0.0142, 0.0142, 0.0142, 0.0133, 0.011], [0.0348, 0.0348, 0.0186, 0.0164, 0.0154, 0.0136, 0.0113, 0.0106], [0.0942, 0.0608, 0.0164, 0.0112, 0.0106, 0.0093, 0.0082, 0.0073], [0.0918, 0.0715, 0.0132, 0.0132, 0.0124, 0.0124, 0.0091, 0.0085], [0.0488, 0.0488, 0.0203, 0.0191, 0.014, 0.0102, 0.0096, 0.009], [0.0316, 0.0262, 0.0231, 0.0149, 0.0132, 0.0132, 0.0132, 0.0124], [0.0226, 0.0137, 0.0114, 0.0107, 0.01, 0.0083, 0.0083, 0.0083], [0.0232, 0.0192, 0.0192, 0.0181, 0.015, 0.0132, 0.0132, 0.0117], [0.0487, 0.0315, 0.0245, 0.0216, 0.0191, 0.0158, 0.0158, 0.0158], [0.0297, 0.0262, 0.0192, 0.018, 0.018, 0.0159, 0.0109, 0.0109], [0.0404, 0.0379, 0.0356, 0.0356, 0.0261, 0.0216, 0.0203, 0.0168], [0.0591, 0.0433, 0.0317, 0.0317, 0.0279, 0.0262, 0.0232, 0.0232], [0.145, 0.0936, 0.0826, 0.0776, 0.0533, 0.0501, 0.0285, 0.0222], [0.0881, 0.073, 0.0644, 0.0502, 0.0304, 0.0304, 0.0304, 0.0252], [0.0908, 0.0624, 0.0551, 0.0429, 0.0334, 0.0314, 0.0244, 0.0244], [0.1042, 0.092, 0.0558, 0.0492, 0.0218, 0.0218, 0.0218, 0.0218], [0.1807, 0.0909, 0.0665, 0.0486, 0.0457, 0.0314, 0.0314, 0.0168], [0.1491, 0.1316, 0.0662, 0.0333, 0.0294, 0.0259, 0.0243, 0.0202], [0.3084, 0.2119, 0.1134, 0.078, 0.0688, 0.0417, 0.0325, 0.0287], [0.4047, 0.1023, 0.1023, 0.0797, 0.0703, 0.0621, 0.0427, 0.0376], [0.1292, 0.1071, 0.061, 0.0539, 0.0506, 0.0475, 0.037, 0.0271], [0.1222, 0.1148, 0.0789, 0.0542, 0.0509, 0.0509, 0.0509, 0.0449], [0.0962, 0.0797, 0.0427, 0.0401, 0.0401, 0.0332, 0.0312, 0.0293], [0.1132, 0.0778, 0.0778, 0.0731, 0.0606, 0.0417, 0.0324, 0.0253], [0.2712, 0.1281, 0.1281, 0.1131, 0.0605, 0.0286, 0.0135, 0.0135], [0.2697, 0.1443, 0.0992, 0.0469, 0.0414, 0.0322, 0.0284, 0.0236], [0.6267, 0.0749, 0.0583, 0.0189, 0.0167, 0.0167, 0.0089, 0.0089], [0.5701, 0.0874, 0.0413, 0.0221, 0.0195, 0.0172, 0.0152, 0.0143], [0.1169, 0.1169, 0.091, 0.0709, 0.0626, 0.0552, 0.0379, 0.0335], [0.1588, 0.1401, 0.0963, 0.0584, 0.0455, 0.0455, 0.0401, 0.0401], [0.7425, 0.0538, 0.0475, 0.0419, 0.0288, 0.0175, 0.0082, 0.0044], [0.8267, 0.0172, 0.0172, 0.0172, 0.0151, 0.0092, 0.0092, 0.0081], [0.4407, 0.1837, 0.0868, 0.0596, 0.0194, 0.0194, 0.0151, 0.0133], [0.3444, 0.1627, 0.0987, 0.0678, 0.0466, 0.0249, 0.0234, 0.0234], [0.3051, 0.1441, 0.0639, 0.0498, 0.0468, 0.0364, 0.0364, 0.0364]], "ranks": {"Rust": [40491, 37610, 33903, 11667, 6642, 4599, 3737, 2832, 3291, 3836, 5336, 7343, 5629, 5272, 14947, 13761, 18943, 34870, 33113, 23154, 25770, 22551, 42812, 25115, 25621, 25858, 11223, 5072, 2635, 2816, 3462, 3516, 4118, 5278, 4212, 8836, 5303, 4210, 3595, 4135, 5269, 4503, 3779, 5266, 4564, 3747, 3151, 3882, 3242, 4743, 21894, 46920, 26895, 33301, 15925, 7708, 3126, 2762, 2263, 1180, 972, 987, 934]}}, {"pos": 533, "top": [[" \u2013", "\u2013", ".", ",", " ", "\u2026..", "-", " [\u2026]"], [" \u2013", "\u2013", "\u2013and", "\u2013\u2013", "\u00ad", ".\u2013", " \u2018", "  \n"], [" \u2013", "\u2013", "\u2013and", "\u2026..", ".\u2013", "\u2026", "\u2013\u2013", "\u2026."], ["flate", "buster", " *\u2013", "odle", "&eacute", " pupper", " FStar", "caster"], [" \u2018", "@", " \u2013", "\u2013\u2013", " @", "\u2013", "\u2018", " \u2019"], ["\u2013", "\u2026..", "\u2013\u2013", "bod", " \u2013", "\u2013and", " \u2018", "(Frame"], [" \u2018", "\u2018", " *\u2013", "\u2026..", " \u2019", "i", "gable", "\u2026\u2026"], ["gable", "i", "ster", " \u2018", " \u2013", " @", " *\u2013", "bite"], ["gable", "  \n\n", "   \n\n", "&", " \u2018", " \u2013", "stride", "i"], ["\u2013", "\u2013and", "stride", "(Frame", "\\_", "  \r\n", "buster", "ingly"], ["\u2013", " \u2013", "i", "&", "@", "less", "p", "e"], ["ingly", "less", "gable", "caster", "stride", "olet", "buster", "(Frame"], ["ingly", "less", "lessness", "(Frame", "buster", "gable", "ptime", "caster"], ["ingly", "less", "(Frame", "mate", "ptime", "cap", "caster", "buster"], ["cap", "ingly", "\u2013", "oire", "mate", "pulse", "st", "less"], ["ingly", "\u5931\u63aa", "ptime", "buster", "-esque", "oire", "cap", "(Frame"], ["cap", "e", "ingly", "less", "o", "ar", "beat", "ball"], ["cap", "oire", "ptime", "(Frame", "kick", "beat", "caps", "ingly"], ["buster", "ingly", "oire", "bite", "cap", "kick", "ptime", "beat"], ["cap", "ingly", "bite", "oire", "\u5931\u63aa", "kick", "buster", "caps"], ["cap", "ingly", "bite", "tte", "oire", "beat", "pot", "less"], ["bite", "ptime", "buster", "oire", "(Frame", "ingly", "\u5931\u63aa", "blink"], ["ingly", "lessly", "\u5931\u63aa", "bite", "oire", "less", "cap", "\u6362\u4ee3"], ["less", "cap", "ingly", "\u5931\u63aa", "\u6362\u4ee3", "bite", "lessly", "oire"], [" \r\n\r\n", "beat", "uptime", "bite", "ptime", "Moment", ".Frame", " \r\n"], [" framerate", "uptime", "ptime", "beat", "buster", "Pixel", "blink", "kick"], [" framerate", "uptime", "ptime", "beat", "\u51fa\u52e4", "-motion", "Pixel", "buster"], [" framerate", "beat", " motion", " shutter", " footage", "uptime", " flick", " pacing"], [" framerate", "ptime", "uptime", "beat", " flick", " shutter", " footage", "ftime"], [" framerate", "ptime", " motion", " footage", " shutter", " flick", "beat", "uptime"], ["ptime", " crashes", " flick", " motion", " moments", " speed", " spikes", " shutter"], [" crashes", " flick", " framerate", "ptime", " flashes", " motion", " speed", " spikes"], ["ptime", " framerate", " crashes", " flick", " kicks", "uptime", " spikes", " uptime"], ["ptime", " framerate", "uptime", " flick", " crashes", "beat", "ftime", " downtime"], ["ptime", " framerate", "\u5468\u671f\u7684", "uptime", "beat", " flick", "shit", " downtime"], ["ptime", " framerate", "\u5468\u671f\u7684", " *\u2013", " flick", "beat", " downtime", "uptime"], [" framerate", "ptime", " latency", " stutter", " milliseconds", " flick", " delay", " delays"], [" framerate", "ptime", " milliseconds", " latency", " flick", " stutter", " jitter", " delay"], [" framerate", " milliseconds", "ptime", " stutter", " jitter", " delays", " latency", " delay"], [" framerate", " milliseconds", " delays", " delay", " jitter", " latency", " stutter", "ptime"], [" framerate", " delay", " delays", " milliseconds", "ptime", " latency", "\u6bcf\u79d2", " slowdown"], [" framerate", " milliseconds", " delays", " delay", " jitter", " latency", " slowdown", "\u6bcf\u79d2"], [" framerate", " milliseconds", " jitter", "\u5468\u671f\u7684", " stutter", " latency", " slowdown", " delays"], [" framerate", " milliseconds", " delays", " slowdown", " delay", " stutter", " jitter", " slows"], [" framerate", " delays", " milliseconds", " delay", " slowdown", " jitter", " slows", " latency"], [" framerate", " delays", " delay", " milliseconds", " slowdown", " jitter", " slows", " latency"], [" framerate", " delays", " delay", " milliseconds", " downtime", " slowdown", " exceeds", " glitches"], [" framerate", " exceeds", " delays", "anything", "\u7684\u4efb\u4f55", " delay", " slowdown", " exceed"], [" exceeds", " delays", " framerate", " delay", " exceeding", " slowdown", " exceeded", " downtime"], [" delays", " framerate", " slowdown", "-delay", " delay", " downtime", " exceeds", " bottleneck"], ["-delay", " framerate", " exceeds", " slowdown", " delays", " exceeding", " downtime", " delay"], [" slowdown", " delay", "-delay", " delays", " slows", "\u5ef6\u8fdf", " downtime", " exceeding"], [" delay", " delays", "-delay", "\u5ef6\u8fdf", " slowdown", " slows", " slowed", " latency"], [" delay", " delays", "-delay", " latency", "\u5ef6\u8fdf", " slowdown", " spikes", " exceeding"], [" exceeding", " exceeds", "\u8d85\u8fc7", " latency", " exceed", "\u8d85\u904e", " spikes", " exceeded"], [" exceeding", " exceeds", "\u8d85\u8fc7", " exceed", " exceeded", "\u8d85\u904e", " spikes", " latency"], [" exceeding", " exceeds", " latency", "\u8d85\u8fc7", " slowdown", " exceed", " spikes", "\u8d85\u904e"], [" exceeding", " spikes", " stutter", " spike", " exceeds", " dropping", "\u8d85\u8fc7", " latency"], [" exceeding", " spikes", " spike", " stutter", " exceeds", " dropping", "\u8d85\u8fc7", " >"], [" exceeding", " dropping", " spikes", " spike", " stutter", " drops", " drop", " dipping"], [" exceeding", " dropping", " budget", " spike", " drop", " drops", " >", " stutter"], [" exceeding", " spike", " dropping", " drop", " >", " budget", " stutter", " dropped"], [" drop", " dropping", " spike", " stutter", " exceeding", " dropped", "-drop", " hitch"]], "p": [[0.9619, 0.0226, 0.0107, 0.0019, 0.0008, 0.0004, 0.0002, 0.0002], [0.9045, 0.0841, 0.0069, 0.0022, 0.0006, 0.0002, 0.0001, 0.0001], [0.5567, 0.4335, 0.0055, 0.0014, 0.0008, 0.0008, 0.0004, 0.0003], [0.0037, 0.003, 0.003, 0.0029, 0.0021, 0.0021, 0.0016, 0.0015], [0.134, 0.0595, 0.0525, 0.0435, 0.0339, 0.0181, 0.0125, 0.011], [0.0214, 0.0156, 0.0107, 0.0095, 0.0095, 0.0089, 0.0079, 0.0057], [0.0506, 0.0446, 0.0145, 0.0128, 0.0083, 0.0068, 0.0057, 0.0053], [0.014, 0.0109, 0.0109, 0.0102, 0.0075, 0.0075, 0.007, 0.004], [0.0217, 0.0192, 0.014, 0.0109, 0.0109, 0.0091, 0.0085, 0.008], [0.0142, 0.0049, 0.0032, 0.0028, 0.0022, 0.0019, 0.0017, 0.0017], [0.2277, 0.0212, 0.0187, 0.0121, 0.0113, 0.0073, 0.0073, 0.0057], [0.0067, 0.0059, 0.0059, 0.0049, 0.004, 0.0038, 0.0033, 0.0031], [0.0199, 0.0129, 0.0073, 0.0073, 0.0061, 0.005, 0.0044, 0.0037], [0.0172, 0.0049, 0.0049, 0.0046, 0.0038, 0.0036, 0.0034, 0.0034], [0.0148, 0.0131, 0.0102, 0.0048, 0.0048, 0.004, 0.0037, 0.0031], [0.0065, 0.0044, 0.0037, 0.0037, 0.0035, 0.0029, 0.0025, 0.0019], [0.0265, 0.0125, 0.0104, 0.0104, 0.0086, 0.0081, 0.0063, 0.0059], [0.0112, 0.0072, 0.0053, 0.0041, 0.0041, 0.0039, 0.0034, 0.0032], [0.0068, 0.0064, 0.006, 0.0053, 0.0053, 0.0047, 0.0039, 0.0036], [0.0102, 0.0102, 0.0045, 0.004, 0.0033, 0.0027, 0.0023, 0.0021], [0.009, 0.0062, 0.0031, 0.0024, 0.002, 0.002, 0.0018, 0.0018], [0.0059, 0.0059, 0.0055, 0.0052, 0.0049, 0.0041, 0.0034, 0.0028], [0.0085, 0.0049, 0.0046, 0.0046, 0.0046, 0.0046, 0.0029, 0.0028], [0.0046, 0.004, 0.0038, 0.0026, 0.0023, 0.0023, 0.0023, 0.0023], [0.004, 0.004, 0.0027, 0.0024, 0.0023, 0.0018, 0.0016, 0.0016], [0.0129, 0.0061, 0.0051, 0.0048, 0.0042, 0.0039, 0.0033, 0.0031], [0.0137, 0.0061, 0.0054, 0.0047, 0.0035, 0.0035, 0.0033, 0.0029], [0.0097, 0.0055, 0.0055, 0.0046, 0.0043, 0.0031, 0.0031, 0.0023], [0.0092, 0.0067, 0.0059, 0.0059, 0.0041, 0.0038, 0.0036, 0.003], [0.0103, 0.0063, 0.0052, 0.0049, 0.0049, 0.0046, 0.004, 0.0038], [0.0097, 0.0071, 0.0059, 0.0059, 0.0052, 0.0049, 0.0043, 0.0043], [0.0113, 0.0073, 0.0073, 0.0073, 0.0057, 0.0053, 0.0053, 0.0047], [0.012, 0.0106, 0.0069, 0.0064, 0.0047, 0.0042, 0.0034, 0.0034], [0.0167, 0.0167, 0.0062, 0.0045, 0.004, 0.0035, 0.0035, 0.0033], [0.02, 0.0121, 0.0061, 0.0051, 0.0045, 0.0037, 0.0029, 0.0022], [0.0213, 0.0122, 0.0061, 0.0051, 0.0042, 0.0042, 0.0042, 0.0039], [0.0277, 0.0203, 0.0115, 0.0096, 0.0079, 0.0075, 0.007, 0.0066], [0.0506, 0.0271, 0.0136, 0.0136, 0.012, 0.0106, 0.0083, 0.0083], [0.0754, 0.023, 0.023, 0.0216, 0.0191, 0.0148, 0.0139, 0.0123], [0.1149, 0.0329, 0.0256, 0.0241, 0.0226, 0.02, 0.02, 0.0176], [0.2091, 0.0819, 0.0563, 0.0341, 0.0283, 0.0235, 0.0172, 0.0172], [0.3532, 0.0509, 0.0372, 0.029, 0.024, 0.0199, 0.0187, 0.0165], [0.2388, 0.039, 0.0323, 0.0209, 0.0184, 0.0173, 0.0143, 0.0127], [0.2287, 0.0655, 0.0257, 0.0241, 0.0226, 0.02, 0.02, 0.0166], [0.1753, 0.0416, 0.0368, 0.0345, 0.0269, 0.0223, 0.0209, 0.0153], [0.1205, 0.0569, 0.0416, 0.0324, 0.0237, 0.0223, 0.0174, 0.0153], [0.1406, 0.0456, 0.0334, 0.0216, 0.0203, 0.0179, 0.0168, 0.0168], [0.1172, 0.0488, 0.0431, 0.0431, 0.0357, 0.0296, 0.0204, 0.0204], [0.0787, 0.0653, 0.0613, 0.0449, 0.0308, 0.0272, 0.0272, 0.0256], [0.0722, 0.0678, 0.0562, 0.0528, 0.0412, 0.0412, 0.032, 0.0301], [0.0638, 0.0599, 0.0563, 0.0467, 0.0438, 0.0301, 0.0283, 0.0283], [0.258, 0.1076, 0.0949, 0.0838, 0.0308, 0.0289, 0.024, 0.0225], [0.2825, 0.22, 0.1713, 0.1334, 0.0917, 0.0124, 0.0097, 0.0097], [0.22, 0.1335, 0.1335, 0.0714, 0.0714, 0.0556, 0.0382, 0.0337], [0.5835, 0.1302, 0.0895, 0.0256, 0.0256, 0.0256, 0.0176, 0.0129], [0.7881, 0.0831, 0.0445, 0.021, 0.0127, 0.0112, 0.006, 0.0047], [0.7859, 0.0443, 0.0237, 0.0209, 0.0119, 0.0112, 0.0112, 0.0072], [0.6154, 0.0944, 0.0735, 0.0649, 0.0211, 0.0211, 0.0093, 0.0082], [0.7973, 0.0397, 0.0309, 0.0273, 0.0188, 0.0188, 0.0061, 0.0061], [0.4712, 0.2226, 0.0723, 0.0563, 0.0341, 0.0235, 0.0142, 0.0126], [0.4947, 0.1417, 0.1104, 0.0521, 0.0521, 0.0217, 0.0169, 0.0149], [0.3074, 0.1646, 0.1646, 0.1282, 0.0471, 0.0324, 0.0269, 0.0127], [0.4186, 0.1359, 0.1199, 0.0934, 0.0441, 0.0268, 0.0173, 0.0126]], "ranks": {"Rust": [66942, 103264, 117525, 92200, 16337, 44058, 74039, 50291, 68116, 63979, 25255, 77279, 40549, 23178, 53045, 57208, 65200, 108395, 145005, 146699, 158708, 139882, 134625, 123100, 127797, 128206, 118747, 40235, 45639, 44140, 29670, 31231, 58905, 105689, 92286, 102742, 61747, 57372, 58454, 86863, 106737, 129871, 109693, 112689, 102280, 69728, 83967, 111267, 51778, 76809, 126354, 155416, 157564, 170548, 134082, 99989, 71377, 83637, 108950, 53176, 43969, 25918, 17961]}}, {"pos": 534, "top": [[".", ",", " \u2013", "\u2013", "\u00a0", " ", "?", "-"], ["  \n", "  \r\n", " \u2013", "\u2013", "  \n  \n", "  \n\n", "\u2013and", " \n  \n"], ["**\u2013", "\u2026", "\u2026**", ".", "\u2013", "?", "(**", ","], [" **", " '**", "\uc3df", "\u2019**", " **:", "uggy", "\uff0a\uff0a\uff0a\uff0a", " \r\n"], ["  \n  \n", " \u2019", " \n  \n", "@", "\u2019**", " \n \n", "  \n", " **"], ["\u2019t", " \r\n", " \u2018", "\u2019**", " \u2019", " \n", "\u2019,", " \uff08"], ["\u2019**", " **", " \r\n", "\uff09**", "**(", " '**", " \u2019", "'**"], [" \r\n", " **", " \r\n \r\n", " \u0163", "\u2019**", " \u2019", "\u0436\u0434\u0451", "\u0451\u0442\u0441\u044f"], [" \n\n", "  \n  \n", " \r\n\r\n", "  \n\n", " \r\n \r\n", " \n  \n", " \n\n\n", " \n    \n"], ["  \n  \n", "\\_", " \u0163", " \u0442\u0440\u0451", "\u0436\u0434\u0451", " \r\n", "kick", "-down"], ["\\_", "  \n  \n", " \r\n", "i", "kick", " \n  \n", "age", "ingly"], [" **", "ingly", "kick", "itude", " \r\n", "\u0436\u0434\u0451", " \u0163", " \u0442\u0440\u0451"], ["ingly", "itude", " **", "kick", "iness", "ing", "age", "backs"], ["ingly", "kick", "itude", "ing", " favour", "ack", "lessly", "iness"], ["ingly", "kick", "i", "itude", "ing", "back", "ack", " dropping"], ["ingly", "ing", "kick", " showcasing", "itude", "iness", " due", "i"], ["ingly", "ing", "i", "e", "kick", "es", "ed", "o"], ["ingly", "kick", "ing", "i", "itude", "outs", "-down", "back"], ["ingly", "kick", "lessly", "ing", "i", "itude", " \u2019", "es"], ["ingly", " \u2019", "kick", "i", " seemingly", " even", " down", "ing"], ["<|endoftext|>", "i", " \n\n", "ingly", " though", " seemingly", " \r\n\r\n", "kick"], ["ingly", " \u2019", " ''", "kick", " even", " down", " heavily", "ing"], [" \u2019", " ''", "ingly", " even", " down", " heavily", " due", " seemingly"], [" \u2019", " even", " ''", " due", " down", " heavily", " off", " ,"], [" \n\n", " \n  \n", " \r\n\r\n", " \u2019", " \r\n \r\n", "ingly", " \r\n", " due"], [" **", " \n  \n", " \u2019", " \r\n\r\n", "ingly", " \n\n", " \r\n \r\n", " \r\n"], [" **", " \u2019", "ingly", " due", " even", " spikes", "ing", " heavily"], [" \u2019", " --", " **", " even", " \n\n", " heavily", " due", " '"], [" **", " \u2019", " due", " even", "\u2011", " \n\n", " spikes", " \n  \n"], [" **", " \n  \n", " \n", " due", " \u2019", " even", " spikes", "\u2011"], [" **", " even", " due", " during", " \n", " spikes", " over", " down"], [" **", " even", " due", " hit", " hits", " during", " time", " worse"], [" **", " due", " even", " spikes", " worse", " impact", " .**", " )**"], [" due", " **", " spikes", " worse", " even", " hits", " \u2019", " skyrocket"], [" **", " due", " spikes", " worse", " plummet", " crashes", " critical", " inevitable"], [" due", " **", " spikes", " \u2014", "due", " worse", " jitter", " *"], [" due", " spikes", " delays", " inevitable", " jitter", "\u2014even", " \u2014", "due"], [" due", " jitter", " inevitable", " spikes", " glitch", " delays", " glitches", "due"], [" due", " jitter", " delays", " spikes", " glitches", "\u2014even", " inevitable", " glitch"], [" due", " jitter", " spikes", " glitches", " glitch", " stutter", "due", " delays"], [" due", " jitter", " spikes", " glitch", " delays", " glitches", "due", " stutter"], [" jitter", " glitches", " spikes", " glitch", " stutter", " due", " delays", " crashes"], [" jitter", " glitches", " due", " spikes", " glitch", " stutter", " delays", " crashes"], [" due", " spikes", " jitter", " glitches", " slowdown", " crashes", " caused", " glitch"], [" due", " spikes", " caused", " jitter", " triggers", " slows", " glitches", " crashes"], [" due", " caused", " spikes", " triggers", " jitter", " anywhere", " slows", " glitches"], [" anywhere", " due", " anything", " ANY", " slightest", " any", " caused", " anytime"], [" due", " anywhere", " slightest", " anything", " triggers", " caused", " ANY", "anything"], [" caused", " due", " triggers", " exceeds", " triggered", " spikes", " anywhere", "due"], [" caused", " due", " triggers", " anywhere", " triggered", "due", " spikes", " exceeds"], [" caused", " triggers", " triggered", " exceeds", "\u77ac\u95f4", " anywhere", " due", "due"], [" caused", " triggered", " due", " exceeds", "due", " triggers", " (>", "\u662f\u7531\u4e8e"], [" caused", " triggered", " exceeds", " (>", " triggers", " due", " exceeding", "\u8dcc\u7834"], [" caused", " exceeds", " (>", " triggered", " beyond", " triggers", " occurs", " exceeding"], [" exceeds", "\u8d85\u8fc7", " exceeding", " caused", " beyond", " (>", "\u8d85\u904e", "\u8dcc\u7834"], [" below", " exceeds", " exceeding", "\u8d85\u8fc7", " caused", " beyond", " (>", "\u4f4e\u4e8e"], [" below", "below", " exceeds", " BELOW", " caused", " triggers", " beyond", " exceeding"], [" below", " caused", "below", " BELOW", " triggers", "Below", " Below", " exceeds"], [" below", " caused", " triggers", "below", " BELOW", " >", " exceeds", " triggered"], [" below", "below", " above", " caused", " Below", " BELOW", " kills", "Below"], [" below", " caused", " above", " >", " kills", " triggers", " (>", " spikes"], [" below", " >", " above", " kills", " caused", " (>", " triggers", " exceeds"], [" below", " >", " kills", " triggers", " above", " caused", " from", " spikes"]], "p": [[0.6851, 0.2224, 0.0387, 0.0134, 0.0076, 0.0052, 0.0049, 0.0036], [0.202, 0.1304, 0.0896, 0.0579, 0.0398, 0.0227, 0.0101, 0.0101], [0.1063, 0.1063, 0.0778, 0.0686, 0.0606, 0.0367, 0.0237, 0.0223], [0.0182, 0.0151, 0.0086, 0.0063, 0.0063, 0.0059, 0.0046, 0.0038], [0.1139, 0.0419, 0.0254, 0.0211, 0.0211, 0.0136, 0.0136, 0.0136], [0.0137, 0.0129, 0.0094, 0.0088, 0.0078, 0.0073, 0.0069, 0.0065], [0.2238, 0.0773, 0.0303, 0.0196, 0.0152, 0.0143, 0.0126, 0.0098], [0.0181, 0.016, 0.0141, 0.0117, 0.0117, 0.0075, 0.0071, 0.0071], [0.0515, 0.0401, 0.0294, 0.0229, 0.019, 0.0167, 0.0148, 0.013], [0.0146, 0.0129, 0.0129, 0.0074, 0.0054, 0.0047, 0.0047, 0.0045], [0.0399, 0.0375, 0.0201, 0.0188, 0.0122, 0.0084, 0.0069, 0.0069], [0.042, 0.0288, 0.0145, 0.0136, 0.01, 0.01, 0.0094, 0.0078], [0.1491, 0.0229, 0.0157, 0.0148, 0.013, 0.0054, 0.0045, 0.0042], [0.1736, 0.0172, 0.0118, 0.0067, 0.0052, 0.0049, 0.0046, 0.0046], [0.1572, 0.0156, 0.0129, 0.0094, 0.0083, 0.0069, 0.0051, 0.0039], [0.1469, 0.0212, 0.0137, 0.0121, 0.0078, 0.0057, 0.0057, 0.0054], [0.1068, 0.069, 0.0505, 0.0306, 0.0186, 0.0113, 0.0106, 0.0099], [0.1227, 0.0352, 0.0177, 0.0089, 0.0069, 0.0054, 0.0051, 0.0045], [0.1668, 0.0449, 0.0083, 0.0073, 0.0054, 0.005, 0.0039, 0.0039], [0.1153, 0.0424, 0.02, 0.0156, 0.0138, 0.0101, 0.0101, 0.0089], [0.1893, 0.0256, 0.0226, 0.0176, 0.0089, 0.0083, 0.0069, 0.0061], [0.0914, 0.0405, 0.018, 0.0169, 0.007, 0.0062, 0.0048, 0.0045], [0.1844, 0.0599, 0.0207, 0.0161, 0.0125, 0.0104, 0.0104, 0.0086], [0.0623, 0.0229, 0.0179, 0.0158, 0.0131, 0.0115, 0.0115, 0.0108], [0.2166, 0.0548, 0.0514, 0.0376, 0.0214, 0.0147, 0.0138, 0.0101], [0.2597, 0.0451, 0.0274, 0.0213, 0.0213, 0.0147, 0.0129, 0.0129], [0.0641, 0.0267, 0.0173, 0.0111, 0.0105, 0.0072, 0.0072, 0.0068], [0.0566, 0.0303, 0.0268, 0.0222, 0.0162, 0.0152, 0.0152, 0.0105], [0.1088, 0.0275, 0.0201, 0.0189, 0.0108, 0.0108, 0.0101, 0.0095], [0.265, 0.0279, 0.0232, 0.0192, 0.018, 0.0149, 0.0085, 0.0066], [0.074, 0.0614, 0.0478, 0.0187, 0.0137, 0.0107, 0.0083, 0.0083], [0.1835, 0.0385, 0.0206, 0.0097, 0.0091, 0.0076, 0.0063, 0.0059], [0.2163, 0.0228, 0.0138, 0.0089, 0.0089, 0.0079, 0.007, 0.0058], [0.0219, 0.0206, 0.0194, 0.0161, 0.011, 0.0097, 0.0076, 0.0071], [0.0707, 0.0216, 0.0203, 0.0108, 0.0079, 0.0058, 0.0055, 0.0055], [0.0783, 0.0254, 0.0164, 0.012, 0.01, 0.0088, 0.0078, 0.0078], [0.0993, 0.0173, 0.0162, 0.0162, 0.0143, 0.0111, 0.0111, 0.0105], [0.1045, 0.0182, 0.0151, 0.0141, 0.0103, 0.0103, 0.0097, 0.0086], [0.122, 0.0372, 0.0212, 0.0212, 0.0187, 0.0176, 0.0137, 0.0121], [0.096, 0.066, 0.0426, 0.0312, 0.0243, 0.0201, 0.0189, 0.0157], [0.1412, 0.1033, 0.0315, 0.0278, 0.0261, 0.0245, 0.0203, 0.0203], [0.1887, 0.0891, 0.0613, 0.0508, 0.0421, 0.0421, 0.0328, 0.0289], [0.1532, 0.0639, 0.06, 0.06, 0.0467, 0.0302, 0.0235, 0.0207], [0.0732, 0.0607, 0.0607, 0.0392, 0.0269, 0.0238, 0.0238, 0.0223], [0.1118, 0.0722, 0.0722, 0.0466, 0.0301, 0.0182, 0.0171, 0.0171], [0.2151, 0.0954, 0.0544, 0.0273, 0.0227, 0.0177, 0.0166, 0.0156], [0.2411, 0.129, 0.0887, 0.0887, 0.0538, 0.037, 0.0326, 0.0306], [0.164, 0.1277, 0.0775, 0.0684, 0.0603, 0.0567, 0.0268, 0.0251], [0.2612, 0.1795, 0.0848, 0.0275, 0.0243, 0.0228, 0.0228, 0.0189], [0.4843, 0.0842, 0.0698, 0.0398, 0.0373, 0.0188, 0.0137, 0.0083], [0.5234, 0.0457, 0.0295, 0.0191, 0.0168, 0.0139, 0.0123, 0.0102], [0.695, 0.0392, 0.0287, 0.021, 0.0185, 0.0144, 0.0106, 0.0082], [0.6859, 0.0723, 0.0497, 0.0341, 0.022, 0.0118, 0.0098, 0.0063], [0.7119, 0.0455, 0.0402, 0.0259, 0.019, 0.0167, 0.0122, 0.009], [0.3144, 0.1907, 0.1156, 0.1156, 0.0901, 0.0482, 0.0201, 0.0157], [0.4309, 0.2614, 0.109, 0.0661, 0.0189, 0.0167, 0.0147, 0.0101], [0.9407, 0.0105, 0.0092, 0.0063, 0.0056, 0.0049, 0.0038, 0.0026], [0.9535, 0.0136, 0.0093, 0.005, 0.0027, 0.0021, 0.0013, 0.0013], [0.783, 0.1542, 0.0127, 0.0068, 0.0047, 0.0032, 0.0032, 0.0028], [0.9904, 0.0025, 0.0017, 0.0015, 0.0008, 0.0007, 0.0005, 0.0005], [0.7937, 0.0837, 0.0308, 0.0272, 0.0165, 0.0073, 0.0057, 0.0042], [0.641, 0.1621, 0.0983, 0.0194, 0.0151, 0.0104, 0.0076, 0.0063], [0.5049, 0.1127, 0.0877, 0.0532, 0.047, 0.0303, 0.0285, 0.0251]], "ranks": {"Rust": [42708, 49259, 57674, 43306, 6591, 10175, 11392, 4072, 9761, 7050, 5747, 8972, 5630, 4967, 5248, 4706, 4866, 9008, 13052, 7200, 14012, 11678, 7639, 6720, 6745, 7983, 4491, 3857, 2694, 3115, 3198, 3274, 3897, 4433, 3237, 5770, 4692, 6216, 7793, 11262, 9694, 11033, 7019, 7765, 8104, 5214, 5997, 6485, 3869, 7213, 21021, 64886, 89534, 79551, 53144, 55391, 48216, 43523, 30135, 7791, 4291, 2358, 2629]}}, {"pos": 535, "top": [["s", ",", ".", ";", " [\u2026]", "\u2013", "y", " \u2013"], ["s", "\u2011", "\u200c", ",", "sWith", " \u200b", "sville", "s\u00ed"], ["s", ",", ".", "\u2013", ";", "\u2011", "\u2026..", "\u2026"], ["s", "schrift", "sWith", "siz", "schaft", "schein", "sii", "schriften"], ["s", "\u2011", "siz", "sWith", "\u200c", "es", "sche", "sand"], ["s", "siz", "\u2011", "sink", "schaft", "sWith", "sii", "sand"], ["s", "siz", "\u4f46\u4e0d\u9650\u4e8e", "sand", "som", "\u2011", "sii", "schaft"], ["s", "schaft", "siz", "sce", "schn", "\u4f46\u4e0d\u9650\u4e8e", "schild", "sii"], ["s", "schild", "schuss", "schul", "schaft", "schn", "#####", "\u4f46\u4e0d\u9650\u4e8e"], ["s", "siz", "schuss", "\u2011", "\u4f46\u4e0d\u9650\u4e8e", "schn", "sii", "schriften"], ["s", "\u2011", "|$", "siz", "\u4f46\u4e0d\u9650\u4e8e", "ometown", "schaft", "slope"], ["schuss", "\u4f46\u4e0d\u9650\u4e8e", "schrift", "schaft", "schriften", "schirm", "ometown", " /**<"], ["schuss", "\u4f46\u4e0d\u9650\u4e8e", "schrift", "mnop", "schaft", " Blowjob", "ometown", "schriften"], ["schuss", "ometown", "\u30e3", "\u4f46\u4e0d\u9650\u4e8e", "s", "schuh", "siz", "schaft"], ["s", "schuss", "sWith", "\u8bc1\u5b9e\u5176", "\u5982\u6b64\u4e00\u6765", "\u5207\u5b9e\u7ef4\u62a4", "\u30e3", "sid"], ["s", "schuss", "\u5982\u6b64\u4e00\u6765", "sWith", " showcasing", "\u5982\u82e5", "schirm", "\u8bc1\u5b9e\u5176"], ["s", "schuss", "sWith", "\u5982\u6b64\u4e00\u6765", "\u5207\u5b9e\u7ef4\u62a4", " standout", " comfortably", "es"], ["schuss", "s", "sWith", "t\u00e9ri", "\u5982\u6b64\u4e00\u6765", "schirm", "\u8fd9\u65e0\u7591", "\u5207\u5b9e\u7ef4\u62a4"], ["schuss", "ejah", "schuh", "t\u00e9ri", "/down", "\u540c\u6bd4\u4e0a\u5347", "\u60e8\u91cd", "\u5982\u6b64\u4e00\u6765"], ["schuss", "\u54ea\u6015\u662f", "schuh", "/down", "t\u00e9ri", " comfortably", "\u5982\u6b64\u4e00\u6765", "sWith"], ["schuss", "s", "\u54ea\u6015\u662f", " {{--<", "/down", " (<", "t\u00e9ri", "critical"], ["schuss", "schuh", "t\u00e9ri", "\u54ea\u6015\u662f", "ejah", "\u7387\u8fbe\u5230", "\u8dcc\u7834", "\u5e73\u5747\u6c34\u5e73"], [" ''", " <", " \u201c", " {{--<", " level", "schuss", " surpass", " comfortably"], [" <", " \u201c", " \u00ad", " critical", " ''", " level", " \u2015", " \u2018"], [" <", " \n\n", " \r\n\r\n", "&nbsp", " \u00ad", "   \n\n", " (<", " \u200b"], [" <", " (<", "<strong", "\u2011", " \\<", "/<", "\u54ea\u6015\u662f", "<br"], [" <", "\u7387\u8fbe\u5230", "\u5e73\u5747\u6c34\u5e73", " stamina", "\u4f4e\u65bc", "\u54ea\u6015\u662f", " threshold", " skyrocket"], [" <", "\u2011", " critical", " comfortably", " speed", " threshold", "\u7387\u8fbe\u5230", " skyrocket"], ["\u2011", " threshold", " critical", " peak", "\u7387\u8fbe\u5230", " minimum", " plummet", " skyrocket"], ["\u2011", " threshold", " critical", " peak", " thresholds", " exceed", " minimum", " average"], ["\u2011", " threshold", " critical", " peak", " thresholds", " exceed", " exceeds", " average"], ["\u2011", " **", " threshold", " critical", " peak", " minimum", " average", " thresholds"], ["\u2011", " threshold", " thresholds", "\u2014even", " minimum", " peak", " critical", " **"], ["\u2014even", " threshold", " minimum", "\u2011", " thresholds", " critical", " peak", " comfortably"], [" threshold", " minimum", "\u2011", " thresholds", "\u2014even", "\u4f4e\u4e8e", " plummet", " critical"], ["\u2011", " threshold", " overclock", " minimum", " framerate", " thresholds", "\u2014even", "\u4e0d\u5f97\u4f4e\u4e8e"], [" overclock", " framerate", " speed", " threshold", " minimum", "\u5cf0\u503c", "\u2014even", "speed"], [" framerate", " threshold", " overclock", "\u2011", " minimum", " speed", " peak", " thresholds"], [" minimum", " threshold", " framerate", " thresholds", " speed", " milliseconds", " average", " overclock"], [" framerate", " milliseconds", " minimum", "\u6bcf\u79d2", " speed", " threshold", " speeds", " latency"], [" framerate", "\u6bcf\u79d2", " speed", " speeds", "\u6bcf\u5206\u949f", " milliseconds", " average", " fastest"], [" framerate", "\u6bcf\u79d2", " milliseconds", "\u6bcf\u5206\u949f", " speed", " speeds", " average", "Milliseconds"], ["\u6bcf\u79d2", " framerate", " milliseconds", "\u6bcf\u5206\u949f", " average", " averages", "Milliseconds", " avg"], ["\u6bcf\u79d2", " framerate", " milliseconds", "\u6bcf\u5206\u949f", " average", " avg", "Milliseconds", " averages"], ["\u6bcf\u79d2", " framerate", "\u6bcf\u5206\u949f", " milliseconds", " average", "Milliseconds", " avg", " latency"], ["\u6bcf\u79d2", " framerate", "\u6bcf\u5206\u949f", " milliseconds", " average", " threshold", " avg", " averaging"], ["\u6bcf\u79d2", " framerate", "\u6bcf\u5206\u949f", " milliseconds", " threshold", " average", " avg", " thresholds"], ["\u6bcf\u79d2", "\u6bcf\u5206\u949f", " framerate", " (<", " (~", " (>", " milliseconds", "\u5e73\u5747"], ["\u6bcf\u79d2", " (~", " framerate", "\u6bcf\u5206\u949f", " (<", " (>", " milliseconds", "\u6bcf\u5c0f\u65f6"], ["\u6bcf\u79d2", " framerate", " (~", "\u6bcf\u5206\u949f", " (<", "\u4e00\u79d2", " milliseconds", "Milliseconds"], ["\u6bcf\u79d2", " framerate", "\u6bcf\u5206\u949f", " (<", " (~", " milliseconds", " microseconds", "CONDS"], [" framerate", " milliseconds", " microseconds", " (<", "\u6bcf\u79d2", " (~", "/fast", "milliseconds"], [" milliseconds", " framerate", " microseconds", " latency", "\u6beb\u79d2", "milliseconds", "Milliseconds", "\u6bcf\u79d2"], [" milliseconds", " microseconds", " framerate", "milliseconds", " (~", "\u6beb\u79d2", " latency", " (<"], [" milliseconds", " microseconds", "\u6beb\u79d2", "Milliseconds", "milliseconds", "(milliseconds", " framerate", " millis"], [" milliseconds", " microseconds", " framerate", "\u6beb\u79d2", "milliseconds", "Milliseconds", "\u5e27", "(milliseconds"], [" milliseconds", " framerate", " microseconds", "/frame", "\u5e27", "\u6beb\u79d2", "milliseconds", " Frame"], [" milliseconds", "/frame", "-frame", "frame", "Frame", " framerate", " frame", "\u5e27"], [" ms", "/ms", "ms", ".ms", "(ms", " milliseconds", " Frame", "_ms"], [" ms", "/ms", "ms", " ~", " Frame", "/frame", " eight", " frame"], [" eight", " ~", " ms", "8", " eighth", "eight", " VIII", "-eight"], [" ~", " eight", " ms", " (~", "~", "ms", "8", " MS"], [" ~", " ", "8", " eight", " ms", " <", " \"~", " (~"]], "p": [[0.8713, 0.1041, 0.0205, 0.001, 0.0009, 0.0006, 0.0005, 0.0001], [0.9439, 0.0162, 0.0064, 0.0019, 0.0014, 0.0013, 0.0006, 0.0005], [0.4816, 0.4816, 0.0187, 0.0069, 0.0047, 0.0007, 0.0007, 0.0004], [0.0917, 0.0159, 0.0159, 0.0124, 0.0097, 0.0091, 0.0091, 0.008], [0.9959, 0.0004, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.6854, 0.0235, 0.0043, 0.0034, 0.0022, 0.0019, 0.0017, 0.0017], [0.9671, 0.0023, 0.0016, 0.0008, 0.0005, 0.0004, 0.0004, 0.0003], [0.706, 0.0095, 0.0083, 0.0045, 0.0042, 0.0042, 0.0042, 0.0042], [0.4369, 0.0132, 0.0109, 0.0109, 0.0103, 0.0097, 0.0062, 0.0055], [0.0553, 0.0062, 0.0055, 0.0045, 0.0038, 0.0035, 0.0029, 0.0029], [0.3534, 0.0094, 0.0073, 0.0054, 0.0042, 0.0039, 0.0033, 0.0027], [0.0203, 0.0096, 0.0045, 0.0043, 0.0043, 0.0043, 0.0038, 0.0033], [0.0123, 0.007, 0.0058, 0.0035, 0.0035, 0.0033, 0.0033, 0.0031], [0.0143, 0.0067, 0.0063, 0.0041, 0.0036, 0.0032, 0.0028, 0.0025], [0.1304, 0.0078, 0.0035, 0.0029, 0.0027, 0.0021, 0.002, 0.0019], [0.1125, 0.0087, 0.0072, 0.0034, 0.0034, 0.0025, 0.0021, 0.0019], [0.0944, 0.005, 0.0039, 0.0037, 0.0017, 0.0016, 0.0015, 0.0015], [0.008, 0.0059, 0.0031, 0.003, 0.003, 0.0013, 0.0013, 0.0013], [0.0174, 0.0034, 0.0025, 0.0024, 0.0019, 0.0018, 0.0018, 0.0017], [0.0108, 0.0037, 0.0033, 0.0023, 0.0021, 0.0019, 0.0019, 0.0016], [0.0051, 0.0026, 0.0026, 0.0018, 0.0018, 0.0016, 0.0015, 0.0015], [0.0257, 0.0037, 0.0022, 0.0022, 0.0021, 0.0021, 0.0019, 0.0015], [0.0121, 0.0061, 0.0032, 0.003, 0.003, 0.0029, 0.0029, 0.0024], [0.0051, 0.0048, 0.004, 0.0037, 0.0037, 0.0033, 0.0026, 0.0026], [0.0479, 0.0397, 0.0256, 0.0137, 0.0129, 0.01, 0.0094, 0.0069], [0.1102, 0.0159, 0.0085, 0.007, 0.0055, 0.0045, 0.004, 0.004], [0.0093, 0.0077, 0.0047, 0.0039, 0.0037, 0.0037, 0.0037, 0.0027], [0.0138, 0.0079, 0.0048, 0.0042, 0.004, 0.0037, 0.0035, 0.0033], [0.0157, 0.0122, 0.0101, 0.0061, 0.0058, 0.0048, 0.0042, 0.004], [0.0613, 0.0308, 0.0272, 0.0256, 0.0107, 0.0094, 0.0088, 0.0065], [0.0661, 0.0584, 0.0455, 0.0427, 0.0294, 0.0178, 0.0157, 0.0148], [0.239, 0.0415, 0.0344, 0.0237, 0.0209, 0.0163, 0.0153, 0.0135], [0.113, 0.0501, 0.0324, 0.0252, 0.0237, 0.0222, 0.0153, 0.0144], [0.0393, 0.0393, 0.0253, 0.0253, 0.0185, 0.0174, 0.0093, 0.0082], [0.0509, 0.0372, 0.035, 0.0226, 0.0212, 0.0121, 0.01, 0.0083], [0.0444, 0.0368, 0.0185, 0.0185, 0.0163, 0.0144, 0.0135, 0.0105], [0.0634, 0.0595, 0.0233, 0.0206, 0.0151, 0.0133, 0.0117, 0.0117], [0.0483, 0.0401, 0.0354, 0.0354, 0.0293, 0.0228, 0.0167, 0.0157], [0.1465, 0.065, 0.0447, 0.0327, 0.0186, 0.0164, 0.0145, 0.0136], [0.2803, 0.0552, 0.0458, 0.043, 0.0404, 0.0203, 0.0179, 0.0168], [0.4992, 0.1836, 0.0526, 0.0233, 0.0194, 0.0194, 0.0125, 0.0125], [0.4766, 0.2891, 0.0391, 0.0345, 0.0127, 0.0105, 0.0087, 0.006], [0.3693, 0.224, 0.0727, 0.0566, 0.0366, 0.0162, 0.0126, 0.0087], [0.366, 0.1729, 0.1049, 0.0465, 0.0386, 0.0142, 0.0125, 0.0125], [0.4488, 0.1286, 0.0607, 0.0504, 0.0223, 0.0163, 0.0136, 0.012], [0.2891, 0.0828, 0.0828, 0.0569, 0.0368, 0.0163, 0.0163, 0.0135], [0.2588, 0.0894, 0.0654, 0.035, 0.0256, 0.0226, 0.02, 0.0155], [0.4001, 0.074, 0.0576, 0.035, 0.0272, 0.0199, 0.0176, 0.0146], [0.3405, 0.0976, 0.0671, 0.0522, 0.0382, 0.015, 0.0117, 0.0103], [0.2018, 0.0742, 0.051, 0.0397, 0.0188, 0.0176, 0.0166, 0.0129], [0.1894, 0.1079, 0.0543, 0.045, 0.0256, 0.0213, 0.0146, 0.0083], [0.1232, 0.0846, 0.0702, 0.0513, 0.0177, 0.0177, 0.0089, 0.0084], [0.4078, 0.1244, 0.0803, 0.0245, 0.0245, 0.023, 0.014, 0.0116], [0.4668, 0.0762, 0.036, 0.016, 0.0141, 0.0117, 0.0097, 0.0085], [0.724, 0.1258, 0.0318, 0.0318, 0.0281, 0.0067, 0.0046, 0.003], [0.5239, 0.0519, 0.0487, 0.0404, 0.038, 0.014, 0.0116, 0.0116], [0.2593, 0.048, 0.0398, 0.0257, 0.0156, 0.0137, 0.0137, 0.0107], [0.1379, 0.1295, 0.054, 0.0371, 0.0328, 0.0308, 0.0308, 0.0289], [0.5726, 0.1448, 0.0603, 0.0415, 0.0366, 0.0252, 0.0153, 0.0153], [0.4208, 0.0731, 0.0606, 0.0535, 0.0324, 0.0305, 0.0269, 0.0269], [0.6174, 0.0693, 0.042, 0.0395, 0.0239, 0.0128, 0.012, 0.0113], [0.8008, 0.0481, 0.0274, 0.0089, 0.0065, 0.0065, 0.0045, 0.0027], [0.9237, 0.059, 0.004, 0.0024, 0.0013, 0.0005, 0.0004, 0.0004]], "ranks": {"Rust": [30647, 107412, 48341, 7550, 6594, 5296, 7609, 6827, 4011, 4839, 4337, 7096, 6677, 8804, 26240, 25549, 24682, 31134, 32909, 26203, 29019, 30679, 42704, 33564, 23880, 19474, 19041, 12768, 9260, 7314, 7413, 6315, 13259, 25034, 23064, 18882, 26058, 52835, 72565, 72040, 51654, 113457, 111308, 150208, 135507, 94518, 85661, 108324, 126796, 132886, 112946, 153417, 189506, 188198, 174642, 174532, 191678, 218781, 226530, 203422, 195837, 100093, 48987]}}, {"pos": 536, "top": [[" \u2013", ".", "\u2013", "\u2026..", "\u00a0\u00a0", "\u2026.", ",", "\u00a0"], [" \u2013", " \u2013**", "\u2013", "\u2013and", "\u2013\u2013", "**\u2013", " Hidal", " Strec"], ["\u2013", " \u2013", ".\u2013", "\u2013and", "**\u2013", "\u2026..", "\u2026.", "."], [" milfs", " Shemale", " Blowjob", " Bbw", " pupper", " Strec", " pornstar", " Geile"], [" @_", "@g", " *@", "(@", " (@", " '@", " **#", "@$"], ["-zero", "\uff01", " **\u2013", "\u5178\u793c", "odd", "-cent", "ogh", " \uff09"], ["   \r\n", "\uff01", " \r\n", "  \r\n", "\uff1a", " @_", " *@", "\u6709"], [" *@", " @_", " **\u20ac", "   \r\n", " **#", "  \r\n", "(@", " \r\n"], [" *@", "  \n\n", "   \n\n", "!\u201d.", " \r\n\r\n", "    \n\n", "(@", "    \n"], [" \u0442\u0440\u0451", "  \r\n", " \r\n", "-cent", "#@", "   \r\n", "\u0436\u0434\u0451", "\\-"], [" @", "(@", " @_", "@", "\\n", " #", " #@", ".@"], [" **#", " **+", " **", " **\u20ac", " **\u300c", "avirus", "atonin", "yron"], [" pornstar", "-ish", " **\u300c", " **\u20ac", " **+", " framerate", "STANCE", " **\u00ab"], ["-ish", " framerate", " vibe", "-high", "-tech", " hardcore", " adrenaline", "-fat"], ["-ish", "-high", "-or", "-heavy", "-tech", " vibe", " effortlessly", " combo"], [" effortlessly", " incredibly", " potentially", " buzz", " \u2013", " high", " wildly", "-high"], ["\u2013", " \u2013", ",", "-", " incredibly", "-high", " effortlessly", " buzz"], ["-heavy", "-high", "-tech", "\u2013", "-ish", "-hot", "-quality", "-hit"], ["-heavy", " buzz", " effortlessly", "-tech", "-esque", " incredibly", "-ish", "-high"], ["\u2013", "<|endoftext|>", "&#", " &#", " \u2013", "\u2014even", " swiftly", "ahead"], ["<|endoftext|>", " \n\n", " \r\n\r\n", "\r\n\r\n", "  \n\n", "\n\n", "\t\n\n", "Though"], [" framerate", "\u751a\u81f3\u4f1a", "\u76f8\u5173\u884c\u4e1a", "ptime", "Sharper", "ahead", "uptime", " glitches"], [" ''", " arguably", " quicker", " faster", " swiftly", " even", " &#", " speed"], [" even", " \u2013", " much", " rapidly", " heavily", " massively", " ultimately", " arguably"], [" \n\n", " \r\n\r\n", "   \n\n", "  \n\n", " \n  \n", " \r\n", "  \r\n\r\n", "\r\n\r\n"], [" framerate", " \r\n\r\n", " \n\n", " \r\n", " **#", " \n  \n", " speed", " glitches"], [" framerate", " speed", " speeds", " pixel", " glitches", " gaming", " clock", " shutter"], [" speed", " framerate", " even", " fast", " performance", " faster", " \n\n", " night"], [" framerate", " speed", " performance", " speeds", " night", " clock", " shutter", " pixel"], [" framerate", " speed", " performance", " pixel", " gameplay", " clock", " speeds", " Netflix"], [" speed", " framerate", " performance", " \u2013", " night", " Netflix", " pixel", " clock"], [" ", " speed", " \u2013", " fast", " Netflix", " performance", " night", " clock"], [" \u2013", " framerate", " Netflix", " clock", " seamlessly", " reboot", " speed", " Instagram"], [" framerate", " Netflix", " pixel", "/fast", " \u2013", " tech", " Instagram", " reboot"], [" framerate", " Netflix", " pixel", " smartphone", " Snapchat", " selfie", " Instagram", "/fast"], [" framerate", "/fast", " \u2013", "\u2011", " faster", " Netflix", " fastest", " speed"], [" framerate", " speed", "Speed", " pixel", " Android", " Speed", " fastest", " latency"], [" framerate", " Android", " pixel", " speed", " Pixel", " FPS", " milliseconds", " latency"], [" framerate", " pixel", " Pixel", " milliseconds", " FPS", " latency", " Android", " fps"], [" framerate", " milliseconds", " pixel", " latency", " Pixel", " Oculus", "Milliseconds", " fps"], [" framerate", "\u6bcf\u79d2", " fps", " speed", " milliseconds", "\u6bcf\u5206\u949f", " latency", " FPS"], [" framerate", "\u6bcf\u79d2", " fps", " milliseconds", "\u6bcf\u5206\u949f", "fps", " FPS", "Milliseconds"], [" framerate", "\u6bcf\u79d2", " milliseconds", " fps", "\u6bcf\u5206\u949f", "Milliseconds", " syncing", " synced"], [" framerate", "\u6bcf\u79d2", " milliseconds", " fps", "\u6bcf\u5206\u949f", " latency", "fps", "Milliseconds"], ["\u6bcf\u79d2", " framerate", "\u6bcf\u5206\u949f", " fps", " milliseconds", "Milliseconds", " latency", "fps"], ["\u6bcf\u79d2", " framerate", "\u6bcf\u5206\u949f", " milliseconds", " fps", " \u043a\u0430\u0436\u0434\u044b\u0435", "\u6bcf\u5c0f\u65f6", " FPS"], ["\u6bcf\u79d2", " framerate", "\u6bcf\u5206\u949f", " fps", " milliseconds", " \u043a\u0430\u0436\u0434\u044b\u0435", "\u6bcf\u5c0f\u65f6", "ptime"], ["\u6bcf\u79d2", "\u6bcf\u5206\u949f", " framerate", "\u6bcf", " milliseconds", " fps", " \u043a\u0430\u0436\u0434\u044b\u0435", "\u6bcf\u5c0f\u65f6"], ["\u6bcf\u79d2", "\u6bcf\u5206\u949f", " framerate", " milliseconds", " (~", "\u6bcf\u5c0f\u65f6", " fps", " \u043a\u0430\u0436\u0434\u044b\u0435"], [" framerate", "\u6bcf\u79d2", "\u6bcf\u5206\u949f", " (~", " milliseconds", "\u6bcf\u5c0f\u65f6", "ptime", "Milliseconds"], ["\u6bcf\u79d2", " framerate", "\u6bcf\u5206\u949f", " milliseconds", "ptime", "Milliseconds", "milliseconds", "\u6bcf\u5c0f\u65f6"], [" framerate", " milliseconds", "\u6bcf\u79d2", "/fast", "\u6bcf\u5206\u949f", "ptime", "milliseconds", " microseconds"], [" milliseconds", " framerate", "\u5e27", "milliseconds", "\u6bcf\u79d2", "\u6beb\u79d2", " microseconds", " timestep"], [" milliseconds", " framerate", "milliseconds", "\u6beb\u79d2", " microseconds", "seconds", "\u6bcf\u79d2", "\u5e27"], [" milliseconds", "milliseconds", "Milliseconds", "\u6beb\u79d2", " microseconds", "\u5468\u671f", "Millis", "(milliseconds"], [" milliseconds", "milliseconds", "\u6beb\u79d2", "Milliseconds", "\u5e27", "Frame", " framerate", " microseconds"], [" milliseconds", "milliseconds", "8", "Frame", "/frame", "\u5e27", "Milliseconds", "frame"], ["8", "-frame", "Frame", "frame", "/frame", "/ms", "\u5e27", " Frame"], [" ms", "/ms", "ms", "(ms", "8", "-ms", ".ms", "_ms"], ["8", " ms", "ms", "/ms", " eight", "-ms", "Ms", "(ms"], [" eight", "8", " ms", "\u516b\u5e74", "ms", " VIII", " eighth", "/ms"], ["8", " ms", " eight", "ms", "/ms", " milliseconds", " VIII", " Ms"], ["8", "1", "7", "6", "3", "9", "5", "4"]], "p": [[0.6249, 0.1682, 0.0794, 0.0242, 0.0177, 0.0177, 0.0079, 0.0048], [0.0231, 0.0071, 0.0055, 0.0049, 0.004, 0.0029, 0.0023, 0.0019], [0.5761, 0.1208, 0.0536, 0.0503, 0.0417, 0.0269, 0.0154, 0.0154], [0.0206, 0.0059, 0.0059, 0.003, 0.003, 0.0028, 0.0026, 0.0018], [0.0231, 0.009, 0.0058, 0.0055, 0.0045, 0.0043, 0.004, 0.0029], [0.0034, 0.0028, 0.0023, 0.0021, 0.0019, 0.0019, 0.0017, 0.0016], [0.0443, 0.0443, 0.0367, 0.0286, 0.0135, 0.0135, 0.0105, 0.0099], [0.0864, 0.0558, 0.0338, 0.0318, 0.0181, 0.011, 0.0071, 0.0067], [0.0759, 0.0555, 0.0406, 0.0279, 0.0192, 0.0169, 0.0149, 0.014], [0.0055, 0.0045, 0.0045, 0.0031, 0.0023, 0.0019, 0.0017, 0.0017], [0.0933, 0.0469, 0.0322, 0.0285, 0.0267, 0.0267, 0.0251, 0.0251], [0.016, 0.0091, 0.0067, 0.0063, 0.0063, 0.0025, 0.002, 0.002], [0.0039, 0.0032, 0.003, 0.0028, 0.0016, 0.0016, 0.0015, 0.0014], [0.0133, 0.0041, 0.0036, 0.0032, 0.0032, 0.0019, 0.0018, 0.0018], [0.0068, 0.0056, 0.0041, 0.0036, 0.0036, 0.0036, 0.0034, 0.0028], [0.0086, 0.0076, 0.0046, 0.0046, 0.0041, 0.0036, 0.0032, 0.0032], [0.0621, 0.0243, 0.0202, 0.0089, 0.007, 0.0058, 0.0054, 0.004], [0.0103, 0.0063, 0.0063, 0.0055, 0.0049, 0.0036, 0.0032, 0.0028], [0.0047, 0.0041, 0.0039, 0.0039, 0.0039, 0.0039, 0.0036, 0.0036], [0.0191, 0.0159, 0.0159, 0.009, 0.009, 0.0038, 0.0029, 0.0024], [0.9564, 0.0013, 0.0013, 0.0005, 0.0004, 0.0003, 0.0003, 0.0002], [0.004, 0.0027, 0.0023, 0.002, 0.0017, 0.0015, 0.0014, 0.0011], [0.0169, 0.0055, 0.004, 0.0038, 0.0035, 0.0033, 0.0033, 0.0033], [0.0058, 0.0045, 0.0042, 0.004, 0.0029, 0.0029, 0.0029, 0.0024], [0.5567, 0.298, 0.0277, 0.0203, 0.0055, 0.0043, 0.0035, 0.0035], [0.2635, 0.0911, 0.014, 0.0096, 0.0062, 0.0058, 0.004, 0.0031], [0.1519, 0.0219, 0.0133, 0.011, 0.0086, 0.0086, 0.0067, 0.0049], [0.028, 0.0141, 0.0124, 0.0075, 0.0063, 0.0049, 0.0049, 0.0049], [0.056, 0.0264, 0.0081, 0.0076, 0.0076, 0.0067, 0.0055, 0.0052], [0.1505, 0.0191, 0.014, 0.0132, 0.007, 0.007, 0.007, 0.0066], [0.0325, 0.027, 0.0253, 0.0174, 0.0164, 0.0154, 0.0127, 0.012], [0.0343, 0.0284, 0.0172, 0.0134, 0.0111, 0.0105, 0.0098, 0.0098], [0.0338, 0.0299, 0.0233, 0.0125, 0.0117, 0.011, 0.0103, 0.0103], [0.1496, 0.0244, 0.0216, 0.0096, 0.009, 0.0079, 0.007, 0.0062], [0.1316, 0.0215, 0.0148, 0.013, 0.0095, 0.009, 0.009, 0.009], [0.2311, 0.0276, 0.0244, 0.0229, 0.0202, 0.0178, 0.0178, 0.0167], [0.4308, 0.0427, 0.0312, 0.0167, 0.013, 0.013, 0.0122, 0.0122], [0.3096, 0.0394, 0.0326, 0.0271, 0.0239, 0.0145, 0.0136, 0.0128], [0.4934, 0.0296, 0.0231, 0.0169, 0.0159, 0.0124, 0.0116, 0.0102], [0.3918, 0.053, 0.025, 0.025, 0.0208, 0.0111, 0.0111, 0.0098], [0.7956, 0.095, 0.0146, 0.0088, 0.0083, 0.0047, 0.0044, 0.0037], [0.7176, 0.1814, 0.0217, 0.0131, 0.0058, 0.004, 0.0038, 0.0026], [0.6635, 0.1677, 0.0292, 0.0166, 0.0101, 0.0078, 0.0051, 0.0051], [0.4427, 0.3043, 0.0467, 0.0301, 0.0207, 0.0081, 0.0063, 0.0059], [0.5514, 0.179, 0.0746, 0.0275, 0.0275, 0.0069, 0.0051, 0.004], [0.5784, 0.1291, 0.1291, 0.0186, 0.0154, 0.0053, 0.0041, 0.0032], [0.3647, 0.2212, 0.1112, 0.0281, 0.0219, 0.0117, 0.0071, 0.0043], [0.4375, 0.1713, 0.0917, 0.015, 0.0141, 0.011, 0.008, 0.0066], [0.4721, 0.1271, 0.082, 0.0195, 0.0195, 0.0118, 0.0067, 0.0063], [0.2065, 0.1608, 0.067, 0.0232, 0.018, 0.0159, 0.0132, 0.0075], [0.2138, 0.147, 0.0787, 0.0448, 0.0121, 0.0106, 0.01, 0.0069], [0.0958, 0.0513, 0.0292, 0.0292, 0.0228, 0.0167, 0.0147, 0.0122], [0.1764, 0.1462, 0.0419, 0.037, 0.0186, 0.0164, 0.0154, 0.012], [0.22, 0.0382, 0.0337, 0.015, 0.015, 0.0141, 0.011, 0.0103], [0.6573, 0.1142, 0.0611, 0.0327, 0.0255, 0.0078, 0.0053, 0.0047], [0.3706, 0.2112, 0.0416, 0.0223, 0.0196, 0.0135, 0.0119, 0.0105], [0.1873, 0.0781, 0.0504, 0.0326, 0.0306, 0.0238, 0.0224, 0.0185], [0.1234, 0.0903, 0.0848, 0.0848, 0.0796, 0.0454, 0.04, 0.0376], [0.3806, 0.2964, 0.1236, 0.0455, 0.0401, 0.0243, 0.0215, 0.0122], [0.9323, 0.0319, 0.0086, 0.0052, 0.0014, 0.0013, 0.0013, 0.0012], [0.4885, 0.3804, 0.0401, 0.0115, 0.0115, 0.0101, 0.0065, 0.0065], [0.9589, 0.0128, 0.0107, 0.0061, 0.0015, 0.0007, 0.0004, 0.0003], [0.9994, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [41714, 131153, 109900, 137917, 16026, 33554, 71774, 35457, 65555, 29535, 13122, 47245, 24330, 18367, 18420, 7789, 11839, 47714, 49675, 56911, 101598, 93776, 32185, 27239, 49924, 72533, 35129, 11190, 14196, 17428, 11657, 12183, 15211, 48936, 46734, 78547, 72190, 82921, 104886, 98317, 105402, 193672, 205119, 215375, 216353, 202084, 150946, 149011, 162613, 164822, 93411, 168913, 210161, 205774, 192417, 180671, 193866, 173865, 184190, 143568, 158940, 94432, 53631]}}, {"pos": 537, "top": [[".", ",", " \u2013", "\u2026..", "\u2026\u2026", " \u200b\u200b", "-", "\u2013"], [" \u200b\u200b", "ed", "\u200b\u200b", "'gc", "\u2026..", " \u2013", ":\\\"", "es"], ["\u2026..", ".", "\u2026\u2026", "\u2013", " \u2013", " \u200b\u200b", ",", "\u2026."], [" Geile", " Shemale", " milfs", " **\u201e", " Nues", " Bbw", " **\u300c", " pupper"], ["ed", ":@", "@", ".@", "ible", " \u200b\u200b", "@\\", "//@"], [" \u200b\u200b", "ed", "ible", "!\u00bb", ".\u00bb", "\u2026..", "\u2026\u2026\u3002", ":@"], [".\u00bb", "!\u00bb", "\u00bb", "\u2014\u2014", "  \n", " \u200b\u200b", "\u201e", "\u2026\u2026\u3002"], [".\u00bb", " **\u201e", "!\u00bb", "\u201e", " **\u00ab", "ible", "  \n", "\u00bb"], [".\u00bb", "\u00bb", "!\u00bb", "  \n", "  \n\n", " \u200b\u200b", "\u00bb.", "    \n\n"], ["@\\", "\\n", ".\u00bb", "\u00adt", " \u00ad", "#####", "!\u00bb", "ible"], [".\u00bb", "\\n", "@", "@\\", "\u00bb", ".\u00ab", " @", ".@"], [" **\u00ab", " **\u300c", " **\u201e", "ible", "ware", "egger", ".\u00ab", " \u00bb**"], [" **\u00ab", " **\u300c", "ible", "ware", ".\u00ab", " **\u201e", "raquo", "ging"], ["ware", ".\u00ab", ".\u00bb", "ging", "ible", " **\u00ab", "ers", "ified"], ["an", "ware", "ed", "es", "est", "ified", "ar", "ers"], ["an", "es", "ed", "n", "ar", "m", "s", "ware"], ["an", "es", "n", "ed", "s", "ar", "m", "est"], ["es", "n", "an", "ar", "m", "ed", "est", "ware"], ["ware", "an", "es", "n", "ar", " \u00ad", "ion", "ug"], ["an", "n", " \u00ad", "m", "d", "kin", "ware", "es"], ["<|endoftext|>", "an", "n", "d", "m", "&", " \u00ad", "f"], ["ware", "kin", " ``", "eenth", "an", "uage", "ely", "illion"], [" ``", "an", "n", "kin", "ware", " \u00ad", "much", "d"], ["an", " \u00ad", "n", "much", "kin", " ``", "fully", "d"], ["  \n\n", " \n\n", "   \n\n", " \u00ad", "&nbsp", "&#", " \r\n\r\n", "Though"], ["&nbsp", "ware", "kin", "   \n\n", "illion", " famously", " MEDIATEK", "  \n\n"], [" speed", " speeds", "illion", "ware", " gaming", " ;;^", " shutter", "kin"], [" speed", " even", " --", " famously", " ,", " over", " arguably", " speeds"], [" speed", " speeds", " even", " faster", " famously", " overtime", " --", " nightly"], [" even", " ", " or", " \u2013", " speed", " \u2014", " faster", " potentially"], [" even", " or", " ", " speed", " \u200b\u200b", " faster", " \u2013", " speeds"], [" or", " even", " ", " speed", " .", " faster", " long", " time"], [" even", " or", " later", " eventually", " over", " faster", " before", " at"], [" even", " faster", " slower", " \u2013", " or", " speeds", " speed", " fastest"], [" even", " faster", " famously", " notoriously", " fastest", " slower", "\u2014even", " overclock"], [" \u2013", " even", " faster", " overclock", " slower", "\u2014if", " fastest", " \u2014"], [" even", " faster", " fastest", " overclock", " speed", " speeds", " notoriously", " slower"], [" even", " faster", " fastest", " speed", " overclock", " speeds", " /", " fast"], [" even", " speeds", " fastest", " faster", " speed", " /", " overclock", "/fast"], [" speeds", " speed", " fastest", " faster", "/fast", " even", " overclock", " /"], [" speeds", " speed", " fastest", " faster", "/fast", " overclock", " framerate", " fast"], [" speeds", " speed", " faster", " overclock", "\u6bcf\u79d2", " fastest", "/fast", " nightly"], [" speeds", " speed", " faster", "/fast", "\u6bcf\u79d2", " overclock", " avg", " fastest"], [" speeds", " faster", " stable", " avg", " speed", " nightly", " average", " stability"], [" speeds", " faster", " speed", " avg", " nightly", " stability", " average", "\u6bcf\u79d2"], [" speeds", " nightly", " even", " reliably", "\u6bcf\u79d2", " stabil", " fps", " stability"], ["\u2014even", " even", " fps", " GHz", "\u6bcf\u79d2", "\u4e43\u81f3", " speeds", " framerate"], ["/", "\u2014even", "\u4e43\u81f3", "\u751a\u81f3", "/fast", "\u2014if", " (~", "\u2014or"], ["\u2014even", " (~", " (>", "-hour", " GHz", "8", " fps", "\u2014and"], [" (~", " (>", " (<", "8", " (\u00a3", "\u6bcf\u5206\u949f", "/fast", "\u6bcf\u79d2"], ["8", "6", "7", " (>", " (~", "5", "9", "\u6bcf\u79d2"], ["/fast", " milliseconds", " microseconds", " fps", " framerate", " Hz", " (>", " (\"/"], [" milliseconds", " microseconds", " latency", " framerate", "Milliseconds", "milliseconds", " fps", " FPS"], [" milliseconds", " microseconds", "Milliseconds", " latency", "milliseconds", "/fast", "\u6beb\u79d2", " msec"], [" milliseconds", " microseconds", "Milliseconds", "milliseconds", "\u6beb\u79d2", " millis", " msec", "Millis"], [" milliseconds", " microseconds", "Milliseconds", " frames", "milliseconds", " fps", "\u5e27", " msec"], [" milliseconds", " microseconds", "Milliseconds", "-frame", " frames", " msec", "ms", " ms"], ["ms", " ms", " milliseconds", "Hz", "-frame", "hz", " Hz", " frames"], [" ms", "ms", "-ms", "(ms", "/ms", ".ms", " milliseconds", "_ms"], [" ms", "ms", "-ms", " milliseconds", "/ms", "(ms", ".ms", "_ms"], [" ms", "ms", " milliseconds", "-ms", "/ms", ".ms", "(ms", "_ms"], ["ms", " ms", " milliseconds", "/ms", "3", "-ms", "(ms", ".ms"], ["ms", " ms", ".", "3", "-ms", "/ms", "MS", "(ms"]], "p": [[0.874, 0.0384, 0.0299, 0.016, 0.0063, 0.0046, 0.0032, 0.003], [0.0758, 0.0231, 0.018, 0.0169, 0.0132, 0.0116, 0.0096, 0.0075], [0.3776, 0.2941, 0.1226, 0.0374, 0.0351, 0.0291, 0.02, 0.0101], [0.0283, 0.0235, 0.0161, 0.0092, 0.0049, 0.0046, 0.0038, 0.0036], [0.1943, 0.0263, 0.0159, 0.015, 0.0141, 0.0141, 0.0132, 0.0124], [0.3596, 0.0403, 0.0148, 0.0139, 0.0055, 0.0048, 0.0045, 0.0031], [0.1004, 0.0537, 0.0445, 0.0445, 0.0393, 0.0306, 0.0254, 0.0174], [0.0404, 0.0277, 0.0245, 0.0203, 0.0203, 0.0191, 0.0139, 0.0131], [0.1126, 0.0641, 0.0441, 0.0343, 0.0322, 0.0196, 0.0184, 0.0162], [0.0457, 0.0404, 0.023, 0.0148, 0.0139, 0.0131, 0.0096, 0.0096], [0.1546, 0.0938, 0.0777, 0.0605, 0.0472, 0.0416, 0.0209, 0.0173], [0.1836, 0.1262, 0.0151, 0.0071, 0.0059, 0.0049, 0.0043, 0.0032], [0.0809, 0.0279, 0.0132, 0.0132, 0.0091, 0.0071, 0.0052, 0.0049], [0.0582, 0.0138, 0.0095, 0.0065, 0.0058, 0.0058, 0.0051, 0.0042], [0.0383, 0.0383, 0.0205, 0.0141, 0.011, 0.0103, 0.0097, 0.0076], [0.1001, 0.0646, 0.057, 0.0325, 0.0287, 0.0223, 0.0163, 0.0144], [0.1036, 0.0859, 0.0758, 0.0521, 0.046, 0.046, 0.0406, 0.0169], [0.0671, 0.063, 0.0592, 0.0317, 0.028, 0.0247, 0.015, 0.0132], [0.035, 0.029, 0.0212, 0.0129, 0.0094, 0.0083, 0.0073, 0.0073], [0.057, 0.0325, 0.0253, 0.0223, 0.0153, 0.0135, 0.0135, 0.0119], [0.1148, 0.0542, 0.0478, 0.0397, 0.0273, 0.0155, 0.0137, 0.0129], [0.0188, 0.0095, 0.0078, 0.0039, 0.0037, 0.0024, 0.0024, 0.0022], [0.0218, 0.0124, 0.011, 0.0103, 0.0086, 0.0075, 0.0046, 0.0046], [0.0124, 0.009, 0.0066, 0.0062, 0.0058, 0.0038, 0.0035, 0.0035], [0.0628, 0.0628, 0.0489, 0.0459, 0.0358, 0.0109, 0.0102, 0.0085], [0.0054, 0.0048, 0.004, 0.0029, 0.0029, 0.0027, 0.0021, 0.002], [0.009, 0.007, 0.0038, 0.0033, 0.0028, 0.002, 0.0019, 0.0019], [0.0289, 0.024, 0.0155, 0.01, 0.0078, 0.0065, 0.0061, 0.0061], [0.0278, 0.0109, 0.0102, 0.008, 0.0066, 0.0058, 0.0045, 0.0043], [0.1385, 0.0397, 0.0309, 0.0309, 0.0273, 0.0114, 0.0107, 0.0089], [0.0971, 0.0912, 0.0553, 0.0315, 0.0278, 0.0149, 0.014, 0.0131], [0.0608, 0.0571, 0.0445, 0.0253, 0.021, 0.0154, 0.0093, 0.0093], [0.376, 0.0309, 0.0137, 0.0094, 0.0083, 0.0078, 0.0078, 0.0069], [0.3005, 0.028, 0.0218, 0.0097, 0.0085, 0.0071, 0.0066, 0.0062], [0.0576, 0.0176, 0.0155, 0.0113, 0.0106, 0.0106, 0.0094, 0.0088], [0.0643, 0.0366, 0.0285, 0.0127, 0.0127, 0.0119, 0.0119, 0.0112], [0.0549, 0.0428, 0.0294, 0.0202, 0.0178, 0.0178, 0.0148, 0.0139], [0.0695, 0.0349, 0.0308, 0.0225, 0.0212, 0.0187, 0.0128, 0.01], [0.0624, 0.0295, 0.0277, 0.0277, 0.0244, 0.0229, 0.0168, 0.0139], [0.0407, 0.0317, 0.0298, 0.0247, 0.0218, 0.017, 0.016, 0.0124], [0.1228, 0.1018, 0.0512, 0.0424, 0.0242, 0.0213, 0.0156, 0.0156], [0.1033, 0.0519, 0.0261, 0.0203, 0.0169, 0.0169, 0.014, 0.014], [0.075, 0.0377, 0.0377, 0.0276, 0.0229, 0.0157, 0.0157, 0.0139], [0.0352, 0.02, 0.0177, 0.0177, 0.0177, 0.0166, 0.0166, 0.0147], [0.0829, 0.0368, 0.0286, 0.0269, 0.021, 0.0174, 0.0163, 0.0144], [0.0398, 0.0213, 0.0177, 0.0138, 0.0121, 0.0114, 0.0114, 0.0114], [0.0329, 0.0226, 0.0213, 0.0156, 0.0146, 0.0146, 0.0129, 0.0129], [0.0975, 0.063, 0.0461, 0.0359, 0.014, 0.0091, 0.0091, 0.0085], [0.0314, 0.0277, 0.0203, 0.0158, 0.0102, 0.0096, 0.0079, 0.0075], [0.1495, 0.0852, 0.0158, 0.0148, 0.0139, 0.0102, 0.0084, 0.0084], [0.2416, 0.0394, 0.037, 0.0307, 0.0307, 0.0255, 0.0186, 0.0128], [0.096, 0.0847, 0.0312, 0.0178, 0.0147, 0.0108, 0.0108, 0.0108], [0.6475, 0.0993, 0.0236, 0.0208, 0.0152, 0.0126, 0.0098, 0.0092], [0.5941, 0.1099, 0.0169, 0.0123, 0.0116, 0.0102, 0.0062, 0.0062], [0.7638, 0.1704, 0.0296, 0.0123, 0.0058, 0.0033, 0.0019, 0.001], [0.6192, 0.1382, 0.0272, 0.024, 0.0113, 0.0113, 0.0113, 0.0107], [0.4531, 0.1667, 0.0613, 0.0212, 0.0187, 0.0155, 0.0121, 0.0121], [0.1517, 0.1258, 0.111, 0.0812, 0.0763, 0.0594, 0.0384, 0.0299], [0.8091, 0.1805, 0.0029, 0.0018, 0.0018, 0.0016, 0.0012, 0.0005], [0.8138, 0.1816, 0.0011, 0.0008, 0.0007, 0.0007, 0.0005, 0.0003], [0.7512, 0.2439, 0.0013, 0.0011, 0.0009, 0.0006, 0.0005, 0.0001], [0.85, 0.1477, 0.0004, 0.0003, 0.0003, 0.0003, 0.0002, 0.0002], [0.9983, 0.0013, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [38548, 105231, 94089, 85342, 33415, 58626, 62875, 58335, 58803, 42949, 49893, 72370, 43499, 50061, 35640, 9847, 19942, 42028, 109915, 71192, 85931, 79730, 54742, 50144, 63280, 70750, 34628, 12127, 12421, 7923, 9102, 9801, 10845, 16063, 16261, 25886, 31820, 57360, 73888, 86906, 63588, 81669, 65593, 53923, 40302, 42399, 36857, 51531, 60429, 38441, 23487, 69239, 79866, 64681, 55305, 52614, 34698, 105735, 67202, 24191, 12662, 3022, 1614]}}, {"pos": 538, "top": [[".", " \u2013", ",", "\u2013", ";", "\u00a0\u00a0", "\u00a0", " \u200b\u200b"], [" \u2013", "\u2013", ".", ",", " \u200b\u200b", ";", "\u2013and", " "], ["\u2013", ",", ".", " \u2013", "\u2026..", "\u2026.", ";", "\u2026"], [" milfs", " Blowjob", " Shemale", "-------------</", " Guta", "odle", "----------</", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9"], [" \u201c", " HK", " \u201c.", " (@", ":@", "(@", " Krem", " Pop"], [" \u200b\u200b", "fst", "\u00a0\u00a0", " \u201c.", "\u2026..", " \u201c", " HK", " Zer"], ["\u201c", "!\u201d", " \u201c", " \n", "  \n", ".\u201d", "\u201d", "\u2014\u2014"], [" \t\n", "\u000b", " \n", "   \n", "!\u201d.", "serialization", "-disable", "\t\n"], ["!\u201d.", "!\u201d", " \n", "\u201d.", " \u200b\u200b", ".\u201d", "\u201c.", "!\u201c"], [" \u00ad", "\u00adt", "\u00ad", "\ufffd", "\u00adtion", "\u6709\u70b9\u513f", "\u00a0", " \t\n"], [" \u00ad", " @", "\u00a0", "@", "\u00ad", "\ufffd", "&nbsp", "\u200b"], ["ogar", "-esque", " Blowjob", "haps", "avior", "htag", "Sharper", "voke"], ["-esque", "ogar", "htag", "avior", "cius", " flavorful", "aaS", " crunchy"], ["-esque", "Sharper", " pricey", " skinny", " vibe", "\u98d8\u9999", "-ish", " crunchy"], ["-esque", " wildly", " touted", " effortlessly", " though", " tough", " aggressively", " hefty"], ["-esque", " wildly", " touted", " arguably", " though", " effortlessly", " savvy", " bolster"], ["-esque", " wildly", " though", " tough", " standout", "\u2013", " bolster", " effortlessly"], ["-esque", "Though", " wildly", " hefty", " standout", " though", " savvy", " touted"], ["-esque", " hefty", " wildly", "Though", "\u6b64\u756a", " touted", " savvy", " though"], ["<|endoftext|>", "Though", "\u00a0", " though", "\u2013", "though", " \u2014", " \u00ad"], ["<|endoftext|>", "Though", " \n\n", "\u00a0", "8", "7", "1", "\t\n\n"], ["ksom", "Sharper", "-esque", "uptime", "\u9738\u6c14", "baugh", "\uc728\uc744", "\u4e5f\u5e76\u4e0d"], [" wildly", "-esque", "ksom", " arguably", "oft", " Thankfully", "\u6b64\u756a", " hugely"], ["\u6b64\u756a", " --", "Though", " notably", " arguably", "Aside", "much", " wildly"], ["Though", "\u6b64\u756a", " \n\n", "\u76f8\u8f83", " arguably", " --", " \u00ad", " requisite"], [" \n\n", " arguably", "baugh", " wildly", "ksom", "-esque", "uptime", "\u9891\u6b21"], ["\uc728", "ksom", "\uc728\uc744", "uptime", "\uc728\uc740", " speed", " overtime", " throttle"], [" ___", " --", " **", " \n\n", " speed", " __", " hours", " overtime"], [" hours", " microseconds", " speed", " downtime", " milliseconds", "ptime", " horsepower", " overtime"], ["\u2011", " overtime", " hours", " speed", " \u2014", " shock", " time", " rate"], ["\u2011", " hours", " \u200b\u200b", " speed", " overtime", " time", " horsepower", " rate"], ["\u2011", " \u2013", " \u2014", "\u200b", " time", "\u2013", " hours", " \u200b"], ["\u2011", " \u2013", " \u2014", "\u2013", "\u200b", "\u2014", "\ufffd", " \u200b"], ["\u2011", " \u2013", " \u2014", "\u6bcf\u79d2", "\u2013", "\u6bcf\u5206\u949f", " \u00ad", " (!"], ["\u2011", "\u6bcf\u5206\u949f", "\u6bcf\u79d2", " (!", "/fast", " \u00ad", "(!", " trillion"], ["\u2011", "\u6bcf\u79d2", "/fast", "\u6bcf\u5206\u949f", "speed", " speed", " framerate", " fastest"], [" speed", "\u6bcf\u79d2", "speed", "Speed", " speeds", " Speed", "\u2011", " framerate"], ["\u6bcf\u79d2", " \u200b\u200b", " speed", " milliseconds", " framerate", "\u6bcf\u5206\u949f", "\u200b\u200b", "\u200b"], [" milliseconds", " \u200b\u200b", " framerate", "\u6bcf\u79d2", "ptime", "\u200b", " speed", " microseconds"], [" milliseconds", " framerate", " \u200b\u200b", "milliseconds", "\u6bcf\u79d2", "\u200b", " latency", "\u200b\u200b"], ["\u6bcf\u79d2", " milliseconds", " framerate", "ptime", "\u6bcf\u5206\u949f", " latency", " microseconds", "milliseconds"], ["\u6bcf\u79d2", " milliseconds", " framerate", " latency", "\u6bcf\u5206\u949f", "Milliseconds", "ptime", " microseconds"], ["\u6bcf\u79d2", " milliseconds", "\u5468\u671f\u7684", "\u6bcf\u5206\u949f", " latency", " framerate", "Milliseconds", "\u5468\u671f"], [" milliseconds", "\u6bcf\u79d2", "\u6bcf\u5206\u949f", "\u6beb\u79d2", " microseconds", " latency", "Milliseconds", " framerate"], ["\u6bcf\u79d2", " milliseconds", "\u6bcf\u5206\u949f", " microseconds", "Milliseconds", "\u6beb\u79d2", "milliseconds", " framerate"], ["\u6bcf\u79d2", " milliseconds", "\u6bcf\u5206\u949f", "\u6beb\u79d2", " microseconds", "Milliseconds", "ptime", "milliseconds"], [" milliseconds", "\u6bcf\u79d2", "\u6bcf\u5206\u949f", "ptime", " microseconds", "\u6bcf", "milliseconds", "\u6beb\u79d2"], ["\u6bcf", "\u6bcf\u79d2", " milliseconds", "\u6bcf\u5206\u949f", " (<", "!/", " microseconds", "milliseconds"], ["\u6bcf\u79d2", "\u6bcf", "\u6bcf\u5206\u949f", " milliseconds", " microseconds", "\u6beb\u79d2", "\u6bcf\u6b21", "\u6bcf\u4e2a"], ["\u6bcf\u79d2", "\u6bcf\u5206\u949f", "\u6bcf", " milliseconds", " microseconds", "conds", "milliseconds", "\u65f6\u957f"], [" milliseconds", " microseconds", "milliseconds", "\u6bcf\u79d2", "conds", "ptime", " framerate", " INTERVAL"], [" milliseconds", " microseconds", " framerate", "milliseconds", "\u6bcf\u79d2", "Milliseconds", "ptime", "conds"], [" milliseconds", " microseconds", "\u5e27", " framerate", " latency", " deltaTime", "milliseconds", "Milliseconds"], [" milliseconds", " microseconds", "\u5e27", " latency", "Milliseconds", " deltaTime", "milliseconds", " msec"], [" milliseconds", " microseconds", "milliseconds", "Milliseconds", "\u5e27", "\u6beb\u79d2", " latency", " millis"], [" milliseconds", "\u5e27", "-frame", "frame", "milliseconds", " microseconds", " msec", "frames"], [" milliseconds", "-frame", "Milliseconds", " msec", "\u5e27", "frame", " microseconds", "milliseconds"], ["3", "ms", " ms", " milliseconds", "-frame", "Milliseconds", "frame", " latency"], [" ms", "ms", ".ms", "-ms", "/ms", " milliseconds", "(ms", "_ms"], [" ms", "ms", " milliseconds", "/ms", ".ms", "-ms", "(ms", "3"], [" ms", "3", "ms", "/ms", " milliseconds", "(ms", "-ms", ".ms"], ["3", " ms", "ms", " milliseconds", "/ms", "(ms", "-ms", " MS"], ["3", "4", "2", "5", "6", "1", "8", "7"]], "p": [[0.805, 0.0749, 0.0749, 0.0147, 0.0061, 0.0058, 0.0042, 0.0033], [0.1063, 0.0828, 0.0163, 0.0093, 0.0082, 0.0053, 0.0041, 0.0017], [0.4333, 0.2628, 0.2319, 0.019, 0.0148, 0.0139, 0.0075, 0.0023], [0.0136, 0.0088, 0.0057, 0.0047, 0.0039, 0.003, 0.003, 0.0029], [0.0045, 0.0031, 0.0031, 0.0016, 0.0016, 0.0013, 0.0011, 0.0011], [0.0055, 0.004, 0.0018, 0.0017, 0.0016, 0.0015, 0.0014, 0.0011], [0.0488, 0.0357, 0.0335, 0.0315, 0.023, 0.0216, 0.0191, 0.0179], [0.0059, 0.0033, 0.003, 0.0028, 0.0022, 0.0019, 0.0019, 0.0019], [0.1227, 0.1018, 0.0424, 0.0424, 0.0398, 0.033, 0.0257, 0.0213], [0.0271, 0.0064, 0.0053, 0.0047, 0.0024, 0.0021, 0.0021, 0.0018], [0.1173, 0.1035, 0.0757, 0.0554, 0.0336, 0.0336, 0.0246, 0.0191], [0.0032, 0.0025, 0.0022, 0.0022, 0.0022, 0.0021, 0.0017, 0.0016], [0.0065, 0.0042, 0.0029, 0.0027, 0.002, 0.0019, 0.0017, 0.0017], [0.0252, 0.0017, 0.0017, 0.0014, 0.0012, 0.0012, 0.001, 0.0009], [0.028, 0.008, 0.008, 0.0059, 0.0052, 0.0052, 0.0043, 0.0038], [0.0209, 0.0144, 0.0144, 0.0064, 0.006, 0.0056, 0.0056, 0.0056], [0.0312, 0.0101, 0.0095, 0.0089, 0.0084, 0.0084, 0.007, 0.0061], [0.054, 0.0083, 0.0073, 0.005, 0.0047, 0.0044, 0.0042, 0.0039], [0.0147, 0.0045, 0.0039, 0.0033, 0.0024, 0.0024, 0.002, 0.0016], [0.0679, 0.0142, 0.0098, 0.0092, 0.0072, 0.0067, 0.0056, 0.0046], [0.9335, 0.0015, 0.0006, 0.0006, 0.0004, 0.0004, 0.0004, 0.0004], [0.0041, 0.0018, 0.0014, 0.0014, 0.0012, 0.0012, 0.0011, 0.001], [0.0023, 0.002, 0.0017, 0.0016, 0.0015, 0.0011, 0.0011, 0.0011], [0.002, 0.002, 0.0013, 0.0012, 0.0012, 0.0012, 0.001, 0.0009], [0.004, 0.002, 0.002, 0.0018, 0.0017, 0.0017, 0.0016, 0.0015], [0.0051, 0.0019, 0.0019, 0.0016, 0.0016, 0.0015, 0.0014, 0.0014], [0.004, 0.0031, 0.0029, 0.0026, 0.0023, 0.002, 0.0018, 0.0016], [0.015, 0.011, 0.0091, 0.0091, 0.0085, 0.0075, 0.0075, 0.0052], [0.0062, 0.0058, 0.0045, 0.0038, 0.0035, 0.0033, 0.0031, 0.0029], [0.0273, 0.0187, 0.0165, 0.0114, 0.0083, 0.0065, 0.0065, 0.0057], [0.0968, 0.023, 0.0148, 0.0139, 0.0085, 0.0079, 0.0062, 0.0055], [0.4557, 0.0657, 0.0451, 0.0351, 0.0107, 0.0078, 0.0069, 0.0065], [0.6476, 0.1538, 0.0441, 0.0285, 0.0126, 0.0032, 0.0025, 0.0018], [0.3087, 0.0885, 0.021, 0.012, 0.0112, 0.0112, 0.0073, 0.0068], [0.2841, 0.0264, 0.0206, 0.0151, 0.0091, 0.0076, 0.0071, 0.0059], [0.1956, 0.0983, 0.0596, 0.041, 0.034, 0.0234, 0.0151, 0.0133], [0.2221, 0.1434, 0.1189, 0.0527, 0.0437, 0.0282, 0.0265, 0.0249], [0.2517, 0.1189, 0.0598, 0.0386, 0.0341, 0.0301, 0.0265, 0.0234], [0.1106, 0.0917, 0.076, 0.0714, 0.0382, 0.0263, 0.0218, 0.0159], [0.2523, 0.0679, 0.0529, 0.0363, 0.0301, 0.0266, 0.025, 0.0235], [0.2691, 0.1738, 0.1122, 0.0413, 0.0266, 0.025, 0.0162, 0.0152], [0.4413, 0.184, 0.0495, 0.032, 0.0265, 0.0234, 0.022, 0.0161], [0.319, 0.1935, 0.0432, 0.0297, 0.0262, 0.0192, 0.0192, 0.0192], [0.3743, 0.2003, 0.0348, 0.0225, 0.0198, 0.0198, 0.0175, 0.0164], [0.3947, 0.2394, 0.0881, 0.0209, 0.0197, 0.0163, 0.0087, 0.0082], [0.2993, 0.219, 0.1248, 0.0231, 0.0231, 0.0132, 0.0124, 0.0116], [0.1402, 0.1238, 0.0428, 0.0313, 0.0294, 0.0202, 0.019, 0.0079], [0.1687, 0.0903, 0.0354, 0.0293, 0.0122, 0.0101, 0.0089, 0.0079], [0.1673, 0.0896, 0.045, 0.0273, 0.0129, 0.0083, 0.0083, 0.0074], [0.0999, 0.0305, 0.0286, 0.0237, 0.0185, 0.0135, 0.0099, 0.0099], [0.0414, 0.0236, 0.0152, 0.0152, 0.0105, 0.0098, 0.0068, 0.0063], [0.0841, 0.0543, 0.0226, 0.0166, 0.0114, 0.0107, 0.0107, 0.0069], [0.2291, 0.0579, 0.0511, 0.0451, 0.031, 0.0291, 0.0227, 0.02], [0.2044, 0.0456, 0.0215, 0.0202, 0.0179, 0.0179, 0.0168, 0.0115], [0.513, 0.0891, 0.0508, 0.0421, 0.0328, 0.0289, 0.0106, 0.01], [0.1832, 0.0981, 0.0409, 0.0339, 0.0339, 0.0318, 0.0248, 0.0181], [0.1484, 0.0619, 0.0546, 0.0425, 0.0375, 0.0258, 0.0242, 0.0156], [0.1077, 0.0788, 0.0372, 0.0226, 0.0212, 0.0165, 0.0107, 0.0083], [0.5032, 0.444, 0.0111, 0.0081, 0.0046, 0.0046, 0.0032, 0.0022], [0.7546, 0.2162, 0.0051, 0.0045, 0.004, 0.0031, 0.0024, 0.0018], [0.7149, 0.1408, 0.1242, 0.0062, 0.0055, 0.0023, 0.0016, 0.0015], [0.9874, 0.0085, 0.0036, 0.0001, 0.0001, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [34253, 61834, 57978, 75127, 12921, 27906, 26209, 16911, 28134, 15021, 12400, 49134, 24164, 28183, 9961, 10230, 15173, 37455, 98422, 71674, 115398, 142926, 144562, 120490, 139053, 124951, 94287, 59299, 64992, 29085, 49434, 34318, 98335, 181714, 139173, 156193, 108985, 155621, 166397, 158210, 159783, 202078, 217049, 207719, 190305, 207240, 146940, 141289, 112627, 124200, 41744, 71534, 76744, 48725, 29033, 16239, 12673, 60580, 64021, 65714, 51113, 37302, 12741]}}, {"pos": 539, "top": [[" \u2013", ".", "\u2013", "s", "y", "\u2026..", ".\u2013", ","], [" \u2013", "  \n", "\u2013", "s", "   \n", ".\u2013", "\u2013and", " *\u2013"], ["\u2013", " \u2013", ".\u2013", ".", "\u2026..", "\u2013and", "\u2026.", "**\u2013"], [" milfs", " Blowjob", " cumshot", " Shemale", " **\u25cb", " **:**", " **:", " **.**"], [" ***", "  \n", "***", " ____", "____", "   \n", " \"***", " ______"], [".", "\uff01", " ***", ".\u2013", "\u3002", " \uff08", "  \n", "   \n"], ["  \n", "\uff08", ".", " ***", "\u3002", " ____", "@", "____"], [".", " ***", "s", "  \n", "\\n", "rd", " ____", "--"], [".", "s", "@", "  \n", "&", ",", "!", " @"], [".", ",", "s", "rd", "\\n", "-", ".\\", "ward"], [".", "s", ",", "-", "@", "\\n", "\"", ";"], [" ***", " ____", " \\\"$", "istrator", "rd", " --", " \\\"", "s"], ["rd", "istrator", "s", "orama", "htag", "anity", "rokes", "ward"], ["s", "rd", " --", "ward", "orama", "ra", "anity", "istrator"], ["s", " --", "--", "rd", "ward", "-or", "n", "es"], ["s", " --", "--", "es", " &", " \\\"", "rd", " goofy"], ["s", "es", "rd", "n", " --", "--", "sing", "nix"], ["s", "es", "n", " --", "rd", "o", "--", "m"], ["s", " --", "--", "es", "n", "rd", " &", "o"], [" --", "s", "--", "n", " &", "m", "o", "es"], ["s", " --", "--", "n", "3", "2", "1", "4"], [" --", "s", "illion", "rd", " &", " ;", "istrator", " #"], [" --", "s", "n", "7", "2", "--", "8", "3"], [" --", "s", "n", " &", "--", " ;", "7", "8"], [" --", " \n\n", "\n\n", "s", "2", "7", "1", "8"], [" --", "s", " \n\n", " ___", "n", " __", " ---", " &"], [" --", "s", " ___", " __", " ;", " ,", " hours", " ____"], [" --", " ,", " &", "s", " .", " \u2014", " ;", "--"], [" --", "s", " hours", " &", " ,", " \u2014", " hour", " ."], [" --", " \u2014", "s", " \u2013", "\u2011", " hours", "\u2013", " rate"], [" .", " \u2013", "s", " ,", " \u2014", " --", " \n", " hours"], [" \u2013", " ", " ,", " .", " \u2014", " over", " for", "\u2011"], [" \u2013", " .", " (", " \u2014", " ", " ,", " /", " over"], [" (", " \u2013", " \u2014", " (~", " /", " aka", " (!", " hit"], [" (~", " (", " (!", " \u2014", " aka", " \u2013", " /", "\u2011"], [" (", " (!", " (~", " \u2013", " \u2014", " /", "/fast", " aka"], [" (~", " speed", " (", " (!", " \u2014", "/fast", " /", " \u2013"], [" (~", " speed", " (", " (!", " /", " fastest", "\u6bcf\u79d2", "/fast"], [" (~", " (", " (!", "\u6bcf\u79d2", " milliseconds", " speed", " /", "/fast"], [" milliseconds", "\u6bcf\u79d2", " speed", " (~", "/fast", " fastest", " speeds", " framerate"], ["\u6bcf\u79d2", " (~", " milliseconds", " speed", " framerate", "\u6bcf\u5206\u949f", " fastest", " (!"], ["\u6bcf\u79d2", " milliseconds", " (~", "\u6bcf\u5206\u949f", " avg", " speed", " latency", " framerate"], ["\u6bcf\u79d2", " milliseconds", " (~", "\u6bcf\u5206\u949f", " avg", " latency", " microseconds", " timeframe"], ["\u6bcf\u79d2", " milliseconds", " (~", "\u6bcf\u5206\u949f", " avg", " seconds", " (<", " microseconds"], [" (~", " milliseconds", "\u6bcf\u79d2", "\u6bcf\u5206\u949f", " avg", " average", " seconds", " (!"], [" (~", " milliseconds", "\u6bcf\u79d2", "\u6bcf\u5206\u949f", " (!", " seconds", " avg", " per"], [" (~", " (!", " (<", " milliseconds", " (>", "\u6bcf\u79d2", "\u6bcf\u5206\u949f", " avg"], [" (~", " (<", " (>", " (", " (!", "\u6bcf\u79d2", " (=", " milliseconds"], [" (~", " (<", " (>", "\u6bcf\u79d2", " (!", " (\\", " (\u00a3", " ($"], [" (~", " (<", " (>", " (!", "\u6bcf\u79d2", " milliseconds", " (\\", " (\u00a3"], [" (~", " (<", " (>", " milliseconds", " (**", "\u6bcf\u79d2", " (!", " microseconds"], [" (~", " milliseconds", " microseconds", " (<", " (>", " (**", "CONDS", " (!"], [" milliseconds", " microseconds", " (**", " (~", " (<", " latency", " seconds", "CONDS"], [" milliseconds", " (~", " (**", " microseconds", " seconds", " latency", "CONDS", "%**"], [" milliseconds", " microseconds", "Milliseconds", "\u6beb\u79d2", " (~", "milliseconds", " seconds", "\u5e27"], [" milliseconds", " microseconds", " frames", "\u5e27", " (~", "frames", "/frame", " seconds"], [" milliseconds", " microseconds", " frames", " intervals", " seconds", "\u5e27", " (~", "frames"], [" milliseconds", " frames", " Hz", "ms", " ms", "Hz", " microseconds", "hz"], [" ms", "ms", " milliseconds", " frames", "(ms", ".ms", "/ms", "\u5e27"], [" ms", "ms", " milliseconds", "/ms", "(ms", ".ms", " MS", "_ms"], [" ms", "ms", " milliseconds", "/ms", ".ms", "(ms", " MS", "_ms"], ["ms", " ms", "3", " milliseconds", "(ms", "/ms", " MS", ".ms"], ["3", "ms", " ms", "2", "4", "1", "6", "5"]], "p": [[0.4276, 0.4276, 0.0791, 0.0114, 0.0051, 0.0048, 0.0042, 0.0037], [0.3818, 0.1028, 0.0852, 0.0215, 0.0179, 0.0148, 0.0131, 0.0079], [0.3234, 0.2854, 0.1961, 0.105, 0.0234, 0.0194, 0.0111, 0.0067], [0.0252, 0.0185, 0.0119, 0.0082, 0.0072, 0.0072, 0.0053, 0.0053], [0.3556, 0.0274, 0.0156, 0.0138, 0.013, 0.013, 0.0114, 0.0114], [0.3859, 0.0232, 0.017, 0.0132, 0.0132, 0.0124, 0.0124, 0.0109], [0.2025, 0.0745, 0.0657, 0.0617, 0.0292, 0.0257, 0.0242, 0.0166], [0.2283, 0.0789, 0.0422, 0.0373, 0.035, 0.0329, 0.0241, 0.0121], [0.8157, 0.014, 0.0071, 0.0071, 0.0049, 0.0046, 0.0043, 0.0035], [0.3504, 0.2263, 0.1461, 0.0735, 0.0288, 0.0145, 0.0093, 0.0053], [0.8173, 0.0382, 0.028, 0.0181, 0.0124, 0.0052, 0.0049, 0.004], [0.0433, 0.0407, 0.0141, 0.0117, 0.0117, 0.011, 0.008, 0.008], [0.0078, 0.005, 0.0042, 0.0029, 0.0029, 0.0028, 0.0024, 0.0022], [0.0361, 0.03, 0.0046, 0.0038, 0.0037, 0.0026, 0.0022, 0.002], [0.3703, 0.1129, 0.0286, 0.0105, 0.0056, 0.0034, 0.0033, 0.0025], [0.3893, 0.1839, 0.0076, 0.0043, 0.0041, 0.0028, 0.0023, 0.0022], [0.8315, 0.0053, 0.003, 0.0028, 0.0025, 0.0006, 0.0006, 0.0005], [0.8459, 0.0106, 0.0073, 0.0069, 0.005, 0.0044, 0.0022, 0.0012], [0.4501, 0.2126, 0.0254, 0.0254, 0.0198, 0.0186, 0.0073, 0.0064], [0.5086, 0.3284, 0.0647, 0.021, 0.0093, 0.0064, 0.0053, 0.0027], [0.5591, 0.1815, 0.0806, 0.0246, 0.0149, 0.0131, 0.0096, 0.0085], [0.63, 0.1593, 0.0013, 0.0013, 0.0013, 0.0011, 0.001, 0.001], [0.857, 0.0202, 0.0167, 0.0095, 0.0079, 0.0079, 0.0079, 0.0058], [0.8651, 0.038, 0.0102, 0.0051, 0.0038, 0.0033, 0.0026, 0.002], [0.2756, 0.1894, 0.1149, 0.051, 0.0397, 0.0373, 0.035, 0.029], [0.8019, 0.1085, 0.0079, 0.0045, 0.004, 0.0037, 0.0031, 0.0027], [0.3276, 0.1866, 0.0119, 0.0093, 0.0053, 0.005, 0.005, 0.0047], [0.8572, 0.0401, 0.0115, 0.0101, 0.0058, 0.004, 0.0031, 0.0024], [0.4968, 0.0383, 0.0117, 0.0103, 0.0071, 0.0067, 0.0052, 0.0052], [0.1677, 0.1082, 0.0398, 0.0227, 0.0114, 0.0114, 0.0107, 0.0095], [0.1969, 0.0564, 0.0439, 0.0364, 0.025, 0.0195, 0.0162, 0.0143], [0.1474, 0.0696, 0.0422, 0.0422, 0.0397, 0.0226, 0.0199, 0.0155], [0.2039, 0.085, 0.0705, 0.0584, 0.0455, 0.0455, 0.0178, 0.0178], [0.1772, 0.1296, 0.0786, 0.0652, 0.0477, 0.0137, 0.0137, 0.0128], [0.2523, 0.1734, 0.0769, 0.0321, 0.0195, 0.0152, 0.0142, 0.0092], [0.2149, 0.1387, 0.1303, 0.0578, 0.051, 0.031, 0.0188, 0.0146], [0.1052, 0.1052, 0.0769, 0.0769, 0.0387, 0.0301, 0.0301, 0.0283], [0.1293, 0.1007, 0.0737, 0.0611, 0.0611, 0.0239, 0.0225, 0.0211], [0.1851, 0.0725, 0.0725, 0.0681, 0.0601, 0.044, 0.0267, 0.0162], [0.2267, 0.1464, 0.0945, 0.061, 0.0446, 0.0394, 0.0307, 0.0128], [0.3668, 0.1436, 0.1119, 0.0438, 0.0183, 0.0172, 0.0172, 0.0172], [0.3894, 0.2362, 0.0925, 0.0206, 0.0151, 0.0118, 0.0104, 0.0104], [0.3145, 0.2776, 0.0901, 0.0258, 0.0228, 0.0189, 0.013, 0.0108], [0.2938, 0.2938, 0.1572, 0.0398, 0.0241, 0.02, 0.0089, 0.0074], [0.2197, 0.1939, 0.1711, 0.0522, 0.0382, 0.0218, 0.018, 0.0124], [0.4292, 0.1309, 0.0701, 0.0375, 0.0201, 0.0189, 0.0189, 0.0101], [0.7067, 0.0452, 0.0399, 0.0257, 0.0242, 0.0242, 0.0101, 0.0065], [0.672, 0.1699, 0.0552, 0.0261, 0.0158, 0.0058, 0.0055, 0.0045], [0.796, 0.0653, 0.0577, 0.0121, 0.0088, 0.005, 0.0047, 0.0047], [0.5079, 0.2399, 0.0535, 0.0153, 0.0144, 0.0135, 0.0112, 0.0105], [0.3534, 0.1147, 0.0696, 0.0509, 0.0478, 0.0212, 0.0199, 0.0176], [0.2643, 0.2332, 0.0757, 0.059, 0.0459, 0.0262, 0.0217, 0.0217], [0.5086, 0.1001, 0.078, 0.0688, 0.0325, 0.0238, 0.0238, 0.0136], [0.4633, 0.1327, 0.1034, 0.0756, 0.0217, 0.0159, 0.008, 0.007], [0.8997, 0.0652, 0.0069, 0.0039, 0.0035, 0.0025, 0.0024, 0.0015], [0.6718, 0.1499, 0.0429, 0.0245, 0.0116, 0.007, 0.0062, 0.0058], [0.5897, 0.1491, 0.0584, 0.019, 0.0139, 0.0139, 0.0122, 0.0101], [0.4517, 0.0785, 0.0651, 0.0539, 0.0476, 0.0447, 0.0307, 0.0255], [0.8532, 0.1308, 0.0057, 0.0045, 0.0016, 0.0013, 0.0011, 0.0005], [0.8326, 0.1639, 0.0014, 0.0007, 0.0005, 0.0005, 0.0001, 0.0001], [0.8154, 0.1819, 0.0014, 0.0004, 0.0003, 0.0002, 0.0002, 0.0001], [0.7289, 0.2681, 0.0018, 0.0005, 0.0001, 0.0001, 0.0001, 0.0001], [0.8159, 0.182, 0.0016, 0.0002, 0.0001, 0.0001, 0.0, 0.0]], "ranks": {"Rust": [67204, 100620, 77714, 53276, 49748, 25776, 45563, 40995, 50383, 31654, 22834, 34170, 36640, 52334, 31971, 21403, 52912, 58210, 112717, 79854, 73020, 73513, 60189, 83555, 63200, 43439, 35677, 28969, 32303, 30517, 26314, 21392, 21196, 34525, 39972, 81488, 49694, 59581, 75015, 125649, 146373, 188647, 162937, 155330, 84035, 99499, 120348, 116599, 57162, 32447, 44088, 71941, 88586, 54296, 76566, 41315, 30804, 38076, 49386, 23310, 15087, 8128, 5579]}}, {"pos": 540, "top": [[" \u2013", "\u2013", "i", " [\u2026]", " \u2013,", "\u2013and", "\u2026..", ".\u2013"], [" \u2013", "\u2013", "\u2013\u2013", " \u2013,", "  \n\n", " *\u2013", "\u2013and", "   \n\n"], [" \u2013", "\u2013", "\u2013and", " \u2013,", ".\u2013", " [\u2026]", "\u2013\u2013", "\u2026"], [")__", " FStar", " ____", " ``", ":__", " Ejem", " -->", "__:"], [" (@", " -->", " @", " @_", " ____", "  \n\n\n", "\u2013\u2013", "@"], [" ____", " \n  \n", "(ms", "____", " \t\n", " \r\n \r\n", "\u2013\u2013", "   \n"], ["\ufffd\ufffd", " ____", " \n  \n", " \n \n", "   \n", " \ufffd", "____", "  \n"], ["\ufffd\ufffd", " \ufffd", " \n \n", " \r\n \r\n", " ____", "   \n", " \n  \n", " \n"], [" \n", " \n\n\n", " \n  \n", " \ufffd", "\ufffd\ufffd", " \n \n", "\ufffd", "   \n\n"], ["\u2013\u2013", " \ufffd", "--", "\ufffd\ufffd", " \n  \n", " \n \n", " \r\n \r\n", "\ufffd"], ["\ufffd\ufffd", " [@", ".", "\u2013\u2013", "\ufffd", " \u2013", "\u2013", "--"], [" *\u201c", " $__", " ____", "\ufffd\ufffd", " -->", " \r\n", " \r\n \r\n", "\u2013\u2013"], [" *\u201c", "\u2013\u2013", "\u20ac\u201c", " $__", " ____", " *\u2013", " -->", "  \r\n"], ["\u2013", "\u2013\u2013", " \u2013", " whilst", "\u2013and", "--", ",", " "], ["\u2013", " \u2013", "\u2013\u2013", " whilst", " ", ",", "--", "\u2013and"], [" whilst", " \u2013", "\u2013", " amongst", "\u2013\u2013", " ", "Whilst", " showcasing"], [" \u2013", "\u2013", ",", " whilst", "\u2013\u2013", "\u2013and", " ", " via"], [" \u2013", "\u2013", "\u2013\u2013", ",", " whilst", "\u2013and", " arguably", " instantly"], [" \u2013", " whilst", "\u2013\u2013", " arguably", "--", " incredibly", " \ufffd", " instantly"], ["<|endoftext|>", " \u2013", " whilst", "--", ",", " --", " though", " ,"], ["<|endoftext|>", "--", " ,", " \u2013", "\u2013", " though", " \n\n", " "], [" arguably", " instantly", " swiftly", " akin", " ``", " ''", " --", " upon"], [" ,", " \u2013", " --", "<|endoftext|>", " arguably", " over", " upon", " \ufffd"], [" ,", " \u2013", "<|endoftext|>", " --", " over", " though", " ultimately", " arguably"], [" \n\n", "<|endoftext|>", "  \n\n", " \u2013", "\u2013", " \n  \n", " ,", "   \n\n"], [" \n\n", " \n  \n", "  \n\n", " \r\n\r\n", " ,", " --", " \n \n", " __"], [" ,", " microseconds", " instantly", " during", " \n\n", " \n  \n", " milliseconds", " overnight"], [" ,", " \n\n", " --", " __", " \n  \n", " during", " over", " **"], [" microseconds", " milliseconds", " --", " ,", " \n  \n", " instantly", " during", " overnight"], [" \n  \n", " **", " \n", " --", " \u2013", " microseconds", " during", " duration"], [" \n", " \n  \n", " ,", " **", " speed", " instantly", " over", " due"], [" \u2013", " ", " over", " \n\n", " ,", " instantly", " (", " speed"], [" \u2013", " instantly", " over", " (", " due", " even", " rapidly", " quickly"], [" \u2013", " instantly", " (", " rapidly", " (~", " quickly", " due", " rapid"], [" (", " (~", " rapidly", " \u2013", " instantly", " quickly", " rapid", " incredibly"], [" (", " \u2013", " (~", " rapidly", " (!", " instantly", " \u2014", " quickly"], [" (", " \u2013", " (~", " rapidly", " instantly", " \u2014", " speed", " quickly"], [" (", " (~", " \u2013", " rapidly", " must", " time", " milliseconds", " instantly"], [" (", " (~", " milliseconds", " \u2013", " time", " rapidly", " (!", " instantly"], [" (", " (~", " milliseconds", " (<", " latency", " time", " microseconds", " delay"], [" (", " (~", " milliseconds", " time", " delay", " avg", " duration", " delays"], [" milliseconds", " latency", " duration", " time", " microseconds", " avg", " delays", " average"], [" milliseconds", " latency", " duration", " microseconds", " avg", " (<", " (~", " average"], [" milliseconds", " avg", " (~", " average", " (<", " latency", " duration", " microseconds"], [" average", " milliseconds", " avg", " (~", " threshold", " (<", " every", " latency"], [" (~", " every", " (<", " threshold", " average", " milliseconds", " avg", " rapidly"], [" (~", " (<", " every", " (>", " (", " threshold", " avg", " average"], [" (~", " (<", " (", " (>", " every", " (=", " (\\", " must"], [" (", " (~", " (>", " (<", " (=", " ($", " (\u00a3", " (!"], [" (>", " (~", " (", " (<", " ($", " (=", " (\u00a3", " (%"], [" (", " (~", " (>", " (<", " (=", " ($", " (\u00a3", " (**"], [" (~", " (", " (>", " (<", " (=", " (**", " ($", " (!"], [" (~", " (", " (<", " (=", " (>", " (**", " ($", " (/"], [" (~", " (", " (<", " (>", " (**", " (=", " ($", " (/"], [" (~", " (<", " (", " (>", " (=", " (/", " (**", " (@"], [" (~", " (<", " (>", " (", " (=", " (/", " (**", " triggers"], [" (~", " (>", " (<", " (", " (=", " triggers", " causes", " (/"], [" (~", " (", " causes", " triggers", " (>", " (<", " (=", " (/"], ["/frame", " frame", " frames", "frame", "\u5e27", " (~", "Frame", "frames"], [" frame", "/frame", " frames", " (~", " (", "frame", "Frame", "frames"], [" (", " (~", " causes", "/frame", " frame", " frames", " triggers", " kills"], [" (", " causes", " triggers", " (~", " breaks", " (<", " kills", " frames"], [" (", " causes", " triggers", " (~", " kills", " breaks", " (<", " frames"]], "p": [[0.9667, 0.0156, 0.0095, 0.0057, 0.0003, 0.0003, 0.0003, 0.0002], [0.963, 0.0121, 0.0074, 0.0042, 0.0025, 0.0019, 0.0017, 0.0012], [0.7233, 0.2661, 0.0033, 0.0016, 0.0016, 0.0014, 0.0011, 0.0004], [0.018, 0.0149, 0.014, 0.014, 0.0116, 0.0116, 0.0075, 0.0075], [0.0796, 0.0796, 0.0702, 0.0702, 0.0514, 0.0426, 0.04, 0.0353], [0.0581, 0.0352, 0.0258, 0.0214, 0.0201, 0.0156, 0.013, 0.013], [0.1792, 0.1311, 0.0619, 0.0513, 0.0426, 0.0353, 0.0331, 0.0331], [0.0968, 0.0968, 0.0754, 0.0754, 0.0625, 0.0625, 0.0487, 0.0379], [0.0924, 0.0766, 0.0635, 0.0597, 0.0465, 0.0437, 0.0437, 0.03], [0.1225, 0.0543, 0.0511, 0.0451, 0.0423, 0.0374, 0.0273, 0.0213], [0.1562, 0.0612, 0.0477, 0.0448, 0.0349, 0.0308, 0.0289, 0.024], [0.2058, 0.0405, 0.0405, 0.0279, 0.0246, 0.0149, 0.014, 0.0116], [0.0676, 0.034, 0.0182, 0.0161, 0.0151, 0.0104, 0.0092, 0.0076], [0.2548, 0.1452, 0.0569, 0.0269, 0.0209, 0.0112, 0.0105, 0.0077], [0.3141, 0.2028, 0.0513, 0.0513, 0.0453, 0.0258, 0.0177, 0.0107], [0.349, 0.0939, 0.0305, 0.0185, 0.0135, 0.0127, 0.0127, 0.0093], [0.4668, 0.118, 0.1109, 0.0298, 0.0193, 0.0059, 0.0052, 0.0049], [0.2741, 0.0651, 0.0395, 0.0327, 0.0327, 0.01, 0.0057, 0.0053], [0.0875, 0.0208, 0.0152, 0.0152, 0.0134, 0.0134, 0.0126, 0.0105], [0.6487, 0.0236, 0.0153, 0.0143, 0.0126, 0.0082, 0.006, 0.006], [0.9943, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.0149, 0.0149, 0.0103, 0.0075, 0.007, 0.0058, 0.0058, 0.0055], [0.0784, 0.0692, 0.0475, 0.0154, 0.0154, 0.012, 0.01, 0.0094], [0.1374, 0.0573, 0.0288, 0.0288, 0.0186, 0.0106, 0.01, 0.0094], [0.2733, 0.1213, 0.0736, 0.0538, 0.0347, 0.0288, 0.0211, 0.0186], [0.2344, 0.0918, 0.0298, 0.028, 0.0205, 0.0205, 0.0132, 0.0091], [0.0824, 0.0251, 0.0222, 0.0196, 0.0162, 0.0143, 0.0143, 0.0135], [0.2676, 0.2361, 0.0437, 0.0194, 0.0182, 0.0161, 0.0104, 0.0081], [0.0551, 0.0277, 0.0244, 0.0203, 0.019, 0.0123, 0.0123, 0.0096], [0.112, 0.068, 0.0529, 0.025, 0.0195, 0.0172, 0.0104, 0.0092], [0.0522, 0.0407, 0.0218, 0.0192, 0.0192, 0.0159, 0.0132, 0.0117], [0.1416, 0.0669, 0.0246, 0.0231, 0.0217, 0.0192, 0.0159, 0.0149], [0.0709, 0.038, 0.0315, 0.0315, 0.0261, 0.0261, 0.0261, 0.0216], [0.2538, 0.0267, 0.0208, 0.0196, 0.0152, 0.0143, 0.0143, 0.0092], [0.1174, 0.0432, 0.0297, 0.0279, 0.0262, 0.0169, 0.0132, 0.0091], [0.5146, 0.1385, 0.051, 0.0129, 0.0121, 0.0089, 0.0073, 0.0069], [0.2391, 0.0826, 0.0501, 0.0345, 0.0252, 0.0222, 0.0144, 0.0127], [0.3006, 0.0433, 0.0337, 0.0298, 0.0218, 0.017, 0.017, 0.0159], [0.439, 0.0493, 0.0299, 0.0299, 0.017, 0.0133, 0.0117, 0.011], [0.1211, 0.0832, 0.0782, 0.0306, 0.0186, 0.0174, 0.0164, 0.0164], [0.0798, 0.0705, 0.0584, 0.0377, 0.0313, 0.0294, 0.0276, 0.0259], [0.1154, 0.0545, 0.0481, 0.0374, 0.0292, 0.0257, 0.0242, 0.0227], [0.1336, 0.0715, 0.0523, 0.0491, 0.036, 0.0338, 0.0298, 0.0263], [0.127, 0.0639, 0.0498, 0.0439, 0.0364, 0.0302, 0.0302, 0.0266], [0.0548, 0.0515, 0.0484, 0.0294, 0.0294, 0.0243, 0.0229, 0.0215], [0.0736, 0.0394, 0.037, 0.0327, 0.0327, 0.0307, 0.0271, 0.0224], [0.308, 0.0779, 0.0687, 0.0305, 0.0305, 0.0237, 0.0223, 0.0197], [0.3697, 0.2879, 0.1746, 0.1059, 0.0034, 0.0025, 0.0017, 0.0015], [0.599, 0.2497, 0.0715, 0.0557, 0.0067, 0.0031, 0.003, 0.0015], [0.2534, 0.2534, 0.2237, 0.1742, 0.0236, 0.0162, 0.0111, 0.0046], [0.4139, 0.2845, 0.1186, 0.1186, 0.03, 0.0076, 0.0046, 0.0041], [0.498, 0.2666, 0.1259, 0.0674, 0.0219, 0.0049, 0.0038, 0.0023], [0.4398, 0.3425, 0.0981, 0.0361, 0.0361, 0.0193, 0.0103, 0.0034], [0.4902, 0.2973, 0.1239, 0.0277, 0.019, 0.019, 0.007, 0.0023], [0.5755, 0.1868, 0.1455, 0.0253, 0.0197, 0.0174, 0.0119, 0.0015], [0.7576, 0.0905, 0.0427, 0.0377, 0.0259, 0.0157, 0.0084, 0.0021], [0.7574, 0.0622, 0.0549, 0.0484, 0.0294, 0.0084, 0.0074, 0.0058], [0.6502, 0.0777, 0.0777, 0.0534, 0.0286, 0.0286, 0.0196, 0.0077], [0.2898, 0.2557, 0.1757, 0.0647, 0.0444, 0.0444, 0.0392, 0.0305], [0.3786, 0.2296, 0.1578, 0.0581, 0.0452, 0.0242, 0.0214, 0.013], [0.7859, 0.0645, 0.0443, 0.0269, 0.0209, 0.0163, 0.0112, 0.0036], [0.8064, 0.0662, 0.0354, 0.0244, 0.0102, 0.009, 0.009, 0.0045], [0.8445, 0.089, 0.0255, 0.012, 0.0064, 0.0064, 0.0025, 0.0009]], "ranks": {"Rust": [44717, 119348, 117527, 37843, 36592, 38441, 38669, 33575, 32337, 30553, 40422, 30622, 30373, 39639, 34043, 30933, 42392, 81164, 87584, 47567, 66949, 74746, 48084, 43265, 56200, 62754, 55989, 40283, 66729, 78075, 56698, 40831, 57586, 47307, 41108, 54211, 27791, 32929, 37646, 69459, 68786, 60883, 56966, 39871, 20681, 16594, 14297, 11759, 7547, 7139, 22087, 57588, 77318, 72743, 81566, 80598, 46881, 39146, 52757, 22213, 20669, 10161, 6017]}}, {"pos": 541, "top": [[" \u2013", ".", ",", "\u2013", "s", ";", "o", "y"], [" \u2013", "\u2013", "s", "\u2013and", "sWith", "\u2011", "\u2013\u2013", ","], ["\u2013", ",", " \u2013", ".", ".\u2013", "\u2013and", "\u2026", ";"], [" milfs", "erias", "eless", " Shemale", "auff", "sWith", "\uff0a\uff0a\uff0a\uff0a", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9"], ["s", "e", "ed", "sWith", "auf", "a", "y", "aus"], ["sWith", "siz", "kits", "aus", "auf", " \u200b\u200b", "sink", "nost"], ["s", "\u2026\u2026", ".\u201d", "\u2026\u201d", "\uff1a", "\u3002", "\u4e2d", "\uff01"], ["s", "i\u010d", "ingly", "sdale", "sburg", "luck", "sut", " \r\n"], [" [\u2026]", "\u00a0", ".\u201d", "!\u201d", "s", "...\u201d", " \n\n", "   \n\n"], [",", "\u2013", "\u00a0", "s", "\u2013and", " [\u2026]", "\u2013\u2013", "\u00adtion"], ["s", "\u00a0", "\u2013", ",", "o", " \u2013", "d", " [\u2026]"], ["-ish", "uably", " arguably", " impactful", "ily", "schuss", "s", " albeit"], [" impactful", " veggies", "s", "\u582a\u6bd4", "-ish", " arguably", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " crunch"], [" arguably", "s", "\u2013", " looming", " albeit", " akin", " standout", " hefty"], ["s", " \u2013", "\u2013", "o", " arguably", "an", " effortlessly", "d"], ["s", " \u2013", "o", "e", " arguably", "y", "\u2013", "an"], ["s", ",", "o", "a", " \u2013", "e", "y", "\u2013"], ["s", "o", " arguably", " \u2013", ",", "a", "y", "es"], ["s", " arguably", "o", " albeit", " akin", "y", " potentially", " notably"], ["s", " arguably", " akin", " notably", " albeit", "y", " potentially", "o"], ["<|endoftext|>", "s", " arguably", " though", " notably", " amongst", " whilst", "d"], [" arguably", " notably", "s", " akin", " even", "oire", "\u582a\u6bd4", " looming"], [" arguably", " notably", "s", " though", " just", " even", " amongst", " ultimately"], [" arguably", "s", " notably", " though", " just", " ultimately", " amongst", " even"], [" \n\n", "\n\n", " though", " arguably", "  \n\n", " \r\n\r\n", " whilst", "   \n\n"], [" arguably", " notably", " famously", " though", " atop", " amongst", " whilst", " akin"], [" arguably", " famously", " notably", " atop", " whilst", " though", " crunch", " trending"], [" \n\n", "\n\n", " arguably", " though", " even", " just", " ,", " notably"], [" arguably", " famously", " even", " notably", " typically", " due", " ultimately", " akin"], [" arguably", " famously", " typically", " notably", " potentially", " critical", " even", " equivalent"], [" arguably", " famously", " even", " due", " critical", "\u2011", " over", " typically"], ["\u2011", " arguably", " even", " famously", " due", " just", " critical", " over"], [" famously", " arguably", "\u2011", " even", "s", " peak", " tech", " due"], [" famously", "\u2011", " equivalent", " arguably", " roughly", " typically", " \u2013", " timeframe"], ["\u2011", " roughly", " equivalent", " minimum", " famously", " timeframe", " peak", " average"], ["\u2011", " \u2013", " fastest", "/fast", " equivalent", " overclock", " roughly", " peak"], [" framerate", " fastest", " speed", " overclock", " milliseconds", "\u6bcf\u79d2", " clock", " latency"], [" fastest", " framerate", " speed", " FPS", " milliseconds", " clock", "\u2011", "\u6bcf\u79d2"], [" framerate", " milliseconds", " fastest", "\u6bcf\u79d2", " speed", " FPS", " timeframe", " minimum"], [" framerate", " fastest", " milliseconds", " speed", "\u6bcf\u79d2", " FPS", " fps", " speeds"], [" framerate", "\u6bcf\u79d2", " fps", " FPS", "\u6bcf\u5206\u949f", " fastest", " speed", " speeds"], [" framerate", "\u6bcf\u79d2", " fps", "\u6bcf\u5206\u949f", " FPS", " milliseconds", " fastest", "fps"], [" framerate", "\u6bcf\u79d2", "\u6bcf\u5206\u949f", " fps", " milliseconds", " FPS", " timeframe", " fastest"], [" framerate", "\u6bcf\u79d2", " fps", "\u6bcf\u5206\u949f", " FPS", " milliseconds", " avg", " speeds"], [" framerate", "\u6bcf\u79d2", " fps", " avg", " FPS", "\u6bcf\u5206\u949f", " average", " milliseconds"], [" framerate", "\u6bcf\u79d2", " fps", " FPS", " avg", " average", "\u6bcf\u5206\u949f", " maximum"], [" framerate", " avg", " fps", "\u6bcf\u79d2", " FPS", " timeframe", " average", " equivalent"], [" framerate", " avg", "\u6bcf\u79d2", " fps", " FPS", " timeframe", " +/-", " equival"], [" framerate", " (~", "\u6bcf\u79d2", " fps", " avg", " requisite", " FPS", "\u7ea6\u5408"], [" (~", " framerate", "\u6bcf\u79d2", " (\u00a3", " (>", " ($", "(~", "\u7ea6\u5408"], [" (~", " framerate", "\u6bcf\u79d2", "(~", " (>", " RTX", "\u7ea6\u5408", "required"], [" framerate", " (~", "required", "(~", "-required", " requisite", "\u6bcf\u79d2", "\u7ea6\u5408"], [" framerate", " latency", " milliseconds", "\u5e27", "/frame", " avg", "required", "Milliseconds"], [" framerate", " latency", " milliseconds", "/frame", "for", "/=", "\u5e27", "=~"], [" framerate", " milliseconds", " latency", "Milliseconds", " \u0434\u043b\u044f", "for", "milliseconds", " for"], ["for", " for", " \u0434\u043b\u044f", " framerate", " milliseconds", "\u0434\u043b\u044f", " f\u00fcr", "\u5e27"], ["for", " for", " \u0434\u043b\u044f", " milliseconds", "\u5e27", "/frame", "\tfor", " f\u00fcr"], ["for", " for", " \u0434\u043b\u044f", "\tfor", "/frame", " framerate", "\u5e27", " milliseconds"], ["for", " for", "\u5e27", "/frame", "frame", " frame", "-frame", "frames"], [" for", "for", " frame", "/frame", " frames", "-frame", "frame", "frames"], [" for", "for", " frame", "frames", " frames", "-frame", "frame", "/frame"], ["for", " for", "1", "frames", "frame", " frame", "\tfor", "ms"], ["1", "for", "6", "8", "7", "9", "5", "4"]], "p": [[0.7502, 0.0791, 0.0791, 0.0791, 0.0042, 0.0022, 0.0014, 0.0013], [0.6222, 0.215, 0.0121, 0.0114, 0.0054, 0.0039, 0.0037, 0.0027], [0.7522, 0.2155, 0.0122, 0.0107, 0.0039, 0.0024, 0.001, 0.0009], [0.0059, 0.0036, 0.0031, 0.0031, 0.0026, 0.0026, 0.0024, 0.0024], [0.2333, 0.0381, 0.0381, 0.018, 0.0169, 0.0159, 0.0116, 0.009], [0.0135, 0.0056, 0.0044, 0.0044, 0.0041, 0.0039, 0.0039, 0.0034], [0.616, 0.0224, 0.0175, 0.0128, 0.01, 0.0078, 0.006, 0.0057], [0.0493, 0.011, 0.0059, 0.0055, 0.0055, 0.0046, 0.0038, 0.0038], [0.1234, 0.0903, 0.0426, 0.0312, 0.0214, 0.0178, 0.0157, 0.0115], [0.0202, 0.0148, 0.0095, 0.0074, 0.0058, 0.0042, 0.0023, 0.0019], [0.2234, 0.1273, 0.0531, 0.0343, 0.0235, 0.0221, 0.0195, 0.0172], [0.0052, 0.0038, 0.0033, 0.0029, 0.0029, 0.0026, 0.0024, 0.0023], [0.0098, 0.0043, 0.0032, 0.0028, 0.0025, 0.0025, 0.0022, 0.0017], [0.0111, 0.0081, 0.0036, 0.0032, 0.003, 0.0023, 0.0023, 0.0023], [0.0887, 0.0735, 0.0649, 0.0128, 0.0106, 0.005, 0.0044, 0.0041], [0.2159, 0.0619, 0.0167, 0.0074, 0.0074, 0.0069, 0.0069, 0.0069], [0.4599, 0.0455, 0.0313, 0.0168, 0.0139, 0.0095, 0.0079, 0.0048], [0.0887, 0.0306, 0.0082, 0.0077, 0.005, 0.0044, 0.0044, 0.0041], [0.1239, 0.0276, 0.0079, 0.0048, 0.004, 0.0037, 0.0035, 0.0031], [0.1624, 0.0925, 0.0133, 0.0125, 0.0092, 0.0076, 0.0063, 0.0059], [0.0697, 0.051, 0.0166, 0.0156, 0.01, 0.01, 0.0057, 0.0054], [0.0113, 0.005, 0.0027, 0.0016, 0.0014, 0.0013, 0.0013, 0.0013], [0.0348, 0.0175, 0.0165, 0.012, 0.01, 0.0073, 0.0069, 0.0061], [0.02, 0.0166, 0.0166, 0.0107, 0.0101, 0.0069, 0.0061, 0.0061], [0.13, 0.0372, 0.024, 0.0226, 0.0155, 0.01, 0.0088, 0.0083], [0.0249, 0.0067, 0.0059, 0.0055, 0.0036, 0.0036, 0.0034, 0.0025], [0.0141, 0.0059, 0.0043, 0.0036, 0.0026, 0.002, 0.002, 0.0019], [0.0428, 0.0428, 0.0294, 0.0244, 0.0168, 0.0115, 0.0102, 0.0095], [0.0582, 0.0258, 0.0108, 0.0074, 0.0069, 0.0054, 0.0051, 0.0045], [0.0581, 0.0311, 0.0147, 0.013, 0.0095, 0.0084, 0.0084, 0.0074], [0.042, 0.0289, 0.0225, 0.0199, 0.0128, 0.012, 0.0113, 0.01], [0.0572, 0.0393, 0.0326, 0.027, 0.021, 0.0174, 0.0128, 0.0106], [0.0571, 0.0346, 0.0238, 0.0197, 0.0127, 0.012, 0.0106, 0.0099], [0.0416, 0.0367, 0.0252, 0.0237, 0.0222, 0.0209, 0.0163, 0.0082], [0.0937, 0.0135, 0.0112, 0.0105, 0.0099, 0.0093, 0.0082, 0.0072], [0.1546, 0.0645, 0.0223, 0.0119, 0.0105, 0.0099, 0.0093, 0.0093], [0.06, 0.0564, 0.053, 0.0413, 0.0221, 0.0183, 0.0172, 0.0143], [0.0718, 0.0675, 0.0634, 0.0248, 0.0233, 0.0233, 0.016, 0.0141], [0.1259, 0.0813, 0.0384, 0.0233, 0.0233, 0.0193, 0.0193, 0.015], [0.3982, 0.037, 0.0348, 0.0307, 0.0288, 0.0255, 0.0186, 0.0136], [0.6382, 0.2072, 0.0218, 0.0124, 0.0124, 0.0075, 0.0075, 0.0049], [0.6174, 0.2574, 0.0239, 0.0211, 0.0078, 0.0042, 0.0032, 0.003], [0.4338, 0.3828, 0.0277, 0.0203, 0.0139, 0.0075, 0.0055, 0.004], [0.4281, 0.2942, 0.0424, 0.0242, 0.0177, 0.0138, 0.0114, 0.0057], [0.3556, 0.1578, 0.0618, 0.0311, 0.0292, 0.0177, 0.0138, 0.0114], [0.2413, 0.065, 0.0573, 0.0475, 0.0419, 0.0254, 0.0136, 0.0113], [0.2833, 0.0632, 0.0492, 0.0338, 0.0248, 0.0103, 0.0086, 0.0086], [0.1829, 0.0408, 0.0408, 0.0205, 0.0103, 0.0091, 0.0091, 0.0091], [0.1225, 0.0954, 0.0166, 0.0129, 0.0114, 0.0089, 0.0074, 0.0074], [0.3384, 0.0755, 0.0245, 0.0216, 0.0203, 0.0116, 0.007, 0.0062], [0.2907, 0.0572, 0.0446, 0.0136, 0.0082, 0.0077, 0.0077, 0.0057], [0.0637, 0.0234, 0.0161, 0.0118, 0.0092, 0.0092, 0.0081, 0.0081], [0.1083, 0.031, 0.0213, 0.0188, 0.0122, 0.0122, 0.0114, 0.0084], [0.0792, 0.0424, 0.031, 0.0177, 0.0156, 0.0129, 0.0129, 0.0107], [0.0781, 0.0648, 0.0445, 0.0326, 0.0287, 0.0287, 0.021, 0.0145], [0.2709, 0.145, 0.0879, 0.0367, 0.0252, 0.0252, 0.0222, 0.0209], [0.3318, 0.2013, 0.0542, 0.0226, 0.0212, 0.0199, 0.0165, 0.0146], [0.4026, 0.3135, 0.0352, 0.0166, 0.0166, 0.0156, 0.0129, 0.0114], [0.2924, 0.2924, 0.1076, 0.0576, 0.0448, 0.0448, 0.0272, 0.024], [0.7015, 0.1774, 0.0272, 0.0137, 0.0113, 0.0094, 0.0088, 0.0073], [0.5616, 0.3006, 0.0232, 0.015, 0.0124, 0.0109, 0.0109, 0.0085], [0.8648, 0.1033, 0.0116, 0.0012, 0.0008, 0.0007, 0.0004, 0.0004], [0.9422, 0.0365, 0.0134, 0.0044, 0.001, 0.0008, 0.0005, 0.0004]], "ranks": {"Rust": [29757, 55730, 26462, 4016, 2825, 2985, 6396, 4694, 9014, 4782, 14256, 12531, 7157, 12743, 13969, 8205, 7280, 21884, 27569, 24791, 47449, 44094, 19509, 19484, 22539, 28139, 24792, 11476, 7927, 6769, 7453, 7042, 6702, 43698, 29663, 68882, 35944, 39465, 79686, 98610, 84844, 144178, 157781, 179161, 139969, 94157, 122794, 119527, 124846, 99962, 141022, 151799, 142999, 131482, 165913, 190614, 174008, 167611, 217911, 201000, 162213, 119008, 38313]}}, {"pos": 542, "top": [[".", ",", " \u2013", "a", "\u2013", "o", ";", "\u2026."], [" \u2013", "\uff0e", "erweise", "ly", "\ufffd", "\u00ad", "er", "\u2013"], [".", "\u2013", " \u2013", ",", "\u3002", "\uff0e", ".\u2013", "\u2026.."], [" milfs", "-------------</", "----------</", " cumshot", " pupper", "erias", " ;;^", " Blowjob"], ["erweise", "raries", "er", "ly", "kits", "ed", "\uff20", "izer"], ["\uff01", "kits", "\u5728", "nok", "erweise", "sWith", "raries", "dias"], ["\u5728", "\uff08", "\uff01", "\u548c", "\u4e0a", "\u4e2d", "\u7684", "\uff01**"], ["raries", "  \r\n", "\u5728", "\uff01**", "\uff01", "er", "\u00adi", "ly"], ["\u00adi", "!\u201d.", "!).", "\u00adt", "\uff01", "!\u00bb.", "er", "...)."], ["\u00adi", "\u00adtion", " \u00ad", "\u00adt", "\u00ad", "er", "\u00ads", "\u00ading"], ["er", "\u00adi", " \u00ad", "ly", "a", "an", "o", "\u00ad"], ["isecond", "raries", "\u00adi", "er", "ly", "erweise", "\u4e94\u989c\u516d\u8272\u7684", "erias"], ["raries", "isecond", "\u00adi", "ly", "er", "yton", "erias", "erweise"], ["raries", "isecond", "\u00adi", "yton", "\u00adtion", "snap", "\u88f3", "er"], ["raries", "er", "snap", "\u00adi", "ly", "\u00adtion", "an", "zinho"], ["er", "-esque", "raries", "ly", "kids", "snap", "an", "iskey"], ["er", "o", "ly", "an", "n", "a", "en", "-esque"], ["er", "o", "ly", "raries", "n", "-esque", "kits", "an"], ["er", "ly", "raries", "\u00adi", "zinho", "-esque", "o", "i\u00e8me"], ["ly", "er", "\u00adi", "o", "ahead", "-esque", "zinho", "i\u00e8me"], ["er", "ly", "o", "n", "an", "d", "ahead", "a"], ["ly", "er", "uptime", "zinho", "isecond", "raries", "ahead", "snap"], ["er", "ly", "ahead", "fully", "instant", "n", " \u00ad", "ish"], ["ahead", "er", "ly", "fully", " \u00ad", "\ufffd\ufffd", "an", "teen"], ["instant", " \u00ad", "isecond", "uptime", " framerate", "night", "ahead", "\u00adi"], [" framerate", "uptime", "ptime", "isecond", "\u5cf0\u503c", "YNC", "\u8282\u62cd", "\u9891\u6b21"], [" framerate", "ptime", "\u5cf0\u503c", "uptime", "-speed", "isecond", " uptime", "-fast"], [" framerate", "ptime", "\u5cf0\u503c", "uptime", " clock", "-speed", " uptime", " speed"], [" framerate", "ptime", "\u5cf0\u503c", "uptime", " uptime", "isecond", "\u9891\u6b21", " overclock"], ["ptime", "\u5cf0\u503c", " framerate", " peak", " fastest", " uptime", " speeds", " speed"], [" peak", "ptime", " fastest", "\u5cf0\u503c", " speed", " speeds", " pace", " clock"], [" peak", " fastest", " faster", " speed", " speeds", "ptime", " clock", " time"], ["ptime", "\u5cf0\u503c", "/fast", " uptime", " overclock", "uptime", "\u6bcf\u79d2", " fastest"], ["ptime", "\u5cf0\u503c", "/fast", "uptime", "!).", "\u00adi", "!),", "-speed"], ["\u5cf0\u503c", "ptime", "/fast", "uptime", "\u00adi", "\u2011", "!).", " fastest"], ["ptime", "\u2011", "\u5cf0\u503c", "/fast", "\u00adi", "\u6bcf\u79d2", "uptime", " fastest"], ["ptime", "\u6bcf\u79d2", " framerate", "/fast", "\u5cf0\u503c", " fastest", "-speed", "speed"], ["ptime", "\u6bcf\u79d2", " framerate", " fastest", "\u5cf0\u503c", "/fast", " milliseconds", "-speed"], ["\u6bcf\u79d2", " framerate", "ptime", " milliseconds", "milliseconds", "\u5cf0\u503c", " fastest", "/fast"], [" framerate", "\u6bcf\u79d2", "speed", "milliseconds", " milliseconds", "-speed", "\u901f\u5ea6", " fastest"], ["\u6bcf\u79d2", " framerate", "\u6bcf\u5206\u949f", "-speed", "\u901f\u5ea6", "speed", "Speed", " fps"], ["\u6bcf\u79d2", " framerate", "\u6bcf\u5206\u949f", " fps", " milliseconds", "-speed", "\u6bcf\u5c0f\u65f6", "Speed"], ["\u6bcf\u79d2", " framerate", "\u6bcf\u5206\u949f", " milliseconds", " fps", "\u6bcf\u5c0f\u65f6", "-speed", "fps"], ["\u6bcf\u79d2", " framerate", "\u6bcf\u5206\u949f", " milliseconds", " fps", "\u6beb\u79d2", "-speed", "milliseconds"], ["\u6bcf\u79d2", " framerate", "\u6bcf\u5206\u949f", " milliseconds", " fps", "-speed", "\u6beb\u79d2", "milliseconds"], ["\u6bcf\u79d2", " framerate", "\u6bcf\u5206\u949f", " milliseconds", " fps", "\u5cf0\u503c", "ptime", "-speed"], ["\u6bcf\u79d2", " framerate", "\u6bcf\u5206\u949f", " fps", " milliseconds", "ptime", " timeframe", "-speed"], [" framerate", "\u6bcf\u79d2", "!/", " fps", " timeframe", " milliseconds", "\u6bcf\u5206\u949f", "-speed"], [" framerate", " fps", "\u6bcf\u79d2", " timeframe", "ptime", "\u5cf0\u503c", "uptime", " FPS"], [" framerate", " fps", "\u6bcf\u79d2", "ptime", " FPS", "_fps", " UHD", "/fast"], [" framerate", "\u6bcf\u79d2", "+)", " fps", "++)", "+/", "ptime", "/kg"], [" framerate", " fps", " timeframe", "\u6bcf\u79d2", "ptime", "+/", " milliseconds", "/fast"], [" framerate", "/[", " fps", "/frame", "\u6bcf\u79d2", "+[", "/max", " timeframe"], [" framerate", "/max", "/[", "+/", "/frame", "!)", "/~", " fps"], [" framerate", "/", "/[", "!/", "/~", "/frame", " fps", "/etc"], ["/frame", " framerate", " fps", "\u5e27", " frame", "frame", " FPS", "/"], ["/frame", " fps", " frame", "\u5e27", "frame", "/", " framerate", " frames"], ["/frame", " frame", "\u5e27", "-frame", "frame", "/", " frames", " fps"], [" frame", "/frame", " frames", "\u5e27", "-frame", "frame", "frames", "Frame"], [" frame", "/frame", " frames", "\u5e27", "-frame", "/", "frame", "frames"], ["/", " frame", "/frame", "-frame", " frames", " ms", "\u5e27", " Frame"], ["2", "/", "1", " frame", " ms", "/frame", "6", "/ms"], ["2", "1", "6", "/", "3", "0", "5", "4"]], "p": [[0.894, 0.0832, 0.0064, 0.0064, 0.0024, 0.0021, 0.0007, 0.0004], [0.031, 0.0257, 0.0156, 0.0121, 0.0114, 0.0107, 0.0094, 0.0074], [0.5694, 0.1194, 0.068, 0.0639, 0.053, 0.0118, 0.0098, 0.0076], [0.0138, 0.0121, 0.0107, 0.0078, 0.0065, 0.0054, 0.0048, 0.0045], [0.049, 0.0358, 0.0262, 0.0149, 0.0149, 0.0091, 0.0055, 0.0055], [0.0201, 0.0108, 0.0065, 0.0058, 0.0051, 0.0045, 0.0037, 0.0035], [0.1547, 0.0999, 0.0534, 0.0367, 0.0305, 0.0286, 0.0127, 0.0112], [0.0121, 0.0107, 0.0078, 0.0073, 0.0073, 0.0069, 0.0061, 0.0057], [0.1257, 0.0298, 0.016, 0.0141, 0.0124, 0.0124, 0.0124, 0.011], [0.2383, 0.0365, 0.0251, 0.0251, 0.0092, 0.0092, 0.0077, 0.0068], [0.4431, 0.068, 0.0235, 0.0221, 0.0195, 0.0126, 0.0118, 0.0086], [0.0166, 0.0121, 0.0083, 0.0057, 0.0051, 0.0045, 0.0039, 0.0035], [0.0113, 0.0082, 0.0044, 0.0041, 0.0039, 0.0024, 0.0024, 0.0022], [0.0132, 0.0055, 0.0031, 0.0019, 0.0015, 0.0014, 0.0014, 0.0012], [0.0115, 0.0095, 0.0079, 0.0058, 0.004, 0.0035, 0.0026, 0.0023], [0.018, 0.009, 0.0075, 0.0066, 0.0058, 0.0029, 0.0026, 0.0021], [0.2412, 0.1213, 0.0271, 0.0239, 0.0224, 0.0186, 0.012, 0.0083], [0.0639, 0.0321, 0.0162, 0.0081, 0.0072, 0.0056, 0.0049, 0.0046], [0.0256, 0.0226, 0.0199, 0.005, 0.0039, 0.0039, 0.0037, 0.0032], [0.0477, 0.0421, 0.0032, 0.0031, 0.0029, 0.0027, 0.0025, 0.0024], [0.0437, 0.0385, 0.0104, 0.0097, 0.0067, 0.0059, 0.0055, 0.0049], [0.0041, 0.0032, 0.0024, 0.0021, 0.0019, 0.0015, 0.0015, 0.0013], [0.0188, 0.0146, 0.0078, 0.0051, 0.002, 0.0017, 0.0015, 0.0015], [0.0064, 0.006, 0.0047, 0.0036, 0.0012, 0.0012, 0.0011, 0.001], [0.0034, 0.0029, 0.0022, 0.0018, 0.0017, 0.0017, 0.0016, 0.0014], [0.0115, 0.0037, 0.0031, 0.0029, 0.002, 0.0015, 0.0011, 0.001], [0.0174, 0.0093, 0.0072, 0.0056, 0.0028, 0.0027, 0.0022, 0.0019], [0.0221, 0.0081, 0.0067, 0.0063, 0.0036, 0.0034, 0.003, 0.0028], [0.0161, 0.0152, 0.0118, 0.0072, 0.0032, 0.003, 0.0026, 0.0025], [0.0223, 0.0223, 0.0209, 0.0105, 0.0099, 0.0082, 0.0077, 0.006], [0.0193, 0.0193, 0.016, 0.016, 0.0097, 0.0091, 0.0081, 0.0071], [0.0392, 0.0305, 0.0238, 0.021, 0.0144, 0.0135, 0.0119, 0.0119], [0.028, 0.0232, 0.0103, 0.0066, 0.0066, 0.0062, 0.0059, 0.0055], [0.0346, 0.0287, 0.0164, 0.0099, 0.0068, 0.0064, 0.0057, 0.005], [0.0439, 0.0321, 0.0195, 0.0111, 0.0086, 0.0081, 0.0049, 0.0046], [0.0434, 0.0407, 0.0383, 0.0298, 0.015, 0.0124, 0.0117, 0.0097], [0.0714, 0.0407, 0.0382, 0.0359, 0.0337, 0.0317, 0.0279, 0.0192], [0.0731, 0.0606, 0.0472, 0.0391, 0.0269, 0.021, 0.0163, 0.0153], [0.1083, 0.0792, 0.058, 0.033, 0.0291, 0.0177, 0.0147, 0.0138], [0.1169, 0.0803, 0.0356, 0.0295, 0.0278, 0.0261, 0.023, 0.0216], [0.5361, 0.1356, 0.0322, 0.0208, 0.0195, 0.0183, 0.0172, 0.0134], [0.7401, 0.078, 0.0418, 0.0144, 0.0082, 0.0057, 0.0057, 0.0044], [0.7855, 0.0645, 0.0443, 0.0105, 0.0077, 0.0064, 0.0032, 0.0027], [0.6134, 0.0733, 0.0503, 0.0325, 0.0197, 0.0064, 0.006, 0.0047], [0.6504, 0.0644, 0.0605, 0.0304, 0.0144, 0.0047, 0.0044, 0.0039], [0.4184, 0.0934, 0.0727, 0.0236, 0.0208, 0.0098, 0.0092, 0.0077], [0.1786, 0.1307, 0.0274, 0.0213, 0.0166, 0.0129, 0.0122, 0.0074], [0.0913, 0.0459, 0.0191, 0.0191, 0.0159, 0.0124, 0.0096, 0.0085], [0.0996, 0.0252, 0.0184, 0.0112, 0.0099, 0.0072, 0.0072, 0.0064], [0.1303, 0.02, 0.0188, 0.0083, 0.0078, 0.0069, 0.0047, 0.0047], [0.0506, 0.0506, 0.0106, 0.0094, 0.0088, 0.0078, 0.0073, 0.006], [0.0403, 0.026, 0.0131, 0.0123, 0.0102, 0.009, 0.007, 0.0066], [0.0594, 0.0558, 0.0384, 0.0205, 0.017, 0.0141, 0.0125, 0.011], [0.0408, 0.0299, 0.0219, 0.0193, 0.0181, 0.015, 0.0117, 0.011], [0.1115, 0.0677, 0.034, 0.03, 0.0206, 0.0206, 0.0171, 0.0171], [0.1734, 0.1351, 0.1269, 0.0819, 0.025, 0.0195, 0.0183, 0.0172], [0.2678, 0.0721, 0.0561, 0.0561, 0.0411, 0.0341, 0.0301, 0.0265], [0.3073, 0.113, 0.0827, 0.0534, 0.0502, 0.0502, 0.0443, 0.0324], [0.4156, 0.3667, 0.0818, 0.0438, 0.0341, 0.0266, 0.0111, 0.0067], [0.6652, 0.1484, 0.0794, 0.0214, 0.0214, 0.0201, 0.0089, 0.0051], [0.3905, 0.3446, 0.1628, 0.0172, 0.0161, 0.0059, 0.0049, 0.0049], [0.7153, 0.2632, 0.0045, 0.0043, 0.0031, 0.0009, 0.0008, 0.0008], [0.9995, 0.0003, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [58654, 161021, 111367, 55321, 31345, 23297, 18566, 10392, 10663, 3369, 6747, 6512, 2543, 1103, 2392, 6084, 11080, 5901, 11091, 5406, 13168, 6704, 22572, 37278, 33688, 55666, 87283, 73369, 56090, 56713, 31761, 23456, 52641, 54347, 52487, 64842, 40204, 90636, 109042, 113134, 72856, 106470, 139763, 178490, 202912, 199447, 167547, 181003, 126926, 76484, 63437, 160148, 191495, 171995, 191270, 203955, 184882, 190260, 187239, 130563, 162178, 140572, 65581]}}, {"pos": 543, "top": [[".", ",", " \u2013", "\u2013", "y", ";", ".\u2013", "\u2013and"], ["\u2013and", "\u2013", " \u2013", " \u2013**", "een", ".\u2013", "\uff5e\uff5e", "\u2011"], ["\u2013", " \u2013", ".", ".\u2013", "\u2013and", ",", "\u2026..", " \u2013,"], [" milfs", " ;;^", "*\u201c.", " Strec", " Blowjob", "':''", "__)", " cumshot"], ["@$", ".\\\"", ".*(", " *\u201c", " \\\"", " \n \n", "*\u201c.", ".\",\""], [" \n \n", "odiac", "\u0441\u043e\u0442", "egers", "pedia", "*\u201c.", "orative", "een"], [" \n \n", " \n", ".\\\"", "\\\"", "__)", " *\u201c", ".__", " *\u00ab"], [" \n \n", ".\\\"", "}\\\"", "\\\"", " \\\"$", " \\\"", "\\\"\\", "__)"], [" \n \n", ".\\\"", "\\\"", " \n    \n", " \n\n\n", "\\\"\",", " \n\n", " \n"], [" \n \n", ".\\\"", "-$", " \\\"$", "\\\",\\", "\\\"\\", "\\\"\",", "\\\","], [".\\\"", " \n \n", "\\\"", " \\\"", " \\\"$", "\\\"\\", ".|", "-$"], [" *\u00ab", " \\\"$", " \\\"", ".\\\"", "ive", "flix", "}\\\"", "odiac"], ["flix", " *\u00ab", "ive", "egers", "odiac", "orative", "ilian", " veggies"], ["flix", " veggies", "Sharper", "-ish", "-tone", "odiac", "halie", "\u4e3d\u4e1d"], ["-tone", "\uc775", "mate", "flix", "Sharper", "-ish", " kids", " buzz"], [" kids", " buzz", "kids", " veggies", " moms", " skinny", "-ish", " buzzing"], [" buzz", " kids", "kids", "-ish", "-tone", " kid", "-tech", " vibe"], ["-tone", " buzz", "-tech", "kids", " kids", "-ish", "bucks", "buzz"], ["flix", "bucks", " Geile", "-tone", " ;;^", " buzz", " milfs", " Blowjob"], [" buzz", "buzz", "-tone", "ace", "}\\\"", "Sharper", "-ish", "--)"], ["ace", "ate", "kin", " \n \n", "Though", "ly", "ic", "--)"], [" ;;^", "flix", "bucks", "ronic", "Sharper", "otis", " buzz", "ularity"], [" --", " ''", " buzz", "bucks", "ronic", "\u7fb9", "ily", "buzz"], [" --", " ''", " buzz", "ly", "fully", "\u7fb9", "ive", "kin"], [" \n\n", " \r\n\r\n", "   \n\n", " \n \n", " \n\n\n", "     \n\n", " \n\t\n", " \n    \n"], ["bucks", " \r\n\r\n", " \n \n", " \n\n", " \n    \n", " ;;^", " comfy", "Sharper"], ["bucks", " ;;^", "\u7fb9", " stamina", "uchia", " buzz", " throttle", " pornstar"], [" famously", " --", " stamina", " pace", " buzz", " ;;^", "\u7fb9", " fastest"], [" famously", " --", " pace", " stamina", " barely", " buzz", " peak", " speed"], [" \u2013", "\u2013", " ", "\u2011", " demand", " peak", " famously", " fast"], [" ", " \u2013", "\u2011", " peak", " demand", " time", " high", " fast"], [" ", " peak", " demand", "\u2011", " fast", " \u2013", " critical", " time"], [" must", " demand", " even", " only", " peak", " pressure", " demands", " speed"], [" peak", " vape", " demand", " tech", " fastest", "/fast", " pace", " demands"], [" MUST", " peak", "/fast", " requires", " vape", " fastest", " require", " threshold"], [" fastest", "\u2011", "/fast", " speed", " MUST", " requires", " peak", " require"], [" fastest", " speed", "/fast", " overclock", " MUST", " optimized", " fast", " sprint"], [" fastest", " MUST", " speed", " overclock", " requires", " optimized", " optimizations", " optimization"], [" speed", " fastest", " optimized", " speeds", " overclock", " MUST", " optimizations", " requirement"], [" speed", " framerate", " speeds", " fastest", "-speed", " overclock", " pace", " peak"], [" speed", " speeds", " framerate", " fastest", "-speed", " pace", " overclock", " performance"], [" framerate", " speed", " overclock", " speeds", " fastest", " throughput", " peak", " pace"], [" speed", " overclock", " framerate", " speeds", " throughput", " pace", " peak", "-speed"], [" framerate", "\u6bcf\u79d2", " peak", " achievable", "\u5cf0\u503c", " throughput", " speeds", " speed"], [" speed", " requirement", " speeds", " framerate", "\u6bcf\u79d2", " pace", " achievable", " peak"], [" requirement", " pace", "\u6bcf\u79d2", " framerate", " speed", " requirements", " sprint", " speeds"], [" requirement", " pace", " requires", " requirements", " required", " framerate", "-required", " require"], [" requirement", " requirements", " required", " requires", " mandates", " demands", " require", "\u8981\u6c42\u7684"], [" requirement", "/fast", " framerate", "\u8981\u6c42\u7684", " pace", "Requires", "\u7684\u8981\u6c42", "requires"], [" framerate", "/fast", "-speed", "Requires", "requires", "\u8981\u6c42\u7684", " pace", " fps"], ["+)", " framerate", "/fast", "!)", "\u8981\u6c42\u7684", " REQ", " fps", "requires"], [" fps", " framerate", "+)", " RPM", " timeframe", "fps", "/fast", " bpm"], [" fps", " framerate", " FPS", "+)", " Hz", "Hz", "fps", " GHz"], [" fps", "+)", " framerate", " FPS", "Hz", " Hz", "fps", " bpm"], [" fps", " framerate", " FPS", "fps", "Hz", " Hz", " timeframe", "+)"], [" fps", " FPS", "fps", " framerate", "FPS", "_fps", "\u5e27", "Hz"], [" fps", " FPS", "fps", "FPS", " framerate", "_fps", "\u5e27", "Hz"], [" fps", " FPS", "fps", "Hz", "FPS", " Hz", " framerate", "hz"], [" fps", " FPS", "fps", "\u5e27", "Hz", " Hz", "FPS", " frame"], [" fps", " FPS", "Hz", "fps", " Hz", "FPS", "\u5e27", " frames"], [" fps", " FPS", " Hz", "fps", "Hz", "FPS", "hz", "0"], ["0", " FPS", " fps", " Hz", "Hz", "fps", "hz", "ms"], ["0", "ms", " Hz", "Hz", "fps", " FPS", " fps", "5"]], "p": [[0.7099, 0.1584, 0.0583, 0.0583, 0.0035, 0.0023, 0.0015, 0.0011], [0.0266, 0.0208, 0.0162, 0.0111, 0.0111, 0.0063, 0.0046, 0.0046], [0.5691, 0.2688, 0.068, 0.0412, 0.0283, 0.0098, 0.0017, 0.0015], [0.0123, 0.0055, 0.0051, 0.0051, 0.0045, 0.004, 0.0023, 0.0023], [0.0557, 0.028, 0.0247, 0.017, 0.017, 0.017, 0.0124, 0.011], [0.0152, 0.0087, 0.0063, 0.0044, 0.0038, 0.0036, 0.0025, 0.0021], [0.2792, 0.1027, 0.0456, 0.0294, 0.026, 0.0123, 0.009, 0.0079], [0.1705, 0.1505, 0.0431, 0.0405, 0.0315, 0.0246, 0.0204, 0.0191], [0.322, 0.1619, 0.0675, 0.0409, 0.0361, 0.0319, 0.0248, 0.0248], [0.3144, 0.1231, 0.04, 0.0275, 0.0242, 0.0167, 0.0108, 0.0108], [0.5097, 0.146, 0.0832, 0.0369, 0.0136, 0.0128, 0.0106, 0.0082], [0.0306, 0.0164, 0.012, 0.006, 0.0057, 0.0044, 0.0025, 0.0024], [0.008, 0.0028, 0.0023, 0.0022, 0.002, 0.0015, 0.0015, 0.0013], [0.0057, 0.0016, 0.0015, 0.0015, 0.0011, 0.0009, 0.0008, 0.0008], [0.0021, 0.0019, 0.0014, 0.0014, 0.0013, 0.0013, 0.0011, 0.0011], [0.0065, 0.0051, 0.0042, 0.003, 0.0023, 0.0018, 0.0018, 0.0015], [0.0123, 0.0096, 0.007, 0.0043, 0.004, 0.0035, 0.0033, 0.0029], [0.0044, 0.0039, 0.0035, 0.0035, 0.0023, 0.0021, 0.0021, 0.0015], [0.0032, 0.0019, 0.0019, 0.0016, 0.0013, 0.0012, 0.0011, 0.0011], [0.0029, 0.0024, 0.002, 0.0017, 0.0016, 0.0016, 0.0015, 0.0015], [0.003, 0.003, 0.003, 0.0026, 0.0026, 0.0026, 0.0021, 0.002], [0.0038, 0.0028, 0.0026, 0.0016, 0.0012, 0.0008, 0.0008, 0.0007], [0.0032, 0.0024, 0.0024, 0.0021, 0.0021, 0.0015, 0.0013, 0.0012], [0.0079, 0.002, 0.002, 0.0018, 0.0018, 0.0016, 0.0014, 0.0013], [0.3004, 0.063, 0.0382, 0.0279, 0.0232, 0.0062, 0.0049, 0.004], [0.0038, 0.003, 0.0023, 0.002, 0.0017, 0.0015, 0.0015, 0.0014], [0.003, 0.0021, 0.0012, 0.001, 0.001, 0.0009, 0.0009, 0.0008], [0.0054, 0.0051, 0.0029, 0.0024, 0.0023, 0.0017, 0.0015, 0.0014], [0.0086, 0.0049, 0.0049, 0.0041, 0.0036, 0.0034, 0.0032, 0.0032], [0.0517, 0.0355, 0.0168, 0.0123, 0.0123, 0.0102, 0.0074, 0.0074], [0.0701, 0.0375, 0.0258, 0.0242, 0.0228, 0.0177, 0.013, 0.0114], [0.0717, 0.0299, 0.0299, 0.0141, 0.0117, 0.011, 0.011, 0.011], [0.0441, 0.0365, 0.0267, 0.0208, 0.0162, 0.0134, 0.0134, 0.0111], [0.0146, 0.0069, 0.0047, 0.0045, 0.0037, 0.0037, 0.0035, 0.0033], [0.0081, 0.0072, 0.006, 0.0053, 0.0046, 0.0044, 0.0041, 0.0041], [0.0256, 0.0187, 0.0146, 0.0121, 0.01, 0.01, 0.0083, 0.0078], [0.0349, 0.0225, 0.0155, 0.0137, 0.0113, 0.0083, 0.0073, 0.0073], [0.0242, 0.0228, 0.0214, 0.013, 0.0122, 0.0114, 0.0107, 0.0101], [0.0452, 0.0311, 0.0147, 0.0138, 0.0138, 0.0138, 0.013, 0.0114], [0.1359, 0.047, 0.047, 0.0441, 0.0268, 0.0208, 0.0196, 0.0162], [0.2131, 0.0736, 0.0574, 0.0539, 0.0327, 0.0239, 0.0225, 0.0145], [0.1081, 0.0791, 0.0511, 0.0423, 0.0241, 0.0213, 0.02, 0.02], [0.0704, 0.0584, 0.0484, 0.0455, 0.0294, 0.0229, 0.0229, 0.0202], [0.0446, 0.0347, 0.0307, 0.0254, 0.0254, 0.0239, 0.0239, 0.0224], [0.0484, 0.0401, 0.0401, 0.0354, 0.0332, 0.0293, 0.0228, 0.0215], [0.0703, 0.0332, 0.0312, 0.0259, 0.0228, 0.0214, 0.0167, 0.0167], [0.075, 0.0294, 0.0294, 0.0244, 0.0229, 0.0215, 0.0215, 0.0202], [0.1088, 0.0483, 0.0332, 0.0312, 0.0228, 0.0214, 0.0214, 0.0201], [0.0524, 0.036, 0.0318, 0.0264, 0.0248, 0.0219, 0.0205, 0.0193], [0.0687, 0.0345, 0.0324, 0.0269, 0.0269, 0.0135, 0.0135, 0.0119], [0.0809, 0.0809, 0.0232, 0.011, 0.0103, 0.0075, 0.0071, 0.0066], [0.0943, 0.0609, 0.0238, 0.0198, 0.0186, 0.0164, 0.0164, 0.0145], [0.2773, 0.0958, 0.0546, 0.0453, 0.0331, 0.0292, 0.0214, 0.0201], [0.2763, 0.0699, 0.0617, 0.048, 0.031, 0.0274, 0.0241, 0.02], [0.4435, 0.1631, 0.0439, 0.0413, 0.0342, 0.0235, 0.0152, 0.0118], [0.7959, 0.1077, 0.0839, 0.0078, 0.0029, 0.0007, 0.0003, 0.0002], [0.7158, 0.181, 0.0855, 0.0116, 0.0048, 0.0005, 0.0003, 0.0001], [0.6237, 0.1787, 0.1392, 0.0311, 0.0147, 0.0101, 0.0011, 0.0006], [0.6574, 0.1883, 0.0785, 0.0225, 0.0199, 0.0094, 0.0083, 0.0057], [0.4401, 0.3428, 0.0765, 0.0596, 0.0526, 0.0081, 0.0043, 0.0038], [0.4386, 0.4386, 0.0524, 0.036, 0.0193, 0.0043, 0.0017, 0.0017], [0.4764, 0.1753, 0.1753, 0.0938, 0.0345, 0.0305, 0.0039, 0.0023], [0.9983, 0.001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0]], "ranks": {"Rust": [21583, 68416, 43428, 11953, 5808, 5449, 7912, 5995, 6810, 2513, 10604, 14844, 6797, 4830, 5676, 4916, 14529, 7541, 18922, 11527, 34846, 19735, 29624, 16670, 17124, 15264, 21835, 10433, 5996, 3286, 2719, 2496, 3361, 5578, 7368, 23434, 13674, 20756, 22595, 33143, 22144, 41584, 37801, 59285, 33321, 33277, 45476, 52048, 44321, 28654, 48595, 59559, 120325, 103990, 89676, 138037, 123509, 127993, 73749, 42884, 34119, 51649, 32944]}}, {"pos": 544, "top": [[".", ",", "s", "?", "o", ";", "-", " \u2013"], ["\u2011", ".", "s", ",", " \u2013", "\uff20", "\u2013", " West"], [".", ",", "\u2013", "?", "\u2011", "s", " \u2013", ";"], [" milfs", " Blowjob", " cumshot", " Shemale", "\uff0a\uff0a\uff0a\uff0a", " pupper", "cuci", " Strec"], ["s", " @", " @_", " *@", "!\u201d.", " *.", "(@", "sip"], ["!\u201d.", "s", "sip", " \u201c.", " \").", " **.", ".", " \u201d"], ["s", "!\u201d.", "sip", "\u201d.", "\n", " \u201d", " \u00bb.", "phans"], ["s", "-eyed", "phans", " Crescent", "sche", "sung", "ster", " caram"], [".", "s", ",", "!\u201d.", "!", "\u201d.", "!.", "!\u201d"], [",", "s", "ness", "!,", "!", "-J", "-h", "-H"], ["s", ".", ",", "!", " @", "-", "\\n", "@"], [" fans", "s", "yron", "ness", "scape", "\u9e92", " drum", "lymp"], ["ness", " fans", "-esque", "s", " St\u00e9ph", "scape", "-ish", "-style"], ["-esque", "-style", "ness", " fans", "-ish", "s", " vision", "-eyed"], ["-esque", "s", "-style", "ness", "-ton", "ship", "-st", " fans"], ["-esque", "s", " buzz", " loung", " fans", " showcase", "\u7231\u5c97", "t\u00e9ri"], ["s", "-esque", " buzz", " pop", " skinny", " star", " fans", " center"], ["-esque", " buzz", "-tech", "siz", "s", "yton", "-ish", "szeit"], ["szeit", "-esque", "siz", "-eyed", "yton", "\u4f4e\u8ff7", "&apos", "izons"], ["-esque", "&apos", "szeit", "siz", "-ish", "-eyed", "pace", "s"], ["-esque", "s", " %+", "&apos", "speed", "pace", "-ton", "ness"], ["szeit", "bucks", "&apos", "\u817e\u817e", "pace", "Stride", "\u548c\u4fe1\u606f\u5316", "iaya"], [" ''", "&apos", "pace", "\u817e\u817e", "\u548c\u4fe1\u606f\u5316", " speed", " pace", "-esque"], ["&apos", " speed", " ''", "\u65b0\u8001\u5ba2\u6237", " pace", "\u548c\u4fe1\u606f\u5316", "t\u00e9ri", "speed"], [" \r\n\r\n", " speed", "\u2011", " pace", "-speed", "&apos", "\u65b0\u8001\u5ba2\u6237", "speed"], [" framerate", " speed", " speeds", "-speed", " pace", "-paced", "bucks", " stamina"], [" speeds", " framerate", " speed", " uptime", " pace", "-speed", " clocks", " clock"], ["\u2011", " speed", " pace", " speeds", " framerate", " clock", "-speed", " sprint"], [" speeds", " framerate", " selfie", " sprint", " speed", " overclock", " uptime", " pace"], ["\u2011", " speed", " Instagram", " pace", " speeds", " sprint", " timeline", " emoji"], [" speed", " pace", " time", " speeds", "\u2011", " sprint", " clock", " Instagram"], [" \u200b\u200b", " Instagram", " \ufffd", " emoji", "\u200b\u200b", " \ufffd", " \ufffd", " COVID"], [" \ufffd", " speed", " pace", " sprint", " clock", " \ufffd", " speeds", " time"], [" \ufffd", "\u2011", " \ufffd", " \ufffd", " sprint", " vibe", " pace", "\ufe0f"], [" \ufffd", " sprint", " \ufffd", " \ufffd", "\u2011", " pace", " overclock", "/fast"], ["\u2011", " \ufffd", "\u2019s", " \u2013", " \ufffd", " pace", " sprint", "\ufffd"], [" speed", " clock", " fastest", " pace", " speeds", " sprint", " milliseconds", " time"], [" speed", " clock", " fastest", " speeds", " time", " milliseconds", " peak", " pace"], [" speed", " milliseconds", " speeds", " fastest", " framerate", " clock", " pace", " time"], [" speed", " speeds", " fastest", " milliseconds", " framerate", " pace", " clock", " fps"], [" speed", " speeds", "\u6bcf\u79d2", " framerate", " fastest", " fps", "-speed", " Speed"], ["\u6bcf\u79d2", " framerate", " speeds", " speed", " fps", " FPS", " fastest", " milliseconds"], ["\u6bcf\u79d2", " speeds", " framerate", " speed", " rate", " fps", " frequency", " FPS"], ["\u6bcf\u79d2", " speeds", " FPS", " framerate", " speed", " fps", " rate", " milliseconds"], ["\u6bcf\u79d2", " speed", " FPS", " speeds", " fps", " rate", " framerate", " pace"], [" FPS", "\u6bcf\u79d2", " fps", " speed", " framerate", " pace", " rate", " speeds"], [" fps", " FPS", "\u6bcf\u79d2", " framerate", " pace", " speeds", " speed", " Hz"], [" FPS", " pace", " fps", " framerate", "\u6bcf\u79d2", " rate", " speed", " speeds"], [" framerate", " FPS", " fps", " RPM", " pace", " Hz", "\u6bcf\u79d2", " BPM"], [" framerate", " FPS", " fps", " RPM", " pace", " Hz", " BPM", " bpm"], [" framerate", " FPS", " RPM", " fps", "+)", " BPM", " Mbps", " timeframe"], [" fps", " FPS", " framerate", " RPM", "fps", " DPI", " Hz", " BPM"], [" FPS", " fps", " framerate", " Hz", "fps", " MHz", " GHz", " RPM"], [" fps", " FPS", " framerate", " Hz", "fps", " MHz", " kHz", "+)"], [" fps", " FPS", " framerate", "fps", " Hz", "Hz", " MHz", "+)"], [" fps", " FPS", "fps", " framerate", "FPS", "_fps", " Hz", "Hz"], [" FPS", " fps", "fps", "FPS", " framerate", "_fps", "\u5e27", "Hz"], [" FPS", " fps", "fps", "Hz", "FPS", " Hz", "hz", " framerate"], [" FPS", " fps", "fps", "Hz", "FPS", " Hz", "\u5e27", " framerate"], [" FPS", " fps", "fps", "Hz", "FPS", " Hz", "hz", "_fps"], [" FPS", " fps", "fps", " Hz", "FPS", "Hz", "hz", " framerate"], [" FPS", " fps", " Hz", "fps", "Hz", "FPS", "hz", " TPS"], [" FPS", "fps", " Hz", "Hz", " fps", "hz", "ms", "FPS"]], "p": [[0.9449, 0.0415, 0.0034, 0.0022, 0.0017, 0.0012, 0.0006, 0.0005], [0.0983, 0.0265, 0.0194, 0.0125, 0.0117, 0.0046, 0.0043, 0.0023], [0.6808, 0.2504, 0.011, 0.0059, 0.0052, 0.0038, 0.0023, 0.0022], [0.0275, 0.0089, 0.004, 0.0031, 0.0029, 0.0023, 0.0021, 0.002], [0.2317, 0.0852, 0.0115, 0.0108, 0.0062, 0.0062, 0.0054, 0.0048], [0.0457, 0.0314, 0.0158, 0.0116, 0.0045, 0.0038, 0.0033, 0.0029], [0.1456, 0.0077, 0.0077, 0.0053, 0.0039, 0.0039, 0.0028, 0.0028], [0.0349, 0.0069, 0.0057, 0.0047, 0.0047, 0.0033, 0.0029, 0.0025], [0.1521, 0.1429, 0.0526, 0.0299, 0.0281, 0.0171, 0.0091, 0.0076], [0.2152, 0.1226, 0.0042, 0.0024, 0.0022, 0.0021, 0.0019, 0.0017], [0.3116, 0.2583, 0.189, 0.024, 0.0146, 0.0114, 0.0042, 0.0039], [0.003, 0.0028, 0.0024, 0.0024, 0.0015, 0.0014, 0.0014, 0.0013], [0.0045, 0.004, 0.0024, 0.0017, 0.0016, 0.0015, 0.0013, 0.0013], [0.0077, 0.0047, 0.0044, 0.0044, 0.0032, 0.0028, 0.0024, 0.0018], [0.0094, 0.0057, 0.0042, 0.0022, 0.0022, 0.0022, 0.0017, 0.0017], [0.0054, 0.0031, 0.002, 0.0014, 0.0012, 0.0011, 0.0011, 0.0009], [0.0152, 0.0111, 0.0044, 0.0018, 0.0017, 0.0017, 0.0017, 0.0013], [0.005, 0.0023, 0.0021, 0.0014, 0.0013, 0.0013, 0.0011, 0.0011], [0.0042, 0.0037, 0.0024, 0.0018, 0.0016, 0.0012, 0.0012, 0.0011], [0.0087, 0.0046, 0.0038, 0.003, 0.0025, 0.0022, 0.0018, 0.0018], [0.0064, 0.0053, 0.0039, 0.0022, 0.0021, 0.0021, 0.0013, 0.0013], [0.0029, 0.0018, 0.0015, 0.0014, 0.0014, 0.0012, 0.0011, 0.0011], [0.0056, 0.0053, 0.0018, 0.0014, 0.0013, 0.0013, 0.0013, 0.0012], [0.0032, 0.0018, 0.0015, 0.0013, 0.0011, 0.0009, 0.0008, 0.0008], [0.0172, 0.0034, 0.0026, 0.0026, 0.0026, 0.0025, 0.0022, 0.0022], [0.0097, 0.0075, 0.0055, 0.0049, 0.0049, 0.003, 0.0024, 0.0023], [0.0151, 0.0142, 0.0081, 0.0076, 0.0071, 0.0067, 0.0052, 0.0049], [0.0781, 0.0369, 0.021, 0.0174, 0.0144, 0.0099, 0.0088, 0.0073], [0.0156, 0.0121, 0.0114, 0.0114, 0.0114, 0.0107, 0.0095, 0.0095], [0.0348, 0.0155, 0.0145, 0.0145, 0.0128, 0.012, 0.0106, 0.0083], [0.0336, 0.0297, 0.0192, 0.0169, 0.0159, 0.0159, 0.0159, 0.0132], [0.0567, 0.0366, 0.0252, 0.0135, 0.0127, 0.0112, 0.0093, 0.0087], [0.0231, 0.0231, 0.0204, 0.0149, 0.0116, 0.0109, 0.0096, 0.0096], [0.0439, 0.0342, 0.0266, 0.0221, 0.0195, 0.0104, 0.0098, 0.0081], [0.0418, 0.027, 0.0186, 0.0174, 0.0154, 0.0128, 0.012, 0.0113], [0.1544, 0.0605, 0.0344, 0.0268, 0.0173, 0.0163, 0.0144, 0.0144], [0.1056, 0.0414, 0.0365, 0.0365, 0.0343, 0.0284, 0.0236, 0.0162], [0.0926, 0.0386, 0.0341, 0.0249, 0.022, 0.022, 0.022, 0.0207], [0.1169, 0.043, 0.043, 0.0315, 0.0278, 0.023, 0.0216, 0.0168], [0.2237, 0.0876, 0.0682, 0.0414, 0.0365, 0.0284, 0.0184, 0.0162], [0.2206, 0.1257, 0.1042, 0.0864, 0.0408, 0.0263, 0.0248, 0.0248], [0.1643, 0.1202, 0.088, 0.088, 0.0568, 0.0268, 0.0252, 0.0237], [0.2115, 0.0938, 0.0938, 0.0882, 0.0324, 0.0305, 0.0286, 0.0253], [0.2071, 0.0632, 0.0593, 0.0492, 0.0492, 0.0462, 0.0263, 0.016], [0.1266, 0.0722, 0.0678, 0.0528, 0.0528, 0.0466, 0.0341, 0.0301], [0.1076, 0.0652, 0.0541, 0.0349, 0.0308, 0.0272, 0.024, 0.0225], [0.0857, 0.0627, 0.0459, 0.0357, 0.0357, 0.0191, 0.0149, 0.0149], [0.0557, 0.0557, 0.0461, 0.0338, 0.0232, 0.017, 0.0159, 0.015], [0.1023, 0.1023, 0.0797, 0.0228, 0.0228, 0.0189, 0.0157, 0.0108], [0.1278, 0.12, 0.0642, 0.0303, 0.0162, 0.0135, 0.0126, 0.0112], [0.1273, 0.0681, 0.0343, 0.0322, 0.0267, 0.0221, 0.0126, 0.0126], [0.3115, 0.2749, 0.074, 0.0308, 0.0272, 0.0199, 0.0165, 0.0113], [0.4517, 0.3105, 0.0693, 0.0327, 0.0211, 0.0136, 0.0083, 0.0073], [0.3778, 0.3334, 0.0579, 0.0398, 0.0351, 0.0138, 0.0107, 0.0101], [0.4799, 0.2569, 0.1213, 0.0394, 0.0239, 0.01, 0.0088, 0.0083], [0.5647, 0.3425, 0.0866, 0.0034, 0.0018, 0.0004, 0.0002, 0.0001], [0.5141, 0.4004, 0.0788, 0.0044, 0.0014, 0.0004, 0.0001, 0.0001], [0.4064, 0.4064, 0.1694, 0.0074, 0.0058, 0.0035, 0.0004, 0.0003], [0.584, 0.3126, 0.0896, 0.0057, 0.0039, 0.0035, 0.0003, 0.0002], [0.6731, 0.2185, 0.0911, 0.0066, 0.0051, 0.0045, 0.0004, 0.0001], [0.8105, 0.1409, 0.0404, 0.0043, 0.002, 0.0016, 0.0001, 0.0001], [0.7492, 0.1475, 0.0479, 0.0423, 0.0107, 0.001, 0.0007, 0.0003], [0.477, 0.2253, 0.1064, 0.0939, 0.0829, 0.0068, 0.0024, 0.0014]], "ranks": {"Rust": [20219, 21957, 16902, 45574, 1379, 1752, 7807, 2451, 6189, 3910, 4240, 4026, 5784, 3323, 10949, 7824, 10968, 28071, 67281, 31253, 47800, 55748, 23772, 17352, 25402, 66274, 67815, 20189, 42185, 25436, 19462, 28359, 29614, 46633, 49364, 60286, 34149, 30512, 48499, 74579, 85685, 136392, 146544, 173286, 162828, 164572, 99831, 95246, 133086, 81837, 95135, 148463, 180339, 143009, 148809, 168788, 101952, 90013, 37710, 25737, 19908, 21610, 17296]}}, {"pos": 545, "top": [[" \u2013", "\u0629", "@@@@", " @", "@\"", " [@", " \uff5c", " *@"], ["\uff20", " \u2013**", " \uff5e", "\uff5e\uff5e", " \ufffd", " [@", " \r\n \r\n", "@@@@"], [" \u2013**", "**\u2013", " \u2013", " \u2013,", " *\u2013", " \uff5c", ".\u2013", " \r\n \r\n"], ["\uff0a\uff0a\uff0a\uff0a", "\uff0d\uff0d", "\\xa", "\uff1d\uff1d\uff1d\uff1d", "\uff5e\uff5e", "\uff0a\uff0a", "\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a", "\uff3f\uff3f"], ["\uff20", "\\xa", " ****", " *@", " \uffe5", " @(", " @_", "@@@@"], [" ****", "\\xa", " \uffe5", " \uff5c", "\uff5e\uff5e", "\uff20", "\uff1d\uff1d\uff1d\uff1d", " \uff5e"], ["\\xa", " ****", " \uff5c", " \uffe5", "\uff5e\uff5e", "\uff20", " {{$", " \uff5e"], ["\\xa", " ****", "\uff20", " [@", " \uffe5", " \uff5c", " \r\n \r\n", " *@"], [" [@", "\\xa", " \ufffd", " \uff5c", "\uff20", " \r\n \r\n", " \n  \n", " \uffe5"], ["\\xa", " [@", " {{$", "\\xf", " [[", "\u2011", " \r\r\n", " \".$"], ["\\xa", " [@", "\u2011", " [[", " \uff5c", " ****", " \ufffd", "\\xf"], ["\\xa", "\\xf", " ****", " {{$", " **\u300c", "\uff0a\uff0a\uff0a\uff0a", "\uff5e\u300d", "\u0648\u0631\u0627\u064b"], ["\\xa", "\\xf", " FPS", "\uff5e\u300d", "\u2011", " ****", " St\u00e9ph", " **\u300c"], ["\\xa", "\u2011", "\uff5e\u300d", "\\xf", " St\u00e9ph", "\u0648\u0631\u0627\u064b", " FPS", "\u5f7f"], ["\\xa", "\u2011", "\u0648\u0631\u0627\u064b", "\\xf", "\u5f7f", "\uff63", " \ufffd", "\uff5e\u300d"], ["\\xa", " incredibly", "\\xf", " \ufffd", "\ufffd", "\u2011", " St\u00e9ph", " FPS"], ["\\xa", " \u2013", " incredibly", " \u200b\u200b", ",", "\u2011", " FPS", "\\xf"], ["\\xa", " \u200b\u200b", "\\xf", " FPS", " incredibly", "\ufffd", " ****", ".\\\""], ["\\xa", " ;;^", " St\u00e9ph", " \uffe5\uffe5", " incredibly", " FPS", " !***", "\\xf"], ["\\xa", " \ufffd", "\u2011", " &#", " \uffe5\uffe5", " incredibly", " alongside", " --"], ["\\xa", " alongside", " ,", " [[", " \ufffd", " &#", " --", "\uff20"], [" ;;^", "\\xa", " St\u00e9ph", " \uffe5\uffe5", " ''", " '\\\"", " !***", " FPS"], [" ''", " ,", " incredibly", " --", " alongside", "\\xa", " even", " across"], [" ,", " ''", " alongside", " --", " across", " even", " incredibly", " ever"], [" \n  \n", "\\xa", " &#", " \r\n \r\n", " \r\r\n", " whilst", " atop", " --"], [" \n  \n", "\\xa", " ;;^", " !***", " framerate", " atop", " \r\r\n", " FPS"], [" FPS", " framerate", " whilst", " !***", " ;;^", " overclock", " atop", " ****"], [" whilst", " ,", " atop", " --", " incredibly", " speed", " famously", " framerate"], [" ,", " speed", " whilst", " atop", " famously", " over", " incredibly", " during"], [" ,", " \u2013", "\u2011", " at", " over", " on", " speed", " during"], [" ,", " \u2013", " ", " at", " on", " over", " .", "\u2011"], [" ,", " only", " .", " ", " on", " at", " in", " over"], [" ,", " only", " .", " at", " speed", " on", " over", " even"], [" speed", " pace", " only", " \u2013", " incredibly", " fastest", " rapid", " rapidly"], [" speed", " fastest", " pace", " rapidly", " rapid", " instantly", " incredibly", " sprint"], [" speed", " fastest", " pace", "\u2011", " \u2013", " rapidly", " requires", " fast"], [" speed", " requires", " pace", " fastest", " sprint", " rapidly", " incredibly", " demands"], [" speed", " requires", " fastest", " pace", " incredibly", " must", " sprint", " demands"], [" speed", " requires", "\u2011", " fastest", " pace", " incredibly", " required", " demands"], [" speed", "\u2011", " requires", " fastest", " pace", " speeds", " peak", " rapid"], [" speed", " fastest", " requires", " pace", " speeds", " avg", " framerate", " peak"], [" speed", " pace", " fastest", " average", " threshold", " speeds", " requires", " avg"], [" speed", " average", " pace", " avg", " clock", " fastest", " speeds", " latency"], [" avg", " speed", " average", " pace", " threshold", " requires", "\u6bcf\u79d2", " requirement"], [" average", " avg", " requires", " speed", " pace", " every", " required", " requirement"], [" threshold", " requires", " average", " requirement", " avg", " pace", " limit", " speed"], [" requires", " threshold", " avg", " pace", " average", " requirement", " limit", " required"], [" requires", " requirement", " pace", " strict", " threshold", " demands", " limit", " requirements"], [" requires", " pace", " requirement", " require", " demands", " timeframe", " required", " avg"], [" requires", " pace", " requirement", " demands", " timeframe", " requirements", " required", " require"], [" requires", " fails", " slows", " bottleneck", " exceeds", " instantly", " triggers", " impossible"], [" requires", " requirement", "requires", " require", " required", " bottleneck", " deadline", " triggers"], [" requires", ")", " becomes", " requirement", "requires", " demands", " Requires", " triggers"], [" requires", ")", " becomes", " requirement", " instantly", "requires", "+)", " fails"], [" requires", " triggers", " requirement", " becomes", ")", " threshold", " thresholds", " violates"], [" requires", " triggers", " means", " requirement", " becomes", " threshold", ")", " thresholds"], [" triggers", " requires", ")", " means", " threshold", " requirement", " thresholds", " becomes"], [" triggers", ")", " requires", " targets", " threshold", " requirement", " thresholds", " means"], [" triggers", ")", " targets", " threshold", " requires", " requirement", " frame", " frames"], [")", " triggers", " targets", " requires", " threshold", " means", " requirement", " kills"], [")", " budget", " triggers", " kills", " deadline", " frame", " )", " threshold"], [")", " )", " budget", " triggers", " deadline", " threshold", " kills", " target"], [")", " threshold", " target", " )", "?)", "!)", "\u2019)", " triggers"]], "p": [[0.7483, 0.0789, 0.0137, 0.01, 0.0057, 0.0044, 0.0042, 0.0037], [0.1219, 0.074, 0.0613, 0.0541, 0.0449, 0.0421, 0.0396, 0.0372], [0.2159, 0.1905, 0.1484, 0.0701, 0.0482, 0.0425, 0.0375, 0.0311], [0.0968, 0.0909, 0.0909, 0.0802, 0.0487, 0.0487, 0.026, 0.0216], [0.2892, 0.1, 0.0731, 0.0368, 0.0305, 0.0269, 0.0237, 0.021], [0.1251, 0.1104, 0.0629, 0.0555, 0.049, 0.046, 0.0231, 0.0192], [0.3805, 0.1024, 0.0904, 0.0276, 0.0259, 0.0167, 0.0157, 0.0139], [0.1958, 0.0984, 0.0767, 0.0495, 0.0437, 0.0386, 0.0282, 0.022], [0.2247, 0.1363, 0.0605, 0.0416, 0.039, 0.0286, 0.0237, 0.0184], [0.7083, 0.04, 0.0138, 0.0114, 0.0095, 0.0058, 0.0048, 0.0035], [0.5911, 0.1164, 0.0244, 0.0168, 0.0131, 0.0123, 0.009, 0.0079], [0.3899, 0.0301, 0.0301, 0.0194, 0.0092, 0.0071, 0.0071, 0.0067], [0.1526, 0.0207, 0.0171, 0.0161, 0.0118, 0.0086, 0.0081, 0.0076], [0.074, 0.0187, 0.0113, 0.0107, 0.0088, 0.0061, 0.0057, 0.0039], [0.0881, 0.0305, 0.0082, 0.0077, 0.0056, 0.0044, 0.0034, 0.0032], [0.037, 0.0057, 0.0047, 0.0041, 0.0032, 0.0029, 0.0029, 0.0027], [0.0351, 0.0156, 0.0129, 0.0094, 0.0074, 0.0042, 0.0027, 0.0025], [0.095, 0.0094, 0.0083, 0.0065, 0.0042, 0.0031, 0.0029, 0.0024], [0.0487, 0.0066, 0.0062, 0.0048, 0.0038, 0.0035, 0.0031, 0.0029], [0.0627, 0.0085, 0.0075, 0.0058, 0.0055, 0.0051, 0.0048, 0.0048], [0.0302, 0.0126, 0.0126, 0.0118, 0.0111, 0.0081, 0.0081, 0.0072], [0.0169, 0.0103, 0.008, 0.0066, 0.0055, 0.0052, 0.0049, 0.0038], [0.0355, 0.0115, 0.0102, 0.0084, 0.007, 0.0062, 0.0054, 0.0054], [0.0322, 0.0134, 0.0111, 0.0111, 0.0077, 0.0072, 0.0068, 0.0068], [0.0996, 0.0367, 0.0304, 0.0268, 0.0252, 0.0237, 0.0163, 0.0163], [0.0214, 0.0157, 0.013, 0.0122, 0.0122, 0.0108, 0.0108, 0.0084], [0.0194, 0.0161, 0.0104, 0.0098, 0.0092, 0.0092, 0.0063, 0.0063], [0.0669, 0.0217, 0.0103, 0.0096, 0.0096, 0.0085, 0.0062, 0.0055], [0.044, 0.0152, 0.0152, 0.0111, 0.0098, 0.0087, 0.0081, 0.0068], [0.0682, 0.0322, 0.0267, 0.0267, 0.0195, 0.0183, 0.0162, 0.0126], [0.1114, 0.0436, 0.041, 0.041, 0.0362, 0.0319, 0.03, 0.0282], [0.0899, 0.0452, 0.0452, 0.0352, 0.0331, 0.0331, 0.0242, 0.0177], [0.167, 0.0654, 0.0478, 0.0212, 0.0199, 0.0176, 0.0137, 0.0129], [0.0411, 0.0194, 0.0161, 0.0133, 0.0111, 0.0076, 0.0071, 0.0071], [0.0423, 0.0213, 0.0166, 0.0146, 0.0137, 0.0089, 0.0083, 0.0078], [0.0853, 0.023, 0.023, 0.023, 0.0216, 0.0168, 0.0131, 0.0123], [0.0715, 0.0263, 0.0232, 0.0218, 0.0132, 0.011, 0.0097, 0.0091], [0.0464, 0.0339, 0.0151, 0.011, 0.011, 0.0081, 0.0076, 0.0071], [0.0628, 0.0459, 0.0159, 0.0159, 0.0149, 0.0132, 0.0103, 0.0096], [0.1158, 0.0312, 0.0293, 0.0293, 0.0243, 0.0108, 0.0089, 0.0084], [0.1968, 0.0498, 0.0302, 0.0235, 0.0183, 0.0134, 0.0098, 0.0092], [0.1569, 0.029, 0.0273, 0.0226, 0.0199, 0.0187, 0.0165, 0.0146], [0.1347, 0.0362, 0.032, 0.0282, 0.0234, 0.0182, 0.0171, 0.0161], [0.0568, 0.0534, 0.0534, 0.0286, 0.0237, 0.0196, 0.0135, 0.0127], [0.0584, 0.0401, 0.0401, 0.0312, 0.0259, 0.0259, 0.0259, 0.0202], [0.0468, 0.0413, 0.0413, 0.0302, 0.0284, 0.0251, 0.0251, 0.0195], [0.1226, 0.0579, 0.0451, 0.0351, 0.0351, 0.031, 0.0257, 0.0177], [0.2239, 0.05, 0.0303, 0.0303, 0.0303, 0.0236, 0.0222, 0.0222], [0.4263, 0.0329, 0.0309, 0.0187, 0.0176, 0.0129, 0.0121, 0.0107], [0.3855, 0.0337, 0.0279, 0.0246, 0.018, 0.0149, 0.014, 0.0124], [0.3147, 0.0332, 0.0275, 0.0189, 0.0122, 0.0115, 0.0115, 0.0095], [0.5598, 0.0262, 0.0169, 0.0096, 0.009, 0.007, 0.0066, 0.0062], [0.8177, 0.028, 0.0192, 0.011, 0.0085, 0.004, 0.0038, 0.0036], [0.6928, 0.0605, 0.0173, 0.0127, 0.0077, 0.006, 0.0036, 0.0036], [0.5476, 0.0894, 0.0479, 0.0241, 0.0165, 0.0146, 0.0114, 0.0089], [0.4042, 0.1022, 0.062, 0.0332, 0.0258, 0.0228, 0.0228, 0.0167], [0.3064, 0.136, 0.0684, 0.0366, 0.0303, 0.0222, 0.0173, 0.0173], [0.3561, 0.09, 0.0659, 0.0399, 0.0311, 0.0258, 0.0156, 0.013], [0.3259, 0.0774, 0.0566, 0.0532, 0.0441, 0.0285, 0.0162, 0.0162], [0.5745, 0.0686, 0.0209, 0.0185, 0.0135, 0.0127, 0.0112, 0.0099], [0.7842, 0.0729, 0.0442, 0.0209, 0.0072, 0.0047, 0.0047, 0.0044], [0.9756, 0.0096, 0.0029, 0.0011, 0.0011, 0.0009, 0.0009, 0.0003], [0.9997, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [76171, 118631, 131610, 95780, 59905, 54384, 53743, 38751, 48338, 54121, 35746, 64387, 56912, 84712, 94572, 62968, 58624, 99311, 106437, 105497, 106955, 106632, 81654, 62920, 76911, 90224, 68453, 31359, 25668, 17920, 14988, 16617, 14128, 9520, 14605, 16459, 9720, 11676, 13728, 17342, 19086, 26712, 34187, 50621, 41319, 37260, 22735, 23234, 25713, 18335, 16974, 31277, 45397, 43480, 60038, 59912, 29065, 22726, 26824, 6939, 7936, 8080, 8846]}}, {"pos": 546, "top": [[".", ",", " \u2013", "\u00a0", "\u00a0\u00a0", " ", "\u2013", ";"], [" \u2013", "\u2013", " ", "  \n\n", ".", "  \n  \n", ",", "  \n"], [",", "\u2013", ".", "\u2026", " \u2013", "\u2026.", "\u2026..", ";"], [" Shemale", " **\u25cb", " Blowjob", " **\u300c", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **>>", " **:**", " Strec"], [" **#", " **\u201c", " **", " ", " (**", " ***", " **\"", " **("], ["\u00a0\u00a0", " **#", " **\u201c", " **", " **\"", " \uff09", "\u00a0", "(**"], [" **", " **#", " **\u201c", " **\"", " ***", " **(", " **\u300c", " (**"], [" **", " **#", " **\u20ac", " **\u300c", " **\"", " (**", " **(", " **'"], [" **\u20ac", " **#", " **", " (**", "(**", " **\u300c", " **\u201c", " **\""], [" \u0442\u0440\u0451", "\u00a0", "\u0436\u0451", " **\u2013", " **#", "\u0436\u0434\u0451", "\u0451\u0440", ","], ["\u00a0", " **", " **#", " ", " **\u2013", ",", " arguably", " albeit"], [" **", " **#", " **\u300c", " **\u20ac", " **+", " **\u2013", " **\"", " (**"], [" **", " **\u300c", " **\u2013", " **\u20ac", " showcased", " fueled", " arguably", " impactful"], [" arguably", " showcasing", " showcased", " even", " effortlessly", " **", " fueled", " incredibly"], [" \u2013", " even", " just", " arguably", " heavily", " effortlessly", " amongst", " yet"], [" even", " \u2013", " often", " just", " once", " arguably", " quickly", " as"], [" \u2013", ",", " even", "\u2013", " often", " just", " effortlessly", " arguably"], [" effortlessly", " arguably", " even", " swiftly", " often", " fueled", " quickly", " looming"], [" effortlessly", " arguably", " fueled", " outright", " even", " touted", " swiftly", " famously"], [" even", " arguably", " swiftly", " effortlessly", " outright", " notably", " seemingly", " famously"], [" swiftly", "<|endoftext|>", " though", " even", " outright", " arguably", " ultimately", " merely"], [" even", " arguably", " swiftly", " outright", " notably", " ultimately", " effortlessly", " quickly"], [" even", " ultimately", " notably", " swiftly", " arguably", " merely", " ,", " quickly"], [" even", " ,", " ultimately", " though", " over", " as", " notably", " just"], [" \n\n", "  \n\n", " though", " \r\n\r\n", " even", " swiftly", " \u2014", " ,"], [" even", " **", " arguably", " \n\n", " ultimately", " swiftly", " famously", " truly"], [" even", " ,", " over", " ultimately", " sustained", " surpass", " swiftly", " \n\n"], [" even", " ,", " over", " \n\n", " to", " rapidly", " just", " **"], [" even", " ,", " over", " \n\n", " \u2014", " **", " rapidly", " to"], [" **", " even", " \u2014", " \n\n", " ,", " over", " would", " to"], [" even", " ,", " over", " ", " to", " in", " \u2013", " as"], [" **", " even", " \u2013", " ", " over", " in", " to", " ,"], [" even", " **", " must", " due", " over", " critical", " \u2013", " ,"], [" even", " must", " due", " over", " rapidly", " critical", " quickly", " often"], [" must", " rapidly", " critical", " heavily", " quickly", " forced", " even", " severely"], [" must", " critical", " rapidly", " forced", " heavily", " risk", " due", " severely"], [" must", " critical", " rapidly", " failure", " forced", " heavily", " severely", " failures"], [" must", " failure", " even", " critical", " failures", " due", " rapidly", " forced"], [" must", " failure", " failures", " even", " due", " critical", " rapidly", " inevitable"], [" must", " inevitable", " critical", " failure", " failures", " due", " even", " impossible"], [" must", " critical", " due", " failure", " failures", " inevitable", " glitches", " rapidly"], [" glitches", " stutter", " failures", " failure", " critical", " jitter", " must", " crashes"], [" glitches", " jitter", " stutter", " failures", " critical", " failure", " due", " glitch"], [" glitches", " failures", " failure", " stutter", " critical", " loss", " jitter", " triggers"], [" glitches", " failures", " caused", " jitter", " triggers", " loss", " failure", " triggered"], [" glitches", " failures", " caused", " triggers", " instantly", " inevitable", " loss", " jitter"], [" triggers", " instantly", " glitches", " every", " inevitable", " caused", " causes", " failures"], [" triggers", " caused", " causes", " glitches", " triggered", " instantly", " trigger", " triggering"], [" triggers", " glitches", " triggered", " caused", " trigger", " causes", " instantly", " triggering"], [" triggers", " caused", " glitches", " triggered", " trigger", " causes", " instantly", " triggering"], [" triggers", " glitches", " caused", " causes", " triggered", "\u4f1a\u5bfc\u81f4", " instantly", " trigger"], [" triggers", " caused", " triggered", " causes", " glitches", " triggering", " trigger", " visibly"], [" triggers", " triggered", " caused", " triggering", " trigger", " stutter", "trigger", "Trigger"], [" triggers", " triggered", " caused", " triggering", " stutter", " glitches", "\u5361\u987f", "trigger"], [" triggers", " noticeable", "visible", " visible", " triggered", " triggering", "Visible", " feels"], [" triggers", " noticeable", " triggered", " visible", " triggering", "visible", " renders", " trigger"], [" triggers", " triggered", " triggering", " trigger", " noticeable", "trigger", " causes", "\u89e6\u53d1"], [" triggers", " causes", " triggered", " stutter", " caused", " triggering", " visible", " noticeable"], [" triggers", " crashes", " feels", " triggering", " causes", " triggered", " freezes", " stutter"], [" triggers", " kills", " causes", " feels", " freezes", " crashes", " visible", " stutter"], [" causes", " triggers", " kills", " caused", " freezes", " feels", " cause", " visible"], [" causes", " triggers", " kills", " feels", " freezes", " will", " is", " gets"], [" causes", " triggers", " kills", " freezes", " feels", " is", " crashes", " stalls"]], "p": [[0.7255, 0.1429, 0.0464, 0.0281, 0.0193, 0.0097, 0.0091, 0.0059], [0.112, 0.0872, 0.0183, 0.0152, 0.0118, 0.0111, 0.0092, 0.0092], [0.3914, 0.3048, 0.1849, 0.0413, 0.0321, 0.0098, 0.0072, 0.0067], [0.0161, 0.0111, 0.0104, 0.0098, 0.0063, 0.0046, 0.0041, 0.0041], [0.104, 0.0298, 0.0181, 0.0117, 0.0085, 0.008, 0.0075, 0.0075], [0.0302, 0.0284, 0.0267, 0.0208, 0.0111, 0.0105, 0.0098, 0.0087], [0.3595, 0.0625, 0.0587, 0.0379, 0.0334, 0.0314, 0.023, 0.0109], [0.1639, 0.1447, 0.1359, 0.1058, 0.0236, 0.0135, 0.0105, 0.0098], [0.1094, 0.0965, 0.0244, 0.0215, 0.0179, 0.0168, 0.0168, 0.0123], [0.014, 0.0035, 0.0031, 0.0031, 0.0027, 0.002, 0.0019, 0.0019], [0.0332, 0.0293, 0.0177, 0.0138, 0.0101, 0.007, 0.0065, 0.0058], [0.4889, 0.0401, 0.0229, 0.0148, 0.0095, 0.0054, 0.0027, 0.0027], [0.117, 0.0051, 0.0048, 0.0035, 0.0035, 0.0033, 0.0029, 0.0024], [0.0114, 0.0078, 0.0074, 0.0069, 0.0065, 0.0037, 0.0035, 0.0033], [0.0388, 0.0343, 0.0126, 0.0118, 0.0092, 0.0092, 0.0081, 0.0081], [0.0328, 0.0255, 0.0137, 0.0121, 0.0094, 0.0094, 0.0078, 0.0078], [0.0915, 0.0669, 0.0246, 0.0159, 0.0103, 0.0103, 0.0103, 0.0091], [0.0155, 0.0073, 0.0069, 0.0057, 0.0054, 0.0047, 0.0039, 0.0037], [0.0095, 0.007, 0.0065, 0.0042, 0.0037, 0.0035, 0.0027, 0.0026], [0.021, 0.0127, 0.0127, 0.0105, 0.0072, 0.006, 0.0056, 0.0053], [0.0237, 0.0197, 0.0174, 0.0144, 0.0082, 0.0072, 0.0068, 0.0064], [0.0157, 0.0058, 0.0048, 0.0048, 0.004, 0.004, 0.0035, 0.0031], [0.0574, 0.012, 0.0106, 0.0106, 0.01, 0.0088, 0.0078, 0.0073], [0.0421, 0.024, 0.0128, 0.0113, 0.0113, 0.01, 0.0094, 0.0094], [0.2307, 0.0354, 0.0215, 0.013, 0.0108, 0.0095, 0.0065, 0.0061], [0.0304, 0.0184, 0.0093, 0.0077, 0.0068, 0.0068, 0.006, 0.006], [0.0339, 0.0133, 0.0086, 0.0067, 0.0059, 0.0052, 0.0046, 0.0046], [0.0794, 0.0619, 0.0214, 0.0089, 0.0084, 0.0079, 0.0074, 0.0069], [0.1127, 0.0441, 0.0285, 0.0236, 0.0162, 0.0119, 0.0092, 0.0092], [0.2512, 0.0924, 0.0676, 0.034, 0.0161, 0.0125, 0.0125, 0.0092], [0.1024, 0.0661, 0.0454, 0.0401, 0.0312, 0.0312, 0.0215, 0.0178], [0.072, 0.072, 0.0636, 0.0437, 0.034, 0.0265, 0.0249, 0.0234], [0.165, 0.1065, 0.0368, 0.0325, 0.0253, 0.021, 0.0144, 0.0112], [0.1358, 0.0441, 0.0303, 0.0208, 0.0208, 0.0196, 0.0173, 0.0143], [0.0403, 0.0378, 0.0355, 0.0244, 0.0202, 0.0179, 0.0168, 0.0131], [0.0908, 0.0403, 0.0295, 0.023, 0.019, 0.0168, 0.0168, 0.0158], [0.1035, 0.0358, 0.0262, 0.0231, 0.0191, 0.0169, 0.0159, 0.0149], [0.1759, 0.0306, 0.0224, 0.0224, 0.0185, 0.0185, 0.0185, 0.0164], [0.0983, 0.0385, 0.03, 0.0282, 0.0265, 0.0249, 0.0219, 0.0182], [0.0778, 0.0305, 0.0286, 0.0269, 0.0237, 0.0237, 0.0209, 0.0144], [0.0796, 0.0353, 0.0312, 0.0293, 0.0228, 0.0214, 0.013, 0.0122], [0.088, 0.0324, 0.0324, 0.0304, 0.0286, 0.0237, 0.0237, 0.0184], [0.0895, 0.0397, 0.0329, 0.0273, 0.0226, 0.0213, 0.0156, 0.0156], [0.0773, 0.0469, 0.0389, 0.0284, 0.0236, 0.0208, 0.0195, 0.0172], [0.0463, 0.0339, 0.0339, 0.0281, 0.0264, 0.0248, 0.0219, 0.0181], [0.0728, 0.0415, 0.039, 0.0285, 0.0268, 0.0252, 0.0252, 0.0196], [0.0867, 0.0867, 0.0675, 0.0634, 0.0264, 0.0248, 0.0233, 0.0219], [0.2859, 0.0723, 0.0638, 0.0467, 0.0467, 0.0321, 0.0195, 0.0172], [0.4203, 0.073, 0.0416, 0.0391, 0.0324, 0.0286, 0.0197, 0.0173], [0.3749, 0.0738, 0.0575, 0.0575, 0.0272, 0.024, 0.024, 0.0155], [0.4774, 0.0392, 0.0305, 0.0253, 0.0253, 0.0197, 0.0153, 0.0144], [0.3557, 0.0899, 0.0581, 0.0227, 0.0189, 0.0177, 0.0156, 0.0156], [0.5888, 0.1489, 0.0483, 0.0427, 0.0147, 0.013, 0.0115, 0.0101], [0.4924, 0.0755, 0.0404, 0.0335, 0.0261, 0.014, 0.014, 0.014], [0.4732, 0.1741, 0.0499, 0.0499, 0.0303, 0.0236, 0.0208, 0.0208], [0.7439, 0.0476, 0.0255, 0.0255, 0.0225, 0.0198, 0.0094, 0.0073], [0.904, 0.0213, 0.0188, 0.0078, 0.0054, 0.0047, 0.0042, 0.0037], [0.7967, 0.0309, 0.0212, 0.0212, 0.0165, 0.0146, 0.0129, 0.0061], [0.7468, 0.0613, 0.029, 0.0226, 0.0199, 0.0155, 0.0107, 0.0107], [0.6029, 0.1187, 0.0495, 0.0495, 0.03, 0.0265, 0.0161, 0.0086], [0.5352, 0.2528, 0.0639, 0.0302, 0.0235, 0.0235, 0.0126, 0.0067], [0.6096, 0.1979, 0.0643, 0.0567, 0.0209, 0.0068, 0.0039, 0.0034], [0.6861, 0.1966, 0.0497, 0.0183, 0.0161, 0.0046, 0.0043, 0.0028]], "ranks": {"Rust": [38772, 61973, 48707, 57513, 7395, 19147, 50483, 29752, 32958, 23479, 12278, 36438, 17833, 14932, 18078, 11526, 13346, 25623, 66647, 42145, 37315, 49097, 18924, 15726, 12974, 14871, 7588, 5550, 4934, 4912, 5747, 5666, 6151, 7700, 4643, 4547, 3390, 3788, 3639, 4544, 4273, 3187, 2222, 2106, 2311, 2241, 2011, 1905, 1396, 1929, 4258, 5944, 12501, 18881, 22860, 17850, 7991, 9301, 8963, 3417, 2789, 1743, 2217]}}, {"pos": 547, "top": [[".", ",", "\u2013", " \u2013", ";", "\u00a0", "\u2026", " "], ["\u2013", " \u2013", "\u2013and", "  \n", "\u00ad", ",", ".", " \u2013,"], ["\u2013", ",", ".", "\u2026", "\u2013and", ".\u2013", " \u2013", "\u2026."], [" Shemale", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\uad49\uc7a5", "uggy", "----------</", "\uc3df", "\u0e21\u0e19\u0e38\u0e29", "aruhi"], ["\u00a0\u00a0", ":...", "...(", "//@", "\u00ac", "...\\", "...'", "  \n  \n"], ["\u00a0\u00a0", "   \n", "\u2026.", "\u00a0\u00a0\u00a0\u00a0", "  \n", "\u2026\"", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0", "\u2026\u201d"], ["  \n", "  \n\n", "  \n  \n", "   \n", "\u2026\u201d", "...'", "...\"", "\u00a0\u00a0"], ["  \n", "   \n", "  \n  \n", "  \r\n", "  \n\n", "...\\", "          \n", "...("], ["  \n\n", "  \n  \n", "  \n", "...\\", "  \n\n\n", ":...", "   \n", "...\""], ["\u00a0\u00a0", "  \n  \n", " \u00ad", "...\\", "\u2013and", "\u2013", "\u00a0", "\u2014\""], ["...\\", "\u00a0\u00a0", "\u00a0", "  \n  \n", " \u00ad", "...", "\u2026", "[...]"], ["...\\", " **\u2018", "...**", " havoc", " **'", "  \r\n", "\u2026**", "  \n  \n"], ["...\\", "...**", " havoc", " **'", " **\u2018", "\u2026**", "\u5012\u903c", "uggy"], [" havoc", "Trou", "\u5012\u903c", " izman", " trouble", "\u52e4\u52e4\u6073\u6073", "\u4e0d\u5229\u5f71\u54cd", "izarre"], [" havoc", "Trou", "\u2013and", "\u76f4\u63a5\u5f71\u54cd\u5230", "\u9669\u60c5", "\u706b\u901f", " paranoia", " \u00ad"], [" havoc", "\u8ba4\u8ba4\u771f", "Trou", " crippling", " \u00ad", "\u4e0d\u5229\u5f71\u54cd", " wreak", " wildly"], ["\u2013and", " havoc", "\u2013\u2013", "\u2013", " crippling", " \u00ad", " hefty", "Trou"], [" havoc", "\u2013and", " hefty", "\u2013\u2013", "\u2013", "\u2014even", " \u00ad", " wildly"], [" havoc", "\u2014even", "...\\", " hefty", "\u2014or", "\u5012\u903c", " wreak", "\u672c\u5c31"], ["...\\", " havoc", "\u2014even", "\u2014or", "\u2014\"", " myriad", "...", "\u2014and"], ["<|endoftext|>", "...\\", "  \n\n", " havoc", "...", " myriad", "Trou", " wildly"], [" havoc", "Trou", "\u5012\u903c", " wreak", " skyrocket", "\u7a98\u5883", "\u5de8\u53d8", " glitches"], [" havoc", " myriad", " wreak", " wildly", " skyrocket", " drastically", " crippling", " hefty"], [" havoc", " myriad", " wildly", " seemingly", " dramatically", " drastically", " wreak", " \\'"], [" \n\n", "  \n\n", " \r\n\r\n", "   \n\n", "...\\", "\r\n\r\n", "\n\n", " havoc"], [" havoc", " \r\n\r\n", "\r\n\n", "  \n\n", " \n\n", " wildly", " debilitating", " skyrocket"], [" havoc", " skyrocket", " wildly", " glitches", " debilitating", " frantic", " wreak", " catastrophic"], [" havoc", " wildly", " \n\n", " myriad", " dramatically", "  \n\n", " seemingly", " unexpectedly"], [" havoc", " glitches", " wildly", " catastrophic", " skyrocket", " frantic", " panic", " disproportionately"], [" havoc", " panic", " catastrophic", " glitches", " disproportionately", " unpredictable", " skyrocket", " frantic"], [" havoc", " catastrophic", " wildly", " unpredictable", " panic", " dramatically", " shock", " rapid"], [" rapid", " catastrophic", " panic", " shock", " critical", " unpredictable", " dramatically", " massive"], [" catastrophic", " havoc", " panic", " rapid", " unpredictable", " disproportionately", " horrific", " critical"], [" catastrophic", " havoc", " panic", " glitches", " frantic", " disproportionately", " unpredictable", " relentless"], [" catastrophic", " havoc", " disproportionately", " glitches", " relentless", " horrific", " panic", " critical"], [" catastrophic", " glitches", " rapid", " disproportionately", " havoc", " critical", " glitch", " relentless"], [" glitches", " glitch", " sluggish", " stutter", " catastrophic", " rapid", " havoc", " slowdown"], [" glitches", " glitch", " rapid", " stutter", " sluggish", " failures", " framerate", " failure"], [" glitches", " glitch", " stutter", " failures", " sluggish", " delays", " jitter", " slowdown"], [" glitches", " stutter", " glitch", " jitter", " sluggish", " slowdown", " framerate", " chaos"], [" stutter", " framerate", " glitches", " slowdown", " jitter", " glitch", " sluggish", "\u5361\u987f"], [" stutter", " glitches", " jitter", " framerate", " glitch", " slowdown", " flick", "\u5361\u987f"], [" stutter", " glitches", " jitter", " framerate", " glitch", " slowdown", " sluggish", "\u5361\u987f"], [" stutter", " glitches", " slowdown", " jitter", " glitch", " framerate", " sluggish", "\u5361\u987f"], [" glitches", " stutter", " jitter", " slowdown", " framerate", " glitch", " sluggish", " erratic"], [" stutter", " glitches", " jitter", " slowdown", " framerate", " sluggish", " glitch", " erratic"], [" glitches", " stutter", " jitter", " framerate", " slowdown", " sluggish", " erratic", " backlash"], [" glitches", " stutter", " jitter", " slowdown", " framerate", " sluggish", " backlash", " glitch"], [" glitches", " framerate", " stutter", " jitter", " slowdown", " sluggish", " backlash", " erratic"], [" glitches", " framerate", " jitter", " slowdown", " stutter", " sluggish", " backlash", " erratic"], [" glitches", " framerate", " slowdown", " stutter", " jitter", " sluggish", "\u5361\u987f", " erratic"], [" stutter", " glitches", " jitter", " slowdown", " framerate", "\u5361\u987f", " visuals", " sluggish"], [" stutter", "\u5361\u987f", " slowdown", " glitches", " sluggish", " jitter", " framerate", " lag"], [" stutter", "\u5361\u987f", " glitches", " jitter", " slowdown", " framerate", " sluggish", " buffering"], [" stutter", " noticeable", "\u5361\u987f", " glitches", "Visible", " percept", " visible", " jitter"], [" stutter", " noticeable", " visible", "Visible", "\u5361\u987f", "visible", "-visible", " percept"], [" stutter", "\u5361\u987f", " noticeable", " visible", "Visible", " percept", " lag", "visible"], [" stutter", " jitter", "\u5361\u987f", " percept", " noticeable", " visible", " UI", " perceived"], [" stutter", " percept", " jitter", " perception", "\u5361\u987f", " perce", " perceived", "\u611f\u77e5"], [" stutter", " percept", " visible", " perce", " jitter", " perceived", " Visible", " perception"], [" stutter", " percept", " visible", " jitter", " perceived", " perce", " Visible", " perception"], [" stutter", " jitter", " percept", " visible", " perceived", " perce", " perception", " tearing"], [" stutter", " jitter", " j", " visible", " percept", " perceived", " thermal", " dropped"]], "p": [[0.7443, 0.2132, 0.0175, 0.006, 0.0042, 0.0032, 0.0018, 0.0013], [0.5544, 0.0905, 0.0377, 0.019, 0.0167, 0.0167, 0.0157, 0.0139], [0.7177, 0.1247, 0.0668, 0.0315, 0.0096, 0.009, 0.0066, 0.0043], [0.0174, 0.0145, 0.0073, 0.0073, 0.006, 0.0044, 0.0041, 0.0034], [0.0659, 0.0453, 0.0292, 0.0258, 0.0147, 0.013, 0.0108, 0.0095], [0.1452, 0.0197, 0.0173, 0.0163, 0.0153, 0.0127, 0.0112, 0.0077], [0.3864, 0.0862, 0.0715, 0.0359, 0.0218, 0.0181, 0.0181, 0.0181], [0.1542, 0.0775, 0.047, 0.0442, 0.039, 0.0268, 0.0209, 0.0135], [0.3792, 0.0901, 0.0901, 0.0258, 0.0258, 0.0214, 0.0177, 0.0167], [0.0675, 0.0525, 0.0319, 0.0264, 0.0248, 0.0248, 0.0206, 0.0171], [0.1176, 0.0916, 0.0916, 0.0556, 0.049, 0.0337, 0.0297, 0.0247], [0.0491, 0.0317, 0.0247, 0.0192, 0.0181, 0.0049, 0.0043, 0.0036], [0.0178, 0.0178, 0.0167, 0.0066, 0.0062, 0.0035, 0.0027, 0.0026], [0.0135, 0.0044, 0.0027, 0.0018, 0.0017, 0.0015, 0.0014, 0.0014], [0.0164, 0.0034, 0.0021, 0.0018, 0.0018, 0.0017, 0.0017, 0.0016], [0.0057, 0.0021, 0.0019, 0.0017, 0.0014, 0.0013, 0.0013, 0.0013], [0.0086, 0.0076, 0.0055, 0.0028, 0.0025, 0.0025, 0.0025, 0.0022], [0.025, 0.0161, 0.0118, 0.0081, 0.0034, 0.0034, 0.0026, 0.0026], [0.0424, 0.0138, 0.0114, 0.0089, 0.0074, 0.0069, 0.0051, 0.0051], [0.0309, 0.0309, 0.0256, 0.0187, 0.0176, 0.0107, 0.0094, 0.0078], [0.0224, 0.0185, 0.0164, 0.0164, 0.0093, 0.0082, 0.0057, 0.0053], [0.0343, 0.0049, 0.0041, 0.0028, 0.0028, 0.0026, 0.0022, 0.0021], [0.0691, 0.01, 0.0064, 0.0064, 0.0053, 0.0047, 0.0044, 0.0042], [0.0209, 0.0135, 0.0077, 0.0047, 0.0044, 0.0041, 0.0036, 0.0034], [0.1959, 0.1729, 0.0561, 0.022, 0.0207, 0.0194, 0.0118, 0.0092], [0.1026, 0.0079, 0.0074, 0.0062, 0.0048, 0.0045, 0.0037, 0.0037], [0.1425, 0.008, 0.0071, 0.0071, 0.0055, 0.0055, 0.0052, 0.0052], [0.0227, 0.0114, 0.0101, 0.0089, 0.0048, 0.0042, 0.004, 0.0035], [0.038, 0.0075, 0.007, 0.007, 0.0055, 0.0055, 0.0055, 0.0045], [0.0359, 0.0159, 0.0141, 0.0124, 0.0097, 0.0091, 0.0091, 0.008], [0.0171, 0.0142, 0.0133, 0.0133, 0.0125, 0.011, 0.011, 0.0104], [0.0194, 0.0171, 0.0161, 0.0151, 0.0142, 0.0117, 0.0117, 0.0117], [0.0392, 0.0368, 0.0197, 0.0135, 0.0135, 0.0127, 0.0119, 0.0112], [0.0736, 0.0573, 0.0307, 0.0198, 0.0175, 0.0164, 0.0164, 0.0154], [0.0632, 0.0558, 0.0233, 0.0218, 0.016, 0.015, 0.0141, 0.0133], [0.0759, 0.0556, 0.0382, 0.0297, 0.0192, 0.0169, 0.0159, 0.0109], [0.1501, 0.043, 0.0315, 0.0261, 0.0261, 0.0216, 0.0149, 0.0123], [0.1269, 0.0467, 0.0387, 0.0301, 0.0301, 0.0235, 0.0195, 0.0161], [0.3457, 0.0639, 0.0564, 0.0322, 0.025, 0.0195, 0.0162, 0.0143], [0.2528, 0.1271, 0.0724, 0.0302, 0.025, 0.0208, 0.0208, 0.0183], [0.2732, 0.1462, 0.1139, 0.0649, 0.0649, 0.061, 0.0347, 0.0224], [0.4457, 0.1858, 0.0774, 0.0532, 0.0532, 0.0222, 0.0173, 0.0152], [0.5107, 0.1139, 0.1006, 0.0475, 0.0326, 0.0288, 0.0175, 0.0128], [0.4356, 0.1603, 0.0757, 0.0459, 0.0459, 0.0405, 0.0204, 0.014], [0.2387, 0.2387, 0.0995, 0.0775, 0.047, 0.0415, 0.0162, 0.0153], [0.2184, 0.1927, 0.1325, 0.0458, 0.043, 0.0296, 0.0296, 0.0261], [0.2221, 0.1347, 0.1049, 0.0721, 0.0341, 0.032, 0.022, 0.0207], [0.2219, 0.0925, 0.0869, 0.0677, 0.0465, 0.0386, 0.03, 0.0249], [0.2033, 0.1583, 0.066, 0.066, 0.062, 0.0483, 0.04, 0.0201], [0.1873, 0.0831, 0.0689, 0.0608, 0.0537, 0.0445, 0.0369, 0.0287], [0.174, 0.0681, 0.0531, 0.0468, 0.0468, 0.0322, 0.0235, 0.0183], [0.1785, 0.1227, 0.1083, 0.0843, 0.048, 0.0424, 0.033, 0.031], [0.5855, 0.2441, 0.0424, 0.0291, 0.0227, 0.02, 0.0122, 0.0048], [0.7535, 0.1484, 0.0258, 0.0138, 0.0095, 0.0074, 0.0065, 0.0035], [0.5649, 0.0982, 0.0982, 0.0248, 0.0248, 0.0151, 0.0151, 0.0117], [0.5624, 0.0862, 0.0462, 0.0407, 0.0317, 0.028, 0.0247, 0.015], [0.8019, 0.0242, 0.0242, 0.0214, 0.0147, 0.0079, 0.0069, 0.0069], [0.9912, 0.0013, 0.0013, 0.0008, 0.0004, 0.0003, 0.0003, 0.0003], [0.9521, 0.0136, 0.0106, 0.0016, 0.0014, 0.0014, 0.0014, 0.0013], [0.9239, 0.0358, 0.0071, 0.0055, 0.0043, 0.0029, 0.0026, 0.0026], [0.9041, 0.0309, 0.0213, 0.0054, 0.0047, 0.0042, 0.0042, 0.0017], [0.9475, 0.0153, 0.0135, 0.0039, 0.0032, 0.0021, 0.0013, 0.0011], [0.965, 0.0121, 0.0035, 0.0035, 0.0025, 0.0021, 0.0013, 0.0009]], "ranks": {"Rust": [102368, 160668, 121458, 104652, 49061, 52368, 111445, 115196, 133509, 70743, 58033, 78461, 79851, 91571, 86835, 60617, 74948, 86637, 106131, 64880, 88362, 124135, 70091, 37625, 41283, 61169, 28248, 18158, 18114, 9001, 5939, 5815, 6280, 8500, 6208, 7139, 6308, 4752, 4417, 6927, 5816, 3545, 2928, 2562, 2176, 1921, 2389, 2500, 1825, 2377, 4909, 9633, 17861, 13677, 25230, 32541, 11417, 25930, 27090, 9265, 7311, 5413, 5786]}}, {"pos": 548, "top": [["ing", "en", "i", "a", "ting", "er", " \u2013", "u"], ["ing", "en", "**\u2013", "i\u00e8me", " \u2013**", " @{", "er", " *\u2013"], ["ing", "a", "en", "er", "i", "**\u2013", " \u2013", "\u2013\u2013"], ["ing", "``", " ``", "en", " ``(", "i\u00e8me", "HING", "erweise"], ["ing", "en", "ed", "a", "er", "i", "an", "ly"], ["ing", "ed", "en", "a", "i", "er", "i\u00e8me", "o"], ["ing", "ed", "en", "a", "er", "i", "ly", "ers"], ["ing", "ed", "en", "er", "a", "i", "ting", "ers"], ["ing", "a", "ed", "i", "en", "er", "o", "an"], ["ing", "ed", "a", "en", "i", "er", "ting", "ly"], ["ing", "ed", "a", "er", "en", "i", "an", "o"], ["ing", "ed", "er", "en", "ting", "ly", "a", "ers"], ["ing", "ed", "er", "en", "ting", "ingly", "ers", "i\u00e8me"], ["ing", "ed", "er", "en", "ting", "ers", "i\u00e8me", "ingly"], ["ing", "ed", "en", "er", "ting", "i", "ingly", "a"], ["ing", "ed", "er", "en", "ingly", "ting", "ers", "i"], ["ing", "ed", "er", "en", "i", "ting", "a", "ers"], ["ing", "ed", "er", "ting", "ingly", "en", "i\u00e8me", "ers"], ["ing", "ed", "ingly", "ting", "en", "i", "er", "i\u00e8me"], ["ing", "ed", "ingly", "er", "i", "ting", "en", "a"], ["ing", "ed", "i", "a", "er", "en", "ingly", "ting"], ["ing", "ed", "ingly", "ting", "er", "ly", "en", "\u0629"], ["ing", "ed", "ingly", "ting", "i", "a", "er", "en"], ["ing", "ed", "a", "ting", "er", "i", "en", "ingly"], ["ing", "ed", "ting", "a", "i", "en", "ingly", "er"], ["ing", "ed", "ting", "ingly", "ly", "en", "er", "i"], ["ing", "ed", "ting", "ingly", "ly", "en", "ers", "er"], ["ing", "ed", "ting", "ingly", "ly", "i", "er", "a"], ["ing", "ed", "ting", "ingly", "ly", "er", "en", "ers"], ["ing", "ed", "ting", "ingly", "ly", "er", "en", "a"], ["ing", "ed", "ting", "er", "en", "ly", "ers", "ingly"], ["ing", "ed", "ting", "a", "en", "i", "er", "ers"], ["ing", "ed", "ting", "ly", "ers", "en", "er", "i"], ["ing", "ed", "ting", "ers", "ly", "ingly", "en", "er"], ["ing", "ed", "ting", "ingly", "ers", "ly", " .**", "pace"], ["ing", "ting", "ed", "ers", " .**", "ingly", "ly", "ful"], ["ing", "ting", "ed", " .**", "ers", "ingly", "pace", " jitter"], ["ing", "ting", "ed", "ingly", "ers", " jitter", " .**", " glitch"], ["ing", "ting", " jitter", " stutter", " glitch", "ingly", "ed", " glitches"], ["ing", " stutter", " jitter", "ting", " glitch", " .**", " glitches", "pace"], ["ing", " stutter", " jitter", " glitch", "ting", "pace", " glitches", "\u5361\u987f"], ["ing", " stutter", " jitter", " glitch", " glitches", "\u5361\u987f", " pacing", "ting"], [" stutter", "ing", " jitter", " glitch", " glitches", " pacing", "\u5361\u987f", " .**"], ["ing", " stutter", " jitter", " glitch", " glitches", " animation", " pacing", "pace"], ["ing", " stutter", " jitter", " glitches", " glitch", " .**", " spikes", " animation"], [" stutter", "ing", " jitter", " glitches", " glitch", " animation", " spikes", " due"], [" stutter", " jitter", " glitches", "ing", " glitch", " even", " spikes", " bursts"], [".**", " due", " stutter", " glitches", "ing", " jitter", " because", "."], [".**", " glitches", ".", " caused", " exacerbated", " stutter", " Worse", "ing"], [".", "ing", ".**", " caused", ";if", " stutter", "ting", " Worse"], [".", "**.", ".**", "{}.", "*.", "+.", "++.", "\\."], [".", ".**", "**.", "*.", "+.", "{}.", ".*", ".If"], [".", ".**", "**.", "*.", "+.", ".*", "ing", "{}."], [".", ".**", "{}.", "**.", "+.", "ing", "*.", ".If"], [".", ".If", ">If", " instantly", " If", "ing", "*.", ".**"], ["ing", ".", ".If", "*.", ".**", "{}.", "**.", "+."], [".", "ing", "*.", "{}.", ".If", "**.", " **.**", ".**"], [".", "ing", "*.", "{}.", "**.", ".If", ".**", " **.**"], [".", "ing", " If", ".If", "*.", " if", "**.", "{}."], [".", "ing", " If", " plugins", " if", ".If", " scripts", " ."], [".", "ing", " plugins", " scripting", " scripts", " If", " .", "*."], [".", "ing", ",", " plugins", " .", "*.", " Plugins", " JavaScript"], [".", "ing", ",", " plugins", " Plugins", " .", " JavaScript", " if"]], "p": [[0.3549, 0.2942, 0.0617, 0.0374, 0.033, 0.0257, 0.0138, 0.0107], [0.8012, 0.0658, 0.0201, 0.0188, 0.0177, 0.0129, 0.0074, 0.0069], [0.6742, 0.0912, 0.0912, 0.0488, 0.0261, 0.0191, 0.0116, 0.0055], [0.3418, 0.2662, 0.0979, 0.0233, 0.016, 0.0097, 0.0071, 0.0067], [0.8494, 0.0615, 0.0423, 0.02, 0.0121, 0.0073, 0.0006, 0.0005], [0.89, 0.0731, 0.0163, 0.0127, 0.0028, 0.0025, 0.0002, 0.0002], [0.9659, 0.0177, 0.0057, 0.0057, 0.0027, 0.0011, 0.0001, 0.0001], [0.9938, 0.0032, 0.0012, 0.0008, 0.0005, 0.0001, 0.0001, 0.0], [0.9899, 0.004, 0.0025, 0.0012, 0.0012, 0.0006, 0.0002, 0.0001], [0.9964, 0.0022, 0.0005, 0.0003, 0.0002, 0.0002, 0.0, 0.0], [0.9918, 0.0032, 0.0019, 0.0009, 0.0008, 0.0006, 0.0001, 0.0001], [0.9974, 0.0009, 0.0005, 0.0003, 0.0001, 0.0, 0.0, 0.0], [0.9983, 0.0009, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9988, 0.0007, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9985, 0.001, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9979, 0.0013, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9987, 0.0009, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9993, 0.0004, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9993, 0.0004, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9986, 0.0008, 0.0001, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9955, 0.0022, 0.0006, 0.0004, 0.0002, 0.0002, 0.0001, 0.0001], [0.9988, 0.0006, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9986, 0.0006, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.9974, 0.001, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.9971, 0.0009, 0.0003, 0.0003, 0.0002, 0.0002, 0.0002, 0.0001], [0.9975, 0.0006, 0.0004, 0.0003, 0.0001, 0.0001, 0.0001, 0.0001], [0.9981, 0.0006, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001, 0.0], [0.9946, 0.0022, 0.0006, 0.0004, 0.0002, 0.0002, 0.0002, 0.0002], [0.9962, 0.001, 0.0009, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001], [0.996, 0.0013, 0.0008, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.9961, 0.0015, 0.0006, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.994, 0.0028, 0.0005, 0.0003, 0.0003, 0.0003, 0.0002, 0.0002], [0.9961, 0.0017, 0.0005, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.992, 0.002, 0.0017, 0.0004, 0.0003, 0.0003, 0.0001, 0.0001], [0.9826, 0.0029, 0.0028, 0.001, 0.0006, 0.0005, 0.0003, 0.0003], [0.9885, 0.0023, 0.0018, 0.0005, 0.0005, 0.0005, 0.0003, 0.0002], [0.9818, 0.0033, 0.0017, 0.0009, 0.0008, 0.0007, 0.0004, 0.0003], [0.969, 0.0054, 0.0019, 0.0011, 0.0011, 0.0009, 0.0008, 0.0007], [0.9194, 0.0066, 0.0048, 0.0045, 0.0031, 0.0026, 0.002, 0.0019], [0.8658, 0.0169, 0.0124, 0.0096, 0.0085, 0.0045, 0.0045, 0.0031], [0.809, 0.0295, 0.0277, 0.0179, 0.0079, 0.0066, 0.0066, 0.004], [0.5391, 0.1363, 0.1203, 0.0471, 0.0443, 0.0056, 0.005, 0.0032], [0.2998, 0.1818, 0.1818, 0.0758, 0.0712, 0.0103, 0.007, 0.0055], [0.4681, 0.1428, 0.0633, 0.0319, 0.0281, 0.0103, 0.0067, 0.0049], [0.2507, 0.1521, 0.1045, 0.0384, 0.0299, 0.0248, 0.0125, 0.0117], [0.1735, 0.0929, 0.0872, 0.0412, 0.0283, 0.0161, 0.0126, 0.0126], [0.0965, 0.0585, 0.055, 0.0428, 0.0244, 0.0139, 0.0131, 0.0115], [0.1187, 0.041, 0.0386, 0.034, 0.0282, 0.0234, 0.0234, 0.0194], [0.062, 0.0582, 0.0453, 0.0293, 0.0157, 0.0147, 0.0147, 0.0147], [0.1914, 0.0455, 0.0229, 0.019, 0.0139, 0.0108, 0.0101, 0.009], [0.1882, 0.0946, 0.0889, 0.0889, 0.0476, 0.0255, 0.0136, 0.0106], [0.3596, 0.1925, 0.0909, 0.0487, 0.0261, 0.0203, 0.0179, 0.0075], [0.4387, 0.1042, 0.0811, 0.0594, 0.0193, 0.0141, 0.0132, 0.0124], [0.3057, 0.0531, 0.0389, 0.0365, 0.0267, 0.0267, 0.0236, 0.0195], [0.1412, 0.0667, 0.0261, 0.0191, 0.0191, 0.0191, 0.0169, 0.0131], [0.3142, 0.1682, 0.0167, 0.0167, 0.013, 0.0122, 0.0101, 0.0095], [0.4018, 0.1388, 0.0177, 0.0129, 0.0129, 0.0121, 0.0114, 0.0101], [0.6721, 0.0587, 0.0168, 0.0109, 0.0102, 0.0096, 0.0075, 0.0062], [0.5804, 0.2135, 0.024, 0.0137, 0.0083, 0.0078, 0.0037, 0.003], [0.6168, 0.2914, 0.006, 0.0057, 0.0034, 0.0024, 0.002, 0.0018], [0.9069, 0.0617, 0.0018, 0.0012, 0.0012, 0.0009, 0.0008, 0.0008], [0.986, 0.0075, 0.0004, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001], [0.9994, 0.0004, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [31029, 65877, 42658, 19223, 11697, 10974, 10027, 8964, 13499, 7718, 8061, 5560, 3220, 3404, 6067, 9127, 13745, 9247, 13089, 10110, 16417, 11386, 11071, 10853, 7956, 5873, 6936, 13326, 4877, 5132, 8460, 8301, 7340, 7558, 8365, 9849, 8024, 8456, 8051, 9952, 10481, 6379, 5573, 5012, 3890, 4042, 3777, 4067, 4266, 3060, 4063, 4934, 4167, 2773, 2729, 2188, 1091, 748, 714, 47, 68, 18, 22]}}, {"pos": 549, "top": [[" \u2013", ".", ",", "\u2013", ";", "\u00a0", "\u00a0\u00a0", "\u2026."], [" \u2013", "\u2013", "\u2013and", ",", " \u2013,", ".", "\u2013\u2013", ";"], ["\u2013", ",", " \u2013", ".", "\u2013and", ";", "\u2026", ".\u2013"], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", "-------------</", " ;;^", " Blowjob", "----------</", "\uc3df"], ["\u65b0\u52a0\u5761", " cittadin", ":@", " Aussie", "\u52a0\u62ff\u5927", "\uff20", " Millennials", "\u52a0\u62ff\u5927\u7684"], ["!:", "\u65b0\u52a0\u5761", "<|quad_end|>", "arren", "fst", " \u0628\u0648\u062a\u064a\u0646", "\u6dfc", ":href"], ["  \n\n", "  \n", "   \n", "\uff01", " \u201d", " \u2019", "!\u201d", " nasty"], ["   \n", "!:", "   \n\n", "<|quad_end|>", " *@", "-ish", " pricey", "\u4e8b\u534a\u529f\u500d"], [" \n\n", "  \n\n", "   \n\n", "    \n\n", "<|endoftext|>", "   \n", "!\u201d", "     \n\n"], ["Though", " though", "\u2013and", "though", "\u76f8\u8f83", " oddly", "-but", "\u5468\u906d"], [" though", "<|endoftext|>", " \u00ad", "\u00a0", "\u2014even", "\u2013and", "though", "Though"], [" uncomfort", "\u751a\u81f3\u4f1a", " gritty", " unpredict", "\u706b\u901f", " pricey", " arguably", " oddly"], [" arguably", " nonetheless", " uncomfort", " even", " incredibly", "\u4e94\u82b1\u516b", "\u582a\u6bd4", " glaring"], [" arguably", " incredibly", " even", " savvy", " effortlessly", " gritty", " pricey", " albeit"], [" arguably", " though", " swiftly", " even", " aggressively", " effortlessly", " albeit", " incredibly"], [" arguably", " myriad", " savvy", " though", " sprawling", " even", " swiftly", " folks"], [" arguably", " myriad", " savvy", " sprawling", " incredibly", " though", " looming", " even"], [" arguably", " savvy", " sprawling", " incredibly", " myriad", " nuanced", " hefty", " tweaks"], [" arguably", " incredibly", " swiftly", " myriad", " even", " famously", " notoriously", " savvy"], [" arguably", " swiftly", " even", " myriad", " though", "\u5373\u4fbf", " ultimately", "\u2014even"], ["<|endoftext|>", " swiftly", " though", "Though", " myriad", " arguably", " ultimately", "\u5373\u4fbf"], [" arguably", " swiftly", " even", " ultimately", "\u5373\u4fbf\u662f", " myriad", "\u5373\u4fbf", " famously"], [" swiftly", " arguably", " even", " though", " myriad", " ultimately", " merely", "\u5373\u4fbf"], [" swiftly", " even", " though", " arguably", " myriad", " ultimately", " --", " merely"], ["\u5373\u4fbf", " though", "Though", " swiftly", " arguably", " myriad", " \n\n", "\u5373\u4fbf\u662f"], ["\u5373\u4fbf", " swiftly", "\u5373\u4fbf\u662f", " arguably", " famously", " myriad", " hugely", " wildly"], ["\u5373\u4fbf", " swiftly", " famously", " arguably", "\u5373\u4fbf\u662f", " myriad", " even", " wildly"], [" even", "\n\n", " arguably", " swiftly", " though", " famously", " ultimately", "\u5373\u4fbf"], ["\u5373\u4fbf", " famously", " even", " arguably", " swiftly", " myriad", " ultimately", "\n\n"], [" even", " famously", " swiftly", "\u5373\u4fbf", " arguably", " ultimately", " \u2014", "\u2014even"], [" even", " rapidly", "<|endoftext|>", " quickly", " critical", " ultimately", " every", " swiftly"], [" even", " rapidly", " critical", " quickly", " \u2014", " only", " every", " famously"], [" rapidly", " even", " quickly", " critical", " incredibly", " relentless", " only", " fast"], [" rapidly", " even", " critical", " relentlessly", " relentless", " aggressively", " quickly", " heavily"], [" rapidly", " relentlessly", " relentless", " aggressively", " notoriously", " meticulously", " heavily", " critical"], [" relentlessly", " rapidly", " notoriously", " relentless", " dangerously", " frantic", " impossible", " aggressively"], [" notoriously", " unpredictable", " impossible", " relentlessly", " frantic", " inefficient", " relentless", " aggressively"], [" notoriously", " unpredictable", " impossible", " relentlessly", " frantic", " inefficient", " rapidly", " relentless"], [" unpredictable", " impossible", " relentlessly", " notoriously", " relentless", "\u2014even", " frantic", " inefficient"], [" unpredictable", " impossible", " notoriously", " relentlessly", " relentless", "\u2014even", " rapidly", " frantic"], [" unpredictable", " slow", " frantic", " sluggish", " fast", " inefficient", " rapidly", " relentless"], [" unpredictable", " slow", " fast", " delays", " inefficient", " slower", " rapidly", " frantic"], [" unpredictable", " slow", " delays", " fast", " slower", " inefficient", " sluggish", " slowing"], [" unpredictable", " slow", " delays", " inefficient", " slower", " fast", " spikes", " sluggish"], [" unpredictable", " slow", " delays", " fast", " inefficient", " rapidly", " unpredict", " slower"], [" unpredictable", " inevitably", " slow", " delays", " unpredict", " rapidly", " inefficient", " notoriously"], [" unpredictable", " inevitably", " inevitable", " ANY", " unavoidable", " delays", " instantly", " notoriously"], [" unpredictable", " ANY", " inevitable", " inevitably", " delays", " instantly", " rapidly", " unprotected"], [" ANY", " unpredictable", " inevitable", " delays", " unprotected", " inevitably", "\u6781\u6613", " crashes"], [" ANY", "\u4efb\u4f55\u5f62\u5f0f\u7684", "\u7684\u4efb\u4f55", "\u63d0\u4f9b\u4efb\u4f55", " slightest", " unpredictable", " any", " delays"], [" ANY", "\u4efb\u4f55\u5f62\u5f0f\u7684", "\u7684\u4efb\u4f55", ":Any", "\u4efb\u4f55", " qualsiasi", " \u043b\u044e\u0431\u043e\u0439", "\u63d0\u4f9b\u4efb\u4f55"], [" ANY", "\u4efb\u4f55\u5f62\u5f0f\u7684", " syncing", "\u5982\u679c\u60a8\u7684", "\u7684\u4efb\u4f55", ">If", ";if", "\u5982\u679c\u7528"], [" ANY", " syncing", " buffering", ">If", "\u5982\u679c\u60a8\u7684", " if", " If", "\u5982\u679c\u4f60\u7684"], [" syncing", " ANY", " parsing", " processing", " buffering", " if", "\u5982\u679c\u60a8\u7684", " If"], [" syncing", " if", " parsing", "\u5982\u679c\u4f60\u7684", "\u5982\u679c\u60a8\u7684", " initializing", "\u82e5", " CPU"], [" parsing", " serialization", " initializing", " syncing", " scripting", " Serialization", " loading", " executing"], [" scripting", " parsing", " initializing", " Serialization", " serialization", " If", " syncing", " Python"], [" scripting", " parsing", " If", " initializing", " if", " serialization", " Serialization", " Python"], [" If", " if", " scripting", " parsing", " Serialization", " loading", " initializing", "\u5982\u679c\u4f60\u7684"], [" plugins", " Plugins", " scripting", " If", " if", " syncing", " parsing", " plugin"], [" scripting", " If", " Plugins", " plugins", " syncing", " parsing", " if", " Parsing"], [" If", " Plugins", " plugins", " if", " Loading", " scripting", " Plugin", " plugin"], [" If", " Plugins", " Loading", " Plugin", " Script", " Parsing", " Async", " Even"]], "p": [[0.4453, 0.3061, 0.1446, 0.0877, 0.0046, 0.0019, 0.0015, 0.0012], [0.3914, 0.099, 0.0152, 0.0052, 0.0041, 0.0021, 0.0017, 0.0013], [0.689, 0.2237, 0.0499, 0.0236, 0.0053, 0.0036, 0.0009, 0.0008], [0.0097, 0.0067, 0.0046, 0.0034, 0.0032, 0.003, 0.0025, 0.0022], [0.0047, 0.0025, 0.0018, 0.0016, 0.0015, 0.0011, 0.0009, 0.0009], [0.0033, 0.0029, 0.0017, 0.0011, 0.001, 0.001, 0.001, 0.001], [0.0106, 0.01, 0.0073, 0.0061, 0.005, 0.005, 0.0047, 0.0039], [0.0061, 0.0047, 0.0047, 0.0035, 0.003, 0.0025, 0.0018, 0.0015], [0.321, 0.1947, 0.1829, 0.016, 0.0141, 0.011, 0.0063, 0.0055], [0.0035, 0.0035, 0.0027, 0.0025, 0.0011, 0.0011, 0.0011, 0.001], [0.037, 0.0255, 0.0145, 0.0128, 0.0094, 0.0083, 0.0083, 0.0073], [0.0037, 0.0037, 0.0029, 0.0027, 0.0022, 0.0021, 0.002, 0.0017], [0.0035, 0.0029, 0.0021, 0.002, 0.002, 0.0016, 0.0016, 0.0015], [0.0029, 0.0021, 0.002, 0.0017, 0.0016, 0.0015, 0.0013, 0.0013], [0.0085, 0.0075, 0.0058, 0.0055, 0.0031, 0.0031, 0.0028, 0.0023], [0.0094, 0.0065, 0.0061, 0.0057, 0.0051, 0.0051, 0.0051, 0.0045], [0.0392, 0.021, 0.0154, 0.0099, 0.0099, 0.0093, 0.0088, 0.0082], [0.0264, 0.011, 0.0086, 0.0076, 0.0063, 0.0059, 0.0055, 0.0046], [0.0605, 0.0144, 0.0105, 0.0105, 0.0099, 0.0082, 0.0072, 0.0072], [0.0391, 0.0345, 0.0185, 0.0144, 0.0135, 0.0105, 0.0105, 0.0082], [0.8161, 0.0052, 0.0043, 0.0019, 0.0019, 0.0018, 0.0016, 0.0014], [0.0158, 0.0123, 0.0079, 0.0042, 0.004, 0.0037, 0.0035, 0.0029], [0.0346, 0.027, 0.0197, 0.0127, 0.0112, 0.0099, 0.0077, 0.0057], [0.023, 0.014, 0.014, 0.0123, 0.0085, 0.008, 0.0062, 0.0058], [0.0219, 0.0182, 0.0182, 0.0151, 0.0076, 0.0071, 0.0055, 0.0049], [0.0187, 0.01, 0.0054, 0.0039, 0.0037, 0.0033, 0.0029, 0.0025], [0.0151, 0.0134, 0.0052, 0.0046, 0.0038, 0.0038, 0.0038, 0.0034], [0.0196, 0.0153, 0.0119, 0.0112, 0.0087, 0.0082, 0.0077, 0.006], [0.0221, 0.0183, 0.0183, 0.0183, 0.0134, 0.0126, 0.0098, 0.0092], [0.0522, 0.0297, 0.0192, 0.0192, 0.0192, 0.018, 0.015, 0.015], [0.0933, 0.0323, 0.0251, 0.0184, 0.0173, 0.0173, 0.0162, 0.0126], [0.1774, 0.0477, 0.0396, 0.0349, 0.0212, 0.0165, 0.0155, 0.0113], [0.0755, 0.0588, 0.0357, 0.0335, 0.0191, 0.0168, 0.0158, 0.0158], [0.039, 0.0268, 0.0209, 0.0196, 0.0184, 0.0173, 0.0162, 0.0162], [0.034, 0.0249, 0.0234, 0.0182, 0.0125, 0.0118, 0.0104, 0.0098], [0.0305, 0.0287, 0.0269, 0.0238, 0.0163, 0.0163, 0.0163, 0.0153], [0.0523, 0.028, 0.0263, 0.0247, 0.0192, 0.015, 0.0141, 0.0132], [0.0384, 0.0361, 0.0339, 0.0193, 0.017, 0.016, 0.0141, 0.0117], [0.0382, 0.0359, 0.0297, 0.0297, 0.0204, 0.018, 0.0159, 0.0159], [0.0849, 0.0259, 0.0229, 0.019, 0.019, 0.0178, 0.0148, 0.0148], [0.0778, 0.0535, 0.0253, 0.0237, 0.0237, 0.0223, 0.0185, 0.0174], [0.0912, 0.0458, 0.0278, 0.023, 0.0191, 0.0191, 0.0191, 0.0158], [0.0711, 0.0405, 0.0336, 0.0262, 0.0246, 0.0217, 0.0169, 0.0124], [0.1157, 0.0453, 0.0375, 0.0242, 0.0177, 0.0167, 0.0147, 0.013], [0.1598, 0.0335, 0.0261, 0.0168, 0.0158, 0.014, 0.0131, 0.0131], [0.1534, 0.0183, 0.0172, 0.0162, 0.0134, 0.0134, 0.0126, 0.0118], [0.1074, 0.0507, 0.0448, 0.0308, 0.0175, 0.0175, 0.0155, 0.0128], [0.0698, 0.0616, 0.033, 0.0291, 0.0241, 0.0156, 0.0146, 0.0129], [0.0612, 0.0289, 0.0239, 0.0175, 0.0155, 0.0155, 0.0136, 0.0128], [0.3173, 0.0802, 0.0754, 0.0102, 0.0096, 0.0079, 0.0079, 0.0075], [0.1713, 0.1253, 0.0592, 0.0232, 0.0205, 0.0159, 0.0159, 0.0124], [0.0729, 0.0304, 0.0285, 0.0252, 0.0196, 0.0184, 0.0163, 0.0163], [0.0979, 0.0558, 0.0318, 0.0318, 0.0299, 0.0248, 0.0218, 0.0181], [0.0843, 0.0656, 0.0398, 0.0374, 0.033, 0.0274, 0.0227, 0.0213], [0.1549, 0.0939, 0.057, 0.0305, 0.0286, 0.0286, 0.0253, 0.0253], [0.2422, 0.0891, 0.0612, 0.054, 0.054, 0.0308, 0.0225, 0.0212], [0.1426, 0.098, 0.0764, 0.0493, 0.0493, 0.0463, 0.0361, 0.0361], [0.1376, 0.1376, 0.0835, 0.0476, 0.0447, 0.0447, 0.037, 0.0288], [0.2834, 0.1043, 0.0717, 0.0632, 0.0281, 0.0264, 0.0219, 0.0205], [0.3, 0.2062, 0.1606, 0.0669, 0.0521, 0.0316, 0.0246, 0.0217], [0.2947, 0.2295, 0.1084, 0.0844, 0.0213, 0.0188, 0.0188, 0.0147], [0.4331, 0.1805, 0.0517, 0.0314, 0.026, 0.0203, 0.0148, 0.0115], [0.9227, 0.0191, 0.008, 0.008, 0.0038, 0.0026, 0.0026, 0.0024]], "ranks": {"Rust": [33903, 60877, 45057, 37295, 1425, 5749, 6622, 5266, 10424, 8808, 2665, 6973, 2387, 5653, 8130, 5847, 5604, 16975, 40475, 29380, 44653, 55301, 29718, 28844, 30352, 42375, 29330, 16528, 11690, 9323, 7149, 8407, 8750, 9967, 8841, 7817, 3552, 3851, 4149, 4230, 3827, 2741, 2052, 3380, 2915, 2819, 3652, 2794, 1512, 2009, 7667, 9537, 3750, 2223, 2604, 875, 636, 392, 295, 65, 58, 39, 41]}}, {"pos": 550, "top": [["s", ",", " \u2013", "\u2013", ".", ";", "\u00a0", "\u2026."], ["s", "\u2013", " \u2013", "\u2013and", "schild", "saf", "**\u2013", "scape"], [",", "\u2013", ".", "s", " \u2013", "\u2026", "\u2013and", ";"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "schrift", " Shemale", " **\u300c", "sik", "satz", " **\u00ab", "sache"], ["s", "schild", "sel", "CHF", "\u65b0\u52a0\u5761", "saf", "sik", "scape"], ["s", "**!", "   \n", "(**", "siz", "sip", " (**", "saf"], ["s", "  \n\n", "  \n\n\n", "   \n", "  \n  \n", "  \n", "**!", "   \n\n"], ["   \n", "  \n\n\n", "   \n\n", "s", "**!", "  \n\n", "  \n  \n", "(**"], ["  \n\n", "   \n\n", "  \n\n\n", " \n\n", "  \n  \n", " \n\n\n", "     \n\n", "    \n\n"], [",", "  \n  \n", "\u2013", "!,", "\u2013and", "\u00a0", "\u2026,", "s"], [",", "\u00a0", "s", "\u2013", "\u2026", "...", " [\u2026]", "  \n  \n"], ["s", " **#", "...**", " **\u00ab", "uminium", "avourites", "sburg", " **\u2013"], ["s", "\u2026**", "...", "...**", " **\u00ab", "\u2026", "\u2026,", "...,"], ["|RF", " **\u00ab", "ifr", "utang", "\u00f1ana", " skinny", "STANCE", " goofy"], ["s", ",", " folks", "teen", " plenty", "\u2013", "\u2014if", "\u2014or"], ["s", " folks", " kids", " skinny", " plenty", " goofy", " even", " incredibly"], [",", "s", " folks", " skinny", " plenty", " kids", "\u2013", " even"], [",", "\u2013", "s", "\u2026", "\u2013and", "\u2014if", "...", " [\u2026]"], ["...", "\u2014if", "\u2026", "\u2014even", "s", "\u2014or", " [\u2026]", "\u2014"], ["<|endoftext|>", "...", "\u2026", "\u2014even", " [\u2026]", "\u2014", "\u2014if", "\u2013"], ["<|endoftext|>", "  \n\n", " \n\n", "   \n\n", "...", "\u2014even", " [\u2026]", "  \n\n\n"], ["\u2014even", " folks", "\u2014or", " spraw", "entanyl", "\u96bb\u662f", "Chuck", " someday"], [" folks", "\u2014even", "<|endoftext|>", " {{--<", " \r\n\r\n", "/if", "\u2014or", " \n\n\n"], ["<|endoftext|>", " \n\n", " \r\n\r\n", " \n\n\n", "  \n\n", " folks", " myriad", " even"], ["  \n\n", " \n\n", "   \n\n", " \r\n\r\n", "  \r\n\r\n", " \n\n\n", "  \n\n\n", "  \n  \n"], ["   \n\n", "  \n\n", " \r\n\r\n", " \n\n", "\u2026**", "...**", "  \r\n\r\n", " folks"], [" \n\n", "   \n\n", "  \n\n", " \r\n\r\n", "\u2026**", " folks", "\u2014even", "  \r\n\r\n"], [" \n\n", "  \n\n", " even", "\n\n", "   \n\n", " \r\n\r\n", " ultimately", " eventually"], [" \n\n", "  \n\n", " even", "   \n\n", " \r\n\r\n", "\n\n", " ultimately", " myriad"], [" \n\n", "  \n\n", "   \n\n", " **", " ...", " \u2026", " \n\n\n", " \r\n\r\n"], [" \n\n", " ...", " even", "...", "  \n\n", "   \n\n", " if", " anything"], [" even", " ...", " **", " everything", " \n\n", " if", "...", " \u2026"], [" even", " if", " dozens", " critical", " everything", " anything", " ultimately", " **"], ["\u2014even", " even", " aggressively", " dozens", " critical", " relentlessly", " massive", "\u2014if"], ["\u2014or", "\u2014even", "\u2014if", " aggressively", " sprawling", " dozens", " critical", " sloppy"], ["\u2014even", "\u2014or", "\u2014if", " dozens", " \u2014", " sloppy", " sprawling", "\u2026*"], ["\u2014or", "\u2014if", "\u2014even", " sloppy", " slow", " unpredictable", " sluggish", "\u62d6\u7d2f"], [" sloppy", "\u2014or", "\u2014even", "\u2014if", " unpredictable", " slow", " hardware", " slower"], [" sloppy", " unpredictable", "\u2014even", " slow", "\u2014or", " multit", " sluggish", " hardware"], [" unpredictable", " slow", " sloppy", " multit", " sluggish", " hardware", " slower", " clutter"], [" slow", " software", " slows", " sluggish", " slowing", " multit", " hardware", " unpredictable"], [" software", " hardware", " unpredictable", " processing", " slow", " multit", " clutter", " scheduling"], [" processing", " software", " scheduling", " hardware", " clutter", " slow", " loading", " unpredictable"], [" processing", " blocking", " loading", " scheduling", " delays", " crashes", " multit", " inefficient"], [" processing", " delays", " unpredictable", " interruptions", " crashes", " slows", " latency", " loading"], [" inadvertently", " improperly", " interruptions", " delays", " unpredictable", " interrupt", " crashes", " blocking"], [" ANY", " anywhere", " inadvertently", " any", " anything", " improperly", " unpredictable", " anytime"], [" ANY", " anywhere", " any", "\u7684\u4efb\u4f55", " anytime", " anything", " inadvertently", " improperly"], [" ANY", "\u7684\u4efb\u4f55", "\u4efb\u4f55\u5f62\u5f0f\u7684", "\u4e00\u4e0d\u5c0f\u5fc3", " improperly", "\u4e0d\u5c0f\u5fc3", "\u9519\u8bef\u6216", " glitches"], [" ANY", "\u4efb\u4f55\u5f62\u5f0f\u7684", "\u7684\u4efb\u4f55", "\u63d0\u4f9b\u4efb\u4f55", "\u6709\u4efb\u4f55", "\u76f4\u63a5\u6216\u95f4\u63a5", " irgende", "\u9519\u8bef\u6216"], [" ANY", "\u6709\u4efb\u4f55", "\u7684\u4efb\u4f55", "\u4efb\u4f55\u5f62\u5f0f\u7684", " irgende", "\u63d0\u4f9b\u4efb\u4f55", " \u043b\u044e\u0431\u043e\u0439", "\u4e0d\u5c0f\u5fc3"], [" ANY", "\u7684\u4efb\u4f55", "\u6709\u4efb\u4f55", " irgende", " users", "\u4efb\u4f55\u5f62\u5f0f\u7684", " \u043b\u044e\u0431\u043e\u0439", "\u63d0\u4f9b\u4efb\u4f55"], [" ANY", "\u7684\u4efb\u4f55", "\u6709\u4efb\u4f55", " irgende", "rames", " any", "\u4efb\u4f55\u5f62\u5f0f\u7684", "\u2014even"], [" ANY", " your", " irgende", "\u7684\u4efb\u4f55", " parsers", "rames", " users", " parsing"], [" your", " parsing", " ANY", " debugging", " users", " someone", " plugins", " async"], [" plugins", " plugin", " Plugin", " Plugins", " users", "_plugin", " your", "-plugin"], [" plugins", " plugin", " Plugin", "_plugin", " Plugins", "plugin", "-plugin", "Plugin"], [" plugins", " plugin", " Plugin", " Plugins", "_plugin", "plugin", "Plugin", "plugins"], [" plugins", " plugin", " Plugin", " Plugins", "_plugin", "Plugin", "plugin", "plugins"], [" plugins", " plugin", " Plugins", "plugins", " Plugin", "/plugins", "_plugins", ".plugins"], [" plugins", " plugin", "plugins", " Plugins", " Plugin", "/plugins", "_plugins", "_plugin"], [" plugins", " plugin", "plugins", " Plugins", " Plugin", "_plugins", " your", "/plugins"], [" plugins", " a", " plugin", " your", " scripts", " an", " Plugins", "plugins"]], "p": [[0.6201, 0.1221, 0.1221, 0.0654, 0.0654, 0.0008, 0.0007, 0.0004], [0.8694, 0.0218, 0.0066, 0.0038, 0.0029, 0.0023, 0.0013, 0.0011], [0.4343, 0.4343, 0.0755, 0.0357, 0.008, 0.0038, 0.0015, 0.0015], [0.0227, 0.0107, 0.0101, 0.0078, 0.0065, 0.0061, 0.0054, 0.0054], [0.9763, 0.0007, 0.0007, 0.0004, 0.0003, 0.0003, 0.0003, 0.0002], [0.5903, 0.0148, 0.009, 0.0074, 0.0058, 0.0054, 0.0045, 0.004], [0.4148, 0.1188, 0.1116, 0.1116, 0.0282, 0.0265, 0.0151, 0.0142], [0.2019, 0.1674, 0.0791, 0.0655, 0.033, 0.0273, 0.0176, 0.0166], [0.3001, 0.2648, 0.2337, 0.0316, 0.0246, 0.0149, 0.0132, 0.0109], [0.1545, 0.0367, 0.0367, 0.0209, 0.0163, 0.0144, 0.0119, 0.0112], [0.2921, 0.1772, 0.1218, 0.0948, 0.0694, 0.0612, 0.0255, 0.0155], [0.0364, 0.0098, 0.0086, 0.0072, 0.0059, 0.0046, 0.0041, 0.0038], [0.0412, 0.0172, 0.0142, 0.0134, 0.0111, 0.0076, 0.0067, 0.0063], [0.0033, 0.0029, 0.0027, 0.0027, 0.0026, 0.0021, 0.0016, 0.0014], [0.0114, 0.0074, 0.0051, 0.0037, 0.0035, 0.0031, 0.0019, 0.0018], [0.0306, 0.0145, 0.0093, 0.0088, 0.0077, 0.0047, 0.0039, 0.0034], [0.0459, 0.0231, 0.0102, 0.007, 0.0055, 0.0055, 0.0045, 0.0035], [0.0848, 0.0275, 0.0214, 0.0147, 0.0101, 0.0089, 0.0089, 0.0065], [0.0485, 0.0333, 0.0276, 0.0276, 0.0168, 0.0148, 0.0102, 0.0084], [0.3185, 0.0315, 0.0231, 0.0191, 0.0149, 0.0102, 0.0102, 0.0096], [0.8604, 0.0123, 0.0058, 0.0054, 0.0024, 0.0015, 0.0015, 0.0014], [0.0039, 0.0027, 0.0015, 0.0013, 0.0011, 0.0011, 0.001, 0.0009], [0.006, 0.0044, 0.0039, 0.0025, 0.0025, 0.0024, 0.0022, 0.0021], [0.0455, 0.0042, 0.0042, 0.004, 0.0027, 0.0024, 0.0024, 0.0023], [0.3847, 0.2644, 0.1173, 0.0459, 0.014, 0.0132, 0.0075, 0.0075], [0.0593, 0.0523, 0.0317, 0.0263, 0.0218, 0.0141, 0.0091, 0.0067], [0.0338, 0.0264, 0.0233, 0.0141, 0.0059, 0.0049, 0.0036, 0.0036], [0.0922, 0.0409, 0.0151, 0.0117, 0.0117, 0.0091, 0.0059, 0.0043], [0.1217, 0.0575, 0.024, 0.0175, 0.012, 0.0094, 0.0061, 0.0047], [0.3477, 0.1362, 0.0471, 0.0268, 0.0237, 0.0196, 0.0153, 0.0153], [0.1458, 0.1002, 0.0608, 0.0537, 0.0325, 0.0154, 0.0112, 0.0093], [0.0992, 0.0726, 0.0162, 0.0134, 0.0134, 0.0126, 0.0111, 0.0105], [0.0505, 0.0106, 0.0088, 0.0082, 0.0064, 0.006, 0.0053, 0.0053], [0.0123, 0.0123, 0.0102, 0.0096, 0.0066, 0.0048, 0.0048, 0.004], [0.0195, 0.0162, 0.0134, 0.0023, 0.0022, 0.0021, 0.0019, 0.0018], [0.0417, 0.0391, 0.0223, 0.0053, 0.0053, 0.0032, 0.0027, 0.0025], [0.0222, 0.0184, 0.0173, 0.0144, 0.0072, 0.0053, 0.005, 0.0047], [0.027, 0.0186, 0.0136, 0.012, 0.0093, 0.0082, 0.0073, 0.005], [0.0158, 0.0148, 0.0139, 0.0139, 0.0131, 0.0074, 0.007, 0.007], [0.0208, 0.0196, 0.0162, 0.0135, 0.0119, 0.0092, 0.0082, 0.0077], [0.0674, 0.0281, 0.0281, 0.0206, 0.0193, 0.017, 0.015, 0.0133], [0.0414, 0.0251, 0.0222, 0.0222, 0.0208, 0.0162, 0.0152, 0.0126], [0.0286, 0.0222, 0.0173, 0.0153, 0.0135, 0.0135, 0.0112, 0.0105], [0.054, 0.0155, 0.0137, 0.0137, 0.0128, 0.0113, 0.0094, 0.0088], [0.028, 0.0218, 0.016, 0.015, 0.0132, 0.0132, 0.0124, 0.0117], [0.0385, 0.0385, 0.0193, 0.0142, 0.0117, 0.0117, 0.011, 0.0104], [0.1989, 0.0368, 0.0305, 0.0253, 0.0197, 0.0163, 0.0135, 0.0135], [0.4828, 0.0614, 0.0449, 0.0272, 0.0121, 0.01, 0.0088, 0.0078], [0.1079, 0.0187, 0.0165, 0.0094, 0.0089, 0.0089, 0.0073, 0.0069], [0.1955, 0.0635, 0.0494, 0.0171, 0.0142, 0.0081, 0.0081, 0.0049], [0.3184, 0.071, 0.071, 0.0431, 0.0217, 0.0159, 0.0123, 0.0116], [0.2722, 0.0325, 0.0185, 0.0154, 0.0106, 0.0099, 0.0073, 0.0056], [0.5411, 0.0325, 0.0163, 0.0105, 0.006, 0.0056, 0.0056, 0.0053], [0.274, 0.0447, 0.0136, 0.012, 0.0094, 0.0088, 0.0088, 0.0073], [0.0766, 0.0265, 0.022, 0.0151, 0.0118, 0.0104, 0.0097, 0.0092], [0.4748, 0.2541, 0.0285, 0.0162, 0.0143, 0.0119, 0.0105, 0.0082], [0.5399, 0.289, 0.0645, 0.0185, 0.0185, 0.0112, 0.0077, 0.0068], [0.5618, 0.3007, 0.0592, 0.015, 0.0117, 0.0091, 0.0049, 0.0049], [0.5917, 0.2467, 0.0907, 0.0123, 0.0108, 0.0058, 0.0045, 0.0031], [0.963, 0.0291, 0.0027, 0.0021, 0.0013, 0.0004, 0.0003, 0.0002], [0.9505, 0.0418, 0.0021, 0.0018, 0.0018, 0.0004, 0.0002, 0.0002], [0.9369, 0.0466, 0.0043, 0.0034, 0.002, 0.0009, 0.0008, 0.0007], [0.536, 0.4174, 0.0183, 0.0143, 0.0016, 0.0014, 0.0012, 0.0009]], "ranks": {"Rust": [57405, 136601, 54381, 59442, 24439, 31026, 33770, 46768, 62163, 65395, 19425, 25332, 10044, 16055, 8141, 2530, 6156, 12432, 21802, 15301, 38866, 58891, 37592, 25417, 17432, 17397, 6287, 4986, 2370, 2040, 2760, 3059, 4206, 6224, 6772, 20630, 11630, 10498, 12797, 15307, 17971, 10489, 9287, 16922, 10515, 6924, 7883, 9199, 13076, 8147, 20260, 28385, 21549, 13638, 6224, 4094, 3066, 1677, 968, 297, 287, 189, 148]}}, {"pos": 551, "top": [[".", ",", "\u2013", ";", " \u2013", "\u2026.", ",.", "\u00a0\u00a0"], ["\u2013", ".", ",", "\u2013and", ".\u2013", " \u2013", ";", ",."], [".", ",", "\u2013", "\u2026.", "\u2026..", "\u2026", ".\u2013", ";"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " milfs", " Blowjob", " Guta", " pornstar", "aruhi", "odle"], ["\u7fe1", ".@", "@d", "@a", "\u2026.", "@c", ".cast", "."], ["\u7fe1", ".cast", "\u8d75\u4e3d\u9896", ":href", "\u2026.", " \u200b\u200b", ".ua", ".cfg"], ["beda", "anceled", "splash", "ayar", "cula", "stra", "ceg", "\u0636\u0627"], ["ingos", "beda", "ustralian", "icanos", "sprozess", "\u56e0\u60a8\u7684", "reeze", "\u5a01\u5937"], ["?...", "iewicz", "?\u00bb", "!\u201d.", "?,", "?\u201d.", "!,", " v\u1eb7t"], ["\u6811\u4e00", "\u514b\u96be", "\u4e0d\u5229\u5f71\u54cd", "?,", "\u8ddf\u81ea\u5df1", "!,", "\u4e5f\u6709\u4e9b", "\u4f01\u4e1a\u8981"], ["...", " [\u2026]", "...\"", "?...", "\u2013", ",", "\u2026", "\u00c3"], [" pricey", " v\u1eb7t", "-ish", "<|fim_suffix|>", "ruise", "\u590d\u5236\u94fe\u63a5", "\u0636\u0627", "ujan"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " veggies", " **\u00ab", " v\u1eb7t", " booze", "juana", "ujan", "\u590d\u5236\u94fe\u63a5"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " pricey", " v\u1eb7t", " booze", "juana", "\u6216\u4ee5\u5176\u4ed6\u65b9\u5f0f", " veggies", "\u6c14\u4e86"], [" folks", " pricey", " kids", " goofy", " teens", " savvy", " sorta", " goof"], [" kids", " pricey", " folks", " goofy", " teens", " veggies", " skinny", " savvy"], [" kids", " folks", " teens", " pricey", " goofy", " skinny", " buzz", " teen"], [" kids", " teens", " goofy", " pricey", "\u6216\u591a\u4e2a", " neighborhood", " buzz", " freelancer"], [" teens", " kids", " goofy", "\u6216\u591a\u4e2a", " creepy", " pricey", " buzz", "juana"], ["\u6216\u591a\u4e2a", " teens", " folks", " pricey", " kids", " teen", "\u8ddf\u81ea\u5df1", " buzz"], ["<|endoftext|>", " pricey", " folks", "\u6216\u591a\u4e2a", "<|fim_suffix|>", "\u8ddf\u81ea\u5df1", "...", " teen"], [" pricey", "\u76f8\u5173\u884c\u4e1a", " kids", " teens", "Looper", "<|fim_suffix|>", "\u751a\u81f3\u4f1a", "\u6216\u591a\u4e2a"], [" ``", " ''", " pricey", " folks", " teens", " {{--<", "\u8ddf\u81ea\u5df1", " kids"], [" ''", " ``", " {{--<", " even", " `", " dozens", "\u8ddf\u81ea\u5df1", " &#"], [" \n\n", "\n\n", "&#", "  \n\n", " \r\n\r\n", "\r\n\r\n", "   \n\n", " &#"], [" tech", " hacker", " hackers", " stunt", " worker", " pricey", " glitches", " mish"], [" workers", " tech", " worker", " dozens", " event", " mish", " hacker", " multit"], [" '", "\n\n", " or", " even", " workers", " \n\n", " event", " hit"], [" \n\n", " hacker", " event", " tech", " workers", " glitches", " worker", "\n\n"], [" event", " hacker", " ...", " glitches", " workers", " malware", " tech", " crash"], [" ...", " performance", " dozens", " event", " hacker", " hit", " hits", " fire"], [" ...", " dozens", " hit", " \\\"", " ", " or", " event", " performance"], [" \\\"", " or", " dozens", " ...", " potentially", " hit", " unpredictable", " event"], [" hacker", " glitches", "\u6216\u591a\u4e2a", " unpredictable", " hackers", " glitch", " malware", " tech"], ["...**", "\u2026*", " hacker", "...*", "?...", "\u2026**", "\u6216\u591a\u4e2a", "...</"], ["\u2026*", "...*", "...**", " [...]", " [\u2026]", "...</", " hacker", " ...\""], [" hacker", " sloppy", " glitches", "\u2026*", " buggy", " glitch", " unpredictable", " malware"], [" sloppy", " buggy", " hacker", " glitch", " hobby", " weird", " glitches", "\u2026*"], [" buggy", " sloppy", " glitch", " hacker", " poorly", " weird", " glitches", " unpredictable"], [" buggy", " sloppy", " glitch", " hacker", " poorly", " unpredictable", " weird", " lazy"], [" buggy", " glitch", " software", " hacker", " slow", " sloppy", " lazy", " hobby"], [" software", " buggy", " scripting", " glitch", " programmer", " programmers", " hacker", " plugins"], [" buggy", " glitch", " software", " sloppy", " poorly", " lazy", " malware", " glitches"], [" buggy", " glitch", " poorly", " slow", " sloppy", " malware", " lazy", " glitches"], [" poorly", " buggy", " glitch", " sloppy", " malware", " slow", " glitches", " clumsy"], [" poorly", " buggy", " glitch", " sloppy", " glitches", " unpredictable", " clumsy", " malfunction"], [" poorly", " buggy", " sloppy", " unpredictable", " glitch", " clumsy", " inadvertently", " careless"], [" poorly", " sloppy", " buggy", " unpredictable", " glitch", " clumsy", " glitches", " improperly"], [" poorly", " sloppy", " clumsy", " buggy", " glitch", " rogue", " unpredictable", " newbie"], [" sloppy", " poorly", " glitch", " clumsy", " buggy", "\u9519\u8bef\u6216", " newbie", " glitches"], [" sloppy", "\u4e0d\u5c0f\u5fc3", " glitch", " poorly", " clumsy", " buggy", " glitches", " malfunction"], [" sloppy", " poorly", " buggy", " clumsy", " glitch", "\u52a3\u8d28", "\u4e0d\u5c0f\u5fc3", "\u62d9"], [" poorly", " sloppy", " buggy", " clumsy", "\u52a3\u8d28", "\u62d9", "\u7b28", " glitch"], [" poorly", " sloppy", " buggy", "\u52a3\u8d28", " clumsy", "\u62d9", " crappy", "\u611a\u8822"], [" buggy", " sloppy", " poorly", " novice", " clumsy", "\u52a3\u8d28", "\u62d9", " newbie"], [" poorly", " buggy", " plugin", " sloppy", " user", " plugins", "\u52a3\u8d28", " novice"], [" plugin", " plugins", " poorly", " buggy", " user", " sloppy", "plugin", " scripting"], [" plugin", " poorly", " buggy", " plugins", " user", " sloppy", "plugin", " badly"], [" plugin", " poorly", " buggy", " user", " plugins", " badly", " sloppy", "plugin"], [" plugin", " plugins", "plugin", " Plugin", " user", "_plugin", "\u63d2\u4ef6", "/plugin"], [" plugin", " user", " plugins", "plugin", " Plugin", "(plugin", "_plugin", "Plugin"], [" plugin", " user", " plugins", "plugin", " Plugin", "(plugin", " script", " poorly"], [" plugin", " user", " plugins", " script", "plugin", " poorly", " slow", " bad"]], "p": [[0.811, 0.181, 0.0043, 0.0014, 0.0005, 0.0004, 0.0003, 0.0003], [0.5216, 0.1693, 0.1319, 0.0202, 0.0168, 0.0131, 0.0108, 0.0042], [0.6612, 0.2147, 0.079, 0.0256, 0.0057, 0.0045, 0.0031, 0.0012], [0.0115, 0.0054, 0.0045, 0.0024, 0.002, 0.0018, 0.0013, 0.0011], [0.0135, 0.0068, 0.0044, 0.0032, 0.0028, 0.0023, 0.0017, 0.0017], [0.0094, 0.0021, 0.0016, 0.0016, 0.0014, 0.0014, 0.0012, 0.0012], [0.0182, 0.0076, 0.0038, 0.0036, 0.0022, 0.0019, 0.0016, 0.0014], [0.0046, 0.003, 0.0017, 0.0014, 0.0013, 0.0013, 0.0012, 0.0011], [0.0059, 0.0043, 0.0038, 0.0038, 0.003, 0.0028, 0.0022, 0.0022], [0.0014, 0.0014, 0.001, 0.0009, 0.0009, 0.0009, 0.0009, 0.0008], [0.3323, 0.0373, 0.0187, 0.0129, 0.0089, 0.0083, 0.0069, 0.0065], [0.0018, 0.0016, 0.0015, 0.0013, 0.0013, 0.0013, 0.0013, 0.0011], [0.0023, 0.0016, 0.0016, 0.0013, 0.0012, 0.0012, 0.0011, 0.001], [0.0026, 0.0012, 0.0012, 0.0008, 0.0007, 0.0007, 0.0007, 0.0007], [0.0125, 0.0103, 0.0055, 0.0049, 0.0034, 0.003, 0.003, 0.0028], [0.0132, 0.0124, 0.0097, 0.0062, 0.0043, 0.0031, 0.0029, 0.0023], [0.0211, 0.0186, 0.0088, 0.0073, 0.0047, 0.0037, 0.0037, 0.0032], [0.0092, 0.0072, 0.0028, 0.0025, 0.0022, 0.0019, 0.0018, 0.0018], [0.0138, 0.0078, 0.0033, 0.0033, 0.0024, 0.002, 0.0019, 0.0019], [0.0123, 0.0075, 0.0075, 0.0066, 0.0055, 0.0051, 0.0045, 0.0035], [0.0093, 0.0041, 0.0036, 0.003, 0.0028, 0.0027, 0.0025, 0.0022], [0.0039, 0.0016, 0.0016, 0.0015, 0.0013, 0.0013, 0.0013, 0.0013], [0.009, 0.008, 0.0035, 0.0023, 0.0018, 0.0016, 0.0015, 0.0015], [0.004, 0.0028, 0.0024, 0.0019, 0.0017, 0.0017, 0.0013, 0.0011], [0.0305, 0.012, 0.0039, 0.0039, 0.0032, 0.003, 0.0025, 0.0024], [0.0127, 0.0093, 0.0047, 0.0044, 0.0044, 0.0041, 0.0039, 0.0034], [0.0142, 0.0104, 0.0098, 0.0092, 0.0086, 0.0056, 0.0056, 0.0041], [0.0128, 0.012, 0.0113, 0.0088, 0.0083, 0.0078, 0.0078, 0.006], [0.0295, 0.0115, 0.0108, 0.0102, 0.0096, 0.009, 0.0084, 0.0084], [0.0099, 0.0099, 0.0093, 0.0072, 0.0068, 0.006, 0.006, 0.0056], [0.0137, 0.01, 0.0094, 0.0094, 0.0088, 0.0083, 0.0069, 0.0065], [0.0283, 0.0134, 0.0126, 0.0104, 0.0104, 0.0092, 0.0076, 0.0072], [0.0376, 0.0189, 0.0157, 0.0147, 0.0074, 0.0061, 0.0058, 0.0054], [0.0433, 0.0247, 0.015, 0.015, 0.0132, 0.0097, 0.0091, 0.0091], [0.0567, 0.05, 0.0323, 0.0268, 0.0208, 0.0196, 0.0184, 0.0152], [0.3501, 0.1068, 0.0474, 0.0474, 0.0347, 0.0326, 0.0326, 0.0238], [0.0663, 0.0294, 0.0276, 0.0244, 0.0215, 0.0215, 0.009, 0.0084], [0.0643, 0.0344, 0.0323, 0.0252, 0.0127, 0.0127, 0.0119, 0.0099], [0.063, 0.0556, 0.0433, 0.0337, 0.0263, 0.0218, 0.0192, 0.0192], [0.0516, 0.0402, 0.0377, 0.0229, 0.0215, 0.0167, 0.0139, 0.0122], [0.0682, 0.0531, 0.044, 0.0414, 0.0303, 0.0236, 0.0236, 0.0184], [0.1014, 0.0742, 0.0543, 0.0423, 0.0241, 0.0226, 0.0226, 0.02], [0.1007, 0.0539, 0.042, 0.0348, 0.0271, 0.0255, 0.0198, 0.0186], [0.0937, 0.0471, 0.0416, 0.0345, 0.0252, 0.0252, 0.0223, 0.0196], [0.0867, 0.0765, 0.0385, 0.034, 0.0264, 0.0233, 0.0193, 0.0182], [0.0909, 0.0909, 0.0552, 0.0335, 0.0261, 0.023, 0.0203, 0.0203], [0.1149, 0.1014, 0.0742, 0.051, 0.029, 0.029, 0.0256, 0.0241], [0.2047, 0.0853, 0.0486, 0.0379, 0.0314, 0.0245, 0.019, 0.0168], [0.2015, 0.1078, 0.0397, 0.0373, 0.0226, 0.0212, 0.0165, 0.0137], [0.2068, 0.0977, 0.0557, 0.0433, 0.0298, 0.0205, 0.0205, 0.0159], [0.1096, 0.0457, 0.0379, 0.0314, 0.0295, 0.0244, 0.0131, 0.0108], [0.1711, 0.151, 0.0808, 0.0217, 0.0169, 0.0149, 0.0124, 0.0097], [0.2063, 0.1606, 0.1104, 0.0382, 0.0337, 0.0217, 0.0124, 0.0116], [0.3224, 0.0815, 0.0596, 0.0464, 0.034, 0.0234, 0.011, 0.0086], [0.4137, 0.1185, 0.1046, 0.0436, 0.0282, 0.0282, 0.0206, 0.0182], [0.2432, 0.2432, 0.1302, 0.0615, 0.0479, 0.0213, 0.02, 0.02], [0.5748, 0.0687, 0.0606, 0.0472, 0.0367, 0.0286, 0.0253, 0.0197], [0.3571, 0.3152, 0.0797, 0.0483, 0.0332, 0.0201, 0.0122, 0.0108], [0.3356, 0.2962, 0.1089, 0.0749, 0.0401, 0.0167, 0.0115, 0.0089], [0.9479, 0.0368, 0.0082, 0.0021, 0.0007, 0.0006, 0.0005, 0.0005], [0.9534, 0.0198, 0.0175, 0.0044, 0.0016, 0.0004, 0.0004, 0.0003], [0.9457, 0.0324, 0.0119, 0.0027, 0.0015, 0.0006, 0.0005, 0.0005], [0.8425, 0.1292, 0.01, 0.0037, 0.0021, 0.0017, 0.0013, 0.0007]], "ranks": {"Rust": [45338, 102867, 77608, 125437, 7501, 36057, 71549, 67635, 70192, 46609, 6637, 27558, 35485, 38968, 20004, 7597, 10400, 35410, 90244, 36183, 76168, 55383, 22938, 12338, 9268, 9280, 4193, 4180, 4579, 5927, 5527, 9185, 8140, 16840, 9213, 26114, 19728, 12649, 11972, 17927, 19107, 15446, 14139, 13038, 9152, 6461, 7238, 7799, 6436, 6538, 28191, 13430, 12541, 6078, 2066, 1537, 1035, 769, 632, 374, 281, 299, 301]}}, {"pos": 552, "top": [[" \u2013", "\u2013", ".", ",", "\u2013and", " ", "..", ",."], [" \u2013", "\u2013", "\u2013and", ",", ".", "..", ",.", ":\""], ["\u2013", " \u2013", ",", "\u2013and", ".", "\u2026..", "..\"", ".."], ["\u6700\u65b0\u53d1\u5e03", "*\u201c.", "~\":\"", " *\u2013", " Blowjob", " Plugin", " pornstar", " DSL"], [",", " (@", " *@", " @", "..\"", "@", " ", ":\""], [" \u200b\u200b", ",", ":@", "..\"", "\u2013", "\u2013and", "..", "@g"], ["..\"", " ..", " \u00b7", "..", "!\"", ":\"", " *\u201c", " *@"], ["..\"", "..", " *@", " ..", "!\"", ":\"", "\u6700\u65b0\u53d1\u5e03", " *\""], ["..\"", ",", "!\"", "..", ":\"", ".", " \u200b\u200b", " .."], [",", "..\"", "\u2013", "!\"", "-\"", "\u2013and", "..", ":\""], [",", "\u2013", "..\"", "..", " \u2013", ".", " [\u2026]", "!\""], [" *\u201c", " *\u2013", " *", "..\"", " *\"", " *@", " showcase", " ~~"], [" *\u2013", " showcase", " toolkit", " pipeline", "..\"", "-style", " VPN", " showcased"], ["\u2013", "\u2013and", " showcase", "-style", ",", " *\u2013", "'s", " \u2013"], [" showcase", "'s", " \u2013", "-style", " featured", ",", " showcased", "\u2013"], [" showcase", " centerpiece", " showcased", " featured", " specialty", " theater", " savvy", " tech"], [" showcase", " featured", " tech", "-esque", " showcased", "'s", " \"", " specialty"], [" *\u2013", "\u2013", " showcase", "\u2013and", " \u2013", " tech", " featured", "-esque"], [" *\u2013", "-esque", " \u2013", "\u2013", "\u2013and", " tech", " showcase", " savvy"], ["\u2013", " \u2013", "\u2013and", " *\u2013", " &,", "\u2014\"", "\u2014or", "\u305d\u3046\u3057\u305f"], ["<|endoftext|>", "\u2013", "&", "\u2013and", "\u2014\"", " \u2013", " &,", "@"], [" *&", " *\u2013", "\ufffd\ufffd", "/plugin", " pipeline", " gadget", "\u4fdd\u9a7e", " *@"], [" *&", "\u305d\u3046\u3057\u305f", " *@", " ~~", " {{--<", " *\u2013", " outright", " `'"], [" --", " `", " '", " &", " aggressively", " {{--<", " &#", " ,"], [" --", " &#", " \n\n", "&#", " _", " ^", " \r\n\r\n", "\n\n"], [" software", " toolkit", " gadget", " firmware", " hacker", " tech", "/plugin", " plugin"], [" software", " hacker", " gadget", " firmware", " toolkit", " __", " tech", " gaming"], [" '", " ,", " --", "\n\n", " __", " _", " software", " ~"], ["\n\n", " \n\n", " __", " software", " ...\"", " hacker", " ...", " tech"], [" ...", " ...\"", " __", " \u2026", " ......", " ..", " ____", " ___"], [" ...\"", " ...", " ..", " ......", " __", " \u2026", " ??", " software"], [" ...", " ...\"", " ..", " \u2026", " ......", " __", " *", " ??"], [" ...", " ...\"", " \u2026", " ..", " '", " *", " ,", " or"], [" software", " aggressively", " tech", " hacker", " hardware", " malware", " power", " rogue"], [" aggressively", " software", " hardware", " hacker", " tech", " spam", " rogue", " --"], [" \u2014", " ...\"", " \"", "\u2026*", " \u2026", " software", " [...]", " *\""], [" slow", " buggy", " hardware", " delays", " software", " unpredictable", " crash", " slower"], [" slow", " buggy", " poorly", " software", " hardware", " slower", " unpredictable", " \""], [" slow", " buggy", " poorly", " slower", " delays", " hardware", " \"", " unpredictable"], [" slow", " slower", " delays", " delay", " unpredictable", " delayed", " slows", " buggy"], [" slow", " slower", " delays", " delay", " slowdown", " slows", " software", " delayed"], [" slow", " delays", " software", " processing", " slower", " delay", " slowdown", " slows"], [" slow", " delays", " processing", " slower", " slows", " delay", " software", " slowdown"], [" delays", " slow", " delay", " slower", " processing", " slows", " slowdown", " slowing"], [" delays", " delay", " slow", " slows", " slower", " slowing", " slowdown", " processing"], [" delays", " delay", " slow", " slows", " delayed", " slower", " slowed", " unpredictable"], [" delays", " delay", " slow", " slows", " inadvertently", " unpredictable", " slower", " delayed"], [" delays", " delay", " slow", " slows", " delayed", " slower", " inadvertently", " delaying"], [" delays", " delay", " slow", " slows", " delayed", " delaying", " slower", " sluggish"], [" delay", " delays", " slow", " slows", " glitches", " sluggish", " glitch", " slowdown"], [" glitches", " glitch", " malfunction", " delay", " delays", " slows", "\u62d6\u5ef6", " sluggish"], [" CPU", " slow", " processing", " slows", " delay", " delays", " asynchronously", "CPU"], [" slow", " slows", " CPU", " delays", " processing", " delay", "CPU", "-delay"], [" CPU", " processing", "CPU", " slows", " executes", " cpu", " processor", " delays"], [" CPU", " executes", " slows", "CPU", " processing", " processor", " performs", " interacts"], [" CPU", " executes", " performs", "CPU", " slows", " querying", " interacts", " executing"], [" slows", " executes", " pauses", " pause", " freezes", " paused", " performs", " CPU"], [" executes", " performs", " pauses", " freezes", " slows", " CPU", " execution", " pause"], [" blocking", "\u963b\u585e", "blocking", "-blocking", " blocked", "Blocking", " Blocking", " blocker"], [" blocking", " performs", " blocks", "\u963b\u585e", " executes", " blocked", " freezes", " block"], [" blocking", " performs", " executes", " freezes", " blocks", " pauses", " touches", " queries"], [" does", " freezes", " executes", " performs", " blocks", " touches", " pauses", " queries"], [" blocks", " does", " freezes", " executes", " pauses", " leaks", " performs", " accesses"]], "p": [[0.7795, 0.1055, 0.053, 0.0221, 0.0087, 0.0072, 0.0023, 0.0012], [0.4663, 0.3205, 0.104, 0.0247, 0.0132, 0.0049, 0.004, 0.0026], [0.6128, 0.1549, 0.094, 0.0646, 0.021, 0.0135, 0.0077, 0.0077], [0.0268, 0.0056, 0.003, 0.003, 0.0023, 0.0016, 0.0014, 0.0014], [0.0768, 0.0722, 0.0722, 0.0301, 0.0234, 0.0194, 0.0194, 0.0142], [0.0465, 0.0234, 0.0104, 0.0067, 0.0063, 0.0063, 0.0059, 0.0059], [0.2361, 0.1264, 0.0561, 0.0465, 0.0385, 0.0249, 0.0249, 0.0194], [0.5555, 0.0355, 0.0277, 0.0277, 0.0148, 0.0148, 0.0115, 0.0102], [0.5289, 0.0632, 0.0338, 0.0318, 0.0218, 0.0141, 0.0141, 0.0132], [0.6191, 0.0787, 0.0349, 0.0272, 0.0199, 0.0176, 0.0146, 0.0107], [0.551, 0.0618, 0.0546, 0.0513, 0.0331, 0.0311, 0.0214, 0.0189], [0.0637, 0.0528, 0.0341, 0.032, 0.032, 0.0086, 0.0071, 0.0071], [0.0331, 0.0101, 0.0084, 0.0069, 0.0069, 0.0054, 0.0037, 0.0035], [0.0256, 0.0187, 0.0146, 0.0128, 0.0107, 0.01, 0.01, 0.0078], [0.0252, 0.0237, 0.0184, 0.0144, 0.0144, 0.0119, 0.0082, 0.0072], [0.038, 0.0179, 0.0109, 0.0102, 0.0066, 0.0066, 0.0066, 0.0062], [0.034, 0.0142, 0.0104, 0.0092, 0.0086, 0.0086, 0.0076, 0.0067], [0.0237, 0.0197, 0.0153, 0.0153, 0.0144, 0.0077, 0.006, 0.0056], [0.0164, 0.01, 0.0088, 0.0073, 0.0073, 0.0044, 0.0044, 0.0044], [0.0414, 0.0208, 0.0184, 0.0111, 0.0081, 0.0063, 0.0063, 0.0056], [0.3448, 0.0341, 0.0092, 0.0076, 0.0076, 0.0036, 0.0032, 0.0032], [0.0102, 0.0043, 0.004, 0.0024, 0.002, 0.0019, 0.0017, 0.0016], [0.0056, 0.0028, 0.0023, 0.0023, 0.0022, 0.0019, 0.0019, 0.0018], [0.0087, 0.0039, 0.0036, 0.003, 0.0028, 0.0027, 0.0027, 0.0027], [0.0108, 0.0095, 0.0079, 0.0062, 0.0058, 0.0045, 0.004, 0.0037], [0.017, 0.0141, 0.0141, 0.0091, 0.0075, 0.0071, 0.0059, 0.0055], [0.024, 0.0088, 0.0078, 0.0069, 0.0065, 0.0061, 0.0057, 0.0054], [0.0349, 0.024, 0.0176, 0.0146, 0.0128, 0.0121, 0.0078, 0.0065], [0.2362, 0.0465, 0.0194, 0.0171, 0.0171, 0.0092, 0.0076, 0.0056], [0.1727, 0.1345, 0.0816, 0.0234, 0.022, 0.0206, 0.0142, 0.0118], [0.2314, 0.2042, 0.0751, 0.0215, 0.0215, 0.0102, 0.0058, 0.0051], [0.2446, 0.0701, 0.0513, 0.0399, 0.0095, 0.0095, 0.0061, 0.0042], [0.0577, 0.0397, 0.035, 0.0309, 0.0121, 0.01, 0.01, 0.0094], [0.0113, 0.01, 0.0078, 0.0069, 0.0053, 0.005, 0.005, 0.0044], [0.0184, 0.0153, 0.0127, 0.0112, 0.0082, 0.0077, 0.0068, 0.0064], [0.0379, 0.0261, 0.0203, 0.0191, 0.0179, 0.0131, 0.0109, 0.009], [0.0155, 0.0137, 0.0107, 0.0107, 0.01, 0.0094, 0.0088, 0.0083], [0.0152, 0.0143, 0.0105, 0.0098, 0.0087, 0.0087, 0.0081, 0.0076], [0.024, 0.0212, 0.0165, 0.0146, 0.0129, 0.0113, 0.0107, 0.0107], [0.0826, 0.039, 0.0252, 0.0196, 0.0163, 0.0135, 0.0127, 0.0119], [0.2037, 0.0548, 0.0515, 0.0484, 0.0276, 0.0259, 0.0202, 0.0167], [0.0996, 0.0604, 0.0442, 0.0415, 0.039, 0.0323, 0.0222, 0.0196], [0.0672, 0.0593, 0.0434, 0.0338, 0.0263, 0.0263, 0.0232, 0.0205], [0.157, 0.1301, 0.084, 0.045, 0.035, 0.035, 0.0273, 0.0256], [0.2055, 0.11, 0.0912, 0.0431, 0.0335, 0.0278, 0.0245, 0.0203], [0.1555, 0.0832, 0.0735, 0.0369, 0.0224, 0.0198, 0.0186, 0.0174], [0.155, 0.083, 0.0536, 0.0417, 0.0253, 0.0253, 0.0185, 0.0163], [0.2041, 0.1238, 0.1093, 0.0623, 0.026, 0.0229, 0.0168, 0.0157], [0.175, 0.1363, 0.113, 0.0416, 0.0304, 0.0173, 0.0163, 0.0153], [0.1183, 0.0865, 0.0813, 0.0717, 0.0361, 0.0339, 0.0339, 0.0181], [0.0716, 0.0672, 0.0318, 0.0247, 0.0232, 0.0181, 0.0132, 0.0132], [0.0928, 0.0497, 0.0497, 0.0363, 0.0341, 0.0301, 0.025, 0.0142], [0.1423, 0.1256, 0.1256, 0.0434, 0.0408, 0.036, 0.017, 0.015], [0.2966, 0.0622, 0.0515, 0.0313, 0.0276, 0.0276, 0.0243, 0.0148], [0.2791, 0.0585, 0.0516, 0.0456, 0.0378, 0.0244, 0.0229, 0.0178], [0.1803, 0.1591, 0.0517, 0.0294, 0.0229, 0.0158, 0.0131, 0.0123], [0.0809, 0.0714, 0.0714, 0.0522, 0.0407, 0.0337, 0.0337, 0.0205], [0.331, 0.0738, 0.0508, 0.0289, 0.024, 0.0199, 0.0187, 0.0175], [0.7223, 0.0672, 0.036, 0.0317, 0.028, 0.0247, 0.0192, 0.017], [0.6021, 0.0719, 0.056, 0.034, 0.034, 0.0265, 0.0182, 0.0182], [0.1826, 0.1422, 0.1107, 0.0715, 0.0407, 0.0218, 0.0192, 0.016], [0.2643, 0.1035, 0.0972, 0.0668, 0.0554, 0.0381, 0.0336, 0.0246], [0.5775, 0.0537, 0.0474, 0.0474, 0.0306, 0.0154, 0.0154, 0.0154]], "ranks": {"Rust": [59450, 101725, 90874, 125367, 27797, 22129, 48217, 53311, 60229, 55657, 37404, 78957, 84722, 48574, 46422, 35692, 47653, 99993, 126683, 100094, 119531, 148440, 115269, 74694, 68840, 96250, 41165, 17016, 24793, 20596, 17292, 14691, 11115, 12207, 7525, 12742, 6152, 5112, 4929, 6086, 5762, 4540, 6631, 7910, 6137, 4103, 3364, 4040, 2404, 2926, 5747, 7772, 7165, 8020, 6447, 6816, 3045, 4010, 2781, 1738, 1021, 1278, 1787]}}, {"pos": 553, "top": [[",", ".", "\u2013", "\u2026.", "s", " \u2013", "\u00a0", ";"], ["\u2013", "**\u2013", ",", "s", " **\u2013", "**!", ".", " \u2013"], [",", ".", "\u2013", "\u2026.", "\u2026", "\u2026\"", "\u2026,", "**\u2013"], ["\u52a0\u62ff\u5927", " **:", "---</", " milfs", "aufen", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **:**", "enticate"], ["s", " \n\n\n\n", " \n\n", " $$", " \".", " \",", " \u201c.", " $."], [" \n\n\n\n", " \",", " \".", "!.", "\u2026.", "**!", " \n\n", "!\u201d."], [" \n\n", " \n\n\n\n", " $.", "\u2019.", "<|im_end|>", "\u201d.", "  \n\n", "s"], [" \n\n", " \n\n\n\n", "**!", "($.", "\u201d.**", "<|object_ref_end|>", " **:", "sburg"], [" \n\n", "!\u201d.", " \n\n\n\n", "!.", "!\".", " \n\n\n\n\n", "($.", "   \n\n"], ["!,", "$\"", "$\",", "($.", "\u4e0d\u53ef\u601d\u8bae", "\u76f8\u8f85\u76f8\u6210", " $\"", "!\","], [" \n\n", "\u00a0", " \n\n\n\n", "\u2026\"", "$\"", "s", " \n\n\n\n\n", "$\","], ["enticate", " Shemale", "sache", " \u041f\u043e\u043f\u0440\u043e", "DMETHOD", " **\u201e", " **'", " \"**"], [" Shemale", " **\u201e", " **:", "\u52a0\u62ff\u5927", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "enticate", " \"**", "sache"], [" Shemale", "\u52a0\u62ff\u5927", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "DMETHOD", "\u6c14\u4e86", "enticate", "stance", "\u4e0d\u4e0b\u53bb"], ["\u4e0d\u4e0b\u53bb", "\u51fa\u5f69", "\u763e", "stance", "\u751a\u81f3\u4f1a", "ammed", "\u4e0d\u4e86\u4e86", "\u5c14\u987f"], ["\u4e0d\u4e0b\u53bb", "\u8fd8\u4f1a\u51fa\u73b0", "\u4e0d\u4e86\u4e86", " anyways", "ammed", "\u0427\u0435", "\u582a\u6bd4", "\u751a\u81f3\u4f1a"], ["\u4e0d\u4e0b\u53bb", "\u4e0d\u4e86\u4e86", "fully", "\u4e0d\u53ef\u601d\u8bae", "\u3063\u304d\u308a", "stance", " \"", "\u51fa\u5f69"], ["\u4e0d\u4e0b\u53bb", "\u4e0d\u4e86\u4e86", "\u653e\u77e2", "stance", "\u51fa\u5f69", "\u52b2\u513f", "\u4e0d\u53ef\u601d\u8bae", "\u6c14\u4e86"], ["\u4e0d\u4e0b\u53bb", "\u653e\u77e2", "\u3063\u304d\u308a", "stance", "ildo", "\u5c14\u591a", "/do", "\u4e0d\u4e86\u4e86"], ["\u2014\"", "\u2019t", "$\",", " \u201c\u2026", "\u2014or", "\u2013", "\u5c14\u591a", "/do"], [" \n\n", "  \n\n", " \r\n\r\n", "\u2014\"", "\n\n", "<|endoftext|>", "\r\n\r\n", "<|im_end|>"], ["\u4e0d\u4e0b\u53bb", " \"`", "\u3063\u304d\u308a", "/do", "\u5c14\u591a", "chy", "uzzer", "-done"], [" \"`", " ''", " ``", "fully", " \u2019", " merely", "uzzer", " \r\n\r\n"], [" \"", " ''", " \"`", " merely", "fully", " ,", " \u2019", " \u201c"], [" \n\n", " \r\n\r\n", "\r\n\r\n", "\n\n", "  \n\n", " \r\n \r\n", " \"`", " \n\n\n"], [" \r\n\r\n", "\u4e0d\u4e0b\u53bb", " \"`", " \n\n", "\r\n\r\n", "\r\n\n", " \\<^", " enough"], [" enough", " ``", " \"`", " multit", " \\\"", "\u4e0d\u4e0b\u53bb", " ''", "\r\n\r\n"], ["\n\n", " \n\n", "\r\n\r\n", " ''", " <", " ``", " ,", " enough"], [" \n\n", "\n\n", " labor", " enough", " work", " \\\"", " anything", " even"], [" \\\"", " labor", " work", " anything", " enough", " something", " **,", " **"], [" \\\"", " enough", " work", " labor", " anything", " something", " or", " even"], [" \\\"", " work", " something", " even", " or", " many", " enough", " anything"], [" \\\"", " something", " anything", " or", " work", " even", " enough", " labor"], [" anything", " something", " labor", " sloppy", " glitches", " weird", " dozens", " multit"], ["anything", " sloppy", " multit", " labor", " hacking", " glitches", " anything", " brute"], [" multit", "\u2026*", " \u201c", "anything", " anything", "\u2026\"", " sloppy", " glitches"], [" slow", " anything", " slower", " sloppy", " clumsy", "anything", " inefficient", " something"], [" anything", " sloppy", " slow", " inefficient", " poorly", " clumsy", " slower", " something"], [" inefficient", " labor", " slow", " sloppy", " anything", " tedious", " lazy", " workload"], [" inefficient", " labor", " cleanup", " slow", " anything", " tasks", " weird", " sloppy"], [" slow", " cleanup", " tasks", " computational", " CPU", " inefficient", " lazy", " workload"], [" tasks", " cleanup", " computational", " processing", " inefficient", " workload", " slow", " CPU"], [" tasks", " cleanup", " processing", " computational", " inefficient", " workload", " CPU", " physics"], [" tasks", " processing", " computational", " inefficient", " chores", " cleanup", " computations", " calculations"], [" tasks", " inefficient", " processing", " cleanup", " computational", " chores", " workflows", " slow"], [" inefficient", " tasks", " cleanup", " processing", " CPU", " computational", " chores", " unintention"], [" anything", " anywhere", "anything", " ANY", " inefficient", "\u7684\u4efb\u4f55", " tasks", " processing"], [" anything", " ANY", "anything", " anywhere", "\u54ea\u6015", "\u54ea\u6015\u662f", " slightest", "\u7684\u4efb\u4f55"], ["anything", " anything", " ANY", " anywhere", "\u54ea\u6015\u662f", "\u54ea\u6015", " slightest", "\u6216\u5c11"], ["anything", " ANY", " anything", "\u4efb\u4f55\u5f62\u5f0f\u7684", " slightest", "\u54ea\u6015", "\u54ea\u6015\u662f", "\u7684\u4efb\u4f55"], ["anything", " anything", " ANY", "\u4efb\u4f55\u5f62\u5f0f\u7684", "\u7684\u4efb\u4f55", "\u6709\u4efb\u4f55", "\u4efb\u4f55", " Anything"], ["anything", " anything", " ANY", " Anything", "\u4efb\u4f55\u5f62\u5f0f\u7684", "Anything", "\u7684\u4efb\u4f55", "\u6709\u4efb\u4f55"], [" anything", "anything", " ANY", " Anything", "Anything", "\u4efb\u4f55\u5f62\u5f0f\u7684", "\u7684\u4efb\u4f55", "\u6709\u4efb\u4f55"], [" anything", "anything", " ANY", " Anything", "Anything", "\u6709\u4efb\u4f55", " CPU", "\u4efb\u4f55\u5f62\u5f0f\u7684"], [" anything", "anything", " ANY", " CPU", " Anything", "Anything", "\u54ea\u6015", "\u2014even"], [" anything", "anything", " ANY", "\u54ea\u6015", " CPU", " Anything", "Anything", "\u2014even"], [" anything", "anything", " ANY", " garbage", " CPU", "\u54ea\u6015", "\u4efb\u4f55\u5f62\u5f0f\u7684", " heavy"], [" ANY", " anything", "anything", " CPU", " heavy", " IO", "\u54ea\u6015", " garbage"], [" ANY", " anything", " CPU", " IO", " heavy", "anything", " GC", " any"], [" heavy", " CPU", " ANY", " synchronous", " IO", " anything", " garbage", " GC"], [" synchronous", " CPU", " heavy", " IO", " sync", " ANY", " *", " synchronization"], [" synchronous", " heavy", " CPU", " IO", " *", " sync", " I", " GC"], [" synchronous", " heavy", " I", " IO", " garbage", " async", " CPU", " *"]], "p": [[0.6629, 0.2763, 0.0374, 0.0083, 0.0054, 0.0039, 0.0021, 0.0007], [0.1562, 0.1562, 0.0738, 0.0651, 0.0327, 0.0211, 0.0165, 0.0165], [0.297, 0.2621, 0.1092, 0.0964, 0.0751, 0.0455, 0.0455, 0.0139], [0.0564, 0.0152, 0.0134, 0.0118, 0.0098, 0.0098, 0.0059, 0.0059], [0.1132, 0.1063, 0.0645, 0.0367, 0.0367, 0.0253, 0.0197, 0.0174], [0.1002, 0.0444, 0.0224, 0.021, 0.0154, 0.0154, 0.0144, 0.0136], [0.8256, 0.032, 0.0056, 0.0052, 0.0046, 0.0046, 0.0043, 0.0036], [0.1477, 0.0397, 0.0188, 0.0129, 0.0094, 0.0089, 0.0089, 0.0083], [0.5637, 0.0318, 0.0264, 0.0091, 0.0091, 0.0086, 0.0071, 0.0067], [0.0043, 0.0043, 0.0043, 0.0033, 0.0031, 0.0026, 0.0026, 0.0023], [0.0522, 0.0316, 0.0246, 0.0217, 0.0192, 0.0169, 0.0132, 0.0109], [0.0046, 0.0043, 0.0043, 0.0033, 0.003, 0.0028, 0.0028, 0.0028], [0.0139, 0.0131, 0.0102, 0.0062, 0.0062, 0.0037, 0.0033, 0.002], [0.0069, 0.0054, 0.0039, 0.0017, 0.0017, 0.0015, 0.0014, 0.0014], [0.0042, 0.0022, 0.0021, 0.002, 0.0018, 0.0015, 0.0014, 0.0014], [0.0066, 0.0023, 0.0021, 0.0018, 0.0018, 0.0017, 0.0013, 0.0013], [0.0083, 0.0039, 0.0037, 0.0027, 0.0025, 0.0024, 0.0024, 0.002], [0.0096, 0.0052, 0.0038, 0.0031, 0.0026, 0.0024, 0.0023, 0.0019], [0.0152, 0.0053, 0.0041, 0.0038, 0.0038, 0.0028, 0.0028, 0.0025], [0.0077, 0.006, 0.005, 0.0044, 0.0034, 0.003, 0.0027, 0.0025], [0.1238, 0.0378, 0.0259, 0.0178, 0.0123, 0.0123, 0.0108, 0.0095], [0.0104, 0.0086, 0.0032, 0.0032, 0.0032, 0.0028, 0.0023, 0.0019], [0.0148, 0.0102, 0.0062, 0.0062, 0.004, 0.0033, 0.0024, 0.0023], [0.0145, 0.0145, 0.0128, 0.012, 0.0106, 0.0064, 0.0057, 0.005], [0.2321, 0.1167, 0.0708, 0.0245, 0.0079, 0.0055, 0.0038, 0.0038], [0.011, 0.0055, 0.0052, 0.0043, 0.003, 0.0028, 0.0023, 0.0019], [0.0085, 0.007, 0.0062, 0.0055, 0.0055, 0.0051, 0.0045, 0.0045], [0.6155, 0.0691, 0.0186, 0.0093, 0.0073, 0.0064, 0.006, 0.0053], [0.0732, 0.0503, 0.0223, 0.021, 0.0197, 0.0153, 0.0082, 0.0077], [0.0589, 0.018, 0.014, 0.0131, 0.0131, 0.0102, 0.0075, 0.007], [0.1393, 0.0292, 0.0258, 0.0242, 0.0214, 0.0201, 0.0177, 0.013], [0.058, 0.0399, 0.0352, 0.0292, 0.0242, 0.0242, 0.0188, 0.0156], [0.0613, 0.0576, 0.0256, 0.0212, 0.0199, 0.0165, 0.0155, 0.0129], [0.017, 0.015, 0.015, 0.0076, 0.0055, 0.0055, 0.0055, 0.0049], [0.0089, 0.0083, 0.0074, 0.0065, 0.0057, 0.0057, 0.0051, 0.0045], [0.0131, 0.0123, 0.0123, 0.0096, 0.0079, 0.0074, 0.0066, 0.0045], [0.0362, 0.0265, 0.0219, 0.016, 0.0125, 0.0117, 0.0117, 0.0104], [0.0369, 0.027, 0.0254, 0.0198, 0.0136, 0.012, 0.012, 0.0113], [0.0568, 0.0471, 0.0367, 0.0304, 0.0268, 0.0209, 0.0184, 0.0163], [0.0442, 0.039, 0.039, 0.0344, 0.0196, 0.0196, 0.0173, 0.0163], [0.0554, 0.0459, 0.0357, 0.0278, 0.0246, 0.0217, 0.0204, 0.0191], [0.1266, 0.0986, 0.0768, 0.0363, 0.0283, 0.0283, 0.0265, 0.022], [0.1268, 0.0599, 0.0599, 0.0529, 0.0412, 0.0207, 0.0183, 0.0172], [0.1846, 0.0438, 0.0387, 0.0341, 0.0266, 0.025, 0.022, 0.0183], [0.1247, 0.0805, 0.038, 0.0336, 0.0246, 0.0217, 0.0169, 0.0169], [0.0793, 0.0545, 0.0227, 0.0227, 0.0177, 0.0156, 0.0138, 0.0114], [0.2444, 0.0899, 0.0899, 0.0352, 0.0274, 0.0114, 0.0107, 0.0095], [0.3331, 0.1389, 0.1226, 0.1082, 0.0954, 0.0511, 0.0241, 0.0177], [0.1597, 0.1409, 0.0587, 0.0587, 0.0314, 0.0261, 0.0261, 0.0245], [0.1218, 0.0739, 0.0613, 0.0508, 0.0448, 0.0372, 0.0289, 0.0255], [0.3442, 0.2366, 0.1266, 0.0598, 0.0411, 0.032, 0.0249, 0.0171], [0.4118, 0.3634, 0.0811, 0.0263, 0.0205, 0.0205, 0.0141, 0.011], [0.4313, 0.3359, 0.14, 0.019, 0.0148, 0.0115, 0.007, 0.0054], [0.6204, 0.293, 0.0309, 0.0146, 0.0114, 0.0037, 0.0029, 0.0022], [0.4096, 0.3615, 0.1174, 0.0159, 0.0124, 0.0109, 0.0085, 0.0029], [0.5023, 0.2689, 0.1121, 0.0134, 0.0118, 0.0098, 0.0059, 0.0034], [0.4682, 0.1723, 0.152, 0.0233, 0.0182, 0.016, 0.0125, 0.0125], [0.5035, 0.1635, 0.0531, 0.0413, 0.0413, 0.0162, 0.0143, 0.0076], [0.6002, 0.0812, 0.0717, 0.0384, 0.0299, 0.0181, 0.0086, 0.0067], [0.7891, 0.0306, 0.0306, 0.0306, 0.0128, 0.0099, 0.0088, 0.0064], [0.3472, 0.164, 0.164, 0.0775, 0.0222, 0.0222, 0.0196, 0.0173], [0.4222, 0.0647, 0.0571, 0.0571, 0.0445, 0.0393, 0.0347, 0.0306], [0.2942, 0.1082, 0.1082, 0.0579, 0.0511, 0.0511, 0.0374, 0.0351]], "ranks": {"Rust": [22938, 25653, 24625, 25891, 1517, 4614, 15597, 28156, 34964, 34960, 33433, 67067, 46397, 36052, 46452, 28387, 34668, 82289, 97568, 61589, 87732, 99873, 130299, 71342, 44011, 47810, 18332, 5893, 4569, 5552, 4624, 6037, 9296, 17681, 14054, 23777, 3660, 3095, 2587, 1791, 2946, 1696, 1871, 2390, 2094, 1698, 1338, 1771, 1566, 3170, 11141, 27032, 19552, 21901, 39715, 14580, 5096, 2930, 2175, 2648, 1431, 1537, 1327]}}, {"pos": 554, "top": [[".", ",", "\u00a0\u00a0", " \u200b\u200b", " \u00a0", "\u00a0", ";", "?"], [" \u200b\u200b", "  \n", ".", " \u00a0", ",", "\u00a0\u00a0", "\u2026..", " \u2013"], [".", "\u2026", ",", "\u2026..", "\u2026.", "\u2026\u2026", " [\u2026]", "\u2013"], [" Blowjob", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " cumshot", " milfs", "utnik", " Geile", " rasseg", " Shemale"], ["\u00a0\u00a0", "\u00a0", " \u00a0", "\u00a0\u00a0\u00a0", "&nbsp", "SSI", "@", "FIG"], ["SSI", "dias", "-li", "fst", "CSI", "ocht", "-In", "-CS"], ["\u3011", "\u0219", "\u3010", "FIG", "\t  ", "\u4e28", "eing", "\u4e2d"], ["\u0219", "cation", "\u3011", "cron", "perator", "gly", "vement", "cate"], ["\u0219", "\u3011", "hammer", "|i", "\u0161", "gly", "gence", "perator"], ["|i", "-II", "-done", "OI", "-esque", "hammer", "\ufffdt", "astr"], ["|i", "-esque", "&nbsp", "OI", "-II", "\u0219", "-&", "astr"], ["ROID", "HCI", "quirer", "chluss", "pline", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\ufffdt", " Blowjob"], [" Blowjob", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "avors", " cumshot", " Shemale", "chluss", " maneu", "quirer"], ["-done", "avors", "owntown", "csi", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "/tty", "chluss", "ptime"], ["-done", "avors", "eing", "owntown", "gray", "tty", "ptime", "pping"], ["eing", " veggies", "-done", "owntown", "avors", " meds", " maneu", "/tty"], ["pping", "-done", "eing", " veggies", " meds", " booze", "-esque", "pline"], ["-done", "pping", "-tech", "ptime", " veggies", "eing", "OI", "pline"], ["-done", "pping", "OI", "acia", "-tech", "ptime", "pline", " booze"], ["OI", "-done", "|i", "pping", "tty", "-&", "\u8ddf", "yi"], ["\u8ddf", "|i", "OI", "\u5565", "\t\n\n", "PI", "-&", "\u54b1"], ["-done", "csi", "OI", "/tty", "|i", "HCI", "pping", "ptime"], ["/tty", "-done", "tty", "OI", "csi", "cket", "HCI", "stry"], ["OI", "/tty", "|i", "tty", "\u6d3b\u513f", "-done", "\u8fdc\u65b9\u7684", "aq"], ["/tty", "\u6d3b\u513f", "OI", "\u5565", "-done", "tty", "\u5de5", "|i"], ["/tty", "\u5565", " **\u25a0", "HCI", "lemetry", "crast", " **\u25cb", "quirer"], ["lemetry", "/tty", " *__", " **\u25a0", "HCI", "-storage", "urement", "\u5c4e"], [" \n\n", " ____", "\n\n", " --", " \r\n\r\n", " stuff", " _", "\t\n\n"], [" storage", "-storage", "lemetry", "ware", "/storage", " stuff", "/tty", "-heavy"], [" stuff", " ____", " storage", " dumps", " workflows", "-storage", "lemetry", "/storage"], [" stuff", " storage", " traffic", " dumps", "-storage", " communications", " labor", " electronics"], [" or", " storage", " stuff", " traffic", " labor", " water", " communications", " via"], [" stuff", " storage", " or", " traffic", " water", " tech", " databases", " weird"], ["/storage", "-storage", " storage", " tech", " stuff", " workflows", " databases", "/weather"], ["/storage", "via", " tech", "\u6216", "-heavy", "/data", " storage", " meds"], ["\u6216", "-heavy", "lemetry", "/storage", "/data", "data", "\u2011", "via"], ["\u6216", "-heavy", "async", "lemetry", "/storage", "/data", " workflows", " IoT"], ["\u6216", "async", " IoT", " async", " asynchronously", "-heavy", "lemetry", " databases"], ["\u6216", " asynchronously", "\u6216\u8005", " async", "async", " workflows", "/storage", " asynchronous"], ["\u6216", " asynchronously", " asynchronous", " async", "async", " workflows", "/storage", "\u6216\u8005"], [" asynchronously", " asynchronous", " async", "async", "\u5f02\u6b65", " Async", "\u6216", "Async"], [" asynchronously", " asynchronous", " async", " storage", " Async", "async", "\u5f02\u6b65", "-storage"], [" asynchronous", " asynchronously", " async", " storage", " Async", "/storage", "-storage", "\u5f02\u6b65"], [" asynchronous", " asynchronously", " async", " storage", " Async", "-storage", "/storage", "async"], [" asynchronously", " asynchronous", " async", " Async", " storage", "async", "\u5f02\u6b65", " tasks"], [" asynchronously", " asynchronous", " async", " storage", " Async", "_async", "/storage", "-storage"], [" asynchronously", " asynchronous", " async", " Async", "_async", " storage", " or", "/storage"], [" asynchronously", " or", " async", " asynchronous", "\u6216\u5bf9", " \u0438\u043b\u0438", " Async", "\u6216\u901a\u8fc7"], [" or", " \u0438\u043b\u0438", "\u6216\u5bf9", "\u6216\u901a\u8fc7", "\u6216", " ho\u1eb7c", "\u6216\u5229\u7528", "\u6027\u6216"], [" or", " \u0438\u043b\u0438", "\u6216\u5bf9", "\u6027\u6216", "\u6216\u901a\u8fc7", "\u6216\u5229\u7528", " ho\u1eb7c", "\u6216"], [" \u0438\u043b\u0438", " or", "\u6216\u5bf9", "\u6216", "\u6216\u5229\u7528", "\u6587\u4ef6\u6216", "\u6027\u6216", " \u0623\u0648"], [" or", "\u6216\u5bf9", " \u0438\u043b\u0438", "\u6216\u5229\u7528", "\u6027\u6216", "\u6216", "\u6216\u4e0e", " \u0623\u0648"], [" or", "\u6216\u5bf9", " \u0438\u043b\u0438", " asynchronously", "\u6216", "\u6216\u5229\u7528", "\u6027\u6216", " \u0623\u0648"], [" or", "\u6216\u5bf9", "/UI", " \u0438\u043b\u0438", " asynchronously", "-heavy", "\u6027\u6216", "ynchronously"], [" or", "\u6216\u5bf9", " \u0438\u043b\u0438", "/UI", " \u0623\u0648", "\u6216", "\u6027\u6216", "\u6216\u4e0e"], [" or", "\u6216\u5bf9", " \u0438\u043b\u0438", " asynchronously", "/UI", "/API", " async", "\u6027\u6216"], [" or", "\u6216\u5bf9", " \u0438\u043b\u0438", "-heavy", " async", " asynchronously", "\u6027\u6216", "\u6587\u4ef6\u6216"], [" IO", "IO", "/io", "(IO", ".IO", "-io", "io", " io"], [" IO", "IO", "/io", ".IO", "(IO", " Io", "-io", "Io"], ["IO", " IO", " disk", "/io", " or", " Disk", ".IO", "/O"], ["/O", " IO", "IO", "/API", " disk", "/I", "/io", "/UI"], ["/O", "/o", "/I", "/D", "/API", "/C", "/A", " disk"], ["/O", "/", "/o", "/I", "/D", "/A", "/C", "/E"]], "p": [[0.9185, 0.0379, 0.0158, 0.0035, 0.0035, 0.0029, 0.0012, 0.0011], [0.1429, 0.0867, 0.0634, 0.056, 0.0206, 0.011, 0.0086, 0.0067], [0.545, 0.1561, 0.0947, 0.0651, 0.0447, 0.0289, 0.0186, 0.0128], [0.0076, 0.0036, 0.0034, 0.003, 0.0028, 0.0026, 0.0025, 0.0022], [0.0327, 0.0308, 0.0289, 0.01, 0.0088, 0.0061, 0.0061, 0.0047], [0.0061, 0.0058, 0.0037, 0.0027, 0.0024, 0.002, 0.0019, 0.0017], [0.0627, 0.0261, 0.0191, 0.008, 0.0045, 0.0045, 0.0043, 0.0035], [0.0149, 0.0062, 0.0051, 0.0048, 0.0035, 0.0035, 0.0031, 0.0028], [0.0129, 0.0061, 0.0044, 0.0027, 0.0025, 0.0022, 0.0022, 0.0021], [0.0032, 0.0022, 0.0018, 0.0017, 0.0017, 0.0017, 0.0015, 0.0014], [0.0102, 0.008, 0.0052, 0.004, 0.0038, 0.0033, 0.0031, 0.0029], [0.0024, 0.002, 0.0018, 0.0017, 0.0016, 0.0014, 0.0014, 0.0014], [0.0051, 0.004, 0.0024, 0.0019, 0.0013, 0.0013, 0.0012, 0.0011], [0.0028, 0.0018, 0.001, 0.001, 0.001, 0.001, 0.0009, 0.0009], [0.0049, 0.0029, 0.0025, 0.0022, 0.0021, 0.002, 0.0017, 0.0016], [0.0025, 0.0024, 0.0018, 0.0015, 0.0015, 0.0014, 0.0014, 0.0014], [0.0052, 0.0041, 0.0036, 0.0032, 0.003, 0.0022, 0.002, 0.002], [0.0099, 0.0039, 0.0023, 0.0019, 0.0019, 0.0017, 0.0017, 0.0016], [0.0122, 0.0031, 0.0026, 0.0023, 0.0021, 0.002, 0.002, 0.002], [0.005, 0.0047, 0.0025, 0.0025, 0.0017, 0.0015, 0.0015, 0.0015], [0.0086, 0.0063, 0.0046, 0.0036, 0.0036, 0.0032, 0.0032, 0.003], [0.0024, 0.0024, 0.0023, 0.0021, 0.002, 0.0018, 0.0014, 0.0013], [0.0029, 0.0026, 0.0014, 0.0013, 0.0011, 0.0011, 0.001, 0.001], [0.0021, 0.0018, 0.0018, 0.0016, 0.0016, 0.0015, 0.0013, 0.0013], [0.0027, 0.0024, 0.0023, 0.002, 0.002, 0.0016, 0.0014, 0.0014], [0.0032, 0.0025, 0.002, 0.002, 0.002, 0.0016, 0.0014, 0.0013], [0.0045, 0.0039, 0.002, 0.002, 0.002, 0.0015, 0.0014, 0.0014], [0.0493, 0.0182, 0.0171, 0.0141, 0.0076, 0.0055, 0.0043, 0.0041], [0.0041, 0.0041, 0.0032, 0.003, 0.0028, 0.0028, 0.0026, 0.0025], [0.0086, 0.0063, 0.0055, 0.0034, 0.0032, 0.003, 0.0028, 0.0025], [0.018, 0.0159, 0.0066, 0.0052, 0.0046, 0.0046, 0.0046, 0.004], [0.0187, 0.0176, 0.0176, 0.0107, 0.01, 0.0078, 0.0069, 0.0057], [0.0207, 0.0143, 0.0126, 0.0076, 0.0059, 0.0059, 0.0046, 0.0043], [0.0089, 0.0078, 0.0069, 0.0061, 0.0054, 0.0054, 0.0045, 0.0037], [0.0122, 0.009, 0.009, 0.009, 0.0062, 0.0058, 0.0054, 0.0048], [0.0247, 0.0091, 0.0091, 0.008, 0.0071, 0.0066, 0.0059, 0.0055], [0.0162, 0.0105, 0.0093, 0.0093, 0.0087, 0.0082, 0.0064, 0.0053], [0.0279, 0.0132, 0.0124, 0.0096, 0.0085, 0.008, 0.0066, 0.0062], [0.181, 0.023, 0.0158, 0.0123, 0.0116, 0.0102, 0.0096, 0.009], [0.1075, 0.0508, 0.0272, 0.0255, 0.0225, 0.0121, 0.0094, 0.0083], [0.1146, 0.1077, 0.0839, 0.0449, 0.0308, 0.0226, 0.0187, 0.0129], [0.1948, 0.1948, 0.0632, 0.0338, 0.0205, 0.0193, 0.017, 0.015], [0.264, 0.2188, 0.0553, 0.0459, 0.0217, 0.014, 0.014, 0.0123], [0.2174, 0.1803, 0.055, 0.0456, 0.026, 0.0229, 0.0178, 0.0168], [0.292, 0.1885, 0.0651, 0.0289, 0.0289, 0.0145, 0.0137, 0.0137], [0.3009, 0.1178, 0.0715, 0.0298, 0.0263, 0.0205, 0.0159, 0.0132], [0.2727, 0.1288, 0.0781, 0.0393, 0.0164, 0.0154, 0.0136, 0.012], [0.164, 0.1277, 0.0642, 0.047, 0.0415, 0.0366, 0.0285, 0.0222], [0.2641, 0.1414, 0.1101, 0.0757, 0.052, 0.0405, 0.0357, 0.0278], [0.4386, 0.1257, 0.1257, 0.036, 0.028, 0.0218, 0.0218, 0.0193], [0.2033, 0.1794, 0.1088, 0.096, 0.0454, 0.0275, 0.0258, 0.0228], [0.4523, 0.1296, 0.1144, 0.0421, 0.0328, 0.0255, 0.0225, 0.0137], [0.2157, 0.1904, 0.07, 0.0331, 0.0201, 0.0177, 0.0177, 0.0166], [0.1642, 0.0996, 0.0729, 0.0415, 0.0304, 0.0184, 0.0153, 0.0153], [0.4113, 0.1178, 0.104, 0.0338, 0.0218, 0.0192, 0.0132, 0.0132], [0.2506, 0.1184, 0.0494, 0.0384, 0.0361, 0.0248, 0.0206, 0.0193], [0.2826, 0.104, 0.0382, 0.0359, 0.028, 0.0263, 0.0181, 0.015], [0.508, 0.3956, 0.0607, 0.0072, 0.0072, 0.003, 0.003, 0.003], [0.6487, 0.3064, 0.0196, 0.0082, 0.0072, 0.0023, 0.0011, 0.001], [0.4147, 0.4147, 0.0636, 0.0194, 0.0059, 0.0046, 0.0046, 0.0036], [0.554, 0.1587, 0.1091, 0.0294, 0.0243, 0.0202, 0.0084, 0.0079], [0.9929, 0.0009, 0.0008, 0.0006, 0.0004, 0.0004, 0.0004, 0.0003], [0.9992, 0.0004, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0]], "ranks": {"Rust": [78410, 82884, 89029, 86246, 64491, 36738, 26011, 15109, 8452, 4042, 5288, 4708, 4875, 1585, 2441, 1482, 2270, 3047, 6028, 2614, 11837, 3184, 4080, 7907, 1510, 1308, 2851, 1381, 5158, 5067, 3820, 2810, 3703, 5302, 3811, 4135, 3940, 3081, 4094, 6437, 7717, 4905, 5421, 8818, 4882, 3121, 3352, 5275, 12361, 15441, 23365, 18589, 11291, 8799, 10023, 7217, 1499, 2034, 1618, 1698, 2754, 4580, 3670]}}, {"pos": 555, "top": [[".", "i", "\u2026.", "\u2026..", "  \n", " \u2022", "o", " \u2013"], ["  \n", "  \n\n", "s", "ed", " \u2022", "?\u201d", "  ", " Harbor"], ["\u2026.", "s", "\u2026..", "\u2026\u201d", "\u2026", "?\u201d", ".", "i"], [" milfs", " **\u25a0", "sula", " cumshot", " counselor", " Geile", "enzi", " theater"], ["ed", "s", " \u3010", " theater", " \u3011", "ers", " .....", "  \n\n"], ["ed", "s", " \u3011", " \u200b\u200b", " theater", " \u3010", " gray", " **\u201c"], [" \u3010", "ed", "  \n", "s", "  \n\n", " \u3011", ".", " ....."], [" \u3010", " \u3011", " .....", "  \n", " **\u3010", " ***", " _____", "  \n\n"], [" \u3011", "  \n\n", " \u3010", " **\u3010", " */", " .....", " /*", " ***"], [" **\u25a0", "\\xc", " **\u2022", "rganization", " \"@/", "\u52e4\u52e4\u6073\u6073", "  \n", "\u00c3"], [" theater", " ***", " **\u25a0", " artifacts", " _____", "\\xc", " _.", " fiber"], [" **\u25a0", " **\u3010", " theater", " ***", " _____", " fiber", " artifacts", " **\u2022"], [" **\u25a0", " theater", " **\u3010", " artifacts", " fiber", " behaviors", " artifact", " theaters"], [" theater", " fiber", " artifacts", " theaters", " neighborhood", "-intensive", " behaviors", " artifact"], [" theater", " theaters", " gray", " fiber", " neighborhood", " artifacts", " favors", " labor"], [" theater", " gray", " behaviors", " artifacts", " neighborhood", " fiber", " theaters", " favors"], [" via", " theater", " artifacts", " gray", "-intensive", " fiber", " artifact", " logistics"], ["-intensive", " theater", " artifacts", "-heavy", " logistics", " fiber", " ops", "\u8fd9\u4e8b\u513f"], ["-intensive", " **\u25a0", "\u2014not", "-heavy", "\u2014but", "\u8fd9\u4e8b\u513f", "\u2014and", " via"], ["\u2014and", "\u2014but", "\u2014not", "-intensive", "\u2014or", "\u2014even", "\u2014including", "\u2014all"], ["\u2014and", "  \n\n", "\u2014", "\u2014but", " \u2014", "\u2014not", "\u2014or", " myriad"], [" **\u25a0", "-intensive", "GIO", "uyla", " **\u3010", "\u8fd9\u4e8b\u513f", " middleware", "\u3055\u307e\u3056\u307e\u306a"], [" **\u25a0", "-intensive", "GIO", " via", " toward", " **\u3010", " labor", "uyla"], [" via", " toward", " beyond", " heavily", " ,", " labor", "-intensive", " myriad"], [" ____", " via", " ___", " --", "  \n\n", " _", "-intensive", " toward"], [" **\u25a0", " ____", " **", " ___", " **\u3010", " *__", " _____", " **\u2014"], [" ___", " ____", " **\u25a0", " **", " infrastructure", " electronics", " _____", " communications"], [" _", " ___", " ,", " ____", " --", " via", " _____", " __"], [" via", " communications", " transactions", " infrastructure", " storage", " labor", " logistics", " data"], [" ___", " ____", " via", " traffic", " transactions", " communications", " storage", " ,"], [" via", " ,", " traffic", " .", " or", " and", " /", " beyond"], [" or", " and", " ,", " via", " .", " /", " outside", " beyond"], [" or", " /", " and", " via", " traffic", " outside", " .", " beyond"], [" or", " via", " /", " traffic", " and", " logistics", " labor", " communications"], [" or", " via", " /", " and", " \u2014", " traffic", " scav", " labor"], [" or", " /", " \u2014", " and", " via", "\u2014or", " traffic", " outside"], [" or", " /", " \u2014", "\u2014or", " and", " traffic", " outside", " via"], [" or", " /", " traffic", " outside", " via", " and", "\u2014or", " \u2014"], [" or", " /", "\u2014or", " \u2014", " via", " blocking", " asynchronously", " slow"], [" or", " /", " asynchronous", " asynchronously", " slow", " blocking", "\u6216", " latency"], [" or", " asynchronous", " asynchronously", " slow", " blocking", " async", " delays", " slower"], [" asynchronous", " asynchronously", " or", " blocking", " async", " delays", " synchronous", " tasks"], [" blocking", " asynchronous", " asynchronously", " or", "-blocking", " delays", " blocked", " async"], [" blocking", " asynchronous", " asynchronously", " or", "-blocking", " blocked", " tasks", " delays"], [" blocking", " or", " asynchronously", " asynchronous", " blocked", "-blocking", " delays", " async"], [" or", " blocking", " blocked", "-blocking", " asynchronously", " asynchronous", " delays", " interrupt"], [" or", " blocking", "\u6216\u5bf9", "-blocking", " anywhere", " blocked", " \u0438\u043b\u0438", " asynchronous"], [" or", "\u6216\u5bf9", " \u0438\u043b\u0438", " \u06cc\u0627", "\u6216\u5229\u7528", " ho\u1eb7c", " \u0623\u0648", "\u6216\u5c0f"], [" or", "\u6216\u5bf9", " \u0438\u043b\u0438", " ho\u1eb7c", " \u06cc\u0627", "\u6027\u6216", " \u0623\u0648", "\u6216\u4f7f\u7528"], [" or", " \u0438\u043b\u0438", "\u6216\u5bf9", "\u6027\u6216", " ho\u1eb7c", " \u06cc\u0627", "\u6216\u662f", "\u6216\u4f7f\u7528"], [" or", " \u0438\u043b\u0438", "\u6216\u5bf9", "\u6216\u4f7f\u7528", " \u06cc\u0627", " \u0623\u0648", " ho\u1eb7c", "\u6216"], [" or", " \u0438\u043b\u0438", "\u6216\u5bf9", "\u6027\u6216", " \u06cc\u0627", " \u0623\u0648", "\u6216", "\u6216\u662f"], [" or", " CPU", " \u0438\u043b\u0438", "\u6216\u5bf9", "-heavy", " processing", " \u0623\u0648", " computation"], [" CPU", " computation", " or", " computations", " processing", "CPU", " parsing", " GPU"], [" or", " CPU", " computation", " \u0438\u043b\u0438", " computations", " GPU", " malloc", "\u6216\u5bf9"], [" or", " CPU", " parsing", " serialization", " computation", " malloc", " \u0438\u043b\u0438", " allocations"], [" or", " garbage", " serialization", " CPU", " computation", " heavy", "-heavy", " parsing"], [" regex", " or", " heavy", " allocations", " CPU", "-heavy", "alloc", " garbage"], [" reflection", " or", " regex", " heavy", " CPU", "Reflection", "reflection", " GC"], [" heavy", " alloc", " allocation", " allocations", " or", "Alloc", " reflection", "alloc"], [" heavy", " or", " alloc", " allocation", " allocations", " reflection", " GC", " CPU"], [" or", ",", " allocation", " alloc", " allocations", " heavy", " GC", "alloc"], [",", " or", " alloc", " allocation", " allocations", " GC", " reflection", "Alloc"]], "p": [[0.1688, 0.1024, 0.0962, 0.0621, 0.0583, 0.0583, 0.0332, 0.0276], [0.2342, 0.1512, 0.028, 0.0263, 0.0097, 0.0097, 0.0085, 0.008], [0.2978, 0.1497, 0.1497, 0.0551, 0.0334, 0.0295, 0.0277, 0.0244], [0.0431, 0.0131, 0.0085, 0.007, 0.0062, 0.0062, 0.0043, 0.004], [0.5507, 0.0745, 0.0242, 0.0166, 0.0114, 0.0101, 0.0079, 0.0074], [0.4063, 0.0277, 0.0148, 0.0123, 0.0108, 0.0096, 0.0079, 0.0048], [0.2535, 0.0602, 0.0566, 0.0566, 0.0441, 0.0343, 0.0343, 0.0284], [0.1211, 0.0572, 0.0347, 0.0254, 0.0254, 0.0238, 0.0186, 0.0174], [0.0575, 0.0575, 0.0272, 0.0212, 0.0176, 0.0145, 0.0121, 0.0106], [0.0224, 0.0068, 0.0064, 0.005, 0.0041, 0.0037, 0.0037, 0.0037], [0.0221, 0.0126, 0.0118, 0.0104, 0.0104, 0.0104, 0.0098, 0.0092], [0.0745, 0.0242, 0.0156, 0.0101, 0.0078, 0.0074, 0.0065, 0.0057], [0.0398, 0.0227, 0.0166, 0.0084, 0.0074, 0.0065, 0.0061, 0.0061], [0.0584, 0.0148, 0.0123, 0.0115, 0.0095, 0.0074, 0.007, 0.0062], [0.0901, 0.0167, 0.0147, 0.0147, 0.0101, 0.0084, 0.0054, 0.0054], [0.0221, 0.0087, 0.0063, 0.0053, 0.0053, 0.0046, 0.0046, 0.0038], [0.0095, 0.009, 0.007, 0.0045, 0.0042, 0.004, 0.0037, 0.0035], [0.0092, 0.0046, 0.0041, 0.0036, 0.0028, 0.0026, 0.0025, 0.0022], [0.0154, 0.0106, 0.0047, 0.0044, 0.0039, 0.0034, 0.0032, 0.0025], [0.0416, 0.0305, 0.0286, 0.0197, 0.0185, 0.0163, 0.0105, 0.0093], [0.0906, 0.0751, 0.0585, 0.0585, 0.0378, 0.0202, 0.0178, 0.0139], [0.0168, 0.0074, 0.0042, 0.0035, 0.0031, 0.0027, 0.0023, 0.0021], [0.0166, 0.0051, 0.0048, 0.0042, 0.0035, 0.0027, 0.0024, 0.0022], [0.0327, 0.0186, 0.012, 0.0094, 0.0083, 0.0073, 0.0064, 0.0064], [0.0281, 0.0193, 0.0182, 0.0117, 0.0117, 0.011, 0.0091, 0.0071], [0.0491, 0.0263, 0.0247, 0.0247, 0.016, 0.0097, 0.0049, 0.0046], [0.0368, 0.0238, 0.0144, 0.0073, 0.0073, 0.006, 0.0053, 0.0053], [0.1169, 0.1169, 0.0755, 0.0626, 0.038, 0.0191, 0.0191, 0.0131], [0.019, 0.0115, 0.0102, 0.0102, 0.0096, 0.0084, 0.0084, 0.0079], [0.0265, 0.0249, 0.0161, 0.0098, 0.0071, 0.0071, 0.0067, 0.0067], [0.0425, 0.0189, 0.0156, 0.0138, 0.0122, 0.0114, 0.0089, 0.0084], [0.0761, 0.0631, 0.0338, 0.0317, 0.0263, 0.0218, 0.0132, 0.0097], [0.1095, 0.0334, 0.0314, 0.023, 0.0139, 0.0108, 0.009, 0.0075], [0.0885, 0.0238, 0.021, 0.0186, 0.0145, 0.0073, 0.0064, 0.0057], [0.3348, 0.0214, 0.0177, 0.0115, 0.0084, 0.0079, 0.0069, 0.0045], [0.6136, 0.0608, 0.027, 0.0106, 0.0057, 0.0039, 0.0034, 0.0027], [0.7788, 0.0364, 0.0126, 0.0067, 0.0028, 0.0023, 0.0023, 0.0023], [0.7477, 0.0577, 0.0037, 0.0035, 0.0033, 0.0031, 0.0029, 0.0027], [0.928, 0.0091, 0.0024, 0.001, 0.001, 0.0009, 0.0008, 0.0007], [0.676, 0.0159, 0.0132, 0.0124, 0.0066, 0.0058, 0.0048, 0.0048], [0.1716, 0.1108, 0.0715, 0.0523, 0.0317, 0.0263, 0.0205, 0.011], [0.192, 0.1404, 0.0907, 0.0663, 0.0215, 0.0148, 0.0108, 0.009], [0.1719, 0.1615, 0.0812, 0.0594, 0.0299, 0.016, 0.016, 0.0133], [0.2246, 0.0879, 0.0604, 0.0501, 0.0268, 0.0237, 0.0144, 0.0144], [0.2402, 0.1134, 0.0536, 0.0473, 0.0417, 0.0238, 0.0197, 0.0093], [0.3912, 0.1848, 0.0266, 0.0266, 0.0195, 0.0142, 0.0067, 0.0063], [0.8809, 0.0195, 0.0081, 0.0081, 0.0056, 0.003, 0.0026, 0.0022], [0.9867, 0.0036, 0.0019, 0.0007, 0.0005, 0.0005, 0.0004, 0.0004], [0.9932, 0.0028, 0.0015, 0.0003, 0.0003, 0.0002, 0.0002, 0.0002], [0.9843, 0.0046, 0.0046, 0.0009, 0.0007, 0.0005, 0.0005, 0.0005], [0.894, 0.0393, 0.0164, 0.006, 0.0053, 0.0053, 0.0037, 0.0028], [0.9427, 0.0251, 0.0056, 0.0026, 0.0026, 0.0023, 0.0021, 0.0018], [0.6756, 0.0358, 0.0316, 0.0246, 0.0204, 0.014, 0.0075, 0.0058], [0.2104, 0.1857, 0.1126, 0.0532, 0.05, 0.0222, 0.0152, 0.0143], [0.298, 0.1408, 0.0665, 0.0457, 0.0277, 0.0203, 0.0191, 0.0139], [0.1378, 0.0836, 0.0651, 0.054, 0.0395, 0.0289, 0.0225, 0.0186], [0.1705, 0.0459, 0.0431, 0.0405, 0.0381, 0.0357, 0.0246, 0.0231], [0.1407, 0.1096, 0.0624, 0.0334, 0.0295, 0.0277, 0.0244, 0.0216], [0.2558, 0.0941, 0.0733, 0.0418, 0.0418, 0.0287, 0.0253, 0.0238], [0.4582, 0.1022, 0.0796, 0.0703, 0.0426, 0.0258, 0.0258, 0.0228], [0.2939, 0.1081, 0.0954, 0.0842, 0.0511, 0.0351, 0.0241, 0.0213], [0.1624, 0.1624, 0.1433, 0.1433, 0.0636, 0.0362, 0.0249, 0.0171], [0.9996, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [24391, 27513, 16805, 30033, 3559, 3819, 5337, 5059, 7944, 4769, 1580, 3496, 5616, 2274, 2388, 2108, 2460, 5002, 10725, 4082, 5388, 5185, 2901, 1315, 680, 1394, 1050, 967, 1413, 1692, 1823, 2512, 2086, 1576, 1042, 1331, 1160, 989, 1274, 2209, 2068, 1489, 1686, 1781, 1421, 892, 944, 985, 1114, 2681, 6645, 11902, 3500, 2965, 9475, 11180, 2690, 1954, 1781, 2141, 2420, 2178, 2554]}}, {"pos": 556, "top": [[",", ".", "\u2013", " \u2013", ";", "\u00a0", ",.", "<|endoftext|>"], [",", "\u2013", ".", " \u2013", ";", "\u2013and", ":", " "], [",", ".", "\u2013", ";", " \u2013", "\u2026", "\u2026.", "\u2013and"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", "-------------</", "\ufffd\ufffd", "\u54e5\u534e", " Shemale", "----------</", "\u0e21\u0e19\u0e38\u0e29"], [",", ".", ".@", " ", "@", ":", "\u00a0\u00a0", ",@"], [",", ".", "\u2026.", "\u00a0\u00a0", ":", "\u2026..", "!", "odd"], [",", ".", " \u2018", " ", ":", "\u00a0\u00a0", "\u00a0", "!"], [",", ".", " *@", ",@", "-ish", ":", ".@", " @"], [",", ".", "\u00a0", ":", "\u2013and", "!\u201d", ";", "!"], [",", "\u2013and", " oddly", "\u4fe9\u4eba", "-but", "\u0434\u044c\u043c\u0438", "though", " though"], [",", "\u2013and", "\u00a0", " though", "-but", "\u2013", ".@", " genuinely"], [" oddly", " veggies", " pricey", " stuff", "unky", "\u662f\u4f55\u542b\u4e49", " _$", " booze"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " veggies", " oddly", " **>>", " pricey", "\u662f\u4f55\u542b\u4e49", " stuff", " booze"], [" pricey", " oddly", " veggies", "\u751a\u81f3\u4f1a", "\u4e94\u82b1\u516b", " stuff", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " booze"], [" stuff", " plenty", " folks", " oddly", " pricey", " even", " savvy", " casually"], [" veggies", " stuff", " folks", "\u751a\u81f3\u4f1a", " oddly", " plenty", " kids", " pricey"], [" plenty", " veggies", " folks", " oddly", " stuff", " even", " tricky", " weird"], [" veggies", " tricky", " plenty", " stuff", " tweaking", "omething", " oddly", " weird"], ["omething", "\u751a\u81f3\u4f1a", " veggies", " magari", "\u4e71\u4e03\u516b\u7cdf", " harder", "anything", " tricky"], ["\u2014even", "anything", "\u2014or", "whatever", " even", " uncomfort", " somehow", "omething"], ["<|endoftext|>", " \n\n", "\n\n", "  \n\n", "though", "anything", "   \n\n", "<|file_sep|>"], ["\u751a\u81f3\u4f1a", "Sharper", "\u6c34\u91cc", "anything", " persino", "\u76f8\u5173\u884c\u4e1a", "omething", "\u8fd9\u79cd\u4e1c\u897f"], [" ``", " {{--<", "\u751a\u81f3\u4f1a", " quicker", "anything", " harder", " ``(", " even"], [" even", " ``", " {{--<", " sometimes", " merely", " farther", " --", " much"], [" \n\n", "\n\n", " \r\n\r\n", "  \n\n", "\r\n\r\n", "   \n\n", " {{--<", "anything"], [" ___", " *__", "\u751a\u81f3\u4f1a", " even", " ____", " **", " harder", " __"], [" ___", " __", " ____", " _", " _____", " *__", " even", " **"], ["\n\n", " \n\n", " ___", " _", " __", " even", " ____", " ,"], [" even", "\n\n", " \n\n", " __", " ___", " ,", " ____", " _"], [" ___", " __", " ____", " _____", " ______", " _", " even", " **"], [" even", " or", " sometimes", " ,", " ?", " anything", " something", " it"], [" even", " or", " ,", " something", " sometimes", " anything", " ?", " it"], [" even", " or", " sometimes", " anything", " something", " risk", " unpredictable", " too"], [" even", " or", " anything", " sometimes", " unpredictable", " inevitably", " weird", " everything"], [" even", " or", " unpredictable", " weird", " anything", " quickly", " aggressively", " risk"], [" or", " even", " slow", " power", " anything", " time", " complex", " weird"], [" slow", " or", " slower", " weird", " delays", " even", " awkward", " unpredictable"], [" or", " slow", " awkward", " unpredictable", " weird", " even", " complex", " slower"], [" slow", " or", " unpredictable", " inefficient", " labor", " complex", " processing", " weird"], [" unpredictable", " CPU", " complex", " slow", " chaotic", " or", " chaos", " unexpected"], [" CPU", " slow", " unpredictable", " memory", " processing", " complex", " delays", " delay"], [" CPU", " processing", " computational", " slow", " algorithms", " processes", " software", " memory"], [" processing", " CPU", " computational", " algorithms", " slow", " inefficient", " processes", " software"], [" CPU", " processing", " computational", " algorithms", " slow", " computations", " processes", " software"], [" processing", " CPU", " computational", " algorithms", " delays", " slow", " inefficient", " computation"], [" CPU", " processing", " computational", " inefficient", " algorithms", " computations", " delays", " animations"], [" CPU", " processing", " computational", " algorithms", " animations", " computations", " inefficient", " delays"], [" processing", " CPU", " computational", " animations", " computations", " algorithms", " delays", " slow"], [" CPU", " processing", " computational", " animations", " algorithms", "\u6027\u6216", " computations", "CPU"], [" CPU", " processing", " computations", " computational", " algorithms", " computation", " glitches", " animations"], [" processing", " CPU", " computations", "\u6570\u636e\u5904\u7406", "-processing", " parsing", " computation", " computational"], [" processing", " CPU", " parsing", "\u6570\u636e\u5904\u7406", "processing", "CPU", "Processing", " computation"], [" processing", " CPU", " parsing", "\u6570\u636e\u5904\u7406", " computation", "-processing", "Processing", "processing"], [" computation", " computations", " CPU", " processing", " parsing", "\u6570\u636e\u5904\u7406", " calculations", " computational"], [" computation", " computations", " CPU", "\u6570\u636e\u5904\u7406", " parsing", " processing", " calculations", " computational"], [" parsing", " serialization", " computation", "\u6570\u636e\u5904\u7406", " CPU", " JSON", " computations", "alloc"], [" serialization", " computation", " parsing", " JSON", " garbage", " CPU", " computations", "\u6570\u636e\u5904\u7406"], [" parsing", " serialization", " JSON", " regex", " CPU", " computation", " garbage", "alloc"], [" reflection", " parsing", " CPU", " JSON", " computation", " regex", " serialization", " GC"], [" alloc", " parsing", " allocation", " allocations", " heavy", "alloc", " GC", "Alloc"], [" alloc", " heavy", " parsing", " GC", " parses", " allocation", " CPU", " JSON"], [" alloc", " parses", " GC", " allocation", " regex", " serialization", " allocations", " JSON"], [" alloc", " GC", " parses", " allocation", " reflection", " JSON", " allocations", " computes"]], "p": [[0.7591, 0.2175, 0.0179, 0.0031, 0.0017, 0.0004, 0.0001, 0.0], [0.6026, 0.2847, 0.0635, 0.034, 0.0081, 0.0019, 0.0003, 0.0003], [0.8829, 0.064, 0.0498, 0.0012, 0.001, 0.0006, 0.0001, 0.0001], [0.0046, 0.0023, 0.0023, 0.0022, 0.0015, 0.0014, 0.0014, 0.001], [0.7712, 0.0674, 0.0055, 0.0022, 0.0017, 0.0015, 0.0014, 0.0012], [0.669, 0.0549, 0.0051, 0.0048, 0.0048, 0.0026, 0.0021, 0.0014], [0.7736, 0.1186, 0.0097, 0.0081, 0.0081, 0.0038, 0.0038, 0.0032], [0.3664, 0.0927, 0.0171, 0.0161, 0.0142, 0.0118, 0.0081, 0.0067], [0.8994, 0.0575, 0.0027, 0.002, 0.0017, 0.0015, 0.0014, 0.0014], [0.0345, 0.0047, 0.0021, 0.0013, 0.0013, 0.0013, 0.0013, 0.0013], [0.1921, 0.0131, 0.0131, 0.0131, 0.0084, 0.0066, 0.0055, 0.0048], [0.0111, 0.0072, 0.0056, 0.0056, 0.0041, 0.0028, 0.0028, 0.0023], [0.0109, 0.0066, 0.0033, 0.0024, 0.0018, 0.0017, 0.0017, 0.0016], [0.0031, 0.0031, 0.0026, 0.002, 0.0016, 0.0015, 0.0014, 0.0014], [0.0159, 0.0132, 0.0132, 0.0103, 0.0091, 0.008, 0.0066, 0.0048], [0.0107, 0.0074, 0.0042, 0.0039, 0.0037, 0.0035, 0.0035, 0.0025], [0.0327, 0.0271, 0.0211, 0.0211, 0.0164, 0.0145, 0.0128, 0.0113], [0.0232, 0.0159, 0.0117, 0.0117, 0.0085, 0.0085, 0.0066, 0.0055], [0.0113, 0.0078, 0.0069, 0.0044, 0.0035, 0.0035, 0.0032, 0.0032], [0.0161, 0.0142, 0.0092, 0.0059, 0.0056, 0.0052, 0.0049, 0.0046], [0.7784, 0.0152, 0.0134, 0.0052, 0.0015, 0.0014, 0.0014, 0.0013], [0.0037, 0.0025, 0.0019, 0.0017, 0.0016, 0.0015, 0.0014, 0.0012], [0.0402, 0.0062, 0.004, 0.0027, 0.0023, 0.0021, 0.002, 0.0019], [0.0157, 0.013, 0.0058, 0.0048, 0.0048, 0.0033, 0.0029, 0.0026], [0.1047, 0.0527, 0.0249, 0.0194, 0.0182, 0.011, 0.0052, 0.0036], [0.0099, 0.0087, 0.0044, 0.0044, 0.0044, 0.0041, 0.0032, 0.0022], [0.1267, 0.0411, 0.032, 0.022, 0.0092, 0.0086, 0.0086, 0.0063], [0.5783, 0.0783, 0.0347, 0.0326, 0.0239, 0.0186, 0.012, 0.0082], [0.1334, 0.1106, 0.0917, 0.0491, 0.0461, 0.0232, 0.0205, 0.0192], [0.261, 0.261, 0.2033, 0.0353, 0.0312, 0.0312, 0.0214, 0.0201], [0.2788, 0.1092, 0.0622, 0.0455, 0.0377, 0.0259, 0.0259, 0.0148], [0.251, 0.1837, 0.03, 0.03, 0.0234, 0.0171, 0.016, 0.016], [0.3356, 0.1912, 0.0293, 0.0139, 0.013, 0.0115, 0.0079, 0.007], [0.2081, 0.0282, 0.0248, 0.0151, 0.0133, 0.0081, 0.0081, 0.0063], [0.102, 0.0292, 0.0189, 0.0107, 0.0101, 0.0061, 0.0058, 0.0054], [0.2121, 0.0647, 0.0164, 0.012, 0.012, 0.0112, 0.0106, 0.0093], [0.1796, 0.0961, 0.0621, 0.0228, 0.0157, 0.013, 0.013, 0.0122], [0.0696, 0.0653, 0.0187, 0.0165, 0.0155, 0.0155, 0.0129, 0.0121], [0.0889, 0.0785, 0.0239, 0.0211, 0.0175, 0.0145, 0.012, 0.0106], [0.1092, 0.0485, 0.0355, 0.0333, 0.0244, 0.0215, 0.0167, 0.013], [0.1301, 0.1079, 0.0256, 0.0241, 0.0226, 0.0187, 0.0155, 0.0155], [0.2468, 0.1321, 0.0908, 0.0277, 0.019, 0.0168, 0.0148, 0.0139], [0.1576, 0.1576, 0.0792, 0.0291, 0.0242, 0.0156, 0.0156, 0.0138], [0.1663, 0.1562, 0.1008, 0.024, 0.0187, 0.0187, 0.0187, 0.0136], [0.1212, 0.1005, 0.0505, 0.027, 0.0254, 0.0239, 0.0175, 0.0164], [0.1042, 0.0762, 0.0383, 0.0193, 0.0193, 0.0181, 0.0181, 0.016], [0.0958, 0.0513, 0.0331, 0.0242, 0.0201, 0.0147, 0.0147, 0.0147], [0.0857, 0.0805, 0.0405, 0.038, 0.0217, 0.0217, 0.0204, 0.0191], [0.1392, 0.0375, 0.0352, 0.0331, 0.0188, 0.0156, 0.0156, 0.0122], [0.0643, 0.0604, 0.0252, 0.0184, 0.0153, 0.0127, 0.0127, 0.0127], [0.0323, 0.0303, 0.0208, 0.0162, 0.0152, 0.0135, 0.0126, 0.0119], [0.1373, 0.1373, 0.1069, 0.0832, 0.0347, 0.0326, 0.0306, 0.0254], [0.2562, 0.1554, 0.1068, 0.0734, 0.0572, 0.0393, 0.0393, 0.0306], [0.2804, 0.1701, 0.1031, 0.091, 0.0803, 0.0487, 0.0487, 0.0203], [0.2339, 0.1608, 0.0975, 0.0861, 0.0759, 0.0317, 0.0279, 0.0279], [0.3916, 0.2096, 0.0601, 0.0413, 0.0321, 0.0284, 0.0172, 0.0152], [0.1852, 0.1273, 0.1273, 0.0875, 0.0681, 0.0601, 0.0365, 0.0221], [0.1902, 0.0898, 0.0898, 0.0793, 0.07, 0.0545, 0.0257, 0.0257], [0.1626, 0.1117, 0.087, 0.0768, 0.0678, 0.0598, 0.0598, 0.0283], [0.2728, 0.1289, 0.1137, 0.0782, 0.0537, 0.0418, 0.0254, 0.0254], [0.1987, 0.0939, 0.0828, 0.0731, 0.0569, 0.0502, 0.0502, 0.0443], [0.4727, 0.0931, 0.064, 0.044, 0.0388, 0.0302, 0.0267, 0.0235], [0.4384, 0.0863, 0.0863, 0.0524, 0.0462, 0.036, 0.028, 0.0205]], "ranks": {"Rust": [32789, 45375, 45648, 58505, 4294, 16174, 33221, 22100, 65904, 39470, 16466, 35550, 40242, 25837, 13219, 19095, 15896, 64094, 111974, 69549, 92888, 113928, 108338, 49062, 33966, 32310, 9833, 4674, 3564, 4312, 3871, 4245, 4417, 4474, 1451, 1097, 203, 218, 236, 326, 429, 404, 350, 526, 382, 308, 265, 248, 222, 511, 2402, 8503, 4126, 2724, 4792, 5203, 1323, 817, 863, 916, 837, 850, 1077]}}, {"pos": 557, "top": [[",", ".", "-", " \u2013", "\u2013", "\u00a0\u00a0", " ", "\u00a0"], [" \u2013", "\u2013", " \u2013**", " \u2018", "  \r\n", " ", "  \r\n\r\n", "@\","], ["\u2013", ",", " \u2013", "\u2026", ".", "\u2013and", " \u2018", "\u2026\""], [" Blowjob", " Shemale", " Hidal", " Palav", " milfs", " Pubbl", " Prostitu", " cumshot"], ["+#", "{@", "%^", "  \t\t", " @_", " +#", ".@", " \u2018"], ["-**", "-_", "odka", "incu", "insky", " Heavy", "odd", "-load"], ["-_", "-duty", "\u91cd\u7684", "-**", " Heavy", " -**", " **\u2018", "-handed"], ["-_", "-duty", " -**", "-**", " _", "-handed", " &_", " **\u2018"], ["-duty", "  \r\n\r\n", "-handed", " \r\n\r\n", " \r\n", "-heavy", "-_", " \n\n\n"], ["-duty", "\\-", "-heavy", "\\_", "-handed", "\u7eb6", " Heavy", "-_"], ["\\-", "-duty", " \r\n", "\\_", " \r\n\r\n", "-heavy", "  \r\n\r\n", "-_"], ["-duty", " \r\n\r\n", "  \r\n\r\n", " \r\n", "-heavy", "f\u00e4llig", "\u7eb6", "-**"], ["-duty", " Palav", "-heavy", "-handed", " Hidal", "ashian", " transformative", "Sexy"], ["-duty", "-heavy", " transformative", "-handed", " flashy", "\u674e\u8f7b", " Palav", "Sexy"], ["-duty", " heavy", " Heavy", "-heavy", " flashy", "\u91cd\u7684", "-handed", " heavier"], ["-duty", " flashy", " heavy", "-heavy", " impactful", " sprawling", "\u4e45\u800c", " Heavy"], ["-heavy", " heavy", "-duty", " flashy", " impactful", " Heavy", "\u8fc7\u91cd", " tech"], [" Palav", "-duty", " impactful", " Fortal", " Hidal", " flashy", "-heavy", " Pubbl"], [" Palav", " Geile", " Pubbl", " Fortal", " Hidal", "-duty", "ligh", " impactful"], ["-duty", " Pubbl", "ligh", " Palav", " Hidal", "\u8fc7\u91cd", "-heavy", "baugh"], ["-duty", "\u8fc7\u91cd", "-heavy", "Heavy", " heavy", "\u91cd\u7684", "f\u00e4llig", " Heavy"], [" Pubbl", " Palav", " Fortal", " Hidal", "-duty", "\u674e\u8f7b", "ligh", " ;;^"], [" Pubbl", " Fortal", "-duty", " Palav", "ligh", " Hidal", " ;;^", "f\u00e4llig"], [" heavy", "\u8fc7\u91cd", "-duty", "-heavy", "f\u00e4llig", " heavier", " T\u00e9cn", " \ube44\uc9c0\ub2c8\uc2a4"], [" T\u00e9cn", "-heavy", " heavy", "-duty", "\u8fc7\u91cd", " \r\n\r\n", "Heavy", " \ube44\uc9c0\ub2c8\uc2a4"], [" T\u00e9cn", " workload", " Hidal", " impactful", " Pubbl", "-duty", " Prostitu", " workflows"], [" workload", "-duty", " T\u00e9cn", " weaponry", " heavy", " tech", " workflows", "-heavy"], [" heavy", " work", " workload", " T\u00e9cn", "-heavy", " labor", " weaponry", " tech"], [" heavy", " work", " workload", " labor", "-heavy", " tasks", " tech", " Heavy"], [" heavy", " work", " labor", " workload", " tasks", " tech", " load", " heavier"], [" heavy", " work", " labor", " workload", " heavier", " tasks", " power", " tech"], [" heavy", " work", " labor", " power", " weight", " physical", " tasks", " Heavy"], [" heavy", " work", " labor", " tech", " weight", " workload", " physical", " power"], [" heavy", " tech", " labor", "-heavy", " workload", " workflows", " hacking", " weight"], [" tech", " heavy", "-heavy", " workload", " labor", " computational", " electronics", " hacking"], [" heavy", "-heavy", " workload", " computational", " tech", " weight", " labor", " weights"], [" heavy", " workload", "-heavy", " computational", " labor", " heavier", " algorithms", " tech"], [" heavy", " computational", " workload", " animations", " labor", " workflows", "-heavy", " algorithms"], [" computational", " algorithms", " heavy", " workload", " computation", " computations", " labor", " CPU"], [" computational", " calculations", " algorithms", " computations", " computation", " CPU", " heavy", " processing"], [" computational", " algorithms", " calculations", " CPU", " computations", " computation", " processing", " comput"], [" computational", " computations", " calculations", " computation", " algorithms", " processing", " CPU", " comput"], [" computational", " computations", " calculations", " computation", " algorithms", " processing", " comput", " CPU"], [" computational", " computations", " calculations", " computation", " algorithms", " comput", " processing", " CPU"], [" computational", " computations", " calculations", " computation", " algorithms", " CPU", " comput", " processing"], [" computational", " computations", " calculations", " algorithms", " computation", " CPU", " processing", " comput"], [" computational", " computations", " calculations", " algorithms", " computation", " CPU", " calculation", " comput"], [" computational", " computations", " algorithms", " calculations", " computation", " CPU", " processing", " comput"], [" computational", " computations", " algorithms", " calculations", " CPU", " computation", " animations", " comput"], [" computations", " computational", " computation", " calculations", " algorithms", " CPU", " processing", "\u6570\u636e\u5904\u7406"], [" computations", " computation", " calculations", " computational", " algorithms", "\u6570\u636e\u5904\u7406", " CPU", "\u7684\u8ba1\u7b97"], [" computation", " computations", " calculations", " CPU", " calculation", "\u6570\u636e\u5904\u7406", " computational", "CPU"], [" computation", " computations", " calculations", " CPU", " calculation", "\u6570\u636e\u5904\u7406", " computational", "\u7684\u8ba1\u7b97"], [" computation", " computations", " calculations", " calculation", "\u7684\u8ba1\u7b97", "\u8ba1\u7b97", " computational", " CPU"], [" computation", " computations", " calculations", " calculation", " computational", "\u7684\u8ba1\u7b97", "\u8ba1\u7b97", " CPU"], [" computation", " computations", " calculations", " calculation", " CPU", "\u8ba1\u7b97", "\u7684\u8ba1\u7b97", " computational"], [" computation", " calculations", " computations", " calculation", "\u8ba1\u7b97", "\u7684\u8ba1\u7b97", "\u8a08\u7b97", " CPU"], [" computation", " computations", " calculations", " calculation", " maths", "\u8ba1\u7b97", " CPU", " math"], [" computation", " calculation", " calculations", " computations", " maths", " math", "\u8ba1\u7b97", " CPU"], [" computation", " calculation", " calculations", " computations", " math", " logic", " CPU", " maths"], [" computation", " calculation", " math", " CPU", " computations", " calculations", " logic", " maths"], [" computation", " math", " calculation", " compute", " computations", " CPU", " logic", " allocation"], [" computation", " math", " calculation", " CPU", " logic", " allocation", " compute", " JSON"]], "p": [[0.664, 0.2443, 0.0257, 0.0166, 0.0107, 0.0084, 0.0061, 0.0031], [0.1157, 0.0795, 0.0547, 0.0157, 0.0095, 0.0084, 0.0074, 0.0061], [0.6107, 0.1862, 0.0776, 0.0153, 0.0072, 0.0064, 0.0044, 0.0041], [0.0091, 0.0041, 0.0038, 0.0034, 0.0034, 0.0032, 0.0028, 0.0025], [0.0042, 0.0035, 0.0031, 0.0029, 0.0027, 0.0026, 0.0026, 0.0026], [0.0071, 0.0046, 0.0046, 0.004, 0.0026, 0.0023, 0.002, 0.0018], [0.0272, 0.0225, 0.0146, 0.0113, 0.0094, 0.0065, 0.0061, 0.0061], [0.0283, 0.0234, 0.0134, 0.0111, 0.0104, 0.0098, 0.0092, 0.0071], [0.0885, 0.0346, 0.0325, 0.0238, 0.0106, 0.0099, 0.0088, 0.0064], [0.0356, 0.0139, 0.0102, 0.0075, 0.007, 0.0031, 0.0024, 0.0023], [0.0543, 0.0373, 0.0273, 0.0227, 0.0176, 0.0146, 0.0107, 0.0078], [0.0162, 0.0092, 0.0072, 0.0067, 0.0063, 0.0028, 0.0026, 0.0026], [0.011, 0.0043, 0.0041, 0.0026, 0.0025, 0.0025, 0.0025, 0.0022], [0.0095, 0.0054, 0.0026, 0.0024, 0.0023, 0.0021, 0.0019, 0.0016], [0.009, 0.007, 0.0054, 0.0054, 0.0045, 0.0021, 0.0021, 0.0017], [0.0033, 0.0033, 0.0031, 0.0027, 0.0024, 0.002, 0.0015, 0.0015], [0.0044, 0.0044, 0.0042, 0.0037, 0.0029, 0.0025, 0.0016, 0.0016], [0.0038, 0.002, 0.0016, 0.0015, 0.0015, 0.0015, 0.0014, 0.0012], [0.0065, 0.0039, 0.0035, 0.0031, 0.0031, 0.0025, 0.0022, 0.0014], [0.0059, 0.0028, 0.0026, 0.0025, 0.0023, 0.0022, 0.0018, 0.0017], [0.008, 0.004, 0.0038, 0.0031, 0.0024, 0.002, 0.0017, 0.0016], [0.0037, 0.0027, 0.0025, 0.0024, 0.0022, 0.0017, 0.0016, 0.0014], [0.0033, 0.0026, 0.0024, 0.002, 0.002, 0.002, 0.0018, 0.0016], [0.0075, 0.0038, 0.0036, 0.0029, 0.0024, 0.0023, 0.0022, 0.0016], [0.0073, 0.0053, 0.005, 0.005, 0.0032, 0.0025, 0.0025, 0.0022], [0.0055, 0.0048, 0.0033, 0.0031, 0.0027, 0.0027, 0.0021, 0.0021], [0.0129, 0.0054, 0.005, 0.0044, 0.0044, 0.0037, 0.0037, 0.0033], [0.0391, 0.0099, 0.0068, 0.0068, 0.006, 0.0053, 0.0047, 0.0044], [0.0726, 0.0208, 0.0143, 0.0111, 0.0092, 0.0077, 0.0063, 0.0053], [0.0539, 0.0239, 0.0186, 0.0175, 0.0113, 0.0073, 0.006, 0.0047], [0.0796, 0.0376, 0.0189, 0.007, 0.0054, 0.0054, 0.0051, 0.0042], [0.1149, 0.1014, 0.0226, 0.01, 0.0069, 0.0061, 0.0057, 0.0054], [0.1234, 0.0454, 0.0332, 0.013, 0.0101, 0.0084, 0.0079, 0.0079], [0.0491, 0.0359, 0.0218, 0.0181, 0.0141, 0.0124, 0.0075, 0.0071], [0.0905, 0.0377, 0.0215, 0.0148, 0.0139, 0.0102, 0.0084, 0.0074], [0.0697, 0.0397, 0.0373, 0.0273, 0.0212, 0.0176, 0.0121, 0.01], [0.1411, 0.0552, 0.0487, 0.0335, 0.0191, 0.0168, 0.0123, 0.0116], [0.0789, 0.0509, 0.0509, 0.0241, 0.0176, 0.0176, 0.0176, 0.0176], [0.2736, 0.0573, 0.0573, 0.042, 0.0307, 0.0271, 0.0225, 0.0211], [0.4359, 0.0973, 0.0669, 0.0521, 0.0381, 0.0279, 0.0149, 0.0116], [0.5166, 0.1017, 0.0617, 0.0545, 0.0451, 0.0374, 0.0213, 0.0121], [0.6687, 0.1162, 0.0622, 0.0484, 0.0333, 0.0157, 0.0157, 0.0095], [0.5352, 0.1737, 0.1353, 0.0498, 0.0388, 0.0126, 0.0087, 0.0076], [0.4375, 0.2654, 0.142, 0.0523, 0.0359, 0.0103, 0.0103, 0.008], [0.3707, 0.2548, 0.1545, 0.0644, 0.0568, 0.0144, 0.0127, 0.0112], [0.298, 0.298, 0.1408, 0.0754, 0.0665, 0.0216, 0.0116, 0.0109], [0.296, 0.2612, 0.1234, 0.1089, 0.066, 0.0275, 0.0079, 0.0079], [0.3219, 0.2507, 0.1045, 0.0814, 0.0718, 0.0436, 0.0071, 0.0067], [0.3582, 0.2462, 0.0799, 0.0705, 0.0622, 0.0549, 0.007, 0.0062], [0.4428, 0.1119, 0.0872, 0.0769, 0.0529, 0.0467, 0.0076, 0.0063], [0.3501, 0.1288, 0.1003, 0.0445, 0.0198, 0.0186, 0.0186, 0.0099], [0.3148, 0.2778, 0.1312, 0.0796, 0.0293, 0.0228, 0.0178, 0.0178], [0.3983, 0.2416, 0.166, 0.0611, 0.0288, 0.0154, 0.0154, 0.012], [0.4936, 0.2642, 0.1816, 0.0278, 0.008, 0.0062, 0.0055, 0.0048], [0.4693, 0.3225, 0.1726, 0.0182, 0.0036, 0.0032, 0.0032, 0.0028], [0.6681, 0.1914, 0.1025, 0.0229, 0.0045, 0.0031, 0.0019, 0.0015], [0.8243, 0.0767, 0.0597, 0.032, 0.003, 0.0012, 0.0009, 0.0008], [0.8547, 0.0702, 0.0482, 0.0177, 0.0019, 0.0016, 0.0015, 0.0011], [0.9203, 0.0357, 0.0216, 0.0149, 0.0023, 0.002, 0.0011, 0.0004], [0.8685, 0.0808, 0.0262, 0.0085, 0.0052, 0.0046, 0.0019, 0.0013], [0.9473, 0.0252, 0.0135, 0.0034, 0.003, 0.003, 0.0014, 0.0007], [0.9619, 0.0256, 0.0031, 0.0027, 0.0014, 0.0014, 0.0008, 0.0005], [0.7577, 0.1691, 0.0202, 0.0108, 0.0095, 0.0084, 0.0058, 0.0019]], "ranks": {"Rust": [52351, 51797, 58613, 59405, 2804, 9339, 7529, 3406, 5913, 2938, 1632, 2415, 3605, 1816, 2739, 2435, 3647, 12887, 19301, 6403, 6623, 9642, 10119, 2039, 2705, 7535, 2644, 1358, 1060, 1396, 1590, 2155, 1599, 2012, 1729, 1916, 727, 1004, 1168, 2012, 2061, 2419, 2544, 3155, 2424, 2300, 2076, 2284, 2247, 4441, 21218, 27177, 5012, 2841, 3175, 2046, 518, 413, 564, 619, 437, 440, 379]}}, {"pos": 558, "top": [["<|endoftext|>", ",", ".", "\u2026", ";", "\u2013", " [\u2026]", " \u2013"], ["  \n\n", "  \n", "  \r\n", "\u2014", "  \n\n\n", " \u00de", "\u00ac", "<|endoftext|>"], ["\u2026", "\u2013", "\u2014", "\u2026.", "  \n\n", " [\u2026]", "[\u2026]", "\u2026.."], ["eless", "\u0d4d\u0d1f", "spraak", "\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500", "alement", "i\u0142", "annage", " Blowjob"], ["  \n\n", "\u0d4d\u0d1f", "\u064a\u064b\u0627", "=>$", "\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500", "\u0441\u0442\u044a", "i\u0142", " **\u201c"], ["\u0d4d\u0d1f", "\u064a\u064b\u0627", "elog", "\u6d1b\u592b", "eless", "erable", "\u8fe6", "zg"], ["  \n\n", "**\u2014", "\u0d4d\u0d1f", "\u00ac", "\t  \n", "_____", "\u064a\u064b\u0627", " **\u201c"], [" **\u00ab", "\u0d4d\u0d1f", " **\u201c", "\r\r\n", "  \n\n", "(/*", "i\u0142", " **\u201e"], ["  \n\n", "  \n\n\n", " **\u201c", "**\u2014", " \n\n\n\n", "(/*", " **\u00ab", "  \r\n\r\n"], ["  \n\n", "\\xc", "\u00ac", "**\u2014", "\u2014not", "\t  ", "\u2014that", "\\_"], ["\\xc", "**\u2014", "  \n\n", "\u00ac", "\t  ", "_____", "\u2014", "\\."], [" **\u00ab", " **\u201c", " **\u201e", "\\xc", "**\u2014", " **", " **\"", " **\u300c"], [" **\u00ab", " **\u201e", " **\u201c", "\\xc", " **", "**\u2014", "eza", "\u2014not"], [" **\u00ab", "\u00ac", "\u2014not", "\u2014including", "\u2014or", " nuanced", "\u2014and", "eza"], ["\u00ac", "\u2014not", "\u2014", "\u2014or", "\u2014and", "\u2014including", "\u2014at", "\u2014to"], [" entirety", " nuanced", "eves", "\u2014including", "\u2014not", " \u0648\u06cc\u0698", "\u00ac", " transformative"], [" entirety", " akin", " nuanced", " overarching", "eves", "e", " leveraging", "ally"], ["eves", " entirety", " **\u00ab", ".appspot", "eza", " nuanced", " akin", "\u6d77\u91cf\u7684"], [" akin", " entirety", "eves", " computational", ".appspot", "\u2014or", "ecca", " **\u00ab"], [" entirety", " akin", "eves", "\u52a0\u4e4b", "\u65b9\u624d", "\u2014or", " merely", " atop"], ["<|endoftext|>", "\u2014", "\u2014and", "\\-", "\u2014or", " merely", " swiftly", " requisite"], [" ``", "eves", "ettor", "plx", " \u0627\u0631\u0627\u0626", " entirety", " akin", " ``("], [" ``", " ``(", " entirety", " computational", " merely", "eves", "\u65b9\u624d", " akin"], [" ,", " merely", " ``", " entirety", " alongside", " largely", " exceedingly", " swiftly"], [" ,", "\\-", " merely", "\u2014or", " ``", " exceedingly", " computational", " swiftly"], [" computational", " **", " computation", " **\u201c", " comput", " ``", " \u0440\u043e\u0431\u043e", " computations"], [" computational", " **", " ``", " computation", " computing", " comput", " *__", " *"], [" ,", " \n\n", " _", " **", " __", " ``", " ___", " computational"], [" ,", " computational", " .", " tasks", " **", " labor", " work", " __"], [" ,", " **", " .", " computational", " tasks", " labor", " work", " *"], [" ,", " .", " or", " work", " labor", " tasks", " over", " beyond"], [" ,", " .", " or", " and", " work", " over", " on", " in"], [" or", " ,", " and", " over", " beyond", " work", " .", " labor"], [" or", " labor", " computational", " ,", " tasks", " via", " beyond", " complex"], [" or", " computational", " labor", " overclock", " algorithms", " **\u201c", " algorithm", " CPU"], [" or", " computational", " *", " CPU", " overclock", " **\u201c", " **", " algorithms"], [" or", " *", " CPU", "\u2014or", " **\u201c", " computational", " overclock", " labor"], [" or", " CPU", " computational", " \u201c", " labor", " **\u201c", " overclock", "\u2014or"], [" or", " CPU", " computational", " labor", "\u2014or", " overclock", " tasks", " algorithms"], [" or", " computational", " CPU", " labor", " algorithms", " comput", " tasks", " algorithm"], [" CPU", " computational", " or", " labor", " algorithms", " tasks", " comput", " computing"], [" computational", " CPU", " tasks", " computation", " computing", " computations", " or", " comput"], [" computational", " CPU", " tasks", " or", " computations", " algorithms", " computation", " calculations"], [" computational", " CPU", " tasks", " computations", " or", " calculations", " computation", " algorithms"], [" CPU", " tasks", " computational", " or", " processing", " algorithms", " calculations", " computation"], [" CPU", " tasks", " computational", " or", " algorithms", " processing", " computations", " computation"], [" CPU", " anything", " or", " tasks", " computational", "anything", " anywhere", " ANY"], [" or", "\u6216", " \u0438\u043b\u0438", " anywhere", " anything", "\u6216\u8005", "\u6216\u5bf9", "\u6216\u662f"], [" or", "\u6216\u5bf9", "\u6216\u5229\u7528", " \u0438\u043b\u0438", " \u0e2b\u0e23\u0e37\u0e2d", "\u6216\u4f7f\u7528", "\u2014or", "\u6216\u672a"], [" or", "\u6216\u5bf9", "\u2014or", "\u6216\u5229\u7528", " \u0438\u043b\u0438", "\u6216\u672a", "\u6291\u6216", "\u6216\u4f7f\u7528"], [" or", " \u0438\u043b\u0438", "\u6216\u5bf9", "\u6216", "\u6216\u5229\u7528", "\u2014or", " \u0623\u0648", "\u6216\u4f7f\u7528"], [" or", " \u0438\u043b\u0438", "\u2014or", "\u6216\u5bf9", " \u0e2b\u0e23\u0e37\u0e2d", "\u6216\u5229\u7528", "\u6216\u8005", "\u6216\u4e0e"], ["\u2014or", "\u2014even", " or", "anything", " ANY", "\u6216\u5bf9", " CPU", " \u0438\u043b\u0438"], ["\u2014or", " or", "anything", "\u2014even", " WITHOUT", " \u0e2b\u0e23\u0e37\u0e2d", " without", " \u0438\u043b\u0438"], [" or", "\u2014or", " \u0438\u043b\u0438", " \u0e2b\u0e23\u0e37\u0e2d", "\u2014even", "\u6216\u5bf9", " WITHOUT", " \u0623\u0648"], ["-blocking", " blocking", "Blocking", " Blocking", "\u2014or", " or", "blocking", "\u2014even"], ["-blocking", " blocking", "\u2014or", "Blocking", " Blocking", "\u2014even", " or", "blocking"], ["\u2014or", " blocking", "-blocking", "\u2014even", "Blocking", " Blocking", " \u0e2b\u0e23\u0e37\u0e2d", " even"], [" blocking", "-blocking", " Blocking", "Blocking", "blocking", "\u963b\u585e", " blocker", "-block"], [" blocking", "-blocking", " Blocking", "Blocking", "blocking", " blocker", "\u963b\u585e", " blocked"], [" blocking", "-blocking", " Blocking", ",", "Blocking", " block", "blocking", "-block"], [",", " blocking", " ,", "-blocking", " Blocking", " block", "-block", " *,"], [",", ",*", ",,", " ,", ",<", " blocking", ",**", ".,"]], "p": [[0.7457, 0.0652, 0.0507, 0.0289, 0.0187, 0.0155, 0.0113, 0.0088], [0.8924, 0.0392, 0.0041, 0.0041, 0.0018, 0.0012, 0.0011, 0.001], [0.4576, 0.1311, 0.1021, 0.0547, 0.0376, 0.0243, 0.0201, 0.0157], [0.009, 0.0026, 0.0024, 0.0023, 0.0021, 0.002, 0.0019, 0.0019], [0.0209, 0.0135, 0.0127, 0.0087, 0.0077, 0.006, 0.0056, 0.0044], [0.0252, 0.0077, 0.0068, 0.0056, 0.0053, 0.0036, 0.0036, 0.0034], [0.038, 0.0296, 0.0149, 0.014, 0.014, 0.0131, 0.0096, 0.008], [0.0126, 0.0092, 0.0049, 0.0046, 0.0046, 0.0041, 0.0041, 0.0036], [0.5101, 0.0175, 0.0093, 0.0093, 0.0082, 0.0047, 0.0047, 0.0039], [0.028, 0.0218, 0.0181, 0.017, 0.015, 0.0132, 0.0091, 0.0091], [0.0639, 0.0468, 0.0468, 0.0266, 0.0208, 0.0162, 0.0152, 0.0143], [0.2665, 0.0633, 0.0248, 0.016, 0.015, 0.0103, 0.0049, 0.0032], [0.1898, 0.0166, 0.0129, 0.0057, 0.0054, 0.0042, 0.0031, 0.0031], [0.0093, 0.0072, 0.0053, 0.0044, 0.0039, 0.0034, 0.0032, 0.003], [0.0585, 0.0139, 0.0131, 0.0115, 0.0108, 0.007, 0.0066, 0.0066], [0.0085, 0.0066, 0.004, 0.0031, 0.0029, 0.0026, 0.0024, 0.0024], [0.0157, 0.0101, 0.0074, 0.0054, 0.0042, 0.0035, 0.0031, 0.0026], [0.0072, 0.006, 0.0034, 0.0028, 0.0025, 0.0023, 0.0022, 0.0022], [0.0058, 0.0045, 0.0038, 0.0033, 0.0027, 0.0023, 0.0021, 0.0021], [0.0068, 0.0064, 0.0047, 0.0039, 0.0039, 0.0032, 0.0032, 0.0027], [0.0143, 0.0126, 0.0126, 0.0119, 0.0112, 0.0098, 0.0082, 0.0064], [0.0037, 0.0035, 0.0029, 0.0026, 0.0024, 0.0024, 0.0023, 0.0021], [0.042, 0.0128, 0.0047, 0.0044, 0.0042, 0.0037, 0.0032, 0.0027], [0.0257, 0.0137, 0.0089, 0.0045, 0.0042, 0.0037, 0.0035, 0.0035], [0.0105, 0.0082, 0.0068, 0.0064, 0.0056, 0.0044, 0.0041, 0.0039], [0.0427, 0.0354, 0.0074, 0.0048, 0.0048, 0.0042, 0.0037, 0.0035], [0.1261, 0.0596, 0.0233, 0.0171, 0.0117, 0.011, 0.0104, 0.0067], [0.2083, 0.0385, 0.0319, 0.0319, 0.0219, 0.0182, 0.0182, 0.011], [0.2412, 0.0224, 0.0175, 0.0164, 0.0154, 0.012, 0.0088, 0.0073], [0.1907, 0.0376, 0.0311, 0.0228, 0.0189, 0.0157, 0.0122, 0.0089], [0.3161, 0.0585, 0.0229, 0.019, 0.019, 0.0139, 0.0102, 0.0079], [0.3008, 0.081, 0.0592, 0.0298, 0.0232, 0.017, 0.0103, 0.0097], [0.1225, 0.1081, 0.02, 0.0188, 0.0137, 0.0129, 0.0129, 0.0114], [0.0783, 0.0239, 0.0113, 0.0106, 0.01, 0.0088, 0.0088, 0.0073], [0.1237, 0.0355, 0.0178, 0.0167, 0.0123, 0.0102, 0.0102, 0.0095], [0.1613, 0.0298, 0.028, 0.0205, 0.0193, 0.0181, 0.0097, 0.0097], [0.4641, 0.0217, 0.0149, 0.014, 0.0132, 0.0132, 0.0116, 0.008], [0.4384, 0.0193, 0.0181, 0.0141, 0.0132, 0.0124, 0.011, 0.011], [0.8979, 0.0064, 0.0061, 0.0047, 0.0037, 0.0015, 0.0015, 0.0014], [0.3927, 0.0876, 0.0641, 0.0184, 0.0162, 0.0134, 0.0105, 0.0105], [0.1781, 0.1572, 0.108, 0.0423, 0.0351, 0.0241, 0.02, 0.0176], [0.3031, 0.2361, 0.0635, 0.034, 0.0265, 0.0265, 0.0234, 0.0234], [0.2374, 0.2095, 0.0873, 0.0364, 0.0302, 0.0302, 0.0284, 0.025], [0.1702, 0.1599, 0.1245, 0.0404, 0.038, 0.0315, 0.0315, 0.0216], [0.2077, 0.1428, 0.0764, 0.0718, 0.0299, 0.0248, 0.0206, 0.0193], [0.2175, 0.1094, 0.0752, 0.0334, 0.026, 0.0229, 0.0179, 0.0158], [0.1432, 0.0816, 0.0495, 0.0495, 0.0437, 0.041, 0.0362, 0.0194], [0.7111, 0.0515, 0.0215, 0.0157, 0.013, 0.0108, 0.0101, 0.0095], [0.6462, 0.0681, 0.0413, 0.0365, 0.0235, 0.0183, 0.0162, 0.0104], [0.4512, 0.0692, 0.0611, 0.0476, 0.042, 0.0271, 0.0255, 0.0211], [0.342, 0.1258, 0.0463, 0.036, 0.0281, 0.0264, 0.0248, 0.0248], [0.3622, 0.1038, 0.0916, 0.0713, 0.0433, 0.0337, 0.0262, 0.0232], [0.1308, 0.0794, 0.0658, 0.0481, 0.0399, 0.0352, 0.0258, 0.0258], [0.2165, 0.0748, 0.0426, 0.0426, 0.0275, 0.0214, 0.0201, 0.0201], [0.1954, 0.143, 0.056, 0.0494, 0.0361, 0.0264, 0.0171, 0.016], [0.1361, 0.0996, 0.0935, 0.0825, 0.0567, 0.0501, 0.0304, 0.0268], [0.118, 0.1108, 0.1108, 0.0811, 0.0716, 0.0672, 0.0338, 0.0263], [0.191, 0.1088, 0.0848, 0.0703, 0.0703, 0.062, 0.04, 0.0259], [0.5506, 0.1392, 0.1392, 0.0844, 0.0399, 0.0114, 0.0061, 0.0037], [0.7374, 0.0777, 0.0605, 0.0471, 0.0197, 0.0072, 0.0064, 0.005], [0.7073, 0.0545, 0.0512, 0.0311, 0.0227, 0.0156, 0.0122, 0.0084], [0.9667, 0.0147, 0.0042, 0.0015, 0.0013, 0.0011, 0.0007, 0.0005], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [75061, 191140, 148206, 45775, 54602, 29203, 25793, 26194, 16200, 10867, 14682, 29732, 32404, 29197, 47441, 28913, 44727, 51029, 79381, 60867, 94229, 58938, 72629, 89680, 52901, 45836, 51741, 17078, 16834, 16065, 12034, 12492, 8460, 7745, 8531, 9109, 5818, 6939, 6590, 10028, 9798, 10737, 11247, 13600, 7848, 7290, 13368, 11116, 9047, 13274, 10065, 9787, 9306, 11500, 6311, 7839, 6928, 3636, 5319, 3787, 3228, 2004, 1078]}}, {"pos": 559, "top": [[",", ".", "\u2013", ";", " \u2013", "\u00a0", ",.", "\u00a0\u00a0"], [",", "\u2013", ".", " \u2013", ";", "\u2013and", ".\u2013", ",."], [",", "\u2013", ".", ";", " \u2013", "\u2026", "\u2013and", ".\u2013"], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Guta", " Shemale", " Blowjob", "-------------</", "\ufffd\ufffd", "\u0e21\u0e19\u0e38\u0e29"], [",", ".", ".@", ":@", "odd", ".\u201c", ",@", " CIF"], [",", ".", "odd", "\u2026..", "\u00a0\u00a0", "\u2026.", "fst", "\u2026but"], ["\uff0c", ".", "\u3002", "\uff01", ",", "\uff0e", ".\u2019", ".\u201d"], ["ingly", "ly", "fully", "much", "ably", ":@", ".@", "edly"], [".", ",", ".\u201c", "\u00a0", "...", "ly", "!.", "\u2026and"], [",", "\u00ad", "much", " \u00ad", "\\_", "though", "Though", "\u516c\u53f7"], [",", "...", ".", "\u00a0", "\u00ad", "&", " \u00ad", "...\\"], [" veggies", " pricey", " gritty", " oddly", "ily", " savvy", " comfy", "unky"], [" veggies", " pricey", " flavorful", " savvy", " comfy", "unky", " hustle", " gritty"], [" savvy", " pricey", " tweaking", " gritty", " wildly", " veggies", " tweaked", " incredibly"], [" savvy", " wildly", " even", " incredibly", " tweaking", " gritty", " tough", " aggressively"], [" incredibly", " savvy", " tweaking", " anyways", " gritty", " wildly", " even", " plenty"], [" incredibly", "-esque", " savvy", " tweaking", " akin", " oddly", " albeit", " wildly"], [" tweaking", "-esque", " savvy", "\u751a\u81f3\u662f", " tweaks", " tweaked", " quirky", " messy"], ["\u751a\u81f3\u662f", "\u751a\u81f3\u4f1a", "-esque", "\u4e43\u81f3", "\u751a\u81f3\u6709", "\u751a\u81f3\u8fd8\u6709", " **>>", " tweaking"], ["\u751a\u81f3\u662f", "\u4e43\u81f3", "\u5373\u4fbf", "\u751a\u81f3", "\u2014even", "\u2014or", "even", " myriad"], ["<|endoftext|>", "\n\n", "  \n\n", "\r\n\r\n", "Though", " \n\n", "a", "\u5373\u4fbf"], [" ``", "\u751a\u81f3\u662f", " ``(", "\u4e43\u81f3", "``", " **>>", "\u751a\u81f3\u4e8e", " even"], [" ``", "``", " ``(", " ''", " {{--<", "\u6216\u662f", "\u751a\u81f3\u4e8e", "\u751a\u81f3\u662f"], [" ``", " even", " {{--<", " --", "\u6216\u662f", " notably", " merely", " ''"], [" \n\n", "\n\n", " \r\n\r\n", "  \n\n", "\r\n\r\n", " ``", " \r\n \r\n", "[["], [" **", " ``", " __", " *__", " \r\n\r\n", " \n\n", "\r\n\r\n", " ___"], [" **", " __", " ``", " ___", " ____", " _", " ______", " *__"], [" __", "\n\n", " **", " ,", " ``", " \n\n", " _", " or"], [" or", " **", " even", " ``", " ,", " work", " potentially", " __"], [" __", " **", " ____", " ______", " or", " ___", " \n", " \n  \n"], [" or", " even", " ,", " .", " **", " outside", " ?", " work"], [" or", " ,", " even", " .", " over", " and", " outside", " a"], [" or", " even", " **", " outside", " potentially", " complex", " over", " work"], [" **", " or", " even", " complex", "\u2014or", " potentially", "\u2014even", " labor"], [" **", " **\u201c", " or", "\uff1f**", "\u6216", "\uff09**", " potentially", "?**"], [" **", " **\u201c", "\u2011", "**", "\u2026**", " *", " .**", "\uff09**"], [" **", " **\u201c", " or", "\u2011", " *", "**", " .**", " slower"], [" **", "\u2011", " or", " **\u201c", " )**", " *", " unpredictable", " inefficient"], [" or", "\u2011", " **", "\u6216", " inefficient", "\u6216\u975e", " unexpectedly", " unpredictable"], [" or", "\u6216", "\u2011", " **", " unpredictable", " animation", "\u6216\u975e", " animations"], ["\u2011", " animation", " animations", " or", "\u6216", " slow", " asynchronous", " delays"], [" animation", " animations", " asynchronous", " synchronization", " slow", " inefficient", " hardware", " CPU"], [" animation", " animations", " asynchronous", " synchronization", " inefficient", " hardware", " processing", " graphics"], [" animations", " animation", " asynchronous", " hardware", " inefficient", " synchronization", " processing", " delays"], [" animations", " animation", " inefficient", " synchronization", " delays", " asynchronous", " synchron", " processing"], [" animations", " inefficient", " animation", " synchron", " delays", " synchronization", " hardware", " processing"], [" inefficient", " animations", " interruptions", " synchronization", " delays", " glitches", " asynchronous", " animation"], ["\u751a\u81f3\u662f", "\u751a\u81f3", " animations", " inefficient", " interruptions", " interference", " processing", " delays"], [" interruptions", " interference", "\u751a\u81f3\u662f", " animations", " inefficient", " interf", " syncing", " processing"], ["\u751a\u81f3\u662f", "\u751a\u81f3", "\u2014even", "\u54ea\u6015\u662f", " inefficient", "\u0e41\u0e21\u0e49\u0e41\u0e15\u0e48", " EVEN", " even"], ["\u751a\u81f3\u662f", "\u751a\u81f3", "\u2014even", "\u54ea\u6015\u662f", "even", "\u751a\u81f3\u5728", " \u0434\u0430\u0436\u0435", "\u6216\u4e0e"], ["\u751a\u81f3\u662f", "\u751a\u81f3", "\u2014even", "\u6216\u4e0e", "Even", "even", "\u0e41\u0e21\u0e49\u0e41\u0e15\u0e48", "\u6216"], ["\u2014even", "\u751a\u81f3\u662f", " inefficient", "\u751a\u81f3", " uninitialized", " CPU", " GPU", " accessing"], ["\u2014even", " GPU", " UI", " CPU", " uninitialized", " accessing", " interacts", "UI"], [" interacts", "Alloc", "alloc", " garbage", " alloc", " allocations", "\u2014even", " UI"], [" garbage", "alloc", " interacts", "Alloc", " alloc", " allocations", " UI", " malloc"], [" garbage", " GC", " even", "alloc", "\u751a\u81f3\u662f", " UI", "\u751a\u81f3", "\u2014even"], [" UI", " garbage", " GC", "alloc", " even", "Alloc", "UI", " GUI"], [" GC", " UI", " garbage", "GC", " DOM", " alloc", " memory", " GUI"], [" alloc", " GC", "Alloc", " allocations", "alloc", " UI", " garbage", " allocation"], [" GC", " UI", " garbage", " alloc", " allocations", "Alloc", "GC", "alloc"], [" GC", " alloc", " UI", " or", " allocations", " garbage", "GC", "Alloc"], [" or", " GC", " alloc", " UI", " blocks", " garbage", " allocations", " triggers"]], "p": [[0.7589, 0.2174, 0.0202, 0.0017, 0.001, 0.0003, 0.0001, 0.0001], [0.4452, 0.4452, 0.0683, 0.0126, 0.0098, 0.006, 0.001, 0.0005], [0.793, 0.1378, 0.0651, 0.0014, 0.0007, 0.0007, 0.0004, 0.0002], [0.0048, 0.0035, 0.0026, 0.002, 0.0019, 0.0019, 0.0018, 0.0015], [0.0503, 0.0105, 0.0047, 0.0036, 0.0027, 0.0025, 0.0017, 0.0016], [0.054, 0.0113, 0.0061, 0.003, 0.0027, 0.0025, 0.0022, 0.0021], [0.0687, 0.0535, 0.0502, 0.0472, 0.0286, 0.0269, 0.0127, 0.0119], [0.01, 0.0073, 0.0065, 0.0061, 0.0047, 0.0042, 0.0039, 0.0037], [0.2173, 0.1238, 0.0102, 0.0084, 0.0074, 0.0066, 0.0062, 0.0058], [0.0566, 0.0068, 0.0049, 0.0046, 0.0036, 0.0028, 0.0023, 0.0021], [0.2513, 0.1727, 0.0925, 0.0597, 0.0182, 0.0151, 0.0118, 0.0081], [0.0123, 0.0116, 0.009, 0.0079, 0.0058, 0.0058, 0.0058, 0.0055], [0.014, 0.0055, 0.0049, 0.0046, 0.0036, 0.0026, 0.0024, 0.0023], [0.0087, 0.0063, 0.006, 0.0056, 0.0036, 0.0036, 0.0034, 0.0028], [0.0272, 0.0129, 0.0129, 0.0121, 0.0114, 0.0107, 0.0088, 0.0088], [0.0683, 0.0152, 0.0111, 0.0082, 0.0064, 0.006, 0.0056, 0.0049], [0.0568, 0.0268, 0.0252, 0.0144, 0.0127, 0.0099, 0.0082, 0.0082], [0.018, 0.0159, 0.0049, 0.0049, 0.0043, 0.0033, 0.0029, 0.0026], [0.0246, 0.0096, 0.008, 0.0066, 0.0049, 0.0035, 0.0033, 0.0031], [0.0345, 0.0304, 0.0099, 0.0064, 0.006, 0.0053, 0.0039, 0.0036], [0.9125, 0.0312, 0.0014, 0.0014, 0.0011, 0.0008, 0.0006, 0.0006], [0.3177, 0.0158, 0.0085, 0.0062, 0.0038, 0.0035, 0.0029, 0.0018], [0.9318, 0.0097, 0.0055, 0.0014, 0.0007, 0.0006, 0.0006, 0.0004], [0.2738, 0.0106, 0.0083, 0.0078, 0.0073, 0.0047, 0.0039, 0.0037], [0.1418, 0.0915, 0.086, 0.0591, 0.0591, 0.0192, 0.0109, 0.0103], [0.7045, 0.0351, 0.0213, 0.0146, 0.0146, 0.0078, 0.0069, 0.0065], [0.421, 0.3279, 0.0606, 0.057, 0.0197, 0.0127, 0.0087, 0.006], [0.1233, 0.1159, 0.0796, 0.062, 0.0547, 0.0483, 0.0483, 0.0312], [0.1332, 0.0522, 0.0433, 0.0359, 0.0192, 0.0159, 0.0132, 0.0124], [0.3436, 0.2676, 0.0636, 0.034, 0.0282, 0.0234, 0.0118, 0.011], [0.2895, 0.0536, 0.0417, 0.0223, 0.021, 0.0197, 0.0174, 0.0163], [0.1696, 0.0551, 0.0429, 0.0277, 0.026, 0.026, 0.0158, 0.0158], [0.376, 0.0542, 0.024, 0.0212, 0.01, 0.0073, 0.0073, 0.0061], [0.1595, 0.1323, 0.0179, 0.0158, 0.0139, 0.0109, 0.0066, 0.0058], [0.2195, 0.0759, 0.0246, 0.014, 0.0116, 0.0109, 0.0103, 0.0091], [0.6448, 0.068, 0.06, 0.0183, 0.0172, 0.0126, 0.0076, 0.0072], [0.616, 0.061, 0.0394, 0.0326, 0.0136, 0.006, 0.0039, 0.0039], [0.4015, 0.1015, 0.0791, 0.02, 0.0083, 0.0065, 0.0061, 0.0057], [0.5716, 0.0365, 0.0267, 0.0251, 0.0092, 0.0087, 0.0082, 0.0077], [0.1558, 0.1071, 0.0692, 0.0475, 0.0239, 0.0164, 0.0113, 0.0113], [0.0825, 0.0642, 0.0604, 0.0415, 0.0209, 0.0209, 0.0143, 0.0127], [0.1497, 0.1407, 0.0314, 0.026, 0.0179, 0.0179, 0.0131, 0.0131], [0.1516, 0.1338, 0.0338, 0.0299, 0.0233, 0.016, 0.0141, 0.0141], [0.1361, 0.1201, 0.0252, 0.0237, 0.0196, 0.0163, 0.0127, 0.0119], [0.0822, 0.0601, 0.0413, 0.0267, 0.0267, 0.0172, 0.0172, 0.0162], [0.0723, 0.0723, 0.0342, 0.022, 0.022, 0.0195, 0.0172, 0.0161], [0.1183, 0.0559, 0.0384, 0.0181, 0.0181, 0.017, 0.016, 0.015], [0.1047, 0.0816, 0.041, 0.0385, 0.0362, 0.0182, 0.0171, 0.0142], [0.064, 0.0498, 0.0284, 0.0284, 0.025, 0.0208, 0.0152, 0.0134], [0.4949, 0.0316, 0.0279, 0.014, 0.0116, 0.0103, 0.0075, 0.0071], [0.633, 0.2055, 0.0191, 0.0096, 0.007, 0.0066, 0.0058, 0.0058], [0.2846, 0.1726, 0.0527, 0.034, 0.0182, 0.0182, 0.0091, 0.0081], [0.07, 0.058, 0.0352, 0.0274, 0.0213, 0.0188, 0.0138, 0.0129], [0.0766, 0.0385, 0.034, 0.0282, 0.0282, 0.0194, 0.0171, 0.0151], [0.2691, 0.0874, 0.0771, 0.0413, 0.0342, 0.0284, 0.0162, 0.0143], [0.1679, 0.1154, 0.0793, 0.07, 0.0545, 0.0424, 0.0375, 0.0138], [0.5046, 0.0774, 0.0366, 0.0251, 0.0251, 0.0251, 0.0251, 0.0222], [0.2836, 0.1043, 0.0813, 0.0559, 0.0384, 0.0384, 0.0339, 0.0299], [0.2648, 0.2337, 0.0974, 0.046, 0.0246, 0.0192, 0.0169, 0.0169], [0.2412, 0.1658, 0.1006, 0.0887, 0.0783, 0.0783, 0.0691, 0.0288], [0.3523, 0.1885, 0.0891, 0.0891, 0.0308, 0.0255, 0.0225, 0.0165], [0.3245, 0.1737, 0.1054, 0.0564, 0.0413, 0.0388, 0.025, 0.0195], [0.6435, 0.0871, 0.0678, 0.0266, 0.0161, 0.0142, 0.0125, 0.0104]], "ranks": {"Rust": [26570, 67122, 63573, 30305, 8158, 25320, 23056, 10405, 14054, 18628, 12231, 19244, 28731, 11881, 8329, 14677, 19191, 33262, 57922, 52061, 42131, 24229, 21384, 8973, 6690, 6627, 2877, 3514, 2829, 5509, 5085, 7160, 5454, 7138, 4360, 5323, 2026, 1748, 1304, 2514, 2604, 2369, 2434, 2361, 2104, 2354, 1961, 2039, 1483, 6243, 15442, 35160, 10093, 11667, 17031, 7846, 1587, 1107, 929, 499, 259, 224, 145]}}, {"pos": 560, "top": [["\u2013", ".", " \u2013", ",", ";", "?", "\u2013and", "-"], ["\u2013", " \u2013", "\u2013and", ",", ".", ".\u2013", ";", "\u200b"], ["\u2013", ",", ".", " \u2013", "\u2013and", ";", ".\u2013", "\u2026"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", "\ufffd\ufffd", "----------</", "-------------</", " \u041f\u043e\u043f\u0440\u043e", " addir", " Palav"], ["\u2013", "\u2014\"", "\u200b", ".@", "@", ",", ".|", "-\""], ["datap", ".\u2013", ".|", "-**", ".", "-\"", "\u2014\"", ","], ["\u2014\"", "\ufffd", "\t  ", "  \n", ".**", ".\"", "\u3002**", ".|"], ["   \n", "  \r\n", "\t  ", ".|", "_\"", "...**", " **\"", "-**"], ["  \n\n", ".|", "\\.", "...**", "  \n\n\n", "   \n\n", "...\"", " \n\n"], ["\u2014\"", ".|", "\\-", "\\.", "\u2013", ".\"_", "|\"", ".${"], ["\u2014\"", ".|", "\u00a0", "\"", "\u2013", ".\"", "\\.", "\u2014"], [" **\u300c", " **", " **\u00ab", " **\"", " **#", "-**", "...**", " _$"], [" **\u300c", " **\u00ab", " **", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **\"", "-**", "\uff1f**", " **\u25a0"], [" impactful", " goofy", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **\u300c", " savvy", " backstory", "\u2014even", " pricey"], [" savvy", " potentially", "\u2014even", " arguably", "\u2014or", " aggressively", " mundane", " effortlessly"], [" impactful", " savvy", " potentially", " goofy", " crafting", " backstory", "\u2014even", " touted"], [" myriad", " arguably", " savvy", " potentially", " mundane", " effortlessly", " touted", " akin"], [" savvy", " potentially", " mundane", " myriad", " arguably", " effortlessly", " touted", " enticing"], ["\u2014even", " arguably", " ostensibly", " myriad", " savvy", "\u2014or", " touted", " mundane"], ["\u2014even", " myriad", " arguably", "\u2014or", " seemingly", " ostensibly", " wildly", " outright"], [" myriad", "\u2014even", " genuinely", " seemingly", " ostensibly", " outright", "\u2014\"", " arguably"], [" ;;^", "\u76f8\u5173\u884c\u4e1a", " mundane", " persino", " MEDIATEK", " aggressively", " goofy", "\u60f3\u65b9"], [" ``", " mundane", " ;;^", " aggressively", " outright", " wildly", " myriad", " seemingly"], [" myriad", " seemingly", " ``", " wildly", " aggressively", " even", " outright", " merely"], [" \r\n\r\n", " \n\n", "\r\n\r\n", "  \n\n", " myriad", " seemingly", " genuinely", "   \n\n"], [" **", " \r\n\r\n", " **\"", " mundane", " wildly", " ?**", " aggressively", " myriad"], [" **", " aggressively", " mundane", " wildly", " myriad", " seemingly", " potentially", " even"], [" even", " seemingly", " \n\n", "\n\n", " wildly", " myriad", " arguably", " heavily"], [" even", " potentially", " aggressively", " wildly", " myriad", " seemingly", " heavily", " arguably"], [" even", " **", " occasionally", " potentially", " aggressively", " complex", " unexpectedly", " wildly"], [" even", " over", " occasionally", " more", " complex", " sometimes", " outside", " heavily"], [" even", " over", " more", " heavily", " much", " occasionally", " long", " sometimes"], [" even", " aggressively", " potentially", " over", " heavily", " unexpectedly", " complex", " wildly"], [" even", " potentially", "\u2014even", " aggressively", " complex", " weird", " wildly", " bizarre"], [" potentially", " even", " complex", " **", " aggressively", " unpredictable", "\u2014even", " weird"], [" **", " complex", " **\u201c", "\u2014even", " even", "\u2011", " awkward", " unpredictable"], [" **", " awkward", " inefficient", " unintention", " unexpectedly", " unpredictable", " weird", " complex"], [" awkward", " unexpectedly", " inefficient", " unpredictable", " poorly", "\u2011", " unintention", " complex"], [" inefficient", " unexpectedly", " unpredictable", " unintention", " poorly", " awkward", " unexpected", " complex"], [" unpredictable", " unexpectedly", " unexpected", " inefficient", " complex", " unintention", " awkward", " weird"], [" unpredictable", " inefficient", " unexpected", " complex", " unexpectedly", " slow", " animations", " unintention"], [" inefficient", " unpredictable", " animation", " animations", " hardware", " clutter", " slow", " complex"], [" inefficient", " clutter", " unpredictable", " animations", " animation", " hardware", " manipulation", " delays"], [" inefficient", " unpredictable", " animations", " clutter", " delays", " crashes", " animation", " blocking"], [" inefficient", " unpredictable", " delays", " clutter", " glitches", " crashes", " triggering", " inadvertently"], [" inefficient", " inadvertently", " unpredictable", " delays", " glitches", " erratic", " improperly", " manipulation"], [" inefficient", " glitches", " inadvertently", " unpredictable", " erratic", " improperly", " delays", " interruptions"], [" inefficient", " glitches", " improperly", " inadvertently", " unpredictable", " delays", " interference", " interruptions"], [" inefficient", " glitches", " interference", " improperly", " inadvertently", " erratic", " unpredictable", " interfering"], [" inefficient", " glitches", " erratic", " improperly", " interference", " delays", " interruptions", " interfering"], ["\u751a\u81f3\u662f", "\u751a\u81f3", "\u0e41\u0e21\u0e49\u0e41\u0e15\u0e48", " even", "even", " \u0434\u0430\u0436\u0435", "\u2014even", "\u54ea\u6015\u662f"], [" inefficient", "\u2014even", "\u0e41\u0e21\u0e49\u0e41\u0e15\u0e48", "even", " even", "\u751a\u81f3", " triggering", "\u751a\u81f3\u662f"], [" inefficient", " uninitialized", " triggering", "\u2014even", " GPU", " accessing", " CPU", "\u0e41\u0e21\u0e49\u0e41\u0e15\u0e48"], [" GPU", " uninitialized", " inefficient", "\u2014even", " CPU", " interacts", " accessing", " unpredictable"], [" allocations", " interacts", "alloc", "Alloc", " alloc", " garbage", " inefficient", " allocating"], [" allocations", " garbage", "alloc", " alloc", "Alloc", " allocation", " interacts", " allocating"], [" garbage", " GC", " even", " allocations", "alloc", " alloc", "Alloc", "even"], ["alloc", " allocations", " even", " garbage", " GC", " alloc", "Alloc", " allocation"], [" GC", " garbage", " allocations", " alloc", " memory", " even", "GC", "alloc"], [" alloc", " allocations", " allocation", " GC", "alloc", "Alloc", " garbage", " Alloc"], [" GC", " alloc", " allocations", " garbage", " allocation", "alloc", " even", "GC"], [" GC", " alloc", " allocations", " garbage", " allocation", " triggers", "alloc", " even"], [" GC", " alloc", " allocations", " triggers", " garbage", " blocks", " leaks", " allocation"]], "p": [[0.4541, 0.243, 0.1893, 0.1013, 0.0073, 0.0007, 0.0004, 0.0004], [0.9139, 0.0455, 0.0102, 0.0051, 0.0029, 0.002, 0.0018, 0.0017], [0.908, 0.0745, 0.0089, 0.0042, 0.0011, 0.0011, 0.0006, 0.0006], [0.0101, 0.0083, 0.0057, 0.0051, 0.0035, 0.0031, 0.0031, 0.0024], [0.0521, 0.0521, 0.046, 0.046, 0.046, 0.0316, 0.014, 0.0132], [0.0076, 0.0067, 0.0052, 0.0044, 0.0041, 0.0034, 0.0034, 0.0034], [0.0718, 0.0318, 0.0193, 0.016, 0.015, 0.0141, 0.0086, 0.0086], [0.0193, 0.0133, 0.0081, 0.0076, 0.0076, 0.0071, 0.0071, 0.0067], [0.1218, 0.0395, 0.0371, 0.0289, 0.0255, 0.0255, 0.0225, 0.0175], [0.0363, 0.0081, 0.0063, 0.0063, 0.0026, 0.0019, 0.0019, 0.0017], [0.1244, 0.0519, 0.0379, 0.0356, 0.0315, 0.0278, 0.0261, 0.0245], [0.075, 0.0402, 0.0294, 0.0167, 0.0084, 0.0051, 0.0048, 0.004], [0.2741, 0.1378, 0.0211, 0.0078, 0.0042, 0.0042, 0.0039, 0.0025], [0.011, 0.0081, 0.0081, 0.0056, 0.0049, 0.0046, 0.0043, 0.0038], [0.0187, 0.0155, 0.0129, 0.0088, 0.0065, 0.0054, 0.005, 0.005], [0.023, 0.0191, 0.0123, 0.009, 0.008, 0.007, 0.0066, 0.0066], [0.0216, 0.0191, 0.0191, 0.0149, 0.008, 0.0075, 0.007, 0.0066], [0.0093, 0.0064, 0.005, 0.0047, 0.0041, 0.0041, 0.0036, 0.0032], [0.0166, 0.0156, 0.0089, 0.0078, 0.0078, 0.0065, 0.0065, 0.0057], [0.0214, 0.013, 0.0074, 0.0058, 0.0054, 0.0054, 0.0037, 0.0035], [0.0123, 0.0116, 0.0051, 0.0051, 0.0043, 0.0043, 0.0043, 0.004], [0.0098, 0.0034, 0.0021, 0.0019, 0.0017, 0.0016, 0.0014, 0.0014], [0.0086, 0.0049, 0.0046, 0.0036, 0.0034, 0.003, 0.0028, 0.0022], [0.0087, 0.0082, 0.0072, 0.006, 0.0056, 0.0049, 0.0046, 0.0044], [0.0453, 0.0426, 0.0157, 0.0157, 0.0084, 0.0079, 0.0051, 0.0051], [0.0308, 0.0083, 0.0054, 0.0047, 0.0047, 0.0044, 0.0042, 0.0039], [0.0156, 0.0129, 0.0114, 0.0107, 0.0101, 0.0083, 0.0065, 0.0061], [0.0329, 0.0212, 0.0187, 0.0165, 0.0114, 0.0107, 0.0107, 0.01], [0.0423, 0.0156, 0.0156, 0.0146, 0.0137, 0.0137, 0.0121, 0.0101], [0.0745, 0.0166, 0.0147, 0.013, 0.0122, 0.0122, 0.0107, 0.0089], [0.1363, 0.0163, 0.0135, 0.0105, 0.0087, 0.0082, 0.0082, 0.0077], [0.1533, 0.0195, 0.0172, 0.0098, 0.0086, 0.0081, 0.0067, 0.0067], [0.1748, 0.0127, 0.0119, 0.0112, 0.0112, 0.0099, 0.0093, 0.0087], [0.1084, 0.0311, 0.0242, 0.0214, 0.0201, 0.0147, 0.0138, 0.0122], [0.0336, 0.0336, 0.0245, 0.018, 0.0149, 0.014, 0.0116, 0.0116], [0.0815, 0.0436, 0.0249, 0.0219, 0.0206, 0.0206, 0.0171, 0.0171], [0.0661, 0.0427, 0.0354, 0.0312, 0.0275, 0.0275, 0.0201, 0.0167], [0.0515, 0.0377, 0.0377, 0.0312, 0.0312, 0.0276, 0.0259, 0.0228], [0.0856, 0.0589, 0.0431, 0.0335, 0.0315, 0.0296, 0.0296, 0.0261], [0.1392, 0.0399, 0.0352, 0.0331, 0.0258, 0.0227, 0.0166, 0.0122], [0.053, 0.0342, 0.0221, 0.0183, 0.0162, 0.0162, 0.0152, 0.0134], [0.0694, 0.0396, 0.024, 0.0212, 0.0165, 0.0165, 0.0146, 0.0137], [0.1043, 0.0233, 0.0233, 0.0205, 0.0181, 0.015, 0.0125, 0.0117], [0.1016, 0.0374, 0.0241, 0.0213, 0.0188, 0.0146, 0.0129, 0.0121], [0.1424, 0.0492, 0.0263, 0.017, 0.0141, 0.0132, 0.0132, 0.0124], [0.1527, 0.0363, 0.032, 0.0249, 0.0234, 0.0151, 0.0151, 0.0142], [0.1748, 0.0533, 0.0442, 0.039, 0.0344, 0.0252, 0.0163, 0.0153], [0.1095, 0.0429, 0.0429, 0.0429, 0.0314, 0.023, 0.0216, 0.019], [0.0901, 0.0453, 0.0353, 0.0353, 0.0331, 0.0258, 0.0214, 0.0214], [0.0933, 0.0774, 0.0365, 0.0173, 0.0173, 0.0152, 0.0152, 0.0152], [0.097, 0.0755, 0.071, 0.0404, 0.0404, 0.038, 0.0357, 0.0261], [0.0475, 0.0446, 0.0419, 0.0326, 0.0254, 0.0239, 0.0224, 0.0186], [0.1634, 0.0365, 0.0302, 0.0284, 0.0235, 0.0183, 0.0162, 0.0152], [0.0657, 0.0545, 0.0545, 0.0399, 0.031, 0.0292, 0.0257, 0.0156], [0.1427, 0.1427, 0.1111, 0.0981, 0.0525, 0.0361, 0.0318, 0.0281], [0.1911, 0.1489, 0.1489, 0.0797, 0.0621, 0.0376, 0.0293, 0.0293], [0.5766, 0.1002, 0.078, 0.0418, 0.0325, 0.0224, 0.0136, 0.0136], [0.1587, 0.1587, 0.1091, 0.1091, 0.1091, 0.0963, 0.0584, 0.019], [0.4644, 0.1331, 0.0555, 0.0432, 0.0336, 0.0262, 0.0262, 0.0262], [0.343, 0.208, 0.1114, 0.0983, 0.0765, 0.0526, 0.0319, 0.0091], [0.6628, 0.1152, 0.048, 0.048, 0.0291, 0.0138, 0.0095, 0.0095], [0.5521, 0.2608, 0.0514, 0.0214, 0.0189, 0.013, 0.0101, 0.0079], [0.3857, 0.3403, 0.0522, 0.0522, 0.0247, 0.0247, 0.0169, 0.015]], "ranks": {"Rust": [25980, 59721, 38497, 14276, 11257, 9659, 22487, 13764, 17848, 45775, 60107, 80047, 45286, 52053, 105536, 103334, 116872, 101918, 135688, 94359, 115722, 118829, 107197, 57737, 40731, 59149, 16206, 10584, 7746, 9611, 8479, 9745, 7866, 12007, 8435, 8136, 3471, 2626, 2196, 2157, 1799, 1643, 1469, 1691, 1612, 1563, 1405, 1334, 844, 1846, 6255, 11069, 4245, 2859, 5022, 3596, 694, 556, 515, 399, 244, 262, 262]}}, {"pos": 561, "top": [[".", ",", " \u2013", "\u2013", "\u2026", "\u2026..", "\u2026.", "\u2026\u2026"], [" \u200b\u200b", " \u2013", " old", " He", " very", " Eve", "\u200b\u200b", " We"], [".", "\u2026", " \u200b\u200b", "\u2026\u2026", "\u2026..", ",", "\u2013", " \u2013"], [" Guta", " Blowjob", "NotSupportedException", "\u5386\u5386", "\u0103\u021b", " cumshot", " Nues", "\u54e5\u534e"], ["est", ".@", " \u200b\u200b", "\u2026\u2026", "@", "ably", "ously", "##"], [" \u200b\u200b", "\u2026\u2026", "est", "favorite", "\u2026..", "lv", "  \n", "ably"], ["  \n", "\u2026\u2026", "ably", "est", ".\u201d", "\n\n", "##", ".'"], ["ably", "est", "  \n", "ement", " glimps", "ishly", "ously", "\u064b\u0627"], ["  \n", "\n\n", "\u2018", "\u00ad", "  \n\n", "!", "!\u201d", "(!"], ["\u00ad", ",", "ably", " \u00ad", "even", "-even", "est", "\u00adt"], ["\u00ad", "est", "ably", "r", "even", " glimps", " even", "an"], [" rumored", " scary", " unimagin", " glimps", " freaking", " showcase", " surprising", "ishly"], [" rumored", " freaking", " scary", " unimagin", " glimps", " downright", " showcase", " crazy"], [" freaking", " scary", " rumored", " unimagin", " flashy", " crazy", " glimps", " showcase"], [" truly", " even", " folks", " savvy", " incredibly", " wildly", " freaking", " outright"], [" wildly", " savvy", " folks", " incredibly", " even", " truly", " freaking", " scary"], [" savvy", " incredibly", " even", " scary", " wildly", " freaking", " outright", " rumored"], [" savvy", " goofy", " freaking", " downright", " scary", " outright", " rumored", " flashy"], [" goofy", " freaking", " savvy", " outright", " pricey", " tweaking", "-esque", " downright"], [" outright", " smack", " pricey", " goofy", " wildly", " tweaking", " savvy", " freaking"], [" outright", " pricey", "\u54ea\u6015\u662f", " wildly", " goofy", " tweaking", " oddly", "\u54ea\u6015"], ["\u54ea\u6015\u662f", " siquiera", " goofy", " freaking", " outright", "\u3059\u3089", " pricey", " oddly"], [" outright", " freaking", "\u54ea\u6015\u662f", " wildly", " mundane", " pricey", " tini", " goofy"], [" outright", " even", " wildly", " seemingly", " barely", " arguably", " though", " merely"], ["  \n\n", "   \n\n", "Though", " outright", " \r\n\r\n", " \n\n", "\r\n\r\n", " though"], ["\u54ea\u6015\u662f", " outright", " pricey", " mundane", " oddly", " **'", " tini", " wildly"], [" ___", "\u54ea\u6015\u662f", " mundane", " _____", " outright", " pricey", " oddly", " _"], [" even", " _", " oddly", " outright", " wildly", " mundane", " seemingly", " barely"], [" even", " oddly", " mundane", " wildly", " barely", " seemingly", " outright", " surprisingly"], [" even", " _", " mundane", " _____", " wildly", " oddly", " ____", " **"], [" even", " wildly", " mundane", " oddly", " dozens", " barely", " just", " seemingly"], [" even", " seemingly", " just", " wildly", " oddly", " barely", " tiny", " surprisingly"], [" even", "\u2014even", " mundane", " oddly", " casual", " wildly", " tiny", " odd"], [" even", "\u2014even", " mundane", " oddly", " tiny", " casual", " weird", " surprisingly"], [" even", "\u2014even", " mundane", " sloppy", " awkward", " oddly", " weird", "\u54ea\u6015\u662f"], ["\u2014even", " even", " awkward", " sloppy", " weird", " tiny", " mundane", " slower"], [" awkward", "\u2014even", " slower", " slow", " even", " weird", " sloppy", " unintention"], [" even", " awkward", " sloppy", "\u2014even", " slow", " unexpected", " unintention", " unexpectedly"], [" even", "\u2014even", " awkward", " unexpectedly", " surprisingly", " unexpected", " unintention", " weird"], [" even", " unpredictable", "\u2014even", " weird", " awkward", " unexpected", " sloppy", " surprisingly"], [" even", " unpredictable", " slow", " garbage", " unexpected", " weird", " memory", " awkward"], [" even", " garbage", " memory", "\u2014even", " debugging", " slow", " CPU", " clutter"], [" garbage", " debugging", " clutter", " memory", " CPU", " slow", " unpredictable", " processing"], [" clutter", " garbage", " debugging", " memory", " unpredictable", " inefficient", " processing", " slow"], [" even", " garbage", " clutter", "even", " debugging", " mundane", " inefficient", " unpredictable"], [" even", "\u54ea\u6015\u662f", "even", " garbage", "\u54ea\u6015", "\u2014even", " mundane", " clutter"], [" even", "\u54ea\u6015\u662f", "even", "\u54ea\u6015", "\u5373\u4f7f\u662f", " \u0434\u0430\u0436\u0435", "\u2014even", "\u5373\u4fbf\u662f"], ["\u54ea\u6015\u662f", " even", "\u54ea\u6015", "even", " simple", "\u2014even", "\u5373\u4f7f\u662f", "\u7b80\u5355\u7684"], ["\u54ea\u6015\u662f", " mundane", " poorly", " debugging", " clutter", " inefficient", " simple", " sloppy"], [" inefficient", " clumsy", " poorly", " glitches", " debugging", " mundane", " clutter", "-heavy"], [" sekadar", " inefficient", " debugging", "\u7b80\u5355\u7684", "-heavy", " poorly", " clumsy", "\u4e00\u4e2a\u7b80\u5355\u7684"], [" inefficient", "-heavy", " debugging", " poorly", " uninitialized", " excessive", " sekadar", "\u7b80\u5355\u7684"], [" inefficient", "-heavy", "\u7b80\u5355\u7684", " excessive", " uninitialized", " poorly", " heavy", " slow"], [" inefficient", " uninitialized", " excessive", " poorly", "-heavy", " simple", "\u7b80\u5355\u7684", " buffering"], [" inefficient", " garbage", " allocating", " allocations", "alloc", " malloc", "Alloc", " alloc"], [" garbage", " inefficient", " allocating", " allocations", "alloc", " alloc", " malloc", " allocation"], [" garbage", " inefficient", " GC", " alloc", "alloc", " allocations", "\u5783\u573e", " allocating"], [" garbage", " alloc", "alloc", " allocations", " inefficient", " allocating", " GC", "Alloc"], [" garbage", " GC", " inefficient", " alloc", " allocations", "alloc", "_GC", " allocating"], [" garbage", " GC", " alloc", " allocations", " allocation", " allocating", "alloc", " inefficient"], [" GC", " garbage", " alloc", "GC", " allocations", " inefficient", " allocation", "_GC"], [" GC", " garbage", " alloc", " allocations", "GC", " allocation", " JIT", "_GC"], [" GC", " garbage", " alloc", " allocations", " allocation", " inefficient", " complex", " JIT"]], "p": [[0.7917, 0.0946, 0.0348, 0.0198, 0.0154, 0.0128, 0.0073, 0.0053], [0.5345, 0.0321, 0.0036, 0.0026, 0.0019, 0.0018, 0.0016, 0.0016], [0.2136, 0.1771, 0.1468, 0.0948, 0.0836, 0.0507, 0.0421, 0.0349], [0.0079, 0.0037, 0.0014, 0.0014, 0.0014, 0.0011, 0.001, 0.0009], [0.074, 0.0155, 0.0113, 0.0107, 0.0061, 0.005, 0.0044, 0.0042], [0.0549, 0.0229, 0.019, 0.0115, 0.0074, 0.0062, 0.0058, 0.0048], [0.234, 0.063, 0.0263, 0.0232, 0.0141, 0.0091, 0.0066, 0.0055], [0.0875, 0.0565, 0.0365, 0.0172, 0.0087, 0.0076, 0.0076, 0.006], [0.0859, 0.0489, 0.0489, 0.0336, 0.0297, 0.0297, 0.0217, 0.0169], [0.1407, 0.0277, 0.0123, 0.0102, 0.0096, 0.0075, 0.0066, 0.0062], [0.0426, 0.0292, 0.0138, 0.013, 0.0115, 0.0101, 0.0089, 0.0084], [0.0118, 0.0111, 0.0087, 0.0068, 0.0063, 0.0056, 0.0049, 0.0046], [0.016, 0.0117, 0.011, 0.0097, 0.0067, 0.0049, 0.0046, 0.0043], [0.028, 0.017, 0.015, 0.0085, 0.0075, 0.0071, 0.0066, 0.0055], [0.0262, 0.0218, 0.0192, 0.015, 0.0141, 0.0109, 0.0103, 0.0097], [0.0331, 0.0311, 0.0311, 0.0311, 0.0213, 0.0188, 0.0107, 0.0107], [0.0272, 0.0146, 0.0137, 0.0129, 0.0121, 0.0114, 0.01, 0.0083], [0.0124, 0.0071, 0.0059, 0.0055, 0.0055, 0.0049, 0.0043, 0.0038], [0.0126, 0.0118, 0.0081, 0.0076, 0.0063, 0.0056, 0.0056, 0.0056], [0.0106, 0.0073, 0.006, 0.005, 0.005, 0.0047, 0.0044, 0.0039], [0.0123, 0.0048, 0.0045, 0.0045, 0.0035, 0.0031, 0.0027, 0.0026], [0.0061, 0.0054, 0.0054, 0.0048, 0.0048, 0.004, 0.0024, 0.0021], [0.0171, 0.0059, 0.0059, 0.0052, 0.0049, 0.0041, 0.0038, 0.0038], [0.0214, 0.0107, 0.0074, 0.0054, 0.0051, 0.0045, 0.0045, 0.0045], [0.0558, 0.016, 0.015, 0.0133, 0.0097, 0.0076, 0.0055, 0.0052], [0.0089, 0.0079, 0.0054, 0.0051, 0.0048, 0.0048, 0.0048, 0.0048], [0.0146, 0.0094, 0.0094, 0.0089, 0.0078, 0.0065, 0.0065, 0.0061], [0.0687, 0.0237, 0.0153, 0.0144, 0.0144, 0.0119, 0.0119, 0.0087], [0.1127, 0.0222, 0.0222, 0.0222, 0.0099, 0.0087, 0.0082, 0.006], [0.1424, 0.0218, 0.0205, 0.017, 0.017, 0.0141, 0.0141, 0.0132], [0.3116, 0.0107, 0.01, 0.0083, 0.0083, 0.0065, 0.0054, 0.005], [0.3056, 0.0162, 0.0152, 0.0143, 0.0134, 0.0105, 0.0098, 0.0081], [0.2791, 0.0585, 0.0168, 0.0123, 0.0102, 0.0096, 0.0084, 0.007], [0.2315, 0.1404, 0.0148, 0.0139, 0.0115, 0.0084, 0.0074, 0.0074], [0.0571, 0.0504, 0.0287, 0.0113, 0.0113, 0.0113, 0.0093, 0.0088], [0.0977, 0.0671, 0.0382, 0.0218, 0.0192, 0.015, 0.0132, 0.0124], [0.0632, 0.0558, 0.0435, 0.0384, 0.0299, 0.0264, 0.0233, 0.015], [0.0674, 0.0558, 0.0281, 0.0281, 0.0193, 0.0193, 0.016, 0.015], [0.1956, 0.1047, 0.0282, 0.0206, 0.0194, 0.0182, 0.0171, 0.0161], [0.1003, 0.0608, 0.0474, 0.0224, 0.021, 0.021, 0.0186, 0.0164], [0.0656, 0.0398, 0.0374, 0.0227, 0.0166, 0.0156, 0.0156, 0.0138], [0.0378, 0.0295, 0.0295, 0.0295, 0.026, 0.0244, 0.0202, 0.019], [0.0441, 0.0303, 0.0284, 0.0196, 0.0173, 0.0162, 0.0143, 0.0126], [0.0388, 0.0388, 0.0221, 0.0207, 0.0162, 0.0152, 0.0152, 0.0152], [0.1856, 0.0303, 0.0236, 0.0173, 0.0162, 0.0152, 0.0143, 0.0119], [0.3768, 0.0479, 0.0329, 0.0166, 0.0129, 0.0121, 0.0121, 0.01], [0.6989, 0.0946, 0.0835, 0.0307, 0.0088, 0.0064, 0.0064, 0.0044], [0.2793, 0.2465, 0.0907, 0.08, 0.019, 0.0158, 0.0123, 0.0115], [0.0289, 0.0289, 0.0289, 0.0255, 0.0225, 0.0186, 0.0145, 0.0145], [0.0531, 0.0303, 0.0303, 0.0284, 0.0267, 0.0195, 0.0183, 0.0172], [0.0334, 0.0295, 0.0168, 0.0158, 0.0148, 0.0139, 0.0123, 0.0102], [0.1548, 0.0269, 0.0209, 0.0197, 0.0174, 0.0163, 0.0119, 0.0119], [0.4623, 0.0335, 0.023, 0.0216, 0.0158, 0.014, 0.0102, 0.009], [0.3435, 0.0385, 0.0282, 0.022, 0.0206, 0.0161, 0.0133, 0.0097], [0.3825, 0.0967, 0.0665, 0.0587, 0.0518, 0.0457, 0.0403, 0.0356], [0.2147, 0.1895, 0.1302, 0.079, 0.0697, 0.0543, 0.0329, 0.0256], [0.8872, 0.0184, 0.0162, 0.0087, 0.0087, 0.0077, 0.0077, 0.0077], [0.449, 0.1002, 0.0884, 0.0689, 0.0418, 0.0418, 0.0418, 0.0325], [0.5031, 0.2097, 0.053, 0.0364, 0.025, 0.0195, 0.0172, 0.0152], [0.5306, 0.1723, 0.1045, 0.0384, 0.0339, 0.0233, 0.0233, 0.011], [0.6217, 0.2937, 0.0213, 0.0129, 0.0061, 0.0061, 0.0054, 0.0047], [0.7227, 0.1613, 0.0524, 0.0103, 0.008, 0.008, 0.0036, 0.0036], [0.6678, 0.116, 0.1024, 0.0202, 0.0139, 0.0115, 0.0065, 0.0062]], "ranks": {"Rust": [101493, 152817, 126600, 92565, 53283, 105121, 117037, 79121, 77938, 46806, 40388, 47288, 45302, 74584, 48752, 22561, 47753, 108050, 137565, 79820, 105064, 116780, 94198, 44189, 42408, 58565, 26976, 10320, 6451, 6509, 5400, 5362, 5676, 9392, 8660, 8275, 2480, 2096, 1768, 1072, 959, 1013, 760, 796, 556, 549, 506, 782, 599, 1276, 3165, 9810, 4992, 3119, 5880, 4324, 2277, 1226, 1131, 866, 539, 460, 366]}}, {"pos": 562, "top": [["  \n", " (\u201e", "\ufffd", "s", " McCoy", "\u00ac", ".", " AVC"], ["  \n\n", "  \n", " \\\"", " \u00ac", " GC", " (\u201e", "schild", "   \n"], [" GC", " (\u201e", ":\\\"", "\u201a", " gc", "GC", "(gc", ",\\\""], [" Shemale", " ``(", " \\\"%", " Ejem", " \\\"{", " YYS", " milfs", " GC"], [" GC", " @_", " (@", " [@", " gc", " @(", " *@", " %@"], [" GC", " gc", ".gc", " @_", "GC", " Guta", "avanaugh", "(gc"], [" GC", " gc", " @_", "  \n\n", " _____", "GC", "  \n", ".gc"], [" GC", "  \n\n", " gc", ".gc", " [@", " _____", "  \n", " @_"], ["  \n\n", " GC", "   \n\n", " [@", ".gc", " gc", " {.", " _____"], [" GC", ".gc", "(gc", "\\n", "\\xc", " gc", " [@", "\u00c3"], ["\\n", " [@", "\\xc", " GC", " @_", "\\.", " _____", " ____"], [".gc", " GC", " ____", " ___", " _____", " _)", " _$", "%C"], [" GC", ".gc", "s", "(gc", "GC", " gc", " Teixe", "\u00c3"], [" GC", "s", ".gc", "(gc", " gc", "GC", "\u00c3", " VC"], ["s", " GC", " \ufffd", "\u00c3", "&", "-", " &", " OC"], ["s", " GC", "\u00c3", " &", "&", " arguably", " OC", " gc"], ["s", " GC", "\u00c3", "&", "-", " gc", " myriad", " ops"], ["s", " GC", "\u00c3", " gc", ".gc", "GC", "(gc", " ops"], [" GC", ".gc", "s", " gc", "(gc", "GC", "\u00c3", "Sci"], [" GC", ".gc", "\u00c3", " gc", "(gc", "GC", "s", "&"], ["<|endoftext|>", "  \n\n", " \n\n", "&", "@", " GC", "s", "   \n\n"], [".gc", " GC", "(gc", " ``", "trash", " %+", " gc", " ``("], [" GC", ".gc", " ``", " %+", "(gc", " ``(", " gc", "\u00c3"], [" ``", " --", " GC", " `", " &", " ,", ".gc", "\u00c3"], [" --", " ``", " _", " GC", " `", "\u00c3", " `_", ".gc"], [" ``", " --", " `_", " _", " ._", " ____", " GC", " ___"], [" ``", " _", " ._", " `_", " --", " ,", " garbage", " ``("], [" _", " ,", " --", " ``", " `", " `_", " ___", " ."], [" _", " ``", " ._", " `_", " ,", " --", "_.", " ..."], [" ____", " ._", " ___", " ...", " .**", " _", "_.", " _____"], [" .**", " .", " ._", " ...", " stuff", "_.", " garbage", " ``"], [" .", " .**", " ...", " /", "/", " ._", " stuff", " .*"], [" .", "/", " /", " ,", " (", " over", " stuff", " dead"], ["-heavy", "/", "-ish", " meltdown", " stuff", "/social", "\\-", "/memory"], ["/", "-heavy", "-ish", " meltdown", "/memory", "/G", "/etc", "/social"], ["/", "-heavy", "/memory", "-ish", "/G", " /", " .**", " .*"], ["/", "-heavy", " /", "/memory", "-ish", " glitches", " slowdown", " garbage"], ["/", " /", "-heavy", " slowdown", " garbage", "ptime", "-ish", " (~"], [" garbage", " cleanup", "/", " JVM", "/memory", " slowdown", " scav", "-heavy"], [" garbage", " cleanup", "\u5783\u573e", " scav", " JVM", "/memory", " trash", "\u6e05\u7406"], [" garbage", " cleanup", "\u5783\u573e", " scav", " JVM", "/memory", " trash", "\u6e05\u7406"], [" cleanup", " garbage", " scav", "\u5783\u573e", " JVM", "Cleanup", "\u6e05\u7406", "/memory"], [" cleanup", " garbage", " scav", "\u5783\u573e", " JVM", " trash", "\u6e05\u7406", "Cleanup"], [" cleanup", " garbage", " scav", " JVM", "-trigger", "\u5783\u573e", "\u6e05\u7406", " pauses"], [" cleanup", " garbage", " JVM", "-trigger", " scav", " resets", " pauses", " triggers"], [" cleanup", " garbage", "-trigger", " scav", " JVM", " pauses", " crashes", " triggers"], [" cleanup", "-trigger", " triggers", " garbage", " glitches", " JVM", " pauses", " crashes"], [" cleanup", "/", "-trigger", " glitches", " triggers", " (~", " spikes", " JVM"], ["-trigger", " triggers", " glitches", " cleanup", " spikes", " triggered", " garbage", "-heavy"], ["-trigger", " cleanup", " (~", "-heavy", " triggers", " glitches", " (**", " spikes"], ["-trigger", " (**", " cleanup", "(G", "-heavy", " (", "/G", " triggers"], [" (**", "-trigger", "(G", " cleanup", "-heavy", "/G", " downtime", " (*"], ["-trigger", "-heavy", " (**", " pauses", " cleanup", " spikes", "-intensive", " downtime"], ["-heavy", "-trigger", " pauses", " cleanup", " spikes", " (**", "(G", "-intensive"], [" GC", "GC", " garbage", " gc", "gc", ".gc", "(gc", "-heavy"], [" garbage", " GC", "\u5783\u573e", "GC", " trash", " gc", " pauses", "gc"], [" GC", "GC", " garbage", "gc", " gc", "\u5783\u573e", ".gc", "(gc"], [" GC", "GC", " garbage", " gc", ".gc", "gc", "(gc", " pauses"], [" GC", "GC", " gc", " garbage", "(gc", "gc", ".gc", " pauses"], [" GC", "GC", " pauses", " garbage", " pause", " gc", ".gc", "gc"], [" pauses", " pause", " GC", " Pause", "GC", " garbage", " spikes", " paused"], [" pauses", " pause", " GC", " Pause", "GC", " spikes", " garbage", " paused"], [" pauses", " pause", " GC", " pa", ",", "GC", " spikes", " garbage"]], "p": [[0.0409, 0.03, 0.016, 0.0104, 0.0104, 0.0091, 0.0091, 0.0071], [0.0844, 0.0657, 0.0617, 0.0545, 0.0424, 0.0375, 0.0213, 0.0147], [0.1667, 0.0396, 0.0372, 0.029, 0.0272, 0.0199, 0.0165, 0.0129], [0.0425, 0.0122, 0.0114, 0.0108, 0.0101, 0.0079, 0.0061, 0.0061], [0.4225, 0.0572, 0.0445, 0.027, 0.0238, 0.0093, 0.0073, 0.0068], [0.252, 0.0161, 0.0104, 0.0086, 0.0081, 0.0076, 0.0067, 0.0052], [0.4345, 0.0487, 0.0278, 0.0278, 0.0261, 0.0216, 0.0216, 0.0168], [0.3669, 0.1437, 0.0871, 0.0235, 0.022, 0.022, 0.0207, 0.0194], [0.6063, 0.0498, 0.0284, 0.0207, 0.0152, 0.0134, 0.0104, 0.0098], [0.0615, 0.0615, 0.0397, 0.0329, 0.0241, 0.0241, 0.0176, 0.0146], [0.2187, 0.0553, 0.0488, 0.0357, 0.0315, 0.0231, 0.0217, 0.0203], [0.0292, 0.0292, 0.0274, 0.0166, 0.0138, 0.0129, 0.0101, 0.0089], [0.1122, 0.0342, 0.0183, 0.0134, 0.0092, 0.0072, 0.0052, 0.0049], [0.1924, 0.0708, 0.0356, 0.0179, 0.0179, 0.0096, 0.0066, 0.0051], [0.2922, 0.0421, 0.0199, 0.0128, 0.0078, 0.0073, 0.0061, 0.0057], [0.2021, 0.0897, 0.0213, 0.0156, 0.0114, 0.0083, 0.0083, 0.0083], [0.5246, 0.0667, 0.023, 0.0085, 0.008, 0.0066, 0.0055, 0.0043], [0.2152, 0.139, 0.0424, 0.02, 0.0166, 0.0138, 0.0121, 0.0114], [0.1841, 0.0411, 0.0363, 0.032, 0.0194, 0.0161, 0.0133, 0.0092], [0.1526, 0.032, 0.0301, 0.0265, 0.0194, 0.0118, 0.0098, 0.0086], [0.3604, 0.1812, 0.038, 0.0158, 0.014, 0.0075, 0.0062, 0.0062], [0.0369, 0.0224, 0.0068, 0.0044, 0.0044, 0.0037, 0.0028, 0.0028], [0.048, 0.031, 0.0273, 0.0078, 0.0057, 0.0057, 0.0045, 0.0033], [0.0826, 0.0729, 0.0304, 0.0196, 0.0153, 0.0144, 0.0072, 0.0053], [0.0497, 0.0172, 0.0172, 0.0126, 0.0092, 0.0076, 0.0067, 0.0067], [0.0321, 0.0172, 0.0134, 0.0134, 0.0072, 0.0063, 0.0059, 0.0049], [0.0906, 0.0178, 0.013, 0.0084, 0.0084, 0.0074, 0.0066, 0.0058], [0.1342, 0.1184, 0.1113, 0.0595, 0.016, 0.0117, 0.0086, 0.0076], [0.1024, 0.0849, 0.0454, 0.0228, 0.0178, 0.0167, 0.013, 0.0101], [0.145, 0.1129, 0.0826, 0.0729, 0.0415, 0.039, 0.0286, 0.0268], [0.0292, 0.0274, 0.0213, 0.0166, 0.0147, 0.0107, 0.0095, 0.0057], [0.0354, 0.0244, 0.0178, 0.0115, 0.0115, 0.0108, 0.0095, 0.0084], [0.0733, 0.0346, 0.0185, 0.0106, 0.0088, 0.0068, 0.0064, 0.005], [0.0219, 0.0125, 0.0097, 0.0059, 0.0052, 0.0036, 0.0036, 0.0034], [0.0179, 0.0116, 0.009, 0.0062, 0.0062, 0.0045, 0.0043, 0.0038], [0.0423, 0.0129, 0.0083, 0.0074, 0.0065, 0.0051, 0.0045, 0.0042], [0.0309, 0.0107, 0.0065, 0.0061, 0.0061, 0.0054, 0.0054, 0.005], [0.0388, 0.0104, 0.0092, 0.0059, 0.0056, 0.0052, 0.0046, 0.0046], [0.0524, 0.016, 0.016, 0.0132, 0.011, 0.0091, 0.008, 0.008], [0.3188, 0.0858, 0.052, 0.0279, 0.0149, 0.0124, 0.009, 0.0085], [0.2801, 0.1499, 0.0356, 0.0277, 0.0179, 0.0109, 0.0096, 0.007], [0.5191, 0.1794, 0.0228, 0.0122, 0.0115, 0.0115, 0.0108, 0.0074], [0.3939, 0.2244, 0.0304, 0.0163, 0.0093, 0.0072, 0.0064, 0.0064], [0.3243, 0.0929, 0.0283, 0.0235, 0.0134, 0.0118, 0.0092, 0.0067], [0.3332, 0.1016, 0.0257, 0.0241, 0.0177, 0.0129, 0.0129, 0.0114], [0.2784, 0.0798, 0.0259, 0.0215, 0.0202, 0.0157, 0.0139, 0.0139], [0.1734, 0.0387, 0.0387, 0.0342, 0.0235, 0.0172, 0.0161, 0.0142], [0.0858, 0.0806, 0.0358, 0.0316, 0.0316, 0.0204, 0.0192, 0.0169], [0.1963, 0.0466, 0.0387, 0.0321, 0.022, 0.0161, 0.0151, 0.0151], [0.1906, 0.0701, 0.0425, 0.0425, 0.0275, 0.0258, 0.0214, 0.013], [0.1704, 0.1247, 0.0627, 0.052, 0.0405, 0.0191, 0.0159, 0.014], [0.1349, 0.105, 0.0871, 0.0678, 0.0599, 0.0301, 0.0151, 0.0142], [0.2687, 0.1438, 0.082, 0.0342, 0.0221, 0.0183, 0.0161, 0.0142], [0.2045, 0.2045, 0.0852, 0.0752, 0.0456, 0.0216, 0.0202, 0.0139], [0.5423, 0.3289, 0.0504, 0.0164, 0.0145, 0.0113, 0.0047, 0.0037], [0.7497, 0.1303, 0.0543, 0.0479, 0.0035, 0.0021, 0.0019, 0.0014], [0.7489, 0.1671, 0.0697, 0.0035, 0.0031, 0.0027, 0.0024, 0.0013], [0.7907, 0.1764, 0.0145, 0.0041, 0.0037, 0.0029, 0.0025, 0.0022], [0.8077, 0.1802, 0.0029, 0.0023, 0.0023, 0.0016, 0.0009, 0.0008], [0.5794, 0.166, 0.1293, 0.0476, 0.042, 0.0106, 0.005, 0.005], [0.7815, 0.1744, 0.0208, 0.006, 0.0046, 0.0032, 0.0032, 0.0007], [0.8383, 0.1457, 0.0044, 0.0034, 0.001, 0.0009, 0.0007, 0.0006], [0.8918, 0.0646, 0.0127, 0.006, 0.0053, 0.0034, 0.002, 0.0018]], "ranks": {"Rust": [64760, 86663, 54656, 109920, 18858, 16685, 19135, 14124, 38009, 25820, 25020, 34308, 9527, 5070, 5381, 4274, 5148, 9730, 24594, 15726, 21655, 9604, 8090, 2934, 2585, 4683, 3099, 2115, 1820, 2844, 2415, 2917, 3124, 4812, 8304, 11144, 5407, 3666, 2018, 1295, 929, 1146, 1373, 2025, 1369, 809, 1424, 1816, 1182, 2687, 9910, 12779, 13997, 12536, 15000, 25000, 24746, 18522, 18304, 8301, 11284, 7470, 7241]}}, {"pos": 563, "top": [[".", ",", "\u00a0\u00a0", "\u2013", ";", " ", "\u2026.", " \u2013"], ["\u2014.", " \u2013,", "[\"@", " [@", " \u2014", "\u2014\"", " ()->", "   \n\n"], ["\u2013", ",", ".\u2013", "\u2026..", ".", " \u2013,", "\u2026.", "\u2014."], [" St\u00e9ph", " Ejem", " Blowjob", " Shemale", " Geile", " milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " \u041a\u0440\u0430\u0441\u0438"], [" (@", " \t ", " \n\n\n\n\n", "\u2014.", " \u201c.", " \u200e", " @_", "\u00a0\u00a0"], [" \t ", " \u200b\u200b", " \n\n\n\n\n", "\u00a0\u00a0", " \u201c.", "\u2014.", "%!", " \u200e"], ["\u2014.", " \t ", "\u201d\u2014", "%!", "   \n", "      \n", "!\u201c", " _)"], [" _)", "   \n", " _.", " \t ", " \t\n", "  \n    \n", "      \n", "    \n"], ["  \n    \n", "!\u201d.", "\u2014.", " [].", "   \n\n", " \n    \n", " _)", " \n            \n"], ["\u2014and", "\u52e4\u52e4\u6073\u6073", "\u2014but", " Pergun", "\u2014or", "\u2014.", " \t ", "rompt"], ["\u2014", "\u2014and", "\u2014.", "\u2014but", ".\u2014", "\u2014\"", ")\u2014", "\u2014or"], ["rompt", "\u52e4\u52e4\u6073\u6073", " \t ", " Pergun", "\u2014and", "  \n    \n", " momentarily", " **\u2014"], ["\u52e4\u52e4\u6073\u6073", "rompt", " Pergun", " momentarily", " intermitt", " Ejem", "\u2014and", " Ouver"], [" intermitt", " momentarily", "\u52e4\u52e4\u6073\u6073", "rompt", " midway", " lingering", "\u2014and", " Pergun"], [" \u2014", " midway", " momentarily", "\u2014", " intermitt", "\u2014and", " effortlessly", "\u2014even"], [" \u2014", " midway", " lingering", " entirety", " swiftly", " myriad", " effortlessly", " hefty"], [" lingering", " midway", " myriad", " hefty", " entirety", " effortlessly", " wildly", " swiftly"], [" lingering", " midway", " hefty", " momentarily", " \u2014", " entirety", " amid", " myriad"], [" lingering", " midway", " amid", " momentarily", " hefty", " myriad", " \u2014", " tweaks"], [" \u2014", " midway", " amid", " lingering", " myriad", " swiftly", " momentarily", " amidst"], [" \u2014", " midway", " swiftly", " myriad", " lingering", " amid", "<|endoftext|>", " amidst"], [" amid", " midway", " lingering", " momentarily", "ksam", " fleeting", " moments", "\u9877\u523b"], [" midway", " momentarily", " amid", " lingering", " amidst", " intermitt", " moments", " --"], [" midway", " --", " momentarily", " amid", " lingering", " ,", " \u2014", " intermitt"], [" \n\n", " --", " \u2014", " midway", " amidst", " lingering", " momentarily", " amid"], [" \n\n", " midway", " lingering", " momentarily", " pauses", " ---", " microseconds", " moments"], [" pauses", " moments", " momentarily", " lingering", " microseconds", " durations", " disruptions", " midway"], [" ,", " --", " \n\n", " during", " moments", " heavily", " momentarily", " over"], [" moments", " \n\n", " during", " ,", " hours", " time", " pauses", " lingering"], [" ...", " \n  \n", " moments", " pauses", " \n\n", " during", " \n", " hours"], [" during", " moments", " \n\n", " lingering", " time", " .", " ,", " hours"], [" during", " moments", " .", " time", " \u2014", " lingering", " ...", " hours"], [" moments", " \u2014", " shifts", " pauses", " lingering", " time", " hours", " even"], [" \u2014", " moments", "\u2014even", " lingering", " shifts", " pauses", " spikes", " wildly"], [" \u2014", " pauses", " lingering", " moments", "\u2014even", " microseconds", " spikes", " unpredictable"], [" \u2014", "\u2014even", " pauses", " milliseconds", " moments", "\u2014or", " unpredictable", " microseconds"], [" \u2014", "\u2014even", " unpredictable", " pauses", " milliseconds", " inevitable", " delays", "\u2014or"], [" \u2014", "\u2014even", " pauses", " milliseconds", " unpredictable", " delays", " anywhere", " inevitable"], [" \u2014", "\u2014even", " pauses", " unpredictable", " milliseconds", " delays", " anywhere", " even"], ["\u2014even", " pauses", " milliseconds", " unpredictable", " \u2014", " delays", " pause", " interruptions"], [" pauses", " delays", " unpredictable", " interruptions", " milliseconds", " pause", " during", "\u2014even"], ["\u2014even", " delays", " unpredictable", " pauses", " interruptions", " milliseconds", " \u2014", " timing"], [" interruptions", " delays", " pauses", " milliseconds", " unpredictable", " spikes", " jitter", " pause"], [" delays", " interruptions", " unpredictable", " during", " milliseconds", " pauses", " timing", " spikes"], [" during", " delays", " interruptions", " unpredictable", " pauses", " spikes", " triggered", " milliseconds"], [" delays", " during", " interruptions", " unpredictable", " spikes", " anywhere", " pauses", " unpredict"], [" anywhere", " interruptions", " delays", " pauses", "\u2014even", " anything", " unpredictable", " triggers"], [" anywhere", " during", "\u2014even", " delays", " interruptions", " interrupts", " triggers", " pauses"], [" during", " anywhere", "\u2014even", " interruptions", " interrupts", " within", " delays", " triggers"], [" during", " anywhere", " interruptions", " interrupts", " interrupt", "\u2014even", " within", "\u76f4\u63a5\u5f71\u54cd\u5230"], [" synced", " interrupts", " during", " interruptions", " anywhere", "\u2014even", " delays", " interrupt"], [" during", " synced", " interrupt", " interrupts", " synchronized", " anywhere", "ynchronous", " syncing"], [" synced", " synchronized", " interrupts", " interrupt", " synchronous", "ynchronous", " during", " anywhere"], [" while", "while", " during", " WHILE", " synced", "ynchronous", " synchronized", "ynchronously"], [" while", " WHILE", "while", " synced", "ynchronously", " asynchronously", "ynchronous", "\u2014even"], [" while", " synced", " WHILE", "\u5b83\u5c06", "while", ",it", "ynchronously", " synchronized"], [" while", " synced", " WHILE", "while", " synchronous", "\u2014even", "\u800c\u4f60", "ynchronous"], [" while", "*,", "\u800c\u4f60", "\u5b83\u5c06", " synced", "while", " WHILE", " synchronous"], [" while", " your", "*,", "\u800c\u4f60", " synced", "\u5b83\u5c06", " *(", " synchronous"], [" while", ",", " your", " (", "*,", ",it", "\u800c\u4f60", " synchronized"], [",", " while", " (", "*,", " *", " your", " synchronous", " during"], [",", " while", " (", "*,", " *", " your", " during", " inside"], [",", " (", " while", " during", " your", " on", " inside", " in"]], "p": [[0.3528, 0.1889, 0.0653, 0.0653, 0.0396, 0.0308, 0.029, 0.0176], [0.1021, 0.0659, 0.0546, 0.0375, 0.0242, 0.0228, 0.0214, 0.0177], [0.2349, 0.0594, 0.0524, 0.0492, 0.0463, 0.0408, 0.0408, 0.0383], [0.0159, 0.015, 0.0132, 0.0132, 0.008, 0.0075, 0.0071, 0.0055], [0.0497, 0.0439, 0.0235, 0.0183, 0.0172, 0.0172, 0.0142, 0.0142], [0.0376, 0.0275, 0.013, 0.0115, 0.0108, 0.0101, 0.0079, 0.0065], [0.0344, 0.0184, 0.0127, 0.0119, 0.0112, 0.0093, 0.0087, 0.0087], [0.0404, 0.0179, 0.0168, 0.0149, 0.0102, 0.009, 0.008, 0.008], [0.0322, 0.0302, 0.0284, 0.0195, 0.0162, 0.0134, 0.0105, 0.0105], [0.0137, 0.0128, 0.0078, 0.0053, 0.0053, 0.0053, 0.0039, 0.0039], [0.1016, 0.0616, 0.0511, 0.033, 0.0137, 0.0129, 0.0121, 0.0121], [0.0098, 0.0092, 0.0067, 0.0049, 0.0038, 0.0034, 0.0026, 0.0025], [0.0108, 0.0089, 0.0058, 0.0037, 0.0031, 0.0029, 0.0027, 0.0026], [0.0073, 0.0061, 0.0054, 0.0047, 0.0035, 0.0033, 0.0031, 0.0029], [0.0768, 0.032, 0.0171, 0.0151, 0.0125, 0.0118, 0.0071, 0.0059], [0.0345, 0.0237, 0.0197, 0.0153, 0.0144, 0.0112, 0.0105, 0.0099], [0.0303, 0.0221, 0.0162, 0.0152, 0.0126, 0.0119, 0.0111, 0.0105], [0.0332, 0.0243, 0.0157, 0.0101, 0.0095, 0.0089, 0.0089, 0.0084], [0.0302, 0.0266, 0.0161, 0.0118, 0.0118, 0.0098, 0.0081, 0.0067], [0.0451, 0.0351, 0.0257, 0.0227, 0.0213, 0.0177, 0.0177, 0.0107], [0.0718, 0.0281, 0.0281, 0.0206, 0.0182, 0.016, 0.0103, 0.0081], [0.0115, 0.0108, 0.0101, 0.0051, 0.0045, 0.0024, 0.0023, 0.002], [0.0303, 0.0236, 0.0208, 0.0184, 0.0077, 0.0068, 0.006, 0.0056], [0.0268, 0.0236, 0.0184, 0.0153, 0.0153, 0.0119, 0.0112, 0.0082], [0.0675, 0.0319, 0.0151, 0.0133, 0.0097, 0.0086, 0.0081, 0.0067], [0.0132, 0.0059, 0.0055, 0.0043, 0.0038, 0.0038, 0.0036, 0.0036], [0.0168, 0.0116, 0.0102, 0.0102, 0.009, 0.007, 0.0062, 0.0062], [0.0763, 0.0339, 0.0299, 0.017, 0.0125, 0.0103, 0.0103, 0.0091], [0.0371, 0.0348, 0.0255, 0.0239, 0.0186, 0.0155, 0.0128, 0.0128], [0.0428, 0.026, 0.0229, 0.0215, 0.0202, 0.0179, 0.0168, 0.0115], [0.0839, 0.0422, 0.0329, 0.0272, 0.0176, 0.0146, 0.0129, 0.0121], [0.0481, 0.033, 0.0213, 0.02, 0.0177, 0.0138, 0.0129, 0.0121], [0.0399, 0.0274, 0.0242, 0.0213, 0.0138, 0.0138, 0.0122, 0.0122], [0.1234, 0.0259, 0.0215, 0.0178, 0.013, 0.0108, 0.0101, 0.0084], [0.0309, 0.0257, 0.0241, 0.0226, 0.0213, 0.0137, 0.0129, 0.01], [0.3311, 0.0891, 0.0128, 0.0113, 0.0094, 0.0073, 0.0073, 0.0069], [0.2748, 0.1667, 0.0176, 0.0155, 0.0137, 0.0129, 0.0113, 0.01], [0.1425, 0.1042, 0.0338, 0.0248, 0.0218, 0.0181, 0.017, 0.0124], [0.1452, 0.1452, 0.0367, 0.0237, 0.0223, 0.0209, 0.0135, 0.0112], [0.0712, 0.0628, 0.0432, 0.0406, 0.0279, 0.0262, 0.0169, 0.0149], [0.0709, 0.0588, 0.0487, 0.0335, 0.0315, 0.0245, 0.0203, 0.0191], [0.0995, 0.0825, 0.0533, 0.0442, 0.0415, 0.0415, 0.0366, 0.0252], [0.0877, 0.0824, 0.0532, 0.0414, 0.0414, 0.0208, 0.0184, 0.0173], [0.0691, 0.061, 0.0506, 0.0348, 0.0307, 0.0288, 0.0254, 0.0239], [0.0846, 0.0846, 0.0659, 0.0581, 0.0311, 0.0258, 0.0258, 0.0214], [0.0728, 0.0728, 0.0684, 0.0642, 0.0236, 0.0236, 0.0222, 0.0184], [0.2254, 0.0687, 0.0253, 0.0253, 0.0238, 0.0223, 0.021, 0.021], [0.1885, 0.0836, 0.0693, 0.0395, 0.0371, 0.0308, 0.024, 0.0165], [0.1106, 0.0917, 0.0461, 0.0407, 0.0382, 0.0359, 0.0337, 0.0317], [0.137, 0.078, 0.0536, 0.0445, 0.0369, 0.0253, 0.0224, 0.0154], [0.0427, 0.0427, 0.0377, 0.0333, 0.0333, 0.0243, 0.019, 0.019], [0.0918, 0.0862, 0.0247, 0.0232, 0.0192, 0.015, 0.0132, 0.0124], [0.1226, 0.0374, 0.0274, 0.0274, 0.0227, 0.0213, 0.0166, 0.0156], [0.4643, 0.0758, 0.0279, 0.0231, 0.0217, 0.0109, 0.0091, 0.008], [0.2254, 0.0472, 0.0392, 0.0368, 0.0287, 0.0223, 0.0223, 0.0144], [0.2084, 0.034, 0.032, 0.0234, 0.0206, 0.0206, 0.0182, 0.0151], [0.3379, 0.023, 0.0216, 0.0179, 0.0148, 0.0131, 0.0109, 0.0109], [0.2462, 0.0333, 0.0294, 0.0229, 0.0202, 0.0178, 0.0148, 0.013], [0.2496, 0.0434, 0.0383, 0.0263, 0.0263, 0.0181, 0.016, 0.016], [0.5455, 0.089, 0.0694, 0.0199, 0.0165, 0.0113, 0.0088, 0.0078], [0.6345, 0.0973, 0.0336, 0.0336, 0.0246, 0.0217, 0.0091, 0.007], [0.9569, 0.0088, 0.0053, 0.0044, 0.0042, 0.0018, 0.0017, 0.0011], [0.9997, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [69735, 123368, 88563, 79585, 20357, 36859, 85049, 63450, 67357, 56280, 23054, 54285, 32017, 14471, 7975, 8268, 8115, 20672, 30944, 27348, 36942, 36538, 20745, 10620, 13986, 22133, 12752, 4638, 3110, 3932, 3319, 4568, 3003, 2636, 2611, 7292, 4989, 5027, 4478, 6307, 4548, 4435, 3669, 3745, 2820, 3085, 3301, 2792, 2315, 6015, 11499, 15652, 24909, 32008, 37795, 12674, 4126, 2676, 2089, 414, 215, 129, 67]}}, {"pos": 564, "top": [[",", ".", "\u2013", ";", " \u2013", "\u00a0", ",.", "\u00a0\u00a0"], [",", "\u2013", ".", " \u2013", ";", "\u2013and", ".\u2013", ",."], [",", ".", "\u2013", ";", "\u2026", " \u2013", "\u2026.", "\u2013and"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", " Shemale", "-------------</", " Blowjob", "----------</", " ;;^", "\u54e5\u534e"], [",", ".", ".@", ".\u201c", ":@", ",@", "\u00a0\u00a0", "@"], [",", ".", "\u2026.", "\u2026..", "\u00a0\u00a0", ".\u201c", "!", "odd"], [".", ",", ".\u2019", ".\u201d", ".\u201c", "\u00a0\u00a0", "\u00a0", "!"], [".", ",", "!.", "!", ".@", "   \n", "\u2013and", "!)."], [".", ",", ".\u201d", ".\u201c", "\u00a0", "!.", "!\u201d", "!"], [",", "\u2013and", "Though", "\u00a0", "much", "\u2026but", "though", "\u2013"], [".", ",", "\u00a0", ".@", " even", "...", "@", "\u2026"], [" oddly", " incredibly", " uncomfort", " unpredict", " arguably", " pricey", " even", " unpredictable"], [" incredibly", " oddly", " uncomfort", " pricey", " savvy", " freaking", " effortlessly", " veggies"], [" incredibly", " oddly", " savvy", " pricey", " folks", " effortlessly", " arguably", " even"], [" even", " incredibly", " effortlessly", " folks", " truly", " seemingly", " myriad", " arguably"], [" incredibly", " folks", " savvy", " myriad", " effortlessly", " hefty", " even", " plenty"], [" incredibly", " myriad", ",", " effortlessly", " hefty", " even", " savvy", " wildly"], [" incredibly", " hefty", " effortlessly", " savvy", " tweaking", " myriad", " wouldn", " oddly"], [" incredibly", " hefty", " effortlessly", " savvy", " myriad", " relentlessly", "-esque", " even"], [" myriad", "\u2014even", " incredibly", " effortlessly", " even", " hugely", " wildly", " hefty"], ["<|endoftext|>", " myriad", "Though", " swiftly", "\u2014even", "\u5373\u4fbf", "would", "much"], ["\u751a\u81f3\u4f1a", " persino", " effortlessly", "\u5de8\u53d8", " myriad", " incredibly", " skyrocket", "Sharper"], ["\u751a\u81f3\u4f1a", " myriad", " quicker", " even", " {{--<", " swiftly", " effortlessly", " incredibly"], [" even", " myriad", " ultimately", " swiftly", " eventually", " dramatically", " {{--<", " much"], [" \n\n", " \r\n\r\n", " myriad", "Though", " even", "  \n\n", "\n\n", "   \n\n"], ["\u751a\u81f3\u4f1a", " quicker", "\u5373\u4fbf", " wildly", " hefty", "\u2014even", " persino", " unpredict"], [" unpredict", "\u2014even", "\u751a\u81f3\u4f1a", " wildly", "\u5373\u4fbf", " even", " uncomfort", " effortlessly"], ["\n\n", " \n\n", " even", "  \n\n", " wildly", " \r\n\r\n", "\r\n\r\n", " myriad"], [" \n\n", " even", "  \n\n", "\n\n", " wildly", "   \n\n", " unpredictable", " myriad"], [" \n\n", " even", "  \n\n", " **", " unpredictable", "   \n\n", " dramatically", " wildly"], [" even", " \n\n", " would", " it", " wildly", " unpredictable", " dramatically", " dozens"], [" even", " dozens", " would", " countless", " inevitably", " dramatically", " unpredictable", " quickly"], [" even", " inevitably", " relentlessly", " dramatically", " wildly", " unpredictable", " would", " drastically"], [" inevitably", " even", " relentlessly", " dramatically", " would", " wildly", "\u2014even", " aggressively"], [" relentlessly", " inevitably", " relentless", " unpredictable", " wildly", " dramatically", " inevitable", " dangerously"], [" inevitably", "\u2014even", " relentlessly", " relentless", " inevitable", " unpredictable", " dangerously", " instantly"], [" inevitably", " unpredictable", " inevitable", " relentlessly", " relentless", " impossible", "\u2014even", " dangerously"], [" inevitably", " relentlessly", " unpredictable", " inevitable", "\u2014even", " impossible", " relentless", " instantly"], [" inevitably", " relentlessly", " instantly", " unpredictable", " inevitable", " disrupt", "\u2014even", " relentless"], [" inevitably", " unpredictable", " instantly", " inevitable", " disrupt", " seamlessly", " catastrophic", " chaos"], [" disrupt", " disruption", " instantly", " chaos", " crashes", " catastrophic", " inevitably", " inevitable"], [" disrupt", " crashes", " disruption", " glitches", " crashing", " disruptions", " disrupting", " catastrophic"], [" crashes", " disrupt", " crashing", " disruption", " jitter", " glitches", " disrupting", " disruptions"], [" crashes", " disrupt", " crashing", " disruption", " catastrophic", " disrupting", " disruptions", " destabil"], [" crashes", " disrupt", " catastrophic", " disrupting", " entire", " destabil", " disruption", " crashing"], [" instantly", " disrupt", " crashes", " inevitably", " entire", " catastrophic", " destabil", " disrupting"], [" instantly", " disrupt", " crashes", " EVERY", " entire", " catastrophic", " inevitably", " inevitable"], [" instantly", " crashes", " disrupt", " entire", " EVERY", " catastrophic", " ruining", " inevitably"], [" instantly", " crashes", " disrupt", " ruining", "\u77ac\u9593", " glitches", "\u77ac\u95f4", " framerate"], [" instantly", "\u76f4\u63a5\u5f71\u54cd", "\u76f4\u63a5\u5f71\u54cd\u5230", " disrupt", " entire", "\u4e86\u6574\u4e2a", " crashes", "\u77ac\u95f4"], [" disrupt", "\u5b83\u5c06", " \u043c\u0433\u043d\u043e\u0432\u0435\u043d", " instantly", " ruining", "\u4e86\u6574\u4e2a", "\u5b83\u4f1a", "\u77ac\u95f4"], [" entire", "\u4e86\u6574\u4e2a", "\u6574\u4e2a", "\u5b83\u5c06", " framerate", "\u5b83\u4f1a", "\u5c06\u6574\u4e2a", "\u662f\u6574\u4e2a"], [" framerate", "\u5b83\u5c06", "\u4e86\u6574\u4e2a", "\u4e2d\u65ad", " crashes", " entire", " ruining", " crashing"], [" your", " framerate", "\u5b83\u5c06", "\u4f60\u5c06", "\u4e86\u6574\u4e2a", " **#", "\u4f60\u7684", "your"], ["\u6574\u4e2a", " your", " entire", "\u5b83\u5c06", "\u4e86\u6574\u4e2a", "\u4f60\u5c06", " framerate", "\u662f\u6574\u4e2a"], [" your", "\u6574\u4e2a", " framerate", " entire", "\u4f60\u5c06", " UI", "\u5b83\u5c06", "\u4e86\u6574\u4e2a"], [" your", " framerate", " UI", "\u6574\u4e2a", "\u4f60\u5c06", " entire", "\u5b83\u5c06", "\u4f60\u7684"], [" your", " UI", " framerate", "your", "\u4f60\u7684", "\u5b83\u5c06", "/UI", " GPU"], [" your", "\u5e27", " framerate", " UI", " frames", "/frame", "\u5b83\u5c06", " freezes"], [" your", " kills", " UI", " kill", " framerate", "kill", " freezes", " killing"], [" your", " UI", " it", " kills", " you", " **", " *", " kill"], [" your", " it", " UI", " *", " you", " **", " kills", " the"], [" your", " it", " the", " you", " *", " UI", " **", " kills"]], "p": [[0.745, 0.2419, 0.0106, 0.0013, 0.0008, 0.0002, 0.0001, 0.0], [0.5766, 0.2723, 0.1135, 0.0144, 0.0077, 0.0047, 0.0008, 0.0004], [0.7788, 0.1534, 0.0639, 0.0012, 0.0009, 0.0008, 0.0002, 0.0002], [0.0085, 0.0062, 0.0035, 0.0027, 0.0026, 0.0016, 0.0015, 0.0014], [0.211, 0.1643, 0.0184, 0.0072, 0.0023, 0.0022, 0.0018, 0.0017], [0.1723, 0.1184, 0.0071, 0.0049, 0.0046, 0.003, 0.0022, 0.0022], [0.5354, 0.2866, 0.0195, 0.0152, 0.0087, 0.0087, 0.0076, 0.0063], [0.5935, 0.0969, 0.008, 0.007, 0.0055, 0.0045, 0.0029, 0.0026], [0.7464, 0.1887, 0.0054, 0.0054, 0.0044, 0.0035, 0.0035, 0.0027], [0.0257, 0.0083, 0.0031, 0.0025, 0.0022, 0.0022, 0.0016, 0.0016], [0.2086, 0.1434, 0.0437, 0.0249, 0.0207, 0.0133, 0.0092, 0.0086], [0.0362, 0.0182, 0.0125, 0.0117, 0.0091, 0.0081, 0.0076, 0.0071], [0.0215, 0.0115, 0.0096, 0.0058, 0.0058, 0.0054, 0.0051, 0.0048], [0.0108, 0.0084, 0.0074, 0.0066, 0.0062, 0.0054, 0.0042, 0.0037], [0.0797, 0.0427, 0.0332, 0.0312, 0.0243, 0.0202, 0.0189, 0.0167], [0.1541, 0.0684, 0.0366, 0.0323, 0.0285, 0.0236, 0.0153, 0.0143], [0.1603, 0.0554, 0.0316, 0.0316, 0.0279, 0.0262, 0.0159, 0.0159], [0.0817, 0.0282, 0.0249, 0.0206, 0.0161, 0.0133, 0.0125, 0.0111], [0.092, 0.0263, 0.0247, 0.0181, 0.017, 0.0097, 0.0097, 0.0091], [0.0206, 0.0161, 0.0151, 0.0133, 0.0092, 0.0086, 0.0086, 0.0067], [0.6717, 0.0043, 0.0038, 0.0024, 0.0023, 0.0019, 0.0016, 0.0012], [0.0145, 0.0034, 0.0027, 0.0021, 0.0016, 0.0016, 0.0015, 0.0014], [0.0064, 0.0057, 0.0044, 0.0041, 0.0039, 0.0032, 0.003, 0.0028], [0.0112, 0.0077, 0.0068, 0.0044, 0.0044, 0.0039, 0.0036, 0.0036], [0.0152, 0.0098, 0.0087, 0.0068, 0.0056, 0.0053, 0.0049, 0.0049], [0.0088, 0.003, 0.0028, 0.0027, 0.0025, 0.0024, 0.0024, 0.0022], [0.0062, 0.0058, 0.0054, 0.0051, 0.0048, 0.0045, 0.0045, 0.004], [0.1339, 0.0865, 0.0435, 0.0219, 0.0103, 0.0097, 0.008, 0.0076], [0.1836, 0.0719, 0.0494, 0.0219, 0.0194, 0.0171, 0.016, 0.0142], [0.1675, 0.1478, 0.048, 0.0257, 0.0177, 0.0138, 0.0138, 0.0129], [0.315, 0.0259, 0.0214, 0.0157, 0.0138, 0.013, 0.013, 0.013], [0.2016, 0.0256, 0.0256, 0.0188, 0.0137, 0.0137, 0.0137, 0.0129], [0.1002, 0.0305, 0.0287, 0.0197, 0.0185, 0.0163, 0.0154, 0.0136], [0.0503, 0.0444, 0.0368, 0.0269, 0.0253, 0.0223, 0.0197, 0.0174], [0.0501, 0.047, 0.0268, 0.0236, 0.0173, 0.0173, 0.0173, 0.0162], [0.0768, 0.0386, 0.0363, 0.0249, 0.0249, 0.0249, 0.022, 0.0161], [0.1394, 0.0482, 0.0482, 0.0482, 0.0242, 0.0214, 0.0201, 0.013], [0.0818, 0.0363, 0.032, 0.032, 0.022, 0.022, 0.0207, 0.0161], [0.0459, 0.0336, 0.0336, 0.0278, 0.0217, 0.0191, 0.018, 0.0169], [0.0482, 0.04, 0.0376, 0.0353, 0.0242, 0.0167, 0.0167, 0.0157], [0.0612, 0.0272, 0.024, 0.0225, 0.0212, 0.0199, 0.0187, 0.0187], [0.0857, 0.0667, 0.052, 0.0357, 0.0336, 0.0315, 0.0296, 0.0261], [0.0806, 0.0757, 0.0357, 0.0336, 0.0296, 0.0246, 0.0246, 0.0204], [0.1167, 0.0625, 0.0356, 0.0334, 0.026, 0.0245, 0.023, 0.0216], [0.0765, 0.0596, 0.0264, 0.0219, 0.0193, 0.0193, 0.0171, 0.016], [0.0677, 0.0495, 0.0495, 0.034, 0.0265, 0.0194, 0.0182, 0.0171], [0.1449, 0.0501, 0.0442, 0.0344, 0.0304, 0.0209, 0.0209, 0.0153], [0.1427, 0.0718, 0.0493, 0.0318, 0.0299, 0.017, 0.0133, 0.0133], [0.1225, 0.048, 0.031, 0.0213, 0.0177, 0.0177, 0.0129, 0.0129], [0.0714, 0.0337, 0.0298, 0.0247, 0.018, 0.018, 0.0159, 0.0141], [0.0269, 0.0252, 0.0153, 0.0153, 0.0135, 0.0119, 0.0119, 0.0119], [0.0972, 0.0972, 0.052, 0.0459, 0.0381, 0.018, 0.0169, 0.0169], [0.0543, 0.0543, 0.0329, 0.02, 0.02, 0.0176, 0.0166, 0.0146], [0.1397, 0.1158, 0.0454, 0.0243, 0.0147, 0.0122, 0.0115, 0.0089], [0.1446, 0.1446, 0.1126, 0.0774, 0.0774, 0.0532, 0.0303, 0.0196], [0.3272, 0.0644, 0.0502, 0.0391, 0.0367, 0.0345, 0.0324, 0.0185], [0.395, 0.0535, 0.0443, 0.0286, 0.0237, 0.0185, 0.0174, 0.0163], [0.7549, 0.0547, 0.0178, 0.0147, 0.0122, 0.0108, 0.0065, 0.0058], [0.452, 0.0693, 0.054, 0.042, 0.0225, 0.0187, 0.0165, 0.0155], [0.7074, 0.0957, 0.0845, 0.0214, 0.0079, 0.0061, 0.0045, 0.0045], [0.8446, 0.054, 0.0289, 0.0175, 0.0064, 0.0061, 0.0042, 0.0039], [0.7113, 0.1798, 0.0455, 0.0108, 0.009, 0.007, 0.0037, 0.0031], [0.8992, 0.0738, 0.0165, 0.0053, 0.0022, 0.0009, 0.0003, 0.0002]], "ranks": {"Rust": [29563, 63647, 63679, 44689, 8249, 36884, 41517, 35569, 66306, 75767, 29973, 34609, 30270, 23280, 14847, 29654, 33274, 94816, 134872, 88891, 129823, 154616, 115668, 57244, 37958, 69219, 27902, 10021, 6207, 3928, 4541, 5812, 3624, 8377, 4407, 10325, 4900, 5846, 4689, 7478, 4190, 5084, 4695, 6072, 3801, 4448, 5293, 6579, 4811, 12837, 25242, 14323, 11644, 8809, 11941, 8493, 3085, 3395, 2636, 1355, 1984, 1225, 765]}}, {"pos": 565, "top": [[" \u2013", "\u2013", ",", ".", "\u2013and", ".\u2013", " \u2013,", ";"], ["\u2013", "\u2013and", " \u2013", " \u2013,", ".\u2013", "\u2013\u2013", ",", "."], ["\u2013", " \u2013", ",", "\u2013and", ".", ".\u2013", " \u2013,", "\u2013\u2013"], ["\u6700\u65b0\u53d1\u5e03", " *\u2013", "\u2013and", "('--", "\u2013\u2013", " \u2013,", " -->", ".\",\""], ["\u2013and", "\u2013", "\u2013\u2013", ".\u2013", " *\u2013", " \u2013,", "-->", " (@"], ["\u2013and", "\u2013", ".\u2013", "\u2013\u2013", "   \n", " *\u2013", " **\u2013", "  "], ["\u2013and", "\u2013", "\u2013\u2013", "\u2018", "   \n", "-->", " \u2013", ".\u2013"], ["\u2013and", "   \n", "\u6700\u65b0\u53d1\u5e03", "   \r\n", "\u2013", "-->", "\u2013\u2013", "____"], ["\u2013and", "\u2013", "   \n", "\u2013\u2013", "   \n\n", ",", "  ", ".\u2013"], ["\u2013and", "\u2013", "\u2013\u2013", ",", ".\u2013", "   \n", "\u6700\u65b0\u53d1\u5e03", "   \r\n"], ["\u2013", "\u2013and", "\u2013\u2013", " \u2013", ",", "@", "  ", "   \n"], ["\u2013and", "\u6700\u65b0\u53d1\u5e03", " **\u2013", " -->", " ____", "\u2013\u2013", " *\u2013", "____"], ["\u2013and", "\u6700\u65b0\u53d1\u5e03", " **\u2013", "\u2013", "\u2013\u2013", " -->", " *\u2013", " ____"], ["\u2013and", "\u2013", " folks", " savvy", "\u2013\u2013", " kids", "\u6700\u65b0\u53d1\u5e03", " funky"], ["\u2013and", " folks", "\u2013", " --", "--", " savvy", " kids", " incredibly"], [" folks", "\u2013and", " kids", " savvy", " --", " incredibly", "\u2013", "--"], ["\u2013", "\u2013and", "<|endoftext|>", " folks", "...", " savvy", " [\u2026]", "\u2013\u2013"], ["\u2013and", "\u2013", "<|endoftext|>", " savvy", " folks", " [\u2026]", "\u2013\u2013", "   \n\n"], [" savvy", " folks", "\u2013and", " incredibly", "...", " [\u2026]", "-esque", " kids"], ["<|endoftext|>", "\u2013and", "\u2013", " [\u2026]", " incredibly", " folks", " savvy", "\u2013\u2013"], ["<|endoftext|>", "   \n\n", "\u2013and", "  \n\n", " [\u2026]", " \n\n", "\u2013", " folks"], [" incredibly", " savvy", " folks", " kids", " busted", " skyrocket", " tech", " tweaks"], [" incredibly", " folks", " savvy", " busted", " skyrocket", " myriad", " kids", " tech"], [" incredibly", "<|endoftext|>", " myriad", " folks", " --", " \ufffd", " hugely", " busted"], ["   \n\n", " \n\n", " \r\n\r\n", "  \n\n", "    \n\n", "<|endoftext|>", "\r\n\r\n", " incredibly"], ["   \n\n", " incredibly", " \r\n\r\n", " \n\n", " folks", "  \n\n", " tech", "    \n\n"], ["   \n\n", " \n\n", " incredibly", " \r\n\r\n", " tech", "\r\n\r\n", " folks", "\n\n"], [" \n\n", " incredibly", "   \n\n", " heavily", " --", "\n\n", " hugely", " massive"], [" incredibly", " tech", " massive", "   \n\n", " heavily", " sprawling", " wildly", " hugely"], [" incredibly", " tech", " massive", "   \n\n", " desperately", " heavily", " skyrocket", " relentless"], [" incredibly", " massive", " huge", " heavily", " ...", " tech", " desperately", " tight"], [" ...", " incredibly", " massive", " heavily", " huge", " desperately", " dozens", " just"], [" incredibly", " massive", " relentlessly", " relentless", " heavily", " desperately", " even", " tech"], [" incredibly", " tech", " relentless", " relentlessly", " massive", " desperately", " seamlessly", " massively"], [" tech", " relentless", " relentlessly", " incredibly", " seamlessly", " hardware", " desperately", " massive"], [" hardware", " tech", " relentless", " incredibly", " flagship", " seamlessly", " relentlessly", " entire"], [" hardware", " tech", " seamlessly", " performance", " seamless", " relentless", " software", " sync"], [" hardware", " seamlessly", " tech", " UI", " seamless", " framerate", " software", " performance"], [" UI", " hardware", " seamlessly", " framerate", " visuals", " UX", " seamless", " entire"], [" framerate", " seamlessly", " UI", " hardware", " visuals", " gameplay", " architecture", " seamless"], [" framerate", " UI", " graphics", " hardware", " visuals", " gameplay", " seamlessly", " sync"], [" framerate", " graphics", " pacing", " sync", " UI", " animation", " visuals", " speed"], [" framerate", " animation", " sync", " pacing", " graphics", " visuals", " UI", " speed"], [" framerate", " visuals", " animation", " sync", " graphics", " pacing", " UI", " timeline"], [" framerate", " sync", " animation", " speed", " visuals", " timeline", " pacing", " seamless"], [" framerate", " entire", " visuals", " sync", " FPS", " pacing", " timeline", " animation"], [" framerate", " entire", " visuals", " timeline", " sync", " FPS", " pacing", " fps"], [" framerate", " entire", " visuals", " FPS", " UI", " timeline", " seamless", " EVERY"], [" framerate", " visuals", " entire", " FPS", " GPU", " UI", "_fps", " fps"], [" framerate", " entire", " visuals", " FPS", " GPU", "_fps", " UI", " fps"], [" framerate", " entire", " GPU", "\u6574\u4e2a", "_fps", " gesamte", " FPS", " visuals"], [" framerate", " entire", " GPU", "\u6574\u4e2a", " CPU", " FPS", " visuals", "_fps"], [" framerate", " GPU", " FPS", " entire", "_fps", " CPU", "\u5e27", "\u6574\u4e2a"], [" framerate", " UI", " FPS", " GPU", " entire", "\u5e27", " CPU", " visuals"], [" entire", " framerate", "\u6574\u4e2a", " UI", " GPU", " renderer", "\u6574\u500b", " Entire"], [" framerate", " entire", " UI", " FPS", "\u6574\u4e2a", " GPU", "_fps", "\u5e27"], [" entire", " UI", " framerate", "\u6574\u4e2a", " FPS", " renderer", " GPU", " Renderer"], [" UI", " entire", " framerate", " FPS", " GPU", " renderer", "\u6574\u4e2a", "/UI"], [" UI", " framerate", " frame", "\u5e27", " FPS", " Frame", " entire", " frames"], [" UI", " viewport", " framerate", " frame", " FPS", " entire", " renderer", "\u5e27"], [" UI", " entire", " viewport", " FPS", " framerate", " frame", " GPU", " renderer"], [" UI", " entire", " viewport", " framerate", " frame", " FPS", " GPU", " renderer"], [" UI", " entire", " frame", " viewport", " framerate", " FPS", " GPU", " renderer"]], "p": [[0.4697, 0.4145, 0.0636, 0.0437, 0.0059, 0.0008, 0.0003, 0.0003], [0.6117, 0.225, 0.1547, 0.0032, 0.0025, 0.0015, 0.0007, 0.0001], [0.9035, 0.0397, 0.0273, 0.0241, 0.0029, 0.0022, 0.0002, 0.0], [0.1982, 0.0367, 0.0196, 0.0112, 0.0087, 0.0064, 0.0044, 0.0028], [0.6598, 0.1383, 0.0449, 0.0226, 0.0137, 0.0107, 0.01, 0.0083], [0.7827, 0.1541, 0.0143, 0.0112, 0.0021, 0.0019, 0.0016, 0.0015], [0.5733, 0.2708, 0.0304, 0.0268, 0.0209, 0.0112, 0.0072, 0.0053], [0.7309, 0.0639, 0.0221, 0.0207, 0.0195, 0.0152, 0.0134, 0.0118], [0.7894, 0.1372, 0.021, 0.0082, 0.0044, 0.0034, 0.0028, 0.0024], [0.6247, 0.2951, 0.0331, 0.0079, 0.0016, 0.001, 0.0009, 0.0007], [0.6976, 0.2566, 0.0128, 0.006, 0.0044, 0.0017, 0.0016, 0.0014], [0.3019, 0.0559, 0.0409, 0.0318, 0.0248, 0.0181, 0.016, 0.0141], [0.5662, 0.0319, 0.0282, 0.0151, 0.0151, 0.0092, 0.0071, 0.0043], [0.5865, 0.0274, 0.0156, 0.0122, 0.0095, 0.0054, 0.004, 0.0031], [0.1689, 0.1024, 0.0401, 0.0312, 0.0243, 0.0167, 0.013, 0.009], [0.243, 0.0577, 0.0226, 0.0212, 0.0129, 0.0114, 0.01, 0.0047], [0.1645, 0.1645, 0.073, 0.0471, 0.0144, 0.0119, 0.0119, 0.0082], [0.2999, 0.0712, 0.0246, 0.0231, 0.0231, 0.0149, 0.0124, 0.0109], [0.071, 0.0431, 0.0431, 0.0357, 0.0149, 0.0096, 0.0066, 0.0066], [0.4078, 0.0709, 0.023, 0.0216, 0.0123, 0.0109, 0.0085, 0.0062], [0.9543, 0.0034, 0.0021, 0.0016, 0.0014, 0.0009, 0.0008, 0.0004], [0.0654, 0.0309, 0.0212, 0.01, 0.0094, 0.0057, 0.0042, 0.0042], [0.096, 0.0353, 0.0189, 0.013, 0.0074, 0.007, 0.0065, 0.0045], [0.0309, 0.0146, 0.0078, 0.0073, 0.0065, 0.005, 0.0047, 0.0037], [0.2284, 0.1474, 0.0654, 0.0577, 0.0187, 0.0176, 0.0107, 0.01], [0.1495, 0.0456, 0.0428, 0.0355, 0.019, 0.0148, 0.0148, 0.0115], [0.0474, 0.0326, 0.0238, 0.0164, 0.0106, 0.0073, 0.0073, 0.0073], [0.0212, 0.0187, 0.0107, 0.0078, 0.0061, 0.005, 0.005, 0.005], [0.0259, 0.0115, 0.0101, 0.0079, 0.0079, 0.0051, 0.0051, 0.0048], [0.0414, 0.0196, 0.0143, 0.0143, 0.0072, 0.0072, 0.0068, 0.0064], [0.035, 0.024, 0.0094, 0.0094, 0.0094, 0.0088, 0.0069, 0.0069], [0.0407, 0.0338, 0.0218, 0.011, 0.0103, 0.0066, 0.0066, 0.0066], [0.0262, 0.0217, 0.0159, 0.0124, 0.008, 0.0075, 0.0071, 0.0071], [0.0593, 0.0462, 0.0434, 0.0318, 0.015, 0.0132, 0.0124, 0.0071], [0.0604, 0.0415, 0.0285, 0.0285, 0.0237, 0.0144, 0.0135, 0.0087], [0.0483, 0.0483, 0.0275, 0.0157, 0.013, 0.0115, 0.0101, 0.0079], [0.0836, 0.0395, 0.0211, 0.0199, 0.0128, 0.01, 0.01, 0.0083], [0.0405, 0.0315, 0.0204, 0.0169, 0.0159, 0.0116, 0.008, 0.008], [0.0815, 0.034, 0.0319, 0.0171, 0.0161, 0.0142, 0.0142, 0.0117], [0.0469, 0.0414, 0.0366, 0.0285, 0.0267, 0.0208, 0.0173, 0.0162], [0.3569, 0.0293, 0.0228, 0.0167, 0.0167, 0.0157, 0.0147, 0.0147], [0.5957, 0.018, 0.0159, 0.014, 0.0132, 0.0132, 0.0116, 0.0096], [0.6229, 0.0166, 0.0146, 0.0146, 0.0129, 0.0114, 0.0065, 0.0065], [0.6244, 0.0214, 0.0138, 0.0122, 0.0101, 0.0089, 0.0084, 0.0084], [0.6777, 0.0091, 0.0075, 0.0075, 0.0066, 0.0066, 0.0062, 0.0049], [0.5536, 0.0178, 0.013, 0.0115, 0.0065, 0.0058, 0.0054, 0.0048], [0.7286, 0.0234, 0.0081, 0.0076, 0.0056, 0.0052, 0.0041, 0.0038], [0.8415, 0.0186, 0.0106, 0.0025, 0.0024, 0.0022, 0.0016, 0.0016], [0.8631, 0.0058, 0.0058, 0.0035, 0.0026, 0.0023, 0.0018, 0.0011], [0.8219, 0.0151, 0.0071, 0.0041, 0.0034, 0.0026, 0.0017, 0.001], [0.6535, 0.0224, 0.0077, 0.0077, 0.0041, 0.0034, 0.003, 0.0028], [0.7499, 0.079, 0.0188, 0.0129, 0.0107, 0.01, 0.0033, 0.0027], [0.8475, 0.0212, 0.0187, 0.01, 0.0073, 0.005, 0.0033, 0.0021], [0.9065, 0.0213, 0.0107, 0.0101, 0.0031, 0.0021, 0.0015, 0.0014], [0.4253, 0.4253, 0.0448, 0.0396, 0.0165, 0.0037, 0.0032, 0.0025], [0.527, 0.1711, 0.1333, 0.1038, 0.0232, 0.0066, 0.004, 0.0036], [0.5716, 0.2103, 0.0877, 0.0414, 0.0365, 0.0173, 0.0056, 0.0034], [0.8962, 0.0394, 0.0348, 0.0088, 0.0047, 0.0037, 0.0017, 0.0015], [0.4079, 0.1701, 0.1324, 0.1169, 0.0487, 0.0296, 0.0203, 0.0158], [0.8936, 0.0445, 0.0238, 0.0127, 0.0077, 0.0032, 0.0025, 0.0017], [0.9095, 0.0513, 0.0101, 0.0101, 0.0079, 0.002, 0.0018, 0.0015], [0.8496, 0.079, 0.0176, 0.0137, 0.0137, 0.0094, 0.002, 0.002], [0.9573, 0.01, 0.0061, 0.0061, 0.003, 0.003, 0.0014, 0.0009]], "ranks": {"Rust": [24535, 34194, 23036, 36886, 4235, 7134, 15100, 15396, 27916, 22075, 8176, 13717, 8441, 10912, 19701, 12799, 15873, 24827, 60662, 69096, 72694, 60415, 52931, 36142, 23125, 22908, 15379, 13048, 11843, 10875, 8713, 11617, 13250, 41644, 39455, 23380, 9348, 11345, 11314, 6172, 2826, 4838, 5377, 4659, 6840, 4967, 8633, 3982, 4720, 5353, 15813, 8754, 2376, 2332, 895, 177, 69, 102, 122, 24, 19, 16, 12]}}, {"pos": 566, "top": [[" \u2013", "\u2013", ".", "\u2026..", "\u00a0\u00a0", ",", "\u2026.", "\u00a0"], [" \u2013", "\u2013", "\u2013and", "\u2013\u2013", " \u2013,", " \u2013**", "**\u2013", ".\u2013"], ["\u2013", " \u2013", "\u2013and", ".\u2013", "\u2013\u2013", "**\u2013", " \u2013,", "\u2026.."], [" milfs", " Strec", " Hidal", " Shemale", " pupper", " Pubbl", "aruhi", " Blowjob"], [" *@", " @_", "@$", "@g", "insip", "&(", " '@", "+#"], ["insip", " fridge", "ogh", " **\u2013", "odd", "consts", "\u5178\u793c", " veggies"], [" \u00b4", " *@", "-**", " \uffe5", "\uffe5", "-ish", " **#", " @_"], [" *@", " veggies", "VERY", " @_", "-cr", "sdale", "athon", " carbs"], ["athon", " *@", "\u53c1", "VERY", "   \n\n", " \r\n\r\n", "\u2013and", "       \n\n"], ["\u2013and", "\u2013", "-ish", "-heavy", "Sharper", " pricey", "-dollar", "\u2013\u2013"], ["\u2013", "-", "\u2013and", "#", " \ufffd", "-heavy", "-ish", "\u00a0"], ["Sharper", " veggies", "-ish", "Feels", "iha", " pricey", "isecond", "opolitan"], [" veggies", "-ish", " booze", "Sharper", " comfy", " pricey", "-tech", " skinny"], [" veggies", " booze", " pricey", "-ish", " comfy", " skinny", "Sharper", "-tech"], [" pricey", " booze", " kids", "-tech", "-ish", " savvy", " goodies", " skinny"], [" pricey", " skinny", "kids", " veggies", " booze", " kids", " savvy", " comfy"], ["-tech", "kids", " pricey", "\u2013", " skinny", " kids", " veggies", "-ish"], ["-tech", "kids", " booze", "-ish", " tini", " pricey", " comfy", "-big"], ["-tech", " booze", "kids", " tini", " comfy", " pricey", "-big", "-ish"], [" booze", "kids", " tini", " pricey", "-big", "-ish", "-tech", " comfy"], ["<|endoftext|>", "Though", " tini", " pricey", "kids", " hugely", " \r\n\r\n", "\u2013"], ["Sharper", " booze", "bucks", "kids", " pricey", "-tech", "-billion", "-big"], [" pricey", " incredibly", " tini", " busted", " booze", "Luckily", "kids", " hugely"], [" hugely", " incredibly", " pricey", " booming", " tini", " wildly", " disastr", " battling"], [" \r\n\r\n", " \n\n", "   \n\n", " hugely", " pricey", " incredibly", "    \n\n", " tini"], [" pricey", " booze", " incredibly", "-tech", " skyrocket", " comfy", " crunch", " hugely"], [" pricey", " skyrocket", " crunch", " incredibly", "-tech", " tech", " booming", " hugely"], [" incredibly", " hugely", " \n\n", " pricey", " battling", " \r\n\r\n", " wildly", " tech"], [" \r\n\r\n", " \n\n", " pricey", "   \n\n", " incredibly", " tech", "-heavy", "  \n\n"], [" pricey", " \r\n\r\n", " tech", "\u2011", " \n\n", " crunch", "   \n\n", " incredibly"], [" incredibly", " huge", " massive", " high", " tech", " ", " night", " big"], [" ", " incredibly", " huge", " high", " massive", " fast", " #", " hot"], [" incredibly", " massive", " huge", " fast", " hot", " high", " night", " even"], [" tech", " crunch", " pricey", "-tech", " skinny", "ptime", " skyrocket", " mega"], ["otech", "-tech", "ptime", " tech", " \r\n\r\n", "_ctxt", "-tier", " pricey"], ["ptime", "\u2011", " tech", "-tech", " framerate", " hardware", "otech", " scalability"], [" tech", " hardware", "-tech", "ptime", " framerate", " bottleneck", " scalability", " uptime"], [" hardware", " tech", "ptime", " framerate", " scalability", "-tech", " bottleneck", " ergonom"], [" hardware", "ptime", " tech", " framerate", " skyrocket", " deadline", " bottleneck", "-tech"], [" framerate", " hardware", "\u5cf0\u503c", " tech", "ptime", " peak", "-tech", "-fast"], [" framerate", " tech", " hardware", " fastest", "ptime", " frantic", " peak", " flawless"], [" framerate", " flawless", " gaming", " FPS", " jitter", " peak", "-fast", "ptime"], [" framerate", " flawless", "-fast", " sprint", "\u5cf0\u503c", "-tier", " nightly", " relentless"], [" framerate", " nightly", "\u5cf0\u503c", " relentless", " peak", "\u6bcf\u79d2", " flawless", " seamless"], [" framerate", " strict", " flawless", "\u6bcf\u79d2", " peak", " nightly", " relentless", "\u5cf0\u503c"], [" framerate", " deadline", " strict", " relentless", " peak", " flawless", " deadlines", " countdown"], [" framerate", " flawless", " deadline", " deadlines", " seamless", " timeline", " precision", " peak"], [" framerate", " relentless", " deadline", " flawless", "\u5cf0\u503c", " seamless", " deadlines", " strict"], [" framerate", "-tier", "-sync", "\u7dad\u6301", "\u5cf0\u503c", "ptime", " deadline", " flawless"], [" framerate", "-tier", "ptime", "-fast", "_fps", "-sync", "\u5cf0\u503c", "-phase"], [" framerate", "ptime", "-sync", "-tier", "-phase", "-backend", "\u7cbe\u5fc3", "ertz"], [" framerate", " GPU", " FPS", "-sync", "ptime", "-tier", " UHD", " synchronized"], [" framerate", " FPS", " GPU", "-sync", "-render", "/UI", "ptime", " JIT"], [" framerate", " FPS", " GPU", "-sync", "ptime", "-frame", " renderer", "/UI"], [" framerate", " FPS", " GPU", "/UI", " renderer", "-render", " shader", "-sync"], [" FPS", " framerate", "_fps", " fps", "\u5e27", "fps", "-frame", "FPS"], [" FPS", " framerate", " renderer", " Renderer", "\u5e27", "-render", " fps", "_fps"], [" FPS", " framerate", "\u5e27", " fps", "_fps", "-frame", "fps", " GPU"], [" FPS", "\u5e27", "-frame", " framerate", " frame", " frames", "frames", " fps"], [" FPS", " frame", "\u5e27", "-frame", " frames", " Frame", " framerate", " fps"], [" FPS", " UI", "-frame", " frame", "\u5e27", " frames", " fps", " framerate"], ["3", " FPS", "-frame", " UI", " frame", "1", "\u5e27", " frames"], ["3", "1", "4", "2", "6", "5", "7", "8"]], "p": [[0.5224, 0.2796, 0.0853, 0.0179, 0.0158, 0.0158, 0.0148, 0.0084], [0.3465, 0.0933, 0.0823, 0.0365, 0.0087, 0.0081, 0.0032, 0.0019], [0.4902, 0.3817, 0.0852, 0.0115, 0.0058, 0.0058, 0.0051, 0.0021], [0.014, 0.0048, 0.0043, 0.0035, 0.0035, 0.0026, 0.0023, 0.0023], [0.0149, 0.0096, 0.0038, 0.0033, 0.0031, 0.0031, 0.0029, 0.002], [0.0028, 0.0021, 0.0019, 0.0018, 0.0018, 0.0016, 0.0014, 0.0012], [0.016, 0.008, 0.008, 0.0067, 0.0049, 0.0043, 0.0036, 0.0034], [0.0151, 0.0086, 0.0059, 0.0036, 0.003, 0.003, 0.003, 0.0026], [0.0205, 0.0141, 0.0055, 0.0052, 0.0049, 0.0043, 0.004, 0.004], [0.0048, 0.0031, 0.0031, 0.0018, 0.0017, 0.0015, 0.0015, 0.0014], [0.2002, 0.0348, 0.0164, 0.0128, 0.0094, 0.0088, 0.0083, 0.0083], [0.0046, 0.0031, 0.002, 0.002, 0.0019, 0.0018, 0.0017, 0.0017], [0.0076, 0.0041, 0.0032, 0.0028, 0.0026, 0.0022, 0.0022, 0.0018], [0.0166, 0.0078, 0.0074, 0.0054, 0.0045, 0.0042, 0.0039, 0.0037], [0.0094, 0.0054, 0.005, 0.0047, 0.0047, 0.0044, 0.0042, 0.0037], [0.0192, 0.0091, 0.0085, 0.008, 0.0075, 0.0062, 0.0055, 0.0043], [0.0216, 0.0216, 0.0169, 0.0158, 0.0131, 0.0123, 0.0102, 0.0096], [0.0406, 0.0279, 0.0132, 0.0124, 0.0116, 0.0116, 0.0091, 0.0091], [0.0246, 0.0217, 0.014, 0.0109, 0.0103, 0.0096, 0.0075, 0.0062], [0.0084, 0.0074, 0.0062, 0.0062, 0.0055, 0.0045, 0.0033, 0.0029], [0.0128, 0.0037, 0.0028, 0.0022, 0.002, 0.0018, 0.0017, 0.0015], [0.005, 0.005, 0.0039, 0.0036, 0.0036, 0.0025, 0.0018, 0.0016], [0.0061, 0.0042, 0.0029, 0.0022, 0.0021, 0.002, 0.002, 0.0017], [0.0036, 0.0036, 0.0021, 0.0017, 0.0016, 0.0015, 0.0013, 0.0012], [0.0309, 0.0121, 0.0107, 0.0073, 0.0065, 0.0045, 0.0025, 0.0024], [0.0214, 0.0079, 0.0079, 0.0054, 0.0048, 0.0045, 0.0042, 0.004], [0.0103, 0.0046, 0.0034, 0.0034, 0.003, 0.0028, 0.0028, 0.0026], [0.0089, 0.0069, 0.0054, 0.005, 0.0039, 0.0037, 0.0037, 0.0037], [0.025, 0.0221, 0.0142, 0.0104, 0.0072, 0.0056, 0.0052, 0.0046], [0.018, 0.018, 0.0169, 0.0159, 0.0124, 0.0102, 0.0102, 0.0096], [0.0239, 0.0224, 0.0154, 0.0145, 0.0106, 0.0099, 0.0093, 0.0088], [0.0206, 0.0194, 0.0194, 0.0182, 0.0125, 0.011, 0.0104, 0.0086], [0.0095, 0.0065, 0.0065, 0.0058, 0.0051, 0.0048, 0.0042, 0.0042], [0.0075, 0.0062, 0.0062, 0.0055, 0.0049, 0.0043, 0.004, 0.0031], [0.0092, 0.0063, 0.0056, 0.0053, 0.0028, 0.0025, 0.0025, 0.0021], [0.0086, 0.0086, 0.0071, 0.0063, 0.0055, 0.0049, 0.0036, 0.0028], [0.032, 0.0265, 0.0086, 0.0071, 0.0071, 0.0059, 0.0052, 0.0041], [0.0266, 0.0194, 0.0098, 0.0081, 0.0046, 0.0046, 0.0036, 0.0034], [0.016, 0.0125, 0.0125, 0.0125, 0.0055, 0.0055, 0.0052, 0.004], [0.0418, 0.0093, 0.0093, 0.0093, 0.0082, 0.006, 0.0057, 0.0053], [0.1667, 0.0113, 0.0107, 0.0094, 0.0088, 0.0083, 0.0083, 0.0073], [0.3375, 0.0096, 0.009, 0.009, 0.007, 0.0066, 0.0066, 0.0062], [0.1552, 0.0144, 0.0106, 0.0093, 0.0068, 0.0064, 0.0064, 0.0064], [0.1208, 0.0253, 0.0185, 0.0174, 0.0174, 0.0106, 0.0106, 0.0099], [0.1144, 0.0187, 0.0137, 0.0128, 0.0128, 0.0128, 0.0128, 0.0113], [0.0849, 0.0189, 0.0122, 0.0101, 0.0101, 0.0095, 0.0095, 0.0074], [0.0598, 0.0171, 0.0151, 0.0111, 0.0111, 0.0092, 0.0086, 0.0086], [0.051, 0.0165, 0.0165, 0.0137, 0.0107, 0.0107, 0.01, 0.0069], [0.0511, 0.0138, 0.0083, 0.0069, 0.0054, 0.0037, 0.0033, 0.0033], [0.0805, 0.018, 0.0055, 0.0048, 0.0045, 0.004, 0.0031, 0.0029], [0.1006, 0.0154, 0.0106, 0.0106, 0.0037, 0.0037, 0.0032, 0.003], [0.0907, 0.0168, 0.0148, 0.009, 0.0062, 0.0042, 0.004, 0.004], [0.1712, 0.049, 0.0337, 0.0124, 0.0075, 0.0066, 0.0062, 0.0049], [0.2299, 0.0482, 0.0228, 0.0095, 0.0095, 0.0079, 0.0058, 0.0058], [0.3438, 0.0636, 0.032, 0.0133, 0.0125, 0.0081, 0.0063, 0.0059], [0.8088, 0.0853, 0.019, 0.0123, 0.009, 0.0054, 0.0035, 0.0031], [0.7676, 0.063, 0.0205, 0.0141, 0.0132, 0.0124, 0.0117, 0.0075], [0.8641, 0.0626, 0.0158, 0.008, 0.0066, 0.0038, 0.0038, 0.0033], [0.5502, 0.2294, 0.0657, 0.058, 0.0188, 0.0147, 0.0084, 0.0074], [0.4407, 0.1344, 0.1263, 0.0924, 0.0362, 0.0142, 0.0133, 0.0097], [0.7449, 0.0289, 0.0271, 0.0255, 0.0155, 0.0128, 0.0094, 0.0083], [0.4357, 0.2813, 0.018, 0.018, 0.0116, 0.007, 0.0058, 0.0055], [0.956, 0.042, 0.0005, 0.0004, 0.0003, 0.0001, 0.0001, 0.0]], "ranks": {"Rust": [46339, 104448, 87678, 131029, 16912, 43111, 42841, 24717, 55457, 37906, 18957, 54206, 48582, 17005, 12502, 15775, 23216, 59098, 91599, 65173, 85122, 108665, 53968, 33331, 21784, 23463, 14939, 8077, 13983, 7669, 4719, 5350, 6080, 34103, 75586, 104171, 47075, 55581, 52157, 61030, 48139, 56008, 38934, 40339, 31678, 25589, 27389, 22128, 45832, 55239, 54249, 66402, 61166, 38659, 13239, 14604, 2412, 5090, 30785, 2542, 2070, 1072, 487]}}, {"pos": 567, "top": [[" \u2013", "\u2013", ".", ",", "y", "\u2026..", "er", "s"], [" \u2013", "\u2013\u2013", "\u2013and", " Strec", "\u30e3\u30f3", " Geile", " \u2013**", " \u041a\u0440\u0430\u0441\u0438"], ["\u2013", " \u2013", ".\u2013", "\u2013and", "**\u2013", "\u2013\u2013", "\u2026..", " \u2013,"], [" milfs", " Geile", " Strec", " \u041a\u0440\u0430\u0441\u0438", "erias", " Hidal", " Nuest", " Pubbl"], ["kits", " ***", "er", " *\u2013", " \u041a\u0440\u0430\u0441\u0438", "erweise", " Geile", "es"], ["-CS", "kits", " ***", " veggies", "fst", " **\u2013", "-**", " Geile"], ["er", " ***", "s", "***", "  \n", "rd", "y", "\u2011"], ["er", " ***", " veggies", "ner", "-**", "s", "-CS", "rd"], ["er", "  \n", "\u00ad", " ***", "\u2011", " \u00ad", "egger", "***"], ["\u00ad", "er", " \u00ad", "\u2011", "\u2013", "rd", "s", "y"], ["er", "\u00ad", " \u00ad", "y", "\u2011", "-", "rd", "..."], ["er", " veggies", "orama", "ball", "\\xf", " ***", "ics", "illion"], ["er", " veggies", "orama", "ball", "illion", "zinho", "ics", "kits"], ["er", " veggies", "ball", "zinho", "-themed", "orama", "kits", "-tech"], ["er", "ball", "-tech", "y", " tech", "kits", "ways", " goodies"], ["er", "ball", "y", "es", "kits", " tech", "kids", " kids"], ["er", "y", "o", "es", "ball", "s", "n", "\u2013"], ["er", "-tech", "kits", "ball", "o", "y", "kids", "\u2013"], ["kits", "ball", "kids", "-tech", "er", "zinho", "y", "es"], ["y", "ahead", "ball", "o", "kids", "zinho", "orama", "er"], ["y", "o", "ahead", "n", "\u2013", "d", "  \n\n", "an"], ["orama", "zinho", "ball", "kids", "kits", "ics", "waves", "ware"], ["orama", "ball", "zinho", "ahead", "ware", "world", "waves", "illion"], ["ahead", "world", "fully", "y", "orama", "ball", "ware", "illion"], ["orama", "waves", "-tech", "world", " tech", "  \n\n", "ahead", "ic"], ["orama", " visuals", " pornstar", " gaming", "-tech", " tech", "waves", "punk"], ["orama", " visuals", " gaming", " tech", "plane", " movies", " cinematic", " movie"], [" --", " gaming", "\n\n", " tech", " \n\n", " games", " video", " technology"], [" tech", "orama", " gaming", " visuals", " technology", " games", " architecture", " arcade"], [" ...\\", " tech", " technology", " visuals", " gaming", " architecture", "orama", " movies"], [" technology", " tech", " theater", " games", " complex", " architecture", " movies", " film"], [" games", " technology", " game", " tech", " film", " complex", " theater", " star"], [" tech", " technology", " games", " game", " film", " gaming", " complex", " theater"], [" tech", " technology", " gaming", " theater", " architecture", " hardware", " gameplay", " visuals"], [" tech", " hardware", " gaming", "tech", "ware", " immersive", " visuals", " gameplay"], [" tech", " hardware", " immersive", "tech", " gaming", " physics", " gameplay", "-tech"], [" tech", " gameplay", " hardware", " animations", " gaming", " animation", " immersive", " visuals"], [" gameplay", " animations", " tech", " animation", " graphics", " visuals", " gaming", " hardware"], [" visuals", " graphics", " animations", " gameplay", " animation", " visualization", " tech", " gaming"], [" visuals", " graphics", " animation", " animations", " visualization", " gameplay", " shader", " gaming"], [" graphics", " visuals", " animation", " animations", " visualization", " gameplay", " shader", " GPU"], [" graphics", " visuals", " animation", " animations", " visualization", " shader", " GPU", " gameplay"], [" visuals", " graphics", " animation", " animations", " visualization", " gameplay", " shader", " shaders"], [" visuals", " animations", " graphics", " animation", " visualization", " gameplay", " shader", " shaders"], [" animations", " animation", " visuals", " graphics", " visualization", " gameplay", " shaders", " framerate"], [" visuals", " animations", " animation", " graphics", " gameplay", " visualization", " framerate", " shader"], [" visuals", " animations", " animation", " graphics", " visualization", " shader", " gameplay", " framerate"], [" visuals", " animations", " animation", " graphics", " visualization", " gameplay", " framerate", " viewport"], [" visuals", " animations", " animation", " visualization", " shader", " framerate", " graphics", " shaders"], [" visuals", " framerate", " visualization", " animations", " shader", " shaders", " animation", " graphics"], [" visuals", " framerate", " visualization", " animations", " shader", "visualization", " shaders", " animation"], [" visuals", " framerate", " visualization", " viewport", " renderer", " animations", " shader", " animation"], [" framerate", " renderer", " visuals", " viewport", " visualization", " shader", "\u5e27", " framebuffer"], [" framerate", " renderer", " viewport", " visuals", " shader", " visualization", " framebuffer", "\u5e27"], [" renderer", " viewport", " framerate", " loop", " shader", "-loop", "\u6e32\u67d3", " framebuffer"], [" renderer", " viewport", " framerate", "\u6e32\u67d3", "-render", " Renderer", " render", "Renderer"], [" renderer", " viewport", "\u6e32\u67d3", " Renderer", " rendering", " render", "-render", "Renderer"], [" renderer", " viewport", " framerate", "\u6e32\u67d3", " render", " Renderer", " rendering", "-render"], [" renderer", " viewport", " Renderer", " render", "\u6e32\u67d3", " rendering", "-render", "Renderer"], [" viewport", " renderer", "Viewport", "viewport", ".viewport", " render", " Renderer", " view"], [" viewport", "Viewport", " renderer", "viewport", ".viewport", " view", " loop", " render"], [" viewport", " renderer", "Viewport", "viewport", ".viewport", " render", " view", " loop"], [" viewport", "D", "6", "0", "2", " renderer", "Viewport", "4"]], "p": [[0.4408, 0.2674, 0.1622, 0.0385, 0.0194, 0.0125, 0.0071, 0.0067], [0.0131, 0.0131, 0.0116, 0.0096, 0.0055, 0.0051, 0.0045, 0.004], [0.5707, 0.2379, 0.0875, 0.0682, 0.0081, 0.0081, 0.0046, 0.0016], [0.0159, 0.015, 0.011, 0.0062, 0.0062, 0.0055, 0.0055, 0.0046], [0.0204, 0.0169, 0.0124, 0.008, 0.007, 0.0055, 0.004, 0.0033], [0.0143, 0.0126, 0.0104, 0.0072, 0.0049, 0.0046, 0.0044, 0.0036], [0.31, 0.2002, 0.0946, 0.0211, 0.0198, 0.0068, 0.0057, 0.0047], [0.0769, 0.0497, 0.025, 0.0142, 0.0111, 0.0104, 0.0098, 0.0081], [0.1527, 0.0386, 0.0282, 0.0249, 0.0249, 0.0133, 0.0111, 0.0104], [0.136, 0.1277, 0.0603, 0.0532, 0.0285, 0.0268, 0.0126, 0.0098], [0.6795, 0.0492, 0.028, 0.0263, 0.0181, 0.0124, 0.0117, 0.0091], [0.0969, 0.0123, 0.0075, 0.0075, 0.0066, 0.0062, 0.0055, 0.0055], [0.0333, 0.0115, 0.0079, 0.0074, 0.0062, 0.0045, 0.0029, 0.0027], [0.0218, 0.0103, 0.0091, 0.0049, 0.0043, 0.0043, 0.0038, 0.0038], [0.0327, 0.0083, 0.0083, 0.0078, 0.0069, 0.0057, 0.0053, 0.005], [0.066, 0.0258, 0.0243, 0.0201, 0.013, 0.0115, 0.0095, 0.0095], [0.1103, 0.0973, 0.0914, 0.0381, 0.0231, 0.0231, 0.0149, 0.0124], [0.0448, 0.0328, 0.0308, 0.0272, 0.0272, 0.0199, 0.0106, 0.0078], [0.0173, 0.0163, 0.0163, 0.0153, 0.0153, 0.0112, 0.0093, 0.0072], [0.0095, 0.009, 0.0048, 0.0048, 0.0042, 0.0035, 0.0035, 0.0033], [0.012, 0.0078, 0.0064, 0.005, 0.005, 0.005, 0.0037, 0.003], [0.0154, 0.0078, 0.005, 0.0032, 0.0027, 0.0022, 0.0022, 0.002], [0.0124, 0.008, 0.0049, 0.0043, 0.0043, 0.0038, 0.0033, 0.0033], [0.0052, 0.0046, 0.0046, 0.0041, 0.0034, 0.003, 0.0028, 0.0026], [0.0079, 0.0037, 0.0026, 0.0026, 0.0023, 0.0023, 0.0021, 0.002], [0.0217, 0.0062, 0.0048, 0.0031, 0.0031, 0.0028, 0.0028, 0.0026], [0.0148, 0.0115, 0.0095, 0.0042, 0.0033, 0.0027, 0.0026, 0.0026], [0.0122, 0.0101, 0.0095, 0.0069, 0.0051, 0.0051, 0.0045, 0.0042], [0.0179, 0.0168, 0.0139, 0.0123, 0.009, 0.0062, 0.0058, 0.0045], [0.0443, 0.0223, 0.0144, 0.0135, 0.0112, 0.0093, 0.0087, 0.0087], [0.0364, 0.0284, 0.0195, 0.0195, 0.0143, 0.0111, 0.0104, 0.0104], [0.0259, 0.0259, 0.0189, 0.0157, 0.0147, 0.013, 0.0115, 0.0079], [0.02, 0.02, 0.0176, 0.0121, 0.0107, 0.0089, 0.0089, 0.0065], [0.0407, 0.0097, 0.0091, 0.0091, 0.008, 0.008, 0.0066, 0.0055], [0.0568, 0.0099, 0.0087, 0.0072, 0.0068, 0.006, 0.0047, 0.0047], [0.0708, 0.0168, 0.009, 0.0085, 0.0075, 0.007, 0.0062, 0.0051], [0.0491, 0.0232, 0.0218, 0.0205, 0.0132, 0.011, 0.0103, 0.0097], [0.0448, 0.0421, 0.0349, 0.0255, 0.024, 0.0165, 0.0155, 0.0145], [0.0563, 0.0497, 0.0439, 0.0439, 0.0387, 0.0266, 0.025, 0.0195], [0.1198, 0.1057, 0.0876, 0.0823, 0.0641, 0.0469, 0.0184, 0.0162], [0.2585, 0.1777, 0.1078, 0.0839, 0.0542, 0.0199, 0.0176, 0.0165], [0.2733, 0.1878, 0.1291, 0.0783, 0.0446, 0.0164, 0.0154, 0.0145], [0.2161, 0.1907, 0.1311, 0.1157, 0.0513, 0.0258, 0.0115, 0.0095], [0.2587, 0.1569, 0.1569, 0.1222, 0.0309, 0.02, 0.01, 0.0089], [0.1685, 0.1685, 0.1312, 0.1022, 0.0275, 0.0228, 0.0115, 0.0108], [0.165, 0.1456, 0.1368, 0.0688, 0.0287, 0.0253, 0.0127, 0.0127], [0.1997, 0.0943, 0.0648, 0.0609, 0.0254, 0.0238, 0.0224, 0.0186], [0.1959, 0.1265, 0.0677, 0.0561, 0.032, 0.0206, 0.0171, 0.0171], [0.1491, 0.1161, 0.0484, 0.0354, 0.0333, 0.0312, 0.0312, 0.0294], [0.2095, 0.0639, 0.06, 0.0498, 0.0302, 0.0221, 0.0183, 0.0162], [0.1598, 0.0804, 0.0709, 0.0245, 0.0168, 0.0116, 0.009, 0.0085], [0.2457, 0.14, 0.0904, 0.0904, 0.0259, 0.0157, 0.0139, 0.0115], [0.2973, 0.1591, 0.1239, 0.0852, 0.0456, 0.0294, 0.0139, 0.0102], [0.5155, 0.1303, 0.115, 0.0373, 0.0257, 0.0137, 0.0129, 0.0101], [0.2873, 0.1974, 0.1538, 0.1057, 0.0726, 0.0208, 0.0126, 0.0081], [0.4106, 0.3624, 0.0809, 0.0297, 0.018, 0.0141, 0.0141, 0.0109], [0.7181, 0.0858, 0.0459, 0.0278, 0.0217, 0.0217, 0.0191, 0.0191], [0.566, 0.236, 0.0362, 0.0319, 0.0249, 0.0194, 0.0194, 0.0133], [0.6142, 0.3288, 0.0088, 0.0077, 0.006, 0.0047, 0.0037, 0.0037], [0.986, 0.0052, 0.0046, 0.0036, 0.0002, 0.0001, 0.0001, 0.0001], [0.9894, 0.004, 0.0028, 0.0028, 0.0002, 0.0001, 0.0001, 0.0], [0.987, 0.0055, 0.0024, 0.0017, 0.0004, 0.0002, 0.0001, 0.0001], [0.6758, 0.1709, 0.0246, 0.0217, 0.0204, 0.014, 0.0075, 0.0058]], "ranks": {"Rust": [47549, 108029, 95700, 55621, 53652, 31249, 31271, 25339, 21243, 12055, 32494, 36041, 34767, 17629, 34510, 22568, 29230, 25197, 52159, 88027, 133875, 90412, 123755, 142967, 69202, 46143, 79049, 26581, 47540, 47386, 22067, 19330, 21169, 61830, 38936, 49806, 26318, 40328, 56240, 47001, 33430, 27986, 30361, 32573, 23511, 19369, 27839, 18290, 11345, 6634, 7378, 29486, 20649, 13752, 19735, 7020, 1033, 1312, 1496, 2218, 1377, 1655, 965]}}, {"pos": 568, "top": [[".", " \u2013", "\u00a0", " \u200b\u200b", ",", " ", "\u2013", "\u200b\u200b"], [" \u200b\u200b", " \u2013", "\u2013", "  \n\n", "   \n", " ", "\u200b\u200b", "\u2013and"], ["\u2013", " \u2013", ".", ",", " \u200b\u200b", "\u2026", " [\u2026]", "\u2026."], ["\u30bb\u30ec", "&eacute", " pornstar", "\ufffd\ufffd", " \u041a\u0440\u0430\u0441\u0438", " Hidal", "\u0902\u092c\u0930", " cittadin"], [" \u200b\u200b", " ", " @", "&D", " PD", "@", "&nbsp", "@d"], [" \u200b\u200b", " \uff08", " Hong", " Pro", " Hollywood", " \uff1a", " Dream", " PD"], [" \u200b\u200b", " ", ".", " ......", "!", "\u200b\u200b", "\uff01", " @"], [" \u200b\u200b", " ", " ......", "......", " @", "!", " TV", " Star"], [" \u200b\u200b", " \n\n", "  \n\n", "......", " ......", ".", " \n\n\n", "..."], ["&nbsp", ",", " \u00ad", " \u200b\u200b", "...", "\u2026but", " [\u2026]", ".png"], ["...", "&nbsp", "......", " [\u2026]", " ", " \u200b\u200b", " [...]", " vision"], [" vision", " complex", " showcase", " theater", " movies", " pyramid", " technology", " culture"], [" vision", " complex", " theater", " movies", " technology", " showcase", " architecture", " drama"], [" vision", " complex", " technology", " drama", " theater", " architecture", " visuals", " world"], [" vision", " complex", " world", " tech", " movies", " technology", " drama", " games"], [" tech", " movies", " vision", " complex", " technology", " kids", " showcase", " classic"], [" tech", " complex", " technology", " vision", " visuals", " showcase", " movies", " kids"], [" tech", " visuals", " vibe", " games", " movies", " vision", " showcase", " kids"], [" tech", " games", " complex", " visuals", " drama", " movie", " kids", " movies"], [" complex", " tech", " movie", " drama", " movies", " music", " vision", " games"], ["<|endoftext|>", " \n\n", "  \n\n", "...", " complex", " tech", " movie", " \u2014"], [" games", " movie", " game", " movies", " gaming", " visuals", " gameplay", " drama"], [" games", " game", " movie", " gaming", " movies", " visuals", " tech", " drama"], [" games", " game", " complex", " movie", " music", " vision", " movies", " world"], [" visuals", " movie", " games", " imagery", " movies", " architecture", " tech", " gaming"], [" visuals", " architecture", " animations", " graphics", " animation", " artwork", " sculptures", " sculpture"], [" visuals", " architecture", " movies", " movie", " animation", " graphics", " imagery", " animations"], [" visuals", " film", " imagery", " architecture", " movies", " games", " video", " movie"], [" architecture", " visuals", " graphics", " games", " film", " animation", " animations", " technology"], [" architecture", " visuals", " graphics", " animations", " animation", " technology", " games", " movies"], [" ...", " architecture", " visuals", " graphics", " games", " technology", " theater", " scenes"], [" ...", " games", " theater", " technology", " game", " architecture", " film", " scenes"], [" games", " game", " film", " technology", " complex", " architecture", " theater", " tech"], [" architecture", " tech", " visuals", " games", " technology", " hardware", " animations", " theater"], [" tech", " visuals", " hardware", " architecture", " games", " gaming", " graphics", " game"], [" tech", " hardware", " animation", " animations", " game", " games", " architecture", " studio"], [" animation", " animations", " gameplay", " game", " visuals", " graphics", " hardware", " tech"], [" animation", " animations", " graphics", " game", " gameplay", " visuals", " video", " tech"], [" animation", " graphics", " game", " visuals", " animations", " frame", " video", " visual"], [" animation", " graphics", " animations", " visuals", " gameplay", " game", " motion", " frame"], [" graphics", " animation", " animations", " visuals", " GPU", " gameplay", " shader", " game"], [" graphics", " animation", " animations", " visuals", " GPU", " camera", " engine", " frame"], [" graphics", " animation", " animations", " visuals", " camera", " engine", " gameplay", " GPU"], [" graphics", " animation", " visuals", " animations", " engine", " camera", " gameplay", " production"], [" animation", " graphics", " production", " animations", " cycle", " engine", " camera", " gameplay"], [" animation", " graphics", " production", " animations", " visuals", " engine", " gameplay", " cycle"], [" graphics", " animation", " cycle", " workflow", " animations", " visuals", " production", " engine"], [" graphics", " animation", " visuals", " animations", " production", " gameplay", " workflow", " cycle"], [" animation", " graphics", " framerate", " animations", " visuals", " gameplay", " workflow", " production"], [" framerate", " animation", " visuals", " gameplay", " animations", " shader", " workflow", " graphics"], [" framerate", " visuals", " animation", " synced", " renderer", " animations", " synchronization", " gameplay"], [" framerate", " visuals", " renderer", " viewport", " visualization", " throughput", " animation", " GPU"], [" framerate", " renderer", " visuals", " viewport", " visualization", " shader", " GPU", " rendering"], [" framerate", " renderer", " visuals", " viewport", " visualization", " pipeline", " shader", " rendering"], [" renderer", " framerate", " loop", " viewport", " shader", " pipeline", " rendering", " visuals"], [" renderer", " framerate", " viewport", "\u6e32\u67d3", " rendering", " render", " Renderer", " renders"], [" renderer", " viewport", " rendering", "\u6e32\u67d3", " render", " framerate", " renders", " Renderer"], [" renderer", " rendering", " framerate", "\u6e32\u67d3", " render", " viewport", " renders", "-render"], [" renderer", " pipeline", " viewport", " framerate", " frame", " rendering", " render", " renders"], [" viewport", " renderer", "Viewport", "viewport", ".viewport", " render", " rendering", " pipeline"], [" viewport", " renderer", "Viewport", "viewport", ".viewport", " framerate", " pipeline", " view"], [" viewport", " renderer", "Viewport", " framerate", "viewport", " pipeline", " frame", " render"], [" viewport", " renderer", " render", " pipeline", " frame", " loop", " framerate", " view"]], "p": [[0.7591, 0.0428, 0.0313, 0.0313, 0.0202, 0.0158, 0.0115, 0.0096], [0.0848, 0.0797, 0.0548, 0.0147, 0.013, 0.013, 0.0084, 0.0084], [0.4989, 0.2214, 0.0596, 0.0385, 0.0319, 0.0206, 0.0091, 0.0091], [0.0015, 0.0014, 0.001, 0.001, 0.001, 0.0009, 0.0009, 0.0008], [0.0719, 0.0233, 0.0171, 0.0067, 0.0059, 0.0055, 0.0052, 0.0041], [0.3113, 0.0021, 0.0019, 0.0016, 0.0015, 0.0013, 0.0013, 0.0012], [0.5629, 0.0462, 0.0124, 0.0075, 0.0059, 0.0046, 0.0046, 0.0046], [0.3004, 0.0066, 0.0055, 0.004, 0.0036, 0.0031, 0.0026, 0.0024], [0.536, 0.0468, 0.0388, 0.0267, 0.0221, 0.0143, 0.0111, 0.0098], [0.0078, 0.005, 0.0047, 0.0047, 0.0037, 0.0035, 0.0033, 0.0031], [0.315, 0.0259, 0.0157, 0.0138, 0.0095, 0.0095, 0.0084, 0.0084], [0.0187, 0.0155, 0.0094, 0.0094, 0.0083, 0.0069, 0.0054, 0.005], [0.0175, 0.0145, 0.0128, 0.0061, 0.0061, 0.0057, 0.0057, 0.0047], [0.0239, 0.0106, 0.0078, 0.0078, 0.0073, 0.006, 0.0057, 0.0057], [0.0189, 0.0157, 0.0079, 0.0074, 0.0074, 0.007, 0.007, 0.0065], [0.0125, 0.0097, 0.0097, 0.0091, 0.0086, 0.0086, 0.008, 0.0067], [0.0227, 0.0156, 0.0107, 0.0083, 0.0078, 0.0078, 0.0078, 0.0074], [0.0301, 0.0235, 0.0152, 0.0118, 0.0098, 0.0098, 0.0098, 0.0092], [0.0216, 0.0131, 0.0116, 0.0109, 0.0109, 0.0102, 0.0102, 0.009], [0.0086, 0.0076, 0.0071, 0.0059, 0.0049, 0.0046, 0.0043, 0.0043], [0.5999, 0.0181, 0.0049, 0.0011, 0.0011, 0.001, 0.0009, 0.0007], [0.0125, 0.0071, 0.0067, 0.0067, 0.0063, 0.0052, 0.0052, 0.0046], [0.0228, 0.0167, 0.0138, 0.0108, 0.0101, 0.0074, 0.0069, 0.0061], [0.0135, 0.0105, 0.0082, 0.0068, 0.006, 0.0053, 0.0053, 0.005], [0.0154, 0.0128, 0.012, 0.012, 0.0093, 0.0088, 0.0088, 0.0077], [0.0699, 0.033, 0.0213, 0.0213, 0.0188, 0.0156, 0.0147, 0.0147], [0.0847, 0.0353, 0.0228, 0.0189, 0.0189, 0.0189, 0.0189, 0.0167], [0.0191, 0.0158, 0.0149, 0.0149, 0.0149, 0.014, 0.014, 0.014], [0.0602, 0.0566, 0.0236, 0.0208, 0.0184, 0.0172, 0.0172, 0.0152], [0.0776, 0.0567, 0.0323, 0.0304, 0.0222, 0.0209, 0.0209, 0.0184], [0.0665, 0.0586, 0.0403, 0.0334, 0.026, 0.026, 0.0244, 0.0216], [0.0636, 0.0341, 0.022, 0.022, 0.022, 0.0194, 0.0194, 0.0142], [0.0314, 0.0216, 0.0203, 0.0179, 0.0139, 0.0116, 0.0096, 0.0096], [0.0415, 0.0323, 0.0303, 0.0303, 0.0268, 0.0236, 0.0196, 0.0184], [0.0668, 0.0431, 0.0431, 0.0315, 0.0204, 0.018, 0.014, 0.014], [0.0596, 0.0385, 0.0219, 0.0193, 0.0193, 0.0182, 0.0171, 0.0141], [0.1191, 0.0769, 0.0412, 0.0321, 0.0301, 0.0301, 0.0266, 0.0266], [0.1351, 0.0599, 0.0529, 0.0301, 0.0283, 0.0266, 0.0161, 0.0142], [0.0941, 0.0473, 0.0418, 0.0346, 0.0325, 0.0197, 0.0185, 0.0174], [0.1953, 0.0814, 0.0634, 0.0436, 0.0299, 0.0248, 0.0182, 0.0182], [0.2886, 0.175, 0.0502, 0.0443, 0.0304, 0.0184, 0.0184, 0.0184], [0.2539, 0.2241, 0.0532, 0.0415, 0.0285, 0.0184, 0.0152, 0.0143], [0.2255, 0.199, 0.057, 0.0473, 0.0253, 0.0238, 0.021, 0.0163], [0.2097, 0.1534, 0.0468, 0.0364, 0.0195, 0.0183, 0.0162, 0.0152], [0.1327, 0.0971, 0.0431, 0.0278, 0.0231, 0.0231, 0.0204, 0.018], [0.1098, 0.091, 0.0379, 0.0277, 0.0245, 0.023, 0.0216, 0.0216], [0.0699, 0.0657, 0.031, 0.0291, 0.0274, 0.0257, 0.0227, 0.0227], [0.09, 0.0795, 0.0453, 0.0353, 0.0258, 0.0242, 0.0214, 0.0189], [0.0756, 0.052, 0.0431, 0.0431, 0.0296, 0.0278, 0.0231, 0.0217], [0.1698, 0.0403, 0.0314, 0.026, 0.0245, 0.0203, 0.0179, 0.0168], [0.2226, 0.025, 0.0161, 0.0151, 0.0126, 0.0111, 0.0104, 0.0081], [0.4293, 0.0845, 0.0375, 0.0311, 0.0201, 0.0114, 0.0095, 0.0089], [0.5078, 0.1649, 0.0606, 0.0223, 0.0127, 0.0112, 0.0105, 0.0105], [0.647, 0.1444, 0.0322, 0.0221, 0.0105, 0.0098, 0.0087, 0.0072], [0.4488, 0.3084, 0.0473, 0.0325, 0.0287, 0.0223, 0.0068, 0.0064], [0.5241, 0.2185, 0.1502, 0.014, 0.0123, 0.0096, 0.0058, 0.0051], [0.8403, 0.0326, 0.0288, 0.0198, 0.0136, 0.012, 0.0073, 0.0073], [0.7713, 0.0493, 0.0339, 0.0264, 0.0264, 0.0206, 0.0181, 0.0097], [0.6969, 0.1555, 0.0446, 0.021, 0.0164, 0.0128, 0.0113, 0.0077], [0.9959, 0.0017, 0.0012, 0.0008, 0.0001, 0.0001, 0.0001, 0.0], [0.9949, 0.0022, 0.0012, 0.0009, 0.0002, 0.0001, 0.0001, 0.0], [0.9903, 0.0046, 0.0007, 0.0006, 0.0005, 0.0005, 0.0004, 0.0003], [0.9357, 0.0301, 0.0038, 0.0034, 0.003, 0.0016, 0.0015, 0.0015]], "ranks": {"Rust": [35367, 47650, 30236, 68525, 17318, 11940, 16423, 13060, 27858, 23792, 20294, 24354, 28206, 28799, 41390, 33856, 25232, 46637, 54552, 85872, 73307, 84851, 63770, 50066, 60667, 85275, 45896, 17245, 26155, 32241, 16562, 18714, 18639, 26469, 20622, 14770, 9791, 12800, 12585, 12763, 7775, 6949, 8965, 9567, 11386, 10223, 13146, 12859, 12872, 15067, 16311, 15369, 19228, 22900, 27544, 15888, 2789, 3337, 3048, 3628, 3654, 3834, 2318]}}, {"pos": 569, "top": [[" \u2502", "\u2502", "\u007f", "\u1ef9", "\u2500", " ", ".", " '~"], [" '~", " \\\"\"", " '\\\"", ":\\\"", " \uff62", " \\\"{", " ``(", " '\\''"], [":\\\"", " '\\\"", " \uff62", " \\\"\"", ",\\\"", " \\\"{", ".\\\"", " '~"], [" ``", "``", " ``(", " \uff62", "``,", "':''", " \\\"{", " '\\''"], [" ``", " \uff62", "``", " ``(", " \\\"{", ":\\\"", " |--", " \\\"\""], [" \uff62", ":\\\"", " ``", " |--", " '\\''", " \\\"{", " \u02c7", "!--"], [" \uff62", " ``", "``", " \u2502", " '\\\"", " |--", " \u251c", " \\'"], [" \uff62", " ``", "``", " '\\\"", " \u2502", " ``(", " \\''", " '\\''"], [" \uff62", " \u2502", " '\\\"", " ``", " \\\"\"", " \\''", ":\\\"", " '\\''"], [" '\\\"", " '\\''", " \\''", " \uff62", " \\<^", " ``", " |\u2022", " \u2502"], [" \u2502", " \uff62", " \\/", " \\'", " \u251c", " ``", ".\\\"", " \\''"], [" ``", " ``(", " '\\\"", " '\\''", " \uff62", " \u251c", " \u2502", " '}"], [" ``", " ``(", " '\\\"", " '}", " '\\''", ":''", " '~", "\u8033\u719f\u80fd\u8be6"], [" ``", " ``(", " '\\\"", " seamlessly", " '~", " '}", " '\\''", " shoreline"], [" ``", " ``(", " myriad", " seamlessly", " rendition", " '\\\"", " atop", " ostensibly"], [" myriad", " ``", " atop", " swiftly", " seamlessly", " showcasing", " showcased", " entirety"], [" seamlessly", " myriad", " showcased", " showcase", " showcasing", " swiftly", " akin", " atop"], [" ``", " seamlessly", " ``(", " showcased", " \uff62", " '\\\"", " '}", ">--"], [" ``", " seamlessly", ">--", " '\\\"", " '}", " myriad", " |--", " ``("], [" swiftly", " --", " myriad", " ostensibly", " ``", " seamlessly", " atop", ")--"], ["<|endoftext|>", " swiftly", " myriad", " --", " ostensibly", " seemingly", "\u2014and", " vastly"], [" ``", " ``(", " '\\\"", " |\u2022", "tvr", " seamlessly", " '`", " '}"], [" ``", " swiftly", " --", " ``(", " '`", " seamlessly", " myriad", " atop"], [" ``", " --", " swiftly", " myriad", " \\'", " seemingly", " &#", " \r\n \r\n"], [" --", " \r\n\r\n", " \r\n \r\n", " ``", " swiftly", "\r\n\r\n", " &#", " \\'"], [" ``", " \r\n \r\n", " seamlessly", " --", " \\<^", " swiftly", " '`", " '\\\""], [" ``", " --", " atop", " swiftly", " seamlessly", " \r\n \r\n", " '`", " '\\\""], [" --", " ``", " swiftly", " rapidly", " seamlessly", " atop", " seemingly", " ''"], [" ``", " \r\n \r\n", " --", " seamlessly", " rapidly", " atop", " ___", " '\\\""], [" ___", " seamlessly", " ``", " ____", " --", " __", " \r\n \r\n", " rapidly"], [" ``", " --", " seamlessly", " \\\"", " rapidly", " heavily", " dramatically", " ''"], [" rapidly", " heavily", " ``", " seamlessly", " --", " quickly", " dramatically", " \\\""], [" rapidly", " heavily", " dramatically", " seamlessly", " --", " ``", " \\\"", " quickly"], [" seamlessly", " rapidly", " heavily", " dramatically", " looming", " skyrocket", " aggressively", " swiftly"], [" seamlessly", " rapidly", " relentlessly", " inevitably", " dramatically", " looming", " aggressively", " relentless"], [" rapidly", " seamlessly", " inevitably", " dramatically", " relentlessly", " disproportionately", " relentless", " rapid"], [" seamlessly", " inevitably", " rapidly", " jitter", " relentlessly", " skyrocket", " plummet", " dramatically"], [" seamlessly", " rapidly", " inevitably", " jitter", " stutter", " glitch", " stalled", " disproportionately"], [" seamlessly", " rapidly", " stalled", " stutter", " jitter", " inevitably", " crashes", " relentlessly"], [" seamlessly", " stutter", " jitter", " crashes", " glitch", " stalled", " inevitably", " glitches"], [" stutter", " jitter", " glitch", " sluggish", " crashes", " seamlessly", " stalled", " slowdown"], [" stutter", " jitter", " crashes", " glitch", " glitches", " crashing", " seamlessly", " flick"], [" stutter", " jitter", " crashes", " glitch", " crashing", " stalled", " glitches", " flick"], [" stutter", " crashes", " jitter", " stalled", " crashing", " glitch", " slowdown", " collapse"], [" crashes", " jitter", " stutter", " stalled", " collapse", " slows", " glitch", " flick"], [" jitter", " stutter", " crashes", " collapse", " instantly", " plummet", " stalled", " stagn"], [" crashes", " collapse", " instantly", " plummet", " stutter", " inevitably", " jitter", " collapses"], [" crashes", " instantly", " inevitably", " collapse", " plummet", " stutter", " collapses", " crashing"], [" instantly", " crashes", " plummet", " inevitably", " collapses", " collapse", " stutter", " crashing"], [" collapses", " collapse", " instantly", " plummet", " crashes", " stutter", " loses", " crashing"], [" collapses", " crashes", " plummet", " stutter", " loses", " collapse", " instantly", " meltdown"], [" stutter", " crashes", "\u505c\u6ede", " collapses", " loses", " slows", " suffers", " plummet"], [" stutter", "\u505c\u6ede", " slows", " crashes", " collapses", "\u5361\u987f", " froze", " stalled"], [" stutter", "\u505c\u6ede", " collapses", " freezes", " froze", " loses", " slows", " crashes"], [" stutter", " freezes", " will", " collapses", "\u505c\u6ede", " froze", " slows", " loses"], [" stutter", " freezes", " froze", " suffers", " collapses", " stalls", " framerate", " lag"], [" freezes", " stutter", " stalls", "\u505c\u6ede", " freeze", " froze", " pauses", " stalled"], [" stutter", " stalls", " freezes", " stall", " stalled", " jitter", "\u505c\u6ede", " collapses"], [" stutter", " freezes", " stalls", " crashes", " dead", " stall", " jitter", " collapses"], [" freezes", " stutter", " stalls", " drops", " crashes", " dies", " freeze", " lag"], [" freezes", " stutter", " stalls", " dies", " drops", " freeze", " dead", " will"], [" freezes", " dies", " stalls", " drops", " will", " stutter", " dips", " misses"], [" freezes", " stalls", " drops", " dies", " locks", " dips", " stutter", " will"]], "p": [[0.0544, 0.0114, 0.0101, 0.0074, 0.0074, 0.0057, 0.0051, 0.0049], [0.0767, 0.0721, 0.0495, 0.034, 0.0282, 0.0234, 0.0118, 0.0111], [0.2662, 0.1181, 0.0558, 0.0338, 0.0318, 0.0281, 0.0218, 0.0218], [0.4759, 0.2547, 0.1751, 0.0209, 0.0068, 0.005, 0.0036, 0.0034], [0.1422, 0.104, 0.081, 0.0317, 0.0298, 0.0205, 0.0205, 0.0192], [0.14, 0.0276, 0.0276, 0.0178, 0.0157, 0.0148, 0.0139, 0.0115], [0.3433, 0.1838, 0.0984, 0.0495, 0.0133, 0.0104, 0.0097, 0.0097], [0.3303, 0.2572, 0.065, 0.042, 0.0225, 0.0186, 0.0145, 0.0136], [0.3062, 0.0824, 0.0727, 0.0532, 0.0251, 0.0208, 0.0196, 0.0184], [0.0564, 0.0467, 0.0388, 0.0388, 0.0284, 0.025, 0.0221, 0.0221], [0.102, 0.0546, 0.0425, 0.0331, 0.0274, 0.0274, 0.0242, 0.0242], [0.2686, 0.0638, 0.022, 0.0142, 0.0134, 0.0134, 0.0126, 0.0092], [0.2249, 0.0345, 0.0223, 0.0127, 0.0119, 0.0119, 0.0068, 0.0041], [0.1013, 0.0129, 0.0121, 0.0083, 0.0054, 0.0054, 0.005, 0.0047], [0.4396, 0.0141, 0.0103, 0.0086, 0.0067, 0.0063, 0.0059, 0.0052], [0.0439, 0.0387, 0.0266, 0.025, 0.0235, 0.0207, 0.0207, 0.0161], [0.0484, 0.0455, 0.019, 0.0178, 0.0148, 0.013, 0.013, 0.0122], [0.0575, 0.0255, 0.0088, 0.0064, 0.0057, 0.0057, 0.0053, 0.0053], [0.0386, 0.0206, 0.011, 0.0097, 0.0086, 0.0086, 0.0071, 0.0059], [0.0456, 0.0355, 0.0294, 0.0215, 0.0168, 0.0123, 0.0096, 0.009], [0.0959, 0.0747, 0.0292, 0.0258, 0.0157, 0.0115, 0.0074, 0.0061], [0.2365, 0.0133, 0.0111, 0.0076, 0.0076, 0.0067, 0.0056, 0.0056], [0.3908, 0.0142, 0.0118, 0.0104, 0.0104, 0.0067, 0.0059, 0.0059], [0.2553, 0.0687, 0.0503, 0.0197, 0.0135, 0.0105, 0.0087, 0.0077], [0.0857, 0.0805, 0.0756, 0.0627, 0.0261, 0.0231, 0.0169, 0.0149], [0.1096, 0.0168, 0.0148, 0.0116, 0.0102, 0.009, 0.0085, 0.0085], [0.2921, 0.024, 0.0113, 0.0113, 0.0106, 0.01, 0.0083, 0.0073], [0.1596, 0.0968, 0.0277, 0.0148, 0.009, 0.009, 0.0085, 0.0079], [0.0665, 0.0314, 0.0295, 0.0179, 0.0139, 0.0116, 0.0102, 0.009], [0.0398, 0.0374, 0.0351, 0.0156, 0.0146, 0.0146, 0.0138, 0.0129], [0.2045, 0.0456, 0.0295, 0.0244, 0.0229, 0.0168, 0.0148, 0.007], [0.0366, 0.0344, 0.0196, 0.0184, 0.0173, 0.0135, 0.0126, 0.0092], [0.0385, 0.022, 0.0133, 0.0125, 0.0125, 0.0104, 0.0092, 0.0086], [0.0584, 0.0259, 0.0108, 0.0101, 0.009, 0.0074, 0.0065, 0.0058], [0.0709, 0.0245, 0.014, 0.0102, 0.0102, 0.0096, 0.008, 0.0075], [0.0481, 0.0274, 0.0129, 0.0107, 0.0095, 0.0095, 0.0089, 0.0065], [0.0362, 0.0265, 0.0234, 0.0125, 0.011, 0.0104, 0.0081, 0.0081], [0.0504, 0.0238, 0.021, 0.0164, 0.012, 0.0099, 0.0093, 0.0088], [0.0382, 0.0205, 0.0205, 0.0192, 0.0181, 0.017, 0.0159, 0.0132], [0.046, 0.0432, 0.0279, 0.0204, 0.018, 0.0169, 0.0159, 0.0132], [0.0757, 0.0554, 0.0297, 0.0262, 0.0246, 0.0217, 0.0192, 0.0192], [0.1479, 0.139, 0.048, 0.031, 0.0241, 0.0227, 0.0213, 0.02], [0.193, 0.1326, 0.0553, 0.0296, 0.023, 0.0191, 0.0191, 0.018], [0.131, 0.0746, 0.0581, 0.0399, 0.0258, 0.0214, 0.0177, 0.0177], [0.0708, 0.0708, 0.0551, 0.0314, 0.0314, 0.0179, 0.0148, 0.0139], [0.0575, 0.0448, 0.0421, 0.0371, 0.0255, 0.024, 0.024, 0.0165], [0.0766, 0.0527, 0.0465, 0.0437, 0.0362, 0.03, 0.0282, 0.0265], [0.0943, 0.0609, 0.0572, 0.0393, 0.0369, 0.0369, 0.0288, 0.027], [0.0948, 0.0693, 0.0575, 0.0507, 0.0507, 0.0395, 0.0272, 0.024], [0.0894, 0.0696, 0.0696, 0.0696, 0.0696, 0.0226, 0.0212, 0.0176], [0.0775, 0.047, 0.039, 0.0366, 0.0344, 0.0323, 0.0222, 0.0162], [0.1351, 0.082, 0.0529, 0.0387, 0.0387, 0.0321, 0.0321, 0.0302], [0.4608, 0.0624, 0.0429, 0.0429, 0.0378, 0.0202, 0.0202, 0.0202], [0.6593, 0.0328, 0.029, 0.029, 0.0199, 0.0155, 0.0146, 0.0146], [0.5343, 0.0928, 0.0819, 0.0301, 0.0235, 0.0172, 0.0172, 0.0134], [0.5437, 0.2, 0.0239, 0.0186, 0.0175, 0.0145, 0.012, 0.0113], [0.4414, 0.3437, 0.0527, 0.0249, 0.0249, 0.0151, 0.0071, 0.0063], [0.9497, 0.0287, 0.0106, 0.0016, 0.0013, 0.0009, 0.0008, 0.0007], [0.8888, 0.0443, 0.0345, 0.0036, 0.0028, 0.0022, 0.0017, 0.0017], [0.7237, 0.0864, 0.0408, 0.0125, 0.0125, 0.0091, 0.0086, 0.0076], [0.6653, 0.0795, 0.0482, 0.0375, 0.0311, 0.0201, 0.0156, 0.0061], [0.5681, 0.1268, 0.0871, 0.0466, 0.0207, 0.0207, 0.0161, 0.0076], [0.3918, 0.2693, 0.0991, 0.0874, 0.0413, 0.0134, 0.0126, 0.0067]], "ranks": {"Rust": [81912, 119608, 141869, 112268, 53346, 67888, 96401, 68221, 94878, 92578, 66149, 109684, 90323, 67202, 50387, 46214, 42168, 76448, 81034, 48290, 55997, 72060, 57219, 33125, 35355, 44343, 18370, 6330, 6046, 7552, 4840, 6099, 5263, 5905, 7352, 7494, 4438, 3409, 2387, 3279, 2244, 2389, 2113, 2374, 1907, 1322, 1983, 1888, 1060, 1379, 2211, 2320, 4610, 6917, 13193, 14212, 4488, 9643, 5935, 4987, 7740, 5026, 6748]}}, {"pos": 570, "top": [["s", " \u2013", "\u2013", ",", "\u2013and", "y", ".", "t"], ["s", " \u2013", "\u2013and", "sWith", "\u2013", "\u0627\u062a", " \u2013**", "sul"], ["s", "\u2013", " \u2013", "\u2013and", ",", ".\u2013", ".", " \u2013,"], ["s", "sWith", "sprozess", "sula", "scha", "sste", "sii", "sstr"], ["s", "sWith", "\u0627\u062a", "sche", "en", "\u2013and", "sense", "t"], ["s", "sWith", "\u0627\u062a", "\u2013and", "t", "sver", "sense", "sor"], ["s", "t", "\u0627\u062a", "sWith", "sand", "er", "\u2013and", "l"], ["s", "sWith", "\u0627\u062a", "t", "sense", "sand", "saf", "er"], ["s", "   \n\n", "\u2013and", "sWith", "......", "    \n\n", "\u0627\u062a", "   \n"], ["s", "\u2013and", "\u2013", ",", "sWith", "t", "\u0627\u062a", "\u2013\u2013"], ["s", "\u2013", "\u2013and", " \u2013", "t", ",", "er", " [\u2026]"], ["s", "sWith", "\u0627\u062a", " **", "\u2013and", "scape", "er", "ingly"], ["s", "\u2013and", "sWith", "\u0627\u062a", " \u2013", "scape", "er", "\u2013"], ["s", "\u2013and", "sWith", "t", "\u0627\u062a", "er", "ingly", " incredibly"], ["s", " just", " \u2013", "\u2013and", "t", " barely", " --", " truly"], ["s", " just", " incredibly", "t", " seemingly", " plenty", " \u2013", " truly"], ["s", "\u2013", "t", " just", " \u2013", " incredibly", "\u2013and", ","], ["s", "\u2013and", " incredibly", "\u2013", "   \n\n", " just", " \u2013", "t"], ["s", " incredibly", " [\u2026]", "\u2013and", "t", " seemingly", " effortlessly", "\u2014even"], ["s", "<|endoftext|>", " [\u2026]", " \n\n", "\u2013and", "\u2013", "  \n\n", " barely"], ["<|endoftext|>", " \n\n", "\n\n", "  \n\n", "s", "   \n\n", " \r\n\r\n", " [\u2026]"], ["s", " incredibly", " wildly", " \n\n", "\n\n", " skyrocket", " dramatically", " aggressively"], ["<|endoftext|>", " \n\n", "\n\n", "s", " incredibly", " dramatically", " wildly", " \r\n\r\n"], ["<|endoftext|>", " \n\n", "\n\n", "s", " dramatically", " just", " wildly", " seemingly"], [" \n\n", "\n\n", "  \n\n", " \r\n\r\n", "   \n\n", "\r\n\r\n", "<|endoftext|>", "    \n\n"], [" \n\n", " \r\n\r\n", "\r\n\r\n", "   \n\n", "  \n\n", "\n\n", " wildly", " incredibly"], [" \n\n", "\n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", "  \n\n", " wildly", " skyrocket"], [" \n\n", "\n\n", "\r\n\r\n", " \r\n\r\n", "  \n\n", " dramatically", " wildly", " even"], [" \n\n", "\n\n", "  \n\n", "   \n\n", " \r\n\r\n", " wildly", " dramatically", " even"], [" \n\n", " dramatically", " wildly", " even", " skyrocket", "   \n\n", " \r\n\r\n", " incredibly"], [" \n\n", " even", " dramatically", " wildly", " eventually", " incredibly", " skyrocket", " barely"], [" \n\n", " even", " dramatically", " eventually", " ...", " skyrocket", " quickly", " **"], [" dramatically", " even", " skyrocket", " relentlessly", " wildly", " eventually", " disastr", " aggressively"], [" skyrocket", " relentlessly", " disastr", " catastrophic", " dramatically", " wildly", " aggressively", " disastrous"], [" relentlessly", " inevitably", " aggressively", " disastr", " brutally", " skyrocket", " dramatically", " notoriously"], [" sluggish", " relentlessly", " inevitably", " notoriously", " relentless", " aggressively", " stutter", " worse"], [" sluggish", " inevitably", " stutter", " glitches", " notoriously", " glitch", " relentlessly", " jitter"], [" sluggish", " stutter", " inevitably", " glitches", " glitch", " slow", " jitter", " slower"], [" sluggish", " stutter", " glitches", " glitch", " crashes", " jitter", " slow", " crash"], [" stutter", " sluggish", " glitches", " glitch", " jitter", " crashes", " flick", " slow"], [" stutter", " sluggish", " slow", " jitter", " glitch", " slowdown", " framerate", " glitches"], [" stutter", " jitter", " crashes", " glitches", " glitch", " flick", " framerate", " slowdown"], [" stutter", " jitter", " crashes", " glitches", " spikes", " glitch", " erratic", " flick"], [" stutter", " crashes", " jitter", " slowdown", " spikes", " glitches", " glitch", " slow"], [" jitter", " stutter", " crashes", " spikes", " slowdown", " bursts", " erratic", " slow"], [" jitter", " stutter", " crashes", " spikes", " erratic", " bursts", " framerate", " crash"], [" jitter", " crashes", " stutter", " spikes", " bursts", " erratic", " framerate", " crashing"], [" crashes", " stutter", " jitter", " bursts", " erratic", " spikes", " crashing", " crash"], [" crashes", " erratic", " stutter", " jitter", " bursts", " glitches", " plummet", " sluggish"], [" crashes", " erratic", " stutter", " glitches", " jitter", " plummet", " sluggish", " bursts"], [" stutter", " glitches", " erratic", " crashes", " jitter", " plummet", " glitch", " crashing"], [" stutter", " sluggish", " crashes", " plummet", " jitter", " crashing", "\u5361\u987f", " glitches"], [" stutter", "\u5361\u987f", " sluggish", " jitter", " slowdown", " plummet", " crashes", " glitches"], [" stutter", "\u5361\u987f", " jitter", " plummet", " framerate", " sluggish", " lag", " crashing"], [" stutter", "\u5361\u987f", " plummet", " lag", " jitter", "\u8dcc\u81f3", " freezes", "\u8dcc\u7834"], [" stutter", " plummet", "\u5361\u987f", " framerate", " lag", " freezes", " jitter", " freeze"], [" stutter", "\u5361\u987f", " jitter", " plummet", " lag", " freeze", " framerate", " freezes"], [" stutter", " jitter", "\u5361\u987f", " stumble", " jer", " plummet", " stall", " stalls"], [" stutter", " jitter", "\u5361\u987f", " jer", " plummet", " stumble", " throttle", " jerk"], [" stutter", " jitter", " plummet", " hitch", " drop", " dropped", " lag", " framerate"], [" stutter", " hitch", " plummet", " jitter", " drop", " tear", " dip", " throttle"], [" stutter", " jitter", " drop", " throttle", " tear", " hitch", " choke", " plummet"], [" stutter", " jitter", " hitch", " drop", " throttle", " choke", " tear", " stall"]], "p": [[0.9957, 0.0032, 0.0009, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.998, 0.0006, 0.0003, 0.0002, 0.0002, 0.0001, 0.0, 0.0], [0.4826, 0.4259, 0.0576, 0.0272, 0.0047, 0.0007, 0.0003, 0.0002], [0.0779, 0.0325, 0.0174, 0.0105, 0.0093, 0.0077, 0.0072, 0.0072], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9984, 0.0004, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9986, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9989, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9981, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9558, 0.0017, 0.0014, 0.001, 0.0006, 0.0006, 0.0006, 0.0005], [0.966, 0.0024, 0.0015, 0.0009, 0.0003, 0.0003, 0.0003, 0.0003], [0.9814, 0.001, 0.0009, 0.0008, 0.0006, 0.0005, 0.0005, 0.0004], [0.9327, 0.0071, 0.0019, 0.0014, 0.0011, 0.0011, 0.0006, 0.0006], [0.9626, 0.0021, 0.0009, 0.0009, 0.0007, 0.0006, 0.0005, 0.0005], [0.5027, 0.2231, 0.0126, 0.0104, 0.0076, 0.0063, 0.0063, 0.0043], [0.9662, 0.0107, 0.0095, 0.0039, 0.0018, 0.0007, 0.0003, 0.0003], [0.1197, 0.0221, 0.0184, 0.0184, 0.0162, 0.0098, 0.0098, 0.0068], [0.1178, 0.0523, 0.0407, 0.028, 0.015, 0.015, 0.0124, 0.0103], [0.2497, 0.0462, 0.0298, 0.0218, 0.0103, 0.0091, 0.008, 0.0075], [0.6721, 0.1699, 0.0552, 0.0314, 0.0261, 0.0191, 0.0018, 0.0016], [0.6059, 0.1121, 0.0387, 0.0387, 0.0266, 0.0152, 0.0059, 0.0056], [0.5279, 0.1942, 0.0523, 0.0461, 0.015, 0.0075, 0.0052, 0.0038], [0.2707, 0.2389, 0.0105, 0.0099, 0.0082, 0.0077, 0.0077, 0.0072], [0.3424, 0.0361, 0.0206, 0.017, 0.015, 0.0141, 0.0125, 0.0091], [0.1626, 0.032, 0.0207, 0.0194, 0.0182, 0.0133, 0.0125, 0.0111], [0.0763, 0.0435, 0.0248, 0.017, 0.015, 0.0133, 0.0125, 0.0117], [0.0391, 0.0345, 0.0209, 0.0163, 0.0163, 0.0135, 0.0112, 0.0112], [0.0196, 0.0196, 0.0184, 0.0163, 0.0099, 0.0099, 0.0093, 0.0082], [0.0317, 0.0232, 0.015, 0.0132, 0.0124, 0.0124, 0.0117, 0.0117], [0.0376, 0.0214, 0.0177, 0.0167, 0.0157, 0.0147, 0.0147, 0.0138], [0.0306, 0.0254, 0.021, 0.0164, 0.0127, 0.0127, 0.0112, 0.0112], [0.0612, 0.042, 0.0255, 0.024, 0.0165, 0.0155, 0.0155, 0.0136], [0.0786, 0.0421, 0.0272, 0.0255, 0.024, 0.0175, 0.0165, 0.0137], [0.0789, 0.0542, 0.0422, 0.0273, 0.0226, 0.0212, 0.0187, 0.0165], [0.1233, 0.0582, 0.0547, 0.0483, 0.04, 0.0353, 0.0214, 0.0189], [0.1835, 0.0982, 0.0867, 0.0867, 0.056, 0.056, 0.0526, 0.0361], [0.3679, 0.1194, 0.0564, 0.0564, 0.0439, 0.0388, 0.0342, 0.0235], [0.2995, 0.1249, 0.0858, 0.0405, 0.0381, 0.0358, 0.0316, 0.0246], [0.2107, 0.1128, 0.0604, 0.0533, 0.0415, 0.0344, 0.0323, 0.0268], [0.1102, 0.0972, 0.0858, 0.0431, 0.0316, 0.0316, 0.0316, 0.0296], [0.1094, 0.0966, 0.0664, 0.0456, 0.0403, 0.0355, 0.0244, 0.0229], [0.1023, 0.1023, 0.0748, 0.0548, 0.0514, 0.0426, 0.0332, 0.0332], [0.1528, 0.0927, 0.0722, 0.0599, 0.0411, 0.0386, 0.0363, 0.0363], [0.1087, 0.0959, 0.0847, 0.0619, 0.0453, 0.0453, 0.0376, 0.0376], [0.0995, 0.0878, 0.0775, 0.0567, 0.05, 0.0415, 0.039, 0.0366], [0.114, 0.107, 0.0506, 0.0419, 0.0394, 0.0307, 0.0239, 0.0211], [0.3583, 0.055, 0.0485, 0.0456, 0.0378, 0.0333, 0.0276, 0.0276], [0.7931, 0.0738, 0.0128, 0.0113, 0.01, 0.0088, 0.0088, 0.0053], [0.9167, 0.0277, 0.007, 0.0048, 0.0037, 0.0029, 0.0029, 0.0018], [0.9044, 0.0273, 0.0146, 0.0042, 0.0033, 0.0025, 0.0024, 0.0021], [0.9302, 0.0103, 0.0103, 0.008, 0.0055, 0.0034, 0.003, 0.002], [0.9407, 0.0118, 0.0092, 0.0081, 0.0038, 0.003, 0.0023, 0.0023], [0.9977, 0.0012, 0.0003, 0.0002, 0.0001, 0.0001, 0.0, 0.0], [0.9928, 0.0046, 0.0004, 0.0003, 0.0003, 0.0002, 0.0001, 0.0001], [0.5728, 0.0995, 0.0533, 0.047, 0.0222, 0.0173, 0.0153, 0.0112], [0.6551, 0.0475, 0.0446, 0.0347, 0.0211, 0.0164, 0.0145, 0.0136], [0.5439, 0.0888, 0.0446, 0.0419, 0.0307, 0.0288, 0.0239, 0.0186], [0.5361, 0.0726, 0.0682, 0.0682, 0.0322, 0.0322, 0.0302, 0.0183]], "ranks": {"Rust": [19843, 72992, 31064, 30011, 10135, 10161, 13955, 11402, 22507, 14670, 8968, 9350, 4733, 3467, 5242, 3701, 3517, 5701, 6395, 5159, 8962, 6659, 5920, 5283, 4163, 3342, 2213, 2389, 1614, 1754, 2220, 3133, 2613, 3159, 3103, 3485, 2882, 2570, 1887, 2775, 1863, 1893, 1516, 1712, 1353, 1154, 1419, 1287, 741, 922, 1557, 2014, 3453, 3268, 5104, 7298, 2662, 8908, 7749, 8407, 13183, 11612, 8755]}}, {"pos": 571, "top": [[".", ",", "-", ";", "\u2013", "er", "\"", "l"], ["\u00ac", "er", "\u2013", "\u00ad", "ment", "  \n", "'", "\u2013and"], ["\u2013", ",", "\u2013and", ".", ";", " \u2013", ".\u2013", "["], [" Teixe", "zinho", "ingly", " Rosto", " cittadin", "stile", "flix", "\u54e5\u534e"], ["ingly", "\u00ac", "er", "\u2500", "zinho", "ar", "\u5162\u5162\u4e1a\u4e1a", "@\""], ["ingly", "zinho", "loom", "frog", "ar", "   \n", " Assinar", "lift"], ["\u2500", "ingly", "\u00ac", "\"`", "`", "   \n", "--", "\u2500\u2500"], ["ingly", "\u2500", "hole", "   \n", "(`", "`", " torn", "lessly"], ["\u2500", "ingly", "   \n", " torn", "lessly", "@\"", "`", "hole"], ["\\-", "\u2500", " \u00ad", "\u2014\"", "\u00ac", "ingly", "\u2014", "lessly"], ["\\-", "\u2500", "ingly", " \u00ad", "\u00ac", "lessly", "hole", " havoc"], ["ingly", "lessly", "\u6495\u88c2", "fuck", " atop", " havoc", "Fuck", "indow"], ["ingly", "lessly", "\u6495\u88c2", "fuck", "Fuck", "\u4e94\u989c\u516d\u8272\u7684", "hole", "rors"], ["ingly", "lessly", "fuck", "\u6495\u88c2", "hole", "Fuck", " havoc", " entirety"], ["ingly", "lessly", " entirety", " havoc", " atop", " busted", "hole", " egregious"], ["ingly", " atop", " entirety", " egregious", " busted", " gritty", " tossed", "indow"], ["ingly", " atop", "ishly", "lessly", " tossed", " entirety", " gritty", " wildly"], ["ingly", "ishly", "lessly", "\u6495\u88c2", " gritty", " havoc", " tossed", "rors"], ["ingly", "lessly", " havoc", "\u6495\u88c2", " egregious", "indow", "ishly", " undone"], ["ingly", "\u6495\u88c2", " tearing", " havoc", " ripping", "lessly", " atop", " torn"], ["ingly", "\u6495\u88c2", " tearing", "fully", "lessly", " havoc", " torn", " ripping"], ["ingly", "\u6495\u88c2", " havoc", "lessly", " ripping", " tearing", " undone", "indow"], ["ingly", "\u6495\u88c2", "lessly", " tearing", " havoc", " ``", " atop", " ripping"], ["ingly", "\u6495\u88c2", "fully", " tearing", "lessly", " torn", " wildly", " atop"], ["ingly", "\u6495\u88c2", " tearing", " atop", "lessly", " havoc", " utterly", " wildly"], ["ingly", "\u6495\u88c2", "lessly", " tearing", "allax", " havoc", "indow", "Fuck"], ["ingly", "\u6495\u88c2", "lessly", " tearing", " havoc", " ``", " ripping", " undone"], [" --", "ingly", " ``", "\u6495\u88c2", " tearing", " atop", "lessly", " `,"], ["ingly", "\u6495\u88c2", " ``", " havoc", "lessly", " --", " tearing", " `,"], ["ingly", " ``", "\u6495\u88c2", "lessly", " tearing", " havoc", " --", " flick"], ["ingly", " havoc", " tearing", " wildly", "\u6495\u88c2", " atop", " ``", " worse"], [" wildly", " tearing", " flick", " havoc", " violently", "ingly", " battle", " atop"], [" havoc", "\u6495\u88c2", " tearing", " flick", " violently", " wildly", "ingly", " battle"], [" havoc", "\u6495\u88c2", "lessly", "ingly", " tearing", " violently", " flick", "fuck"], ["\u6495\u88c2", " havoc", "lessly", "ingly", "fuck", " violently", " tearing", "shit"], ["\u6495\u88c2", "lessly", " havoc", "ingly", " wildly", " tearing", "fuck", " glitch"], ["\u6495\u88c2", " havoc", "lessly", " tearing", " violently", " glitch", " wildly", " glitches"], ["\u6495\u88c2", " havoc", " tearing", "lessly", " glitch", " stitching", " flick", " glitches"], ["\u6495\u88c2", " tearing", " havoc", " glitch", " violently", " glitches", "lessly", " stitching"], ["\u6495\u88c2", " tearing", " glitch", "\u65ad\u88c2", " glitches", " fractures", " fractured", " havoc"], ["\u6495\u88c2", " tearing", " glitch", " fractures", "\u65ad\u88c2", " glitches", " stitching", " fractured"], ["\u6495\u88c2", " tearing", " glitch", " glitches", " flick", " fractured", " fractures", " stutter"], ["\u6495\u88c2", " tearing", " glitch", " glitches", " stutter", " fractured", " stitching", " jitter"], ["\u6495\u88c2", " glitch", " tearing", " glitches", " fractures", " stutter", " fractured", " rupture"], ["\u6495\u88c2", " glitch", " tearing", " fractures", " glitches", " fractured", " rupture", " stitching"], ["\u6495\u88c2", " tearing", " glitch", " fractures", " stutter", " jitter", " fractured", " glitches"], ["\u6495\u88c2", " tearing", " bursts", " glitches", " glitch", " fractures", " havoc", " jitter"], ["\u6495\u88c2", " glitches", " tearing", " glitch", " fractures", " or", " fractured", " visuals"], [" or", "\u6495\u88c2", " and", ".**", " glitches", " fractures", ".", " violently"], [" or", ".", ".**", " and", "\u6495\u88c2", "**.", " Worse", "{}."], [".**", "**.", "{}.", ".*", ".", "*.", " Worse", "()."], [".**", "**.", " or", ".*", ".", "*.", " **.", " Worse"], [".**", "**.", " or", ".", ".*", "*.", " Worse", " **."], [".**", "**.", "*.", ".*", "\u5d29", ".", " or", " havoc"], [" or", "\u5d29", "*.", ".", "\u6495\u88c2", ".*", " collapses", ".**"], [" or", "*.", ".", "\u5d29", ".*", ".**", "**.", " havoc"], [" or", ".", "**.", ".**", " stutter", "ync", "-sync", " instantly"], [".", " or", " stutter", "ync", "-sync", " jer", "\u5d29", "sync"], [" stutter", " or", ".", "-sync", "\u5d29", " jer", "ync", " jitter"], [".", " or", " jer", "-sync", " stutter", " sync", "ync", " apart"], [".", " sync", " or", "-sync", " synchron", " synchronize", "ync", "sync"], [".", " or", " sync", "-sync", " and", " synchron", " apart", ","], [".", ",", " or", "-sync", " and", " sync", " synchron", "lock"]], "p": [[0.4733, 0.2697, 0.0389, 0.0208, 0.0195, 0.0134, 0.0118, 0.0077], [0.1388, 0.1016, 0.0791, 0.0698, 0.0291, 0.0177, 0.0137, 0.0129], [0.846, 0.029, 0.0272, 0.0176, 0.0094, 0.0088, 0.0057, 0.0047], [0.0105, 0.0098, 0.0093, 0.0047, 0.0032, 0.003, 0.0021, 0.0019], [0.2122, 0.0689, 0.0197, 0.0112, 0.0106, 0.0064, 0.005, 0.0044], [0.0804, 0.0085, 0.0066, 0.0066, 0.0051, 0.0048, 0.0033, 0.0033], [0.0756, 0.0245, 0.0191, 0.0149, 0.0149, 0.014, 0.0131, 0.0096], [0.0386, 0.0265, 0.0182, 0.0133, 0.0118, 0.0104, 0.0086, 0.0076], [0.0181, 0.016, 0.0125, 0.0097, 0.0091, 0.0091, 0.0076, 0.0063], [0.1157, 0.0243, 0.0138, 0.0095, 0.0074, 0.0061, 0.0048, 0.0037], [0.0496, 0.0207, 0.0161, 0.0111, 0.0098, 0.0071, 0.0059, 0.0049], [0.0117, 0.0097, 0.0038, 0.0036, 0.0036, 0.0036, 0.0029, 0.0026], [0.0297, 0.0124, 0.0075, 0.0075, 0.0045, 0.004, 0.0031, 0.0029], [0.0166, 0.0065, 0.004, 0.004, 0.004, 0.0035, 0.0031, 0.0027], [0.0259, 0.0062, 0.0062, 0.0058, 0.0045, 0.0037, 0.0027, 0.0023], [0.0219, 0.0133, 0.0076, 0.0046, 0.0046, 0.0046, 0.003, 0.0026], [0.0872, 0.0098, 0.0081, 0.0056, 0.0049, 0.0049, 0.0046, 0.0036], [0.0553, 0.0075, 0.0075, 0.0035, 0.0029, 0.0029, 0.0026, 0.0023], [0.0411, 0.0125, 0.0071, 0.0059, 0.0038, 0.0038, 0.0032, 0.003], [0.0306, 0.0238, 0.0088, 0.0068, 0.0064, 0.006, 0.005, 0.0041], [0.0244, 0.0084, 0.007, 0.0058, 0.0054, 0.0048, 0.0042, 0.0042], [0.035, 0.0309, 0.01, 0.0083, 0.0045, 0.0042, 0.0035, 0.0031], [0.0658, 0.0213, 0.0114, 0.0079, 0.0074, 0.0065, 0.0065, 0.0042], [0.0574, 0.0106, 0.0083, 0.0083, 0.0057, 0.0053, 0.0044, 0.0044], [0.0635, 0.0133, 0.0067, 0.0063, 0.0063, 0.0036, 0.0034, 0.0032], [0.0426, 0.0376, 0.0095, 0.0045, 0.0035, 0.0024, 0.0023, 0.0021], [0.0418, 0.0392, 0.0164, 0.0082, 0.006, 0.0041, 0.0037, 0.003], [0.122, 0.0541, 0.0199, 0.01, 0.0083, 0.0069, 0.0065, 0.0054], [0.0525, 0.0171, 0.0117, 0.011, 0.011, 0.0097, 0.0086, 0.0038], [0.0449, 0.0199, 0.01, 0.0094, 0.0089, 0.0078, 0.0073, 0.0042], [0.02, 0.0129, 0.0129, 0.0083, 0.0074, 0.0069, 0.0057, 0.0054], [0.011, 0.0103, 0.0097, 0.0097, 0.0076, 0.0067, 0.0067, 0.0063], [0.0146, 0.0129, 0.01, 0.0089, 0.0083, 0.0083, 0.0073, 0.0069], [0.0194, 0.0194, 0.0086, 0.0081, 0.0067, 0.0059, 0.0059, 0.0056], [0.0248, 0.0233, 0.0117, 0.0086, 0.0071, 0.0071, 0.0063, 0.0046], [0.0966, 0.0202, 0.0139, 0.009, 0.0074, 0.0062, 0.0062, 0.0048], [0.0828, 0.0209, 0.0153, 0.0112, 0.0087, 0.0077, 0.0068, 0.006], [0.1433, 0.0194, 0.0182, 0.0171, 0.0125, 0.0071, 0.0071, 0.0067], [0.3019, 0.0361, 0.0205, 0.0133, 0.0117, 0.011, 0.008, 0.0071], [0.5474, 0.0397, 0.0187, 0.0107, 0.01, 0.0078, 0.0078, 0.0069], [0.4848, 0.0511, 0.0291, 0.0121, 0.0121, 0.0121, 0.0114, 0.0114], [0.4574, 0.0659, 0.0482, 0.0353, 0.0189, 0.013, 0.0114, 0.0114], [0.5602, 0.0521, 0.049, 0.0336, 0.0132, 0.0132, 0.0124, 0.0085], [0.2692, 0.0681, 0.0498, 0.0388, 0.0302, 0.0221, 0.0183, 0.0172], [0.115, 0.0543, 0.0423, 0.0373, 0.0351, 0.0256, 0.0188, 0.0176], [0.0787, 0.0541, 0.0308, 0.0212, 0.0199, 0.0187, 0.0176, 0.0165], [0.0578, 0.0373, 0.0213, 0.0213, 0.0188, 0.0188, 0.0156, 0.0156], [0.0448, 0.0225, 0.0225, 0.0225, 0.0199, 0.0175, 0.0145, 0.0145], [0.057, 0.0305, 0.0305, 0.0174, 0.0163, 0.0153, 0.0153, 0.0105], [0.153, 0.0638, 0.0599, 0.0266, 0.0235, 0.0126, 0.0104, 0.0104], [0.3268, 0.1202, 0.0442, 0.0344, 0.0344, 0.0304, 0.0196, 0.0135], [0.4446, 0.1124, 0.0726, 0.0365, 0.0236, 0.0183, 0.0087, 0.0076], [0.23, 0.1087, 0.0513, 0.0425, 0.0353, 0.0331, 0.0167, 0.0157], [0.1088, 0.062, 0.04, 0.0376, 0.0275, 0.0275, 0.0259, 0.0189], [0.0681, 0.044, 0.0183, 0.0162, 0.0152, 0.0118, 0.0111, 0.0092], [0.068, 0.0221, 0.0221, 0.0183, 0.0162, 0.0152, 0.0126, 0.0111], [0.1074, 0.0575, 0.0199, 0.0199, 0.0165, 0.0128, 0.01, 0.0094], [0.0679, 0.0679, 0.06, 0.0235, 0.0221, 0.0172, 0.0152, 0.0118], [0.0812, 0.0632, 0.0492, 0.0218, 0.0193, 0.0193, 0.016, 0.0133], [0.188, 0.1376, 0.0145, 0.0128, 0.0113, 0.0113, 0.0106, 0.0083], [0.5754, 0.0646, 0.0444, 0.0368, 0.0119, 0.0119, 0.0093, 0.0082], [0.9496, 0.0135, 0.0028, 0.0025, 0.002, 0.0008, 0.0007, 0.0006], [0.9994, 0.0004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [48481, 40626, 38770, 22160, 4124, 10212, 9643, 7071, 10582, 11406, 10827, 8550, 4702, 3379, 7456, 7132, 5011, 6430, 11193, 10429, 9659, 12459, 8806, 5520, 16702, 14918, 22232, 10767, 4808, 4572, 2978, 2760, 3929, 6777, 8312, 11646, 6322, 4826, 3169, 4044, 2999, 2135, 1702, 1461, 1129, 1093, 1212, 1379, 1396, 1536, 4125, 11117, 18316, 17793, 18946, 22871, 9134, 16346, 19910, 4264, 5378, 4509, 4938]}}, {"pos": 572, "top": [[" \u2013", ".", ",", "\u2013", ";", "\u00a0", "\u00a0\u00a0", "\u2026."], [" \u2013", "\u2013", "\u2013and", " \u2013,", ",", " \u200b\u200b", " very", "."], ["\u2013", ",", " \u2013", "\u2013and", ".", "\u2026", "\u2026..", ";"], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " Blowjob", " ;;^", "-------------</", "\uc3df", "----------</"], ["\u65b0\u52a0\u5761", " cittadin", " Millennials", " Aussie", " @_", "\u52a0\u62ff\u5927", ":@", " millennials"], ["!:", "<|quad_end|>", ":href", "\u65b0\u52a0\u5761", "fst", "\u6cd5\u62c9", " \u0628\u0648\u062a\u064a\u0646", "!\u201d."], ["<|endoftext|>", "\uff01", "  \n\n", " \u201d", " \u2019", "  \n", "!\u201d", " \u201c"], ["   \n\n", "<|quad_end|>", " *@", " crappy", " veggies", " pricey", "   \n", "!:"], [" \n\n", "  \n\n", "   \n\n", "    \n\n", "\t\n\n", "<|endoftext|>", " \r\n\r\n", "      \n\n"], ["Though", " though", "though", " \u00ad", " famed", " swiftly", "<|object_ref_start|>", "Luckily"], [" though", "Though", "<|endoftext|>", " swiftly", " hefty", " gritty", " arguably", "though"], [" gritty", " arguably", " pricey", " uncomfort", " wildly", "\u706b\u901f", " oddly", " incredibly"], [" arguably", " incredibly", " swiftly", " uncomfort", " pricey", " effortlessly", " hefty", " gritty"], [" folks", " incredibly", " arguably", " swiftly", " effortlessly", " myriad", " wildly", " hefty"], [" though", " --", " swiftly", " arguably", "<|endoftext|>", " even", " folks", " myriad"], [" folks", " arguably", " myriad", " though", " swiftly", "<|endoftext|>", " plenty", " incredibly"], [" arguably", " folks", " myriad", "<|endoftext|>", " incredibly", " though", "Though", " swiftly"], [" arguably", "<|endoftext|>", " incredibly", " folks", " myriad", " savvy", "\u2014even", " famously"], [" arguably", " incredibly", " myriad", " famously", " swiftly", " even", "<|endoftext|>", "\u2014even"], ["<|endoftext|>", " arguably", " swiftly", " myriad", "\u5373\u4fbf", " though", " even", "\u2014even"], ["<|endoftext|>", " \n\n", "  \n\n", "\n\n", "Though", " swiftly", " though", "\u5373\u4fbf"], [" arguably", " swiftly", "\u5373\u4fbf", " even", " myriad", " famously", " incredibly", "\u5373\u4fbf\u662f"], [" arguably", " swiftly", " even", "<|endoftext|>", " myriad", "\u5373\u4fbf", " though", " incredibly"], ["<|endoftext|>", " swiftly", " even", " though", " arguably", " myriad", " ultimately", " --"], ["\n\n", " \n\n", "  \n\n", "<|endoftext|>", "\r\n\r\n", " \r\n\r\n", "   \n\n", "\u5373\u4fbf"], ["  \n\n", "\r\n\r\n", "\u5373\u4fbf", " \n\n", " \r\n\r\n", " even", " arguably", " swiftly"], ["\n\n", "\r\n\r\n", "  \n\n", "\u5373\u4fbf", " \n\n", " even", " arguably", " swiftly"], ["\n\n", "  \n\n", " \n\n", " even", "<|endoftext|>", "\r\n\r\n", " arguably", " famously"], [" even", " arguably", "\n\n", " famously", "\u5373\u4fbf", "  \n\n", " incredibly", " myriad"], [" even", " arguably", "<|endoftext|>", " ultimately", " famously", "  \n\n", " incredibly", " truly"], ["<|endoftext|>", " even", " \n\n", "\n\n", "  \n\n", " ultimately", " famously", " eventually"], ["<|endoftext|>", " even", " incredibly", " ultimately", " truly", " just", " ...", " famously"], [" even", " famously", " relentlessly", " notoriously", " relentless", " incredibly", " truly", " ultimately"], [" relentlessly", " relentless", " famously", " aggressively", " meticulously", " notoriously", " uniquely", " arguably"], [" relentlessly", "\u2014even", " relentless", " aggressively", " notoriously", " brutally", " meticulously", " dangerously"], ["<|endoftext|>", " relentlessly", "\u2014even", " relentless", " notoriously", " dangerously", " aggressively", " brutally"], [" notoriously", " relentlessly", " relentless", "\u2014even", "\u6839\u672c\u65e0\u6cd5", " dangerously", " aggressively", " brutally"], ["\u2014even", " relentless", " relentlessly", " notoriously", "\u6839\u672c\u65e0\u6cd5", " impossible", " aggressively", " dangerously"], ["\u2014even", " relentless", " notoriously", " relentlessly", " impossible", "\u6839\u672c\u65e0\u6cd5", " aggressively", " dangerously"], ["\u2014even", " relentless", " relentlessly", " dangerously", " notoriously", " impossible", " unpredictable", "\u6839\u672c\u65e0\u6cd5"], [" relentless", " dangerously", " relentlessly", " impossible", "\u2014even", " notoriously", " unpredictable", " brutal"], ["\u2014even", " notoriously", " dangerously", " unpredictable", " relentlessly", " relentless", " aggressively", " paranoia"], [" aggressively", " dangerously", " notoriously", " relentlessly", " unpredictable", " relentless", "\u2014even", " worse"], [" notoriously", " dangerously", " unpredictable", " worse", " aggressively", " failures", " relentless", " failure"], [" dangerously", " unpredictable", " worse", " notoriously", " aggressively", " failure", " impossible", " failures"], [" worse", " dangerously", " unpredictable", " aggressively", " notoriously", " even", " rapidly", " failure"], [" dangerously", " Worse", " inevitable", " worse", "  \n\n", " aggressively", " inevitably", " unpredictable"], [" Worse", "  \n\n", " simultaneously", " worse", " dangerously", " aggressively", " failure", " unprotected"], [" Worse", " worse", "\u6839\u672c\u65e0\u6cd5", " exacerbated", " worst", "  \n\n", " simultaneously", " inevitable"], [" Worse", " ALSO", " simultaneously", "\u540c\u65f6\u8fd8\u8981", " furthermore", " inoltre", "\u540c\u6642", " worse"], ["\u540c\u65f6", "\u540c\u65f6\u8fd8\u8981", " Worse", " inoltre", " ALSO", "\u540c\u6642", "Additionally", " furthermore"], [" Worse", " ALSO", "\u540c\u65f6\u8fd8\u8981", "\u540c\u65f6", "\u52a0\u4e4b", "\u518d\u52a0\u4e0a", " **+", " inoltre"], ["\u540c\u65f6", "\u540c\u65f6\u8fd8\u8981", " Worse", "\u4e0e\u6b64\u540c\u65f6", "\u540c\u6642", " simultaneously", "\u52a0\u4e4b", " **+"], ["\u540c\u65f6", " Worse", " **+", "\u4e0e\u6b64\u540c\u65f6", " simultaneously", "\u540c\u6642", "\u540c\u65f6\u8fd8\u8981", " **\""], ["\u540c\u65f6", " Worse", "\u4e0e\u6b64\u540c\u65f6", "\u540c\u6642", " simultaneously", "\u540c\u65f6\u8fd8\u8981", " furthermore", "\u540c\u6642\u306b"], [" Worse", "\u540c\u65f6", "\u4e0e\u6b64\u540c\u65f6", " simultaneously", "\u540c\u6642", "\u540c\u65f6\u8fd8\u8981", " **+", " concurrently"], [" Worse", "\u540c\u65f6", " Additionally", " Rust", "\u540c\u65f6\u8fd8\u8981", "\u4e0e\u6b64\u540c\u65f6", " Concurrent", " simultaneously"], [" Worse", " Rust", "\u540c\u65f6", " Combined", " Concurrent", " Additionally", " Linux", "\u4e0e\u6b64\u540c\u65f6"], [" Worse", " Rust", " Combined", "\u540c\u65f6", " Additionally", " Concurrent", " Linux", " Meanwhile"], [" Rust", " rust", "rust", " Linux", " Worse", " rusty", "\u9508\u8680", "\u9508"], [" Rust", " rust", " Worse", " Cheap", " Linux", "rust", " rusty", " cheap"], [" Rust", " rust", " Cheap", " Linux", " Worse", "rust", " Additionally", " Android"], [" Rust", " The", " Cheap", " Since", " Worse", " Sim", " Linux", " Combined"]], "p": [[0.4353, 0.3841, 0.1101, 0.052, 0.0048, 0.0019, 0.0017, 0.0011], [0.2229, 0.0364, 0.0092, 0.003, 0.0025, 0.0023, 0.0017, 0.0017], [0.7857, 0.1205, 0.0391, 0.0197, 0.0105, 0.0056, 0.0036, 0.0036], [0.0131, 0.0066, 0.0062, 0.0048, 0.0043, 0.004, 0.0029, 0.0028], [0.003, 0.0029, 0.0024, 0.0022, 0.0018, 0.0016, 0.0015, 0.0012], [0.0017, 0.0016, 0.0014, 0.0013, 0.0013, 0.0011, 0.0011, 0.001], [0.0421, 0.0255, 0.0255, 0.0225, 0.0106, 0.0094, 0.0083, 0.0078], [0.0086, 0.0056, 0.0052, 0.0041, 0.0036, 0.0028, 0.0028, 0.0025], [0.3034, 0.184, 0.1729, 0.0234, 0.0161, 0.0092, 0.0076, 0.0046], [0.0056, 0.0028, 0.0023, 0.0017, 0.0016, 0.0014, 0.0013, 0.0012], [0.0251, 0.0143, 0.0126, 0.0092, 0.0087, 0.0087, 0.0077, 0.0072], [0.007, 0.0054, 0.0051, 0.0048, 0.0027, 0.0026, 0.0024, 0.0024], [0.0117, 0.0076, 0.0055, 0.0052, 0.0052, 0.0046, 0.0043, 0.004], [0.0203, 0.0158, 0.0158, 0.0131, 0.009, 0.009, 0.008, 0.007], [0.028, 0.0232, 0.0232, 0.0192, 0.017, 0.0159, 0.0159, 0.015], [0.0301, 0.0283, 0.0283, 0.0249, 0.0171, 0.0134, 0.0092, 0.0086], [0.0799, 0.0485, 0.0428, 0.0259, 0.0229, 0.0202, 0.0167, 0.0123], [0.0529, 0.0301, 0.0172, 0.0126, 0.0126, 0.0092, 0.0086, 0.0081], [0.085, 0.0259, 0.0202, 0.0157, 0.0157, 0.0148, 0.0148, 0.0139], [0.6573, 0.0113, 0.0078, 0.0053, 0.0053, 0.0047, 0.0047, 0.0044], [0.9927, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.0254, 0.0164, 0.012, 0.0088, 0.0083, 0.0073, 0.0057, 0.005], [0.0279, 0.0262, 0.0159, 0.0149, 0.014, 0.0109, 0.0103, 0.0075], [0.1853, 0.0172, 0.0162, 0.0152, 0.0134, 0.0098, 0.0081, 0.0053], [0.2265, 0.1764, 0.1374, 0.107, 0.061, 0.0326, 0.0128, 0.0064], [0.053, 0.0388, 0.0342, 0.0321, 0.0284, 0.0134, 0.0134, 0.0126], [0.0593, 0.0407, 0.0338, 0.028, 0.028, 0.016, 0.0141, 0.0132], [0.226, 0.0474, 0.0474, 0.0369, 0.0369, 0.0224, 0.021, 0.012], [0.0529, 0.0467, 0.025, 0.025, 0.0172, 0.0172, 0.0152, 0.0134], [0.1457, 0.0444, 0.0305, 0.0305, 0.0305, 0.0238, 0.021, 0.0163], [0.5947, 0.0857, 0.0296, 0.0191, 0.0131, 0.009, 0.0055, 0.0055], [0.1675, 0.1574, 0.02, 0.0177, 0.0166, 0.0121, 0.0121, 0.0114], [0.0768, 0.0438, 0.0341, 0.0265, 0.0234, 0.0234, 0.0194, 0.0194], [0.0371, 0.0225, 0.0212, 0.0212, 0.0187, 0.0155, 0.0128, 0.0128], [0.0392, 0.0346, 0.0305, 0.0144, 0.012, 0.0077, 0.0077, 0.0077], [0.0508, 0.0421, 0.0421, 0.0372, 0.0349, 0.0199, 0.0137, 0.0129], [0.0436, 0.0409, 0.0339, 0.0319, 0.0206, 0.0171, 0.0133, 0.0117], [0.0504, 0.0444, 0.0444, 0.0325, 0.0174, 0.0163, 0.0154, 0.012], [0.0831, 0.0346, 0.0325, 0.0325, 0.0185, 0.0112, 0.0112, 0.0106], [0.0606, 0.0324, 0.0269, 0.0223, 0.0223, 0.0209, 0.0135, 0.0119], [0.0361, 0.0361, 0.0264, 0.0206, 0.0182, 0.0171, 0.0171, 0.0125], [0.0349, 0.024, 0.024, 0.0225, 0.0212, 0.0187, 0.0175, 0.0088], [0.0316, 0.0279, 0.0279, 0.0231, 0.0192, 0.0159, 0.0149, 0.0103], [0.0451, 0.0424, 0.031, 0.031, 0.0257, 0.0188, 0.0188, 0.0138], [0.0567, 0.0441, 0.0366, 0.0236, 0.0173, 0.0153, 0.0143, 0.0143], [0.0505, 0.0446, 0.0369, 0.0224, 0.0211, 0.0154, 0.0154, 0.0145], [0.0798, 0.0704, 0.0377, 0.0333, 0.0294, 0.0243, 0.019, 0.0178], [0.1098, 0.0552, 0.0519, 0.043, 0.0245, 0.0216, 0.0203, 0.0179], [0.2652, 0.049, 0.0359, 0.0247, 0.0141, 0.0132, 0.0103, 0.008], [0.1384, 0.084, 0.0614, 0.0373, 0.029, 0.029, 0.0241, 0.0155], [0.1482, 0.0899, 0.0845, 0.0618, 0.0399, 0.0375, 0.0274, 0.0242], [0.1733, 0.0928, 0.0819, 0.0599, 0.0529, 0.0387, 0.0363, 0.0363], [0.2433, 0.079, 0.079, 0.0697, 0.0543, 0.0423, 0.0423, 0.0329], [0.1831, 0.0813, 0.0674, 0.0525, 0.0493, 0.0435, 0.0409, 0.0361], [0.2963, 0.2037, 0.109, 0.0584, 0.0584, 0.0215, 0.0215, 0.0167], [0.4853, 0.1576, 0.0398, 0.0242, 0.0188, 0.0138, 0.0107, 0.0107], [0.7163, 0.0519, 0.0116, 0.009, 0.0085, 0.008, 0.007, 0.007], [0.7265, 0.0319, 0.0234, 0.011, 0.0091, 0.0081, 0.0076, 0.0055], [0.7387, 0.0535, 0.0185, 0.0153, 0.0135, 0.0093, 0.0072, 0.0072], [0.9972, 0.0009, 0.0006, 0.0004, 0.0003, 0.0001, 0.0001, 0.0], [0.9931, 0.0013, 0.0013, 0.001, 0.0008, 0.0005, 0.0002, 0.0001], [0.9927, 0.0015, 0.0014, 0.0009, 0.0005, 0.0005, 0.0002, 0.0002], [0.9831, 0.0066, 0.0017, 0.0008, 0.0007, 0.0007, 0.0006, 0.0006]], "ranks": {"Rust": [30022, 54724, 50796, 51278, 2925, 7085, 5048, 5738, 12106, 9843, 2123, 3949, 1292, 1316, 3144, 4519, 7718, 31832, 35408, 22894, 42060, 40225, 25355, 18386, 17390, 10703, 9137, 7567, 6519, 5904, 7147, 8909, 9384, 15337, 19214, 11652, 7313, 8168, 8058, 7713, 5360, 3507, 3006, 2962, 2125, 1589, 1838, 1882, 1695, 2832, 5368, 1545, 763, 588, 855, 43, 4, 2, 2, 1, 1, 1, 1]}}, {"pos": 573, "top": [["s", "\u2013", "y", " \u2013", "\u2013and", ",", "t", ".\u2013"], ["s", "\u2013and", "\u2013", "\u2013\u2013", ".\u2013", " \u2013,", " \u2013", " *\u2013"], ["s", "\u2013", " \u2013", ".\u2013", "\u2013and", " \u2013,", ".", ","], ["s", "``", " ``", "satz", " \\\"", "\u52a0\u62ff\u5927", "\uff63", "\uff62"], ["s", "\\\"", "\u0627\u062a", "sut", "\\\",", "\u65b0\u52a0\u5761", " \\\"", "sand"], ["s", "sut", "\u65b0\u52a0\u5761", "\u76f8\u8f85\u76f8\u6210", "sink", "sand", "\u0627\u062a", "s\u00e4"], ["s", "sand", "sut", "ors", "ive", "\u0627\u062a", "sor", "s\u00e4"], ["s", ".\\\"", "sut", "sand", "ive", "\\\"", "\uff63", ",\\\""], ["s", "ive", ".\\\"", "sut", " \n\n", "\uff63", "scheid", "\uff62"], ["s", ",", "\u5162\u5162\u4e1a\u4e1a", "\u76f8\u8f85\u76f8\u6210", "ive", "\u4e8b\u534a\u529f\u500d", "sut", "ward"], ["s", ",", ".", "...", "y", "ward", "a", "ive"], ["s", "ive", "arium", "ian", " \\\"", "\uff62", " ``", "ward"], ["s", "ive", "ian", "arium", "\u76f8\u8f85\u76f8\u6210", ",", "land", "\u5162\u5162\u4e1a\u4e1a"], ["s", ",", "-era", "ive", "\u4e8b\u534a\u529f\u500d", " Rust", "-themed", "ian"], ["s", ",", "-era", "y", "a", "ian", "an", "n"], ["s", " entirety", "-era", " myriad", " incredibly", " savvy", ",", "y"], ["s", ",", " entirety", "-era", "-esque", "y", "\u2013", " savvy"], ["s", "-era", "-focused", "-esque", "-themed", "-lite", "-inspired", "-centric"], ["s", "-esque", "-inspired", "-focused", "-themed", "-era", "&apos", "sut"], ["s", "&apos", " myriad", "-esque", " famously", "-era", "\ufffd", " arguably"], ["<|endoftext|>", " \n\n", "s", "\n\n", " myriad", " famously", "   \n\n", " \r\n\r\n"], [" ``", "&apos", "``", "opolitan", " ;;^", "\uff63", "\ufffd", "sut"], [" ``", "``", " ''", "\ufffd", "&apos", "s", "\uff63", " ``("], [" ``", "s", "\ufffd", " ''", "&apos", " famously", "``", "<|endoftext|>"], [" \n\n", " \r\n\r\n", "\n\n", "s", "\ufffd", "\r\n\r\n", "   \n\n", "Metal"], [" \n\n", " Rust", " famously", " academia", " libertarian", "-esque", "Metal", "-era"], [" \n\n", " Rust", " famously", " academia", "\n\n", " libertarian", "-focused", "-leaning"], [" \n\n", "\n\n", " ...", "...", " \r\n\r\n", "\r\n\r\n", " famously", " arguably"], [" \n\n", "\n\n", " famously", " heavily", " Rust", "-leaning", "-focused", " arguably"], [" \n\n", " famously", " ...", " tech", "-focused", " technologies", "-leaning", " academia"], [" \n\n", " ...", " tech", " technology", " technologies", " famously", " incredibly", " heavily"], [" ...", " incredibly", " heavily", " technology", " famously", " tech", " mostly", " modern"], [" itself", " incredibly", " technology", " hybrid", " tech", " mostly", " famously", " seamlessly"], [" tech", " modular", " incredibly", " seamlessly", " technologies", " hybrid", "-centric", " technology"], [" seamlessly", " tech", "-centric", " famously", " inherently", " incredibly", "-leaning", " modular"], [" inherently", " seamlessly", "-centric", " tech", "-native", " hybrid", " modular", " incredibly"], [" inherently", " seamlessly", " itself", "-native", "-centric", " notoriously", " algorithms", " workflows"], [" inherently", " itself", " seamlessly", " workflows", " optimizations", " notoriously", "-native", " aggressively"], [" inherently", " itself", " seamlessly", " notoriously", " tightly", " optimizations", " algorithms", " ergonom"], [" inherently", " seamlessly", " itself", " Rust", " optimizations", " minimalist", " notoriously", " incredibly"], [" Rust", " inherently", " rust", " seamlessly", " itself", " metal", " optimizations", "-native"], [" inherently", " Rust", " seamlessly", " metal", " workflows", "-native", " software", " rust"], [" inherently", " seamlessly", " optimizations", " Rust", " optimized", " interoper", " workflows", " metal"], [" inherently", " seamlessly", " tightly", " itself", "-native", " Rust", " metal", " guarantees"], [" inherently", " seamlessly", " itself", " tightly", " immutable", " guarantees", "-native", " workflows"], [" inherently", " itself", " seamlessly", " tightly", " guarantees", " strict", " workflows", " notoriously"], [" inherently", " itself", " seamlessly", " workflows", " tightly", " strict", " immutable", " guarantees"], [" inherently", " itself", "\u672c\u8eab\u7684", "'s", " seamlessly", " tightly", "\u672c\u8eab", " workflows"], [" itself", " inherently", "\u672c\u8eab\u7684", "\u672c\u8eab", " cannot", "'s", " lacks", "-native"], [" itself", "\u672c\u8eab\u7684", " inherently", "\u672c\u8eab", "'s", " isn", " lacks", " doesn"], ["\u672c\u8eab\u7684", " itself", "\u672c\u8eab", "\u2019s", "'s", " inherently", " doesn", " cannot"], [" itself", "\u672c\u8eab\u7684", "'s", "\u2019s", "\u672c\u8eab", " internals", " cannot", "-native"], ["\u2019s", " itself", "'s", " Rust", " internals", "-fast", "\u672c\u8eab\u7684", " cannot"], ["\u2019s", "'s", " cannot", "-fast", " Rust", " threads", "\u7684\u4f18\u52bf", "-safe"], ["\u2019s", "-fast", " cannot", "'s", " threads", " guarantees", " structs", " Rust"], ["\u2019s", " threads", "'s", " mutex", " solves", " cannot", "-fast", " guarantees"], [" Rust", " rust", " crates", "rust", " async", " threads", " structs", "\u2019s"], [" Rust", " rust", "rust", "\u2019s", " crates", " threads", " `'", " async"], [" Rust", " threads", "\u2019s", " ownership", " async", " rust", " LLVM", " borrow"], ["\u2019s", " ownership", " async", "'s", " strict", " owns", " `'", " Rust"], ["\u2019s", "'s", " ownership", " async", " owns", " Rust", " `'", " `"], ["\u2019s", "'s", " ownership", " owns", " cannot", " doesn", " async", "\u2019ll"], ["\u2019s", "'s", " async", " ownership", " owns", " guarantees", "\u2019", "\u2019S"]], "p": [[0.9994, 0.0002, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9985, 0.0007, 0.0004, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9512, 0.0325, 0.0082, 0.0024, 0.0024, 0.0013, 0.0011, 0.0006], [0.424, 0.0835, 0.0327, 0.0307, 0.0307, 0.0186, 0.0145, 0.0145], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9993, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9995, 0.0004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9934, 0.0007, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9895, 0.0007, 0.0002, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001], [0.9607, 0.0047, 0.0007, 0.0004, 0.0004, 0.0004, 0.0004, 0.0004], [0.9754, 0.0008, 0.0003, 0.0003, 0.0002, 0.0002, 0.0002, 0.0002], [0.9844, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9826, 0.0008, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.8587, 0.0013, 0.0009, 0.0008, 0.0008, 0.0007, 0.0007, 0.0006], [0.5993, 0.0067, 0.0031, 0.0026, 0.0024, 0.0024, 0.0019, 0.0016], [0.3254, 0.003, 0.003, 0.0028, 0.0028, 0.0023, 0.0022, 0.0022], [0.3537, 0.0696, 0.0577, 0.0042, 0.0021, 0.002, 0.0016, 0.0013], [0.1026, 0.0062, 0.0048, 0.0048, 0.0037, 0.0035, 0.0029, 0.0027], [0.4474, 0.0286, 0.0185, 0.0112, 0.0105, 0.0053, 0.005, 0.003], [0.0688, 0.0269, 0.012, 0.0099, 0.0082, 0.0036, 0.0028, 0.0027], [0.3007, 0.0317, 0.0132, 0.0085, 0.008, 0.0066, 0.0059, 0.0052], [0.068, 0.0302, 0.0126, 0.0072, 0.0059, 0.0046, 0.0046, 0.0043], [0.0374, 0.0156, 0.0147, 0.0129, 0.0129, 0.0084, 0.0069, 0.0065], [0.4132, 0.3023, 0.0133, 0.0059, 0.0046, 0.0034, 0.003, 0.002], [0.0847, 0.0258, 0.0084, 0.0054, 0.0051, 0.0045, 0.004, 0.0035], [0.0317, 0.0117, 0.011, 0.0091, 0.0085, 0.0075, 0.0062, 0.0062], [0.0459, 0.0405, 0.0231, 0.0191, 0.0149, 0.0102, 0.0102, 0.0096], [0.2157, 0.0189, 0.0147, 0.013, 0.0122, 0.0114, 0.0101, 0.0089], [0.0257, 0.0166, 0.0147, 0.0138, 0.0101, 0.0089, 0.0078, 0.0074], [0.0212, 0.0187, 0.0187, 0.0187, 0.0155, 0.0113, 0.01, 0.0094], [0.0236, 0.0184, 0.0173, 0.0152, 0.0134, 0.0134, 0.0126, 0.0105], [0.0218, 0.0192, 0.0169, 0.0116, 0.0103, 0.0103, 0.0097, 0.0097], [0.0541, 0.0199, 0.0155, 0.0083, 0.0083, 0.0078, 0.0078, 0.0073], [0.0687, 0.057, 0.0238, 0.0072, 0.0064, 0.0064, 0.0056, 0.0053], [0.0738, 0.0349, 0.0289, 0.0145, 0.0094, 0.0088, 0.0078, 0.0069], [0.0466, 0.0235, 0.0172, 0.0142, 0.0076, 0.0067, 0.0063, 0.0056], [0.0585, 0.0485, 0.0215, 0.0178, 0.0167, 0.0139, 0.0102, 0.0102], [0.0717, 0.036, 0.0233, 0.016, 0.015, 0.0133, 0.0133, 0.0125], [0.0888, 0.0327, 0.0154, 0.0145, 0.0128, 0.0128, 0.0128, 0.012], [0.1899, 0.0451, 0.0177, 0.0114, 0.0114, 0.0107, 0.0083, 0.0083], [0.2709, 0.0222, 0.0196, 0.0153, 0.0144, 0.0112, 0.0105, 0.0099], [0.19, 0.031, 0.0227, 0.0156, 0.0083, 0.0078, 0.0069, 0.0065], [0.242, 0.0255, 0.0211, 0.0155, 0.0145, 0.01, 0.01, 0.0094], [0.3551, 0.1901, 0.0114, 0.0107, 0.0084, 0.0084, 0.0078, 0.0069], [0.3032, 0.0816, 0.0495, 0.0125, 0.0092, 0.0063, 0.0056, 0.0041], [0.3887, 0.1046, 0.0319, 0.0319, 0.0171, 0.0055, 0.0055, 0.0052], [0.1506, 0.1415, 0.0459, 0.0459, 0.0297, 0.0159, 0.0066, 0.0055], [0.2046, 0.0753, 0.0624, 0.0456, 0.0334, 0.023, 0.0131, 0.0123], [0.3351, 0.0483, 0.0426, 0.0214, 0.0214, 0.0201, 0.0178, 0.0138], [0.3684, 0.0772, 0.0343, 0.0251, 0.0172, 0.0152, 0.0118, 0.0111], [0.121, 0.0474, 0.0369, 0.0306, 0.0238, 0.021, 0.0174, 0.0174], [0.216, 0.0659, 0.04, 0.0258, 0.0214, 0.0201, 0.0177, 0.0177], [0.9106, 0.0582, 0.0048, 0.0037, 0.0017, 0.0015, 0.0011, 0.0011], [0.9023, 0.0741, 0.0042, 0.0017, 0.0012, 0.0009, 0.0009, 0.0008], [0.4406, 0.0868, 0.0635, 0.0362, 0.0219, 0.016, 0.0142, 0.0133], [0.4097, 0.1708, 0.0914, 0.0628, 0.0316, 0.0246, 0.014, 0.0132], [0.7029, 0.2586, 0.0146, 0.0039, 0.0022, 0.0014, 0.0013, 0.0008], [0.9809, 0.018, 0.0003, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.9975, 0.0022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [746, 971, 1152, 221, 115, 27, 52, 53, 81, 23, 37, 12, 10, 6, 18, 13, 26, 33, 34, 54, 80, 11, 12, 10, 14, 2, 2, 19, 5, 11, 19, 63, 108, 209, 170, 73, 18, 8, 18, 4, 1, 2, 4, 6, 18, 15, 46, 88, 16, 25, 29, 45, 4, 5, 7, 29, 1, 1, 1, 8, 6, 18, 14]}}, {"pos": 574, "top": [[" \u2013", "\u2013", "i", ".", "\u2026", "<|endoftext|>", "\u2026.", ","], [" \u2013", "\u2013", "\uff0e", "  \r\n", "**\u2013", "i", "\uff0d", "\u2026\u201d"], ["\u2013", " \u2013", "\u2026", "\u2026\u201d", "\uff0e", "i", "**\u2013", "\uff0d"], ["\uff0d", "  \r\n", " **\u2018", "\u2019**", "\uff3f", " \r\n", " \u2019", "\uff0d\uff0d\uff0d\uff0d"], ["i", "  \r\n", " \u2019", "\uff0e", "\uff0d", "  \n\n", "\u2026\u201d", "\u2013\u2013"], ["i", "  \r\n", "\u2026\u201d", "  \n\n", " \u2019", "\u2013\u2013", "  \n", "\uff0d"], ["  \n\n", "\u2026\u201d", "i", "  \r\n", "  \n", "\uff0e", " \u2019", "\u2019"], ["  \n\n", "  \r\n", "  \n", "i", "\uff0e", "\u2026\u201d", " \u2019", "\u2013\u2013"], ["  \n\n", "\u2026\u201d", "  \r\n", " \u2019", "  \n", "\u2019", "\uff0e", " \u2018"], ["  \r\n", " \u2019", " \u00ad", "\u2013\u2013", "  \n\n", "\u2026\u201d", "\u2013", "i"], [" \u2019", "i", "\u2026\u201d", "  \n\n", " \u00ad", "  \r\n", " \u2013", "\u2026"], [" \u2019", "  \r\n", " \u00ad", " **\u2018", "i", "\u2019**", "\u2013\u2013", "\uff0d"], [" \u2019", "  \r\n", " \u00ad", "\u2013\u2013", "i", "\u2026\u201d", " \u2013", " **\u2018"], [" \u2019", " \u00ad", "  \r\n", "i", "\u2013\u2013", "\u2026\u201d", " \u2013", " \u2018"], [" \u2019", " \u00ad", "i", "  \n\n", " \u2018", " \u2013", "  \r\n", "\u2026\u201d"], [" \u2019", " \u00ad", "\u2013\u2013", "i", " \u2018", " myriad", " \u2013", "  \n\n"], [" \u2019", " \u00ad", "i", " \u2013", " \u2018", "\u2013", "...", " \u201c"], [" \u2019", " \u00ad", "...", "\u2013\u2013", "i", "\u2026\u201d", "...\u201d", " \u2013"], [" \u2019", "...", "i", "...\u201d", "\u2026\u201d", " \u00ad", "\u2013\u2013", "  \n\n"], [" \u2019", "  \n\n", "<|endoftext|>", "i", "\u2013\u2013", " \u2018", " myriad", " \u00ad"], ["<|endoftext|>", "  \n\n", " \n\n", " \r\n\r\n", "\r\n\r\n", "i", "...", " myriad"], [" \u2019", " myriad", " ``", " gritty", " \\\"", "iha", "ieli", " overwhelmingly"], [" \u2019", " ``", " myriad", " \r\n", " heavily", " ''", "i", "  \r\n"], [" \u2019", "<|endoftext|>", " myriad", "i", " \r\n", " heavily", " ``", " ultimately"], ["  \n\n", " \r\n\r\n", " \n\n", "\r\n\r\n", " \r\n", "  \r\n\r\n", "   \n\n", "  \r\n"], [" \r\n\r\n", "  \n\n", " \u2019", " \r\n", "  \r\n", " heavily", " \n\n", "\r\n\r\n"], ["  \n\n", " \n\n", "\r\n\r\n", " \r\n\r\n", " \u2019", " heavily", " myriad", "  \r\n\r\n"], ["  \n\n", " \n\n", "\r\n\r\n", " \r\n\r\n", "\n\n", " \u2019", " heavily", "  \r\n\r\n"], ["  \n\n", " \n\n", " \r\n\r\n", "\r\n\r\n", " heavily", " \u2019", "  \r\n\r\n", " myriad"], ["  \n\n", " heavily", " \u2019", " technology", " tech", " \r\n\r\n", " \n  \n", " \n\n"], [" technology", " heavily", " tech", " complex", "  \n\n", " modern", " power", " hard"], [" heavily", " technology", " complex", " power", " hard", " global", " tech", " tight"], [" tech", " heavily", " technology", " complex", " arguably", " famously", " tight", " tightly"], [" tech", " foundational", " technology", " famously", " seamlessly", " inherently", "\u2014but", " flexibility"], ["\u2014but", " tech", " famously", " inherently", " foundational", " seamlessly", " flexibility", " arguably"], ["\u2014but", " inherently", " tech", " flexibility", " automation", "\u2026\u201d", " robust", " pragmatic"], [" inherently", " automation", "\u2014but", " tightly", " robust", " tech", " multit", " modular"], [" inherently", " automation", " safety", " tightly", " robust", " optimization", " optimizations", " tech"], [" automation", " inherently", " safety", " tightly", " flexibility", " robust", " optimization", " hardware"], [" safety", " inherently", " automation", " flexibility", " robust", " tightly", " interoper", " tight"], [" safety", " Rust", " steel", " rust", " metal", " inherently", " robust", " immutable"], [" safety", " deterministic", " Rust", " runtime", " automation", " metal", " inherently", " immutable"], [" safety", " protections", " deterministic", " guarantees", " immutable", " Rust", " inherently", " tightly"], [" safety", " protections", " guarantees", " strict", " deterministic", " tightly", " immutable", " safe"], [" safety", " protections", " guarantees", " strict", " deterministic", " guarantee", " immutable", " avoidance"], [" safety", " guarantees", " protections", " strict", " deterministic", " avoidance", " guarantee", " immutable"], [" protections", " deterministic", " guarantees", " safety", " avoidance", " strict", " immutable", " workflows"], [" protections", " guarantees", " inherently", " avoidance", " safety", " deterministic", " immutable", " constraints"], [" protections", " inherently", " safety", " deterministic", " avoidance", " firewall", " immutable", " lifecycle"], [" inherently", " protections", " internals", "ptime", " immutable", " toolkit", "-safe", " firewall"], ["ptime", " internals", " inherently", " toolkit", " firewall", " paranoia", "\u7684\u4f18\u52bf", "!\u2019"], [" internals", " runtime", "ptime", " JIT", " concurrency", " interoper", "\u4f18\u52bf", " toolkit"], [" concurrency", " JIT", " Rust", " internals", "-fast", "\u4f18\u52bf", "ptime", " runtime"], [" concurrency", " JIT", " threading", " Rust", " mutex", "\u4f18\u52bf", "-fast", " async"], [" concurrency", "\u4f18\u52bf", "\u7684\u4f18\u52bf", " runtime", " JIT", " advantages", " mutex", " threading"], [" concurrency", " mutex", "\u4f18\u52bf", " JIT", " runtime", " threading", " scheduler", "\u7684\u4f18\u52bf"], [" Rust", " rust", "rust", "Cargo", " crates", " crate", " Cargo", " async"], [" Rust", " rust", "rust", " Cargo", " ownership", " async", " concurrency", "Cargo"], [" borrow", " Rust", " ownership", " allocator", " concurrency", " async", " scheduler", " memory"], [" async", " ownership", " borrow", " Async", " strict", " concurrency", " fearless", " allocator"], [" async", " ownership", " safety", " fearless", " Async", " borrow", " strict", " concurrency"], [" ownership", " async", " safety", " zero", " borrow", " strict", " fearless", " Async"], [" async", " ownership", " safety", " borrow", " zero", " strict", " fearless", " Async"]], "p": [[0.9531, 0.0419, 0.003, 0.0004, 0.0004, 0.0002, 0.0002, 0.0002], [0.8237, 0.0868, 0.022, 0.0171, 0.0117, 0.0117, 0.0081, 0.003], [0.5225, 0.3591, 0.0334, 0.0295, 0.0123, 0.0108, 0.0075, 0.0035], [0.2365, 0.2087, 0.1625, 0.1049, 0.0562, 0.0301, 0.022, 0.0182], [0.4752, 0.1748, 0.0826, 0.0568, 0.0501, 0.0442, 0.0304, 0.0112], [0.3358, 0.2615, 0.0849, 0.0849, 0.0354, 0.0215, 0.0215, 0.0148], [0.3878, 0.098, 0.098, 0.0865, 0.0865, 0.0595, 0.0409, 0.0281], [0.3085, 0.2723, 0.0884, 0.0608, 0.0608, 0.0473, 0.0368, 0.012], [0.5986, 0.1513, 0.0715, 0.0434, 0.0298, 0.0124, 0.0085, 0.0085], [0.2525, 0.1531, 0.1351, 0.0723, 0.0638, 0.0563, 0.0563, 0.0439], [0.1334, 0.1334, 0.1177, 0.1039, 0.1039, 0.0809, 0.0491, 0.0337], [0.3741, 0.2571, 0.0946, 0.0447, 0.0307, 0.0255, 0.0225, 0.0128], [0.5927, 0.1167, 0.0909, 0.0379, 0.0379, 0.0179, 0.0123, 0.009], [0.5423, 0.1874, 0.0648, 0.0504, 0.0287, 0.021, 0.0154, 0.0073], [0.6726, 0.1598, 0.0404, 0.014, 0.014, 0.0116, 0.009, 0.0058], [0.6855, 0.1268, 0.0172, 0.0161, 0.0118, 0.0104, 0.0049, 0.0038], [0.4294, 0.1309, 0.123, 0.0658, 0.0331, 0.0242, 0.0228, 0.0201], [0.2724, 0.1209, 0.078, 0.0536, 0.0504, 0.0504, 0.0473, 0.0306], [0.288, 0.1859, 0.0935, 0.0878, 0.0366, 0.0252, 0.0173, 0.0135], [0.2269, 0.1141, 0.065, 0.0476, 0.0327, 0.0255, 0.0239, 0.0211], [0.84, 0.0942, 0.0113, 0.005, 0.0032, 0.0028, 0.0015, 0.0014], [0.1239, 0.0139, 0.0131, 0.0108, 0.0084, 0.0074, 0.0074, 0.0054], [0.1504, 0.0488, 0.0278, 0.0191, 0.009, 0.0085, 0.008, 0.0075], [0.1062, 0.1062, 0.0209, 0.0153, 0.0127, 0.0119, 0.0077, 0.0072], [0.3706, 0.1864, 0.1203, 0.0568, 0.0345, 0.0286, 0.0135, 0.0135], [0.0524, 0.036, 0.036, 0.015, 0.0133, 0.0133, 0.0125, 0.0117], [0.1089, 0.0903, 0.0703, 0.0514, 0.0332, 0.0167, 0.0089, 0.007], [0.236, 0.2083, 0.0437, 0.0362, 0.03, 0.0171, 0.0151, 0.0071], [0.1946, 0.0673, 0.0434, 0.0383, 0.0247, 0.0232, 0.0132, 0.0124], [0.0306, 0.0287, 0.0198, 0.0154, 0.0145, 0.012, 0.0106, 0.0106], [0.0363, 0.032, 0.0207, 0.0183, 0.0118, 0.0086, 0.0081, 0.0081], [0.0351, 0.0227, 0.0177, 0.0129, 0.0121, 0.0114, 0.0107, 0.0095], [0.0209, 0.0184, 0.0143, 0.0099, 0.0077, 0.0072, 0.0072, 0.0064], [0.0462, 0.0141, 0.011, 0.0091, 0.0091, 0.0091, 0.0085, 0.008], [0.0412, 0.0412, 0.0183, 0.0118, 0.0111, 0.0111, 0.0081, 0.0076], [0.0555, 0.0192, 0.0159, 0.014, 0.0116, 0.0109, 0.0103, 0.0091], [0.0306, 0.0238, 0.0197, 0.0185, 0.0127, 0.012, 0.0099, 0.0093], [0.0354, 0.0228, 0.0167, 0.0157, 0.0139, 0.013, 0.0095, 0.0095], [0.0468, 0.0388, 0.0251, 0.0208, 0.0195, 0.0162, 0.0143, 0.0118], [0.0343, 0.0183, 0.0183, 0.0183, 0.0134, 0.0118, 0.0098, 0.0087], [0.0499, 0.0322, 0.0172, 0.0126, 0.0126, 0.0119, 0.0119, 0.0111], [0.0542, 0.024, 0.024, 0.0187, 0.0176, 0.0165, 0.0129, 0.0129], [0.1533, 0.0221, 0.0195, 0.0172, 0.0152, 0.0134, 0.0111, 0.0092], [0.2183, 0.0803, 0.0335, 0.0149, 0.0149, 0.0116, 0.0109, 0.0109], [0.1059, 0.0728, 0.0567, 0.0236, 0.0184, 0.0153, 0.0135, 0.0126], [0.0561, 0.0527, 0.0465, 0.0265, 0.0194, 0.0142, 0.0118, 0.011], [0.0451, 0.0351, 0.033, 0.0274, 0.0274, 0.0166, 0.0166, 0.0129], [0.0619, 0.0331, 0.0275, 0.0228, 0.0201, 0.0177, 0.0157, 0.013], [0.0239, 0.0145, 0.0099, 0.0088, 0.0088, 0.0077, 0.0077, 0.0073], [0.0185, 0.012, 0.0099, 0.0088, 0.0073, 0.0068, 0.0064, 0.0064], [0.0112, 0.0093, 0.0044, 0.0041, 0.0034, 0.0032, 0.0032, 0.003], [0.0609, 0.012, 0.012, 0.0106, 0.0106, 0.0106, 0.0099, 0.0093], [0.0571, 0.0445, 0.0369, 0.0326, 0.0254, 0.0197, 0.012, 0.0113], [0.2334, 0.0336, 0.0279, 0.0262, 0.0262, 0.0192, 0.0192, 0.014], [0.1357, 0.1057, 0.0499, 0.0389, 0.0303, 0.0284, 0.0284, 0.0251], [0.2018, 0.0841, 0.0578, 0.0373, 0.0329, 0.0291, 0.0273, 0.02], [0.9523, 0.0418, 0.003, 0.0002, 0.0002, 0.0002, 0.0002, 0.0002], [0.9164, 0.0752, 0.0062, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.2934, 0.2589, 0.0953, 0.045, 0.0309, 0.02, 0.0156, 0.0129], [0.5281, 0.2201, 0.081, 0.0298, 0.0232, 0.0117, 0.0091, 0.0071], [0.3976, 0.3509, 0.061, 0.0254, 0.0224, 0.0164, 0.0154, 0.0078], [0.3734, 0.3296, 0.0573, 0.0288, 0.0239, 0.0164, 0.0154, 0.0145], [0.5498, 0.0843, 0.0744, 0.0511, 0.0274, 0.0257, 0.02, 0.0166]], "ranks": {"Rust": [55726, 49141, 60782, 25689, 8812, 14507, 22235, 16317, 26862, 9808, 8984, 7599, 3416, 2358, 3726, 2919, 3092, 4983, 5522, 7571, 8946, 2519, 2559, 1867, 652, 627, 710, 1264, 1234, 1572, 2456, 3026, 3693, 6818, 2969, 1748, 38, 33, 90, 14, 2, 2, 6, 34, 73, 81, 105, 53, 35, 56, 93, 50, 3, 4, 10, 13, 1, 1, 2, 31, 18, 50, 30]}}, {"pos": 575, "top": [["s", ".", "a", " @", "@", ",", " \u2022", "-"], ["s", " *@", "\u0627\u062a", " (@", " @", " [@", " \"@", " @("], ["s", ",", ".", ",.", "\u2013", "-,", "[@", ":."], [" *_", "---</", " :::", "\u52a0\u62ff\u5927", "\u0627\u062a", "enticate", "s", " @_"], ["s", " *@", " @", " @_", " (@", " \"@", "@", "\u0627\u062a"], ["s", " @_", " @", "\u0627\u062a", ":@", " (@", " @(", " *@"], ["s", " @", "\u0627\u062a", "sor", " @_", " *@", " (@", " [@"], ["s", " *@", " @", " @_", " [@", " (@", "\u0627\u062a", ":@"], ["s", " *@", " @", " [@", " (@", " @_", " `.", " \ufffd"], ["s", " @", " [@", " @_", "@", " (@", ",@", " &,"], ["s", " @", "@", " [@", ".@", " @_", " (@", " @("], ["s", " @", " @_", " \ufffd", " *@", " *_", "-global", "\u0627\u062a"], ["s", " @", " @_", " ops", " \ufffd", "-global", " -,", " tech"], ["s", " tech", " ops", " vibe", "-global", " combo", " apps", "-and"], ["s", " tech", " ops", "-but", " &", "-and", "-plus", " folks"], ["s", " tech", " folks", " ops", " &", " messaging", " combo", " vibe"], ["s", " tech", " ops", " vibe", " folks", " meds", " apps", " combo"], ["s", " tech", " ops", "-tech", " meds", " vibe", " apps", " combo"], ["s", " tech", " ops", "-tech", " combo", " meds", " stuff", " apps"], ["s", " @", " &", "@", " &,", " tech", " (&", "&amp"], ["<|endoftext|>", "s", "@", " @", "\n\n", " \n\n", "&", "   \n\n"], ["-await", " Async", " messaging", " async", "-global", " workflows", " timelines", " tech"], ["s", "-await", " futures", " \ufffd", " &", " \ufffd", " tech", " @"], ["s", " &", " @", "<|endoftext|>", " \u00e2", " https", " -,", " &,"], [" \ufffd", "-await", " \ufffd", " @", "s", "Async", " \ufffd", "@"], [" \ufffd", " \ufffd", "-await", " @_", " async", " tech", " \ufffd", " \u2764"], [" @_", " telecom", " tech", " @", " workflows", " async", "-await", " drone"], [" @_", " @", " tech", " telecom", " \ufffd", " workflows", " async", "-await"], [" workflows", " telecom", " async", " tech", " Async", " blockchain", " protocols", " cybersecurity"], [" workflows", " async", " telecom", " protocols", " tech", " Async", " blockchain", " workflow"], [" workflows", " async", " protocols", " tech", " telecom", " infrastructure", " workflow", " Async"], [" workflows", " infrastructure", " tech", " protocols", " async", " networks", " technologies", " telecom"], [" tech", " workflows", " infrastructure", " protocols", " async", " events", " technologies", " networks"], [" workflows", " tech", " async", " protocols", " infrastructure", "-await", " Async", " workflow"], [" workflows", " tech", " async", " Async", " protocols", " infrastructure", "-await", "Async"], [" async", " workflows", " Async", " tech", "Async", " asynchronous", "async", " protocols"], [" async", " Async", " workflows", "Async", " asynchronous", "async", " asynchronously", " protocols"], [" async", " Async", " workflows", "Async", " asynchronous", " asynchronously", "async", " asyncio"], [" async", " Async", " asynchronous", " workflows", "Async", " asynchronously", " asyncio", "async"], [" async", " Async", " asynchronous", "Async", "\u5f02\u6b65", "async", " asynchronously", " workflows"], [" async", " asynchronous", " Async", "\u5f02\u6b65", " asynchronously", "Async", " asyncio", "async"], [" asynchronous", " async", " Async", " asynchronously", " workflows", "\u5f02\u6b65", " asyncio", "Async"], [" asynchronous", " async", " Async", " asynchronously", " workflows", "\u5f02\u6b65", " asyncio", "Async"], [" asynchronous", " Async", " async", " workflows", " asynchronously", "\u5f02\u6b65", " asyncio", "async"], [" asynchronous", " async", " workflows", " Async", " asynchronously", " asyncio", " protocols", "\u5f02\u6b65"], [" async", " asynchronous", " workflows", " Async", " asynchronously", " protocols", "\u5f02\u6b65", " workflow"], [" workflows", " asynchronous", " async", " Async", " protocols", " workflow", " infrastructure", " asynchronously"], [" workflows", " async", " asynchronous", " Async", " protocols", " workflow", " infrastructure", "\u5f02\u6b65"], [" async", " workflows", " asynchronous", " Async", "\u5f02\u6b65", " protocols", " asynchronously", " infrastructure"], [" async", " Async", " workflows", " asynchronous", "\u5f02\u6b65", "-await", " asynchronously", " asyncio"], [" Async", " async", "\u5f02\u6b65", " workflows", "Async", " asynchronous", " asyncio", "async"], [" Async", " workflows", " async", "\u5f02\u6b65", " APIs", " interoper", "-await", " protocols"], ["-await", " Async", " async", " concurrency", " workflows", " runtime", " scheduler", " toolkit"], [" async", " Async", "async", "(async", "\u5f02\u6b65", "-await", " asyncio", "Async"], [" async", " Async", "(async", "async", "-await", "\u5f02\u6b65", " asyncio", " threads"], ["-await", " scheduler", " async", " runtime", " capabilities", " Async", "(async", " backend"], [" async", " Rust", " Async", " runtime", "(async", " executor", " Tokio", "async"], [" Tokio", " async", " Rust", " Async", " ecosystem", " executor", "(async", " runtime"], [" runtime", " executor", " Tokio", " async", " Async", " ecosystem", "(async", " scheduler"], [" runtime", " executor", "runtime", " Runtime", "executor", " ecosystem", " APIs", "_executor"], [" runtime", "runtime", " Runtime", "/runtime", "_runtime", "Runtime", "-runtime", " executor"], [" runtime", "runtime", " Runtime", "/runtime", "_runtime", " executor", "-runtime", "Runtime"], [" runtime", " executor", " ecosystem", " machinery", " APIs", " scheduler", " model", " run"]], "p": [[0.9891, 0.0007, 0.0005, 0.0004, 0.0004, 0.0004, 0.0003, 0.0003], [0.9966, 0.0006, 0.0003, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001], [0.9881, 0.0022, 0.0009, 0.0006, 0.0005, 0.0004, 0.0004, 0.0003], [0.0169, 0.0169, 0.014, 0.0132, 0.0124, 0.0096, 0.008, 0.0062], [0.9791, 0.0031, 0.0029, 0.0028, 0.002, 0.0013, 0.0006, 0.0006], [0.9201, 0.0109, 0.0045, 0.0031, 0.0021, 0.0021, 0.0012, 0.0011], [0.9939, 0.0005, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.8076, 0.0178, 0.0108, 0.007, 0.0031, 0.0029, 0.0027, 0.0018], [0.5825, 0.0396, 0.035, 0.0165, 0.0146, 0.0114, 0.0094, 0.0088], [0.8626, 0.0148, 0.0062, 0.0048, 0.0035, 0.0031, 0.0026, 0.0024], [0.9024, 0.0577, 0.0057, 0.0031, 0.0025, 0.0025, 0.0021, 0.0007], [0.1642, 0.0533, 0.0268, 0.0173, 0.0112, 0.0047, 0.0036, 0.003], [0.739, 0.0044, 0.0019, 0.0018, 0.0017, 0.0015, 0.0015, 0.0015], [0.7315, 0.003, 0.0026, 0.0018, 0.0014, 0.0013, 0.0012, 0.0012], [0.7984, 0.0037, 0.0037, 0.0021, 0.0021, 0.0017, 0.0016, 0.0014], [0.5698, 0.0208, 0.0126, 0.0067, 0.0049, 0.003, 0.0026, 0.0025], [0.8652, 0.0096, 0.0035, 0.0016, 0.0016, 0.0011, 0.0011, 0.001], [0.7242, 0.0125, 0.0091, 0.004, 0.0032, 0.0026, 0.0025, 0.0023], [0.3298, 0.0211, 0.0154, 0.0078, 0.0068, 0.0064, 0.006, 0.0053], [0.1713, 0.0232, 0.0124, 0.0103, 0.0085, 0.008, 0.0071, 0.0059], [0.5846, 0.0579, 0.0257, 0.0146, 0.0078, 0.0033, 0.0029, 0.0019], [0.019, 0.0051, 0.004, 0.0037, 0.0037, 0.0035, 0.0035, 0.0033], [0.0257, 0.0213, 0.0094, 0.0074, 0.0061, 0.0045, 0.0039, 0.0039], [0.072, 0.0133, 0.0097, 0.0046, 0.0041, 0.0041, 0.0038, 0.0036], [0.0405, 0.0217, 0.0132, 0.0116, 0.0096, 0.0055, 0.0052, 0.0048], [0.1196, 0.0302, 0.0221, 0.0195, 0.0162, 0.0162, 0.0143, 0.0126], [0.0358, 0.0337, 0.0279, 0.0246, 0.0169, 0.0169, 0.0159, 0.0124], [0.0645, 0.0417, 0.0368, 0.0368, 0.0305, 0.0223, 0.0185, 0.0127], [0.1133, 0.0503, 0.0346, 0.0305, 0.0269, 0.0163, 0.0163, 0.0112], [0.2005, 0.0371, 0.0371, 0.0198, 0.0175, 0.012, 0.012, 0.0113], [0.246, 0.0427, 0.0354, 0.0333, 0.0259, 0.0148, 0.0139, 0.0115], [0.1199, 0.05, 0.05, 0.0323, 0.0236, 0.0162, 0.0152, 0.0112], [0.065, 0.0476, 0.0348, 0.0288, 0.0198, 0.012, 0.012, 0.0113], [0.1651, 0.0688, 0.0392, 0.0305, 0.0238, 0.0197, 0.0135, 0.0127], [0.1011, 0.095, 0.0892, 0.0328, 0.024, 0.0187, 0.0176, 0.0113], [0.1526, 0.0869, 0.0767, 0.0561, 0.0437, 0.0206, 0.0171, 0.0142], [0.2227, 0.1269, 0.0872, 0.0638, 0.0412, 0.0283, 0.0161, 0.0152], [0.2966, 0.231, 0.0662, 0.0584, 0.0515, 0.0215, 0.0215, 0.013], [0.3184, 0.1931, 0.0857, 0.0667, 0.0431, 0.0336, 0.0191, 0.0191], [0.2783, 0.2167, 0.1489, 0.0797, 0.0427, 0.0377, 0.0332, 0.0293], [0.3195, 0.1938, 0.171, 0.0629, 0.0432, 0.0406, 0.0337, 0.0279], [0.3198, 0.2198, 0.1511, 0.0714, 0.0556, 0.0382, 0.0262, 0.0192], [0.3729, 0.1761, 0.1372, 0.0648, 0.0648, 0.0288, 0.0224, 0.0113], [0.2968, 0.204, 0.18, 0.0662, 0.0333, 0.0294, 0.0202, 0.0123], [0.2159, 0.1906, 0.131, 0.131, 0.0311, 0.0189, 0.0167, 0.0138], [0.1776, 0.1776, 0.1077, 0.1012, 0.029, 0.0176, 0.0146, 0.0129], [0.2165, 0.1686, 0.1398, 0.066, 0.0243, 0.0189, 0.0178, 0.0157], [0.2152, 0.1575, 0.0843, 0.0744, 0.0291, 0.0188, 0.0177, 0.0121], [0.185, 0.1054, 0.0771, 0.0725, 0.0388, 0.025, 0.0183, 0.0111], [0.1496, 0.1405, 0.0664, 0.0517, 0.0378, 0.0123, 0.0123, 0.0115], [0.0899, 0.0845, 0.0845, 0.0452, 0.0292, 0.0242, 0.0122, 0.0114], [0.0704, 0.0484, 0.0401, 0.0243, 0.0178, 0.0157, 0.0148, 0.0148], [0.0548, 0.0483, 0.0427, 0.0427, 0.0427, 0.0201, 0.0201, 0.0178], [0.6861, 0.0928, 0.0723, 0.0638, 0.0142, 0.0126, 0.0098, 0.0076], [0.5802, 0.1467, 0.089, 0.042, 0.0155, 0.0136, 0.012, 0.012], [0.0994, 0.0878, 0.0878, 0.0683, 0.0642, 0.05, 0.0344, 0.0236], [0.2462, 0.1494, 0.1163, 0.0623, 0.0549, 0.0428, 0.0378, 0.0294], [0.2169, 0.1161, 0.1025, 0.0904, 0.0904, 0.0484, 0.0484, 0.0333], [0.3813, 0.1801, 0.0585, 0.0585, 0.0585, 0.0402, 0.0355, 0.0355], [0.6463, 0.3053, 0.0063, 0.0046, 0.0041, 0.0036, 0.0034, 0.003], [0.9857, 0.0052, 0.0036, 0.0022, 0.0012, 0.0008, 0.0008, 0.0002], [0.9865, 0.0036, 0.0031, 0.0013, 0.0013, 0.0013, 0.001, 0.0007], [0.8079, 0.1093, 0.0158, 0.0027, 0.0023, 0.0023, 0.0021, 0.002]], "ranks": {"Rust": [10830, 8164, 15251, 8109, 1201, 1457, 2212, 2421, 3483, 1435, 1890, 1909, 1480, 1788, 3531, 3099, 3302, 3106, 5127, 5768, 7335, 2861, 1327, 1428, 1534, 2562, 3763, 2609, 3975, 9890, 8182, 7478, 7819, 16915, 15489, 4248, 841, 720, 1107, 991, 456, 698, 924, 1221, 1428, 1421, 2769, 3162, 3224, 2748, 6791, 4379, 155, 170, 301, 236, 2, 3, 61, 85, 33, 49, 47]}}, {"pos": 576, "top": [[" \u2013", ".", ",", "\u2013", ".\u2013", " ", ",.", " \u2013,"], [" \u2013", "\u2013", " \n \n", " \u2013,", ".\u2013", "\u2013and", " *\u2013", "[@"], [".\u2013", "\u2013", " \u2013", " *\u2013", " \u2013,", "\u2013and", "**\u2013", " \n \n"], [" ``(", "\\\",\\\"", "``", "\\\":\\\"", "\\\"\\", "*\u201c.", " *\u201e", " ``"], [" \n \n", "\\\",\\\"", " *\u201c", "\\\"\\", " *\u201e", " *@", "\\\":\\\"", ".\",\""], [" \n \n", " *\u201c", " RTX", " __(\"", ".rt", "(rt", "\\\",\\\"", "(runtime"], [" \n \n", " *\u201c", "``", " ``", " *\u201e", "__.", "\u201d*", "\u3011\u3010"], [" \n \n", " \r\n \r\n", "\\\"\\", "\\\",\\\"", ",\\\"", ".", ".\",\"", ".\\\""], [" \n \n", ".\",\"", " \n\n\n", "__.", ".", " *\u201c", " \r\n \r\n", "\\\",\\\""], [",", " \n \n", ".", " \r\n \r\n", ".\",\"", "\\\"\\", ",\\\"", ",."], [".", ",", " \n \n", "__.", " ", ".\\\"", "\\u", ".\",\""], [" __", " *\u201c", " \n \n", " ``", " \r\n \r\n", "__.", ".\",\"", ".__"], [" __", " ``", " transformative", " **\u201e", " *\u201c", " \n \n", "-esque", " *\u201e"], [" transformative", "-esque", " impactful", " showcased", " arguably", " seamlessly", " tasked", " LGBTQ"], [" arguably", " ``", " akin", " ", " transformative", "-esque", " \n \n", " envision"], [" arguably", "-esque", " akin", " transformative", " alongside", " tasked", " showcasing", " bolster"], ["-esque", " akin", " arguably", " myriad", " transformative", " tasked", " bolster", " bespoke"], ["-esque", " arguably", " akin", " transformative", " bespoke", " impactful", " tasked", " leveraging"], [" arguably", "-esque", " akin", " largely", " myriad", " alongside", " ``", " transformative"], [" arguably", " swiftly", " alongside", " akin", " \u2015", " largely", " myriad", "-esque"], ["<|endoftext|>", " \n\n", " \n\n\n", " \r\n\r\n", " \n  \n", " swiftly", " \n \n", " \r\n \r\n"], [" ``", " ``(", " swiftly", " *__", "($__", " \r\n \r\n", " arguably", " transformative"], [" ``", " ``(", " \r\n \r\n", " swiftly", " alongside", " \u2015", "``", " __"], [" ``", " largely", " alongside", " swiftly", " \u2015", " ,", " --", " ultimately"], [" \r\n \r\n", " ``", " swiftly", " __", " \u2015", " \n  \n", " \r\n\r\n", " \n \n"], [" __", " *__", " ___", " \r\n \r\n", " ``", " \n  \n", " ____", " transformative"], [" ``", " *__", " __", " infrastructure", " cybersecurity", " aerospace", " IoT", " runtime"], [" \n\n", " __", " --", " alongside", " arguably", " ``", " ___", " infrastructure"], [" infrastructure", " __", " telecom", " cybersecurity", " runtime", " globally", " IoT", " technologies"], [" __", " infrastructure", " *__", " ____", " ___", "(___", " runtime", " ...\\"], [" infrastructure", " __", " runtime", " seamlessly", " technologies", " ecosystem", " globally", " telecom"], [" infrastructure", " globally", " alongside", " seamlessly", " technologies", " global", " heavily", " tech"], [" infrastructure", " seamlessly", " globally", " alongside", " rapidly", " heavily", " increasingly", " arguably"], [" infrastructure", " seamlessly", " globally", " tech", " technologies", " ecosystem", " logistics", " heavily"], [" infrastructure", " seamlessly", " globally", " ecosystem", " tech", " leveraging", " technologies", " sprawling"], [" infrastructure", " seamlessly", " globally", " asynchronous", " ecosystem", " async", " runtime", " sprawling"], [" infrastructure", " asynchronous", " seamlessly", " asynchronously", " async", " runtime", " unpredictable", " unlikely"], [" infrastructure", " asynchronous", " seamlessly", " asynchronously", " async", " runtime", " unpredictable", " unlikely"], [" asynchronous", " infrastructure", " seamlessly", " runtime", " asynchronously", " async", " unpredictable", " optimized"], [" asynchronous", " runtime", " asynchronously", " async", " infrastructure", " unpredictable", " seamlessly", " workflows"], [" runtime", " asynchronous", " infrastructure", " async", " chaos", " asynchronously", " seamlessly", " unpredictable"], [" asynchronous", " runtime", " infrastructure", " asynchronously", " seamlessly", " workflows", " optimized", " logistics"], [" asynchronous", " runtime", " infrastructure", " workflows", " optimized", " logistics", " seamlessly", " interoper"], [" runtime", " asynchronous", " workflows", " infrastructure", " seamlessly", " logistics", " systems", " incompatible"], [" runtime", " workflows", " asynchronous", " incompatible", " infrastructure", " seamlessly", " systems", " unpredictable"], [" incompatible", " seamlessly", " unpredictable", " runtime", " infrastructure", " asynchronous", " operating", " inherently"], [" incompatible", " workflows", " requires", " seamlessly", " runtime", " inherently", " infrastructure", " asynchronous"], [" cannot", " incompatible", " requires", " inherently", " doesn", " needs", " struggles", " workflows"], [" cannot", " incompatible", " (`", " clashes", " doesn", " incompat", " struggles", " (~"], [" cannot", " (`", " doesn", " incompatible", " wouldn", " isn", " incompat", " (~"], [" cannot", " (`", " doesn", " (*", " (**", "cannot", "\u4e5f\u65e0\u6cd5", " isn"], [" cannot", " doesn", " (`", "cannot", " (*", "\u4e5f\u65e0\u6cd5", "\u5e76\u4e0d\u80fd", " (**"], [" cannot", " (`", " doesn", "cannot", " (*", " does", "\u5e76\u4e0d\u80fd", " (**"], [" cannot", " (`", " async", "cannot", " doesn", "async", " (*", " Async"], [" cannot", " (`", " async", " doesn", "cannot", " Async", " asyncio", "async"], [" cannot", " (`", " async", " doesn", " helps", " Async", " (**", " asyncio"], [" async", " (`", " cannot", "async", " Async", "(async", " asyncio", " Tokio"], [" async", " (`", " cannot", "(async", "async", " Tokio", " asyncio", " Async"], [" (`", " async", "async", "(async", " cannot", " Async", " Tokio", "_async"], [" (`", " cannot", " doesn", " async", "(async", " Tokio", " won", " isn"], [" (`", " cannot", " Tokio", " async", " doesn", "(async", " won", "(`"], [" (`", " cannot", " doesn", " won", " Tokio", " will", " helps", " isn"], [" (`", " won", " cannot", " doesn", " async", " can", " helps", " will"]], "p": [[0.6494, 0.2707, 0.0222, 0.0173, 0.005, 0.003, 0.0021, 0.0018], [0.4283, 0.0545, 0.0352, 0.031, 0.031, 0.031, 0.0291, 0.02], [0.5002, 0.1265, 0.0677, 0.0465, 0.0437, 0.0411, 0.0206, 0.0104], [0.0927, 0.0363, 0.0283, 0.0283, 0.0183, 0.0171, 0.0151, 0.0134], [0.2194, 0.1819, 0.059, 0.049, 0.0336, 0.0336, 0.0336, 0.0204], [0.1076, 0.0078, 0.0061, 0.0054, 0.005, 0.005, 0.0044, 0.0035], [0.1557, 0.0783, 0.0538, 0.037, 0.0306, 0.0175, 0.0145, 0.0136], [0.3726, 0.0537, 0.0474, 0.0347, 0.0254, 0.0254, 0.0254, 0.0224], [0.3277, 0.0687, 0.0503, 0.0503, 0.0472, 0.0345, 0.0324, 0.0286], [0.6694, 0.0706, 0.0516, 0.0095, 0.0095, 0.0066, 0.0058, 0.0054], [0.4212, 0.2719, 0.0325, 0.0163, 0.0153, 0.0119, 0.0099, 0.0077], [0.0557, 0.0383, 0.0383, 0.0218, 0.0181, 0.0181, 0.016, 0.0132], [0.0186, 0.0164, 0.0164, 0.0128, 0.0113, 0.0106, 0.005, 0.0047], [0.0319, 0.0133, 0.0097, 0.0086, 0.0067, 0.0059, 0.0059, 0.0055], [0.0274, 0.0227, 0.0177, 0.0156, 0.0138, 0.0121, 0.0121, 0.0101], [0.0813, 0.0435, 0.0281, 0.0206, 0.0141, 0.0133, 0.0117, 0.0103], [0.0705, 0.0549, 0.0485, 0.0167, 0.0148, 0.0148, 0.013, 0.013], [0.0806, 0.0279, 0.0204, 0.0169, 0.0132, 0.0124, 0.0116, 0.008], [0.0746, 0.0581, 0.0353, 0.0156, 0.0156, 0.0114, 0.0114, 0.0095], [0.0467, 0.0266, 0.0207, 0.0183, 0.0172, 0.0172, 0.0134, 0.0118], [0.4355, 0.2812, 0.0246, 0.0096, 0.0085, 0.008, 0.008, 0.0062], [0.3661, 0.0598, 0.0059, 0.0056, 0.0052, 0.0038, 0.0036, 0.0034], [0.5718, 0.0323, 0.0152, 0.0119, 0.0082, 0.0064, 0.006, 0.0056], [0.1479, 0.0274, 0.0274, 0.0257, 0.0257, 0.0146, 0.0107, 0.0083], [0.0302, 0.0221, 0.0208, 0.0172, 0.0162, 0.0072, 0.0072, 0.0067], [0.0535, 0.0503, 0.0185, 0.0185, 0.0163, 0.0082, 0.0082, 0.0064], [0.0244, 0.0229, 0.0139, 0.013, 0.0108, 0.009, 0.0084, 0.0079], [0.0352, 0.033, 0.0177, 0.0166, 0.0147, 0.0078, 0.0078, 0.0078], [0.0556, 0.0204, 0.0124, 0.0116, 0.0109, 0.0109, 0.0085, 0.0085], [0.0893, 0.0542, 0.035, 0.0329, 0.0187, 0.0187, 0.0165, 0.0129], [0.0862, 0.0205, 0.0181, 0.015, 0.015, 0.0141, 0.0124, 0.0091], [0.0647, 0.0306, 0.0238, 0.0154, 0.0127, 0.0127, 0.0106, 0.0077], [0.0331, 0.0227, 0.0213, 0.0177, 0.0177, 0.0122, 0.0089, 0.0074], [0.0436, 0.0219, 0.0171, 0.0117, 0.0117, 0.0086, 0.0063, 0.0063], [0.0361, 0.0206, 0.0104, 0.0104, 0.0104, 0.0071, 0.0055, 0.0055], [0.0215, 0.0115, 0.0084, 0.0079, 0.0074, 0.0074, 0.007, 0.0066], [0.0259, 0.0189, 0.0157, 0.0122, 0.0115, 0.0108, 0.0095, 0.0074], [0.0268, 0.0236, 0.0184, 0.0173, 0.0162, 0.0126, 0.0098, 0.0082], [0.0266, 0.0235, 0.0183, 0.0172, 0.0172, 0.0152, 0.0111, 0.0092], [0.064, 0.0343, 0.0221, 0.0221, 0.0221, 0.0134, 0.0134, 0.0092], [0.0514, 0.0514, 0.0259, 0.0201, 0.0157, 0.013, 0.0122, 0.0108], [0.0855, 0.0855, 0.043, 0.0203, 0.0179, 0.0158, 0.014, 0.0109], [0.074, 0.074, 0.0422, 0.0308, 0.0212, 0.0176, 0.0155, 0.0137], [0.0469, 0.0414, 0.0343, 0.0236, 0.0196, 0.0152, 0.0143, 0.0119], [0.0302, 0.0283, 0.0235, 0.0172, 0.0161, 0.0142, 0.0126, 0.0111], [0.0326, 0.0164, 0.0128, 0.0093, 0.0093, 0.0093, 0.0093, 0.0088], [0.0242, 0.0227, 0.02, 0.0177, 0.0122, 0.0122, 0.0122, 0.0107], [0.0888, 0.0446, 0.0271, 0.0239, 0.0164, 0.0113, 0.01, 0.0073], [0.1351, 0.0563, 0.0529, 0.0134, 0.0092, 0.0081, 0.0081, 0.0081], [0.2513, 0.072, 0.0385, 0.034, 0.0194, 0.0142, 0.0092, 0.0081], [0.3615, 0.1036, 0.0669, 0.0336, 0.0246, 0.014, 0.0109, 0.0109], [0.5927, 0.0802, 0.0518, 0.0139, 0.0123, 0.0116, 0.009, 0.0085], [0.7649, 0.0711, 0.0381, 0.0102, 0.0058, 0.0052, 0.0048, 0.0048], [0.854, 0.0331, 0.0258, 0.0122, 0.0101, 0.0033, 0.0031, 0.0024], [0.5876, 0.1021, 0.0901, 0.0376, 0.0115, 0.0089, 0.0084, 0.0079], [0.3481, 0.2711, 0.0997, 0.0367, 0.0252, 0.0252, 0.0173, 0.0173], [0.3233, 0.2518, 0.1527, 0.0721, 0.0438, 0.0301, 0.0234, 0.0182], [0.2534, 0.2534, 0.1356, 0.0726, 0.0726, 0.0726, 0.0389, 0.0303], [0.4622, 0.2474, 0.0803, 0.0552, 0.0552, 0.0295, 0.0261, 0.0075], [0.875, 0.0559, 0.0233, 0.016, 0.0043, 0.0036, 0.0034, 0.0022], [0.9374, 0.022, 0.0134, 0.0072, 0.0056, 0.0038, 0.0012, 0.001], [0.5055, 0.2107, 0.1278, 0.0995, 0.0093, 0.0077, 0.0068, 0.0053], [0.5269, 0.3622, 0.0382, 0.0337, 0.0066, 0.0052, 0.0036, 0.0024]], "ranks": {"Rust": [37366, 51387, 33031, 72926, 8805, 2304, 2023, 1542, 2929, 1303, 1000, 704, 573, 835, 1544, 1929, 2474, 1855, 2986, 3547, 4328, 1665, 992, 1080, 1398, 2817, 3150, 2553, 2682, 5130, 5884, 4515, 4678, 9504, 9630, 2462, 1284, 1160, 1459, 1790, 1235, 2144, 2544, 3521, 5594, 6105, 9292, 7904, 8122, 4405, 5952, 13508, 1237, 1407, 1873, 894, 9, 11, 28, 65, 58, 142, 145]}}, {"pos": 577, "top": [[",", ".", "a", "\u2013", "!", "-", "\u2026.", " \u2013"], ["**!", "!.", "\ufffd", "\u2013and", "enticate", "!,", "ly", "!)."], [",", "\u2013", ".", "\u2013and", "!.", "!", ".\u2013", ",."], ["---</", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **\u25a0", "----</", " !***", "----------</", "\u52a0\u62ff\u5927", " **\u2022"], ["a", "!(", "!),", "!.", "!).", "**!", "!,", " //@"], ["**!", "!.", "!:", "!).", "!),", "!,", "!\u201d.", "!("], ["**!", "!(", "!**", "!", "?!", "\u513f", "!'", "!)."], ["ly", "\ufe0e", "**!", "!.", "-ish", "\u064b\u0627", "etheless", "!'"], ["\ufe0e", "   \n\n", "!\u201d.", "  \n    \n", "ly", "  \n\n", "&nbsp", "!."], [" \u00ad", "  \n  \n", "-ish", " busted", "\ufe0e", "ly", "&nbsp", "etheless"], ["&nbsp", "  \n  \n", " \u00ad", "  \n\n", "ly", "a", "   \n\n", "-ish"], [" busted", "&nbsp", " veggies", "-ish", "ly", "etheless", " folks", " freaking"], [" busted", " veggies", "ly", "-ish", " freaking", " comfy", " tweaked", "etheless"], [" busted", " veggies", "-ish", " freaking", " tweaked", " folks", "ly", " gonna"], [" busted", " folks", " tweaked", " freaking", " smack", " tweaking", " kids", " hefty"], [" busted", " folks", " tweaked", " hefty", " kids", " tweaking", " freaking", " veggies"], [" busted", " folks", " tweaked", " hefty", " tweaking", " plenty", "-ish", " wouldn"], [" busted", "-ish", " tweaked", " tweaking", " wouldn", " hefty", " folks", "  \n\n"], [" busted", " tweaked", " tweaking", "\u2014even", " hefty", "-ish", " savvy", "\u2014or"], ["  \n\n", "\u2014even", "\u2014and", "<|endoftext|>", " busted", "\u2014or", "\u2014but", "   \n\n"], ["  \n\n", "<|endoftext|>", "   \n\n", " busted", "Though", " tweaking", "\n\n", " wouldn"], [" busted", " tweaking", "\u5473\u513f", " smack", " tweaked", " savvy", " freaking", "\u4e8b\u513f"], [" busted", " tweaking", " {{--<", " quicker", " tweaked", " smack", "\u751a\u81f3\u4f1a", "etheless"], [" just", " even", " busted", " quicker", " barely", " tweaking", " plenty", "ly"], ["   \n\n", "  \n\n", "&nbsp", " \r\n\r\n", "Though", "\r\n\r\n", "\n\n", " \n\n"], ["   \n\n", " busted", " tweaking", "  \n\n", " wouldn", " quicker", "etheless", " hefty"], ["\n\n", "   \n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", " \n\n", " busted", "\t\n\n"], ["\n\n", "  \n\n", "\r\n\r\n", " \n\n", "   \n\n", " \r\n\r\n", " _____", " even"], ["  \n\n", "   \n\n", " tweaking", " even", " wouldn", " enough", " barely", "\n\n"], ["  \n\n", "   \n\n", " tweaking", " enough", " wouldn", " ...\\", " ____", " \r\n\r\n"], ["  \n\n", "   \n\n", " ____", " \n\n", " _____", " even", " enough", " wouldn"], [" even", " enough", " wouldn", " ...\\", " ...", " just", "  \n\n", " barely"], [" even", " wouldn", " tweaking", " enough", " just", " barely", " tweaks", " seamlessly"], [" tweaking", " tweaks", " wouldn", " seamlessly", " tweak", " tweaked", " savvy", "\u2014but"], [" tweaking", " tweaks", " tweak", " wouldn", " seamlessly", " savvy", "\u2014even", " smarter"], [" tweaking", " tweaks", "\u2014even", " smarter", "\u2014but", " seamlessly", " savvy", " tweak"], [" tweaking", "\u2014even", " tweaks", " seamlessly", "\u80fd\u4fdd\u8bc1", " wouldn", "\u80fd\u5feb\u901f", "\u5373\u4fbf\u5982\u6b64"], ["\u2014even", "\u80fd\u4fdd\u8bc1", "\u80fd\u5feb\u901f", " wouldn", " tweaks", " tweaking", " seamlessly", " enough"], ["\u80fd\u4fdd\u8bc1", "\u2014even", " enough", "\u80fd\u5feb\u901f", " wouldn", " seamlessly", " magically", "\u80fd\u6709\u6548"], ["\u80fd\u4fdd\u8bc1", " buffering", "\u80fd\u5feb\u901f", " magically", "\u2014even", "\u80fd\u5e2e\u52a9", " seamlessly", "\u6765\u89e3\u51b3"], [" buffering", "\u80fd\u4fdd\u8bc1", " magically", " wouldn", " help", "\u80fd\u5e2e\u52a9", " seamlessly", "\u80fd\u5feb\u901f"], [" buffering", "\u80fd\u4fdd\u8bc1", " mitig", " magically", " synced", " help", " seamlessly", "\u80fd\u5e2e\u52a9"], [" buffering", " mitig", " magically", " seamlessly", " help", "\u80fd\u4fdd\u8bc1", "\u80fd\u5e2e\u52a9", " synced"], [" buffering", " mitig", " help", " magically", " protections", " rescue", "\u80fd\u4fdd\u8bc1", "\u89e3\u6c7a"], [" buffering", " help", " protections", "\u80fd\u4fdd\u8bc1", " mitig", "\u80fd\u5e2e\u52a9", " rescue", "\u89e3\u6c7a"], [" help", " magically", " buffering", "\u80fd\u4fdd\u8bc1", " protections", " guarantees", " guarantee", " unless"], [" help", " magically", "\u80fd\u4fdd\u8bc1", "\u4e5f\u65e0\u6cd5", " unless", " protections", " automatic", " guarantees"], [" unless", " help", " magically", " protections", " protects", "\u80fd\u4fdd\u8bc1", "\u80fd\u5e2e\u52a9", " protect"], [" protections", " protects", " unless", " magically", "\u80fd\u4fdd\u8bc1", "\u80fd\u5feb\u901f", "\u80fd\u5e2e\u52a9", " protect"], [" magically", "\u80fd\u4fdd\u8bc1", " automatically", " automatic", "\u80fd\u6709\u6548", "\u80fd\u5feb\u901f", " protects", " guarantees"], [" magically", " automatically", "\u62ef\u6551", " alone", "\u80fd\u4fdd\u8bc1", ";**", " \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438", "\u633d\u6551"], [" magically", "\u62ef\u6551", "\u6551", " c\u1ee9u", ";**", " \u0441\u043f\u0430\u0441", "\u633d\u6551", "\u6551\u547d"], [" magically", "\u62ef\u6551", " automatically", "\u6551", " c\u1ee9u", " protects", " forgiving", " inherently"], [" magically", " automatically", "\u6551", "\u81ea\u52a8", " protects", " c\u1ee9u", "\u62ef\u6551", " \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438"], ["\u6551", "\u62ef\u6551", " rescue", " c\u1ee9u", " \u0441\u043f\u0430\u0441", " magically", "\u6551\u547d", "\u6551\u4e86"], ["\u6551", "\u62ef\u6551", " rescue", " c\u1ee9u", " \u0441\u043f\u0430\u0441", "\u6551\u547d", "\u6551\u4e86", "\u633d\u6551"], ["\u6551", "\u62ef\u6551", " c\u1ee9u", " rescue", " \u0441\u043f\u0430\u0441", "\u6551\u547d", "\u6551\u4e86", "\u633d\u6551"], ["\u6551", "\u62ef\u6551", " rescue", " c\u1ee9u", " \u0441\u043f\u0430\u0441", "\u6551\u547d", "\u6551\u4e86", "\u633d\u6551"], [" save", "\u6551", " saving", " saves", "_save", " saved", "save", ".save"], [" save", " saving", "save", " saves", "-save", "_save", " saved", "Save"], [" save", " saving", "-save", ".save", "save", " saves", "_save", " Save"], [" save", "\u2019t", "'t", "-save", " saving", ".save", " Save", "save"], ["\u2019t", "'t", " save", "\u2019T", "-save", " Save", "save", "_save"]], "p": [[0.5279, 0.3202, 0.0263, 0.0205, 0.0059, 0.0059, 0.0055, 0.0046], [0.0261, 0.0116, 0.0116, 0.0102, 0.0096, 0.0062, 0.0062, 0.0055], [0.6839, 0.0817, 0.0767, 0.03, 0.0171, 0.0071, 0.0049, 0.0038], [0.0266, 0.0172, 0.0162, 0.0118, 0.0104, 0.0098, 0.0086, 0.0067], [0.0346, 0.0305, 0.0253, 0.0237, 0.0237, 0.0185, 0.0174, 0.0163], [0.0511, 0.0451, 0.0398, 0.0291, 0.0291, 0.0257, 0.0242, 0.0227], [0.0378, 0.0215, 0.0168, 0.0157, 0.0148, 0.0139, 0.0139, 0.0123], [0.0673, 0.036, 0.0233, 0.0181, 0.0141, 0.0125, 0.0125, 0.011], [0.1165, 0.0664, 0.026, 0.026, 0.019, 0.0179, 0.0168, 0.0158], [0.0172, 0.0172, 0.0142, 0.0134, 0.0118, 0.0111, 0.0092, 0.0086], [0.1335, 0.0491, 0.028, 0.0263, 0.0232, 0.0205, 0.017, 0.0132], [0.0441, 0.0285, 0.0251, 0.0184, 0.0162, 0.0134, 0.0126, 0.0111], [0.0456, 0.0429, 0.0203, 0.0179, 0.0158, 0.0131, 0.0108, 0.0108], [0.0763, 0.036, 0.0318, 0.0299, 0.0233, 0.0141, 0.0141, 0.0133], [0.123, 0.0425, 0.0311, 0.0177, 0.0166, 0.0138, 0.0138, 0.0138], [0.1112, 0.0718, 0.0361, 0.0281, 0.0233, 0.0206, 0.0182, 0.016], [0.0425, 0.0399, 0.0375, 0.0274, 0.0189, 0.0166, 0.0166, 0.0156], [0.0325, 0.0253, 0.0238, 0.021, 0.0197, 0.0185, 0.0164, 0.0112], [0.022, 0.0118, 0.0118, 0.0118, 0.0118, 0.0104, 0.0098, 0.0092], [0.0246, 0.0192, 0.0169, 0.0132, 0.0124, 0.0124, 0.0103, 0.0096], [0.0479, 0.0273, 0.02, 0.0107, 0.0065, 0.0054, 0.0054, 0.0054], [0.0206, 0.011, 0.0056, 0.0049, 0.0049, 0.0046, 0.0046, 0.0043], [0.0178, 0.0079, 0.0054, 0.0051, 0.0045, 0.0045, 0.0037, 0.0033], [0.0107, 0.0107, 0.0073, 0.0069, 0.0065, 0.0057, 0.0057, 0.0054], [0.0433, 0.0407, 0.017, 0.0117, 0.0103, 0.0091, 0.0071, 0.0062], [0.0127, 0.0127, 0.0093, 0.0072, 0.0068, 0.006, 0.005, 0.005], [0.0442, 0.0323, 0.0304, 0.0304, 0.0143, 0.0087, 0.0082, 0.0077], [0.1939, 0.0759, 0.0316, 0.0316, 0.0218, 0.0159, 0.0055, 0.0055], [0.0254, 0.0136, 0.0128, 0.012, 0.012, 0.0113, 0.0099, 0.0099], [0.0378, 0.0276, 0.0178, 0.0148, 0.0139, 0.0131, 0.0123, 0.0123], [0.1156, 0.0482, 0.0425, 0.04, 0.0275, 0.0275, 0.0258, 0.0214], [0.059, 0.0406, 0.0262, 0.0262, 0.0262, 0.0231, 0.0169, 0.0124], [0.0529, 0.025, 0.0207, 0.0207, 0.0161, 0.0126, 0.0072, 0.0059], [0.0239, 0.0154, 0.0113, 0.0083, 0.0073, 0.0042, 0.0039, 0.0037], [0.0211, 0.0136, 0.0082, 0.0082, 0.0068, 0.006, 0.0053, 0.0034], [0.0097, 0.0067, 0.0052, 0.0046, 0.0046, 0.0046, 0.0046, 0.0038], [0.0076, 0.0059, 0.0049, 0.0046, 0.0043, 0.0043, 0.0032, 0.0032], [0.0092, 0.0081, 0.0072, 0.0072, 0.0056, 0.0052, 0.0049, 0.0043], [0.0156, 0.0146, 0.0089, 0.0078, 0.0078, 0.0078, 0.0069, 0.0057], [0.0177, 0.0095, 0.0083, 0.0083, 0.0074, 0.0069, 0.0057, 0.0051], [0.0193, 0.0181, 0.0141, 0.0125, 0.0103, 0.0097, 0.0086, 0.008], [0.0719, 0.0125, 0.0125, 0.0117, 0.0117, 0.0117, 0.011, 0.0081], [0.0687, 0.0153, 0.0127, 0.0127, 0.0093, 0.0093, 0.0093, 0.0087], [0.103, 0.023, 0.0216, 0.0179, 0.0139, 0.0109, 0.0102, 0.0102], [0.0976, 0.0317, 0.0192, 0.0159, 0.015, 0.011, 0.011, 0.011], [0.0446, 0.0326, 0.0254, 0.0239, 0.0198, 0.0128, 0.012, 0.0113], [0.0421, 0.0372, 0.0255, 0.0212, 0.0199, 0.0199, 0.0176, 0.0155], [0.0937, 0.0534, 0.0367, 0.0324, 0.0196, 0.0173, 0.0153, 0.0153], [0.0395, 0.0308, 0.0289, 0.0255, 0.0199, 0.0187, 0.0165, 0.0155], [0.0954, 0.0423, 0.0351, 0.0291, 0.0213, 0.0188, 0.0156, 0.0156], [0.0873, 0.0342, 0.0221, 0.0207, 0.0152, 0.0126, 0.0126, 0.0111], [0.3465, 0.0773, 0.0682, 0.0208, 0.0196, 0.0134, 0.0119, 0.0105], [0.7245, 0.017, 0.015, 0.0133, 0.0097, 0.0091, 0.0071, 0.0059], [0.6482, 0.1276, 0.0285, 0.0222, 0.0196, 0.0135, 0.0105, 0.0049], [0.9398, 0.0284, 0.0081, 0.0072, 0.0049, 0.0049, 0.0023, 0.0012], [0.9693, 0.0122, 0.0065, 0.004, 0.0035, 0.0013, 0.0011, 0.0005], [0.9702, 0.0138, 0.004, 0.004, 0.0031, 0.0017, 0.0013, 0.0004], [0.9738, 0.0095, 0.0066, 0.0035, 0.0021, 0.0017, 0.0013, 0.0002], [0.3628, 0.3628, 0.1178, 0.0556, 0.0181, 0.0181, 0.0181, 0.0124], [0.8373, 0.0687, 0.0153, 0.0119, 0.0105, 0.0105, 0.0105, 0.0093], [0.8636, 0.0379, 0.0179, 0.0123, 0.0123, 0.0109, 0.0096, 0.0085], [0.5724, 0.3471, 0.0173, 0.0135, 0.0082, 0.0072, 0.0064, 0.0064], [0.9805, 0.0158, 0.0028, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001]], "ranks": {"Rust": [49042, 87329, 46231, 51655, 16006, 25387, 40793, 33879, 41961, 26697, 22176, 31406, 11754, 9698, 7958, 6705, 15036, 25824, 44909, 23016, 39668, 45887, 42171, 16408, 12296, 15266, 13363, 7818, 5719, 6753, 5880, 5471, 10300, 43372, 34628, 61932, 49302, 61669, 42648, 70690, 56340, 57670, 61583, 52221, 29881, 23813, 31598, 38626, 41298, 63237, 79391, 85499, 63880, 43003, 56286, 41766, 15340, 9780, 9681, 9546, 4846, 3966, 8003]}}, {"pos": 578, "top": [[" \u2013", "i", "\u2013", "\u2026.", ".", "\u2026", "\u2026..", "\u30f3"], [" \u2013", "\uff0e", "i", "  \r\n", "**\u2013", "\u2013", "\u30f3", "\u2013\u2013"], ["\u2026", " \u2013", "\u2013", "\u2026\u201d", "\u2026.", "\uff0e", "i", "\u2026.."], ["\u30f3", " \u2019", "\uff3f", "\uff0d\uff0d\uff0d\uff0d", "\uff3f\uff3f", "  \r\n", "\u0647", "ihi"], [" \u2019", "i", "\uff0e", "\u30f3", "  \n\n", "\u2026\u201d", "  \r\n", "\u2019"], [" \u2019", "i", "\uff0e", "\u2026\u201d", "\u30f3", "  \r\n", "  \n\n", " \uff08"], ["i", "\uff0e", " \u2019", "  \n\n", "  \n", "\u2026\u201d", "  \r\n", "\u2019"], ["i", "  \n\n", "\uff0e", "  \r\n", " \u2019", "  \n", "\u2026\u201d", "\u30f3"], ["  \n\n", " \u2019", "\u2026\u201d", "  \n", "\uff0e", "i", "\u2019", "  \r\n"], ["i", " \u2019", " \u00ad", "  \n", "  \r\n", "\u2026", "  \n\n", "\u2026\u201d"], ["i", " \u2019", "  \n", "\uff0e", "  \n\n", "\u2026", " \u00ad", "\u2026\u201d"], [" \u2019", "i", "  \r\n", "\u30f3", "\u0647", " \u00ad", "\uff3f", "  \n"], ["i", " \u2019", "  \r\n", "\u30f3", "\u0647", "en", " \u00ad", "er"], ["i", " \u2019", "\u30f3", "  \r\n", "\u0647", "en", " \u00ad", "er"], ["i", " \u2019", "  \n\n", " \u00ad", "o", "\u0647", "\u30f3", "en"], ["i", " \u2019", " \u00ad", "o", "\u0647", "en", "ed", "a"], ["i", "o", " \u2019", "a", "ed", "en", "an", " \u00ad"], ["i", "o", "\u0647", "a", " \u2019", "\u30f3", "en", "ed"], ["i", "o", "\u0647", " \u2019", "a", "en", "  \n\n", "ed"], ["i", "<|endoftext|>", "  \n\n", " \u2019", " \u00ad", "o", "a", " \r\n\r\n"], ["<|endoftext|>", "  \n\n", "i", " \n\n", "\r\n\r\n", " \r\n\r\n", "\n\n", "  \r\n\r\n"], [" \u2019", " swiftly", "i", "\u0647", " \u00ad", " quicker", " wildly", " hugely"], [" \u2019", "i", " swiftly", " \r\n", "\u0647", " quickly", " seemingly", " rapidly"], ["i", "<|endoftext|>", " \u2019", " swiftly", " much", " \u00ad", " rapidly", " ,"], ["  \n\n", " \n\n", " \r\n\r\n", " \r\n", "\r\n\r\n", "  \r\n\r\n", " swiftly", " \n  \n"], ["  \n\n", " \r\n\r\n", " \n\n", " \r\n", " \n  \n", "\r\n\r\n", " \u2019", "\u2011"], [" ___", " \n\n", "\r\n\r\n", " \r\n\r\n", "  \n\n", " \u2019", "\n\n", " __"], [" \n\n", "  \n\n", "\n\n", " \r\n\r\n", "\r\n\r\n", " ___", " \n  \n", " \u2019"], [" \n\n", "  \n\n", " \r\n\r\n", "\r\n\r\n", " ___", " \n  \n", "\n\n", " \r\n"], [" ___", " \n  \n", " ______", " \n\n", " ____", "  \n\n", " \r\n\r\n", " __"], [" \n\n", "  \n\n", " ___", " \n  \n", " \n", " ______", " __", " ____"], [" \n\n", " ...", " ___", "  \n\n", " ______", " **", " \n  \n", " ____"], [" ___", " **", " ______", " ____", " \n\n", "  \n\n", " \n  \n", " __"], [" workflows", " **", "\u2026**", "...**", " ___", "  \n\n", " ...\\", " \r\n\r\n"], ["\u2014but", " workflows", " seamlessly", " faster", " **", " efficiently", " multit", " tech"], ["\u2011", " asynchronous", " \u2026", " faster", " asynchronously", " multit", "\u2026*", "\u2014but"], [" asynchronous", " asynchronously", "\u5f02\u6b65", " async", "\u2011", " synchronized", " \u2026", " faster"], [" asynchronous", " asynchronously", "\u2011", " workflows", " async", " synchronized", " \u2026", " multit"], [" asynchronous", " asynchronously", "\u2011", " workflows", " synchronized", " async", " independent", " priorit"], [" asynchronous", " workflows", "\u2011", " synchronized", " asynchronously", " sync", " concurrency", " multit"], [" workflows", " asynchronous", " workers", " asynchronously", " threads", " thread", " worker", " synchronized"], [" workflows", " workers", " asynchronous", " worker", " asynchronously", " tasks", " threads", " workflow"], [" workflows", " asynchronous", " workers", " asynchronously", " tasks", " worker", " workflow", " CPU"], [" workflows", " workers", " tasks", " asynchronous", " worker", " asynchronously", " threads", " workflow"], [" workers", " workflows", " worker", " tasks", " separate", " transfer", " transfers", " isol"], [" workers", " worker", " workflows", " tasks", " transfer", " isol", " transfers", " isolated"], [" seamlessly", " workers", " workflows", " tasks", " worker", " asynchronous", " safely", " isol"], [" seamlessly", " workers", " safely", " tasks", " transfer", " safe", " ensure", " control"], [" transferring", " seamlessly", " transfer", " transfers", " safely", " control", " cleanly", " guarantee"], [" automatically", " guarantee", " magically", " guarantees", " automatic", " protecting", " protect", " protects"], [" automatically", " magically", " automatic", " \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438", " guarantee", "\u81ea\u52a8", " inherently", "\u4f1a\u81ea\u52a8"], [" magically", " automatically", " inherently", " guarantee", " syncing", " \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438", "\u81ea\u52a8", " automatic"], [" magically", " automatically", " inherently", " guarantee", " automatic", "\u81ea\u52a8", " protects", " \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438"], [" automatically", " magically", "\u81ea\u52a8", " automatic", " \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438", " Automatically", " autom\u00e1ticamente", "\u4f1a\u81ea\u52a8"], ["\u6551", " magically", "\u62ef\u6551", " automatically", " rescue", " \u0441\u043f\u0430\u0441", " c\u1ee9u", "\u6551\u4e86"], ["\u6551", " rescue", "\u62ef\u6551", " help", " \u0441\u043f\u0430\u0441", " magically", "\u6551\u4e86", " c\u1ee9u"], ["\u6551", " rescue", "\u62ef\u6551", " magically", " \u0441\u043f\u0430\u0441", "\u6551\u4e86", " c\u1ee9u", " automatically"], ["\u6551", " rescue", "\u62ef\u6551", " \u0441\u043f\u0430\u0441", " magically", "\u6551\u4e86", " protect", " c\u1ee9u"], [" save", " saving", "\u6551", " saves", " saved", "\u62ef\u6551", "save", "-save"], [" save", " saving", " saves", " saved", "\u6551", "-save", "save", " Save"], [" save", " saving", " saves", "-save", "save", " Save", ".save", " saved"], [" save", " saving", " saves", "-save", " Save", "save", ".save", "_save"], [" save", " magically", " Save", "save", "-save", "_save", " saving", " help"]], "p": [[0.9518, 0.0287, 0.0064, 0.005, 0.0034, 0.0006, 0.0004, 0.0002], [0.3452, 0.3046, 0.068, 0.068, 0.0364, 0.0302, 0.0221, 0.0183], [0.3765, 0.2284, 0.1778, 0.0741, 0.045, 0.0212, 0.0165, 0.0078], [0.415, 0.0598, 0.0528, 0.0207, 0.0194, 0.0133, 0.0111, 0.0098], [0.3963, 0.3087, 0.1872, 0.0369, 0.0112, 0.0099, 0.0064, 0.0034], [0.3575, 0.3155, 0.0621, 0.0377, 0.0377, 0.0215, 0.0189, 0.0167], [0.3738, 0.2267, 0.1766, 0.1071, 0.0348, 0.0186, 0.0145, 0.0078], [0.2627, 0.2046, 0.1406, 0.1095, 0.0966, 0.0966, 0.019, 0.0079], [0.5969, 0.0915, 0.0713, 0.0555, 0.049, 0.0382, 0.018, 0.0124], [0.3573, 0.149, 0.0903, 0.0797, 0.0621, 0.0484, 0.0332, 0.0293], [0.6973, 0.0649, 0.0572, 0.0446, 0.0306, 0.0164, 0.0128, 0.0093], [0.4544, 0.3539, 0.0479, 0.0309, 0.0129, 0.0107, 0.0054, 0.0054], [0.5015, 0.3447, 0.0283, 0.0183, 0.0134, 0.0076, 0.0067, 0.0067], [0.6552, 0.1877, 0.0288, 0.0198, 0.0186, 0.0082, 0.0064, 0.0044], [0.6966, 0.1761, 0.0128, 0.012, 0.0093, 0.0082, 0.006, 0.005], [0.6885, 0.1973, 0.0183, 0.0105, 0.0049, 0.0049, 0.0046, 0.0046], [0.9006, 0.024, 0.0128, 0.0113, 0.0054, 0.0044, 0.0024, 0.0022], [0.8982, 0.0186, 0.0078, 0.0078, 0.0064, 0.0042, 0.0042, 0.0039], [0.9023, 0.0129, 0.0088, 0.0069, 0.0054, 0.0039, 0.0031, 0.0029], [0.4284, 0.2293, 0.0956, 0.0188, 0.0101, 0.0069, 0.0057, 0.0054], [0.8359, 0.0881, 0.0135, 0.0119, 0.0056, 0.0041, 0.0032, 0.001], [0.0872, 0.0412, 0.022, 0.0092, 0.0076, 0.0072, 0.0056, 0.0046], [0.0664, 0.0456, 0.0356, 0.0179, 0.0075, 0.0062, 0.0058, 0.0058], [0.0259, 0.0189, 0.0178, 0.0157, 0.0122, 0.0074, 0.0074, 0.0065], [0.225, 0.1063, 0.0828, 0.0304, 0.0286, 0.0144, 0.0144, 0.0135], [0.203, 0.1021, 0.0795, 0.0453, 0.0353, 0.0242, 0.0201, 0.0177], [0.1505, 0.1328, 0.0857, 0.0711, 0.0431, 0.0109, 0.0102, 0.0096], [0.5858, 0.1228, 0.07, 0.0257, 0.0242, 0.0213, 0.0065, 0.0048], [0.6017, 0.1724, 0.0494, 0.0319, 0.0248, 0.0171, 0.0142, 0.0043], [0.4989, 0.0719, 0.0634, 0.056, 0.041, 0.0281, 0.0182, 0.0182], [0.4364, 0.1606, 0.1037, 0.049, 0.0169, 0.0149, 0.0103, 0.0085], [0.3216, 0.1519, 0.134, 0.0921, 0.0339, 0.0233, 0.0193, 0.0193], [0.2097, 0.1272, 0.053, 0.0267, 0.0195, 0.0183, 0.0172, 0.0152], [0.0416, 0.0391, 0.0304, 0.0237, 0.0237, 0.0209, 0.0112, 0.0112], [0.0266, 0.025, 0.0126, 0.0098, 0.0092, 0.0086, 0.0081, 0.0081], [0.0458, 0.0431, 0.038, 0.0278, 0.0231, 0.0158, 0.0158, 0.0149], [0.1342, 0.0922, 0.0299, 0.0264, 0.016, 0.0141, 0.0117, 0.011], [0.1017, 0.0699, 0.058, 0.0257, 0.0242, 0.0227, 0.0147, 0.0089], [0.116, 0.0749, 0.0661, 0.0583, 0.0293, 0.0189, 0.0108, 0.0101], [0.0824, 0.0824, 0.0774, 0.0343, 0.0323, 0.0111, 0.0098, 0.0092], [0.0848, 0.0796, 0.0547, 0.0332, 0.0312, 0.0214, 0.0201, 0.0157], [0.1897, 0.0698, 0.0698, 0.0374, 0.031, 0.0291, 0.0273, 0.0257], [0.139, 0.0744, 0.0451, 0.0352, 0.033, 0.02, 0.0147, 0.0147], [0.0958, 0.0794, 0.0425, 0.0375, 0.0292, 0.0189, 0.0147, 0.013], [0.133, 0.046, 0.0358, 0.0204, 0.0169, 0.0169, 0.0124, 0.0124], [0.1232, 0.0376, 0.0312, 0.0258, 0.0167, 0.013, 0.0108, 0.0108], [0.0646, 0.0503, 0.0392, 0.0305, 0.0153, 0.0112, 0.0099, 0.0093], [0.0442, 0.0304, 0.0252, 0.0222, 0.0209, 0.0153, 0.0143, 0.0135], [0.0228, 0.0201, 0.0156, 0.0156, 0.0147, 0.0138, 0.0122, 0.0122], [0.1079, 0.0952, 0.0542, 0.0422, 0.029, 0.029, 0.0226, 0.0187], [0.4511, 0.114, 0.0348, 0.0239, 0.0164, 0.0136, 0.0106, 0.01], [0.5176, 0.168, 0.0147, 0.0138, 0.0107, 0.0079, 0.0069, 0.0069], [0.5754, 0.2117, 0.0535, 0.0087, 0.0064, 0.006, 0.0056, 0.0053], [0.8493, 0.0615, 0.0423, 0.0156, 0.0057, 0.0039, 0.0027, 0.0021], [0.6577, 0.1467, 0.0693, 0.042, 0.0371, 0.0136, 0.0057, 0.005], [0.7844, 0.073, 0.0443, 0.0268, 0.0163, 0.0099, 0.0068, 0.006], [0.8405, 0.0474, 0.0418, 0.0154, 0.0154, 0.0082, 0.0057, 0.0057], [0.8487, 0.0697, 0.0329, 0.0094, 0.0083, 0.0073, 0.005, 0.0045], [0.3452, 0.2373, 0.2373, 0.0989, 0.0364, 0.0118, 0.0072, 0.0049], [0.809, 0.1095, 0.0277, 0.019, 0.0079, 0.0062, 0.0055, 0.0042], [0.9448, 0.0222, 0.0153, 0.0039, 0.003, 0.0027, 0.0027, 0.0021], [0.9887, 0.0022, 0.0017, 0.0015, 0.0015, 0.0012, 0.0009, 0.0008], [0.9958, 0.001, 0.0006, 0.0003, 0.0003, 0.0003, 0.0003, 0.0003]], "ranks": {"Rust": [18790, 18301, 24321, 6494, 1204, 1417, 3318, 1889, 2521, 855, 1114, 600, 348, 332, 610, 642, 865, 1255, 2447, 3989, 6923, 880, 1383, 2236, 1492, 1453, 1700, 2642, 2141, 3121, 3935, 5562, 6040, 10954, 7767, 13005, 3007, 2952, 6892, 8051, 5948, 5773, 5681, 5343, 7816, 6705, 6434, 4764, 4451, 15886, 22512, 22300, 35079, 33082, 45497, 40462, 9032, 7158, 6113, 6563, 3915, 2645, 1868]}}, {"pos": 579, "top": [[",", ".", ";", "\u2013", "\u00a0", "?", "-", " \u2013"], [",", "\u2013", ".", ";", " \u2013", "\u2013and", "  \n", "?"], [",", ".", "\u2013", "\u2026", ";", "?", "!", "\u2026."], ["\u52a0\u62ff\u5927", "odar", " Nues", " Salvini", "KANJI", "\uc53b", "chimp", "\u517b\u6d3b"], [",", ".", "!", "...", "?...", ".@", "?", "back"], [",", ".", "!", " \u200b\u200b", ":", ";", "con", "?"], ["...", "!", "...'", ".'", "save", "\u2026", "backs", "."], ["-save", " rescue", "SAVE", "/save", "-saving", ".Save", "save", "Saved"], ["...", "   \n\n", "?...", " \n\n", "  \n\n", "...'", "SAVE", " \n        \n"], ["\u2026", "...", ",", "\u00a0", "\\_", "\\-", "?...", "-save"], ["...", "\u2026", "\u00a0", "...'", "...\\", "?...", "@", "  \n"], [" **", " **'", "...**", " rescue", " '**", " **>>", " **+", " lucky"], [" rescue", " **", "...**", " lucky", "bie", " saver", " luck", " '**"], [" kids", "bie", " lucky", " stash", " goodies", "bies", " rescue", " veggies"], [" kids", " big", " lucky", " goodies", " plenty", " folks", " freaking", " tricks"], [" kids", " big", " plenty", " goodies", " folks", " _", " tricks", " someday"], [" big", " plenty", " kids", " folks", " thanks", " goodies", " enough", " just"], [" big", " kids", " plenty", " goodies", " folks", " lucky", " thanks", " tweaks"], [" Savior", " big", " kids", " lucky", " forever", " plenty", " saving", " goodies"], [" big", " thanks", " forever", " just", " plenty", " someday", " saving", " kids"], [" forever", " just", " someday", " big", " plenty", " kids", " folks", " enough"], [" forever", " big", " Savior", " someday", " lucky", " enough", " salvation", " thanks"], [" forever", " thanks", " big", " just", " saving", " luck", " lucky", " enough"], [" just", " thanks", " forever", " enough", " even", " big", " everything", " saving"], [" forever", " thanks", " big", " everything", " lucky", " luck", " salvation", " things"], [" forever", " someday", " folks", " lucky", " doom", " luck", " salvation", " things"], [" forever", " doom", " someday", " luck", " lucky", " salvation", " folks", " things"], [" forever", " truly", " _", " someday", " folks", " just", " luck", " @"], [" forever", " luck", " @", " _", " someday", " lucky", " truly", " folks"], [" forever", " _", " luck", " lucky", " big", " thanks", " someday", " enough"], [" forever", " big", " _", " things", " everything", " hell", " huge", " help"], [" thanks", " forever", " big", " even", " everything", " hell", " just", " enough"], [" even", " just", " thanks", " forever", " enough", " everything", " hell", " truly"], [" shit", " crap", " doom", " tweaks", " weird", " hell", " tweak", " truly"], [" weird", " shit", " crap", " tweaks", " tweak", " tech", " doom", " booze"], [" crap", " shit", "/save", " saves", " weird", " saving", "-save", " rescue"], [" saves", " crap", " rescue", " \u0441\u043f\u0430\u0441", " shit", "/save", " salva", " cuz"], [" saves", " rescue", " \u0441\u043f\u0430\u0441", " crap", "/save", " salva", " saving", " shit"], [" rescue", " \u0441\u043f\u0430\u0441", "\u62ef\u6551", " saves", "\u633d\u6551", " saving", " salvation", " salva"], [" rescue", " \u0441\u043f\u0430\u0441", "\u633d\u6551", "\u62ef\u6551", " saves", "\u6551", " salvation", " saving"], [" rescue", " \u0441\u043f\u0430\u0441", "\u633d\u6551", "\u62ef\u6551", " saves", "\u6551", " salvation", " saving"], [" rescue", "\u633d\u6551", "\u62ef\u6551", " \u0441\u043f\u0430\u0441", "\u6551", " saves", " salvation", " saving"], [" rescue", "\u633d\u6551", "\u62ef\u6551", " \u0441\u043f\u0430\u0441", " saves", " salvation", "\u6551", " saving"], [" rescue", "\u62ef\u6551", " saves", "\u633d\u6551", " \u0441\u043f\u0430\u0441", " salvation", " save", "\u6551"], [" rescue", " saves", " salvation", "\u633d\u6551", " save", " saving", "\u62ef\u6551", " \u0441\u043f\u0430\u0441"], [" rescue", " saves", " save", " saving", " salvation", "\u633d\u6551", " unless", "\u62ef\u6551"], [" unless", " rescue", " saves", " salvation", " saving", "\u633d\u6551", "\u62ef\u6551", " save"], [" unless", " rescue", "unless", " saves", " salvation", " because", "\u62ef\u6551", "/save"], [" unless", "\u56e0\u4e3a\u4f60", "unless", "/save", " salvation", " saves", ";if", " rescue"], [" unless", ";if", "\u56e0\u4e3a\u4f60", " if", "unless", ";**", "because", " because"], [";if", ";**", "**;", " unless", " n\u1ebfu", "*;", " \u0435\u0441\u043b\u0438", " \u0625\u0630\u0627"], [";if", " if", ";**", " \u0625\u0630\u0627", " \u0435\u0441\u043b\u0438", " n\u1ebfu", "\u2014if", "**;"], [";if", " if", " \u0625\u0630\u0627", ";**", " \u0435\u0441\u043b\u0438", "\u2014if", " n\u1ebfu", " jika"], [";if", " if", " \u0625\u0630\u0627", ";**", " \u0435\u0441\u043b\u0438", " n\u1ebfu", "\u2014if", " you"], [";if", " you", " if", "\u4f60\u82e5", " \u0435\u0441\u043b\u0438", " \u0625\u0630\u0627", " n\u1ebfu", "\u5982\u679c\u4f60\u7684"], [" you", ";if", "\u4f60\u4e86", "you", " if", "_you", "\u4f60\u82e5", "-you"], [" you", ";if", "\u4f60\u4e86", "you", "\u4f60", "_you", " YOU", "\u4f60\u82e5"], [" you", "you", "\u4f60", "\u4f60\u4e86", "_you", " b\u1ea1n", " YOU", ";if"], [" you", "you", "_you", ";if", "\u4f60\u4e86", " b\u1ea1n", "\u4f60\u82e5", "\u4f60"], [" you", "you", " UI", "_you", "-you", " YOU", " if", "\u4f60\u4e86"], [" you", " UI", "you", " your", " if", "_you", " You", " YOU"], [" you", " UI", " You", "you", " YOU", "-you", " your", "_you"], [" you", " UI", " your", " You", "you", " synchronous", " YOU", " plugins"]], "p": [[0.5237, 0.4622, 0.0045, 0.0027, 0.001, 0.001, 0.0009, 0.0007], [0.4226, 0.373, 0.0418, 0.0347, 0.0136, 0.0099, 0.0034, 0.003], [0.7078, 0.2604, 0.0214, 0.0037, 0.0037, 0.0009, 0.0004, 0.0003], [0.0053, 0.0015, 0.0012, 0.0011, 0.0009, 0.0009, 0.0009, 0.0008], [0.1701, 0.0404, 0.023, 0.0131, 0.0051, 0.0045, 0.004, 0.0031], [0.1979, 0.039, 0.0323, 0.006, 0.0056, 0.0044, 0.0039, 0.0036], [0.1253, 0.0132, 0.0103, 0.0091, 0.0091, 0.0071, 0.0071, 0.0055], [0.0133, 0.0111, 0.0104, 0.0092, 0.0076, 0.0052, 0.0049, 0.0046], [0.0991, 0.0772, 0.0413, 0.0413, 0.0322, 0.0126, 0.0126, 0.0098], [0.0223, 0.0163, 0.0135, 0.0056, 0.005, 0.005, 0.0041, 0.0039], [0.53, 0.0463, 0.0219, 0.0125, 0.0125, 0.0091, 0.0071, 0.0046], [0.0535, 0.0237, 0.0185, 0.0144, 0.0099, 0.0082, 0.0072, 0.0064], [0.018, 0.018, 0.0169, 0.0116, 0.0109, 0.0109, 0.0075, 0.0062], [0.0184, 0.0112, 0.0105, 0.0098, 0.0092, 0.0092, 0.0087, 0.0087], [0.0433, 0.0232, 0.0204, 0.0192, 0.014, 0.0116, 0.0097, 0.0066], [0.0664, 0.0517, 0.0277, 0.0168, 0.0131, 0.0131, 0.0096, 0.0084], [0.077, 0.0439, 0.0321, 0.0172, 0.0152, 0.0098, 0.0098, 0.0086], [0.0467, 0.0301, 0.0266, 0.0126, 0.0126, 0.0081, 0.0081, 0.0067], [0.0224, 0.0127, 0.0088, 0.0068, 0.0064, 0.0064, 0.006, 0.005], [0.0091, 0.0076, 0.0059, 0.0059, 0.0052, 0.0043, 0.0043, 0.004], [0.0082, 0.0053, 0.0044, 0.0044, 0.0036, 0.0034, 0.003, 0.003], [0.009, 0.0066, 0.0062, 0.0038, 0.0023, 0.0023, 0.0021, 0.0021], [0.0137, 0.0114, 0.0094, 0.0089, 0.0074, 0.0061, 0.0061, 0.0057], [0.013, 0.0122, 0.0089, 0.0061, 0.0061, 0.0054, 0.0054, 0.0051], [0.0196, 0.0162, 0.0082, 0.0077, 0.0077, 0.0077, 0.0068, 0.0063], [0.0512, 0.0258, 0.0214, 0.0166, 0.0156, 0.0147, 0.013, 0.013], [0.0326, 0.0186, 0.0186, 0.0154, 0.0144, 0.0113, 0.0113, 0.0099], [0.0176, 0.0166, 0.0155, 0.0146, 0.0137, 0.0107, 0.01, 0.0094], [0.0158, 0.0123, 0.0102, 0.0096, 0.0096, 0.0096, 0.009, 0.0075], [0.019, 0.0158, 0.0139, 0.0139, 0.0131, 0.0123, 0.0116, 0.0116], [0.0337, 0.0263, 0.0247, 0.017, 0.017, 0.0159, 0.015, 0.015], [0.0333, 0.0276, 0.0229, 0.019, 0.0178, 0.0178, 0.0157, 0.0148], [0.0285, 0.0196, 0.0196, 0.0162, 0.0143, 0.0143, 0.0119, 0.0105], [0.0155, 0.0137, 0.0121, 0.0113, 0.0106, 0.0106, 0.0073, 0.0073], [0.0218, 0.0141, 0.0124, 0.0103, 0.0091, 0.0085, 0.0085, 0.008], [0.0169, 0.0124, 0.0116, 0.0116, 0.0102, 0.008, 0.0075, 0.0075], [0.0173, 0.0153, 0.0135, 0.0127, 0.0099, 0.0099, 0.0087, 0.0077], [0.0347, 0.0287, 0.0197, 0.0174, 0.0154, 0.0136, 0.0113, 0.0113], [0.2736, 0.1007, 0.0784, 0.0611, 0.0506, 0.0255, 0.0239, 0.0186], [0.2128, 0.1462, 0.129, 0.1005, 0.061, 0.037, 0.0326, 0.0224], [0.232, 0.1407, 0.1242, 0.1096, 0.0665, 0.0356, 0.0314, 0.0203], [0.3115, 0.1299, 0.1299, 0.1146, 0.0422, 0.0422, 0.0256, 0.0176], [0.2814, 0.1329, 0.1173, 0.0806, 0.0628, 0.0336, 0.0336, 0.0217], [0.2542, 0.0935, 0.0825, 0.0825, 0.0604, 0.0415, 0.0323, 0.0304], [0.2534, 0.0641, 0.044, 0.044, 0.0365, 0.0267, 0.0236, 0.0172], [0.1966, 0.0723, 0.0467, 0.0387, 0.0387, 0.0342, 0.0302, 0.0207], [0.0804, 0.0804, 0.0756, 0.0667, 0.038, 0.0278, 0.0261, 0.0203], [0.2918, 0.1074, 0.042, 0.0349, 0.0327, 0.024, 0.0225, 0.0199], [0.1994, 0.0537, 0.0369, 0.027, 0.021, 0.0185, 0.0164, 0.0144], [0.157, 0.0952, 0.0479, 0.0329, 0.0273, 0.0226, 0.0165, 0.0137], [0.728, 0.0767, 0.0171, 0.0125, 0.0052, 0.0049, 0.0049, 0.0046], [0.9242, 0.0149, 0.008, 0.0071, 0.0071, 0.0055, 0.0048, 0.0024], [0.8468, 0.0372, 0.0176, 0.0121, 0.01, 0.0073, 0.0073, 0.0039], [0.7739, 0.0495, 0.022, 0.011, 0.0104, 0.0092, 0.0076, 0.0071], [0.5672, 0.1625, 0.087, 0.0194, 0.0194, 0.0171, 0.0111, 0.0081], [0.6164, 0.2001, 0.0506, 0.0145, 0.0113, 0.01, 0.0088, 0.0088], [0.9021, 0.0187, 0.0165, 0.01, 0.0069, 0.0069, 0.0042, 0.0033], [0.9819, 0.004, 0.0028, 0.0015, 0.0013, 0.0011, 0.0011, 0.0007], [0.9905, 0.0025, 0.0009, 0.0007, 0.0007, 0.0005, 0.0005, 0.0005], [0.9972, 0.0006, 0.0004, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.996, 0.0017, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9988, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.9989, 0.0004, 0.0001, 0.0001, 0.0001, 0.0001, 0.0, 0.0]], "ranks": {"Rust": [40865, 77680, 53432, 59424, 5327, 11938, 42034, 38742, 51930, 21142, 12635, 19885, 14852, 19676, 10603, 6757, 10213, 32840, 59321, 26689, 33321, 37646, 31364, 25744, 16888, 18574, 18957, 10339, 9106, 8444, 7301, 6122, 10974, 14456, 13864, 19226, 13474, 15430, 15027, 35351, 36118, 37001, 38654, 24068, 9082, 8102, 6490, 9341, 15046, 21060, 56339, 91865, 42653, 71889, 82514, 60960, 29519, 12307, 15436, 4085, 2685, 628, 365]}}, {"pos": 580, "top": [[",", ".", "s", ";", "?", ":", "!", "\u2026."], [",", ".", "s", ";", "!", "?", "\u2026.", ":"], [",", ".", "\u2026", "\u2026.", ";", "\u2026..", "s", "!"], ["s", "sider", "sik", "aruhi", "schaft", " \u041a\u0440\u0430\u0441\u0438", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\ufffd\ufffd"], [",", ".", "s", "!", "\u2026.", ".\u201d", ":", " \u201c"], [",", ".", "s", "\u2026.", " \u200b\u200b", "!", " \u201c", ":"], ["s", ".", ",", ".\u201d", "\u2026.", "!", ".\u2019", "\u2026"], [".", ",", "s", "!", "\u2026.", "!.", ".\u201d", ".\u2019"], [".", ",", "!", ".\u201d", "\u2026.", "\u2026", ";", "!\u201d"], [",", ".", "\u2026", "\u2026.", ";", "\u2014", "!", ":"], [",", ".", "\u2026", "\u2014", "!", "\u2026.", ";", "\u00a0"], [" pretty", " guys", "lessly", " even", " just", " lucky", " thanks", " getting"], [" guys", " pretty", " even", ".", " just", ",", " thanks", "\u2019s"], [",", ".", " pretty", " just", " guys", "\u2026", " going", " even"], [",", " just", "\u2014", " even", " going", ".", " pretty", " yet"], [" just", " even", " folks", "\u2014", " going", " \u2014", " pretty", " plenty"], [" just", " even", " going", ",", " getting", " pretty", " plenty", " folks"], [" just", " even", " going", " getting", "\u2014", ",", " pretty", "\u2014even"], [" just", " even", " \u2014", "\u2014even", "\u2014", " going", "\u2014but", "\u2014and"], [" \u2014", " just", " even", "\u2014even", "\u2014", " though", "\u2014and", " yet"], [" just", " even", " \u2014", " though", "\u2014even", " ,", " once", " across"], [" even", " just", " forever", "\u2014even", " wildly", " too", " beyond", " going"], [" even", " just", " ,", " once", " too", " still", " much", " going"], [" just", " even", " ,", " once", " much", " still", " in", " too"], [" even", " just", " ,", " \u2014", " though", " once", " much", "\u2014even"], [" even", " just", " wildly", " ,", " forever", " \u2014", " once", " though"], [" even", " just", " wildly", " \u2014", " ,", "\u2014even", " beyond", " desperately"], [" even", " ,", " just", " \u2014", " though", " much", " once", " yet"], [" even", " \u2014", " just", " ,", " wildly", "\u2014even", " though", " much"], [" \u2014", " even", " just", " ,", " though", "\u2014even", " much", " once"], [" even", " ,", " just", " .", " because", " too", " \u2014", " over"], [" even", " just", " ,", " .", " because", " too", " over", " in"], [" even", " because", " just", " ,", " too", " over", " .", " once"], [" even", " because", " just", " too", "\u2014even", " beyond", " \u2014", " unless"], [" because", " even", " unless", "\u2014even", " just", " too", " beyond", " wildly"], [" because", " unless", " even", " \u2014", "\u2014even", " when", " too", " if"], [" because", " unless", " even", "because", " if", " due", " when", " despite"], [" because", " unless", " if", " when", " even", "because", " too", " due"], [" because", " unless", " if", " when", "because", " even", " due", " too"], [" because", " if", " unless", "because", "\u2014if", " when", "unless", " even"], [" because", " if", " unless", " when", "because", "\u2014if", " even", " too"], [" because", " if", " unless", " when", "\u2014if", "\u2014even", " even", "because"], [" because", " if", " unless", " when", "\u2014if", "because", " even", " fast"], [" because", " if", " unless", " when", " even", "because", "\u2014if", " dead"], [" because", " unless", " if", " when", " worse", " too", " fast", " even"], [" unless", " because", " if", " when", "unless", " even", " worse", " too"], [" unless", " because", " if", "unless", "because", " even", " when", " anything"], [" unless", " because", " if", "unless", "\u9664\u975e", "because", " when", "Unless"], [" unless", " because", " if", "unless", "because", "\u9664\u975e", " porque", ";if"], [" if", " unless", " because", "unless", ";if", " when", " n\u1ebfu", " \u0435\u0441\u043b\u0438"], [" if", " unless", ";if", " \u0435\u0441\u043b\u0438", " n\u1ebfu", "unless", " \u0625\u0630\u0627", " jika"], [" if", ";if", " unless", " \u0435\u0441\u043b\u0438", " n\u1ebfu", " \u0625\u0630\u0627", "\u5982\u679c", " jika"], [" if", ";if", " unless", " \u0435\u0441\u043b\u0438", " n\u1ebfu", " \u0625\u0630\u0627", "\u5982\u679c", " jika"], [" if", ";if", " unless", " \u0435\u0441\u043b\u0438", " \u0625\u0630\u0627", " n\u1ebfu", "\u5982\u679c", " jika"], [" if", ";if", " \u0435\u0441\u043b\u0438", " n\u1ebfu", " \u0625\u0630\u0627", "\u5982\u679c", " unless", "\u5982\u679c\u4f60\u7684"], [" if", ";if", " \u0435\u0441\u043b\u0438", " n\u1ebfu", " \u0625\u0630\u0627", "\u5982\u679c", "\u5982\u679c\u4f60\u7684", " unless"], [" if", ";if", " here", " \u0435\u0441\u043b\u0438", "\u5982\u679c", " \u0625\u0630\u0627", " n\u1ebfu", "\u5982\u679c\u4f60\u7684"], [" if", ";if", "\u5982\u679c", " \u0435\u0441\u043b\u0438", " \u0625\u0630\u0627", " n\u1ebfu", "if", " here"], [" if", ";if", " \u0625\u0630\u0627", "\u5982\u679c", " \u0435\u0441\u043b\u0438", " n\u1ebfu", " here", "if"], [" if", ";if", " here", "\u2014if", "if", "-if", " \u0625\u0630\u0627", " \u0435\u0441\u043b\u0438"], [" if", " here", ";if", "\u2014if", "-if", "if", " from", " If"], [" if", " here", " from", "\u2014if", ";if", " because", ";", "-if"], [" if", " here", " from", " because", " unless", "\u2014if", ";", ";if"]], "p": [[0.4983, 0.4983, 0.0012, 0.0011, 0.0003, 0.0002, 0.0001, 0.0001], [0.5764, 0.2723, 0.1002, 0.0164, 0.0041, 0.0027, 0.002, 0.0017], [0.8007, 0.1787, 0.0089, 0.0054, 0.0022, 0.0009, 0.0008, 0.0006], [0.0063, 0.0034, 0.0018, 0.0018, 0.0017, 0.0015, 0.0014, 0.0012], [0.4694, 0.4142, 0.1047, 0.0028, 0.0016, 0.0009, 0.0009, 0.0005], [0.5742, 0.3073, 0.0534, 0.0093, 0.0082, 0.006, 0.0023, 0.0023], [0.6764, 0.2488, 0.0555, 0.0043, 0.002, 0.002, 0.0018, 0.0013], [0.5149, 0.1779, 0.1672, 0.0188, 0.0129, 0.01, 0.0094, 0.0047], [0.582, 0.4, 0.0057, 0.0021, 0.0017, 0.0014, 0.001, 0.0008], [0.9778, 0.0123, 0.0031, 0.0017, 0.0009, 0.0007, 0.0005, 0.0002], [0.6658, 0.2776, 0.0228, 0.0065, 0.0048, 0.0035, 0.0027, 0.0009], [0.0198, 0.0164, 0.0128, 0.012, 0.0113, 0.0099, 0.0099, 0.0082], [0.0259, 0.0259, 0.019, 0.0178, 0.0167, 0.0167, 0.0108, 0.0095], [0.128, 0.0471, 0.0415, 0.0324, 0.0286, 0.0252, 0.0173, 0.0163], [0.0953, 0.079, 0.0655, 0.0479, 0.0397, 0.0176, 0.0156, 0.0146], [0.0775, 0.0344, 0.0344, 0.0323, 0.0303, 0.0285, 0.0236, 0.0153], [0.1191, 0.0529, 0.0363, 0.0341, 0.0161, 0.0142, 0.0126, 0.0118], [0.0983, 0.0362, 0.0249, 0.016, 0.0151, 0.0133, 0.0125, 0.0104], [0.0886, 0.0572, 0.0419, 0.0369, 0.0288, 0.012, 0.012, 0.0099], [0.0792, 0.0792, 0.0617, 0.0351, 0.033, 0.0114, 0.0107, 0.0107], [0.0578, 0.035, 0.0329, 0.0156, 0.0146, 0.0121, 0.0107, 0.0094], [0.0456, 0.0314, 0.0096, 0.0079, 0.007, 0.0062, 0.0058, 0.0058], [0.0964, 0.085, 0.0294, 0.0202, 0.0148, 0.0148, 0.013, 0.0102], [0.0822, 0.0726, 0.064, 0.0302, 0.0195, 0.0152, 0.0134, 0.0118], [0.0711, 0.0589, 0.0489, 0.0246, 0.0231, 0.0217, 0.0191, 0.0116], [0.1142, 0.0574, 0.0225, 0.0155, 0.0155, 0.012, 0.012, 0.0113], [0.0824, 0.0323, 0.0196, 0.0184, 0.0152, 0.0143, 0.0092, 0.0087], [0.0932, 0.0602, 0.0499, 0.0195, 0.0195, 0.0172, 0.0162, 0.0105], [0.0991, 0.0468, 0.0388, 0.0251, 0.0221, 0.0195, 0.0183, 0.0143], [0.1122, 0.099, 0.0413, 0.0388, 0.0172, 0.0162, 0.0143, 0.0126], [0.146, 0.0537, 0.0504, 0.0445, 0.021, 0.0186, 0.0174, 0.0174], [0.1656, 0.0648, 0.0393, 0.0347, 0.0326, 0.0154, 0.0154, 0.0145], [0.2171, 0.0549, 0.0516, 0.0244, 0.0178, 0.0157, 0.0148, 0.013], [0.167, 0.0509, 0.035, 0.0212, 0.0176, 0.0137, 0.0137, 0.0121], [0.1575, 0.0843, 0.0398, 0.0188, 0.0166, 0.0114, 0.0101, 0.0095], [0.6859, 0.0412, 0.0142, 0.0126, 0.0086, 0.0081, 0.0081, 0.0076], [0.8982, 0.0348, 0.0047, 0.0044, 0.0039, 0.0027, 0.0027, 0.0025], [0.8865, 0.0441, 0.0119, 0.0056, 0.0044, 0.0034, 0.0021, 0.0019], [0.8444, 0.0693, 0.0327, 0.0061, 0.0037, 0.0025, 0.0015, 0.0014], [0.6266, 0.1584, 0.1398, 0.0058, 0.0058, 0.0054, 0.0027, 0.0024], [0.7083, 0.1395, 0.0747, 0.0084, 0.0061, 0.0051, 0.0021, 0.002], [0.7559, 0.0797, 0.0548, 0.0089, 0.0084, 0.0031, 0.0027, 0.0026], [0.7343, 0.0994, 0.0532, 0.0092, 0.0028, 0.0025, 0.0022, 0.0016], [0.6118, 0.1547, 0.0938, 0.0237, 0.0041, 0.0022, 0.0016, 0.0014], [0.5441, 0.257, 0.1071, 0.0078, 0.0025, 0.0018, 0.0014, 0.0013], [0.4698, 0.3659, 0.0925, 0.0036, 0.002, 0.0016, 0.0013, 0.0011], [0.6567, 0.2738, 0.042, 0.0047, 0.002, 0.0011, 0.0009, 0.0008], [0.903, 0.045, 0.045, 0.0047, 0.0006, 0.0004, 0.0002, 0.0001], [0.9087, 0.0452, 0.0399, 0.0042, 0.0006, 0.0004, 0.0001, 0.0001], [0.6087, 0.3692, 0.0046, 0.0046, 0.0041, 0.0017, 0.0013, 0.001], [0.6522, 0.2117, 0.1133, 0.005, 0.0044, 0.0039, 0.0027, 0.0009], [0.912, 0.0749, 0.0048, 0.0029, 0.0018, 0.0009, 0.0006, 0.0004], [0.9706, 0.0228, 0.0019, 0.0013, 0.001, 0.0009, 0.0004, 0.0002], [0.9686, 0.0228, 0.0027, 0.0015, 0.0013, 0.0011, 0.0004, 0.0003], [0.9818, 0.0124, 0.0017, 0.0009, 0.0009, 0.0008, 0.0003, 0.0002], [0.9505, 0.0369, 0.0027, 0.0018, 0.0018, 0.0016, 0.0007, 0.0006], [0.9602, 0.029, 0.0019, 0.0016, 0.0016, 0.0014, 0.0014, 0.0004], [0.9924, 0.0046, 0.0007, 0.0005, 0.0004, 0.0004, 0.0001, 0.0001], [0.9955, 0.0022, 0.0003, 0.0003, 0.0003, 0.0002, 0.0002, 0.0002], [0.9979, 0.0007, 0.0005, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9971, 0.0015, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001, 0.0], [0.9966, 0.0017, 0.0005, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9952, 0.0025, 0.0017, 0.0002, 0.0001, 0.0001, 0.0, 0.0]], "ranks": {"Rust": [16778, 35198, 41709, 12578, 2441, 5777, 6965, 4972, 7094, 2964, 3779, 2852, 2409, 2817, 4126, 3309, 3920, 8713, 15059, 10558, 17894, 17939, 11674, 9324, 6383, 5239, 4772, 5077, 3704, 3387, 3464, 3510, 4254, 4714, 5106, 8390, 5451, 5079, 5719, 8810, 10590, 8887, 7922, 7809, 4464, 4437, 5053, 7118, 8463, 14088, 37051, 64331, 64982, 48012, 53945, 41464, 5926, 2871, 1829, 695, 451, 233, 176]}}, {"pos": 581, "top": [[".", ",", "\u2013", ";", "-", "?", "\u2026.", "\u2026"], ["\u2013", ".", ",", "\u2013and", "  \n", "   \n", "tures", "?"], [".", ",", "\u2026", "\u2013", "\u2026.", "?", "\u2026..", ";"], [" Shemale", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", " **>>", " Blowjob", " **\u25cb", " **\u300c", " Geile"], ["CHF", " CHF", "-**", "teenth", " CIF", " kif", " @_", "tele"], ["CHF", "tf", "-**", "VF", ":href", "\u82b7", " CHF", " VF"], ["   \n", "  \n", "tf", "  \n\n\n", "...", "if", "  \n  \n", "-if"], [" veggies", " **\u300c", "   \n", "...**", " **\u2022", "vf", " **\u00ab", "**!"], ["...", "  \n\n\n", "...**", "?...", "   \n", "!", "rance", "?!"], ["-if", "-ish", "\u2026", "|RF", "...", " veggies", " booze", "vf"], ["...", "\u2026", "if", "-if", "\u00a0", " everybody", "!", "you"], [" everybody", " booze", " veggies", " somebody", " plenty", " anybody", " guys", " luck"], [" veggies", " booze", " freaking", " guys", " everybody", " somebody", "-ish", " plenty"], [" veggies", " guys", " booze", " freaking", " folks", " bigger", " kids", " everybody"], [" folks", " plenty", " everybody", " anybody", " somebody", " guys", " kids", " bigger"], [" plenty", " folks", " guys", " kids", " everybody", " veggies", " bigger", " getting"], [" folks", " plenty", " kids", " veggies", " guys", " booze", " bigger", " skinny"], ["...", " folks", " kids", " plenty", " booze", "if", " guys", "\u2026"], ["...", "if", " folks", " booze", " smack", "\u2026", " kids", " downright"], ["<|endoftext|>", " folks", "...", " everybody", "i", " smack", " anybody", " plenty"], ["<|endoftext|>", "  \n\n", " \n\n", "   \n\n", " folks", "i", "if", "<|file_sep|>"], [" anybody", " everybody", " smack", " folks", "\u600e\u9ebd", " booze", "kids", " looming"], [" anybody", " everybody", " folks", " somebody", "\u600e\u9ebd", " smack", " nobody", " everything"], [" everybody", "<|endoftext|>", " anybody", " --", " folks", " even", " everything", " looming"], ["   \n\n", " \n\n", "  \n\n", " anybody", " everybody", " folks", "...", " \r\n\r\n"], [" folks", " anybody", " booze", " everybody", " busted", " looming", " smack", " somebody"], [" anybody", " booze", " folks", " looming", " everybody", " busted", " nobody", "\u600e\u9ebd"], [" looming", " even", " everybody", "\u600e\u9ebd", " anybody", " folks", " everything", " --"], [" looming", " everything", " even", " anything", " folks", " you", " busted", " booze"], [" **", "  \n\n", " \n  \n", "   \n\n", " everything", " \n\n", " you", " \n\n\n"], [" ...", "...", " everything", " **", " \n\n", "  \n\n", " anything", " you"], [" **", " ...", " everything", " even", " it", " you", " hit", " too"], [" **", " looming", " relentlessly", " stubborn", " relentless", " even", " desperate", " everything"], [" **", "  \n\n", "\u2026**", "...**", " stubborn", " relentlessly", " crap", " relentless"], [" **", " relentlessly", " stubborn", " relentless", "\u2014even", " crap", " looming", " sloppy"], ["\u2026*", " \u2026", " [\u2026]", " stubborn", "\u2026**", "\u2014even", " crap", "\u2026"], [" stubborn", " sloppy", " crap", "\u2014even", "\u2014if", "\u6839\u672c\u65e0\u6cd5", " bottleneck", " sluggish"], [" sloppy", " crap", " stubborn", " clutter", " bottleneck", " chaos", " unpredictable", " shit"], [" bottleneck", " stubborn", " sloppy", " lazy", " clutter", " crap", " chaos", " unpredictable"], [" bottleneck", " chaos", " unpredictable", " stubborn", " clutter", " sloppy", " crap", " lazy"], [" bottleneck", " chaos", " clutter", " blocking", " sluggish", " sloppy", " lazy", " stubborn"], [" bottleneck", " hardware", " clutter", " blocking", " locks", " chaos", " unpredictable", " sloppy"], [" bottleneck", " clutter", " blocking", " brute", " hardware", " locks", " choke", " improperly"], [" bottleneck", " blocking", " improperly", " choke", " locks", " clutter", " blockers", " inefficient"], [" bottleneck", " improperly", " blocking", " inefficient", " choke", " clutter", " locks", " blockers"], [" improperly", " bottleneck", " blocking", " inadvertently", " unwitting", " choke", " inefficient", " clutter"], [" bottleneck", " improperly", " blocking", " inadvertently", " misuse", " chaos", " choke", " inefficient"], [" improperly", " bottleneck", " misuse", " synced", " blocking", " inadvertently", " misplaced", " mis"], [" improperly", " bottleneck", "\u62d6\u7d2f", " synced", " misuse", " blockers", " syncing", " incompatible"], [" bottleneck", " improperly", "\u62d6\u7d2f", " blockers", " misuse", " synced", "\u963b\u585e", " syncing"], [" improperly", " bottleneck", " synced", "rames", " syncing", " misuse", "\u4f60\u628a", " incompatible"], [" bottleneck", "\u963b\u585e", " improperly", " synced", " syncing", " synchronous", " synchronization", "rames"], [" bottleneck", " synchronous", "\u963b\u585e", " synchronization", " syncing", "rames", " improperly", " locks"], [" bottleneck", " locks", "\u963b\u585e", " your", " mutex", " threads", " UI", " synchronous"], [" UI", " threads", " bottleneck", "\u963b\u585e", " your", "-thread", " synchronization", " thread"], ["\u963b\u585e", " UI", " Blocking", " blocking", "-blocking", " mutex", " threads", " threading"], [" UI", "\u963b\u585e", " Blocking", " blocking", "Blocking", "blocking", " threads", "-blocking"], [" UI", " your", " synchronous", " synchronization", "/UI", "\u963b\u585e", " blocking", " threading"], [" blocking", " Blocking", "blocking", "\u963b\u585e", "Blocking", "-blocking", "/block", " blocks"], [" plugins", " blocking", " plugin", " Blocking", "blocking", "\u963b\u585e", " blocks", " Plugins"], [" plugins", " plugin", " blocking", " UI", " your", " Plugins", " synchronous", " synchronization"], [" plugins", " blocking", " plugin", " UI", " your", " Plugins", " synchronous", "plugins"], [" plugins", " the", " your", " UI", " plugin", " you", " blocking", " synchronous"]], "p": [[0.4909, 0.4909, 0.0062, 0.0031, 0.0012, 0.0011, 0.001, 0.0008], [0.0663, 0.0168, 0.0115, 0.0074, 0.0051, 0.0037, 0.0037, 0.0033], [0.6416, 0.1838, 0.0868, 0.0362, 0.0194, 0.0097, 0.0038, 0.0038], [0.03, 0.0281, 0.0142, 0.0117, 0.0091, 0.0063, 0.0049, 0.0036], [0.0203, 0.0062, 0.0048, 0.0048, 0.0029, 0.0026, 0.0026, 0.0026], [0.0129, 0.0045, 0.0042, 0.0035, 0.0029, 0.0027, 0.0027, 0.0025], [0.0623, 0.0456, 0.0294, 0.0215, 0.019, 0.0108, 0.0102, 0.007], [0.0166, 0.0095, 0.0089, 0.0061, 0.0057, 0.0048, 0.0048, 0.0045], [0.0896, 0.0176, 0.0101, 0.0089, 0.0069, 0.0054, 0.0054, 0.0045], [0.008, 0.0063, 0.0059, 0.0055, 0.0049, 0.0046, 0.0038, 0.0034], [0.198, 0.0684, 0.0268, 0.0184, 0.0143, 0.0105, 0.0093, 0.0082], [0.0351, 0.0291, 0.0227, 0.0156, 0.0089, 0.0078, 0.0065, 0.0057], [0.0809, 0.0297, 0.0103, 0.0097, 0.0085, 0.0075, 0.0059, 0.0059], [0.091, 0.0518, 0.0356, 0.0314, 0.0168, 0.0158, 0.0148, 0.0123], [0.1164, 0.055, 0.0456, 0.0313, 0.0202, 0.0202, 0.0139, 0.0139], [0.1074, 0.089, 0.0421, 0.0308, 0.0255, 0.0199, 0.0165, 0.0155], [0.2, 0.0736, 0.0506, 0.0446, 0.0271, 0.0254, 0.0164, 0.0164], [0.0774, 0.0774, 0.0303, 0.0285, 0.0236, 0.0196, 0.0143, 0.0135], [0.1185, 0.03, 0.0264, 0.0133, 0.0117, 0.011, 0.0104, 0.0097], [0.0443, 0.0252, 0.0173, 0.0163, 0.0112, 0.0112, 0.0105, 0.0099], [0.6668, 0.007, 0.004, 0.0035, 0.0029, 0.002, 0.0017, 0.0016], [0.005, 0.005, 0.0035, 0.0035, 0.0031, 0.0022, 0.002, 0.002], [0.0238, 0.021, 0.0127, 0.0073, 0.006, 0.006, 0.0036, 0.0032], [0.0172, 0.0111, 0.0098, 0.0076, 0.0072, 0.0056, 0.0052, 0.0049], [0.0243, 0.0189, 0.0167, 0.0108, 0.0095, 0.0084, 0.0065, 0.0051], [0.0147, 0.0122, 0.0107, 0.0089, 0.0061, 0.004, 0.004, 0.004], [0.0099, 0.0088, 0.005, 0.005, 0.0044, 0.0044, 0.0039, 0.0034], [0.0109, 0.0075, 0.0075, 0.0058, 0.0055, 0.0055, 0.0043, 0.0038], [0.0223, 0.0099, 0.0087, 0.0072, 0.0064, 0.0056, 0.005, 0.0047], [0.1108, 0.0263, 0.0218, 0.0218, 0.0181, 0.017, 0.0132, 0.0117], [0.0637, 0.0496, 0.0341, 0.0301, 0.0182, 0.0171, 0.0171, 0.0171], [0.2411, 0.0271, 0.0211, 0.0128, 0.012, 0.0113, 0.0106, 0.0078], [0.077, 0.025, 0.0126, 0.0118, 0.0086, 0.0076, 0.0063, 0.0063], [0.054, 0.0421, 0.0255, 0.0137, 0.0128, 0.0113, 0.0106, 0.0088], [0.0103, 0.0103, 0.0096, 0.0071, 0.0071, 0.0071, 0.0066, 0.0058], [0.0564, 0.0388, 0.0235, 0.0221, 0.0208, 0.0195, 0.0126, 0.0111], [0.038, 0.0246, 0.018, 0.0131, 0.0116, 0.0109, 0.0109, 0.0109], [0.0505, 0.0254, 0.0164, 0.0154, 0.0106, 0.0073, 0.0073, 0.0073], [0.0281, 0.0218, 0.0205, 0.0124, 0.0117, 0.0097, 0.0097, 0.0091], [0.0363, 0.0171, 0.0151, 0.0133, 0.0118, 0.0111, 0.0098, 0.0098], [0.0868, 0.0133, 0.0125, 0.0117, 0.0104, 0.0097, 0.0091, 0.0086], [0.0643, 0.0252, 0.0196, 0.0105, 0.0105, 0.0105, 0.0072, 0.0068], [0.0929, 0.0207, 0.0172, 0.0152, 0.0152, 0.0142, 0.0126, 0.0104], [0.1142, 0.0348, 0.0175, 0.0145, 0.0136, 0.0136, 0.012, 0.0094], [0.1439, 0.0342, 0.0183, 0.0152, 0.0126, 0.0104, 0.0098, 0.0086], [0.0913, 0.0711, 0.0262, 0.0231, 0.0109, 0.0102, 0.0102, 0.0096], [0.1215, 0.0835, 0.0164, 0.0154, 0.0083, 0.0083, 0.0078, 0.0078], [0.2137, 0.1075, 0.0106, 0.01, 0.0094, 0.0088, 0.0069, 0.0065], [0.1232, 0.04, 0.0122, 0.0079, 0.0074, 0.0061, 0.0045, 0.0042], [0.0404, 0.0277, 0.0066, 0.0051, 0.0038, 0.0035, 0.0033, 0.0033], [0.0332, 0.0108, 0.0051, 0.0048, 0.004, 0.0037, 0.0027, 0.0027], [0.0292, 0.0177, 0.0095, 0.0095, 0.0089, 0.0079, 0.0074, 0.0054], [0.1022, 0.0353, 0.0312, 0.0167, 0.0157, 0.0138, 0.0122, 0.0122], [0.0765, 0.0436, 0.0361, 0.0248, 0.0248, 0.0193, 0.016, 0.0133], [0.0771, 0.068, 0.0467, 0.0439, 0.0387, 0.0302, 0.0235, 0.0195], [0.1914, 0.1025, 0.0621, 0.0548, 0.0401, 0.0354, 0.0333, 0.0243], [0.1382, 0.1382, 0.074, 0.0653, 0.0396, 0.0372, 0.0328, 0.0308], [0.396, 0.0536, 0.0392, 0.0392, 0.0305, 0.0305, 0.0197, 0.0174], [0.6, 0.1517, 0.092, 0.0558, 0.0558, 0.0264, 0.0031, 0.0031], [0.7358, 0.1642, 0.0366, 0.0119, 0.0082, 0.0044, 0.0044, 0.0039], [0.8489, 0.0479, 0.0479, 0.0137, 0.0065, 0.005, 0.0031, 0.0027], [0.8291, 0.0468, 0.0468, 0.0195, 0.0134, 0.0052, 0.0046, 0.0028], [0.4442, 0.346, 0.1273, 0.0251, 0.0195, 0.0104, 0.0056, 0.0044]], "ranks": {"Rust": [72270, 151517, 154700, 89264, 29230, 42702, 59102, 79994, 94620, 45242, 31021, 21997, 14342, 13585, 10695, 8039, 12568, 21357, 32911, 19649, 44081, 66936, 41681, 18361, 13103, 20716, 13866, 7429, 3272, 2728, 2856, 3013, 3823, 10050, 8134, 20951, 7573, 5421, 6045, 8888, 9432, 6344, 5696, 9392, 4576, 3022, 3423, 4886, 8526, 12938, 14602, 20522, 8287, 6710, 6095, 1748, 73, 72, 141, 96, 61, 56, 17]}}, {"pos": 582, "top": [[".", ",", "\u2013", ";", " \u2013", "\u00a0", "\u00a0\u00a0", " "], [",", "\u2013", ".", " \u2013", ";", "\u2013and", " ", ".\u2013"], [".", ",", "\u2013", " \u2013", "\u2026.", "\u2026", ";", "\u2026.."], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", "-------------</", "----------</", " Blowjob", "TRGL", " ;;^"], [".", ",", "\u00a0\u00a0", " ", " \u2019", "  ", ".@", " \u201c"], ["\u2026.", "\u00a0\u00a0", ".", "  ", ".cast", "!\u201d.", " \u200b\u200b", "   \n"], ["   \n", "  \n\n", "  \n", "  \r\n", " \u2019", "  ", "  \r\n\r\n", "      \n"], ["   \n", "  \r\n", "   \r\n", "   \n\n", "  ", "  \n\n", "  \r\n\r\n", "  \n"], ["  \n\n", ".", " \n\n", "   \n\n", "\u00a0", ",", "...", " [\u2026]"], [",", "\u00a0", "\u2013", "\u2026", "\u00a0\u00a0", " \u00ad", "\u00ad", "."], ["...", ",", ".", " ", "\u00a0", "\u2026", "-", "<|endoftext|>"], [" stuff", " guts", "...", "-ish", " kids", " veggies", " folks", " pricey"], ["...", "-ish", " veggies", " guts", " stuff", " guys", " vibe", " kids"], ["-ish", " guts", " pricey", " kids", " folks", " busted", " veggies", " vibe"], [" busted", " folks", " stuff", " kids", " pricey", " smack", " Philly", " savvy"], [" folks", " kids", " busted", " pricey", " savvy", " veggies", " tweaked", "kids"], [" folks", " kids", " savvy", " guts", " busted", " veggies", " tweaked", " pricey"], [" kids", " folks", " savvy", "kids", " veggies", " guts", " hefty", " pricey"], [" folks", " kids", " guts", " smack", " hefty", " savvy", " busted", " nasty"], [" folks", " myriad", " smack", " busted", " looming", " guts", " hefty", " hugely"], ["<|endoftext|>", " \n\n", "\n\n", " myriad", " folks", "Though", " hugely", " t"], [" busted", " booze", "\u8ddf\u4ed6\u4eec", " smack", " pricey", " guts", " kids", " folks"], [" ''", " busted", " ``", " folks", " smack", " uncomfort", " looming", " disastr"], [" ''", " ultimately", " ``", " disastr", " eventually", " {{--<", " uncomfort", " --"], [" \n\n", " {{--<", " \r\n\r\n", " disastr", " ''", " hugely", "\u8ddf\u81ea\u5df1", "   \n\n"], [" stuff", " busted", " booze", " {{--<", " glitches", " pricey", " crunch", " uncomfort"], [" stuff", " uncomfort", " crunch", " ''", " hardware", " worse", "\u548c\u4fe1\u606f\u5316", " unpredictable"], [" ''", " --", " '", " ultimately", " eventually", " even", " heavily", " heavy"], [" massive", " heavy", " ultimately", " hit", " stalled", " looming", " hardware", " uncomfort"], [" stalled", " heavy", " hardware", " massive", " impact", " dead", " hits", " stuff"], [" heavy", " massive", " dead", " hits", " stuff", " hit", " stalled", " huge"], [" heavy", " massive", " hit", " over", " dead", " ", " power", " critical"], [" massive", " heavy", " dead", " power", " over", " critical", " hard", " forced"], [" hardware", " stuff", " tech", " frantic", " dead", " crunch", " bottleneck", " relentless"], [" hardware", " bottleneck", " infrastructure", " tech", " **", " relentless", " crunch", " brute"], [" \u2026", " hardware", " workload", "\u2026*", " runtime", " bottleneck", " *", " time"], [" hardware", " bottleneck", " synchronous", " *", " workload", " sync", " latency", " runtime"], [" hardware", " bottleneck", " synchronous", " workload", " core", " sync", " synchronized", " infrastructure"], [" synchronous", " bottleneck", " workload", " hardware", " labor", " synchronization", " thread", " synchronized"], [" hardware", " bottleneck", " execution", " synchronous", " labor", " synchronization", " workload", " synchronized"], [" bottleneck", " hardware", " execution", " workload", " thread", " labor", " synchronous", " CPU"], [" hardware", " processing", " execution", " processor", " thread", " interface", " sync", " synchronization"], [" hardware", " synchronization", " processing", " synchronous", " interface", " processor", " execution", " sync"], [" hardware", " processing", " interface", " synchronization", " processor", " execution", " synchronous", " animation"], [" processing", " synchronization", " interface", " hardware", " execution", " bottleneck", " sync", " synchronous"], [" sync", " hardware", " interface", " bottleneck", " synchronization", " processing", " execution", " synchronous"], [" synchronization", " bottleneck", " sync", " interface", " hardware", " processing", " coordination", " execution"], [" sync", " interface", " synchronization", " bottleneck", " coordination", " syncing", " synced", " processing"], [" interface", " bottleneck", " synchronization", " interf", " syncing", " synced", " sync", " integration"], [" bottleneck", " interface", " synchronization", " syncing", " synced", "-sync", " hardware", " interf"], [" bottleneck", "-sync", "-interface", "-trigger", " synced", " interface", " synchronization", " hardware"], [" execution", " parser", " bottleneck", " interface", " CPU", " scheduler", " executor", " processor"], [" bottleneck", " CPU", " execution", " processor", " executor", " renderer", " scheduler", " GPU"], [" bottleneck", " UI", " executor", " renderer", " execution", " scheduler", " CPU", " frontend"], [" scheduler", " bottleneck", " renderer", " executor", " UI", " dispatcher", " thread", " parser"], [" UI", " renderer", " scheduler", " callbacks", " plugin", "/UI", " callback", " executor"], [" UI", " renderer", " plugin", " callbacks", " scheduler", " callback", "/UI", " scripting"], [" UI", " renderer", "/UI", " GUI", " GPU", " plugin", " shader", "UI"], [" UI", " renderer", " GPU", " GUI", " scheduler", " plugin", " shader", " interpreter"], [" plugin", " UI", " plugins", "plugin", " Plugin", "-plugin", " scripting", "_plugin"], [" UI", " plugin", " plugins", " scripting", " GUI", " renderer", "-plugin", " Plugin"], [" UI", " plugin", " plugins", "-plugin", " renderer", " Plugin", " GUI", " scripting"], [" UI", " plugin", " plugins", " scripting", " renderer", " GUI", " GPU", " JavaScript"]], "p": [[0.7285, 0.268, 0.0011, 0.0008, 0.0008, 0.0002, 0.0002, 0.0001], [0.35, 0.2726, 0.1994, 0.0689, 0.0099, 0.0073, 0.0025, 0.002], [0.588, 0.3567, 0.0483, 0.0021, 0.0015, 0.0013, 0.0007, 0.0004], [0.0124, 0.0062, 0.0045, 0.0033, 0.0031, 0.0029, 0.0018, 0.0018], [0.0658, 0.0399, 0.0331, 0.0201, 0.0107, 0.0084, 0.0057, 0.0051], [0.0147, 0.013, 0.0054, 0.0054, 0.0042, 0.0033, 0.0033, 0.0027], [0.2358, 0.1114, 0.1046, 0.0719, 0.0249, 0.0233, 0.0219, 0.0194], [0.3516, 0.0737, 0.0447, 0.0348, 0.0348, 0.0307, 0.0211, 0.0175], [0.5842, 0.0791, 0.0698, 0.0578, 0.0373, 0.0241, 0.02, 0.0107], [0.7695, 0.0383, 0.0338, 0.017, 0.016, 0.016, 0.0091, 0.0085], [0.785, 0.0304, 0.0304, 0.0304, 0.0269, 0.0269, 0.0119, 0.0087], [0.0292, 0.0188, 0.0156, 0.0129, 0.0114, 0.0074, 0.0074, 0.0069], [0.0308, 0.0137, 0.0106, 0.01, 0.0083, 0.0061, 0.0054, 0.005], [0.0182, 0.011, 0.011, 0.0076, 0.0071, 0.0063, 0.0063, 0.0063], [0.0195, 0.0183, 0.0162, 0.0118, 0.0067, 0.0067, 0.0063, 0.0063], [0.0588, 0.0245, 0.023, 0.0109, 0.009, 0.009, 0.0066, 0.0058], [0.0323, 0.0173, 0.0092, 0.0087, 0.0077, 0.0072, 0.0068, 0.006], [0.0184, 0.0093, 0.0082, 0.006, 0.006, 0.0056, 0.005, 0.0044], [0.0096, 0.009, 0.0075, 0.007, 0.0055, 0.0055, 0.0051, 0.0051], [0.0066, 0.0058, 0.0051, 0.0033, 0.0031, 0.0029, 0.0029, 0.0026], [0.8509, 0.0009, 0.0008, 0.0007, 0.0006, 0.0003, 0.0003, 0.0003], [0.0057, 0.003, 0.0029, 0.0027, 0.002, 0.002, 0.0018, 0.0017], [0.0098, 0.0046, 0.0044, 0.0028, 0.0021, 0.0021, 0.0019, 0.0018], [0.0058, 0.0026, 0.0023, 0.002, 0.0019, 0.0018, 0.0016, 0.0016], [0.0068, 0.003, 0.0027, 0.0022, 0.0021, 0.0018, 0.0017, 0.0016], [0.0033, 0.0024, 0.0024, 0.0021, 0.002, 0.002, 0.002, 0.0019], [0.0032, 0.0032, 0.0028, 0.0026, 0.0026, 0.0025, 0.0022, 0.0021], [0.0079, 0.0065, 0.0061, 0.0058, 0.0054, 0.0037, 0.0027, 0.0026], [0.0066, 0.0049, 0.0046, 0.0043, 0.0038, 0.0038, 0.0038, 0.0033], [0.0119, 0.0111, 0.0105, 0.0072, 0.0068, 0.006, 0.0056, 0.0053], [0.0162, 0.0143, 0.0098, 0.0087, 0.0081, 0.0072, 0.0063, 0.0063], [0.0181, 0.0125, 0.011, 0.011, 0.0097, 0.0097, 0.008, 0.008], [0.0157, 0.0139, 0.009, 0.0074, 0.007, 0.0062, 0.0058, 0.0054], [0.0256, 0.0121, 0.0088, 0.0083, 0.0083, 0.0078, 0.0073, 0.0057], [0.0319, 0.0125, 0.0117, 0.0117, 0.011, 0.0091, 0.0063, 0.0063], [0.0718, 0.0361, 0.0182, 0.0171, 0.0117, 0.0103, 0.0097, 0.0071], [0.0452, 0.0274, 0.0177, 0.0177, 0.0107, 0.0089, 0.0074, 0.0074], [0.0338, 0.0193, 0.0141, 0.0124, 0.0103, 0.0059, 0.0052, 0.0052], [0.0488, 0.0459, 0.0431, 0.0405, 0.018, 0.0116, 0.0116, 0.0116], [0.0623, 0.0355, 0.0244, 0.0244, 0.0229, 0.0202, 0.0148, 0.0131], [0.0441, 0.0441, 0.0365, 0.0343, 0.0343, 0.0322, 0.0196, 0.0152], [0.1337, 0.0557, 0.0434, 0.0383, 0.0205, 0.0205, 0.0193, 0.0181], [0.0936, 0.0415, 0.039, 0.0367, 0.0367, 0.0285, 0.0268, 0.0252], [0.0589, 0.038, 0.0357, 0.0296, 0.0278, 0.0278, 0.0217, 0.0203], [0.0425, 0.0352, 0.0331, 0.0331, 0.0311, 0.0213, 0.0213, 0.0166], [0.0324, 0.0305, 0.0286, 0.0286, 0.0286, 0.0237, 0.0174, 0.0144], [0.0648, 0.0418, 0.0347, 0.0326, 0.0306, 0.0238, 0.021, 0.0198], [0.06, 0.0497, 0.0497, 0.0302, 0.0302, 0.0283, 0.025, 0.0221], [0.0434, 0.0317, 0.0247, 0.0218, 0.015, 0.0132, 0.0124, 0.0124], [0.0348, 0.0239, 0.0136, 0.0128, 0.012, 0.0106, 0.0094, 0.0083], [0.0124, 0.007, 0.0055, 0.0045, 0.004, 0.004, 0.0038, 0.0035], [0.0705, 0.0215, 0.019, 0.0168, 0.0157, 0.0123, 0.0102, 0.0102], [0.1277, 0.0441, 0.0415, 0.0222, 0.0196, 0.0184, 0.0143, 0.0143], [0.1958, 0.072, 0.0561, 0.0385, 0.0385, 0.0282, 0.0234, 0.0125], [0.192, 0.1164, 0.0907, 0.0907, 0.0706, 0.0294, 0.0202, 0.0148], [0.5882, 0.0703, 0.0547, 0.0332, 0.0293, 0.0258, 0.0157, 0.0122], [0.6985, 0.1376, 0.0211, 0.0128, 0.01, 0.0088, 0.0078, 0.0078], [0.8585, 0.0799, 0.0074, 0.0074, 0.0066, 0.0045, 0.0027, 0.0017], [0.8241, 0.0984, 0.0118, 0.0104, 0.0071, 0.0056, 0.0038, 0.0026], [0.5469, 0.3317, 0.1077, 0.0022, 0.0017, 0.0015, 0.0014, 0.0011], [0.6392, 0.302, 0.0463, 0.003, 0.0012, 0.0011, 0.0008, 0.0008], [0.5942, 0.3604, 0.0335, 0.0015, 0.0009, 0.0009, 0.0007, 0.0006], [0.7334, 0.2381, 0.0152, 0.0012, 0.0011, 0.0011, 0.0006, 0.0005]], "ranks": {"Rust": [35889, 104400, 72328, 75826, 2450, 18451, 18191, 3930, 20661, 4366, 4529, 1476, 1104, 1091, 3889, 2648, 2691, 3333, 4901, 5699, 8935, 6766, 5644, 4465, 2254, 3042, 1299, 1877, 1263, 1681, 1917, 3788, 3451, 8376, 12172, 18354, 4477, 3593, 7641, 5032, 3312, 2371, 3127, 3906, 3970, 3068, 5036, 3795, 12158, 18153, 43720, 22271, 5594, 5808, 7630, 1478, 110, 106, 158, 138, 92, 88, 60]}}, {"pos": 583, "top": [[" \u2013", "\u2013", ".", ",", "\u2013and", " ", "..", ",."], [" \u2013", ".", "\u2013", "\u2013and", ",", ",.", "..", ":."], [",", "\u2013", ".", " \u2013", "\u2013and", "\u2026..", "..", "..\""], ["\u6700\u65b0\u53d1\u5e03", "*\u201c.", "~\":\"", " pornstar", " Blowjob", " Podcast", " *\u2013", "ussen"], [",", ".", ",.", "..\"", "..", ":\"", " \u200b\u200b", "!\""], [",", " \u200b\u200b", ".", "..", "..\"", ",.", ":", "!\""], ["..\"", ",", "..", "!\"", ".", " ..", ":\"", " \u00b7"], ["..\"", "..", ",", ":\"", "!\"", " ..", ",..", "."], [",", "..\"", ".", "..", "!\"", ",.", ":\"", ",.."], [",", "..\"", "..", "\u2013", "!\"", ".", "-\"", ":\""], [",", ".", "..", "<|endoftext|>", "..\"", "\u2013", "&", "!\""], ["..\"", "'s", "..", " showcase", " *", " *@", ",", "!\""], ["'s", "..", " showcase", "..\"", " ..", "-style", " showcased", "-esque"], [",", "'s", "..", "-style", "-esque", " showcase", "..\"", "-\""], ["'s", ",", " showcase", "..", "-style", "-esque", " featured", "!\""], [" showcase", " centerpiece", "-esque", "'s", " savvy", " theater", " showcased", " Showcase"], ["'s", "-esque", " showcase", " tech", " savvy", " centerpiece", " powerhouse", " \""], ["-esque", " showcase", "'s", " tweaks", " toolkit", " pipeline", " tech", " savvy"], ["-esque", " showcase", " tweaks", "'s", " centerpiece", " savvy", " tech", " combo"], ["-esque", " &,", "'s", " showcase", "-style", "-host", " centerpiece", "&"], ["<|endoftext|>", "&", "@", " @", " &,", " #", "\u2013", "'s"], [" *&", "\u4fdd\u9a7e", " pipeline", "-esque", " centerpiece", " toolkit", " gadget", "exus"], [" *&", "-esque", " centerpiece", "\u4fdd\u9a7e", "&apos", " {{--<", " pipeline", "exus"], [" --", " ''", " {{--<", " '", " *&", " &", " \"\"", "&apos"], [" &#", "-esque", " *&", " --", " &,", "&apos", " {{--<", "&#"], [" toolkit", " gadget", " *&", " hacker", " tech", " firmware", "-esque", " malware"], [" toolkit", " *&", " gadget", " __", " hacker", " firmware", " tech", " *@"], [" --", " __", "\n\n", " '", " ''", " _", " ?", " ^"], [" __", " toolkit", " ??", "\n\n", " ..", " tech", " hacker", " \"\""], [" __", " ____", " ...", " ___", " ..", " toolkit", " ......", " ...\""], [" ..", " __", " ...", " ??", " toolkit", " ...\"", " ?", " programs"], [" ...", " __", " ..", " ??", " .", " ____", " ___", " ?"], [" ..", " '", " itself", " ?", " ??", " system", " systems", " tech"], [" tech", " toolkit", " hacker", " malware", " software", " stash", " subsystem", " crap"], [" tech", " hacker", " hardware", " software", " subsystem", " stash", " ecosystem", " crap"], [" \u2014", " \u2026", " itself", " \u2014\u2014", " ...\"", " hacker", " crap", " tech"], [" handlers", " itself", " buggy", " crap", " *", " hacker", " stuff", " handler"], [" itself", " handlers", " buggy", " crap", " interface", " operators", " thread", " handler"], [" itself", " handlers", " thread", " buggy", " hardware", " crap", " interface", " labor"], [" handlers", " thread", " buggy", " unpredictable", " labor", " threads", " agents", " software"], [" thread", " engine", " software", " buggy", " execution", " threads", " handlers", " labor"], [" software", " handlers", " thread", " execution", " interface", " engine", " buggy", " programming"], [" software", " handlers", " interface", " engine", " execution", " buggy", " sandbox", " unsafe"], [" interface", " handlers", " software", " unsafe", " interfaces", " interactions", " execution", " embedded"], [" interface", " handlers", " unpredictable", " software", " unsafe", " embedded", " sandbox", " interactions"], [" interface", " unpredictable", " handlers", " interactions", " software", " unsafe", " interfaces", " embedded"], [" interface", " handlers", " scripts", " workflows", " interfaces", " embedded", " unpredictable", " protocols"], [" interface", " itself", " handlers", " scripts", " interfaces", " protocols", " interactions", " embedded"], [" itself", " interface", " scripts", " interfaces", " handlers", " sabotage", " operators", " frameworks"], [" interface", " itself", " interfaces", " execution", " interactions", " scripts", " interacts", " sabotage"], [" itself", " execution", " sabotage", " interface", " callbacks", " internals", " plugin", " interfaces"], [" execution", " interface", " itself", " internals", " interfaces", " executes", " runtime", "execution"], [" execution", " runtime", " internals", " itself", "execution", " interface", " executes", " sandbox"], [" execution", " executes", " itself", " executor", " executions", "execution", "Execution", " runtime"], [" execution", " runtime", " executes", " executor", " interface", "execution", " plugin", " scheduler"], [" execution", " executes", " executor", "execution", " runtime", " scheduler", " executing", " interpreter"], [" execution", " executor", " executes", " runtime", " sandbox", " interpreter", " scripting", " scheduler"], [" execution", " interpreter", " executes", " runtime", " executor", "execution", " executing", " executions"], [" execution", " interpreter", " runtime", " API", " executes", " executor", "execution", " engine"], [" execution", " interpreter", " runtime", " engine", " executes", " API", " executor", " sandbox"], [" execution", " runtime", " engine", " interpreter", " sandbox", " API", " executes", " executor"], [" execution", " host", " runtime", " engine", " API", " sandbox", " executes", "\u5bbf\u4e3b"], [" execution", " engine", " API", " runtime", " interpreter", " host", " sandbox", " executor"]], "p": [[0.7057, 0.1226, 0.0897, 0.031, 0.0107, 0.0069, 0.0033, 0.0021], [0.1928, 0.1099, 0.097, 0.0911, 0.0588, 0.0245, 0.0179, 0.0179], [0.3646, 0.284, 0.1952, 0.0559, 0.0339, 0.0171, 0.011, 0.0081], [0.0187, 0.0039, 0.0024, 0.0016, 0.0014, 0.0014, 0.0014, 0.0013], [0.5577, 0.1325, 0.0158, 0.014, 0.0131, 0.0096, 0.0085, 0.0085], [0.1952, 0.0814, 0.0436, 0.0117, 0.0071, 0.0067, 0.0063, 0.0059], [0.2051, 0.181, 0.1244, 0.0709, 0.0666, 0.0458, 0.0379, 0.0123], [0.3949, 0.0999, 0.0999, 0.0252, 0.0252, 0.0153, 0.0119, 0.0119], [0.5346, 0.1631, 0.082, 0.0563, 0.0172, 0.0098, 0.0092, 0.0059], [0.9034, 0.0107, 0.0094, 0.0073, 0.0069, 0.0054, 0.0042, 0.0024], [0.768, 0.0917, 0.0433, 0.0085, 0.008, 0.008, 0.008, 0.0052], [0.0555, 0.0336, 0.0149, 0.0149, 0.0124, 0.0116, 0.0109, 0.0109], [0.0508, 0.0349, 0.0212, 0.0212, 0.0106, 0.01, 0.0078, 0.0073], [0.1907, 0.0959, 0.0293, 0.0157, 0.013, 0.0122, 0.0122, 0.0084], [0.1036, 0.0358, 0.018, 0.0109, 0.0103, 0.0066, 0.0062, 0.0046], [0.0527, 0.0206, 0.0182, 0.0142, 0.0092, 0.0086, 0.0086, 0.0071], [0.0624, 0.0403, 0.0277, 0.0096, 0.0075, 0.0058, 0.0051, 0.0048], [0.056, 0.0193, 0.0097, 0.0097, 0.0081, 0.0081, 0.0076, 0.0063], [0.06, 0.0081, 0.0059, 0.0056, 0.0052, 0.0049, 0.0043, 0.0041], [0.0376, 0.0089, 0.0084, 0.0045, 0.0045, 0.0042, 0.0042, 0.0031], [0.1714, 0.015, 0.015, 0.0066, 0.0066, 0.0059, 0.0043, 0.0038], [0.0082, 0.0041, 0.0032, 0.0027, 0.0022, 0.0022, 0.0019, 0.0018], [0.0075, 0.0037, 0.0027, 0.0024, 0.0023, 0.0023, 0.0023, 0.002], [0.0092, 0.0043, 0.0041, 0.003, 0.0028, 0.0028, 0.0023, 0.0022], [0.0111, 0.0104, 0.0086, 0.0086, 0.0049, 0.0034, 0.0034, 0.0034], [0.0184, 0.0163, 0.0099, 0.0072, 0.0068, 0.0064, 0.0056, 0.0034], [0.0129, 0.01, 0.0094, 0.0078, 0.0078, 0.0057, 0.0057, 0.0054], [0.0473, 0.0392, 0.0325, 0.021, 0.0154, 0.012, 0.0093, 0.0077], [0.0468, 0.0302, 0.0172, 0.0172, 0.0143, 0.0134, 0.0111, 0.0111], [0.1944, 0.0715, 0.036, 0.0317, 0.0232, 0.0218, 0.0181, 0.0132], [0.1649, 0.057, 0.0444, 0.0444, 0.0119, 0.0087, 0.0087, 0.0082], [0.1016, 0.1016, 0.0897, 0.0257, 0.0129, 0.0129, 0.0101, 0.0095], [0.0213, 0.0177, 0.0166, 0.0138, 0.0122, 0.0114, 0.0095, 0.0078], [0.021, 0.0128, 0.012, 0.012, 0.0099, 0.0068, 0.0068, 0.0064], [0.0268, 0.0126, 0.0119, 0.0087, 0.0082, 0.0072, 0.0072, 0.0068], [0.0207, 0.0183, 0.0125, 0.0125, 0.0118, 0.0104, 0.0098, 0.0092], [0.0119, 0.0105, 0.0082, 0.0082, 0.0072, 0.0064, 0.006, 0.0056], [0.0189, 0.0115, 0.0095, 0.0089, 0.0089, 0.0065, 0.0058, 0.0054], [0.0114, 0.0108, 0.0108, 0.0108, 0.0095, 0.0095, 0.0079, 0.0079], [0.013, 0.0108, 0.0101, 0.0084, 0.0084, 0.0079, 0.0079, 0.0074], [0.0225, 0.0187, 0.0187, 0.0165, 0.0165, 0.0128, 0.0121, 0.01], [0.07, 0.0242, 0.0213, 0.02, 0.02, 0.0188, 0.0147, 0.0138], [0.0515, 0.0259, 0.0243, 0.0139, 0.0139, 0.0122, 0.0115, 0.0108], [0.0299, 0.0248, 0.016, 0.016, 0.011, 0.0103, 0.0097, 0.0091], [0.0216, 0.0158, 0.0149, 0.0149, 0.0131, 0.0109, 0.0096, 0.0096], [0.0233, 0.0125, 0.0125, 0.0117, 0.011, 0.011, 0.011, 0.0091], [0.0179, 0.0158, 0.0123, 0.0123, 0.0102, 0.0102, 0.0096, 0.009], [0.0184, 0.0152, 0.0143, 0.0143, 0.0111, 0.0092, 0.0092, 0.0077], [0.0598, 0.0171, 0.0161, 0.0151, 0.0133, 0.0118, 0.0098, 0.0086], [0.0296, 0.0217, 0.0204, 0.014, 0.0123, 0.0123, 0.0116, 0.0109], [0.1179, 0.0141, 0.0132, 0.0091, 0.008, 0.0075, 0.0075, 0.0071], [0.2714, 0.0416, 0.0416, 0.0305, 0.0209, 0.0153, 0.0127, 0.0119], [0.5278, 0.0359, 0.0218, 0.015, 0.0132, 0.0117, 0.0117, 0.0103], [0.7487, 0.0479, 0.0176, 0.0155, 0.0114, 0.01, 0.0094, 0.0073], [0.7286, 0.0528, 0.0363, 0.022, 0.0104, 0.0092, 0.0071, 0.0063], [0.8175, 0.0461, 0.0317, 0.0091, 0.008, 0.0055, 0.0049, 0.0049], [0.7255, 0.0464, 0.0248, 0.0151, 0.0151, 0.0133, 0.0117, 0.0117], [0.9072, 0.0188, 0.0188, 0.0129, 0.0114, 0.0048, 0.0025, 0.0022], [0.8389, 0.0473, 0.0369, 0.0136, 0.0106, 0.0082, 0.0057, 0.0057], [0.8927, 0.021, 0.0185, 0.0127, 0.0127, 0.0088, 0.0047, 0.0025], [0.6009, 0.1951, 0.0435, 0.0339, 0.0299, 0.0264, 0.0086, 0.0067], [0.3781, 0.2598, 0.058, 0.0352, 0.0352, 0.0352, 0.0292, 0.02], [0.5834, 0.1014, 0.0895, 0.0479, 0.0176, 0.0165, 0.0155, 0.0155]], "ranks": {"Rust": [56932, 119698, 92089, 123509, 30711, 20950, 43983, 43142, 60255, 54407, 37398, 78192, 97482, 59536, 72431, 55646, 47754, 115772, 137827, 124786, 118697, 148505, 127075, 92464, 94339, 110151, 76332, 36592, 42324, 44543, 18294, 15995, 15861, 20621, 17955, 22525, 9192, 8797, 8843, 17111, 16595, 13385, 19696, 22575, 19442, 16930, 14080, 17736, 15218, 22720, 37091, 35554, 16397, 14216, 10419, 4722, 590, 500, 333, 252, 138, 211, 338]}}, {"pos": 584, "top": [[".", ",", " \u2013", "\u2013", ";", " [\u2026]", "<|endoftext|>", ":"], [" \u2013", "  \n", "\u2013", "  \n\n", "\u00ad", ".", "al", " \u2013,"], ["\u2013", " \u2013", ".", ",", "\u2026..", ".\u2013", "\u2026\u2026", "\u2026."], [" cumshot", " Blowjob", " milfs", " Shemale", " pupper", "HECK", " handjob", " creampie"], ["al", "ally", " (\u201e", " (\u00a7", ".\u2013", " (\u201c", "[...]", "\u2013"], [".\u2013", "\u2026..", "-log", "  \n", "   \n", " uninitialized", "culos", "zug"], ["  \n", "  \n\n", ".**", "...\"", "...**", "$\"", " **\u201c", ":**"], [" **\u00ab", "  \n", "...**", "  \n\n", " firearm", " **\u201e", " (**", " **\u201c"], ["  \n\n", "...**", "...\\", "  \n", "   \n\n", " [...]", "  \n\n\n", "  \n    \n"], ["...\\", "\\.", "\\xe", "\u00adtion", "\\xc", "$\"", "  \n", "  \r\n"], ["...\\", " [...]", "  \n", "\\.", "...**", "  \n\n", "\\n", "...\""], [" **\u00ab", " **\u201c", " (**", "...**", " **", " **\"", " **\u201e", " runtime"], [" **\u00ab", " runtime", " **\u201e", " firearm", " (**", " impactful", " timeframe", "...**"], [" runtime", " timeframe", " firearm", " impactful", "al", " transformative", " lifecycle", " entirety"], [" timeframe", " runtime", " firearm", " impactful", " trajectory", " entirety", " transformative", " scenario"], [" impactful", " runtime", " timeframe", " entirety", " pathway", " firearm", " trajectory", " utilization"], [" runtime", " timeframe", " entirety", " impactful", "al", " pathway", " trajectory", " lifecycle"], [" runtime", " timeframe", " impactful", "**\u2013", " traversal", " entirety", " firearm", " maneu"], [" runtime", " timeframe", " impactful", " maneu", "**\u2013", " frameworks", " entirety", " firearm"], [" runtime", " timeframe", " entirety", " impactful", "**\u2013", " maneu", " pathway", " lifecycle"], ["  \n\n", "   \n\n", " \n\n", " swiftly", "al", " myriad", "\\-", "\\xe"], [" runtime", " maneu", " timeframe", " Geile", " **\u00ab", " impactful", "szak", " knull"], [" runtime", " timeframe", " maneu", " pathway", " entirety", " impactful", " )**", " timeline"], [" runtime", " rapidly", " execution", " process", " swiftly", " entirety", " processes", " impact"], ["  \n\n", " \n\n", " rapidly", " runtime", " swiftly", "   \n\n", " entirety", " process"], [" runtime", " execution", " processes", " process", " rapidly", " bytecode", " impact", " time"], [" runtime", " execution", " process", " processes", " time", " rapidly", " programming", " events"], [" rapidly", " time", " runtime", " process", " execution", " \n\n", " complex", " impact"], [" runtime", " process", " processes", " execution", " [...]", "  \n\n", " \n\n", " time"], [" runtime", " [...]", " ...\\", " processes", " process", " **", " workflows", " workflow"], [" runtime", " process", " **", " processes", " time", " execution", " program", " performance"], [" runtime", " process", " **", " time", " processes", " complex", " system", " program"], [" rapidly", " time", " power", " complex", " process", " runtime", " system", " hours"], [" runtime", " algorithm", " workflow", " engine", " workflows", " rapidly", " processes", " unpredictable"], [" runtime", " algorithm", " algorithms", " latency", " engine", " workflow", " processor", " mechanisms"], [" runtime", " time", " latency", " processor", " CPU", " algorithm", " engine", " rapidly"], [" runtime", " latency", " time", " engine", " processor", " execution", " unpredictable", " bottleneck"], [" runtime", " latency", " time", " processor", " execution", " engine", " unpredictable", " CPU"], [" runtime", " execution", " time", " unpredictable", " bottleneck", " latency", " synchronous", " engine"], [" execution", " unpredictable", " runtime", " time", " synchronous", " CPU", " latency", " blocking"], [" execution", " runtime", " bottleneck", " blocking", " thread", " synchronous", " CPU", " time"], [" execution", " runtime", " thread", " synchronous", " CPU", " asynchronous", " blocking", " bottleneck"], [" execution", " blocking", " synchronous", " bottleneck", " asynchronous", " runtime", " interruption", " CPU"], [" blocking", " execution", " synchronous", " block", " bottleneck", " interruption", " processes", " synchronized"], [" blocking", " bottleneck", " execution", " block", " synchronous", " interruption", " unpredictable", " processes"], [" blocking", " interruption", " block", " bottleneck", " blocks", " interruptions", " interrupt", " execution"], [" bottleneck", " interruption", " blocking", " interruptions", " block", " blocks", " unpredictable", " execution"], [" inherently", " bottleneck", " block", " blocking", " execution", " unpredictable", " interruption", " interruptions"], [" inherently", " bottleneck", " interruptions", " itself", " block", " blocks", " disrupt", " unpredictable"], [" bottleneck", " interruptions", " disrupt", " interrupts", " blocking", " interruption", " inherently", " itself"], [" itself", " bottleneck", "\u672c\u8eab\u5c31\u662f", " synced", "\u672c\u8eab", " violates", " disrupt", " interrupts"], [" itself", " bottleneck", "\u963b\u585e", " synced", " blocking", " synchronous", " disrupt", " interrupts"], ["\u963b\u585e", " blocking", " bottleneck", "-blocking", " synchronous", " interrupts", " disrupt", "blocking"], [" blocking", " itself", "\u963b\u585e", "-blocking", " bottleneck", " thread", "blocking", " synchronous"], [" thread", "\u963b\u585e", " blocking", " threads", "-blocking", "\u7ebf\u7a0b", "-thread", " bottleneck"], [" blocking", "\u963b\u585e", "Blocking", "blocking", "-blocking", " Blocking", " thread", " blocker"], [" blocking", "\u963b\u585e", "Blocking", "blocking", " Blocking", "-blocking", " thread", " blocker"], [" blocking", "\u963b\u585e", "Blocking", "blocking", "-blocking", " Blocking", " isn", " thread"], [" blocking", "blocking", "Blocking", "\u963b\u585e", " Blocking", " blocks", "-blocking", " blocked"], [" blocking", "Blocking", "blocking", " blocks", "\u963b\u585e", " Blocking", "-blocking", " blocked"], [" blocking", " blocks", "\u963b\u585e", " block", "Blocking", " Blocking", " isn", "blocking"], [" blocks", " blocking", " isn", " block", " locks", "\u963b\u585e", " blocked", " context"], [" blocks", " isn", " model", " locks", " block", " context", " synchron", " is"]], "p": [[0.6002, 0.2208, 0.1043, 0.0558, 0.0067, 0.0038, 0.0013, 0.0008], [0.805, 0.0621, 0.0515, 0.0312, 0.0035, 0.0031, 0.0029, 0.0027], [0.3923, 0.3462, 0.1853, 0.0172, 0.0152, 0.0152, 0.0041, 0.0041], [0.0175, 0.0175, 0.0064, 0.0064, 0.0035, 0.0032, 0.003, 0.0029], [0.0131, 0.0102, 0.0102, 0.0096, 0.0096, 0.008, 0.007, 0.007], [0.0053, 0.0044, 0.003, 0.0022, 0.0021, 0.0021, 0.0021, 0.0019], [0.0328, 0.0308, 0.0155, 0.0121, 0.0106, 0.01, 0.0069, 0.0069], [0.0151, 0.0125, 0.0092, 0.0086, 0.0081, 0.0071, 0.0067, 0.0056], [0.1851, 0.0267, 0.0221, 0.0172, 0.0104, 0.0098, 0.0098, 0.0087], [0.0274, 0.0258, 0.0107, 0.0101, 0.0084, 0.0079, 0.0061, 0.0051], [0.088, 0.0605, 0.0391, 0.0223, 0.0209, 0.0163, 0.0144, 0.0135], [0.0836, 0.0155, 0.0155, 0.0137, 0.0113, 0.0106, 0.0083, 0.0078], [0.0673, 0.017, 0.0086, 0.0067, 0.0067, 0.0063, 0.0059, 0.0049], [0.0182, 0.0118, 0.0076, 0.0071, 0.0049, 0.0046, 0.0041, 0.0036], [0.0148, 0.009, 0.0074, 0.007, 0.0066, 0.0058, 0.0048, 0.0045], [0.0178, 0.0167, 0.0157, 0.0148, 0.0054, 0.0048, 0.0048, 0.0042], [0.0215, 0.0178, 0.0178, 0.013, 0.0065, 0.0054, 0.0048, 0.0048], [0.016, 0.0133, 0.0086, 0.0081, 0.0038, 0.0036, 0.0028, 0.0028], [0.0192, 0.011, 0.0071, 0.0059, 0.004, 0.0028, 0.0028, 0.0026], [0.0209, 0.0119, 0.0068, 0.0064, 0.003, 0.003, 0.0028, 0.0021], [0.4459, 0.0105, 0.0105, 0.0064, 0.0047, 0.0041, 0.0041, 0.0028], [0.0192, 0.0071, 0.004, 0.0028, 0.0024, 0.0023, 0.002, 0.0018], [0.0223, 0.0064, 0.005, 0.0041, 0.0036, 0.0034, 0.003, 0.002], [0.0212, 0.0065, 0.005, 0.0045, 0.0029, 0.0027, 0.0027, 0.0027], [0.0802, 0.0203, 0.0131, 0.0123, 0.0102, 0.009, 0.0045, 0.0042], [0.1076, 0.01, 0.01, 0.0078, 0.0047, 0.0047, 0.0042, 0.0039], [0.14, 0.0202, 0.0108, 0.0101, 0.0074, 0.0054, 0.0054, 0.0054], [0.0219, 0.016, 0.015, 0.0141, 0.0117, 0.0103, 0.008, 0.0071], [0.107, 0.0164, 0.0145, 0.0136, 0.012, 0.0113, 0.0082, 0.0073], [0.0985, 0.0151, 0.0142, 0.0118, 0.0118, 0.0104, 0.0098, 0.0092], [0.0403, 0.0203, 0.0179, 0.0158, 0.0139, 0.0108, 0.0108, 0.0102], [0.0202, 0.019, 0.019, 0.0157, 0.0122, 0.0101, 0.0095, 0.0095], [0.0198, 0.0186, 0.0174, 0.0154, 0.0113, 0.0106, 0.0077, 0.0077], [0.0394, 0.0073, 0.0069, 0.0057, 0.0057, 0.0057, 0.0053, 0.005], [0.0351, 0.0094, 0.0061, 0.0057, 0.0054, 0.0054, 0.0051, 0.0051], [0.0548, 0.0167, 0.0122, 0.0115, 0.0108, 0.0095, 0.0089, 0.0079], [0.0604, 0.0222, 0.0112, 0.0093, 0.0087, 0.0087, 0.0082, 0.0072], [0.05, 0.0153, 0.0153, 0.0119, 0.0112, 0.0098, 0.0077, 0.0068], [0.0502, 0.0252, 0.0127, 0.0127, 0.0112, 0.0105, 0.0099, 0.0087], [0.0579, 0.0351, 0.031, 0.0166, 0.0146, 0.0114, 0.0101, 0.0094], [0.0722, 0.0438, 0.022, 0.022, 0.0207, 0.0207, 0.0182, 0.0171], [0.1097, 0.0487, 0.0404, 0.0295, 0.0245, 0.023, 0.0203, 0.0191], [0.0477, 0.0448, 0.0421, 0.0289, 0.024, 0.0225, 0.0199, 0.0187], [0.0621, 0.0427, 0.0333, 0.0243, 0.0215, 0.0189, 0.0189, 0.0157], [0.0446, 0.0419, 0.037, 0.0254, 0.0254, 0.0198, 0.0198, 0.0145], [0.0584, 0.0454, 0.0377, 0.0354, 0.0259, 0.0243, 0.0215, 0.0202], [0.0467, 0.0341, 0.0321, 0.0266, 0.025, 0.0207, 0.0195, 0.0172], [0.0501, 0.0344, 0.0268, 0.0237, 0.0196, 0.0184, 0.0184, 0.0173], [0.049, 0.0433, 0.0232, 0.0204, 0.0192, 0.018, 0.018, 0.0159], [0.1773, 0.0421, 0.0272, 0.0272, 0.0255, 0.024, 0.024, 0.0176], [0.1257, 0.0632, 0.0383, 0.0263, 0.0263, 0.015, 0.0141, 0.0132], [0.1114, 0.0676, 0.0596, 0.041, 0.0362, 0.034, 0.0282, 0.0265], [0.1654, 0.1654, 0.0781, 0.0571, 0.0571, 0.0347, 0.0238, 0.021], [0.19, 0.1677, 0.148, 0.0544, 0.048, 0.0424, 0.0213, 0.0177], [0.296, 0.1795, 0.1234, 0.0848, 0.0354, 0.0243, 0.0243, 0.0243], [0.5161, 0.2763, 0.0616, 0.048, 0.0374, 0.0257, 0.0107, 0.0035], [0.5212, 0.2462, 0.0799, 0.0705, 0.0259, 0.0229, 0.0084, 0.004], [0.5556, 0.124, 0.1094, 0.0966, 0.0277, 0.0277, 0.0148, 0.0115], [0.8727, 0.0383, 0.0299, 0.0205, 0.016, 0.0076, 0.0067, 0.0028], [0.9064, 0.0188, 0.0188, 0.0166, 0.0129, 0.0129, 0.0042, 0.0033], [0.8091, 0.0966, 0.0168, 0.0168, 0.0115, 0.009, 0.0079, 0.0079], [0.8884, 0.0501, 0.0268, 0.0112, 0.0015, 0.0014, 0.0014, 0.0011], [0.9765, 0.0058, 0.0031, 0.0024, 0.0019, 0.0011, 0.0005, 0.0004]], "ranks": {"Rust": [47861, 133125, 126087, 61653, 50547, 40116, 21347, 27126, 20694, 15522, 36023, 59926, 52711, 54940, 68817, 55933, 63275, 51491, 87490, 74231, 112445, 78620, 90300, 133848, 98378, 124137, 102853, 39847, 56334, 53654, 23072, 23606, 18601, 23765, 26854, 28268, 12581, 11793, 15599, 30854, 27069, 22355, 30664, 27934, 19892, 15941, 17306, 22511, 13529, 18654, 25214, 23103, 11918, 15258, 14087, 9247, 1233, 880, 610, 390, 315, 580, 588]}}, {"pos": 585, "top": [[".", ",", " ", "\u2013", " \u2013", "-", ";", "\u00a0\u00a0"], ["  \n", "  \n\n", "   \n", "  \n  \n", "   \n\n", "  ", "\u2013", " \u2013"], ["\u2013", "\u2026", ",", "\u2013and", ".", "\u2026..", " \u2013", "  \n\n"], ["\u52a0\u62ff\u5927", " Strec", " Guta", " Palav", " fkk", "\u65b0\u52a0\u5761", " Ejem", " Geile"], ["  \n\n", "   \n", " \n\n", "  ", "  \n", "   \n\n", "&", " "], ["   \n", "  \n\n", "  \n", "   \n\n", "  ", " \n\n", "  \n\n\n", " \n"], ["  \n\n", "  \n", "   \n", " \n\n", "   \n\n", " \n", "  \n\n\n", " \n\n\n"], ["  \n\n", "   \n", "   \n\n", "  \n", " \n\n", "  \n\n\n", " \n\n\n", " \n"], ["  \n\n", " \n\n", "   \n\n", "  \n\n\n", "   \n", "  \n", " \n\n\n", "    \n\n"], ["  \n", "  \n\n", "   \n", "\\_", " \n  \n", "   \n\n", "  \n\n\n", "  \r\n"], ["  \n", "  \n\n", "   \n", " \n", " \n\n", "  \n\n\n", "  \n  \n", "   \n\n"], ["  \n\n", "  \n", "   \n", "   \n\n", " &_", "  \n\n\n", " _$", "  \r\n"], ["  \n", "   \n", "\u52a0\u62ff\u5927", "  \n\n", "  \r\n", " &_", " \n        \n", "   \n\n"], ["\u52a0\u62ff\u5927", "  \r\n", "  \n", "   \n", "\u6bdb\u6cfd\u4e1c\u601d\u60f3", "eck", "\u52c7\u5f80\u76f4\u524d", "  \n\n"], ["  \n\n", "  \n", " ", "  ", "   \n", "\u2014or", "   \n\n", " via"], ["  \n\n", " ", "eck", "  ", " via", " off", "   \n\n", "  \n"], [" via", "eck", " ", " off", " potentially", " entirety", "  ", " hefty"], ["eck", "\u2014or", " via", " entirety", "\u6bdb\u6cfd\u4e1c\u601d\u60f3", " preempt", "\\Block", " hefty"], ["\u2014or", "\u2014even", "\\Block", "\u2014and", "eck", "xdb", " undermin", "wski"], ["\u2014or", "\u2014and", "\u2014even", "\\Block", "eck", " --", "-&", " Kontaktd"], ["  \n\n", " \n\n", "   \n\n", "  \r\n\r\n", " \r\n\r\n", "\u2014or", " --", "\u2014and"], [" **\u25a0", " MEDIAM", " Kontaktd", "wski", "dbuf", " MEDIATEK", " ;;^", " Strec"], [" **\u25a0", " *__", " MEDIAM", " MEDIATEK", " ;;^", "wski", "\u0105tek", " Kontaktd"], [" --", " {{--<", " Kontaktd", " &$", " .**", "\\Block", " preempt", " undermin"], [" \n\n", "  \n\n", "   \n\n", " --", " \r\n\r\n", "  \r\n\r\n", "\u2014or", " {{--<"], [" *__", " *\\", " **\u25a0", " **", "  \n\n", " \r\n\r\n", " **\u2014", " .**"], [" --", " __", " _", " ___", " *__", " \n\n", " **", "_\\"], [" --", " \n\n", " __", " _", "  \n\n", " ___", " \r\n\r\n", " \\"], [" \n\n", "  \n\n", " --", " .**", "   \n\n", " \r\n\r\n", " __", " uncomfort"], [" .**", " __", " barric", " --", " \n  \n", " ___", " **", " uncomfort"], [" .**", " \n\n", "  \n\n", " \n  \n", " \n", " .*", " barric", " blocking"], [" .**", " .*", " \n\n", " .", "  \n\n", "\u2014or", " **", " \n  \n"], [" .**", " .*", "\u2014or", "\u2014even", "\u3002**", ".**", ".*", " **."], [" .**", "\u2014even", "\u2014or", " bottleneck", "\u6b7b\u6b7b", " )**", " **.", " .*"], [" .**", "\u2014or", "\u2014even", " .*", " )**", " bottleneck", " blocking", "\u3002**"], [" .**", " .*", "\u2014or", "\u2014even", " blocking", " bottleneck", " **\u2014", "\u3002**"], [" .**", "\u2014or", " blocking", "\u2014even", " bottleneck", "\u963b\u585e", " blockers", " **\u2014"], [" .**", "\u2014or", " blocking", " bottleneck", "\u963b\u585e", "\u2014even", " blockers", "-blocking"], [" blocking", "\u963b\u585e", "-blocking", " bottleneck", " blockers", " blocker", "blocking", "\u2014or"], ["\u963b\u585e", " blocking", "-blocking", "blocking", " blocker", " bottleneck", " blockers", " interrupt"], ["\u963b\u585e", " blocking", "-blocking", "blocking", " blocker", " bottleneck", " Blocking", " blockers"], [" blocking", "\u963b\u585e", "-blocking", "blocking", " threads", " blocker", " Blocking", " thread"], [" blocking", "-blocking", "\u963b\u585e", "blocking", " Blocking", " blocker", " blockers", " bottleneck"], ["\u963b\u585e", " blocking", "-blocking", "blocking", " Blocking", " blocker", " blockers", " bottleneck"], [" blocking", "-blocking", "\u963b\u585e", "blocking", " blocker", " bottleneck", " Blocking", " blockers"], [" blocking", "-blocking", "\u963b\u585e", "blocking", " blocker", " Blocking", " bottleneck", " interrupts"], [" blocking", "-blocking", "\u963b\u585e", "blocking", " bottleneck", " blocker", " Blocking", " interrupts"], ["-blocking", "\u963b\u585e", " blocking", "blocking", " blocker", " bottleneck", "/block", " blockers"], ["-blocking", "\u963b\u585e", "blocking", " blocking", " blocker", "/block", " bottleneck", "\u6216\u56e0"], ["\u963b\u585e", "-blocking", " bottleneck", "/block", "blocking", " blocker", "\u6216\u56e0", "threads"], ["/block", "\u963b\u585e", "threads", "-blocking", "\u7ebf\u7a0b", "THREAD", "blocking", " bottleneck"], ["\u7ebf\u7a0b", "THREAD", "-thread", " CPU", "threads", " GPU", "-sync", "_threads"], [" CPU", " GPU", "-thread", "\u7ebf\u7a0b", "-sync", "THREAD", " synchronization", " Mutex"], ["-thread", "\u7ebf\u7a0b", " GPU", " threads", " thread", " CPU", " Thread", " Threads"], [" thread", "-thread", "\u7ebf\u7a0b", " threads", " Thread", " Threads", "thread", "Thread"], ["-thread", " thread", "\u7ebf\u7a0b", " threads", "thread", " Threads", " Thread", " GPU"], [" thread", "-thread", "\u7ebf\u7a0b", "thread", " threads", "\u6e32\u67d3", " renderer", " GPU"], [" thread", " GPU", "-thread", "\u6e32\u67d3", " UI", " renderer", " rendering", "thread"], [" thread", "-thread", " GPU", " threads", "\u7ebf\u7a0b", "thread", " renderer", " Thread"], [" thread", " renderer", " rendering", " GPU", "\u6e32\u67d3", " UI", "-thread", " render"], [" UI", " GPU", " thread", " rendering", " renderer", " compositor", " OpenGL", " Vulkan"], [" UI", " the", " rendering", " compositor", " GPU", " thread", " OpenGL", "positor"], [" the", " UI", " rendering", " compositor", " GPU", "positor", " thread", " OpenGL"]], "p": [[0.8011, 0.1392, 0.0201, 0.0048, 0.0045, 0.0042, 0.0033, 0.0025], [0.4187, 0.3261, 0.154, 0.0285, 0.0196, 0.0173, 0.0056, 0.0053], [0.8156, 0.046, 0.0406, 0.0246, 0.0091, 0.0085, 0.008, 0.0071], [0.0436, 0.0151, 0.011, 0.0086, 0.0059, 0.0055, 0.0049, 0.0043], [0.2181, 0.1243, 0.0802, 0.0802, 0.0334, 0.0277, 0.023, 0.0158], [0.3334, 0.139, 0.0744, 0.0257, 0.0227, 0.02, 0.0156, 0.0121], [0.6496, 0.1643, 0.0776, 0.0533, 0.0222, 0.0072, 0.0053, 0.0023], [0.4015, 0.2435, 0.1477, 0.0791, 0.0616, 0.02, 0.0057, 0.0057], [0.6903, 0.1745, 0.0728, 0.0184, 0.0126, 0.0126, 0.0087, 0.0022], [0.2472, 0.1596, 0.091, 0.0335, 0.0277, 0.0203, 0.0203, 0.0179], [0.4691, 0.414, 0.0319, 0.0104, 0.0097, 0.0059, 0.0059, 0.0052], [0.181, 0.141, 0.0969, 0.0335, 0.0315, 0.0261, 0.0168, 0.0168], [0.0889, 0.042, 0.0289, 0.0164, 0.0154, 0.0145, 0.0053, 0.0044], [0.026, 0.0079, 0.0074, 0.0066, 0.0045, 0.0045, 0.0042, 0.0033], [0.0499, 0.0414, 0.0208, 0.0143, 0.0068, 0.0049, 0.0049, 0.0041], [0.0169, 0.014, 0.0066, 0.0062, 0.0062, 0.0055, 0.0035, 0.0033], [0.014, 0.0085, 0.0055, 0.0048, 0.0043, 0.004, 0.0031, 0.0029], [0.0083, 0.0024, 0.0022, 0.0021, 0.002, 0.0019, 0.0016, 0.0016], [0.0125, 0.0046, 0.0046, 0.0041, 0.003, 0.0026, 0.0026, 0.0025], [0.0301, 0.0142, 0.0111, 0.0052, 0.0036, 0.0034, 0.0028, 0.0022], [0.2545, 0.088, 0.0367, 0.0068, 0.006, 0.0053, 0.0044, 0.0034], [0.0057, 0.0048, 0.0045, 0.0037, 0.0033, 0.0027, 0.0024, 0.0022], [0.0096, 0.0058, 0.0048, 0.0043, 0.0035, 0.0035, 0.0035, 0.0031], [0.0265, 0.0034, 0.003, 0.0025, 0.0022, 0.0022, 0.0019, 0.0019], [0.1027, 0.0965, 0.0244, 0.0229, 0.0215, 0.0108, 0.0066, 0.004], [0.0361, 0.0205, 0.0141, 0.011, 0.0091, 0.0091, 0.008, 0.0067], [0.0346, 0.0253, 0.0174, 0.0154, 0.0136, 0.0112, 0.0112, 0.0088], [0.1574, 0.1151, 0.0424, 0.0398, 0.0374, 0.0213, 0.0107, 0.0107], [0.0619, 0.0353, 0.0189, 0.0138, 0.0095, 0.0084, 0.0079, 0.0065], [0.0573, 0.012, 0.0113, 0.01, 0.0083, 0.0068, 0.0057, 0.005], [0.1162, 0.0259, 0.0139, 0.013, 0.0102, 0.0084, 0.0079, 0.0066], [0.2457, 0.0202, 0.0157, 0.0115, 0.0108, 0.0062, 0.0062, 0.0054], [0.2601, 0.0227, 0.0156, 0.0122, 0.0101, 0.0051, 0.0039, 0.0039], [0.0904, 0.0215, 0.0148, 0.0058, 0.0051, 0.0035, 0.0031, 0.0029], [0.3463, 0.0221, 0.0098, 0.0068, 0.0063, 0.0056, 0.0053, 0.0049], [0.5102, 0.0239, 0.0224, 0.0077, 0.0073, 0.0053, 0.0041, 0.0041], [0.1602, 0.0913, 0.0231, 0.0159, 0.0124, 0.0116, 0.0109, 0.0096], [0.0999, 0.0731, 0.0345, 0.0197, 0.0153, 0.0119, 0.0112, 0.0077], [0.2194, 0.0758, 0.0358, 0.0316, 0.0262, 0.0262, 0.0217, 0.0149], [0.3404, 0.234, 0.0522, 0.0461, 0.018, 0.0169, 0.0132, 0.0049], [0.3883, 0.2669, 0.0765, 0.0526, 0.0171, 0.0117, 0.0091, 0.0091], [0.3039, 0.2089, 0.1436, 0.0496, 0.022, 0.0151, 0.0151, 0.0151], [0.3609, 0.1932, 0.1705, 0.0553, 0.0204, 0.018, 0.0116, 0.0109], [0.2938, 0.2938, 0.1573, 0.0579, 0.0227, 0.02, 0.0101, 0.0078], [0.348, 0.1451, 0.128, 0.0605, 0.0286, 0.0237, 0.0184, 0.0135], [0.2947, 0.1787, 0.1577, 0.0481, 0.0257, 0.0201, 0.0147, 0.0101], [0.2569, 0.1765, 0.1375, 0.0446, 0.0348, 0.0327, 0.0154, 0.0094], [0.1617, 0.134, 0.1259, 0.0559, 0.0384, 0.0248, 0.0181, 0.0133], [0.0659, 0.0547, 0.0311, 0.0258, 0.0214, 0.0167, 0.0157, 0.0101], [0.0336, 0.0315, 0.0149, 0.0123, 0.0116, 0.0109, 0.0096, 0.0085], [0.0237, 0.0237, 0.0135, 0.0127, 0.0105, 0.0099, 0.0068, 0.006], [0.0274, 0.0188, 0.0177, 0.0156, 0.0156, 0.0107, 0.0095, 0.0095], [0.0801, 0.0664, 0.0295, 0.0203, 0.0158, 0.0123, 0.0096, 0.009], [0.1727, 0.0766, 0.072, 0.0495, 0.0495, 0.0362, 0.0319, 0.0282], [0.3583, 0.1918, 0.1494, 0.1027, 0.0485, 0.0333, 0.0294, 0.0157], [0.2924, 0.2581, 0.1381, 0.0739, 0.0308, 0.024, 0.024, 0.0146], [0.3636, 0.1718, 0.0919, 0.0632, 0.0492, 0.0205, 0.0181, 0.0181], [0.1377, 0.1072, 0.0946, 0.0835, 0.0835, 0.0737, 0.065, 0.0348], [0.4078, 0.091, 0.0625, 0.0625, 0.0487, 0.0487, 0.043, 0.0261], [0.1378, 0.1073, 0.1008, 0.0651, 0.0611, 0.0507, 0.0371, 0.0307], [0.2887, 0.0881, 0.0686, 0.0391, 0.0391, 0.0367, 0.0237, 0.0173], [0.1943, 0.1179, 0.0715, 0.0631, 0.0557, 0.0383, 0.0383, 0.0338], [0.922, 0.0204, 0.0052, 0.004, 0.0035, 0.0028, 0.0028, 0.0026]], "ranks": {"Rust": [40753, 81837, 65188, 47116, 17235, 20666, 33682, 21554, 14598, 16205, 23008, 17204, 6498, 5145, 17033, 7957, 18267, 36777, 43326, 25832, 57551, 26636, 25476, 45723, 36237, 32475, 37621, 19924, 18654, 28130, 15440, 20224, 23426, 42340, 25074, 13460, 3973, 3580, 8096, 4383, 1964, 2668, 3904, 4125, 5905, 6329, 7737, 7850, 15540, 21823, 40126, 17409, 471, 749, 1395, 291, 11, 32, 144, 175, 52, 80, 88]}}, {"pos": 586, "top": [[",", ".", "\u2013", ";", " \u2013", "\u00a0", "\u00a0\u00a0", " "], ["\u2013", ",", " \u2013", ".", "\u2013and", " ", "\u2011", ";"], [",", ".", "\u2013", "\u2026", "\u2026.", " \u2013", "\u2026..", ";"], [" milfs", " Blowjob", " Shemale", " Guta", "-------------</", "aruhi", "----------</", " pupper"], [".", ".@", " ", " \u201c.", " \u201c", ",", "  ", " CIF"], [" \u200b\u200b", " \u201c.", ".cast", "\u2026..", "\u2026.", ".", "fst", "\u2019."], ["  \n", "   \n", "  \n\n", ".\u2019", "  \r\n", "      \n", "\u2019.", "     \n"], ["   \n", "   \n\n", "  \n", "  \n\n", "     \n", "  \r\n", " _.", "      \n"], ["  \n\n", ".", "   \n\n", "  \n", "   \n", " \n\n", "  \n\n\n", "    \n\n"], [",", "\u2013", "  \n", ".", " \u00ad", "\u2013and", "\u52c7\u5f80\u76f4\u524d", ".\u2013"], [".", ",", " ", "  \n", "-", "o", "\u2013", "er"], ["bies", " ***", " meds", "er", " **", "\u52c7\u5f80\u76f4\u524d", "\u4e94\u989c\u516d\u8272\u7684", " vibe"], [" vibe", "ewire", "-ish", "er", " meds", "bies", " vibes", " freaking"], [" vibe", "\u52c7\u5f80\u76f4\u524d", "-ish", " freaking", " scary", " booze", "bies", " kids"], [" vibe", " scary", "o", " kids", " ", " tricks", " guys", "i"], [" kids", " big", " scary", " guys", " tricks", "o", " bigger", " stuff"], ["o", "i", "e", " big", "s", "d", "t", "n"], [" kids", " scary", "kids", "\u52c7\u5f80\u76f4\u524d", " savvy", " big", "-big", "-down"], [" scary", "\u52c7\u5f80\u76f4\u524d", "\u2014even", "\u592a\u4e45", "\u2014or", "\u54ea\u6015\u662f", " booze", "-esque"], ["\u2014even", "\u2014or", "\u54ea\u6015\u662f", "\u2014and", " uncomfort", "\u592a\u4e45", "\u751a\u81f3\u662f", "oire"], ["\u2014even", "\u2014or", " uncomfort", "ahead", " myriad", "\u592a\u4e45", "\u2014and", " wildly"], [" ;;^", "\u65f6\u6377", "\u6216\u4ee5\u5176\u4ed6\u65b9\u5f0f", "\u751a\u81f3\u4f1a", "ewire", "uzzer", "\u592a\u4e45", "\u5927\u4f5c\u6218"], [" ;;^", "uzzer", "\u751a\u81f3\u4f1a", "ewire", " \u0627\u0631\u0627\u0626", " MEDIAM", "\u4e2a\u4eba\u9875", "\u5927\u4f5c\u6218"], [" --", "\ufffd\ufffd", "eriop", " uncomfort", "\ufffd\ufffd", "\u592a\u4e45", "t\u00e9ri", "nheim"], [" --", "\u2014or", "\u2014even", "\ufffd\ufffd", " uncomfort", " {{--<", "\u5373\u4fbf", "\ufffd\ufffd"], ["\u54ea\u6015\u662f", " MEDIATEK", " ;;^", " MEDIAM", " --", "\u54ea\u6015", "\u592a\u4e45", "\u2014even"], [" --", " uncomfort", " shutdown", "\u6301\u4e4b\u4ee5", " shutter", " even", " ;;^", "\u592a\u4e45"], [" --", " even", " ultimately", " eventually", " much", " \n\n", " ,", "--"], [" --", " uncomfort", "\u2014or", "\u2014even", " even", " windows", " ultimately", " \n\n"], [" even", " --", "\u2014or", "\u2014even", " uncomfort", " windows", " \n  \n", " shutter"], [" even", " .", " future", " hours", " time", " \n", " \n  \n", " traffic"], [" even", " .", " --", " ...", " critical", " future", " .**", " ultimately"], [" even", "\u2014even", " .", "\u2014or", " .\"", " critical", " --", " ultimately"], ["\u2014even", "\u2014or", " .**", " critical", "\u2014and", "\u2014but", " \u2014", " tech"], [" .**", "\u2014or", "\u2014even", "\u2014\u2014", " \u2014", " .\"", ".**", "\u2014and"], [" .**", "\u2014or", "\u2014\u2014", " \u2014", "\u2014even", " \u2014\u2014", " .\"", " \u3002"], ["\u2014or", " .**", " hardware", " sync", " \u2014", "\u2014even", "\u2014\u2014", "\u540c\u6b65"], ["\u2014or", " sync", " hardware", " synchronous", "\u540c\u6b65", " synchronized", " synchronization", " Sync"], [" synchronous", " sync", " synchronization", " hardware", " synchronized", " UI", "\u2014or", " frame"], [" sync", " synchronization", " synchronized", " animation", " frame", " synchronous", " visuals", "\u540c\u6b65"], [" animation", " sync", " GPU", " framerate", " graphics", " Animation", " synchronization", " synchronous"], [" animation", " frame", " sync", " graphics", " framerate", "\u5e27", " GPU", " hardware"], [" animation", " sync", " synchronization", " graphics", " Sync", " hardware", " frame", " framerate"], [" animation", " graphics", " sync", " hardware", " framerate", " synchronization", " Animation", " visuals"], [" synchronization", " sync", " animation", " framerate", " hardware", " Sync", " frame", " interface"], [" sync", " synchronization", " Sync", " framerate", " hardware", " syncing", " animation", " interface"], [" synchronization", " framerate", " sync", "-sync", " Sync", " syncing", " interface", " hardware"], [" synchronization", " sync", " Sync", "-sync", " syncing", " framerate", " SYNC", " synced"], [" framerate", "-sync", " synchronization", "AnimationFrame", " SYNC", " syncing", "/UI", " sync"], [" framerate", "-sync", "/UI", " synchronization", "AnimationFrame", " SYNC", " syncing", " synced"], ["-sync", "AnimationFrame", " framerate", "/UI", " synchronization", " SYNC", " synced", " GPU"], [" GPU", "AnimationFrame", "/UI", "-sync", " synchronization", " framerate", " CPU", " viewport"], [" GPU", "/UI", "AnimationFrame", " CPU", " framerate", "-sync", " Vulkan", " synchronization"], [" GPU", "/UI", " UI", "-thread", " thread", " renderer", "AnimationFrame", " synchronization"], [" thread", "-thread", "\u7ebf\u7a0b", " threads", "MainThread", " Thread", " loop", "thread"], [" renderer", " thread", " GPU", "/UI", "-thread", " UI", "/render", "/renderer"], [" renderer", " Renderer", " thread", " GPU", " rendering", "renderer", " UI", "\u6e32\u67d3"], [" renderer", " rendering", " render", "\u6e32\u67d3", " GPU", " UI", " Renderer", "/render"], [" renderer", " GPU", " rendering", " render", " Renderer", "\u6e32\u67d3", "renderer", " thread"], [" renderer", " render", " rendering", " Renderer", "\u6e32\u67d3", " GPU", "-render", " compositor"], [" renderer", " UI", " compositor", " rendering", " GPU", " render", " raster", " Renderer"], [" renderer", " compositor", " UI", " rendering", " render", " GPU", " raster", " shader"], [" renderer", " UI", " render", " compositor", " rendering", " GPU", " raster", " thread"]], "p": [[0.5598, 0.436, 0.0014, 0.001, 0.0005, 0.0004, 0.0002, 0.0002], [0.1088, 0.0426, 0.04, 0.0178, 0.0101, 0.0048, 0.0035, 0.0035], [0.5123, 0.242, 0.2136, 0.0155, 0.0057, 0.0044, 0.0027, 0.0011], [0.0139, 0.0058, 0.0054, 0.004, 0.0037, 0.0027, 0.0027, 0.0026], [0.0333, 0.0157, 0.0148, 0.0084, 0.0062, 0.0048, 0.0042, 0.0035], [0.0098, 0.0063, 0.0052, 0.0036, 0.0034, 0.003, 0.0026, 0.0013], [0.2803, 0.1597, 0.0588, 0.0149, 0.0102, 0.009, 0.0085, 0.007], [0.4419, 0.1117, 0.0411, 0.0363, 0.0125, 0.0104, 0.0098, 0.0076], [0.4112, 0.3628, 0.0592, 0.0523, 0.028, 0.0132, 0.0062, 0.0043], [0.2284, 0.0542, 0.0422, 0.0373, 0.029, 0.0187, 0.0146, 0.0137], [0.9002, 0.0308, 0.0176, 0.0128, 0.0031, 0.0025, 0.0025, 0.002], [0.005, 0.0039, 0.0037, 0.0032, 0.0032, 0.003, 0.0029, 0.0029], [0.0092, 0.0041, 0.0041, 0.0041, 0.0038, 0.0038, 0.0032, 0.0026], [0.0132, 0.0091, 0.008, 0.0043, 0.004, 0.004, 0.0038, 0.0038], [0.0129, 0.0094, 0.0089, 0.0073, 0.0047, 0.0047, 0.0047, 0.0042], [0.0191, 0.018, 0.0169, 0.0096, 0.009, 0.0052, 0.0048, 0.0033], [0.081, 0.0263, 0.0192, 0.0159, 0.0124, 0.011, 0.0071, 0.0062], [0.0034, 0.0032, 0.0028, 0.0028, 0.0023, 0.0023, 0.0019, 0.0019], [0.0022, 0.0019, 0.0019, 0.0017, 0.0014, 0.0014, 0.0014, 0.0012], [0.0083, 0.0069, 0.0024, 0.0016, 0.0016, 0.0015, 0.0015, 0.0014], [0.0031, 0.0027, 0.0015, 0.0014, 0.0012, 0.0011, 0.0011, 0.0011], [0.0024, 0.0017, 0.0015, 0.0014, 0.0014, 0.0014, 0.0014, 0.0013], [0.0034, 0.0021, 0.002, 0.0017, 0.0014, 0.0013, 0.0013, 0.0012], [0.0039, 0.0019, 0.0017, 0.0014, 0.0013, 0.0013, 0.0013, 0.0012], [0.01, 0.0029, 0.0025, 0.0021, 0.0017, 0.0017, 0.0016, 0.0013], [0.0035, 0.0033, 0.0031, 0.0027, 0.0024, 0.0022, 0.0021, 0.0017], [0.0048, 0.0035, 0.0024, 0.0023, 0.0021, 0.002, 0.0019, 0.0016], [0.0293, 0.0095, 0.0054, 0.0037, 0.0035, 0.0035, 0.0035, 0.0027], [0.0051, 0.0045, 0.0033, 0.0029, 0.0023, 0.0019, 0.0018, 0.0016], [0.0063, 0.0059, 0.0056, 0.0056, 0.0049, 0.0046, 0.0041, 0.0041], [0.0304, 0.0135, 0.0087, 0.0072, 0.0072, 0.0068, 0.006, 0.006], [0.0465, 0.034, 0.0171, 0.0161, 0.011, 0.0104, 0.0076, 0.0076], [0.0646, 0.021, 0.0197, 0.0153, 0.0127, 0.0112, 0.0105, 0.0082], [0.091, 0.0709, 0.008, 0.007, 0.0062, 0.0051, 0.0048, 0.0043], [0.2015, 0.0952, 0.0696, 0.0121, 0.0114, 0.0107, 0.0089, 0.0083], [0.0817, 0.0495, 0.0465, 0.0362, 0.0341, 0.0265, 0.022, 0.0194], [0.0862, 0.0247, 0.0247, 0.0205, 0.0192, 0.0192, 0.017, 0.0141], [0.0409, 0.0264, 0.0193, 0.0133, 0.0133, 0.011, 0.0091, 0.0076], [0.0357, 0.0315, 0.0217, 0.018, 0.018, 0.014, 0.0131, 0.0131], [0.0355, 0.0295, 0.0244, 0.0216, 0.0179, 0.0168, 0.0158, 0.0139], [0.0613, 0.035, 0.029, 0.0212, 0.0165, 0.0137, 0.0129, 0.0121], [0.0831, 0.0445, 0.0392, 0.0346, 0.0306, 0.0287, 0.027, 0.021], [0.0853, 0.0551, 0.0486, 0.0356, 0.026, 0.026, 0.0244, 0.0216], [0.0817, 0.0362, 0.0362, 0.034, 0.032, 0.032, 0.03, 0.0249], [0.0524, 0.0524, 0.0434, 0.0298, 0.0298, 0.028, 0.0193, 0.0181], [0.0467, 0.0321, 0.0321, 0.0283, 0.025, 0.0194, 0.0194, 0.0183], [0.0844, 0.0545, 0.0481, 0.0227, 0.0213, 0.02, 0.0177, 0.0177], [0.063, 0.0461, 0.0433, 0.0317, 0.0317, 0.0297, 0.0262, 0.018], [0.0487, 0.043, 0.0404, 0.0261, 0.0203, 0.0203, 0.0168, 0.0131], [0.0411, 0.0387, 0.0283, 0.0266, 0.0234, 0.0183, 0.0118, 0.0072], [0.0414, 0.0284, 0.0208, 0.0196, 0.0152, 0.0119, 0.006, 0.0056], [0.0514, 0.0483, 0.04, 0.0275, 0.0275, 0.0243, 0.0214, 0.0115], [0.1434, 0.0495, 0.0437, 0.0301, 0.0234, 0.0207, 0.0194, 0.0171], [0.1161, 0.1025, 0.0549, 0.0484, 0.0354, 0.0313, 0.0259, 0.0215], [0.5486, 0.1224, 0.0841, 0.0397, 0.0241, 0.0188, 0.0188, 0.0146], [0.3157, 0.0905, 0.0798, 0.0549, 0.0427, 0.0377, 0.0333, 0.0259], [0.5052, 0.0603, 0.047, 0.047, 0.0366, 0.0285, 0.0285, 0.0252], [0.4852, 0.0956, 0.0657, 0.058, 0.058, 0.0451, 0.0242, 0.0188], [0.7712, 0.0435, 0.0299, 0.0264, 0.0181, 0.016, 0.0086, 0.0067], [0.7419, 0.1004, 0.0609, 0.012, 0.012, 0.0082, 0.0082, 0.0057], [0.7103, 0.0661, 0.0401, 0.0401, 0.0312, 0.0275, 0.0089, 0.0074], [0.4838, 0.178, 0.0742, 0.0655, 0.0655, 0.0329, 0.0078, 0.0065], [0.3164, 0.2792, 0.1694, 0.08, 0.0428, 0.0294, 0.0108, 0.007]], "ranks": {"Rust": [34248, 95706, 56178, 61287, 5863, 19602, 27675, 24573, 15257, 10820, 5750, 6896, 6012, 3459, 7971, 4900, 7227, 23797, 73841, 61729, 74947, 66574, 71740, 79189, 55699, 67888, 34245, 19510, 21111, 24771, 15210, 21921, 21655, 80518, 61556, 14829, 2094, 2209, 4637, 3745, 1123, 1681, 2326, 2835, 2731, 1866, 3364, 2531, 4093, 7977, 21732, 4755, 660, 1200, 1879, 486, 28, 74, 193, 256, 84, 110, 83]}}, {"pos": 587, "top": [["\u2013", " \u2013", " ", "\u2022", "<|endoftext|>", ",", "  ", "  \n"], ["  \n\n", "  \n", "   \n", "   \n\n", "  ", "ment", "ings", "atively"], ["\u2013", "s", "\u2013and", "ings", " \u2013", "  \n\n", "\u2022", "ers"], ["``", " ``", "izer", "ingly", "atively", " ``(", "IZAR", "\ub9c1"], ["ers", "ingly", "izer", "ized", "ment", "ings", "ar", "atively"], ["ingly", "ers", "izer", "izable", "atively", "ar", "ment", "ible"], ["ers", "ingly", "ings", "``", "ment", "ments", "izer", "izable"], ["ingly", "ers", "ings", "ment", "atively", "izer", "ments", "izable"], ["ings", "ers", "ingly", "ment", "atively", "izer", "able", "ator"], ["ers", "ingly", "ings", "atively", "ment", "cape", "able", "izer"], ["ers", "ingly", "ings", "ment", "able", "atively", "cape", "ized"], ["ers", "ingly", "ings", "izer", "atively", "ment", "able", "ized"], ["ers", "ingly", "ings", "izer", "atively", "ment", "lings", "ator"], ["ers", "ingly", "ings", "ment", "atively", "izer", "erd", "able"], ["ers", "ingly", "ings", "ment", " `", "edly", " showcase", "able"], ["ers", "ingly", "ings", "ment", " showcase", "atively", "ar", " looming"], ["ers", "ingly", "ings", "ment", "ar", " showcase", "r", "cape"], ["ers", "ingly", "ings", "ment", "cape", "izer", "atively", " showcase"], ["ers", "ingly", "ings", "cape", "izer", "ment", "mind", "atively"], ["ingly", "ers", "cape", "ment", "ings", "atively", "mind", "hoff"], ["ingly", "ers", "cape", "ment", "mind", "ings", "atively", "tte"], ["ingly", " ``", "ers", "cape", "``", "izer", "\u5171\u540c\u6253\u9020", "hoff"], [" ``", "ingly", "``", "ers", "cape", "atively", "izer", "hoff"], [" ``", "ingly", "ers", "cape", "\u5171\u540c\u6253\u9020", "ment", "atively", " looming"], ["ingly", "cape", "ers", "\u5171\u540c\u6253\u9020", "(Render", " ``", "ings", "mind"], ["ingly", "(Render", "pix", "cape", " pixel", "ers", "izer", " RENDER"], [" pixel", "cape", " RENDER", " visuals", "ingly", "(Render", "pix", " optics"], [" ``", "ingly", "paint", "-render", " RENDER", "cape", " pixel", "(Render"], [" RENDER", " pixel", "cape", "Pixel", "paint", "(Render", " renderer", "pixel"], [" RENDER", " pixel", "cape", " engine", " renderer", "paint", " visuals", " paint"], [" engine", "cape", "ers", " engines", " paint", " pixel", " screens", " canvas"], [" engine", "ers", " paint", "cape", " engines", " showcase", " architecture", " cycle"], ["ers", " engine", "cape", " engines", " paint", " cycle", " pixel", " architecture"], ["cape", " pixel", " engine", " renderer", "ers", " engines", "pixel", "izer"], ["cape", " pixel", " renderer", "ers", " engine", " RENDER", "izer", "pixel"], ["cape", "ers", " engine", " renderer", "izer", " pixel", "scape", " shader"], [" renderer", " shader", " pixel", " RENDER", " engine", "ers", " GPU", "cape"], [" renderer", " pixel", " shader", " engine", " RENDER", "ers", " Renderer", " Vulkan"], [" renderer", " pixel", " engine", " RENDER", " frame", " shader", " cycle", " WebGL"], [" renderer", " shader", " RENDER", " GPU", " WebGL", " OpenGL", " frame", " pixel"], [" shader", " GPU", " renderer", " WebGL", " OpenGL", " graphics", " RENDER", " timeline"], [" shader", " renderer", " graphics", " GPU", " OpenGL", " RENDER", " WebGL", " cycle"], [" cycle", " renderer", " graphics", " shader", " visuals", " RENDER", " GPU", "-cycle"], [" cycle", " renderer", " graphics", " shader", " Cycle", " visuals", " RENDER", " cycles"], [" cycle", " renderer", " cycles", " shader", " graphics", "-cycle", " loop", "cycle"], [" cycle", " renderer", " cycles", " shader", " loop", " graphics", " frame", "-cycle"], [" cycle", " renderer", " shader", " cycles", " loop", "-cycle", " workflow", " timeline"], [" cycle", " renderer", " shader", " viewport", " cycles", " graphics", "-cycle", " loop"], [" shader", " cycle", " renderer", "-cycle", " framerate", " viewport", " pipeline", " cycles"], [" renderer", " shader", " cycle", "-cycle", " framerate", "-sync", " pipeline", " shaders"], [" renderer", " shader", "-sync", "-cycle", " framerate", " cycle", " viewport", " pipeline"], [" renderer", " shader", " pipeline", " loop", " cycle", "/UI", "-cycle", "(Render"], [" renderer", " pipeline", " shader", "(Render", "/renderer", " Vulkan", " GPU", "/render"], [" pipeline", " shader", " renderer", "pipeline", "/render", "-thread", "\u7ebf\u7a0b", "(Render"], [" loop", "loop", "-loop", "Loop", " loops", " Loop", " pipeline", " thread"], [" loop", "loop", "-loop", " pipeline", "Loop", " thread", " loops", " Loop"], [" loop", "loop", "-loop", " thread", "Loop", " pipeline", " loops", "_loop"], [" loop", "loop", "-loop", " thread", " pipeline", ".loop", "_loop", "Loop"], [" loop", "loop", " pipeline", " thread", "-loop", "thread", "\u7ebf\u7a0b", "-thread"], [" loop", " thread", "loop", " pipeline", "thread", "\u7ebf\u7a0b", "-thread", "-loop"], [" loop", "loop", " thread", " pipeline", "-loop", " Loop", " loops", "Loop"], [" loop", " thread", " pipeline", "loop", " queue", " pump", "thread", "-thread"], [" thread", " loop", " pipeline", " queue", " pump", "thread", "\u7ebf\u7a0b", " cycle"]], "p": [[0.4835, 0.157, 0.0577, 0.045, 0.0329, 0.029, 0.0226, 0.0121], [0.3968, 0.1068, 0.0734, 0.0445, 0.0418, 0.0136, 0.0088, 0.0064], [0.6974, 0.0419, 0.0224, 0.0113, 0.0106, 0.0093, 0.0088, 0.0057], [0.3793, 0.0619, 0.0547, 0.013, 0.0079, 0.0051, 0.0048, 0.0048], [0.2966, 0.2038, 0.0333, 0.0313, 0.0108, 0.0095, 0.0074, 0.0074], [0.1522, 0.0248, 0.0142, 0.0133, 0.0086, 0.0076, 0.0043, 0.0036], [0.2455, 0.1314, 0.0583, 0.0259, 0.0189, 0.0157, 0.0139, 0.0089], [0.2048, 0.1924, 0.1924, 0.0277, 0.026, 0.0168, 0.0131, 0.0109], [0.2513, 0.1957, 0.1839, 0.0249, 0.0234, 0.0194, 0.0133, 0.0081], [0.188, 0.188, 0.1141, 0.0198, 0.0154, 0.0078, 0.0064, 0.006], [0.5956, 0.0757, 0.0757, 0.0191, 0.0109, 0.0058, 0.0055, 0.0043], [0.3506, 0.1212, 0.0609, 0.0211, 0.0154, 0.0106, 0.0041, 0.0039], [0.4225, 0.1554, 0.0347, 0.0145, 0.0145, 0.0088, 0.003, 0.003], [0.3612, 0.2058, 0.0358, 0.0102, 0.0048, 0.0033, 0.0026, 0.0023], [0.237, 0.1629, 0.0321, 0.0118, 0.0043, 0.0036, 0.0036, 0.0034], [0.1809, 0.0708, 0.0131, 0.0048, 0.0035, 0.0027, 0.0024, 0.0021], [0.5821, 0.0788, 0.024, 0.0073, 0.005, 0.0029, 0.0027, 0.0024], [0.3561, 0.102, 0.0331, 0.0069, 0.0058, 0.0058, 0.0033, 0.0031], [0.1625, 0.1527, 0.0151, 0.0142, 0.0059, 0.0056, 0.0052, 0.0041], [0.0873, 0.0364, 0.0126, 0.0067, 0.0067, 0.0041, 0.0038, 0.0026], [0.066, 0.0243, 0.0115, 0.0054, 0.0054, 0.0048, 0.0035, 0.0024], [0.036, 0.0141, 0.0103, 0.0091, 0.0043, 0.0043, 0.004, 0.004], [0.04, 0.0293, 0.0095, 0.0089, 0.0084, 0.0033, 0.0033, 0.0031], [0.0142, 0.0111, 0.0067, 0.0049, 0.0036, 0.0028, 0.0025, 0.002], [0.0148, 0.007, 0.0062, 0.0029, 0.0029, 0.0027, 0.0027, 0.0021], [0.0054, 0.0054, 0.0051, 0.0048, 0.0035, 0.0033, 0.0031, 0.0029], [0.0079, 0.0054, 0.0045, 0.0045, 0.0045, 0.0042, 0.0037, 0.0033], [0.0052, 0.0034, 0.0034, 0.0032, 0.003, 0.003, 0.0026, 0.0026], [0.0146, 0.0083, 0.0078, 0.0074, 0.0069, 0.0057, 0.0054, 0.0037], [0.0133, 0.0103, 0.0097, 0.0091, 0.0086, 0.0063, 0.0059, 0.0049], [0.0263, 0.0192, 0.015, 0.015, 0.011, 0.0097, 0.0091, 0.008], [0.0308, 0.0199, 0.0121, 0.0113, 0.0107, 0.01, 0.0073, 0.0065], [0.0373, 0.033, 0.0213, 0.0129, 0.0069, 0.0065, 0.0061, 0.0061], [0.0244, 0.0168, 0.009, 0.0079, 0.0075, 0.0066, 0.0055, 0.0055], [0.0268, 0.0144, 0.0099, 0.0077, 0.0072, 0.0056, 0.0056, 0.005], [0.0197, 0.0174, 0.0136, 0.0113, 0.0088, 0.0082, 0.0073, 0.0053], [0.0379, 0.0216, 0.0203, 0.0203, 0.0158, 0.0109, 0.0102, 0.0096], [0.0503, 0.0305, 0.0287, 0.021, 0.0185, 0.0112, 0.0105, 0.0093], [0.0482, 0.0311, 0.0189, 0.0189, 0.0177, 0.0177, 0.013, 0.0107], [0.0419, 0.0369, 0.027, 0.0211, 0.0198, 0.0186, 0.0186, 0.0164], [0.0648, 0.0537, 0.0474, 0.0347, 0.0306, 0.0306, 0.0238, 0.0198], [0.0687, 0.0645, 0.0443, 0.0417, 0.0253, 0.0209, 0.0209, 0.0197], [0.0886, 0.0537, 0.0474, 0.0418, 0.0224, 0.021, 0.021, 0.0186], [0.1272, 0.0601, 0.044, 0.0322, 0.0221, 0.0195, 0.0183, 0.0172], [0.2545, 0.0442, 0.0415, 0.0237, 0.0196, 0.0173, 0.0163, 0.0163], [0.2452, 0.0514, 0.0332, 0.0293, 0.0214, 0.0157, 0.0147, 0.013], [0.1966, 0.0529, 0.0467, 0.0302, 0.0207, 0.0195, 0.0161, 0.0152], [0.1299, 0.0613, 0.0576, 0.029, 0.0212, 0.0199, 0.0187, 0.0187], [0.0867, 0.0814, 0.0596, 0.0319, 0.0206, 0.0171, 0.0151, 0.0141], [0.071, 0.0667, 0.038, 0.0245, 0.0203, 0.0158, 0.0131, 0.0123], [0.0473, 0.0287, 0.021, 0.0185, 0.0164, 0.0154, 0.0127, 0.0127], [0.0802, 0.0429, 0.0379, 0.0203, 0.0148, 0.0148, 0.0139, 0.0139], [0.1737, 0.1533, 0.093, 0.0195, 0.0162, 0.0152, 0.0134, 0.0126], [0.3042, 0.1628, 0.1268, 0.022, 0.022, 0.0194, 0.0142, 0.0134], [0.8192, 0.1109, 0.036, 0.0063, 0.0063, 0.003, 0.003, 0.0026], [0.7614, 0.1699, 0.0261, 0.0066, 0.0058, 0.0051, 0.0035, 0.0024], [0.8813, 0.082, 0.0126, 0.0059, 0.0025, 0.0022, 0.0019, 0.0019], [0.8298, 0.1273, 0.0152, 0.0063, 0.0056, 0.0021, 0.0021, 0.0018], [0.767, 0.0713, 0.063, 0.063, 0.0066, 0.0059, 0.0052, 0.004], [0.6461, 0.2693, 0.0364, 0.0221, 0.0081, 0.0038, 0.0034, 0.0026], [0.9649, 0.0156, 0.0138, 0.0031, 0.0009, 0.0004, 0.0002, 0.0002], [0.7746, 0.1959, 0.0182, 0.0036, 0.0014, 0.0011, 0.0007, 0.0006], [0.7384, 0.2397, 0.0153, 0.0015, 0.0006, 0.0005, 0.0004, 0.0003]], "ranks": {"Rust": [36780, 89899, 48179, 60991, 32634, 46158, 41096, 41466, 54195, 31277, 32787, 58133, 37967, 51747, 43803, 39855, 42445, 92930, 111280, 86655, 96166, 83402, 89061, 64222, 83032, 59531, 58970, 33391, 40467, 41082, 35333, 29112, 47035, 44868, 35153, 32987, 11242, 10903, 14505, 14923, 9454, 13691, 12976, 9951, 16428, 9956, 13956, 9712, 9540, 9799, 12198, 26543, 4483, 4821, 6569, 23526, 474, 445, 1790, 2187, 1014, 2384, 3074]}}, {"pos": 588, "top": [[".", ",", " ", "\u00a0\u00a0", " \u00a0", "  \n", "u", "["], ["  \n", "ed", "  ", " \uff5e", "ishly", " \uff08", "   \n", "\uc368"], [",", "[", ".", "\u2026", "ed", ";", "\u2026.", "  \n"], ["\uc368", " St\u00e9ph", "\uff3f\uff3f", " \u3010", " Ejem", "TRGL", " Geile", "ALCHEMY"], ["ed", " \u3010", "@", "  \n\n", "  \n", " @", ".@", " \u3011"], ["ed", " \uff08", "  \n", " \u3011", " \uff09", "!", ".", "ingly"], ["ed", "  \n", " \u3010", "!", ".", " \uff08", " \u3011", "~"], ["ed", "  \n", "  \n\n", "!", ".", ",", " \u3010", "~"], ["  \n\n", "  \n", ".", ",", "!", "ed", ";", "~"], [",", "ed", ";", ".", "  \n", "!", "~", "ishly"], [".", ",", "ed", ";", "!", "  \n", "~", "..."], ["ed", " ~", "-esque", "ishly", "-ish", " intric", " _", " seamlessly"], ["ed", " ~", "-esque", " seamlessly", " intric", " _", " alongside", "ishly"], ["ed", "-esque", " alongside", " intric", " seamlessly", " swiftly", " iteration", " via"], ["ed", " alongside", "o", " ", " back", " swiftly", " across", " via"], ["ed", " swiftly", " arguably", " alongside", " myriad", "-esque", " akin", " atop"], ["ed", "o", " swiftly", " via", ",", " alongside", " myriad", " back"], ["ed", "o", " alongside", "-esque", " swiftly", " via", " arguably", " back"], ["ed", "-esque", " swiftly", " arguably", " alongside", " \u2014", " myriad", " across"], [" \u2014", " swiftly", " alongside", " myriad", " ultimately", " --", " across", " arguably"], ["<|endoftext|>", " swiftly", " \u2014", " though", " alongside", " myriad", " --", " ,"], [" swiftly", " ultimately", " heavily", " atop", " alongside", " arguably", " across", " ."], [" swiftly", " --", " ultimately", " heavily", " alongside", " atop", " across", " arguably"], [" ,", " --", " swiftly", " ultimately", " .", " across", " heavily", " alongside"], [" --", " swiftly", " though", " \u2014", " ,", " atop", " myriad", " ultimately"], [" --", " swiftly", " atop", " heavily", " _", " amidst", " across", " wildly"], [" --", " atop", " _", " swiftly", " ~", " ,", " shutter", " heavily"], [" --", " _", " ,", " swiftly", " ~", " atop", " heavily", " ultimately"], [" _", " --", " ___", " __", " ._", " ~", " atop", " .**"], [" _", " --", " .", " ._", " ___", " __", " ,", " atop"], [" .", " ,", " --", " _", " quickly", " ?", " over", " heavily"], [" .", " ,", " --", " over", " quickly", " heavily", " \u2014", " at"], [" .", " ,", " quickly", " --", " !", " ?", " rapidly", " \u2014"], [" .", " quickly", " rapidly", " .**", " swiftly", " critical", " heavily", " reboot"], [" .", " .**", " quickly", " rapidly", " swiftly", " instantly", " reboot", " sync"], [" .", " .**", " \u2014", " !", " quickly", " .*", " critical", " rapidly"], [" .", " .**", " \u2014", " .\"", " .*", " instantly", " !", " quickly"], [" .", " .**", " instantly", " sync", " even", " quickly", " critical", " unless"], [" .", " .**", " cycle", " \u2014", " sync", " critical", " even", " instantly"], [" .", " .**", " cycle", " sync", " loop", " cycles", " synchronized", " synced"], [" cycle", " .", " loop", " sync", " cycles", " .**", " synced", " synchronized"], [" cycle", " cycles", " .", " loop", " sync", " synced", " engine", " .**"], [" cycle", " cycles", " loop", " sync", " .", " synced", " .**", " synchron"], [" cycle", " cycles", " .", " loop", " sync", " directly", " synced", " synchron"], [" .", " cycle", " loop", " cycles", " sync", " directly", " .**", " unless"], [" .", " directly", " cycle", " loop", " cycles", " synchron", " sync", " unless"], [" .", " sync", ".**", " cycles", " unless", " synchron", ".", " loop"], [".**", ".", ".</", ".\\", ".\"", ".`", " .", ".'"], [".", ".**", ".</", ".\\", " .", ".`", ".*", ".\""], [".", ".**", "\n\n", ".</", ".\\", ".`", " \n\n", ".\""], [".", ".**", "**.", "\n\n", ".</", "().", "*.", "+."], [".**", ".", "**.", "\n\n", ".</", ".*", "*.", "()."], [".**", ".", "**.", "\n\n", ".*", "*.", ".</", "\u2019."], [".**", ".", "\n\n", "**.", ".*", "*.", ".`", ".</"], [".**", ".", "\n\n", "**.", ".*", ".`", "*.", ".</"], [".**", ".", "\n\n", ".*", "**.", ".\\", ".`", ".</"], ["\n\n", ".", ".**", ".`", " \n\n", ".*", " synchronization", "**."], ["\n\n", ".", ".**", " synchronization", " \n\n", ".`", " syncing", ".\u2019"], ["\n\n", ".", ".**", " synchronization", " \n\n", ".*", ".`", " syncing"], [".", "\n\n", ".**", " synchronization", "\u2019s", " or", ".*", " \n\n"], [".", "\n\n", "\u2019s", ".**", " synchronization", "'s", ".*", " \n\n"], [".", "\u2019s", "\n\n", ".\u2019", ".**", ".\u201d", ".*", "\u2019."], [".", "\u2019s", " synchronization", ".\u2019", ".**", ",", " or", ".\u201d"]], "p": [[0.6681, 0.2309, 0.0115, 0.0108, 0.0062, 0.0054, 0.0051, 0.0051], [0.0623, 0.0313, 0.0313, 0.0148, 0.0084, 0.0074, 0.0066, 0.0058], [0.2449, 0.1231, 0.0659, 0.0331, 0.0189, 0.0157, 0.0147, 0.0138], [0.0102, 0.0085, 0.0048, 0.004, 0.0028, 0.0026, 0.0026, 0.0023], [0.878, 0.0161, 0.0118, 0.0086, 0.0063, 0.0056, 0.0041, 0.0036], [0.9208, 0.0028, 0.0024, 0.0017, 0.0016, 0.0012, 0.001, 0.0007], [0.6546, 0.1655, 0.0474, 0.0145, 0.0099, 0.0093, 0.0047, 0.0034], [0.3647, 0.3426, 0.0299, 0.0281, 0.0193, 0.0151, 0.0097, 0.0097], [0.238, 0.2236, 0.1973, 0.0932, 0.0499, 0.0251, 0.0172, 0.0081], [0.4344, 0.0969, 0.0261, 0.0261, 0.0179, 0.0158, 0.0096, 0.007], [0.3356, 0.2614, 0.1585, 0.0332, 0.0228, 0.0215, 0.0101, 0.0065], [0.0781, 0.0347, 0.0238, 0.0136, 0.0088, 0.0077, 0.0068, 0.0064], [0.1577, 0.0188, 0.0129, 0.0101, 0.0074, 0.0061, 0.0051, 0.0045], [0.2961, 0.0201, 0.0138, 0.0084, 0.007, 0.0065, 0.0058, 0.0048], [0.1063, 0.0209, 0.0174, 0.0153, 0.0099, 0.0093, 0.0087, 0.0082], [0.0737, 0.0289, 0.0239, 0.0211, 0.0175, 0.0136, 0.0106, 0.01], [0.1396, 0.0482, 0.0157, 0.0138, 0.013, 0.013, 0.013, 0.0122], [0.0948, 0.0308, 0.0155, 0.0137, 0.0113, 0.0094, 0.0083, 0.0078], [0.0216, 0.0179, 0.0158, 0.0149, 0.0149, 0.0131, 0.0102, 0.0096], [0.0421, 0.0349, 0.0155, 0.0145, 0.0137, 0.0121, 0.0121, 0.0121], [0.2074, 0.0384, 0.0193, 0.0125, 0.0103, 0.0103, 0.0091, 0.0086], [0.0244, 0.0095, 0.0095, 0.009, 0.009, 0.007, 0.0066, 0.0058], [0.0441, 0.0441, 0.0126, 0.0126, 0.0105, 0.0098, 0.0093, 0.0093], [0.0337, 0.0337, 0.0297, 0.0192, 0.0159, 0.0124, 0.0116, 0.0109], [0.0831, 0.0504, 0.0306, 0.0287, 0.0112, 0.0099, 0.0093, 0.0093], [0.039, 0.0285, 0.0285, 0.0093, 0.0093, 0.0077, 0.0068, 0.0068], [0.0356, 0.0277, 0.0277, 0.0216, 0.007, 0.0066, 0.0062, 0.0055], [0.1357, 0.0933, 0.0469, 0.0195, 0.0162, 0.0092, 0.0077, 0.0077], [0.085, 0.0549, 0.0313, 0.0294, 0.0259, 0.019, 0.0122, 0.0084], [0.0941, 0.0884, 0.0325, 0.0306, 0.027, 0.0253, 0.0136, 0.0112], [0.2965, 0.0427, 0.0354, 0.0333, 0.0178, 0.0167, 0.0108, 0.0101], [0.2639, 0.0553, 0.0203, 0.0191, 0.018, 0.0131, 0.0096, 0.008], [0.6967, 0.0088, 0.0082, 0.0073, 0.0068, 0.0053, 0.0047, 0.0044], [0.0386, 0.0118, 0.0104, 0.0092, 0.0076, 0.0076, 0.0071, 0.0071], [0.0352, 0.0331, 0.0089, 0.0084, 0.0084, 0.0069, 0.0065, 0.0065], [0.4491, 0.0733, 0.027, 0.0106, 0.0093, 0.006, 0.006, 0.006], [0.4565, 0.1482, 0.0079, 0.0057, 0.0057, 0.0045, 0.0039, 0.0035], [0.2309, 0.0243, 0.009, 0.0079, 0.0074, 0.0062, 0.0062, 0.0058], [0.0914, 0.018, 0.0109, 0.0103, 0.0103, 0.0091, 0.0091, 0.0085], [0.1196, 0.0365, 0.0343, 0.0162, 0.0152, 0.0134, 0.0092, 0.0087], [0.0747, 0.0513, 0.0311, 0.0275, 0.0258, 0.0242, 0.0138, 0.0138], [0.1647, 0.0645, 0.0569, 0.0443, 0.0286, 0.0209, 0.0174, 0.0153], [0.1721, 0.0865, 0.0559, 0.0409, 0.0361, 0.0264, 0.0233, 0.0205], [0.1189, 0.0636, 0.0496, 0.0496, 0.0437, 0.0207, 0.0182, 0.0171], [0.3173, 0.0518, 0.0314, 0.0277, 0.023, 0.023, 0.0131, 0.0096], [0.1115, 0.0561, 0.034, 0.0282, 0.022, 0.0206, 0.0182, 0.011], [0.0422, 0.035, 0.0329, 0.0212, 0.0212, 0.0187, 0.0187, 0.0176], [0.2768, 0.2443, 0.1482, 0.0793, 0.0352, 0.0227, 0.0177, 0.0122], [0.9569, 0.0175, 0.0083, 0.0057, 0.0011, 0.0011, 0.001, 0.001], [0.8799, 0.0496, 0.0207, 0.0126, 0.0076, 0.0059, 0.0036, 0.0036], [0.5098, 0.3504, 0.0609, 0.0224, 0.012, 0.0064, 0.0034, 0.0034], [0.6916, 0.1982, 0.0568, 0.0209, 0.006, 0.0047, 0.0028, 0.0022], [0.4529, 0.4529, 0.0541, 0.005, 0.0044, 0.0044, 0.0039, 0.0035], [0.4556, 0.402, 0.0699, 0.0257, 0.0095, 0.0039, 0.0035, 0.0031], [0.3956, 0.3491, 0.0883, 0.0223, 0.0223, 0.0112, 0.0112, 0.0099], [0.5476, 0.2587, 0.0509, 0.035, 0.0137, 0.0129, 0.0094, 0.0057], [0.8762, 0.056, 0.0385, 0.0032, 0.0032, 0.0019, 0.0018, 0.0015], [0.7878, 0.1369, 0.027, 0.0088, 0.0034, 0.003, 0.0022, 0.0017], [0.809, 0.1406, 0.0148, 0.0079, 0.0021, 0.0015, 0.0015, 0.0015], [0.5167, 0.456, 0.0078, 0.0033, 0.0015, 0.0008, 0.0008, 0.0007], [0.5206, 0.4595, 0.0033, 0.0029, 0.0026, 0.0017, 0.0012, 0.001], [0.9468, 0.0324, 0.0173, 0.0007, 0.0004, 0.0003, 0.0002, 0.0002], [0.9986, 0.0013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [51565, 74865, 59821, 52491, 4322, 8360, 20343, 8224, 15321, 7007, 7904, 11416, 5525, 4368, 7576, 7446, 10152, 17875, 22830, 16399, 24450, 20614, 18471, 16045, 16740, 16291, 8864, 7400, 7071, 6759, 5240, 5948, 7443, 7173, 11706, 12959, 10169, 9409, 9668, 15176, 14165, 19196, 13705, 9954, 9630, 9321, 14092, 10115, 8114, 8541, 20733, 23857, 32721, 40101, 36557, 18062, 5465, 5289, 7312, 5110, 4687, 2253, 1452]}}, {"pos": 589, "top": [[" \u2013", ".", ",", "\u2013", ";", "\u00a0", "\u00a0\u00a0", "\u2026."], [" \u2013", "\u2013", "\u2013and", ",", ".", " \u200b\u200b", " \u2013,", "\u2013\u2013"], ["\u2013", ",", ".", " \u2013", "\u2026", "\u2013and", "\u2026..", ";"], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " Blowjob", "-------------</", " ;;^", " pornstar", "----------</"], ["\u65b0\u52a0\u5761", " Millennials", "\u52a0\u62ff\u5927", " cittadin", " millennials", " Aussie", "\u2193\u2193", ":@"], ["!\u201d.", "<|quad_end|>", "\u2026..", "!:", "\u65b0\u52a0\u5761", "\u2026.", " Aussie", "arren"], ["  \n\n", "<|endoftext|>", " \n\n", "   \n\n", "\n\n", "  \n", "    \n\n", "  \r\n\r\n"], ["   \n\n", "  \n\n", " \n\n", "    \n\n", "     \n\n", "\t\n\n", "   \n", "       \n\n"], ["  \n\n", " \n\n", "   \n\n", "<|endoftext|>", "    \n\n", "\t\n\n", "\n\n", "     \n\n"], ["Luckily", " pricey", "<|quad_end|>", "\u5468\u906d", "\u4e94\u82b1\u516b", " hefty", "\u51ed\u501f\u7740", " swiftly"], ["<|endoftext|>", "  \n\n", "\u00a0", " \u00ad", " hefty", " swiftly", "   \n\n", "  \n  \n"], [" **", " **#", " pricey", " **+", " hefty", " uncomfort", " arguably", " veggies"], [" anyways", " hefty", " pricey", " veggies", " arguably", " swiftly", " folks", "\u4e94\u82b1\u516b"], [" swiftly", " hefty", " pricey", " arguably", " albeit", " effortlessly", " plenty", " savvy"], [" swiftly", " arguably", " hefty", "\u5373\u4fbf", " pricey", "\u5373\u4fbf\u662f", " sprawling", " plenty"], [" swiftly", " folks", " hefty", " arguably", " myriad", "\u5373\u4fbf", " plenty", " sprawling"], ["<|endoftext|>", " arguably", "  \n\n", " swiftly", " myriad", " hefty", "Though", " incredibly"], ["<|endoftext|>", "  \n\n", "   \n\n", " \n\n", " arguably", "<|file_sep|>", " hefty", "\u5373\u4fbf"], ["<|endoftext|>", " arguably", " swiftly", "  \n\n", "\u5373\u4fbf", " hefty", " myriad", " incredibly"], ["<|endoftext|>", "  \n\n", " swiftly", "\u5373\u4fbf", " arguably", " \n\n", "\n\n", "Though"], ["<|endoftext|>", "  \n\n", "\n\n", " \n\n", "   \n\n", "\r\n\r\n", " \r\n\r\n", " swiftly"], [" arguably", " swiftly", "\u5373\u4fbf", " famously", " hugely", " myriad", "\u5373\u4fbf\u662f", "\r\n\r\n"], ["<|endoftext|>", "\n\n", "\r\n\r\n", " swiftly", " arguably", "  \n\n", "\u5373\u4fbf", " \n\n"], ["<|endoftext|>", "\n\n", "  \n\n", " \n\n", "\r\n\r\n", " swiftly", " arguably", " \r\n\r\n"], ["\n\n", "  \n\n", " \n\n", "\r\n\r\n", "<|endoftext|>", "   \n\n", " \r\n\r\n", "\t\n\n"], ["\n\n", "  \n\n", " \n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", "\t\n\n", " **"], ["\n\n", "  \n\n", " \n\n", "\r\n\r\n", "<|endoftext|>", " \r\n\r\n", "   \n\n", "\t\n\n"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", "   \n\n", " \r\n\r\n", " arguably"], ["\n\n", "  \n\n", " \n\n", "\r\n\r\n", "<|endoftext|>", "   \n\n", " \r\n\r\n", " arguably"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "\r\n\r\n", "   \n\n", " \r\n\r\n", " **"], ["<|endoftext|>", "\n\n", " \n\n", "  \n\n", "...", " ...", "\u2026", " \u2026"], ["<|endoftext|>", "\n\n", " \n\n", "  \n\n", "...", " ...", "\u2026", " \u2026"], ["<|endoftext|>", "  \n\n", "\n\n", " \n\n", " **", " \u2026", "\u2026", " arguably"], ["<|endoftext|>", "  \n\n", " \n\n", " arguably", "\u2014even", " aggressively", " relentless", "\u2014and"], ["<|endoftext|>", "  \n\n", " \n\n", "\u2014even", " relentless", "\u2014and", "   \n\n", " relentlessly"], ["<|endoftext|>", "  \n\n", " \n\n", "\n\n", "   \n\n", "\u2014even", "\u2014and", " relentless"], ["<|endoftext|>", "  \n\n", "\n\n", " \n\n", " relentless", "\u2014even", " brutally", " relentlessly"], ["<|endoftext|>", "  \n\n", "\n\n", " \n\n", "\u2014even", " relentless", "\u2014and", "\u2011"], ["<|endoftext|>", "  \n\n", "\n\n", "\u2014even", "\u2011", " **\u201c", " \n\n", "\u2014and"], ["<|endoftext|>", "  \n\n", " [\u2026]", "\u2011", " **\u201c", "!**", "\u200b", "\u2014even"], ["<|endoftext|>", "  \n\n", "\u200b", "\n\n", " [\u2026]", "<|im_end|>", " \n\n", "[\u2026]"], ["<|endoftext|>", "\n\n", "  \n\n", " \n\n", "   \n\n", "\u2014even", " stealth", " relentless"], ["<|endoftext|>", "\n\n", "  \n\n", " \n\n", " aggressively", " stealth", " brutal", " relentless"], ["\n\n", "  \n\n", "<|endoftext|>", " \n\n", " brutal", " aggressively", " worse", " chaos"], ["\n\n", "<|endoftext|>", "  \n\n", " brutal", " worse", " rapidly", " chaos", " failures"], ["  \n\n", "\n\n", " rapidly", " worse", "<|endoftext|>", " \n\n", " brutal", " chaos"], ["  \n\n", "\n\n", " \n\n", "   \n\n", "<|endoftext|>", "    \n\n", "\t\n\n", "\r\n\r\n"], ["\n\n", "  \n\n", " \n\n", "   \n\n", "\t\n\n", "    \n\n", "\r\n\r\n", "<|endoftext|>"], ["  \n\n", "\n\n", " \n\n", "   \n\n", " **", "\t\n\n", "    \n\n", " Worse"], ["\n\n", "  \n\n", " \n\n", "   \n\n", "\t\n\n", "    \n\n", " ALSO", " additionally"], ["\n\n", "  \n\n", " \n\n", "\t\n\n", "   \n\n", "    \n\n", " **+", " **"], ["\n\n", " \n\n", "  \n\n", "    \n\n", " **", "   \n\n", " **\"", "\t\n\n"], ["\n\n", " **", "  \n\n", " **\"", " \n\n", " **+", "**", " **\u201c"], ["\n\n", " **", " **\"", " **+", "**", "  \n\n", " \n\n", " **#"], ["\n\n", " **", " **+", "**", " **\"", " \n\n", " **#", "  \n\n"], ["\n\n", " **", "**", " **+", " **\"", " **#", " **\u201c", " \n\n"], ["\n\n", " **", "**", " **+", " **\"", " \n\n", " **#", "  \n\n"], ["\n\n", " **", " \n\n", " **+", "**", "  \n\n", " **\"", " **#"], ["\n\n", " **", " \n\n", "**", " **+", " **\"", "  \n\n", " **#"], ["\n\n", " **", " \n\n", "**", " **\"", "  \n\n", " **+", " Additionally"], ["\n\n", " **", " \n\n", "**", "  \n\n", " **\"", " **+", " Additionally"], ["\n\n", " **", " \n\n", "**", "  \n\n", " **+", " **\"", " Additionally"], ["\n\n", " **", " Additionally", " The", " Also", " This", " You", " Your"]], "p": [[0.4597, 0.358, 0.1162, 0.0485, 0.0045, 0.0017, 0.0016, 0.0012], [0.2827, 0.0631, 0.0103, 0.0046, 0.0031, 0.0028, 0.0024, 0.0015], [0.613, 0.2255, 0.0646, 0.0503, 0.0112, 0.0093, 0.0056, 0.0047], [0.0176, 0.0083, 0.0078, 0.0054, 0.0042, 0.0033, 0.0033, 0.0029], [0.0035, 0.0033, 0.002, 0.0017, 0.0015, 0.0015, 0.0013, 0.0012], [0.0024, 0.0024, 0.0017, 0.0015, 0.0014, 0.0013, 0.001, 0.001], [0.7333, 0.0992, 0.0365, 0.0172, 0.0134, 0.0105, 0.0023, 0.0018], [0.3532, 0.3318, 0.0509, 0.0212, 0.01, 0.0065, 0.005, 0.0047], [0.4102, 0.362, 0.1509, 0.0279, 0.0149, 0.0066, 0.0035, 0.0035], [0.0012, 0.0012, 0.0011, 0.001, 0.001, 0.001, 0.0009, 0.0008], [0.5232, 0.0191, 0.0139, 0.0116, 0.007, 0.0062, 0.0058, 0.0048], [0.0275, 0.0115, 0.0074, 0.0061, 0.0048, 0.0042, 0.004, 0.0031], [0.0085, 0.008, 0.0075, 0.0062, 0.0058, 0.0048, 0.0038, 0.0033], [0.0153, 0.0153, 0.0127, 0.0119, 0.0072, 0.0068, 0.0068, 0.0053], [0.0421, 0.0121, 0.0121, 0.0083, 0.0078, 0.0078, 0.0073, 0.0073], [0.0294, 0.0215, 0.019, 0.0157, 0.0139, 0.0102, 0.0095, 0.0095], [0.5506, 0.0311, 0.0188, 0.0177, 0.0114, 0.0074, 0.0051, 0.0048], [0.9669, 0.0201, 0.0012, 0.0011, 0.0004, 0.0004, 0.0002, 0.0002], [0.2865, 0.0639, 0.0266, 0.0162, 0.0162, 0.0111, 0.0111, 0.0111], [0.8963, 0.0106, 0.003, 0.003, 0.0029, 0.0022, 0.0017, 0.0016], [0.9898, 0.0034, 0.0025, 0.002, 0.0001, 0.0001, 0.0001, 0.0001], [0.0261, 0.023, 0.0191, 0.007, 0.007, 0.0066, 0.0066, 0.0048], [0.1871, 0.1066, 0.0325, 0.0305, 0.0223, 0.0163, 0.0144, 0.0136], [0.8838, 0.0725, 0.0041, 0.0038, 0.0034, 0.0014, 0.0007, 0.0005], [0.7705, 0.1182, 0.0717, 0.0181, 0.011, 0.0036, 0.0031, 0.001], [0.4444, 0.3461, 0.0772, 0.0772, 0.0134, 0.0081, 0.0036, 0.0025], [0.87, 0.0809, 0.0298, 0.011, 0.0033, 0.0012, 0.001, 0.0005], [0.8771, 0.072, 0.034, 0.0086, 0.0041, 0.0007, 0.0005, 0.0002], [0.7369, 0.1644, 0.0777, 0.0082, 0.006, 0.0016, 0.0013, 0.0002], [0.4704, 0.2518, 0.1961, 0.0562, 0.0046, 0.0043, 0.0019, 0.0012], [0.6066, 0.2231, 0.1054, 0.0564, 0.0028, 0.0013, 0.001, 0.0005], [0.5895, 0.3155, 0.0484, 0.0377, 0.0027, 0.0019, 0.0015, 0.0009], [0.489, 0.3361, 0.075, 0.0662, 0.0029, 0.0021, 0.0021, 0.001], [0.4635, 0.2811, 0.0315, 0.0055, 0.0051, 0.0051, 0.0038, 0.0033], [0.6822, 0.1954, 0.0133, 0.0038, 0.002, 0.0016, 0.0013, 0.0012], [0.9712, 0.0228, 0.0021, 0.0008, 0.0001, 0.0001, 0.0001, 0.0], [0.622, 0.2288, 0.0156, 0.0061, 0.0035, 0.0027, 0.002, 0.0019], [0.9225, 0.0381, 0.0035, 0.002, 0.001, 0.001, 0.0007, 0.0005], [0.945, 0.0222, 0.0015, 0.0013, 0.001, 0.001, 0.0009, 0.0006], [0.9267, 0.0298, 0.0026, 0.002, 0.0017, 0.0016, 0.0016, 0.001], [0.9681, 0.0138, 0.0015, 0.0015, 0.0009, 0.0008, 0.0006, 0.0004], [0.4421, 0.3443, 0.1626, 0.0363, 0.0005, 0.0004, 0.0003, 0.0002], [0.3793, 0.3348, 0.0901, 0.0069, 0.0051, 0.004, 0.0033, 0.0027], [0.7592, 0.1319, 0.0623, 0.0029, 0.0009, 0.0008, 0.0007, 0.0007], [0.3154, 0.149, 0.1399, 0.0079, 0.0074, 0.0074, 0.0061, 0.0058], [0.4886, 0.1315, 0.0115, 0.0101, 0.0095, 0.0095, 0.0084, 0.0084], [0.5541, 0.4315, 0.013, 0.0003, 0.0002, 0.0001, 0.0001, 0.0], [0.8573, 0.1315, 0.0108, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.7003, 0.2576, 0.0395, 0.0006, 0.0004, 0.0003, 0.0003, 0.0001], [0.8263, 0.1436, 0.0283, 0.0004, 0.0003, 0.0002, 0.0002, 0.0001], [0.9835, 0.0109, 0.0052, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.995, 0.0032, 0.0017, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9621, 0.0137, 0.0073, 0.0045, 0.0039, 0.0039, 0.0007, 0.0006], [0.9846, 0.0109, 0.001, 0.0009, 0.0007, 0.0005, 0.0004, 0.0003], [0.9777, 0.0179, 0.0011, 0.0009, 0.0005, 0.0004, 0.0003, 0.0002], [0.8408, 0.1289, 0.012, 0.0073, 0.0034, 0.0018, 0.0005, 0.0005], [0.9975, 0.0022, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9994, 0.0006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9982, 0.0017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9995, 0.0004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9947, 0.0052, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9942, 0.0032, 0.0009, 0.0003, 0.0003, 0.0002, 0.0001, 0.0001]], "ranks": {"Rust": [25790, 46863, 38444, 63161, 3362, 4800, 9906, 6307, 15149, 9145, 3363, 10089, 4117, 3131, 7958, 11232, 11431, 24587, 40315, 42764, 64581, 76791, 54080, 34145, 37910, 33600, 18029, 12622, 10939, 10569, 9687, 10528, 10152, 14436, 26868, 17100, 8964, 11277, 12418, 12803, 7871, 4396, 3269, 3611, 2131, 1472, 2009, 1794, 1320, 1665, 5687, 11158, 20031, 21331, 25746, 9912, 3571, 2250, 1640, 942, 777, 261, 62]}}, {"pos": 590, "top": [[".", "  \n\n", " \u200b\u200b", "\u00a0\u00a0", "  ", "  \n", "   \n", "\u201d."], [" **:", " **'", " **:**", "\uff1f**", "\uff1a**", " (**", " **\u201c", " **.**"], ["\u2026**", "\u3002", "\uff1f**", "**\u3002", "**?", "**!", "\uff1f", "\uff1a**"], ["\uff1f**", " **\u3010", " **\u25a0", " **\u201c", "\uff1a**", " **\u25cb", " **:**", " **:"], [" **\u201c", "  \n\n", "\uff1f**", " \n\n\n\n", " **\u3010", "\uff1a**", "**\u3002", "\u662f"], [" **\u201c", "\uff1f**", " **\u3010", "\u662f", "\uff1a**", "**\u3002", "\u2019**", "\u7684"], [" **\u3010", " **\u201c", "  \n\n", "\uff1f**", "\u662f", "<|im_end|>", " \n\n", "**\u3002"], ["  \n\n", " **\u3010", "   \n\n", " \n\n", "\uff1f**", " **\u201c", "  \r\n\r\n", "\r\n\r\n"], ["  \n\n", " \n\n", "   \n\n", "    \n\n", "\r\n\r\n", "\t\n\n", "     \n\n", " \r\n\r\n"], [" **\u3010", " **#", "  \n\n", "  \r\n\r\n", " **\u201c", "   \n\n", "\uff1f**", "\u2019**"], ["  \n\n", " **\u201c", " \n\n", "  \r\n\r\n", "\u2026**", "<|im_end|>", "   \n\n", "\r\n\r\n"], [" **\u201c", " **\u3010", " **#", " **\u2018", "\u2019**", "\uff1f**", " **+", "\u2026**"], [" **\u3010", " **\u201c", "\u2026**", " **#", "\u2019**", "...**", " **\u2018", "\uff1f**"], [" **\u201c", "\u2026**", "\u2019**", " **\u2018", " **#", " **\u3010", "\uff1f**", "...**"], ["  \n\n", "\r\n\r\n", "\t\n\n", "\t\t\n\n", "\n\n", " \r\n\r\n", "\u2026**", "  \r\n\r\n"], ["  \n\n", "\r\n\r\n", "\t\n\n", "\t\t\n\n", "\u2026**", "\u2019**", " **\u201c", " **#"], ["  \n\n", "\r\n\r\n", " \n\n", "<|endoftext|>", "   \n\n", "\t\n\n", "\n\n", " \r\n\r\n"], ["  \n\n", "\r\n\r\n", "\t\n\n", "   \n\n", " \n\n", " \r\n\r\n", "\u2026**", "  \r\n\r\n"], [" **#", "\r\n\r\n", " **\u201c", "  \n\n", " **\u2018", " **\u3010", " **'", " **"], ["  \n\n", "\r\n\r\n", " **#", " **\u2018", "\t\n\n", " **\u201c", "<|endoftext|>", " \r\n\r\n"], ["<|endoftext|>", "  \n\n", "\n\n", " \n\n", "\r\n\r\n", "\t\n\n", "   \n\n", " \r\n\r\n"], [" **#", " **\u201c", " **\u2018", "\r\n\r\n", " **", " **'", " **\u3010", "\u2019**"], ["  \n\n", "\r\n\r\n", "<|endoftext|>", "\n\n", " \n\n", " \r\n\r\n", "\t\n\n", " **#"], ["<|endoftext|>", "  \n\n", "\n\n", "\r\n\r\n", " \n\n", " \r\n\r\n", "\t\n\n", "<|im_end|>"], ["  \n\n", "\n\n", " \n\n", "\r\n\r\n", " \r\n\r\n", "<|endoftext|>", "   \n\n", "\t\n\n"], ["  \n\n", " \n\n", "\r\n\r\n", " \r\n\r\n", "\n\n", "\t\n\n", "\u2026**", "   \n\n"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", "\t\n\n", " \r\n\r\n", "\u2026**"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", " \r\n\r\n", "\t\n\n", "   \n\n"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "\r\n\r\n", " \r\n\r\n", "   \n\n", "\u2026**"], ["  \n\n", "<|endoftext|>", " \n\n", "\n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", "  \r\n\r\n"], ["<|endoftext|>", "  \n\n", " \n\n", "\n\n", "   \n\n", "\r\n\r\n", " \r\n\r\n", "  \r\n\r\n"], ["<|endoftext|>", "  \n\n", " \n\n", "\n\n", "\r\n\r\n", "   \n\n", " @", " \r\n\r\n"], ["<|endoftext|>", "  \n\n", " \n\n", "\n\n", "\r\n\r\n", " **", "   \n\n", "  \r\n\r\n"], ["<|endoftext|>", "  \n\n", " \n\n", "\u2026**", " \r\n\r\n", " **\u201c", "  \r\n\r\n", "\r\n\r\n"], ["  \n\n", "<|endoftext|>", " \n\n", " **\u201c", "  \r\n\r\n", "\u2026**", "\t\n\n", "   \n\n"], ["<|endoftext|>", "  \n\n", " \n\n", "\u2026**", "   \n\n", "  \r\n\r\n", " **\u201c", "<|im_end|>"], ["  \n\n", "<|endoftext|>", " \n\n", " **\u201c", "   \n\n", "  \r\n\r\n", "\u2026**", "<|im_end|>"], ["  \n\n", "<|endoftext|>", " **\u201c", "\u2026**", " \n\n", "<|im_end|>", "   \n\n", "**\u2014"], ["  \n\n", "<|endoftext|>", " **\u201c", "\u2026**", " \ufffd", "<|im_end|>", "?**", " \ufffd"], ["<|endoftext|>", "  \n\n", " **\u201c", "\u2026**", "<|im_end|>", " \ufffd", "?**", " \n\n"], ["  \n\n", "<|endoftext|>", "\u2026**", " **\u201c", "<|im_end|>", " \n\n", "?**", "**\u2014"], ["  \n\n", "<|endoftext|>", " **\u201c", " \n\n", "**\u2014", "\u2026**", "\t\n\n", " **\u2014"], ["  \n\n", "**\u2014", " **\u201c", "\u2026**", "<|endoftext|>", " **\u2014", "!**", "?**"], ["  \n\n", "<|endoftext|>", "**\u2014", " **\u201c", "\uff1a**", "\u2026**", " **\u2014", "\uff1f**"], ["  \n\n", "\u2026**", "<|endoftext|>", " **\u201c", "**\u2014", "\u2019**", "\uff1a**", " **\u2014"], ["  \n\n", " **\u201c", "\u2026**", "\uff1a**", "\u2019**", " **", ":**", "**\u2014"], ["  \n\n", "\uff1a**", ":**", " **\u201c", "**", "**\u2014", "\u2026**", "!**"], ["  \n\n", ":**", "\uff1a**", "**\u2014", " **\u201c", "!**", "**", "**:"], ["  \n\n", "!**", "\u2019**", " **\u201c", " **", "**", ":**", "?**"], ["  \n\n", "!**", " **+", " **\u201c", " **#", "?**", "\u2019**", "  \n  \n"], ["  \n\n", " **\u201c", "\u2019**", "  \n  \n", " \n\n", "   \n\n", "  \n\n\n", " **\""], [" **", "  \n\n", "**", " **\"", ";**", " **\u201c", "\u2019**", " **+"], [" **", "**", " **\"", " **\u201c", "\u2019**", " **#", ";**", " **+"], [" **", "**", "\u2019**", "-**", " **\"", " **#", ";**", " **\u201c"], ["**", " **", "\u2019**", ";**", "-**", " **\"", " **#", " **\u201c"], ["**", " **", "\u2019**", " top", " Top", "top", "Top", "-**"], ["**", "Top", " Top", "top", " **", " top", "(top", "\u2019**"], ["**", " **", "Top", " Top", "top", "\u2019**", " top", "(top"], ["**", "Top", " Top", " **", " top", "top", "\u2019**", "_top"], ["**", " **", " Top", "Top", " top", "top", "\u2019**", " **\""], ["**", " **", " Top", " top", "Top", " **\"", "top", "-**"], ["**", " **", " Top", " **\"", "**,", " top", "Top", "-**"], ["**", " **", "**,", "***", "\"**", "**.", "**(", "###"]], "p": [[0.1439, 0.127, 0.112, 0.0929, 0.0723, 0.0266, 0.0235, 0.0076], [0.0677, 0.0495, 0.0282, 0.0265, 0.0265, 0.0206, 0.0142, 0.0092], [0.348, 0.1451, 0.0937, 0.0827, 0.0324, 0.0237, 0.0222, 0.0093], [0.0768, 0.0496, 0.032, 0.0283, 0.0182, 0.0151, 0.0125, 0.0125], [0.4273, 0.0953, 0.051, 0.0373, 0.0351, 0.0329, 0.0188, 0.0176], [0.6925, 0.0568, 0.0502, 0.0252, 0.0173, 0.0144, 0.0112, 0.0105], [0.2776, 0.1311, 0.1087, 0.0659, 0.0353, 0.0258, 0.0243, 0.0228], [0.345, 0.1847, 0.077, 0.0679, 0.0364, 0.0266, 0.0172, 0.0161], [0.692, 0.2247, 0.0442, 0.0053, 0.0047, 0.0041, 0.0032, 0.0032], [0.1266, 0.1117, 0.1049, 0.0598, 0.0562, 0.032, 0.0282, 0.0282], [0.7349, 0.0415, 0.0323, 0.0173, 0.0162, 0.0143, 0.0143, 0.0112], [0.5162, 0.1676, 0.0744, 0.0511, 0.048, 0.0177, 0.0138, 0.0065], [0.251, 0.1954, 0.0983, 0.0815, 0.056, 0.0526, 0.0385, 0.03], [0.2284, 0.1893, 0.0894, 0.0615, 0.045, 0.0397, 0.0273, 0.0241], [0.3154, 0.1913, 0.0621, 0.0228, 0.0228, 0.0167, 0.0157, 0.0148], [0.036, 0.028, 0.0263, 0.0218, 0.011, 0.0097, 0.0063, 0.0055], [0.8226, 0.0281, 0.0264, 0.0206, 0.0182, 0.0171, 0.0091, 0.0063], [0.8058, 0.0333, 0.0229, 0.0157, 0.0148, 0.0115, 0.009, 0.009], [0.1425, 0.1338, 0.0763, 0.0763, 0.0716, 0.0558, 0.0462, 0.0338], [0.2622, 0.0706, 0.055, 0.0333, 0.0333, 0.0229, 0.0202, 0.0202], [0.5588, 0.3389, 0.0357, 0.0357, 0.0085, 0.0055, 0.0031, 0.0026], [0.1661, 0.0946, 0.0785, 0.065, 0.0395, 0.0348, 0.0327, 0.0307], [0.2317, 0.2317, 0.1028, 0.0801, 0.0378, 0.0277, 0.0244, 0.0158], [0.72, 0.086, 0.0808, 0.0432, 0.0217, 0.0071, 0.0055, 0.0022], [0.6607, 0.1474, 0.1013, 0.0422, 0.0121, 0.0094, 0.0065, 0.0065], [0.7044, 0.0742, 0.0655, 0.0291, 0.0291, 0.0188, 0.0166, 0.0094], [0.5341, 0.2227, 0.0928, 0.0723, 0.0387, 0.0092, 0.0086, 0.0056], [0.436, 0.3395, 0.1415, 0.0669, 0.009, 0.002, 0.0018, 0.0012], [0.7881, 0.1067, 0.0504, 0.0306, 0.0112, 0.0036, 0.0022, 0.0017], [0.4744, 0.4186, 0.0824, 0.0184, 0.0017, 0.0012, 0.001, 0.0005], [0.9058, 0.0656, 0.0213, 0.0061, 0.0002, 0.0002, 0.0001, 0.0001], [0.9345, 0.0465, 0.0151, 0.003, 0.0001, 0.0001, 0.0001, 0.0001], [0.6842, 0.2852, 0.0207, 0.0076, 0.0004, 0.0003, 0.0002, 0.0001], [0.6484, 0.3063, 0.0323, 0.0034, 0.0014, 0.0011, 0.0009, 0.0008], [0.7257, 0.1835, 0.0219, 0.0076, 0.0076, 0.0059, 0.0055, 0.0049], [0.5415, 0.4217, 0.012, 0.0044, 0.0028, 0.0024, 0.002, 0.0014], [0.8217, 0.126, 0.0151, 0.0067, 0.0049, 0.0036, 0.0036, 0.0028], [0.7313, 0.1849, 0.0284, 0.0134, 0.0104, 0.0046, 0.0036, 0.0023], [0.4536, 0.4536, 0.029, 0.0176, 0.0054, 0.0042, 0.0035, 0.0031], [0.4851, 0.4281, 0.0274, 0.0146, 0.0048, 0.0045, 0.0039, 0.0029], [0.4538, 0.4538, 0.0422, 0.0094, 0.0065, 0.0042, 0.0042, 0.0037], [0.4696, 0.4696, 0.0104, 0.0086, 0.0086, 0.0063, 0.0025, 0.0016], [0.599, 0.0715, 0.0631, 0.0593, 0.0462, 0.0218, 0.0103, 0.0103], [0.8413, 0.0419, 0.0175, 0.0175, 0.0154, 0.0093, 0.0082, 0.0082], [0.7957, 0.074, 0.0449, 0.0146, 0.01, 0.0054, 0.005, 0.0035], [0.7672, 0.0556, 0.0337, 0.0232, 0.0204, 0.0159, 0.0109, 0.0097], [0.9728, 0.0058, 0.0058, 0.0027, 0.0024, 0.0011, 0.0011, 0.0009], [0.9547, 0.0154, 0.0073, 0.0044, 0.0024, 0.0017, 0.0014, 0.0013], [0.784, 0.0644, 0.0268, 0.0268, 0.0135, 0.0099, 0.0082, 0.0072], [0.8509, 0.0177, 0.0166, 0.0138, 0.0101, 0.0095, 0.0083, 0.0083], [0.9875, 0.0036, 0.0015, 0.001, 0.0008, 0.0006, 0.0004, 0.0004], [0.3425, 0.1833, 0.1112, 0.0525, 0.0463, 0.0463, 0.0409, 0.0319], [0.4308, 0.1796, 0.0961, 0.0401, 0.0354, 0.0354, 0.0354, 0.0275], [0.4223, 0.3289, 0.0504, 0.027, 0.027, 0.0238, 0.0238, 0.0186], [0.3915, 0.3455, 0.0771, 0.0321, 0.0221, 0.0195, 0.0172, 0.0152], [0.4619, 0.2472, 0.0379, 0.0335, 0.0335, 0.0261, 0.023, 0.0179], [0.3855, 0.1607, 0.0975, 0.0759, 0.067, 0.0522, 0.0246, 0.0192], [0.5795, 0.1141, 0.0889, 0.037, 0.037, 0.0225, 0.0225, 0.0106], [0.3494, 0.2401, 0.1134, 0.1001, 0.0607, 0.0417, 0.0135, 0.012], [0.8357, 0.1131, 0.0173, 0.0105, 0.0082, 0.0023, 0.0013, 0.0011], [0.8297, 0.1634, 0.0021, 0.0012, 0.0011, 0.0004, 0.0002, 0.0002], [0.8662, 0.1328, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.9996, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [84994, 154386, 134714, 97840, 97890, 64597, 84738, 85089, 103265, 103341, 78267, 60085, 30469, 29574, 73385, 66075, 77616, 103586, 153484, 136227, 143900, 147093, 125048, 86279, 88489, 97267, 79015, 48123, 57205, 26208, 17733, 9599, 17019, 61728, 129774, 134061, 135092, 163786, 151387, 159432, 189737, 204974, 189312, 194688, 159000, 117962, 89643, 53834, 31417, 34805, 42261, 66309, 93560, 88550, 90417, 90373, 80022, 106703, 109977, 47084, 38313, 19670, 6393]}}, {"pos": 591, "top": [[".", "**", "**.", " \u2013", "\u2026.", "**\u2013", "\u00a0", "\u00a0\u00a0"], ["'**", "(**", " **", "-**", "\uff1f**", "\u2019**", "**", "\u2026**"], ["\u2026**", "**", "\uff1f**", "(**", "'**", "-**", "**\u2013", "\u2019**"], ["\uff1f**", " **\u300c", "\u300d**", "'**", "\u2019**", "\uff1a**", "\u3002**", " **\u3010"], ["...**", "**", "\uff1f**", "-**", ">**", " **", "'**", "\u2019**"], ["-**", "\uff1f**", " **", "(**", "\u2019**", "**", ">**", "\uff01**"], ["**", "\uff1f**", "...**", "\u2019**", "\uff09**", "-**", " **", "'**"], ["...**", "**", "\uff1f**", "-**", "\u2019**", "'**", " **", "(**"], ["...**", "**", "\uff1f**", "\u2019**", "\u2026**", "-**", "(**", "!**"], ["...**", "-**", "\u2026**", "**", "\u2019**", "'**", "\uff1f**", ">**"], ["...**", "**", "\u2026**", "-**", "\uff1f**", "!**", "\u2019**", " **"], ["...**", " **", "-**", "'**", "\uff1f**", "\u2019**", "**", " **'"], ["...**", " **", "\u2026**", "**", "-**", "'**", "\u2019**", "\uff1f**"], ["...**", "\u2026**", "-**", "'**", "**", " **", "\uff1f**", "\u2019**"], ["...**", "\u2026**", "**", "'**", " **", "-**", "\u2019**", "!**"], ["...**", "\uff1f**", "'**", ">**", "-**", "**", "\u2019**", "\u2026**"], ["...**", "**", "\u2026**", "\uff1f**", ">**", "?**", "!**", "\u2019**"], ["...**", "**", "\uff1f**", ">**", "\u2026**", "'**", "-**", "!**"], ["...**", "**", "'**", "\u2026**", "\u2019**", "\uff1f**", ">**", " **#"], ["...**", "**", "\u2026**", "\u2019**", "  \n\n", "'**", "!**", "?**"], ["...**", "  \n\n", " \n\n", "**", "<|endoftext|>", "\u2026**", "\n\n", "\t\n\n"], ["...**", "'**", "\u2019**", "\u2026**", "\uff1f**", " **", ">**", " **#"], ["...**", "**", "\u2019**", " **", "'**", "\u2026**", "\uff1f**", " **'"], ["...**", "  \n\n", " \n\n", "\n\n", "\u2026**", "**", " **", "\u2019**"], ["  \n\n", " \n\n", "\n\n", "...**", "\r\n\r\n", " \r\n\r\n", "\u2026**", "\t\n\n"], ["...**", "  \n\n", " \n\n", "\u2026**", "\n\n", " **", "\r\n\r\n", "**"], ["\n\n", "...**", "  \n\n", " \n\n", "\u2026**", "\r\n\r\n", " **", "\t\n\n"], ["\n\n", " \n\n", "  \n\n", "...**", "\r\n\r\n", " \r\n\r\n", " **", "\t\n\n"], ["\n\n", "  \n\n", " \n\n", "...**", "\u2026**", "\r\n\r\n", " \r\n\r\n", "\t\n\n"], ["  \n\n", " \n\n", "\n\n", "...**", "\u2026**", "\r\n\r\n", " \r\n\r\n", "   \n\n"], ["  \n\n", " \n\n", "\n\n", "...**", "<|endoftext|>", "\r\n\r\n", " **", " \r\n\r\n"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", "...**", " \r\n\r\n", "   \n\n"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", "   \n\n", "\t\n\n", " \r\n\r\n"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", "\t\n\n", "...**", " \r\n\r\n"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "\t\n\n", "\r\n\r\n", "\u2026**", " \r\n\r\n"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", "   \n\n", "\t\n\n", "\r\n\r\n", "    \n\n"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", "\t\n\n", "   \n\n", "\r\n\r\n", "    \n\n"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "   \n\n", "\r\n\r\n", "**:", "\t\n\n"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "\u2026**", "**:", "...**", "\r\n\r\n"], ["  \n\n", " \n\n", "\n\n", " strategy", " Strategy", " strategies", "\u7b56\u7565", "\u89e3\u51b3\u65b9\u6848"], ["  \n\n", " \n\n", "\n\n", " strategy", " Strategy", " strategies", "<|endoftext|>", "\u89e3\u51b3\u65b9\u6848"], ["\n\n", "  \n\n", " \n\n", " strategy", " strategies", " Strategy", " solutions", " remed"], [" strategies", " strategy", "  \n\n", " Strategy", " solutions", "\n\n", " remed", " actionable"], ["  \n\n", "\n\n", " strategies", " strategy", " \n\n", " Strategy", " solutions", "\u89e3\u51b3\u65b9\u6848"], [" strategy", "  \n\n", " strategies", "\n\n", " solutions", " Strategy", "<|im_end|>", "<|endoftext|>"], [" strategy", " strategies", " Strategy", "  \n\n", " solutions", " Solution", "\n\n", " Solutions"], ["  \n\n", " strategies", "**:", " Strategy", ":\\", ":**", " strategy", " \n\n"], ["  \n\n", " Strategy", ":\\", " \n\n", " Specific", ":**", " Solutions", " strategies"], [" Strategy", " Solutions", " strategies", " specifics", " Specific", " Solution", " Immediate", " actionable"], [" Immediate", " Strategy", " actionable", " Solutions", " specifics", " Solution", " strategies", " Specific"], [" Strategy", " Immediate", "\u5e94\u5bf9\u63aa\u65bd", "\u5982\u4f55\u5e94\u5bf9", ":**", " actionable", "\u5177\u4f53\u63aa\u65bd", "?**"], ["\u5177\u4f53\u63aa\u65bd", "\u5e94\u5bf9\u63aa\u65bd", ":**", " Immediate", " specifics", "\u6574\u6539\u63aa\u65bd", " Strategy", "\u5982\u4f55\u5e94\u5bf9"], ["\u5e94\u5bf9\u63aa\u65bd", "\u5177\u4f53\u63aa\u65bd", " Immediate", " Strategy", " actionable", "\u89e3\u51b3\u65b9\u6848", "\u5982\u4f55\u5e94\u5bf9", "\u884c\u52a8\u65b9\u6848"], [" Immediate", "\u5e94\u5bf9\u63aa\u65bd", " actionable", "\u89e3\u51b3\u65b9\u6848", " Fixes", "\u884c\u52a8\u65b9\u6848", " Strategy", "\u5177\u4f53\u63aa\u65bd"], ["\u89e3\u51b3\u65b9\u6848", "\u5e94\u5bf9\u63aa\u65bd", " Immediate", " Fixes", "\u8865\u6551", " actionable", "\u884c\u52a8\u65b9\u6848", " mitigation"], [" Exactly", " exactly", " Exact", "Exactly", " Immediate", "\u8865\u6551", "what", " Top"], [" Exactly", " Exact", " Immediate", "what", " what", "Exactly", " exactly", " What"], [" Exactly", " Exact", " exactly", "Exactly", "Exact", " Fixes", " exact", " mitigation"], [" Exactly", " Exact", " exactly", "Exactly", "Exact", " What", " exact", " what"], [" Exactly", " Exact", " exactly", " exact", "Exactly", "Exact", " Top", "exact"], [" Top", " Exactly", " Exact", " top", "Top", " What", " exactly", " exact"], [" Exactly", " Top", " What", " Exact", "Top", " top", " exactly", "Exactly"], ["Top", "What", " Exactly", " Top", " What", "Exactly", "The", "Exact"]], "p": [[0.483, 0.1568, 0.1221, 0.0212, 0.0212, 0.0187, 0.0129, 0.0107], [0.1532, 0.1532, 0.1352, 0.1193, 0.082, 0.0564, 0.0439, 0.0342], [0.5017, 0.1437, 0.0988, 0.0363, 0.0321, 0.025, 0.022, 0.0195], [0.5911, 0.0517, 0.0485, 0.0333, 0.0333, 0.0313, 0.019, 0.0139], [0.5524, 0.1088, 0.0847, 0.0748, 0.0312, 0.0312, 0.0275, 0.0214], [0.4363, 0.2335, 0.059, 0.0521, 0.0358, 0.0316, 0.0246, 0.0149], [0.2736, 0.2131, 0.1881, 0.0611, 0.042, 0.037, 0.0327, 0.0225], [0.303, 0.2083, 0.1622, 0.1431, 0.0282, 0.0194, 0.0171, 0.0151], [0.6992, 0.1377, 0.0447, 0.0211, 0.0113, 0.01, 0.01, 0.01], [0.7849, 0.0569, 0.0391, 0.0304, 0.0209, 0.0144, 0.0127, 0.0099], [0.9112, 0.0583, 0.013, 0.0033, 0.002, 0.0018, 0.0018, 0.0018], [0.8936, 0.0346, 0.0164, 0.0112, 0.0088, 0.0077, 0.0077, 0.0037], [0.965, 0.0095, 0.0083, 0.0065, 0.0035, 0.0019, 0.0013, 0.0011], [0.9333, 0.0151, 0.0151, 0.0081, 0.0071, 0.0049, 0.0043, 0.003], [0.9229, 0.0217, 0.0149, 0.0103, 0.007, 0.0055, 0.0043, 0.0023], [0.7412, 0.0689, 0.0504, 0.027, 0.0224, 0.012, 0.0099, 0.0077], [0.9889, 0.004, 0.0025, 0.0006, 0.0006, 0.0005, 0.0005, 0.0005], [0.9133, 0.0215, 0.0167, 0.0079, 0.0079, 0.0079, 0.0051, 0.0031], [0.923, 0.0169, 0.0116, 0.009, 0.008, 0.0062, 0.0048, 0.0029], [0.855, 0.0619, 0.0376, 0.0061, 0.0051, 0.0037, 0.0033, 0.0031], [0.5617, 0.2066, 0.0861, 0.0407, 0.0407, 0.0205, 0.011, 0.0018], [0.87, 0.0181, 0.0159, 0.0159, 0.011, 0.011, 0.0097, 0.0097], [0.7832, 0.0268, 0.0252, 0.0237, 0.0222, 0.0173, 0.0163, 0.0135], [0.5035, 0.1273, 0.0531, 0.0499, 0.0152, 0.0152, 0.0118, 0.0104], [0.6642, 0.1679, 0.1154, 0.0331, 0.0057, 0.0031, 0.0019, 0.0016], [0.7, 0.1562, 0.0395, 0.0308, 0.0128, 0.01, 0.0047, 0.0047], [0.3743, 0.3304, 0.1377, 0.0946, 0.0186, 0.012, 0.003, 0.0029], [0.8346, 0.088, 0.0685, 0.003, 0.0027, 0.0006, 0.0005, 0.0004], [0.6453, 0.2095, 0.099, 0.0364, 0.0034, 0.003, 0.0006, 0.0006], [0.5889, 0.1912, 0.1912, 0.0178, 0.0033, 0.0016, 0.0007, 0.0004], [0.5558, 0.2975, 0.124, 0.0033, 0.002, 0.002, 0.0015, 0.0011], [0.505, 0.2703, 0.2105, 0.0119, 0.0009, 0.0002, 0.0002, 0.0002], [0.8767, 0.0816, 0.0385, 0.0028, 0.0002, 0.0, 0.0, 0.0], [0.4419, 0.3441, 0.2087, 0.0038, 0.0004, 0.0002, 0.0002, 0.0002], [0.6517, 0.1867, 0.1283, 0.0286, 0.0008, 0.0006, 0.0005, 0.0005], [0.5583, 0.2327, 0.2054, 0.0033, 0.0001, 0.0001, 0.0, 0.0], [0.4526, 0.3994, 0.1469, 0.0003, 0.0002, 0.0002, 0.0001, 0.0], [0.5098, 0.2729, 0.2125, 0.001, 0.0004, 0.0003, 0.0003, 0.0003], [0.5042, 0.3465, 0.1275, 0.0105, 0.0025, 0.001, 0.0007, 0.0005], [0.6798, 0.092, 0.0558, 0.0233, 0.016, 0.016, 0.0103, 0.0097], [0.5781, 0.0886, 0.0782, 0.037, 0.0288, 0.027, 0.0198, 0.0164], [0.3, 0.2647, 0.1606, 0.0759, 0.0669, 0.0246, 0.008, 0.0071], [0.2415, 0.2131, 0.0539, 0.0539, 0.0539, 0.0225, 0.0211, 0.0198], [0.3053, 0.1123, 0.1123, 0.0875, 0.0468, 0.0413, 0.0343, 0.0284], [0.1982, 0.1543, 0.1362, 0.0568, 0.0471, 0.0471, 0.0268, 0.0196], [0.221, 0.1951, 0.1183, 0.0813, 0.0384, 0.0181, 0.017, 0.015], [0.3881, 0.0764, 0.0674, 0.0595, 0.0463, 0.0463, 0.0409, 0.0384], [0.1973, 0.1197, 0.0726, 0.0531, 0.044, 0.0365, 0.0365, 0.0343], [0.1306, 0.0699, 0.0544, 0.0544, 0.048, 0.0424, 0.0351, 0.033], [0.1199, 0.1058, 0.0532, 0.05, 0.047, 0.0303, 0.0251, 0.0222], [0.0801, 0.0664, 0.0486, 0.0334, 0.0334, 0.0314, 0.0314, 0.0244], [0.117, 0.117, 0.0856, 0.0666, 0.043, 0.038, 0.0278, 0.0261], [0.2964, 0.1236, 0.0515, 0.0455, 0.0455, 0.0455, 0.0377, 0.0333], [0.1697, 0.1167, 0.1167, 0.0665, 0.0429, 0.0403, 0.0295, 0.0277], [0.1505, 0.0913, 0.0913, 0.0806, 0.0711, 0.0554, 0.0431, 0.0296], [0.7246, 0.0595, 0.0525, 0.0219, 0.0193, 0.0103, 0.008, 0.008], [0.63, 0.0752, 0.0456, 0.0216, 0.019, 0.0168, 0.0148, 0.0115], [0.7682, 0.104, 0.0631, 0.0263, 0.0075, 0.004, 0.0028, 0.0024], [0.8282, 0.0873, 0.0364, 0.025, 0.0063, 0.0023, 0.0018, 0.0018], [0.5567, 0.2048, 0.1807, 0.0314, 0.0102, 0.0079, 0.0018, 0.0014], [0.6431, 0.2088, 0.0411, 0.0411, 0.022, 0.0104, 0.0092, 0.0028], [0.3696, 0.3696, 0.0728, 0.039, 0.0366, 0.0196, 0.0143, 0.0082], [0.5405, 0.1988, 0.0645, 0.0503, 0.0444, 0.0325, 0.0105, 0.0053]], "ranks": {"Rust": [82650, 150908, 126781, 55243, 72863, 51732, 57123, 49940, 58757, 54511, 71487, 58572, 28986, 33001, 85523, 43761, 97583, 84630, 150556, 172004, 202236, 162645, 185210, 200980, 143034, 158805, 174306, 133396, 158650, 101199, 111690, 66981, 96720, 135241, 135822, 121706, 113907, 140315, 159073, 165397, 135329, 145178, 90584, 90156, 44745, 16709, 15904, 7285, 10114, 13725, 25145, 23962, 31744, 39906, 52376, 30223, 31119, 42663, 44436, 4464, 4216, 3200, 3026]}}, {"pos": 592, "top": [[" *@", " <![", " ****", "*\u201d,", "**\u201d,", "@@@@", " **.**", " #\""], [" **\u3010", " **\u2018", " **:**", " **\u25a0", " **:", "**\u201d,", "\u2019**", " **>>"], [" **\u3010", "\u2019**", " **\u2018", " \uff5c", "**\u201d,", "\uff1f**", " **\u25a0", " **'"], [" **\u3010", " **\u25a0", " **\u300c", " **>>", "\uff3f\uff3f", " **:**", " **:", " /**<"], [" **\u3010", " **\u25a0", " **\u201c", " **\u300c", " **)", " <![", "\u2019**", " @_"], [" **\u3010", " **\u25a0", " **\u300c", " **\u201c", " **)", " **:", "\u2019**", " **\u25cb"], [" **\u3010", " **\u300c", " **\u201c", " **\u25a0", "\u2019**", "<|im_end|>", " **\"", " **)"], [" **\u3010", " **\u300c", " **\u25a0", " **\u201c", "(___", " ___", " **\"", "\u2019**"], [" **\u3010", " **\u300c", " **\u201c", " **\u25a0", "<|im_end|>", "(___", "\r\n\r\n\r\n\r\n", " *@"], [" **\u3010", " **\u300c", " **\u25a0", "(___", "\u2019**", " <![", " **\u201c", " **>>"], [" **\u3010", " **\u300c", "<|im_end|>", " **\u25a0", " ___", "\r\n\r\n\r\n\r\n", " <?", " <!["], [" **\u3010", " **\u300c", " **\u25a0", " ___", "(___", " **\u201c", " *__", " $__"], [" **\u3010", " **\u300c", "(___", " **\u25a0", " ___", "\uff1f**", " **\u201c", "\u2019**"], [" **\u3010", " **\u300c", " **\u25a0", "(___", "<|im_end|>", "\u2019**", "\r\n\r\n\r\n\r\n", "\uff1f**"], [" **\u3010", "<|im_end|>", "\r\n\r\n\r\n\r\n", " **\u300c", " ___", "___", "\uff1f**", " **\u25a0"], [" **\u3010", "<|im_end|>", "___", "\r\n\r\n\r\n\r\n", "\uff1f**", "</think>", " ___", "\u548c"], ["<|im_end|>", " **\u3010", "</think>", "\r\n\r\n\r\n\r\n", "___", "<think>", " ___", "\u2019**"], ["<|im_end|>", " **\u3010", "\r\n\r\n\r\n\r\n", "</think>", "___", "\u2019**", "<think>", "\uff1f**"], ["<|im_end|>", " **\u3010", "</think>", "\r\n\r\n\r\n\r\n", "\u2019**", "\uff1f**", "___", "\u548c"], ["<|im_end|>", " **\u3010", "\r\n\r\n\r\n\r\n", "</think>", "\u548c", "<think>", " <![", "\n\n\n\n\n\n\n\n\n\n"], ["<|im_end|>", "</think>", "\r\n\r\n\r\n\r\n", "\u548c", " **\u3010", "\n\n\n\n\n", "\n\n", "\u5728"], ["<|im_end|>", " **\u3010", "</think>", "\r\n\r\n\r\n\r\n", "\u548c", "___", "<think>", "\u5728"], ["<|im_end|>", "\r\n\r\n\r\n\r\n", "</think>", "___", "\u548c", "\n\n", " **\u3010", "\n\n\n\n\n"], ["<|im_end|>", "\r\n\r\n\r\n\r\n", "</think>", "___", "\n\n", "\n\n\n\n\n", "\u548c", " **\u3010"], ["<|im_end|>", "\r\n\r\n\r\n\r\n", "\n\n", "</think>", "\n\n\n\n\n", "\r\n\r\n", "\n\n\n\n", "___"], ["<|im_end|>", "___", "\r\n\r\n\r\n\r\n", "</think>", " **\u3010", " ___", "\n\n\n\n\n", "\u548c"], ["<|im_end|>", "\r\n\r\n\r\n\r\n", "</think>", "___", "\n\n", " **\u3010", "\n\n\n\n\n", " ___"], ["<|im_end|>", "\n\n", "</think>", "\r\n\r\n\r\n\r\n", "\n\n\n\n\n", "___", "\n\n\n\n", "\r\n\r\n"], ["<|im_end|>", "\n\n", "<|endoftext|>", "\n\n\n\n\n", "\r\n\r\n\r\n\r\n", "\n\n\n\n", "\n\n\n", "</think>"], ["<|im_end|>", "\n\n", "\n\n\n\n\n", "\r\n\r\n\r\n\r\n", "</think>", "\n\n\n\n", "<|endoftext|>", "\n\n\n"], ["<|im_end|>", "\r\n\r\n\r\n\r\n", "\n\n", "<|endoftext|>", "</think>", "\n\n\n\n\n", "\n\n\n\n\n\n\n\n\n\n", "\n\n\n\n"], ["<|im_end|>", "<|endoftext|>", "\n\n", "\n\n\n\n\n", "\n\n\n\n", "\n\n\n", "\r\n\r\n\r\n\r\n", "</think>"], ["<|im_end|>", "<|endoftext|>", "\n\n", "\n\n\n\n\n", "\n\n\n", "\n\n\n\n", "</think>", "\r\n\r\n\r\n\r\n"], ["<|im_end|>", "<|endoftext|>", "\n\n", "</think>", "\r\n\r\n\r\n\r\n", "\n\n\n\n\n", "\n\n\n\n", "\n\n\n\n\n\n\n\n\n\n"], ["<|endoftext|>", "<|im_end|>", "\n\n", "</think>", "\n\n\n\n\n", "\r\n\r\n\r\n\r\n", "<|im_start|>", "\n\n\n\n"], ["<|endoftext|>", "<|im_end|>", "\n\n", "</think>", "\n\n\n\n\n", "<|im_start|>", "\r\n\r\n\r\n\r\n", "\u3002"], ["<|endoftext|>", "<|im_end|>", "\n\n", "</think>", "<|im_start|>", "\n\n\n\n\n", " \n\n", "\r\n\r\n\r\n\r\n"], ["<|endoftext|>", "<|im_end|>", "\n\n", "</think>", "<|im_start|>", "<|file_sep|>", "\n\n\n\n\n", " \n\n"], ["<|endoftext|>", "<|im_end|>", "</think>", "<|im_start|>", "\n\n", "<|file_sep|>", "\r\n\r\n\r\n\r\n", "\n\n\n\n\n"], ["<|endoftext|>", "<|im_end|>", "</think>", "<|im_start|>", "<|file_sep|>", "\u3002", "\r\n\r\n\r\n\r\n", "\n\n"], ["<|endoftext|>", "<|im_end|>", "<|im_start|>", "</think>", "\n\n", " \n\n", "\u3002", "<|file_sep|>"], ["<|endoftext|>", "<|im_end|>", "\n\n", " \n\n", "<|im_start|>", "</think>", "<|file_sep|>", "  \n\n"], ["<|endoftext|>", "<|im_end|>", "\n\n", " \n\n", "  \n\n", "</think>", "\r\n\r\n\r\n\r\n", "<|file_sep|>"], ["<|endoftext|>", "<|im_end|>", "\n\n", " \n\n", "</think>", "<|im_start|>", "  \n\n", "\r\n\r\n\r\n\r\n"], ["<|endoftext|>", "<|im_end|>", "\n\n", "</think>", " \n\n", "  \n\n", "<|file_sep|>", "<|im_start|>"], ["<|endoftext|>", "<|im_end|>", "\n\n", "</think>", "<|file_sep|>", " \n\n", "  \n\n", "<|im_start|>"], ["<|endoftext|>", "<|im_end|>", "</think>", "\n\n", "<|file_sep|>", "<|im_start|>", ")\uff0c", "\u3002"], ["<|im_end|>", "<|endoftext|>", "</think>", "\n\n", "  \n\n", " \n\n", "\u3002", "\u5728"], ["<|im_end|>", "<|endoftext|>", "</think>", "<|im_start|>", "\u3002", "<|file_sep|>", "  \n\n", "**\u3002"], ["<|im_end|>", "<|endoftext|>", "</think>", ">**", "]**", "**\u3002", "\u3002**", "\uff1f**"], ["<|endoftext|>", "<|im_end|>", "</think>", "<|file_sep|>", "<|im_start|>", " \n\n", "<|fim_middle|>", "\u3002"], ["<|im_end|>", "<|endoftext|>", "<|im_start|>", "</think>", "<|file_sep|>", "\u3002", " \n\n", "<|fim_middle|>"], ["<|endoftext|>", "<|im_end|>", "<|im_start|>", "</think>", "<|file_sep|>", ";**", " \n\n", "\r\n\r\n\r\n\r\n"], ["<|im_end|>", "<|endoftext|>", "<|im_start|>", "</think>", "<|file_sep|>", ";**", ">**", "]**"], ["<|im_end|>", "<|endoftext|>", "<|im_start|>", "</think>", "<|file_sep|>", "\u7528\u6237", ">**", ";**"], ["<|im_end|>", "<|endoftext|>", "</think>", "<|im_start|>", "<|file_sep|>", ">**", "\u7528\u6237", ";**"], ["<|im_end|>", "<|im_start|>", "</think>", ">**", "\u5355", "\u7528\u6237", ";**", "<|file_sep|>"], ["<|im_end|>", "<|im_start|>", "</think>", "\u7528\u6237", "\u5355", "<|endoftext|>", "\u53cc", "<|file_sep|>"], ["<|im_end|>", "</think>", "<|im_start|>", "\u5355", "\u53cc", "<|endoftext|>", "\u7528\u6237", ";**"], ["<|im_end|>", "<|endoftext|>", "<|im_start|>", "</think>", "\u5355", "\u7528\u6237", ";**", "assistant"], ["<|im_end|>", "<|endoftext|>", "<|im_start|>", "</think>", "\u7528\u6237", "<|file_sep|>", "ouser", "-users"], ["<|im_end|>", "<|endoftext|>", "<|im_start|>", "</think>", "\u7528\u6237", "user", "\r", "\u5927\u53d1"], ["\n", "<|im_end|>", "<|im_start|>", " Ngh", "\n     \n", "\u000b", " Sure", " Ries"]], "p": [[0.0706, 0.055, 0.0517, 0.0229, 0.0215, 0.0215, 0.0168, 0.0168], [0.1564, 0.1009, 0.0891, 0.0837, 0.0395, 0.0328, 0.0289, 0.024], [0.2964, 0.14, 0.0962, 0.0661, 0.0584, 0.0312, 0.0215, 0.0202], [0.4425, 0.209, 0.0987, 0.0134, 0.0104, 0.0086, 0.0081, 0.0081], [0.6742, 0.1034, 0.018, 0.018, 0.0102, 0.009, 0.0075, 0.0062], [0.8438, 0.0371, 0.0289, 0.0255, 0.0083, 0.0044, 0.0032, 0.0024], [0.8279, 0.0439, 0.0195, 0.0161, 0.0067, 0.0034, 0.0028, 0.0026], [0.8489, 0.035, 0.0155, 0.0129, 0.0057, 0.0042, 0.0031, 0.0025], [0.8088, 0.0277, 0.0131, 0.0108, 0.0062, 0.0062, 0.0051, 0.0042], [0.6905, 0.0415, 0.0323, 0.0105, 0.0082, 0.0082, 0.0077, 0.006], [0.7382, 0.0253, 0.0119, 0.0119, 0.0112, 0.0064, 0.0064, 0.006], [0.7913, 0.0271, 0.0198, 0.012, 0.01, 0.0042, 0.0042, 0.0037], [0.7666, 0.0432, 0.0149, 0.0149, 0.0091, 0.0046, 0.0046, 0.0043], [0.6968, 0.0306, 0.0136, 0.0106, 0.0099, 0.0099, 0.0077, 0.0073], [0.6365, 0.0433, 0.0141, 0.0132, 0.011, 0.011, 0.0097, 0.0097], [0.384, 0.3183, 0.0191, 0.018, 0.0131, 0.0123, 0.009, 0.0075], [0.8945, 0.0505, 0.0093, 0.0077, 0.0073, 0.002, 0.0016, 0.0011], [0.8605, 0.0706, 0.0096, 0.0096, 0.004, 0.0027, 0.002, 0.0018], [0.4175, 0.3685, 0.0208, 0.0208, 0.0067, 0.0067, 0.006, 0.0044], [0.8375, 0.0472, 0.0185, 0.0144, 0.0056, 0.0025, 0.0024, 0.0021], [0.9874, 0.0024, 0.0022, 0.0011, 0.0007, 0.0006, 0.0005, 0.0004], [0.8419, 0.0394, 0.0154, 0.012, 0.0094, 0.0094, 0.0032, 0.0022], [0.9826, 0.0035, 0.0031, 0.0013, 0.001, 0.001, 0.0009, 0.0009], [0.9895, 0.0025, 0.0019, 0.0007, 0.0006, 0.0005, 0.0005, 0.0005], [0.9908, 0.0022, 0.0022, 0.0009, 0.0005, 0.0004, 0.0004, 0.0004], [0.9735, 0.0051, 0.0045, 0.0029, 0.0021, 0.0011, 0.0007, 0.0005], [0.9763, 0.004, 0.0031, 0.0031, 0.002, 0.0011, 0.0009, 0.0007], [0.9856, 0.0059, 0.0022, 0.0017, 0.0007, 0.0007, 0.0004, 0.0003], [0.9238, 0.046, 0.0149, 0.0038, 0.0029, 0.002, 0.0016, 0.001], [0.9788, 0.0051, 0.004, 0.0035, 0.0017, 0.0013, 0.0008, 0.0007], [0.959, 0.0065, 0.0065, 0.0057, 0.005, 0.0031, 0.001, 0.0009], [0.9545, 0.0254, 0.0154, 0.001, 0.0006, 0.0005, 0.0005, 0.0004], [0.6018, 0.365, 0.03, 0.0008, 0.0004, 0.0003, 0.0003, 0.0003], [0.5255, 0.4637, 0.0075, 0.0007, 0.0005, 0.0004, 0.0001, 0.0001], [0.8347, 0.1644, 0.0006, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.6786, 0.3206, 0.0003, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.8807, 0.1192, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9841, 0.0159, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9841, 0.0159, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9578, 0.0421, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9859, 0.0141, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9932, 0.0067, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9622, 0.0373, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9521, 0.0474, 0.0004, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9663, 0.0331, 0.0006, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9045, 0.0953, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.6504, 0.3481, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.962, 0.0373, 0.0003, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9732, 0.0259, 0.0006, 0.0, 0.0, 0.0, 0.0, 0.0], [0.8254, 0.0677, 0.0363, 0.0098, 0.0063, 0.0052, 0.0041, 0.0034], [0.6512, 0.3486, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0], [0.5923, 0.4071, 0.0003, 0.0002, 0.0, 0.0, 0.0, 0.0], [0.7039, 0.2934, 0.0025, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.6186, 0.3752, 0.0047, 0.0012, 0.0001, 0.0, 0.0, 0.0], [0.978, 0.0123, 0.0058, 0.0027, 0.0002, 0.0001, 0.0, 0.0], [0.9993, 0.0002, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9929, 0.0015, 0.0006, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9844, 0.0017, 0.0012, 0.0007, 0.0003, 0.0003, 0.0002, 0.0002], [0.9748, 0.0014, 0.0012, 0.0009, 0.0006, 0.0005, 0.0004, 0.0003], [0.8212, 0.0141, 0.0097, 0.0049, 0.0028, 0.0017, 0.0016, 0.0012], [0.9419, 0.0414, 0.0032, 0.0006, 0.0001, 0.0001, 0.0001, 0.0001], [0.9249, 0.0192, 0.0066, 0.0017, 0.0004, 0.0003, 0.0003, 0.0002], [0.2469, 0.2469, 0.0084, 0.0055, 0.0034, 0.0025, 0.0016, 0.0013]], "ranks": {"Rust": [171484, 184851, 159902, 125532, 111799, 90009, 82430, 74630, 70567, 58953, 69895, 50660, 45531, 39101, 35232, 33354, 39706, 48600, 49335, 38305, 37540, 41354, 65109, 62099, 41428, 47928, 40926, 36596, 29199, 22767, 29123, 24220, 41982, 41682, 55003, 69733, 74617, 89030, 84124, 74116, 55791, 49429, 84482, 91829, 72098, 41778, 16339, 34851, 36809, 43295, 62594, 53887, 19154, 47904, 64314, 56021, 100080, 163839, 136074, 53929, 15092, 5948, 83]}}, {"pos": 593, "top": [[".", " \u2013", "\u2013", ",", " \u2013,", "\u00a0\u00a0", ".\u2013", "\u2013and"], ["   \n", "\u2013and", " \u2013", "\u2013", "  \n", "  \n  \n", " \u2013,", " \u2013**"], ["\u2013", ".", " \u2013", "\u2026..", "\u3002", ".\u2013", "\u2013and", " \u2013,"], [" milfs", " Blowjob", " Shemale", " cumshot", " pornstar", " YYS", " pupper", "-------------</"], ["\u52a0\u62ff\u5927", " Guta", "\u65b0\u52a0\u5761", "enzi", " @_", "erweise", " **\u201e", "pedia"], [" Guta", "\uff1f", "\uff1f**", "\u52a0\u62ff\u5927", "pedia", "enzi", "\u65b0\u52a0\u5761", " **\u201e"], ["\uff1f**", "____", "\u4e2d", "\u6709", "\uff1f", "\u662f", "\u5728", "\uff08"], ["   \n\n", "(___", "  \n\n", "       \n\n", "    \n\n", "     \n\n", "____", "  \r\n"], ["   \n\n", "  \n\n", "    \n\n", "       \n\n", "  \n\n\n", "     \n\n", "____", " ____"], ["  \n\n", "   \n\n", "____", "  \n\n\n", "___", " _$", "  \r\n\r\n", "       \n\n"], ["  \n\n", "\n\n", "____", "___", " ___", "   \n\n", "\r\n\r\n", " ____"], [" _$", " *__", "(___", " ___", "____", "___", " **\u3010", " ____"], ["___", "____", " ___", "...**", "(___", " _:", " ____", "\uff1f**"], ["___", "...**", "____", "\n\n", "...\\", " ___", " _:", "  \n\n"], ["\n\n", "  \n\n", "___", " \n\n", "\r\n\r\n", "<|im_end|>", "____", "   \n\n"], ["\n\n", "___", "____", "...**", "...\\", "<|im_end|>", "\u4ec0\u4e48", " ___"], ["\n\n", "<|im_end|>", "___", "...**", "____", "\u4ec0\u4e48", "...\\", "\n\n\n\n"], ["___", "\n\n", "\u4ec0\u4e48", "<|im_end|>", "...**", "\uff1f**", "____", "**\u3002"], ["___", "\u4ec0\u4e48", "\uff1f**", "...**", "____", "<|im_end|>", " **\u3010", "\n\n"], ["\n\n", "\u4ec0\u4e48", "<|im_end|>", "\r\n\r\n", "___", "\n\n\n\n", "  \n\n", "\u591a"], ["\n\n", "<|endoftext|>", "  \n\n", "<|im_end|>", " \n\n", "\r\n\r\n", "\n\n\n\n", "\n\n\n"], ["\n\n", "<|im_end|>", "\r\n\r\n", "\n\n\n\n", "___", "\u4ec0\u4e48", "  \n\n", "\n\n\n"], ["\n\n", "<|im_end|>", "<|endoftext|>", "\r\n\r\n", "\n\n\n\n", "  \n\n", "\n\n\n", " \n\n"], ["\n\n", "<|endoftext|>", "<|im_end|>", "  \n\n", "\r\n\r\n", "\n\n\n", "\n\n\n\n", " \n\n"], ["\n\n", "  \n\n", "<|im_end|>", " \n\n", "\r\n\r\n", "\n\n\n\n", "<|endoftext|>", "   \n\n"], ["\n\n", "<|im_end|>", "  \n\n", "\r\n\r\n", "___", "____", " \n\n", "\n\n\n\n"], ["\n\n", "  \n\n", "<|im_end|>", " \n\n", "\r\n\r\n", "\n\n\n\n", "___", "____"], ["\n\n", "  \n\n", " \n\n", "<|im_end|>", "\n\n\n\n", "\r\n\r\n", "\n\n\n", "<|endoftext|>"], ["\n\n", "  \n\n", "<|im_end|>", " \n\n", "<|endoftext|>", "\n\n\n\n", "\r\n\r\n", "\n\n\n"], ["\n\n", "<|im_end|>", "  \n\n", " \n\n", "\n\n\n\n", "<|endoftext|>", "\n\n\n", "\r\n\r\n"], ["\n\n", "<|im_end|>", "  \n\n", " \n\n", "<|endoftext|>", "\n\n\n\n", "\u2026\u2026", "...**"], ["\n\n", "<|im_end|>", "  \n\n", " \n\n", "<|endoftext|>", "...", "...**", "\n\n\n\n"], ["\n\n", "<|endoftext|>", "  \n\n", "<|im_end|>", " \n\n", "...", "\u2026", "\n\n\n\n"], ["\n\n", "<|endoftext|>", "<|im_end|>", "  \n\n", "...", " \n\n", "\n\n\n\n", "\u2026"], ["\n\n", "<|endoftext|>", "<|im_end|>", "  \n\n", "...", " \n\n", "\n\n\n\n", "\u2026\u2026"], ["\n\n", "<|endoftext|>", "<|im_end|>", "  \n\n", " \n\n", "\u2026\u2026", "\n\n\n\n", "\u2026"], ["\n\n", "<|endoftext|>", "<|im_end|>", "  \n\n", " \n\n", "\u2026\u2026", "\n\n\n\n", "\n\n\n"], ["\n\n", "<|im_end|>", "<|endoftext|>", "  \n\n", "\u2026\u2026", " \n\n", "\n\n\n\n", "<|im_start|>"], ["\n\n", "<|endoftext|>", "<|im_end|>", "  \n\n", "\u2026\u2026", "...", " \n\n", "...**"], ["<|im_end|>", "<|endoftext|>", "\n\n", "\u2026\u2026", "  \n\n", "...", "...**", " \n\n"], ["<|im_end|>", "<|endoftext|>", "\n\n", "\u2026\u2026", "  \n\n", "\uff1f", "...", "\u2026"], ["\n\n", "<|endoftext|>", "<|im_end|>", "  \n\n", "\u2026\u2026", " \n\n", "\n\n\n\n", "..."], ["\n\n", "<|im_end|>", "<|endoftext|>", "  \n\n", "...**", "...", "\u2026\u2026", "...\""], ["<|im_end|>", "\n\n", "<|endoftext|>", "  \n\n", "\u2026\u2026", "...**", "...", "...</"], ["<|im_end|>", "\n\n", "<|endoftext|>", "  \n\n", "...", "...**", "...\"", "...</"], ["<|im_end|>", "\n\n", "<|endoftext|>", "  \n\n", " \n\n", "<|im_start|>", "...", "...\""], ["<|im_end|>", "\n\n", "<|endoftext|>", "  \n\n", " \n\n", "<|im_start|>", "\u3002", "   \n\n"], ["<|im_end|>", "\n\n", "<|endoftext|>", "  \n\n", " \n\n", "\u3002", "...</", "</think>"], ["<|im_end|>", "<|endoftext|>", "\n\n", "  \n\n", " \n\n", "\u3002", "<|im_start|>", "</think>"], ["<|im_end|>", "<|endoftext|>", "<|im_start|>", "<think>", "</think>", "\"</", "\"/>", "\"></"], ["<|endoftext|>", "<|im_end|>", "<|im_start|>", "</think>", "<|file_sep|>", "<think>", "\n\n", "\"/>"], ["<|endoftext|>", "<|im_end|>", "<|im_start|>", "</think>", "<think>", "<|file_sep|>", "\"/>", "\"</"], ["<|endoftext|>", "<|im_end|>", "<|im_start|>", "</think>", "**", "**\u201d", "]**", "<think>"], ["<|endoftext|>", "<|im_end|>", "<|im_start|>", "</think>", "**", "]**", "**\u201d", "\"**"], ["<|endoftext|>", "<|im_end|>", "<|im_start|>", "</think>", "\u7528\u6237", "user", "User", "\u7528\u6237\u7684"], ["<|endoftext|>", "<|im_start|>", "<|im_end|>", "\u7528\u6237", "</think>", "user", "]**", "User"], ["<|im_start|>", "<|endoftext|>", "\u7528\u6237", "</think>", "<|im_end|>", "user", "\"*", "...*"], ["<|im_start|>", "</think>", "<|endoftext|>", "\u7528\u6237", "<|im_end|>", "user", "...*", "User"], ["<|im_start|>", "</think>", "<|endoftext|>", "\u7528\u6237", "<|im_end|>", "...*", "\"*", "User"], ["<|im_start|>", "</think>", "<|im_end|>", "<|endoftext|>", "\u7528\u6237", "**", "...*", "user"], ["<|im_start|>", "<|endoftext|>", "</think>", "<|im_end|>", "**", "*", "\u7528\u6237", "user"], ["<|endoftext|>", "<|im_start|>", "</think>", "<|im_end|>", "*", "**", "user", "...*"], ["<|im_start|>", "<|endoftext|>", "</think>", "**", "<|im_end|>", " **", "\n\n", "\u7528\u6237"]], "p": [[0.7149, 0.263, 0.0085, 0.0023, 0.0014, 0.0011, 0.001, 0.0009], [0.0297, 0.0192, 0.0159, 0.0109, 0.0097, 0.0085, 0.008, 0.0075], [0.3805, 0.14, 0.0962, 0.0849, 0.0548, 0.0484, 0.0454, 0.0243], [0.0349, 0.0155, 0.0146, 0.0107, 0.0039, 0.0037, 0.0035, 0.0035], [0.022, 0.0117, 0.0086, 0.0063, 0.0056, 0.0046, 0.0025, 0.0023], [0.0099, 0.0064, 0.0064, 0.0056, 0.0047, 0.0047, 0.0044, 0.0028], [0.0938, 0.0324, 0.0305, 0.0237, 0.0197, 0.0185, 0.0163, 0.0163], [0.1979, 0.047, 0.0366, 0.0285, 0.0285, 0.0184, 0.0184, 0.0173], [0.3804, 0.2614, 0.0962, 0.0401, 0.0293, 0.0276, 0.0276, 0.0157], [0.1723, 0.0718, 0.0595, 0.0339, 0.0248, 0.0193, 0.0182, 0.0151], [0.245, 0.2162, 0.1157, 0.0901, 0.0353, 0.0243, 0.0243, 0.0189], [0.0822, 0.0772, 0.064, 0.0601, 0.0468, 0.0413, 0.0365, 0.0235], [0.3155, 0.2037, 0.1091, 0.0354, 0.0294, 0.0294, 0.0229, 0.0202], [0.2915, 0.2133, 0.1768, 0.042, 0.0289, 0.0271, 0.0088, 0.0083], [0.9869, 0.0075, 0.0012, 0.0009, 0.0006, 0.0003, 0.0003, 0.0003], [0.6918, 0.0997, 0.0471, 0.0442, 0.0135, 0.0119, 0.0064, 0.006], [0.7953, 0.1076, 0.0396, 0.0113, 0.01, 0.0057, 0.0031, 0.0021], [0.1482, 0.1154, 0.0957, 0.0745, 0.0452, 0.0375, 0.0257, 0.0201], [0.2026, 0.1577, 0.0844, 0.0452, 0.0242, 0.0201, 0.0138, 0.0122], [0.9504, 0.006, 0.006, 0.0041, 0.0022, 0.0013, 0.0012, 0.0006], [0.9852, 0.0141, 0.0005, 0.0002, 0.0, 0.0, 0.0, 0.0], [0.9993, 0.0002, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9998, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9932, 0.0067, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.999, 0.0005, 0.0003, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9973, 0.0012, 0.0005, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9996, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9975, 0.0025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9902, 0.0097, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.7304, 0.2687, 0.0009, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9103, 0.0847, 0.0042, 0.0006, 0.0001, 0.0001, 0.0, 0.0], [0.9711, 0.0259, 0.0027, 0.0002, 0.0, 0.0, 0.0, 0.0], [0.4188, 0.3261, 0.254, 0.0004, 0.0003, 0.0001, 0.0, 0.0], [0.4049, 0.3153, 0.2783, 0.0005, 0.0004, 0.0001, 0.0001, 0.0], [0.4738, 0.369, 0.1538, 0.001, 0.0009, 0.0001, 0.0001, 0.0001], [0.4476, 0.395, 0.1453, 0.0064, 0.0014, 0.0005, 0.0004, 0.0004], [0.7152, 0.2322, 0.0518, 0.0004, 0.0001, 0.0001, 0.0, 0.0], [0.5418, 0.3724, 0.0733, 0.0028, 0.0022, 0.0013, 0.0012, 0.0007], [0.8495, 0.115, 0.0291, 0.0013, 0.0009, 0.0006, 0.0005, 0.0005], [0.8365, 0.0882, 0.0687, 0.0013, 0.0013, 0.0006, 0.0006, 0.0004], [0.8977, 0.065, 0.0348, 0.0015, 0.0004, 0.0001, 0.0001, 0.0], [0.5896, 0.3576, 0.0427, 0.0058, 0.0031, 0.0001, 0.0001, 0.0001], [0.9619, 0.0256, 0.0107, 0.0003, 0.0003, 0.0001, 0.0001, 0.0001], [0.9882, 0.0046, 0.0046, 0.0004, 0.0003, 0.0002, 0.0002, 0.0001], [0.991, 0.0067, 0.0004, 0.0004, 0.0003, 0.0001, 0.0001, 0.0001], [0.9914, 0.0086, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9461, 0.0534, 0.0004, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9864, 0.0124, 0.0009, 0.0002, 0.0, 0.0, 0.0, 0.0], [0.9922, 0.0041, 0.0032, 0.0004, 0.0001, 0.0, 0.0, 0.0], [0.6723, 0.17, 0.0803, 0.0379, 0.0335, 0.0015, 0.0013, 0.0003], [0.4511, 0.2415, 0.1293, 0.1141, 0.037, 0.006, 0.0022, 0.0018], [0.4176, 0.1973, 0.1741, 0.1356, 0.0251, 0.0049, 0.0025, 0.0023], [0.5746, 0.1282, 0.1132, 0.1132, 0.0112, 0.005, 0.0047, 0.0044], [0.5525, 0.1397, 0.1233, 0.1088, 0.0095, 0.0079, 0.0051, 0.0045], [0.5953, 0.219, 0.0459, 0.0278, 0.0217, 0.0102, 0.0052, 0.0038], [0.5633, 0.3015, 0.1109, 0.015, 0.0016, 0.0015, 0.0007, 0.0005], [0.5951, 0.3609, 0.038, 0.0018, 0.0007, 0.0005, 0.0003, 0.0002], [0.8518, 0.148, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {"Rust": [37393, 57861, 58877, 57585, 37590, 25105, 30165, 31003, 39564, 40730, 30241, 16541, 13937, 8690, 24809, 13415, 29829, 45510, 61804, 115088, 133183, 101143, 107568, 138297, 53783, 44960, 65482, 69309, 53840, 54884, 79522, 80354, 66454, 78897, 75030, 83631, 112099, 105695, 104508, 91927, 83363, 92137, 87733, 90769, 45707, 25277, 30695, 61193, 40058, 72886, 22103, 58378, 73086, 79639, 65989, 46201, 32264, 20750, 28747, 13657, 10098, 7359, 2942]}}], "cast": [{"w": "s", "n": 920, "best": 1, "layers": [0, 62], "score": 689.49, "echo": true}, {"w": "hardware", "n": 1251, "best": 1, "layers": [11, 62], "score": 597.31, "echo": true}, {"w": "incredibly", "n": 1035, "best": 1, "layers": [9, 62], "score": 452.62, "echo": false}, {"w": "Android", "n": 919, "best": 1, "layers": [6, 62], "score": 423.05, "echo": true}, {"w": "tech", "n": 896, "best": 1, "layers": [10, 53], "score": 341.2, "echo": true}, {"w": "arguably", "n": 760, "best": 1, "layers": [10, 47], "score": 304.52, "echo": false}, {"w": "complex", "n": 602, "best": 1, "layers": [5, 62], "score": 245.06, "echo": true}, {"w": "framerate", "n": 452, "best": 1, "layers": [12, 62], "score": 242.3, "echo": false}, {"w": "impossible", "n": 513, "best": 1, "layers": [31, 62], "score": 238.73, "echo": false}, {"w": "even", "n": 573, "best": 1, "layers": [9, 62], "score": 232.07, "echo": true}, {"w": "workflows", "n": 438, "best": 1, "layers": [11, 59], "score": 197.03, "echo": false}, {"w": "bottleneck", "n": 440, "best": 1, "layers": [11, 62], "score": 195.45, "echo": true}, {"w": "cheap", "n": 397, "best": 1, "layers": [10, 62], "score": 182.3, "echo": true}, {"w": "heavily", "n": 510, "best": 1, "layers": [14, 48], "score": 158.28, "echo": false}, {"w": "aggressively", "n": 484, "best": 1, "layers": [14, 62], "score": 157.2, "echo": false}, {"w": "fps", "n": 387, "best": 1, "layers": [11, 62], "score": 152.26, "echo": true}, {"w": "savvy", "n": 360, "best": 1, "layers": [9, 42], "score": 141.98, "echo": false}, {"w": "or", "n": 237, "best": 1, "layers": [27, 62], "score": 139.39, "echo": true}, {"w": "relentless", "n": 389, "best": 1, "layers": [13, 52], "score": 129.74, "echo": false}, {"w": "-esque", "n": 295, "best": 1, "layers": [9, 53], "score": 128.51, "echo": false}, {"w": "software", "n": 388, "best": 1, "layers": [14, 62], "score": 126.38, "echo": false}, {"w": "er", "n": 304, "best": 1, "layers": [0, 33], "score": 124.93, "echo": true}, {"w": "myriad", "n": 394, "best": 1, "layers": [10, 32], "score": 119.11, "echo": false}, {"w": "\u2013and", "n": 418, "best": 1, "layers": [0, 39], "score": 118.9, "echo": false}, {"w": "Lua", "n": 294, "best": 1, "layers": [9, 62], "score": 115.68, "echo": true}, {"w": "ing", "n": 164, "best": 1, "layers": [0, 62], "score": 113.98, "echo": true}, {"w": "requires", "n": 266, "best": 1, "layers": [34, 62], "score": 111.53, "echo": false}, {"w": "folks", "n": 302, "best": 1, "layers": [7, 29], "score": 111.06, "echo": false}, {"w": "wildly", "n": 386, "best": 1, "layers": [11, 47], "score": 108.47, "echo": false}, {"w": "CPU", "n": 340, "best": 1, "layers": [28, 62], "score": 107.89, "echo": false}, {"w": "complexity", "n": 276, "best": 1, "layers": [8, 62], "score": 106.68, "echo": false}, {"w": "scripting", "n": 214, "best": 1, "layers": [25, 62], "score": 104.57, "echo": false}, {"w": "technology", "n": 314, "best": 1, "layers": [11, 50], "score": 102.76, "echo": false}, {"w": "Python", "n": 248, "best": 1, "layers": [3, 62], "score": 101.12, "echo": true}, {"w": "big", "n": 218, "best": 1, "layers": [6, 37], "score": 100.95, "echo": false}, {"w": "speed", "n": 238, "best": 1, "layers": [19, 48], "score": 97.22, "echo": false}, {"w": "ed", "n": 209, "best": 1, "layers": [0, 61], "score": 96.75, "echo": true}, {"w": "expensive", "n": 170, "best": 1, "layers": [25, 62], "score": 92.54, "echo": false}, {"w": "notoriously", "n": 278, "best": 1, "layers": [18, 50], "score": 92.25, "echo": false}, {"w": "hugely", "n": 250, "best": 1, "layers": [9, 35], "score": 90.42, "echo": false}]}