{ // 获取包含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 !== 'PDF TO Markdown' && linkText !== 'PDF TO Markdown' ) { link.textContent = 'PDF TO 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 !== 'Voice Cloning' ) { link.textContent = 'Voice Cloning'; link.href = 'https://vibevoice.info/'; 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, 'PDF TO 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 }); }); } })(); , "},"instruction":{"kind":"string","value":"Enter the password \"1o3G3\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"string","value":"1o3g3"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1201,"cells":{"history_episodes":{"kind":"string","value":"{click,11,} Enter the password \"1o3G3\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"1o3G3\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"string","value":"1o3g3"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1202,"cells":{"history_episodes":{"kind":"string","value":"{click,9,} Enter the password \"1o3G3\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"1o3G3\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"string","value":"1o3g3"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1203,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter the password \"x0b\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"x0b\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"x0b"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1204,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"x0b\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"x0b\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"x0b"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1205,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter the password \"x0b\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"x0b\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"x0b"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1206,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"x0b\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"x0b\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"x0b"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1207,"cells":{"history_episodes":{"kind":"string","value":" click submit

"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1208,"cells":{"history_episodes":{"kind":"string","value":"{click,8,} Enter the password \"nBVKW\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"nBVKW\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"string","value":"nbvkw"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1209,"cells":{"history_episodes":{"kind":"string","value":"{click,11,} Enter the password \"nBVKW\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"nBVKW\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"string","value":"nbvkw"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1210,"cells":{"history_episodes":{"kind":"string","value":"{click,8,} Enter the password \"nBVKW\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"nBVKW\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"string","value":"nbvkw"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1211,"cells":{"history_episodes":{"kind":"string","value":"{click,11,} Enter the password \"nBVKW\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"nBVKW\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"string","value":"nbvkw"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1212,"cells":{"history_episodes":{"kind":"string","value":" click submit

"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1213,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter the password \"caqoY\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"caqoY\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"caqoy"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1214,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"caqoY\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"caqoY\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"string","value":"caqoy"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1215,"cells":{"history_episodes":{"kind":"string","value":" click submit

"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1216,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter the password \"caqoY\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"caqoY\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"caqoy"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1217,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"caqoY\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"caqoY\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"string","value":"caqoy"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1218,"cells":{"history_episodes":{"kind":"string","value":"{click,9,} Enter the password \"uXA\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"uXA\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"string","value":"uxa"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1219,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"uXA\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"uXA\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"uxa"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1220,"cells":{"history_episodes":{"kind":"string","value":"{click,9,} Enter the password \"uXA\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"uXA\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"string","value":"uxa"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1221,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"uXA\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"uXA\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"uxa"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1222,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter the password \"azdJ\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"azdJ\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"azdj"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1223,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"azdJ\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"azdJ\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"azdj"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1224,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter the password \"azdJ\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"azdJ\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"azdj"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1225,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"azdJ\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"azdJ\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"azdj"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1226,"cells":{"history_episodes":{"kind":"string","value":"{click,7,} Enter the password \"tAt7\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"tAt7\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"string","value":"tat7"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1227,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"tAt7\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"tAt7\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"tat7"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1228,"cells":{"history_episodes":{"kind":"string","value":"{click,7,} Enter the password \"tAt7\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"tAt7\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"string","value":"tat7"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1229,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"tAt7\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"tAt7\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"tat7"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1230,"cells":{"history_episodes":{"kind":"string","value":"{click,11,} Enter the password \"8BQ0\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"8BQ0\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"string","value":"8bq0"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1231,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter the password \"8BQ0\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"8BQ0\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"8bq0"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1232,"cells":{"history_episodes":{"kind":"string","value":"{click,11,} Enter the password \"8BQ0\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"8BQ0\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"string","value":"8bq0"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1233,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter the password \"8BQ0\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"8BQ0\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"8bq0"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1234,"cells":{"history_episodes":{"kind":"string","value":"{click,11,} Enter the password \"MU\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"MU\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"string","value":"mu"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1235,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"MU\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"MU\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"string","value":"mu"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1236,"cells":{"history_episodes":{"kind":"string","value":"{click,11,} Enter the password \"MU\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"MU\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"string","value":"mu"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1237,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"MU\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"MU\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"string","value":"mu"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1238,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter the password \"5a3G\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"5a3G\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"5a3g"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1239,"cells":{"history_episodes":{"kind":"string","value":"{click,10,} Enter the password \"5a3G\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"5a3G\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"5a3g"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1240,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter the password \"5a3G\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"5a3G\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"5a3g"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1241,"cells":{"history_episodes":{"kind":"string","value":"{click,10,} Enter the password \"5a3G\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"5a3G\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"5a3g"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1242,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter the password \"Lj6\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"Lj6\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"lj6"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1243,"cells":{"history_episodes":{"kind":"string","value":"{click,11,} Enter the password \"Lj6\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"Lj6\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"string","value":"lj6"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1244,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter the password \"Lj6\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"Lj6\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"lj6"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1245,"cells":{"history_episodes":{"kind":"string","value":"{click,11,} Enter the password \"Lj6\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"Lj6\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"string","value":"lj6"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1246,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter the password \"wsoHm\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"wsoHm\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"wsohm"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1247,"cells":{"history_episodes":{"kind":"string","value":"{click,10,} Enter the password \"wsoHm\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"wsoHm\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"wsohm"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1248,"cells":{"history_episodes":{"kind":"string","value":" click submit

"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1249,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter the password \"wsoHm\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"wsoHm\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"wsohm"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1250,"cells":{"history_episodes":{"kind":"string","value":"{click,10,} Enter the password \"wsoHm\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"wsoHm\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"wsohm"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1251,"cells":{"history_episodes":{"kind":"string","value":"{click,11,} Enter the password \"Ppbk\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"Ppbk\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"string","value":"ppbk"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1252,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"Ppbk\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"Ppbk\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"string","value":"ppbk"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1253,"cells":{"history_episodes":{"kind":"string","value":"{click,11,} Enter the password \"Ppbk\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"Ppbk\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"string","value":"ppbk"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1254,"cells":{"history_episodes":{"kind":"string","value":" Enter the password \"Ppbk\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"Ppbk\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"string","value":"ppbk"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1255,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter the password \"bU6c\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"bU6c\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"bu6c"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1256,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter the password \"bU6c\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"bU6c\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"bu6c"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1257,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter the password \"bU6c\" into the first text field

, "},"instruction":{"kind":"string","value":"Enter the password \"bU6c\" into the first text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"bu6c"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1258,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter the password \"bU6c\" into the second text field

, "},"instruction":{"kind":"string","value":"Enter the password \"bU6c\" into the second text field"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"bu6c"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1259,"cells":{"history_episodes":{"kind":"string","value":" Select Yy
, "},"instruction":{"kind":"string","value":"Select Yy"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1260,"cells":{"history_episodes":{"kind":"string","value":" Select 1dgXWGv
, "},"instruction":{"kind":"string","value":"Select 1dgXWGv"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1261,"cells":{"history_episodes":{"kind":"string","value":" Select uMva5lD
, "},"instruction":{"kind":"string","value":"Select uMva5lD"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1262,"cells":{"history_episodes":{"kind":"string","value":" Select Ub8Y8mZ
, "},"instruction":{"kind":"string","value":"Select Ub8Y8mZ"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1263,"cells":{"history_episodes":{"kind":"string","value":" Select WgEIk
, "},"instruction":{"kind":"string","value":"Select WgEIk"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1264,"cells":{"history_episodes":{"kind":"string","value":" Select xhgObfk






, "},"instruction":{"kind":"string","value":"Select xhgObfk"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1265,"cells":{"history_episodes":{"kind":"string","value":" Select UeeZO
, "},"instruction":{"kind":"string","value":"Select UeeZO"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1266,"cells":{"history_episodes":{"kind":"string","value":" Select XFMz
, "},"instruction":{"kind":"string","value":"Select XFMz"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1267,"cells":{"history_episodes":{"kind":"string","value":" Select 3boJ
, "},"instruction":{"kind":"string","value":"Select 3boJ"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1268,"cells":{"history_episodes":{"kind":"string","value":" Select vf
, "},"instruction":{"kind":"string","value":"Select vf"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1269,"cells":{"history_episodes":{"kind":"string","value":" Select LDVi3d
, "},"instruction":{"kind":"string","value":"Select LDVi3d"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1270,"cells":{"history_episodes":{"kind":"string","value":" Select 9zhKyJw
, "},"instruction":{"kind":"string","value":"Select 9zhKyJw"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1271,"cells":{"history_episodes":{"kind":"string","value":" Select iod
, "},"instruction":{"kind":"string","value":"Select iod"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1272,"cells":{"history_episodes":{"kind":"string","value":" Select xK
, "},"instruction":{"kind":"string","value":"Select xK"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":16,"string":"16"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1273,"cells":{"history_episodes":{"kind":"string","value":" Select 5anp0
, "},"instruction":{"kind":"string","value":"Select 5anp0"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1274,"cells":{"history_episodes":{"kind":"string","value":" Select JQ
, "},"instruction":{"kind":"string","value":"Select JQ"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1275,"cells":{"history_episodes":{"kind":"string","value":" Select C8vEe
, "},"instruction":{"kind":"string","value":"Select C8vEe"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1276,"cells":{"history_episodes":{"kind":"string","value":" Select DOf
, "},"instruction":{"kind":"string","value":"Select DOf"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1277,"cells":{"history_episodes":{"kind":"string","value":" Select jh1Kun
, "},"instruction":{"kind":"string","value":"Select jh1Kun"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1278,"cells":{"history_episodes":{"kind":"string","value":" Select fjE
, "},"instruction":{"kind":"string","value":"Select fjE"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1279,"cells":{"history_episodes":{"kind":"string","value":" Select PFGe
, "},"instruction":{"kind":"string","value":"Select PFGe"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1280,"cells":{"history_episodes":{"kind":"string","value":" Select N3C
, "},"instruction":{"kind":"string","value":"Select N3C"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1281,"cells":{"history_episodes":{"kind":"string","value":" Select TBQbkuE
, "},"instruction":{"kind":"string","value":"Select TBQbkuE"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1282,"cells":{"history_episodes":{"kind":"string","value":" Select hn4VUXK
, "},"instruction":{"kind":"string","value":"Select hn4VUXK"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1283,"cells":{"history_episodes":{"kind":"string","value":" Select Jh










, "},"instruction":{"kind":"string","value":"Select Jh"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1284,"cells":{"history_episodes":{"kind":"string","value":" Select nPPZ
, "},"instruction":{"kind":"string","value":"Select nPPZ"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":16,"string":"16"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1285,"cells":{"history_episodes":{"kind":"string","value":" Select U8s
, "},"instruction":{"kind":"string","value":"Select U8s"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1286,"cells":{"history_episodes":{"kind":"string","value":" Select ASp2ytx
, "},"instruction":{"kind":"string","value":"Select ASp2ytx"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1287,"cells":{"history_episodes":{"kind":"string","value":" Select 7Y9








, "},"instruction":{"kind":"string","value":"Select 7Y9"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1288,"cells":{"history_episodes":{"kind":"string","value":" Find the email by Sandra and forward that email to Dyane.
, "},"instruction":{"kind":"string","value":"Find the email by Sandra and forward that email to Dyane. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":1289,"cells":{"history_episodes":{"kind":"string","value":"{click,10,} Find the email by Sandra and forward that email to Dyane.
, "},"instruction":{"kind":"string","value":"Find the email by Sandra and forward that email to Dyane. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"dyane"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1290,"cells":{"history_episodes":{"kind":"string","value":" Find the email by Hattie and forward that email to Nerty.
, "},"instruction":{"kind":"string","value":"Find the email by Hattie and forward that email to Nerty. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":1291,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Find the email by Hattie and forward that email to Nerty.
, "},"instruction":{"kind":"string","value":"Find the email by Hattie and forward that email to Nerty. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"nerty"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":1292,"cells":{"history_episodes":{"kind":"string","value":"{click,4,}{keydown,4,nerty} Find the email by Hattie and forward that email to Nerty.
, "},"instruction":{"kind":"string","value":"Find the email by Hattie and forward that email to Nerty. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":1293,"cells":{"history_episodes":{"kind":"string","value":"{click,4,}{keydown,4,nerty}{click,4,} Find the email by Hattie and forward that email to Nerty.
, "},"instruction":{"kind":"string","value":"Find the email by Hattie and forward that email to Nerty. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"nerty"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1294,"cells":{"history_episodes":{"kind":"string","value":" Find the email by Aimil and forward that email to Lyssa.
, "},"instruction":{"kind":"string","value":"Find the email by Aimil and forward that email to Lyssa. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":50,"string":"50"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":1295,"cells":{"history_episodes":{"kind":"string","value":"{click,50,} Find the email by Aimil and forward that email to Lyssa.
, "},"instruction":{"kind":"string","value":"Find the email by Aimil and forward that email to Lyssa. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":50,"string":"50"},"keydown_text":{"kind":"string","value":"lyssa"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1296,"cells":{"history_episodes":{"kind":"string","value":" Find the email by Cassie and reply to them with the text \"Moon viscount 44th must.\".
, "},"instruction":{"kind":"string","value":"Find the email by Cassie and reply to them with the text \"Moon viscount 44th must.\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":1297,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Find the email by Cassie and reply to them with the text \"Moon viscount 44th must.\".
, "},"instruction":{"kind":"string","value":"Find the email by Cassie and reply to them with the text \"Moon viscount 44th must.\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"moon viscount 44th must."},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":1298,"cells":{"history_episodes":{"kind":"string","value":" Find the email by Cathryn and forward that email to Dari.
, "},"instruction":{"kind":"string","value":"Find the email by Cathryn and forward that email to Dari. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":1299,"cells":{"history_episodes":{"kind":"string","value":"{click,10,} Find the email by Cathryn and forward that email to Dari.
, "},"instruction":{"kind":"string","value":"Find the email by Cathryn and forward that email to Dari. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"dari"},"subtask_completion":{"kind":"string","value":"stop"}}}],"truncated":false,"partial":false},"paginationData":{"pageIndex":12,"numItemsPerPage":100,"numTotalItems":40186,"offset":1200,"length":100}},"jwt":"eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sImlhdCI6MTc1ODIwMjUwNSwic3ViIjoiL2RhdGFzZXRzL0x1Y2FzVGhpbC9taW5pd29iX3BsdXNwbHVzX2hpZXJhcmNoaWNhbF90cmFpbmluZ19hY3Rpb25zX2RyYWluIiwiZXhwIjoxNzU4MjA2MTA1LCJpc3MiOiJodHRwczovL2h1Z2dpbmdmYWNlLmNvIn0.sYaQYQerLRgX2L6l5hIH6hhRMsHKnmZtEBYE4YTd4sMi8VdU3qRjOBk3N9Tt9e0RKueIcZsrLSDYiWUVZKKcBA","displayUrls":true},"discussionsStats":{"closed":0,"open":1,"total":1},"fullWidth":true,"hasGatedAccess":true,"hasFullAccess":true,"isEmbedded":false,"savedQueries":{"community":[],"user":[]}}">
history_episodes
stringlengths
196
8.32k
instruction
stringlengths
9
111
actions
stringclasses
2 values
refs
int64
1
473
keydown_text
stringlengths
1
72
subtask_completion
stringclasses
2 values
{click,9,} Enter the password "1o3G3" into the second text field <body ref="5"><form id="mturk_form" ref="4"><div id="wrap" ref="8"><div id="area" ref="3"><div id="form" ref="7"><p ref="12"><label ref="10" text="password"></label><input_password id="password" ref="11" value="1o3g3"></input_password></p><p ref="6"><label ref="1" text="verify password"></label><input_password id="verify" ref="9"></input_password></p><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></form></body>,
Enter the password "1o3G3" into the second text field
keydown
9
1o3g3
stop
{click,11,} Enter the password "1o3G3" into the first text field <body ref="5"><form id="mturk_form" ref="4"><div id="wrap" ref="8"><div id="area" ref="3"><div id="form" ref="7"><p ref="12"><label ref="10" text="password"></label><input_password id="password" ref="11"></input_password></p><p ref="6"><label ref="1" text="verify password"></label><input_password id="verify" ref="9"></input_password></p><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></form></body>,
Enter the password "1o3G3" into the first text field
keydown
11
1o3g3
stop
{click,9,} Enter the password "1o3G3" into the second text field <body ref="5"><form id="mturk_form" ref="4"><div id="wrap" ref="8"><div id="area" ref="3"><div id="form" ref="7"><p ref="12"><label ref="10" text="password"></label><input_password id="password" ref="11" value="1o3g3"></input_password></p><p ref="6"><label ref="1" text="verify password"></label><input_password id="verify" ref="9"></input_password></p><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></form></body>,
Enter the password "1o3G3" into the second text field
keydown
9
1o3g3
stop
{click,4,} Enter the password "x0b" into the first text field <body ref="6"><form id="mturk_form" ref="10"><div id="wrap" ref="12"><div id="area" ref="1"><div id="form" ref="7"><p ref="5"><label ref="2" text="password"></label><input_password id="password" ref="4"></input_password></p><p ref="8"><label ref="9" text="verify password"></label><input_password id="verify" ref="3"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></div></form></body>,
Enter the password "x0b" into the first text field
keydown
4
x0b
stop
Enter the password "x0b" into the second text field <body ref="6"><form id="mturk_form" ref="10"><div id="wrap" ref="12"><div id="area" ref="1"><div id="form" ref="7"><p ref="5"><label ref="2" text="password"></label><input_password id="password" ref="4" value="x0b"></input_password></p><p ref="8"><label ref="9" text="verify password"></label><input_password id="verify" ref="3"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></div></form></body>,
Enter the password "x0b" into the second text field
keydown
3
x0b
stop
{click,4,} Enter the password "x0b" into the first text field <body ref="6"><form id="mturk_form" ref="10"><div id="wrap" ref="12"><div id="area" ref="1"><div id="form" ref="7"><p ref="5"><label ref="2" text="password"></label><input_password id="password" ref="4"></input_password></p><p ref="8"><label ref="9" text="verify password"></label><input_password id="verify" ref="3"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></div></form></body>,
Enter the password "x0b" into the first text field
keydown
4
x0b
stop
Enter the password "x0b" into the second text field <body ref="6"><form id="mturk_form" ref="10"><div id="wrap" ref="12"><div id="area" ref="1"><div id="form" ref="7"><p ref="5"><label ref="2" text="password"></label><input_password id="password" ref="4" value="x0b"></input_password></p><p ref="8"><label ref="9" text="verify password"></label><input_password id="verify" ref="3"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></div></form></body>,
Enter the password "x0b" into the second text field
keydown
3
x0b
stop
click submit <body ref="6"><form id="mturk_form" ref="10"><div id="wrap" ref="12"><div id="area" ref="1"><div id="form" ref="7"><p ref="5"><label ref="2" text="password"></label><input_password id="password" ref="4" value="x0b"></input_password></p><p ref="8"><label ref="9" text="verify password"></label><input_password id="verify" ref="3" value="x0b"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></div></form></body>
click submit
click
11
null
stop
{click,8,} Enter the password "nBVKW" into the first text field <body ref="1"><form id="mturk_form" ref="2"><div id="wrap" ref="4"><div id="area" ref="10"><div id="form" ref="6"><p ref="9"><label ref="3" text="password"></label><input_password id="password" ref="8"></input_password></p><p ref="7"><label ref="12" text="verify password"></label><input_password id="verify" ref="11"></input_password></p><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>,
Enter the password "nBVKW" into the first text field
keydown
8
nbvkw
stop
{click,11,} Enter the password "nBVKW" into the second text field <body ref="1"><form id="mturk_form" ref="2"><div id="wrap" ref="4"><div id="area" ref="10"><div id="form" ref="6"><p ref="9"><label ref="3" text="password"></label><input_password id="password" ref="8" value="nbvkw"></input_password></p><p ref="7"><label ref="12" text="verify password"></label><input_password id="verify" ref="11"></input_password></p><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>,
Enter the password "nBVKW" into the second text field
keydown
11
nbvkw
stop
{click,8,} Enter the password "nBVKW" into the first text field <body ref="1"><form id="mturk_form" ref="2"><div id="wrap" ref="4"><div id="area" ref="10"><div id="form" ref="6"><p ref="9"><label ref="3" text="password"></label><input_password id="password" ref="8"></input_password></p><p ref="7"><label ref="12" text="verify password"></label><input_password id="verify" ref="11"></input_password></p><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>,
Enter the password "nBVKW" into the first text field
keydown
8
nbvkw
stop
{click,11,} Enter the password "nBVKW" into the second text field <body ref="1"><form id="mturk_form" ref="2"><div id="wrap" ref="4"><div id="area" ref="10"><div id="form" ref="6"><p ref="9"><label ref="3" text="password"></label><input_password id="password" ref="8" value="nbvkw"></input_password></p><p ref="7"><label ref="12" text="verify password"></label><input_password id="verify" ref="11"></input_password></p><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>,
Enter the password "nBVKW" into the second text field
keydown
11
nbvkw
stop
click submit <body ref="1"><form id="mturk_form" ref="2"><div id="wrap" ref="4"><div id="area" ref="10"><div id="form" ref="6"><p ref="9"><label ref="3" text="password"></label><input_password id="password" ref="8" value="nbvkw"></input_password></p><p ref="7"><label ref="12" text="verify password"></label><input_password id="verify" ref="11" value="nbvkw"></input_password></p><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>
click submit
click
5
null
stop
{click,1,} Enter the password "caqoY" into the first text field <body ref="5"><form id="mturk_form" ref="7"><div id="wrap" ref="12"><div id="area" ref="4"><div id="form" ref="3"><p ref="2"><label ref="10" text="password"></label><input_password id="password" ref="1"></input_password></p><p ref="6"><label ref="11" text="verify password"></label><input_password id="verify" ref="9"></input_password></p><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></div></form></body>,
Enter the password "caqoY" into the first text field
keydown
1
caqoy
stop
Enter the password "caqoY" into the second text field <body ref="5"><form id="mturk_form" ref="7"><div id="wrap" ref="12"><div id="area" ref="4"><div id="form" ref="3"><p ref="2"><label ref="10" text="password"></label><input_password id="password" ref="1" value="caqoy"></input_password></p><p ref="6"><label ref="11" text="verify password"></label><input_password id="verify" ref="9"></input_password></p><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></div></form></body>,
Enter the password "caqoY" into the second text field
keydown
9
caqoy
stop
click submit <body ref="5"><form id="mturk_form" ref="7"><div id="wrap" ref="12"><div id="area" ref="4"><div id="form" ref="3"><p ref="2"><label ref="10" text="password"></label><input_password id="password" ref="1" value="caqoy"></input_password></p><p ref="6"><label ref="11" text="verify password"></label><input_password id="verify" ref="9" value="caqoy"></input_password></p><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></div></form></body>
click submit
click
8
null
stop
{click,1,} Enter the password "caqoY" into the first text field <body ref="5"><form id="mturk_form" ref="7"><div id="wrap" ref="12"><div id="area" ref="4"><div id="form" ref="3"><p ref="2"><label ref="10" text="password"></label><input_password id="password" ref="1"></input_password></p><p ref="6"><label ref="11" text="verify password"></label><input_password id="verify" ref="9"></input_password></p><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></div></form></body>,
Enter the password "caqoY" into the first text field
keydown
1
caqoy
stop
Enter the password "caqoY" into the second text field <body ref="5"><form id="mturk_form" ref="7"><div id="wrap" ref="12"><div id="area" ref="4"><div id="form" ref="3"><p ref="2"><label ref="10" text="password"></label><input_password id="password" ref="1" value="caqoy"></input_password></p><p ref="6"><label ref="11" text="verify password"></label><input_password id="verify" ref="9"></input_password></p><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></div></form></body>,
Enter the password "caqoY" into the second text field
keydown
9
caqoy
stop
{click,9,} Enter the password "uXA" into the first text field <body ref="1"><form id="mturk_form" ref="8"><div id="wrap" ref="5"><div id="area" ref="6"><div id="form" ref="3"><p ref="12"><label ref="11" text="password"></label><input_password id="password" ref="9"></input_password></p><p ref="7"><label ref="4" text="verify password"></label><input_password id="verify" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></form></body>,
Enter the password "uXA" into the first text field
keydown
9
uxa
stop
Enter the password "uXA" into the second text field <body ref="1"><form id="mturk_form" ref="8"><div id="wrap" ref="5"><div id="area" ref="6"><div id="form" ref="3"><p ref="12"><label ref="11" text="password"></label><input_password id="password" ref="9" value="uxa"></input_password></p><p ref="7"><label ref="4" text="verify password"></label><input_password id="verify" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></form></body>,
Enter the password "uXA" into the second text field
keydown
10
uxa
stop
{click,9,} Enter the password "uXA" into the first text field <body ref="1"><form id="mturk_form" ref="8"><div id="wrap" ref="5"><div id="area" ref="6"><div id="form" ref="3"><p ref="12"><label ref="11" text="password"></label><input_password id="password" ref="9"></input_password></p><p ref="7"><label ref="4" text="verify password"></label><input_password id="verify" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></form></body>,
Enter the password "uXA" into the first text field
keydown
9
uxa
stop
Enter the password "uXA" into the second text field <body ref="1"><form id="mturk_form" ref="8"><div id="wrap" ref="5"><div id="area" ref="6"><div id="form" ref="3"><p ref="12"><label ref="11" text="password"></label><input_password id="password" ref="9" value="uxa"></input_password></p><p ref="7"><label ref="4" text="verify password"></label><input_password id="verify" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></form></body>,
Enter the password "uXA" into the second text field
keydown
10
uxa
stop
{click,3,} Enter the password "azdJ" into the first text field <body ref="12"><form id="mturk_form" ref="4"><div id="wrap" ref="1"><div id="area" ref="11"><div id="form" ref="7"><p ref="2"><label ref="8" text="password"></label><input_password id="password" ref="3"></input_password></p><p ref="9"><label ref="6" text="verify password"></label><input_password id="verify" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>,
Enter the password "azdJ" into the first text field
keydown
3
azdj
stop
Enter the password "azdJ" into the second text field <body ref="12"><form id="mturk_form" ref="4"><div id="wrap" ref="1"><div id="area" ref="11"><div id="form" ref="7"><p ref="2"><label ref="8" text="password"></label><input_password id="password" ref="3" value="azdj"></input_password></p><p ref="9"><label ref="6" text="verify password"></label><input_password id="verify" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>,
Enter the password "azdJ" into the second text field
keydown
10
azdj
stop
{click,3,} Enter the password "azdJ" into the first text field <body ref="12"><form id="mturk_form" ref="4"><div id="wrap" ref="1"><div id="area" ref="11"><div id="form" ref="7"><p ref="2"><label ref="8" text="password"></label><input_password id="password" ref="3"></input_password></p><p ref="9"><label ref="6" text="verify password"></label><input_password id="verify" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>,
Enter the password "azdJ" into the first text field
keydown
3
azdj
stop
Enter the password "azdJ" into the second text field <body ref="12"><form id="mturk_form" ref="4"><div id="wrap" ref="1"><div id="area" ref="11"><div id="form" ref="7"><p ref="2"><label ref="8" text="password"></label><input_password id="password" ref="3" value="azdj"></input_password></p><p ref="9"><label ref="6" text="verify password"></label><input_password id="verify" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></form></body>,
Enter the password "azdJ" into the second text field
keydown
10
azdj
stop
{click,7,} Enter the password "tAt7" into the first text field <body ref="11"><form id="mturk_form" ref="2"><div id="wrap" ref="1"><div id="area" ref="6"><div id="form" ref="3"><p ref="5"><label ref="8" text="password"></label><input_password id="password" ref="7"></input_password></p><p ref="4"><label ref="12" text="verify password"></label><input_password id="verify" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></div></form></body>,
Enter the password "tAt7" into the first text field
keydown
7
tat7
stop
Enter the password "tAt7" into the second text field <body ref="11"><form id="mturk_form" ref="2"><div id="wrap" ref="1"><div id="area" ref="6"><div id="form" ref="3"><p ref="5"><label ref="8" text="password"></label><input_password id="password" ref="7" value="tat7"></input_password></p><p ref="4"><label ref="12" text="verify password"></label><input_password id="verify" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></div></form></body>,
Enter the password "tAt7" into the second text field
keydown
10
tat7
stop
{click,7,} Enter the password "tAt7" into the first text field <body ref="11"><form id="mturk_form" ref="2"><div id="wrap" ref="1"><div id="area" ref="6"><div id="form" ref="3"><p ref="5"><label ref="8" text="password"></label><input_password id="password" ref="7"></input_password></p><p ref="4"><label ref="12" text="verify password"></label><input_password id="verify" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></div></form></body>,
Enter the password "tAt7" into the first text field
keydown
7
tat7
stop
Enter the password "tAt7" into the second text field <body ref="11"><form id="mturk_form" ref="2"><div id="wrap" ref="1"><div id="area" ref="6"><div id="form" ref="3"><p ref="5"><label ref="8" text="password"></label><input_password id="password" ref="7" value="tat7"></input_password></p><p ref="4"><label ref="12" text="verify password"></label><input_password id="verify" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></div></form></body>,
Enter the password "tAt7" into the second text field
keydown
10
tat7
stop
{click,11,} Enter the password "8BQ0" into the first text field <body ref="5"><form id="mturk_form" ref="4"><div id="wrap" ref="7"><div id="area" ref="8"><div id="form" ref="10"><p ref="12"><label ref="1" text="password"></label><input_password id="password" ref="11"></input_password></p><p ref="9"><label ref="6" text="verify password"></label><input_password id="verify" ref="2"></input_password></p><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></form></body>,
Enter the password "8BQ0" into the first text field
keydown
11
8bq0
stop
{click,2,} Enter the password "8BQ0" into the second text field <body ref="5"><form id="mturk_form" ref="4"><div id="wrap" ref="7"><div id="area" ref="8"><div id="form" ref="10"><p ref="12"><label ref="1" text="password"></label><input_password id="password" ref="11" value="8bq0"></input_password></p><p ref="9"><label ref="6" text="verify password"></label><input_password id="verify" ref="2"></input_password></p><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></form></body>,
Enter the password "8BQ0" into the second text field
keydown
2
8bq0
stop
{click,11,} Enter the password "8BQ0" into the first text field <body ref="5"><form id="mturk_form" ref="4"><div id="wrap" ref="7"><div id="area" ref="8"><div id="form" ref="10"><p ref="12"><label ref="1" text="password"></label><input_password id="password" ref="11"></input_password></p><p ref="9"><label ref="6" text="verify password"></label><input_password id="verify" ref="2"></input_password></p><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></form></body>,
Enter the password "8BQ0" into the first text field
keydown
11
8bq0
stop
{click,2,} Enter the password "8BQ0" into the second text field <body ref="5"><form id="mturk_form" ref="4"><div id="wrap" ref="7"><div id="area" ref="8"><div id="form" ref="10"><p ref="12"><label ref="1" text="password"></label><input_password id="password" ref="11" value="8bq0"></input_password></p><p ref="9"><label ref="6" text="verify password"></label><input_password id="verify" ref="2"></input_password></p><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></form></body>,
Enter the password "8BQ0" into the second text field
keydown
2
8bq0
stop
{click,11,} Enter the password "MU" into the first text field <body ref="1"><form id="mturk_form" ref="9"><div id="wrap" ref="10"><div id="area" ref="5"><div id="form" ref="2"><p ref="3"><label ref="7" text="password"></label><input_password id="password" ref="11"></input_password></p><p ref="4"><label ref="8" text="verify password"></label><input_password id="verify" ref="12"></input_password></p><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></form></body>,
Enter the password "MU" into the first text field
keydown
11
mu
stop
Enter the password "MU" into the second text field <body ref="1"><form id="mturk_form" ref="9"><div id="wrap" ref="10"><div id="area" ref="5"><div id="form" ref="2"><p ref="3"><label ref="7" text="password"></label><input_password id="password" ref="11" value="mu"></input_password></p><p ref="4"><label ref="8" text="verify password"></label><input_password id="verify" ref="12"></input_password></p><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></form></body>,
Enter the password "MU" into the second text field
keydown
12
mu
stop
{click,11,} Enter the password "MU" into the first text field <body ref="1"><form id="mturk_form" ref="9"><div id="wrap" ref="10"><div id="area" ref="5"><div id="form" ref="2"><p ref="3"><label ref="7" text="password"></label><input_password id="password" ref="11"></input_password></p><p ref="4"><label ref="8" text="verify password"></label><input_password id="verify" ref="12"></input_password></p><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></form></body>,
Enter the password "MU" into the first text field
keydown
11
mu
stop
Enter the password "MU" into the second text field <body ref="1"><form id="mturk_form" ref="9"><div id="wrap" ref="10"><div id="area" ref="5"><div id="form" ref="2"><p ref="3"><label ref="7" text="password"></label><input_password id="password" ref="11" value="mu"></input_password></p><p ref="4"><label ref="8" text="verify password"></label><input_password id="verify" ref="12"></input_password></p><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></form></body>,
Enter the password "MU" into the second text field
keydown
12
mu
stop
{click,6,} Enter the password "5a3G" into the first text field <body ref="2"><form id="mturk_form" ref="3"><div id="wrap" ref="12"><div id="area" ref="4"><div id="form" ref="8"><p ref="7"><label ref="5" text="password"></label><input_password id="password" ref="6"></input_password></p><p ref="1"><label ref="9" text="verify password"></label><input_password id="verify" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></div></form></body>,
Enter the password "5a3G" into the first text field
keydown
6
5a3g
stop
{click,10,} Enter the password "5a3G" into the second text field <body ref="2"><form id="mturk_form" ref="3"><div id="wrap" ref="12"><div id="area" ref="4"><div id="form" ref="8"><p ref="7"><label ref="5" text="password"></label><input_password id="password" ref="6" value="5a3g"></input_password></p><p ref="1"><label ref="9" text="verify password"></label><input_password id="verify" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></div></form></body>,
Enter the password "5a3G" into the second text field
keydown
10
5a3g
stop
{click,6,} Enter the password "5a3G" into the first text field <body ref="2"><form id="mturk_form" ref="3"><div id="wrap" ref="12"><div id="area" ref="4"><div id="form" ref="8"><p ref="7"><label ref="5" text="password"></label><input_password id="password" ref="6"></input_password></p><p ref="1"><label ref="9" text="verify password"></label><input_password id="verify" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></div></form></body>,
Enter the password "5a3G" into the first text field
keydown
6
5a3g
stop
{click,10,} Enter the password "5a3G" into the second text field <body ref="2"><form id="mturk_form" ref="3"><div id="wrap" ref="12"><div id="area" ref="4"><div id="form" ref="8"><p ref="7"><label ref="5" text="password"></label><input_password id="password" ref="6" value="5a3g"></input_password></p><p ref="1"><label ref="9" text="verify password"></label><input_password id="verify" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></div></form></body>,
Enter the password "5a3G" into the second text field
keydown
10
5a3g
stop
{click,2,} Enter the password "Lj6" into the first text field <body ref="9"><form id="mturk_form" ref="6"><div id="wrap" ref="7"><div id="area" ref="4"><div id="form" ref="5"><p ref="8"><label ref="12" text="password"></label><input_password id="password" ref="2"></input_password></p><p ref="10"><label ref="3" text="verify password"></label><input_password id="verify" ref="11"></input_password></p><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter the password "Lj6" into the first text field
keydown
2
lj6
stop
{click,11,} Enter the password "Lj6" into the second text field <body ref="9"><form id="mturk_form" ref="6"><div id="wrap" ref="7"><div id="area" ref="4"><div id="form" ref="5"><p ref="8"><label ref="12" text="password"></label><input_password id="password" ref="2" value="lj6"></input_password></p><p ref="10"><label ref="3" text="verify password"></label><input_password id="verify" ref="11"></input_password></p><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter the password "Lj6" into the second text field
keydown
11
lj6
stop
{click,2,} Enter the password "Lj6" into the first text field <body ref="9"><form id="mturk_form" ref="6"><div id="wrap" ref="7"><div id="area" ref="4"><div id="form" ref="5"><p ref="8"><label ref="12" text="password"></label><input_password id="password" ref="2"></input_password></p><p ref="10"><label ref="3" text="verify password"></label><input_password id="verify" ref="11"></input_password></p><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter the password "Lj6" into the first text field
keydown
2
lj6
stop
{click,11,} Enter the password "Lj6" into the second text field <body ref="9"><form id="mturk_form" ref="6"><div id="wrap" ref="7"><div id="area" ref="4"><div id="form" ref="5"><p ref="8"><label ref="12" text="password"></label><input_password id="password" ref="2" value="lj6"></input_password></p><p ref="10"><label ref="3" text="verify password"></label><input_password id="verify" ref="11"></input_password></p><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter the password "Lj6" into the second text field
keydown
11
lj6
stop
{click,6,} Enter the password "wsoHm" into the first text field <body ref="3"><form id="mturk_form" ref="11"><div id="wrap" ref="8"><div id="area" ref="4"><div id="form" ref="2"><p ref="7"><label ref="5" text="password"></label><input_password id="password" ref="6"></input_password></p><p ref="9"><label ref="1" text="verify password"></label><input_password id="verify" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></div></form></body>,
Enter the password "wsoHm" into the first text field
keydown
6
wsohm
stop
{click,10,} Enter the password "wsoHm" into the second text field <body ref="3"><form id="mturk_form" ref="11"><div id="wrap" ref="8"><div id="area" ref="4"><div id="form" ref="2"><p ref="7"><label ref="5" text="password"></label><input_password id="password" ref="6" value="wsohm"></input_password></p><p ref="9"><label ref="1" text="verify password"></label><input_password id="verify" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></div></form></body>,
Enter the password "wsoHm" into the second text field
keydown
10
wsohm
stop
click submit <body ref="3"><form id="mturk_form" ref="11"><div id="wrap" ref="8"><div id="area" ref="4"><div id="form" ref="2"><p ref="7"><label ref="5" text="password"></label><input_password id="password" ref="6" value="wsohm"></input_password></p><p ref="9"><label ref="1" text="verify password"></label><input_password id="verify" ref="10" value="wsohm"></input_password></p><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></div></form></body>
click submit
click
12
null
stop
{click,6,} Enter the password "wsoHm" into the first text field <body ref="3"><form id="mturk_form" ref="11"><div id="wrap" ref="8"><div id="area" ref="4"><div id="form" ref="2"><p ref="7"><label ref="5" text="password"></label><input_password id="password" ref="6"></input_password></p><p ref="9"><label ref="1" text="verify password"></label><input_password id="verify" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></div></form></body>,
Enter the password "wsoHm" into the first text field
keydown
6
wsohm
stop
{click,10,} Enter the password "wsoHm" into the second text field <body ref="3"><form id="mturk_form" ref="11"><div id="wrap" ref="8"><div id="area" ref="4"><div id="form" ref="2"><p ref="7"><label ref="5" text="password"></label><input_password id="password" ref="6" value="wsohm"></input_password></p><p ref="9"><label ref="1" text="verify password"></label><input_password id="verify" ref="10"></input_password></p><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></div></form></body>,
Enter the password "wsoHm" into the second text field
keydown
10
wsohm
stop
{click,11,} Enter the password "Ppbk" into the first text field <body ref="9"><div ref="6"><input_button id="chreloadframe" ref="7" value="reload"></input_button></div><form id="mturk_form" ref="10"><div id="wrap" ref="8"><div id="area" ref="2"><div id="form" ref="14"><p ref="4"><label ref="5" text="password"></label><input_password id="password" ref="11"></input_password></p><p ref="3"><label ref="12" text="verify password"></label><input_password id="verify" ref="13"></input_password></p><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter the password "Ppbk" into the first text field
keydown
11
ppbk
stop
Enter the password "Ppbk" into the second text field <body ref="9"><div ref="6"><input_button id="chreloadframe" ref="7" value="reload"></input_button></div><form id="mturk_form" ref="10"><div id="wrap" ref="8"><div id="area" ref="2"><div id="form" ref="14"><p ref="4"><label ref="5" text="password"></label><input_password id="password" ref="11" value="ppbk"></input_password></p><p ref="3"><label ref="12" text="verify password"></label><input_password id="verify" ref="13"></input_password></p><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter the password "Ppbk" into the second text field
keydown
13
ppbk
stop
{click,11,} Enter the password "Ppbk" into the first text field <body ref="9"><div ref="6"><input_button id="chreloadframe" ref="7" value="reload"></input_button></div><form id="mturk_form" ref="10"><div id="wrap" ref="8"><div id="area" ref="2"><div id="form" ref="14"><p ref="4"><label ref="5" text="password"></label><input_password id="password" ref="11"></input_password></p><p ref="3"><label ref="12" text="verify password"></label><input_password id="verify" ref="13"></input_password></p><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter the password "Ppbk" into the first text field
keydown
11
ppbk
stop
Enter the password "Ppbk" into the second text field <body ref="9"><div ref="6"><input_button id="chreloadframe" ref="7" value="reload"></input_button></div><form id="mturk_form" ref="10"><div id="wrap" ref="8"><div id="area" ref="2"><div id="form" ref="14"><p ref="4"><label ref="5" text="password"></label><input_password id="password" ref="11" value="ppbk"></input_password></p><p ref="3"><label ref="12" text="verify password"></label><input_password id="verify" ref="13"></input_password></p><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></form></body>,
Enter the password "Ppbk" into the second text field
keydown
13
ppbk
stop
{click,4,} Enter the password "bU6c" into the first text field <body ref="9"><form id="mturk_form" ref="6"><div id="wrap" ref="2"><div id="area" ref="1"><div id="form" ref="10"><p ref="8"><label ref="7" text="password"></label><input_password id="password" ref="4"></input_password></p><p ref="5"><label ref="12" text="verify password"></label><input_password id="verify" ref="3"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></div></form></body>,
Enter the password "bU6c" into the first text field
keydown
4
bu6c
stop
{click,3,} Enter the password "bU6c" into the second text field <body ref="9"><form id="mturk_form" ref="6"><div id="wrap" ref="2"><div id="area" ref="1"><div id="form" ref="10"><p ref="8"><label ref="7" text="password"></label><input_password id="password" ref="4" value="bu6c"></input_password></p><p ref="5"><label ref="12" text="verify password"></label><input_password id="verify" ref="3"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></div></form></body>,
Enter the password "bU6c" into the second text field
keydown
3
bu6c
stop
{click,4,} Enter the password "bU6c" into the first text field <body ref="9"><form id="mturk_form" ref="6"><div id="wrap" ref="2"><div id="area" ref="1"><div id="form" ref="10"><p ref="8"><label ref="7" text="password"></label><input_password id="password" ref="4"></input_password></p><p ref="5"><label ref="12" text="verify password"></label><input_password id="verify" ref="3"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></div></form></body>,
Enter the password "bU6c" into the first text field
keydown
4
bu6c
stop
{click,3,} Enter the password "bU6c" into the second text field <body ref="9"><form id="mturk_form" ref="6"><div id="wrap" ref="2"><div id="area" ref="1"><div id="form" ref="10"><p ref="8"><label ref="7" text="password"></label><input_password id="password" ref="4" value="bu6c"></input_password></p><p ref="5"><label ref="12" text="verify password"></label><input_password id="verify" ref="3"></input_password></p><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></div></form></body>,
Enter the password "bU6c" into the second text field
keydown
3
bu6c
stop
Select Yy <body ref="7"><form id="mturk_form" ref="4"><div id="wrap" ref="1"><div id="area" ref="12"><div id="boxes" ref="14"><label ref="11"><input_radio id="ch0" ref="6" value="false"></input_radio><t ref="-21" text="nx"></t></label><label ref="8"><input_radio id="ch1" ref="3" value="false"></input_radio><t ref="-22" text="rw"></t></label><label ref="10"><input_radio id="ch2" ref="2" value="true"></input_radio><t ref="-23" text="yy"></t></label><label ref="13"><input_radio id="ch3" ref="9" value="false"></input_radio><t ref="-24" text="dmub"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></form></body>,
Select Yy
click
2
null
stop
Select 1dgXWGv <body ref="9"><form id="mturk_form" ref="3"><div id="wrap" ref="5"><div id="area" ref="4"><div id="boxes" ref="10"><label ref="7"><input_radio id="ch0" ref="6" value="false"></input_radio><t ref="-11" text="9r4p"></t></label><label ref="1"><input_radio id="ch1" ref="2" value="true"></input_radio><t ref="-12" text="1dgxwgv"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></form></body>,
Select 1dgXWGv
click
2
null
stop
Select uMva5lD <body ref="13"><form id="mturk_form" ref="7"><div id="wrap" ref="16"><div id="area" ref="9"><div id="boxes" ref="3"><label ref="15"><input_radio id="ch0" ref="10" value="true"></input_radio><t ref="-43" text="umva5ld"></t></label><label ref="2"><input_radio id="ch1" ref="14" value="false"></input_radio><t ref="-44" text="h5gnd"></t></label><label ref="4"><input_radio id="ch2" ref="1" value="false"></input_radio><t ref="-45" text="xwev0dp"></t></label><label ref="6"><input_radio id="ch3" ref="17" value="false"></input_radio><t ref="-46" text="5ktppd"></t></label><label ref="5"><input_radio id="ch4" ref="8" value="false"></input_radio><t ref="-47" text="i3dq9iy"></t></label><label ref="11"><input_radio id="ch5" ref="18" value="false"></input_radio><t ref="-48" text="cajp4e"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></form></body>,
Select uMva5lD
click
10
null
stop
Select Ub8Y8mZ <body ref="1"><form id="mturk_form" ref="11"><div id="wrap" ref="4"><div id="area" ref="2"><div id="boxes" ref="6"><label ref="10"><input_radio id="ch0" ref="3" value="false"></input_radio><t ref="-43" text="6gaje"></t></label><label ref="16"><input_radio id="ch1" ref="14" value="false"></input_radio><t ref="-44" text="vskik"></t></label><label ref="9"><input_radio id="ch2" ref="8" value="false"></input_radio><t ref="-45" text="wzfe"></t></label><label ref="5"><input_radio id="ch3" ref="7" value="true"></input_radio><t ref="-46" text="ub8y8mz"></t></label><label ref="12"><input_radio id="ch4" ref="15" value="false"></input_radio><t ref="-47" text="uw8xzrs"></t></label><label ref="1"><input_radio id="ch5" ref="11" value="false"></input_radio><t ref="-48" text="b1wpj"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></form></body>,
Select Ub8Y8mZ
click
7
null
stop
Select WgEIk <body ref="11"><form id="mturk_form" ref="17"><div id="wrap" ref="3"><div id="area" ref="10"><div id="boxes" ref="1"><label ref="6"><input_radio id="ch0" ref="14" value="false"></input_radio><t ref="-31" text="epornr"></t></label><label ref="12"><input_radio id="ch1" ref="13" value="false"></input_radio><t ref="-32" text="e0rpbvp"></t></label><label ref="4"><input_radio id="ch2" ref="15" value="false"></input_radio><t ref="-33" text="b7povv"></t></label><label ref="18"><input_radio id="ch3" ref="5" value="false"></input_radio><t ref="-34" text="1ym2"></t></label><label ref="2"><input_radio id="ch4" ref="8" value="true"></input_radio><t ref="-35" text="wgeik"></t></label><label ref="16"><input_radio id="ch5" ref="9" value="false"></input_radio><t ref="-36" text="o1jnh"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></form></body>,
Select WgEIk
click
8
null
stop
Select xhgObfk <body ref="12"><form id="mturk_form" ref="13"><div id="wrap" ref="7"><div id="area" ref="5"><div id="boxes" ref="10"><label ref="9"><input_radio id="ch0" ref="11" value="false"></input_radio><t ref="-15" text="aqbxie"></t></label><br ref="2"></br><label ref="1"><input_radio id="ch1" ref="6" value="true"></input_radio><t ref="-16" text="xhgobfk"></t></label><br ref="3"></br></div><br ref="4"></br><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></form></body>,
Select xhgObfk
click
6
null
stop
Select UeeZO <body ref="6"><form id="mturk_form" ref="8"><div id="wrap" ref="14"><div id="area" ref="2"><div id="boxes" ref="13"><label ref="5"><input_radio id="ch0" ref="7" value="false"></input_radio><t ref="-26" text="1w4ube"></t></label><label ref="1"><input_radio id="ch1" ref="4" value="false"></input_radio><t ref="-27" text="a6i"></t></label><label ref="3"><input_radio id="ch2" ref="12" value="false"></input_radio><t ref="-28" text="tdmok"></t></label><label ref="9"><input_radio id="ch3" ref="16" value="false"></input_radio><t ref="-29" text="quivw"></t></label><label ref="11"><input_radio id="ch4" ref="15" value="true"></input_radio><t ref="-30" text="ueezo"></t></label></div><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></form></body>,
Select UeeZO
click
15
null
stop
Select XFMz <body ref="7"><form id="mturk_form" ref="1"><div id="wrap" ref="6"><div id="area" ref="10"><div id="boxes" ref="9"><label ref="11"><input_radio id="ch0" ref="4" value="false"></input_radio><t ref="-22" text="cxs"></t></label><label ref="3"><input_radio id="ch1" ref="2" value="true"></input_radio><t ref="-23" text="xfmz"></t></label><label ref="5"><input_radio id="ch2" ref="8" value="false"></input_radio><t ref="-24" text="fmfd"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></form></body>,
Select XFMz
click
2
null
stop
Select 3boJ <body ref="14"><form id="mturk_form" ref="13"><div id="wrap" ref="8"><div id="area" ref="16"><div id="boxes" ref="18"><label ref="6"><input_radio id="ch0" ref="7" value="false"></input_radio><t ref="-31" text="mu"></t></label><label ref="11"><input_radio id="ch1" ref="3" value="false"></input_radio><t ref="-32" text="xao"></t></label><label ref="10"><input_radio id="ch2" ref="17" value="false"></input_radio><t ref="-33" text="phoha"></t></label><label ref="4"><input_radio id="ch3" ref="5" value="true"></input_radio><t ref="-34" text="3boj"></t></label><label ref="12"><input_radio id="ch4" ref="2" value="false"></input_radio><t ref="-35" text="i84q7y"></t></label><label ref="15"><input_radio id="ch5" ref="1" value="false"></input_radio><t ref="-36" text="ub"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></form></body>,
Select 3boJ
click
5
null
stop
Select vf <body ref="13"><form id="mturk_form" ref="4"><div id="wrap" ref="3"><div id="area" ref="8"><div id="boxes" ref="10"><label ref="6"><input_radio id="ch0" ref="9" value="false"></input_radio><t ref="-21" text="3if"></t></label><label ref="5"><input_radio id="ch1" ref="12" value="false"></input_radio><t ref="-22" text="y17o5cr"></t></label><label ref="1"><input_radio id="ch2" ref="14" value="false"></input_radio><t ref="-23" text="tdw"></t></label><label ref="11"><input_radio id="ch3" ref="2" value="true"></input_radio><t ref="-24" text="vf"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></form></body>,
Select vf
click
2
null
stop
Select LDVi3d <body ref="4"><form id="mturk_form" ref="9"><div id="wrap" ref="3"><div id="area" ref="13"><div id="boxes" ref="11"><label ref="1"><input_radio id="ch0" ref="10" value="false"></input_radio><t ref="-26" text="lwete"></t></label><label ref="12"><input_radio id="ch1" ref="14" value="false"></input_radio><t ref="-27" text="oslcxv"></t></label><label ref="7"><input_radio id="ch2" ref="6" value="true"></input_radio><t ref="-28" text="ldvi3d"></t></label><label ref="8"><input_radio id="ch3" ref="2" value="false"></input_radio><t ref="-29" text="gjfw"></t></label><label ref="4"><input_radio id="ch4" ref="9" value="false"></input_radio><t ref="-30" text="itss7"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></form></body>,
Select LDVi3d
click
6
null
stop
Select 9zhKyJw <body ref="3"><form id="mturk_form" ref="13"><div id="wrap" ref="8"><div id="area" ref="5"><div id="boxes" ref="6"><label ref="7"><input_radio id="ch0" ref="1" value="true"></input_radio><t ref="-21" text="9zhkyjw"></t></label><label ref="14"><input_radio id="ch1" ref="4" value="false"></input_radio><t ref="-22" text="nyavxcm"></t></label><label ref="11"><input_radio id="ch2" ref="10" value="false"></input_radio><t ref="-23" text="whxqno"></t></label><label ref="2"><input_radio id="ch3" ref="9" value="false"></input_radio><t ref="-24" text="soqwy"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></form></body>,
Select 9zhKyJw
click
1
null
stop
Select iod <body ref="10"><form id="mturk_form" ref="9"><div id="wrap" ref="2"><div id="area" ref="13"><div id="boxes" ref="1"><label ref="11"><input_radio id="ch0" ref="5" value="false"></input_radio><t ref="-21" text="aznjcjw"></t></label><label ref="8"><input_radio id="ch1" ref="12" value="true"></input_radio><t ref="-22" text="iod"></t></label><label ref="3"><input_radio id="ch2" ref="6" value="false"></input_radio><t ref="-23" text="q5j7"></t></label><label ref="4"><input_radio id="ch3" ref="7" value="false"></input_radio><t ref="-24" text="u7ls"></t></label></div><button id="subbtn" classes="secondary-action" ref="14" text="submit"></button></div></div></form></body>,
Select iod
click
12
null
stop
Select xK <body ref="11"><form id="mturk_form" ref="13"><div id="wrap" ref="3"><div id="area" ref="7"><div id="boxes" ref="9"><label ref="8"><input_radio id="ch0" ref="16" value="true"></input_radio><t ref="-43" text="xk"></t></label><label ref="12"><input_radio id="ch1" ref="4" value="false"></input_radio><t ref="-44" text="q9a"></t></label><label ref="15"><input_radio id="ch2" ref="17" value="false"></input_radio><t ref="-45" text="9kah"></t></label><label ref="14"><input_radio id="ch3" ref="6" value="false"></input_radio><t ref="-46" text="kq"></t></label><label ref="18"><input_radio id="ch4" ref="1" value="false"></input_radio><t ref="-47" text="acp0"></t></label><label ref="2"><input_radio id="ch5" ref="10" value="false"></input_radio><t ref="-48" text="79cpao9"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></form></body>,
Select xK
click
16
null
stop
Select 5anp0 <body ref="7"><form id="mturk_form" ref="16"><div id="wrap" ref="15"><div id="area" ref="1"><div id="boxes" ref="4"><label ref="11"><input_radio id="ch0" ref="14" value="false"></input_radio><t ref="-43" text="mzzom"></t></label><label ref="8"><input_radio id="ch1" ref="6" value="false"></input_radio><t ref="-44" text="v6qcn"></t></label><label ref="5"><input_radio id="ch2" ref="10" value="false"></input_radio><t ref="-45" text="vy"></t></label><label ref="2"><input_radio id="ch3" ref="12" value="false"></input_radio><t ref="-46" text="ysmcy"></t></label><label ref="17"><input_radio id="ch4" ref="9" value="true"></input_radio><t ref="-47" text="5anp0"></t></label><label ref="13"><input_radio id="ch5" ref="18" value="false"></input_radio><t ref="-48" text="pc"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></form></body>,
Select 5anp0
click
9
null
stop
Select JQ <body ref="18"><form id="mturk_form" ref="7"><div id="wrap" ref="8"><div id="area" ref="2"><div id="boxes" ref="6"><label ref="5"><input_radio id="ch0" ref="10" value="false"></input_radio><t ref="-31" text="ey"></t></label><label ref="11"><input_radio id="ch1" ref="9" value="true"></input_radio><t ref="-32" text="jq"></t></label><label ref="12"><input_radio id="ch2" ref="16" value="false"></input_radio><t ref="-33" text="zd"></t></label><label ref="1"><input_radio id="ch3" ref="13" value="false"></input_radio><t ref="-34" text="kavdh"></t></label><label ref="3"><input_radio id="ch4" ref="4" value="false"></input_radio><t ref="-35" text="a8klv0n"></t></label><label ref="14"><input_radio id="ch5" ref="17" value="false"></input_radio><t ref="-36" text="p99pvlj"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></form></body>,
Select JQ
click
9
null
stop
Select C8vEe <body ref="9"><form id="mturk_form" ref="10"><div id="wrap" ref="4"><div id="area" ref="7"><div id="boxes" ref="5"><label ref="8"><input_radio id="ch0" ref="6" value="false"></input_radio><t ref="-26" text="r5ks"></t></label><label ref="11"><input_radio id="ch1" ref="14" value="false"></input_radio><t ref="-27" text="ktzo8c"></t></label><label ref="13"><input_radio id="ch2" ref="1" value="false"></input_radio><t ref="-28" text="btqz"></t></label><label ref="2"><input_radio id="ch3" ref="3" value="false"></input_radio><t ref="-29" text="ncnx"></t></label><label ref="9"><input_radio id="ch4" ref="10" value="true"></input_radio><t ref="-30" text="c8vee"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></form></body>,
Select C8vEe
click
10
null
stop
Select DOf <body ref="6"><form id="mturk_form" ref="7"><div id="wrap" ref="13"><div id="area" ref="1"><div id="boxes" ref="11"><label ref="2"><input_radio id="ch0" ref="12" value="false"></input_radio><t ref="-36" text="5wj0"></t></label><label ref="5"><input_radio id="ch1" ref="3" value="false"></input_radio><t ref="-37" text="wau"></t></label><label ref="9"><input_radio id="ch2" ref="4" value="false"></input_radio><t ref="-38" text="3sbswg"></t></label><label ref="16"><input_radio id="ch3" ref="8" value="false"></input_radio><t ref="-39" text="697a4u"></t></label><label ref="14"><input_radio id="ch4" ref="10" value="true"></input_radio><t ref="-40" text="dof"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></form></body>,
Select DOf
click
10
null
stop
Select jh1Kun <body ref="4"><form id="mturk_form" ref="11"><div id="wrap" ref="16"><div id="area" ref="7"><div id="boxes" ref="9"><label ref="2"><input_radio id="ch0" ref="15" value="false"></input_radio><t ref="-43" text="tza"></t></label><label ref="1"><input_radio id="ch1" ref="18" value="false"></input_radio><t ref="-44" text="d7m1la"></t></label><label ref="12"><input_radio id="ch2" ref="14" value="true"></input_radio><t ref="-45" text="wm3i1fp"></t></label><label ref="10"><input_radio id="ch3" ref="13" value="false"></input_radio><t ref="-46" text="jh1kun"></t></label><label ref="3"><input_radio id="ch4" ref="5" value="false"></input_radio><t ref="-47" text="8i3do"></t></label><label ref="6"><input_radio id="ch5" ref="17" value="false"></input_radio><t ref="-48" text="we1xn10"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></form></body>,
Select jh1Kun
click
14
null
stop
Select fjE <body ref="4"><form id="mturk_form" ref="6"><div id="wrap" ref="7"><div id="area" ref="2"><div id="boxes" ref="1"><label ref="5"><input_radio id="ch0" ref="3" value="true"></input_radio><t ref="-11" text="fje"></t></label><label ref="10"><input_radio id="ch1" ref="9" value="false"></input_radio><t ref="-12" text="oy7tycg"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></form></body>,
Select fjE
click
3
null
stop
Select PFGe <body ref="10"><form id="mturk_form" ref="1"><div id="wrap" ref="11"><div id="area" ref="18"><div id="boxes" ref="8"><label ref="15"><input_radio id="ch0" ref="6" value="false"></input_radio><t ref="-31" text="tb"></t></label><label ref="5"><input_radio id="ch1" ref="17" value="false"></input_radio><t ref="-32" text="prwmmy"></t></label><label ref="13"><input_radio id="ch2" ref="4" value="false"></input_radio><t ref="-33" text="6yh0wb"></t></label><label ref="7"><input_radio id="ch3" ref="2" value="false"></input_radio><t ref="-34" text="esw"></t></label><label ref="14"><input_radio id="ch4" ref="3" value="true"></input_radio><t ref="-35" text="pfge"></t></label><label ref="16"><input_radio id="ch5" ref="9" value="false"></input_radio><t ref="-36" text="uk"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></form></body>,
Select PFGe
click
3
null
stop
Select N3C <body ref="16"><form id="mturk_form" ref="8"><div id="wrap" ref="2"><div id="area" ref="17"><div id="boxes" ref="4"><label ref="5"><input_radio id="ch0" ref="14" value="false"></input_radio><t ref="-43" text="at"></t></label><label ref="7"><input_radio id="ch1" ref="9" value="false"></input_radio><t ref="-44" text="arw"></t></label><label ref="18"><input_radio id="ch2" ref="15" value="true"></input_radio><t ref="-45" text="n3c"></t></label><label ref="3"><input_radio id="ch3" ref="10" value="false"></input_radio><t ref="-46" text="yu0yj"></t></label><label ref="12"><input_radio id="ch4" ref="6" value="false"></input_radio><t ref="-47" text="qu49h1y"></t></label><label ref="11"><input_radio id="ch5" ref="13" value="false"></input_radio><t ref="-48" text="n5"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></form></body>,
Select N3C
click
15
null
stop
Select TBQbkuE <body ref="1"><form id="mturk_form" ref="7"><div id="wrap" ref="14"><div id="area" ref="16"><div id="boxes" ref="12"><label ref="9"><input_radio id="ch0" ref="4" value="false"></input_radio><t ref="-36" text="iq"></t></label><label ref="11"><input_radio id="ch1" ref="8" value="false"></input_radio><t ref="-37" text="dgnb"></t></label><label ref="3"><input_radio id="ch2" ref="2" value="true"></input_radio><t ref="-38" text="tbqbkue"></t></label><label ref="13"><input_radio id="ch3" ref="5" value="false"></input_radio><t ref="-39" text="af"></t></label><label ref="10"><input_radio id="ch4" ref="6" value="false"></input_radio><t ref="-40" text="x3ay6c"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></form></body>,
Select TBQbkuE
click
2
null
stop
Select hn4VUXK <body ref="6"><form id="mturk_form" ref="1"><div id="wrap" ref="9"><div id="area" ref="4"><div id="boxes" ref="8"><label ref="10"><input_radio id="ch0" ref="7" value="false"></input_radio><t ref="-11" text="ttlgvd"></t></label><label ref="2"><input_radio id="ch1" ref="3" value="true"></input_radio><t ref="-12" text="hn4vuxk"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></form></body>,
Select hn4VUXK
click
3
null
stop
Select Jh <body ref="14"><form id="mturk_form" ref="17"><div id="wrap" ref="12"><div id="area" ref="9"><div id="boxes" ref="11"><label ref="15"><input_radio id="ch0" ref="2" value="true"></input_radio><t ref="-29" text="jh"></t></label><br ref="10"></br><label ref="6"><input_radio id="ch1" ref="7" value="false"></input_radio><t ref="-30" text="yor0ow"></t></label><br ref="18"></br><label ref="16"><input_radio id="ch2" ref="19" value="false"></input_radio><t ref="-31" text="czucxrr"></t></label><br ref="13"></br><label ref="4"><input_radio id="ch3" ref="8" value="false"></input_radio><t ref="-32" text="6xp"></t></label><br ref="1"></br></div><br ref="3"></br><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></form></body>,
Select Jh
click
2
null
stop
Select nPPZ <body ref="7"><form id="mturk_form" ref="15"><div id="wrap" ref="3"><div id="area" ref="5"><div id="boxes" ref="9"><label ref="6"><input_radio id="ch0" ref="16" value="true"></input_radio><t ref="-26" text="nppz"></t></label><label ref="10"><input_radio id="ch1" ref="13" value="false"></input_radio><t ref="-27" text="lpzu"></t></label><label ref="4"><input_radio id="ch2" ref="12" value="false"></input_radio><t ref="-28" text="cjuncw"></t></label><label ref="1"><input_radio id="ch3" ref="11" value="false"></input_radio><t ref="-29" text="qwqr"></t></label><label ref="2"><input_radio id="ch4" ref="8" value="false"></input_radio><t ref="-30" text="kjvmagt"></t></label></div><button id="subbtn" classes="secondary-action" ref="14" text="submit"></button></div></div></form></body>,
Select nPPZ
click
16
null
stop
Select U8s <body ref="6"><form id="mturk_form" ref="10"><div id="wrap" ref="8"><div id="area" ref="5"><div id="boxes" ref="2"><label ref="4"><input_radio id="ch0" ref="9" value="false"></input_radio><t ref="-47" text="1wir"></t></label><label ref="1"><input_radio id="ch1" ref="7" value="true"></input_radio><t ref="-48" text="u8s"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></form></body>,
Select U8s
click
7
null
stop
Select ASp2ytx <body ref="7"><form id="mturk_form" ref="10"><div id="wrap" ref="12"><div id="area" ref="8"><div id="boxes" ref="11"><label ref="9"><input_radio id="ch0" ref="13" value="false"></input_radio><t ref="-21" text="vgsa"></t></label><label ref="6"><input_radio id="ch1" ref="2" value="true"></input_radio><t ref="-22" text="asp2ytx"></t></label><label ref="14"><input_radio id="ch2" ref="3" value="false"></input_radio><t ref="-23" text="tkbvu"></t></label><label ref="5"><input_radio id="ch3" ref="1" value="false"></input_radio><t ref="-24" text="px"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></form></body>,
Select ASp2ytx
click
2
null
stop
Select 7Y9 <body ref="8"><form id="mturk_form" ref="12"><div id="wrap" ref="4"><div id="area" ref="9"><div id="boxes" ref="5"><label ref="10"><input_radio id="ch0" ref="6" value="false"></input_radio><t ref="-22" text="lrqgbk"></t></label><br ref="11"></br><label ref="1"><input_radio id="ch1" ref="3" value="true"></input_radio><t ref="-23" text="7y9"></t></label><br ref="7"></br><label ref="8"><input_radio id="ch2" ref="12" value="false"></input_radio><t ref="-24" text="rgkg"></t></label><br ref="4"></br></div><br ref="2"></br><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></form></body>,
Select 7Y9
click
3
null
stop
Find the email by Sandra and forward that email to Dyane. <body ref="3"><form id="mturk_form" ref="7"><div id="wrap" ref="12"><div id="area" ref="6"><div id="forward" ref="2"><div id="forward-bar" ref="9"><span id="close-forward" ref="13"></span><span id="send-forward" ref="8"></span></div><div classes="forward-header" ref="11"><div classes="forward-info" ref="14"><label ref="16" text="to:"></label><input_text classes="forward-sender" ref="10"></input_text></div><div classes="forward-subject" ref="1"><label ref="5" text="subject:"></label><t ref="-6" text="dwelling."></t></div></div><div classes="forward-body" ref="4"><textarea id="forward-text" ref="15" value="u.s.-backed tens ancient defected cliffs. 350 nec reprisals aspects ferreira by exiles commuter."></textarea></div></div></div></div></form></body>,
Find the email by Sandra and forward that email to Dyane.
click
10
null
continue
{click,10,} Find the email by Sandra and forward that email to Dyane. <body ref="3"><form id="mturk_form" ref="7"><div id="wrap" ref="12"><div id="area" ref="6"><div id="forward" ref="2"><div id="forward-bar" ref="9"><span id="close-forward" ref="13"></span><span id="send-forward" ref="8"></span></div><div classes="forward-header" ref="11"><div classes="forward-info" ref="14"><label ref="16" text="to:"></label><input_text classes="forward-sender" ref="10"></input_text></div><div classes="forward-subject" ref="1"><label ref="5" text="subject:"></label><t ref="-8" text="dwelling."></t></div></div><div classes="forward-body" ref="4"><textarea id="forward-text" ref="15" value="u.s.-backed tens ancient defected cliffs. 350 nec reprisals aspects ferreira by exiles commuter."></textarea></div></div></div></div></form></body>,
Find the email by Sandra and forward that email to Dyane.
keydown
10
dyane
stop
Find the email by Hattie and forward that email to Nerty. <body ref="7"><form id="mturk_form" ref="13"><div id="wrap" ref="15"><div id="area" ref="14"><div id="forward" ref="5"><div id="forward-bar" ref="11"><span id="close-forward" ref="1"></span><span id="send-forward" ref="10"></span></div><div classes="forward-header" ref="6"><div classes="forward-info" ref="8"><label ref="12" text="to:"></label><input_text classes="forward-sender" ref="4"></input_text></div><div classes="forward-subject" ref="2"><label ref="16" text="subject:"></label><t ref="-12" text="planetary distribute."></t></div></div><div classes="forward-body" ref="9"><textarea id="forward-text" ref="3" value="constable automobiles declares lions. caught. parachute bogota."></textarea></div></div></div></div></form></body>,
Find the email by Hattie and forward that email to Nerty.
click
4
null
continue
{click,4,} Find the email by Hattie and forward that email to Nerty. <body ref="7"><form id="mturk_form" ref="13"><div id="wrap" ref="15"><div id="area" ref="14"><div id="forward" ref="5"><div id="forward-bar" ref="11"><span id="close-forward" ref="1"></span><span id="send-forward" ref="10"></span></div><div classes="forward-header" ref="6"><div classes="forward-info" ref="8"><label ref="12" text="to:"></label><input_text classes="forward-sender" ref="4"></input_text></div><div classes="forward-subject" ref="2"><label ref="16" text="subject:"></label><t ref="-14" text="planetary distribute."></t></div></div><div classes="forward-body" ref="9"><textarea id="forward-text" ref="3" value="constable automobiles declares lions. caught. parachute bogota."></textarea></div></div></div></div></form></body>,
Find the email by Hattie and forward that email to Nerty.
keydown
4
nerty
continue
{click,4,}{keydown,4,nerty} Find the email by Hattie and forward that email to Nerty. <body ref="7"><form id="mturk_form" ref="13"><div id="wrap" ref="15"><div id="area" ref="14"><div id="forward" ref="5"><div id="forward-bar" ref="11"><span id="close-forward" ref="1"></span><span id="send-forward" ref="10"></span></div><div classes="forward-header" ref="6"><div classes="forward-info" ref="8"><label ref="12" text="to:"></label><input_text classes="forward-sender" ref="4" value="nerty"></input_text></div><div classes="forward-subject" ref="2"><label ref="16" text="subject:"></label><t ref="-48" text="planetary distribute."></t></div></div><div classes="forward-body" ref="9"><textarea id="forward-text" ref="3" value="constable automobiles declares lions. caught. parachute bogota."></textarea></div></div></div></div></form></body>,
Find the email by Hattie and forward that email to Nerty.
click
4
null
continue
{click,4,}{keydown,4,nerty}{click,4,} Find the email by Hattie and forward that email to Nerty. <body ref="7"><form id="mturk_form" ref="13"><div id="wrap" ref="15"><div id="area" ref="14"><div id="forward" ref="5"><div id="forward-bar" ref="11"><span id="close-forward" ref="1"></span><span id="send-forward" ref="10"></span></div><div classes="forward-header" ref="6"><div classes="forward-info" ref="8"><label ref="12" text="to:"></label><input_text classes="forward-sender" ref="4" value="nerty"></input_text></div><div classes="forward-subject" ref="2"><label ref="16" text="subject:"></label><t ref="-54" text="planetary distribute."></t></div></div><div classes="forward-body" ref="9"><textarea id="forward-text" ref="3" value="constable automobiles declares lions. caught. parachute bogota."></textarea></div></div></div></div></form></body>,
Find the email by Hattie and forward that email to Nerty.
keydown
4
nerty
stop
Find the email by Aimil and forward that email to Lyssa. <body ref="10"><form id="mturk_form" ref="82"><div id="wrap" ref="42"><div id="area" ref="27"><div id="forward" ref="56"><div id="forward-bar" ref="21"><span id="close-forward" ref="93"></span><span id="send-forward" ref="39"></span></div><div classes="forward-header" ref="1"><div classes="forward-info" ref="29"><label ref="99" text="to:"></label><input_text classes="forward-sender" ref="50"></input_text></div><div classes="forward-subject" ref="2"><label ref="57" text="subject:"></label><t ref="-6" text="hooked. malaysian."></t></div></div><div classes="forward-body" ref="49"><textarea id="forward-text" ref="28" value="aspect. suit. cycles bogota. electing celebration insurers ominous. racial. russo."></textarea></div></div></div></div></form></body>,
Find the email by Aimil and forward that email to Lyssa.
click
50
null
continue
{click,50,} Find the email by Aimil and forward that email to Lyssa. <body ref="10"><form id="mturk_form" ref="82"><div id="wrap" ref="42"><div id="area" ref="27"><div id="forward" ref="56"><div id="forward-bar" ref="21"><span id="close-forward" ref="93"></span><span id="send-forward" ref="39"></span></div><div classes="forward-header" ref="1"><div classes="forward-info" ref="29"><label ref="99" text="to:"></label><input_text classes="forward-sender" ref="50"></input_text></div><div classes="forward-subject" ref="2"><label ref="57" text="subject:"></label><t ref="-8" text="hooked. malaysian."></t></div></div><div classes="forward-body" ref="49"><textarea id="forward-text" ref="28" value="aspect. suit. cycles bogota. electing celebration insurers ominous. racial. russo."></textarea></div></div></div></div></form></body>,
Find the email by Aimil and forward that email to Lyssa.
keydown
50
lyssa
stop
Find the email by Cassie and reply to them with the text "Moon viscount 44th must.". <body ref="1"><form id="mturk_form" ref="15"><div id="wrap" ref="7"><div id="area" ref="13"><div id="reply" ref="12"><div id="reply-bar" ref="10"><span id="close-reply" ref="14"></span><span id="send-reply" ref="9"></span></div><div classes="reply-header" ref="8"><div classes="reply-info" ref="11"><label classes="reply-to" ref="2" text="to:"></label><span classes="reply-sender" ref="4" text="cassie"></span></div><div classes="reply-subject" ref="5"><label classes="reply-subj" ref="16" text="subject:"></label><t ref="-6" text="re: being."></t></div></div><div classes="reply-body" ref="3"><textarea id="reply-text" ref="6"></textarea></div></div></div></div></form></body>,
Find the email by Cassie and reply to them with the text "Moon viscount 44th must.".
click
6
null
continue
{click,6,} Find the email by Cassie and reply to them with the text "Moon viscount 44th must.". <body ref="1"><form id="mturk_form" ref="15"><div id="wrap" ref="7"><div id="area" ref="13"><div id="reply" ref="12"><div id="reply-bar" ref="10"><span id="close-reply" ref="14"></span><span id="send-reply" ref="9"></span></div><div classes="reply-header" ref="8"><div classes="reply-info" ref="11"><label classes="reply-to" ref="2" text="to:"></label><span classes="reply-sender" ref="4" text="cassie"></span></div><div classes="reply-subject" ref="5"><label classes="reply-subj" ref="16" text="subject:"></label><t ref="-8" text="re: being."></t></div></div><div classes="reply-body" ref="3"><textarea id="reply-text" ref="6"></textarea></div></div></div></div></form></body>,
Find the email by Cassie and reply to them with the text "Moon viscount 44th must.".
keydown
6
moon viscount 44th must.
stop
Find the email by Cathryn and forward that email to Dari. <body ref="1"><form id="mturk_form" ref="12"><div id="wrap" ref="16"><div id="area" ref="7"><div id="forward" ref="5"><div id="forward-bar" ref="11"><span id="close-forward" ref="3"></span><span id="send-forward" ref="14"></span></div><div classes="forward-header" ref="2"><div classes="forward-info" ref="4"><label ref="13" text="to:"></label><input_text classes="forward-sender" ref="10"></input_text></div><div classes="forward-subject" ref="9"><label ref="6" text="subject:"></label><t ref="-6" text="viscount."></t></div></div><div classes="forward-body" ref="15"><textarea id="forward-text" ref="8" value="impress 1970. alexandra. villeneuve opted garland billy theological disappears lima. explanation."></textarea></div></div></div></div></form></body>,
Find the email by Cathryn and forward that email to Dari.
click
10
null
continue
{click,10,} Find the email by Cathryn and forward that email to Dari. <body ref="1"><form id="mturk_form" ref="12"><div id="wrap" ref="16"><div id="area" ref="7"><div id="forward" ref="5"><div id="forward-bar" ref="11"><span id="close-forward" ref="3"></span><span id="send-forward" ref="14"></span></div><div classes="forward-header" ref="2"><div classes="forward-info" ref="4"><label ref="13" text="to:"></label><input_text classes="forward-sender" ref="10"></input_text></div><div classes="forward-subject" ref="9"><label ref="6" text="subject:"></label><t ref="-9" text="viscount."></t></div></div><div classes="forward-body" ref="15"><textarea id="forward-text" ref="8" value="impress 1970. alexandra. villeneuve opted garland billy theological disappears lima. explanation."></textarea></div></div></div></div></form></body>,
Find the email by Cathryn and forward that email to Dari.
keydown
10
dari
stop