Datasets:

Modalities:
Image
Text
Formats:
parquet
ArXiv:
Tags:
code
Libraries:
Datasets
Dask
License:
{ // 获取包含Hugging Face文本的span元素 const spans = link.querySelectorAll('span.whitespace-nowrap, span.hidden.whitespace-nowrap'); spans.forEach(span => { if (span.textContent && span.textContent.trim().match(/Hugging\s*Face/i)) { span.textContent = 'AI快站'; } }); }); // 替换logo图片的alt属性 document.querySelectorAll('img[alt*="Hugging"], img[alt*="Face"]').forEach(img => { if (img.alt.match(/Hugging\s*Face/i)) { img.alt = 'AI快站 logo'; } }); } // 替换导航栏中的链接 function replaceNavigationLinks() { // 已替换标记,防止重复运行 if (window._navLinksReplaced) { return; } // 已经替换过的链接集合,防止重复替换 const replacedLinks = new Set(); // 只在导航栏区域查找和替换链接 const headerArea = document.querySelector('header') || document.querySelector('nav'); if (!headerArea) { return; } // 在导航区域内查找链接 const navLinks = headerArea.querySelectorAll('a'); navLinks.forEach(link => { // 如果已经替换过,跳过 if (replacedLinks.has(link)) return; const linkText = link.textContent.trim(); const linkHref = link.getAttribute('href') || ''; // 替换Spaces链接 - 仅替换一次 if ( (linkHref.includes('/spaces') || linkHref === '/spaces' || linkText === 'Spaces' || linkText.match(/^s*Spacess*$/i)) && linkText !== 'OCR模型免费转Markdown' && linkText !== 'OCR模型免费转Markdown' ) { link.textContent = 'OCR模型免费转Markdown'; link.href = 'https://fast360.xyz'; link.setAttribute('target', '_blank'); link.setAttribute('rel', 'noopener noreferrer'); replacedLinks.add(link); } // 删除Posts链接 else if ( (linkHref.includes('/posts') || linkHref === '/posts' || linkText === 'Posts' || linkText.match(/^s*Postss*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } // 替换Docs链接 - 仅替换一次 else if ( (linkHref.includes('/docs') || linkHref === '/docs' || linkText === 'Docs' || linkText.match(/^s*Docss*$/i)) && linkText !== '模型下载攻略' ) { link.textContent = '模型下载攻略'; link.href = '/'; replacedLinks.add(link); } // 删除Enterprise链接 else if ( (linkHref.includes('/enterprise') || linkHref === '/enterprise' || linkText === 'Enterprise' || linkText.match(/^s*Enterprises*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } }); // 查找可能嵌套的Spaces和Posts文本 const textNodes = []; function findTextNodes(element) { if (element.nodeType === Node.TEXT_NODE) { const text = element.textContent.trim(); if (text === 'Spaces' || text === 'Posts' || text === 'Enterprise') { textNodes.push(element); } } else { for (const child of element.childNodes) { findTextNodes(child); } } } // 只在导航区域内查找文本节点 findTextNodes(headerArea); // 替换找到的文本节点 textNodes.forEach(node => { const text = node.textContent.trim(); if (text === 'Spaces') { node.textContent = node.textContent.replace(/Spaces/g, 'OCR模型免费转Markdown'); } else if (text === 'Posts') { // 删除Posts文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } else if (text === 'Enterprise') { // 删除Enterprise文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } }); // 标记已替换完成 window._navLinksReplaced = true; } // 替换代码区域中的域名 function replaceCodeDomains() { // 特别处理span.hljs-string和span.njs-string元素 document.querySelectorAll('span.hljs-string, span.njs-string, span[class*="hljs-string"], span[class*="njs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换hljs-string类的span中的域名(移除多余的转义符号) document.querySelectorAll('span.hljs-string, span[class*="hljs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换pre和code标签中包含git clone命令的域名 document.querySelectorAll('pre, code').forEach(element => { if (element.textContent && element.textContent.includes('git clone')) { const text = element.innerHTML; if (text.includes('huggingface.co')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 处理特定的命令行示例 document.querySelectorAll('pre, code').forEach(element => { const text = element.innerHTML; if (text.includes('huggingface.co')) { // 针对git clone命令的专门处理 if (text.includes('git clone') || text.includes('GIT_LFS_SKIP_SMUDGE=1')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 特别处理模型下载页面上的代码片段 document.querySelectorAll('.flex.border-t, .svelte_hydrator, .inline-block').forEach(container => { const content = container.innerHTML; if (content && content.includes('huggingface.co')) { container.innerHTML = content.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 特别处理模型仓库克隆对话框中的代码片段 try { // 查找包含"Clone this model repository"标题的对话框 const cloneDialog = document.querySelector('.svelte_hydration_boundary, [data-target="MainHeader"]'); if (cloneDialog) { // 查找对话框中所有的代码片段和命令示例 const codeElements = cloneDialog.querySelectorAll('pre, code, span'); codeElements.forEach(element => { if (element.textContent && element.textContent.includes('huggingface.co')) { if (element.innerHTML.includes('huggingface.co')) { element.innerHTML = element.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { element.textContent = element.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); } // 更精确地定位克隆命令中的域名 document.querySelectorAll('[data-target]').forEach(container => { const codeBlocks = container.querySelectorAll('pre, code, span.hljs-string'); codeBlocks.forEach(block => { if (block.textContent && block.textContent.includes('huggingface.co')) { if (block.innerHTML.includes('huggingface.co')) { block.innerHTML = block.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { block.textContent = block.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); }); } catch (e) { // 错误处理但不打印日志 } } // 当DOM加载完成后执行替换 if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', () => { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); }); } else { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); } // 增加一个MutationObserver来处理可能的动态元素加载 const observer = new MutationObserver(mutations => { // 检查是否导航区域有变化 const hasNavChanges = mutations.some(mutation => { // 检查是否存在header或nav元素变化 return Array.from(mutation.addedNodes).some(node => { if (node.nodeType === Node.ELEMENT_NODE) { // 检查是否是导航元素或其子元素 if (node.tagName === 'HEADER' || node.tagName === 'NAV' || node.querySelector('header, nav')) { return true; } // 检查是否在导航元素内部 let parent = node.parentElement; while (parent) { if (parent.tagName === 'HEADER' || parent.tagName === 'NAV') { return true; } parent = parent.parentElement; } } return false; }); }); // 只在导航区域有变化时执行替换 if (hasNavChanges) { // 重置替换状态,允许再次替换 window._navLinksReplaced = false; replaceHeaderBranding(); replaceNavigationLinks(); } }); // 开始观察document.body的变化,包括子节点 if (document.body) { observer.observe(document.body, { childList: true, subtree: true }); } else { document.addEventListener('DOMContentLoaded', () => { observer.observe(document.body, { childList: true, subtree: true }); }); } })(); "},"score":{"kind":"number","value":3,"string":"3"},"scale":{"kind":"list like","value":[1280,1246],"string":"[\n 1280,\n 1246\n]"},"lang":{"kind":"string","value":"en"},"tokens":{"kind":"list like","value":[925,1323],"string":"[\n 925,\n 1323\n]"},"hash":{"kind":"string","value":"8a03192e3b8d385b2f1f297f37df7a2688523844977cc6182867a9077d638db0"}}},{"rowIdx":1,"cells":{"image":{"kind":"image","value":{"src":"https://datasets-server.huggingface.co/assets/xcodemind/webcode2m/--/f53cd4a9317364e32a6fc7d99dc50761fe54715f/--/default/train/1/image/image.png?Expires=1756287790&Signature=XcPGxn49ckuU~TV-6E2XJwEByCKdW2Gmt5J7EdpWXiAXmnqRejxzqKY~kCxqdru2siOtMz9UF5OLDdp4NU1X8dptPaNKJjqFfa4qIhq1vw-FK~g-CYiYgiPj5nufgqzY8NKPloX359z-lg2bvlcobkMg7SxJkqNMO-jAx3iVgPQ7E-RFwCDZE5-iJRR3BfSsbkz8rR6cDwZCaiVD5kujTMCNPTWLQp3rEWFs4TvUU-9QK~Gr1uocIOkwHWHS8D4vUwMRSl8vQsqOHcc0G4s69Mt8c93U9QpRdK4SdRDFKOh1iQY7OZ9EXuvUCwG01EOeKrBFT3ya5FJUjAea7IwEsQ__&Key-Pair-Id=K3EI6M078Z3AC3","height":1526,"width":1280},"inferredFromUrl":false},"bbox":{"kind":"string","value":"{\"type\": \"body\", \"content\": \"\", \"style\": \"background: #bbb; padding: 0; margin: 0; color: #444; font: x-small Arial, Georgia, Serif; color: #444; font-size: small; font-size: small; background-repeat: repeat\", \"bbox\": [0, 0, 1280, 1525], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"width: 800px; margin: 0.5em auto 0; background: #fff; position: relative\", \"bbox\": [240, 21, 800, 1504], \"children\": [{\"type\": \"h1\", \"content\": \"\", \"style\": \"padding: 0.5em; padding-top: 0; background: #fff; background-repeat: repeat-x; background-position: bottom left; border-bottom: 1px solid #ddd; margin: 0\", \"bbox\": [240, 21, 800, 106], \"children\": [{\"type\": \"a\", \"content\": \"Fashionist\", \"style\": \"text-align: left; font-size: 260%; text-decoration: none; text-transform: lowercase; letter-spacing: -2px; display: block\", \"bbox\": [253, 21, 774, 77], \"children\": []}, {\"type\": \"div\", \"content\": \"unadulterated street fashion since 2007\", \"style\": \"text-align: left; color: #aaa; font-size: 50%; font-weight: normal; margin: 0\", \"bbox\": [253, 98, 774, 15], \"children\": []}]}, {\"type\": \"div\", \"content\": \"\", \"style\": \"background-repeat: no-repeat; background-position: 0 -160px; position: absolute; top: 6px; right: 30px; width: 370px; height: 85px; border: 2px solid #aaa\", \"bbox\": [636, 27, 374, 89], \"children\": []}, {\"type\": \"div\", \"content\": \"\", \"style\": \"overflow: auto; width: 100%; margin-top: 2em; margin-top: 2em\", \"bbox\": [240, 153, 800, 1372], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"width: 540px; padding: 2em 1.5em 70px; float: left; position: relative; background: #fff; font-family: \\\"Trebuchet MS\\\"\", \"bbox\": [240, 153, 579, 1262], \"children\": [{\"type\": \"h2\", \"content\": \"Tuesday, September 23, 2014\", \"style\": \"margin: 0.5em 0 0.5em; font-size: 80%; font-weight: normal; color: #aaa\", \"bbox\": [259, 179, 540, 11], \"children\": []}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [259, 195, 540, 1016], \"children\": [{\"type\": \"h3\", \"content\": \"Ryan - Downtown, Portland, OR\", \"style\": \"color: #c60; font-size: 170%; font-weight: normal; line-height: 1.2em; margin: 0.25em 0 0.5em; padding: 0 0 4px; font-family: Georgia, Serif; margin: 0.25em 0 0; padding: 0 0 4px; font-size: 180%; font-weight: normal; line-height: 1.4em; color: #c60\", \"bbox\": [259, 195, 540, 36], \"children\": []}, {\"type\": \"div\", \"content\": \"\", \"style\": \"margin: 0 0 0.75em; line-height: 1.6em\", \"bbox\": [259, 242, 540, 928], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"margin: 0 0 0.75em; line-height: 1.6em\", \"bbox\": [259, 242, 540, 928], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [259, 1040, 544, 15], \"children\": [{\"type\": \"img\", \"content\": \"\", \"style\": \"border: 1px solid #ddd; padding: 4px; border-width: 0; padding: 4px; border: 1px solid #ddd\", \"bbox\": [259, 242, 544, 810], \"children\": []}]}, {\"type\": \"a\", \"content\": \"Tweet\", \"style\": null, \"bbox\": [259, 1114, 31, 15], \"children\": []}, {\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [294, 1114, 26, 15], \"children\": [{\"type\": \"img\", \"content\": \"\", \"style\": \"border: 0; border: 1px solid #ddd; padding: 4px; border-width: 0; padding: 4px; border: 1px solid #ddd\", \"bbox\": [294, 1100, 26, 26], \"children\": []}]}, {\"type\": \"div\", \"content\": \"\", \"style\": \"clear:both; padding-bottom:0.25em; margin: 0 0 0.75em; line-height: 1.6em\", \"bbox\": [259, 1133, 540, 3], \"children\": []}, {\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [259, 1149, 540, 20], \"children\": [{\"type\": \"a\", \"content\": \"men\", \"style\": null, \"bbox\": [301, 1151, 22, 15], \"children\": []}, {\"type\": \"a\", \"content\": \"Portland\", \"style\": null, \"bbox\": [329, 1151, 44, 15], \"children\": []}, {\"type\": \"a\", \"content\": \"Quick Shots\", \"style\": null, \"bbox\": [380, 1151, 63, 15], \"children\": []}, {\"type\": \"a\", \"content\": \"street fashion\", \"style\": null, \"bbox\": [450, 1151, 69, 15], \"children\": []}, {\"type\": \"a\", \"content\": \"street style\", \"style\": null, \"bbox\": [527, 1151, 55, 15], \"children\": []}]}]}]}, {\"type\": \"p\", \"content\": \"\", \"style\": \"margin: -0.25em 0 0; color: #ccc\", \"bbox\": [259, 1180, 540, 32], \"children\": [{\"type\": \"em\", \"content\": \"\", \"style\": \"font: 78%/1.4em \\\"Trebuchet MS\\\", Trebuchet, Arial, Verdana, Sans-serif; text-transform: uppercase; letter-spacing: 0.1em; font-style: normal; color: #999; margin-right: 0.6em\", \"bbox\": [259, 1199, 166, 11], \"children\": [{\"type\": \"a\", \"content\": \"10:24\\u202fAM\", \"style\": null, \"bbox\": [372, 1199, 53, 11], \"children\": []}]}, {\"type\": \"span\", \"content\": \"\", \"style\": null, \"bbox\": [431, 1196, 28, 15], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": \"border:none;\", \"bbox\": [431, 1196, 28, 15], \"children\": [{\"type\": \"img\", \"content\": \"\", \"style\": \"border: 1px solid #ddd; padding: 4px; border-width: 0; padding: 4px; border: 1px solid #ddd\", \"bbox\": [431, 1180, 28, 28], \"children\": []}]}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [259, 1222, 540, 109], \"children\": [{\"type\": \"h4\", \"content\": \"0 Comments:\", \"style\": \"margin: 1em 0; font: bold 78%/1.6em \\\"Trebuchet MS\\\", Trebuchet, Arial, Verdana, Sans-serif; text-transform: uppercase; letter-spacing: 0.2em; color: #999\", \"bbox\": [259, 1222, 540, 16], \"children\": []}, {\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [259, 1258, 540, 16], \"children\": [{\"type\": \"a\", \"content\": \"Post a Comment\", \"style\": \"font: 78%/1.4em \\\"Trebuchet MS\\\", Trebuchet, Arial, Verdana, Sans-serif; text-transform: uppercase; letter-spacing: 0.1em; margin-left: 0.6em\", \"bbox\": [265, 1261, 105, 11], \"children\": []}]}, {\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [259, 1287, 540, 16], \"children\": [{\"type\": \"a\", \"content\": \"Atom\", \"style\": null, \"bbox\": [416, 1287, 29, 15], \"children\": []}]}, {\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [259, 1316, 540, 16], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [259, 1316, 49, 15], \"children\": []}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": \"width: 164px; padding: 9px; float: right; position: relative; overflow: visible; font-size: 90%; min-height: 600px\", \"bbox\": [858, 153, 182, 618], \"children\": [{\"type\": \"table\", \"content\": \"\", \"style\": \"border: 0; padding: 0; margin: 0; width: 160px; border-collapse: collapse\", \"bbox\": [867, 162, 160, 4], \"children\": [{\"type\": \"tbody\", \"content\": \"\", \"style\": null, \"bbox\": [867, 162, 160, 4], \"children\": [{\"type\": \"tr\", \"content\": \"\", \"style\": null, \"bbox\": [867, 162, 160, 4], \"children\": [{\"type\": \"td\", \"content\": \"\", \"style\": \"padding: 2px 0; text-align: center; border: 0; margin: 0; text-align: right\", \"bbox\": [867, 162, 160, 4], \"children\": []}]}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": \"width: 164px; float: right; padding: 30px 10px 10px; background-color: #edf1f8; background-repeat: repeat-x\", \"bbox\": [856, 771, 184, 754], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"padding-bottom: 1.5em; border-bottom: 1px solid #dae1ee; margin-bottom: 1.5em\", \"bbox\": [866, 801, 164, 209], \"children\": [{\"type\": \"h2\", \"content\": \"About Me\", \"style\": \"font: 160% Arial, Serif; font-weight: bold; letter-spacing: -1px; margin: 0\", \"bbox\": [866, 801, 164, 24], \"children\": []}, {\"type\": \"dl\", \"content\": \"\", \"style\": \"margin: 0.2em 0 0.2em\", \"bbox\": [866, 828, 164, 108], \"children\": [{\"type\": \"dt\", \"content\": \"\", \"style\": \"display: inline\", \"bbox\": [866, 889, 94, 15], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [866, 889, 94, 15], \"children\": [{\"type\": \"img\", \"content\": \"\", \"style\": \"padding: 4px; border: 1px solid #ddd; margin: 0 8px 3px -4px\", \"bbox\": [862, 828, 90, 70], \"children\": []}]}]}, {\"type\": \"dd\", \"content\": \"\", \"style\": \"margin: 0 0 0.2em\", \"bbox\": [866, 904, 164, 15], \"children\": [{\"type\": \"a\", \"content\": \"Mai\", \"style\": null, \"bbox\": [866, 904, 20, 15], \"children\": []}]}, {\"type\": \"dd\", \"content\": \"\", \"style\": \"margin: 0 0 0.2em\", \"bbox\": [866, 921, 164, 15], \"children\": []}]}, {\"type\": \"p\", \"content\": \"\", \"style\": \"margin: 0 0 0.5em\", \"bbox\": [866, 939, 164, 30], \"children\": []}, {\"type\": \"p\", \"content\": \"\", \"style\": \"margin: 0\", \"bbox\": [866, 975, 164, 15], \"children\": [{\"type\": \"a\", \"content\": \"View my complete profile\", \"style\": null, \"bbox\": [866, 975, 144, 15], \"children\": []}]}]}, {\"type\": \"h2\", \"content\": \"Previous Posts\", \"style\": \"font: 160% Arial, Serif; font-weight: bold; letter-spacing: -1px; margin: 0\", \"bbox\": [866, 1030, 164, 24], \"children\": []}, {\"type\": \"ul\", \"content\": \"\", \"style\": \"list-style-image: none; list-style-position: outside; list-style-type: none; padding: 0; border-bottom: 1px solid #dae1ee; padding-bottom: 1em\", \"bbox\": [866, 1067, 164, 391], \"children\": [{\"type\": \"li\", \"content\": \"\", \"style\": \"margin: 0 0 0.6em\", \"bbox\": [866, 1067, 164, 30], \"children\": [{\"type\": \"a\", \"content\": \"Winston - XOXO Fest, Portland, OR\", \"style\": null, \"bbox\": [866, 1067, 128, 30], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"margin: 0 0 0.6em\", \"bbox\": [866, 1105, 164, 30], \"children\": [{\"type\": \"a\", \"content\": \"Sarah - XOXO Fest, Portland, OR\", \"style\": null, \"bbox\": [866, 1105, 116, 30], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"margin: 0 0 0.6em\", \"bbox\": [866, 1143, 164, 30], \"children\": [{\"type\": \"a\", \"content\": \"Allison - XOXO Fest, Portland, OR\", \"style\": null, \"bbox\": [866, 1143, 119, 30], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"margin: 0 0 0.6em\", \"bbox\": [866, 1181, 164, 30], \"children\": [{\"type\": \"a\", \"content\": \"Dawn - XOXO Fest, Portland, OR\", \"style\": null, \"bbox\": [866, 1181, 114, 30], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"margin: 0 0 0.6em\", \"bbox\": [866, 1218, 164, 30], \"children\": [{\"type\": \"a\", \"content\": \"Matt - XOXO Fest, Portland, OR\", \"style\": null, \"bbox\": [866, 1218, 162, 30], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"margin: 0 0 0.6em\", \"bbox\": [866, 1256, 164, 30], \"children\": [{\"type\": \"a\", \"content\": \"Alexa - XOXO Fest, Portland, OR\", \"style\": null, \"bbox\": [866, 1256, 114, 30], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"margin: 0 0 0.6em\", \"bbox\": [866, 1294, 164, 30], \"children\": [{\"type\": \"a\", \"content\": \"Karyn -XOXO Fest, Portland, OR\", \"style\": null, \"bbox\": [866, 1294, 111, 30], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"margin: 0 0 0.6em\", \"bbox\": [866, 1332, 164, 30], \"children\": [{\"type\": \"a\", \"content\": \"Isla - XOXO Fest, Portland, OR\", \"style\": null, \"bbox\": [866, 1332, 157, 30], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"margin: 0 0 0.6em\", \"bbox\": [866, 1370, 164, 30], \"children\": [{\"type\": \"a\", \"content\": \"Sarah - XOXO Fest, Portland, OR\", \"style\": null, \"bbox\": [866, 1370, 116, 30], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"margin: 0 0 0.6em\", \"bbox\": [866, 1407, 164, 30], \"children\": [{\"type\": \"a\", \"content\": \"Maggie - XOXO Fest, Portland, OR\", \"style\": null, \"bbox\": [866, 1407, 124, 30], \"children\": []}]}]}, {\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [866, 1472, 164, 30], \"children\": [{\"type\": \"a\", \"content\": \"Atom\", \"style\": null, \"bbox\": [905, 1487, 30, 15], \"children\": []}]}]}]}]}]}"},"text":{"kind":"string","value":"\n\nFashionist: Ryan - Downtown, Portland, OR\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<![endif]-->\n\n\n\n\n
"},"score":{"kind":"number","value":3,"string":"3"},"scale":{"kind":"list like","value":[1280,1526],"string":"[\n 1280,\n 1526\n]"},"lang":{"kind":"string","value":"en"},"tokens":{"kind":"list like","value":[1429,1400],"string":"[\n 1429,\n 1400\n]"},"hash":{"kind":"string","value":"a9abb1546a04c3f1b81dcd12872fb6221b1fc5161794ba120a79ba506e88acb8"}}},{"rowIdx":2,"cells":{"image":{"kind":"image","value":{"src":"https://datasets-server.huggingface.co/assets/xcodemind/webcode2m/--/f53cd4a9317364e32a6fc7d99dc50761fe54715f/--/default/train/2/image/image.png?Expires=1756287790&Signature=KwoRcayLPJv-YMpYgwxrsWNd81zpe0CmeG8k-W2TwacuASZ32Qrt5sy4HtHqqCTBXm64Hx-Nll39Ww2PmVbyCatznX2v2E~XNKVMolZspEuKsdwCNHyKQWQNw6hSPHJIL-8WIZeH~hmfgI1b43a0SRGu~SaILwM4HEzvEazJYRXSSkN4NKHHMwM-R66GrA7eFlBa4NpMx1DdYLXFgp8s8i0UGnnhD9Fprw2wyEK2K2-aP~x-HrNVh4kea4OOHSyUFvrHMgoAphNj~i4~x5Na0ooO88RiA5FBwGWCIQFpfv0Wrb7NLmO3-UOo1st2FGXm8PDfy4W5z2fsHsmonv0Sng__&Key-Pair-Id=K3EI6M078Z3AC3","height":2138,"width":1280},"inferredFromUrl":false},"bbox":{"kind":"string","value":"{\"type\": \"body\", \"content\": \"\", \"style\": null, \"bbox\": [8, 16, 1264, 2113], \"children\": [{\"type\": \"header\", \"content\": \"\", \"style\": \"background-color: #66b2ff\", \"bbox\": [8, 16, 1264, 576], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 16, 1264, 576], \"children\": [{\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [8, 16, 1264, 21], \"children\": [{\"type\": \"a\", \"content\": \"\\u8aad\\u66f8\\u4ea1\\u7f8a\", \"style\": null, \"bbox\": [8, 19, 64, 17], \"children\": []}]}, {\"type\": \"nav\", \"content\": \"\", \"style\": null, \"bbox\": [8, 53, 1264, 18], \"children\": [{\"type\": \"ul\", \"content\": \"\", \"style\": null, \"bbox\": [8, 53, 1264, 18], \"children\": [{\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 53, 1224, 18], \"children\": []}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 87, 1264, 122], \"children\": [{\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [8, 87, 177, 21], \"children\": []}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 108, 1264, 101], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 108, 1264, 101], \"children\": [{\"type\": \"label\", \"content\": \"\", \"style\": null, \"bbox\": [8, 108, 50, 17], \"children\": []}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 144, 1264, 64], \"children\": [{\"type\": \"aside\", \"content\": \"\", \"style\": null, \"bbox\": [8, 144, 1264, 64], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 144, 1264, 64], \"children\": [{\"type\": \"h3\", \"content\": \"\\u30ad\\u30fc\\u30ef\\u30fc\\u30c9\", \"style\": null, \"bbox\": [8, 144, 1264, 25], \"children\": []}, {\"type\": \"form\", \"content\": \"\", \"style\": null, \"bbox\": [8, 188, 1264, 21], \"children\": [{\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [8, 188, 177, 21], \"children\": []}, {\"type\": \"button\", \"content\": \"\", \"style\": null, \"bbox\": [189, 200, 16, 6], \"children\": []}]}]}]}]}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 209, 1264, 382], \"children\": [{\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [8, 209, 177, 21], \"children\": []}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 230, 1264, 361], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 230, 1264, 361], \"children\": [{\"type\": \"label\", \"content\": \"\", \"style\": null, \"bbox\": [8, 230, 50, 17], \"children\": []}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 264, 1264, 327], \"children\": [{\"type\": \"nav\", \"content\": \"\", \"style\": null, \"bbox\": [8, 264, 1264, 18], \"children\": [{\"type\": \"ul\", \"content\": \"\", \"style\": null, \"bbox\": [8, 264, 1264, 18], \"children\": [{\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 264, 1224, 18], \"children\": []}]}]}, {\"type\": \"aside\", \"content\": \"\", \"style\": null, \"bbox\": [8, 302, 1264, 197], \"children\": [{\"type\": \"h2\", \"content\": \"\\u5206\\u985e\", \"style\": \"background-color: #66b2ff\", \"bbox\": [8, 302, 1264, 31], \"children\": []}, {\"type\": \"ul\", \"content\": \"\", \"style\": \"border-color: rgba(102, 178, 255, 0.15)\", \"bbox\": [8, 353, 1264, 147], \"children\": [{\"type\": \"li\", \"content\": \"\", \"style\": \"border-color: rgba(102, 178, 255, 0.75)\", \"bbox\": [48, 353, 1224, 21], \"children\": [{\"type\": \"a\", \"content\": \"\\u54f2\\u5b66\\u8ac7\\u622f\", \"style\": \"background-color: #66b2ff\", \"bbox\": [48, 356, 64, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"border-color: rgba(102, 178, 255, 0.75)\", \"bbox\": [48, 374, 1224, 21], \"children\": [{\"type\": \"a\", \"content\": \"\\u6587\\u5b66\\u900d\\u9065\", \"style\": \"background-color: #66b2ff\", \"bbox\": [48, 377, 64, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"border-color: rgba(102, 178, 255, 0.75)\", \"bbox\": [48, 395, 1224, 21], \"children\": [{\"type\": \"a\", \"content\": \"\\u5343\\u8a00\\u4e07\\u53e5\", \"style\": \"background-color: #66b2ff\", \"bbox\": [48, 398, 64, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"border-color: rgba(102, 178, 255, 0.75)\", \"bbox\": [48, 416, 1224, 21], \"children\": [{\"type\": \"a\", \"content\": \"\\u6674\\u7b46\\u96e8\\u8aad\", \"style\": \"background-color: #66b2ff\", \"bbox\": [48, 419, 64, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"border-color: rgba(102, 178, 255, 0.75)\", \"bbox\": [48, 437, 1224, 21], \"children\": [{\"type\": \"a\", \"content\": \"\\u5e8a\\u5c4b\\u653f\\u8ac7\", \"style\": \"background-color: #66b2ff\", \"bbox\": [48, 440, 64, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"border-color: rgba(102, 178, 255, 0.75)\", \"bbox\": [48, 458, 1224, 21], \"children\": [{\"type\": \"a\", \"content\": \"\\u79d1\\u5b66\\u534a\\u89e3\", \"style\": \"background-color: #66b2ff\", \"bbox\": [48, 461, 64, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"border-color: rgba(102, 178, 255, 0.75)\", \"bbox\": [48, 479, 1224, 21], \"children\": [{\"type\": \"a\", \"content\": \"\\u65b9\\u3005\\u65e5\\u8a8c\", \"style\": \"background-color: #66b2ff\", \"bbox\": [48, 482, 64, 17], \"children\": []}]}]}]}, {\"type\": \"aside\", \"content\": \"\", \"style\": null, \"bbox\": [8, 520, 1264, 71], \"children\": [{\"type\": \"h2\", \"content\": \"\\u6ce8\\u76ee\\u8a18\\u4e8b\", \"style\": \"background-color: #66b2ff\", \"bbox\": [8, 520, 1264, 31], \"children\": []}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 571, 1264, 21], \"children\": [{\"type\": \"ol\", \"content\": \"\", \"style\": null, \"bbox\": [8, 571, 1264, 21], \"children\": [{\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 571, 1224, 21], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [48, 571, 1224, 21], \"children\": [{\"type\": \"p\", \"content\": \"\\u30aa\\u30d5\\u30e9\\u30a4\\u30f3\\u306e\\u305f\\u3081\\u30e9\\u30f3\\u30ad\\u30f3\\u30b0\\u304c\\u8868\\u793a\\u3067\\u304d\\u307e\\u305b\\u3093\", \"style\": null, \"bbox\": [48, 571, 1224, 21], \"children\": []}]}]}]}]}]}]}]}]}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 608, 1264, 60], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 608, 1264, 60], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 608, 1264, 60], \"children\": [{\"type\": \"ul\", \"content\": \"\", \"style\": null, \"bbox\": [8, 608, 1264, 60], \"children\": [{\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 608, 1224, 18], \"children\": [{\"type\": \"a\", \"content\": \"HOME\", \"style\": null, \"bbox\": [48, 608, 47, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 626, 1224, 21], \"children\": [{\"type\": \"a\", \"content\": \"2016\\u5e74\", \"style\": null, \"bbox\": [48, 629, 48, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 647, 1224, 21], \"children\": [{\"type\": \"a\", \"content\": \"1\\u6708\", \"style\": null, \"bbox\": [48, 650, 24, 17], \"children\": []}]}]}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 684, 1264, 1374], \"children\": [{\"type\": \"main\", \"content\": \"\", \"style\": null, \"bbox\": [8, 684, 1264, 796], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 684, 1264, 81], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 684, 1264, 81], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 684, 1264, 81], \"children\": [{\"type\": \"span\", \"content\": \"\", \"style\": null, \"bbox\": [8, 684, 58, 17], \"children\": []}, {\"type\": \"h1\", \"content\": \"2016\\u5e741\\u6708\", \"style\": null, \"bbox\": [8, 723, 1264, 42], \"children\": []}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 786, 1264, 693], \"children\": [{\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [8, 786, 177, 21], \"children\": []}, {\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [185, 786, 177, 21], \"children\": []}, {\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [362, 786, 177, 21], \"children\": []}, {\"type\": \"ul\", \"content\": \"\", \"style\": null, \"bbox\": [8, 823, 1264, 46], \"children\": [{\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 823, 1224, 23], \"children\": [{\"type\": \"form\", \"content\": \"\", \"style\": null, \"bbox\": [48, 823, 1224, 23], \"children\": [{\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [48, 825, 177, 21], \"children\": []}, {\"type\": \"a\", \"content\": \"\\u65b0\\u7740\\u9806\", \"style\": null, \"bbox\": [225, 826, 48, 17], \"children\": []}]}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 846, 1224, 23], \"children\": [{\"type\": \"form\", \"content\": \"\", \"style\": null, \"bbox\": [48, 846, 1224, 23], \"children\": [{\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [48, 848, 177, 21], \"children\": []}, {\"type\": \"a\", \"content\": \"\\u4eba\\u6c17\\u9806\", \"style\": null, \"bbox\": [225, 849, 48, 17], \"children\": []}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 885, 1264, 594], \"children\": [{\"type\": \"article\", \"content\": \"\", \"style\": null, \"bbox\": [8, 885, 1264, 203], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 885, 1264, 203], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"background-color: #66b2ff\", \"bbox\": [8, 885, 1264, 21], \"children\": [{\"type\": \"a\", \"content\": \"\\u65b9\\u3005\\u65e5\\u8a8c\", \"style\": null, \"bbox\": [8, 888, 64, 17], \"children\": []}]}, {\"type\": \"ul\", \"content\": \"\", \"style\": null, \"bbox\": [8, 922, 1264, 21], \"children\": [{\"type\": \"li\", \"content\": \"2016\\u5e741\\u670826\\u65e5\", \"style\": null, \"bbox\": [48, 922, 1224, 21], \"children\": []}]}, {\"type\": \"h2\", \"content\": \"\", \"style\": null, \"bbox\": [8, 963, 1264, 27], \"children\": [{\"type\": \"a\", \"content\": \"Samantha Fish \\u2013 Wild Heart (2015)\", \"style\": null, \"bbox\": [8, 963, 363, 26], \"children\": []}]}, {\"type\": \"p\", \"content\": \"\\u3064\\u3044\\u3067\\u306b\\u3001Samantha Fish\\u306ealbum\\u304b\\u3089\\u3082\\u3046\\u4e00\\u679a\\u3002Wild Heart\\u3068\\u3044\\u30462015\\u5e74\\u767a\\u8868\\u306e\\u4f5c\\u54c1\\u3002Blues\\u304c\\u57fa\\u672c\\u306a\\u306e\\u306f\\u5909\\u308f\\u3089\\u306a\\u3044\\u3051\\u3069\\u3001\\u5168\\u4f53\\u3068\\u3057\\u3066\\u3001\\u304b\\u306a\\u308arock\\u8272\\u304c\\u5f37\\u304f\\u306a\\u3063\\u305f\\u304b\\u306a\\u3002 \\u3000 [\\u2026]\", \"style\": null, \"bbox\": [8, 1010, 1264, 42], \"children\": []}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1068, 1264, 21], \"children\": [{\"type\": \"a\", \"content\": \"\\u7d9a\\u304d\\u3092\\u8aad\\u3080\", \"style\": \"color: #3f3f3f\", \"bbox\": [8, 1071, 80, 17], \"children\": []}]}]}]}, {\"type\": \"article\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1089, 1264, 182], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1089, 1264, 182], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"background-color: #66b2ff\", \"bbox\": [8, 1089, 1264, 21], \"children\": [{\"type\": \"a\", \"content\": \"\\u65b9\\u3005\\u65e5\\u8a8c\", \"style\": null, \"bbox\": [8, 1092, 64, 17], \"children\": []}]}, {\"type\": \"ul\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1126, 1264, 21], \"children\": [{\"type\": \"li\", \"content\": \"2016\\u5e741\\u670825\\u65e5\", \"style\": null, \"bbox\": [48, 1126, 1224, 21], \"children\": []}]}, {\"type\": \"h2\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1167, 1264, 27], \"children\": [{\"type\": \"a\", \"content\": \"Samantha Fish \\u2013 Runaway (2012)\", \"style\": null, \"bbox\": [8, 1167, 345, 26], \"children\": []}]}, {\"type\": \"p\", \"content\": \"2012\\u5e74\\u306eBlues Music Award\\u3067\\u3001Best New Artist\\u3092\\u7372\\u5f97\\u3057\\u305f\\u65b0\\u4eba\\u5973\\u6027blues singer\\u3002 \\u3000\\u82e5\\u3044\\u5973\\u6027singer\\u3068\\u3044\\u3063\\u3066\\u3082blues\\u306e\\u6f14\\u594f\\u306f\\u304b\\u306a\\u308a\\u306a\\u672c\\u683c\\u6d3e\\u3002\\u4f4e\\u97f3\\u306e [\\u2026]\", \"style\": null, \"bbox\": [8, 1214, 1264, 21], \"children\": []}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1251, 1264, 21], \"children\": [{\"type\": \"a\", \"content\": \"\\u7d9a\\u304d\\u3092\\u8aad\\u3080\", \"style\": \"color: #3f3f3f\", \"bbox\": [8, 1254, 80, 17], \"children\": []}]}]}]}, {\"type\": \"article\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1272, 1264, 207], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1272, 1264, 207], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"background-color: #66b2ff\", \"bbox\": [8, 1272, 1264, 21], \"children\": [{\"type\": \"a\", \"content\": \"\\u5343\\u8a00\\u4e07\\u53e5\", \"style\": null, \"bbox\": [8, 1275, 64, 17], \"children\": []}]}, {\"type\": \"ul\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1309, 1264, 21], \"children\": [{\"type\": \"li\", \"content\": \"2016\\u5e741\\u670810\\u65e5\", \"style\": null, \"bbox\": [48, 1309, 1224, 21], \"children\": []}]}, {\"type\": \"h2\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1350, 1264, 31], \"children\": [{\"type\": \"a\", \"content\": \"\\u6b74\\u53f2\\u7684\\u5049\\u4eba\\u306b\\u5b66\\u3076\\u82f1\\u8a9e\\u52c9\\u5f37\\u6cd5 \\u2013 \\u658e\\u85e4\\u5146\\u53f2\\u300e\\u82f1\\u8a9e\\u9054\\u4eba\\u587e\\u300f(2003)\", \"style\": null, \"bbox\": [8, 1354, 663, 26], \"children\": []}]}, {\"type\": \"p\", \"content\": \"\\u658e\\u85e4\\u5146\\u53f2\\u300e\\u82f1\\u8a9e\\u9054\\u4eba\\u587e\\u300f(2003) \\u3000\\u5df7\\u306b\\u6ea2\\u308c\\u308b\\u5927\\u91cf\\u306e\\u5b89\\u6613\\u306a\\u82f1\\u8a9e\\u5b66\\u7fd2\\u672c\\u306b\\u80cc\\u3092\\u5411\\u3051\\u3001\\u672c\\u6c17\\u3067\\u82f1\\u8a9e\\u3092\\u7fd2\\u5f97\\u3057\\u3088\\u3046\\u3068\\u3044\\u3046\\u4eba\\u306b\\u5411\\u3051\\u305f\\u672c\\u3002 \\u3000\\u672c\\u66f8\\u304c\\u76ee\\u6307\\u3059\\u3068\\u3053\\u308d\\u306f\\u3001\\u3072\\u3058\\u3087\\u30fc\\u306b\\u6b21\\u5143\\u304c\\u9ad8\\u3044\\u3002 \\u3000\\u300cNative Engl [\\u2026]\", \"style\": null, \"bbox\": [8, 1401, 1264, 42], \"children\": []}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1459, 1264, 21], \"children\": [{\"type\": \"a\", \"content\": \"\\u7d9a\\u304d\\u3092\\u8aad\\u3080\", \"style\": \"color: #3f3f3f\", \"bbox\": [8, 1462, 80, 17], \"children\": []}]}]}]}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1500, 1264, 558], \"children\": [{\"type\": \"aside\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1500, 1264, 197], \"children\": [{\"type\": \"h2\", \"content\": \"\\u5206\\u985e\", \"style\": \"background-color: #66b2ff\", \"bbox\": [8, 1500, 1264, 31], \"children\": []}, {\"type\": \"ul\", \"content\": \"\", \"style\": \"border-color: rgba(102, 178, 255, 0.15)\", \"bbox\": [8, 1551, 1264, 147], \"children\": [{\"type\": \"li\", \"content\": \"\", \"style\": \"border-color: rgba(102, 178, 255, 0.75)\", \"bbox\": [48, 1551, 1224, 21], \"children\": [{\"type\": \"a\", \"content\": \"\\u54f2\\u5b66\\u8ac7\\u622f\", \"style\": \"background-color: #66b2ff\", \"bbox\": [48, 1554, 64, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"border-color: rgba(102, 178, 255, 0.75)\", \"bbox\": [48, 1572, 1224, 21], \"children\": [{\"type\": \"a\", \"content\": \"\\u6587\\u5b66\\u900d\\u9065\", \"style\": \"background-color: #66b2ff\", \"bbox\": [48, 1575, 64, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"border-color: rgba(102, 178, 255, 0.75)\", \"bbox\": [48, 1593, 1224, 21], \"children\": [{\"type\": \"a\", \"content\": \"\\u5343\\u8a00\\u4e07\\u53e5\", \"style\": \"background-color: #66b2ff\", \"bbox\": [48, 1596, 64, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"border-color: rgba(102, 178, 255, 0.75)\", \"bbox\": [48, 1614, 1224, 21], \"children\": [{\"type\": \"a\", \"content\": \"\\u6674\\u7b46\\u96e8\\u8aad\", \"style\": \"background-color: #66b2ff\", \"bbox\": [48, 1617, 64, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"border-color: rgba(102, 178, 255, 0.75)\", \"bbox\": [48, 1635, 1224, 21], \"children\": [{\"type\": \"a\", \"content\": \"\\u5e8a\\u5c4b\\u653f\\u8ac7\", \"style\": \"background-color: #66b2ff\", \"bbox\": [48, 1638, 64, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"border-color: rgba(102, 178, 255, 0.75)\", \"bbox\": [48, 1656, 1224, 21], \"children\": [{\"type\": \"a\", \"content\": \"\\u79d1\\u5b66\\u534a\\u89e3\", \"style\": \"background-color: #66b2ff\", \"bbox\": [48, 1659, 64, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"border-color: rgba(102, 178, 255, 0.75)\", \"bbox\": [48, 1677, 1224, 21], \"children\": [{\"type\": \"a\", \"content\": \"\\u65b9\\u3005\\u65e5\\u8a8c\", \"style\": \"background-color: #66b2ff\", \"bbox\": [48, 1680, 64, 17], \"children\": []}]}]}]}, {\"type\": \"aside\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1718, 1264, 71], \"children\": [{\"type\": \"h2\", \"content\": \"\\u691c\\u7d22\", \"style\": \"background-color: #66b2ff\", \"bbox\": [8, 1718, 1264, 31], \"children\": []}, {\"type\": \"form\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1769, 1264, 21], \"children\": [{\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [8, 1769, 177, 21], \"children\": []}, {\"type\": \"button\", \"content\": \"\", \"style\": null, \"bbox\": [189, 1781, 16, 6], \"children\": []}]}]}, {\"type\": \"aside\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1809, 1264, 155], \"children\": [{\"type\": \"h2\", \"content\": \"\\u6700\\u8fd1\\u306e\\u6295\\u7a3f\", \"style\": \"background-color: #66b2ff\", \"bbox\": [8, 1809, 1264, 31], \"children\": []}, {\"type\": \"ul\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1860, 1264, 105], \"children\": [{\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 1860, 1224, 21], \"children\": [{\"type\": \"a\", \"content\": \"\\u904b\\u547d\\u3092\\u80cc\\u8ca0\\u3046\\u3068\\u3044\\u3046\\u3053\\u3068 \\u2013 \\u30ab\\u30ba\\u30aa\\u30fb\\u30a4\\u30b7\\u30b0\\u30ed\\u300e\\u308f\\u305f\\u3057\\u3092\\u96e2\\u3055\\u306a\\u3044\\u3067\\u300f(2005)\", \"style\": null, \"bbox\": [48, 1863, 538, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 1881, 1224, 21], \"children\": [{\"type\": \"a\", \"content\": \"\\u610f\\u8b58\\u3068\\u3044\\u3046\\u79d1\\u5b66\\u3067\\u306f\\u8aac\\u660e\\u3067\\u304d\\u306a\\u3044\\u3082\\u306e \\u2013 \\u30de\\u30eb\\u30af\\u30b9\\u30fb\\u30ac\\u30d6\\u30ea\\u30a8\\u30eb\\u300e\\u300c\\u79c1\\u300d\\u306f\\u8133\\u3067\\u306f\\u306a\\u3044\\u300f(2015)\", \"style\": null, \"bbox\": [48, 1884, 666, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 1902, 1224, 21], \"children\": [{\"type\": \"a\", \"content\": \"\\u65b0\\u3057\\u3044\\u5b9f\\u5728\\u8ad6 \\u2013 \\u30de\\u30eb\\u30af\\u30b9\\u30fb\\u30ac\\u30d6\\u30ea\\u30a8\\u30eb\\u300e\\u306a\\u305c\\u4e16\\u754c\\u306f\\u5b58\\u5728\\u3057\\u306a\\u3044\\u306e\\u304b\\u300f(2013)\", \"style\": null, \"bbox\": [48, 1905, 538, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 1923, 1224, 21], \"children\": [{\"type\": \"a\", \"content\": \"\\u30ad\\u30e5\\u30cb\\u30b3\\u30b9\\u6d3e\\uff08\\u72ac\\u5112\\u6d3e\\uff09\\u306e\\u601d\\u60f3\\u3068\\u54f2\\u5b66 \\u2013 \\u81ea\\u7136\\u306b\\u3057\\u305f\\u304c\\u3063\\u3066\\u751f\\u304d\\u3088\", \"style\": null, \"bbox\": [48, 1926, 464, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 1944, 1224, 21], \"children\": [{\"type\": \"a\", \"content\": \"\\u6a3d\\u306e\\u30c7\\u30a3\\u30aa\\u30b2\\u30cd\\u30b9 \\u2013 \\u72ac\\u3068\\u547c\\u3070\\u308c\\u305f\\u54f2\\u5b66\\u8005\", \"style\": null, \"bbox\": [48, 1947, 288, 17], \"children\": []}]}]}]}, {\"type\": \"aside\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1985, 1264, 72], \"children\": [{\"type\": \"h2\", \"content\": \"\\u904e\\u53bb\\u8a18\\u4e8b\", \"style\": \"background-color: #66b2ff\", \"bbox\": [8, 1985, 1264, 31], \"children\": []}, {\"type\": \"label\", \"content\": \"\\u904e\\u53bb\\u8a18\\u4e8b\", \"style\": null, \"bbox\": [8, 2039, 64, 17], \"children\": []}, {\"type\": \"select\", \"content\": \"\", \"style\": null, \"bbox\": [76, 2039, 113, 19], \"children\": [{\"type\": \"option\", \"content\": \"\\u6708\\u3092\\u9078\\u629e\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2022\\u5e748\\u6708 (1)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2022\\u5e743\\u6708 (4)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2021\\u5e748\\u6708 (1)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2021\\u5e747\\u6708 (1)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2021\\u5e744\\u6708 (1)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2021\\u5e742\\u6708 (1)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2020\\u5e7410\\u6708 (1)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2020\\u5e749\\u6708 (1)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2020\\u5e748\\u6708 (4)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2020\\u5e741\\u6708 (1)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2019\\u5e749\\u6708 (5)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2019\\u5e746\\u6708 (3)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2019\\u5e745\\u6708 (6)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2019\\u5e744\\u6708 (1)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2019\\u5e742\\u6708 (2)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2019\\u5e741\\u6708 (2)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2018\\u5e748\\u6708 (3)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2018\\u5e741\\u6708 (1)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2017\\u5e7411\\u6708 (1)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2017\\u5e746\\u6708 (2)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2017\\u5e744\\u6708 (1)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2017\\u5e743\\u6708 (6)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2017\\u5e741\\u6708 (2)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2016\\u5e7412\\u6708 (2)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2016\\u5e7411\\u6708 (1)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2016\\u5e7410\\u6708 (3)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2016\\u5e749\\u6708 (1)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2016\\u5e748\\u6708 (3)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2016\\u5e746\\u6708 (1)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2016\\u5e745\\u6708 (1)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2016\\u5e744\\u6708 (2)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2016\\u5e743\\u6708 (5)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2016\\u5e742\\u6708 (2)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2016\\u5e741\\u6708 (3)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2015\\u5e7412\\u6708 (7)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2015\\u5e7411\\u6708 (5)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2015\\u5e7410\\u6708 (5)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2015\\u5e749\\u6708 (2)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2015\\u5e748\\u6708 (1)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2015\\u5e747\\u6708 (5)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2015\\u5e746\\u6708 (2)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2015\\u5e745\\u6708 (5)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2015\\u5e744\\u6708 (5)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2015\\u5e743\\u6708 (4)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2015\\u5e742\\u6708 (6)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2015\\u5e741\\u6708 (7)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}]}]}]}]}, {\"type\": \"footer\", \"content\": \"\", \"style\": null, \"bbox\": [8, 2074, 1264, 55], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 2074, 1264, 18], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"background-color: #66b2ff\", \"bbox\": [8, 2074, 1264, 18], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 2074, 1264, 18], \"children\": [{\"type\": \"ul\", \"content\": \"\", \"style\": null, \"bbox\": [8, 2074, 1264, 18], \"children\": [{\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 2074, 1224, 18], \"children\": []}]}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 2108, 1264, 21], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 2108, 1264, 21], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 2108, 1264, 21], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 2108, 1264, 21], \"children\": [{\"type\": \"a\", \"content\": \"\\u8aad\\u66f8\\u4ea1\\u7f8a\", \"style\": null, \"bbox\": [129, 2111, 64, 17], \"children\": []}]}]}]}]}]}]}"},"text":{"kind":"string","value":"\n\n2016年1月|読書亡羊

\n\t\t\t\t\t\t\t\t\t\t\t読書亡羊\t\t\t\t\t

MONTH

2016年1月

"},"score":{"kind":"number","value":3,"string":"3"},"scale":{"kind":"list like","value":[1280,2138],"string":"[\n 1280,\n 2138\n]"},"lang":{"kind":"string","value":"ja"},"tokens":{"kind":"list like","value":[213,3623],"string":"[\n 213,\n 3623\n]"},"hash":{"kind":"string","value":"3d27c488228e3431548f4b7f20f1b83664d6d79bcf3ff7ca3fe762dff23f8b80"}}},{"rowIdx":3,"cells":{"image":{"kind":"image","value":{"src":"https://datasets-server.huggingface.co/assets/xcodemind/webcode2m/--/f53cd4a9317364e32a6fc7d99dc50761fe54715f/--/default/train/3/image/image.png?Expires=1756287790&Signature=gePRqFuhPiGDxoDCYtsJQPs2cH9D~Ps2LVStXXskS8Sr7Rk-kl4Osqs2E~1KA4wq07cHpxe-dA55wQDFBLGdkOeX8p1mEn9QOz3Rj7Esh4wtX6NjJg0Shbq3l6w34~SMF1px2lYXeOszU~ra9thy78pt7AnT2z4aiEoPhm4M4qb52~hRy2WZspjC0QdLVt8mZYflwjzBAu~MFBjz9ZOFo~Ns1apTCxj6i2yH5W0LMRGE0Fj6xkkKlGgaqNjrBj32w0VeLfAWVpJsZ9Xq8hFRqzDjQ7d1mW2nbvQOBh8Tybdu~Ug69s-Op7ZCKpaseNVOmgI8uLZ2~IZwIJFUSafLyg__&Key-Pair-Id=K3EI6M078Z3AC3","height":1726,"width":1280},"inferredFromUrl":false},"bbox":{"kind":"string","value":"{\"type\": \"body\", \"content\": \"\", \"style\": null, \"bbox\": [8, 8, 1264, 1702], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 8, 1264, 1702], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 8, 1264, 1057], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 8, 1264, 165], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 8, 1264, 54], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 8, 1264, 18], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [8, 8, 4, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [16, 8, 4, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [24, 8, 4, 17], \"children\": []}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 26, 1264, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u043c\\u043e\\u0431\\u0438\\u043b\\u044c\\u043d\\u0430\\u044f \\u0432\\u0435\\u0440\\u0441\\u0438\\u044f\", \"style\": null, \"bbox\": [8, 26, 122, 17], \"children\": []}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 44, 1264, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u0432\\u0435\\u0440\\u0441\\u0438\\u044f \\u0434\\u043b\\u044f \\u0441\\u043b\\u0430\\u0431\\u043e\\u0432\\u0438\\u0434\\u044f\\u0449\\u0438\\u0445\", \"style\": null, \"bbox\": [8, 44, 175, 17], \"children\": []}]}]}, {\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [8, 62, 4, 17], \"children\": []}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 80, 1264, 54], \"children\": [{\"type\": \"div\", \"content\": \"\\u0413\\u0443\\u0431\\u0435\\u0440\\u043d\\u0430\\u0442\\u043e\\u0440 \\u0438 \\u041f\\u0440\\u0430\\u0432\\u0438\\u0442\\u0435\\u043b\\u044c\\u0441\\u0442\\u0432\\u043e\", \"style\": null, \"bbox\": [8, 80, 1264, 18], \"children\": []}, {\"type\": \"div\", \"content\": \"\\u0423\\u041b\\u042c\\u042f\\u041d\\u041e\\u0412\\u0421\\u041a\\u041e\\u0419 \\u041e\\u0411\\u041b\\u0410\\u0421\\u0422\\u0418\", \"style\": null, \"bbox\": [8, 98, 1264, 18], \"children\": []}, {\"type\": \"strong\", \"content\": \"\\u041e\\u0444\\u0438\\u0446\\u0438\\u0430\\u043b\\u044c\\u043d\\u044b\\u0439 \\u0441\\u0430\\u0439\\u0442\", \"style\": null, \"bbox\": [8, 116, 144, 17], \"children\": []}, {\"type\": \"span\", \"content\": \"\", \"style\": null, \"bbox\": [156, 116, 34, 17], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [156, 116, 15, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [175, 116, 15, 17], \"children\": []}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 134, 1264, 39], \"children\": [{\"type\": \"form\", \"content\": \"\", \"style\": null, \"bbox\": [8, 134, 1264, 21], \"children\": [{\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [8, 134, 177, 21], \"children\": []}, {\"type\": \"input\", \"content\": \"\", \"style\": \"opacity: 0; position: absolute; left: -9999px;\", \"bbox\": [-9999, 134, 177, 21], \"children\": []}, {\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [189, 134, 177, 21], \"children\": []}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 155, 1264, 18], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [20, 155, 16, 17], \"children\": []}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 189, 1264, 324], \"children\": [{\"type\": \"ul\", \"content\": \"\", \"style\": null, \"bbox\": [8, 189, 1264, 324], \"children\": [{\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 189, 1224, 36], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [48, 189, 133, 35], \"children\": [{\"type\": \"strong\", \"content\": \"\\u0413\\u043b\\u0430\\u0432\\u043d\\u0430\\u044f\", \"style\": null, \"bbox\": [48, 189, 59, 17], \"children\": []}]}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 225, 1224, 36], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [48, 225, 160, 35], \"children\": [{\"type\": \"strong\", \"content\": \"\\u0413\\u0443\\u0431\\u0435\\u0440\\u043d\\u0430\\u0442\\u043e\\u0440\", \"style\": null, \"bbox\": [48, 225, 82, 17], \"children\": []}]}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 261, 1224, 18], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [48, 261, 216, 17], \"children\": [{\"type\": \"strong\", \"content\": \"\\u041f\\u0440\\u0430\\u0432\\u0438\\u0442\\u0435\\u043b\\u044c\\u0441\\u0442\\u0432\\u043e\", \"style\": null, \"bbox\": [48, 261, 111, 17], \"children\": []}]}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 279, 1224, 36], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [48, 279, 323, 35], \"children\": [{\"type\": \"strong\", \"content\": \"\\u041e\\u0431\\u0440\\u0430\\u0449\\u0435\\u043d\\u0438\\u044f \\u0433\\u0440\\u0430\\u0436\\u0434\\u0430\\u043d\", \"style\": null, \"bbox\": [48, 279, 150, 17], \"children\": []}]}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 315, 1224, 36], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [48, 315, 150, 35], \"children\": [{\"type\": \"strong\", \"content\": \"\\u041a\\u043e\\u043d\\u0442\\u0430\\u043a\\u0442\\u044b\", \"style\": null, \"bbox\": [48, 315, 73, 17], \"children\": []}]}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 351, 1224, 36], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [48, 351, 318, 35], \"children\": [{\"type\": \"strong\", \"content\": \"\\u041e\\u0431\\u044a\\u044f\\u0432\\u043b\\u0435\\u043d\\u0438\\u044f \\u0438 \\u0432\\u0430\\u043a\\u0430\\u043d\\u0441\\u0438\\u0438\", \"style\": null, \"bbox\": [48, 351, 175, 17], \"children\": []}]}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 387, 1224, 54], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [48, 387, 212, 53], \"children\": [{\"type\": \"strong\", \"content\": \"\\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044b\\u0435 \\u0434\\u0430\\u043d\\u043d\\u044b\\u0435\", \"style\": null, \"bbox\": [48, 387, 136, 17], \"children\": []}]}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 441, 1224, 36], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [48, 441, 138, 35], \"children\": [{\"type\": \"strong\", \"content\": \"\\u0418\\u043d\\u0432\\u0435\\u0441\\u0442\\u0438\\u0446\\u0438\\u0438\", \"style\": null, \"bbox\": [48, 441, 89, 17], \"children\": []}]}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 477, 1224, 36], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [48, 477, 173, 35], \"children\": [{\"type\": \"strong\", \"content\": \"\\u041e\\u0431 \\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u0438\", \"style\": null, \"bbox\": [48, 477, 81, 17], \"children\": []}]}]}]}]}, {\"type\": \"table\", \"content\": \"\", \"style\": null, \"bbox\": [8, 529, 1264, 536], \"children\": [{\"type\": \"tbody\", \"content\": \"\", \"style\": null, \"bbox\": [10, 531, 1260, 532], \"children\": [{\"type\": \"tr\", \"content\": \"\", \"style\": null, \"bbox\": [10, 531, 1260, 532], \"children\": [{\"type\": \"td\", \"content\": \"\", \"style\": \"padding-top:20px;\", \"bbox\": [10, 531, 243, 532], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [11, 568, 241, 228], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [11, 568, 241, 18], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [11, 568, 241, 18], \"children\": [{\"type\": \"div\", \"content\": \"\\u041d\\u043e\\u0432\\u043e\\u0441\\u0442\\u0438 \\u043f\\u043e \\u0434\\u0430\\u0442\\u0430\\u043c\", \"style\": null, \"bbox\": [11, 568, 241, 18], \"children\": []}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [11, 586, 241, 170], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [11, 586, 241, 36], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [11, 586, 4, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [19, 586, 4, 17], \"children\": []}, {\"type\": \"div\", \"content\": \"\\u041d\\u043e\\u044f\\u0431\\u0440\\u044c, 2023\", \"style\": null, \"bbox\": [11, 604, 241, 18], \"children\": []}]}, {\"type\": \"table\", \"content\": \"\", \"style\": null, \"bbox\": [11, 622, 192, 134], \"children\": [{\"type\": \"thead\", \"content\": \"\", \"style\": null, \"bbox\": [13, 624, 188, 20], \"children\": [{\"type\": \"tr\", \"content\": \"\", \"style\": null, \"bbox\": [13, 624, 188, 20], \"children\": [{\"type\": \"th\", \"content\": \"\\u041f\\u043d.\", \"style\": null, \"bbox\": [13, 624, 27, 20], \"children\": []}, {\"type\": \"th\", \"content\": \"\\u0412\\u0442.\", \"style\": null, \"bbox\": [42, 624, 23, 20], \"children\": []}, {\"type\": \"th\", \"content\": \"\\u0421\\u0440.\", \"style\": null, \"bbox\": [68, 624, 26, 20], \"children\": []}, {\"type\": \"th\", \"content\": \"\\u0427\\u0442.\", \"style\": null, \"bbox\": [96, 624, 24, 20], \"children\": []}, {\"type\": \"th\", \"content\": \"\\u041f\\u0442.\", \"style\": null, \"bbox\": [122, 624, 25, 20], \"children\": []}, {\"type\": \"th\", \"content\": \"\\u0421\\u0431.\", \"style\": null, \"bbox\": [149, 624, 25, 20], \"children\": []}, {\"type\": \"th\", \"content\": \"\\u0412\\u0441.\", \"style\": null, \"bbox\": [177, 624, 23, 20], \"children\": []}]}]}, {\"type\": \"tbody\", \"content\": \"\", \"style\": null, \"bbox\": [13, 646, 188, 108], \"children\": [{\"type\": \"tr\", \"content\": \"\", \"style\": null, \"bbox\": [13, 646, 188, 20], \"children\": [{\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [13, 646, 27, 20], \"children\": []}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [42, 646, 23, 20], \"children\": []}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [68, 646, 26, 20], \"children\": [{\"type\": \"a\", \"content\": \"01\", \"style\": null, \"bbox\": [69, 647, 16, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [96, 646, 24, 20], \"children\": [{\"type\": \"a\", \"content\": \"02\", \"style\": null, \"bbox\": [97, 647, 16, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [122, 646, 25, 20], \"children\": [{\"type\": \"a\", \"content\": \"03\", \"style\": null, \"bbox\": [123, 647, 16, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [149, 646, 25, 20], \"children\": [{\"type\": \"a\", \"content\": \"04\", \"style\": null, \"bbox\": [150, 647, 16, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [177, 646, 23, 20], \"children\": [{\"type\": \"a\", \"content\": \"05\", \"style\": null, \"bbox\": [178, 647, 16, 17], \"children\": []}]}]}, {\"type\": \"tr\", \"content\": \"\", \"style\": null, \"bbox\": [13, 668, 188, 20], \"children\": [{\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [13, 668, 27, 20], \"children\": [{\"type\": \"a\", \"content\": \"06\", \"style\": null, \"bbox\": [14, 669, 16, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [42, 668, 23, 20], \"children\": [{\"type\": \"a\", \"content\": \"07\", \"style\": null, \"bbox\": [43, 669, 16, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [68, 668, 26, 20], \"children\": [{\"type\": \"a\", \"content\": \"08\", \"style\": null, \"bbox\": [69, 669, 16, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [96, 668, 24, 20], \"children\": [{\"type\": \"a\", \"content\": \"09\", \"style\": null, \"bbox\": [97, 669, 16, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [122, 668, 25, 20], \"children\": [{\"type\": \"a\", \"content\": \"10\", \"style\": null, \"bbox\": [123, 669, 16, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [149, 668, 25, 20], \"children\": [{\"type\": \"a\", \"content\": \"11\", \"style\": null, \"bbox\": [150, 669, 15, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"12\", \"style\": null, \"bbox\": [177, 668, 23, 20], \"children\": []}]}, {\"type\": \"tr\", \"content\": \"\", \"style\": null, \"bbox\": [13, 690, 188, 20], \"children\": [{\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [13, 690, 27, 20], \"children\": [{\"type\": \"a\", \"content\": \"13\", \"style\": null, \"bbox\": [14, 691, 16, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [42, 690, 23, 20], \"children\": [{\"type\": \"a\", \"content\": \"14\", \"style\": null, \"bbox\": [43, 691, 16, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [68, 690, 26, 20], \"children\": [{\"type\": \"a\", \"content\": \"15\", \"style\": null, \"bbox\": [69, 691, 16, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [96, 690, 24, 20], \"children\": [{\"type\": \"a\", \"content\": \"16\", \"style\": null, \"bbox\": [97, 691, 16, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [122, 690, 25, 20], \"children\": [{\"type\": \"a\", \"content\": \"17\", \"style\": null, \"bbox\": [123, 691, 16, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [149, 690, 25, 20], \"children\": [{\"type\": \"a\", \"content\": \"18\", \"style\": null, \"bbox\": [150, 691, 16, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [177, 690, 23, 20], \"children\": [{\"type\": \"a\", \"content\": \"19\", \"style\": null, \"bbox\": [178, 691, 16, 17], \"children\": []}]}]}, {\"type\": \"tr\", \"content\": \"\", \"style\": null, \"bbox\": [13, 712, 188, 20], \"children\": [{\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [13, 712, 27, 20], \"children\": [{\"type\": \"a\", \"content\": \"20\", \"style\": null, \"bbox\": [14, 713, 16, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [42, 712, 23, 20], \"children\": [{\"type\": \"a\", \"content\": \"21\", \"style\": null, \"bbox\": [43, 713, 16, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [68, 712, 26, 20], \"children\": [{\"type\": \"a\", \"content\": \"22\", \"style\": null, \"bbox\": [69, 713, 16, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [96, 712, 24, 20], \"children\": [{\"type\": \"a\", \"content\": \"23\", \"style\": null, \"bbox\": [97, 713, 16, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [122, 712, 25, 20], \"children\": [{\"type\": \"a\", \"content\": \"24\", \"style\": null, \"bbox\": [123, 713, 16, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [149, 712, 25, 20], \"children\": [{\"type\": \"a\", \"content\": \"25\", \"style\": null, \"bbox\": [150, 713, 16, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [177, 712, 23, 20], \"children\": [{\"type\": \"a\", \"content\": \"26\", \"style\": null, \"bbox\": [178, 713, 16, 17], \"children\": []}]}]}, {\"type\": \"tr\", \"content\": \"\", \"style\": null, \"bbox\": [13, 734, 188, 20], \"children\": [{\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [13, 734, 27, 20], \"children\": [{\"type\": \"a\", \"content\": \"27\", \"style\": null, \"bbox\": [14, 735, 16, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [42, 734, 23, 20], \"children\": [{\"type\": \"a\", \"content\": \"28\", \"style\": null, \"bbox\": [43, 735, 16, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [68, 734, 26, 20], \"children\": [{\"type\": \"a\", \"content\": \"29\", \"style\": null, \"bbox\": [69, 735, 16, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [96, 734, 24, 20], \"children\": [{\"type\": \"a\", \"content\": \"30\", \"style\": null, \"bbox\": [97, 735, 16, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [122, 734, 25, 20], \"children\": []}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [149, 734, 25, 20], \"children\": []}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [177, 734, 23, 20], \"children\": []}]}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [11, 756, 241, 40], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [11, 756, 241, 40], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [11, 756, 241, 40], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [11, 756, 241, 40], \"children\": [{\"type\": \"form\", \"content\": \"\", \"style\": null, \"bbox\": [11, 756, 241, 40], \"children\": [{\"type\": \"select\", \"content\": \"\", \"style\": null, \"bbox\": [11, 756, 79, 19], \"children\": [{\"type\": \"option\", \"content\": \"\\u044f\\u043d\\u0432\\u0430\\u0440\\u044c\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b\\u044c\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"\\u043c\\u0430\\u0440\\u0442\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"\\u0430\\u043f\\u0440\\u0435\\u043b\\u044c\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"\\u043c\\u0430\\u0439\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"\\u0438\\u044e\\u043d\\u044c\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"\\u0438\\u044e\\u043b\\u044c\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440\\u044c\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440\\u044c\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"\\u043d\\u043e\\u044f\\u0431\\u0440\\u044c\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\\u044c\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}]}, {\"type\": \"select\", \"content\": \"\", \"style\": null, \"bbox\": [94, 756, 52, 19], \"children\": [{\"type\": \"option\", \"content\": \"2000\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2001\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2002\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2003\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2004\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2005\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2006\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2007\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2008\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2009\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2010\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2011\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2012\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2013\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2014\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2015\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2016\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2017\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2018\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2019\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2020\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2021\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2022\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2023\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}]}, {\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [11, 775, 177, 21], \"children\": []}]}]}]}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [11, 796, 241, 232], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [11, 796, 241, 18], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [11, 796, 241, 18], \"children\": [{\"type\": \"div\", \"content\": \"\\u0420\\u0443\\u0431\\u0440\\u0438\\u043a\\u0438 \\u043d\\u043e\\u0432\\u043e\\u0441\\u0442\\u0435\\u0439\", \"style\": null, \"bbox\": [11, 796, 241, 18], \"children\": []}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [11, 830, 241, 198], \"children\": [{\"type\": \"ul\", \"content\": \"\", \"style\": null, \"bbox\": [11, 830, 241, 198], \"children\": [{\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [51, 830, 201, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u042d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u043f\\u0440\\u0435\\u0441\\u0441-\\u0446\\u0435\\u043d\\u0442\\u0440\", \"style\": null, \"bbox\": [51, 830, 179, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [51, 848, 201, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u0412\\u0430\\u0436\\u043d\\u043e\\u0435\", \"style\": null, \"bbox\": [51, 848, 52, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [51, 866, 201, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u0413\\u0443\\u0431\\u0435\\u0440\\u043d\\u0430\\u0442\\u043e\\u0440\", \"style\": null, \"bbox\": [51, 866, 77, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [51, 884, 201, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u041f\\u0440\\u0430\\u0432\\u0438\\u0442\\u0435\\u043b\\u044c\\u0441\\u0442\\u0432\\u043e\", \"style\": null, \"bbox\": [51, 884, 101, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [51, 902, 201, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u041d\\u043e\\u0432\\u043e\\u0441\\u0442\\u0438 \\u0440\\u0435\\u0433\\u0438\\u043e\\u043d\\u0430\", \"style\": null, \"bbox\": [51, 902, 115, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [51, 920, 201, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u041f\\u0440\\u0438\\u0433\\u043b\\u0430\\u0448\\u0435\\u043d\\u0438\\u044f \\u0434\\u043b\\u044f \\u0421\\u041c\\u0418\", \"style\": null, \"bbox\": [51, 920, 160, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [51, 938, 201, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u041f\\u0430\\u043c\\u044f\\u0442\\u043d\\u044b\\u0435 \\u0434\\u0430\\u0442\\u044b\", \"style\": null, \"bbox\": [51, 938, 106, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [51, 956, 201, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u0413\\u043e\\u0440\\u044f\\u0447\\u0438\\u0435 \\u043b\\u0438\\u043d\\u0438\\u0438\", \"style\": null, \"bbox\": [51, 956, 101, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [51, 974, 201, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u041e\\u0431\\u0440\\u0430\\u0449\\u0435\\u043d\\u0438\\u044f\", \"style\": null, \"bbox\": [51, 974, 78, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [51, 992, 201, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u041e\\u0444\\u0438\\u0446\\u0438\\u0430\\u043b\\u044c\\u043d\\u044b\\u0439 \\u043a\\u043e\\u043c\\u043c\\u0435\\u043d\\u0442\\u0430\\u0440\\u0438\\u0439\", \"style\": null, \"bbox\": [51, 992, 192, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [51, 1010, 201, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u0410\\u0440\\u0445\\u0438\\u0432 \\u043d\\u043e\\u0432\\u043e\\u0441\\u0442\\u0435\\u0439\", \"style\": null, \"bbox\": [51, 1010, 109, 17], \"children\": []}]}]}]}]}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [255, 531, 1014, 532], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [256, 532, 1012, 508], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [256, 532, 1012, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u0413\\u043b\\u0430\\u0432\\u043d\\u0430\\u044f \\u0441\\u0442\\u0440\\u0430\\u043d\\u0438\\u0446\\u0430\", \"style\": null, \"bbox\": [256, 532, 119, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"\\u041d\\u043e\\u0432\\u043e\\u0441\\u0442\\u0438\", \"style\": null, \"bbox\": [388, 532, 58, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"\\u041d\\u043e\\u0432\\u043e\\u0441\\u0442\\u0438 \\u0440\\u0435\\u0433\\u0438\\u043e\\u043d\\u0430\", \"style\": null, \"bbox\": [459, 532, 115, 17], \"children\": []}]}, {\"type\": \"h1\", \"content\": \"\\u0423\\u043b\\u044c\\u044f\\u043d\\u043e\\u0432\\u0441\\u043a\\u0438\\u0435 \\u0445\\u043e\\u043a\\u043a\\u0435\\u0438\\u0441\\u0442\\u044b \\u0432\\u043e\\u0448\\u043b\\u0438 \\u0432 \\u043f\\u044f\\u0442\\u0451\\u0440\\u043a\\u0443 \\u0441\\u0438\\u043b\\u044c\\u043d\\u0435\\u0439\\u0448\\u0438\\u0445 \\u0432 \\u0444\\u0438\\u043d\\u0430\\u043b\\u044c\\u043d\\u044b\\u0445 \\u0441\\u043e\\u0441\\u0442\\u044f\\u0437\\u0430\\u043d\\u0438\\u044f\\u0445 \\u043e\\u043a\\u0440\\u0443\\u0436\\u043d\\u043e\\u0433\\u043e \\u043f\\u0440\\u043e\\u0435\\u043a\\u0442\\u0430 \\u00ab\\u0417\\u043e\\u043b\\u043e\\u0442\\u0430\\u044f \\u0448\\u0430\\u0439\\u0431\\u0430\\u00bb\", \"style\": null, \"bbox\": [256, 571, 1012, 74], \"children\": []}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [256, 666, 1012, 18], \"children\": [{\"type\": \"span\", \"content\": \"2 \\u043c\\u0430\\u0440\\u0442\\u0430 2023 \\u0433\\u043e\\u0434\\u0430, 10:02\", \"style\": null, \"bbox\": [256, 666, 164, 17], \"children\": []}, {\"type\": \"span\", \"content\": \"\", \"style\": null, \"bbox\": [425, 666, 122, 17], \"children\": [{\"type\": \"a\", \"content\": \"\\u0432\\u0435\\u0440\\u0441\\u0438\\u044f\\n\\u0434\\u043b\\u044f \\u043f\\u0435\\u0447\\u0430\\u0442\\u0438\", \"style\": null, \"bbox\": [425, 666, 122, 17], \"children\": []}]}, {\"type\": \"span\", \"content\": \"\", \"style\": null, \"bbox\": [551, 666, 129, 17], \"children\": [{\"type\": \"a\", \"content\": \"\\u043f\\u043e\\u0441\\u0442\\u043e\\u044f\\u043d\\u043d\\u0430\\u044f\\n\\u0441\\u0441\\u044b\\u043b\\u043a\\u0430\", \"style\": null, \"bbox\": [551, 666, 129, 17], \"children\": []}]}]}, {\"type\": \"h2\", \"content\": \"\\u0412 \\u0411\\u0430\\u0448\\u043a\\u043e\\u0440\\u0442\\u043e\\u0441\\u0442\\u0430\\u043d\\u0435 \\u0437\\u0430\\u0432\\u0435\\u0440\\u0448\\u0438\\u043b\\u0438\\u0441\\u044c \\u0412\\u0441\\u0435\\u0440\\u043e\\u0441\\u0441\\u0438\\u0439\\u0441\\u043a\\u0438\\u0435 \\u0444\\u0438\\u043d\\u0430\\u043b\\u044c\\u043d\\u044b\\u0435 \\u0441\\u043e\\u0440\\u0435\\u0432\\u043d\\u043e\\u0432\\u0430\\u043d\\u0438\\u044f \\u044e\\u043d\\u044b\\u0445 \\u0445\\u043e\\u043a\\u043a\\u0435\\u0438\\u0441\\u0442\\u043e\\u0432 \\u0432 \\u0434\\u0438\\u0432\\u0438\\u0437\\u0438\\u043e\\u043d\\u0435 \\u00ab\\u0412\\u043e\\u043b\\u0436\\u0441\\u043a\\u0438\\u0439\\u00bb \\u0441\\u0440\\u0435\\u0434\\u0438 \\u043a\\u043e\\u043c\\u0430\\u043d\\u0434 \\u044e\\u043d\\u043e\\u0448\\u0435\\u0439 2008-2009 \\u0433\\u043e\\u0434\\u043e\\u0432 \\u0440\\u043e\\u0436\\u0434\\u0435\\u043d\\u0438\\u044f.\", \"style\": null, \"bbox\": [256, 704, 1012, 54], \"children\": []}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [256, 778, 1012, 158], \"children\": [{\"type\": \"p\", \"content\": \"\\u0423\\u043b\\u044c\\u044f\\u043d\\u043e\\u0432\\u0441\\u043a\\u0443\\u044e \\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u044c \\u043d\\u0430 \\u00ab\\u0417\\u043e\\u043b\\u043e\\u0442\\u043e\\u0439 \\u0448\\u0430\\u0439\\u0431\\u0435\\u00bb \\u043f\\u0440\\u0435\\u0434\\u0441\\u0442\\u0430\\u0432\\u043b\\u044f\\u043b\\u0430 \\u043a\\u043e\\u043c\\u0430\\u043d\\u0434\\u0430 \\u00ab\\u041b\\u0438\\u0434\\u0435\\u0440-2008\\u00bb. \\u0421\\u043f\\u043e\\u0440\\u0442\\u0441\\u043c\\u0435\\u043d\\u044b \\u043f\\u043e\\u0434 \\u0440\\u0443\\u043a\\u043e\\u0432\\u043e\\u0434\\u0441\\u0442\\u0432\\u043e\\u043c \\u0442\\u0440\\u0435\\u043d\\u0435\\u0440\\u043e\\u0432 \\u0410\\u043b\\u0435\\u043a\\u0441\\u0430\\u043d\\u0434\\u0440\\u0430 \\u0421\\u0435\\u0440\\u0434\\u044e\\u043a\\u043e\\u0432\\u0430 \\u0438 \\u041f\\u0430\\u0432\\u043b\\u0430 \\u0411\\u043e\\u0447\\u043a\\u0430\\u0440\\u0435\\u0432\\u0430 \\u0437\\u0430\\u043d\\u044f\\u043b\\u0438 \\u043f\\u044f\\u0442\\u043e\\u0435 \\u043c\\u0435\\u0441\\u0442\\u043e.\", \"style\": null, \"bbox\": [256, 778, 1012, 36], \"children\": []}, {\"type\": \"p\", \"content\": \"\\u00ab\\u0412\\u043e\\u0441\\u043f\\u0438\\u0442\\u0430\\u043d\\u043d\\u0438\\u043a\\u0438 \\u0441\\u043f\\u043e\\u0440\\u0442\\u0438\\u0432\\u043d\\u043e\\u0439 \\u0448\\u043a\\u043e\\u043b\\u044b \\u00ab\\u041b\\u0438\\u0434\\u0435\\u0440\\u00bb \\u043f\\u0440\\u043e\\u0434\\u0435\\u043c\\u043e\\u043d\\u0441\\u0442\\u0440\\u0438\\u0440\\u043e\\u0432\\u0430\\u043b\\u0438 \\u043b\\u0443\\u0447\\u0448\\u0438\\u0439 \\u0438 \\u043f\\u043e\\u043a\\u0430\\u0437\\u0430\\u0442\\u0435\\u043b\\u044c\\u043d\\u044b\\u0439 \\u0440\\u0435\\u0437\\u0443\\u043b\\u044c\\u0442\\u0430\\u0442 \\u043d\\u0430\\u0448\\u0435\\u0439 \\u0448\\u043a\\u043e\\u043b\\u044b \\u0437\\u0430 \\u0432\\u0441\\u0435 \\u0433\\u043e\\u0434\\u044b \\u0443\\u0447\\u0430\\u0441\\u0442\\u0438\\u044f \\u0432 \\u0434\\u0430\\u043d\\u043d\\u044b\\u0445 \\u0441\\u043e\\u0440\\u0435\\u0432\\u043d\\u043e\\u0432\\u0430\\u043d\\u0438\\u044f\\u0445. \\u0420\\u0435\\u0431\\u044f\\u0442\\u0430 \\u0431\\u0438\\u043b\\u0438\\u0441\\u044c \\u043d\\u0430 \\u0432\\u0441\\u0435 100%, \\u043f\\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0438 \\u043a\\u0440\\u0430\\u0441\\u0438\\u0432\\u0443\\u044e \\u0438\\u0433\\u0440\\u0443 \\u0432 \\u0445\\u043e\\u043a\\u043a\\u0435\\u0439 \\u0438 \\u043a\\u043e\\u043c\\u0430\\u043d\\u0434\\u043d\\u0443\\u044e \\u0441\\u043f\\u043b\\u043e\\u0447\\u0451\\u043d\\u043d\\u043e\\u0441\\u0442\\u044c\\u00bb, - \\u043e\\u0442\\u043c\\u0435\\u0442\\u0438\\u043b \\u0440\\u0443\\u043a\\u043e\\u0432\\u043e\\u0434\\u0438\\u0442\\u0435\\u043b\\u044c \\u0440\\u0435\\u0433\\u0438\\u043e\\u043d\\u0430\\u043b\\u044c\\u043d\\u043e\\u0439 \\u0444\\u0435\\u0434\\u0435\\u0440\\u0430\\u0446\\u0438\\u0438 \\u0445\\u043e\\u043a\\u043a\\u0435\\u044f \\u0415\\u0432\\u0433\\u0435\\u043d\\u0438\\u0439 \\u0414\\u0430\\u0432\\u044b\\u0434\\u0435\\u043d\\u043a\\u043e.\", \"style\": null, \"bbox\": [256, 830, 1012, 54], \"children\": []}, {\"type\": \"p\", \"content\": \"\\u041d\\u0430\\u043f\\u043e\\u043c\\u043d\\u0438\\u043c, \\u0445\\u043e\\u043a\\u043a\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0442\\u0443\\u0440\\u043d\\u0438\\u0440 \\u00ab\\u0417\\u043e\\u043b\\u043e\\u0442\\u0430\\u044f \\u0448\\u0430\\u0439\\u0431\\u0430\\u00bb \\u043f\\u0440\\u043e\\u0432\\u043e\\u0434\\u0438\\u0442\\u0441\\u044f \\u043f\\u043e\\u0434 \\u043f\\u0430\\u0442\\u0440\\u043e\\u043d\\u0430\\u0442\\u043e\\u043c \\u043f\\u043e\\u043b\\u043d\\u043e\\u043c\\u043e\\u0447\\u043d\\u043e\\u0433\\u043e \\u043f\\u0440\\u0435\\u0434\\u0441\\u0442\\u0430\\u0432\\u0438\\u0442\\u0435\\u043b\\u044f \\u041f\\u0440\\u0435\\u0437\\u0438\\u0434\\u0435\\u043d\\u0442\\u0430 \\u0420\\u043e\\u0441\\u0441\\u0438\\u0439\\u0441\\u043a\\u043e\\u0439 \\u0424\\u0435\\u0434\\u0435\\u0440\\u0430\\u0446\\u0438\\u0438 \\u0432 \\u041f\\u0424\\u041e \\u0418\\u0433\\u043e\\u0440\\u044f \\u041a\\u043e\\u043c\\u0430\\u0440\\u043e\\u0432\\u0430. \\u0421\\u043e\\u0441\\u0442\\u044f\\u0437\\u0430\\u043d\\u0438\\u044f, \\u043a\\u043e\\u0442\\u043e\\u0440\\u044b\\u0435 \\u043f\\u0440\\u043e\\u0445\\u043e\\u0434\\u044f\\u0442 \\u0435\\u0436\\u0435\\u0433\\u043e\\u0434\\u043d\\u043e, \\u043d\\u0430\\u043f\\u0440\\u0430\\u0432\\u043b\\u0435\\u043d\\u044b \\u043d\\u0430 \\u043f\\u043e\\u0434\\u0434\\u0435\\u0440\\u0436\\u043a\\u0443 \\u043c\\u0430\\u0441\\u0441\\u043e\\u0432\\u043e\\u0433\\u043e \\u0434\\u0435\\u0442\\u0441\\u043a\\u043e\\u0433\\u043e \\u0438 \\u044e\\u043d\\u043e\\u0448\\u0435\\u0441\\u043a\\u043e\\u0433\\u043e \\u0445\\u043e\\u043a\\u043a\\u0435\\u044f.\", \"style\": null, \"bbox\": [256, 900, 1012, 36], \"children\": []}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [256, 952, 1012, 18], \"children\": [{\"type\": \"p\", \"content\": \"\\u0414\\u043e\\u0431\\u0430\\u0432\\u043b\\u0435\\u043d\\u043e: 2 \\u043c\\u0430\\u0440\\u0442\\u0430 2023 \\u0433\\u043e\\u0434\\u0430, 10:03\", \"style\": null, \"bbox\": [256, 952, 1012, 18], \"children\": []}]}, {\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [256, 986, 1012, 54], \"children\": [{\"type\": \"strong\", \"content\": \"\", \"style\": null, \"bbox\": [256, 986, 188, 17], \"children\": [{\"type\": \"a\", \"content\": \"\\u041f\\u043e\\u0434\\u043f\\u0438\\u0441\\u0430\\u0442\\u044c\\u0441\\u044f \\u043d\\u0430 \\u0440\\u0430\\u0441\\u0441\\u044b\\u043b\\u043a\\u0443\", \"style\": null, \"bbox\": [256, 986, 188, 17], \"children\": []}]}]}]}, {\"type\": \"table\", \"content\": \"\", \"style\": null, \"bbox\": [256, 1056, 121, 6], \"children\": [{\"type\": \"tbody\", \"content\": \"\", \"style\": null, \"bbox\": [258, 1058, 117, 2], \"children\": [{\"type\": \"tr\", \"content\": \"\", \"style\": null, \"bbox\": [258, 1058, 117, 2], \"children\": [{\"type\": \"td\", \"content\": \"\", \"style\": \"width:115px;\", \"bbox\": [258, 1058, 117, 2], \"children\": []}]}]}]}]}]}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1065, 1264, 644], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1065, 1264, 182], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1065, 1264, 182], \"children\": [{\"type\": \"table\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1065, 1264, 182], \"children\": [{\"type\": \"tbody\", \"content\": \"\", \"style\": null, \"bbox\": [10, 1067, 1260, 178], \"children\": [{\"type\": \"tr\", \"content\": \"\", \"style\": null, \"bbox\": [10, 1067, 1260, 178], \"children\": [{\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [10, 1067, 237, 178], \"children\": [{\"type\": \"ul\", \"content\": \"\", \"style\": null, \"bbox\": [11, 1084, 235, 144], \"children\": [{\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [51, 1084, 195, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u041e\\u043d\\u043b\\u0430\\u0439\\u043d\\u0438\\u043d\\u0441\\u043f\\u0435\\u043a\\u0446\\u0438\\u044f.\\u0440\\u0444\", \"style\": null, \"bbox\": [51, 1084, 146, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [51, 1102, 195, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u0411\\u044e\\u0434\\u0436\\u0435\\u0442\", \"style\": null, \"bbox\": [51, 1102, 53, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [51, 1120, 195, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u042d\\u043a\\u043e\\u043d\\u043e\\u043c\\u0438\\u043a\\u0430\", \"style\": null, \"bbox\": [51, 1120, 75, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [51, 1138, 195, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u0417\\u0430\\u043a\\u043e\\u043d\\u043e\\u0434\\u0430\\u0442\\u0435\\u043b\\u044c\\u0441\\u0442\\u0432\\u043e\", \"style\": null, \"bbox\": [51, 1138, 119, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [51, 1156, 195, 36], \"children\": [{\"type\": \"a\", \"content\": \"\\u0410\\u0434\\u043c\\u0438\\u043d\\u0438\\u0441\\u0442\\u0440\\u0430\\u0442\\u0438\\u0432\\u043d\\u044b\\u0435 \\u0440\\u0435\\u0433\\u043b\\u0430\\u043c\\u0435\\u043d\\u0442\\u044b\", \"style\": null, \"bbox\": [51, 1156, 134, 35], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [51, 1192, 195, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u0410\\u0434\\u043c\\u0438\\u043d\\u0438\\u0441\\u0442\\u0440\\u0430\\u0442\\u0438\\u0432\\u043d\\u0430\\u044f \\u0440\\u0435\\u0444\\u043e\\u0440\\u043c\\u0430\", \"style\": null, \"bbox\": [51, 1192, 193, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [51, 1210, 195, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u042d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u043f\\u0440\\u0435\\u0441\\u0441-\\u0446\\u0435\\u043d\\u0442\\u0440\", \"style\": null, \"bbox\": [51, 1210, 179, 17], \"children\": []}]}]}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [249, 1067, 665, 178], \"children\": [{\"type\": \"ul\", \"content\": \"\", \"style\": null, \"bbox\": [250, 1093, 663, 126], \"children\": [{\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [290, 1093, 623, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u0420\\u0435\\u0433\\u0438\\u0441\\u0442\\u0440 \\u041c\\u041d\\u041f\\u0410.\\u041c\\u043e\\u043d\\u0438\\u0442\\u043e\\u0440\\u0438\\u043d\\u0433 \\u043f\\u0440\\u0430\\u0432\\u043e\\u043f\\u0440\\u0438\\u043c\\u0435\\u043d\\u0435\\u043d\\u0438\\u044f\", \"style\": null, \"bbox\": [290, 1093, 321, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [290, 1111, 623, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u041a\\u043e\\u043c\\u0438\\u0441\\u0441\\u0438\\u044f \\u043f\\u043e \\u0434\\u0435\\u043b\\u0430\\u043c \\u043d\\u0435\\u0441\\u043e\\u0432\\u0435\\u0440\\u0448\\u0435\\u043d\\u043d\\u043e\\u043b\\u0435\\u0442\\u043d\\u0438\\u0445\", \"style\": null, \"bbox\": [290, 1111, 280, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [290, 1129, 623, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u041f\\u0440\\u043e\\u0442\\u0438\\u0432\\u043e\\u0434\\u0435\\u0439\\u0441\\u0442\\u0432\\u0438\\u0435 \\u043a\\u043e\\u0440\\u0440\\u0443\\u043f\\u0446\\u0438\\u0438\", \"style\": null, \"bbox\": [290, 1129, 196, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [290, 1147, 623, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u041b\\u0438\\u0447\\u043d\\u044b\\u0439 \\u043a\\u0430\\u0431\\u0438\\u043d\\u0435\\u0442 \\u043e\\u0431\\u0440\\u0430\\u0449\\u0435\\u043d\\u0438\\u044f \\u0433\\u0440\\u0430\\u0436\\u0434\\u0430\\u043d \\u0432 \\u043f\\u0440\\u0438\\u0435\\u043c\\u043d\\u0443\\u044e \\u0433\\u0443\\u0431\\u0435\\u0440\\u043d\\u0430\\u0442\\u043e\\u0440\\u0430\", \"style\": null, \"bbox\": [290, 1147, 425, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [290, 1165, 623, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u0417\\u0430\\u043a\\u043e\\u043d\\u043e\\u0434\\u0430\\u0442\\u0435\\u043b\\u044c\\u043d\\u043e\\u0435 \\u0441\\u043e\\u0431\\u0440\\u0430\\u043d\\u0438\\u0435 \\u0423\\u043b\\u044c\\u044f\\u043d\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439 \\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u0438\", \"style\": null, \"bbox\": [290, 1165, 329, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [290, 1183, 623, 36], \"children\": [{\"type\": \"a\", \"content\": \"\\u041e\\u0444\\u0438\\u0446\\u0438\\u0430\\u043b\\u044c\\u043d\\u044b\\u0439 \\u0441\\u0430\\u0439\\u0442 \\u043f\\u043e\\u043b\\u043d\\u043e\\u043c\\u043e\\u0447\\u043d\\u043e\\u0433\\u043e \\u043f\\u0440\\u0435\\u0434\\u0441\\u0442\\u0430\\u0432\\u0438\\u0442\\u0435\\u043b\\u044f \\u041f\\u0440\\u0435\\u0437\\u0438\\u0434\\u0435\\u043d\\u0442\\u0430 \\u0420\\u043e\\u0441\\u0441\\u0438\\u0439\\u0441\\u043a\\u043e\\u0439 \\u0424\\u0435\\u0434\\u0435\\u0440\\u0430\\u0446\\u0438\\u0438 \\u0432 \\u041f\\u0440\\u0438\\u0432\\u043e\\u043b\\u0436\\u0441\\u043a\\u043e\\u043c \\u0444\\u0435\\u0434\\u0435\\u0440\\u0430\\u043b\\u044c\\u043d\\u043e\\u043c \\u043e\\u043a\\u0440\\u0443\\u0433\\u0435\", \"style\": null, \"bbox\": [290, 1183, 593, 35], \"children\": []}]}]}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [917, 1067, 352, 178], \"children\": [{\"type\": \"ul\", \"content\": \"\", \"style\": null, \"bbox\": [918, 1093, 350, 126], \"children\": [{\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [958, 1093, 310, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u0418\\u043d\\u0444\\u043e\\u0440\\u043c\\u0430\\u0446\\u0438\\u044f \\u043e \\u043a\\u0443\\u043b\\u044c\\u0442\\u0443\\u0440\\u043d\\u044b\\u0445 \\u043c\\u0435\\u0440\\u043e\\u043f\\u0440\\u0438\\u044f\\u0442\\u0438\\u044f\\u0445\", \"style\": null, \"bbox\": [958, 1093, 284, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [958, 1111, 310, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u041d\\u0430\\u0433\\u0440\\u0430\\u0434\\u043d\\u0430\\u044f \\u0434\\u0435\\u044f\\u0442\\u0435\\u043b\\u044c\\u043d\\u043e\\u0441\\u0442\\u044c\", \"style\": null, \"bbox\": [958, 1111, 165, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [958, 1129, 310, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u0420\\u0430\\u0431\\u043e\\u0442\\u0430 \\u0432 \\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\", \"style\": null, \"bbox\": [958, 1129, 110, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [958, 1147, 310, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u042f\\u0434\\u0435\\u0440\\u043d\\u043e-\\u0438\\u043d\\u043d\\u043e\\u0432\\u0430\\u0446\\u0438\\u043e\\u043d\\u043d\\u044b\\u0439 \\u043a\\u043b\\u0430\\u0441\\u0442\\u0435\\u0440\", \"style\": null, \"bbox\": [958, 1147, 221, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [958, 1165, 310, 36], \"children\": [{\"type\": \"a\", \"content\": \"\\u0413\\u043b\\u0430\\u0432\\u043d\\u043e\\u0435 \\u0443\\u043f\\u0440\\u0430\\u0432\\u043b\\u0435\\u043d\\u0438\\u0435 \\u041c\\u0427\\u0421 \\u0420\\u043e\\u0441\\u0441\\u0438\\u0438 \\u043f\\u043e \\u0423\\u043b\\u044c\\u044f\\u043d\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439 \\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u0438\", \"style\": null, \"bbox\": [958, 1165, 248, 35], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [958, 1201, 310, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u0413\\u043e\\u0441\\u0443\\u0434\\u0430\\u0440\\u0441\\u0442\\u0432\\u0435\\u043d\\u043d\\u0430\\u044f \\u043d\\u0430\\u0446\\u0438\\u043e\\u043d\\u0430\\u043b\\u044c\\u043d\\u0430\\u044f \\u043f\\u043e\\u043b\\u0438\\u0442\\u0438\\u043a\\u0430\", \"style\": null, \"bbox\": [958, 1201, 279, 17], \"children\": []}]}]}]}]}]}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1247, 1264, 462], \"children\": [{\"type\": \"table\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1247, 1264, 284], \"children\": [{\"type\": \"tbody\", \"content\": \"\", \"style\": null, \"bbox\": [10, 1249, 1260, 280], \"children\": [{\"type\": \"tr\", \"content\": \"\", \"style\": null, \"bbox\": [10, 1249, 1260, 280], \"children\": [{\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [10, 1249, 893, 280], \"children\": [{\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [11, 1276, 891, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u0413\\u043b\\u0430\\u0432\\u043d\\u0430\\u044f\", \"style\": null, \"bbox\": [11, 1276, 53, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"\\u041d\\u043e\\u0432\\u043e\\u0441\\u0442\\u0438\", \"style\": null, \"bbox\": [75, 1276, 58, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"\\u041a\\u043e\\u043d\\u0442\\u0430\\u043a\\u0442\\u044b\", \"style\": null, \"bbox\": [145, 1276, 66, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"\\u041a\\u0430\\u0440\\u0442\\u0430 \\u0441\\u0430\\u0439\\u0442\\u0430\", \"style\": null, \"bbox\": [222, 1276, 80, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"\\u041f\\u043e\\u0438\\u0441\\u043a\", \"style\": null, \"bbox\": [314, 1276, 43, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"\\u0421\\u0441\\u044b\\u043b\\u043a\\u0438\", \"style\": null, \"bbox\": [368, 1276, 53, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"RSS\", \"style\": null, \"bbox\": [432, 1276, 28, 17], \"children\": []}]}, {\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [11, 1310, 891, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u0417\\u0430\\u043a\\u043e\\u043d\\u043e\\u0434\\u0430\\u0442\\u0435\\u043b\\u044c\\u043d\\u0430\\u044f \\u043a\\u0430\\u0440\\u0442\\u0430 \\u043f\\u043e\\n\\t\\t\\t\\t\\u0424\\u0417 \\u2116 8\", \"style\": null, \"bbox\": [11, 1310, 230, 17], \"children\": []}]}, {\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [11, 1344, 891, 18], \"children\": [{\"type\": \"a\", \"content\": \"\\u0418\\u043d\\u0441\\u0442\\u0440\\u0443\\u043a\\u0446\\u0438\\u044f \\u043f\\u043e \\u043f\\u043e\\u043b\\u044c\\u0437\\u043e\\u0432\\u0430\\u043d\\u0438\\u044e \\u0441\\u0430\\u0439\\u0442\\u0430 \\u0434\\u043b\\u044f \\u043b\\u044e\\u0434\\u0435\\u0439 \\u0441 \\u043e\\u0433\\u0440\\u0430\\u043d\\u0438\\u0447\\u0435\\u043d\\u043d\\u044b\\u043c\\u0438 \\u0432\\u043e\\u0437\\u043c\\u043e\\u0436\\u043d\\u043e\\u0441\\u0442\\u044f\\u043c\\u0438 \\u0437\\u0434\\u043e\\u0440\\u043e\\u0432\\u044c\\u044f\", \"style\": null, \"bbox\": [11, 1344, 611, 17], \"children\": []}]}, {\"type\": \"p\", \"content\": \"\\u041e\\u0431\\u0440\\u0430\\u0449\\u0435\\u043d\\u0438\\u044f \\u0432 \\u0444\\u043e\\u0440\\u043c\\u0435 \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u043e\\u0433\\u043e \\u0434\\u043e\\u043a\\u0443\\u043c\\u0435\\u043d\\u0442\\u0430, \\u043d\\u0430\\u043f\\u0440\\u0430\\u0432\\u043b\\u0435\\u043d\\u043d\\u044b\\u0435 \\u0413\\u0443\\u0431\\u0435\\u0440\\u043d\\u0430\\u0442\\u043e\\u0440\\u0443 \\u0438 \\u0432 \\u041f\\u0440\\u0430\\u0432\\u0438\\u0442\\u0435\\u043b\\u044c\\u0441\\u0442\\u0432\\u043e \\u0423\\u043b\\u044c\\u044f\\u043d\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439 \\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u0438 \\u0431\\u0435\\u0437 \\u0437\\u0430\\u043f\\u043e\\u043b\\u043d\\u0435\\u043d\\u0438\\u044f \\u0444\\u043e\\u0440\\u043c\\u044b \\u0432 \\u0440\\u0430\\u0437\\u0434\\u0435\\u043b\\u0435 \\u00ab\\u041e\\u0442\\u043f\\u0440\\u0430\\u0432\\u0438\\u0442\\u044c \\u043e\\u0431\\u0440\\u0430\\u0449\\u0435\\u043d\\u0438\\u0435 \\u0432 \\u0444\\u043e\\u0440\\u043c\\u0435 \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u043e\\u0433\\u043e \\u0434\\u043e\\u043a\\u0443\\u043c\\u0435\\u043d\\u0442\\u0430 \\u0413\\u0443\\u0431\\u0435\\u0440\\u043d\\u0430\\u0442\\u043e\\u0440\\u0443 \\u0423\\u043b\\u044c\\u044f\\u043d\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439 \\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u0438 \\u0438 \\u0432 \\u041f\\u0440\\u0430\\u0432\\u0438\\u0442\\u0435\\u043b\\u044c\\u0441\\u0442\\u0432\\u043e \\u0423\\u043b\\u044c\\u044f\\u043d\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439 \\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u0438\\u00bb \\u043e\\u0444\\u0438\\u0446\\u0438\\u0430\\u043b\\u044c\\u043d\\u043e\\u0433\\u043e \\u0441\\u0430\\u0439\\u0442\\u0430, \\u043f\\u043e \\u0430\\u0434\\u0440\\u0435\\u0441\\u0443 \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u043e\\u0439 \\u043f\\u043e\\u0447\\u0442\\u044b \\u0413\\u0443\\u0431\\u0435\\u0440\\u043d\\u0430\\u0442\\u043e\\u0440\\u0430 \\u0438 \\u041f\\u0440\\u0430\\u0432\\u0438\\u0442\\u0435\\u043b\\u044c\\u0441\\u0442\\u0432\\u0430 \\u0423\\u043b\\u044c\\u044f\\u043d\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439 \\u043e\\u0431\\u043b\\u0430\\u0441\\u0442\\u0438 \\u0438 (\\u0438\\u043b\\u0438) \\u043c\\u0438\\u043d\\u0443\\u044f \\u043b\\u0438\\u0447\\u043d\\u044b\\u0439 \\u043a\\u0430\\u0431\\u0438\\u043d\\u0435\\u0442, \\u043a \\u0440\\u0430\\u0441\\u0441\\u043c\\u043e\\u0442\\u0440\\u0435\\u043d\\u0438\\u044e \\u043d\\u0435 \\u043f\\u0440\\u0438\\u043d\\u0438\\u043c\\u0430\\u044e\\u0442\\u0441\\u044f.\", \"style\": null, \"bbox\": [11, 1378, 891, 72], \"children\": []}, {\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [11, 1466, 891, 36], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [905, 1249, 132, 280], \"children\": [{\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [906, 1266, 130, 18], \"children\": [{\"type\": \"strong\", \"content\": \"\", \"style\": null, \"bbox\": [906, 1266, 78, 17], \"children\": [{\"type\": \"a\", \"content\": \"\\u041a\\u043e\\u043d\\u0442\\u0430\\u043a\\u0442\\u044b:\", \"style\": null, \"bbox\": [906, 1266, 78, 17], \"children\": []}]}]}, {\"type\": \"p\", \"content\": \"432017 \\u0433. \\u0423\\u043b\\u044c\\u044f\\u043d\\u043e\\u0432\\u0441\\u043a \\u043f\\u043b. \\u0421\\u043e\\u0431\\u043e\\u0440\\u043d\\u0430\\u044f, \\u0434.1\", \"style\": null, \"bbox\": [906, 1300, 130, 54], \"children\": []}, {\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [906, 1370, 130, 72], \"children\": []}, {\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [906, 1458, 130, 54], \"children\": [{\"type\": \"a\", \"content\": \"\\u041e\\u0442\\u043f\\u0440\\u0430\\u0432\\u0438\\u0442\\u044c \\u043e\\u0431\\u0440\\u0430\\u0449\\u0435\\u043d\\u0438\\u0435 \\u0413\\u0443\\u0431\\u0435\\u0440\\u043d\\u0430\\u0442\\u043e\\u0440\\u0443\", \"style\": null, \"bbox\": [906, 1458, 85, 53], \"children\": []}]}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [1040, 1249, 127, 280], \"children\": [{\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [1041, 1276, 125, 18], \"children\": [{\"type\": \"strong\", \"content\": \"\", \"style\": null, \"bbox\": [1041, 1276, 55, 17], \"children\": [{\"type\": \"a\", \"content\": \"\\u041e \\u0441\\u0430\\u0439\\u0442\\u0435\", \"style\": null, \"bbox\": [1041, 1276, 55, 17], \"children\": []}]}]}, {\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [1041, 1310, 125, 18], \"children\": []}, {\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [1041, 1344, 125, 54], \"children\": [{\"type\": \"a\", \"content\": \"\\u041f\\u043e\\u0434\\u0434\\u0435\\u0440\\u0436\\u043a\\u0430 \\u0438 \\u043f\\u0440\\u043e\\u0434\\u0432\\u0438\\u0436\\u0435\\u043d\\u0438\\u0435 \\u0441\\u0430\\u0439\\u0442\\u0430\", \"style\": null, \"bbox\": [1041, 1344, 90, 53], \"children\": []}]}, {\"type\": \"p\", \"content\": \"\\u041d\\u0430\\u0448\\u043b\\u0438 \\u043e\\u043f\\u0435\\u0447\\u0430\\u0442\\u043a\\u0443? Ctrl + Enter\", \"style\": null, \"bbox\": [1041, 1414, 125, 36], \"children\": []}, {\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [1041, 1466, 125, 36], \"children\": [{\"type\": \"a\", \"content\": \"\\u041e\\u0441\\u0442\\u0430\\u0432\\u044c\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0435 \\u043c\\u043d\\u0435\\u043d\\u0438\\u0435 \\u043e \\u0441\\u0430\\u0439\\u0442\\u0435\", \"style\": null, \"bbox\": [1041, 1466, 103, 35], \"children\": []}]}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [1169, 1249, 100, 280], \"children\": [{\"type\": \"img\", \"content\": \"\", \"style\": \"border: 6px solid white; margin-left:10px;\", \"bbox\": [1180, 1356, 12, 12], \"children\": []}, {\"type\": \"a\", \"content\": \"\", \"style\": \"margin-left:10px;\", \"bbox\": [1180, 1407, 88, 17], \"children\": [{\"type\": \"img\", \"content\": \"\", \"style\": \"width:88px; height:31px; border:0;\", \"bbox\": [1180, 1390, 88, 31], \"children\": []}]}]}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1547, 1264, 162], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1547, 1264, 162], \"children\": [{\"type\": \"button\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1558, 16, 6], \"children\": []}, {\"type\": \"form\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1586, 1264, 123], \"children\": [{\"type\": \"h4\", \"content\": \"\\u0412\\u044b \\u0434\\u0435\\u0439\\u0441\\u0442\\u0432\\u0438\\u0442\\u0435\\u043b\\u044c\\u043d\\u043e \\u0445\\u043e\\u0442\\u0438\\u0442\\u0435 \\u043e\\u0442\\u043f\\u0440\\u0430\\u0432\\u0438\\u0442\\u044c \\u044d\\u0442\\u0443 \\u043e\\u0448\\u0438\\u0431\\u043a\\u0443?\", \"style\": null, \"bbox\": [8, 1586, 1264, 18], \"children\": []}, {\"type\": \"p\", \"content\": \"\", \"style\": \"display: block;text-align: center;color:#ffffff;padding:5px;\", \"bbox\": [8, 1626, 1264, 10], \"children\": []}, {\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [8, 1652, 177, 21], \"children\": []}, {\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [189, 1652, 177, 21], \"children\": []}, {\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [370, 1652, 177, 21], \"children\": []}, {\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [551, 1652, 177, 21], \"children\": []}, {\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1689, 1264, 21], \"children\": [{\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [8, 1689, 177, 21], \"children\": []}]}]}]}]}]}]}]}]}"},"text":{"kind":"string","value":"\n\n\n\nУльяновские хоккеисты вошли в пятёрку сильнейших в финальных состязаниях окружного проекта «Золотая шайба» / Ульяновская область : Губернатор и Правительство / Сообщения пресс-службы
 
Губернатор и Правительство
УЛЬЯНОВСКОЙ ОБЛАСТИ
Официальный сайт
Новости по датам
  
Ноябрь, 2023
Пн.Вт.Ср.Чт.Пт.Сб.Вс.
  0102030405
06070809101112
13141516171819
20212223242526
27282930   

Ульяновские хоккеисты вошли в пятёрку сильнейших в финальных состязаниях окружного проекта «Золотая шайба»

В Башкортостане завершились Всероссийские финальные соревнования юных хоккеистов в дивизионе «Волжский» среди команд юношей 2008-2009 годов рождения.

Ульяновскую область на «Золотой шайбе» представляла команда «Лидер-2008». Спортсмены под руководством тренеров Александра Сердюкова и Павла Бочкарева заняли пятое место.

«Воспитанники спортивной школы «Лидер» продемонстрировали лучший и показательный результат нашей школы за все годы участия в данных соревнованиях. Ребята бились на все 100%, показали красивую игру в хоккей и командную сплочённость», - отметил руководитель региональной федерации хоккея Евгений Давыденко.

Напомним, хоккейный турнир «Золотая шайба» проводится под патронатом полномочного представителя Президента Российской Федерации в ПФО Игоря Комарова. Состязания, которые проходят ежегодно, направлены на поддержку массового детского и юношеского хоккея.

Добавлено: 2 марта 2023 года, 10:03

Подписаться на рассылку


Главная | Новости\n\t\t\t\t| Контакты | Карта сайта\n\t\t\t\t| Поиск | Ссылки | RSS

Законодательная карта по\n\t\t\t\tФЗ № 8

Инструкция по пользованию сайта для людей с ограниченными возможностями здоровья

Обращения в форме электронного документа, направленные Губернатору и в Правительство Ульяновской области без заполнения формы в разделе «Отправить обращение в форме электронного документа Губернатору Ульяновской области и в Правительство Ульяновской области» официального сайта, по адресу электронной почты Губернатора и Правительства Ульяновской области и (или) минуя личный кабинет, к рассмотрению не принимаются.

Правительство Ульяновской области © 2006-2023
\n\t\t\t\tИспользование материалов сайта без ссылки на источник запрещено

Контакты:

432017 г. Ульяновск пл. Соборная, д.1

\n\t\t\t\t+7 8422 58-93-43 - Факс
\n\t\t\t\t+7 8422 273772 - Бюро пропусков

Отправить обращение Губернатору

О сайте

Статистика

 

Поддержка и продвижение сайта

Нашли опечатку? Ctrl + Enter

Оставьте свое мнение о сайте



Ошибка в тексте

Вы действительно хотите отправить эту ошибку?

x

Оставьте свое мнение о сайте

Спасибо за ваше мнение

x
"},"score":{"kind":"number","value":3,"string":"3"},"scale":{"kind":"list like","value":[1280,1726],"string":"[\n 1280,\n 1726\n]"},"lang":{"kind":"string","value":"ru"},"tokens":{"kind":"list like","value":[385,7822],"string":"[\n 385,\n 7822\n]"},"hash":{"kind":"string","value":"4f48f9200456f7a4ae5c76ca599857ac65e06d9cc6757a226c3419019a091c73"}}},{"rowIdx":4,"cells":{"image":{"kind":"image","value":{"src":"https://datasets-server.huggingface.co/assets/xcodemind/webcode2m/--/f53cd4a9317364e32a6fc7d99dc50761fe54715f/--/default/train/4/image/image.png?Expires=1756287790&Signature=K0~27lpc9ew8YwnEZkyG6oI5EMTp5AJsDg3mWheWXUtif8kAh6Hs2AfEQXvHde2kc3WpYkTYdGMD~hovTOKLHT134XL~3xeO1zNkEqZrK5Iw5TzVbSU~hmmcMn0ABEYA7qN8IaT1rJ6P8TugtjD5MH2mYnRbOCp8p8X1Q2J2bpirJutyEz5w1ky3Ttj8wYpfKYSsH9kRSdPP67VJAAWEgCoL0ettW~koOBlUJ~36qdVUFDDBuV7ehreSFT-nKAzfYLG5kKpKirIEOyLZkdI4mCFiD6gQMnG4YE5fIi1zfukE4efOwcgURMnMVNjOa8RtbczIWCwRCVG3vj0WjzT1BA__&Key-Pair-Id=K3EI6M078Z3AC3","height":1924,"width":1280},"inferredFromUrl":false},"bbox":{"kind":"string","value":"{\"type\": \"body\", \"content\": \"\", \"style\": \"font-family: arial, sans-serif\", \"bbox\": [8, 8, 1264, 1907], \"children\": [{\"type\": \"center\", \"content\": \"\", \"style\": null, \"bbox\": [8, 8, 1264, 1907], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [521, 8, 237, 44], \"children\": [{\"type\": \"img\", \"content\": \"\", \"style\": \"border:0;\", \"bbox\": [523, 10, 233, 40], \"children\": []}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 90, 1264, 37], \"children\": [{\"type\": \"form\", \"content\": \"\", \"style\": null, \"bbox\": [8, 90, 1264, 37], \"children\": [{\"type\": \"input\", \"content\": \"\", \"style\": \"width: 220px; padding: 10px; border: 1px solid rgb(0, 0, 0); border-radius: 5px;\", \"bbox\": [421, 90, 242, 37], \"children\": []}, {\"type\": \"input\", \"content\": \"\", \"style\": \"padding: 10px; border: 1px solid rgb(0, 0, 0); border-radius: 5px;\", \"bbox\": [667, 90, 191, 37], \"children\": []}]}]}, {\"type\": \"h1\", \"content\": \"www.lonestar.org\", \"style\": \"color: #293eb9\", \"bbox\": [8, 202, 1264, 37], \"children\": []}, {\"type\": \"span\", \"content\": \"Lonestar.org\", \"style\": null, \"bbox\": [595, 260, 88, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [622, 296, 36, 36], \"children\": [{\"type\": \"img\", \"content\": \"\", \"style\": null, \"bbox\": [624, 298, 32, 32], \"children\": []}]}, {\"type\": \"div\", \"content\": \"\", \"style\": \" width:265px;; text-align: center; width: 600px; margin: auto\", \"bbox\": [340, 334, 600, 150], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"width: 240px; float: left; padding: 16px\", \"bbox\": [340, 334, 272, 150], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"padding: 15px; font-size: 2em; font-weight: 400; background: #efefef; border-bottom: 1px solid #ddd; border-radius: 10px 10px 0 0\", \"bbox\": [356, 350, 240, 68], \"children\": [{\"type\": \"b\", \"content\": \"7.967.986\", \"style\": \"font-weight: 400\", \"bbox\": [404, 365, 142, 36], \"children\": []}]}, {\"type\": \"div\", \"content\": \"\", \"style\": \"padding: 10px\", \"bbox\": [356, 418, 240, 50], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [407, 428, 137, 28], \"children\": [{\"type\": \"img\", \"content\": \"\", \"style\": \"margin-right:5px;\", \"bbox\": [409, 430, 24, 24], \"children\": []}, {\"type\": \"b\", \"content\": \"World Ranking\", \"style\": \"font-weight: 400\", \"bbox\": [438, 430, 104, 24], \"children\": []}]}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": \"margin-top:30px; font-size:18px;\", \"bbox\": [8, 514, 1264, 27], \"children\": [{\"type\": \"table\", \"content\": \"\", \"style\": null, \"bbox\": [521, 514, 237, 27], \"children\": [{\"type\": \"tbody\", \"content\": \"\", \"style\": null, \"bbox\": [523, 516, 233, 23], \"children\": [{\"type\": \"tr\", \"content\": \"\", \"style\": null, \"bbox\": [523, 516, 233, 23], \"children\": [{\"type\": \"td\", \"content\": \"Owner:\", \"style\": \"width:70px; text-align:right;; max-width: 475px\", \"bbox\": [523, 516, 72, 23], \"children\": []}, {\"type\": \"td\", \"content\": \"Texas Lunch Bunch\", \"style\": \"max-width: 475px\", \"bbox\": [597, 516, 159, 23], \"children\": []}]}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": \"margin-top:70px;\", \"bbox\": [8, 611, 1264, 28], \"children\": [{\"type\": \"h2\", \"content\": \"Lonestar Service on cloud1\", \"style\": null, \"bbox\": [8, 611, 1264, 28], \"children\": []}]}, {\"type\": \"div\", \"content\": \"\", \"style\": \"margin-top:70px;;\", \"bbox\": [8, 709, 1264, 83], \"children\": [{\"type\": \"h2\", \"content\": \"Lonestar Contact\", \"style\": null, \"bbox\": [8, 709, 1264, 28], \"children\": []}, {\"type\": \"div\", \"content\": \"\", \"style\": \"padding:5px;\", \"bbox\": [8, 757, 1264, 36], \"children\": [{\"type\": \"b\", \"content\": \"\", \"style\": \"font-weight: 400\", \"bbox\": [565, 768, 122, 17], \"children\": [{\"type\": \"a\", \"content\": \"[email\\u00a0protected]\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [565, 766, 122, 22], \"children\": []}]}, {\"type\": \"a\", \"content\": \"\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [692, 762, 22, 22], \"children\": [{\"type\": \"img\", \"content\": \"\", \"style\": null, \"bbox\": [694, 764, 18, 18], \"children\": []}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": \"margin-top:70px;;\", \"bbox\": [8, 863, 1264, 197], \"children\": [{\"type\": \"h2\", \"content\": \"www.lonestar.org Competitor Website\", \"style\": null, \"bbox\": [8, 863, 1264, 28], \"children\": []}, {\"type\": \"table\", \"content\": \"\", \"style\": null, \"bbox\": [357, 911, 565, 150], \"children\": [{\"type\": \"tbody\", \"content\": \"\", \"style\": null, \"bbox\": [359, 913, 561, 146], \"children\": [{\"type\": \"tr\", \"content\": \"\", \"style\": null, \"bbox\": [359, 913, 561, 24], \"children\": [{\"type\": \"td\", \"content\": \"895.180\", \"style\": \"width:70px; text-align:right;; max-width: 475px\", \"bbox\": [359, 913, 73, 24], \"children\": []}, {\"type\": \"td\", \"content\": \"-\", \"style\": \"max-width: 475px\", \"bbox\": [434, 913, 7, 24], \"children\": []}, {\"type\": \"td\", \"content\": \"\", \"style\": \"max-width: 475px\", \"bbox\": [443, 913, 477, 24], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [444, 914, 83, 22], \"children\": []}]}]}, {\"type\": \"tr\", \"content\": \"\", \"style\": null, \"bbox\": [359, 939, 561, 24], \"children\": [{\"type\": \"td\", \"content\": \"1.701.651\", \"style\": \"width:70px; text-align:right;; max-width: 475px\", \"bbox\": [359, 939, 73, 24], \"children\": []}, {\"type\": \"td\", \"content\": \"-\", \"style\": \"max-width: 475px\", \"bbox\": [434, 939, 7, 24], \"children\": []}, {\"type\": \"td\", \"content\": \"\", \"style\": \"max-width: 475px\", \"bbox\": [443, 939, 477, 24], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [444, 940, 459, 22], \"children\": [{\"type\": \"span\", \"content\": \"-\\u00a0The Web Application Security Consortium\", \"style\": \"color: #333333;\", \"bbox\": [593, 942, 308, 18], \"children\": []}]}]}]}, {\"type\": \"tr\", \"content\": \"\", \"style\": null, \"bbox\": [359, 965, 561, 24], \"children\": [{\"type\": \"td\", \"content\": \"5.413.443\", \"style\": \"width:70px; text-align:right;; max-width: 475px\", \"bbox\": [359, 965, 73, 24], \"children\": []}, {\"type\": \"td\", \"content\": \"-\", \"style\": \"max-width: 475px\", \"bbox\": [434, 965, 7, 24], \"children\": []}, {\"type\": \"td\", \"content\": \"\", \"style\": \"max-width: 475px\", \"bbox\": [443, 965, 477, 24], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [444, 966, 221, 22], \"children\": [{\"type\": \"span\", \"content\": \"-\\u00a0rootshell.be\", \"style\": \"color: #333333;\", \"bbox\": [567, 968, 96, 18], \"children\": []}]}]}]}, {\"type\": \"tr\", \"content\": \"\", \"style\": null, \"bbox\": [359, 991, 561, 24], \"children\": [{\"type\": \"td\", \"content\": \"465.885\", \"style\": \"width:70px; text-align:right;; max-width: 475px\", \"bbox\": [359, 991, 73, 24], \"children\": []}, {\"type\": \"td\", \"content\": \"-\", \"style\": \"max-width: 475px\", \"bbox\": [434, 991, 7, 24], \"children\": []}, {\"type\": \"td\", \"content\": \"\", \"style\": \"max-width: 475px\", \"bbox\": [443, 991, 477, 24], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [444, 992, 152, 22], \"children\": [{\"type\": \"span\", \"content\": \"-\\u00a0Djvu\", \"style\": \"color: #333333;\", \"bbox\": [549, 994, 46, 18], \"children\": []}]}]}]}, {\"type\": \"tr\", \"content\": \"\", \"style\": null, \"bbox\": [359, 1017, 561, 42], \"children\": [{\"type\": \"td\", \"content\": \"6.736.910\", \"style\": \"width:70px; text-align:right;; max-width: 475px\", \"bbox\": [359, 1017, 73, 42], \"children\": []}, {\"type\": \"td\", \"content\": \"-\", \"style\": \"max-width: 475px\", \"bbox\": [434, 1017, 7, 42], \"children\": []}, {\"type\": \"td\", \"content\": \"\", \"style\": \"max-width: 475px\", \"bbox\": [443, 1017, 477, 42], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [444, 1018, 475, 40], \"children\": [{\"type\": \"span\", \"content\": \"-\\u00a0SDF-EU Public Access UNIX System - Free Shell Account and Shell Ac\", \"style\": \"color: #333333;\", \"bbox\": [504, 1020, 413, 36], \"children\": []}]}]}]}]}]}]}, {\"type\": \"span\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1134, 1264, 22], \"children\": [{\"type\": \"h3\", \"content\": \"Search Keywords\", \"style\": null, \"bbox\": [8, 1134, 1264, 22], \"children\": []}]}, {\"type\": \"ul\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1175, 1264, 36], \"children\": [{\"type\": \"li\", \"content\": \"lonestar.org rank\", \"style\": \"list-style: none; display: inline; margin-right: 15px\", \"bbox\": [58, 1175, 119, 17], \"children\": []}, {\"type\": \"li\", \"content\": \"lonestar.org ranking\", \"style\": \"list-style: none; display: inline; margin-right: 15px\", \"bbox\": [192, 1175, 140, 17], \"children\": []}, {\"type\": \"li\", \"content\": \"lonestar.org ranking in the world\", \"style\": \"list-style: none; display: inline; margin-right: 15px\", \"bbox\": [348, 1175, 226, 17], \"children\": []}, {\"type\": \"li\", \"content\": \"lonestar.org similar sites\", \"style\": \"list-style: none; display: inline; margin-right: 15px\", \"bbox\": [590, 1175, 171, 17], \"children\": []}, {\"type\": \"li\", \"content\": \"lonestar.org website rankings\", \"style\": \"list-style: none; display: inline; margin-right: 15px\", \"bbox\": [776, 1175, 207, 17], \"children\": []}, {\"type\": \"li\", \"content\": \"lonestar.org site review\", \"style\": \"list-style: none; display: inline; margin-right: 15px\", \"bbox\": [999, 1175, 163, 17], \"children\": []}, {\"type\": \"li\", \"content\": \"lonestar.org reviews\", \"style\": \"list-style: none; display: inline; margin-right: 15px\", \"bbox\": [240, 1175, 1020, 35], \"children\": []}, {\"type\": \"li\", \"content\": \"lonestar.org traffic\", \"style\": \"list-style: none; display: inline; margin-right: 15px\", \"bbox\": [309, 1193, 126, 17], \"children\": []}, {\"type\": \"li\", \"content\": \"lonestar.org website statistics\", \"style\": \"list-style: none; display: inline; margin-right: 15px\", \"bbox\": [451, 1193, 208, 17], \"children\": []}, {\"type\": \"li\", \"content\": \"lonestar.org alternatives\", \"style\": \"list-style: none; display: inline; margin-right: 15px\", \"bbox\": [674, 1193, 169, 17], \"children\": []}, {\"type\": \"li\", \"content\": \"best lonestar.org alternatives\", \"style\": \"list-style: none; display: inline; margin-right: 15px\", \"bbox\": [859, 1193, 204, 17], \"children\": []}]}, {\"type\": \"h3\", \"content\": \"Website Rank and Statistics\", \"style\": null, \"bbox\": [8, 1229, 1264, 22], \"children\": []}, {\"type\": \"p\", \"content\": \"Use the search section to view country and world rankings of websites, review website statistics, list competitor websites and veiw analyze keyword.\", \"style\": null, \"bbox\": [8, 1270, 1264, 18], \"children\": []}, {\"type\": \"p\", \"content\": \"Alexa rankings allow you to obtain and analyze information about the number of visitors, page views, and the time users spend on the site.\", \"style\": null, \"bbox\": [8, 1304, 1264, 18], \"children\": []}, {\"type\": \"hr\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1364, 1264, 2], \"children\": []}, {\"type\": \"p\", \"content\": \"Alexa Rank Alternative\", \"style\": null, \"bbox\": [8, 1382, 1264, 18], \"children\": []}, {\"type\": \"p\", \"content\": \"Websites alternative, similars, traffic ranking, and review.\", \"style\": null, \"bbox\": [8, 1416, 1264, 18], \"children\": []}, {\"type\": \"p\", \"content\": \"Website ranking, alexa web traffic, alexa rank checker, alexa site info, alexa website alternative, alexa similar, alexa website checker, competitive analysis and keyword research.\", \"style\": null, \"bbox\": [8, 1450, 1264, 18], \"children\": []}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1484, 1264, 78], \"children\": [{\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1484, 1264, 18], \"children\": [{\"type\": \"b\", \"content\": \"Recently queried sites\", \"style\": \"font-weight: 400\", \"bbox\": [561, 1484, 157, 17], \"children\": []}]}, {\"type\": \"ul\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1518, 1264, 44], \"children\": [{\"type\": \"li\", \"content\": \"\", \"style\": \"list-style: none; display: inline; margin-right: 15px\", \"bbox\": [51, 1520, 106, 17], \"children\": [{\"type\": \"a\", \"content\": \"kenyatalk.com\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [51, 1518, 106, 22], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"list-style: none; display: inline; margin-right: 15px\", \"bbox\": [177, 1520, 78, 17], \"children\": [{\"type\": \"a\", \"content\": \"imovies.cc\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [177, 1518, 78, 22], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"list-style: none; display: inline; margin-right: 15px\", \"bbox\": [275, 1520, 73, 17], \"children\": [{\"type\": \"a\", \"content\": \"espn.com\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [275, 1518, 73, 22], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"list-style: none; display: inline; margin-right: 15px\", \"bbox\": [368, 1520, 68, 17], \"children\": [{\"type\": \"a\", \"content\": \"ge.movie\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [368, 1518, 68, 22], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"list-style: none; display: inline; margin-right: 15px\", \"bbox\": [456, 1520, 132, 17], \"children\": [{\"type\": \"a\", \"content\": \"kritiindustries.com\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [456, 1518, 132, 22], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"list-style: none; display: inline; margin-right: 15px\", \"bbox\": [608, 1520, 65, 17], \"children\": [{\"type\": \"a\", \"content\": \"edn.com\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [608, 1518, 65, 22], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"list-style: none; display: inline; margin-right: 15px\", \"bbox\": [693, 1520, 174, 17], \"children\": [{\"type\": \"a\", \"content\": \"www.plomberie-online.fr\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [693, 1518, 174, 22], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"list-style: none; display: inline; margin-right: 15px\", \"bbox\": [887, 1520, 107, 17], \"children\": [{\"type\": \"a\", \"content\": \"steffeleoff.com\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [887, 1518, 107, 22], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"list-style: none; display: inline; margin-right: 15px\", \"bbox\": [1014, 1520, 106, 17], \"children\": [{\"type\": \"a\", \"content\": \"kenyatalk.com\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [1014, 1518, 106, 22], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"list-style: none; display: inline; margin-right: 15px\", \"bbox\": [1139, 1520, 113, 17], \"children\": [{\"type\": \"a\", \"content\": \"rebamovie.com\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [1139, 1518, 113, 22], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"list-style: none; display: inline; margin-right: 15px\", \"bbox\": [163, 1542, 78, 17], \"children\": [{\"type\": \"a\", \"content\": \"imovies.cc\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [163, 1540, 78, 22], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"list-style: none; display: inline; margin-right: 15px\", \"bbox\": [261, 1542, 73, 17], \"children\": [{\"type\": \"a\", \"content\": \"espn.com\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [261, 1540, 73, 22], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"list-style: none; display: inline; margin-right: 15px\", \"bbox\": [353, 1542, 68, 17], \"children\": [{\"type\": \"a\", \"content\": \"ge.movie\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [353, 1540, 68, 22], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"list-style: none; display: inline; margin-right: 15px\", \"bbox\": [442, 1542, 132, 17], \"children\": [{\"type\": \"a\", \"content\": \"kritiindustries.com\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [442, 1540, 132, 22], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"list-style: none; display: inline; margin-right: 15px\", \"bbox\": [593, 1542, 65, 17], \"children\": [{\"type\": \"a\", \"content\": \"zoomg.ir\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [593, 1540, 65, 22], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"list-style: none; display: inline; margin-right: 15px\", \"bbox\": [678, 1542, 68, 17], \"children\": [{\"type\": \"a\", \"content\": \"nike.com\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [678, 1540, 68, 22], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"list-style: none; display: inline; margin-right: 15px\", \"bbox\": [766, 1542, 64, 17], \"children\": [{\"type\": \"a\", \"content\": \"mobile.ir\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [766, 1540, 64, 22], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"list-style: none; display: inline; margin-right: 15px\", \"bbox\": [850, 1542, 92, 17], \"children\": [{\"type\": \"a\", \"content\": \"gamefa.com\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [850, 1540, 92, 22], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"list-style: none; display: inline; margin-right: 15px\", \"bbox\": [961, 1542, 78, 17], \"children\": [{\"type\": \"a\", \"content\": \"everve.net\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [961, 1540, 78, 22], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"list-style: none; display: inline; margin-right: 15px\", \"bbox\": [1059, 1542, 82, 17], \"children\": [{\"type\": \"a\", \"content\": \"tingg.africa\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [1059, 1540, 82, 22], \"children\": []}]}]}]}, {\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1578, 1264, 22], \"children\": [{\"type\": \"b\", \"content\": \"Alexa\", \"style\": \"font-weight: 400\", \"bbox\": [434, 1580, 40, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"Website Ranking\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [488, 1578, 124, 22], \"children\": []}, {\"type\": \"a\", \"content\": \"Countries\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [627, 1578, 72, 22], \"children\": []}, {\"type\": \"a\", \"content\": \"Top 100 Websites\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [714, 1578, 130, 22], \"children\": []}]}, {\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1616, 1264, 22], \"children\": [{\"type\": \"a\", \"content\": \"Webmasters Tools\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [492, 1616, 135, 22], \"children\": []}, {\"type\": \"a\", \"content\": \"Browser Extensions\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [641, 1616, 145, 22], \"children\": []}]}, {\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1654, 1264, 22], \"children\": [{\"type\": \"a\", \"content\": \"Privacy\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [517, 1654, 56, 22], \"children\": []}, {\"type\": \"a\", \"content\": \"Cookie Policy\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [588, 1654, 100, 22], \"children\": []}, {\"type\": \"a\", \"content\": \"Contact\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [703, 1654, 59, 22], \"children\": []}]}, {\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1692, 1264, 47], \"children\": [{\"type\": \"a\", \"content\": \"English\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [15, 1692, 56, 22], \"children\": []}, {\"type\": \"a\", \"content\": \"Espa\\u00f1ol\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [85, 1692, 61, 22], \"children\": []}, {\"type\": \"a\", \"content\": \"Fran\\u00e7ais\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [161, 1692, 65, 22], \"children\": []}, {\"type\": \"a\", \"content\": \"Deutsch\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [241, 1692, 62, 22], \"children\": []}, {\"type\": \"a\", \"content\": \"Italiano\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [318, 1692, 55, 22], \"children\": []}, {\"type\": \"a\", \"content\": \"Portugu\\u00eas\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [388, 1692, 76, 22], \"children\": []}, {\"type\": \"a\", \"content\": \"\\u0420\\u0443\\u0441\\u0441\\u043a\\u0438\\u0439\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [479, 1692, 63, 22], \"children\": []}, {\"type\": \"a\", \"content\": \"\\u0411\\u0435\\u043b\\u0430\\u0440\\u0443\\u0441\\u043a\\u0430\\u044f\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [556, 1692, 90, 22], \"children\": []}, {\"type\": \"a\", \"content\": \"\\u0411\\u044a\\u043b\\u0433\\u0430\\u0440\\u0441\\u043a\\u0438\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [661, 1692, 81, 22], \"children\": []}, {\"type\": \"a\", \"content\": \"\\u010ce\\u0161tina\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [756, 1692, 58, 22], \"children\": []}, {\"type\": \"a\", \"content\": \"Dansk\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [829, 1692, 49, 22], \"children\": []}, {\"type\": \"a\", \"content\": \"\\u0395\\u03bb\\u03bb\\u03b7\\u03bd\\u03b9\\u03ba\\u03ac\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [893, 1692, 68, 22], \"children\": []}, {\"type\": \"a\", \"content\": \"Hrvatski\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [975, 1692, 61, 22], \"children\": []}, {\"type\": \"a\", \"content\": \"Bahasa Indonesia\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [1051, 1692, 132, 22], \"children\": []}, {\"type\": \"a\", \"content\": \"Magyar\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [1197, 1692, 57, 22], \"children\": []}, {\"type\": \"a\", \"content\": \"Bahasa Melayu\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [189, 1717, 114, 22], \"children\": []}, {\"type\": \"a\", \"content\": \"Nederlands\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [318, 1717, 85, 22], \"children\": []}, {\"type\": \"a\", \"content\": \"Polski\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [418, 1717, 46, 22], \"children\": []}, {\"type\": \"a\", \"content\": \"Rom\\u00e2n\\u0103\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [479, 1717, 64, 22], \"children\": []}, {\"type\": \"a\", \"content\": \"Srpski\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [557, 1717, 48, 22], \"children\": []}, {\"type\": \"a\", \"content\": \"Slovensk\\u00fd\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [620, 1717, 76, 22], \"children\": []}, {\"type\": \"a\", \"content\": \"\\u0423\\u043a\\u0440\\u0430\\u0457\\u043d\\u0441\\u044c\\u043a\\u0430\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [711, 1717, 84, 22], \"children\": []}, {\"type\": \"a\", \"content\": \"T\\u00fcrk\\u00e7e\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [810, 1717, 52, 22], \"children\": []}, {\"type\": \"a\", \"content\": \"\\u65e5\\u672c\\u8a9e\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [867, 1714, 52, 25], \"children\": []}, {\"type\": \"a\", \"content\": \"\\u7b80\\u4f53\\u4e2d\\u6587\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [923, 1714, 68, 25], \"children\": []}, {\"type\": \"a\", \"content\": \"\\u7e41\\u9ad4\\u4e2d\\u6587\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [996, 1714, 68, 25], \"children\": []}, {\"type\": \"a\", \"content\": \"\\ud55c\\uad6d\\uc5b4\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [1068, 1717, 21, 22], \"children\": []}]}, {\"type\": \"p\", \"content\": \"Copyright \\u00a9 2022 urirank.com. All rights reserved.\", \"style\": null, \"bbox\": [8, 1755, 1264, 18], \"children\": []}, {\"type\": \"a\", \"content\": \"\", \"style\": \"display: inline-flex; color: #06F; text-decoration: none; padding: 2px\", \"bbox\": [638, 1889, 4, 4], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"position: fixed; bottom: 10px; right: 10px; background: #004dff; color: #fff; padding: 10px; font-weight: bold; cursor: pointer; border-radius: 10px\", \"bbox\": [1108, 636, 161, 74], \"children\": []}]}]}]}"},"text":{"kind":"string","value":"\n\nlonestar.org - URIRANK






www.lonestar.org

Lonestar.org

Owner:Texas Lunch Bunch

Lonestar Service on cloud1

Lonestar Contact




Search Keywords

  • lonestar.org rank
  • lonestar.org ranking
  • lonestar.org ranking in the world
  • lonestar.org similar sites
  • lonestar.org website rankings
  • lonestar.org site review
  • lonestar.org reviews
  • lonestar.org traffic
  • lonestar.org website statistics
  • lonestar.org alternatives
  • best lonestar.org alternatives

Website Rank and Statistics

Use the search section to view country and world rankings of websites, review website statistics, list competitor websites and veiw analyze keyword.

Alexa rankings allow you to obtain and analyze information about the number of visitors, page views, and the time users spend on the site.



Alexa Rank Alternative

Websites alternative, similars, traffic ranking, and review.

Website ranking, alexa web traffic, alexa rank checker, alexa site info, alexa website alternative, alexa similar, alexa website checker, competitive analysis and keyword research.

Alexa - \n\t\tWebsite Ranking - \n\t\tCountries - \n\t\tTop 100 Websites

Webmasters Tools - \n\t\tBrowser Extensions

Privacy - \n\t\tCookie Policy - \n\t\tContact

English - \n\t\t\t\tEspañol - \n\t\t\t\tFrançais - \n\t\t\t\tDeutsch - \n\t\t\t\tItaliano - \n\t\t\t\tPortuguês - \n\t\t\t\tРусский - \n\t\t\t\tБеларуская - \n\t\t\t\tБългарски - \n\t\t\t\tČeština - \n\t\t\t\tDansk - \n\t\t\t\tΕλληνικά - \n\t\t\t\tHrvatski - \n\t\t\t\tBahasa Indonesia - \n\t\t\t\tMagyar - \n\t\t\t\tBahasa Melayu - \n\t\t\t\tNederlands - \n\t\t\t\tPolski - \n\t\t\t\tRomână - \n\t\t\t\tSrpski - \n\t\t\t\tSlovenský - \n\t\t\t\tУкраїнська - \n\t\t\t\tTürkçe日本語简体中文繁體中文한국어

Copyright © 2022 urirank.com. All rights reserved.







Get Our Free
Chrome Extension


"},"score":{"kind":"number","value":3,"string":"3"},"scale":{"kind":"list like","value":[1280,1924],"string":"[\n 1280,\n 1924\n]"},"lang":{"kind":"string","value":"en"},"tokens":{"kind":"list like","value":[314,1989],"string":"[\n 314,\n 1989\n]"},"hash":{"kind":"string","value":"74a3bf917e3932846a768c41102ac4c44681b1cd503e693483d8fe3103aa3ee8"}}},{"rowIdx":5,"cells":{"image":{"kind":"image","value":{"src":"https://datasets-server.huggingface.co/assets/xcodemind/webcode2m/--/f53cd4a9317364e32a6fc7d99dc50761fe54715f/--/default/train/5/image/image.png?Expires=1756287790&Signature=c43QBqqw6oRfqf5-kjdaNdoyX~2VAm28Lfa3PV7PKuHxmTr7S4YwT3oG3c-t9ZiQ65RRkGtx2g4np9-1hU3tS9mc5vE1e8~4ICIn6UbqR~hDlAZFoXhB3K7N18sKukt5IMWcfKTxFXbmzzajcu2OFWLBx4gjTI9ctCKgdpZbpO~ZUiMvlPVzGJ2AE6k-7rG-BbIj-HCXf00H0Z5M1Jatx8UNpebAFIBWzE~ymsALgUATwbj77VMMkQqeZYCrHVyszIw-A4EBn3tMzvr~X2Gtjl6T-WIZQiYHrfQl-dx3KqZz77F93663HUOuV83CbCbHVaG9u~~AKWYi9B6J2Rp4yA__&Key-Pair-Id=K3EI6M078Z3AC3","height":1235,"width":1280},"inferredFromUrl":false},"bbox":{"kind":"truncated","value":"\"{\\\"type\\\": \\\"body\\\", \\\"content\\\": \\\"\\\", \\\"style\\\": \\\"margin: 0; background-color: var(--wp--preset-"},"text":{"kind":"truncated","value":"\"\\n\\nOnline Kaszinó Bónusz Üdvözlet Nincs Letét 2023 – Kül"},"score":{"kind":"number","value":3,"string":"3"},"scale":{"kind":"list like","value":[1280,1235],"string":"[\n 1280,\n 1235\n]"},"lang":{"kind":"string","value":"zh"},"tokens":{"kind":"list like","value":[1685,4216],"string":"[\n 1685,\n 4216\n]"},"hash":{"kind":"string","value":"2b5b5956e2544e9a7badea62b66a267a22d4b6ad9d616d3c812df28f5483c850"}}},{"rowIdx":6,"cells":{"image":{"kind":"image","value":{"src":"https://datasets-server.huggingface.co/assets/xcodemind/webcode2m/--/f53cd4a9317364e32a6fc7d99dc50761fe54715f/--/default/train/6/image/image.png?Expires=1756287790&Signature=so5KiCrz3e5y5mElVCx~asuLU2BGEJUE4uzwnTR5~aUgwmbnPrSlJ0J6cRCU1N0erCZmDtsc2CS9nYgtwp7XTmVDWvOLhkwlazAeceoV9iuwzVFCIL1maK-nOlHm9Jw0qo~DlDll08CSz2M92eDXZ4Xrbto9CVidao5nY0eJaJj5QhfYuWNikbbf63VS7PLz8ENSwJUFptau5KMnma7NWaDfoQ~2Q4YF-9ToLAkLQMU-28wRBIr6L4f5FADP7hpU2MWMQnqQGf7VJVAmegXET1O2D7mnttlEuUeRtf7NnY8bmS9upMvIux6F8tfByiVgxnhb~e8CHxs1AYMBj1Q6wQ__&Key-Pair-Id=K3EI6M078Z3AC3","height":1207,"width":1280},"inferredFromUrl":false},"bbox":{"kind":"truncated","value":"\"{\\\"type\\\": \\\"body\\\", \\\"content\\\": \\\"\\\", \\\"style\\\": \\\"margin: 0; padding-top: 0; padding-right: 0; p"},"text":{"kind":"truncated","value":"\"<!DOCTYPE html>\\n\\n<html><head><title>TH-500 | Lamonaca Iron Works\\n\\nБратское совещание духовенства б"},"score":{"kind":"number","value":3,"string":"3"},"scale":{"kind":"list like","value":[1280,1056],"string":"[\n 1280,\n 1056\n]"},"lang":{"kind":"string","value":"ru"},"tokens":{"kind":"list like","value":[556,5251],"string":"[\n 556,\n 5251\n]"},"hash":{"kind":"string","value":"1f17f60827e037449cc757362427b39a28c2f35834e9c1705a9dbb280a7502c1"}}},{"rowIdx":8,"cells":{"image":{"kind":"image","value":{"src":"https://datasets-server.huggingface.co/assets/xcodemind/webcode2m/--/f53cd4a9317364e32a6fc7d99dc50761fe54715f/--/default/train/8/image/image.png?Expires=1756287790&Signature=suJmNoNGypw9mmbK8m7UtagwetWVUiu2Y~twI~gAQ4Nkj6KyHJxagwXzEa6Sz7vS~FWQvrc9y3kg7r6Wel1UzPFAahc2fwc5Z1QYGpwL17SaMk-wXGY7~wDn42q6DuWaV-WjbIT6PYeoGfSUxp2n5~DRcDNmgu2sA4l4Bcfu9nCwWBggbrgUKA133dN24~QUvdSfn~GGBS8wWeR5sBbB9Ohds~XIWGrPrIu5mKVgnIdohjBIZ6B43C9URTwMaUNcSKM91GgnT41c1h3XIuqOlxs~e6j3x4A-g8-dhYsu9vbswTp1kWxbotiLDAw2uP9NciSKsY2YLmkFC8WUzXfzjQ__&Key-Pair-Id=K3EI6M078Z3AC3","height":1222,"width":1280},"inferredFromUrl":false},"bbox":{"kind":"truncated","value":"\"{\\\"type\\\": \\\"body\\\", \\\"content\\\": \\\"\\\", \\\"style\\\": \\\"background: #CCC; color: #000; font: 10pt verd"},"text":{"kind":"truncated","value":"\"<!DOCTYPE html>\\n\\n<html><head><title> S96v2 - uazbuka.ru\\n\\nFAMILY SALE 2019 | k-ambiente"},"score":{"kind":"number","value":3,"string":"3"},"scale":{"kind":"list like","value":[1280,2495],"string":"[\n 1280,\n 2495\n]"},"lang":{"kind":"string","value":"en"},"tokens":{"kind":"list like","value":[3888,3837],"string":"[\n 3888,\n 3837\n]"},"hash":{"kind":"string","value":"83625a59ff2f7a7fcfec797d056a342e51935c76bbdc1de135c129d070cda24d"}}}],"truncated":true},"paginationData":{"pageIndex":0,"numItemsPerPage":100,"numTotalItems":3171024,"offset":0,"length":100}},"jwt":"eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sImlhdCI6MTc1NjI4NDE5MCwic3ViIjoiL2RhdGFzZXRzL3hjb2RlbWluZC93ZWJjb2RlMm0iLCJleHAiOjE3NTYyODc3OTAsImlzcyI6Imh0dHBzOi8vaHVnZ2luZ2ZhY2UuY28ifQ.hKpabiT8dWdu1B8s76LHMsxjV22DlT1K-p-szhIeTaTglKALE1tWl6EahI9GJbbJTaXnCpSZCzdTJSHFJ_cMAQ","displayUrls":true},"dataset":"xcodemind/webcode2m","isGated":false,"isPrivate":false,"hasParquetFormat":true,"author":{"_id":"660a1605abd8bd25ee5a1815","avatarUrl":"https://www.gravatar.com/avatar/2cd203c76cd72884d70452037c2f819b?d=retro&size=100","fullname":"xcodemind","name":"xcodemind","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":7},"compact":true}">
Dataset Viewer
Auto-converted to Parquet
image
imagewidth (px)
1.28k
2.01k
bbox
stringlengths
4
156k
text
stringlengths
1.45k
33k
score
int64
3
3
scale
sequencelengths
2
2
lang
stringclasses
20 values
tokens
sequencelengths
2
2
hash
stringlengths
64
64
{"type": "body", "content": "", "style": "background: #f0f0f0; font-family: \"Lato\", sans-serif; font-size: 16px; margin-bottom: 4em; padding-bottom: 2em", "bbox": [8, 8, 1264, 1176], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 8, 1264, 1144], "children": [{"type": "div", "content": "", "style": "margin-bottom: 1em", "bbox": [8, 8, 1264, 148], "children": [{"type": "div", "content": "", "style": "background: #0981c3; border-color: #06537d !important", "bbox": [8, 8, 1264, 148], "children": [{"type": "div", "content": "", "style": "color: #fff !important", "bbox": [8, 8, 1264, 148], "children": [{"type": "button", "content": "", "style": "background: #0981c3; color: #fff !important", "bbox": [8, 25, 16, 6], "children": []}, {"type": "div", "content": "", "style": "color: #fff !important", "bbox": [8, 48, 1264, 108], "children": [{"type": "ul", "content": "", "style": "color: #fff !important", "bbox": [8, 48, 1264, 108], "children": [{"type": "li", "content": "", "style": "color: #fff !important", "bbox": [48, 48, 1224, 18], "children": [{"type": "a", "content": "About", "style": "color: #fff !important", "bbox": [48, 48, 41, 17], "children": []}]}, {"type": "li", "content": "", "style": "color: #fff !important", "bbox": [48, 66, 1224, 18], "children": [{"type": "a", "content": "Snapshots", "style": "color: #fff !important", "bbox": [48, 66, 75, 17], "children": []}]}, {"type": "li", "content": "", "style": "color: #fff !important", "bbox": [48, 84, 1224, 18], "children": [{"type": "a", "content": "LTS", "style": "color: #fff !important", "bbox": [48, 84, 28, 17], "children": []}]}, {"type": "li", "content": "", "style": "color: #fff !important", "bbox": [48, 102, 1224, 18], "children": [{"type": "a", "content": "Nightly", "style": "color: #fff !important", "bbox": [48, 102, 48, 17], "children": []}]}, {"type": "li", "content": "", "style": "color: #fff !important", "bbox": [48, 120, 1224, 18], "children": [{"type": "a", "content": "FAQ", "style": "color: #fff !important", "bbox": [48, 120, 32, 17], "children": []}]}, {"type": "li", "content": "", "style": "color: #fff !important", "bbox": [48, 138, 1224, 18], "children": [{"type": "a", "content": "Blog", "style": "color: #fff !important", "bbox": [48, 138, 32, 17], "children": []}]}]}]}]}]}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 177, 1264, 974], "children": [{"type": "div", "content": "", "style": "line-height: 30px", "bbox": [8, 177, 1264, 696], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 177, 1264, 282], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 177, 1264, 282], "children": [{"type": "h1", "content": "zip-stream", "style": "color: #06537d", "bbox": [8, 177, 1264, 30], "children": []}, {"type": "p", "content": "ZIP archive streaming using conduits", "style": null, "bbox": [8, 228, 1264, 30], "children": []}, {"type": "table", "content": "", "style": null, "bbox": [8, 274, 269, 138], "children": [{"type": "tbody", "content": "", "style": null, "bbox": [10, 276, 265, 134], "children": [{"type": "tr", "content": "", "style": null, "bbox": [10, 276, 265, 32], "children": [{"type": "td", "content": "Version on this page:", "style": null, "bbox": [10, 276, 212, 32], "children": []}, {"type": "td", "content": "", "style": null, "bbox": [224, 276, 50, 32], "children": [{"type": "span", "content": "0.2.1.0", "style": "font-weight: bold", "bbox": [225, 283, 48, 17], "children": []}]}]}, {"type": "tr", "content": "", "style": null, "bbox": [10, 310, 265, 32], "children": [{"type": "td", "content": "", "style": null, "bbox": [10, 310, 212, 32], "children": [{"type": "a", "content": "LTS Haskell 21.22", "style": null, "bbox": [11, 317, 129, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [224, 310, 50, 32], "children": [{"type": "span", "content": "", "style": "font-weight: bold", "bbox": [225, 317, 48, 17], "children": [{"type": "a", "content": "0.2.2.0", "style": null, "bbox": [225, 317, 48, 17], "children": []}]}]}]}, {"type": "tr", "content": "", "style": null, "bbox": [10, 344, 265, 32], "children": [{"type": "td", "content": "", "style": null, "bbox": [10, 344, 212, 32], "children": [{"type": "a", "content": "Stackage Nightly 2023-11-30", "style": null, "bbox": [11, 351, 206, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [224, 344, 50, 32], "children": [{"type": "span", "content": "", "style": "font-weight: bold", "bbox": [225, 351, 48, 17], "children": [{"type": "a", "content": "0.2.2.0", "style": null, "bbox": [225, 351, 48, 17], "children": []}]}]}]}, {"type": "tr", "content": "", "style": null, "bbox": [10, 378, 265, 32], "children": [{"type": "td", "content": "Latest on Hackage:", "style": null, "bbox": [10, 378, 212, 32], "children": []}, {"type": "td", "content": "", "style": null, "bbox": [224, 378, 50, 32], "children": [{"type": "a", "content": "", "style": null, "bbox": [225, 385, 48, 17], "children": [{"type": "span", "content": "0.2.2.0", "style": "font-weight: bold", "bbox": [225, 385, 48, 17], "children": []}]}]}]}]}]}, {"type": "p", "content": "", "style": null, "bbox": [8, 428, 1264, 31], "children": [{"type": "a", "content": "", "style": null, "bbox": [8, 434, 305, 17], "children": [{"type": "code", "content": "zip-stream", "style": "color: #555; font-family: \"ubuntu mono\", monospace", "bbox": [138, 435, 96, 18], "children": []}]}]}]}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 475, 1264, 398], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 475, 1264, 398], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 475, 1264, 30], "children": [{"type": "span", "content": "BSD-3-Clause licensed", "style": null, "bbox": [8, 481, 169, 17], "children": []}, {"type": "strong", "content": "Dylan Simon", "style": null, "bbox": [199, 481, 96, 17], "children": []}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 505, 1264, 30], "children": [{"type": "strong", "content": "", "style": null, "bbox": [112, 511, 126, 17], "children": [{"type": "a", "content": "[email protected]", "style": null, "bbox": [112, 511, 126, 17], "children": []}]}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 535, 1264, 31], "children": [{"type": "code", "content": "zip-stream-0.2.1.0@sha256:9601c2a5addd3edd8ab1f7ac8c3753e92326e1971c6d15d123e621ff8c92e002,1749", "style": "color: #555; font-family: \"ubuntu mono\", monospace", "bbox": [295, 542, 912, 18], "children": []}]}, {"type": "div", "content": "", "style": "margin-top: 0.5em; border-top: 1px solid #ddd; padding-top: 0.5em; position: relative", "bbox": [8, 574, 1264, 299], "children": [{"type": "h4", "content": "Module documentation for 0.2.1.0", "style": "color: #06537d", "bbox": [8, 605, 1264, 30], "children": []}, {"type": "form", "content": "", "style": "margin-bottom: 20px", "bbox": [8, 656, 1264, 30], "children": [{"type": "input", "content": "", "style": "width: 25em; margin-bottom: 0px;", "bbox": [8, 661, 341, 21], "children": []}, {"type": "input", "content": "", "style": "margin-bottom: 0px;", "bbox": [353, 661, 177, 21], "children": []}, {"type": "input", "content": "", "style": "margin-bottom: 0px;", "bbox": [535, 661, 177, 21], "children": []}, {"type": "label", "content": "", "style": "display: inline-block; margin-left: 1em", "bbox": [732, 656, 273, 30], "children": [{"type": "input", "content": "", "style": "margin-bottom: 0px;", "bbox": [732, 661, 177, 21], "children": []}]}]}, {"type": "ul", "content": "", "style": "list-style-type: none; position: relative; list-style: none; padding-left: 10px", "bbox": [8, 706, 1264, 168], "children": [{"type": "li", "content": "", "style": "line-height: 1.5em; position: relative", "bbox": [18, 706, 1254, 168], "children": [{"type": "ul", "content": "", "style": "list-style-type: none; position: relative; list-style: none; padding-left: 10px", "bbox": [18, 730, 1254, 144], "children": [{"type": "li", "content": "", "style": "line-height: 1.5em; position: relative", "bbox": [28, 730, 1244, 144], "children": [{"type": "ul", "content": "", "style": "list-style-type: none; position: relative; list-style: none; padding-left: 10px", "bbox": [28, 754, 1244, 120], "children": [{"type": "li", "content": "", "style": "line-height: 1.5em; position: relative", "bbox": [38, 754, 1234, 120], "children": [{"type": "ul", "content": "", "style": "list-style-type: none; position: relative; list-style: none; padding-left: 10px", "bbox": [38, 778, 1234, 96], "children": [{"type": "li", "content": "", "style": "line-height: 1.5em; position: relative", "bbox": [48, 778, 1224, 96], "children": [{"type": "ul", "content": "", "style": "list-style-type: none; position: relative; list-style: none; padding-left: 10px", "bbox": [48, 802, 1224, 72], "children": [{"type": "li", "content": "", "style": "line-height: 1.5em; position: relative", "bbox": [58, 802, 1214, 24], "children": [{"type": "a", "content": "Codec.Archive.Zip.Conduit.Types", "style": null, "bbox": [58, 805, 237, 17], "children": []}]}, {"type": "li", "content": "", "style": "line-height: 1.5em; position: relative", "bbox": [58, 826, 1214, 24], "children": [{"type": "a", "content": "Codec.Archive.Zip.Conduit.UnZip", "style": null, "bbox": [58, 829, 237, 17], "children": []}]}, {"type": "li", "content": "", "style": "line-height: 1.5em; position: relative", "bbox": [58, 850, 1214, 24], "children": [{"type": "a", "content": "Codec.Archive.Zip.Conduit.Zip", "style": null, "bbox": [58, 853, 216, 17], "children": []}]}]}]}]}]}]}]}]}]}]}]}]}]}]}, {"type": "div", "content": "", "style": "line-height: 30px", "bbox": [8, 890, 1264, 158], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 890, 1264, 158], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 890, 1264, 158], "children": [{"type": "div", "content": "", "style": "margin-top: 0.5em; padding-top: 0.5em", "bbox": [8, 890, 1264, 98], "children": [{"type": "em", "content": "", "style": null, "bbox": [189, 904, 152, 17], "children": [{"type": "a", "content": "full list with versions", "style": null, "bbox": [194, 904, 141, 17], "children": []}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 928, 1264, 60], "children": [{"type": "a", "content": "base", "style": null, "bbox": [8, 934, 34, 17], "children": []}, {"type": "a", "content": "binary", "style": null, "bbox": [51, 934, 42, 17], "children": []}, {"type": "a", "content": "binary-conduit", "style": null, "bbox": [102, 934, 100, 17], "children": []}, {"type": "a", "content": "bytestring", "style": null, "bbox": [212, 934, 69, 17], "children": []}, {"type": "a", "content": "conduit", "style": null, "bbox": [290, 934, 51, 17], "children": []}, {"type": "a", "content": "conduit-extra", "style": null, "bbox": [351, 934, 92, 17], "children": []}, {"type": "a", "content": "digest", "style": null, "bbox": [452, 934, 42, 17], "children": []}, {"type": "a", "content": "directory", "style": null, "bbox": [504, 934, 60, 17], "children": []}, {"type": "a", "content": "exceptions", "style": null, "bbox": [573, 934, 76, 17], "children": []}, {"type": "a", "content": "filepath", "style": null, "bbox": [658, 934, 51, 17], "children": []}, {"type": "a", "content": "mtl", "style": null, "bbox": [718, 934, 21, 17], "children": []}, {"type": "a", "content": "primitive", "style": null, "bbox": [749, 934, 59, 17], "children": []}, {"type": "a", "content": "resourcet", "style": null, "bbox": [817, 934, 66, 17], "children": []}, {"type": "a", "content": "text", "style": null, "bbox": [893, 934, 25, 17], "children": []}, {"type": "a", "content": "time", "style": null, "bbox": [927, 934, 30, 17], "children": []}, {"type": "a", "content": "transformers", "style": null, "bbox": [967, 934, 89, 17], "children": []}, {"type": "a", "content": "transformers-base", "style": null, "bbox": [1065, 934, 129, 17], "children": []}, {"type": "a", "content": "zip-stream", "style": null, "bbox": [8, 934, 1222, 47], "children": []}, {"type": "a", "content": "zlib", "style": null, "bbox": [65, 964, 24, 17], "children": []}]}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 988, 1264, 60], "children": [{"type": "b", "content": "lts-18.8", "style": null, "bbox": [166, 994, 55, 17], "children": []}, {"type": "em", "content": "", "style": null, "bbox": [221, 994, 152, 17], "children": [{"type": "a", "content": "full list with versions", "style": null, "bbox": [226, 994, 141, 17], "children": []}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 1018, 1264, 30], "children": [{"type": "a", "content": "zip-stream", "style": null, "bbox": [8, 1024, 74, 17], "children": []}]}]}]}]}]}, {"type": "div", "content": "", "style": "margin-top: 1em; border-top: 1px solid #ddd; padding-top: 1em; margin-bottom: 0; border-bottom: 1px solid #ddd; padding-bottom: 1em; background: #f4f4f4; margin-top: 1em", "bbox": [8, 1064, 1264, 88], "children": [{"type": "div", "content": "", "style": "line-height: 30px", "bbox": [8, 1089, 1264, 30], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 1089, 1264, 30], "children": [{"type": "div", "content": "", "style": "position: relative", "bbox": [8, 1089, 1264, 30], "children": [{"type": "p", "content": "Process (extract and create) zip files as streams (e.g., over the network), accessing contained files without having to write the zip file to disk (unlike zip-conduit).", "style": "margin-top: 0.5em", "bbox": [8, 1089, 1264, 30], "children": []}]}]}]}]}]}, {"type": "div", "content": "", "style": "background: #0981c3; border-top: 1px solid #ddd; color: #fff; position: absolute; bottom: 0; left: 0; width: 100%; height: 4em; line-height: 2em; text-align: center", "bbox": [0, 1183, 1280, 65], "children": [{"type": "div", "content": "", "style": null, "bbox": [0, 1184, 1280, 64], "children": [{"type": "div", "content": "", "style": null, "bbox": [0, 1184, 1280, 64], "children": [{"type": "div", "content": "", "style": "padding: 0 15px 0 0; line-height: 4em", "bbox": [0, 1184, 1280, 64], "children": [{"type": "a", "content": "FP Complete", "style": "color: #fff; font-weight: bold", "bbox": [662, 1207, 97, 17], "children": []}]}]}]}]}]}]}
<!DOCTYPE html> <!DOCTYPE html> <html class="no-js"> <head><title>zip-stream :: Stackage Server</title></head><body><div id="main"><div class="navbar navbar-inverse navbar-static-top"><div class="navbar-inner"><div class="container"><button class="btn btn-navbar"><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></button><a class="brand"><img src="/static/img/stackage.png"/></a><div class="nav-collapse collapse"><ul class="nav"><li> <a>About</a></li><li> <a>Snapshots</a></li><li> <a>LTS</a></li><li> <a>Nightly</a></li><li> <a>FAQ</a></li><li> <a>Blog</a></li></ul></div></div></div></div><div class="container"><div class="container content" id="snapshot-home"><div class="row"><div class="span12"><h1>zip-stream</h1><p class="synopsis">ZIP archive streaming using conduits</p><table><tr><td>Version on this page:</td><td><span class="version">0.2.1.0</span></td></tr><tr><td><a>LTS Haskell 21.22</a>:</td><td><span class="version"><a>0.2.2.0</a></span></td></tr><tr><td><a>Stackage Nightly 2023-11-30</a>:</td><td><span class="version"><a>0.2.2.0</a></span></td></tr><tr><td>Latest on Hackage:</td><td><a><span class="version">0.2.2.0</span></a></td></tr></table><p><a>See all snapshots <code>zip-stream</code> appears in</a></p></div></div><div class="row"><div class="span12"><div class="authorship"><span class="license">BSD-3-Clause licensed </span>by <strong class="author">Dylan Simon</strong></div><div class="maintainer">Maintained by <strong class="author"><a>[email protected]</a></strong></div><div class="pantry-version">This version can be pinned in stack with:<code>zip-stream-0.2.1.0@sha256:9601c2a5addd3edd8ab1f7ac8c3753e92326e1971c6d15d123e621ff8c92e002,1749</code></div><div class="docs"><h4>Module documentation for 0.2.1.0</h4><form class="hoogle"><input class="search"/><input class="btn"/><input/><label class="checkbox exact-lookup"><input id="exact"/> Exact lookup</label></form><ul class="docs-list"><li>Codec<ul class="docs-list"><li>Codec.Archive<ul class="docs-list"><li>Codec.Archive.Zip<ul class="docs-list"><li>Codec.Archive.Zip.Conduit<ul class="docs-list"><li><a>Codec.Archive.Zip.Conduit.Types</a></li><li><a>Codec.Archive.Zip.Conduit.UnZip</a></li><li><a>Codec.Archive.Zip.Conduit.Zip</a></li></ul></li></ul></li></ul></li></ul></li></ul></div></div></div></div><div class="container content" id="snapshot-home"><div class="row"><div class="span12"><div class="dependencies" id="dependencies">Depends on 19 packages<em>(<a>full list with versions</a>)</em>:<div class="dep-list"><a>base</a>, <a>binary</a>, <a>binary-conduit</a>, <a>bytestring</a>, <a>conduit</a>, <a>conduit-extra</a>, <a>digest</a>, <a>directory</a>, <a>exceptions</a>, <a>filepath</a>, <a>mtl</a>, <a>primitive</a>, <a>resourcet</a>, <a>text</a>, <a>time</a>, <a>transformers</a>, <a>transformers-base</a>, <a>zip-stream</a>, <a>zlib</a></div></div><div class="reverse-dependencies" id="reverse-dependencies">Used by 1 package in <b>lts-18.8</b><em>(<a>full list with versions</a>)</em>:<div class="dep-list"><a>zip-stream</a></div></div></div></div></div><div class="markdown-container readme-container"><div class="container content"><div class="row"><div class="span12 expanding"><p>Process (extract and create) zip files as streams (e.g., over the network), accessing contained files without having to write the zip file to disk (unlike zip-conduit).</p><div class="bottom-gradient"><i class="fa fa-angle-down"></i></div></div></div></div></div></div><div class="footer"><div class="container"><div class="row"><div class="span12">A service provided by <a>FP Complete</a></div></div></div></div></div><style>form.hoogle { margin-bottom: 20px } form.hoogle .search { width: 25em } form.hoogle input { margin-bottom: 0 } .exact-lookup { display: inline-block; margin-left: 1em } .version { font-weight: bold } .dependencies { margin-top: 0.5em; padding-top: 0.5em } .docs { margin-top: 0.5em; border-top: 1px solid #ddd; padding-top: 0.5em } .docs ul { list-style-type: none } .docs ul li { line-height: 1.5em } .docs, .docs ul, .docs li { position: relative } .docs ul { list-style: none; padding-left: 10px } .markdown-container { margin-top: 1em; border-top: 1px solid #ddd; padding-top: 1em; margin-bottom: 0; border-bottom: 1px solid #ddd; padding-bottom: 1em; background: #f4f4f4 } .markdown-container ul, .markdown-container ol, .markdown-container p { margin-top: 0.5em } .readme-container { margin-top: 1em } .expanding { position: relative } .expanding .bottom-gradient { display: none; bottom: 0; position: absolute; width: 100%; cursor: pointer; height: 150px; line-height: 150px; text-align: center; background: -moz-linear-gradient(top, rgba(244, 244, 244, 0) 0%, rgba(244, 244, 244, 1) 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(244, 244, 244, 0)), color-stop(100%, rgba(244, 244, 244, 1))); background: -webkit-linear-gradient(top, rgba(244, 244, 244, 0) 0%, rgba(244, 244, 244, 1) 100%); background: -o-linear-gradient(top, rgba(244, 244, 244, 0) 0%, rgba(244, 244, 244, 1) 100%); background: -ms-linear-gradient(top, rgba(244, 244, 244, 0) 0%, rgba(244, 244, 244, 1) 100%); background: linear-gradient(to bottom, rgba(244, 244, 244, 0) 0%, rgba(244, 244, 244, 1) 100%) } .expanding .fa { font-size: 5em; color: #666; line-height: 150px; margin-top: 25px } html { position: relative; min-height: 100% } body { background: #f0f0f0; font-family: "Lato", sans-serif; font-size: 16px; margin-bottom: 4em; padding-bottom: 2em } code, pre { color: #555; font-family: "ubuntu mono", monospace } .brand > img { height: 20px } .navbar-inverse { margin-bottom: 1em } .navbar-inverse .navbar-inner { background: #0981c3 } .navbar-inverse .navbar-inner .btn-navbar { background: #0981c3 } .navbar-inverse .navbar-inner * { color: #fff !important } .navbar-inner { border-color: #06537d !important } .footer { background: #0981c3; border-top: 1px solid #ddd; color: #fff; position: absolute; bottom: 0; left: 0; width: 100%; height: 4em; line-height: 2em; text-align: center } .footer a { color: #fff; font-weight: bold } .footer .span12 { padding: 0 15px 0 0; line-height: 4em } h1, h2, h3, h4, h5 { color: #06537d } .content { line-height: 30px }</style></body></html>
3
[ 1280, 1246 ]
en
[ 925, 1323 ]
8a03192e3b8d385b2f1f297f37df7a2688523844977cc6182867a9077d638db0
{"type": "body", "content": "", "style": "background: #bbb; padding: 0; margin: 0; color: #444; font: x-small Arial, Georgia, Serif; color: #444; font-size: small; font-size: small; background-repeat: repeat", "bbox": [0, 0, 1280, 1525], "children": [{"type": "div", "content": "", "style": "width: 800px; margin: 0.5em auto 0; background: #fff; position: relative", "bbox": [240, 21, 800, 1504], "children": [{"type": "h1", "content": "", "style": "padding: 0.5em; padding-top: 0; background: #fff; background-repeat: repeat-x; background-position: bottom left; border-bottom: 1px solid #ddd; margin: 0", "bbox": [240, 21, 800, 106], "children": [{"type": "a", "content": "Fashionist", "style": "text-align: left; font-size: 260%; text-decoration: none; text-transform: lowercase; letter-spacing: -2px; display: block", "bbox": [253, 21, 774, 77], "children": []}, {"type": "div", "content": "unadulterated street fashion since 2007", "style": "text-align: left; color: #aaa; font-size: 50%; font-weight: normal; margin: 0", "bbox": [253, 98, 774, 15], "children": []}]}, {"type": "div", "content": "", "style": "background-repeat: no-repeat; background-position: 0 -160px; position: absolute; top: 6px; right: 30px; width: 370px; height: 85px; border: 2px solid #aaa", "bbox": [636, 27, 374, 89], "children": []}, {"type": "div", "content": "", "style": "overflow: auto; width: 100%; margin-top: 2em; margin-top: 2em", "bbox": [240, 153, 800, 1372], "children": [{"type": "div", "content": "", "style": "width: 540px; padding: 2em 1.5em 70px; float: left; position: relative; background: #fff; font-family: \"Trebuchet MS\"", "bbox": [240, 153, 579, 1262], "children": [{"type": "h2", "content": "Tuesday, September 23, 2014", "style": "margin: 0.5em 0 0.5em; font-size: 80%; font-weight: normal; color: #aaa", "bbox": [259, 179, 540, 11], "children": []}, {"type": "div", "content": "", "style": null, "bbox": [259, 195, 540, 1016], "children": [{"type": "h3", "content": "Ryan - Downtown, Portland, OR", "style": "color: #c60; font-size: 170%; font-weight: normal; line-height: 1.2em; margin: 0.25em 0 0.5em; padding: 0 0 4px; font-family: Georgia, Serif; margin: 0.25em 0 0; padding: 0 0 4px; font-size: 180%; font-weight: normal; line-height: 1.4em; color: #c60", "bbox": [259, 195, 540, 36], "children": []}, {"type": "div", "content": "", "style": "margin: 0 0 0.75em; line-height: 1.6em", "bbox": [259, 242, 540, 928], "children": [{"type": "div", "content": "", "style": "margin: 0 0 0.75em; line-height: 1.6em", "bbox": [259, 242, 540, 928], "children": [{"type": "a", "content": "", "style": null, "bbox": [259, 1040, 544, 15], "children": [{"type": "img", "content": "", "style": "border: 1px solid #ddd; padding: 4px; border-width: 0; padding: 4px; border: 1px solid #ddd", "bbox": [259, 242, 544, 810], "children": []}]}, {"type": "a", "content": "Tweet", "style": null, "bbox": [259, 1114, 31, 15], "children": []}, {"type": "a", "content": "", "style": null, "bbox": [294, 1114, 26, 15], "children": [{"type": "img", "content": "", "style": "border: 0; border: 1px solid #ddd; padding: 4px; border-width: 0; padding: 4px; border: 1px solid #ddd", "bbox": [294, 1100, 26, 26], "children": []}]}, {"type": "div", "content": "", "style": "clear:both; padding-bottom:0.25em; margin: 0 0 0.75em; line-height: 1.6em", "bbox": [259, 1133, 540, 3], "children": []}, {"type": "p", "content": "", "style": null, "bbox": [259, 1149, 540, 20], "children": [{"type": "a", "content": "men", "style": null, "bbox": [301, 1151, 22, 15], "children": []}, {"type": "a", "content": "Portland", "style": null, "bbox": [329, 1151, 44, 15], "children": []}, {"type": "a", "content": "Quick Shots", "style": null, "bbox": [380, 1151, 63, 15], "children": []}, {"type": "a", "content": "street fashion", "style": null, "bbox": [450, 1151, 69, 15], "children": []}, {"type": "a", "content": "street style", "style": null, "bbox": [527, 1151, 55, 15], "children": []}]}]}]}, {"type": "p", "content": "", "style": "margin: -0.25em 0 0; color: #ccc", "bbox": [259, 1180, 540, 32], "children": [{"type": "em", "content": "", "style": "font: 78%/1.4em \"Trebuchet MS\", Trebuchet, Arial, Verdana, Sans-serif; text-transform: uppercase; letter-spacing: 0.1em; font-style: normal; color: #999; margin-right: 0.6em", "bbox": [259, 1199, 166, 11], "children": [{"type": "a", "content": "10:24\u202fAM", "style": null, "bbox": [372, 1199, 53, 11], "children": []}]}, {"type": "span", "content": "", "style": null, "bbox": [431, 1196, 28, 15], "children": [{"type": "a", "content": "", "style": "border:none;", "bbox": [431, 1196, 28, 15], "children": [{"type": "img", "content": "", "style": "border: 1px solid #ddd; padding: 4px; border-width: 0; padding: 4px; border: 1px solid #ddd", "bbox": [431, 1180, 28, 28], "children": []}]}]}]}]}, {"type": "div", "content": "", "style": null, "bbox": [259, 1222, 540, 109], "children": [{"type": "h4", "content": "0 Comments:", "style": "margin: 1em 0; font: bold 78%/1.6em \"Trebuchet MS\", Trebuchet, Arial, Verdana, Sans-serif; text-transform: uppercase; letter-spacing: 0.2em; color: #999", "bbox": [259, 1222, 540, 16], "children": []}, {"type": "p", "content": "", "style": null, "bbox": [259, 1258, 540, 16], "children": [{"type": "a", "content": "Post a Comment", "style": "font: 78%/1.4em \"Trebuchet MS\", Trebuchet, Arial, Verdana, Sans-serif; text-transform: uppercase; letter-spacing: 0.1em; margin-left: 0.6em", "bbox": [265, 1261, 105, 11], "children": []}]}, {"type": "p", "content": "", "style": null, "bbox": [259, 1287, 540, 16], "children": [{"type": "a", "content": "Atom", "style": null, "bbox": [416, 1287, 29, 15], "children": []}]}, {"type": "p", "content": "", "style": null, "bbox": [259, 1316, 540, 16], "children": [{"type": "a", "content": "", "style": null, "bbox": [259, 1316, 49, 15], "children": []}]}]}]}, {"type": "div", "content": "", "style": "width: 164px; padding: 9px; float: right; position: relative; overflow: visible; font-size: 90%; min-height: 600px", "bbox": [858, 153, 182, 618], "children": [{"type": "table", "content": "", "style": "border: 0; padding: 0; margin: 0; width: 160px; border-collapse: collapse", "bbox": [867, 162, 160, 4], "children": [{"type": "tbody", "content": "", "style": null, "bbox": [867, 162, 160, 4], "children": [{"type": "tr", "content": "", "style": null, "bbox": [867, 162, 160, 4], "children": [{"type": "td", "content": "", "style": "padding: 2px 0; text-align: center; border: 0; margin: 0; text-align: right", "bbox": [867, 162, 160, 4], "children": []}]}]}]}]}, {"type": "div", "content": "", "style": "width: 164px; float: right; padding: 30px 10px 10px; background-color: #edf1f8; background-repeat: repeat-x", "bbox": [856, 771, 184, 754], "children": [{"type": "div", "content": "", "style": "padding-bottom: 1.5em; border-bottom: 1px solid #dae1ee; margin-bottom: 1.5em", "bbox": [866, 801, 164, 209], "children": [{"type": "h2", "content": "About Me", "style": "font: 160% Arial, Serif; font-weight: bold; letter-spacing: -1px; margin: 0", "bbox": [866, 801, 164, 24], "children": []}, {"type": "dl", "content": "", "style": "margin: 0.2em 0 0.2em", "bbox": [866, 828, 164, 108], "children": [{"type": "dt", "content": "", "style": "display: inline", "bbox": [866, 889, 94, 15], "children": [{"type": "a", "content": "", "style": null, "bbox": [866, 889, 94, 15], "children": [{"type": "img", "content": "", "style": "padding: 4px; border: 1px solid #ddd; margin: 0 8px 3px -4px", "bbox": [862, 828, 90, 70], "children": []}]}]}, {"type": "dd", "content": "", "style": "margin: 0 0 0.2em", "bbox": [866, 904, 164, 15], "children": [{"type": "a", "content": "Mai", "style": null, "bbox": [866, 904, 20, 15], "children": []}]}, {"type": "dd", "content": "", "style": "margin: 0 0 0.2em", "bbox": [866, 921, 164, 15], "children": []}]}, {"type": "p", "content": "", "style": "margin: 0 0 0.5em", "bbox": [866, 939, 164, 30], "children": []}, {"type": "p", "content": "", "style": "margin: 0", "bbox": [866, 975, 164, 15], "children": [{"type": "a", "content": "View my complete profile", "style": null, "bbox": [866, 975, 144, 15], "children": []}]}]}, {"type": "h2", "content": "Previous Posts", "style": "font: 160% Arial, Serif; font-weight: bold; letter-spacing: -1px; margin: 0", "bbox": [866, 1030, 164, 24], "children": []}, {"type": "ul", "content": "", "style": "list-style-image: none; list-style-position: outside; list-style-type: none; padding: 0; border-bottom: 1px solid #dae1ee; padding-bottom: 1em", "bbox": [866, 1067, 164, 391], "children": [{"type": "li", "content": "", "style": "margin: 0 0 0.6em", "bbox": [866, 1067, 164, 30], "children": [{"type": "a", "content": "Winston - XOXO Fest, Portland, OR", "style": null, "bbox": [866, 1067, 128, 30], "children": []}]}, {"type": "li", "content": "", "style": "margin: 0 0 0.6em", "bbox": [866, 1105, 164, 30], "children": [{"type": "a", "content": "Sarah - XOXO Fest, Portland, OR", "style": null, "bbox": [866, 1105, 116, 30], "children": []}]}, {"type": "li", "content": "", "style": "margin: 0 0 0.6em", "bbox": [866, 1143, 164, 30], "children": [{"type": "a", "content": "Allison - XOXO Fest, Portland, OR", "style": null, "bbox": [866, 1143, 119, 30], "children": []}]}, {"type": "li", "content": "", "style": "margin: 0 0 0.6em", "bbox": [866, 1181, 164, 30], "children": [{"type": "a", "content": "Dawn - XOXO Fest, Portland, OR", "style": null, "bbox": [866, 1181, 114, 30], "children": []}]}, {"type": "li", "content": "", "style": "margin: 0 0 0.6em", "bbox": [866, 1218, 164, 30], "children": [{"type": "a", "content": "Matt - XOXO Fest, Portland, OR", "style": null, "bbox": [866, 1218, 162, 30], "children": []}]}, {"type": "li", "content": "", "style": "margin: 0 0 0.6em", "bbox": [866, 1256, 164, 30], "children": [{"type": "a", "content": "Alexa - XOXO Fest, Portland, OR", "style": null, "bbox": [866, 1256, 114, 30], "children": []}]}, {"type": "li", "content": "", "style": "margin: 0 0 0.6em", "bbox": [866, 1294, 164, 30], "children": [{"type": "a", "content": "Karyn -XOXO Fest, Portland, OR", "style": null, "bbox": [866, 1294, 111, 30], "children": []}]}, {"type": "li", "content": "", "style": "margin: 0 0 0.6em", "bbox": [866, 1332, 164, 30], "children": [{"type": "a", "content": "Isla - XOXO Fest, Portland, OR", "style": null, "bbox": [866, 1332, 157, 30], "children": []}]}, {"type": "li", "content": "", "style": "margin: 0 0 0.6em", "bbox": [866, 1370, 164, 30], "children": [{"type": "a", "content": "Sarah - XOXO Fest, Portland, OR", "style": null, "bbox": [866, 1370, 116, 30], "children": []}]}, {"type": "li", "content": "", "style": "margin: 0 0 0.6em", "bbox": [866, 1407, 164, 30], "children": [{"type": "a", "content": "Maggie - XOXO Fest, Portland, OR", "style": null, "bbox": [866, 1407, 124, 30], "children": []}]}]}, {"type": "p", "content": "", "style": null, "bbox": [866, 1472, 164, 30], "children": [{"type": "a", "content": "Atom", "style": null, "bbox": [905, 1487, 30, 15], "children": []}]}]}]}]}]}
<!DOCTYPE html> <html><head><title>Fashionist: Ryan - Downtown, Portland, OR</title> &lt;![endif]--&gt; </head><body><div id="navbar-iframe-container"></div><div id="main"><h1><a>Fashionist</a><div id="tagline">unadulterated street fashion since 2007</div></h1><div id="collage"></div><div id="nav"><ul><li><a>neighborhoods</a></li><li><a>videos</a></li><li><a>favorites</a></li></ul></div><div id="content"><div id="posts"><div id="top-posts-ads"></div><h2 class="date-header">Tuesday, September 23, 2014</h2><div class="post"><a></a><h3 class="post-title"> Ryan - Downtown, Portland, OR </h3><div class="post-body"><div><div style="clear:both;"></div><a><img height="800" src="https://farm6.staticflickr.com/5566/15046064157_f283b4fd42_o.jpg" width="534"/></a><br/><br/><br/><a class="twitter-share-button">Tweet</a> <g:plusone></g:plusone> <a><img src="http://www.linkwithin.com/pixel.png" style="border: 0"/></a><div style="clear:both; padding-bottom:0.25em"></div><p class="blogger-labels">Labels: <a>men</a>, <a>Portland</a>, <a>Quick Shots</a>, <a>street fashion</a>, <a>street style</a></p></div></div><p class="post-footer"><em>posted by Mai at <a class="post-footer-link"> 10:24 AM </a></em><span class="item-control blog-admin pid-316205857"><a style="border:none;"><img class="icon-action" height="18" src="https://resources.blogblog.com/img/icon18_edit_allbkg.gif" width="18"/></a></span></p></div><div id="comments"><a></a><h4>0 Comments:</h4><dl id="comments-block"></dl><p class="comment-timestamp"><a class="comment-link">Post a Comment</a></p><p id="postfeeds">Subscribe to Post Comments [<a>Atom</a>]</p><p class="comment-timestamp"><a>&lt;&lt; Home</a></p></div></div><div id="ad-bar"><table id="blogherads"><tr><td class="privacy"></td></tr></table></div><div id="sidebar"><div id="profile-container"><h2 class="sidebar-title">About Me</h2><dl class="profile-datablock"><dt class="profile-img"><a><img height="60" src="//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgwqVZPozh4wmlP_YLcrw1A0yy9lGWy2QNngJTp2bM8jCktSJoIJN6MHzl-pwvidJ3s0P27RuVUFVM7suK-cbKLxSQf0oZb0e9FF2cOK72cl10uKwT4NZhvbiT-H4lg5A/s151/*" width="80"/></a></dt><dd class="profile-data"><strong>Name:</strong> <a> Mai </a></dd><dd class="profile-data"><strong>Location:</strong> San Francisco, CA </dd></dl><p class="profile-textblock">twitter.com/mai <br/> mai {at} this url</p><p class="profile-link"><a>View my complete profile</a></p></div><h2 class="sidebar-title">Previous Posts</h2><ul id="recently"><li><a><bloggerpreviousitems><li><a>Winston - XOXO Fest, Portland, OR</a></li><li><a><bloggerpreviousitems><li><a>Sarah - XOXO Fest, Portland, OR</a></li><li><a><bloggerpreviousitems><li><a>Allison - XOXO Fest, Portland, OR</a></li><li><a><bloggerpreviousitems><li><a>Dawn - XOXO Fest, Portland, OR</a></li><li><a><bloggerpreviousitems><li><a>Matt - XOXO Fest, Portland, OR</a></li><li><a><bloggerpreviousitems><li><a>Alexa - XOXO Fest, Portland, OR</a></li><li><a><bloggerpreviousitems><li><a>Karyn -XOXO Fest, Portland, OR</a></li><li><a><bloggerpreviousitems><li><a>Isla - XOXO Fest, Portland, OR</a></li><li><a><bloggerpreviousitems><li><a>Sarah - XOXO Fest, Portland, OR</a></li><li><a><bloggerpreviousitems><li><a>Maggie - XOXO Fest, Portland, OR</a></li></bloggerpreviousitems></a></li></bloggerpreviousitems></a></li></bloggerpreviousitems></a></li></bloggerpreviousitems></a></li></bloggerpreviousitems></a></li></bloggerpreviousitems></a></li></bloggerpreviousitems></a></li></bloggerpreviousitems></a></li></bloggerpreviousitems></a></li></bloggerpreviousitems></a></li></ul><p id="blogfeeds">Subscribe to<br/>Posts [<a>Atom</a>]</p></div></div></div><style>body, html { background: #bbb; padding: 0; margin: 0; color: #444; font: x-small Arial, Georgia, Serif; color: #444; font-size/* */: /**/ small; font-size: /**/ small; background-repeat: repeat } h1 a { text-align: left; font-size: 260%; text-decoration: none; text-transform: lowercase; letter-spacing: -2px; display: block } h1 { padding: 0.5em; padding-top: 0; background: #fff; background-repeat: repeat-x; background-position: bottom left; border-bottom: 1px solid #ddd } #tagline { text-align: left; color: #aaa; font-size: 50%; font-weight: normal } h1, #tagline { margin: 0 } #collage { background-repeat: no-repeat; background-position: 0 -160px; position: absolute; top: 6px; right: 30px; width: 370px; height: 85px; border: 2px solid #aaa } #main { width: 800px; margin: 0.5em auto 0; background: #fff; position: relative } #content { overflow: auto; width: 100%; margin-top: 2em } #ad-bar { width: 164px; padding: 9px; float: right; position: relative; overflow: visible; font-size: 90%; min-height: 600px } #top-posts-ads { margin: -20px 0 1.5em -10px; width: 468px; background: #fff } #sidebar { width: 164px; float: right; padding: 30px 10px 10px; background-color: #edf1f8; background-repeat: repeat-x } #sidebar li { margin: 0 0 0.6em } #sidebar ul { list-style-image: none; list-style-position: outside; list-style-type: none; padding: 0 } .sidebar-title { font: 160% Arial, Serif; font-weight: bold; letter-spacing: -1px; margin: 0 } #profile-container { padding-bottom: 1.5em; border-bottom: 1px solid #dae1ee; margin-bottom: 1.5em } #sidebar #recently { border-bottom: 1px solid #dae1ee; padding-bottom: 1em } .profile-datablock { margin: 0.2em 0 0.2em } .profile-img { display: inline } .profile-img img { padding: 4px; border: 1px solid #ddd; margin: 0 8px 3px -4px } .profile-data { margin: 0 0 0.2em } .profile-data strong { display: none } .profile-textblock { margin: 0 0 0.5em } .profile-link { margin: 0 } #nav { display: none } #content { margin-top: 2em } #nav { margin: 0 auto; overflow: auto; width: 100%; border-top: 0 solid #ddd; border-left: 0; border-right: 0; font-family: Arial } #nav ul { border: 0; margin: 0 auto; padding: 0; list-style-type: none; text-align: center; display: block; overflow: auto; width: 900px } #nav ul li { display: block; float: left; text-align: center; padding: 0; margin: 0; border: 0 solid #ddd; border-top: 0; background: #F4F6FA; margin: 0 2px } #nav ul li a { width: 176px; margin: 0; border: 0; padding: 0; display: block; text-align: center; font-weight: bold; line-height: 2em; letter-spacing: 1px; font-size: 140% } #posts { width: 540px; padding: 2em 1.5em 70px; float: left; position: relative; background: #fff; font-family: "Trebuchet MS" } #posts .date-header { margin: 0.5em 0 0.5em; font-size: 80%; font-weight: normal; color: #aaa } #posts .post-title { color: #c60; font-size: 170%; font-weight: normal; line-height: 1.2em; margin: 0.25em 0 0.5em; padding: 0 0 4px; font-family: Georgia, Serif } #posts .post img { border: 1px solid #ddd; padding: 4px } #posts a img { border-width: 0 } .post-title { margin: 0.25em 0 0; padding: 0 0 4px; font-size: 180%; font-weight: normal; line-height: 1.4em; color: #c60 } .post div { margin: 0 0 0.75em; line-height: 1.6em } p.post-footer { margin: -0.25em 0 0; color: #ccc } .post-footer em, .comment-link { font: 78%/1.4em "Trebuchet MS", Trebuchet, Arial, Verdana, Sans-serif; text-transform: uppercase; letter-spacing: 0.1em } .post-footer em { font-style: normal; color: #999; margin-right: 0.6em } .comment-link { margin-left: 0.6em } .post img { padding: 4px; border: 1px solid #ddd } #comments h4 { margin: 1em 0; font: bold 78%/1.6em "Trebuchet MS", Trebuchet, Arial, Verdana, Sans-serif; text-transform: uppercase; letter-spacing: 0.2em; color: #999 } #comments-block { margin: 1em 0 1.5em; line-height: 1.6em } table#blogherads { border: 0; padding: 0; margin: 0; width: 160px; border-collapse: collapse } table#blogherads td { padding: 2px 0; text-align: center; border: 0; margin: 0 } table#blogherads td.privacy { text-align: right }</style></body></html>
3
[ 1280, 1526 ]
en
[ 1429, 1400 ]
a9abb1546a04c3f1b81dcd12872fb6221b1fc5161794ba120a79ba506e88acb8
{"type": "body", "content": "", "style": null, "bbox": [8, 16, 1264, 2113], "children": [{"type": "header", "content": "", "style": "background-color: #66b2ff", "bbox": [8, 16, 1264, 576], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 16, 1264, 576], "children": [{"type": "p", "content": "", "style": null, "bbox": [8, 16, 1264, 21], "children": [{"type": "a", "content": "\u8aad\u66f8\u4ea1\u7f8a", "style": null, "bbox": [8, 19, 64, 17], "children": []}]}, {"type": "nav", "content": "", "style": null, "bbox": [8, 53, 1264, 18], "children": [{"type": "ul", "content": "", "style": null, "bbox": [8, 53, 1264, 18], "children": [{"type": "li", "content": "", "style": null, "bbox": [48, 53, 1224, 18], "children": []}]}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 87, 1264, 122], "children": [{"type": "input", "content": "", "style": "", "bbox": [8, 87, 177, 21], "children": []}, {"type": "div", "content": "", "style": null, "bbox": [8, 108, 1264, 101], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 108, 1264, 101], "children": [{"type": "label", "content": "", "style": null, "bbox": [8, 108, 50, 17], "children": []}, {"type": "div", "content": "", "style": null, "bbox": [8, 144, 1264, 64], "children": [{"type": "aside", "content": "", "style": null, "bbox": [8, 144, 1264, 64], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 144, 1264, 64], "children": [{"type": "h3", "content": "\u30ad\u30fc\u30ef\u30fc\u30c9", "style": null, "bbox": [8, 144, 1264, 25], "children": []}, {"type": "form", "content": "", "style": null, "bbox": [8, 188, 1264, 21], "children": [{"type": "input", "content": "", "style": "", "bbox": [8, 188, 177, 21], "children": []}, {"type": "button", "content": "", "style": null, "bbox": [189, 200, 16, 6], "children": []}]}]}]}]}]}]}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 209, 1264, 382], "children": [{"type": "input", "content": "", "style": "", "bbox": [8, 209, 177, 21], "children": []}, {"type": "div", "content": "", "style": null, "bbox": [8, 230, 1264, 361], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 230, 1264, 361], "children": [{"type": "label", "content": "", "style": null, "bbox": [8, 230, 50, 17], "children": []}, {"type": "div", "content": "", "style": null, "bbox": [8, 264, 1264, 327], "children": [{"type": "nav", "content": "", "style": null, "bbox": [8, 264, 1264, 18], "children": [{"type": "ul", "content": "", "style": null, "bbox": [8, 264, 1264, 18], "children": [{"type": "li", "content": "", "style": null, "bbox": [48, 264, 1224, 18], "children": []}]}]}, {"type": "aside", "content": "", "style": null, "bbox": [8, 302, 1264, 197], "children": [{"type": "h2", "content": "\u5206\u985e", "style": "background-color: #66b2ff", "bbox": [8, 302, 1264, 31], "children": []}, {"type": "ul", "content": "", "style": "border-color: rgba(102, 178, 255, 0.15)", "bbox": [8, 353, 1264, 147], "children": [{"type": "li", "content": "", "style": "border-color: rgba(102, 178, 255, 0.75)", "bbox": [48, 353, 1224, 21], "children": [{"type": "a", "content": "\u54f2\u5b66\u8ac7\u622f", "style": "background-color: #66b2ff", "bbox": [48, 356, 64, 17], "children": []}]}, {"type": "li", "content": "", "style": "border-color: rgba(102, 178, 255, 0.75)", "bbox": [48, 374, 1224, 21], "children": [{"type": "a", "content": "\u6587\u5b66\u900d\u9065", "style": "background-color: #66b2ff", "bbox": [48, 377, 64, 17], "children": []}]}, {"type": "li", "content": "", "style": "border-color: rgba(102, 178, 255, 0.75)", "bbox": [48, 395, 1224, 21], "children": [{"type": "a", "content": "\u5343\u8a00\u4e07\u53e5", "style": "background-color: #66b2ff", "bbox": [48, 398, 64, 17], "children": []}]}, {"type": "li", "content": "", "style": "border-color: rgba(102, 178, 255, 0.75)", "bbox": [48, 416, 1224, 21], "children": [{"type": "a", "content": "\u6674\u7b46\u96e8\u8aad", "style": "background-color: #66b2ff", "bbox": [48, 419, 64, 17], "children": []}]}, {"type": "li", "content": "", "style": "border-color: rgba(102, 178, 255, 0.75)", "bbox": [48, 437, 1224, 21], "children": [{"type": "a", "content": "\u5e8a\u5c4b\u653f\u8ac7", "style": "background-color: #66b2ff", "bbox": [48, 440, 64, 17], "children": []}]}, {"type": "li", "content": "", "style": "border-color: rgba(102, 178, 255, 0.75)", "bbox": [48, 458, 1224, 21], "children": [{"type": "a", "content": "\u79d1\u5b66\u534a\u89e3", "style": "background-color: #66b2ff", "bbox": [48, 461, 64, 17], "children": []}]}, {"type": "li", "content": "", "style": "border-color: rgba(102, 178, 255, 0.75)", "bbox": [48, 479, 1224, 21], "children": [{"type": "a", "content": "\u65b9\u3005\u65e5\u8a8c", "style": "background-color: #66b2ff", "bbox": [48, 482, 64, 17], "children": []}]}]}]}, {"type": "aside", "content": "", "style": null, "bbox": [8, 520, 1264, 71], "children": [{"type": "h2", "content": "\u6ce8\u76ee\u8a18\u4e8b", "style": "background-color: #66b2ff", "bbox": [8, 520, 1264, 31], "children": []}, {"type": "div", "content": "", "style": null, "bbox": [8, 571, 1264, 21], "children": [{"type": "ol", "content": "", "style": null, "bbox": [8, 571, 1264, 21], "children": [{"type": "li", "content": "", "style": null, "bbox": [48, 571, 1224, 21], "children": [{"type": "div", "content": "", "style": null, "bbox": [48, 571, 1224, 21], "children": [{"type": "p", "content": "\u30aa\u30d5\u30e9\u30a4\u30f3\u306e\u305f\u3081\u30e9\u30f3\u30ad\u30f3\u30b0\u304c\u8868\u793a\u3067\u304d\u307e\u305b\u3093", "style": null, "bbox": [48, 571, 1224, 21], "children": []}]}]}]}]}]}]}]}]}]}]}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 608, 1264, 60], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 608, 1264, 60], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 608, 1264, 60], "children": [{"type": "ul", "content": "", "style": null, "bbox": [8, 608, 1264, 60], "children": [{"type": "li", "content": "", "style": null, "bbox": [48, 608, 1224, 18], "children": [{"type": "a", "content": "HOME", "style": null, "bbox": [48, 608, 47, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [48, 626, 1224, 21], "children": [{"type": "a", "content": "2016\u5e74", "style": null, "bbox": [48, 629, 48, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [48, 647, 1224, 21], "children": [{"type": "a", "content": "1\u6708", "style": null, "bbox": [48, 650, 24, 17], "children": []}]}]}]}]}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 684, 1264, 1374], "children": [{"type": "main", "content": "", "style": null, "bbox": [8, 684, 1264, 796], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 684, 1264, 81], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 684, 1264, 81], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 684, 1264, 81], "children": [{"type": "span", "content": "", "style": null, "bbox": [8, 684, 58, 17], "children": []}, {"type": "h1", "content": "2016\u5e741\u6708", "style": null, "bbox": [8, 723, 1264, 42], "children": []}]}]}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 786, 1264, 693], "children": [{"type": "input", "content": "", "style": "", "bbox": [8, 786, 177, 21], "children": []}, {"type": "input", "content": "", "style": "", "bbox": [185, 786, 177, 21], "children": []}, {"type": "input", "content": "", "style": "", "bbox": [362, 786, 177, 21], "children": []}, {"type": "ul", "content": "", "style": null, "bbox": [8, 823, 1264, 46], "children": [{"type": "li", "content": "", "style": null, "bbox": [48, 823, 1224, 23], "children": [{"type": "form", "content": "", "style": null, "bbox": [48, 823, 1224, 23], "children": [{"type": "input", "content": "", "style": "", "bbox": [48, 825, 177, 21], "children": []}, {"type": "a", "content": "\u65b0\u7740\u9806", "style": null, "bbox": [225, 826, 48, 17], "children": []}]}]}, {"type": "li", "content": "", "style": null, "bbox": [48, 846, 1224, 23], "children": [{"type": "form", "content": "", "style": null, "bbox": [48, 846, 1224, 23], "children": [{"type": "input", "content": "", "style": "", "bbox": [48, 848, 177, 21], "children": []}, {"type": "a", "content": "\u4eba\u6c17\u9806", "style": null, "bbox": [225, 849, 48, 17], "children": []}]}]}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 885, 1264, 594], "children": [{"type": "article", "content": "", "style": null, "bbox": [8, 885, 1264, 203], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 885, 1264, 203], "children": [{"type": "div", "content": "", "style": "background-color: #66b2ff", "bbox": [8, 885, 1264, 21], "children": [{"type": "a", "content": "\u65b9\u3005\u65e5\u8a8c", "style": null, "bbox": [8, 888, 64, 17], "children": []}]}, {"type": "ul", "content": "", "style": null, "bbox": [8, 922, 1264, 21], "children": [{"type": "li", "content": "2016\u5e741\u670826\u65e5", "style": null, "bbox": [48, 922, 1224, 21], "children": []}]}, {"type": "h2", "content": "", "style": null, "bbox": [8, 963, 1264, 27], "children": [{"type": "a", "content": "Samantha Fish \u2013 Wild Heart (2015)", "style": null, "bbox": [8, 963, 363, 26], "children": []}]}, {"type": "p", "content": "\u3064\u3044\u3067\u306b\u3001Samantha Fish\u306ealbum\u304b\u3089\u3082\u3046\u4e00\u679a\u3002Wild Heart\u3068\u3044\u30462015\u5e74\u767a\u8868\u306e\u4f5c\u54c1\u3002Blues\u304c\u57fa\u672c\u306a\u306e\u306f\u5909\u308f\u3089\u306a\u3044\u3051\u3069\u3001\u5168\u4f53\u3068\u3057\u3066\u3001\u304b\u306a\u308arock\u8272\u304c\u5f37\u304f\u306a\u3063\u305f\u304b\u306a\u3002 \u3000 [\u2026]", "style": null, "bbox": [8, 1010, 1264, 42], "children": []}, {"type": "div", "content": "", "style": null, "bbox": [8, 1068, 1264, 21], "children": [{"type": "a", "content": "\u7d9a\u304d\u3092\u8aad\u3080", "style": "color: #3f3f3f", "bbox": [8, 1071, 80, 17], "children": []}]}]}]}, {"type": "article", "content": "", "style": null, "bbox": [8, 1089, 1264, 182], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 1089, 1264, 182], "children": [{"type": "div", "content": "", "style": "background-color: #66b2ff", "bbox": [8, 1089, 1264, 21], "children": [{"type": "a", "content": "\u65b9\u3005\u65e5\u8a8c", "style": null, "bbox": [8, 1092, 64, 17], "children": []}]}, {"type": "ul", "content": "", "style": null, "bbox": [8, 1126, 1264, 21], "children": [{"type": "li", "content": "2016\u5e741\u670825\u65e5", "style": null, "bbox": [48, 1126, 1224, 21], "children": []}]}, {"type": "h2", "content": "", "style": null, "bbox": [8, 1167, 1264, 27], "children": [{"type": "a", "content": "Samantha Fish \u2013 Runaway (2012)", "style": null, "bbox": [8, 1167, 345, 26], "children": []}]}, {"type": "p", "content": "2012\u5e74\u306eBlues Music Award\u3067\u3001Best New Artist\u3092\u7372\u5f97\u3057\u305f\u65b0\u4eba\u5973\u6027blues singer\u3002 \u3000\u82e5\u3044\u5973\u6027singer\u3068\u3044\u3063\u3066\u3082blues\u306e\u6f14\u594f\u306f\u304b\u306a\u308a\u306a\u672c\u683c\u6d3e\u3002\u4f4e\u97f3\u306e [\u2026]", "style": null, "bbox": [8, 1214, 1264, 21], "children": []}, {"type": "div", "content": "", "style": null, "bbox": [8, 1251, 1264, 21], "children": [{"type": "a", "content": "\u7d9a\u304d\u3092\u8aad\u3080", "style": "color: #3f3f3f", "bbox": [8, 1254, 80, 17], "children": []}]}]}]}, {"type": "article", "content": "", "style": null, "bbox": [8, 1272, 1264, 207], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 1272, 1264, 207], "children": [{"type": "div", "content": "", "style": "background-color: #66b2ff", "bbox": [8, 1272, 1264, 21], "children": [{"type": "a", "content": "\u5343\u8a00\u4e07\u53e5", "style": null, "bbox": [8, 1275, 64, 17], "children": []}]}, {"type": "ul", "content": "", "style": null, "bbox": [8, 1309, 1264, 21], "children": [{"type": "li", "content": "2016\u5e741\u670810\u65e5", "style": null, "bbox": [48, 1309, 1224, 21], "children": []}]}, {"type": "h2", "content": "", "style": null, "bbox": [8, 1350, 1264, 31], "children": [{"type": "a", "content": "\u6b74\u53f2\u7684\u5049\u4eba\u306b\u5b66\u3076\u82f1\u8a9e\u52c9\u5f37\u6cd5 \u2013 \u658e\u85e4\u5146\u53f2\u300e\u82f1\u8a9e\u9054\u4eba\u587e\u300f(2003)", "style": null, "bbox": [8, 1354, 663, 26], "children": []}]}, {"type": "p", "content": "\u658e\u85e4\u5146\u53f2\u300e\u82f1\u8a9e\u9054\u4eba\u587e\u300f(2003) \u3000\u5df7\u306b\u6ea2\u308c\u308b\u5927\u91cf\u306e\u5b89\u6613\u306a\u82f1\u8a9e\u5b66\u7fd2\u672c\u306b\u80cc\u3092\u5411\u3051\u3001\u672c\u6c17\u3067\u82f1\u8a9e\u3092\u7fd2\u5f97\u3057\u3088\u3046\u3068\u3044\u3046\u4eba\u306b\u5411\u3051\u305f\u672c\u3002 \u3000\u672c\u66f8\u304c\u76ee\u6307\u3059\u3068\u3053\u308d\u306f\u3001\u3072\u3058\u3087\u30fc\u306b\u6b21\u5143\u304c\u9ad8\u3044\u3002 \u3000\u300cNative Engl [\u2026]", "style": null, "bbox": [8, 1401, 1264, 42], "children": []}, {"type": "div", "content": "", "style": null, "bbox": [8, 1459, 1264, 21], "children": [{"type": "a", "content": "\u7d9a\u304d\u3092\u8aad\u3080", "style": "color: #3f3f3f", "bbox": [8, 1462, 80, 17], "children": []}]}]}]}]}]}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 1500, 1264, 558], "children": [{"type": "aside", "content": "", "style": null, "bbox": [8, 1500, 1264, 197], "children": [{"type": "h2", "content": "\u5206\u985e", "style": "background-color: #66b2ff", "bbox": [8, 1500, 1264, 31], "children": []}, {"type": "ul", "content": "", "style": "border-color: rgba(102, 178, 255, 0.15)", "bbox": [8, 1551, 1264, 147], "children": [{"type": "li", "content": "", "style": "border-color: rgba(102, 178, 255, 0.75)", "bbox": [48, 1551, 1224, 21], "children": [{"type": "a", "content": "\u54f2\u5b66\u8ac7\u622f", "style": "background-color: #66b2ff", "bbox": [48, 1554, 64, 17], "children": []}]}, {"type": "li", "content": "", "style": "border-color: rgba(102, 178, 255, 0.75)", "bbox": [48, 1572, 1224, 21], "children": [{"type": "a", "content": "\u6587\u5b66\u900d\u9065", "style": "background-color: #66b2ff", "bbox": [48, 1575, 64, 17], "children": []}]}, {"type": "li", "content": "", "style": "border-color: rgba(102, 178, 255, 0.75)", "bbox": [48, 1593, 1224, 21], "children": [{"type": "a", "content": "\u5343\u8a00\u4e07\u53e5", "style": "background-color: #66b2ff", "bbox": [48, 1596, 64, 17], "children": []}]}, {"type": "li", "content": "", "style": "border-color: rgba(102, 178, 255, 0.75)", "bbox": [48, 1614, 1224, 21], "children": [{"type": "a", "content": "\u6674\u7b46\u96e8\u8aad", "style": "background-color: #66b2ff", "bbox": [48, 1617, 64, 17], "children": []}]}, {"type": "li", "content": "", "style": "border-color: rgba(102, 178, 255, 0.75)", "bbox": [48, 1635, 1224, 21], "children": [{"type": "a", "content": "\u5e8a\u5c4b\u653f\u8ac7", "style": "background-color: #66b2ff", "bbox": [48, 1638, 64, 17], "children": []}]}, {"type": "li", "content": "", "style": "border-color: rgba(102, 178, 255, 0.75)", "bbox": [48, 1656, 1224, 21], "children": [{"type": "a", "content": "\u79d1\u5b66\u534a\u89e3", "style": "background-color: #66b2ff", "bbox": [48, 1659, 64, 17], "children": []}]}, {"type": "li", "content": "", "style": "border-color: rgba(102, 178, 255, 0.75)", "bbox": [48, 1677, 1224, 21], "children": [{"type": "a", "content": "\u65b9\u3005\u65e5\u8a8c", "style": "background-color: #66b2ff", "bbox": [48, 1680, 64, 17], "children": []}]}]}]}, {"type": "aside", "content": "", "style": null, "bbox": [8, 1718, 1264, 71], "children": [{"type": "h2", "content": "\u691c\u7d22", "style": "background-color: #66b2ff", "bbox": [8, 1718, 1264, 31], "children": []}, {"type": "form", "content": "", "style": null, "bbox": [8, 1769, 1264, 21], "children": [{"type": "input", "content": "", "style": "", "bbox": [8, 1769, 177, 21], "children": []}, {"type": "button", "content": "", "style": null, "bbox": [189, 1781, 16, 6], "children": []}]}]}, {"type": "aside", "content": "", "style": null, "bbox": [8, 1809, 1264, 155], "children": [{"type": "h2", "content": "\u6700\u8fd1\u306e\u6295\u7a3f", "style": "background-color: #66b2ff", "bbox": [8, 1809, 1264, 31], "children": []}, {"type": "ul", "content": "", "style": null, "bbox": [8, 1860, 1264, 105], "children": [{"type": "li", "content": "", "style": null, "bbox": [48, 1860, 1224, 21], "children": [{"type": "a", "content": "\u904b\u547d\u3092\u80cc\u8ca0\u3046\u3068\u3044\u3046\u3053\u3068 \u2013 \u30ab\u30ba\u30aa\u30fb\u30a4\u30b7\u30b0\u30ed\u300e\u308f\u305f\u3057\u3092\u96e2\u3055\u306a\u3044\u3067\u300f(2005)", "style": null, "bbox": [48, 1863, 538, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [48, 1881, 1224, 21], "children": [{"type": "a", "content": "\u610f\u8b58\u3068\u3044\u3046\u79d1\u5b66\u3067\u306f\u8aac\u660e\u3067\u304d\u306a\u3044\u3082\u306e \u2013 \u30de\u30eb\u30af\u30b9\u30fb\u30ac\u30d6\u30ea\u30a8\u30eb\u300e\u300c\u79c1\u300d\u306f\u8133\u3067\u306f\u306a\u3044\u300f(2015)", "style": null, "bbox": [48, 1884, 666, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [48, 1902, 1224, 21], "children": [{"type": "a", "content": "\u65b0\u3057\u3044\u5b9f\u5728\u8ad6 \u2013 \u30de\u30eb\u30af\u30b9\u30fb\u30ac\u30d6\u30ea\u30a8\u30eb\u300e\u306a\u305c\u4e16\u754c\u306f\u5b58\u5728\u3057\u306a\u3044\u306e\u304b\u300f(2013)", "style": null, "bbox": [48, 1905, 538, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [48, 1923, 1224, 21], "children": [{"type": "a", "content": "\u30ad\u30e5\u30cb\u30b3\u30b9\u6d3e\uff08\u72ac\u5112\u6d3e\uff09\u306e\u601d\u60f3\u3068\u54f2\u5b66 \u2013 \u81ea\u7136\u306b\u3057\u305f\u304c\u3063\u3066\u751f\u304d\u3088", "style": null, "bbox": [48, 1926, 464, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [48, 1944, 1224, 21], "children": [{"type": "a", "content": "\u6a3d\u306e\u30c7\u30a3\u30aa\u30b2\u30cd\u30b9 \u2013 \u72ac\u3068\u547c\u3070\u308c\u305f\u54f2\u5b66\u8005", "style": null, "bbox": [48, 1947, 288, 17], "children": []}]}]}]}, {"type": "aside", "content": "", "style": null, "bbox": [8, 1985, 1264, 72], "children": [{"type": "h2", "content": "\u904e\u53bb\u8a18\u4e8b", "style": "background-color: #66b2ff", "bbox": [8, 1985, 1264, 31], "children": []}, {"type": "label", "content": "\u904e\u53bb\u8a18\u4e8b", "style": null, "bbox": [8, 2039, 64, 17], "children": []}, {"type": "select", "content": "", "style": null, "bbox": [76, 2039, 113, 19], "children": [{"type": "option", "content": "\u6708\u3092\u9078\u629e", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2022\u5e748\u6708 (1)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2022\u5e743\u6708 (4)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2021\u5e748\u6708 (1)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2021\u5e747\u6708 (1)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2021\u5e744\u6708 (1)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2021\u5e742\u6708 (1)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2020\u5e7410\u6708 (1)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2020\u5e749\u6708 (1)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2020\u5e748\u6708 (4)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2020\u5e741\u6708 (1)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2019\u5e749\u6708 (5)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2019\u5e746\u6708 (3)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2019\u5e745\u6708 (6)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2019\u5e744\u6708 (1)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2019\u5e742\u6708 (2)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2019\u5e741\u6708 (2)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2018\u5e748\u6708 (3)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2018\u5e741\u6708 (1)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2017\u5e7411\u6708 (1)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2017\u5e746\u6708 (2)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2017\u5e744\u6708 (1)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2017\u5e743\u6708 (6)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2017\u5e741\u6708 (2)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2016\u5e7412\u6708 (2)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2016\u5e7411\u6708 (1)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2016\u5e7410\u6708 (3)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2016\u5e749\u6708 (1)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2016\u5e748\u6708 (3)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2016\u5e746\u6708 (1)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2016\u5e745\u6708 (1)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2016\u5e744\u6708 (2)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2016\u5e743\u6708 (5)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2016\u5e742\u6708 (2)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2016\u5e741\u6708 (3)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2015\u5e7412\u6708 (7)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2015\u5e7411\u6708 (5)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2015\u5e7410\u6708 (5)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2015\u5e749\u6708 (2)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2015\u5e748\u6708 (1)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2015\u5e747\u6708 (5)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2015\u5e746\u6708 (2)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2015\u5e745\u6708 (5)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2015\u5e744\u6708 (5)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2015\u5e743\u6708 (4)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2015\u5e742\u6708 (6)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2015\u5e741\u6708 (7)", "style": null, "bbox": [0, 0, 0, 0], "children": []}]}]}]}]}, {"type": "footer", "content": "", "style": null, "bbox": [8, 2074, 1264, 55], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 2074, 1264, 18], "children": [{"type": "div", "content": "", "style": "background-color: #66b2ff", "bbox": [8, 2074, 1264, 18], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 2074, 1264, 18], "children": [{"type": "ul", "content": "", "style": null, "bbox": [8, 2074, 1264, 18], "children": [{"type": "li", "content": "", "style": null, "bbox": [48, 2074, 1224, 18], "children": []}]}]}]}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 2108, 1264, 21], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 2108, 1264, 21], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 2108, 1264, 21], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 2108, 1264, 21], "children": [{"type": "a", "content": "\u8aad\u66f8\u4ea1\u7f8a", "style": null, "bbox": [129, 2111, 64, 17], "children": []}]}]}]}]}]}]}
<!DOCTYPE html> <html class="t-html"><head><title>2016年1月|読書亡羊</title></head><body class="t-meiryo t-headerColor" id="top"><header class="l-header"><div class="container container-header"><p class="siteTitle"><a class="siteTitle__link"> 読書亡羊 </a></p><nav class="subNavi"><ul class="subNavi__list"><li class="subNavi__item"><a class="subNavi__link icon-twitter"></a></li></ul></nav><div class="searchBtn"><input class="searchBtn__checkbox" id="searchBtn-checkbox"/><label class="searchBtn__link searchBtn__link-text icon-search"></label><label class="searchBtn__unshown"></label><div class="searchBtn__content"><div class="searchBtn__scroll"><label class="searchBtn__close"><i class="icon-close"></i>CLOSE</label><div class="searchBtn__contentInner"><aside class="widget"><div class="widgetSearch"><h3 class="heading heading-tertiary">キーワード</h3><form class="widgetSearch__flex"><input class="widgetSearch__input"/><button class="widgetSearch__submit icon-search"></button></form></div></aside></div></div></div></div><div class="menuBtn"><input class="menuBtn__checkbox" id="menuBtn-checkbox"/><label class="menuBtn__link menuBtn__link-text icon-menu"></label><label class="menuBtn__unshown"></label><div class="menuBtn__content"><div class="menuBtn__scroll"><label class="menuBtn__close"><i class="icon-close"></i>CLOSE</label><div class="menuBtn__contentInner"><nav class="menuBtn__navi u-none-pc"><ul class="menuBtn__naviList"><li class="menuBtn__naviItem"><a class="menuBtn__naviLink icon-twitter"></a></li></ul></nav><aside class="widget widget-menu widget_categories"><h2 class="heading heading-widgetsimplewide">分類</h2><ul><li class="cat-item cat-item16"><a>哲学談戯</a></li><li class="cat-item cat-item18"><a>文学逍遥</a></li><li class="cat-item cat-item15"><a>千言万句</a></li><li class="cat-item cat-item2"><a>晴筆雨読</a></li><li class="cat-item cat-item8"><a>床屋政談</a></li><li class="cat-item cat-item11"><a>科学半解</a></li><li class="cat-item cat-item9"><a>方々日誌</a></li></ul></aside><aside class="widget widget-menu widget_fit_ranking_archive_class"><h2 class="heading heading-widgetsimplewide">注目記事</h2><div id="rankwidget-506714fa6396e57ded42805cfbb99cf8"> <ol class="widgetArchive"> <li class="widgetArchive__item widgetArchive__item-no widgetArchive__item-offline rank-offline"> <div class="widgetArchive__contents"> <p class="phrase phrase-tertiary">オフラインのためランキングが表示できません</p> </div> </li> </ol></div></aside> </div></div></div></div></div></header><div class="l-headerBottom"><div class="wider"><div class="breadcrumb"><ul class="breadcrumb__list container"><li class="breadcrumb__item icon-home"><a>HOME</a></li><li class="breadcrumb__item"><a>2016年</a></li><li class="breadcrumb__item breadcrumb__item-current"><a>1月</a></li></ul></div></div></div><div class="l-wrapper"><main class="l-main"><div class="dividerBottom"><div class="archiveHead"><div class="archiveHead__contents"><span class="archiveHead__subtitle"><i class="icon-calendar"></i>MONTH</span><h1 class="heading heading-primary">2016年1月</h1></div></div></div><div class="dividerBottom"><input class="controller__viewRadio" id="viewWide"/><input class="controller__viewRadio" id="viewCard"/><input class="controller__viewRadio" id="viewNormal"/><ul class="controller"><li class="controller__item"><form><input/><a class="controller__link is-current">新着順</a></form></li><li class="controller__item"><form><input/><a class="controller__link">人気順</a></form></li></ul><div class="archive"><article class="archive__item archive__item-shadow"><div class="archive__contents archive__contents-noImg"><div class="the__category cc-bg9"><a>方々日誌</a></div><ul class="dateList"><li class="dateList__item icon-clock">2016年1月26日</li></ul><h2 class="heading heading-secondary"><a>Samantha Fish – Wild Heart (2015)</a></h2><p class="phrase phrase-secondary">  ついでに、Samantha Fishのalbumからもう一枚。Wild Heartという2015年発表の作品。Bluesが基本なのは変わらないけど、全体として、かなりrock色が強くなったかな。   […] </p><div class="btn btn-right"><a class="btn__link btn__link-normal">続きを読む</a></div></div></article><article class="archive__item archive__item-shadow"><div class="archive__contents archive__contents-noImg"><div class="the__category cc-bg9"><a>方々日誌</a></div><ul class="dateList"><li class="dateList__item icon-clock">2016年1月25日</li></ul><h2 class="heading heading-secondary"><a>Samantha Fish – Runaway (2012)</a></h2><p class="phrase phrase-secondary">  2012年のBlues Music Awardで、Best New Artistを獲得した新人女性blues singer。  若い女性singerといってもbluesの演奏はかなりな本格派。低音の […] </p><div class="btn btn-right"><a class="btn__link btn__link-normal">続きを読む</a></div></div></article><div class="archive__item archive__item-infeedPc3 archive__item-shadow"><ins class="adsbygoogle" style="display:block"></ins></div> <article class="archive__item archive__item-shadow"><div class="archive__contents archive__contents-noImg"><div class="the__category cc-bg15"><a>千言万句</a></div><ul class="dateList"><li class="dateList__item icon-clock">2016年1月10日</li></ul><h2 class="heading heading-secondary"><a>歴史的偉人に学ぶ英語勉強法 – 斎藤兆史『英語達人塾』(2003)</a></h2><p class="phrase phrase-secondary"> 斎藤兆史『英語達人塾』(2003)  巷に溢れる大量の安易な英語学習本に背を向け、本気で英語を習得しようという人に向けた本。  本書が目指すところは、ひじょーに次元が高い。  「Native Engl […] </p><div class="btn btn-right"><a class="btn__link btn__link-normal">続きを読む</a></div></div></article></div></div></main><div class="l-sidebar"><aside class="widget widget-side u-shadowfix widget_categories"><h2 class="heading heading-widgetsimplewide">分類</h2><ul><li class="cat-item cat-item16"><a>哲学談戯</a></li><li class="cat-item cat-item18"><a>文学逍遥</a></li><li class="cat-item cat-item15"><a>千言万句</a></li><li class="cat-item cat-item2"><a>晴筆雨読</a></li><li class="cat-item cat-item8"><a>床屋政談</a></li><li class="cat-item cat-item11"><a>科学半解</a></li><li class="cat-item cat-item9"><a>方々日誌</a></li></ul></aside><aside class="widget widget-side u-shadowfix widget_search"><h2 class="heading heading-widgetsimplewide">検索</h2><form class="widgetSearch__flex"><input class="widgetSearch__input"/><button class="widgetSearch__submit icon-search"></button></form></aside><aside class="widget widget-side u-shadowfix widget_recent_entries"><h2 class="heading heading-widgetsimplewide">最近の投稿</h2><ul><li><a>運命を背負うということ – カズオ・イシグロ『わたしを離さないで』(2005)</a></li><li><a>意識という科学では説明できないもの – マルクス・ガブリエル『「私」は脳ではない』(2015)</a></li><li><a>新しい実在論 – マルクス・ガブリエル『なぜ世界は存在しないのか』(2013)</a></li><li><a>キュニコス派(犬儒派)の思想と哲学 – 自然にしたがって生きよ</a></li><li><a>樽のディオゲネス – 犬と呼ばれた哲学者</a></li></ul></aside><aside class="widget widget-side u-shadowfix widget_archive"><h2 class="heading heading-widgetsimplewide">過去記事</h2> <label class="screen-reader-text">過去記事</label><select id="archives-dropdown-4"><option>月を選択</option><option> 2022年8月 (1)</option><option> 2022年3月 (4)</option><option> 2021年8月 (1)</option><option> 2021年7月 (1)</option><option> 2021年4月 (1)</option><option> 2021年2月 (1)</option><option> 2020年10月 (1)</option><option> 2020年9月 (1)</option><option> 2020年8月 (4)</option><option> 2020年1月 (1)</option><option> 2019年9月 (5)</option><option> 2019年6月 (3)</option><option> 2019年5月 (6)</option><option> 2019年4月 (1)</option><option> 2019年2月 (2)</option><option> 2019年1月 (2)</option><option> 2018年8月 (3)</option><option> 2018年1月 (1)</option><option> 2017年11月 (1)</option><option> 2017年6月 (2)</option><option> 2017年4月 (1)</option><option> 2017年3月 (6)</option><option> 2017年1月 (2)</option><option> 2016年12月 (2)</option><option> 2016年11月 (1)</option><option> 2016年10月 (3)</option><option> 2016年9月 (1)</option><option> 2016年8月 (3)</option><option> 2016年6月 (1)</option><option> 2016年5月 (1)</option><option> 2016年4月 (2)</option><option> 2016年3月 (5)</option><option> 2016年2月 (2)</option><option> 2016年1月 (3)</option><option> 2015年12月 (7)</option><option> 2015年11月 (5)</option><option> 2015年10月 (5)</option><option> 2015年9月 (2)</option><option> 2015年8月 (1)</option><option> 2015年7月 (5)</option><option> 2015年6月 (2)</option><option> 2015年5月 (5)</option><option> 2015年4月 (5)</option><option> 2015年3月 (4)</option><option> 2015年2月 (6)</option><option> 2015年1月 (7)</option></select></aside></div></div><div class="l-footerTop"></div><footer class="l-footer"><div class="wider"><div class="snsFooter"><div class="container"><ul class="snsFooter__list"><li class="snsFooter__item"><a class="snsFooter__link icon-twitter"></a></li></ul></div></div></div><div class="wider"><div class="bottomFooter"><div class="container"><div class="bottomFooter__copyright"> © Copyright 2023 <a class="bottomFooter__link">読書亡羊</a>. </div></div><a class="bottomFooter__topBtn" id="bottomFooter__topBtn"></a></div></div></footer><style>.widget.widget_categories ul { border-color: rgba(102, 178, 255, 0.15) } .widget.widget_categories ul li { border-color: rgba(102, 178, 255, 0.75) } .widget.widget_categories ul li a { background-color: #66b2ff } .the__category { background-color: #66b2ff } .bottomFooter__topBtn { background-color: #66b2ff } .t-headerColor .l-header { background-color: #66b2ff } .snsFooter { background-color: #66b2ff } .widget-side .heading.heading-widgetsimplewide { background-color: #66b2ff } .widget-menu .heading.heading-widgetsimplewide { background-color: #66b2ff } .btn__link-normal { color: #3f3f3f }</style></body></html>
3
[ 1280, 2138 ]
ja
[ 213, 3623 ]
3d27c488228e3431548f4b7f20f1b83664d6d79bcf3ff7ca3fe762dff23f8b80
{"type": "body", "content": "", "style": null, "bbox": [8, 8, 1264, 1702], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 8, 1264, 1702], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 8, 1264, 1057], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 8, 1264, 165], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 8, 1264, 54], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 8, 1264, 18], "children": [{"type": "a", "content": "", "style": null, "bbox": [8, 8, 4, 17], "children": []}, {"type": "a", "content": "", "style": null, "bbox": [16, 8, 4, 17], "children": []}, {"type": "a", "content": "", "style": null, "bbox": [24, 8, 4, 17], "children": []}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 26, 1264, 18], "children": [{"type": "a", "content": "\u043c\u043e\u0431\u0438\u043b\u044c\u043d\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f", "style": null, "bbox": [8, 26, 122, 17], "children": []}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 44, 1264, 18], "children": [{"type": "a", "content": "\u0432\u0435\u0440\u0441\u0438\u044f \u0434\u043b\u044f \u0441\u043b\u0430\u0431\u043e\u0432\u0438\u0434\u044f\u0449\u0438\u0445", "style": null, "bbox": [8, 44, 175, 17], "children": []}]}]}, {"type": "a", "content": "", "style": null, "bbox": [8, 62, 4, 17], "children": []}, {"type": "div", "content": "", "style": null, "bbox": [8, 80, 1264, 54], "children": [{"type": "div", "content": "\u0413\u0443\u0431\u0435\u0440\u043d\u0430\u0442\u043e\u0440 \u0438 \u041f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e", "style": null, "bbox": [8, 80, 1264, 18], "children": []}, {"type": "div", "content": "\u0423\u041b\u042c\u042f\u041d\u041e\u0412\u0421\u041a\u041e\u0419 \u041e\u0411\u041b\u0410\u0421\u0422\u0418", "style": null, "bbox": [8, 98, 1264, 18], "children": []}, {"type": "strong", "content": "\u041e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u0430\u0439\u0442", "style": null, "bbox": [8, 116, 144, 17], "children": []}, {"type": "span", "content": "", "style": null, "bbox": [156, 116, 34, 17], "children": [{"type": "a", "content": "", "style": null, "bbox": [156, 116, 15, 17], "children": []}, {"type": "a", "content": "", "style": null, "bbox": [175, 116, 15, 17], "children": []}]}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 134, 1264, 39], "children": [{"type": "form", "content": "", "style": null, "bbox": [8, 134, 1264, 21], "children": [{"type": "input", "content": "", "style": "", "bbox": [8, 134, 177, 21], "children": []}, {"type": "input", "content": "", "style": "opacity: 0; position: absolute; left: -9999px;", "bbox": [-9999, 134, 177, 21], "children": []}, {"type": "input", "content": "", "style": "", "bbox": [189, 134, 177, 21], "children": []}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 155, 1264, 18], "children": [{"type": "a", "content": "", "style": null, "bbox": [20, 155, 16, 17], "children": []}]}]}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 189, 1264, 324], "children": [{"type": "ul", "content": "", "style": null, "bbox": [8, 189, 1264, 324], "children": [{"type": "li", "content": "", "style": null, "bbox": [48, 189, 1224, 36], "children": [{"type": "a", "content": "", "style": null, "bbox": [48, 189, 133, 35], "children": [{"type": "strong", "content": "\u0413\u043b\u0430\u0432\u043d\u0430\u044f", "style": null, "bbox": [48, 189, 59, 17], "children": []}]}]}, {"type": "li", "content": "", "style": null, "bbox": [48, 225, 1224, 36], "children": [{"type": "a", "content": "", "style": null, "bbox": [48, 225, 160, 35], "children": [{"type": "strong", "content": "\u0413\u0443\u0431\u0435\u0440\u043d\u0430\u0442\u043e\u0440", "style": null, "bbox": [48, 225, 82, 17], "children": []}]}]}, {"type": "li", "content": "", "style": null, "bbox": [48, 261, 1224, 18], "children": [{"type": "a", "content": "", "style": null, "bbox": [48, 261, 216, 17], "children": [{"type": "strong", "content": "\u041f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e", "style": null, "bbox": [48, 261, 111, 17], "children": []}]}]}, {"type": "li", "content": "", "style": null, "bbox": [48, 279, 1224, 36], "children": [{"type": "a", "content": "", "style": null, "bbox": [48, 279, 323, 35], "children": [{"type": "strong", "content": "\u041e\u0431\u0440\u0430\u0449\u0435\u043d\u0438\u044f \u0433\u0440\u0430\u0436\u0434\u0430\u043d", "style": null, "bbox": [48, 279, 150, 17], "children": []}]}]}, {"type": "li", "content": "", "style": null, "bbox": [48, 315, 1224, 36], "children": [{"type": "a", "content": "", "style": null, "bbox": [48, 315, 150, 35], "children": [{"type": "strong", "content": "\u041a\u043e\u043d\u0442\u0430\u043a\u0442\u044b", "style": null, "bbox": [48, 315, 73, 17], "children": []}]}]}, {"type": "li", "content": "", "style": null, "bbox": [48, 351, 1224, 36], "children": [{"type": "a", "content": "", "style": null, "bbox": [48, 351, 318, 35], "children": [{"type": "strong", "content": "\u041e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u0432\u0430\u043a\u0430\u043d\u0441\u0438\u0438", "style": null, "bbox": [48, 351, 175, 17], "children": []}]}]}, {"type": "li", "content": "", "style": null, "bbox": [48, 387, 1224, 54], "children": [{"type": "a", "content": "", "style": null, "bbox": [48, 387, 212, 53], "children": [{"type": "strong", "content": "\u041e\u0442\u043a\u0440\u044b\u0442\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435", "style": null, "bbox": [48, 387, 136, 17], "children": []}]}]}, {"type": "li", "content": "", "style": null, "bbox": [48, 441, 1224, 36], "children": [{"type": "a", "content": "", "style": null, "bbox": [48, 441, 138, 35], "children": [{"type": "strong", "content": "\u0418\u043d\u0432\u0435\u0441\u0442\u0438\u0446\u0438\u0438", "style": null, "bbox": [48, 441, 89, 17], "children": []}]}]}, {"type": "li", "content": "", "style": null, "bbox": [48, 477, 1224, 36], "children": [{"type": "a", "content": "", "style": null, "bbox": [48, 477, 173, 35], "children": [{"type": "strong", "content": "\u041e\u0431 \u043e\u0431\u043b\u0430\u0441\u0442\u0438", "style": null, "bbox": [48, 477, 81, 17], "children": []}]}]}]}]}, {"type": "table", "content": "", "style": null, "bbox": [8, 529, 1264, 536], "children": [{"type": "tbody", "content": "", "style": null, "bbox": [10, 531, 1260, 532], "children": [{"type": "tr", "content": "", "style": null, "bbox": [10, 531, 1260, 532], "children": [{"type": "td", "content": "", "style": "padding-top:20px;", "bbox": [10, 531, 243, 532], "children": [{"type": "div", "content": "", "style": null, "bbox": [11, 568, 241, 228], "children": [{"type": "div", "content": "", "style": null, "bbox": [11, 568, 241, 18], "children": [{"type": "div", "content": "", "style": null, "bbox": [11, 568, 241, 18], "children": [{"type": "div", "content": "\u041d\u043e\u0432\u043e\u0441\u0442\u0438 \u043f\u043e \u0434\u0430\u0442\u0430\u043c", "style": null, "bbox": [11, 568, 241, 18], "children": []}]}]}, {"type": "div", "content": "", "style": null, "bbox": [11, 586, 241, 170], "children": [{"type": "div", "content": "", "style": null, "bbox": [11, 586, 241, 36], "children": [{"type": "a", "content": "", "style": null, "bbox": [11, 586, 4, 17], "children": []}, {"type": "a", "content": "", "style": null, "bbox": [19, 586, 4, 17], "children": []}, {"type": "div", "content": "\u041d\u043e\u044f\u0431\u0440\u044c, 2023", "style": null, "bbox": [11, 604, 241, 18], "children": []}]}, {"type": "table", "content": "", "style": null, "bbox": [11, 622, 192, 134], "children": [{"type": "thead", "content": "", "style": null, "bbox": [13, 624, 188, 20], "children": [{"type": "tr", "content": "", "style": null, "bbox": [13, 624, 188, 20], "children": [{"type": "th", "content": "\u041f\u043d.", "style": null, "bbox": [13, 624, 27, 20], "children": []}, {"type": "th", "content": "\u0412\u0442.", "style": null, "bbox": [42, 624, 23, 20], "children": []}, {"type": "th", "content": "\u0421\u0440.", "style": null, "bbox": [68, 624, 26, 20], "children": []}, {"type": "th", "content": "\u0427\u0442.", "style": null, "bbox": [96, 624, 24, 20], "children": []}, {"type": "th", "content": "\u041f\u0442.", "style": null, "bbox": [122, 624, 25, 20], "children": []}, {"type": "th", "content": "\u0421\u0431.", "style": null, "bbox": [149, 624, 25, 20], "children": []}, {"type": "th", "content": "\u0412\u0441.", "style": null, "bbox": [177, 624, 23, 20], "children": []}]}]}, {"type": "tbody", "content": "", "style": null, "bbox": [13, 646, 188, 108], "children": [{"type": "tr", "content": "", "style": null, "bbox": [13, 646, 188, 20], "children": [{"type": "td", "content": "", "style": null, "bbox": [13, 646, 27, 20], "children": []}, {"type": "td", "content": "", "style": null, "bbox": [42, 646, 23, 20], "children": []}, {"type": "td", "content": "", "style": null, "bbox": [68, 646, 26, 20], "children": [{"type": "a", "content": "01", "style": null, "bbox": [69, 647, 16, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [96, 646, 24, 20], "children": [{"type": "a", "content": "02", "style": null, "bbox": [97, 647, 16, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [122, 646, 25, 20], "children": [{"type": "a", "content": "03", "style": null, "bbox": [123, 647, 16, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [149, 646, 25, 20], "children": [{"type": "a", "content": "04", "style": null, "bbox": [150, 647, 16, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [177, 646, 23, 20], "children": [{"type": "a", "content": "05", "style": null, "bbox": [178, 647, 16, 17], "children": []}]}]}, {"type": "tr", "content": "", "style": null, "bbox": [13, 668, 188, 20], "children": [{"type": "td", "content": "", "style": null, "bbox": [13, 668, 27, 20], "children": [{"type": "a", "content": "06", "style": null, "bbox": [14, 669, 16, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [42, 668, 23, 20], "children": [{"type": "a", "content": "07", "style": null, "bbox": [43, 669, 16, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [68, 668, 26, 20], "children": [{"type": "a", "content": "08", "style": null, "bbox": [69, 669, 16, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [96, 668, 24, 20], "children": [{"type": "a", "content": "09", "style": null, "bbox": [97, 669, 16, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [122, 668, 25, 20], "children": [{"type": "a", "content": "10", "style": null, "bbox": [123, 669, 16, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [149, 668, 25, 20], "children": [{"type": "a", "content": "11", "style": null, "bbox": [150, 669, 15, 17], "children": []}]}, {"type": "td", "content": "12", "style": null, "bbox": [177, 668, 23, 20], "children": []}]}, {"type": "tr", "content": "", "style": null, "bbox": [13, 690, 188, 20], "children": [{"type": "td", "content": "", "style": null, "bbox": [13, 690, 27, 20], "children": [{"type": "a", "content": "13", "style": null, "bbox": [14, 691, 16, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [42, 690, 23, 20], "children": [{"type": "a", "content": "14", "style": null, "bbox": [43, 691, 16, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [68, 690, 26, 20], "children": [{"type": "a", "content": "15", "style": null, "bbox": [69, 691, 16, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [96, 690, 24, 20], "children": [{"type": "a", "content": "16", "style": null, "bbox": [97, 691, 16, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [122, 690, 25, 20], "children": [{"type": "a", "content": "17", "style": null, "bbox": [123, 691, 16, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [149, 690, 25, 20], "children": [{"type": "a", "content": "18", "style": null, "bbox": [150, 691, 16, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [177, 690, 23, 20], "children": [{"type": "a", "content": "19", "style": null, "bbox": [178, 691, 16, 17], "children": []}]}]}, {"type": "tr", "content": "", "style": null, "bbox": [13, 712, 188, 20], "children": [{"type": "td", "content": "", "style": null, "bbox": [13, 712, 27, 20], "children": [{"type": "a", "content": "20", "style": null, "bbox": [14, 713, 16, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [42, 712, 23, 20], "children": [{"type": "a", "content": "21", "style": null, "bbox": [43, 713, 16, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [68, 712, 26, 20], "children": [{"type": "a", "content": "22", "style": null, "bbox": [69, 713, 16, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [96, 712, 24, 20], "children": [{"type": "a", "content": "23", "style": null, "bbox": [97, 713, 16, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [122, 712, 25, 20], "children": [{"type": "a", "content": "24", "style": null, "bbox": [123, 713, 16, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [149, 712, 25, 20], "children": [{"type": "a", "content": "25", "style": null, "bbox": [150, 713, 16, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [177, 712, 23, 20], "children": [{"type": "a", "content": "26", "style": null, "bbox": [178, 713, 16, 17], "children": []}]}]}, {"type": "tr", "content": "", "style": null, "bbox": [13, 734, 188, 20], "children": [{"type": "td", "content": "", "style": null, "bbox": [13, 734, 27, 20], "children": [{"type": "a", "content": "27", "style": null, "bbox": [14, 735, 16, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [42, 734, 23, 20], "children": [{"type": "a", "content": "28", "style": null, "bbox": [43, 735, 16, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [68, 734, 26, 20], "children": [{"type": "a", "content": "29", "style": null, "bbox": [69, 735, 16, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [96, 734, 24, 20], "children": [{"type": "a", "content": "30", "style": null, "bbox": [97, 735, 16, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [122, 734, 25, 20], "children": []}, {"type": "td", "content": "", "style": null, "bbox": [149, 734, 25, 20], "children": []}, {"type": "td", "content": "", "style": null, "bbox": [177, 734, 23, 20], "children": []}]}]}]}]}, {"type": "div", "content": "", "style": null, "bbox": [11, 756, 241, 40], "children": [{"type": "div", "content": "", "style": null, "bbox": [11, 756, 241, 40], "children": [{"type": "div", "content": "", "style": null, "bbox": [11, 756, 241, 40], "children": [{"type": "div", "content": "", "style": null, "bbox": [11, 756, 241, 40], "children": [{"type": "form", "content": "", "style": null, "bbox": [11, 756, 241, 40], "children": [{"type": "select", "content": "", "style": null, "bbox": [11, 756, 79, 19], "children": [{"type": "option", "content": "\u044f\u043d\u0432\u0430\u0440\u044c", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "\u0444\u0435\u0432\u0440\u0430\u043b\u044c", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "\u043c\u0430\u0440\u0442", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "\u0430\u043f\u0440\u0435\u043b\u044c", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "\u043c\u0430\u0439", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "\u0438\u044e\u043d\u044c", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "\u0438\u044e\u043b\u044c", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "\u0430\u0432\u0433\u0443\u0441\u0442", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044c", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "\u043e\u043a\u0442\u044f\u0431\u0440\u044c", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "\u043d\u043e\u044f\u0431\u0440\u044c", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "\u0434\u0435\u043a\u0430\u0431\u0440\u044c", "style": null, "bbox": [0, 0, 0, 0], "children": []}]}, {"type": "select", "content": "", "style": null, "bbox": [94, 756, 52, 19], "children": [{"type": "option", "content": "2000", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2001", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2002", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2003", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2004", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2005", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2006", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2007", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2008", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2009", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2010", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2011", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2012", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2013", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2014", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2015", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2016", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2017", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2018", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2019", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2020", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2021", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2022", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2023", "style": null, "bbox": [0, 0, 0, 0], "children": []}]}, {"type": "input", "content": "", "style": "", "bbox": [11, 775, 177, 21], "children": []}]}]}]}]}]}]}, {"type": "div", "content": "", "style": null, "bbox": [11, 796, 241, 232], "children": [{"type": "div", "content": "", "style": null, "bbox": [11, 796, 241, 18], "children": [{"type": "div", "content": "", "style": null, "bbox": [11, 796, 241, 18], "children": [{"type": "div", "content": "\u0420\u0443\u0431\u0440\u0438\u043a\u0438 \u043d\u043e\u0432\u043e\u0441\u0442\u0435\u0439", "style": null, "bbox": [11, 796, 241, 18], "children": []}]}]}, {"type": "div", "content": "", "style": null, "bbox": [11, 830, 241, 198], "children": [{"type": "ul", "content": "", "style": null, "bbox": [11, 830, 241, 198], "children": [{"type": "li", "content": "", "style": null, "bbox": [51, 830, 201, 18], "children": [{"type": "a", "content": "\u042d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u044b\u0439 \u043f\u0440\u0435\u0441\u0441-\u0446\u0435\u043d\u0442\u0440", "style": null, "bbox": [51, 830, 179, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [51, 848, 201, 18], "children": [{"type": "a", "content": "\u0412\u0430\u0436\u043d\u043e\u0435", "style": null, "bbox": [51, 848, 52, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [51, 866, 201, 18], "children": [{"type": "a", "content": "\u0413\u0443\u0431\u0435\u0440\u043d\u0430\u0442\u043e\u0440", "style": null, "bbox": [51, 866, 77, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [51, 884, 201, 18], "children": [{"type": "a", "content": "\u041f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e", "style": null, "bbox": [51, 884, 101, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [51, 902, 201, 18], "children": [{"type": "a", "content": "\u041d\u043e\u0432\u043e\u0441\u0442\u0438 \u0440\u0435\u0433\u0438\u043e\u043d\u0430", "style": null, "bbox": [51, 902, 115, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [51, 920, 201, 18], "children": [{"type": "a", "content": "\u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u044f \u0434\u043b\u044f \u0421\u041c\u0418", "style": null, "bbox": [51, 920, 160, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [51, 938, 201, 18], "children": [{"type": "a", "content": "\u041f\u0430\u043c\u044f\u0442\u043d\u044b\u0435 \u0434\u0430\u0442\u044b", "style": null, "bbox": [51, 938, 106, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [51, 956, 201, 18], "children": [{"type": "a", "content": "\u0413\u043e\u0440\u044f\u0447\u0438\u0435 \u043b\u0438\u043d\u0438\u0438", "style": null, "bbox": [51, 956, 101, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [51, 974, 201, 18], "children": [{"type": "a", "content": "\u041e\u0431\u0440\u0430\u0449\u0435\u043d\u0438\u044f", "style": null, "bbox": [51, 974, 78, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [51, 992, 201, 18], "children": [{"type": "a", "content": "\u041e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0439 \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0439", "style": null, "bbox": [51, 992, 192, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [51, 1010, 201, 18], "children": [{"type": "a", "content": "\u0410\u0440\u0445\u0438\u0432 \u043d\u043e\u0432\u043e\u0441\u0442\u0435\u0439", "style": null, "bbox": [51, 1010, 109, 17], "children": []}]}]}]}]}]}, {"type": "td", "content": "", "style": null, "bbox": [255, 531, 1014, 532], "children": [{"type": "div", "content": "", "style": null, "bbox": [256, 532, 1012, 508], "children": [{"type": "div", "content": "", "style": null, "bbox": [256, 532, 1012, 18], "children": [{"type": "a", "content": "\u0413\u043b\u0430\u0432\u043d\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430", "style": null, "bbox": [256, 532, 119, 17], "children": []}, {"type": "a", "content": "\u041d\u043e\u0432\u043e\u0441\u0442\u0438", "style": null, "bbox": [388, 532, 58, 17], "children": []}, {"type": "a", "content": "\u041d\u043e\u0432\u043e\u0441\u0442\u0438 \u0440\u0435\u0433\u0438\u043e\u043d\u0430", "style": null, "bbox": [459, 532, 115, 17], "children": []}]}, {"type": "h1", "content": "\u0423\u043b\u044c\u044f\u043d\u043e\u0432\u0441\u043a\u0438\u0435 \u0445\u043e\u043a\u043a\u0435\u0438\u0441\u0442\u044b \u0432\u043e\u0448\u043b\u0438 \u0432 \u043f\u044f\u0442\u0451\u0440\u043a\u0443 \u0441\u0438\u043b\u044c\u043d\u0435\u0439\u0448\u0438\u0445 \u0432 \u0444\u0438\u043d\u0430\u043b\u044c\u043d\u044b\u0445 \u0441\u043e\u0441\u0442\u044f\u0437\u0430\u043d\u0438\u044f\u0445 \u043e\u043a\u0440\u0443\u0436\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u00ab\u0417\u043e\u043b\u043e\u0442\u0430\u044f \u0448\u0430\u0439\u0431\u0430\u00bb", "style": null, "bbox": [256, 571, 1012, 74], "children": []}, {"type": "div", "content": "", "style": null, "bbox": [256, 666, 1012, 18], "children": [{"type": "span", "content": "2 \u043c\u0430\u0440\u0442\u0430 2023 \u0433\u043e\u0434\u0430, 10:02", "style": null, "bbox": [256, 666, 164, 17], "children": []}, {"type": "span", "content": "", "style": null, "bbox": [425, 666, 122, 17], "children": [{"type": "a", "content": "\u0432\u0435\u0440\u0441\u0438\u044f\n\u0434\u043b\u044f \u043f\u0435\u0447\u0430\u0442\u0438", "style": null, "bbox": [425, 666, 122, 17], "children": []}]}, {"type": "span", "content": "", "style": null, "bbox": [551, 666, 129, 17], "children": [{"type": "a", "content": "\u043f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u0430\u044f\n\u0441\u0441\u044b\u043b\u043a\u0430", "style": null, "bbox": [551, 666, 129, 17], "children": []}]}]}, {"type": "h2", "content": "\u0412 \u0411\u0430\u0448\u043a\u043e\u0440\u0442\u043e\u0441\u0442\u0430\u043d\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u043b\u0438\u0441\u044c \u0412\u0441\u0435\u0440\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0438\u0435 \u0444\u0438\u043d\u0430\u043b\u044c\u043d\u044b\u0435 \u0441\u043e\u0440\u0435\u0432\u043d\u043e\u0432\u0430\u043d\u0438\u044f \u044e\u043d\u044b\u0445 \u0445\u043e\u043a\u043a\u0435\u0438\u0441\u0442\u043e\u0432 \u0432 \u0434\u0438\u0432\u0438\u0437\u0438\u043e\u043d\u0435 \u00ab\u0412\u043e\u043b\u0436\u0441\u043a\u0438\u0439\u00bb \u0441\u0440\u0435\u0434\u0438 \u043a\u043e\u043c\u0430\u043d\u0434 \u044e\u043d\u043e\u0448\u0435\u0439 2008-2009 \u0433\u043e\u0434\u043e\u0432 \u0440\u043e\u0436\u0434\u0435\u043d\u0438\u044f.", "style": null, "bbox": [256, 704, 1012, 54], "children": []}, {"type": "div", "content": "", "style": null, "bbox": [256, 778, 1012, 158], "children": [{"type": "p", "content": "\u0423\u043b\u044c\u044f\u043d\u043e\u0432\u0441\u043a\u0443\u044e \u043e\u0431\u043b\u0430\u0441\u0442\u044c \u043d\u0430 \u00ab\u0417\u043e\u043b\u043e\u0442\u043e\u0439 \u0448\u0430\u0439\u0431\u0435\u00bb \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u044f\u043b\u0430 \u043a\u043e\u043c\u0430\u043d\u0434\u0430 \u00ab\u041b\u0438\u0434\u0435\u0440-2008\u00bb. \u0421\u043f\u043e\u0440\u0442\u0441\u043c\u0435\u043d\u044b \u043f\u043e\u0434 \u0440\u0443\u043a\u043e\u0432\u043e\u0434\u0441\u0442\u0432\u043e\u043c \u0442\u0440\u0435\u043d\u0435\u0440\u043e\u0432 \u0410\u043b\u0435\u043a\u0441\u0430\u043d\u0434\u0440\u0430 \u0421\u0435\u0440\u0434\u044e\u043a\u043e\u0432\u0430 \u0438 \u041f\u0430\u0432\u043b\u0430 \u0411\u043e\u0447\u043a\u0430\u0440\u0435\u0432\u0430 \u0437\u0430\u043d\u044f\u043b\u0438 \u043f\u044f\u0442\u043e\u0435 \u043c\u0435\u0441\u0442\u043e.", "style": null, "bbox": [256, 778, 1012, 36], "children": []}, {"type": "p", "content": "\u00ab\u0412\u043e\u0441\u043f\u0438\u0442\u0430\u043d\u043d\u0438\u043a\u0438 \u0441\u043f\u043e\u0440\u0442\u0438\u0432\u043d\u043e\u0439 \u0448\u043a\u043e\u043b\u044b \u00ab\u041b\u0438\u0434\u0435\u0440\u00bb \u043f\u0440\u043e\u0434\u0435\u043c\u043e\u043d\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043b\u0438 \u043b\u0443\u0447\u0448\u0438\u0439 \u0438 \u043f\u043e\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442 \u043d\u0430\u0448\u0435\u0439 \u0448\u043a\u043e\u043b\u044b \u0437\u0430 \u0432\u0441\u0435 \u0433\u043e\u0434\u044b \u0443\u0447\u0430\u0441\u0442\u0438\u044f \u0432 \u0434\u0430\u043d\u043d\u044b\u0445 \u0441\u043e\u0440\u0435\u0432\u043d\u043e\u0432\u0430\u043d\u0438\u044f\u0445. \u0420\u0435\u0431\u044f\u0442\u0430 \u0431\u0438\u043b\u0438\u0441\u044c \u043d\u0430 \u0432\u0441\u0435 100%, \u043f\u043e\u043a\u0430\u0437\u0430\u043b\u0438 \u043a\u0440\u0430\u0441\u0438\u0432\u0443\u044e \u0438\u0433\u0440\u0443 \u0432 \u0445\u043e\u043a\u043a\u0435\u0439 \u0438 \u043a\u043e\u043c\u0430\u043d\u0434\u043d\u0443\u044e \u0441\u043f\u043b\u043e\u0447\u0451\u043d\u043d\u043e\u0441\u0442\u044c\u00bb, - \u043e\u0442\u043c\u0435\u0442\u0438\u043b \u0440\u0443\u043a\u043e\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c \u0440\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0439 \u0444\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u0438 \u0445\u043e\u043a\u043a\u0435\u044f \u0415\u0432\u0433\u0435\u043d\u0438\u0439 \u0414\u0430\u0432\u044b\u0434\u0435\u043d\u043a\u043e.", "style": null, "bbox": [256, 830, 1012, 54], "children": []}, {"type": "p", "content": "\u041d\u0430\u043f\u043e\u043c\u043d\u0438\u043c, \u0445\u043e\u043a\u043a\u0435\u0439\u043d\u044b\u0439 \u0442\u0443\u0440\u043d\u0438\u0440 \u00ab\u0417\u043e\u043b\u043e\u0442\u0430\u044f \u0448\u0430\u0439\u0431\u0430\u00bb \u043f\u0440\u043e\u0432\u043e\u0434\u0438\u0442\u0441\u044f \u043f\u043e\u0434 \u043f\u0430\u0442\u0440\u043e\u043d\u0430\u0442\u043e\u043c \u043f\u043e\u043b\u043d\u043e\u043c\u043e\u0447\u043d\u043e\u0433\u043e \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u044f \u041f\u0440\u0435\u0437\u0438\u0434\u0435\u043d\u0442\u0430 \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u043e\u0439 \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u0438 \u0432 \u041f\u0424\u041e \u0418\u0433\u043e\u0440\u044f \u041a\u043e\u043c\u0430\u0440\u043e\u0432\u0430. \u0421\u043e\u0441\u0442\u044f\u0437\u0430\u043d\u0438\u044f, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0445\u043e\u0434\u044f\u0442 \u0435\u0436\u0435\u0433\u043e\u0434\u043d\u043e, \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u044b \u043d\u0430 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 \u043c\u0430\u0441\u0441\u043e\u0432\u043e\u0433\u043e \u0434\u0435\u0442\u0441\u043a\u043e\u0433\u043e \u0438 \u044e\u043d\u043e\u0448\u0435\u0441\u043a\u043e\u0433\u043e \u0445\u043e\u043a\u043a\u0435\u044f.", "style": null, "bbox": [256, 900, 1012, 36], "children": []}]}, {"type": "div", "content": "", "style": null, "bbox": [256, 952, 1012, 18], "children": [{"type": "p", "content": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043e: 2 \u043c\u0430\u0440\u0442\u0430 2023 \u0433\u043e\u0434\u0430, 10:03", "style": null, "bbox": [256, 952, 1012, 18], "children": []}]}, {"type": "p", "content": "", "style": null, "bbox": [256, 986, 1012, 54], "children": [{"type": "strong", "content": "", "style": null, "bbox": [256, 986, 188, 17], "children": [{"type": "a", "content": "\u041f\u043e\u0434\u043f\u0438\u0441\u0430\u0442\u044c\u0441\u044f \u043d\u0430 \u0440\u0430\u0441\u0441\u044b\u043b\u043a\u0443", "style": null, "bbox": [256, 986, 188, 17], "children": []}]}]}]}, {"type": "table", "content": "", "style": null, "bbox": [256, 1056, 121, 6], "children": [{"type": "tbody", "content": "", "style": null, "bbox": [258, 1058, 117, 2], "children": [{"type": "tr", "content": "", "style": null, "bbox": [258, 1058, 117, 2], "children": [{"type": "td", "content": "", "style": "width:115px;", "bbox": [258, 1058, 117, 2], "children": []}]}]}]}]}]}]}]}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 1065, 1264, 644], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 1065, 1264, 182], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 1065, 1264, 182], "children": [{"type": "table", "content": "", "style": null, "bbox": [8, 1065, 1264, 182], "children": [{"type": "tbody", "content": "", "style": null, "bbox": [10, 1067, 1260, 178], "children": [{"type": "tr", "content": "", "style": null, "bbox": [10, 1067, 1260, 178], "children": [{"type": "td", "content": "", "style": null, "bbox": [10, 1067, 237, 178], "children": [{"type": "ul", "content": "", "style": null, "bbox": [11, 1084, 235, 144], "children": [{"type": "li", "content": "", "style": null, "bbox": [51, 1084, 195, 18], "children": [{"type": "a", "content": "\u041e\u043d\u043b\u0430\u0439\u043d\u0438\u043d\u0441\u043f\u0435\u043a\u0446\u0438\u044f.\u0440\u0444", "style": null, "bbox": [51, 1084, 146, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [51, 1102, 195, 18], "children": [{"type": "a", "content": "\u0411\u044e\u0434\u0436\u0435\u0442", "style": null, "bbox": [51, 1102, 53, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [51, 1120, 195, 18], "children": [{"type": "a", "content": "\u042d\u043a\u043e\u043d\u043e\u043c\u0438\u043a\u0430", "style": null, "bbox": [51, 1120, 75, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [51, 1138, 195, 18], "children": [{"type": "a", "content": "\u0417\u0430\u043a\u043e\u043d\u043e\u0434\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e", "style": null, "bbox": [51, 1138, 119, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [51, 1156, 195, 36], "children": [{"type": "a", "content": "\u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u0438\u0432\u043d\u044b\u0435 \u0440\u0435\u0433\u043b\u0430\u043c\u0435\u043d\u0442\u044b", "style": null, "bbox": [51, 1156, 134, 35], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [51, 1192, 195, 18], "children": [{"type": "a", "content": "\u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u0438\u0432\u043d\u0430\u044f \u0440\u0435\u0444\u043e\u0440\u043c\u0430", "style": null, "bbox": [51, 1192, 193, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [51, 1210, 195, 18], "children": [{"type": "a", "content": "\u042d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u044b\u0439 \u043f\u0440\u0435\u0441\u0441-\u0446\u0435\u043d\u0442\u0440", "style": null, "bbox": [51, 1210, 179, 17], "children": []}]}]}]}, {"type": "td", "content": "", "style": null, "bbox": [249, 1067, 665, 178], "children": [{"type": "ul", "content": "", "style": null, "bbox": [250, 1093, 663, 126], "children": [{"type": "li", "content": "", "style": null, "bbox": [290, 1093, 623, 18], "children": [{"type": "a", "content": "\u0420\u0435\u0433\u0438\u0441\u0442\u0440 \u041c\u041d\u041f\u0410.\u041c\u043e\u043d\u0438\u0442\u043e\u0440\u0438\u043d\u0433 \u043f\u0440\u0430\u0432\u043e\u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "style": null, "bbox": [290, 1093, 321, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [290, 1111, 623, 18], "children": [{"type": "a", "content": "\u041a\u043e\u043c\u0438\u0441\u0441\u0438\u044f \u043f\u043e \u0434\u0435\u043b\u0430\u043c \u043d\u0435\u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u043e\u043b\u0435\u0442\u043d\u0438\u0445", "style": null, "bbox": [290, 1111, 280, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [290, 1129, 623, 18], "children": [{"type": "a", "content": "\u041f\u0440\u043e\u0442\u0438\u0432\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043a\u043e\u0440\u0440\u0443\u043f\u0446\u0438\u0438", "style": null, "bbox": [290, 1129, 196, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [290, 1147, 623, 18], "children": [{"type": "a", "content": "\u041b\u0438\u0447\u043d\u044b\u0439 \u043a\u0430\u0431\u0438\u043d\u0435\u0442 \u043e\u0431\u0440\u0430\u0449\u0435\u043d\u0438\u044f \u0433\u0440\u0430\u0436\u0434\u0430\u043d \u0432 \u043f\u0440\u0438\u0435\u043c\u043d\u0443\u044e \u0433\u0443\u0431\u0435\u0440\u043d\u0430\u0442\u043e\u0440\u0430", "style": null, "bbox": [290, 1147, 425, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [290, 1165, 623, 18], "children": [{"type": "a", "content": "\u0417\u0430\u043a\u043e\u043d\u043e\u0434\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0441\u043e\u0431\u0440\u0430\u043d\u0438\u0435 \u0423\u043b\u044c\u044f\u043d\u043e\u0432\u0441\u043a\u043e\u0439 \u043e\u0431\u043b\u0430\u0441\u0442\u0438", "style": null, "bbox": [290, 1165, 329, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [290, 1183, 623, 36], "children": [{"type": "a", "content": "\u041e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u0430\u0439\u0442 \u043f\u043e\u043b\u043d\u043e\u043c\u043e\u0447\u043d\u043e\u0433\u043e \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u044f \u041f\u0440\u0435\u0437\u0438\u0434\u0435\u043d\u0442\u0430 \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u043e\u0439 \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u0438 \u0432 \u041f\u0440\u0438\u0432\u043e\u043b\u0436\u0441\u043a\u043e\u043c \u0444\u0435\u0434\u0435\u0440\u0430\u043b\u044c\u043d\u043e\u043c \u043e\u043a\u0440\u0443\u0433\u0435", "style": null, "bbox": [290, 1183, 593, 35], "children": []}]}]}]}, {"type": "td", "content": "", "style": null, "bbox": [917, 1067, 352, 178], "children": [{"type": "ul", "content": "", "style": null, "bbox": [918, 1093, 350, 126], "children": [{"type": "li", "content": "", "style": null, "bbox": [958, 1093, 310, 18], "children": [{"type": "a", "content": "\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e \u043a\u0443\u043b\u044c\u0442\u0443\u0440\u043d\u044b\u0445 \u043c\u0435\u0440\u043e\u043f\u0440\u0438\u044f\u0442\u0438\u044f\u0445", "style": null, "bbox": [958, 1093, 284, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [958, 1111, 310, 18], "children": [{"type": "a", "content": "\u041d\u0430\u0433\u0440\u0430\u0434\u043d\u0430\u044f \u0434\u0435\u044f\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c", "style": null, "bbox": [958, 1111, 165, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [958, 1129, 310, 18], "children": [{"type": "a", "content": "\u0420\u0430\u0431\u043e\u0442\u0430 \u0432 \u0420\u043e\u0441\u0441\u0438\u0438", "style": null, "bbox": [958, 1129, 110, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [958, 1147, 310, 18], "children": [{"type": "a", "content": "\u042f\u0434\u0435\u0440\u043d\u043e-\u0438\u043d\u043d\u043e\u0432\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0439 \u043a\u043b\u0430\u0441\u0442\u0435\u0440", "style": null, "bbox": [958, 1147, 221, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [958, 1165, 310, 36], "children": [{"type": "a", "content": "\u0413\u043b\u0430\u0432\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u041c\u0427\u0421 \u0420\u043e\u0441\u0441\u0438\u0438 \u043f\u043e \u0423\u043b\u044c\u044f\u043d\u043e\u0432\u0441\u043a\u043e\u0439 \u043e\u0431\u043b\u0430\u0441\u0442\u0438", "style": null, "bbox": [958, 1165, 248, 35], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [958, 1201, 310, 18], "children": [{"type": "a", "content": "\u0413\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u0430\u044f \u043d\u0430\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u0430\u044f \u043f\u043e\u043b\u0438\u0442\u0438\u043a\u0430", "style": null, "bbox": [958, 1201, 279, 17], "children": []}]}]}]}]}]}]}]}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 1247, 1264, 462], "children": [{"type": "table", "content": "", "style": null, "bbox": [8, 1247, 1264, 284], "children": [{"type": "tbody", "content": "", "style": null, "bbox": [10, 1249, 1260, 280], "children": [{"type": "tr", "content": "", "style": null, "bbox": [10, 1249, 1260, 280], "children": [{"type": "td", "content": "", "style": null, "bbox": [10, 1249, 893, 280], "children": [{"type": "p", "content": "", "style": null, "bbox": [11, 1276, 891, 18], "children": [{"type": "a", "content": "\u0413\u043b\u0430\u0432\u043d\u0430\u044f", "style": null, "bbox": [11, 1276, 53, 17], "children": []}, {"type": "a", "content": "\u041d\u043e\u0432\u043e\u0441\u0442\u0438", "style": null, "bbox": [75, 1276, 58, 17], "children": []}, {"type": "a", "content": "\u041a\u043e\u043d\u0442\u0430\u043a\u0442\u044b", "style": null, "bbox": [145, 1276, 66, 17], "children": []}, {"type": "a", "content": "\u041a\u0430\u0440\u0442\u0430 \u0441\u0430\u0439\u0442\u0430", "style": null, "bbox": [222, 1276, 80, 17], "children": []}, {"type": "a", "content": "\u041f\u043e\u0438\u0441\u043a", "style": null, "bbox": [314, 1276, 43, 17], "children": []}, {"type": "a", "content": "\u0421\u0441\u044b\u043b\u043a\u0438", "style": null, "bbox": [368, 1276, 53, 17], "children": []}, {"type": "a", "content": "RSS", "style": null, "bbox": [432, 1276, 28, 17], "children": []}]}, {"type": "p", "content": "", "style": null, "bbox": [11, 1310, 891, 18], "children": [{"type": "a", "content": "\u0417\u0430\u043a\u043e\u043d\u043e\u0434\u0430\u0442\u0435\u043b\u044c\u043d\u0430\u044f \u043a\u0430\u0440\u0442\u0430 \u043f\u043e\n\t\t\t\t\u0424\u0417 \u2116 8", "style": null, "bbox": [11, 1310, 230, 17], "children": []}]}, {"type": "p", "content": "", "style": null, "bbox": [11, 1344, 891, 18], "children": [{"type": "a", "content": "\u0418\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f \u043f\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044e \u0441\u0430\u0439\u0442\u0430 \u0434\u043b\u044f \u043b\u044e\u0434\u0435\u0439 \u0441 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u043d\u044b\u043c\u0438 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044f\u043c\u0438 \u0437\u0434\u043e\u0440\u043e\u0432\u044c\u044f", "style": null, "bbox": [11, 1344, 611, 17], "children": []}]}, {"type": "p", "content": "\u041e\u0431\u0440\u0430\u0449\u0435\u043d\u0438\u044f \u0432 \u0444\u043e\u0440\u043c\u0435 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0433\u043e \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430, \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u0413\u0443\u0431\u0435\u0440\u043d\u0430\u0442\u043e\u0440\u0443 \u0438 \u0432 \u041f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e \u0423\u043b\u044c\u044f\u043d\u043e\u0432\u0441\u043a\u043e\u0439 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u0431\u0435\u0437 \u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0444\u043e\u0440\u043c\u044b \u0432 \u0440\u0430\u0437\u0434\u0435\u043b\u0435 \u00ab\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043e\u0431\u0440\u0430\u0449\u0435\u043d\u0438\u0435 \u0432 \u0444\u043e\u0440\u043c\u0435 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0433\u043e \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0413\u0443\u0431\u0435\u0440\u043d\u0430\u0442\u043e\u0440\u0443 \u0423\u043b\u044c\u044f\u043d\u043e\u0432\u0441\u043a\u043e\u0439 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u0438 \u0432 \u041f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e \u0423\u043b\u044c\u044f\u043d\u043e\u0432\u0441\u043a\u043e\u0439 \u043e\u0431\u043b\u0430\u0441\u0442\u0438\u00bb \u043e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0441\u0430\u0439\u0442\u0430, \u043f\u043e \u0430\u0434\u0440\u0435\u0441\u0443 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b \u0413\u0443\u0431\u0435\u0440\u043d\u0430\u0442\u043e\u0440\u0430 \u0438 \u041f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0430 \u0423\u043b\u044c\u044f\u043d\u043e\u0432\u0441\u043a\u043e\u0439 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u0438 (\u0438\u043b\u0438) \u043c\u0438\u043d\u0443\u044f \u043b\u0438\u0447\u043d\u044b\u0439 \u043a\u0430\u0431\u0438\u043d\u0435\u0442, \u043a \u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u0438\u044e \u043d\u0435 \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u044e\u0442\u0441\u044f.", "style": null, "bbox": [11, 1378, 891, 72], "children": []}, {"type": "p", "content": "", "style": null, "bbox": [11, 1466, 891, 36], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [905, 1249, 132, 280], "children": [{"type": "p", "content": "", "style": null, "bbox": [906, 1266, 130, 18], "children": [{"type": "strong", "content": "", "style": null, "bbox": [906, 1266, 78, 17], "children": [{"type": "a", "content": "\u041a\u043e\u043d\u0442\u0430\u043a\u0442\u044b:", "style": null, "bbox": [906, 1266, 78, 17], "children": []}]}]}, {"type": "p", "content": "432017 \u0433. \u0423\u043b\u044c\u044f\u043d\u043e\u0432\u0441\u043a \u043f\u043b. \u0421\u043e\u0431\u043e\u0440\u043d\u0430\u044f, \u0434.1", "style": null, "bbox": [906, 1300, 130, 54], "children": []}, {"type": "p", "content": "", "style": null, "bbox": [906, 1370, 130, 72], "children": []}, {"type": "p", "content": "", "style": null, "bbox": [906, 1458, 130, 54], "children": [{"type": "a", "content": "\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043e\u0431\u0440\u0430\u0449\u0435\u043d\u0438\u0435 \u0413\u0443\u0431\u0435\u0440\u043d\u0430\u0442\u043e\u0440\u0443", "style": null, "bbox": [906, 1458, 85, 53], "children": []}]}]}, {"type": "td", "content": "", "style": null, "bbox": [1040, 1249, 127, 280], "children": [{"type": "p", "content": "", "style": null, "bbox": [1041, 1276, 125, 18], "children": [{"type": "strong", "content": "", "style": null, "bbox": [1041, 1276, 55, 17], "children": [{"type": "a", "content": "\u041e \u0441\u0430\u0439\u0442\u0435", "style": null, "bbox": [1041, 1276, 55, 17], "children": []}]}]}, {"type": "p", "content": "", "style": null, "bbox": [1041, 1310, 125, 18], "children": []}, {"type": "p", "content": "", "style": null, "bbox": [1041, 1344, 125, 54], "children": [{"type": "a", "content": "\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430 \u0438 \u043f\u0440\u043e\u0434\u0432\u0438\u0436\u0435\u043d\u0438\u0435 \u0441\u0430\u0439\u0442\u0430", "style": null, "bbox": [1041, 1344, 90, 53], "children": []}]}, {"type": "p", "content": "\u041d\u0430\u0448\u043b\u0438 \u043e\u043f\u0435\u0447\u0430\u0442\u043a\u0443? Ctrl + Enter", "style": null, "bbox": [1041, 1414, 125, 36], "children": []}, {"type": "p", "content": "", "style": null, "bbox": [1041, 1466, 125, 36], "children": [{"type": "a", "content": "\u041e\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0441\u0432\u043e\u0435 \u043c\u043d\u0435\u043d\u0438\u0435 \u043e \u0441\u0430\u0439\u0442\u0435", "style": null, "bbox": [1041, 1466, 103, 35], "children": []}]}]}, {"type": "td", "content": "", "style": null, "bbox": [1169, 1249, 100, 280], "children": [{"type": "img", "content": "", "style": "border: 6px solid white; margin-left:10px;", "bbox": [1180, 1356, 12, 12], "children": []}, {"type": "a", "content": "", "style": "margin-left:10px;", "bbox": [1180, 1407, 88, 17], "children": [{"type": "img", "content": "", "style": "width:88px; height:31px; border:0;", "bbox": [1180, 1390, 88, 31], "children": []}]}]}]}]}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 1547, 1264, 162], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 1547, 1264, 162], "children": [{"type": "button", "content": "", "style": null, "bbox": [8, 1558, 16, 6], "children": []}, {"type": "form", "content": "", "style": null, "bbox": [8, 1586, 1264, 123], "children": [{"type": "h4", "content": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u044d\u0442\u0443 \u043e\u0448\u0438\u0431\u043a\u0443?", "style": null, "bbox": [8, 1586, 1264, 18], "children": []}, {"type": "p", "content": "", "style": "display: block;text-align: center;color:#ffffff;padding:5px;", "bbox": [8, 1626, 1264, 10], "children": []}, {"type": "input", "content": "", "style": "", "bbox": [8, 1652, 177, 21], "children": []}, {"type": "input", "content": "", "style": "", "bbox": [189, 1652, 177, 21], "children": []}, {"type": "input", "content": "", "style": "", "bbox": [370, 1652, 177, 21], "children": []}, {"type": "input", "content": "", "style": "", "bbox": [551, 1652, 177, 21], "children": []}, {"type": "p", "content": "", "style": null, "bbox": [8, 1689, 1264, 21], "children": [{"type": "input", "content": "", "style": "", "bbox": [8, 1689, 177, 21], "children": []}]}]}]}]}]}]}]}]}
<!DOCTYPE html> <!DOCTYPE html> <html><head><title>Ульяновские хоккеисты вошли в пятёрку сильнейших в финальных состязаниях окружного проекта «Золотая шайба» / Ульяновская область : Губернатор и Правительство / Сообщения пресс-службы</title><noscript><div><img src="https://mc.yandex.ru/watch/57523894" style="position:absolute; left:-9999px;"/></div></noscript></head><body><div id="bgPage"><div class="centered"><div id="header"><div id="headerUtils"><div class="topIcos"><a class="home"> </a><a class="feedback"> </a><a class="map"> </a></div><div class="mobile-version"><a class="pda">мобильная версия</a></div><div class="visual-version"><a class="eye">версия для слабовидящих</a></div></div><a id="logoHead"> </a><div class="titles"><div class="head1">Губернатор и Правительство</div><div class="head2">УЛЬЯНОВСКОЙ ОБЛАСТИ</div><strong>Официальный сайт</strong><span class="group-icons"><a><img src="/pub/images/vk-znak-group-blue.png" width="15px"/></a><a><img src="/pub/images/ok-znak-group-orange.png" width="15px"/></a></span></div><div class="utils"><form id="searcher"><input class="texter placeholder"/><input class="hiddencheck" style="opacity:0; position:absolute; left:-9999px;"/><input class="submitter"/></form><div id="social-buttons"><a><img src="/pub/images/vk-znak-group-blue.png"/></a><a><img src="/pub/images/buttons/social-201404/rutube.png"/></a><a><img src="/pub/images/buttons/social-201404/open-data.png"/></a><a><img src="/pub/images/ok-znak-group-orange.png" width="16"/></a></div></div></div><div id="mainMenu"><ul><li class="first"><a><strong>Главная</strong> Стартовая <br/>страница </a></li><li><a><strong>Губернатор</strong> Биография <br/>и полномочия </a></li><li><a><strong>Правительство</strong> Органы власти </a></li><li><a><strong>Обращения граждан</strong> Приёмная Губернатора и <br/>Правительства </a></li><li class="last"><a><strong>Контакты</strong> Телефоны, <br/>адреса и e-mail </a></li><li><a><strong>Объявления и вакансии</strong> Документы и работа <br/>в Правительстве </a></li><li><a><strong>Открытые данные</strong> Данные из<br/> информационных<br/> систем </a></li><li><a><strong>Инвестиции</strong> Раздел <br/>для инвесторов </a></li><li><a><strong>Об области</strong> Информация <br/>о регионе </a></li></ul></div> <table class="lyo" id="carcas"><tbody><tr><td class="lyo extra" style="padding-top:20px;"><div id="calWrap"><div class="blockTitle"><div class="left"><div class="right">Новости по датам</div></div></div><div class="blueBox"><div class="calTtl"><a id="calPrev"> </a><a id="calNext"> </a><div id="calCurMonth">Ноябрь, 2023</div></div><table id="calTable"><thead id="calWeekdays"><tr><th>Пн.</th><th>Вт.</th><th>Ср.</th><th>Чт.</th><th>Пт.</th><th>Сб.</th><th>Вс.</th></tr></thead><tbody id="calTbody"><tr><td> </td><td> </td><td><a>01</a></td><td><a>02</a></td><td><a>03</a></td><td><a>04</a></td><td><a>05</a></td></tr><tr><td><a>06</a></td><td><a>07</a></td><td><a>08</a></td><td><a>09</a></td><td><a>10</a></td><td><a>11</a></td><td>12</td></tr><tr><td><a>13</a></td><td><a>14</a></td><td><a>15</a></td><td><a>16</a></td><td><a>17</a></td><td><a>18</a></td><td><a>19</a></td></tr><tr><td><a>20</a></td><td><a>21</a></td><td><a>22</a></td><td><a>23</a></td><td><a>24</a></td><td><a>25</a></td><td><a>26</a></td></tr><tr><td><a>27</a></td><td><a>28</a></td><td><a>29</a></td><td class="today"><a>30</a></td><td> </td><td> </td><td> </td></tr></tbody></table></div><div id="calChoose"><div class="blueBox"><div class="br"><div class="bl"><form id="calMonthYearChanger"><select class="texter" id="calMYC_month"><option>январь</option><option>февраль</option><option>март</option><option>апрель</option><option>май</option><option>июнь</option><option>июль</option><option>август</option><option>сентябрь</option><option>октябрь</option><option>ноябрь</option><option>декабрь</option></select><select class="texter" id="calMYC_year"><option>2000</option><option>2001</option><option>2002</option><option>2003</option><option>2004</option><option>2005</option><option>2006</option><option>2007</option><option>2008</option><option>2009</option><option>2010</option><option>2011</option><option>2012</option><option>2013</option><option>2014</option><option>2015</option><option>2016</option><option>2017</option><option>2018</option><option>2019</option><option>2020</option><option>2021</option><option>2022</option><option>2023</option> </select><input class="submitter"/></form></div></div></div></div></div><div id="topicsListWrap"><div class="blockTitle"><div class="left"><div class="right"> Рубрики новостей </div></div></div><div class="inner"><ul class="bottomDotted"><li><a>Электронный пресс-центр</a></li><li><a>Важное</a></li><li><a>Губернатор</a></li><li><a>Правительство</a></li><li><a>Новости региона</a></li><li><a>Приглашения для СМИ</a></li><li><a>Памятные даты</a></li><li><a>Горячие линии</a></li><li><a>Обращения</a></li><li><a>Официальный комментарий</a></li><li class="last"><a>Архив новостей</a></li></ul></div></div></td><td class="lyo main"><div id="content"><div id="parentsPath"><a>Главная страница</a> / <a>Новости</a> / <a>Новости региона</a></div><h1>Ульяновские хоккеисты вошли в пятёрку сильнейших в финальных состязаниях окружного проекта «Золотая шайба»</h1><div class="pageExtras"><span class="date">2 марта 2023 года, 10:02</span> <span class="print"><a>версия для печати</a></span> <span class="plink"><a>постоянная ссылка</a></span> </div><h2>В Башкортостане завершились Всероссийские финальные соревнования юных хоккеистов в дивизионе «Волжский» среди команд юношей 2008-2009 годов рождения.</h2><div class="typography"><p>Ульяновскую область на «Золотой шайбе» представляла команда «Лидер-2008». Спортсмены под руководством тренеров Александра Сердюкова и Павла Бочкарева заняли пятое место.</p><p>«Воспитанники спортивной школы «Лидер» продемонстрировали лучший и показательный результат нашей школы за все годы участия в данных соревнованиях. Ребята бились на все 100%, показали красивую игру в хоккей и командную сплочённость», - отметил руководитель региональной федерации хоккея Евгений Давыденко.</p><p>Напомним, хоккейный турнир «Золотая шайба» проводится под патронатом полномочного представителя Президента Российской Федерации в ПФО Игоря Комарова. Состязания, которые проходят ежегодно, направлены на поддержку массового детского и юношеского хоккея.</p></div><div class="logDates"><p class="added">Добавлено: 2 марта 2023 года, 10:03</p></div><p class="subscribe"><strong><a>Подписаться на рассылку</a></strong><br/><br/><br/></p></div><table><tbody><tr><td style="width:115px;"></td></tr></tbody></table></td></tr></tbody></table></div><div id="footer"><div id="bottomMenu"><div class="centered"><table><tbody><tr><td class="lyo one-third first"><ul class="link-tape"><li class="first"><a>Онлайнинспекция.рф</a></li><li><a>Бюджет</a></li><li><a>Экономика</a></li><li><a>Законодательство</a></li><li><a>Административные регламенты</a></li><li><a>Административная реформа</a></li><li class="last"><a>Электронный пресс-центр</a></li></ul></td><td class="lyo one-third"><ul class="link-tape"><li class="first"><a>Регистр МНПА.Мониторинг правоприменения</a></li><li><a>Комиссия по делам несовершеннолетних</a></li><li><a>Противодействие коррупции</a></li><li><a>Личный кабинет обращения граждан в приемную губернатора</a></li><li><a>Законодательное собрание Ульяновской области</a></li><li class="last"><a>Официальный сайт полномочного представителя Президента Российской Федерации в Приволжском федеральном округе</a></li></ul></td><td class="lyo one-third last"><ul class="link-tape"><li class="first"><a>Информация о культурных мероприятиях</a></li><li><a>Наградная деятельность</a></li><li><a>Работа в России </a></li><li><a>Ядерно-инновационный кластер</a></li><li><a>Главное управление МЧС России по Ульяновской области</a></li><li class="last"><a>Государственная национальная политика</a></li></ul></td></tr></tbody></table> </div></div><div class="centered"><table class="lyo" id="footerInner"><tbody><tr><td class="lyo footmenu"><p class="menu"><a>Главная</a> | <a>Новости</a> | <a>Контакты</a> | <a>Карта сайта</a> | <a>Поиск</a> | <a>Ссылки</a> | <a>RSS</a></p><p><a>Законодательная карта по ФЗ № 8</a></p><p><a>Инструкция по пользованию сайта для людей с ограниченными возможностями здоровья</a></p><p>Обращения в форме электронного документа, направленные Губернатору и в Правительство Ульяновской области без заполнения формы в разделе «Отправить обращение в форме электронного документа Губернатору Ульяновской области и в Правительство Ульяновской области» официального сайта, по адресу электронной почты Губернатора и Правительства Ульяновской области и (или) минуя личный кабинет, к рассмотрению не принимаются.</p><p>Правительство Ульяновской области © 2006-2023 <br/> Использование материалов сайта без ссылки на источник запрещено</p></td><td class="lyo contacts"><p><strong><a>Контакты:</a></strong></p><p>432017 г. Ульяновск пл. Соборная, д.1</p><p> +7 8422 58-93-43 - Факс<br/> +7 8422 273772 - Бюро пропусков</p><p><a>Отправить обращение Губернатору</a></p></td><td class="lyo about"><p><strong><a>О сайте</a></strong> </p><p style="display:none;"><a>Статистика</a></p><p> </p><p><a>Поддержка и продвижение сайта</a></p><p>Нашли опечатку? Ctrl + Enter</p><p><a class="myLinkModal">Оставьте свое мнение о сайте</a></p><p><img src="https://top-fwz1.mail.ru/counter?id=3248818;js=na" style="border:0;position:absolute;left:-9999px;"/></p></td><td class="lyo qr"><img src="/pub/images/pinfo/qr-footer.gif" style="border: 6px solid white; margin-left:10px;"/><br/><br/><a style="margin-left:10px;"><img class="ym-advanced-informer" src="https://informer.yandex.ru/informer/57523894/3_1_FFFFFFFF_EFEFEFFF_0_pageviews" style="width:88px; height:31px; border:0;"/></a></td></tr></tbody></table><p><a class="mainButton" style="position: absolute;opacity: 0;z-index:-1;left:-999999px;">Ошибка в тексте</a></p><div class="remodal"><div class="remodalBorder"><button class="remodal-close"></button><form class="form-err-text" id="form"><h4 id="modal1Title">Вы действительно хотите отправить эту ошибку?</h4><p class="text-err" style="display: block;text-align: center;color:#ffffff;padding:5px;"></p><input class="textError"/><input class="url_page"/><input class="btn"/><input/><p><input id="botsec"/></p></form></div></div><div class="modal-feed" id="modal_feed"><span class="close" id="myModal__close">x</span><form class="form-feedback" id="form_feedback"><h4 class="modal-title">Оставьте свое мнение о сайте</h4><p class="feed-ckeck"><input id="q1"/><label>Странички быстро загружаются;</label></p><p class="feed-ckeck"><input id="q2"/><label>Сайт одинаково отображается во всех популярных браузерах и их различных версиях;</label></p><p class="feed-ckeck"><input id="q3"/><label>Дизайн сайта не перегружен и выглядит актуально;</label></p><p class="feed-ckeck"><input id="q4"/><label>Выбор языковой версии сайта расположен в хорошо заметном месте;</label></p><p class="feed-ckeck"><input id="q5"/><label>Лого кликабельное (ссылка ведет на Главную);</label></p><p class="feed-ckeck"><input id="q6"/><label>Шапка информативная (дает представление о том, что на сайте);</label></p><p class="feed-ckeck"> <input id="q7"/><label>Есть ссылки на социальные сети;</label></p><p class="feed-ckeck"><input id="q8"/><label>Есть поиск на сайте;</label></p><p class="feed-ckeck"><input id="q9"/><label>Контент структурирован (используются подзаголовки, списки);</label></p><p class="feed-ckeck"><input id="q10"/><label>Данные актуальны и своевременно обновляются;</label></p><p class="feed-ckeck"><input id="q11"/><label>Есть мобильная версия сайта или используется адаптивный дизайн;</label></p><p class="feed-ckeck"><input id="q12"/><label>Все странички веб-ресурса оформлены в единой стилистике.</label></p><p><input id="botsec"/></p><p class="feed-ckeck" style="text-align:center;"><input class="button" style="width:150px;"/></p><p class="feed-ckeck"> <input/></p></form></div><div class="thanks-modal" id="thanks_modal"><h4 class="modal-title">Спасибо за ваше мнение</h4><span class="close" id="mythModal__close">x</span></div><div id="myOverlay"></div><div id="mythOverlay"></div> </div></div></div><style>#modal_feed { width: 430px; height: 600px; padding: 18px 9px; border-radius: 4px; background: #fafafa; position: fixed; top: 0; left: 0; right: 0; bottom: 0; margin: auto; display: none; opacity: 0; z-index: 38 } #thanks_modal { width: 430px; height: 20px; padding: 18px 9px; border-radius: 4px; background: #fafafa; position: fixed; top: 0; left: 0; right: 0; bottom: 0; margin: auto; display: none; opacity: 0; z-index: 38 } .feed-ckeck { width: 400px; color: #000; margin-top: 10px; margin-left: 5px; font-size: 12px } .modal-title { font-size: 18px; font-weight: bold; color: #000; text-align: center } #myOverlay { z-index: 37; position: fixed; background: rgba(0, 0, 0, 0.7); width: 100%; height: 100%; top: 0; left: 0; cursor: pointer; display: none } #modal_feed #myModal__close { width: 21px; height: 21px; position: absolute; font-size: 20px; top: 1px; right: 5px; cursor: pointer; display: block; color: #000 } #thanks_modal #mythModal__close { width: 21px; height: 21px; position: absolute; font-size: 20px; top: 1px; right: 5px; cursor: pointer; display: block; color: #000 }</style></body></html>
3
[ 1280, 1726 ]
ru
[ 385, 7822 ]
4f48f9200456f7a4ae5c76ca599857ac65e06d9cc6757a226c3419019a091c73
{"type": "body", "content": "", "style": "font-family: arial, sans-serif", "bbox": [8, 8, 1264, 1907], "children": [{"type": "center", "content": "", "style": null, "bbox": [8, 8, 1264, 1907], "children": [{"type": "a", "content": "", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [521, 8, 237, 44], "children": [{"type": "img", "content": "", "style": "border:0;", "bbox": [523, 10, 233, 40], "children": []}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 90, 1264, 37], "children": [{"type": "form", "content": "", "style": null, "bbox": [8, 90, 1264, 37], "children": [{"type": "input", "content": "", "style": "width: 220px; padding: 10px; border: 1px solid rgb(0, 0, 0); border-radius: 5px;", "bbox": [421, 90, 242, 37], "children": []}, {"type": "input", "content": "", "style": "padding: 10px; border: 1px solid rgb(0, 0, 0); border-radius: 5px;", "bbox": [667, 90, 191, 37], "children": []}]}]}, {"type": "h1", "content": "www.lonestar.org", "style": "color: #293eb9", "bbox": [8, 202, 1264, 37], "children": []}, {"type": "span", "content": "Lonestar.org", "style": null, "bbox": [595, 260, 88, 17], "children": []}, {"type": "a", "content": "", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [622, 296, 36, 36], "children": [{"type": "img", "content": "", "style": null, "bbox": [624, 298, 32, 32], "children": []}]}, {"type": "div", "content": "", "style": " width:265px;; text-align: center; width: 600px; margin: auto", "bbox": [340, 334, 600, 150], "children": [{"type": "div", "content": "", "style": "width: 240px; float: left; padding: 16px", "bbox": [340, 334, 272, 150], "children": [{"type": "div", "content": "", "style": "padding: 15px; font-size: 2em; font-weight: 400; background: #efefef; border-bottom: 1px solid #ddd; border-radius: 10px 10px 0 0", "bbox": [356, 350, 240, 68], "children": [{"type": "b", "content": "7.967.986", "style": "font-weight: 400", "bbox": [404, 365, 142, 36], "children": []}]}, {"type": "div", "content": "", "style": "padding: 10px", "bbox": [356, 418, 240, 50], "children": [{"type": "a", "content": "", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [407, 428, 137, 28], "children": [{"type": "img", "content": "", "style": "margin-right:5px;", "bbox": [409, 430, 24, 24], "children": []}, {"type": "b", "content": "World Ranking", "style": "font-weight: 400", "bbox": [438, 430, 104, 24], "children": []}]}]}]}]}, {"type": "div", "content": "", "style": "margin-top:30px; font-size:18px;", "bbox": [8, 514, 1264, 27], "children": [{"type": "table", "content": "", "style": null, "bbox": [521, 514, 237, 27], "children": [{"type": "tbody", "content": "", "style": null, "bbox": [523, 516, 233, 23], "children": [{"type": "tr", "content": "", "style": null, "bbox": [523, 516, 233, 23], "children": [{"type": "td", "content": "Owner:", "style": "width:70px; text-align:right;; max-width: 475px", "bbox": [523, 516, 72, 23], "children": []}, {"type": "td", "content": "Texas Lunch Bunch", "style": "max-width: 475px", "bbox": [597, 516, 159, 23], "children": []}]}]}]}]}, {"type": "div", "content": "", "style": "margin-top:70px;", "bbox": [8, 611, 1264, 28], "children": [{"type": "h2", "content": "Lonestar Service on cloud1", "style": null, "bbox": [8, 611, 1264, 28], "children": []}]}, {"type": "div", "content": "", "style": "margin-top:70px;;", "bbox": [8, 709, 1264, 83], "children": [{"type": "h2", "content": "Lonestar Contact", "style": null, "bbox": [8, 709, 1264, 28], "children": []}, {"type": "div", "content": "", "style": "padding:5px;", "bbox": [8, 757, 1264, 36], "children": [{"type": "b", "content": "", "style": "font-weight: 400", "bbox": [565, 768, 122, 17], "children": [{"type": "a", "content": "[email\u00a0protected]", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [565, 766, 122, 22], "children": []}]}, {"type": "a", "content": "", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [692, 762, 22, 22], "children": [{"type": "img", "content": "", "style": null, "bbox": [694, 764, 18, 18], "children": []}]}]}]}, {"type": "div", "content": "", "style": "margin-top:70px;;", "bbox": [8, 863, 1264, 197], "children": [{"type": "h2", "content": "www.lonestar.org Competitor Website", "style": null, "bbox": [8, 863, 1264, 28], "children": []}, {"type": "table", "content": "", "style": null, "bbox": [357, 911, 565, 150], "children": [{"type": "tbody", "content": "", "style": null, "bbox": [359, 913, 561, 146], "children": [{"type": "tr", "content": "", "style": null, "bbox": [359, 913, 561, 24], "children": [{"type": "td", "content": "895.180", "style": "width:70px; text-align:right;; max-width: 475px", "bbox": [359, 913, 73, 24], "children": []}, {"type": "td", "content": "-", "style": "max-width: 475px", "bbox": [434, 913, 7, 24], "children": []}, {"type": "td", "content": "", "style": "max-width: 475px", "bbox": [443, 913, 477, 24], "children": [{"type": "a", "content": "", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [444, 914, 83, 22], "children": []}]}]}, {"type": "tr", "content": "", "style": null, "bbox": [359, 939, 561, 24], "children": [{"type": "td", "content": "1.701.651", "style": "width:70px; text-align:right;; max-width: 475px", "bbox": [359, 939, 73, 24], "children": []}, {"type": "td", "content": "-", "style": "max-width: 475px", "bbox": [434, 939, 7, 24], "children": []}, {"type": "td", "content": "", "style": "max-width: 475px", "bbox": [443, 939, 477, 24], "children": [{"type": "a", "content": "", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [444, 940, 459, 22], "children": [{"type": "span", "content": "-\u00a0The Web Application Security Consortium", "style": "color: #333333;", "bbox": [593, 942, 308, 18], "children": []}]}]}]}, {"type": "tr", "content": "", "style": null, "bbox": [359, 965, 561, 24], "children": [{"type": "td", "content": "5.413.443", "style": "width:70px; text-align:right;; max-width: 475px", "bbox": [359, 965, 73, 24], "children": []}, {"type": "td", "content": "-", "style": "max-width: 475px", "bbox": [434, 965, 7, 24], "children": []}, {"type": "td", "content": "", "style": "max-width: 475px", "bbox": [443, 965, 477, 24], "children": [{"type": "a", "content": "", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [444, 966, 221, 22], "children": [{"type": "span", "content": "-\u00a0rootshell.be", "style": "color: #333333;", "bbox": [567, 968, 96, 18], "children": []}]}]}]}, {"type": "tr", "content": "", "style": null, "bbox": [359, 991, 561, 24], "children": [{"type": "td", "content": "465.885", "style": "width:70px; text-align:right;; max-width: 475px", "bbox": [359, 991, 73, 24], "children": []}, {"type": "td", "content": "-", "style": "max-width: 475px", "bbox": [434, 991, 7, 24], "children": []}, {"type": "td", "content": "", "style": "max-width: 475px", "bbox": [443, 991, 477, 24], "children": [{"type": "a", "content": "", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [444, 992, 152, 22], "children": [{"type": "span", "content": "-\u00a0Djvu", "style": "color: #333333;", "bbox": [549, 994, 46, 18], "children": []}]}]}]}, {"type": "tr", "content": "", "style": null, "bbox": [359, 1017, 561, 42], "children": [{"type": "td", "content": "6.736.910", "style": "width:70px; text-align:right;; max-width: 475px", "bbox": [359, 1017, 73, 42], "children": []}, {"type": "td", "content": "-", "style": "max-width: 475px", "bbox": [434, 1017, 7, 42], "children": []}, {"type": "td", "content": "", "style": "max-width: 475px", "bbox": [443, 1017, 477, 42], "children": [{"type": "a", "content": "", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [444, 1018, 475, 40], "children": [{"type": "span", "content": "-\u00a0SDF-EU Public Access UNIX System - Free Shell Account and Shell Ac", "style": "color: #333333;", "bbox": [504, 1020, 413, 36], "children": []}]}]}]}]}]}]}, {"type": "span", "content": "", "style": null, "bbox": [8, 1134, 1264, 22], "children": [{"type": "h3", "content": "Search Keywords", "style": null, "bbox": [8, 1134, 1264, 22], "children": []}]}, {"type": "ul", "content": "", "style": null, "bbox": [8, 1175, 1264, 36], "children": [{"type": "li", "content": "lonestar.org rank", "style": "list-style: none; display: inline; margin-right: 15px", "bbox": [58, 1175, 119, 17], "children": []}, {"type": "li", "content": "lonestar.org ranking", "style": "list-style: none; display: inline; margin-right: 15px", "bbox": [192, 1175, 140, 17], "children": []}, {"type": "li", "content": "lonestar.org ranking in the world", "style": "list-style: none; display: inline; margin-right: 15px", "bbox": [348, 1175, 226, 17], "children": []}, {"type": "li", "content": "lonestar.org similar sites", "style": "list-style: none; display: inline; margin-right: 15px", "bbox": [590, 1175, 171, 17], "children": []}, {"type": "li", "content": "lonestar.org website rankings", "style": "list-style: none; display: inline; margin-right: 15px", "bbox": [776, 1175, 207, 17], "children": []}, {"type": "li", "content": "lonestar.org site review", "style": "list-style: none; display: inline; margin-right: 15px", "bbox": [999, 1175, 163, 17], "children": []}, {"type": "li", "content": "lonestar.org reviews", "style": "list-style: none; display: inline; margin-right: 15px", "bbox": [240, 1175, 1020, 35], "children": []}, {"type": "li", "content": "lonestar.org traffic", "style": "list-style: none; display: inline; margin-right: 15px", "bbox": [309, 1193, 126, 17], "children": []}, {"type": "li", "content": "lonestar.org website statistics", "style": "list-style: none; display: inline; margin-right: 15px", "bbox": [451, 1193, 208, 17], "children": []}, {"type": "li", "content": "lonestar.org alternatives", "style": "list-style: none; display: inline; margin-right: 15px", "bbox": [674, 1193, 169, 17], "children": []}, {"type": "li", "content": "best lonestar.org alternatives", "style": "list-style: none; display: inline; margin-right: 15px", "bbox": [859, 1193, 204, 17], "children": []}]}, {"type": "h3", "content": "Website Rank and Statistics", "style": null, "bbox": [8, 1229, 1264, 22], "children": []}, {"type": "p", "content": "Use the search section to view country and world rankings of websites, review website statistics, list competitor websites and veiw analyze keyword.", "style": null, "bbox": [8, 1270, 1264, 18], "children": []}, {"type": "p", "content": "Alexa rankings allow you to obtain and analyze information about the number of visitors, page views, and the time users spend on the site.", "style": null, "bbox": [8, 1304, 1264, 18], "children": []}, {"type": "hr", "content": "", "style": null, "bbox": [8, 1364, 1264, 2], "children": []}, {"type": "p", "content": "Alexa Rank Alternative", "style": null, "bbox": [8, 1382, 1264, 18], "children": []}, {"type": "p", "content": "Websites alternative, similars, traffic ranking, and review.", "style": null, "bbox": [8, 1416, 1264, 18], "children": []}, {"type": "p", "content": "Website ranking, alexa web traffic, alexa rank checker, alexa site info, alexa website alternative, alexa similar, alexa website checker, competitive analysis and keyword research.", "style": null, "bbox": [8, 1450, 1264, 18], "children": []}, {"type": "div", "content": "", "style": null, "bbox": [8, 1484, 1264, 78], "children": [{"type": "p", "content": "", "style": null, "bbox": [8, 1484, 1264, 18], "children": [{"type": "b", "content": "Recently queried sites", "style": "font-weight: 400", "bbox": [561, 1484, 157, 17], "children": []}]}, {"type": "ul", "content": "", "style": null, "bbox": [8, 1518, 1264, 44], "children": [{"type": "li", "content": "", "style": "list-style: none; display: inline; margin-right: 15px", "bbox": [51, 1520, 106, 17], "children": [{"type": "a", "content": "kenyatalk.com", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [51, 1518, 106, 22], "children": []}]}, {"type": "li", "content": "", "style": "list-style: none; display: inline; margin-right: 15px", "bbox": [177, 1520, 78, 17], "children": [{"type": "a", "content": "imovies.cc", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [177, 1518, 78, 22], "children": []}]}, {"type": "li", "content": "", "style": "list-style: none; display: inline; margin-right: 15px", "bbox": [275, 1520, 73, 17], "children": [{"type": "a", "content": "espn.com", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [275, 1518, 73, 22], "children": []}]}, {"type": "li", "content": "", "style": "list-style: none; display: inline; margin-right: 15px", "bbox": [368, 1520, 68, 17], "children": [{"type": "a", "content": "ge.movie", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [368, 1518, 68, 22], "children": []}]}, {"type": "li", "content": "", "style": "list-style: none; display: inline; margin-right: 15px", "bbox": [456, 1520, 132, 17], "children": [{"type": "a", "content": "kritiindustries.com", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [456, 1518, 132, 22], "children": []}]}, {"type": "li", "content": "", "style": "list-style: none; display: inline; margin-right: 15px", "bbox": [608, 1520, 65, 17], "children": [{"type": "a", "content": "edn.com", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [608, 1518, 65, 22], "children": []}]}, {"type": "li", "content": "", "style": "list-style: none; display: inline; margin-right: 15px", "bbox": [693, 1520, 174, 17], "children": [{"type": "a", "content": "www.plomberie-online.fr", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [693, 1518, 174, 22], "children": []}]}, {"type": "li", "content": "", "style": "list-style: none; display: inline; margin-right: 15px", "bbox": [887, 1520, 107, 17], "children": [{"type": "a", "content": "steffeleoff.com", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [887, 1518, 107, 22], "children": []}]}, {"type": "li", "content": "", "style": "list-style: none; display: inline; margin-right: 15px", "bbox": [1014, 1520, 106, 17], "children": [{"type": "a", "content": "kenyatalk.com", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [1014, 1518, 106, 22], "children": []}]}, {"type": "li", "content": "", "style": "list-style: none; display: inline; margin-right: 15px", "bbox": [1139, 1520, 113, 17], "children": [{"type": "a", "content": "rebamovie.com", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [1139, 1518, 113, 22], "children": []}]}, {"type": "li", "content": "", "style": "list-style: none; display: inline; margin-right: 15px", "bbox": [163, 1542, 78, 17], "children": [{"type": "a", "content": "imovies.cc", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [163, 1540, 78, 22], "children": []}]}, {"type": "li", "content": "", "style": "list-style: none; display: inline; margin-right: 15px", "bbox": [261, 1542, 73, 17], "children": [{"type": "a", "content": "espn.com", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [261, 1540, 73, 22], "children": []}]}, {"type": "li", "content": "", "style": "list-style: none; display: inline; margin-right: 15px", "bbox": [353, 1542, 68, 17], "children": [{"type": "a", "content": "ge.movie", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [353, 1540, 68, 22], "children": []}]}, {"type": "li", "content": "", "style": "list-style: none; display: inline; margin-right: 15px", "bbox": [442, 1542, 132, 17], "children": [{"type": "a", "content": "kritiindustries.com", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [442, 1540, 132, 22], "children": []}]}, {"type": "li", "content": "", "style": "list-style: none; display: inline; margin-right: 15px", "bbox": [593, 1542, 65, 17], "children": [{"type": "a", "content": "zoomg.ir", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [593, 1540, 65, 22], "children": []}]}, {"type": "li", "content": "", "style": "list-style: none; display: inline; margin-right: 15px", "bbox": [678, 1542, 68, 17], "children": [{"type": "a", "content": "nike.com", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [678, 1540, 68, 22], "children": []}]}, {"type": "li", "content": "", "style": "list-style: none; display: inline; margin-right: 15px", "bbox": [766, 1542, 64, 17], "children": [{"type": "a", "content": "mobile.ir", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [766, 1540, 64, 22], "children": []}]}, {"type": "li", "content": "", "style": "list-style: none; display: inline; margin-right: 15px", "bbox": [850, 1542, 92, 17], "children": [{"type": "a", "content": "gamefa.com", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [850, 1540, 92, 22], "children": []}]}, {"type": "li", "content": "", "style": "list-style: none; display: inline; margin-right: 15px", "bbox": [961, 1542, 78, 17], "children": [{"type": "a", "content": "everve.net", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [961, 1540, 78, 22], "children": []}]}, {"type": "li", "content": "", "style": "list-style: none; display: inline; margin-right: 15px", "bbox": [1059, 1542, 82, 17], "children": [{"type": "a", "content": "tingg.africa", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [1059, 1540, 82, 22], "children": []}]}]}]}, {"type": "p", "content": "", "style": null, "bbox": [8, 1578, 1264, 22], "children": [{"type": "b", "content": "Alexa", "style": "font-weight: 400", "bbox": [434, 1580, 40, 17], "children": []}, {"type": "a", "content": "Website Ranking", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [488, 1578, 124, 22], "children": []}, {"type": "a", "content": "Countries", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [627, 1578, 72, 22], "children": []}, {"type": "a", "content": "Top 100 Websites", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [714, 1578, 130, 22], "children": []}]}, {"type": "p", "content": "", "style": null, "bbox": [8, 1616, 1264, 22], "children": [{"type": "a", "content": "Webmasters Tools", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [492, 1616, 135, 22], "children": []}, {"type": "a", "content": "Browser Extensions", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [641, 1616, 145, 22], "children": []}]}, {"type": "p", "content": "", "style": null, "bbox": [8, 1654, 1264, 22], "children": [{"type": "a", "content": "Privacy", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [517, 1654, 56, 22], "children": []}, {"type": "a", "content": "Cookie Policy", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [588, 1654, 100, 22], "children": []}, {"type": "a", "content": "Contact", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [703, 1654, 59, 22], "children": []}]}, {"type": "p", "content": "", "style": null, "bbox": [8, 1692, 1264, 47], "children": [{"type": "a", "content": "English", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [15, 1692, 56, 22], "children": []}, {"type": "a", "content": "Espa\u00f1ol", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [85, 1692, 61, 22], "children": []}, {"type": "a", "content": "Fran\u00e7ais", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [161, 1692, 65, 22], "children": []}, {"type": "a", "content": "Deutsch", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [241, 1692, 62, 22], "children": []}, {"type": "a", "content": "Italiano", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [318, 1692, 55, 22], "children": []}, {"type": "a", "content": "Portugu\u00eas", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [388, 1692, 76, 22], "children": []}, {"type": "a", "content": "\u0420\u0443\u0441\u0441\u043a\u0438\u0439", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [479, 1692, 63, 22], "children": []}, {"type": "a", "content": "\u0411\u0435\u043b\u0430\u0440\u0443\u0441\u043a\u0430\u044f", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [556, 1692, 90, 22], "children": []}, {"type": "a", "content": "\u0411\u044a\u043b\u0433\u0430\u0440\u0441\u043a\u0438", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [661, 1692, 81, 22], "children": []}, {"type": "a", "content": "\u010ce\u0161tina", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [756, 1692, 58, 22], "children": []}, {"type": "a", "content": "Dansk", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [829, 1692, 49, 22], "children": []}, {"type": "a", "content": "\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [893, 1692, 68, 22], "children": []}, {"type": "a", "content": "Hrvatski", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [975, 1692, 61, 22], "children": []}, {"type": "a", "content": "Bahasa Indonesia", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [1051, 1692, 132, 22], "children": []}, {"type": "a", "content": "Magyar", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [1197, 1692, 57, 22], "children": []}, {"type": "a", "content": "Bahasa Melayu", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [189, 1717, 114, 22], "children": []}, {"type": "a", "content": "Nederlands", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [318, 1717, 85, 22], "children": []}, {"type": "a", "content": "Polski", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [418, 1717, 46, 22], "children": []}, {"type": "a", "content": "Rom\u00e2n\u0103", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [479, 1717, 64, 22], "children": []}, {"type": "a", "content": "Srpski", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [557, 1717, 48, 22], "children": []}, {"type": "a", "content": "Slovensk\u00fd", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [620, 1717, 76, 22], "children": []}, {"type": "a", "content": "\u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0430", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [711, 1717, 84, 22], "children": []}, {"type": "a", "content": "T\u00fcrk\u00e7e", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [810, 1717, 52, 22], "children": []}, {"type": "a", "content": "\u65e5\u672c\u8a9e", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [867, 1714, 52, 25], "children": []}, {"type": "a", "content": "\u7b80\u4f53\u4e2d\u6587", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [923, 1714, 68, 25], "children": []}, {"type": "a", "content": "\u7e41\u9ad4\u4e2d\u6587", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [996, 1714, 68, 25], "children": []}, {"type": "a", "content": "\ud55c\uad6d\uc5b4", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [1068, 1717, 21, 22], "children": []}]}, {"type": "p", "content": "Copyright \u00a9 2022 urirank.com. All rights reserved.", "style": null, "bbox": [8, 1755, 1264, 18], "children": []}, {"type": "a", "content": "", "style": "display: inline-flex; color: #06F; text-decoration: none; padding: 2px", "bbox": [638, 1889, 4, 4], "children": [{"type": "div", "content": "", "style": "position: fixed; bottom: 10px; right: 10px; background: #004dff; color: #fff; padding: 10px; font-weight: bold; cursor: pointer; border-radius: 10px", "bbox": [1108, 636, 161, 74], "children": []}]}]}]}
<!DOCTYPE html> <html><head><title>lonestar.org - URIRANK</title></head><body><center><a><img height="40" src="/img/logo.png" style="border:0;" width="233"/></a><br/><br/><br/><div><form><input class="rd5" id="domain" style="width:220px;"/><input class="rd5"/></form></div><br/><br/><br/><h1>www.lonestar.org</h1> <span>Lonestar.org</span><br/><br/><a><img height="32" src="/img/target.svg" width="32"/></a><div class="container" style=" width:265px;"><div class="body_rank_box"><div class="r_rank"><b>7.967.986</b></div><div class="r_rank2"><a><img height="24" src="/img/world.png" style="margin-right:5px;" width="24"/> <b>World Ranking</b></a></div><div class="clear"></div></div> <div class="clear"></div></div><div style="margin-top:30px; font-size:18px;"><table><tr><td style="width:70px; text-align:right;">Owner:</td><td>Texas Lunch Bunch</td></tr></table></div><div style="margin-top:70px;"><h2>Lonestar Service on cloud1</h2><p></p></div><div style="margin-top:70px;;"><h2>Lonestar Contact</h2><div style="padding:5px;"><b><a class="__cf_email__">[email protected]</a></b> <a><img height="18" src="/img/target.svg" width="18"/></a></div></div><div style="margin-top:70px;;"><h2>www.lonestar.org Competitor Website</h2><table><tr><td style="width:70px; text-align:right;">895.180</td><td>-</td><td><a>nwlink.com<span style="color: #333333;"></span></a></td></tr><tr><td style="width:70px; text-align:right;">1.701.651</td><td>-</td><td><a>www.webappsec.org<span style="color: #333333;"> - The Web Application Security Consortium</span></a></td></tr><tr><td style="width:70px; text-align:right;">5.413.443</td><td>-</td><td><a>www.rootshell.be<span style="color: #333333;"> - rootshell.be</span></a></td></tr><tr><td style="width:70px; text-align:right;">465.885</td><td>-</td><td><a>www.djvu.com<span style="color: #333333;"> - Djvu</span></a></td></tr><tr><td style="width:70px; text-align:right;">6.736.910</td><td>-</td><td><a>sdf-eu.org<span style="color: #333333;"> - SDF-EU Public Access UNIX System - Free Shell Account and Shell Ac</span></a></td></tr></table></div><br/><br/><br/><span><h3>Search Keywords</h3></span><ul class="footer_last_query_sites"><li>lonestar.org rank</li><li>lonestar.org ranking</li><li>lonestar.org ranking in the world</li><li>lonestar.org similar sites</li><li>lonestar.org website rankings</li><li>lonestar.org site review</li><li>lonestar.org reviews</li><li>lonestar.org traffic</li><li>lonestar.org website statistics</li><li>lonestar.org alternatives</li><li>best lonestar.org alternatives</li> </ul><h3>Website Rank and Statistics</h3><p>Use the search section to view country and world rankings of websites, review website statistics, list competitor websites and veiw analyze keyword.</p><p>Alexa rankings allow you to obtain and analyze information about the number of visitors, page views, and the time users spend on the site.</p><br/><hr/><p>Alexa Rank Alternative</p><p>Websites alternative, similars, traffic ranking, and review.</p><p>Website ranking, alexa web traffic, alexa rank checker, alexa site info, alexa website alternative, alexa similar, alexa website checker, competitive analysis and keyword research.</p><div><p><b>Recently queried sites</b><ul class="footer_last_query_sites"><li><a>kenyatalk.com</a></li><li><a>imovies.cc</a></li><li><a>espn.com</a></li><li><a>ge.movie</a></li><li><a>kritiindustries.com</a></li><li><a>edn.com</a></li><li><a>www.plomberie-online.fr</a></li><li><a>steffeleoff.com</a></li><li><a>kenyatalk.com</a></li><li><a>rebamovie.com</a></li><li><a>imovies.cc</a></li><li><a>espn.com</a></li><li><a>ge.movie</a></li><li><a>kritiindustries.com</a></li><li><a>zoomg.ir</a></li><li><a>nike.com</a></li><li><a>mobile.ir</a></li><li><a>gamefa.com</a></li><li><a>everve.net</a></li><li><a>tingg.africa</a></li></ul></p></div> <p><b>Alexa</b> - <a>Website Ranking</a> - <a>Countries</a> - <a>Top 100 Websites</a></p><p><a>Webmasters Tools</a> - <a>Browser Extensions</a></p><p><a>Privacy</a> - <a>Cookie Policy</a> - <a>Contact</a></p><p> <a>English</a> - <a>Español</a> - <a>Français</a> - <a>Deutsch</a> - <a>Italiano</a> - <a>Português</a> - <a>Русский</a> - <a>Беларуская</a> - <a>Български</a> - <a>Čeština</a> - <a>Dansk</a> - <a>Ελληνικά</a> - <a>Hrvatski</a> - <a>Bahasa Indonesia</a> - <a>Magyar</a> - <a>Bahasa Melayu</a> - <a>Nederlands</a> - <a>Polski</a> - <a>Română</a> - <a>Srpski</a> - <a>Slovenský</a> - <a>Українська</a> - <a>Türkçe</a><a>日本語</a><a>简体中文</a><a>繁體中文</a><a>한국어</a></p><p>Copyright © 2022 urirank.com. All rights reserved.</p><br><br><br/><br/><br/><noscript><p><img height="1" src="//in.getclicky.com/101377506ns.gif" width="1"/></p></noscript><a><div class="extension"><img src="/img/chrome.svg" width="50"/><br/>Get Our Free<br/>Chrome Extension</div></a></br></br></center><style>body { font-family: arial, sans-serif } b { font-weight: 400 } h1 { color: #293eb9 } a { display: inline-flex; color: #06F; text-decoration: none; padding: 2px } form input { padding: 10px; border: 1px solid #000 } .rd5 { border-radius: 5px } .clear { clear: both; font-size: 0; height: 0 } .container { text-align: center; width: 600px; margin: auto } .body_rank_box, .country_rank { width: 240px; float: left; padding: 16px } .r_rank, .c_rank { padding: 15px; font-size: 2em; font-weight: 400; background: #efefef; border-bottom: 1px solid #ddd; border-radius: 10px 10px 0 0 } .r_rank2, .c_rank2 { padding: 10px } ul li { list-style: none } table td { max-width: 475px } ul.footer_last_query_sites li { display: inline; margin-right: 15px } .extension { position: fixed; bottom: 10px; right: 10px; background: #004dff; color: #fff; padding: 10px; font-weight: bold; cursor: pointer; border-radius: 10px }</style></body></html>
3
[ 1280, 1924 ]
en
[ 314, 1989 ]
74a3bf917e3932846a768c41102ac4c44681b1cd503e693483d8fe3103aa3ee8
"{\"type\": \"body\", \"content\": \"\", \"style\": \"margin: 0; background-color: var(--wp--preset-(...TRUNCATED)
"<!DOCTYPE html>\n\n<html><head><title>Online Kaszinó Bónusz Üdvözlet Nincs Letét 2023 – Kül(...TRUNCATED)
3
[ 1280, 1235 ]
zh
[ 1685, 4216 ]
2b5b5956e2544e9a7badea62b66a267a22d4b6ad9d616d3c812df28f5483c850
"{\"type\": \"body\", \"content\": \"\", \"style\": \"margin: 0; padding-top: 0; padding-right: 0; p(...TRUNCATED)
"<!DOCTYPE html>\n\n<html><head><title>TH-500 | Lamonaca Iron Works</title></head><body class=\"atta(...TRUNCATED)
3
[ 1280, 1207 ]
en
[ 3599, 2372 ]
4294fe86cecbd2937d9920bc798e95136c061b7b92b7e80e7080b238d3519e3d
"{\"type\": \"body\", \"content\": \"\", \"style\": \"position: relative; font-family: Source Sans P(...TRUNCATED)
"<!DOCTYPE html>\n\n<html><head><title>Братское совещание духовенства б(...TRUNCATED)
3
[ 1280, 1056 ]
ru
[ 556, 5251 ]
1f17f60827e037449cc757362427b39a28c2f35834e9c1705a9dbb280a7502c1
"{\"type\": \"body\", \"content\": \"\", \"style\": \"background: #CCC; color: #000; font: 10pt verd(...TRUNCATED)
"<!DOCTYPE html>\n\n<html><head><title> S96v2 - uazbuka.ru</title></head><body><a></a><table widt(...TRUNCATED)
3
[ 1280, 1222 ]
sw
[ 752, 3772 ]
ce60a256abb4a3a411c6b582e44f2421728dbf76abb6e437b2b956521121383c
"{\"type\": \"body\", \"content\": \"\", \"style\": \"background: transparent; border: 0; margin: 0;(...TRUNCATED)
"<!DOCTYPE html>\n\n<html><head><title>FAMILY SALE 2019 | k-ambiente</title></head><body class=\"\">(...TRUNCATED)
3
[ 1280, 2495 ]
en
[ 3888, 3837 ]
83625a59ff2f7a7fcfec797d056a342e51935c76bbdc1de135c129d070cda24d
End of preview. Expand in Data Studio

WebCode2M: A Real-World Dataset for Code Generation from Webpage Designs with Layouts (This dataset is also called Vision2UI.)

Automatically generating webpage code from webpage designscan significantly reduce the workload of front-end developers, andrecent Multimodal Large Language Models (MLLMs) have shownpromising potential in this area. However, our investigation revealsthat most existing MLLMs are constrained by the absence of highquality, large-scale, real-world datasets, resulting in inadequateperformance in automated webpage code generation. To fill thisgap, this paper introduces WebCode2M, a new dataset comprising2.56 million instances, each containing a design image along withthe corresponding webpage code and layout details. Sourced fromreal-world web resources, WebCode2M offers a rich and valuabledataset for webpage code generation across a variety of applications.The dataset quality is ensured by a scoring model that filters out instances with aesthetic deficiencies or other incomplete elements. Tovalidate the effectiveness of WebCode2M, we introduce a baselinemodel based on the Vision Transformer (ViT), named WebCoder,and establish a benchmark for fair comparison. Additionally, weintroduce a new metric, TreeBLEU, to measure the structural hierarchy recall. The benchmarking results demonstrate that our datasetsignificantly improves the ability of MLLMs to generate code fromwebpage designs, confirming its effectiveness and usability for future applications in front-end design tools. Finally, we highlightseveral practical challenges introduced by our dataset, calling forfurther research.

Features:

Warning: This dataset is sourced from the internet and, despite filtering efforts, may still contain a small amount of inappropriate content, such as explicit material or violence. Users should exercise caution. An enhanced version—with most inappropriate content filtered out—is available at xcodemind/webcode2m_purified.

Downloads last month
1,155
Size of downloaded dataset files:
1.1 TB
Size of the auto-converted Parquet files:
1.1 TB
Number of rows:
3,171,024