{ // 获取包含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_purified/--/6e1735ac07f6dcb002eb542cf6892e69412dbb33/--/default/train/1/image/image.png?Expires=1755748228&Signature=TD8~VzpF3HB2MjhHsbdxIMayGPRFwu6FIWjRerxrF1FU3LqQGmY3iprOsEWfGvlQVjgVQk7VCdHaM3BlaW7K9~Ht6o249jbPRgCv4ny0-yFDE9vXO3dat3BVXx8mf11kG3jfedYCYmt1m9r9sOFkGijy0OIHLnczSjo9HvPRgMN2OAUa2U7etPtcbExbKH8f52au265H8pCk~AHw9W7mrGZS9OjZ-7q2oQzHv9b-lQ1aDkZgZu4PfFW9JrWANpHsW5-G4z5fBTWmgLtR26s9HbURobT0g3cu44UTEnjQRaqX8Afgx-VOk~iy7ZLZ11dXYvC1lPD3y8wDG5P82Ev6wQ__&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":2,"cells":{"image":{"kind":"image","value":{"src":"https://datasets-server.huggingface.co/assets/xcodemind/webcode2m_purified/--/6e1735ac07f6dcb002eb542cf6892e69412dbb33/--/default/train/2/image/image.png?Expires=1755748228&Signature=vNI75-9ne6c8UmEyz526fdX4VgYRY08ewE~UHKaJbR80tpGlNMK6ytsEHCmoLhkO-MocgUQu9srE0Rd~tYHpFLfsBitLnNHmeJhhyIyujWhNR7nBTq3dKdyuhsw8R0FELggdrp5uLqns3fQtuEJTVvPfLIWKZv~mBg70tHd~swJHLikxiycwb0PZf0uGsAX0e4rrRqA5Y34cZwTSSmz6DLcE7RQPqgqU98717Xen7NrvmqhZPpa0y~lwJ6VBL1MyFjA2Gj-qTEVy2JvoshbMSf6ZXsiI1fn8AgymZsY~viCKHQHMGTBtM64Zz40Gfs5Bc-zXRhTW3pbZk2w9g--ekQ__&Key-Pair-Id=K3EI6M078Z3AC3","height":1207,"width":1280},"inferredFromUrl":false},"bbox":{"kind":"string","value":"{\"type\": \"body\", \"content\": \"\", \"style\": \"margin: 0; padding-top: 0; padding-right: 0; padding-bottom: 0; padding-left: 0; margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; line-height: 1; font-family: Open Sans, Arial, sans-serif; font-size: 14px; color: #666; background-color: #fff; line-height: 1.7em; font-weight: 500; background-size: cover !important; background-position: top !important; background-repeat: no-repeat !important; background-attachment: fixed; box-sizing: border-box\", \"bbox\": [0, 0, 1280, 1178], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box\", \"bbox\": [0, 0, 1280, 1178], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box\", \"bbox\": [0, 0, 1280, 1178], \"children\": [{\"type\": \"header\", \"content\": \"\", \"style\": \"display: block; box-sizing: border-box\", \"bbox\": [0, 0, 1280, 3], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box; position: relative; z-index: 1; z-index: 2\", \"bbox\": [0, 0, 1280, 3], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box; position: relative; background-color: #fff; background-position: 50%; background-size: 100%; background-size: cover; max-height: none; max-width: 100%; padding-top: 2px; padding-bottom: 1px\", \"bbox\": [0, 0, 1280, 3], \"children\": []}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box\", \"bbox\": [0, 3, 1280, 1175], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; background-color: #fff; box-sizing: border-box\", \"bbox\": [0, 3, 1280, 967], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; width: 80%; max-width: 1080px; margin: auto; position: relative; box-sizing: border-box\", \"bbox\": [128, 3, 1024, 967], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box\", \"bbox\": [128, 3, 1024, 967], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box\", \"bbox\": [128, 3, 1024, 879], \"children\": [{\"type\": \"article\", \"content\": \"\", \"style\": \"display: block; box-sizing: border-box; margin-bottom: 60px; word-wrap: break-word\", \"bbox\": [128, 3, 1024, 879], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box\", \"bbox\": [128, 3, 1024, 373], \"children\": [{\"type\": \"h1\", \"content\": \"TH-500\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; color: #333; padding-bottom: 10px; line-height: 1em; font-weight: 500; font-size: 30px; box-sizing: border-box\", \"bbox\": [128, 3, 1024, 40], \"children\": []}, {\"type\": \"p\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; padding-bottom: 1em; font-size: 14px; padding-bottom: 15px; box-sizing: border-box; font-size: 14px; margin-bottom: 6px\", \"bbox\": [128, 43, 1024, 38], \"children\": [{\"type\": \"span\", \"content\": \"Jul 31, 2019\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box\", \"bbox\": [927, 46, 76, 16], \"children\": []}]}, {\"type\": \"img\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; max-width: 100%; height: auto; box-sizing: border-box\", \"bbox\": [128, 112, 1024, 256], \"children\": []}]}, {\"type\": \"div\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box; padding-top: 30px\", \"bbox\": [128, 376, 1024, 344], \"children\": [{\"type\": \"p\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; padding-bottom: 1em; box-sizing: border-box\", \"bbox\": [128, 406, 1024, 314], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; color: #2ea3f2; box-sizing: border-box\", \"bbox\": [128, 685, 300, 16], \"children\": [{\"type\": \"img\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; max-width: 100%; height: auto; box-sizing: border-box; vertical-align: bottom; max-width: 100%\", \"bbox\": [128, 406, 300, 300], \"children\": []}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box\", \"bbox\": [128, 720, 1024, 161], \"children\": [{\"type\": \"section\", \"content\": \"\", \"style\": \"display: block; box-sizing: border-box; padding-top: 75px\", \"bbox\": [128, 720, 1024, 161], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box; padding-top: 17px\", \"bbox\": [128, 795, 1024, 86], \"children\": [{\"type\": \"h3\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; color: #333; padding-bottom: 10px; line-height: 1em; font-weight: 500; font-size: 22px; box-sizing: border-box\", \"bbox\": [128, 812, 1024, 32], \"children\": [{\"type\": \"span\", \"content\": \"Submit a Comment\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box\", \"bbox\": [128, 810, 188, 25], \"children\": []}]}, {\"type\": \"p\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; padding-bottom: 1em; box-sizing: border-box\", \"bbox\": [128, 844, 1024, 37], \"children\": [{\"type\": \"a\", \"content\": \"logged in\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; color: #2ea3f2; box-sizing: border-box\", \"bbox\": [209, 847, 56, 16], \"children\": []}]}]}]}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box; padding-bottom: 28px\", \"bbox\": [128, 942, 1024, 28], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box; margin-bottom: 30px; width: 100%; float: none; float: left; max-width: 100%; word-wrap: break-word\", \"bbox\": [128, 942, 1024, 146], \"children\": [{\"type\": \"h4\", \"content\": \"Business Name\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; color: #333; padding-bottom: 10px; line-height: 1em; font-weight: 500; font-size: 18px; box-sizing: border-box\", \"bbox\": [128, 942, 1024, 28], \"children\": []}, {\"type\": \"div\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box\", \"bbox\": [128, 970, 1024, 118], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box\", \"bbox\": [128, 970, 1024, 118], \"children\": [{\"type\": \"div\", \"content\": \"Business Name\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box\", \"bbox\": [128, 970, 1024, 23], \"children\": []}, {\"type\": \"div\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box\", \"bbox\": [128, 994, 1024, 47], \"children\": [{\"type\": \"div\", \"content\": \"Address\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box\", \"bbox\": [128, 994, 1024, 23], \"children\": []}, {\"type\": \"div\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box\", \"bbox\": [128, 1017, 1024, 23], \"children\": [{\"type\": \"span\", \"content\": \"City\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box\", \"bbox\": [128, 1020, 23, 16], \"children\": []}, {\"type\": \"abbr\", \"content\": \"State\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box\", \"bbox\": [158, 1020, 32, 16], \"children\": []}, {\"type\": \"span\", \"content\": \"Zip Code\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box\", \"bbox\": [195, 1020, 56, 16], \"children\": []}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box\", \"bbox\": [128, 1041, 1024, 23], \"children\": []}, {\"type\": \"div\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box\", \"bbox\": [128, 1065, 1024, 23], \"children\": []}]}]}]}]}]}]}]}, {\"type\": \"footer\", \"content\": \"\", \"style\": \"display: block; box-sizing: border-box; background-color: #222\", \"bbox\": [0, 970, 1280, 207], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box; background-color: rgba(255, 255, 255, 0.05)\", \"bbox\": [0, 970, 1280, 187], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; width: 80%; max-width: 1080px; margin: auto; position: relative; box-sizing: border-box\", \"bbox\": [128, 970, 1024, 187], \"children\": [{\"type\": \"ul\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; list-style: none; box-sizing: border-box; padding: 15px 0\", \"bbox\": [128, 970, 1024, 187], \"children\": [{\"type\": \"li\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box; font-weight: 600; display: inline-block; font-size: 14px; padding-right: 22px\", \"bbox\": [128, 1119, 125, 23], \"children\": [{\"type\": \"a\", \"content\": \"Old Home Page\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; color: #2ea3f2; box-sizing: border-box; color: #bbb; transition: all 0.4s ease-in-out\", \"bbox\": [128, 1122, 103, 16], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box; font-weight: 600; display: inline-block; font-size: 14px; padding-right: 22px\", \"bbox\": [257, 1119, 137, 23], \"children\": [{\"type\": \"a\", \"content\": \"Old Why Us Page\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; color: #2ea3f2; box-sizing: border-box; color: #bbb; transition: all 0.4s ease-in-out\", \"bbox\": [257, 1122, 115, 16], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box; font-weight: 600; display: inline-block; font-size: 14px; padding-right: 22px\", \"bbox\": [399, 1119, 79, 23], \"children\": [{\"type\": \"a\", \"content\": \"Services\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; color: #2ea3f2; box-sizing: border-box; color: #bbb; transition: all 0.4s ease-in-out\", \"bbox\": [399, 1122, 57, 16], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box; font-weight: 600; display: inline-block; font-size: 14px; padding-right: 22px\", \"bbox\": [482, 1119, 160, 23], \"children\": [{\"type\": \"a\", \"content\": \"Old Contact Us Page\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; color: #2ea3f2; box-sizing: border-box; color: #bbb; transition: all 0.4s ease-in-out\", \"bbox\": [482, 1122, 138, 16], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box; font-weight: 600; display: inline-block; font-size: 14px; padding-right: 22px\", \"bbox\": [647, 1119, 181, 23], \"children\": [{\"type\": \"a\", \"content\": \"Old Privacy Policy Page\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; color: #2ea3f2; box-sizing: border-box; color: #bbb; transition: all 0.4s ease-in-out\", \"bbox\": [647, 1122, 159, 16], \"children\": []}]}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": \"margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box; background-color: #1f1f1f; background-color: rgba(0, 0, 0, 0.32); padding: 15px 0 5px\", \"bbox\": [0, 1158, 1280, 20], \"children\": []}]}]}]}]}]}"},"text":{"kind":"string","value":"\n\nTH-500 | Lamonaca Iron Works

Business Name

Business Name
Address
City, State Zip Code
Phone:
Email:
"},"score":{"kind":"number","value":3,"string":"3"},"scale":{"kind":"list like","value":[1280,1207],"string":"[\n 1280,\n 1207\n]"},"lang":{"kind":"string","value":"en"},"tokens":{"kind":"list like","value":[3599,2372],"string":"[\n 3599,\n 2372\n]"},"hash":{"kind":"string","value":"4294fe86cecbd2937d9920bc798e95136c061b7b92b7e80e7080b238d3519e3d"}}},{"rowIdx":3,"cells":{"image":{"kind":"image","value":{"src":"https://datasets-server.huggingface.co/assets/xcodemind/webcode2m_purified/--/6e1735ac07f6dcb002eb542cf6892e69412dbb33/--/default/train/3/image/image.png?Expires=1755748228&Signature=ar~jR9~I01~DBmbftufZYy0iJu~AqWn8Ygy~ea66it0RfwhV2A3pnGImlFpf1X9LURYgdECqPxw2y3tJOC3S2XzZrl4Zc64luRgF3AjKpdwLjkZA8edYBT-X-XMfzLaS01OhHL0wCd6p2cfRolFs--q1Lypvok-podD100tj-IlGqWCOyh6lNLR2gmRkB7nPDaNaYQlrSYWi7P6NlGawTYA8PbZC-J33LU~Vl~qH1ZzpPAowkY1EQX98aB0RH9O3~VImcGfLtlsPSvep0LefcvJY4TzYXbFSUb2iK6hxOnjKp4FPIhb~mQ3p2x7V-G9~fHnm-BMqi~f6vd3JqpXGfg__&Key-Pair-Id=K3EI6M078Z3AC3","height":1262,"width":1280},"inferredFromUrl":false},"bbox":{"kind":"string","value":"{\"type\": \"body\", \"content\": \"\", \"style\": \"font-family: \\\"Open Sans\\\"; background-color: #000 !important\", \"bbox\": [8, 8, 1264, 1245], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"max-width: 1000px\", \"bbox\": [8, 8, 1000, 1245], \"children\": [{\"type\": \"header\", \"content\": \"\", \"style\": \"background-color: #000\", \"bbox\": [8, 8, 1000, 225], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 8, 1000, 225], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"height: 125px\", \"bbox\": [8, 8, 1000, 125], \"children\": [{\"type\": \"img\", \"content\": \"\", \"style\": \"display: block; margin: 0 auto\", \"bbox\": [8, 8, 1140, 125], \"children\": []}]}, {\"type\": \"a\", \"content\": \"\", \"style\": \"background-color: #fff\", \"bbox\": [8, 133, 42, 16], \"children\": [{\"type\": \"span\", \"content\": \"Menu\", \"style\": null, \"bbox\": [8, 133, 42, 16], \"children\": []}]}, {\"type\": \"nav\", \"content\": \"\", \"style\": null, \"bbox\": [8, 150, 1000, 83], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 150, 1000, 17], \"children\": [{\"type\": \"a\", \"content\": \"Skip to content\", \"style\": null, \"bbox\": [8, 150, 90, 16], \"children\": []}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 182, 1000, 51], \"children\": [{\"type\": \"ul\", \"content\": \"\", \"style\": null, \"bbox\": [8, 182, 1000, 51], \"children\": [{\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 182, 960, 17], \"children\": [{\"type\": \"a\", \"content\": \"Home\", \"style\": null, \"bbox\": [48, 182, 36, 16], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 199, 960, 17], \"children\": [{\"type\": \"a\", \"content\": \"The Panel Jumper\", \"style\": null, \"bbox\": [48, 199, 108, 16], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 216, 960, 17], \"children\": [{\"type\": \"a\", \"content\": \"Perfect Bound Podcast\", \"style\": null, \"bbox\": [48, 216, 136, 16], \"children\": []}]}]}]}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": \"background-color: #fff\", \"bbox\": [8, 248, 1000, 969], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 248, 1000, 969], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 248, 1000, 30], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [8, 261, 29, 16], \"children\": [{\"type\": \"img\", \"content\": \"\", \"style\": null, \"bbox\": [8, 248, 26, 26], \"children\": []}]}, {\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [37, 261, 29, 16], \"children\": [{\"type\": \"img\", \"content\": \"\", \"style\": null, \"bbox\": [37, 248, 26, 26], \"children\": []}]}, {\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [67, 261, 26, 16], \"children\": [{\"type\": \"img\", \"content\": \"\", \"style\": null, \"bbox\": [67, 248, 26, 26], \"children\": []}]}]}, {\"type\": \"section\", \"content\": \"\", \"style\": null, \"bbox\": [8, 296, 1000, 921], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"width: 100%; max-width: 650px; max-width: calc(100% - 350px); color: #555\", \"bbox\": [8, 296, 650, 705], \"children\": [{\"type\": \"article\", \"content\": \"\", \"style\": null, \"bbox\": [8, 296, 650, 347], \"children\": [{\"type\": \"header\", \"content\": \"\", \"style\": null, \"bbox\": [8, 296, 650, 61], \"children\": [{\"type\": \"h2\", \"content\": \"\", \"style\": \"font-family: \\\"Merriweather\\\"; color: #444; color: #444\", \"bbox\": [8, 296, 650, 26], \"children\": [{\"type\": \"a\", \"content\": \"Perfect Bound Podcast \\u2013 Episode 269\", \"style\": \"font-family: \\\"Merriweather\\\"; color: #444\", \"bbox\": [8, 296, 356, 25], \"children\": []}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 341, 650, 17], \"children\": [{\"type\": \"span\", \"content\": \"\", \"style\": null, \"bbox\": [8, 341, 121, 16], \"children\": [{\"type\": \"a\", \"content\": \"thepaneljumper\", \"style\": null, \"bbox\": [29, 341, 93, 16], \"children\": []}, {\"type\": \"span\", \"content\": \"|\", \"style\": null, \"bbox\": [126, 341, 3, 16], \"children\": []}]}, {\"type\": \"time\", \"content\": \"\", \"style\": null, \"bbox\": [133, 341, 72, 16], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [133, 341, 72, 16], \"children\": [{\"type\": \"span\", \"content\": \"10/12/2020\", \"style\": null, \"bbox\": [133, 341, 68, 16], \"children\": []}]}]}, {\"type\": \"span\", \"content\": \"|\", \"style\": null, \"bbox\": [205, 341, 3, 16], \"children\": []}, {\"type\": \"time\", \"content\": \"10/10/2020\", \"style\": null, \"bbox\": [208, 341, 68, 16], \"children\": []}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 358, 650, 237], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [8, 495, 229, 16], \"children\": [{\"type\": \"img\", \"content\": \"\", \"style\": null, \"bbox\": [8, 358, 229, 150], \"children\": []}]}, {\"type\": \"p\", \"content\": \"\", \"style\": \"color: #555\", \"bbox\": [8, 527, 650, 68], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [8, 561, 601, 33], \"children\": [{\"type\": \"span\", \"content\": \"\\u2192\", \"style\": null, \"bbox\": [56, 578, 15, 16], \"children\": []}]}]}]}, {\"type\": \"footer\", \"content\": \"\", \"style\": null, \"bbox\": [8, 610, 650, 34], \"children\": [{\"type\": \"span\", \"content\": \"\", \"style\": null, \"bbox\": [8, 610, 628, 33], \"children\": [{\"type\": \"a\", \"content\": \"comics dungeon\", \"style\": null, \"bbox\": [55, 610, 97, 16], \"children\": []}, {\"type\": \"a\", \"content\": \"coronavirus\", \"style\": null, \"bbox\": [161, 610, 70, 16], \"children\": []}, {\"type\": \"a\", \"content\": \"dc\", \"style\": null, \"bbox\": [239, 610, 14, 16], \"children\": []}, {\"type\": \"a\", \"content\": \"dcbs\", \"style\": null, \"bbox\": [261, 610, 27, 16], \"children\": []}, {\"type\": \"a\", \"content\": \"diamond distribution\", \"style\": null, \"bbox\": [296, 610, 125, 16], \"children\": []}, {\"type\": \"a\", \"content\": \"midtown comics\", \"style\": null, \"bbox\": [429, 610, 99, 16], \"children\": []}, {\"type\": \"a\", \"content\": \"pandemic\", \"style\": null, \"bbox\": [536, 610, 58, 16], \"children\": []}, {\"type\": \"a\", \"content\": \"retail\", \"style\": null, \"bbox\": [601, 610, 30, 16], \"children\": []}, {\"type\": \"a\", \"content\": \"small business\", \"style\": null, \"bbox\": [8, 627, 87, 16], \"children\": []}, {\"type\": \"a\", \"content\": \"trusty henchman\", \"style\": null, \"bbox\": [102, 627, 99, 16], \"children\": []}]}]}]}, {\"type\": \"article\", \"content\": \"\", \"style\": null, \"bbox\": [8, 663, 650, 338], \"children\": [{\"type\": \"header\", \"content\": \"\", \"style\": null, \"bbox\": [8, 663, 650, 61], \"children\": [{\"type\": \"h2\", \"content\": \"\", \"style\": \"font-family: \\\"Merriweather\\\"; color: #444; color: #444\", \"bbox\": [8, 663, 650, 26], \"children\": [{\"type\": \"a\", \"content\": \"The Panel Jumper LITE \\u2013 April 21, 2020\", \"style\": \"font-family: \\\"Merriweather\\\"; color: #444\", \"bbox\": [8, 663, 393, 25], \"children\": []}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 707, 650, 17], \"children\": [{\"type\": \"span\", \"content\": \"\", \"style\": null, \"bbox\": [8, 707, 121, 16], \"children\": [{\"type\": \"a\", \"content\": \"thepaneljumper\", \"style\": null, \"bbox\": [29, 707, 93, 16], \"children\": []}, {\"type\": \"span\", \"content\": \"|\", \"style\": null, \"bbox\": [126, 707, 3, 16], \"children\": []}]}, {\"type\": \"time\", \"content\": \"\", \"style\": null, \"bbox\": [133, 707, 72, 16], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [133, 707, 72, 16], \"children\": [{\"type\": \"span\", \"content\": \"04/21/2020\", \"style\": null, \"bbox\": [133, 707, 68, 16], \"children\": []}]}]}, {\"type\": \"span\", \"content\": \"|\", \"style\": null, \"bbox\": [205, 707, 3, 16], \"children\": []}, {\"type\": \"time\", \"content\": \"09/13/2020\", \"style\": null, \"bbox\": [208, 707, 68, 16], \"children\": []}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 724, 650, 211], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [8, 852, 250, 16], \"children\": [{\"type\": \"img\", \"content\": \"\", \"style\": null, \"bbox\": [8, 724, 250, 141], \"children\": []}]}, {\"type\": \"p\", \"content\": \"\", \"style\": \"color: #555\", \"bbox\": [8, 884, 650, 51], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [513, 918, 122, 16], \"children\": [{\"type\": \"span\", \"content\": \"\\u2192\", \"style\": null, \"bbox\": [620, 918, 15, 16], \"children\": []}]}]}]}, {\"type\": \"footer\", \"content\": \"\", \"style\": null, \"bbox\": [8, 950, 650, 51], \"children\": [{\"type\": \"span\", \"content\": \"\", \"style\": null, \"bbox\": [8, 950, 617, 50], \"children\": [{\"type\": \"a\", \"content\": \"alan moore\", \"style\": null, \"bbox\": [55, 950, 67, 16], \"children\": []}, {\"type\": \"a\", \"content\": \"big numbers\", \"style\": null, \"bbox\": [130, 950, 74, 16], \"children\": []}, {\"type\": \"a\", \"content\": \"boy maximortal\", \"style\": null, \"bbox\": [212, 950, 95, 16], \"children\": []}, {\"type\": \"a\", \"content\": \"charles soule\", \"style\": null, \"bbox\": [315, 950, 77, 16], \"children\": []}, {\"type\": \"a\", \"content\": \"coles corner\", \"style\": null, \"bbox\": [400, 950, 72, 16], \"children\": []}, {\"type\": \"a\", \"content\": \"curse words\", \"style\": null, \"bbox\": [480, 950, 72, 16], \"children\": []}, {\"type\": \"a\", \"content\": \"dc\", \"style\": null, \"bbox\": [559, 950, 14, 16], \"children\": []}, {\"type\": \"a\", \"content\": \"dcbs\", \"style\": null, \"bbox\": [581, 950, 27, 16], \"children\": []}, {\"type\": \"a\", \"content\": \"diamond\", \"style\": null, \"bbox\": [8, 967, 52, 16], \"children\": []}, {\"type\": \"a\", \"content\": \"justice league dark\", \"style\": null, \"bbox\": [68, 967, 112, 16], \"children\": []}, {\"type\": \"a\", \"content\": \"midtown\", \"style\": null, \"bbox\": [187, 967, 53, 16], \"children\": []}, {\"type\": \"a\", \"content\": \"Print vs digital\", \"style\": null, \"bbox\": [248, 967, 88, 16], \"children\": []}, {\"type\": \"a\", \"content\": \"rick veitch\", \"style\": null, \"bbox\": [344, 967, 63, 16], \"children\": []}, {\"type\": \"a\", \"content\": \"ryan browne\", \"style\": null, \"bbox\": [415, 967, 75, 16], \"children\": []}, {\"type\": \"a\", \"content\": \"san diego comic con\", \"style\": null, \"bbox\": [498, 967, 122, 16], \"children\": []}, {\"type\": \"a\", \"content\": \"sdcc\", \"style\": null, \"bbox\": [8, 984, 26, 16], \"children\": []}, {\"type\": \"a\", \"content\": \"tales from the loop\", \"style\": null, \"bbox\": [42, 984, 112, 16], \"children\": []}]}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": \"width: 350px; font-family: \\\"Open Sans\\\"\", \"bbox\": [8, 1016, 350, 201], \"children\": [{\"type\": \"ul\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1016, 350, 201], \"children\": [{\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 1016, 310, 43], \"children\": [{\"type\": \"form\", \"content\": \"\", \"style\": null, \"bbox\": [48, 1016, 310, 43], \"children\": [{\"type\": \"label\", \"content\": \"\", \"style\": null, \"bbox\": [48, 1018, 245, 16], \"children\": [{\"type\": \"span\", \"content\": \"Search for:\", \"style\": null, \"bbox\": [48, 1018, 66, 16], \"children\": []}, {\"type\": \"input\", \"content\": \"\", \"style\": \"font-family: \\\"Open Sans\\\";\", \"bbox\": [117, 1016, 176, 22], \"children\": []}]}, {\"type\": \"button\", \"content\": \"\", \"style\": null, \"bbox\": [48, 1038, 77, 21], \"children\": [{\"type\": \"span\", \"content\": \"Search\", \"style\": null, \"bbox\": [56, 1041, 42, 15], \"children\": []}]}]}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 1077, 310, 140], \"children\": [{\"type\": \"h3\", \"content\": \"Explore\\u2026\", \"style\": \"margin-right: -2em; text-align: left; background-color: #444; color: #FFF\", \"bbox\": [48, 1077, 345, 21], \"children\": []}, {\"type\": \"ul\", \"content\": \"\", \"style\": null, \"bbox\": [48, 1115, 310, 102], \"children\": [{\"type\": \"li\", \"content\": \"\", \"style\": \"background-position: left calc(2em / 2 - 4px)\", \"bbox\": [88, 1115, 270, 17], \"children\": [{\"type\": \"a\", \"content\": \"ask the panel jumper\", \"style\": null, \"bbox\": [88, 1115, 124, 16], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"background-position: left calc(2em / 2 - 4px)\", \"bbox\": [88, 1132, 270, 17], \"children\": [{\"type\": \"a\", \"content\": \"jose and the hawk\", \"style\": null, \"bbox\": [88, 1132, 107, 16], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"background-position: left calc(2em / 2 - 4px)\", \"bbox\": [88, 1149, 270, 17], \"children\": [{\"type\": \"a\", \"content\": \"perfect bound podcast\", \"style\": null, \"bbox\": [88, 1149, 132, 16], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"background-position: left calc(2em / 2 - 4px)\", \"bbox\": [88, 1166, 270, 17], \"children\": [{\"type\": \"a\", \"content\": \"the panel jumper\", \"style\": null, \"bbox\": [88, 1166, 100, 16], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"background-position: left calc(2em / 2 - 4px)\", \"bbox\": [88, 1183, 270, 17], \"children\": [{\"type\": \"a\", \"content\": \"the panel jumper lite\", \"style\": null, \"bbox\": [88, 1183, 123, 16], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": \"background-position: left calc(2em / 2 - 4px)\", \"bbox\": [88, 1200, 270, 17], \"children\": [{\"type\": \"a\", \"content\": \"the panel jumper live\", \"style\": null, \"bbox\": [88, 1200, 127, 16], \"children\": []}]}]}]}]}]}]}]}]}, {\"type\": \"footer\", \"content\": \"\", \"style\": \"background-color: #fff\", \"bbox\": [8, 1232, 1000, 21], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"background-color: #fff\", \"bbox\": [8, 1232, 1000, 21], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"text-align:center;clear:both;padding-top:4px;\", \"bbox\": [8, 1232, 1000, 21], \"children\": [{\"type\": \"a\", \"content\": \"Mantra\", \"style\": null, \"bbox\": [483, 1236, 43, 16], \"children\": []}, {\"type\": \"a\", \"content\": \"WordPress.\", \"style\": null, \"bbox\": [545, 1236, 68, 16], \"children\": []}]}]}]}]}]}"},"text":{"kind":"string","value":"\n\ndcbs

Tag Archives: dcbs

\n\t\t\t\t\tPerfect Bound Podcast – Episode 269\t\t\t\t

The Death of Retail Comics Dungeon had always been a partner with The Panel Jumper to produce the Perfect Bound Podcast. Sadly, this past summer the store had to close. Today on our first show in six months, the gang welcome c4c3.org founder and former owner of Comics Dungeon and… Continue reading

\n\t\t\t\t\tThe Panel Jumper LITE – April 21, 2020\t\t\t\t

Today on the show, Cole and Ben once again get together and talk about Panel Jumper and comic book news, including: • The latest Panel Jumper episode: Cole’s Corner • Future Panel Jumper episodes • Alan Moore’s “Big Numbers” • Plans for future Panel Jumper Live shows • San Diego… Continue reading

"},"score":{"kind":"number","value":3,"string":"3"},"scale":{"kind":"list like","value":[1280,1262],"string":"[\n 1280,\n 1262\n]"},"lang":{"kind":"string","value":"en"},"tokens":{"kind":"list like","value":[480,2256],"string":"[\n 480,\n 2256\n]"},"hash":{"kind":"string","value":"4c387f75332901afcb58f7b7e0bae2f2a71454756b7fb4f5a81779fa1118ed6e"}}},{"rowIdx":4,"cells":{"image":{"kind":"image","value":{"src":"https://datasets-server.huggingface.co/assets/xcodemind/webcode2m_purified/--/6e1735ac07f6dcb002eb542cf6892e69412dbb33/--/default/train/4/image/image.png?Expires=1755748228&Signature=xktipbtSuHSv4AoIna122fQNOWBL2xuM8jcbuM9vv6QFpdITTD0KO4-I5VcFFs7~9FLeekPjIjWGeb6YPbqJaEyXM0~uT1uUxW~aRcJEUWXHMVCRvN2t-4wWSAVnU2FX~jqm0Z4EUBh5gHTJdPwz28pdfUGNBDSqPujFLqVXePbU0eVvEzk5CefYJhSWNrr8dYydjeyvKxl5kmqPw45tyvklprdnafqXihupx~mHupBHyWXm6eqaLPIod2EfBENca-7~2s~1BOY56Z0maoHy4IvBmJ8Pw82IVZJjQhrMdlxUhDymjwRs5j6g4u~kpnx0o90JKl5mtdVL5GuSzP-JHQ__&Key-Pair-Id=K3EI6M078Z3AC3","height":2518,"width":1280},"inferredFromUrl":false},"bbox":{"kind":"string","value":"{\"type\": \"body\", \"content\": \"\", \"style\": \"background-position: center top; background-size: cover; background-repeat: no-repeat; background-attachment: fixed\", \"bbox\": [8, 16, 1264, 2493], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 16, 1264, 2493], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 16, 1264, 72], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 16, 1264, 72], \"children\": [{\"type\": \"ul\", \"content\": \"\", \"style\": null, \"bbox\": [8, 16, 1264, 72], \"children\": [{\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 16, 1224, 18], \"children\": [{\"type\": \"a\", \"content\": \"About the Two Old Farts\", \"style\": null, \"bbox\": [48, 16, 159, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 34, 1224, 18], \"children\": [{\"type\": \"a\", \"content\": \"Podcast\", \"style\": null, \"bbox\": [48, 34, 49, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 52, 1224, 18], \"children\": [{\"type\": \"a\", \"content\": \"Contact\", \"style\": null, \"bbox\": [48, 52, 49, 17], \"children\": []}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 70, 1224, 18], \"children\": [{\"type\": \"a\", \"content\": \"RSS Feed\", \"style\": null, \"bbox\": [48, 70, 63, 17], \"children\": []}]}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 104, 1264, 2387], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 104, 1264, 2353], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 104, 1264, 18], \"children\": [{\"type\": \"a\", \"content\": \"Podcasts, Season 1\", \"style\": null, \"bbox\": [8, 104, 121, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"david clink\", \"style\": null, \"bbox\": [133, 104, 71, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"episode 11\", \"style\": null, \"bbox\": [204, 104, 68, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"horror\", \"style\": null, \"bbox\": [273, 104, 39, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"miniaturization\", \"style\": null, \"bbox\": [313, 104, 97, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"podcasts\", \"style\": null, \"bbox\": [410, 104, 55, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"science fiction\", \"style\": null, \"bbox\": [466, 104, 92, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"season 1\", \"style\": null, \"bbox\": [558, 104, 54, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"troy harkin\", \"style\": null, \"bbox\": [613, 104, 70, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"two old farts\", \"style\": null, \"bbox\": [684, 104, 80, 17], \"children\": []}]}, {\"type\": \"h1\", \"content\": \"Season 1, Episode 11\\u2014\\u201dShrinkage \\u2013 pt. 2\\u2033\", \"style\": null, \"bbox\": [8, 143, 1264, 37], \"children\": []}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 201, 1264, 18], \"children\": [{\"type\": \"span\", \"content\": \"\", \"style\": null, \"bbox\": [8, 201, 110, 17], \"children\": [{\"type\": \"a\", \"content\": \"August 21, 2021\", \"style\": null, \"bbox\": [8, 201, 110, 17], \"children\": []}]}, {\"type\": \"span\", \"content\": \"\", \"style\": null, \"bbox\": [118, 201, 44, 17], \"children\": [{\"type\": \"span\", \"content\": \"\", \"style\": null, \"bbox\": [118, 201, 40, 17], \"children\": [{\"type\": \"a\", \"content\": \"admin\", \"style\": null, \"bbox\": [118, 201, 40, 17], \"children\": []}]}]}, {\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [162, 201, 392, 17], \"children\": [{\"type\": \"span\", \"content\": \"on Season 1, Episode 11\\u2014\\u201dShrinkage \\u2013 pt. 2\\u2033\", \"style\": null, \"bbox\": [255, 201, 299, 17], \"children\": []}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 227, 1264, 1911], \"children\": [{\"type\": \"hr\", \"content\": \"\", \"style\": \"border: none; border-bottom: 2px solid; margin-left: auto; margin-right: auto\", \"bbox\": [8, 227, 1264, 2], \"children\": []}, {\"type\": \"figure\", \"content\": \"\", \"style\": \"margin: 0 0 1em\", \"bbox\": [8, 237, 1264, 469], \"children\": [{\"type\": \"img\", \"content\": \"\", \"style\": null, \"bbox\": [8, 237, 700, 465], \"children\": []}]}, {\"type\": \"hr\", \"content\": \"\", \"style\": \"border: none; border-bottom: 2px solid; margin-left: auto; margin-right: auto\", \"bbox\": [8, 722, 1264, 2], \"children\": []}, {\"type\": \"hr\", \"content\": \"\", \"style\": \"border: none; border-bottom: 2px solid; margin-left: auto; margin-right: auto\", \"bbox\": [8, 740, 1264, 2], \"children\": []}, {\"type\": \"div\", \"content\": \"\", \"style\": \"display: flex; flex-wrap: wrap; align-items: center; flex-wrap: nowrap\", \"bbox\": [8, 750, 1264, 568], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"flex-basis:33.33%; margin: 0\", \"bbox\": [8, 750, 700, 568], \"children\": [{\"type\": \"figure\", \"content\": \"\", \"style\": \"margin: 0 0 1em\", \"bbox\": [8, 750, 700, 552], \"children\": [{\"type\": \"img\", \"content\": \"\", \"style\": null, \"bbox\": [8, 750, 700, 516], \"children\": []}, {\"type\": \"figcaption\", \"content\": \"\", \"style\": \"color: #555; font-size: 13px; text-align: center\", \"bbox\": [8, 1270, 700, 32], \"children\": [{\"type\": \"em\", \"content\": \"Land of the Giants\", \"style\": null, \"bbox\": [309, 1270, 97, 15], \"children\": []}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": \"flex-basis:66.67%; margin: 0\", \"bbox\": [708, 910, 564, 248], \"children\": [{\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [708, 926, 564, 216], \"children\": []}]}]}, {\"type\": \"hr\", \"content\": \"\", \"style\": \"border: none; border-bottom: 2px solid; margin-left: auto; margin-right: auto\", \"bbox\": [8, 1326, 1264, 2], \"children\": []}, {\"type\": \"div\", \"content\": \"\", \"style\": \"display: flex; flex-wrap: wrap; align-items: center; flex-wrap: nowrap\", \"bbox\": [8, 1336, 1264, 561], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"flex-basis:33.33%; margin: 0\", \"bbox\": [8, 1336, 700, 561], \"children\": [{\"type\": \"figure\", \"content\": \"\", \"style\": \"margin: 0 0 1em\", \"bbox\": [8, 1336, 700, 545], \"children\": [{\"type\": \"img\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1336, 700, 525], \"children\": []}, {\"type\": \"figcaption\", \"content\": \"Cam P. Fire\", \"style\": \"color: #555; font-size: 13px; text-align: center\", \"bbox\": [8, 1865, 700, 16], \"children\": []}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": \"flex-basis:66.66%; margin: 0\", \"bbox\": [708, 1556, 564, 122], \"children\": [{\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [708, 1572, 564, 90], \"children\": []}]}]}, {\"type\": \"hr\", \"content\": \"\", \"style\": \"border: none; border-bottom: 2px solid; margin-left: auto; margin-right: auto\", \"bbox\": [8, 1905, 1264, 2], \"children\": []}, {\"type\": \"h3\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1926, 1264, 22], \"children\": [{\"type\": \"span\", \"content\": \"2of\", \"style\": \"color: var(--wp--preset--color--luminous-vivid-orange) !important\", \"bbox\": [112, 1926, 24, 21], \"children\": []}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1967, 1264, 18], \"children\": [{\"type\": \"a\", \"content\": \"2of_S01_E11_Shrinkage_pt2-1\", \"style\": null, \"bbox\": [8, 1967, 202, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"Download\", \"style\": \"background: #32373c; color: #fff; text-decoration: none\", \"bbox\": [210, 1967, 66, 17], \"children\": []}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 2004, 1264, 94], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 2004, 1264, 94], \"children\": [{\"type\": \"h3\", \"content\": \"Share this:\", \"style\": null, \"bbox\": [8, 2004, 1264, 22], \"children\": []}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 2044, 1264, 54], \"children\": [{\"type\": \"ul\", \"content\": \"\", \"style\": null, \"bbox\": [8, 2044, 1264, 54], \"children\": [{\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 2044, 1224, 18], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [48, 2044, 45, 17], \"children\": [{\"type\": \"span\", \"content\": \"Twitter\", \"style\": null, \"bbox\": [48, 2044, 45, 17], \"children\": []}]}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 2062, 1224, 18], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [48, 2062, 62, 17], \"children\": [{\"type\": \"span\", \"content\": \"Facebook\", \"style\": null, \"bbox\": [48, 2062, 62, 17], \"children\": []}]}]}, {\"type\": \"li\", \"content\": \"\", \"style\": null, \"bbox\": [48, 2080, 1224, 18], \"children\": []}]}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 2117, 1264, 22], \"children\": [{\"type\": \"h3\", \"content\": \"\", \"style\": null, \"bbox\": [8, 2117, 1264, 22], \"children\": [{\"type\": \"em\", \"content\": \"Related\", \"style\": null, \"bbox\": [8, 2117, 58, 21], \"children\": []}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 2158, 1264, 299], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 2158, 1264, 299], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 2158, 1264, 299], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 2158, 1264, 299], \"children\": [{\"type\": \"h3\", \"content\": \"\", \"style\": null, \"bbox\": [8, 2158, 1264, 22], \"children\": []}, {\"type\": \"form\", \"content\": \"\", \"style\": null, \"bbox\": [8, 2198, 1264, 259], \"children\": [{\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [8, 2198, 1264, 18], \"children\": [{\"type\": \"span\", \"content\": \"Your email address will not be published.\", \"style\": null, \"bbox\": [8, 2198, 265, 17], \"children\": []}, {\"type\": \"span\", \"content\": \"\", \"style\": null, \"bbox\": [277, 2198, 185, 17], \"children\": [{\"type\": \"span\", \"content\": \"*\", \"style\": null, \"bbox\": [455, 2198, 8, 17], \"children\": []}]}]}, {\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [8, 2232, 1264, 40], \"children\": [{\"type\": \"label\", \"content\": \"\", \"style\": null, \"bbox\": [8, 2254, 75, 17], \"children\": [{\"type\": \"span\", \"content\": \"*\", \"style\": null, \"bbox\": [75, 2254, 8, 17], \"children\": []}]}, {\"type\": \"textarea\", \"content\": \"\", \"style\": \"\", \"bbox\": [87, 2232, 181, 36], \"children\": []}]}, {\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [8, 2288, 1264, 21], \"children\": [{\"type\": \"label\", \"content\": \"\", \"style\": null, \"bbox\": [8, 2289, 50, 17], \"children\": [{\"type\": \"span\", \"content\": \"*\", \"style\": null, \"bbox\": [50, 2289, 8, 17], \"children\": []}]}, {\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [62, 2288, 177, 21], \"children\": []}]}, {\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [8, 2325, 1264, 21], \"children\": [{\"type\": \"label\", \"content\": \"\", \"style\": null, \"bbox\": [8, 2326, 50, 17], \"children\": [{\"type\": \"span\", \"content\": \"*\", \"style\": null, \"bbox\": [50, 2326, 8, 17], \"children\": []}]}, {\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [62, 2325, 177, 21], \"children\": []}]}, {\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [8, 2362, 1264, 21], \"children\": [{\"type\": \"label\", \"content\": \"Website\", \"style\": null, \"bbox\": [8, 2363, 51, 17], \"children\": []}, {\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [63, 2362, 177, 21], \"children\": []}]}, {\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [8, 2399, 1264, 21], \"children\": [{\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [8, 2399, 177, 21], \"children\": []}, {\"type\": \"label\", \"content\": \"Save my name, email, and website in this browser for the next time I comment.\", \"style\": null, \"bbox\": [189, 2400, 507, 17], \"children\": []}]}, {\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [8, 2436, 1264, 21], \"children\": [{\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [8, 2436, 177, 21], \"children\": []}, {\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [189, 2436, 177, 21], \"children\": []}, {\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [370, 2436, 177, 21], \"children\": []}]}]}]}]}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 2473, 1264, 18], \"children\": [{\"type\": \"a\", \"content\": \"Season 1, Episode 10\\u2014\\u201dShrinkage \\u2013 pt. 1\\u2033\", \"style\": null, \"bbox\": [20, 2473, 275, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"Season 1, Episode 12\\u2014\\u201dBack to School\\u201d\", \"style\": null, \"bbox\": [325, 2473, 264, 17], \"children\": []}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 2491, 1264, 18], \"children\": [{\"type\": \"a\", \"content\": \"Wordpress\", \"style\": null, \"bbox\": [87, 2491, 68, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"RT\", \"style\": null, \"bbox\": [295, 2491, 19, 17], \"children\": []}]}]}]}"},"text":{"kind":"string","value":"\n\nSeason 1, Episode 11—”Shrinkage – pt. 2″

Season 1, Episode 11—”Shrinkage – pt. 2″




Land of the Giants
(Image: creative commons license)

“Shrinkage” could not be held to one episode. The smaller something becomes, we guess, the more you need to to talk about it.

For those who missed part 1, Shrinkage is another term for miniaturization. making things small. Imagine if you are an inch tall, and you have to fight off a spider, or a cat.

Troy Harkin and David Clink are at the cottage, but this time they are at a campfire, as they continue to talk about shrinkage, while being eaten alive by insects.

Troy Harkin will sing an original song about shrinkage. Not to be missed.

Our special guest is Cam P. Fire. See author photo and bio below..


Cam P. Fire



Cam P. Fire is hot right now.

His favorite MASH character is major Burns.


Listen to the 2of podcast online, or download the episode to your computer using the Download icon!

Share this:

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

    \n\t\tPowered by Wordpress.\n\t\tRedesign Theme by RT
    "},"score":{"kind":"number","value":3,"string":"3"},"scale":{"kind":"list like","value":[1280,2518],"string":"[\n 1280,\n 2518\n]"},"lang":{"kind":"string","value":"en"},"tokens":{"kind":"list like","value":[302,2587],"string":"[\n 302,\n 2587\n]"},"hash":{"kind":"string","value":"78b051071e23a2588840b09d29ae1bcb97a880696440c00202e29785301f63ea"}}},{"rowIdx":5,"cells":{"image":{"kind":"image","value":{"src":"https://datasets-server.huggingface.co/assets/xcodemind/webcode2m_purified/--/6e1735ac07f6dcb002eb542cf6892e69412dbb33/--/default/train/5/image/image.png?Expires=1755748228&Signature=hkSD181NQssFTu6lHBHYat~al3IllHEK~EQDQEopyAm4g1dN6UXlkJbCvGYmHXWtFAKEzTUYI-IIHE5uWK1V0en~-F1HOAdoBldrs2IzvOPCALP4YE5GvPShRu4GyoCEEQkejx0B6WAJyfJwLEsa-eah7A0UItCTpRq9JkHQakDLjparKR2-297I7HKxh1gzHR00-bRBo1H2cj4s2a-n6IMHTGO9XpLJP-mxti00aSr5IrGZy3LbtFVJleywsQDfitSWiqltN7KR76AMbRjoJePPS~x8mwfUeCuFr-0~Aq-5SqeREkbeUZwyGoUV4VGw0EX2iNWdNb4YM-uYSaC73w__&Key-Pair-Id=K3EI6M078Z3AC3","height":1235,"width":1280},"inferredFromUrl":false},"bbox":{"kind":"string","value":"{\"type\": \"body\", \"content\": \"\", \"style\": null, \"bbox\": [8, 8, 1264, 1219], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": \"z-index: 9000; position: fixed; padding: 1em 1.8em; color: rgb(255, 255, 255); background-color: rgb(37, 46, 57); font-size: 12px\", \"bbox\": [8, 8, 1272, 151], \"children\": [{\"type\": \"h1\", \"content\": \"Ce site web utilise les cookies.\", \"style\": \"color: rgb(255, 255, 255); font-size: 1.5em; font-weight: bold; margin-bottom: 0.7em\", \"bbox\": [29, 32, 1228, 21], \"children\": []}, {\"type\": \"p\", \"content\": \"Les donn\\u00e9es stock\\u00e9es par ces cookies nous permermettent de personnaliser le contenu des annonces,\\n d'offrir des fonctionnalit\\u00e9s relatives aux r\\u00e9seaux sociaux et d'analyser notre trafic.\\n Nous partageons \\u00e9galement certains cookies et des informations sur l'utilisation de notre site avec nos partenaires de m\\u00e9dias sociaux, de publicit\\u00e9 et d'analyse,\\n qui peuvent combiner celles-ci avec d'autres informations que vous leur avez fournies ou qu'ils ont collect\\u00e9es lors de votre utilisation de leurs services. Nos partenaires sont Google et ses partenaires tiers.\", \"style\": \"font-size: 1em; margin-bottom: 1em\", \"bbox\": [29, 65, 1228, 45], \"children\": []}, {\"type\": \"div\", \"content\": \"\", \"style\": \"display: flex\", \"bbox\": [29, 122, 1228, 24], \"children\": [{\"type\": \"a\", \"content\": \"Plus d'informations\", \"style\": \"background-color: rgb(58, 205, 246); border-radius: 5px; color: rgb(255, 255, 255); cursor: pointer; font-weight: 700; padding: 0.4em 0.8em; text-decoration: none; white-space: nowrap; margin-right: 1em\", \"bbox\": [29, 122, 120, 24], \"children\": []}, {\"type\": \"a\", \"content\": \"Refuser\", \"style\": \"background-color: rgb(58, 205, 246); border-radius: 5px; color: rgb(255, 255, 255); cursor: pointer; font-weight: 700; padding: 0.4em 0.8em; text-decoration: none; white-space: nowrap; margin-right: 1em\", \"bbox\": [161, 122, 59, 24], \"children\": []}, {\"type\": \"a\", \"content\": \"Accepter\", \"style\": \"background-color: rgb(58, 205, 246); border-radius: 5px; color: rgb(255, 255, 255); cursor: pointer; font-weight: 700; padding: 0.4em 0.8em; text-decoration: none; white-space: nowrap\", \"bbox\": [232, 122, 65, 24], \"children\": []}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 8, 1264, 180], \"children\": [{\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 8, 1264, 114], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [8, 104, 943, 17], \"children\": [{\"type\": \"img\", \"content\": \"\", \"style\": null, \"bbox\": [8, 8, 943, 110], \"children\": []}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 140, 1264, 24], \"children\": [{\"type\": \"table\", \"content\": \"\", \"style\": null, \"bbox\": [8, 140, 1264, 24], \"children\": [{\"type\": \"tbody\", \"content\": \"\", \"style\": null, \"bbox\": [10, 142, 1260, 20], \"children\": [{\"type\": \"tr\", \"content\": \"\", \"style\": null, \"bbox\": [10, 142, 1260, 20], \"children\": [{\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [10, 142, 6, 20], \"children\": []}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [18, 142, 1251, 20], \"children\": [{\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [19, 143, 26, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [54, 143, 42, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [105, 143, 42, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [155, 143, 106, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [266, 143, 35, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [305, 143, 76, 17], \"children\": []}]}]}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 164, 1264, 24], \"children\": [{\"type\": \"table\", \"content\": \"\", \"style\": null, \"bbox\": [8, 164, 1264, 24], \"children\": [{\"type\": \"tbody\", \"content\": \"\", \"style\": null, \"bbox\": [10, 166, 1260, 20], \"children\": [{\"type\": \"tr\", \"content\": \"\", \"style\": null, \"bbox\": [10, 166, 1260, 20], \"children\": [{\"type\": \"td\", \"content\": \"Derni\\u00e8re visite: il y a moins d\\u2019une minute\", \"style\": null, \"bbox\": [10, 166, 665, 20], \"children\": []}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [677, 166, 592, 20], \"children\": []}]}]}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 204, 1264, 932], \"children\": [{\"type\": \"table\", \"content\": \"\", \"style\": \"margin-top: 5px;\", \"bbox\": [8, 227, 1264, 90], \"children\": [{\"type\": \"tbody\", \"content\": \"\", \"style\": null, \"bbox\": [10, 229, 1260, 86], \"children\": [{\"type\": \"tr\", \"content\": \"\", \"style\": null, \"bbox\": [10, 229, 1260, 86], \"children\": [{\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [10, 229, 1260, 86], \"children\": [{\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [11, 246, 1258, 18], \"children\": [{\"type\": \"a\", \"content\": \"Index du forum\", \"style\": null, \"bbox\": [11, 246, 99, 17], \"children\": []}]}, {\"type\": \"p\", \"content\": \"Heures au format UTC + 1 heure\", \"style\": null, \"bbox\": [11, 280, 1258, 18], \"children\": []}]}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 335, 1264, 688], \"children\": [{\"type\": \"form\", \"content\": \"\", \"style\": null, \"bbox\": [8, 335, 1264, 670], \"children\": [{\"type\": \"table\", \"content\": \"\", \"style\": null, \"bbox\": [8, 335, 1264, 670], \"children\": [{\"type\": \"tbody\", \"content\": \"\", \"style\": null, \"bbox\": [10, 337, 1260, 666], \"children\": [{\"type\": \"tr\", \"content\": \"\", \"style\": null, \"bbox\": [10, 337, 1260, 20], \"children\": [{\"type\": \"th\", \"content\": \"Rechercher\", \"style\": null, \"bbox\": [10, 337, 500, 20], \"children\": []}]}, {\"type\": \"tr\", \"content\": \"\", \"style\": null, \"bbox\": [10, 359, 1260, 101], \"children\": [{\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [10, 359, 500, 101], \"children\": [{\"type\": \"b\", \"content\": \"Recherche par mots-cl\\u00e9s:\", \"style\": null, \"bbox\": [11, 364, 171, 17], \"children\": []}, {\"type\": \"span\", \"content\": \"\", \"style\": null, \"bbox\": [11, 382, 494, 71], \"children\": [{\"type\": \"strong\", \"content\": \"+\", \"style\": null, \"bbox\": [76, 382, 9, 17], \"children\": []}, {\"type\": \"strong\", \"content\": \"-\", \"style\": null, \"bbox\": [347, 382, 5, 17], \"children\": []}, {\"type\": \"strong\", \"content\": \"|\", \"style\": null, \"bbox\": [339, 400, 3, 17], \"children\": []}]}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [512, 359, 327, 101], \"children\": [{\"type\": \"input\", \"content\": \"\", \"style\": \"width: 300px;\", \"bbox\": [513, 360, 308, 21], \"children\": []}, {\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [513, 381, 177, 21], \"children\": []}, {\"type\": \"span\", \"content\": \"Rechercher tous les termes\", \"style\": null, \"bbox\": [513, 382, 306, 37], \"children\": []}, {\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [513, 420, 177, 21], \"children\": []}, {\"type\": \"span\", \"content\": \"Rechercher n\\u2019importe lequel de ces termes\", \"style\": null, \"bbox\": [513, 421, 320, 37], \"children\": []}]}]}, {\"type\": \"tr\", \"content\": \"\", \"style\": null, \"bbox\": [10, 462, 1260, 38], \"children\": [{\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [10, 462, 500, 38], \"children\": [{\"type\": \"b\", \"content\": \"Rechercher par auteur:\", \"style\": null, \"bbox\": [11, 463, 160, 17], \"children\": []}, {\"type\": \"span\", \"content\": \"Utilisez un * comme joker pour des recherches partielles.\", \"style\": null, \"bbox\": [11, 481, 367, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [512, 462, 327, 38], \"children\": [{\"type\": \"input\", \"content\": \"\", \"style\": \"width: 300px;\", \"bbox\": [513, 470, 308, 21], \"children\": []}]}]}, {\"type\": \"tr\", \"content\": \"\", \"style\": null, \"bbox\": [10, 502, 1260, 38], \"children\": [{\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [10, 502, 500, 38], \"children\": [{\"type\": \"b\", \"content\": \"Recherche par attribut:\", \"style\": null, \"bbox\": [11, 503, 162, 17], \"children\": []}, {\"type\": \"span\", \"content\": \"S\\u00e9lectionnez l\\u2019attribut que vous souhaitez rechercher\", \"style\": null, \"bbox\": [11, 521, 338, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [512, 502, 327, 38], \"children\": [{\"type\": \"select\", \"content\": \"\", \"style\": null, \"bbox\": [513, 511, 160, 19], \"children\": [{\"type\": \"option\", \"content\": \"S\\u00e9lectionner un attribut\", \"style\": \"font-weight:bold;\", \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"[Probl\\u00e8me]\", \"style\": \"color:#ff9900; font-weight:bold;\", \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"[R\\u00e9novation]\", \"style\": \"color:#ff9900; font-weight:bold;\", \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"[Ebay]\", \"style\": \"color:#3300ff; font-weight:bold;\", \"bbox\": [0, 0, 0, 0], \"children\": []}]}]}]}, {\"type\": \"tr\", \"content\": \"\", \"style\": null, \"bbox\": [10, 542, 1260, 74], \"children\": [{\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [10, 542, 500, 74], \"children\": [{\"type\": \"b\", \"content\": \"Rechercher dans les forums:\", \"style\": null, \"bbox\": [11, 543, 194, 17], \"children\": []}, {\"type\": \"span\", \"content\": \"Choisissez le forum ou les forums dans le(s)quel(s) vous souhaitez effectuer une recherche. Les sous-forums sont automatiquement inclus si vous ne d\\u00e9sactivez pas l\\u2019option ci-dessous \\u00ab\\u00a0Rechercher dans les sous-forums\\u00a0\\u00bb.\", \"style\": null, \"bbox\": [11, 561, 487, 53], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [512, 542, 327, 74], \"children\": [{\"type\": \"select\", \"content\": \"\", \"style\": null, \"bbox\": [513, 569, 325, 19], \"children\": [{\"type\": \"option\", \"content\": \"Tutoriels & Guides d'installation\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"Tutos - M\\u00e9canique\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"Tutos - Trains roulants\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"Tutos - Electricit\\u00e9 & Electronique\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"Tutos - OBD\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"Tutos - Ventilation - Climatisation\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"Tutos - Int\\u00e9rieur\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"Tutos - Ext\\u00e9rieur\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"Tutos - Autres\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"Rassemblement National Golf IV\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"16\\u00e8me Rassemblement National Golf IV (2022)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"Archive des Rassemblements Nationaux Golf IV\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"15\\u00e8me Rassemblement National Golf IV (2020)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"14\\u00e8me Rassemblement National Golf IV (2019)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"13\\u00e8me Rassemblement National Golf IV (2018)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"12\\u00e8me Rassemblement National Golf IV (2017)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"11\\u00e8me Rassemblement National Golf IV (2016)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"10\\u00e8me Rassemblement National Golf IV (2015)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"9\\u00e8me Rassemblement National Golf IV (2014)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"8\\u00e8me Rassemblement National Golf IV (2013)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"7\\u00e8me Rassemblement National Golf IV (2012)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"6\\u00e8me Rassemblement National Golf IV (2011)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"5\\u00e8me Rassemblement National Golf IV (2010)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"4\\u00e8me Rassemblement National Golf IV (2009)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"3eme Rassemblement National Golf IV (2008)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2eme Rassemblement National Golf IV (2007)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"1er Rassemblement National Golf IV (2006)\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}]}]}]}, {\"type\": \"tr\", \"content\": \"\", \"style\": null, \"bbox\": [10, 618, 1260, 20], \"children\": [{\"type\": \"th\", \"content\": \"Options de recherche\", \"style\": null, \"bbox\": [10, 618, 500, 20], \"children\": []}]}, {\"type\": \"tr\", \"content\": \"\", \"style\": null, \"bbox\": [10, 640, 1260, 176], \"children\": [{\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [10, 640, 500, 176], \"children\": [{\"type\": \"b\", \"content\": \"Rechercher dans les sous-forums:\", \"style\": null, \"bbox\": [11, 719, 229, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [512, 640, 327, 176], \"children\": [{\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [513, 707, 177, 21], \"children\": []}, {\"type\": \"span\", \"content\": \"Oui\", \"style\": null, \"bbox\": [694, 708, 24, 17], \"children\": []}, {\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [513, 728, 177, 21], \"children\": []}, {\"type\": \"span\", \"content\": \"Non\", \"style\": null, \"bbox\": [694, 729, 27, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [841, 640, 247, 176], \"children\": [{\"type\": \"b\", \"content\": \"Rechercher dans:\", \"style\": null, \"bbox\": [842, 719, 119, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [1090, 640, 179, 176], \"children\": [{\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [1091, 641, 177, 21], \"children\": []}, {\"type\": \"span\", \"content\": \"Titres et messages\", \"style\": null, \"bbox\": [1091, 662, 116, 17], \"children\": []}, {\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [1091, 680, 177, 21], \"children\": []}, {\"type\": \"span\", \"content\": \"Messages uniquement\", \"style\": null, \"bbox\": [1091, 701, 141, 17], \"children\": []}, {\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [1091, 719, 177, 21], \"children\": []}, {\"type\": \"span\", \"content\": \"Titres uniquement\", \"style\": null, \"bbox\": [1091, 740, 116, 17], \"children\": []}, {\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [1091, 758, 177, 21], \"children\": []}, {\"type\": \"span\", \"content\": \"Premier message des sujets uniquement\", \"style\": null, \"bbox\": [1091, 779, 174, 35], \"children\": []}]}]}, {\"type\": \"tr\", \"content\": \"\", \"style\": null, \"bbox\": [10, 818, 1260, 80], \"children\": [{\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [10, 818, 500, 80], \"children\": [{\"type\": \"b\", \"content\": \"Classer les r\\u00e9sultats par:\", \"style\": null, \"bbox\": [11, 849, 168, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [512, 818, 327, 80], \"children\": [{\"type\": \"select\", \"content\": \"\", \"style\": null, \"bbox\": [513, 827, 129, 19], \"children\": [{\"type\": \"option\", \"content\": \"Auteur\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"Date\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"Forum\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"Titre du sujet\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"Sujet du message\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}]}, {\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [513, 846, 177, 21], \"children\": []}, {\"type\": \"span\", \"content\": \"Croissant\", \"style\": null, \"bbox\": [694, 847, 60, 17], \"children\": []}, {\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [513, 867, 177, 21], \"children\": []}, {\"type\": \"span\", \"content\": \"D\\u00e9croissant\", \"style\": null, \"bbox\": [694, 868, 75, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [841, 818, 247, 80], \"children\": [{\"type\": \"b\", \"content\": \"Afficher les r\\u00e9sultats sous forme de:\", \"style\": null, \"bbox\": [842, 849, 244, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [1090, 818, 179, 80], \"children\": [{\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [1091, 819, 177, 21], \"children\": []}, {\"type\": \"span\", \"content\": \"Messages\", \"style\": null, \"bbox\": [1091, 840, 62, 17], \"children\": []}, {\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [1091, 858, 177, 21], \"children\": []}, {\"type\": \"span\", \"content\": \"Sujets\", \"style\": null, \"bbox\": [1091, 879, 39, 17], \"children\": []}]}]}, {\"type\": \"tr\", \"content\": \"\", \"style\": null, \"bbox\": [10, 900, 1260, 57], \"children\": [{\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [10, 900, 500, 57], \"children\": [{\"type\": \"b\", \"content\": \"Rechercher depuis:\", \"style\": null, \"bbox\": [11, 919, 132, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [512, 900, 327, 57], \"children\": [{\"type\": \"select\", \"content\": \"\", \"style\": null, \"bbox\": [513, 919, 125, 19], \"children\": [{\"type\": \"option\", \"content\": \"Tous les r\\u00e9sultats\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"1 jour\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"7 jours\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"2 semaines\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"1 mois\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"3 mois\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"6 mois\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"1 an\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}]}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [841, 900, 247, 57], \"children\": [{\"type\": \"b\", \"content\": \"Renvoyer les:\", \"style\": null, \"bbox\": [842, 919, 92, 17], \"children\": []}]}, {\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [1090, 900, 179, 57], \"children\": [{\"type\": \"select\", \"content\": \"\", \"style\": null, \"bbox\": [1091, 901, 121, 19], \"children\": [{\"type\": \"option\", \"content\": \"Tous disponibles\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"0\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"25\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"50\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"100\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"200\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"300\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"400\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"500\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"600\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"700\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"800\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"900\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}, {\"type\": \"option\", \"content\": \"1000\", \"style\": null, \"bbox\": [0, 0, 0, 0], \"children\": []}]}, {\"type\": \"span\", \"content\": \"premiers caract\\u00e8res des messages\", \"style\": null, \"bbox\": [1091, 920, 149, 35], \"children\": []}]}]}, {\"type\": \"tr\", \"content\": \"\", \"style\": null, \"bbox\": [10, 959, 1260, 44], \"children\": [{\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [10, 959, 500, 44], \"children\": [{\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [11, 960, 177, 21], \"children\": []}, {\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [192, 960, 177, 21], \"children\": []}, {\"type\": \"input\", \"content\": \"\", \"style\": \"\", \"bbox\": [11, 981, 177, 21], \"children\": []}]}]}]}]}]}]}, {\"type\": \"table\", \"content\": \"\", \"style\": \"margin-top: 5px;\", \"bbox\": [8, 1028, 1264, 90], \"children\": [{\"type\": \"tbody\", \"content\": \"\", \"style\": null, \"bbox\": [10, 1030, 1260, 86], \"children\": [{\"type\": \"tr\", \"content\": \"\", \"style\": null, \"bbox\": [10, 1030, 1260, 86], \"children\": [{\"type\": \"td\", \"content\": \"\", \"style\": null, \"bbox\": [10, 1030, 1260, 86], \"children\": [{\"type\": \"p\", \"content\": \"\", \"style\": null, \"bbox\": [11, 1047, 1258, 18], \"children\": [{\"type\": \"a\", \"content\": \"Index du forum\", \"style\": null, \"bbox\": [11, 1047, 99, 17], \"children\": []}]}, {\"type\": \"p\", \"content\": \"Heures au format UTC + 1 heure\", \"style\": null, \"bbox\": [11, 1081, 1258, 18], \"children\": []}]}]}]}]}]}, {\"type\": \"div\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1136, 1264, 91], \"children\": [{\"type\": \"span\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1136, 374, 90], \"children\": [{\"type\": \"a\", \"content\": \"phpBB\", \"style\": null, \"bbox\": [105, 1136, 45, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"phpBB-fr.com\", \"style\": null, \"bbox\": [106, 1154, 92, 17], \"children\": []}, {\"type\": \"a\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1173, 80, 17], \"children\": [{\"type\": \"img\", \"content\": \"\", \"style\": null, \"bbox\": [8, 1172, 80, 15], \"children\": []}]}, {\"type\": \"a\", \"content\": \"Cookies - CGU\", \"style\": null, \"bbox\": [8, 1191, 99, 17], \"children\": []}, {\"type\": \"bdo\", \"content\": \"[ Time : 0.218s | 12 Queries | GZIP : Off ]\", \"style\": null, \"bbox\": [8, 1209, 267, 17], \"children\": []}]}]}]}"},"text":{"kind":"string","value":"\n\nRechercher - Forum Volkswagen Golf IV

    Ce site web utilise les cookies.

    \n Les données stockées par ces cookies nous permermettent de personnaliser le contenu des annonces,\n d'offrir des fonctionnalités relatives aux réseaux sociaux et d'analyser notre trafic.\n Nous partageons également certains cookies et des informations sur l'utilisation de notre site avec nos partenaires de médias sociaux, de publicité et d'analyse,\n qui peuvent combiner celles-ci avec d'autres informations que vous leur avez fournies ou qu'ils ont collectées lors de votre utilisation de leurs services. Nos partenaires sont Google et ses partenaires tiers.\n


    Nav \n\t\t\t\t Portail \n\t\t\t\t Forum \n\t\t\t\t Petites annonces  Wiki  Rechercher \n\t\t\t
    Dernière visite: il y a moins d’une minuteNous sommes le 30 Nov 2023, 12:31

    Voir les messages sans réponses | Voir les sujets actifsVoir les nouveaux messages | Voir mes messages


    Index du forum

    Heures au format UTC + 1 heure


    Rechercher
    Recherche par mots-clés:
    Placez un + devant un mot qui doit être trouvé et un - devant un mot qui doit être exclu. Tapez une suite de mots séparés par des | entre crochets si uniquement un des mots doit être trouvé. Utilisez un * comme joker pour des recherches partielles.

    Rechercher tous les termes
    Rechercher n’importe lequel de ces termes
    Rechercher par auteur:
    Utilisez un * comme joker pour des recherches partielles.
    Recherche par attribut:
    Sélectionnez l’attribut que vous souhaitez rechercher
    Rechercher dans les forums:
    Choisissez le forum ou les forums dans le(s)quel(s) vous souhaitez effectuer une recherche. Les sous-forums sont automatiquement inclus si vous ne désactivez pas l’option ci-dessous « Rechercher dans les sous-forums ».
    Options de recherche
    Rechercher dans les sous-forums: Oui   NonRechercher dans: Titres et messages
    Messages uniquement
    Titres uniquement
    Premier message des sujets uniquement
    Classer les résultats par:
    Croissant
    Décroissant
    Afficher les résultats sous forme de: Messages   Sujets
    Rechercher depuis: Renvoyer les: premiers caractères des messages
      

    Index du forum

    Heures au format UTC + 1 heure


    Développé par phpBB® Forum Software © phpBB Group\n\t
    Traduction par phpBB-fr.com

    Cookies - CGU
    [ Time : 0.218s | 12 Queries | GZIP : Off ]
    "},"score":{"kind":"number","value":3,"string":"3"},"scale":{"kind":"list like","value":[1280,1235],"string":"[\n 1280,\n 1235\n]"},"lang":{"kind":"string","value":"fr"},"tokens":{"kind":"list like","value":[231,2988],"string":"[\n 231,\n 2988\n]"},"hash":{"kind":"string","value":"0b89d8dcc0b13159c2952af0c12fafdaa5d4337310b14863ceff1c24234f7711"}}},{"rowIdx":6,"cells":{"image":{"kind":"image","value":{"src":"https://datasets-server.huggingface.co/assets/xcodemind/webcode2m_purified/--/6e1735ac07f6dcb002eb542cf6892e69412dbb33/--/default/train/6/image/image.png?Expires=1755748228&Signature=iXyx9S3zYOqHXMdrd8-HDLoZu143NhXFx0zMMt7tKQ3f-Q5SUHwu9~ke0lbkLWHpn~Y2cBIWbrUxpXeno64fhAPFS2r0NbeAKkjdG5ON34obABmJ-iXmrWME5G3iSwPsXtfXPIod98J54LRRkFae6d6L8FZ3Ib-LBGqE9Q6gKcoKxK-t9QoX68oR9Oe0tOhmJngVJbQn0GdQ-F37oqs1xSwOnvZqk24SIbjPJGl0Ynti3QAAfEvEgd9uQDQb5juIBpU2y8v-pEVOZYshDTfG2had3H4d0y4TulkwCne4HeovMyxW~gknD4uyKOBdy4ZEJ7woXuQ2sY8Ek6ePijRtZg__&Key-Pair-Id=K3EI6M078Z3AC3","height":1420,"width":1280},"inferredFromUrl":false},"bbox":{"kind":"truncated","value":"\"{\\\"type\\\": \\\"body\\\", \\\"content\\\": \\\"\\\", \\\"style\\\": \\\"background-color: #e5e5e5\\\", \\\"bbox\\\": [8, 8, "},"text":{"kind":"truncated","value":"\"\\n\\nIngold – Material World\\n\\nHistorik | Sveriges Yachtkonstruktörers Riksförening</title"},"score":{"kind":"number","value":3,"string":"3"},"scale":{"kind":"list like","value":[1280,2468],"string":"[\n 1280,\n 2468\n]"},"lang":{"kind":"string","value":"bg"},"tokens":{"kind":"list like","value":[2187,4813],"string":"[\n 2187,\n 4813\n]"},"hash":{"kind":"string","value":"c82facfd2e59e1d5b857b8dc5004e5361f001e9c25373c3a2b6831e8e0599116"}}},{"rowIdx":8,"cells":{"image":{"kind":"image","value":{"src":"https://datasets-server.huggingface.co/assets/xcodemind/webcode2m_purified/--/6e1735ac07f6dcb002eb542cf6892e69412dbb33/--/default/train/8/image/image.png?Expires=1755748228&Signature=KLScOosYsrbjJn3JQCJY05hkHwK13pgJuQUwssHhAeQND8zLlyNg9K-tHdqWoyJAv5eMUmtErnPqDHaqMMiqi~VJ3EpAze0m9u2KOOeebOdd35OpxpnyglAaQyOZeGJFh436GzmA-rNoIh8eNdhTQzL~ktF5NcOd9Fr96biaBeB9jKqMzro-aH13H7dO8r1pSTgyMyDDiKfInaAZ33JcMMCYZ5jjmJmQ7A7fRi36soiSSEfXv7~38QXpamAAXnqV3EGbwI5xZXtwrf~3yuDyLJPG3UPTrPXwP26MrzgHGwUw54rBCG1G88k6g87wdp~H2onXj1vVZlrjKVbNuV8ZXw__&Key-Pair-Id=K3EI6M078Z3AC3","height":2032,"width":1280},"inferredFromUrl":false},"bbox":{"kind":"truncated","value":"\"{\\\"type\\\": \\\"body\\\", \\\"content\\\": \\\"\\\", \\\"style\\\": \\\"color: #fff; background-color: #99011A; font-f"},"text":{"kind":"truncated","value":"\"<!DOCTYPE html>\\n\\n<html><head><title>Retter-Radio - Musik-Forum nicht nur für Alltagsretter | Üb"},"score":{"kind":"number","value":3,"string":"3"},"scale":{"kind":"list like","value":[1280,2032],"string":"[\n 1280,\n 2032\n]"},"lang":{"kind":"string","value":"de"},"tokens":{"kind":"list like","value":[253,3093],"string":"[\n 253,\n 3093\n]"},"hash":{"kind":"string","value":"dd0225a8c01bd13c142882dc90626399b95860a66495fee35a439c78997fee8d"}}},{"rowIdx":9,"cells":{"image":{"kind":"image","value":{"src":"https://datasets-server.huggingface.co/assets/xcodemind/webcode2m_purified/--/6e1735ac07f6dcb002eb542cf6892e69412dbb33/--/default/train/9/image/image.png?Expires=1755748228&Signature=Dxf~Ktxqi1JVmA~04eaoF6T4yLWgb2tjWvGF5FmKZGji7sI~YV6Foh3-r6HhmOUvSecaWDIdsDdM26vMzTSyl0vZKl8CJnnobSrwCsj6ekwWbdFPbEbK-qJ2W6vUhtsperUJvNDwaJ3phrcV9v2Pz7bO1sePVzMqIGlTR6BWjToRBXxGte7dkZX4v90pR6a~l-16WlBt5zKcZZmSZ6xtk~3tGldhLxc965def2mKqVfWhJK9iBcBAT74ps4aWBLnUXbOy-~k~eQzSgjySVk~deJnCO-xv1DOcvtFpevC9UHqntEQSk7cDJW7hTVPiqz58XHUD5pJ1I9b1RzcrBtyOA__&Key-Pair-Id=K3EI6M078Z3AC3","height":2394,"width":1280},"inferredFromUrl":false},"bbox":{"kind":"truncated","value":"\"{\\\"type\\\": \\\"body\\\", \\\"content\\\": \\\"\\\", \\\"style\\\": \\\"font-family: \\\\\\\"Dosis\\\\\\\", sans-serif; color:"},"text":{"kind":"truncated","value":"\"<!DOCTYPE html>\\n\\n<html><head><title>Fotografschaft | Marie-Theres Graf | Fotografin | Erlangen | "},"score":{"kind":"number","value":3,"string":"3"},"scale":{"kind":"list like","value":[1280,2394],"string":"[\n 1280,\n 2394\n]"},"lang":{"kind":"string","value":"ur"},"tokens":{"kind":"list like","value":[555,3015],"string":"[\n 555,\n 3015\n]"},"hash":{"kind":"string","value":"174f574b725706892f50f5dadd6a2a8843b6a0b860fe5ef8856ce345f87dea0c"}}}],"truncated":true},"paginationData":{"pageIndex":0,"numItemsPerPage":100,"numTotalItems":2562069,"offset":0,"length":100}},"jwt":"eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sImlhdCI6MTc1NTc0NDYyOCwic3ViIjoiL2RhdGFzZXRzL3hjb2RlbWluZC93ZWJjb2RlMm1fcHVyaWZpZWQiLCJleHAiOjE3NTU3NDgyMjgsImlzcyI6Imh0dHBzOi8vaHVnZ2luZ2ZhY2UuY28ifQ.fuNDI8SfvdhS5hcM6F0o-oFcUcfaY8K9YGRAs94ZkkpxPbL3TSSXsuIY6VzYHAI0lH_Gmlf_2iQr8mhKAWGEAQ","displayUrls":true},"dataset":"xcodemind/webcode2m_purified","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}"><div class="flex flex-col overflow-hidden shadow-xs mx-auto mb-10 rounded-lg border pt-2 px-2.5"><div class="mb-2 flex flex-wrap items-center gap-2"><div class="mr-auto flex items-center"><svg class="mr-1 flex-none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 12 12"><path fill="currentColor" d="M2.5 2h7a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1h-7a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1Zm0 2v2h3V4h-3Zm4 0v2h3V4h-3Zm-4 3v2h3V7h-3Zm4 0v2h3V7h-3Z"></path></svg> <div class="whitespace-nowrap font-semibold">Dataset Viewer</div> </div> <a href="/datasets/xcodemind/webcode2m_purified/tree/refs%2Fconvert%2Fparquet/default" class="group mr-1 text-xs text-gray-400 max-sm:hidden"><svg class="text-[.6rem] mr-1 inline -translate-y-px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><path fill="currentColor" d="M12 10H6.78A11 11 0 0 1 27 16h2A13 13 0 0 0 6 7.68V4H4v8h8zm8 12h5.22A11 11 0 0 1 5 16H3a13 13 0 0 0 23 8.32V28h2v-8h-8z"></path></svg> <span class="underline decoration-gray-300 group-hover:decoration-gray-400 dark:decoration-gray-500 dark:group-hover:decoration-gray-300">Auto-converted</span> to Parquet </a> <button class="btn shadow-xs flex cursor-pointer items-center rounded-sm border px-1 py-0.5 text-xs font-normal text-gray-700 hover:text-gray-800 hover:shadow-inner dark:hover:text-gray-200"><svg class="mr-1.5" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32" style="transform: rotate(360deg);"><path d="M31 16l-7 7l-1.41-1.41L28.17 16l-5.58-5.59L24 9l7 7z" fill="currentColor"></path><path d="M1 16l7-7l1.41 1.41L3.83 16l5.58 5.59L8 23l-7-7z" fill="currentColor"></path><path d="M12.419 25.484L17.639 6l1.932.518L14.35 26z" fill="currentColor"></path></svg>API</button> <button class="btn shadow-xs flex cursor-pointer items-center rounded-sm border px-1 py-0.5 text-xs font-normal text-gray-700 hover:text-gray-800 hover:shadow-inner dark:hover:text-gray-200"><svg class="mr-1.5" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" fill="currentColor" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 12 12"><path d="M9.80603 2.86737H3.56107C3.37704 2.86737 3.20055 2.94048 3.07042 3.0706C2.94029 3.20073 2.86719 3.37723 2.86719 3.56126V9.80622C2.86719 9.99025 2.94029 10.1667 3.07042 10.2969C3.20055 10.427 3.37704 10.5001 3.56107 10.5001H9.80603C9.99006 10.5001 10.1666 10.427 10.2967 10.2969C10.4268 10.1667 10.4999 9.99025 10.4999 9.80622V3.56126C10.4999 3.37723 10.4268 3.20073 10.2967 3.0706C10.1666 2.94048 9.99006 2.86737 9.80603 2.86737Z" fill="currentColor" fill-opacity="0.3"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M2.40942 1.66191C2.05175 1.66191 1.7618 1.95186 1.7618 2.30953V6.76191H1.43799V2.30953C1.43799 1.77303 1.87291 1.3381 2.40942 1.3381H6.45704V1.66191H2.40942Z" fill="currentColor"></path></svg>Embed</button> <button class="bg-linear-to-b shadow-xs flex items-center gap-1.5 rounded-full border from-white to-red-100/90 px-2 py-0.5 text-xs font-medium text-[#2D3648] transition-shadow hover:shadow-inner dark:from-gray-900 dark:to-red-800/30 dark:text-gray-100 dark:hover:shadow-inner dark:hover:shadow-red-800/30" ><svg class="h-3.5 w-3.5 text-red-500" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 12 12"><path fill="currentColor" d="M2.5 2h7a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1h-7a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1Zm0 2v2h3V4h-3Zm4 0v2h3V4h-3Zm-4 3v2h3V7h-3Zm4 0v2h3V7h-3Z"></path></svg> <span>Data Studio</span></button></div> <div class="flex flex-1 flex-col overflow-hidden -mx-2.5"><div class="flex flex-1 flex-col overflow-hidden"><div class="flex min-h-0 flex-1"><div class="flex flex-1 flex-col overflow-hidden"><div class="md:-mx-2.5 flex min-w-0 flex-wrap border-t"><div class="flex min-w-0 flex-1 flex-wrap"><div class="grid flex-1 grid-cols-1 overflow-hidden text-sm md:grid-cols-2 md:place-content-center sm:mx-2.5"><label class="relative block flex-1 px-3 py-2 hover:bg-gray-50 dark:border-gray-850 dark:hover:bg-gray-950 md:border-r md:border-r-0 hidden" title="default"><span class="text-gray-500">Subset (1)</span> <div class="flex items-center whitespace-nowrap"><span class="truncate">default</span> <span class="mx-2 text-gray-500">·</span> <span class="text-gray-500">2.56M rows</span> <svg class="ml-auto min-w-6 pl-2" width="1em" height="1em" viewBox="0 0 12 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L6 6L11 1" stroke="currentColor"></path></svg></div> <select class="absolute inset-0 z-10 w-full cursor-pointer border-0 bg-white text-base opacity-0"><optgroup label="Subset (1)"><option value="default" selected>default (2.56M rows)</option></optgroup></select></label> <label class="relative block flex-1 px-3 py-2 hover:bg-gray-50 dark:border-gray-850 dark:hover:bg-gray-900 md:border-r md:border-r" title="train"><div class="text-gray-500">Split (1)</div> <div class="flex items-center overflow-hidden whitespace-nowrap"><span class="truncate">train</span> <span class="mx-2 text-gray-500">·</span> <span class="text-gray-500">2.56M rows</span> <svg class="ml-auto min-w-6 pl-2" width="1em" height="1em" viewBox="0 0 12 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L6 6L11 1" stroke="currentColor"></path></svg></div> <select class="absolute inset-0 z-10 w-full cursor-pointer border-0 bg-white text-base opacity-0"><optgroup label="Split (1)"><option value="train" selected>train (2.56M rows)</option></optgroup></select></label></div></div> </div> <div class="flex min-h-0 flex-1 flex-col "> <div class="bg-linear-to-r text-smd relative flex items-center dark:border-gray-900 dark:bg-gray-950 false border-t [&:has(:focus)]:from-gray-50 [&:has(:focus)]:to-transparent [&:has(:focus)]:to-20% dark:[&:has(:focus)]:from-gray-900"><form class="flex-1"><svg class="absolute left-3 top-1/2 transform -translate-y-1/2 pointer-events-none text-gray-400" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><path d="M30 28.59L22.45 21A11 11 0 1 0 21 22.45L28.59 30zM5 14a9 9 0 1 1 9 9a9 9 0 0 1-9-9z" fill="currentColor"></path></svg> <input disabled class="outline-hidden h-9 w-full border-none bg-transparent px-1 pl-9 pr-3 placeholder:text-gray-400 " placeholder="Search this dataset" dir="auto"></form> <div class="flex items-center gap-2 px-2 py-1"><button type="button" class="hover:bg-yellow-200/70 flex items-center gap-1 rounded-md border border-yellow-200 bg-yellow-100 pl-0.5 pr-1 text-[.8rem] leading-normal text-gray-700 dark:border-orange-500/25 dark:bg-orange-500/20 dark:text-gray-300 dark:hover:brightness-110 hidden"><div class="rounded-sm bg-yellow-300 px-1 font-mono text-[.7rem] font-bold text-black dark:bg-yellow-700 dark:text-gray-200">SQL </div> Console </button></div></div> <div class="flex flex-1 flex-col overflow-hidden min-h-64 border-t"> <div class="max-h-96 relative overflow-auto"><table class="w-full table-auto rounded-lg font-mono text-xs text-gray-900"><thead class="shadow-xs sticky left-0 right-0 top-0 z-1 bg-white align-top"><tr class="space-y-54 h-full min-w-fit divide-x border-b text-left"><th class="h-full max-w-sm p-2 text-left relative w-auto"><div class="flex h-full flex-col flex-nowrap justify-between"><div><div class="flex items-center justify-between">image <form class="flex flex-col"><button id="asc" class="-mr-1 ml-2 h-[0.4rem] w-[0.8rem] transition ease-in-out"><svg class="-rotate-180 transform text-gray-300 hover:text-gray-500" xmlns="http://www.w3.org/2000/svg" viewBox="0 64 256 128" fill="currentColor" aria-hidden="true"><path d="M213.65674,101.657l-80,79.99976a7.99945,7.99945,0,0,1-11.31348,0l-80-79.99976A8,8,0,0,1,48,88H208a8,8,0,0,1,5.65674,13.657Z"></path></svg></button> <button id="desc" class="-mr-1 ml-2 h-[0.4rem] w-[0.8rem] transition ease-in-out"><svg class="text-gray-300 hover:text-gray-500" xmlns="http://www.w3.org/2000/svg" viewBox="0 64 256 128" fill="currentColor" aria-hidden="true"><path d="M213.65674,101.657l-80,79.99976a7.99945,7.99945,0,0,1-11.31348,0l-80-79.99976A8,8,0,0,1,48,88H208a8,8,0,0,1,5.65674,13.657Z"></path></svg></button></form></div> <div class="mb-2 whitespace-nowrap text-xs font-normal text-gray-500"><span>image</span><span class="italic text-gray-400 before:mx-1 before:content-['·']">width (px)</span></div></div> <div><div class="" style="height: 40px; padding-top: 2px"><svg width="130" height="28"><g><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="0" y="0" width="11.2" height="30" fill-opacity="1"></rect><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="13.2" y="25" width="11.2" height="5" fill-opacity="1"></rect><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="26.4" y="25" width="11.2" height="5" fill-opacity="1"></rect><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="39.599999999999994" y="25" width="11.2" height="5" fill-opacity="1"></rect><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="52.8" y="25" width="11.2" height="5" fill-opacity="1"></rect><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="66" y="25" width="11.2" height="5" fill-opacity="1"></rect><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="79.19999999999999" y="25" width="11.2" height="5" fill-opacity="1"></rect><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="92.39999999999999" y="25" width="11.2" height="5" fill-opacity="1"></rect><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="105.6" y="25" width="11.2" height="5" fill-opacity="1"></rect><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="118.8" y="25" width="11.2" height="5" fill-opacity="1"></rect></g><rect class="fill-white dark:fill-gray-900" x="0" y="26" width="130" height="2" stroke-opacity="1"></rect><line class="stroke-gray-100 dark:stroke-gray-500/20" x1="0" y1="27.5" x2="130" y2="27.5" stroke-opacity="1"></line><g><rect class="fill-indigo-500 cursor-pointer" x="-1" y="0" width="13.2" height="30" fill-opacity="0"></rect><rect class="fill-indigo-500 cursor-pointer" x="12.2" y="0" width="13.2" height="30" fill-opacity="0"></rect><rect class="fill-indigo-500 cursor-pointer" x="25.4" y="0" width="13.2" height="30" fill-opacity="0"></rect><rect class="fill-indigo-500 cursor-pointer" x="38.599999999999994" y="0" width="13.2" height="30" fill-opacity="0"></rect><rect class="fill-indigo-500 cursor-pointer" x="51.8" y="0" width="13.2" height="30" fill-opacity="0"></rect><rect class="fill-indigo-500 cursor-pointer" x="65" y="0" width="13.2" height="30" fill-opacity="0"></rect><rect class="fill-indigo-500 cursor-pointer" x="78.19999999999999" y="0" width="13.2" height="30" fill-opacity="0"></rect><rect class="fill-indigo-500 cursor-pointer" x="91.39999999999999" y="0" width="13.2" height="30" fill-opacity="0"></rect><rect class="fill-indigo-500 cursor-pointer" x="104.6" y="0" width="13.2" height="30" fill-opacity="0"></rect><rect class="fill-indigo-500 cursor-pointer" x="117.8" y="0" width="13.2" height="30" fill-opacity="0"></rect></g></svg> <div class="relative font-light text-gray-400" style="height: 10px; width: 130px;"><div class="absolute left-0 overflow-hidden text-ellipsis whitespace-nowrap" style="max-width: 60px">1.28k</div> <div class="absolute overflow-hidden text-ellipsis whitespace-nowrap" style="right: 0px; max-width: 60px">2.01k</div> </div></div></div></div> <div class="absolute right-0 top-0 z-10 h-full w-1 cursor-col-resize hover:bg-indigo-100 active:bg-indigo-500 dark:hover:bg-indigo-800 dark:active:bg-indigo-600/80"><div class="absolute right-0 top-0 h-full w-1"></div> </div> </th><th class="h-full max-w-sm p-2 text-left relative w-auto"><div class="flex h-full flex-col flex-nowrap justify-between"><div><div class="flex items-center justify-between">bbox <form class="flex flex-col"><button id="asc" class="-mr-1 ml-2 h-[0.4rem] w-[0.8rem] transition ease-in-out"><svg class="-rotate-180 transform text-gray-300 hover:text-gray-500" xmlns="http://www.w3.org/2000/svg" viewBox="0 64 256 128" fill="currentColor" aria-hidden="true"><path d="M213.65674,101.657l-80,79.99976a7.99945,7.99945,0,0,1-11.31348,0l-80-79.99976A8,8,0,0,1,48,88H208a8,8,0,0,1,5.65674,13.657Z"></path></svg></button> <button id="desc" class="-mr-1 ml-2 h-[0.4rem] w-[0.8rem] transition ease-in-out"><svg class="text-gray-300 hover:text-gray-500" xmlns="http://www.w3.org/2000/svg" viewBox="0 64 256 128" fill="currentColor" aria-hidden="true"><path d="M213.65674,101.657l-80,79.99976a7.99945,7.99945,0,0,1-11.31348,0l-80-79.99976A8,8,0,0,1,48,88H208a8,8,0,0,1,5.65674,13.657Z"></path></svg></button></form></div> <div class="mb-2 whitespace-nowrap text-xs font-normal text-gray-500"><span>string</span><span class="italic text-gray-400 before:mx-1 before:content-['·']">lengths</span></div></div> <div><div class="" style="height: 40px; padding-top: 2px"><svg width="130" height="28"><g><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="0" y="8.259787657597876" width="11.2" height="21.740212342402124" fill-opacity="1"></rect><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="13.2" y="0" width="11.2" height="30" fill-opacity="1"></rect><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="26.4" y="18.65892501658925" width="11.2" height="11.34107498341075" fill-opacity="1"></rect><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="39.599999999999994" y="23.912408759124087" width="11.2" height="6.087591240875913" fill-opacity="1"></rect><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="52.8" y="25" width="11.2" height="5" fill-opacity="1"></rect><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="66" y="25" width="11.2" height="5" fill-opacity="1"></rect><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="79.19999999999999" y="25" width="11.2" height="5" fill-opacity="1"></rect><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="92.39999999999999" y="25" width="11.2" height="5" fill-opacity="1"></rect><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="105.6" y="25" width="11.2" height="5" fill-opacity="1"></rect><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="118.8" y="25" width="11.2" height="5" fill-opacity="1"></rect></g><rect class="fill-white dark:fill-gray-900" x="0" y="26" width="130" height="2" stroke-opacity="1"></rect><line class="stroke-gray-100 dark:stroke-gray-500/20" x1="0" y1="27.5" x2="130" y2="27.5" stroke-opacity="1"></line><g><rect class="fill-indigo-500 cursor-pointer" x="-1" y="0" width="13.2" height="30" fill-opacity="0"></rect><rect class="fill-indigo-500 cursor-pointer" x="12.2" y="0" width="13.2" height="30" fill-opacity="0"></rect><rect class="fill-indigo-500 cursor-pointer" x="25.4" y="0" width="13.2" height="30" fill-opacity="0"></rect><rect class="fill-indigo-500 cursor-pointer" x="38.599999999999994" y="0" width="13.2" height="30" fill-opacity="0"></rect><rect class="fill-indigo-500 cursor-pointer" x="51.8" y="0" width="13.2" height="30" fill-opacity="0"></rect><rect class="fill-indigo-500 cursor-pointer" x="65" y="0" width="13.2" height="30" fill-opacity="0"></rect><rect class="fill-indigo-500 cursor-pointer" x="78.19999999999999" y="0" width="13.2" height="30" fill-opacity="0"></rect><rect class="fill-indigo-500 cursor-pointer" x="91.39999999999999" y="0" width="13.2" height="30" fill-opacity="0"></rect><rect class="fill-indigo-500 cursor-pointer" x="104.6" y="0" width="13.2" height="30" fill-opacity="0"></rect><rect class="fill-indigo-500 cursor-pointer" x="117.8" y="0" width="13.2" height="30" fill-opacity="0"></rect></g></svg> <div class="relative font-light text-gray-400" style="height: 10px; width: 130px;"><div class="absolute left-0 overflow-hidden text-ellipsis whitespace-nowrap" style="max-width: 60px">4</div> <div class="absolute overflow-hidden text-ellipsis whitespace-nowrap" style="right: 0px; max-width: 60px">140k</div> </div></div></div></div> <div class="absolute right-0 top-0 z-10 h-full w-1 cursor-col-resize hover:bg-indigo-100 active:bg-indigo-500 dark:hover:bg-indigo-800 dark:active:bg-indigo-600/80"><div class="absolute right-0 top-0 h-full w-1"></div> </div> </th><th class="h-full max-w-sm p-2 text-left relative w-auto"><div class="flex h-full flex-col flex-nowrap justify-between"><div><div class="flex items-center justify-between">text <form class="flex flex-col"><button id="asc" class="-mr-1 ml-2 h-[0.4rem] w-[0.8rem] transition ease-in-out"><svg class="-rotate-180 transform text-gray-300 hover:text-gray-500" xmlns="http://www.w3.org/2000/svg" viewBox="0 64 256 128" fill="currentColor" aria-hidden="true"><path d="M213.65674,101.657l-80,79.99976a7.99945,7.99945,0,0,1-11.31348,0l-80-79.99976A8,8,0,0,1,48,88H208a8,8,0,0,1,5.65674,13.657Z"></path></svg></button> <button id="desc" class="-mr-1 ml-2 h-[0.4rem] w-[0.8rem] transition ease-in-out"><svg class="text-gray-300 hover:text-gray-500" xmlns="http://www.w3.org/2000/svg" viewBox="0 64 256 128" fill="currentColor" aria-hidden="true"><path d="M213.65674,101.657l-80,79.99976a7.99945,7.99945,0,0,1-11.31348,0l-80-79.99976A8,8,0,0,1,48,88H208a8,8,0,0,1,5.65674,13.657Z"></path></svg></button></form></div> <div class="mb-2 whitespace-nowrap text-xs font-normal text-gray-500"><span>string</span><span class="italic text-gray-400 before:mx-1 before:content-['·']">lengths</span></div></div> <div><div class="" style="height: 40px; padding-top: 2px"><svg width="130" height="28"><g><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="0" y="24.20304232804233" width="11.2" height="5.796957671957672" fill-opacity="1"></rect><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="13.2" y="14.306878306878307" width="11.2" height="15.693121693121693" fill-opacity="1"></rect><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="26.4" y="3.0350529100529116" width="11.2" height="26.96494708994709" fill-opacity="1"></rect><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="39.599999999999994" y="0" width="11.2" height="30" fill-opacity="1"></rect><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="52.8" y="9.707010582010582" width="11.2" height="20.292989417989418" fill-opacity="1"></rect><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="66" y="15.218253968253968" width="11.2" height="14.781746031746032" fill-opacity="1"></rect><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="79.19999999999999" y="17.17857142857143" width="11.2" height="12.821428571428571" fill-opacity="1"></rect><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="92.39999999999999" y="20.944444444444443" width="11.2" height="9.055555555555555" fill-opacity="1"></rect><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="105.6" y="22.947751322751323" width="11.2" height="7.052248677248677" fill-opacity="1"></rect><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="118.8" y="25" width="11.2" height="5" fill-opacity="1"></rect></g><rect class="fill-white dark:fill-gray-900" x="0" y="26" width="130" height="2" stroke-opacity="1"></rect><line class="stroke-gray-100 dark:stroke-gray-500/20" x1="0" y1="27.5" x2="130" y2="27.5" stroke-opacity="1"></line><g><rect class="fill-indigo-500 cursor-pointer" x="-1" y="0" width="13.2" height="30" fill-opacity="0"></rect><rect class="fill-indigo-500 cursor-pointer" x="12.2" y="0" width="13.2" height="30" fill-opacity="0"></rect><rect class="fill-indigo-500 cursor-pointer" x="25.4" y="0" width="13.2" height="30" fill-opacity="0"></rect><rect class="fill-indigo-500 cursor-pointer" x="38.599999999999994" y="0" width="13.2" height="30" fill-opacity="0"></rect><rect class="fill-indigo-500 cursor-pointer" x="51.8" y="0" width="13.2" height="30" fill-opacity="0"></rect><rect class="fill-indigo-500 cursor-pointer" x="65" y="0" width="13.2" height="30" fill-opacity="0"></rect><rect class="fill-indigo-500 cursor-pointer" x="78.19999999999999" y="0" width="13.2" height="30" fill-opacity="0"></rect><rect class="fill-indigo-500 cursor-pointer" x="91.39999999999999" y="0" width="13.2" height="30" fill-opacity="0"></rect><rect class="fill-indigo-500 cursor-pointer" x="104.6" y="0" width="13.2" height="30" fill-opacity="0"></rect><rect class="fill-indigo-500 cursor-pointer" x="117.8" y="0" width="13.2" height="30" fill-opacity="0"></rect></g></svg> <div class="relative font-light text-gray-400" style="height: 10px; width: 130px;"><div class="absolute left-0 overflow-hidden text-ellipsis whitespace-nowrap" style="max-width: 60px">1.45k</div> <div class="absolute overflow-hidden text-ellipsis whitespace-nowrap" style="right: 0px; max-width: 60px">32.9k</div> </div></div></div></div> <div class="absolute right-0 top-0 z-10 h-full w-1 cursor-col-resize hover:bg-indigo-100 active:bg-indigo-500 dark:hover:bg-indigo-800 dark:active:bg-indigo-600/80"><div class="absolute right-0 top-0 h-full w-1"></div> </div> </th><th class="h-full max-w-sm p-2 text-left relative w-auto"><div class="flex h-full flex-col flex-nowrap justify-between"><div><div class="flex items-center justify-between">score <form class="flex flex-col"><button id="asc" class="-mr-1 ml-2 h-[0.4rem] w-[0.8rem] transition ease-in-out"><svg class="-rotate-180 transform text-gray-300 hover:text-gray-500" xmlns="http://www.w3.org/2000/svg" viewBox="0 64 256 128" fill="currentColor" aria-hidden="true"><path d="M213.65674,101.657l-80,79.99976a7.99945,7.99945,0,0,1-11.31348,0l-80-79.99976A8,8,0,0,1,48,88H208a8,8,0,0,1,5.65674,13.657Z"></path></svg></button> <button id="desc" class="-mr-1 ml-2 h-[0.4rem] w-[0.8rem] transition ease-in-out"><svg class="text-gray-300 hover:text-gray-500" xmlns="http://www.w3.org/2000/svg" viewBox="0 64 256 128" fill="currentColor" aria-hidden="true"><path d="M213.65674,101.657l-80,79.99976a7.99945,7.99945,0,0,1-11.31348,0l-80-79.99976A8,8,0,0,1,48,88H208a8,8,0,0,1,5.65674,13.657Z"></path></svg></button></form></div> <div class="mb-2 whitespace-nowrap text-xs font-normal text-gray-500"><span>int64</span></div></div> <div><div class="" style="height: 40px; padding-top: 2px"><svg width="130" height="28"><g><rect class="fill-indigo-500 dark:fill-indigo-600/80" rx="2" x="0" y="25" width="64" height="5" fill-opacity="1"></rect><rect class="fill-indigo-500 dark:fill-indigo-600/80" rx="2" x="66" y="0" width="64" height="30" fill-opacity="1"></rect></g><rect class="fill-white dark:fill-gray-900" x="0" y="26" width="130" height="2" stroke-opacity="1"></rect><line class="stroke-gray-100 dark:stroke-gray-500/20" x1="0" y1="27.5" x2="130" y2="27.5" stroke-opacity="1"></line><g><rect class="fill-indigo-500 cursor-pointer" x="-1" y="0" width="66" height="30" fill-opacity="0"></rect><rect class="fill-indigo-500 cursor-pointer" x="65" y="0" width="66" height="30" fill-opacity="0"></rect></g></svg> <div class="relative font-light text-gray-400" style="height: 10px; width: 130px;"><div class="absolute left-0 overflow-hidden text-ellipsis whitespace-nowrap" style="max-width: 60px">2</div> <div class="absolute overflow-hidden text-ellipsis whitespace-nowrap" style="right: 0px; max-width: 60px">3</div> </div></div></div></div> <div class="absolute right-0 top-0 z-10 h-full w-1 cursor-col-resize hover:bg-indigo-100 active:bg-indigo-500 dark:hover:bg-indigo-800 dark:active:bg-indigo-600/80"><div class="absolute right-0 top-0 h-full w-1"></div> </div> </th><th class="h-full max-w-sm p-2 text-left relative w-auto"><div class="flex h-full flex-col flex-nowrap justify-between"><div><div class="flex items-center justify-between">scale <form class="flex flex-col"><button id="asc" class="-mr-1 ml-2 h-[0.4rem] w-[0.8rem] transition ease-in-out"><svg class="-rotate-180 transform text-gray-300 hover:text-gray-500" xmlns="http://www.w3.org/2000/svg" viewBox="0 64 256 128" fill="currentColor" aria-hidden="true"><path d="M213.65674,101.657l-80,79.99976a7.99945,7.99945,0,0,1-11.31348,0l-80-79.99976A8,8,0,0,1,48,88H208a8,8,0,0,1,5.65674,13.657Z"></path></svg></button> <button id="desc" class="-mr-1 ml-2 h-[0.4rem] w-[0.8rem] transition ease-in-out"><svg class="text-gray-300 hover:text-gray-500" xmlns="http://www.w3.org/2000/svg" viewBox="0 64 256 128" fill="currentColor" aria-hidden="true"><path d="M213.65674,101.657l-80,79.99976a7.99945,7.99945,0,0,1-11.31348,0l-80-79.99976A8,8,0,0,1,48,88H208a8,8,0,0,1,5.65674,13.657Z"></path></svg></button></form></div> <div class="mb-2 whitespace-nowrap text-xs font-normal text-gray-500"><span>sequence</span><span class="italic text-gray-400 before:mx-1 before:content-['·']">lengths</span></div></div> <div><div class="" style="height: 40px; padding-top: 2px"><svg width="130" height="28"><g><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="0" y="0" width="130" height="30" fill-opacity="1"></rect></g><rect class="fill-white dark:fill-gray-900" x="0" y="26" width="130" height="2" stroke-opacity="1"></rect><line class="stroke-gray-100 dark:stroke-gray-500/20" x1="0" y1="27.5" x2="130" y2="27.5" stroke-opacity="1"></line><g><rect class="fill-indigo-500 cursor-pointer" x="-1" y="0" width="132" height="30" fill-opacity="0"></rect></g></svg> <div class="relative font-light text-gray-400" style="height: 10px; width: 130px;"><div class="absolute left-0 overflow-hidden text-ellipsis whitespace-nowrap" style="max-width: 60px">2</div> <div class="absolute overflow-hidden text-ellipsis whitespace-nowrap" style="right: 0px; max-width: 60px">2</div> </div></div></div></div> <div class="absolute right-0 top-0 z-10 h-full w-1 cursor-col-resize hover:bg-indigo-100 active:bg-indigo-500 dark:hover:bg-indigo-800 dark:active:bg-indigo-600/80"><div class="absolute right-0 top-0 h-full w-1"></div> </div> </th><th class="h-full max-w-sm p-2 text-left relative w-auto"><div class="flex h-full flex-col flex-nowrap justify-between"><div><div class="flex items-center justify-between">lang <form class="flex flex-col"><button id="asc" class="-mr-1 ml-2 h-[0.4rem] w-[0.8rem] transition ease-in-out"><svg class="-rotate-180 transform text-gray-300 hover:text-gray-500" xmlns="http://www.w3.org/2000/svg" viewBox="0 64 256 128" fill="currentColor" aria-hidden="true"><path d="M213.65674,101.657l-80,79.99976a7.99945,7.99945,0,0,1-11.31348,0l-80-79.99976A8,8,0,0,1,48,88H208a8,8,0,0,1,5.65674,13.657Z"></path></svg></button> <button id="desc" class="-mr-1 ml-2 h-[0.4rem] w-[0.8rem] transition ease-in-out"><svg class="text-gray-300 hover:text-gray-500" xmlns="http://www.w3.org/2000/svg" viewBox="0 64 256 128" fill="currentColor" aria-hidden="true"><path d="M213.65674,101.657l-80,79.99976a7.99945,7.99945,0,0,1-11.31348,0l-80-79.99976A8,8,0,0,1,48,88H208a8,8,0,0,1,5.65674,13.657Z"></path></svg></button></form></div> <div class="mb-2 whitespace-nowrap text-xs font-normal text-gray-500"><span>string</span><span class="italic text-gray-400 before:mx-1 before:content-['·']">classes</span></div></div> <div><div class="" style="height: 40px; padding-top: 2px"><svg width="130" height="28"><defs><clipPath id="rounded-bar"><rect x="0" y="0" width="130" height="8" rx="4"></rect></clipPath><pattern id="hatching" patternUnits="userSpaceOnUse" patternTransform="rotate(-45)" height="1" width="5"><line y1="0" class="stroke-gray-400 dark:stroke-gray-500/80" stroke-width="3" y2="1" x1="2" x2="2"></line></pattern><pattern id="hatching-faded" patternUnits="userSpaceOnUse" patternTransform="rotate(-45)" height="1" width="5"><line y1="0" class="stroke-gray-100 dark:stroke-gray-500/20" stroke-width="3" y2="1" x1="2" x2="2"></line></pattern></defs><g height="8" style="transform: translateY(20px)" clip-path="url(#rounded-bar)"><g style="transform: scaleX(1.0153846153846153) translateX(-1px)"><g><rect class="fill-indigo-500 dark:fill-indigo-600/80" x="1" y="0" width="65.51260504201682" height="8" fill-opacity="1"></rect><rect class="fill-indigo-500 dark:fill-indigo-600/80" x="68.51260504201682" y="0" width="6.864345738295318" height="8" fill-opacity="1"></rect><rect class="fill-indigo-500 dark:fill-indigo-600/80" x="77.37695078031213" y="0" width="6.739495798319327" height="8" fill-opacity="1"></rect><rect class="fill-indigo-500 dark:fill-indigo-600/80" x="86.11644657863145" y="0" width="4.096838735494198" height="8" fill-opacity="1"></rect><rect class="fill-indigo-500 dark:fill-indigo-600/80" x="92.21328531412566" y="0" width="3.826330532212885" height="8" fill-opacity="1"></rect><rect class="fill-indigo-500 dark:fill-indigo-600/80" x="98.03961584633853" y="0" width="2.7338935574229692" height="8" fill-opacity="1"></rect><rect class="fill-indigo-500 dark:fill-indigo-600/80" x="102.77350940376151" y="0" width="2.567426970788315" height="8" fill-opacity="1"></rect><rect class="fill-indigo-500 dark:fill-indigo-600/80" x="107.34093637454983" y="0" width="1.672669067627051" height="8" fill-opacity="1"></rect><rect class="fill-indigo-500 dark:fill-indigo-600/80" x="111.01360544217688" y="0" width="1.4749899959983996" height="8" fill-opacity="1"></rect><rect class="fill-indigo-500 dark:fill-indigo-600/80" x="114.48859543817528" y="0" width="0.9651860744297722" height="8" fill-opacity="1"></rect><rect class="fill-indigo-500 dark:fill-indigo-600/80" x="117.45378151260505" y="0" width="0.559423769507803" height="8" fill-opacity="1"></rect><rect class="fill-indigo-500 dark:fill-indigo-600/80" x="120.01320528211285" y="0" width="0.2368947579031615" height="8" fill-opacity="1"></rect><rect class="fill-indigo-500 dark:fill-indigo-600/80" x="122.25010004001601" y="0" width="0.13285314125650283" height="8" fill-opacity="1"></rect><rect class="fill-indigo-500 dark:fill-indigo-600/80" x="124.38295318127251" y="0" width="0.09123649459783945" height="8" fill-opacity="1"></rect><rect class="fill-indigo-500 dark:fill-indigo-600/80" x="126.47418967587035" y="0" width="0.08083233293317349" height="8" fill-opacity="1"></rect></g></g></g><g style="transform: scaleX(1.0153846153846153) translateX(-1px)"><g><rect class="fill-white cursor-pointer" x="0" y="0" width="67.51260504201682" height="28" fill-opacity="0"></rect><rect class="fill-white cursor-pointer" x="67.51260504201682" y="0" width="8.864345738295318" height="28" fill-opacity="0"></rect><rect class="fill-white cursor-pointer" x="76.37695078031213" y="0" width="8.739495798319327" height="28" fill-opacity="0"></rect><rect class="fill-white cursor-pointer" x="85.11644657863145" y="0" width="6.096838735494198" height="28" fill-opacity="0"></rect><rect class="fill-white cursor-pointer" x="91.21328531412566" y="0" width="5.826330532212885" height="28" fill-opacity="0"></rect><rect class="fill-white cursor-pointer" x="97.03961584633853" y="0" width="4.733893557422969" height="28" fill-opacity="0"></rect><rect class="fill-white cursor-pointer" x="101.77350940376151" y="0" width="4.567426970788315" height="28" fill-opacity="0"></rect><rect class="fill-white cursor-pointer" x="106.34093637454983" y="0" width="3.672669067627051" height="28" fill-opacity="0"></rect><rect class="fill-white cursor-pointer" x="110.01360544217688" y="0" width="3.4749899959983996" height="28" fill-opacity="0"></rect><rect class="fill-white cursor-pointer" x="113.48859543817528" y="0" width="2.9651860744297722" height="28" fill-opacity="0"></rect><rect class="fill-white cursor-pointer" x="116.45378151260505" y="0" width="2.559423769507803" height="28" fill-opacity="0"></rect><rect class="fill-white cursor-pointer" x="119.01320528211285" y="0" width="2.2368947579031615" height="28" fill-opacity="0"></rect><rect class="fill-white cursor-pointer" x="121.25010004001601" y="0" width="2.132853141256503" height="28" fill-opacity="0"></rect><rect class="fill-white cursor-pointer" x="123.38295318127251" y="0" width="2.0912364945978394" height="28" fill-opacity="0"></rect><rect class="fill-white cursor-pointer" x="125.47418967587035" y="0" width="2.0808323329331735" height="28" fill-opacity="0"></rect><rect class="fill-white cursor-pointer" x="127.55502200880352" y="0" width="0.8947579031612645" height="28" fill-opacity="0"></rect><rect class="fill-white cursor-pointer" x="128.44977991196478" y="0" width="0.7178871548619448" height="28" fill-opacity="0"></rect><rect class="fill-white cursor-pointer" x="129.16766706682674" y="0" width="0.42657062825130054" height="28" fill-opacity="0"></rect><rect class="fill-white cursor-pointer" x="129.59423769507805" y="0" width="0.4057623049219688" height="28" fill-opacity="0"></rect></g></g></svg> <div class="relative font-light text-gray-400" style="height: 10px; width: 130px;"><div class="absolute left-0 max-w-full overflow-hidden text-ellipsis whitespace-nowrap">19 values</div></div></div></div></div> <div class="absolute right-0 top-0 z-10 h-full w-1 cursor-col-resize hover:bg-indigo-100 active:bg-indigo-500 dark:hover:bg-indigo-800 dark:active:bg-indigo-600/80"><div class="absolute right-0 top-0 h-full w-1"></div> </div> </th><th class="h-full max-w-sm p-2 text-left relative w-auto"><div class="flex h-full flex-col flex-nowrap justify-between"><div><div class="flex items-center justify-between">tokens <form class="flex flex-col"><button id="asc" class="-mr-1 ml-2 h-[0.4rem] w-[0.8rem] transition ease-in-out"><svg class="-rotate-180 transform text-gray-300 hover:text-gray-500" xmlns="http://www.w3.org/2000/svg" viewBox="0 64 256 128" fill="currentColor" aria-hidden="true"><path d="M213.65674,101.657l-80,79.99976a7.99945,7.99945,0,0,1-11.31348,0l-80-79.99976A8,8,0,0,1,48,88H208a8,8,0,0,1,5.65674,13.657Z"></path></svg></button> <button id="desc" class="-mr-1 ml-2 h-[0.4rem] w-[0.8rem] transition ease-in-out"><svg class="text-gray-300 hover:text-gray-500" xmlns="http://www.w3.org/2000/svg" viewBox="0 64 256 128" fill="currentColor" aria-hidden="true"><path d="M213.65674,101.657l-80,79.99976a7.99945,7.99945,0,0,1-11.31348,0l-80-79.99976A8,8,0,0,1,48,88H208a8,8,0,0,1,5.65674,13.657Z"></path></svg></button></form></div> <div class="mb-2 whitespace-nowrap text-xs font-normal text-gray-500"><span>sequence</span><span class="italic text-gray-400 before:mx-1 before:content-['·']">lengths</span></div></div> <div><div class="" style="height: 40px; padding-top: 2px"><svg width="130" height="28"><g><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="0" y="0" width="130" height="30" fill-opacity="1"></rect></g><rect class="fill-white dark:fill-gray-900" x="0" y="26" width="130" height="2" stroke-opacity="1"></rect><line class="stroke-gray-100 dark:stroke-gray-500/20" x1="0" y1="27.5" x2="130" y2="27.5" stroke-opacity="1"></line><g><rect class="fill-indigo-500 cursor-pointer" x="-1" y="0" width="132" height="30" fill-opacity="0"></rect></g></svg> <div class="relative font-light text-gray-400" style="height: 10px; width: 130px;"><div class="absolute left-0 overflow-hidden text-ellipsis whitespace-nowrap" style="max-width: 60px">2</div> <div class="absolute overflow-hidden text-ellipsis whitespace-nowrap" style="right: 0px; max-width: 60px">2</div> </div></div></div></div> <div class="absolute right-0 top-0 z-10 h-full w-1 cursor-col-resize hover:bg-indigo-100 active:bg-indigo-500 dark:hover:bg-indigo-800 dark:active:bg-indigo-600/80"><div class="absolute right-0 top-0 h-full w-1"></div> </div> </th><th class="h-full max-w-sm p-2 text-left relative w-auto"><div class="flex h-full flex-col flex-nowrap justify-between"><div><div class="flex items-center justify-between">hash <form class="flex flex-col"><button id="asc" class="-mr-1 ml-2 h-[0.4rem] w-[0.8rem] transition ease-in-out"><svg class="-rotate-180 transform text-gray-300 hover:text-gray-500" xmlns="http://www.w3.org/2000/svg" viewBox="0 64 256 128" fill="currentColor" aria-hidden="true"><path d="M213.65674,101.657l-80,79.99976a7.99945,7.99945,0,0,1-11.31348,0l-80-79.99976A8,8,0,0,1,48,88H208a8,8,0,0,1,5.65674,13.657Z"></path></svg></button> <button id="desc" class="-mr-1 ml-2 h-[0.4rem] w-[0.8rem] transition ease-in-out"><svg class="text-gray-300 hover:text-gray-500" xmlns="http://www.w3.org/2000/svg" viewBox="0 64 256 128" fill="currentColor" aria-hidden="true"><path d="M213.65674,101.657l-80,79.99976a7.99945,7.99945,0,0,1-11.31348,0l-80-79.99976A8,8,0,0,1,48,88H208a8,8,0,0,1,5.65674,13.657Z"></path></svg></button></form></div> <div class="mb-2 whitespace-nowrap text-xs font-normal text-gray-500"><span>string</span><span class="italic text-gray-400 before:mx-1 before:content-['·']">lengths</span></div></div> <div><div class="" style="height: 40px; padding-top: 2px"><svg width="130" height="28"><g><rect class="fill-gray-400 dark:fill-gray-500/80" rx="2" x="0" y="0" width="64" height="30" fill-opacity="1"></rect><rect class=" fill-gray-200 dark:fill-gray-500/80" rx="2" x="66" y="25" width="64" height="5" fill-opacity="1"></rect></g><rect class="fill-white dark:fill-gray-900" x="0" y="26" width="130" height="2" stroke-opacity="1"></rect><line class="stroke-gray-100 dark:stroke-gray-500/20" x1="0" y1="27.5" x2="130" y2="27.5" stroke-opacity="1"></line><g><rect class="fill-indigo-500 cursor-pointer" x="-1" y="0" width="66" height="30" fill-opacity="0"></rect><rect class="fill-gray-200 cursor-pointer" x="65" y="0" width="66" height="30" fill-opacity="0"></rect></g></svg> <div class="relative font-light text-gray-400" style="height: 10px; width: 130px;"><div class="absolute left-0 overflow-hidden text-ellipsis whitespace-nowrap" style="max-width: 27px">64</div> <div class="absolute overflow-hidden text-ellipsis whitespace-nowrap" style="right: 66px; max-width: 27px">64</div> <div class="absolute -translate-x-1/2" style="left: 98px">⌀</div></div></div></div></div> <div class="absolute right-0 top-0 z-10 h-full w-1 cursor-col-resize hover:bg-indigo-100 active:bg-indigo-500 dark:hover:bg-indigo-800 dark:active:bg-indigo-600/80"><div class="absolute right-0 top-0 h-full w-1"></div> </div> </th></tr></thead> <tbody class="h-16 overflow-scroll"><tr class="group cursor-pointer space-x-4 divide-x border-b outline-offset-[-2px] odd:bg-gray-50 hover:bg-gray-100 dark:odd:bg-gray-925 dark:hover:bg-gray-850 last:border-none" tabindex="0" data-row-idx="0"><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-left" dir="auto"><div class="flex max-h-12 flex-wrap gap-1.5 overflow-hidden"><button class="inline-block h-12 rounded-sm" style="aspect-ratio: 1280 / 1246;;"><div class="relative flex h-full w-full items-center justify-center overflow-hidden rounded-sm"><div class="absolute inset-0 animate-pulse flex items-center justify-center bg-gray-200 dark:bg-gray-800"></div> <img loading="lazy" src="https://datasets-server.huggingface.co/assets/xcodemind/webcode2m_purified/--/6e1735ac07f6dcb002eb542cf6892e69412dbb33/--/default/train/0/image/image.png?Expires=1755748228&Signature=XNjUdvHtLBvi9M7ehNq-mXzPAqIPTiZjkIuVIFH5vto0ZRxXnBgLrpeLmv8s~UkpUUidvgDYui3jUuqzZdK~CCEqH1Z0za86JciV~UxKp9TbfeVwyuK0fpm7UjCEclFi7WA9U0LtSkbFyXR9KkmvlGN47g8-PQRnDpWPj999meNDdC6LHoFyS7tqtNrVyxJ51aCRcjzb2PapURw5T-XT6WacchiuYbxS0E4PshRm4hWy0oKb3tWd1PZIPkYV1FO9w63fYPKAOJksFk9Wn6L8CYKib4eNFIc4BljKbn7~Kr7mwt8U8kE8e2W2-GlsolNLO8WN1HxHzxAazGfR3KpK3w__&Key-Pair-Id=K3EI6M078Z3AC3" class="h-12 w-auto min-w-[3rem] object-cover invisible" alt=""></div> </button></div> </div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto"> <div> <span class="block ">{"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": "<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="17736e7b767957736e7b726f39797263">[email protected]</a>", "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": []}]}]}]}]}]}]}</span></div> </div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto"> <div> <span class="block "><!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><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="c4a0bda8a5aa84a0bda8a1bceaaaa1b0">[email protected]</a></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></span></div> </div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-right" dir="auto">3</div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-left" dir="auto"><div><button class="float-right ml-2 mr-0.5 mt-1 flex items-center justify-center rounded-full bg-white p-1.5 text-gray-700 ring-1 ring-gray-300 transition hover:bg-gray-50 hover:text-gray-900 hover:shadow-sm dark:bg-gray-800 dark:text-gray-100 dark:ring-gray-600 dark:hover:bg-gray-700 dark:hover:text-white"><svg class="text-sm" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 12 12"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.917 2.25h-.834v.833h.834v2.084A.833.833 0 0 0 9.75 6a.833.833 0 0 0-.833.833v2.084h-.834v.833h.834c.446-.113.833-.375.833-.833V7.25a.833.833 0 0 1 .833-.833H11v-.834h-.417a.833.833 0 0 1-.833-.833V3.083a.833.833 0 0 0-.833-.833Zm-5.834 0a.833.833 0 0 0-.833.833V4.75a.833.833 0 0 1-.833.833H1v.834h.417a.833.833 0 0 1 .833.833v1.667a.833.833 0 0 0 .833.833h.834v-.833h-.834V6.833A.833.833 0 0 0 2.25 6a.833.833 0 0 0 .833-.833V3.083h.834V2.25h-.834ZM6 7.25a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm1.667 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm-3.334 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Z" fill="currentColor"></path></svg></button> <span class="block min-h-[2rem]">[ 1280, 1246 ]</span></div></div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto"> <div> <span class="block ">en</span></div> </div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-left" dir="auto"><div><button class="float-right ml-2 mr-0.5 mt-1 flex items-center justify-center rounded-full bg-white p-1.5 text-gray-700 ring-1 ring-gray-300 transition hover:bg-gray-50 hover:text-gray-900 hover:shadow-sm dark:bg-gray-800 dark:text-gray-100 dark:ring-gray-600 dark:hover:bg-gray-700 dark:hover:text-white"><svg class="text-sm" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 12 12"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.917 2.25h-.834v.833h.834v2.084A.833.833 0 0 0 9.75 6a.833.833 0 0 0-.833.833v2.084h-.834v.833h.834c.446-.113.833-.375.833-.833V7.25a.833.833 0 0 1 .833-.833H11v-.834h-.417a.833.833 0 0 1-.833-.833V3.083a.833.833 0 0 0-.833-.833Zm-5.834 0a.833.833 0 0 0-.833.833V4.75a.833.833 0 0 1-.833.833H1v.834h.417a.833.833 0 0 1 .833.833v1.667a.833.833 0 0 0 .833.833h.834v-.833h-.834V6.833A.833.833 0 0 0 2.25 6a.833.833 0 0 0 .833-.833V3.083h.834V2.25h-.834ZM6 7.25a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm1.667 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm-3.334 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Z" fill="currentColor"></path></svg></button> <span class="block min-h-[2rem]">[ 925, 1323 ]</span></div></div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto"> <div> <span class="block ">8a03192e3b8d385b2f1f297f37df7a2688523844977cc6182867a9077d638db0</span></div> </div></div> </td> </tr><tr class="group cursor-pointer space-x-4 divide-x border-b outline-offset-[-2px] odd:bg-gray-50 hover:bg-gray-100 dark:odd:bg-gray-925 dark:hover:bg-gray-850 last:border-none" tabindex="0" data-row-idx="1"><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-left" dir="auto"><div class="flex max-h-12 flex-wrap gap-1.5 overflow-hidden"><button class="inline-block h-12 rounded-sm" style="aspect-ratio: 1280 / 2138;;"><div class="relative flex h-full w-full items-center justify-center overflow-hidden rounded-sm"><div class="absolute inset-0 animate-pulse flex items-center justify-center bg-gray-200 dark:bg-gray-800"></div> <img loading="lazy" src="https://datasets-server.huggingface.co/assets/xcodemind/webcode2m_purified/--/6e1735ac07f6dcb002eb542cf6892e69412dbb33/--/default/train/1/image/image.png?Expires=1755748228&Signature=TD8~VzpF3HB2MjhHsbdxIMayGPRFwu6FIWjRerxrF1FU3LqQGmY3iprOsEWfGvlQVjgVQk7VCdHaM3BlaW7K9~Ht6o249jbPRgCv4ny0-yFDE9vXO3dat3BVXx8mf11kG3jfedYCYmt1m9r9sOFkGijy0OIHLnczSjo9HvPRgMN2OAUa2U7etPtcbExbKH8f52au265H8pCk~AHw9W7mrGZS9OjZ-7q2oQzHv9b-lQ1aDkZgZu4PfFW9JrWANpHsW5-G4z5fBTWmgLtR26s9HbURobT0g3cu44UTEnjQRaqX8Afgx-VOk~iy7ZLZ11dXYvC1lPD3y8wDG5P82Ev6wQ__&Key-Pair-Id=K3EI6M078Z3AC3" class="h-12 w-auto min-w-[3rem] object-cover invisible" alt=""></div> </button></div> </div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto"> <div> <span class="block ">{"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": []}]}]}]}]}]}]}</span></div> </div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto"> <div> <span class="block "><!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></span></div> </div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-right" dir="auto">3</div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-left" dir="auto"><div><button class="float-right ml-2 mr-0.5 mt-1 flex items-center justify-center rounded-full bg-white p-1.5 text-gray-700 ring-1 ring-gray-300 transition hover:bg-gray-50 hover:text-gray-900 hover:shadow-sm dark:bg-gray-800 dark:text-gray-100 dark:ring-gray-600 dark:hover:bg-gray-700 dark:hover:text-white"><svg class="text-sm" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 12 12"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.917 2.25h-.834v.833h.834v2.084A.833.833 0 0 0 9.75 6a.833.833 0 0 0-.833.833v2.084h-.834v.833h.834c.446-.113.833-.375.833-.833V7.25a.833.833 0 0 1 .833-.833H11v-.834h-.417a.833.833 0 0 1-.833-.833V3.083a.833.833 0 0 0-.833-.833Zm-5.834 0a.833.833 0 0 0-.833.833V4.75a.833.833 0 0 1-.833.833H1v.834h.417a.833.833 0 0 1 .833.833v1.667a.833.833 0 0 0 .833.833h.834v-.833h-.834V6.833A.833.833 0 0 0 2.25 6a.833.833 0 0 0 .833-.833V3.083h.834V2.25h-.834ZM6 7.25a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm1.667 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm-3.334 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Z" fill="currentColor"></path></svg></button> <span class="block min-h-[2rem]">[ 1280, 2138 ]</span></div></div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto"> <div> <span class="block ">ja</span></div> </div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-left" dir="auto"><div><button class="float-right ml-2 mr-0.5 mt-1 flex items-center justify-center rounded-full bg-white p-1.5 text-gray-700 ring-1 ring-gray-300 transition hover:bg-gray-50 hover:text-gray-900 hover:shadow-sm dark:bg-gray-800 dark:text-gray-100 dark:ring-gray-600 dark:hover:bg-gray-700 dark:hover:text-white"><svg class="text-sm" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 12 12"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.917 2.25h-.834v.833h.834v2.084A.833.833 0 0 0 9.75 6a.833.833 0 0 0-.833.833v2.084h-.834v.833h.834c.446-.113.833-.375.833-.833V7.25a.833.833 0 0 1 .833-.833H11v-.834h-.417a.833.833 0 0 1-.833-.833V3.083a.833.833 0 0 0-.833-.833Zm-5.834 0a.833.833 0 0 0-.833.833V4.75a.833.833 0 0 1-.833.833H1v.834h.417a.833.833 0 0 1 .833.833v1.667a.833.833 0 0 0 .833.833h.834v-.833h-.834V6.833A.833.833 0 0 0 2.25 6a.833.833 0 0 0 .833-.833V3.083h.834V2.25h-.834ZM6 7.25a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm1.667 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm-3.334 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Z" fill="currentColor"></path></svg></button> <span class="block min-h-[2rem]">[ 213, 3623 ]</span></div></div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto"> <div> <span class="block ">3d27c488228e3431548f4b7f20f1b83664d6d79bcf3ff7ca3fe762dff23f8b80</span></div> </div></div> </td> </tr><tr class="group cursor-pointer space-x-4 divide-x border-b outline-offset-[-2px] odd:bg-gray-50 hover:bg-gray-100 dark:odd:bg-gray-925 dark:hover:bg-gray-850 last:border-none" tabindex="0" data-row-idx="2"><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-left" dir="auto"><div class="flex max-h-12 flex-wrap gap-1.5 overflow-hidden"><button class="inline-block h-12 rounded-sm" style="aspect-ratio: 1280 / 1207;;"><div class="relative flex h-full w-full items-center justify-center overflow-hidden rounded-sm"><div class="absolute inset-0 animate-pulse flex items-center justify-center bg-gray-200 dark:bg-gray-800"></div> <img loading="lazy" src="https://datasets-server.huggingface.co/assets/xcodemind/webcode2m_purified/--/6e1735ac07f6dcb002eb542cf6892e69412dbb33/--/default/train/2/image/image.png?Expires=1755748228&Signature=vNI75-9ne6c8UmEyz526fdX4VgYRY08ewE~UHKaJbR80tpGlNMK6ytsEHCmoLhkO-MocgUQu9srE0Rd~tYHpFLfsBitLnNHmeJhhyIyujWhNR7nBTq3dKdyuhsw8R0FELggdrp5uLqns3fQtuEJTVvPfLIWKZv~mBg70tHd~swJHLikxiycwb0PZf0uGsAX0e4rrRqA5Y34cZwTSSmz6DLcE7RQPqgqU98717Xen7NrvmqhZPpa0y~lwJ6VBL1MyFjA2Gj-qTEVy2JvoshbMSf6ZXsiI1fn8AgymZsY~viCKHQHMGTBtM64Zz40Gfs5Bc-zXRhTW3pbZk2w9g--ekQ__&Key-Pair-Id=K3EI6M078Z3AC3" class="h-12 w-auto min-w-[3rem] object-cover invisible" alt=""></div> </button></div> </div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto"> <div> <span class="block ">{"type": "body", "content": "", "style": "margin: 0; padding-top: 0; padding-right: 0; padding-bottom: 0; padding-left: 0; margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; line-height: 1; font-family: Open Sans, Arial, sans-serif; font-size: 14px; color: #666; background-color: #fff; line-height: 1.7em; font-weight: 500; background-size: cover !important; background-position: top !important; background-repeat: no-repeat !important; background-attachment: fixed; box-sizing: border-box", "bbox": [0, 0, 1280, 1178], "children": [{"type": "div", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box", "bbox": [0, 0, 1280, 1178], "children": [{"type": "div", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box", "bbox": [0, 0, 1280, 1178], "children": [{"type": "header", "content": "", "style": "display: block; box-sizing: border-box", "bbox": [0, 0, 1280, 3], "children": [{"type": "div", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box; position: relative; z-index: 1; z-index: 2", "bbox": [0, 0, 1280, 3], "children": [{"type": "div", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box; position: relative; background-color: #fff; background-position: 50%; background-size: 100%; background-size: cover; max-height: none; max-width: 100%; padding-top: 2px; padding-bottom: 1px", "bbox": [0, 0, 1280, 3], "children": []}]}]}, {"type": "div", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box", "bbox": [0, 3, 1280, 1175], "children": [{"type": "div", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; background-color: #fff; box-sizing: border-box", "bbox": [0, 3, 1280, 967], "children": [{"type": "div", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; width: 80%; max-width: 1080px; margin: auto; position: relative; box-sizing: border-box", "bbox": [128, 3, 1024, 967], "children": [{"type": "div", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box", "bbox": [128, 3, 1024, 967], "children": [{"type": "div", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box", "bbox": [128, 3, 1024, 879], "children": [{"type": "article", "content": "", "style": "display: block; box-sizing: border-box; margin-bottom: 60px; word-wrap: break-word", "bbox": [128, 3, 1024, 879], "children": [{"type": "div", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box", "bbox": [128, 3, 1024, 373], "children": [{"type": "h1", "content": "TH-500", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; color: #333; padding-bottom: 10px; line-height: 1em; font-weight: 500; font-size: 30px; box-sizing: border-box", "bbox": [128, 3, 1024, 40], "children": []}, {"type": "p", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; padding-bottom: 1em; font-size: 14px; padding-bottom: 15px; box-sizing: border-box; font-size: 14px; margin-bottom: 6px", "bbox": [128, 43, 1024, 38], "children": [{"type": "span", "content": "Jul 31, 2019", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box", "bbox": [927, 46, 76, 16], "children": []}]}, {"type": "img", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; max-width: 100%; height: auto; box-sizing: border-box", "bbox": [128, 112, 1024, 256], "children": []}]}, {"type": "div", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box; padding-top: 30px", "bbox": [128, 376, 1024, 344], "children": [{"type": "p", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; padding-bottom: 1em; box-sizing: border-box", "bbox": [128, 406, 1024, 314], "children": [{"type": "a", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; color: #2ea3f2; box-sizing: border-box", "bbox": [128, 685, 300, 16], "children": [{"type": "img", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; max-width: 100%; height: auto; box-sizing: border-box; vertical-align: bottom; max-width: 100%", "bbox": [128, 406, 300, 300], "children": []}]}]}]}, {"type": "div", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box", "bbox": [128, 720, 1024, 161], "children": [{"type": "section", "content": "", "style": "display: block; box-sizing: border-box; padding-top: 75px", "bbox": [128, 720, 1024, 161], "children": [{"type": "div", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box; padding-top: 17px", "bbox": [128, 795, 1024, 86], "children": [{"type": "h3", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; color: #333; padding-bottom: 10px; line-height: 1em; font-weight: 500; font-size: 22px; box-sizing: border-box", "bbox": [128, 812, 1024, 32], "children": [{"type": "span", "content": "Submit a Comment", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box", "bbox": [128, 810, 188, 25], "children": []}]}, {"type": "p", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; padding-bottom: 1em; box-sizing: border-box", "bbox": [128, 844, 1024, 37], "children": [{"type": "a", "content": "logged in", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; color: #2ea3f2; box-sizing: border-box", "bbox": [209, 847, 56, 16], "children": []}]}]}]}]}]}]}, {"type": "div", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box; padding-bottom: 28px", "bbox": [128, 942, 1024, 28], "children": [{"type": "div", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box; margin-bottom: 30px; width: 100%; float: none; float: left; max-width: 100%; word-wrap: break-word", "bbox": [128, 942, 1024, 146], "children": [{"type": "h4", "content": "Business Name", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; color: #333; padding-bottom: 10px; line-height: 1em; font-weight: 500; font-size: 18px; box-sizing: border-box", "bbox": [128, 942, 1024, 28], "children": []}, {"type": "div", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box", "bbox": [128, 970, 1024, 118], "children": [{"type": "div", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box", "bbox": [128, 970, 1024, 118], "children": [{"type": "div", "content": "Business Name", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box", "bbox": [128, 970, 1024, 23], "children": []}, {"type": "div", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box", "bbox": [128, 994, 1024, 47], "children": [{"type": "div", "content": "Address", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box", "bbox": [128, 994, 1024, 23], "children": []}, {"type": "div", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box", "bbox": [128, 1017, 1024, 23], "children": [{"type": "span", "content": "City", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box", "bbox": [128, 1020, 23, 16], "children": []}, {"type": "abbr", "content": "State", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box", "bbox": [158, 1020, 32, 16], "children": []}, {"type": "span", "content": "Zip Code", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box", "bbox": [195, 1020, 56, 16], "children": []}]}]}, {"type": "div", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box", "bbox": [128, 1041, 1024, 23], "children": []}, {"type": "div", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box", "bbox": [128, 1065, 1024, 23], "children": []}]}]}]}]}]}]}]}, {"type": "footer", "content": "", "style": "display: block; box-sizing: border-box; background-color: #222", "bbox": [0, 970, 1280, 207], "children": [{"type": "div", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box; background-color: rgba(255, 255, 255, 0.05)", "bbox": [0, 970, 1280, 187], "children": [{"type": "div", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; width: 80%; max-width: 1080px; margin: auto; position: relative; box-sizing: border-box", "bbox": [128, 970, 1024, 187], "children": [{"type": "ul", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; list-style: none; box-sizing: border-box; padding: 15px 0", "bbox": [128, 970, 1024, 187], "children": [{"type": "li", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box; font-weight: 600; display: inline-block; font-size: 14px; padding-right: 22px", "bbox": [128, 1119, 125, 23], "children": [{"type": "a", "content": "Old Home Page", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; color: #2ea3f2; box-sizing: border-box; color: #bbb; transition: all 0.4s ease-in-out", "bbox": [128, 1122, 103, 16], "children": []}]}, {"type": "li", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box; font-weight: 600; display: inline-block; font-size: 14px; padding-right: 22px", "bbox": [257, 1119, 137, 23], "children": [{"type": "a", "content": "Old Why Us Page", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; color: #2ea3f2; box-sizing: border-box; color: #bbb; transition: all 0.4s ease-in-out", "bbox": [257, 1122, 115, 16], "children": []}]}, {"type": "li", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box; font-weight: 600; display: inline-block; font-size: 14px; padding-right: 22px", "bbox": [399, 1119, 79, 23], "children": [{"type": "a", "content": "Services", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; color: #2ea3f2; box-sizing: border-box; color: #bbb; transition: all 0.4s ease-in-out", "bbox": [399, 1122, 57, 16], "children": []}]}, {"type": "li", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box; font-weight: 600; display: inline-block; font-size: 14px; padding-right: 22px", "bbox": [482, 1119, 160, 23], "children": [{"type": "a", "content": "Old Contact Us Page", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; color: #2ea3f2; box-sizing: border-box; color: #bbb; transition: all 0.4s ease-in-out", "bbox": [482, 1122, 138, 16], "children": []}]}, {"type": "li", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box; font-weight: 600; display: inline-block; font-size: 14px; padding-right: 22px", "bbox": [647, 1119, 181, 23], "children": [{"type": "a", "content": "Old Privacy Policy Page", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; color: #2ea3f2; box-sizing: border-box; color: #bbb; transition: all 0.4s ease-in-out", "bbox": [647, 1122, 159, 16], "children": []}]}]}]}]}, {"type": "div", "content": "", "style": "margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; box-sizing: border-box; background-color: #1f1f1f; background-color: rgba(0, 0, 0, 0.32); padding: 15px 0 5px", "bbox": [0, 1158, 1280, 20], "children": []}]}]}]}]}]}</span></div> </div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto"> <div> <span class="block "><!DOCTYPE html> <html><head><title>TH-500 | Lamonaca Iron Works</title></head><body class="attachment attachment-template-default single single-attachment postid-402 attachmentid-402 attachment-jpeg et-tb-has-template et-tb-has-header et_pb_button_helper_class et_pb_footer_columns4 et_cover_background et_pb_gutter et_pb_gutters3 et_right_sidebar et_divi_theme et-db"><div id="page-container"><div class="et-boc" id="et-boc"><header class="et-l et-l--header"><div class="et_builder_inner_content et_pb_gutters3"><div class="et_pb_section et_pb_section_0_tb_header et_pb_sticky_module et_section_regular et_pb_section--with-menu"><div class="et_pb_row et_pb_row_0_tb_header et_pb_gutters3 et_pb_row--with-menu"><div class="et_pb_column et_pb_column_1_5 et_pb_column_0_tb_header et_clickable et_pb_css_mix_blend_mode_passthrough"><div class="et_pb_module et_pb_image et_pb_image_0_tb_header"><span class="et_pb_image_wrap"><img class="wp-image-1101" height="100" src="https://lamonacaironworks.com/wp-content/uploads/2020/07/lamonaca-logo-sm.png" width="200"/></span></div></div><div class="et_pb_column et_pb_column_3_5 et_pb_column_1_tb_header et_pb_css_mix_blend_mode_passthrough et_pb_column--with-menu"><div class="et_pb_module et_pb_menu et_pb_menu_0_tb_header et_pb_bg_layout_light et_pb_text_align_left et_dropdown_animation_fade et_pb_menu--without-logo et_pb_menu--style-centered"><div class="et_pb_menu_inner_container clearfix"><div class="et_pb_menu__wrap"><div class="et_pb_menu__menu"><nav class="et-menu-nav"><ul class="et-menu nav" id="menu-main"><li class="et_pb_menu_page_id-home menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-1813"><a>Home</a></li><li class="et_pb_menu_page_id-1273 menu-item menu-item-type-post_type menu-item-object-page menu-item-1845"><a>Why Us</a></li><li class="et_pb_menu_page_id-746 menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-746"><a>Services</a><ul class="sub-menu"><li class="et_pb_menu_page_id-1321 menu-item menu-item-type-post_type menu-item-object-page menu-item-1840"><a>Interior Spiral Stairs</a></li><li class="et_pb_menu_page_id-1319 menu-item menu-item-type-post_type menu-item-object-page menu-item-1839"><a>Exterior Spiral Stairs</a></li><li class="et_pb_menu_page_id-1325 menu-item menu-item-type-post_type menu-item-object-page menu-item-1838"><a>Balusters</a></li><li class="et_pb_menu_page_id-1323 menu-item menu-item-type-post_type menu-item-object-page menu-item-1841"><a>Iron Fences and More</a></li></ul></li><li class="et_pb_menu_page_id-1610 menu-item menu-item-type-post_type menu-item-object-page menu-item-1844"><a>Gallery</a></li><li class="et_pb_menu_page_id-1496 menu-item menu-item-type-post_type menu-item-object-page menu-item-1843"><a>Customize</a></li><li class="et_pb_menu_page_id-1316 menu-item menu-item-type-post_type menu-item-object-page menu-item-1842"><a>Contact Us</a></li></ul></nav></div><div class="et_mobile_nav_menu"><div class="mobile_nav closed"><span class="mobile_menu_bar"></span></div></div></div></div></div></div><div class="et_pb_column et_pb_column_1_5 et_pb_column_2_tb_header et_pb_css_mix_blend_mode_passthrough et-last-child"><div class="et_pb_button_module_wrapper et_pb_button_0_tb_header_wrapper et_pb_button_alignment_center et_pb_module"><a class="et_pb_button et_pb_button_0_tb_header et_pb_bg_layout_dark">Contact Us</a></div><div class="et_pb_module et_pb_text et_pb_text_0_tb_header et_pb_text_align_center et_pb_bg_layout_light"><div class="et_pb_text_inner"><p>(773) 638-6633</p></div></div></div></div></div> </div></header><div id="et-main-area"><div id="main-content"><div class="container"><div class="clearfix" id="content-area"><div id="left-area"><article class="et_pb_post post-402 attachment type-attachment status-inherit hentry" id="post-402"><div class="et_post_meta_wrapper"><h1 class="entry-title">TH-500</h1><p class="post-meta"><span class="published">Jul 31, 2019</span></p><img class="" height="675" src="https://lamonacaironworks.com/wp-content/uploads/2019/07/TH-500.jpg" width="1080"/></div><div class="entry-content"><p class="attachment"><a><img class="attachment-medium size-medium lazyload" height="75" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="300"/><noscript><img class="attachment-medium size-medium lazyload" height="75" src="https://lamonacaironworks.com/wp-content/uploads/2019/07/TH-500-300x75.jpg" width="300"/></noscript></a></p></div><div class="et_post_meta_wrapper"><section id="comment-wrap"><div class="nocomments" id="comment-section"></div><div class="comment-respond" id="respond"><h3 class="comment-reply-title" id="reply-title"><span>Submit a Comment</span> <small><a id="cancel-comment-reply-link" style="display:none;">Cancel reply</a></small></h3><p class="must-log-in">You must be <a>logged in</a> to post a comment.</p> </div></section> </div></article></div><div id="sidebar"><div class="et_pb_widget widget_text" id="text-5"><h4 class="widgettitle">Business Name</h4> <div class="textwidget"><div class="vcard"><div class="fn org">Business Name</div><div class="adr"><div class="street-address">Address</div><div> <span class="locality">City</span>, <abbr class="region">State</abbr> <span class="postal-code">Zip Code</span></div></div><div>Phone: <span class="tel"></span></div><div>Email: <span class="email"><a></a></span></div></div></div></div> </div></div></div></div><footer id="main-footer"><div id="et-footer-nav"><div class="container"><ul class="bottom-nav" id="menu-site-1"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-98"><a>Old Home Page</a></li><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-99"><a>Old Why Us Page</a></li><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-102"><a>Services</a></li><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-100"><a>Old Contact Us Page</a></li><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-101"><a>Old Privacy Policy Page</a></li></ul> </div></div><div id="footer-bottom"><div class="container clearfix"><ul class="et-social-icons"><li class="et-social-icon et-social-facebook"><a class="icon"><span>Facebook</span></a></li><li class="et-social-icon et-social-twitter"><a class="icon"><span>X</span></a></li></ul><p id="footer-info">Designed by <a>Elegant Themes</a> | Powered by <a>WordPress</a></p> </div></div></footer></div></div></div><style>body { margin: 0 } body { padding-top: 0; padding-right: 0; padding-bottom: 0; padding-left: 0 } a, abbr, acronym, address, applet, b, big, blockquote, body, center, cite, code, dd, del, dfn, div, dl, dt, em, fieldset, font, form, h1, h2, h3, h4, h5, h6, html, i, iframe, img, ins, kbd, label, legend, li, object, ol, p, pre, q, s, samp, small, span, strike, strong, sub, sup, tt, u, ul, var { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent } body { line-height: 1 } ol, ul { list-style: none } article, aside, footer, header, hgroup, nav, section { display: block } body { font-family: Open Sans, Arial, sans-serif; font-size: 14px; color: #666; background-color: #fff; line-height: 1.7em; font-weight: 500 } body.et_cover_background { background-size: cover !important; background-position: top !important; background-repeat: no-repeat !important; background-attachment: fixed } a { color: #2ea3f2 } p { padding-bottom: 1em } h1, h2, h3, h4, h5, h6 { color: #333; padding-bottom: 10px; line-height: 1em; font-weight: 500 } h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { color: inherit } h1 { font-size: 30px } h3 { font-size: 22px } h4 { font-size: 18px } img { max-width: 100%; height: auto } #main-content { background-color: #fff } .container { width: 80%; max-width: 1080px; margin: auto; position: relative } #left-area ul, .entry-content ul, .et-l--body ul, .et-l--footer ul, .et-l--header ul { list-style-type: disc; padding: 0 0 23px 1em; line-height: 26px } #left-area .post-meta { font-size: 14px; padding-bottom: 15px } * { box-sizing: border-box } .et_pb_button { font-size: 20px; font-weight: 500; padding: 0.3em 1em; line-height: 1.7em !important; background-color: transparent; background-size: cover; background-position: 50%; background-repeat: no-repeat; border: 2px solid; border-radius: 3px; transition-duration: 0.2s; transition-property: all !important } .et_pb_button, .et_pb_button_inner { position: relative } .et_pb_bg_layout_dark, .et_pb_bg_layout_dark h1, .et_pb_bg_layout_dark h2, .et_pb_bg_layout_dark h3, .et_pb_bg_layout_dark h4, .et_pb_bg_layout_dark h5, .et_pb_bg_layout_dark h6 { color: #fff !important } .et_pb_module.et_pb_text_align_left { text-align: left } .et_pb_module.et_pb_text_align_center { text-align: center } .et_builder_inner_content { position: relative; z-index: 1 } header .et_builder_inner_content { z-index: 2 } .et_pb_css_mix_blend_mode_passthrough { mix-blend-mode: unset !important } .et_pb_all_tabs, .et_pb_module, .et_pb_posts_nav a, .et_pb_tab, .et_pb_with_background { position: relative; background-size: cover; background-position: 50%; background-repeat: no-repeat } .et_clickable { cursor: pointer } .et_pb_module { animation-timing-function: linear; animation-duration: 0.2s } .et_pb_post { margin-bottom: 60px; word-wrap: break-word } .et_pb_post .entry-content { padding-top: 30px } .et_pb_post .post-meta { font-size: 14px; margin-bottom: 6px } .et_pb_image_container img, .et_pb_post a img { vertical-align: bottom; max-width: 100% } #main-footer { background-color: #222 } #footer-bottom { background-color: #1f1f1f; background-color: rgba(0, 0, 0, 0.32); padding: 15px 0 5px } #footer-bottom a { transition: all 0.4s ease-in-out } #footer-info { text-align: left; color: #666; padding-bottom: 10px; float: left } #footer-info a { font-weight: 700; color: #666 } #et-footer-nav { background-color: rgba(255, 255, 255, 0.05) } .bottom-nav { padding: 15px 0 } .bottom-nav li { font-weight: 600; display: inline-block; font-size: 14px; padding-right: 22px } .bottom-nav a { color: #bbb; transition: all 0.4s ease-in-out } .et-social-icons { float: right } .et-social-icons li { display: inline-block; margin-left: 20px } .et-social-icon a { display: inline-block; font-size: 24px; position: relative; text-align: center; transition: color 300ms ease 0s; color: #666; text-decoration: none } .et-social-icon span { display: none } #sidebar { padding-bottom: 28px } #sidebar .et_pb_widget { margin-bottom: 30px; width: 100%; float: none } #comment-wrap { padding-top: 75px } #respond { padding-top: 17px } #reply-title small { display: block; font-size: 14px; font-weight: 400 } .et_pb_widget { float: left; max-width: 100%; word-wrap: break-word } .et_pb_widget a { text-decoration: none; color: #666 } .et_pb_section { position: relative; background-color: #fff; background-position: 50%; background-size: 100%; background-size: cover } .et_pb_row { width: 80%; max-width: 1080px; margin: auto; position: relative } .et_pb_column { float: left; background-size: cover; background-position: 50%; position: relative; z-index: 2; min-height: 1px } .et_pb_column--with-menu { z-index: 3 } .et_pb_column, .et_pb_row, .et_pb_row_inner { background-size: cover; background-position: 50%; background-repeat: no-repeat } .et_pb_image { margin-left: auto; margin-right: auto; line-height: 0 } .et_pb_image { display: block } .et_pb_image .et_pb_image_wrap { display: inline-block; position: relative; max-width: 100% } .et_pb_image img { position: relative } .et-menu li { display: inline-block; font-size: 14px; padding-right: 22px } .et-menu a { color: rgba(0, 0, 0, 0.6); text-decoration: none; display: block; position: relative } .et-menu li > a { padding-bottom: 29px; word-wrap: break-word } .et_pb_menu__wrap .mobile_menu_bar { transform: translatey(3%) } .et_pb_menu .et-menu-nav, .et_pb_menu .et-menu-nav > ul { float: none } .et_pb_menu .et-menu-nav > ul { padding: 0 !important; line-height: 1.7em } .et_pb_menu .et-menu-nav > ul ul { padding: 20px 0; text-align: left } .et_pb_menu_inner_container { position: relative } .et_pb_menu .et_pb_menu__wrap { flex: 1 1 auto; display: -webkit-box; display: -ms-flexbox; display: flex; justify-content: flex-start; align-items: stretch; flex-wrap: wrap; opacity: 1 } .et_pb_menu .et_pb_menu__menu { flex: 0 1 auto; justify-content: flex-start } .et_pb_menu .et_pb_menu__menu, .et_pb_menu .et_pb_menu__menu > nav, .et_pb_menu .et_pb_menu__menu > nav > ul { display: -webkit-box; display: -ms-flexbox; display: flex; align-items: stretch } .et_pb_menu .et_pb_menu__menu > nav > ul { flex-wrap: wrap; justify-content: flex-start } .et_pb_menu .et_pb_menu__menu > nav > ul > li { position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; align-items: stretch; margin: 0 } .et_pb_menu .et_pb_menu__menu > nav > ul > li > ul { top: calc(100% - 1px); left: 0 } .et_pb_menu--without-logo .et_pb_menu__menu > nav > ul { padding: 0 !important } .et_pb_menu--without-logo .et_pb_menu__menu > nav > ul > li { margin-top: 8px } .et_pb_menu--without-logo .et_pb_menu__menu > nav > ul > li > a { padding-bottom: 8px } .et_pb_menu .et-menu { margin-left: -11px; margin-right: -11px } .et_pb_menu .et-menu > li { padding-left: 11px; padding-right: 11px } .et_pb_menu--style-centered .et_pb_menu__menu > nav > ul, .et_pb_menu--style-centered .et_pb_menu__wrap { justify-content: center } .nav li li { padding: 0 20px; margin: 0 } .et-menu li li a { padding: 6px 20px; width: 200px } .nav li { position: relative; line-height: 1em } .nav li li { position: relative; line-height: 2em } .nav li ul { position: absolute; padding: 20px 0; z-index: 9999; width: 240px; background: #fff; visibility: hidden; opacity: 0; border-top: 3px solid #2ea3f2; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); text-align: left } .et_mobile_menu li a, .nav li li a { font-size: 14px; transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out } .et_mobile_nav_menu { float: right; display: none } .mobile_menu_bar { position: relative; display: block; line-height: 0 } .et_pb_button_module_wrapper.et_pb_button_alignment_center { text-align: center } .et_pb_button_module_wrapper > a { display: inline-block } .et_pb_text { word-wrap: break-word } .et_pb_text_inner { position: relative } .et_pb_section_0_tb_header { max-height: none; max-width: 100% } .et_pb_section_0_tb_header.et_pb_section { padding-top: 2px; padding-bottom: 1px } .et_pb_row_0_tb_header, body #page-container .et-db #et-boc .et-l .et_pb_row_0_tb_header.et_pb_row, body.et_pb_pagebuilder_layout.single #page-container #et-boc .et-l .et_pb_row_0_tb_header.et_pb_row, body.et_pb_pagebuilder_layout.single.et_full_width_page #page-container .et_pb_row_0_tb_header.et_pb_row { width: 100%; max-width: 1903px } .et_pb_image_0_tb_header { padding-right: 12px; text-align: left; margin-left: 0 } .et_pb_menu_0_tb_header.et_pb_menu ul li a { font-weight: 600; font-size: 18px; color: #242038 !important } .et_pb_menu_0_tb_header.et_pb_menu { background-color: #fff; min-height: 62px } .et_pb_menu_0_tb_header { padding-top: 10px; padding-right: 0; width: 100% } .et_pb_menu_0_tb_header.et_pb_menu .nav li ul.sub-menu a, .et_pb_menu_0_tb_header.et_pb_menu .et_mobile_menu a, .et_pb_menu_0_tb_header.et_pb_menu .nav li ul.sub-menu li.current-menu-item a, .et_pb_menu_0_tb_header.et_pb_menu ul li.current-menu-item a, .et_pb_text_0_tb_header.et_pb_text, .et_pb_text_0_tb_header.et_pb_text a { color: #242038 !important } .et_pb_menu_0_tb_header.et_pb_menu .nav li ul { background-color: #fff !important; border-color: #242038 } .et_pb_button_0_tb_header_wrapper { margin-top: 10px !important; margin-bottom: 9px !important } body #page-container .et_pb_section .et_pb_button_0_tb_header { color: #fff !important; border-radius: 5px; background-color: #242038 } .et_pb_text_0_tb_header { font-weight: 600; font-size: 18px; min-height: 27.8px } .et_pb_column_0_tb_header { padding-left: 25px; text-align: center } .et_pb_row_0_tb_header.et_pb_row { padding-right: 0 !important; margin-left: auto !important; margin-right: auto !important; padding-right: 0 } .et_pb_menu_0_tb_header.et_pb_module { margin-left: auto !important; margin-right: auto !important }</style></body></html></span></div> </div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-right" dir="auto">3</div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-left" dir="auto"><div><button class="float-right ml-2 mr-0.5 mt-1 flex items-center justify-center rounded-full bg-white p-1.5 text-gray-700 ring-1 ring-gray-300 transition hover:bg-gray-50 hover:text-gray-900 hover:shadow-sm dark:bg-gray-800 dark:text-gray-100 dark:ring-gray-600 dark:hover:bg-gray-700 dark:hover:text-white"><svg class="text-sm" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 12 12"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.917 2.25h-.834v.833h.834v2.084A.833.833 0 0 0 9.75 6a.833.833 0 0 0-.833.833v2.084h-.834v.833h.834c.446-.113.833-.375.833-.833V7.25a.833.833 0 0 1 .833-.833H11v-.834h-.417a.833.833 0 0 1-.833-.833V3.083a.833.833 0 0 0-.833-.833Zm-5.834 0a.833.833 0 0 0-.833.833V4.75a.833.833 0 0 1-.833.833H1v.834h.417a.833.833 0 0 1 .833.833v1.667a.833.833 0 0 0 .833.833h.834v-.833h-.834V6.833A.833.833 0 0 0 2.25 6a.833.833 0 0 0 .833-.833V3.083h.834V2.25h-.834ZM6 7.25a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm1.667 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm-3.334 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Z" fill="currentColor"></path></svg></button> <span class="block min-h-[2rem]">[ 1280, 1207 ]</span></div></div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto"> <div> <span class="block ">en</span></div> </div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-left" dir="auto"><div><button class="float-right ml-2 mr-0.5 mt-1 flex items-center justify-center rounded-full bg-white p-1.5 text-gray-700 ring-1 ring-gray-300 transition hover:bg-gray-50 hover:text-gray-900 hover:shadow-sm dark:bg-gray-800 dark:text-gray-100 dark:ring-gray-600 dark:hover:bg-gray-700 dark:hover:text-white"><svg class="text-sm" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 12 12"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.917 2.25h-.834v.833h.834v2.084A.833.833 0 0 0 9.75 6a.833.833 0 0 0-.833.833v2.084h-.834v.833h.834c.446-.113.833-.375.833-.833V7.25a.833.833 0 0 1 .833-.833H11v-.834h-.417a.833.833 0 0 1-.833-.833V3.083a.833.833 0 0 0-.833-.833Zm-5.834 0a.833.833 0 0 0-.833.833V4.75a.833.833 0 0 1-.833.833H1v.834h.417a.833.833 0 0 1 .833.833v1.667a.833.833 0 0 0 .833.833h.834v-.833h-.834V6.833A.833.833 0 0 0 2.25 6a.833.833 0 0 0 .833-.833V3.083h.834V2.25h-.834ZM6 7.25a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm1.667 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm-3.334 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Z" fill="currentColor"></path></svg></button> <span class="block min-h-[2rem]">[ 3599, 2372 ]</span></div></div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto"> <div> <span class="block ">4294fe86cecbd2937d9920bc798e95136c061b7b92b7e80e7080b238d3519e3d</span></div> </div></div> </td> </tr><tr class="group cursor-pointer space-x-4 divide-x border-b outline-offset-[-2px] odd:bg-gray-50 hover:bg-gray-100 dark:odd:bg-gray-925 dark:hover:bg-gray-850 last:border-none" tabindex="0" data-row-idx="3"><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-left" dir="auto"><div class="flex max-h-12 flex-wrap gap-1.5 overflow-hidden"><button class="inline-block h-12 rounded-sm" style="aspect-ratio: 1280 / 1262;;"><div class="relative flex h-full w-full items-center justify-center overflow-hidden rounded-sm"><div class="absolute inset-0 animate-pulse flex items-center justify-center bg-gray-200 dark:bg-gray-800"></div> <img loading="lazy" src="https://datasets-server.huggingface.co/assets/xcodemind/webcode2m_purified/--/6e1735ac07f6dcb002eb542cf6892e69412dbb33/--/default/train/3/image/image.png?Expires=1755748228&Signature=ar~jR9~I01~DBmbftufZYy0iJu~AqWn8Ygy~ea66it0RfwhV2A3pnGImlFpf1X9LURYgdECqPxw2y3tJOC3S2XzZrl4Zc64luRgF3AjKpdwLjkZA8edYBT-X-XMfzLaS01OhHL0wCd6p2cfRolFs--q1Lypvok-podD100tj-IlGqWCOyh6lNLR2gmRkB7nPDaNaYQlrSYWi7P6NlGawTYA8PbZC-J33LU~Vl~qH1ZzpPAowkY1EQX98aB0RH9O3~VImcGfLtlsPSvep0LefcvJY4TzYXbFSUb2iK6hxOnjKp4FPIhb~mQ3p2x7V-G9~fHnm-BMqi~f6vd3JqpXGfg__&Key-Pair-Id=K3EI6M078Z3AC3" class="h-12 w-auto min-w-[3rem] object-cover invisible" alt=""></div> </button></div> </div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto"> <div> <span class="block ">{"type": "body", "content": "", "style": "font-family: \"Open Sans\"; background-color: #000 !important", "bbox": [8, 8, 1264, 1245], "children": [{"type": "div", "content": "", "style": "max-width: 1000px", "bbox": [8, 8, 1000, 1245], "children": [{"type": "header", "content": "", "style": "background-color: #000", "bbox": [8, 8, 1000, 225], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 8, 1000, 225], "children": [{"type": "div", "content": "", "style": "height: 125px", "bbox": [8, 8, 1000, 125], "children": [{"type": "img", "content": "", "style": "display: block; margin: 0 auto", "bbox": [8, 8, 1140, 125], "children": []}]}, {"type": "a", "content": "", "style": "background-color: #fff", "bbox": [8, 133, 42, 16], "children": [{"type": "span", "content": "Menu", "style": null, "bbox": [8, 133, 42, 16], "children": []}]}, {"type": "nav", "content": "", "style": null, "bbox": [8, 150, 1000, 83], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 150, 1000, 17], "children": [{"type": "a", "content": "Skip to content", "style": null, "bbox": [8, 150, 90, 16], "children": []}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 182, 1000, 51], "children": [{"type": "ul", "content": "", "style": null, "bbox": [8, 182, 1000, 51], "children": [{"type": "li", "content": "", "style": null, "bbox": [48, 182, 960, 17], "children": [{"type": "a", "content": "Home", "style": null, "bbox": [48, 182, 36, 16], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [48, 199, 960, 17], "children": [{"type": "a", "content": "The Panel Jumper", "style": null, "bbox": [48, 199, 108, 16], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [48, 216, 960, 17], "children": [{"type": "a", "content": "Perfect Bound Podcast", "style": null, "bbox": [48, 216, 136, 16], "children": []}]}]}]}]}]}]}, {"type": "div", "content": "", "style": "background-color: #fff", "bbox": [8, 248, 1000, 969], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 248, 1000, 969], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 248, 1000, 30], "children": [{"type": "a", "content": "", "style": null, "bbox": [8, 261, 29, 16], "children": [{"type": "img", "content": "", "style": null, "bbox": [8, 248, 26, 26], "children": []}]}, {"type": "a", "content": "", "style": null, "bbox": [37, 261, 29, 16], "children": [{"type": "img", "content": "", "style": null, "bbox": [37, 248, 26, 26], "children": []}]}, {"type": "a", "content": "", "style": null, "bbox": [67, 261, 26, 16], "children": [{"type": "img", "content": "", "style": null, "bbox": [67, 248, 26, 26], "children": []}]}]}, {"type": "section", "content": "", "style": null, "bbox": [8, 296, 1000, 921], "children": [{"type": "div", "content": "", "style": "width: 100%; max-width: 650px; max-width: calc(100% - 350px); color: #555", "bbox": [8, 296, 650, 705], "children": [{"type": "article", "content": "", "style": null, "bbox": [8, 296, 650, 347], "children": [{"type": "header", "content": "", "style": null, "bbox": [8, 296, 650, 61], "children": [{"type": "h2", "content": "", "style": "font-family: \"Merriweather\"; color: #444; color: #444", "bbox": [8, 296, 650, 26], "children": [{"type": "a", "content": "Perfect Bound Podcast \u2013 Episode 269", "style": "font-family: \"Merriweather\"; color: #444", "bbox": [8, 296, 356, 25], "children": []}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 341, 650, 17], "children": [{"type": "span", "content": "", "style": null, "bbox": [8, 341, 121, 16], "children": [{"type": "a", "content": "thepaneljumper", "style": null, "bbox": [29, 341, 93, 16], "children": []}, {"type": "span", "content": "|", "style": null, "bbox": [126, 341, 3, 16], "children": []}]}, {"type": "time", "content": "", "style": null, "bbox": [133, 341, 72, 16], "children": [{"type": "a", "content": "", "style": null, "bbox": [133, 341, 72, 16], "children": [{"type": "span", "content": "10/12/2020", "style": null, "bbox": [133, 341, 68, 16], "children": []}]}]}, {"type": "span", "content": "|", "style": null, "bbox": [205, 341, 3, 16], "children": []}, {"type": "time", "content": "10/10/2020", "style": null, "bbox": [208, 341, 68, 16], "children": []}]}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 358, 650, 237], "children": [{"type": "a", "content": "", "style": null, "bbox": [8, 495, 229, 16], "children": [{"type": "img", "content": "", "style": null, "bbox": [8, 358, 229, 150], "children": []}]}, {"type": "p", "content": "", "style": "color: #555", "bbox": [8, 527, 650, 68], "children": [{"type": "a", "content": "", "style": null, "bbox": [8, 561, 601, 33], "children": [{"type": "span", "content": "\u2192", "style": null, "bbox": [56, 578, 15, 16], "children": []}]}]}]}, {"type": "footer", "content": "", "style": null, "bbox": [8, 610, 650, 34], "children": [{"type": "span", "content": "", "style": null, "bbox": [8, 610, 628, 33], "children": [{"type": "a", "content": "comics dungeon", "style": null, "bbox": [55, 610, 97, 16], "children": []}, {"type": "a", "content": "coronavirus", "style": null, "bbox": [161, 610, 70, 16], "children": []}, {"type": "a", "content": "dc", "style": null, "bbox": [239, 610, 14, 16], "children": []}, {"type": "a", "content": "dcbs", "style": null, "bbox": [261, 610, 27, 16], "children": []}, {"type": "a", "content": "diamond distribution", "style": null, "bbox": [296, 610, 125, 16], "children": []}, {"type": "a", "content": "midtown comics", "style": null, "bbox": [429, 610, 99, 16], "children": []}, {"type": "a", "content": "pandemic", "style": null, "bbox": [536, 610, 58, 16], "children": []}, {"type": "a", "content": "retail", "style": null, "bbox": [601, 610, 30, 16], "children": []}, {"type": "a", "content": "small business", "style": null, "bbox": [8, 627, 87, 16], "children": []}, {"type": "a", "content": "trusty henchman", "style": null, "bbox": [102, 627, 99, 16], "children": []}]}]}]}, {"type": "article", "content": "", "style": null, "bbox": [8, 663, 650, 338], "children": [{"type": "header", "content": "", "style": null, "bbox": [8, 663, 650, 61], "children": [{"type": "h2", "content": "", "style": "font-family: \"Merriweather\"; color: #444; color: #444", "bbox": [8, 663, 650, 26], "children": [{"type": "a", "content": "The Panel Jumper LITE \u2013 April 21, 2020", "style": "font-family: \"Merriweather\"; color: #444", "bbox": [8, 663, 393, 25], "children": []}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 707, 650, 17], "children": [{"type": "span", "content": "", "style": null, "bbox": [8, 707, 121, 16], "children": [{"type": "a", "content": "thepaneljumper", "style": null, "bbox": [29, 707, 93, 16], "children": []}, {"type": "span", "content": "|", "style": null, "bbox": [126, 707, 3, 16], "children": []}]}, {"type": "time", "content": "", "style": null, "bbox": [133, 707, 72, 16], "children": [{"type": "a", "content": "", "style": null, "bbox": [133, 707, 72, 16], "children": [{"type": "span", "content": "04/21/2020", "style": null, "bbox": [133, 707, 68, 16], "children": []}]}]}, {"type": "span", "content": "|", "style": null, "bbox": [205, 707, 3, 16], "children": []}, {"type": "time", "content": "09/13/2020", "style": null, "bbox": [208, 707, 68, 16], "children": []}]}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 724, 650, 211], "children": [{"type": "a", "content": "", "style": null, "bbox": [8, 852, 250, 16], "children": [{"type": "img", "content": "", "style": null, "bbox": [8, 724, 250, 141], "children": []}]}, {"type": "p", "content": "", "style": "color: #555", "bbox": [8, 884, 650, 51], "children": [{"type": "a", "content": "", "style": null, "bbox": [513, 918, 122, 16], "children": [{"type": "span", "content": "\u2192", "style": null, "bbox": [620, 918, 15, 16], "children": []}]}]}]}, {"type": "footer", "content": "", "style": null, "bbox": [8, 950, 650, 51], "children": [{"type": "span", "content": "", "style": null, "bbox": [8, 950, 617, 50], "children": [{"type": "a", "content": "alan moore", "style": null, "bbox": [55, 950, 67, 16], "children": []}, {"type": "a", "content": "big numbers", "style": null, "bbox": [130, 950, 74, 16], "children": []}, {"type": "a", "content": "boy maximortal", "style": null, "bbox": [212, 950, 95, 16], "children": []}, {"type": "a", "content": "charles soule", "style": null, "bbox": [315, 950, 77, 16], "children": []}, {"type": "a", "content": "coles corner", "style": null, "bbox": [400, 950, 72, 16], "children": []}, {"type": "a", "content": "curse words", "style": null, "bbox": [480, 950, 72, 16], "children": []}, {"type": "a", "content": "dc", "style": null, "bbox": [559, 950, 14, 16], "children": []}, {"type": "a", "content": "dcbs", "style": null, "bbox": [581, 950, 27, 16], "children": []}, {"type": "a", "content": "diamond", "style": null, "bbox": [8, 967, 52, 16], "children": []}, {"type": "a", "content": "justice league dark", "style": null, "bbox": [68, 967, 112, 16], "children": []}, {"type": "a", "content": "midtown", "style": null, "bbox": [187, 967, 53, 16], "children": []}, {"type": "a", "content": "Print vs digital", "style": null, "bbox": [248, 967, 88, 16], "children": []}, {"type": "a", "content": "rick veitch", "style": null, "bbox": [344, 967, 63, 16], "children": []}, {"type": "a", "content": "ryan browne", "style": null, "bbox": [415, 967, 75, 16], "children": []}, {"type": "a", "content": "san diego comic con", "style": null, "bbox": [498, 967, 122, 16], "children": []}, {"type": "a", "content": "sdcc", "style": null, "bbox": [8, 984, 26, 16], "children": []}, {"type": "a", "content": "tales from the loop", "style": null, "bbox": [42, 984, 112, 16], "children": []}]}]}]}]}, {"type": "div", "content": "", "style": "width: 350px; font-family: \"Open Sans\"", "bbox": [8, 1016, 350, 201], "children": [{"type": "ul", "content": "", "style": null, "bbox": [8, 1016, 350, 201], "children": [{"type": "li", "content": "", "style": null, "bbox": [48, 1016, 310, 43], "children": [{"type": "form", "content": "", "style": null, "bbox": [48, 1016, 310, 43], "children": [{"type": "label", "content": "", "style": null, "bbox": [48, 1018, 245, 16], "children": [{"type": "span", "content": "Search for:", "style": null, "bbox": [48, 1018, 66, 16], "children": []}, {"type": "input", "content": "", "style": "font-family: \"Open Sans\";", "bbox": [117, 1016, 176, 22], "children": []}]}, {"type": "button", "content": "", "style": null, "bbox": [48, 1038, 77, 21], "children": [{"type": "span", "content": "Search", "style": null, "bbox": [56, 1041, 42, 15], "children": []}]}]}]}, {"type": "li", "content": "", "style": null, "bbox": [48, 1077, 310, 140], "children": [{"type": "h3", "content": "Explore\u2026", "style": "margin-right: -2em; text-align: left; background-color: #444; color: #FFF", "bbox": [48, 1077, 345, 21], "children": []}, {"type": "ul", "content": "", "style": null, "bbox": [48, 1115, 310, 102], "children": [{"type": "li", "content": "", "style": "background-position: left calc(2em / 2 - 4px)", "bbox": [88, 1115, 270, 17], "children": [{"type": "a", "content": "ask the panel jumper", "style": null, "bbox": [88, 1115, 124, 16], "children": []}]}, {"type": "li", "content": "", "style": "background-position: left calc(2em / 2 - 4px)", "bbox": [88, 1132, 270, 17], "children": [{"type": "a", "content": "jose and the hawk", "style": null, "bbox": [88, 1132, 107, 16], "children": []}]}, {"type": "li", "content": "", "style": "background-position: left calc(2em / 2 - 4px)", "bbox": [88, 1149, 270, 17], "children": [{"type": "a", "content": "perfect bound podcast", "style": null, "bbox": [88, 1149, 132, 16], "children": []}]}, {"type": "li", "content": "", "style": "background-position: left calc(2em / 2 - 4px)", "bbox": [88, 1166, 270, 17], "children": [{"type": "a", "content": "the panel jumper", "style": null, "bbox": [88, 1166, 100, 16], "children": []}]}, {"type": "li", "content": "", "style": "background-position: left calc(2em / 2 - 4px)", "bbox": [88, 1183, 270, 17], "children": [{"type": "a", "content": "the panel jumper lite", "style": null, "bbox": [88, 1183, 123, 16], "children": []}]}, {"type": "li", "content": "", "style": "background-position: left calc(2em / 2 - 4px)", "bbox": [88, 1200, 270, 17], "children": [{"type": "a", "content": "the panel jumper live", "style": null, "bbox": [88, 1200, 127, 16], "children": []}]}]}]}]}]}]}]}]}, {"type": "footer", "content": "", "style": "background-color: #fff", "bbox": [8, 1232, 1000, 21], "children": [{"type": "div", "content": "", "style": "background-color: #fff", "bbox": [8, 1232, 1000, 21], "children": [{"type": "div", "content": "", "style": "text-align:center;clear:both;padding-top:4px;", "bbox": [8, 1232, 1000, 21], "children": [{"type": "a", "content": "Mantra", "style": null, "bbox": [483, 1236, 43, 16], "children": []}, {"type": "a", "content": "WordPress.", "style": null, "bbox": [545, 1236, 68, 16], "children": []}]}]}]}]}]}</span></div> </div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto"> <div> <span class="block "><!DOCTYPE html> <html><head><title>dcbs</title></head><body class="archive tag tag-dcbs tag-2610"><div class="hfeed" id="wrapper"><header id="header"><div id="masthead"><div id="branding"><img id="bg_image" src="http://thepaneljumper.com/wp-content/uploads/2018/12/cropped-PanelJumper-Header-website2.jpg"/><div id="header-container"></div><div style="clear:both;"></div></div><a id="nav-toggle"><span>  Menu</span></a><nav class="jssafe" id="access"><div class="skip-link screen-reader-text"><a>Skip to content</a></div><div class="menu"><ul class="menu" id="prime_nav"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-6964" id="menu-item-6964"><a>Home</a></li><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6965" id="menu-item-6965"><a>The Panel Jumper</a></li><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7158" id="menu-item-7158"><a>Perfect Bound Podcast</a></li></ul></div></nav></div><div style="clear:both;"> </div></header><div class="main" id="main"><div id="forbottom"><div class="socials" id="smenur"><a class="socialicons social-Facebook"><img src="http://thepaneljumper.com/wp-content/themes/mantra/resources/images/socials/Facebook.png"/></a><a class="socialicons social-Twitter"><img src="http://thepaneljumper.com/wp-content/themes/mantra/resources/images/socials/Twitter.png"/></a><a class="socialicons social-YouTube"><img src="http://thepaneljumper.com/wp-content/themes/mantra/resources/images/socials/YouTube.png"/></a></div><div style="clear:both;"> </div><section id="container"><div id="content"><header class="page-header"><h1 class="page-title">Tag Archives: <span>dcbs</span></h1></header><article class="post-8680 post type-post status-publish format-standard has-post-thumbnail hentry category-perfect-bound-podcast tag-comics-dungeon tag-coronavirus tag-dc tag-dcbs tag-diamond-distribution tag-midtown-comics tag-pandemic tag-retail tag-small-business tag-trusty-henchman" id="post-8680"><header class="entry-header"><h2 class="entry-title"><a> Perfect Bound Podcast – Episode 269 </a></h2><div class="entry-meta"><span class="author vcard"> By <a class="url fn n">thepaneljumper</a> <span class="bl_sep">|</span></span> <time class="onDate date published"> <a><span class="entry-date">10/12/2020</span> <span class="entry-time"> - 6:00 am</span></a> </time><span class="bl_sep">|</span><time class="updated">10/10/2020</time> <span class="bl_categ"> <a>perfect bound podcast</a> </span> <div class="comments-link"><a>Leave a comment</a> </div></div></header><div class="entry-summary"><a class="post-thumbnail-link"><img class="alignleft post-thumbnail wp-post-image" height="150" src="http://thepaneljumper.com/wp-content/uploads/2020/10/PBP269_thumb-229x150.jpg" width="229"/></a> <p>The Death of Retail Comics Dungeon had always been a partner with The Panel Jumper to produce the Perfect Bound Podcast. Sadly, this past summer the store had to close. Today on our first show in six months, the gang welcome c4c3.org founder and former owner of Comics Dungeon and… <a class="continue-reading-link"> Continue reading <span class="meta-nav">→ </span></a></p></div><footer class="entry-meta2"><span class="bl_tagg">Tagged <a>comics dungeon</a>, <a>coronavirus</a>, <a>dc</a>, <a>dcbs</a>, <a>diamond distribution</a>, <a>midtown comics</a>, <a>pandemic</a>, <a>retail</a>, <a>small business</a>, <a>trusty henchman</a></span></footer></article><article class="post-8645 post type-post status-publish format-standard has-post-thumbnail hentry category-the-panel-jumper-lite tag-alan-moore tag-big-numbers tag-boy-maximortal tag-charles-soule tag-coles-corner tag-curse-words tag-dc tag-dcbs tag-diamond tag-justice-league-dark tag-midtown tag-print-vs-digital tag-rick-veitch tag-ryan-browne tag-san-diego-comic-con tag-sdcc tag-tales-from-the-loop" id="post-8645"><header class="entry-header"><h2 class="entry-title"><a> The Panel Jumper LITE – April 21, 2020 </a></h2><div class="entry-meta"><span class="author vcard"> By <a class="url fn n">thepaneljumper</a> <span class="bl_sep">|</span></span> <time class="onDate date published"> <a><span class="entry-date">04/21/2020</span> <span class="entry-time"> - 7:00 pm</span></a> </time><span class="bl_sep">|</span><time class="updated">09/13/2020</time> <span class="bl_categ"> <a>the panel jumper lite</a> </span> <div class="comments-link"><a>Leave a comment</a> </div></div></header><div class="entry-summary"><a class="post-thumbnail-link"><img class="alignleft post-thumbnail wp-post-image" height="141" src="http://thepaneljumper.com/wp-content/uploads/2020/09/04212020_thumb-1-250x141.jpg" width="250"/></a> <p>Today on the show, Cole and Ben once again get together and talk about Panel Jumper and comic book news, including: • The latest Panel Jumper episode: Cole’s Corner • Future Panel Jumper episodes • Alan Moore’s “Big Numbers” • Plans for future Panel Jumper Live shows • San Diego… <a class="continue-reading-link"> Continue reading <span class="meta-nav">→ </span></a></p></div><footer class="entry-meta2"><span class="bl_tagg">Tagged <a>alan moore</a>, <a>big numbers</a>, <a>boy maximortal</a>, <a>charles soule</a>, <a>coles corner</a>, <a>curse words</a>, <a>dc</a>, <a>dcbs</a>, <a>diamond</a>, <a>justice league dark</a>, <a>midtown</a>, <a>Print vs digital</a>, <a>rick veitch</a>, <a>ryan browne</a>, <a>san diego comic con</a>, <a>sdcc</a>, <a>tales from the loop</a></span></footer></article></div><div class="widget-area" id="primary"><ul class="xoxo"><li class="widget-container widget_search" id="search-2"><form id="searchform"><label><span class="screen-reader-text">Search for:</span><input class="s"/></label><button class="searchsubmit"><span class="screen-reader-text">Search</span>OK</button></form></li><li class="widget-container widget_categories" id="categories-2"><h3 class="widget-title">Explore…</h3> <ul><li class="cat-item cat-item-85"><a>ask the panel jumper</a></li><li class="cat-item cat-item-2358"><a>jose and the hawk</a></li><li class="cat-item cat-item-102"><a>perfect bound podcast</a></li><li class="cat-item cat-item-2"><a>the panel jumper</a></li><li class="cat-item cat-item-2603"><a>the panel jumper lite</a></li><li class="cat-item cat-item-7"><a>the panel jumper live</a></li></ul></li> </ul><ul class="xoxo"></ul></div></section><div style="clear:both;"></div></div></div><footer id="footer"><div id="colophon"></div><div id="footer2"><div style="text-align:center;clear:both;padding-top:4px;"><a></a> | Powered by <a>Mantra</a> &amp; <a> WordPress. </a></div></div></footer></div><style>#wrapper { max-width: 1000px } #content { width: 100%; max-width: 650px; max-width: calc(100% - 350px) } #primary, #secondary { width: 350px } #primary .widget-title, #secondary .widget-title { margin-right: -2em; text-align: left } html { font-size: 15px } #bg_image { display: block; margin: 0 auto } #main, #access ul li.current_page_item, #access ul li.current-menu-item, #access ul ul li, #nav-toggle { background-color: #fff } body, input, textarea { font-family: "Open Sans" } #content h1.entry-title a, #content h2.entry-title a, #content h1.entry-title, #content h2.entry-title, #front-text1 h2, #front-text2 h2 { font-family: "Merriweather" } .widget-area { font-family: "Open Sans" } body { background-color: #000 !important } #header { background-color: #000 } #footer { background-color: #fff } #footer2 { background-color: #fff } #content, #content p, #content ul, #content ol { color: #555 } #content .entry-title a, #content .entry-title, #content h1, #content h2, #content h3, #content h4, #content h5, #content h6 { color: #444 } .widget-title { background-color: #444 } .widget-title { color: #FFF } .widget-area ul ul li { background-position: left calc(2em / 2 - 4px) } h1.page-title { display: none } .entry-meta .comments-link, .entry-meta2 .comments-link { display: none } .entry-meta span.bl_categ, .entry-meta2 span.bl_categ { display: none } .entry-meta .entry-time { display: none } #branding { height: 125px }</style></body></html></span></div> </div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-right" dir="auto">3</div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-left" dir="auto"><div><button class="float-right ml-2 mr-0.5 mt-1 flex items-center justify-center rounded-full bg-white p-1.5 text-gray-700 ring-1 ring-gray-300 transition hover:bg-gray-50 hover:text-gray-900 hover:shadow-sm dark:bg-gray-800 dark:text-gray-100 dark:ring-gray-600 dark:hover:bg-gray-700 dark:hover:text-white"><svg class="text-sm" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 12 12"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.917 2.25h-.834v.833h.834v2.084A.833.833 0 0 0 9.75 6a.833.833 0 0 0-.833.833v2.084h-.834v.833h.834c.446-.113.833-.375.833-.833V7.25a.833.833 0 0 1 .833-.833H11v-.834h-.417a.833.833 0 0 1-.833-.833V3.083a.833.833 0 0 0-.833-.833Zm-5.834 0a.833.833 0 0 0-.833.833V4.75a.833.833 0 0 1-.833.833H1v.834h.417a.833.833 0 0 1 .833.833v1.667a.833.833 0 0 0 .833.833h.834v-.833h-.834V6.833A.833.833 0 0 0 2.25 6a.833.833 0 0 0 .833-.833V3.083h.834V2.25h-.834ZM6 7.25a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm1.667 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm-3.334 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Z" fill="currentColor"></path></svg></button> <span class="block min-h-[2rem]">[ 1280, 1262 ]</span></div></div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto"> <div> <span class="block ">en</span></div> </div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-left" dir="auto"><div><button class="float-right ml-2 mr-0.5 mt-1 flex items-center justify-center rounded-full bg-white p-1.5 text-gray-700 ring-1 ring-gray-300 transition hover:bg-gray-50 hover:text-gray-900 hover:shadow-sm dark:bg-gray-800 dark:text-gray-100 dark:ring-gray-600 dark:hover:bg-gray-700 dark:hover:text-white"><svg class="text-sm" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 12 12"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.917 2.25h-.834v.833h.834v2.084A.833.833 0 0 0 9.75 6a.833.833 0 0 0-.833.833v2.084h-.834v.833h.834c.446-.113.833-.375.833-.833V7.25a.833.833 0 0 1 .833-.833H11v-.834h-.417a.833.833 0 0 1-.833-.833V3.083a.833.833 0 0 0-.833-.833Zm-5.834 0a.833.833 0 0 0-.833.833V4.75a.833.833 0 0 1-.833.833H1v.834h.417a.833.833 0 0 1 .833.833v1.667a.833.833 0 0 0 .833.833h.834v-.833h-.834V6.833A.833.833 0 0 0 2.25 6a.833.833 0 0 0 .833-.833V3.083h.834V2.25h-.834ZM6 7.25a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm1.667 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm-3.334 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Z" fill="currentColor"></path></svg></button> <span class="block min-h-[2rem]">[ 480, 2256 ]</span></div></div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto"> <div> <span class="block ">4c387f75332901afcb58f7b7e0bae2f2a71454756b7fb4f5a81779fa1118ed6e</span></div> </div></div> </td> </tr><tr class="group cursor-pointer space-x-4 divide-x border-b outline-offset-[-2px] odd:bg-gray-50 hover:bg-gray-100 dark:odd:bg-gray-925 dark:hover:bg-gray-850 last:border-none" tabindex="0" data-row-idx="4"><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-left" dir="auto"><div class="flex max-h-12 flex-wrap gap-1.5 overflow-hidden"><button class="inline-block h-12 rounded-sm" style="aspect-ratio: 1280 / 2518;;"><div class="relative flex h-full w-full items-center justify-center overflow-hidden rounded-sm"><div class="absolute inset-0 animate-pulse flex items-center justify-center bg-gray-200 dark:bg-gray-800"></div> <img loading="lazy" src="https://datasets-server.huggingface.co/assets/xcodemind/webcode2m_purified/--/6e1735ac07f6dcb002eb542cf6892e69412dbb33/--/default/train/4/image/image.png?Expires=1755748228&Signature=xktipbtSuHSv4AoIna122fQNOWBL2xuM8jcbuM9vv6QFpdITTD0KO4-I5VcFFs7~9FLeekPjIjWGeb6YPbqJaEyXM0~uT1uUxW~aRcJEUWXHMVCRvN2t-4wWSAVnU2FX~jqm0Z4EUBh5gHTJdPwz28pdfUGNBDSqPujFLqVXePbU0eVvEzk5CefYJhSWNrr8dYydjeyvKxl5kmqPw45tyvklprdnafqXihupx~mHupBHyWXm6eqaLPIod2EfBENca-7~2s~1BOY56Z0maoHy4IvBmJ8Pw82IVZJjQhrMdlxUhDymjwRs5j6g4u~kpnx0o90JKl5mtdVL5GuSzP-JHQ__&Key-Pair-Id=K3EI6M078Z3AC3" class="h-12 w-auto min-w-[3rem] object-cover invisible" alt=""></div> </button></div> </div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto"> <div> <span class="block ">{"type": "body", "content": "", "style": "background-position: center top; background-size: cover; background-repeat: no-repeat; background-attachment: fixed", "bbox": [8, 16, 1264, 2493], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 16, 1264, 2493], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 16, 1264, 72], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 16, 1264, 72], "children": [{"type": "ul", "content": "", "style": null, "bbox": [8, 16, 1264, 72], "children": [{"type": "li", "content": "", "style": null, "bbox": [48, 16, 1224, 18], "children": [{"type": "a", "content": "About the Two Old Farts", "style": null, "bbox": [48, 16, 159, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [48, 34, 1224, 18], "children": [{"type": "a", "content": "Podcast", "style": null, "bbox": [48, 34, 49, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [48, 52, 1224, 18], "children": [{"type": "a", "content": "Contact", "style": null, "bbox": [48, 52, 49, 17], "children": []}]}, {"type": "li", "content": "", "style": null, "bbox": [48, 70, 1224, 18], "children": [{"type": "a", "content": "RSS Feed", "style": null, "bbox": [48, 70, 63, 17], "children": []}]}]}]}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 104, 1264, 2387], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 104, 1264, 2353], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 104, 1264, 18], "children": [{"type": "a", "content": "Podcasts, Season 1", "style": null, "bbox": [8, 104, 121, 17], "children": []}, {"type": "a", "content": "david clink", "style": null, "bbox": [133, 104, 71, 17], "children": []}, {"type": "a", "content": "episode 11", "style": null, "bbox": [204, 104, 68, 17], "children": []}, {"type": "a", "content": "horror", "style": null, "bbox": [273, 104, 39, 17], "children": []}, {"type": "a", "content": "miniaturization", "style": null, "bbox": [313, 104, 97, 17], "children": []}, {"type": "a", "content": "podcasts", "style": null, "bbox": [410, 104, 55, 17], "children": []}, {"type": "a", "content": "science fiction", "style": null, "bbox": [466, 104, 92, 17], "children": []}, {"type": "a", "content": "season 1", "style": null, "bbox": [558, 104, 54, 17], "children": []}, {"type": "a", "content": "troy harkin", "style": null, "bbox": [613, 104, 70, 17], "children": []}, {"type": "a", "content": "two old farts", "style": null, "bbox": [684, 104, 80, 17], "children": []}]}, {"type": "h1", "content": "Season 1, Episode 11\u2014\u201dShrinkage \u2013 pt. 2\u2033", "style": null, "bbox": [8, 143, 1264, 37], "children": []}, {"type": "div", "content": "", "style": null, "bbox": [8, 201, 1264, 18], "children": [{"type": "span", "content": "", "style": null, "bbox": [8, 201, 110, 17], "children": [{"type": "a", "content": "August 21, 2021", "style": null, "bbox": [8, 201, 110, 17], "children": []}]}, {"type": "span", "content": "", "style": null, "bbox": [118, 201, 44, 17], "children": [{"type": "span", "content": "", "style": null, "bbox": [118, 201, 40, 17], "children": [{"type": "a", "content": "admin", "style": null, "bbox": [118, 201, 40, 17], "children": []}]}]}, {"type": "a", "content": "", "style": null, "bbox": [162, 201, 392, 17], "children": [{"type": "span", "content": "on Season 1, Episode 11\u2014\u201dShrinkage \u2013 pt. 2\u2033", "style": null, "bbox": [255, 201, 299, 17], "children": []}]}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 227, 1264, 1911], "children": [{"type": "hr", "content": "", "style": "border: none; border-bottom: 2px solid; margin-left: auto; margin-right: auto", "bbox": [8, 227, 1264, 2], "children": []}, {"type": "figure", "content": "", "style": "margin: 0 0 1em", "bbox": [8, 237, 1264, 469], "children": [{"type": "img", "content": "", "style": null, "bbox": [8, 237, 700, 465], "children": []}]}, {"type": "hr", "content": "", "style": "border: none; border-bottom: 2px solid; margin-left: auto; margin-right: auto", "bbox": [8, 722, 1264, 2], "children": []}, {"type": "hr", "content": "", "style": "border: none; border-bottom: 2px solid; margin-left: auto; margin-right: auto", "bbox": [8, 740, 1264, 2], "children": []}, {"type": "div", "content": "", "style": "display: flex; flex-wrap: wrap; align-items: center; flex-wrap: nowrap", "bbox": [8, 750, 1264, 568], "children": [{"type": "div", "content": "", "style": "flex-basis:33.33%; margin: 0", "bbox": [8, 750, 700, 568], "children": [{"type": "figure", "content": "", "style": "margin: 0 0 1em", "bbox": [8, 750, 700, 552], "children": [{"type": "img", "content": "", "style": null, "bbox": [8, 750, 700, 516], "children": []}, {"type": "figcaption", "content": "", "style": "color: #555; font-size: 13px; text-align: center", "bbox": [8, 1270, 700, 32], "children": [{"type": "em", "content": "Land of the Giants", "style": null, "bbox": [309, 1270, 97, 15], "children": []}]}]}]}, {"type": "div", "content": "", "style": "flex-basis:66.67%; margin: 0", "bbox": [708, 910, 564, 248], "children": [{"type": "p", "content": "", "style": null, "bbox": [708, 926, 564, 216], "children": []}]}]}, {"type": "hr", "content": "", "style": "border: none; border-bottom: 2px solid; margin-left: auto; margin-right: auto", "bbox": [8, 1326, 1264, 2], "children": []}, {"type": "div", "content": "", "style": "display: flex; flex-wrap: wrap; align-items: center; flex-wrap: nowrap", "bbox": [8, 1336, 1264, 561], "children": [{"type": "div", "content": "", "style": "flex-basis:33.33%; margin: 0", "bbox": [8, 1336, 700, 561], "children": [{"type": "figure", "content": "", "style": "margin: 0 0 1em", "bbox": [8, 1336, 700, 545], "children": [{"type": "img", "content": "", "style": null, "bbox": [8, 1336, 700, 525], "children": []}, {"type": "figcaption", "content": "Cam P. Fire", "style": "color: #555; font-size: 13px; text-align: center", "bbox": [8, 1865, 700, 16], "children": []}]}]}, {"type": "div", "content": "", "style": "flex-basis:66.66%; margin: 0", "bbox": [708, 1556, 564, 122], "children": [{"type": "p", "content": "", "style": null, "bbox": [708, 1572, 564, 90], "children": []}]}]}, {"type": "hr", "content": "", "style": "border: none; border-bottom: 2px solid; margin-left: auto; margin-right: auto", "bbox": [8, 1905, 1264, 2], "children": []}, {"type": "h3", "content": "", "style": null, "bbox": [8, 1926, 1264, 22], "children": [{"type": "span", "content": "2of", "style": "color: var(--wp--preset--color--luminous-vivid-orange) !important", "bbox": [112, 1926, 24, 21], "children": []}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 1967, 1264, 18], "children": [{"type": "a", "content": "2of_S01_E11_Shrinkage_pt2-1", "style": null, "bbox": [8, 1967, 202, 17], "children": []}, {"type": "a", "content": "Download", "style": "background: #32373c; color: #fff; text-decoration: none", "bbox": [210, 1967, 66, 17], "children": []}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 2004, 1264, 94], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 2004, 1264, 94], "children": [{"type": "h3", "content": "Share this:", "style": null, "bbox": [8, 2004, 1264, 22], "children": []}, {"type": "div", "content": "", "style": null, "bbox": [8, 2044, 1264, 54], "children": [{"type": "ul", "content": "", "style": null, "bbox": [8, 2044, 1264, 54], "children": [{"type": "li", "content": "", "style": null, "bbox": [48, 2044, 1224, 18], "children": [{"type": "a", "content": "", "style": null, "bbox": [48, 2044, 45, 17], "children": [{"type": "span", "content": "Twitter", "style": null, "bbox": [48, 2044, 45, 17], "children": []}]}]}, {"type": "li", "content": "", "style": null, "bbox": [48, 2062, 1224, 18], "children": [{"type": "a", "content": "", "style": null, "bbox": [48, 2062, 62, 17], "children": [{"type": "span", "content": "Facebook", "style": null, "bbox": [48, 2062, 62, 17], "children": []}]}]}, {"type": "li", "content": "", "style": null, "bbox": [48, 2080, 1224, 18], "children": []}]}]}]}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 2117, 1264, 22], "children": [{"type": "h3", "content": "", "style": null, "bbox": [8, 2117, 1264, 22], "children": [{"type": "em", "content": "Related", "style": null, "bbox": [8, 2117, 58, 21], "children": []}]}]}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 2158, 1264, 299], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 2158, 1264, 299], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 2158, 1264, 299], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 2158, 1264, 299], "children": [{"type": "h3", "content": "", "style": null, "bbox": [8, 2158, 1264, 22], "children": []}, {"type": "form", "content": "", "style": null, "bbox": [8, 2198, 1264, 259], "children": [{"type": "p", "content": "", "style": null, "bbox": [8, 2198, 1264, 18], "children": [{"type": "span", "content": "Your email address will not be published.", "style": null, "bbox": [8, 2198, 265, 17], "children": []}, {"type": "span", "content": "", "style": null, "bbox": [277, 2198, 185, 17], "children": [{"type": "span", "content": "*", "style": null, "bbox": [455, 2198, 8, 17], "children": []}]}]}, {"type": "p", "content": "", "style": null, "bbox": [8, 2232, 1264, 40], "children": [{"type": "label", "content": "", "style": null, "bbox": [8, 2254, 75, 17], "children": [{"type": "span", "content": "*", "style": null, "bbox": [75, 2254, 8, 17], "children": []}]}, {"type": "textarea", "content": "", "style": "", "bbox": [87, 2232, 181, 36], "children": []}]}, {"type": "p", "content": "", "style": null, "bbox": [8, 2288, 1264, 21], "children": [{"type": "label", "content": "", "style": null, "bbox": [8, 2289, 50, 17], "children": [{"type": "span", "content": "*", "style": null, "bbox": [50, 2289, 8, 17], "children": []}]}, {"type": "input", "content": "", "style": "", "bbox": [62, 2288, 177, 21], "children": []}]}, {"type": "p", "content": "", "style": null, "bbox": [8, 2325, 1264, 21], "children": [{"type": "label", "content": "", "style": null, "bbox": [8, 2326, 50, 17], "children": [{"type": "span", "content": "*", "style": null, "bbox": [50, 2326, 8, 17], "children": []}]}, {"type": "input", "content": "", "style": "", "bbox": [62, 2325, 177, 21], "children": []}]}, {"type": "p", "content": "", "style": null, "bbox": [8, 2362, 1264, 21], "children": [{"type": "label", "content": "Website", "style": null, "bbox": [8, 2363, 51, 17], "children": []}, {"type": "input", "content": "", "style": "", "bbox": [63, 2362, 177, 21], "children": []}]}, {"type": "p", "content": "", "style": null, "bbox": [8, 2399, 1264, 21], "children": [{"type": "input", "content": "", "style": "", "bbox": [8, 2399, 177, 21], "children": []}, {"type": "label", "content": "Save my name, email, and website in this browser for the next time I comment.", "style": null, "bbox": [189, 2400, 507, 17], "children": []}]}, {"type": "p", "content": "", "style": null, "bbox": [8, 2436, 1264, 21], "children": [{"type": "input", "content": "", "style": "", "bbox": [8, 2436, 177, 21], "children": []}, {"type": "input", "content": "", "style": "", "bbox": [189, 2436, 177, 21], "children": []}, {"type": "input", "content": "", "style": "", "bbox": [370, 2436, 177, 21], "children": []}]}]}]}]}]}]}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 2473, 1264, 18], "children": [{"type": "a", "content": "Season 1, Episode 10\u2014\u201dShrinkage \u2013 pt. 1\u2033", "style": null, "bbox": [20, 2473, 275, 17], "children": []}, {"type": "a", "content": "Season 1, Episode 12\u2014\u201dBack to School\u201d", "style": null, "bbox": [325, 2473, 264, 17], "children": []}]}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 2491, 1264, 18], "children": [{"type": "a", "content": "Wordpress", "style": null, "bbox": [87, 2491, 68, 17], "children": []}, {"type": "a", "content": "RT", "style": null, "bbox": [295, 2491, 19, 17], "children": []}]}]}]}</span></div> </div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto"> <div> <span class="block "><!DOCTYPE html> <html><head><title>Season 1, Episode 11—”Shrinkage – pt. 2″</title></head><body class="post-template-default single single-post postid-282 single-format-standard custom-background wp-embed-responsive"><div id="logo"></div><div id="header-text"><div class="site-title"><a></a></div><div class="site-description"></div></div><div id="wrapper"><div id="header"><div class="nav" id="primmenu"><ul class="menu" id="menu-primary-menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-71" id="menu-item-71"><a>About the Two Old Farts</a></li><li class="menu-item menu-item-type-post_type menu-item-object-page current_page_parent menu-item-30" id="menu-item-30"><a>Podcast</a></li><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-77" id="menu-item-77"><a>Contact</a></li><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-296" id="menu-item-296"><a>RSS Feed</a></li></ul></div></div><div id="content"><div class="post"><div class="postmetadata"><a>Podcasts, Season 1</a><a>david clink</a><a>episode 11</a><a>horror</a><a>miniaturization</a><a>podcasts</a><a>science fiction</a><a>season 1</a><a>troy harkin</a><a>two old farts</a></div><h1 class="entry-title">Season 1, Episode 11—”Shrinkage – pt. 2″</h1><div class="postmetadata2"><span class="date updated"><a> August 21, 2021 </a></span><span class="vcard author"><span class="fn"><a>admin</a></span></span><a>No Comments<span class="screen-reader-text"> on Season 1, Episode 11—”Shrinkage – pt. 2″</span></a></div><div class="entry"><hr class="wp-block-separator"/><figure class="wp-block-image size-large"><img class="wp-image-283 jetpack-lazy-image" height="465" src="https://i0.wp.com/2of.ca/wp-content/uploads/2021/08/191311751_86650f672d_b.jpg?resize=700%2C465&amp;ssl=1" width="700"/><noscript><img class="wp-image-283" height="465" src="https://i0.wp.com/2of.ca/wp-content/uploads/2021/08/191311751_86650f672d_b.jpg?resize=700%2C465&amp;ssl=1" width="700"/></noscript></figure><p class="has-text-align-center"></p><hr class="wp-block-separator"/><figure class="wp-block-audio"><audio src="https://2of.ca/wp-content/uploads/2021/08/2of_S01_E11_Shrinkage_pt2.mp3"></audio></figure><hr class="wp-block-separator"/><div class="wp-block-columns is-layout-flex wp-container-core-columns-layout-1 wp-block-columns-is-layout-flex"><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%"><figure class="wp-block-image size-large"><img class="wp-image-284 jetpack-lazy-image" height="516" src="https://i0.wp.com/2of.ca/wp-content/uploads/2021/08/14392019778_cf3877f0f1_b.jpg?resize=700%2C516&amp;ssl=1" width="700"/><noscript><img class="wp-image-284" height="516" src="https://i0.wp.com/2of.ca/wp-content/uploads/2021/08/14392019778_cf3877f0f1_b.jpg?resize=700%2C516&amp;ssl=1" width="700"/></noscript><figcaption><em>Land of the Giants</em><br/>(Image: creative commons license)</figcaption></figure><p></p></div><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.67%"><p>“Shrinkage” could not be held to one episode. The smaller something becomes, we guess, the more you need to to talk about it.<br/><br/>For those who missed part 1, Shrinkage is another term for miniaturization. making things small. Imagine if you are an inch tall, and you have to fight off a spider, or a cat. <br/><br/>Troy Harkin and David Clink are at the cottage, but this time they are at a campfire, as they continue to talk about shrinkage, while being eaten alive by insects. <br/><br/>Troy Harkin will sing an original song about shrinkage. Not to be missed.<br/><br/>Our special guest is Cam P. Fire. See author photo and bio below..<br/></p></div></div><hr class="wp-block-separator"/><div class="wp-block-columns is-layout-flex wp-container-core-columns-layout-2 wp-block-columns-is-layout-flex"><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%"><figure class="wp-block-image size-large"><img class="wp-image-285 jetpack-lazy-image" height="525" src="https://i0.wp.com/2of.ca/wp-content/uploads/2021/08/36169288_f58a33cc20_b.jpg?resize=700%2C525&amp;ssl=1" width="700"/><noscript><img class="wp-image-285" height="525" src="https://i0.wp.com/2of.ca/wp-content/uploads/2021/08/36169288_f58a33cc20_b.jpg?resize=700%2C525&amp;ssl=1" width="700"/></noscript><figcaption>Cam P. Fire</figcaption></figure><p></p></div><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%"><p><br/><br/>Cam P. Fire is hot right now. <br/><br/>His favorite MASH character is major Burns.</p></div></div><hr class="wp-block-separator"/><h3 class="has-text-align-center wp-block-heading">Listen to the <span class="has-inline-color has-luminous-vivid-orange-color">2of</span> podcast online, or download the episode to your computer using the Download icon!</h3><div class="wp-block-file aligncenter"><a>2of_S01_E11_Shrinkage_pt2-1</a><a class="wp-block-file__button">Download</a></div><p></p><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon-text sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a class="share-twitter sd-button share-icon"><span>Twitter</span></a></li><li class="share-facebook"><a class="share-facebook sd-button share-icon"><span>Facebook</span></a></li><li class="share-end"></li></ul></div></div></div><div class="jp-relatedposts" id="jp-relatedposts"><h3 class="jp-relatedposts-headline"><em>Related</em></h3></div> </div><div class="pagenumber"></div><div class="comments-template"><div id="comments"><div class="commentform"> <div class="comment-respond" id="respond"><h3 class="comment-reply-title" id="reply-title">Leave a Reply <small><a id="cancel-comment-reply-link" style="display:none;">Cancel reply</a></small></h3><form class="comment-form" id="commentform"><p class="comment-notes"><span id="email-notes">Your email address will not be published.</span> <span class="required-field-message">Required fields are marked <span class="required">*</span></span></p><p class="comment-form-comment"><label>Comment <span class="required">*</span></label> <textarea id="comment"></textarea></p><p class="comment-form-author"><label>Name <span class="required">*</span></label> <input id="author"/></p><p class="comment-form-email"><label>Email <span class="required">*</span></label> <input id="email"/></p><p class="comment-form-url"><label>Website</label> <input id="url"/></p><p class="comment-form-cookies-consent"><input id="wp-comment-cookies-consent"/> <label>Save my name, email, and website in this browser for the next time I comment.</label></p><p class="form-submit"><input class="submit" id="submit"/> <input id="comment_post_ID"/><input id="comment_parent"/></p><p style="display: none;"><input id="akismet_comment_nonce"/></p><p style="display: none !important;"><label>Δ<textarea></textarea></label><input id="ak_js_1"/></p></form> </div></div><ol class="commentlist"></ol></div></div></div><div class="navigation"> « <a>Season 1, Episode 10—”Shrinkage – pt. 1″</a>   -   <a>Season 1, Episode 12—”Back to School”</a> » </div></div><div id="footer"></div><div id="credits"> Powered by <a>Wordpress</a>. Redesign Theme by <a>RT</a></div></div><style>.wp-block-audio { margin: 0 0 1em } .wp-block-image figcaption { color: #555; font-size: 13px; text-align: center } .wp-block-image { margin: 0 0 1em } .wp-block-separator { border: none; border-bottom: 2px solid; margin-left: auto; margin-right: auto } .wp-block-file__button { background: #32373c; color: #fff; text-decoration: none } body .is-layout-flex { display: flex } body .is-layout-flex { flex-wrap: wrap; align-items: center } body .is-layout-flex > * { margin: 0 } .has-luminous-vivid-orange-color { color: var(--wp--preset--color--luminous-vivid-orange) !important } body.custom-background { background-position: center top; background-size: cover; background-repeat: no-repeat; background-attachment: fixed } .wp-container-core-columns-layout-1.wp-container-core-columns-layout-1 { flex-wrap: nowrap } .wp-container-core-columns-layout-2.wp-container-core-columns-layout-2 { flex-wrap: nowrap }</style></body></html></span></div> </div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-right" dir="auto">3</div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-left" dir="auto"><div><button class="float-right ml-2 mr-0.5 mt-1 flex items-center justify-center rounded-full bg-white p-1.5 text-gray-700 ring-1 ring-gray-300 transition hover:bg-gray-50 hover:text-gray-900 hover:shadow-sm dark:bg-gray-800 dark:text-gray-100 dark:ring-gray-600 dark:hover:bg-gray-700 dark:hover:text-white"><svg class="text-sm" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 12 12"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.917 2.25h-.834v.833h.834v2.084A.833.833 0 0 0 9.75 6a.833.833 0 0 0-.833.833v2.084h-.834v.833h.834c.446-.113.833-.375.833-.833V7.25a.833.833 0 0 1 .833-.833H11v-.834h-.417a.833.833 0 0 1-.833-.833V3.083a.833.833 0 0 0-.833-.833Zm-5.834 0a.833.833 0 0 0-.833.833V4.75a.833.833 0 0 1-.833.833H1v.834h.417a.833.833 0 0 1 .833.833v1.667a.833.833 0 0 0 .833.833h.834v-.833h-.834V6.833A.833.833 0 0 0 2.25 6a.833.833 0 0 0 .833-.833V3.083h.834V2.25h-.834ZM6 7.25a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm1.667 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm-3.334 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Z" fill="currentColor"></path></svg></button> <span class="block min-h-[2rem]">[ 1280, 2518 ]</span></div></div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto"> <div> <span class="block ">en</span></div> </div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-left" dir="auto"><div><button class="float-right ml-2 mr-0.5 mt-1 flex items-center justify-center rounded-full bg-white p-1.5 text-gray-700 ring-1 ring-gray-300 transition hover:bg-gray-50 hover:text-gray-900 hover:shadow-sm dark:bg-gray-800 dark:text-gray-100 dark:ring-gray-600 dark:hover:bg-gray-700 dark:hover:text-white"><svg class="text-sm" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 12 12"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.917 2.25h-.834v.833h.834v2.084A.833.833 0 0 0 9.75 6a.833.833 0 0 0-.833.833v2.084h-.834v.833h.834c.446-.113.833-.375.833-.833V7.25a.833.833 0 0 1 .833-.833H11v-.834h-.417a.833.833 0 0 1-.833-.833V3.083a.833.833 0 0 0-.833-.833Zm-5.834 0a.833.833 0 0 0-.833.833V4.75a.833.833 0 0 1-.833.833H1v.834h.417a.833.833 0 0 1 .833.833v1.667a.833.833 0 0 0 .833.833h.834v-.833h-.834V6.833A.833.833 0 0 0 2.25 6a.833.833 0 0 0 .833-.833V3.083h.834V2.25h-.834ZM6 7.25a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm1.667 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm-3.334 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Z" fill="currentColor"></path></svg></button> <span class="block min-h-[2rem]">[ 302, 2587 ]</span></div></div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto"> <div> <span class="block ">78b051071e23a2588840b09d29ae1bcb97a880696440c00202e29785301f63ea</span></div> </div></div> </td> </tr><tr class="group cursor-pointer space-x-4 divide-x border-b outline-offset-[-2px] odd:bg-gray-50 hover:bg-gray-100 dark:odd:bg-gray-925 dark:hover:bg-gray-850 last:border-none" tabindex="0" data-row-idx="5"><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-left" dir="auto"><div class="flex max-h-12 flex-wrap gap-1.5 overflow-hidden"><button class="inline-block h-12 rounded-sm" style="aspect-ratio: 1280 / 1235;;"><div class="relative flex h-full w-full items-center justify-center overflow-hidden rounded-sm"><div class="absolute inset-0 animate-pulse flex items-center justify-center bg-gray-200 dark:bg-gray-800"></div> <img loading="lazy" src="https://datasets-server.huggingface.co/assets/xcodemind/webcode2m_purified/--/6e1735ac07f6dcb002eb542cf6892e69412dbb33/--/default/train/5/image/image.png?Expires=1755748228&Signature=hkSD181NQssFTu6lHBHYat~al3IllHEK~EQDQEopyAm4g1dN6UXlkJbCvGYmHXWtFAKEzTUYI-IIHE5uWK1V0en~-F1HOAdoBldrs2IzvOPCALP4YE5GvPShRu4GyoCEEQkejx0B6WAJyfJwLEsa-eah7A0UItCTpRq9JkHQakDLjparKR2-297I7HKxh1gzHR00-bRBo1H2cj4s2a-n6IMHTGO9XpLJP-mxti00aSr5IrGZy3LbtFVJleywsQDfitSWiqltN7KR76AMbRjoJePPS~x8mwfUeCuFr-0~Aq-5SqeREkbeUZwyGoUV4VGw0EX2iNWdNb4YM-uYSaC73w__&Key-Pair-Id=K3EI6M078Z3AC3" class="h-12 w-auto min-w-[3rem] object-cover invisible" alt=""></div> </button></div> </div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto"> <div> <span class="block ">{"type": "body", "content": "", "style": null, "bbox": [8, 8, 1264, 1219], "children": [{"type": "div", "content": "", "style": "z-index: 9000; position: fixed; padding: 1em 1.8em; color: rgb(255, 255, 255); background-color: rgb(37, 46, 57); font-size: 12px", "bbox": [8, 8, 1272, 151], "children": [{"type": "h1", "content": "Ce site web utilise les cookies.", "style": "color: rgb(255, 255, 255); font-size: 1.5em; font-weight: bold; margin-bottom: 0.7em", "bbox": [29, 32, 1228, 21], "children": []}, {"type": "p", "content": "Les donn\u00e9es stock\u00e9es par ces cookies nous permermettent de personnaliser le contenu des annonces,\n d'offrir des fonctionnalit\u00e9s relatives aux r\u00e9seaux sociaux et d'analyser notre trafic.\n Nous partageons \u00e9galement certains cookies et des informations sur l'utilisation de notre site avec nos partenaires de m\u00e9dias sociaux, de publicit\u00e9 et d'analyse,\n qui peuvent combiner celles-ci avec d'autres informations que vous leur avez fournies ou qu'ils ont collect\u00e9es lors de votre utilisation de leurs services. Nos partenaires sont Google et ses partenaires tiers.", "style": "font-size: 1em; margin-bottom: 1em", "bbox": [29, 65, 1228, 45], "children": []}, {"type": "div", "content": "", "style": "display: flex", "bbox": [29, 122, 1228, 24], "children": [{"type": "a", "content": "Plus d'informations", "style": "background-color: rgb(58, 205, 246); border-radius: 5px; color: rgb(255, 255, 255); cursor: pointer; font-weight: 700; padding: 0.4em 0.8em; text-decoration: none; white-space: nowrap; margin-right: 1em", "bbox": [29, 122, 120, 24], "children": []}, {"type": "a", "content": "Refuser", "style": "background-color: rgb(58, 205, 246); border-radius: 5px; color: rgb(255, 255, 255); cursor: pointer; font-weight: 700; padding: 0.4em 0.8em; text-decoration: none; white-space: nowrap; margin-right: 1em", "bbox": [161, 122, 59, 24], "children": []}, {"type": "a", "content": "Accepter", "style": "background-color: rgb(58, 205, 246); border-radius: 5px; color: rgb(255, 255, 255); cursor: pointer; font-weight: 700; padding: 0.4em 0.8em; text-decoration: none; white-space: nowrap", "bbox": [232, 122, 65, 24], "children": []}]}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 8, 1264, 180], "children": [{"type": "div", "content": "", "style": null, "bbox": [8, 8, 1264, 114], "children": [{"type": "a", "content": "", "style": null, "bbox": [8, 104, 943, 17], "children": [{"type": "img", "content": "", "style": null, "bbox": [8, 8, 943, 110], "children": []}]}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 140, 1264, 24], "children": [{"type": "table", "content": "", "style": null, "bbox": [8, 140, 1264, 24], "children": [{"type": "tbody", "content": "", "style": null, "bbox": [10, 142, 1260, 20], "children": [{"type": "tr", "content": "", "style": null, "bbox": [10, 142, 1260, 20], "children": [{"type": "td", "content": "", "style": null, "bbox": [10, 142, 6, 20], "children": []}, {"type": "td", "content": "", "style": null, "bbox": [18, 142, 1251, 20], "children": [{"type": "a", "content": "", "style": null, "bbox": [19, 143, 26, 17], "children": []}, {"type": "a", "content": "", "style": null, "bbox": [54, 143, 42, 17], "children": []}, {"type": "a", "content": "", "style": null, "bbox": [105, 143, 42, 17], "children": []}, {"type": "a", "content": "", "style": null, "bbox": [155, 143, 106, 17], "children": []}, {"type": "a", "content": "", "style": null, "bbox": [266, 143, 35, 17], "children": []}, {"type": "a", "content": "", "style": null, "bbox": [305, 143, 76, 17], "children": []}]}]}]}]}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 164, 1264, 24], "children": [{"type": "table", "content": "", "style": null, "bbox": [8, 164, 1264, 24], "children": [{"type": "tbody", "content": "", "style": null, "bbox": [10, 166, 1260, 20], "children": [{"type": "tr", "content": "", "style": null, "bbox": [10, 166, 1260, 20], "children": [{"type": "td", "content": "Derni\u00e8re visite: il y a moins d\u2019une minute", "style": null, "bbox": [10, 166, 665, 20], "children": []}, {"type": "td", "content": "", "style": null, "bbox": [677, 166, 592, 20], "children": []}]}]}]}]}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 204, 1264, 932], "children": [{"type": "table", "content": "", "style": "margin-top: 5px;", "bbox": [8, 227, 1264, 90], "children": [{"type": "tbody", "content": "", "style": null, "bbox": [10, 229, 1260, 86], "children": [{"type": "tr", "content": "", "style": null, "bbox": [10, 229, 1260, 86], "children": [{"type": "td", "content": "", "style": null, "bbox": [10, 229, 1260, 86], "children": [{"type": "p", "content": "", "style": null, "bbox": [11, 246, 1258, 18], "children": [{"type": "a", "content": "Index du forum", "style": null, "bbox": [11, 246, 99, 17], "children": []}]}, {"type": "p", "content": "Heures au format UTC + 1 heure", "style": null, "bbox": [11, 280, 1258, 18], "children": []}]}]}]}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 335, 1264, 688], "children": [{"type": "form", "content": "", "style": null, "bbox": [8, 335, 1264, 670], "children": [{"type": "table", "content": "", "style": null, "bbox": [8, 335, 1264, 670], "children": [{"type": "tbody", "content": "", "style": null, "bbox": [10, 337, 1260, 666], "children": [{"type": "tr", "content": "", "style": null, "bbox": [10, 337, 1260, 20], "children": [{"type": "th", "content": "Rechercher", "style": null, "bbox": [10, 337, 500, 20], "children": []}]}, {"type": "tr", "content": "", "style": null, "bbox": [10, 359, 1260, 101], "children": [{"type": "td", "content": "", "style": null, "bbox": [10, 359, 500, 101], "children": [{"type": "b", "content": "Recherche par mots-cl\u00e9s:", "style": null, "bbox": [11, 364, 171, 17], "children": []}, {"type": "span", "content": "", "style": null, "bbox": [11, 382, 494, 71], "children": [{"type": "strong", "content": "+", "style": null, "bbox": [76, 382, 9, 17], "children": []}, {"type": "strong", "content": "-", "style": null, "bbox": [347, 382, 5, 17], "children": []}, {"type": "strong", "content": "|", "style": null, "bbox": [339, 400, 3, 17], "children": []}]}]}, {"type": "td", "content": "", "style": null, "bbox": [512, 359, 327, 101], "children": [{"type": "input", "content": "", "style": "width: 300px;", "bbox": [513, 360, 308, 21], "children": []}, {"type": "input", "content": "", "style": "", "bbox": [513, 381, 177, 21], "children": []}, {"type": "span", "content": "Rechercher tous les termes", "style": null, "bbox": [513, 382, 306, 37], "children": []}, {"type": "input", "content": "", "style": "", "bbox": [513, 420, 177, 21], "children": []}, {"type": "span", "content": "Rechercher n\u2019importe lequel de ces termes", "style": null, "bbox": [513, 421, 320, 37], "children": []}]}]}, {"type": "tr", "content": "", "style": null, "bbox": [10, 462, 1260, 38], "children": [{"type": "td", "content": "", "style": null, "bbox": [10, 462, 500, 38], "children": [{"type": "b", "content": "Rechercher par auteur:", "style": null, "bbox": [11, 463, 160, 17], "children": []}, {"type": "span", "content": "Utilisez un * comme joker pour des recherches partielles.", "style": null, "bbox": [11, 481, 367, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [512, 462, 327, 38], "children": [{"type": "input", "content": "", "style": "width: 300px;", "bbox": [513, 470, 308, 21], "children": []}]}]}, {"type": "tr", "content": "", "style": null, "bbox": [10, 502, 1260, 38], "children": [{"type": "td", "content": "", "style": null, "bbox": [10, 502, 500, 38], "children": [{"type": "b", "content": "Recherche par attribut:", "style": null, "bbox": [11, 503, 162, 17], "children": []}, {"type": "span", "content": "S\u00e9lectionnez l\u2019attribut que vous souhaitez rechercher", "style": null, "bbox": [11, 521, 338, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [512, 502, 327, 38], "children": [{"type": "select", "content": "", "style": null, "bbox": [513, 511, 160, 19], "children": [{"type": "option", "content": "S\u00e9lectionner un attribut", "style": "font-weight:bold;", "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "[Probl\u00e8me]", "style": "color:#ff9900; font-weight:bold;", "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "[R\u00e9novation]", "style": "color:#ff9900; font-weight:bold;", "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "[Ebay]", "style": "color:#3300ff; font-weight:bold;", "bbox": [0, 0, 0, 0], "children": []}]}]}]}, {"type": "tr", "content": "", "style": null, "bbox": [10, 542, 1260, 74], "children": [{"type": "td", "content": "", "style": null, "bbox": [10, 542, 500, 74], "children": [{"type": "b", "content": "Rechercher dans les forums:", "style": null, "bbox": [11, 543, 194, 17], "children": []}, {"type": "span", "content": "Choisissez le forum ou les forums dans le(s)quel(s) vous souhaitez effectuer une recherche. Les sous-forums sont automatiquement inclus si vous ne d\u00e9sactivez pas l\u2019option ci-dessous \u00ab\u00a0Rechercher dans les sous-forums\u00a0\u00bb.", "style": null, "bbox": [11, 561, 487, 53], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [512, 542, 327, 74], "children": [{"type": "select", "content": "", "style": null, "bbox": [513, 569, 325, 19], "children": [{"type": "option", "content": "Tutoriels & Guides d'installation", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "Tutos - M\u00e9canique", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "Tutos - Trains roulants", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "Tutos - Electricit\u00e9 & Electronique", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "Tutos - OBD", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "Tutos - Ventilation - Climatisation", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "Tutos - Int\u00e9rieur", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "Tutos - Ext\u00e9rieur", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "Tutos - Autres", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "Rassemblement National Golf IV", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "16\u00e8me Rassemblement National Golf IV (2022)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "Archive des Rassemblements Nationaux Golf IV", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "15\u00e8me Rassemblement National Golf IV (2020)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "14\u00e8me Rassemblement National Golf IV (2019)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "13\u00e8me Rassemblement National Golf IV (2018)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "12\u00e8me Rassemblement National Golf IV (2017)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "11\u00e8me Rassemblement National Golf IV (2016)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "10\u00e8me Rassemblement National Golf IV (2015)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "9\u00e8me Rassemblement National Golf IV (2014)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "8\u00e8me Rassemblement National Golf IV (2013)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "7\u00e8me Rassemblement National Golf IV (2012)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "6\u00e8me Rassemblement National Golf IV (2011)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "5\u00e8me Rassemblement National Golf IV (2010)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "4\u00e8me Rassemblement National Golf IV (2009)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "3eme Rassemblement National Golf IV (2008)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2eme Rassemblement National Golf IV (2007)", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "1er Rassemblement National Golf IV (2006)", "style": null, "bbox": [0, 0, 0, 0], "children": []}]}]}]}, {"type": "tr", "content": "", "style": null, "bbox": [10, 618, 1260, 20], "children": [{"type": "th", "content": "Options de recherche", "style": null, "bbox": [10, 618, 500, 20], "children": []}]}, {"type": "tr", "content": "", "style": null, "bbox": [10, 640, 1260, 176], "children": [{"type": "td", "content": "", "style": null, "bbox": [10, 640, 500, 176], "children": [{"type": "b", "content": "Rechercher dans les sous-forums:", "style": null, "bbox": [11, 719, 229, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [512, 640, 327, 176], "children": [{"type": "input", "content": "", "style": "", "bbox": [513, 707, 177, 21], "children": []}, {"type": "span", "content": "Oui", "style": null, "bbox": [694, 708, 24, 17], "children": []}, {"type": "input", "content": "", "style": "", "bbox": [513, 728, 177, 21], "children": []}, {"type": "span", "content": "Non", "style": null, "bbox": [694, 729, 27, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [841, 640, 247, 176], "children": [{"type": "b", "content": "Rechercher dans:", "style": null, "bbox": [842, 719, 119, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [1090, 640, 179, 176], "children": [{"type": "input", "content": "", "style": "", "bbox": [1091, 641, 177, 21], "children": []}, {"type": "span", "content": "Titres et messages", "style": null, "bbox": [1091, 662, 116, 17], "children": []}, {"type": "input", "content": "", "style": "", "bbox": [1091, 680, 177, 21], "children": []}, {"type": "span", "content": "Messages uniquement", "style": null, "bbox": [1091, 701, 141, 17], "children": []}, {"type": "input", "content": "", "style": "", "bbox": [1091, 719, 177, 21], "children": []}, {"type": "span", "content": "Titres uniquement", "style": null, "bbox": [1091, 740, 116, 17], "children": []}, {"type": "input", "content": "", "style": "", "bbox": [1091, 758, 177, 21], "children": []}, {"type": "span", "content": "Premier message des sujets uniquement", "style": null, "bbox": [1091, 779, 174, 35], "children": []}]}]}, {"type": "tr", "content": "", "style": null, "bbox": [10, 818, 1260, 80], "children": [{"type": "td", "content": "", "style": null, "bbox": [10, 818, 500, 80], "children": [{"type": "b", "content": "Classer les r\u00e9sultats par:", "style": null, "bbox": [11, 849, 168, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [512, 818, 327, 80], "children": [{"type": "select", "content": "", "style": null, "bbox": [513, 827, 129, 19], "children": [{"type": "option", "content": "Auteur", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "Date", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "Forum", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "Titre du sujet", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "Sujet du message", "style": null, "bbox": [0, 0, 0, 0], "children": []}]}, {"type": "input", "content": "", "style": "", "bbox": [513, 846, 177, 21], "children": []}, {"type": "span", "content": "Croissant", "style": null, "bbox": [694, 847, 60, 17], "children": []}, {"type": "input", "content": "", "style": "", "bbox": [513, 867, 177, 21], "children": []}, {"type": "span", "content": "D\u00e9croissant", "style": null, "bbox": [694, 868, 75, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [841, 818, 247, 80], "children": [{"type": "b", "content": "Afficher les r\u00e9sultats sous forme de:", "style": null, "bbox": [842, 849, 244, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [1090, 818, 179, 80], "children": [{"type": "input", "content": "", "style": "", "bbox": [1091, 819, 177, 21], "children": []}, {"type": "span", "content": "Messages", "style": null, "bbox": [1091, 840, 62, 17], "children": []}, {"type": "input", "content": "", "style": "", "bbox": [1091, 858, 177, 21], "children": []}, {"type": "span", "content": "Sujets", "style": null, "bbox": [1091, 879, 39, 17], "children": []}]}]}, {"type": "tr", "content": "", "style": null, "bbox": [10, 900, 1260, 57], "children": [{"type": "td", "content": "", "style": null, "bbox": [10, 900, 500, 57], "children": [{"type": "b", "content": "Rechercher depuis:", "style": null, "bbox": [11, 919, 132, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [512, 900, 327, 57], "children": [{"type": "select", "content": "", "style": null, "bbox": [513, 919, 125, 19], "children": [{"type": "option", "content": "Tous les r\u00e9sultats", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "1 jour", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "7 jours", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "2 semaines", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "1 mois", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "3 mois", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "6 mois", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "1 an", "style": null, "bbox": [0, 0, 0, 0], "children": []}]}]}, {"type": "td", "content": "", "style": null, "bbox": [841, 900, 247, 57], "children": [{"type": "b", "content": "Renvoyer les:", "style": null, "bbox": [842, 919, 92, 17], "children": []}]}, {"type": "td", "content": "", "style": null, "bbox": [1090, 900, 179, 57], "children": [{"type": "select", "content": "", "style": null, "bbox": [1091, 901, 121, 19], "children": [{"type": "option", "content": "Tous disponibles", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "0", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "25", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "50", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "100", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "200", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "300", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "400", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "500", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "600", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "700", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "800", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "900", "style": null, "bbox": [0, 0, 0, 0], "children": []}, {"type": "option", "content": "1000", "style": null, "bbox": [0, 0, 0, 0], "children": []}]}, {"type": "span", "content": "premiers caract\u00e8res des messages", "style": null, "bbox": [1091, 920, 149, 35], "children": []}]}]}, {"type": "tr", "content": "", "style": null, "bbox": [10, 959, 1260, 44], "children": [{"type": "td", "content": "", "style": null, "bbox": [10, 959, 500, 44], "children": [{"type": "input", "content": "", "style": "", "bbox": [11, 960, 177, 21], "children": []}, {"type": "input", "content": "", "style": "", "bbox": [192, 960, 177, 21], "children": []}, {"type": "input", "content": "", "style": "", "bbox": [11, 981, 177, 21], "children": []}]}]}]}]}]}]}, {"type": "table", "content": "", "style": "margin-top: 5px;", "bbox": [8, 1028, 1264, 90], "children": [{"type": "tbody", "content": "", "style": null, "bbox": [10, 1030, 1260, 86], "children": [{"type": "tr", "content": "", "style": null, "bbox": [10, 1030, 1260, 86], "children": [{"type": "td", "content": "", "style": null, "bbox": [10, 1030, 1260, 86], "children": [{"type": "p", "content": "", "style": null, "bbox": [11, 1047, 1258, 18], "children": [{"type": "a", "content": "Index du forum", "style": null, "bbox": [11, 1047, 99, 17], "children": []}]}, {"type": "p", "content": "Heures au format UTC + 1 heure", "style": null, "bbox": [11, 1081, 1258, 18], "children": []}]}]}]}]}]}, {"type": "div", "content": "", "style": null, "bbox": [8, 1136, 1264, 91], "children": [{"type": "span", "content": "", "style": null, "bbox": [8, 1136, 374, 90], "children": [{"type": "a", "content": "phpBB", "style": null, "bbox": [105, 1136, 45, 17], "children": []}, {"type": "a", "content": "phpBB-fr.com", "style": null, "bbox": [106, 1154, 92, 17], "children": []}, {"type": "a", "content": "", "style": null, "bbox": [8, 1173, 80, 17], "children": [{"type": "img", "content": "", "style": null, "bbox": [8, 1172, 80, 15], "children": []}]}, {"type": "a", "content": "Cookies - CGU", "style": null, "bbox": [8, 1191, 99, 17], "children": []}, {"type": "bdo", "content": "[ Time : 0.218s | 12 Queries | GZIP : Off ]", "style": null, "bbox": [8, 1209, 267, 17], "children": []}]}]}]}</span></div> </div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto"> <div> <span class="block "><!DOCTYPE html> <html><head><base/><title>Rechercher - Forum Volkswagen Golf IV</title></head><body class="ltr"><div class="" id="cookies_box"><h1>Ce site web utilise les cookies.</h1><p> Les données stockées par ces cookies nous permermettent de personnaliser le contenu des annonces, d'offrir des fonctionnalités relatives aux réseaux sociaux et d'analyser notre trafic. Nous partageons également certains cookies et des informations sur l'utilisation de notre site avec nos partenaires de médias sociaux, de publicité et d'analyse, qui peuvent combiner celles-ci avec d'autres informations que vous leur avez fournies ou qu'ils ont collectées lors de votre utilisation de leurs services. Nos partenaires sont Google et ses partenaires tiers. </p><div><a class="cb_infos">Plus d'informations</a><a class="cb_discard">Refuser</a><a class="cb_accept">Accepter</a></div></div><a></a><div class="modal hidden fade" id="fastPanel" style="display: none;"><div class="modal-header"><h3 id="fastPanelTitle">Navigation rapide</h3></div><div class="modal-body" id="fastPanelText">Chargement...</div><div class="modal-footer"><button class="btn">Close</button></div></div><div class="modal hidden fade" id="garagePanel" style="display: none;"><div class="modal-header"><h3 id="garageTitle">Liste des garages du membre</h3></div><div class="modal-body" id="garageText"></div><div class="modal-footer"><button class="btn">Close</button></div></div><div id="wrapheader"><div class="giv" id="logodesc"><a><img height="110" src="https://www.golfiv.fr:443/styles/subsilver2/theme/images/banniere-giv.jpg" width="943"/></a></div><br/><div id="menubar"><table width="100%"><tr><td class="genmed"></td><td class="genmed"><a id="fastPanelButton"><i class="icon-plane"></i> Nav</a>  <a><i class="icon-th"></i> Portail</a>  <a><i class="icon-list"></i> Forum</a>  <a><i class="icon-tag"></i> Petites annonces</a> <a><i class="icon-pencil"></i> Wiki</a> <a><i class="icon-search"></i> Rechercher</a>  </td></tr></table></div><div id="datebar"><table width="100%"><tr><td class="gensmall">Dernière visite: il y a moins d’une minute</td><td class="gensmall">Nous sommes le 30 Nov 2023, 12:31<br/></td></tr></table></div></div><div id="wrapcentre"><p class="searchbar"><span style="float: left;"><a>Voir les messages sans réponses</a> | <a>Voir les sujets actifs</a></span><span style="float: right;"><a>Voir les nouveaux messages</a> | <a>Voir mes messages</a></span></p><br style="clear: both;"/><table class="tablebg" style="margin-top: 5px;" width="100%"><tr><td class="row1"><p class="breadcrumbs"><a>Index du forum</a></p><p class="datetime">Heures au format UTC + 1 heure </p></td></tr></table><br/><div id="pagecontent"><form><table class="tablebg" width="100%"><tr><th>Rechercher</th></tr><tr><td class="row1" width="50%"><b class="genmed">Recherche par mots-clés: </b><br/><span class="gensmall">Placez un <strong>+</strong> devant un mot qui doit être trouvé et un <strong>-</strong> devant un mot qui doit être exclu. Tapez une suite de mots séparés par des <strong>|</strong> entre crochets si uniquement un des mots doit être trouvé. Utilisez un * comme joker pour des recherches partielles.</span></td><td class="row2"><input class="post" style="width: 300px"/><br/><input class="radio"/> <span class="genmed">Rechercher tous les termes</span><br/><input class="radio"/> <span class="genmed">Rechercher n’importe lequel de ces termes</span></td></tr><tr><td class="row1"><b class="genmed">Rechercher par auteur:</b><br/><span class="gensmall">Utilisez un * comme joker pour des recherches partielles.</span></td><td class="row2"><input class="post" style="width: 300px"/></td></tr><tr><td class="row1" width="50%"><b class="genmed">Recherche par attribut:</b><br/><span class="gensmall">Sélectionnez l’attribut que vous souhaitez rechercher</span></td><td class="row2"><select><option style="font-weight:bold;">Sélectionner un attribut</option><option style="color:#ff9900; font-weight:bold;">[Problème]</option><option style="color:#ff9900; font-weight:bold;">[Rénovation]</option><option style="color:#3300ff; font-weight:bold;">[Ebay]</option></select></td></tr><tr><td class="row1"><b class="genmed">Rechercher dans les forums: </b><br/><span class="gensmall">Choisissez le forum ou les forums dans le(s)quel(s) vous souhaitez effectuer une recherche. Les sous-forums sont automatiquement inclus si vous ne désactivez pas l’option ci-dessous « Rechercher dans les sous-forums ».</span></td><td class="row2"><select><option>   Tutoriels &amp; Guides d'installation</option><option>      Tutos - Mécanique</option><option>      Tutos - Trains roulants</option><option>      Tutos - Electricité &amp; Electronique</option><option>      Tutos - OBD</option><option>      Tutos - Ventilation - Climatisation</option><option>      Tutos - Intérieur</option><option>      Tutos - Extérieur</option><option>      Tutos - Autres</option><option>Rassemblement National Golf IV</option><option>   16ème Rassemblement National Golf IV (2022)</option><option>   Archive des Rassemblements Nationaux Golf IV</option><option>      15ème Rassemblement National Golf IV (2020)</option><option>      14ème Rassemblement National Golf IV (2019)</option><option>      13ème Rassemblement National Golf IV (2018)</option><option>      12ème Rassemblement National Golf IV (2017)</option><option>      11ème Rassemblement National Golf IV (2016)</option><option>      10ème Rassemblement National Golf IV (2015)</option><option>      9ème Rassemblement National Golf IV (2014)</option><option>      8ème Rassemblement National Golf IV (2013)</option><option>      7ème Rassemblement National Golf IV (2012)</option><option>      6ème Rassemblement National Golf IV (2011)</option><option>      5ème Rassemblement National Golf IV (2010)</option><option>      4ème Rassemblement National Golf IV (2009)</option><option>      3eme Rassemblement National Golf IV (2008)</option><option>      2eme Rassemblement National Golf IV (2007)</option><option>      1er Rassemblement National Golf IV (2006)</option></select></td></tr><tr><th>Options de recherche</th></tr><tr><td class="row1" width="25%"><b class="genmed">Rechercher dans les sous-forums: </b></td><td class="row2" width="25%"><input class="radio"/> <span class="genmed">Oui</span>  <input class="radio"/> <span class="genmed">Non</span></td><td class="row1" width="25%"><b class="genmed">Rechercher dans: </b></td><td class="row2" width="25%"><input class="radio"/> <span class="genmed">Titres et messages</span><br/><input class="radio"/> <span class="genmed">Messages uniquement</span> <br/><input class="radio"/> <span class="genmed">Titres uniquement</span> <br/><input class="radio"/> <span class="genmed">Premier message des sujets uniquement</span></td></tr><tr><td class="row1"><b class="genmed">Classer les résultats par: </b></td><td class="row2"><select id="sk"><option>Auteur</option><option>Date</option><option>Forum</option><option>Titre du sujet</option><option>Sujet du message</option></select><br/><input class="radio"/> <span class="genmed">Croissant</span><br/><input class="radio"/> <span class="genmed">Décroissant</span></td><td class="row1"><b class="genmed">Afficher les résultats sous forme de: </b></td><td class="row2"><input class="radio"/> <span class="genmed">Messages</span>  <input class="radio"/> <span class="genmed">Sujets</span></td></tr><tr><td class="row1" width="25%"><b class="genmed">Rechercher depuis: </b></td><td class="row2" width="25%"><select id="st"><option>Tous les résultats</option><option>1 jour</option><option>7 jours</option><option>2 semaines</option><option>1 mois</option><option>3 mois</option><option>6 mois</option><option>1 an</option></select></td><td class="row1"><b class="genmed">Renvoyer les: </b></td><td class="row2"><select><option>Tous disponibles</option><option>0</option><option>25</option><option>50</option><option>100</option><option>200</option><option>300</option><option>400</option><option>500</option><option>600</option><option>700</option><option>800</option><option>900</option><option>1000</option></select> <span class="genmed">premiers caractères des messages</span></td></tr><tr><td class="cat"><input/><input class="btnmain"/>  <input class="btnlite"/></td></tr></table></form><br/></div><table class="tablebg" style="margin-top: 5px;" width="100%"><tr><td class="row1"><p class="breadcrumbs"><a>Index du forum</a></p><p class="datetime">Heures au format UTC + 1 heure </p></td></tr></table><br/><div></div></div><div id="wrapfooter"><span class="copyright">Développé par <a>phpBB</a>® Forum Software © phpBB Group <br/>Traduction par <a>phpBB-fr.com</a><br/><a><img src="https://www.golfiv.fr:443/images/phpbb-seo.png"/></a><br/><a>Cookies - CGU</a><br/><bdo>[ Time : 0.218s | 12 Queries | GZIP : Off ]</bdo></span></div><noscript><p><img src="//matomo.golfiv.fr/matomo.php?idsite=1&amp;rec=1" style="border:0;"/></p></noscript><style>#cookies_box { z-index: 9000; position: fixed; padding: 1em 1.8em; color: rgb(255, 255, 255); background-color: rgb(37, 46, 57); font-size: 12px } #cookies_box h1 { color: rgb(255, 255, 255); font-size: 1.5em; font-weight: bold; margin-bottom: 0.7em } #cookies_box p { font-size: 1em; margin-bottom: 1em } #cookies_box div { display: flex } #cookies_box div a { background-color: rgb(58, 205, 246); border-radius: 5px; color: rgb(255, 255, 255); cursor: pointer; font-weight: 700; padding: 0.4em 0.8em; text-decoration: none; white-space: nowrap } #cookies_box a.cb_infos, #cookies_box a.cb_discard { margin-right: 1em }</style></body></html></span></div> </div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-right" dir="auto">3</div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-left" dir="auto"><div><button class="float-right ml-2 mr-0.5 mt-1 flex items-center justify-center rounded-full bg-white p-1.5 text-gray-700 ring-1 ring-gray-300 transition hover:bg-gray-50 hover:text-gray-900 hover:shadow-sm dark:bg-gray-800 dark:text-gray-100 dark:ring-gray-600 dark:hover:bg-gray-700 dark:hover:text-white"><svg class="text-sm" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 12 12"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.917 2.25h-.834v.833h.834v2.084A.833.833 0 0 0 9.75 6a.833.833 0 0 0-.833.833v2.084h-.834v.833h.834c.446-.113.833-.375.833-.833V7.25a.833.833 0 0 1 .833-.833H11v-.834h-.417a.833.833 0 0 1-.833-.833V3.083a.833.833 0 0 0-.833-.833Zm-5.834 0a.833.833 0 0 0-.833.833V4.75a.833.833 0 0 1-.833.833H1v.834h.417a.833.833 0 0 1 .833.833v1.667a.833.833 0 0 0 .833.833h.834v-.833h-.834V6.833A.833.833 0 0 0 2.25 6a.833.833 0 0 0 .833-.833V3.083h.834V2.25h-.834ZM6 7.25a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm1.667 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm-3.334 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Z" fill="currentColor"></path></svg></button> <span class="block min-h-[2rem]">[ 1280, 1235 ]</span></div></div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto"> <div> <span class="block ">fr</span></div> </div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-left" dir="auto"><div><button class="float-right ml-2 mr-0.5 mt-1 flex items-center justify-center rounded-full bg-white p-1.5 text-gray-700 ring-1 ring-gray-300 transition hover:bg-gray-50 hover:text-gray-900 hover:shadow-sm dark:bg-gray-800 dark:text-gray-100 dark:ring-gray-600 dark:hover:bg-gray-700 dark:hover:text-white"><svg class="text-sm" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 12 12"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.917 2.25h-.834v.833h.834v2.084A.833.833 0 0 0 9.75 6a.833.833 0 0 0-.833.833v2.084h-.834v.833h.834c.446-.113.833-.375.833-.833V7.25a.833.833 0 0 1 .833-.833H11v-.834h-.417a.833.833 0 0 1-.833-.833V3.083a.833.833 0 0 0-.833-.833Zm-5.834 0a.833.833 0 0 0-.833.833V4.75a.833.833 0 0 1-.833.833H1v.834h.417a.833.833 0 0 1 .833.833v1.667a.833.833 0 0 0 .833.833h.834v-.833h-.834V6.833A.833.833 0 0 0 2.25 6a.833.833 0 0 0 .833-.833V3.083h.834V2.25h-.834ZM6 7.25a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm1.667 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm-3.334 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Z" fill="currentColor"></path></svg></button> <span class="block min-h-[2rem]">[ 231, 2988 ]</span></div></div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto"> <div> <span class="block ">0b89d8dcc0b13159c2952af0c12fafdaa5d4337310b14863ceff1c24234f7711</span></div> </div></div> </td> </tr><tr class="group cursor-pointer space-x-4 divide-x border-b outline-offset-[-2px] odd:bg-gray-50 hover:bg-gray-100 dark:odd:bg-gray-925 dark:hover:bg-gray-850 last:border-none" tabindex="0" data-row-idx="6"><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-left" dir="auto"><div class="flex max-h-12 flex-wrap gap-1.5 overflow-hidden"><button class="inline-block h-12 rounded-sm" style="aspect-ratio: 1280 / 1420;;"><div class="relative flex h-full w-full items-center justify-center overflow-hidden rounded-sm"><div class="absolute inset-0 animate-pulse flex items-center justify-center bg-gray-200 dark:bg-gray-800"></div> <img loading="lazy" src="https://datasets-server.huggingface.co/assets/xcodemind/webcode2m_purified/--/6e1735ac07f6dcb002eb542cf6892e69412dbb33/--/default/train/6/image/image.png?Expires=1755748228&Signature=iXyx9S3zYOqHXMdrd8-HDLoZu143NhXFx0zMMt7tKQ3f-Q5SUHwu9~ke0lbkLWHpn~Y2cBIWbrUxpXeno64fhAPFS2r0NbeAKkjdG5ON34obABmJ-iXmrWME5G3iSwPsXtfXPIod98J54LRRkFae6d6L8FZ3Ib-LBGqE9Q6gKcoKxK-t9QoX68oR9Oe0tOhmJngVJbQn0GdQ-F37oqs1xSwOnvZqk24SIbjPJGl0Ynti3QAAfEvEgd9uQDQb5juIBpU2y8v-pEVOZYshDTfG2had3H4d0y4TulkwCne4HeovMyxW~gknD4uyKOBdy4ZEJ7woXuQ2sY8Ek6ePijRtZg__&Key-Pair-Id=K3EI6M078Z3AC3" class="h-12 w-auto min-w-[3rem] object-cover invisible" alt=""></div> </button></div> </div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto">"{\"type\": \"body\", \"content\": \"\", \"style\": \"background-color: #e5e5e5\", \"bbox\": [8, 8, <span class="text-orange-500">(...TRUNCATED)</span></div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto">"<!DOCTYPE html>\n\n<html><head><title>Ingold – Material World</title></head><body class=\"archive<span class="text-orange-500">(...TRUNCATED)</span></div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-right" dir="auto">3</div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-left" dir="auto"><div><button class="float-right ml-2 mr-0.5 mt-1 flex items-center justify-center rounded-full bg-white p-1.5 text-gray-700 ring-1 ring-gray-300 transition hover:bg-gray-50 hover:text-gray-900 hover:shadow-sm dark:bg-gray-800 dark:text-gray-100 dark:ring-gray-600 dark:hover:bg-gray-700 dark:hover:text-white"><svg class="text-sm" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 12 12"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.917 2.25h-.834v.833h.834v2.084A.833.833 0 0 0 9.75 6a.833.833 0 0 0-.833.833v2.084h-.834v.833h.834c.446-.113.833-.375.833-.833V7.25a.833.833 0 0 1 .833-.833H11v-.834h-.417a.833.833 0 0 1-.833-.833V3.083a.833.833 0 0 0-.833-.833Zm-5.834 0a.833.833 0 0 0-.833.833V4.75a.833.833 0 0 1-.833.833H1v.834h.417a.833.833 0 0 1 .833.833v1.667a.833.833 0 0 0 .833.833h.834v-.833h-.834V6.833A.833.833 0 0 0 2.25 6a.833.833 0 0 0 .833-.833V3.083h.834V2.25h-.834ZM6 7.25a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm1.667 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm-3.334 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Z" fill="currentColor"></path></svg></button> <span class="block min-h-[2rem]">[ 1280, 1420 ]</span></div></div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto"> <div> <span class="block ">en</span></div> </div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-left" dir="auto"><div><button class="float-right ml-2 mr-0.5 mt-1 flex items-center justify-center rounded-full bg-white p-1.5 text-gray-700 ring-1 ring-gray-300 transition hover:bg-gray-50 hover:text-gray-900 hover:shadow-sm dark:bg-gray-800 dark:text-gray-100 dark:ring-gray-600 dark:hover:bg-gray-700 dark:hover:text-white"><svg class="text-sm" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 12 12"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.917 2.25h-.834v.833h.834v2.084A.833.833 0 0 0 9.75 6a.833.833 0 0 0-.833.833v2.084h-.834v.833h.834c.446-.113.833-.375.833-.833V7.25a.833.833 0 0 1 .833-.833H11v-.834h-.417a.833.833 0 0 1-.833-.833V3.083a.833.833 0 0 0-.833-.833Zm-5.834 0a.833.833 0 0 0-.833.833V4.75a.833.833 0 0 1-.833.833H1v.834h.417a.833.833 0 0 1 .833.833v1.667a.833.833 0 0 0 .833.833h.834v-.833h-.834V6.833A.833.833 0 0 0 2.25 6a.833.833 0 0 0 .833-.833V3.083h.834V2.25h-.834ZM6 7.25a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm1.667 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm-3.334 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Z" fill="currentColor"></path></svg></button> <span class="block min-h-[2rem]">[ 277, 4085 ]</span></div></div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto"> <div> <span class="block ">9a2ce7f93e628160ec545fa9d05c7131db9d32e0699e0d07c997f26975f08141</span></div> </div></div> </td> </tr><tr class="group cursor-pointer space-x-4 divide-x border-b outline-offset-[-2px] odd:bg-gray-50 hover:bg-gray-100 dark:odd:bg-gray-925 dark:hover:bg-gray-850 last:border-none" tabindex="0" data-row-idx="7"><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-left" dir="auto"><div class="flex max-h-12 flex-wrap gap-1.5 overflow-hidden"><button class="inline-block h-12 rounded-sm" style="aspect-ratio: 1280 / 2468;;"><div class="relative flex h-full w-full items-center justify-center overflow-hidden rounded-sm"><div class="absolute inset-0 animate-pulse flex items-center justify-center bg-gray-200 dark:bg-gray-800"></div> <img loading="lazy" src="https://datasets-server.huggingface.co/assets/xcodemind/webcode2m_purified/--/6e1735ac07f6dcb002eb542cf6892e69412dbb33/--/default/train/7/image/image.png?Expires=1755748228&Signature=INo6FgKdcS09lytRUyYLUSjLnOQpafEQYYm0SkpPpScjVb1jEz-rxIjkqTjhptCnzWyGloTWaiqYrsM6I8n~I0tBuxz2p3qsOxFBZ4SwJfR9QPcltL3yHQTVJS~M76vP1un3D6c5n8vUDU7msdyTMZNmnri37cJiqn1zUaQ7Rivb7~ILboPkNcaM-YM1gu6HTNsG-mqSApJl-0gYWsoRQMZIf4L3MpOQlFL417Nzup1mjjb2UteNNQp801BpVDqTLX~nHXHavG1n7yaKJl8pC04575~8stCxG5mg0lVx6-5Q0hJwV-zaF0Gj7uCECe3fKJWpWKZQjWgeuD68FvToMg__&Key-Pair-Id=K3EI6M078Z3AC3" class="h-12 w-auto min-w-[3rem] object-cover invisible" alt=""></div> </button></div> </div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto">"{\"type\": \"body\", \"content\": \"\", \"style\": \"margin: 0; padding-top: 0; padding-right: 0; p<span class="text-orange-500">(...TRUNCATED)</span></div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto">"<!DOCTYPE html>\n\n<html><head><title>Historik | Sveriges Yachtkonstruktörers Riksförening</title<span class="text-orange-500">(...TRUNCATED)</span></div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-right" dir="auto">3</div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-left" dir="auto"><div><button class="float-right ml-2 mr-0.5 mt-1 flex items-center justify-center rounded-full bg-white p-1.5 text-gray-700 ring-1 ring-gray-300 transition hover:bg-gray-50 hover:text-gray-900 hover:shadow-sm dark:bg-gray-800 dark:text-gray-100 dark:ring-gray-600 dark:hover:bg-gray-700 dark:hover:text-white"><svg class="text-sm" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 12 12"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.917 2.25h-.834v.833h.834v2.084A.833.833 0 0 0 9.75 6a.833.833 0 0 0-.833.833v2.084h-.834v.833h.834c.446-.113.833-.375.833-.833V7.25a.833.833 0 0 1 .833-.833H11v-.834h-.417a.833.833 0 0 1-.833-.833V3.083a.833.833 0 0 0-.833-.833Zm-5.834 0a.833.833 0 0 0-.833.833V4.75a.833.833 0 0 1-.833.833H1v.834h.417a.833.833 0 0 1 .833.833v1.667a.833.833 0 0 0 .833.833h.834v-.833h-.834V6.833A.833.833 0 0 0 2.25 6a.833.833 0 0 0 .833-.833V3.083h.834V2.25h-.834ZM6 7.25a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm1.667 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm-3.334 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Z" fill="currentColor"></path></svg></button> <span class="block min-h-[2rem]">[ 1280, 2468 ]</span></div></div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto"> <div> <span class="block ">bg</span></div> </div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-left" dir="auto"><div><button class="float-right ml-2 mr-0.5 mt-1 flex items-center justify-center rounded-full bg-white p-1.5 text-gray-700 ring-1 ring-gray-300 transition hover:bg-gray-50 hover:text-gray-900 hover:shadow-sm dark:bg-gray-800 dark:text-gray-100 dark:ring-gray-600 dark:hover:bg-gray-700 dark:hover:text-white"><svg class="text-sm" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 12 12"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.917 2.25h-.834v.833h.834v2.084A.833.833 0 0 0 9.75 6a.833.833 0 0 0-.833.833v2.084h-.834v.833h.834c.446-.113.833-.375.833-.833V7.25a.833.833 0 0 1 .833-.833H11v-.834h-.417a.833.833 0 0 1-.833-.833V3.083a.833.833 0 0 0-.833-.833Zm-5.834 0a.833.833 0 0 0-.833.833V4.75a.833.833 0 0 1-.833.833H1v.834h.417a.833.833 0 0 1 .833.833v1.667a.833.833 0 0 0 .833.833h.834v-.833h-.834V6.833A.833.833 0 0 0 2.25 6a.833.833 0 0 0 .833-.833V3.083h.834V2.25h-.834ZM6 7.25a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm1.667 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm-3.334 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Z" fill="currentColor"></path></svg></button> <span class="block min-h-[2rem]">[ 2187, 4813 ]</span></div></div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto"> <div> <span class="block ">c82facfd2e59e1d5b857b8dc5004e5361f001e9c25373c3a2b6831e8e0599116</span></div> </div></div> </td> </tr><tr class="group cursor-pointer space-x-4 divide-x border-b outline-offset-[-2px] odd:bg-gray-50 hover:bg-gray-100 dark:odd:bg-gray-925 dark:hover:bg-gray-850 last:border-none" tabindex="0" data-row-idx="8"><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-left" dir="auto"><div class="flex max-h-12 flex-wrap gap-1.5 overflow-hidden"><button class="inline-block h-12 rounded-sm" style="aspect-ratio: 1280 / 2032;;"><div class="relative flex h-full w-full items-center justify-center overflow-hidden rounded-sm"><div class="absolute inset-0 animate-pulse flex items-center justify-center bg-gray-200 dark:bg-gray-800"></div> <img loading="lazy" src="https://datasets-server.huggingface.co/assets/xcodemind/webcode2m_purified/--/6e1735ac07f6dcb002eb542cf6892e69412dbb33/--/default/train/8/image/image.png?Expires=1755748228&Signature=KLScOosYsrbjJn3JQCJY05hkHwK13pgJuQUwssHhAeQND8zLlyNg9K-tHdqWoyJAv5eMUmtErnPqDHaqMMiqi~VJ3EpAze0m9u2KOOeebOdd35OpxpnyglAaQyOZeGJFh436GzmA-rNoIh8eNdhTQzL~ktF5NcOd9Fr96biaBeB9jKqMzro-aH13H7dO8r1pSTgyMyDDiKfInaAZ33JcMMCYZ5jjmJmQ7A7fRi36soiSSEfXv7~38QXpamAAXnqV3EGbwI5xZXtwrf~3yuDyLJPG3UPTrPXwP26MrzgHGwUw54rBCG1G88k6g87wdp~H2onXj1vVZlrjKVbNuV8ZXw__&Key-Pair-Id=K3EI6M078Z3AC3" class="h-12 w-auto min-w-[3rem] object-cover invisible" alt=""></div> </button></div> </div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto">"{\"type\": \"body\", \"content\": \"\", \"style\": \"color: #fff; background-color: #99011A; font-f<span class="text-orange-500">(...TRUNCATED)</span></div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto">"<!DOCTYPE html>\n\n<html><head><title>Retter-Radio - Musik-Forum nicht nur für Alltagsretter | Üb<span class="text-orange-500">(...TRUNCATED)</span></div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-right" dir="auto">3</div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-left" dir="auto"><div><button class="float-right ml-2 mr-0.5 mt-1 flex items-center justify-center rounded-full bg-white p-1.5 text-gray-700 ring-1 ring-gray-300 transition hover:bg-gray-50 hover:text-gray-900 hover:shadow-sm dark:bg-gray-800 dark:text-gray-100 dark:ring-gray-600 dark:hover:bg-gray-700 dark:hover:text-white"><svg class="text-sm" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 12 12"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.917 2.25h-.834v.833h.834v2.084A.833.833 0 0 0 9.75 6a.833.833 0 0 0-.833.833v2.084h-.834v.833h.834c.446-.113.833-.375.833-.833V7.25a.833.833 0 0 1 .833-.833H11v-.834h-.417a.833.833 0 0 1-.833-.833V3.083a.833.833 0 0 0-.833-.833Zm-5.834 0a.833.833 0 0 0-.833.833V4.75a.833.833 0 0 1-.833.833H1v.834h.417a.833.833 0 0 1 .833.833v1.667a.833.833 0 0 0 .833.833h.834v-.833h-.834V6.833A.833.833 0 0 0 2.25 6a.833.833 0 0 0 .833-.833V3.083h.834V2.25h-.834ZM6 7.25a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm1.667 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm-3.334 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Z" fill="currentColor"></path></svg></button> <span class="block min-h-[2rem]">[ 1280, 2032 ]</span></div></div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto"> <div> <span class="block ">de</span></div> </div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-left" dir="auto"><div><button class="float-right ml-2 mr-0.5 mt-1 flex items-center justify-center rounded-full bg-white p-1.5 text-gray-700 ring-1 ring-gray-300 transition hover:bg-gray-50 hover:text-gray-900 hover:shadow-sm dark:bg-gray-800 dark:text-gray-100 dark:ring-gray-600 dark:hover:bg-gray-700 dark:hover:text-white"><svg class="text-sm" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 12 12"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.917 2.25h-.834v.833h.834v2.084A.833.833 0 0 0 9.75 6a.833.833 0 0 0-.833.833v2.084h-.834v.833h.834c.446-.113.833-.375.833-.833V7.25a.833.833 0 0 1 .833-.833H11v-.834h-.417a.833.833 0 0 1-.833-.833V3.083a.833.833 0 0 0-.833-.833Zm-5.834 0a.833.833 0 0 0-.833.833V4.75a.833.833 0 0 1-.833.833H1v.834h.417a.833.833 0 0 1 .833.833v1.667a.833.833 0 0 0 .833.833h.834v-.833h-.834V6.833A.833.833 0 0 0 2.25 6a.833.833 0 0 0 .833-.833V3.083h.834V2.25h-.834ZM6 7.25a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm1.667 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm-3.334 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Z" fill="currentColor"></path></svg></button> <span class="block min-h-[2rem]">[ 253, 3093 ]</span></div></div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto"> <div> <span class="block ">dd0225a8c01bd13c142882dc90626399b95860a66495fee35a439c78997fee8d</span></div> </div></div> </td> </tr><tr class="group cursor-pointer space-x-4 divide-x border-b outline-offset-[-2px] odd:bg-gray-50 hover:bg-gray-100 dark:odd:bg-gray-925 dark:hover:bg-gray-850 last:border-none" tabindex="0" data-row-idx="9"><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-left" dir="auto"><div class="flex max-h-12 flex-wrap gap-1.5 overflow-hidden"><button class="inline-block h-12 rounded-sm" style="aspect-ratio: 1280 / 2394;;"><div class="relative flex h-full w-full items-center justify-center overflow-hidden rounded-sm"><div class="absolute inset-0 animate-pulse flex items-center justify-center bg-gray-200 dark:bg-gray-800"></div> <img loading="lazy" src="https://datasets-server.huggingface.co/assets/xcodemind/webcode2m_purified/--/6e1735ac07f6dcb002eb542cf6892e69412dbb33/--/default/train/9/image/image.png?Expires=1755748228&Signature=Dxf~Ktxqi1JVmA~04eaoF6T4yLWgb2tjWvGF5FmKZGji7sI~YV6Foh3-r6HhmOUvSecaWDIdsDdM26vMzTSyl0vZKl8CJnnobSrwCsj6ekwWbdFPbEbK-qJ2W6vUhtsperUJvNDwaJ3phrcV9v2Pz7bO1sePVzMqIGlTR6BWjToRBXxGte7dkZX4v90pR6a~l-16WlBt5zKcZZmSZ6xtk~3tGldhLxc965def2mKqVfWhJK9iBcBAT74ps4aWBLnUXbOy-~k~eQzSgjySVk~deJnCO-xv1DOcvtFpevC9UHqntEQSk7cDJW7hTVPiqz58XHUD5pJ1I9b1RzcrBtyOA__&Key-Pair-Id=K3EI6M078Z3AC3" class="h-12 w-auto min-w-[3rem] object-cover invisible" alt=""></div> </button></div> </div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto">"{\"type\": \"body\", \"content\": \"\", \"style\": \"font-family: \\\"Dosis\\\", sans-serif; color:<span class="text-orange-500">(...TRUNCATED)</span></div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto">"<!DOCTYPE html>\n\n<html><head><title>Fotografschaft | Marie-Theres Graf | Fotografin | Erlangen | <span class="text-orange-500">(...TRUNCATED)</span></div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-right" dir="auto">3</div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-left" dir="auto"><div><button class="float-right ml-2 mr-0.5 mt-1 flex items-center justify-center rounded-full bg-white p-1.5 text-gray-700 ring-1 ring-gray-300 transition hover:bg-gray-50 hover:text-gray-900 hover:shadow-sm dark:bg-gray-800 dark:text-gray-100 dark:ring-gray-600 dark:hover:bg-gray-700 dark:hover:text-white"><svg class="text-sm" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 12 12"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.917 2.25h-.834v.833h.834v2.084A.833.833 0 0 0 9.75 6a.833.833 0 0 0-.833.833v2.084h-.834v.833h.834c.446-.113.833-.375.833-.833V7.25a.833.833 0 0 1 .833-.833H11v-.834h-.417a.833.833 0 0 1-.833-.833V3.083a.833.833 0 0 0-.833-.833Zm-5.834 0a.833.833 0 0 0-.833.833V4.75a.833.833 0 0 1-.833.833H1v.834h.417a.833.833 0 0 1 .833.833v1.667a.833.833 0 0 0 .833.833h.834v-.833h-.834V6.833A.833.833 0 0 0 2.25 6a.833.833 0 0 0 .833-.833V3.083h.834V2.25h-.834ZM6 7.25a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm1.667 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm-3.334 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Z" fill="currentColor"></path></svg></button> <span class="block min-h-[2rem]">[ 1280, 2394 ]</span></div></div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto"> <div> <span class="block ">ur</span></div> </div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="text-left" dir="auto"><div><button class="float-right ml-2 mr-0.5 mt-1 flex items-center justify-center rounded-full bg-white p-1.5 text-gray-700 ring-1 ring-gray-300 transition hover:bg-gray-50 hover:text-gray-900 hover:shadow-sm dark:bg-gray-800 dark:text-gray-100 dark:ring-gray-600 dark:hover:bg-gray-700 dark:hover:text-white"><svg class="text-sm" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 12 12"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.917 2.25h-.834v.833h.834v2.084A.833.833 0 0 0 9.75 6a.833.833 0 0 0-.833.833v2.084h-.834v.833h.834c.446-.113.833-.375.833-.833V7.25a.833.833 0 0 1 .833-.833H11v-.834h-.417a.833.833 0 0 1-.833-.833V3.083a.833.833 0 0 0-.833-.833Zm-5.834 0a.833.833 0 0 0-.833.833V4.75a.833.833 0 0 1-.833.833H1v.834h.417a.833.833 0 0 1 .833.833v1.667a.833.833 0 0 0 .833.833h.834v-.833h-.834V6.833A.833.833 0 0 0 2.25 6a.833.833 0 0 0 .833-.833V3.083h.834V2.25h-.834ZM6 7.25a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm1.667 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Zm-3.334 0a.417.417 0 1 0 0 .833.417.417 0 0 0 0-.833Z" fill="currentColor"></path></svg></button> <span class="block min-h-[2rem]">[ 555, 3015 ]</span></div></div></div> </td><td class="min-w-fit max-w-sm break-words p-2 "><div class="line-clamp-2 "><div class="" dir="auto"> <div> <span class="block ">174f574b725706892f50f5dadd6a2a8843b6a0b860fe5ef8856ce345f87dea0c</span></div> </div></div> </td> </tr></tbody></table> <div class="bg-linear-to-b sticky left-0 border-t border-dashed border-gray-300 from-gray-100 to-white py-3 text-center font-mono text-xs dark:border-gray-700 dark:from-gray-950 dark:to-gray-900">End of preview. <a href="/datasets/xcodemind/webcode2m_purified/viewer/default/train" class="group"><span class="underline decoration-gray-300 group-hover:decoration-gray-400 dark:decoration-gray-500 dark:group-hover:decoration-gray-300">Expand</span> in <svg class="text-lg mr-0.5 inline -translate-y-px text-red-500" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 12 12"><path fill="currentColor" d="M2.5 2h7a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1h-7a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1Zm0 2v2h3V4h-3Zm4 0v2h3V4h-3Zm-4 3v2h3V7h-3Zm4 0v2h3V7h-3Z"></path></svg>Data Studio </a></div></div> <div class="bg-linear-to-b from-gray-100 to-white dark:from-gray-950 dark:to-gray-900 "><hr class="flex-none -translate-y-px border-t border-dashed border-gray-300 bg-white dark:border-gray-700 dark:bg-gray-950"> <nav><ul class="flex select-none items-center justify-between space-x-2 text-gray-700 sm:justify-center py-1 text-center font-mono text-xs rounded-b-lg"><li><a class="flex items-center rounded-lg px-2.5 py-1 hover:bg-gray-50 dark:hover:bg-gray-800 pointer-events-none cursor-default text-gray-400 hover:text-gray-700" href=""><svg class="mr-1.5" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><path d="M10 16L20 6l1.4 1.4l-8.6 8.6l8.6 8.6L20 26z" fill="currentColor"></path></svg> Previous</a></li> <li class="hidden sm:block"><a class="rounded-lg px-2.5 py-1 bg-gray-50 font-semibold ring-1 ring-inset ring-gray-200 dark:bg-gray-900 dark:text-yellow-500 dark:ring-gray-900 hover:bg-gray-50 dark:hover:bg-gray-800" href="/datasets/xcodemind/webcode2m_purified/viewer/default/train?p=0">1</a> </li><li class="hidden sm:block"><a class="rounded-lg px-2.5 py-1 hover:bg-gray-50 dark:hover:bg-gray-800" href="/datasets/xcodemind/webcode2m_purified/viewer/default/train?p=1">2</a> </li><li class="hidden sm:block"><a class="rounded-lg px-2.5 py-1 hover:bg-gray-50 dark:hover:bg-gray-800" href="/datasets/xcodemind/webcode2m_purified/viewer/default/train?p=2">3</a> </li><li class="hidden sm:block"><a class="rounded-lg px-2.5 py-1 pointer-events-none cursor-default" href="#">...</a> </li><li class="hidden sm:block"><a class="rounded-lg px-2.5 py-1 hover:bg-gray-50 dark:hover:bg-gray-800" href="/datasets/xcodemind/webcode2m_purified/viewer/default/train?p=25620">25,621</a> </li> <li><a class="flex items-center rounded-lg px-2.5 py-1 hover:bg-gray-50 dark:hover:bg-gray-800 " href="/datasets/xcodemind/webcode2m_purified/viewer/default/train?p=1">Next <svg class="ml-1.5 transform rotate-180" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><path d="M10 16L20 6l1.4 1.4l-8.6 8.6l8.6 8.6L20 26z" fill="currentColor"></path></svg></a></li></ul></nav></div></div> </div></div></div></div></div></div></div> <div class="SVELTE_HYDRATER contents" data-target="RepoCodeCopy" data-props="{}"><div></div></div> <div class="SVELTE_HYDRATER contents" data-target="SideNavigation" data-props="{"titleTree":[],"classNames":"top-6"}"> </div> <div class="2xl:pr-6"><div class="prose pl-6 -ml-6 hf-sanitized hf-sanitized--XNbWg0kMxPnFxpuxOlAz"> <!-- HTML_TAG_START --><p>WebCode2M: A Real-World Dataset for Code Generation from Webpage Designs</p> <p>Features:</p> <ul> <li><code>image</code>: the screenshot of the webpage.</li> <li><code>bbox</code>: the layout information, i.e., the bounding boxes (Bbox) of all the elements in the webpage, which contains the size, position, and hierarchy information. </li> <li><code>text</code>: the webpage code text including HTML/CSS code.</li> <li><code>scale</code>: the scale of the screenshot, in the format [width, height].</li> <li><code>lang</code>: the main language of the text content displayed on the rendered page (excluding HTML/CSS code). It is generated by a widely-applied <a rel="nofollow" href="https://huggingface.co/papluca/xlm-roberta-base-language-detection">model</a> on HuggingFace, which achieved very high accuracy on its evaluation set. Currently, it supports the following 20 languages: arabic (ar), bulgarian (bg), german (de), modern greek (el), english (en), spanish (es), french (fr), hindi (hi), italian (it), japanese (ja), dutch (nl), polish (pl), portuguese (pt), russian (ru), swahili (sw), thai (th), turkish (tr), urdu (ur), vietnamese (vi), and chinese (zh).</li> <li><code>tokens</code>: the count of tokens of HTML and CSS code, in the format of [CSS length, HTML length]. The tokens are generated by <a rel="nofollow" href="https://huggingface.co/openai-community/gpt2">GPT-2 tokenizer</a>.</li> <li><code>score</code>: the score is obtained by the neural scorer proposed in the paper.</li> <li><code>hash</code>: the hash code of the image object.</li> </ul> <p><strong>Warning</strong>: 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.</p> <!-- HTML_TAG_END --></div> </div></section> <section class="pt-6 border-gray-100 md:pb-24 md:pl-6 md:w-64 lg:w-80 xl:w-96 flex-none order-first md:order-none md:border-l pt-3! md:pt-6!"><dl class="flex items-baseline justify-between"><dt class="text-sm text-gray-500">Downloads last month</dt><div class="mx-4 flex-1 border-b border-dotted"></div><dd class="font-semibold">9,238</dd></dl> <div class="divider-column-vertical"></div> <div class="grid grid-cols-2 gap-x-2 md:flex md:flex-row md:flex-wrap"><div class="SVELTE_HYDRATER contents" data-target="DatasetAndModelActionsDropdown" data-props="{"classNames":"order-last","discussionsDisabled":false,"discussionsLocked":false,"repo":{"type":"dataset","name":"xcodemind/webcode2m_purified"},"canWrite":false,"canDisable":false,"repoIsPrivate":false,"repoIsGated":false,"repoIsDisabled":false,"repoIsAdminFlaggedNFAA":false,"repoHasBlockedOids":false}"><div class="order-last"><div class="relative "> <button class="btn px-1.5 py-1.5 " type="button"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="p-0.5" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><circle cx="16" cy="7" r="3" fill="currentColor"></circle><circle cx="16" cy="16" r="3" fill="currentColor"></circle><circle cx="16" cy="25" r="3" fill="currentColor"></circle></svg> </button> </div></div> </div> <div class="SVELTE_HYDRATER contents" data-target="DatasetLibrary" data-props="{"classNames":"md:w-full xl:w-auto xl:flex-none","libraries":[{"language":"python","library":"datasets","function":"load_dataset","loading_codes":[{"config_name":"default","arguments":{},"code":"from datasets import load_dataset\n\n# Login using e.g. `huggingface-cli login` to access this dataset\nds = load_dataset(\"xcodemind/webcode2m_purified\")"}]},{"language":"python","library":"dask","function":"dd.read_parquet","loading_codes":[{"config_name":"default","arguments":{"splits":{"train":"data/*.parquet"}},"code":"import dask.dataframe as dd\n\n# Login using e.g. `huggingface-cli login` to access this dataset\ndf = dd.read_parquet(\"hf://datasets/xcodemind/webcode2m_purified/data/*.parquet\")"}]},{"language":"python","library":"mlcroissant","function":"Dataset","loading_codes":[{"config_name":"default","arguments":{"record_set":"default","partial":false},"code":"import requests\nfrom huggingface_hub.file_download import build_hf_headers\nfrom mlcroissant import Dataset\n\n# Login using e.g. `huggingface-cli login` to access this dataset\nheaders = build_hf_headers() # handles authentication\njsonld = requests.get(\"https://huggingface.co/api/datasets/xcodemind/webcode2m_purified/croissant\", headers=headers).json()\nds = Dataset(jsonld=jsonld)\nrecords = ds.records(\"default\")"}]},{"language":"python","library":"polars","function":"pl.read_parquet","loading_codes":[{"config_name":"default","arguments":{"splits":{"train":"data/*.parquet"}},"code":"import polars as pl\n\n# Login using e.g. `huggingface-cli login` to access this dataset\ndf = pl.read_parquet('hf://datasets/xcodemind/webcode2m_purified/data/*.parquet')\n"}]}]}"><div class="relative md:w-full xl:w-auto xl:flex-none"> <button class="from-gray-800! to-black! max-xl:mb-2 text-white! gap-1! border-gray-800! dark:border-gray-900! btn w-full cursor-pointer text-sm" type="button"> <svg class="mr-1.5 mr-0.5! " xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32" style="transform: rotate(360deg);"><path d="M31 16l-7 7l-1.41-1.41L28.17 16l-5.58-5.59L24 9l7 7z" fill="currentColor"></path><path d="M1 16l7-7l1.41 1.41L3.83 16l5.58 5.59L8 23l-7-7z" fill="currentColor"></path><path d="M12.419 25.484L17.639 6l1.932.518L14.35 26z" fill="currentColor"></path></svg> Use this dataset <svg class="-mr-1 text-gray-500" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path d="M16.293 9.293L12 13.586L7.707 9.293l-1.414 1.414L12 16.414l5.707-5.707z" fill="currentColor"></path></svg></button> </div> </div> </div> <div class="divider-column-vertical"></div> <div class="flex flex-col flex-wrap xl:flex-row"><a class="bg-linear-to-r dark:via-none group mb-1.5 flex max-w-full flex-col overflow-hidden rounded-lg border border-gray-100 from-white via-white to-white px-2 py-1 hover:from-gray-50 dark:from-gray-900 dark:to-gray-925 dark:hover:to-gray-900 md:mr-1.5 pointer-events-none" rel="nofollow" target="_blank"><div class="truncate text-xs text-gray-400">Size of downloaded dataset files:</div> <div class="truncate text-sm "> <!-- HTML_TAG_START -->932 GB<!-- HTML_TAG_END --></div></a><a class="bg-linear-to-r dark:via-none group mb-1.5 flex max-w-full flex-col overflow-hidden rounded-lg border border-gray-100 from-white via-white to-white px-2 py-1 hover:from-gray-50 dark:from-gray-900 dark:to-gray-925 dark:hover:to-gray-900 md:mr-1.5 " href="/datasets/xcodemind/webcode2m_purified/tree/refs%2Fconvert%2Fparquet/" rel="nofollow" target="_blank"><div class="truncate text-xs text-gray-400">Size of the auto-converted Parquet files:</div> <div class="truncate text-sm group-hover:underline"> <!-- HTML_TAG_START -->932 GB<!-- HTML_TAG_END --></div></a><a class="bg-linear-to-r dark:via-none group mb-1.5 flex max-w-full flex-col overflow-hidden rounded-lg border border-gray-100 from-white via-white to-white px-2 py-1 hover:from-gray-50 dark:from-gray-900 dark:to-gray-925 dark:hover:to-gray-900 md:mr-1.5 pointer-events-none" rel="nofollow" target="_blank"><div class="truncate text-xs text-gray-400">Number of rows:</div> <div class="truncate text-sm "> <!-- HTML_TAG_START -->2,562,069<!-- HTML_TAG_END --></div></a></div> <div class="divider-column-vertical md:hidden"></div></section></div></main> <footer class="b-12 mb-2 flex border-t border-gray-100 md:h-14"><nav class="container relative flex flex-col justify-between space-y-2 py-6 text-gray-500 max-md:*:self-start md:flex-row md:items-center md:space-y-0 md:py-0 md:text-sm"><div class="SVELTE_HYDRATER contents" data-target="ThemeSwitcher" data-props="{"theme":"system","isLoggedIn":false,"menuClassNames":"md:-top-24","classNames":"max-md:mb-5 max-md:*:self-start"}"> <div class="relative inline-block max-md:mb-5 max-md:*:self-start"> <button class="rounded-full border border-gray-100 pl-2 py-1 pr-2.5 flex items-center text-sm text-gray-500 bg-white hover:bg-purple-50 hover:border-purple-200 dark:hover:bg-gray-800 dark:hover:border-gray-950 dark:border-gray-800 " type="button"> <svg class="mr-1.5 text-gray-500" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" fill="currentColor" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><path d="M29 25H3a1 1 0 1 0 0 2h26a1 1 0 1 0 0-2Z" fill="currentColor"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M6 22.5h20a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v13.5a2 2 0 0 0 2 2ZM7 7a1 1 0 0 0-1 1v11a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1H7Z" fill="currentColor"></path><path d="M6 8a1 1 0 0 1 1-1h18a1 1 0 0 1 1 1v11a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V8Z" fill="currentColor" fill-opacity=".4"></path><path d="M29 25H3a1 1 0 1 0 0 2h26a1 1 0 1 0 0-2Z" fill="currentColor"></path></svg> System theme </button> </div></div> <div class="font-semibold text-black md:hidden">Company</div> <a class="hover:underline" href="/terms-of-service">TOS</a> <a class="hover:underline" href="/privacy">Privacy</a> <a class="hover:underline" href="/huggingface">About</a> <a class="hover:underline" href="https://apply.workable.com/huggingface/">Jobs</a> <a href="/" class="max-md:mb-4! max-md:mt-8! group flex-none max-md:order-last"><svg class="h-7 w-7 transition-transform group-hover:-translate-y-px" viewBox="0 0 95 88" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M47.2119 76.5C66.4037 76.5 81.9619 60.9419 81.9619 41.75C81.9619 22.5581 66.4037 7 47.2119 7C28.02 7 12.4619 22.5581 12.4619 41.75C12.4619 60.9419 28.02 76.5 47.2119 76.5Z" fill="#FFD21E"></path><path d="M81.9619 41.75C81.9619 22.5581 66.4037 7 47.2119 7C28.02 7 12.4619 22.5581 12.4619 41.75C12.4619 60.9419 28.02 76.5 47.2119 76.5C66.4037 76.5 81.9619 60.9419 81.9619 41.75ZM8.46185 41.75C8.46185 20.349 25.8108 3 47.2119 3C68.6129 3 85.9619 20.349 85.9619 41.75C85.9619 63.151 68.6129 80.5 47.2119 80.5C25.8108 80.5 8.46185 63.151 8.46185 41.75Z" fill="#FF9D0B"></path><path d="M58.5024 32.2915C59.7768 32.7415 60.2839 35.3615 61.5713 34.6769C64.0095 33.3805 64.9351 30.353 63.6387 27.9148C62.3423 25.4767 59.3148 24.5511 56.8766 25.8475C54.4384 27.1439 53.5128 30.1714 54.8092 32.6096C55.4211 33.7604 57.3632 31.8892 58.5024 32.2915Z" fill="#3A3B45"></path><path d="M34.9454 32.2915C33.671 32.7415 33.164 35.3615 31.8766 34.6769C29.4384 33.3805 28.5128 30.353 29.8092 27.9148C31.1056 25.4767 34.1331 24.5511 36.5713 25.8475C39.0095 27.1439 39.9351 30.1714 38.6387 32.6096C38.0268 33.7604 36.0846 31.8892 34.9454 32.2915Z" fill="#3A3B45"></path><path d="M46.9619 56.289C56.7903 56.289 59.9619 47.5261 59.9619 43.0262C59.9619 40.6875 58.3898 41.4236 55.8718 42.6702C53.5449 43.8222 50.4102 45.4101 46.9619 45.4101C39.7822 45.4101 33.9619 38.5263 33.9619 43.0262C33.9619 47.5261 37.1334 56.289 46.9619 56.289Z" fill="#3A3B45"></path><mask id="mask0" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="33" y="41" width="27" height="16"><path d="M46.9619 56.289C56.7903 56.289 59.9619 47.5261 59.9619 43.0262C59.9619 40.6875 58.3898 41.4236 55.8718 42.6702C53.5449 43.8222 50.4102 45.4101 46.9619 45.4101C39.7822 45.4101 33.9619 38.5263 33.9619 43.0262C33.9619 47.5261 37.1334 56.289 46.9619 56.289Z" fill="white"></path></mask><g mask="url(#mask0)"><path d="M47.2119 66.5C52.0018 66.5 55.8848 62.617 55.8848 57.8271C55.8848 54.0962 53.5291 50.9156 50.224 49.6915C50.1023 49.6464 49.9794 49.604 49.8553 49.5643C49.0219 49.2979 48.1337 52.1623 47.2119 52.1623C46.3506 52.1623 45.5186 49.2797 44.7332 49.5135C41.151 50.5799 38.5389 53.8984 38.5389 57.8271C38.5389 62.617 42.4219 66.5 47.2119 66.5Z" fill="#F94040"></path></g><path d="M70.7119 37C72.5068 37 73.9619 35.5449 73.9619 33.75C73.9619 31.9551 72.5068 30.5 70.7119 30.5C68.9169 30.5 67.4619 31.9551 67.4619 33.75C67.4619 35.5449 68.9169 37 70.7119 37Z" fill="#FF9D0B"></path><path d="M24.2119 37C26.0068 37 27.4619 35.5449 27.4619 33.75C27.4619 31.9551 26.0068 30.5 24.2119 30.5C22.4169 30.5 20.9619 31.9551 20.9619 33.75C20.9619 35.5449 22.4169 37 24.2119 37Z" fill="#FF9D0B"></path><path class="origin-bottom-right transition-transform group-hover:-rotate-6" d="M17.5238 48C15.9048 48 14.4578 48.665 13.4488 49.871C12.8248 50.618 12.1728 51.822 12.1198 53.625C11.4408 53.43 10.7878 53.321 10.1778 53.321C8.6278 53.321 7.2278 53.915 6.2378 54.994C4.9658 56.379 4.4008 58.081 4.6468 59.784C4.7638 60.595 5.0348 61.322 5.4398 61.995C4.5858 62.686 3.9568 63.648 3.6528 64.805C3.4148 65.712 3.1708 67.601 4.4448 69.547C4.3638 69.674 4.2878 69.806 4.2168 69.941C3.4508 71.395 3.4018 73.038 4.0778 74.568C5.1028 76.887 7.6498 78.714 12.5958 80.675C15.6728 81.895 18.4878 82.675 18.5128 82.682C22.5808 83.737 26.2598 84.273 29.4448 84.273C35.2988 84.273 39.4898 82.48 41.9018 78.944C45.7838 73.25 45.2288 68.042 40.2058 63.022C37.4258 60.244 35.5778 56.148 35.1928 55.249C34.4168 52.587 32.3648 49.628 28.9538 49.628H28.9528C28.6658 49.628 28.3758 49.651 28.0898 49.696C26.5958 49.931 25.2898 50.791 24.3568 52.085C23.3498 50.833 22.3718 49.837 21.4868 49.275C20.1528 48.429 18.8198 48 17.5238 48ZM17.5238 52C18.0338 52 18.6568 52.217 19.3438 52.653C21.4768 54.006 25.5928 61.081 27.0998 63.833C27.6048 64.755 28.4678 65.145 29.2448 65.145C30.7868 65.145 31.9908 63.612 29.3858 61.664C25.4688 58.733 26.8428 53.942 28.7128 53.647C28.7948 53.634 28.8758 53.628 28.9538 53.628C30.6538 53.628 31.4038 56.558 31.4038 56.558C31.4038 56.558 33.6018 62.078 37.3778 65.851C41.1538 69.625 41.3488 72.654 38.5968 76.69C36.7198 79.442 33.1268 80.273 29.4448 80.273C25.6258 80.273 21.7108 79.379 19.5168 78.81C19.4088 78.782 6.0658 75.013 7.7558 71.805C8.0398 71.266 8.5078 71.05 9.0968 71.05C11.4768 71.05 15.8058 74.592 17.6668 74.592C18.0828 74.592 18.3758 74.415 18.4958 73.983C19.2888 71.138 6.4388 69.942 7.5218 65.821C7.7128 65.092 8.2308 64.796 8.9588 64.797C12.1038 64.797 19.1598 70.328 20.6388 70.328C20.7518 70.328 20.8328 70.295 20.8768 70.225C21.6178 69.029 21.2118 68.194 15.9888 65.033C10.7658 61.871 7.0998 59.969 9.1848 57.699C9.4248 57.437 9.7648 57.321 10.1778 57.321C13.3488 57.322 20.8408 64.14 20.8408 64.14C20.8408 64.14 22.8628 66.243 24.0858 66.243C24.3668 66.243 24.6058 66.132 24.7678 65.858C25.6348 64.396 16.7148 57.636 16.2118 54.847C15.8708 52.957 16.4508 52 17.5238 52Z" fill="#FF9D0B"></path><path class="origin-bottom-right transition-transform group-hover:-rotate-6" d="M38.5967 76.6898C41.3487 72.6538 41.1537 69.6248 37.3777 65.8508C33.6017 62.0778 31.4037 56.5578 31.4037 56.5578C31.4037 56.5578 30.5827 53.3518 28.7127 53.6468C26.8427 53.9418 25.4697 58.7328 29.3867 61.6638C33.3037 64.5938 28.6067 66.5848 27.0997 63.8328C25.5927 61.0808 21.4777 54.0058 19.3437 52.6528C17.2107 51.2998 15.7087 52.0578 16.2117 54.8468C16.7147 57.6358 25.6357 64.3958 24.7677 65.8588C23.8997 67.3208 20.8407 64.1398 20.8407 64.1398C20.8407 64.1398 11.2687 55.4288 9.18465 57.6988C7.10065 59.9688 10.7657 61.8708 15.9887 65.0328C21.2127 68.1938 21.6177 69.0288 20.8767 70.2248C20.1347 71.4208 8.60465 61.6998 7.52165 65.8208C6.43965 69.9418 19.2887 71.1378 18.4957 73.9828C17.7027 76.8288 9.44465 68.5978 7.75565 71.8048C6.06565 75.0128 19.4087 78.7818 19.5167 78.8098C23.8267 79.9278 34.7727 82.2968 38.5967 76.6898Z" fill="#FFD21E"></path><path class="origin-bottom-left transition-transform group-hover:rotate-6" d="M77.3999 48C79.0189 48 80.4659 48.665 81.4749 49.871C82.0989 50.618 82.7509 51.822 82.8039 53.625C83.4829 53.43 84.1359 53.321 84.7459 53.321C86.2959 53.321 87.6959 53.915 88.6859 54.994C89.9579 56.379 90.5229 58.081 90.2769 59.784C90.1599 60.595 89.8889 61.322 89.4839 61.995C90.3379 62.686 90.9669 63.648 91.2709 64.805C91.5089 65.712 91.7529 67.601 90.4789 69.547C90.5599 69.674 90.6359 69.806 90.7069 69.941C91.4729 71.395 91.5219 73.038 90.8459 74.568C89.8209 76.887 87.2739 78.714 82.3279 80.675C79.2509 81.895 76.4359 82.675 76.4109 82.682C72.3429 83.737 68.6639 84.273 65.4789 84.273C59.6249 84.273 55.4339 82.48 53.0219 78.944C49.1399 73.25 49.6949 68.042 54.7179 63.022C57.4979 60.244 59.3459 56.148 59.7309 55.249C60.5069 52.587 62.5589 49.628 65.9699 49.628H65.9709C66.2579 49.628 66.5479 49.651 66.8339 49.696C68.3279 49.931 69.6339 50.791 70.5669 52.085C71.5739 50.833 72.5519 49.837 73.4369 49.275C74.7709 48.429 76.1039 48 77.3999 48ZM77.3999 52C76.8899 52 76.2669 52.217 75.5799 52.653C73.4469 54.006 69.3309 61.081 67.8239 63.833C67.3189 64.755 66.4559 65.145 65.6789 65.145C64.1369 65.145 62.9329 63.612 65.5379 61.664C69.4549 58.733 68.0809 53.942 66.2109 53.647C66.1289 53.634 66.0479 53.628 65.9699 53.628C64.2699 53.628 63.5199 56.558 63.5199 56.558C63.5199 56.558 61.3219 62.078 57.5459 65.851C53.7699 69.625 53.5749 72.654 56.3269 76.69C58.2039 79.442 61.7969 80.273 65.4789 80.273C69.2979 80.273 73.2129 79.379 75.4069 78.81C75.5149 78.782 88.8579 75.013 87.1679 71.805C86.8839 71.266 86.4159 71.05 85.8269 71.05C83.4469 71.05 79.1179 74.592 77.2569 74.592C76.8409 74.592 76.5479 74.415 76.4279 73.983C75.6349 71.138 88.4849 69.942 87.4019 65.821C87.2109 65.092 86.6929 64.796 85.9649 64.797C82.8199 64.797 75.7639 70.328 74.2849 70.328C74.1719 70.328 74.0909 70.295 74.0469 70.225C73.3059 69.029 73.7119 68.194 78.9349 65.033C84.1579 61.871 87.8239 59.969 85.7389 57.699C85.4989 57.437 85.1589 57.321 84.7459 57.321C81.5749 57.322 74.0829 64.14 74.0829 64.14C74.0829 64.14 72.0609 66.243 70.8379 66.243C70.5569 66.243 70.3179 66.132 70.1559 65.858C69.2889 64.396 78.2089 57.636 78.7119 54.847C79.0529 52.957 78.4729 52 77.3999 52Z" fill="#FF9D0B"></path><path class="origin-bottom-left transition-transform group-hover:rotate-6" d="M56.3271 76.6898C53.5751 72.6538 53.7701 69.6248 57.5461 65.8508C61.3221 62.0778 63.5201 56.5578 63.5201 56.5578C63.5201 56.5578 64.3411 53.3518 66.2111 53.6468C68.0811 53.9418 69.4541 58.7328 65.5371 61.6638C61.6201 64.5938 66.3171 66.5848 67.8241 63.8328C69.3311 61.0808 73.4461 54.0058 75.5801 52.6528C77.7131 51.2998 79.2151 52.0578 78.7121 54.8468C78.2091 57.6358 69.2881 64.3958 70.1561 65.8588C71.0241 67.3208 74.0831 64.1398 74.0831 64.1398C74.0831 64.1398 83.6551 55.4288 85.7391 57.6988C87.8231 59.9688 84.1581 61.8708 78.9351 65.0328C73.7111 68.1938 73.3061 69.0288 74.0471 70.2248C74.7891 71.4208 86.3191 61.6998 87.4021 65.8208C88.4841 69.9418 75.6351 71.1378 76.4281 73.9828C77.2211 76.8288 85.4791 68.5978 87.1681 71.8048C88.8581 75.0128 75.5151 78.7818 75.4071 78.8098C71.0971 79.9278 60.1511 82.2968 56.3271 76.6898Z" fill="#FFD21E"></path></svg></a> <div class="max-md:mt-8! font-semibold text-black md:hidden">Website</div> <a class="hover:underline" href="/models">Models</a> <a class="hover:underline" href="/datasets">Datasets</a> <a href="https://fast360.xyz" target="_blank" rel="noopener noreferrer">OCR模型免费转Markdown</a> <a class="hover:underline" href="/pricing">Pricing</a> <a href="/" rel="noopener noreferrer">模型下载攻略</a></nav></footer></div> <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script> import("\/front\/build\/kube-34541c0\/index.js"); window.moonSha = "kube-34541c0\/"; window.__hf_deferred = {}; </script> <!-- Stripe --> <script> if (["hf.co", "huggingface.co"].includes(window.location.hostname)) { const script = document.createElement("script"); script.src = "https://js.stripe.com/v3/"; script.async = true; document.head.appendChild(script); } </script> </body> </html>