{ // 获取包含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":"forward Pia\\s email to Kristy "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2101,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} forward Pia\\s email to Kristy
, "},"instruction":{"kind":"string","value":"forward Pia\\s email to Kristy "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"kristy"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2102,"cells":{"history_episodes":{"kind":"string","value":" Susanne\\s email, will you forward that to Lona?
, "},"instruction":{"kind":"string","value":"Susanne\\s email, will you forward that to Lona? "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2103,"cells":{"history_episodes":{"kind":"string","value":"{click,15,} Susanne\\s email, will you forward that to Lona?
, "},"instruction":{"kind":"string","value":"Susanne\\s email, will you forward that to Lona? "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"string","value":"lona"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2104,"cells":{"history_episodes":{"kind":"string","value":" Find the email from Candi and forward it to Zilvia.
, "},"instruction":{"kind":"string","value":"Find the email from Candi and forward it to Zilvia. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2105,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Find the email from Candi and forward it to Zilvia.
, "},"instruction":{"kind":"string","value":"Find the email from Candi and forward it to Zilvia. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"zilvia"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2106,"cells":{"history_episodes":{"kind":"string","value":" Give Janean the email from Helyn.
, "},"instruction":{"kind":"string","value":"Give Janean the email from Helyn. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2107,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Give Janean the email from Helyn.
, "},"instruction":{"kind":"string","value":"Give Janean the email from Helyn. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"janean"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2108,"cells":{"history_episodes":{"kind":"string","value":" Let me send Nedi\\s email to Gavrielle.
, "},"instruction":{"kind":"string","value":"Let me send Nedi\\s email to Gavrielle. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2109,"cells":{"history_episodes":{"kind":"string","value":"{click,12,} Let me send Nedi\\s email to Gavrielle.
, "},"instruction":{"kind":"string","value":"Let me send Nedi\\s email to Gavrielle. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"string","value":"gavrielle"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2110,"cells":{"history_episodes":{"kind":"string","value":" Find Carine\\s email, forward to Emmey
, "},"instruction":{"kind":"string","value":"Find Carine\\s email, forward to Emmey "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":25,"string":"25"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2111,"cells":{"history_episodes":{"kind":"string","value":"{click,25,} Find Carine\\s email, forward to Emmey
, "},"instruction":{"kind":"string","value":"Find Carine\\s email, forward to Emmey "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":25,"string":"25"},"keydown_text":{"kind":"string","value":"emmey"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2112,"cells":{"history_episodes":{"kind":"string","value":" Please reply to the email from Dinnie with \"Enim facilisi.\".
, "},"instruction":{"kind":"string","value":"Please reply to the email from Dinnie with \"Enim facilisi.\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2113,"cells":{"history_episodes":{"kind":"string","value":"{click,14,} Please reply to the email from Dinnie with \"Enim facilisi.\".
, "},"instruction":{"kind":"string","value":"Please reply to the email from Dinnie with \"Enim facilisi.\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"string","value":"enim facilis"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2114,"cells":{"history_episodes":{"kind":"string","value":" Send Myrlene a text, \"Accumsan ut quis fermentum.\"
, "},"instruction":{"kind":"string","value":"Send Myrlene a text, \"Accumsan ut quis fermentum.\" "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2115,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Send Myrlene a text, \"Accumsan ut quis fermentum.\"
, "},"instruction":{"kind":"string","value":"Send Myrlene a text, \"Accumsan ut quis fermentum.\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"accumsan ut quis fermentum."},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2116,"cells":{"history_episodes":{"kind":"string","value":" Find the email from Oralla and forward it to Clarice.
, "},"instruction":{"kind":"string","value":"Find the email from Oralla and forward it to Clarice. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2117,"cells":{"history_episodes":{"kind":"string","value":"{click,13,} Find the email from Oralla and forward it to Clarice.
, "},"instruction":{"kind":"string","value":"Find the email from Oralla and forward it to Clarice. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"string","value":"clarice"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2118,"cells":{"history_episodes":{"kind":"string","value":" Will you respond to Jacenta\\s email and tell him that it \"Nec fames. Eget.\"?
, "},"instruction":{"kind":"string","value":"Will you respond to Jacenta\\s email and tell him that it \"Nec fames. Eget.\"? "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2119,"cells":{"history_episodes":{"kind":"string","value":"{click,15,} Will you respond to Jacenta\\s email and tell him that it \"Nec fames. Eget.\"?
, "},"instruction":{"kind":"string","value":"Will you respond to Jacenta\\s email and tell him that it \"Nec fames. Eget.\"? "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"string","value":"nec fames. eget."},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2120,"cells":{"history_episodes":{"kind":"string","value":" Forward Dasi the latest email from Maggy.
, "},"instruction":{"kind":"string","value":"Forward Dasi the latest email from Maggy. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":73,"string":"73"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2121,"cells":{"history_episodes":{"kind":"string","value":"{click,73,} Forward Dasi the latest email from Maggy.
, "},"instruction":{"kind":"string","value":"Forward Dasi the latest email from Maggy. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":73,"string":"73"},"keydown_text":{"kind":"string","value":"dasi"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2122,"cells":{"history_episodes":{"kind":"string","value":" Forward all messages from Letisha to Carol.
, "},"instruction":{"kind":"string","value":"Forward all messages from Letisha to Carol. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2123,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Forward all messages from Letisha to Carol.
, "},"instruction":{"kind":"string","value":"Forward all messages from Letisha to Carol. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"carol"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2124,"cells":{"history_episodes":{"kind":"string","value":" Open Gunilla\\s latest email and forward it to Margarette.
, "},"instruction":{"kind":"string","value":"Open Gunilla\\s latest email and forward it to Margarette. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2125,"cells":{"history_episodes":{"kind":"string","value":"{click,8,} Open Gunilla\\s latest email and forward it to Margarette.
, "},"instruction":{"kind":"string","value":"Open Gunilla\\s latest email and forward it to Margarette. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"string","value":"margarette"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2126,"cells":{"history_episodes":{"kind":"string","value":" forward Peri\\s email to Bekki
, "},"instruction":{"kind":"string","value":"forward Peri\\s email to Bekki "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2127,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} forward Peri\\s email to Bekki
, "},"instruction":{"kind":"string","value":"forward Peri\\s email to Bekki "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"bekki"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2128,"cells":{"history_episodes":{"kind":"string","value":" Open Jonis\\s email and forward it to Brooke
, "},"instruction":{"kind":"string","value":"Open Jonis\\s email and forward it to Brooke "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":27,"string":"27"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2129,"cells":{"history_episodes":{"kind":"string","value":"{click,27,} Open Jonis\\s email and forward it to Brooke
, "},"instruction":{"kind":"string","value":"Open Jonis\\s email and forward it to Brooke "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":27,"string":"27"},"keydown_text":{"kind":"string","value":"brooke"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2130,"cells":{"history_episodes":{"kind":"string","value":" search contact Noreen and text him \"Nibh bibendum. Sed.\"
, "},"instruction":{"kind":"string","value":"search contact Noreen and text him \"Nibh bibendum. Sed.\" "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2131,"cells":{"history_episodes":{"kind":"string","value":"{click,7,} search contact Noreen and text him \"Nibh bibendum. Sed.\"
, "},"instruction":{"kind":"string","value":"search contact Noreen and text him \"Nibh bibendum. Sed.\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2132,"cells":{"history_episodes":{"kind":"string","value":" Send Shanda the last email from Anita
, "},"instruction":{"kind":"string","value":"Send Shanda the last email from Anita "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":72,"string":"72"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2133,"cells":{"history_episodes":{"kind":"string","value":"{click,72,} Send Shanda the last email from Anita
, "},"instruction":{"kind":"string","value":"Send Shanda the last email from Anita "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":72,"string":"72"},"keydown_text":{"kind":"string","value":"shanda"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2134,"cells":{"history_episodes":{"kind":"string","value":" Send Tersina the last email from Stephanie
, "},"instruction":{"kind":"string","value":"Send Tersina the last email from Stephanie "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2135,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Send Tersina the last email from Stephanie
, "},"instruction":{"kind":"string","value":"Send Tersina the last email from Stephanie "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"tersina"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2136,"cells":{"history_episodes":{"kind":"string","value":" Can you please retrieve an email I received from Nalani and forward it to Kacy?
, "},"instruction":{"kind":"string","value":"Can you please retrieve an email I received from Nalani and forward it to Kacy? "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2137,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Can you please retrieve an email I received from Nalani and forward it to Kacy?
, "},"instruction":{"kind":"string","value":"Can you please retrieve an email I received from Nalani and forward it to Kacy? "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"kacy"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2138,"cells":{"history_episodes":{"kind":"string","value":" Please reply to the email from Pris with \"Sed est.\".
, "},"instruction":{"kind":"string","value":"Please reply to the email from Pris with \"Sed est.\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2139,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Please reply to the email from Pris with \"Sed est.\".
, "},"instruction":{"kind":"string","value":"Please reply to the email from Pris with \"Sed est.\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"sed est"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2140,"cells":{"history_episodes":{"kind":"string","value":" I want to send Rebbecca the e-mail that I got from Estrellita.
, "},"instruction":{"kind":"string","value":"I want to send Rebbecca the e-mail that I got from Estrellita. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":47,"string":"47"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2141,"cells":{"history_episodes":{"kind":"string","value":"{click,47,} I want to send Rebbecca the e-mail that I got from Estrellita.
, "},"instruction":{"kind":"string","value":"I want to send Rebbecca the e-mail that I got from Estrellita. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":47,"string":"47"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2142,"cells":{"history_episodes":{"kind":"string","value":" Find Agneta\\s e-mail and reply with the words \"Varius tellus.\"
, "},"instruction":{"kind":"string","value":"Find Agneta\\s e-mail and reply with the words \"Varius tellus.\" "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":75,"string":"75"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2143,"cells":{"history_episodes":{"kind":"string","value":"{click,75,} Find Agneta\\s e-mail and reply with the words \"Varius tellus.\"
, "},"instruction":{"kind":"string","value":"Find Agneta\\s e-mail and reply with the words \"Varius tellus.\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":75,"string":"75"},"keydown_text":{"kind":"string","value":"varius tellus."},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2144,"cells":{"history_episodes":{"kind":"string","value":" Please send Rachele\\s email to Elysha.
, "},"instruction":{"kind":"string","value":"Please send Rachele\\s email to Elysha. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":52,"string":"52"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2145,"cells":{"history_episodes":{"kind":"string","value":"{click,52,} Please send Rachele\\s email to Elysha.
, "},"instruction":{"kind":"string","value":"Please send Rachele\\s email to Elysha. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":52,"string":"52"},"keydown_text":{"kind":"string","value":"elysha"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2146,"cells":{"history_episodes":{"kind":"string","value":" Find Antoinette\\s email and reply \"Diam fames.\".
, "},"instruction":{"kind":"string","value":"Find Antoinette\\s email and reply \"Diam fames.\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2147,"cells":{"history_episodes":{"kind":"string","value":" Email \"Neque. Commodo nibh.\" to Karon.
, "},"instruction":{"kind":"string","value":"Email \"Neque. Commodo nibh.\" to Karon. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2148,"cells":{"history_episodes":{"kind":"string","value":"{click,12,} Email \"Neque. Commodo nibh.\" to Karon.
, "},"instruction":{"kind":"string","value":"Email \"Neque. Commodo nibh.\" to Karon. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"string","value":"neque. commodo nibh."},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2149,"cells":{"history_episodes":{"kind":"string","value":" I\\d like to send Ashil the email I got from Shanta.
, "},"instruction":{"kind":"string","value":"I\\d like to send Ashil the email I got from Shanta. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2150,"cells":{"history_episodes":{"kind":"string","value":"{click,11,} I\\d like to send Ashil the email I got from Shanta.
, "},"instruction":{"kind":"string","value":"I\\d like to send Ashil the email I got from Shanta. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"string","value":"ashil"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2151,"cells":{"history_episodes":{"kind":"string","value":" Please send Eleonore Lexis\\s email.
, "},"instruction":{"kind":"string","value":"Please send Eleonore Lexis\\s email. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2152,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Please send Eleonore Lexis\\s email.
, "},"instruction":{"kind":"string","value":"Please send Eleonore Lexis\\s email. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"eleonore"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2153,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter 2:29 AM as the time
, "},"instruction":{"kind":"string","value":"Enter 2:29 AM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"02:29"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2154,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter 9:40 AM as the time
, "},"instruction":{"kind":"string","value":"Enter 9:40 AM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"09:40"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2155,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter 1:28 PM as the time
, "},"instruction":{"kind":"string","value":"Enter 1:28 PM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"13:28"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2156,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter 2:21 PM as the time
, "},"instruction":{"kind":"string","value":"Enter 2:21 PM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"14:21"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2157,"cells":{"history_episodes":{"kind":"string","value":" Enter 5:53 AM as the time
, "},"instruction":{"kind":"string","value":"Enter 5:53 AM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"05:53"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2158,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2159,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter 12:40 PM as the time
, "},"instruction":{"kind":"string","value":"Enter 12:40 PM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"12:40"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2160,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2161,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Enter 21:45 as the time
, "},"instruction":{"kind":"string","value":"Enter 21:45 as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"21:45"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2162,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter 18:19 as the time
, "},"instruction":{"kind":"string","value":"Enter 18:19 as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"06:19"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2163,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter 11:55 PM as the time
, "},"instruction":{"kind":"string","value":"Enter 11:55 PM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"23:55"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2164,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter 4:05 PM as the time
, "},"instruction":{"kind":"string","value":"Enter 4:05 PM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"04:05"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2165,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter 3:53 AM as the time
, "},"instruction":{"kind":"string","value":"Enter 3:53 AM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"03:53"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2166,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter 8:14 PM as the time
, "},"instruction":{"kind":"string","value":"Enter 8:14 PM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"20:14"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2167,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter 14:51 as the time
, "},"instruction":{"kind":"string","value":"Enter 14:51 as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"14:51"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2168,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter 8:52 PM as the time
, "},"instruction":{"kind":"string","value":"Enter 8:52 PM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"20:52"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2169,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter 2:23 PM as the time
, "},"instruction":{"kind":"string","value":"Enter 2:23 PM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"14:23"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2170,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter 2:52 PM as the time
, "},"instruction":{"kind":"string","value":"Enter 2:52 PM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"14:52"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2171,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter 3:21 PM as the time
, "},"instruction":{"kind":"string","value":"Enter 3:21 PM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"15:21"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2172,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Enter 19:17 as the time
, "},"instruction":{"kind":"string","value":"Enter 19:17 as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"19:17"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2173,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter 1:52 PM as the time
, "},"instruction":{"kind":"string","value":"Enter 1:52 PM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"13:52"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2174,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter 12:49 PM as the time
, "},"instruction":{"kind":"string","value":"Enter 12:49 PM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"12:49"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2175,"cells":{"history_episodes":{"kind":"string","value":" Enter 1:13 PM as the time
, "},"instruction":{"kind":"string","value":"Enter 1:13 PM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"13:13"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2176,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter 11:01 PM as the time
, "},"instruction":{"kind":"string","value":"Enter 11:01 PM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"11:01"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2177,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter 10:43 PM as the time
, "},"instruction":{"kind":"string","value":"Enter 10:43 PM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"22:43"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2178,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2179,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter 6:59 AM as the time
, "},"instruction":{"kind":"string","value":"Enter 6:59 AM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"06:59"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2180,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter 3:52 AM as the time
, "},"instruction":{"kind":"string","value":"Enter 3:52 AM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"03:52"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2181,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Enter 5:37 PM as the time
, "},"instruction":{"kind":"string","value":"Enter 5:37 PM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"17:37"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2182,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter 10:18 PM as the time
, "},"instruction":{"kind":"string","value":"Enter 10:18 PM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"22:18"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2183,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter 8:08 AM as the time
, "},"instruction":{"kind":"string","value":"Enter 8:08 AM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"08:08"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2184,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter 12:06 PM as the time
, "},"instruction":{"kind":"string","value":"Enter 12:06 PM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"23:06"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2185,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter 7:44 PM as the time
, "},"instruction":{"kind":"string","value":"Enter 7:44 PM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"07:44"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2186,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2187,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter 5:35 PM as the time
, "},"instruction":{"kind":"string","value":"Enter 5:35 PM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"05:35"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2188,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter 10:00 AM as the time
, "},"instruction":{"kind":"string","value":"Enter 10:00 AM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"10:00"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2189,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2190,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter 8:57 PM as the time
, "},"instruction":{"kind":"string","value":"Enter 8:57 PM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"20:57"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2191,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Enter 12:08 as the time
, "},"instruction":{"kind":"string","value":"Enter 12:08 as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"12:08"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2192,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter 3:57 AM as the time
, "},"instruction":{"kind":"string","value":"Enter 3:57 AM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"03:57"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2193,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter 3:38 AM as the time
, "},"instruction":{"kind":"string","value":"Enter 3:38 AM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"03:38"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2194,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Enter 5:11 PM as the time
, "},"instruction":{"kind":"string","value":"Enter 5:11 PM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"17:11"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2195,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter 9:25 AM as the time
, "},"instruction":{"kind":"string","value":"Enter 9:25 AM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"09:25"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2196,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter 4:58 PM as the time
, "},"instruction":{"kind":"string","value":"Enter 4:58 PM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"16:58"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2197,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter 8:08 AM as the time
, "},"instruction":{"kind":"string","value":"Enter 8:08 AM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"08:08"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2198,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Enter 9:13 PM as the time
, "},"instruction":{"kind":"string","value":"Enter 9:13 PM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"21:13"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2199,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter 2:56 AM as the time
, "},"instruction":{"kind":"string","value":"Enter 2:56 AM as the time"},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"02:56"},"subtask_completion":{"kind":"string","value":"stop"}}}],"truncated":false,"partial":false},"paginationData":{"pageIndex":21,"numItemsPerPage":100,"numTotalItems":40186,"offset":2100,"length":100}},"jwt":"eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sImlhdCI6MTc1ODQwODQ2Niwic3ViIjoiL2RhdGFzZXRzL0x1Y2FzVGhpbC9taW5pd29iX3BsdXNwbHVzX2hpZXJhcmNoaWNhbF90cmFpbmluZ19hY3Rpb25zX2RyYWluIiwiZXhwIjoxNzU4NDEyMDY2LCJpc3MiOiJodHRwczovL2h1Z2dpbmdmYWNlLmNvIn0.jjpTgJmkeQRS5XWLI-XIuW8GJXF5Jb2z1K0e9ilqw0nye4YewnpqdejnHspwvICdu3okMvn7V8CxH_TxShvYBQ","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
forward Pia\s email to Kristy <body ref="11"><div id="wrap" ref="3"><div id="area" ref="9"><div id="forward" ref="12"><div id="forward-bar" ref="1"><span id="close-forward" ref="7"></span><span id="send-forward" ref="2"></span></div><div classes="forward-header" ref="13"><div classes="forward-info" ref="14"><label ref="8" text="to:"></label><input_text classes="forward-sender" ref="6"></input_text></div><div classes="forward-subject" ref="5"><label ref="10" text="subject:"></label><t ref="-28" text="senectus vitae."></t></div></div><div classes="forward-body" ref="4"><textarea id="forward-text" ref="15" value="quis lobortis eget elit,. sit."></textarea></div></div></div></div></body>,
forward Pia\s email to Kristy
click
6
null
continue
{click,6,} forward Pia\s email to Kristy <body ref="11"><div id="wrap" ref="3"><div id="area" ref="9"><div id="forward" ref="12"><div id="forward-bar" ref="1"><span id="close-forward" ref="7"></span><span id="send-forward" ref="2"></span></div><div classes="forward-header" ref="13"><div classes="forward-info" ref="14"><label ref="8" text="to:"></label><input_text classes="forward-sender" ref="6"></input_text></div><div classes="forward-subject" ref="5"><label ref="10" text="subject:"></label><t ref="-30" text="senectus vitae."></t></div></div><div classes="forward-body" ref="4"><textarea id="forward-text" ref="15" value="quis lobortis eget elit,. sit."></textarea></div></div></div></div></body>,
forward Pia\s email to Kristy
keydown
6
kristy
stop
Susanne\s email, will you forward that to Lona? <body ref="2"><div id="wrap" ref="14"><div id="area" ref="7"><div id="forward" ref="13"><div id="forward-bar" ref="6"><span id="close-forward" ref="3"></span><span id="send-forward" ref="9"></span></div><div classes="forward-header" ref="4"><div classes="forward-info" ref="5"><label ref="12" text="to:"></label><input_text classes="forward-sender" ref="15"></input_text></div><div classes="forward-subject" ref="11"><label ref="1" text="subject:"></label><t ref="-6" text="tristique laoreet."></t></div></div><div classes="forward-body" ref="10"><textarea id="forward-text" ref="8" value="dui lobortis libero tempor, vel faucibus."></textarea></div></div></div></div></body>,
Susanne\s email, will you forward that to Lona?
click
15
null
continue
{click,15,} Susanne\s email, will you forward that to Lona? <body ref="2"><div id="wrap" ref="14"><div id="area" ref="7"><div id="forward" ref="13"><div id="forward-bar" ref="6"><span id="close-forward" ref="3"></span><span id="send-forward" ref="9"></span></div><div classes="forward-header" ref="4"><div classes="forward-info" ref="5"><label ref="12" text="to:"></label><input_text classes="forward-sender" ref="15"></input_text></div><div classes="forward-subject" ref="11"><label ref="1" text="subject:"></label><t ref="-8" text="tristique laoreet."></t></div></div><div classes="forward-body" ref="10"><textarea id="forward-text" ref="8" value="dui lobortis libero tempor, vel faucibus."></textarea></div></div></div></div></body>,
Susanne\s email, will you forward that to Lona?
keydown
15
lona
stop
Find the email from Candi and forward it to Zilvia. <body ref="12"><div id="wrap" ref="9"><div id="area" ref="8"><div id="forward" ref="7"><div id="forward-bar" ref="4"><span id="close-forward" ref="2"></span><span id="send-forward" ref="14"></span></div><div classes="forward-header" ref="5"><div classes="forward-info" ref="10"><label ref="1" text="to:"></label><input_text classes="forward-sender" ref="3"></input_text></div><div classes="forward-subject" ref="11"><label ref="13" text="subject:"></label><t ref="-6" text="viverra sed."></t></div></div><div classes="forward-body" ref="15"><textarea id="forward-text" ref="6" value="non egestas in et. in in ac."></textarea></div></div></div></div></body>,
Find the email from Candi and forward it to Zilvia.
click
3
null
continue
{click,3,} Find the email from Candi and forward it to Zilvia. <body ref="12"><div id="wrap" ref="9"><div id="area" ref="8"><div id="forward" ref="7"><div id="forward-bar" ref="4"><span id="close-forward" ref="2"></span><span id="send-forward" ref="14"></span></div><div classes="forward-header" ref="5"><div classes="forward-info" ref="10"><label ref="1" text="to:"></label><input_text classes="forward-sender" ref="3"></input_text></div><div classes="forward-subject" ref="11"><label ref="13" text="subject:"></label><t ref="-8" text="viverra sed."></t></div></div><div classes="forward-body" ref="15"><textarea id="forward-text" ref="6" value="non egestas in et. in in ac."></textarea></div></div></div></div></body>,
Find the email from Candi and forward it to Zilvia.
keydown
3
zilvia
stop
Give Janean the email from Helyn. <body ref="25"><div id="wrap" ref="27"><div id="area" ref="64"><div id="forward" ref="53"><div id="forward-bar" ref="82"><span id="close-forward" ref="37"></span><span id="send-forward" ref="78"></span></div><div classes="forward-header" ref="111"><div classes="forward-info" ref="113"><label ref="28" text="to:"></label><input_text classes="forward-sender" ref="2"></input_text></div><div classes="forward-subject" ref="44"><label ref="79" text="subject:"></label><t ref="-6" text="proin."></t></div></div><div classes="forward-body" ref="29"><textarea id="forward-text" ref="102" value="justo, sollicitudin iaculis adipiscing. integer."></textarea></div></div></div></div></body>,
Give Janean the email from Helyn.
click
2
null
continue
{click,2,} Give Janean the email from Helyn. <body ref="25"><div id="wrap" ref="27"><div id="area" ref="64"><div id="forward" ref="53"><div id="forward-bar" ref="82"><span id="close-forward" ref="37"></span><span id="send-forward" ref="78"></span></div><div classes="forward-header" ref="111"><div classes="forward-info" ref="113"><label ref="28" text="to:"></label><input_text classes="forward-sender" ref="2"></input_text></div><div classes="forward-subject" ref="44"><label ref="79" text="subject:"></label><t ref="-8" text="proin."></t></div></div><div classes="forward-body" ref="29"><textarea id="forward-text" ref="102" value="justo, sollicitudin iaculis adipiscing. integer."></textarea></div></div></div></div></body>,
Give Janean the email from Helyn.
keydown
2
janean
stop
Let me send Nedi\s email to Gavrielle. <body ref="5"><div id="wrap" ref="15"><div id="area" ref="6"><div id="forward" ref="14"><div id="forward-bar" ref="4"><span id="close-forward" ref="7"></span><span id="send-forward" ref="13"></span></div><div classes="forward-header" ref="1"><div classes="forward-info" ref="9"><label ref="11" text="to:"></label><input_text classes="forward-sender" ref="12"></input_text></div><div classes="forward-subject" ref="10"><label ref="8" text="subject:"></label><t ref="-6" text="tellus."></t></div></div><div classes="forward-body" ref="3"><textarea id="forward-text" ref="2" value="tristique velit. auctor proin quis."></textarea></div></div></div></div></body>,
Let me send Nedi\s email to Gavrielle.
click
12
null
continue
{click,12,} Let me send Nedi\s email to Gavrielle. <body ref="5"><div id="wrap" ref="15"><div id="area" ref="6"><div id="forward" ref="14"><div id="forward-bar" ref="4"><span id="close-forward" ref="7"></span><span id="send-forward" ref="13"></span></div><div classes="forward-header" ref="1"><div classes="forward-info" ref="9"><label ref="11" text="to:"></label><input_text classes="forward-sender" ref="12"></input_text></div><div classes="forward-subject" ref="10"><label ref="8" text="subject:"></label><t ref="-8" text="tellus."></t></div></div><div classes="forward-body" ref="3"><textarea id="forward-text" ref="2" value="tristique velit. auctor proin quis."></textarea></div></div></div></div></body>,
Let me send Nedi\s email to Gavrielle.
keydown
12
gavrielle
stop
Find Carine\s email, forward to Emmey <body ref="4"><div id="wrap" ref="38"><div id="area" ref="52"><div id="forward" ref="9"><div id="forward-bar" ref="48"><span id="close-forward" ref="43"></span><span id="send-forward" ref="13"></span></div><div classes="forward-header" ref="10"><div classes="forward-info" ref="23"><label ref="17" text="to:"></label><input_text classes="forward-sender" ref="25"></input_text></div><div classes="forward-subject" ref="19"><label ref="61" text="subject:"></label><t ref="-12" text="varius."></t></div></div><div classes="forward-body" ref="36"><textarea id="forward-text" ref="56" value="gravida morbi nisi in nunc,. tortor massa, ultricies eu libero. dictum scelerisque sed."></textarea></div></div></div></div></body>,
Find Carine\s email, forward to Emmey
click
25
null
continue
{click,25,} Find Carine\s email, forward to Emmey <body ref="4"><div id="wrap" ref="38"><div id="area" ref="52"><div id="forward" ref="9"><div id="forward-bar" ref="48"><span id="close-forward" ref="43"></span><span id="send-forward" ref="13"></span></div><div classes="forward-header" ref="10"><div classes="forward-info" ref="23"><label ref="17" text="to:"></label><input_text classes="forward-sender" ref="25"></input_text></div><div classes="forward-subject" ref="19"><label ref="61" text="subject:"></label><t ref="-14" text="varius."></t></div></div><div classes="forward-body" ref="36"><textarea id="forward-text" ref="56" value="gravida morbi nisi in nunc,. tortor massa, ultricies eu libero. dictum scelerisque sed."></textarea></div></div></div></div></body>,
Find Carine\s email, forward to Emmey
keydown
25
emmey
stop
Please reply to the email from Dinnie with "Enim facilisi.". <body ref="3"><div id="wrap" ref="11"><div id="area" ref="1"><div id="reply" ref="13"><div id="reply-bar" ref="2"><span id="close-reply" ref="5"></span><span id="send-reply" ref="7"></span></div><div classes="reply-header" ref="9"><div classes="reply-info" ref="6"><label classes="reply-to" ref="10" text="to:"></label><span classes="reply-sender" ref="4" text="dinnie"></span></div><div classes="reply-subject" ref="8"><label classes="reply-subj" ref="12" text="subject:"></label><t ref="-6" text="re: arcu."></t></div></div><div classes="reply-body" ref="15"><textarea id="reply-text" ref="14"></textarea></div></div></div></div></body>,
Please reply to the email from Dinnie with "Enim facilisi.".
click
14
null
continue
{click,14,} Please reply to the email from Dinnie with "Enim facilisi.". <body ref="3"><div id="wrap" ref="11"><div id="area" ref="1"><div id="reply" ref="13"><div id="reply-bar" ref="2"><span id="close-reply" ref="5"></span><span id="send-reply" ref="7"></span></div><div classes="reply-header" ref="9"><div classes="reply-info" ref="6"><label classes="reply-to" ref="10" text="to:"></label><span classes="reply-sender" ref="4" text="dinnie"></span></div><div classes="reply-subject" ref="8"><label classes="reply-subj" ref="12" text="subject:"></label><t ref="-66" text="re: arcu."></t></div></div><div classes="reply-body" ref="15"><textarea id="reply-text" ref="14"></textarea></div></div></div></div></body>,
Please reply to the email from Dinnie with "Enim facilisi.".
keydown
14
enim facilis
stop
Send Myrlene a text, "Accumsan ut quis fermentum." <body ref="13"><div id="wrap" ref="7"><div id="area" ref="11"><div id="reply" ref="12"><div id="reply-bar" ref="1"><span id="close-reply" ref="8"></span><span id="send-reply" ref="14"></span></div><div classes="reply-header" ref="5"><div classes="reply-info" ref="6"><label classes="reply-to" ref="4" text="to:"></label><span classes="reply-sender" ref="9" text="myrlene"></span></div><div classes="reply-subject" ref="3"><label classes="reply-subj" ref="10" text="subject:"></label><t ref="-6" text="re: morbi."></t></div></div><div classes="reply-body" ref="15"><textarea id="reply-text" ref="2"></textarea></div></div></div></div></body>,
Send Myrlene a text, "Accumsan ut quis fermentum."
click
2
null
continue
{click,2,} Send Myrlene a text, "Accumsan ut quis fermentum." <body ref="13"><div id="wrap" ref="7"><div id="area" ref="11"><div id="reply" ref="12"><div id="reply-bar" ref="1"><span id="close-reply" ref="8"></span><span id="send-reply" ref="14"></span></div><div classes="reply-header" ref="5"><div classes="reply-info" ref="6"><label classes="reply-to" ref="4" text="to:"></label><span classes="reply-sender" ref="9" text="myrlene"></span></div><div classes="reply-subject" ref="3"><label classes="reply-subj" ref="10" text="subject:"></label><t ref="-8" text="re: morbi."></t></div></div><div classes="reply-body" ref="15"><textarea id="reply-text" ref="2"></textarea></div></div></div></div></body>,
Send Myrlene a text, "Accumsan ut quis fermentum."
keydown
2
accumsan ut quis fermentum.
stop
Find the email from Oralla and forward it to Clarice. <body ref="46"><div id="wrap" ref="8"><div id="area" ref="21"><div id="forward" ref="19"><div id="forward-bar" ref="37"><span id="close-forward" ref="23"></span><span id="send-forward" ref="25"></span></div><div classes="forward-header" ref="54"><div classes="forward-info" ref="38"><label ref="2" text="to:"></label><input_text classes="forward-sender" ref="13"></input_text></div><div classes="forward-subject" ref="16"><label ref="1" text="subject:"></label><t ref="-6" text="felis, nullam."></t></div></div><div classes="forward-body" ref="28"><textarea id="forward-text" ref="36" value="facilisi tincidunt. urna quam dictumst."></textarea></div></div></div></div></body>,
Find the email from Oralla and forward it to Clarice.
click
13
null
continue
{click,13,} Find the email from Oralla and forward it to Clarice. <body ref="46"><div id="wrap" ref="8"><div id="area" ref="21"><div id="forward" ref="19"><div id="forward-bar" ref="37"><span id="close-forward" ref="23"></span><span id="send-forward" ref="25"></span></div><div classes="forward-header" ref="54"><div classes="forward-info" ref="38"><label ref="2" text="to:"></label><input_text classes="forward-sender" ref="13"></input_text></div><div classes="forward-subject" ref="16"><label ref="1" text="subject:"></label><t ref="-8" text="felis, nullam."></t></div></div><div classes="forward-body" ref="28"><textarea id="forward-text" ref="36" value="facilisi tincidunt. urna quam dictumst."></textarea></div></div></div></div></body>,
Find the email from Oralla and forward it to Clarice.
keydown
13
clarice
stop
Will you respond to Jacenta\s email and tell him that it "Nec fames. Eget."? <body ref="9"><div id="wrap" ref="7"><div id="area" ref="1"><div id="reply" ref="10"><div id="reply-bar" ref="6"><span id="close-reply" ref="13"></span><span id="send-reply" ref="12"></span></div><div classes="reply-header" ref="2"><div classes="reply-info" ref="8"><label classes="reply-to" ref="11" text="to:"></label><span classes="reply-sender" ref="14" text="jacenta"></span></div><div classes="reply-subject" ref="3"><label classes="reply-subj" ref="5" text="subject:"></label><t ref="-20" text="re: et lorem."></t></div></div><div classes="reply-body" ref="4"><textarea id="reply-text" ref="15"></textarea></div></div></div></div></body>,
Will you respond to Jacenta\s email and tell him that it "Nec fames. Eget."?
click
15
null
continue
{click,15,} Will you respond to Jacenta\s email and tell him that it "Nec fames. Eget."? <body ref="9"><div id="wrap" ref="7"><div id="area" ref="1"><div id="reply" ref="10"><div id="reply-bar" ref="6"><span id="close-reply" ref="13"></span><span id="send-reply" ref="12"></span></div><div classes="reply-header" ref="2"><div classes="reply-info" ref="8"><label classes="reply-to" ref="11" text="to:"></label><span classes="reply-sender" ref="14" text="jacenta"></span></div><div classes="reply-subject" ref="3"><label classes="reply-subj" ref="5" text="subject:"></label><t ref="-22" text="re: et lorem."></t></div></div><div classes="reply-body" ref="4"><textarea id="reply-text" ref="15"></textarea></div></div></div></div></body>,
Will you respond to Jacenta\s email and tell him that it "Nec fames. Eget."?
keydown
15
nec fames. eget.
stop
Forward Dasi the latest email from Maggy. <body ref="68"><div id="wrap" ref="48"><div id="area" ref="82"><div id="forward" ref="71"><div id="forward-bar" ref="66"><span id="close-forward" ref="57"></span><span id="send-forward" ref="17"></span></div><div classes="forward-header" ref="30"><div classes="forward-info" ref="36"><label ref="29" text="to:"></label><input_text classes="forward-sender" ref="73"></input_text></div><div classes="forward-subject" ref="74"><label ref="18" text="subject:"></label><t ref="-6" text="massa eleifend."></t></div></div><div classes="forward-body" ref="35"><textarea id="forward-text" ref="22" value="sit. id eget morbi. bibendum aliquam ullamcorper habitant erat."></textarea></div></div></div></div></body>,
Forward Dasi the latest email from Maggy.
click
73
null
continue
{click,73,} Forward Dasi the latest email from Maggy. <body ref="68"><div id="wrap" ref="48"><div id="area" ref="82"><div id="forward" ref="71"><div id="forward-bar" ref="66"><span id="close-forward" ref="57"></span><span id="send-forward" ref="17"></span></div><div classes="forward-header" ref="30"><div classes="forward-info" ref="36"><label ref="29" text="to:"></label><input_text classes="forward-sender" ref="73"></input_text></div><div classes="forward-subject" ref="74"><label ref="18" text="subject:"></label><t ref="-8" text="massa eleifend."></t></div></div><div classes="forward-body" ref="35"><textarea id="forward-text" ref="22" value="sit. id eget morbi. bibendum aliquam ullamcorper habitant erat."></textarea></div></div></div></div></body>,
Forward Dasi the latest email from Maggy.
keydown
73
dasi
stop
Forward all messages from Letisha to Carol. <body ref="10"><div id="wrap" ref="15"><div id="area" ref="7"><div id="forward" ref="5"><div id="forward-bar" ref="9"><span id="close-forward" ref="2"></span><span id="send-forward" ref="11"></span></div><div classes="forward-header" ref="3"><div classes="forward-info" ref="1"><label ref="12" text="to:"></label><input_text classes="forward-sender" ref="4"></input_text></div><div classes="forward-subject" ref="6"><label ref="14" text="subject:"></label><t ref="-6" text="tincidunt."></t></div></div><div classes="forward-body" ref="8"><textarea id="forward-text" ref="13" value="habitant urna in dolor a duis vel non condimentum praesent ut enim consectetur."></textarea></div></div></div></div></body>,
Forward all messages from Letisha to Carol.
click
4
null
continue
{click,4,} Forward all messages from Letisha to Carol. <body ref="10"><div id="wrap" ref="15"><div id="area" ref="7"><div id="forward" ref="5"><div id="forward-bar" ref="9"><span id="close-forward" ref="2"></span><span id="send-forward" ref="11"></span></div><div classes="forward-header" ref="3"><div classes="forward-info" ref="1"><label ref="12" text="to:"></label><input_text classes="forward-sender" ref="4"></input_text></div><div classes="forward-subject" ref="6"><label ref="14" text="subject:"></label><t ref="-8" text="tincidunt."></t></div></div><div classes="forward-body" ref="8"><textarea id="forward-text" ref="13" value="habitant urna in dolor a duis vel non condimentum praesent ut enim consectetur."></textarea></div></div></div></div></body>,
Forward all messages from Letisha to Carol.
keydown
4
carol
stop
Open Gunilla\s latest email and forward it to Margarette. <body ref="1"><div id="wrap" ref="2"><div id="area" ref="3"><div id="forward" ref="15"><div id="forward-bar" ref="9"><span id="close-forward" ref="13"></span><span id="send-forward" ref="10"></span></div><div classes="forward-header" ref="6"><div classes="forward-info" ref="14"><label ref="12" text="to:"></label><input_text classes="forward-sender" ref="8"></input_text></div><div classes="forward-subject" ref="7"><label ref="11" text="subject:"></label><t ref="-6" text="lacus, leo."></t></div></div><div classes="forward-body" ref="5"><textarea id="forward-text" ref="4" value="dolor ultricies quam quis vivamus placerat eget pharetra rhoncus proin non libero. rhoncus."></textarea></div></div></div></div></body>,
Open Gunilla\s latest email and forward it to Margarette.
click
8
null
continue
{click,8,} Open Gunilla\s latest email and forward it to Margarette. <body ref="1"><div id="wrap" ref="2"><div id="area" ref="3"><div id="forward" ref="15"><div id="forward-bar" ref="9"><span id="close-forward" ref="13"></span><span id="send-forward" ref="10"></span></div><div classes="forward-header" ref="6"><div classes="forward-info" ref="14"><label ref="12" text="to:"></label><input_text classes="forward-sender" ref="8"></input_text></div><div classes="forward-subject" ref="7"><label ref="11" text="subject:"></label><t ref="-8" text="lacus, leo."></t></div></div><div classes="forward-body" ref="5"><textarea id="forward-text" ref="4" value="dolor ultricies quam quis vivamus placerat eget pharetra rhoncus proin non libero. rhoncus."></textarea></div></div></div></div></body>,
Open Gunilla\s latest email and forward it to Margarette.
keydown
8
margarette
stop
forward Peri\s email to Bekki <body ref="12"><div id="wrap" ref="13"><div id="area" ref="5"><div id="forward" ref="11"><div id="forward-bar" ref="7"><span id="close-forward" ref="14"></span><span id="send-forward" ref="10"></span></div><div classes="forward-header" ref="4"><div classes="forward-info" ref="9"><label ref="15" text="to:"></label><input_text classes="forward-sender" ref="1"></input_text></div><div classes="forward-subject" ref="2"><label ref="6" text="subject:"></label><t ref="-6" text="elementum et."></t></div></div><div classes="forward-body" ref="8"><textarea id="forward-text" ref="3" value="metus etiam malesuada id vitae."></textarea></div></div></div></div></body>,
forward Peri\s email to Bekki
click
1
null
continue
{click,1,} forward Peri\s email to Bekki <body ref="12"><div id="wrap" ref="13"><div id="area" ref="5"><div id="forward" ref="11"><div id="forward-bar" ref="7"><span id="close-forward" ref="14"></span><span id="send-forward" ref="10"></span></div><div classes="forward-header" ref="4"><div classes="forward-info" ref="9"><label ref="15" text="to:"></label><input_text classes="forward-sender" ref="1"></input_text></div><div classes="forward-subject" ref="2"><label ref="6" text="subject:"></label><t ref="-8" text="elementum et."></t></div></div><div classes="forward-body" ref="8"><textarea id="forward-text" ref="3" value="metus etiam malesuada id vitae."></textarea></div></div></div></div></body>,
forward Peri\s email to Bekki
keydown
1
bekki
stop
Open Jonis\s email and forward it to Brooke <body ref="35"><div id="wrap" ref="33"><div id="area" ref="39"><div id="forward" ref="50"><div id="forward-bar" ref="37"><span id="close-forward" ref="21"></span><span id="send-forward" ref="46"></span></div><div classes="forward-header" ref="20"><div classes="forward-info" ref="30"><label ref="6" text="to:"></label><input_text classes="forward-sender" ref="27"></input_text></div><div classes="forward-subject" ref="31"><label ref="38" text="subject:"></label><t ref="-6" text="a eget."></t></div></div><div classes="forward-body" ref="28"><textarea id="forward-text" ref="4" value="morbi eu, aliquet cras ut. cursus et ut euismod eu. porttitor dui."></textarea></div></div></div></div></body>,
Open Jonis\s email and forward it to Brooke
click
27
null
continue
{click,27,} Open Jonis\s email and forward it to Brooke <body ref="35"><div id="wrap" ref="33"><div id="area" ref="39"><div id="forward" ref="50"><div id="forward-bar" ref="37"><span id="close-forward" ref="21"></span><span id="send-forward" ref="46"></span></div><div classes="forward-header" ref="20"><div classes="forward-info" ref="30"><label ref="6" text="to:"></label><input_text classes="forward-sender" ref="27"></input_text></div><div classes="forward-subject" ref="31"><label ref="38" text="subject:"></label><t ref="-8" text="a eget."></t></div></div><div classes="forward-body" ref="28"><textarea id="forward-text" ref="4" value="morbi eu, aliquet cras ut. cursus et ut euismod eu. porttitor dui."></textarea></div></div></div></div></body>,
Open Jonis\s email and forward it to Brooke
keydown
27
brooke
stop
search contact Noreen and text him "Nibh bibendum. Sed." <body ref="5"><div id="wrap" ref="10"><div id="area" ref="15"><div id="reply" ref="2"><div id="reply-bar" ref="3"><span id="close-reply" ref="14"></span><span id="send-reply" ref="1"></span></div><div classes="reply-header" ref="9"><div classes="reply-info" ref="11"><label classes="reply-to" ref="4" text="to:"></label><span classes="reply-sender" ref="6" text="noreen"></span></div><div classes="reply-subject" ref="13"><label classes="reply-subj" ref="12" text="subject:"></label><t ref="-6" text="re: massa pellentesque."></t></div></div><div classes="reply-body" ref="8"><textarea id="reply-text" ref="7"></textarea></div></div></div></div></body>,
search contact Noreen and text him "Nibh bibendum. Sed."
click
7
null
continue
{click,7,} search contact Noreen and text him "Nibh bibendum. Sed." <body ref="5"><div id="wrap" ref="10"><div id="area" ref="15"><div id="reply" ref="2"><div id="reply-bar" ref="3"><span id="close-reply" ref="14"></span><span id="send-reply" ref="1"></span></div><div classes="reply-header" ref="9"><div classes="reply-info" ref="11"><label classes="reply-to" ref="4" text="to:"></label><span classes="reply-sender" ref="6" text="noreen"></span></div><div classes="reply-subject" ref="13"><label classes="reply-subj" ref="12" text="subject:"></label><t ref="-8" text="re: massa pellentesque."></t></div></div><div classes="reply-body" ref="8"><textarea id="reply-text" ref="7"></textarea></div></div></div></div></body>,
search contact Noreen and text him "Nibh bibendum. Sed."
keydown
7
null
stop
Send Shanda the last email from Anita <body ref="33"><div id="wrap" ref="19"><div id="area" ref="20"><div id="forward" ref="17"><div id="forward-bar" ref="10"><span id="close-forward" ref="31"></span><span id="send-forward" ref="46"></span></div><div classes="forward-header" ref="25"><div classes="forward-info" ref="32"><label ref="75" text="to:"></label><input_text classes="forward-sender" ref="72"></input_text></div><div classes="forward-subject" ref="58"><label ref="62" text="subject:"></label><t ref="-6" text="et leo."></t></div></div><div classes="forward-body" ref="51"><textarea id="forward-text" ref="24" value="mi felis, nisi, lacus. tellus. vitae sollicitudin. enim lectus. quis ut nulla nulla nulla."></textarea></div></div></div></div></body>,
Send Shanda the last email from Anita
click
72
null
continue
{click,72,} Send Shanda the last email from Anita <body ref="33"><div id="wrap" ref="19"><div id="area" ref="20"><div id="forward" ref="17"><div id="forward-bar" ref="10"><span id="close-forward" ref="31"></span><span id="send-forward" ref="46"></span></div><div classes="forward-header" ref="25"><div classes="forward-info" ref="32"><label ref="75" text="to:"></label><input_text classes="forward-sender" ref="72"></input_text></div><div classes="forward-subject" ref="58"><label ref="62" text="subject:"></label><t ref="-8" text="et leo."></t></div></div><div classes="forward-body" ref="51"><textarea id="forward-text" ref="24" value="mi felis, nisi, lacus. tellus. vitae sollicitudin. enim lectus. quis ut nulla nulla nulla."></textarea></div></div></div></div></body>,
Send Shanda the last email from Anita
keydown
72
shanda
stop
Send Tersina the last email from Stephanie <body ref="14"><div id="wrap" ref="2"><div id="area" ref="12"><div id="forward" ref="9"><div id="forward-bar" ref="10"><span id="close-forward" ref="5"></span><span id="send-forward" ref="11"></span></div><div classes="forward-header" ref="6"><div classes="forward-info" ref="4"><label ref="15" text="to:"></label><input_text classes="forward-sender" ref="3"></input_text></div><div classes="forward-subject" ref="13"><label ref="1" text="subject:"></label><t ref="-6" text="scelerisque."></t></div></div><div classes="forward-body" ref="8"><textarea id="forward-text" ref="7" value="maecenas. nibh aliquam dignissim feugiat. sit eget habitant dignissim."></textarea></div></div></div></div></body>,
Send Tersina the last email from Stephanie
click
3
null
continue
{click,3,} Send Tersina the last email from Stephanie <body ref="14"><div id="wrap" ref="2"><div id="area" ref="12"><div id="forward" ref="9"><div id="forward-bar" ref="10"><span id="close-forward" ref="5"></span><span id="send-forward" ref="11"></span></div><div classes="forward-header" ref="6"><div classes="forward-info" ref="4"><label ref="15" text="to:"></label><input_text classes="forward-sender" ref="3"></input_text></div><div classes="forward-subject" ref="13"><label ref="1" text="subject:"></label><t ref="-8" text="scelerisque."></t></div></div><div classes="forward-body" ref="8"><textarea id="forward-text" ref="7" value="maecenas. nibh aliquam dignissim feugiat. sit eget habitant dignissim."></textarea></div></div></div></div></body>,
Send Tersina the last email from Stephanie
keydown
3
tersina
stop
Can you please retrieve an email I received from Nalani and forward it to Kacy? <body ref="9"><div id="wrap" ref="11"><div id="area" ref="14"><div id="forward" ref="6"><div id="forward-bar" ref="4"><span id="close-forward" ref="15"></span><span id="send-forward" ref="2"></span></div><div classes="forward-header" ref="3"><div classes="forward-info" ref="1"><label ref="10" text="to:"></label><input_text classes="forward-sender" ref="5"></input_text></div><div classes="forward-subject" ref="8"><label ref="13" text="subject:"></label><t ref="-6" text="leo dignissim."></t></div></div><div classes="forward-body" ref="7"><textarea id="forward-text" ref="12" value="sodales ridiculus egestas in ornare."></textarea></div></div></div></div></body>,
Can you please retrieve an email I received from Nalani and forward it to Kacy?
click
5
null
continue
{click,5,} Can you please retrieve an email I received from Nalani and forward it to Kacy? <body ref="9"><div id="wrap" ref="11"><div id="area" ref="14"><div id="forward" ref="6"><div id="forward-bar" ref="4"><span id="close-forward" ref="15"></span><span id="send-forward" ref="2"></span></div><div classes="forward-header" ref="3"><div classes="forward-info" ref="1"><label ref="10" text="to:"></label><input_text classes="forward-sender" ref="5"></input_text></div><div classes="forward-subject" ref="8"><label ref="13" text="subject:"></label><t ref="-8" text="leo dignissim."></t></div></div><div classes="forward-body" ref="7"><textarea id="forward-text" ref="12" value="sodales ridiculus egestas in ornare."></textarea></div></div></div></div></body>,
Can you please retrieve an email I received from Nalani and forward it to Kacy?
keydown
5
kacy
stop
Please reply to the email from Pris with "Sed est.". <body ref="1"><div id="wrap" ref="9"><div id="area" ref="15"><div id="reply" ref="2"><div id="reply-bar" ref="12"><span id="close-reply" ref="8"></span><span id="send-reply" ref="7"></span></div><div classes="reply-header" ref="10"><div classes="reply-info" ref="14"><label classes="reply-to" ref="6" text="to:"></label><span classes="reply-sender" ref="11" text="pris"></span></div><div classes="reply-subject" ref="5"><label classes="reply-subj" ref="3" text="subject:"></label><t ref="-6" text="re: cras. eu."></t></div></div><div classes="reply-body" ref="13"><textarea id="reply-text" ref="4"></textarea></div></div></div></div></body>,
Please reply to the email from Pris with "Sed est.".
click
4
null
continue
{click,4,} Please reply to the email from Pris with "Sed est.". <body ref="1"><div id="wrap" ref="9"><div id="area" ref="15"><div id="reply" ref="2"><div id="reply-bar" ref="12"><span id="close-reply" ref="8"></span><span id="send-reply" ref="7"></span></div><div classes="reply-header" ref="10"><div classes="reply-info" ref="14"><label classes="reply-to" ref="6" text="to:"></label><span classes="reply-sender" ref="11" text="pris"></span></div><div classes="reply-subject" ref="5"><label classes="reply-subj" ref="3" text="subject:"></label><t ref="-8" text="re: cras. eu."></t></div></div><div classes="reply-body" ref="13"><textarea id="reply-text" ref="4"></textarea></div></div></div></div></body>,
Please reply to the email from Pris with "Sed est.".
keydown
4
sed est
stop
I want to send Rebbecca the e-mail that I got from Estrellita. <body ref="25"><div id="wrap" ref="14"><div id="area" ref="53"><div id="forward" ref="3"><div id="forward-bar" ref="51"><span id="close-forward" ref="16"></span><span id="send-forward" ref="52"></span></div><div classes="forward-header" ref="50"><div classes="forward-info" ref="26"><label ref="42" text="to:"></label><input_text classes="forward-sender" ref="47"></input_text></div><div classes="forward-subject" ref="37"><label ref="48" text="subject:"></label><t ref="-6" text="at."></t></div></div><div classes="forward-body" ref="40"><textarea id="forward-text" ref="49" value="nisl et eget sem risus neque."></textarea></div></div></div></div></body>,
I want to send Rebbecca the e-mail that I got from Estrellita.
click
47
null
continue
{click,47,} I want to send Rebbecca the e-mail that I got from Estrellita. <body ref="25"><div id="wrap" ref="14"><div id="area" ref="53"><div id="forward" ref="3"><div id="forward-bar" ref="51"><span id="close-forward" ref="16"></span><span id="send-forward" ref="52"></span></div><div classes="forward-header" ref="50"><div classes="forward-info" ref="26"><label ref="42" text="to:"></label><input_text classes="forward-sender" ref="47"></input_text></div><div classes="forward-subject" ref="37"><label ref="48" text="subject:"></label><t ref="-34" text="at."></t></div></div><div classes="forward-body" ref="40"><textarea id="forward-text" ref="49" value="nisl et eget sem risus neque."></textarea></div></div></div></div></body>,
I want to send Rebbecca the e-mail that I got from Estrellita.
click
47
null
stop
Find Agneta\s e-mail and reply with the words "Varius tellus." <body ref="87"><div id="wrap" ref="3"><div id="area" ref="53"><div id="reply" ref="56"><div id="reply-bar" ref="15"><span id="close-reply" ref="59"></span><span id="send-reply" ref="81"></span></div><div classes="reply-header" ref="7"><div classes="reply-info" ref="44"><label classes="reply-to" ref="87" text="to:"></label><span classes="reply-sender" ref="3" text="agneta"></span></div><div classes="reply-subject" ref="53"><label classes="reply-subj" ref="62" text="subject:"></label><t ref="-12" text="re: massa."></t></div></div><div classes="reply-body" ref="4"><textarea id="reply-text" ref="75"></textarea></div></div></div></div></body>,
Find Agneta\s e-mail and reply with the words "Varius tellus."
click
75
null
continue
{click,75,} Find Agneta\s e-mail and reply with the words "Varius tellus." <body ref="87"><div id="wrap" ref="3"><div id="area" ref="53"><div id="reply" ref="56"><div id="reply-bar" ref="15"><span id="close-reply" ref="59"></span><span id="send-reply" ref="81"></span></div><div classes="reply-header" ref="7"><div classes="reply-info" ref="44"><label classes="reply-to" ref="87" text="to:"></label><span classes="reply-sender" ref="3" text="agneta"></span></div><div classes="reply-subject" ref="53"><label classes="reply-subj" ref="62" text="subject:"></label><t ref="-14" text="re: massa."></t></div></div><div classes="reply-body" ref="4"><textarea id="reply-text" ref="75"></textarea></div></div></div></div></body>,
Find Agneta\s e-mail and reply with the words "Varius tellus."
keydown
75
varius tellus.
stop
Please send Rachele\s email to Elysha. <body ref="58"><div id="wrap" ref="63"><div id="area" ref="32"><div id="forward" ref="51"><div id="forward-bar" ref="18"><span id="close-forward" ref="28"></span><span id="send-forward" ref="4"></span></div><div classes="forward-header" ref="31"><div classes="forward-info" ref="26"><label ref="6" text="to:"></label><input_text classes="forward-sender" ref="52"></input_text></div><div classes="forward-subject" ref="21"><label ref="46" text="subject:"></label><t ref="-26" text="nulla nullam."></t></div></div><div classes="forward-body" ref="29"><textarea id="forward-text" ref="13" value="in convallis sit pharetra lacus, mi. sem."></textarea></div></div></div></div></body>,
Please send Rachele\s email to Elysha.
click
52
null
continue
{click,52,} Please send Rachele\s email to Elysha. <body ref="58"><div id="wrap" ref="63"><div id="area" ref="32"><div id="forward" ref="51"><div id="forward-bar" ref="18"><span id="close-forward" ref="28"></span><span id="send-forward" ref="4"></span></div><div classes="forward-header" ref="31"><div classes="forward-info" ref="26"><label ref="6" text="to:"></label><input_text classes="forward-sender" ref="52"></input_text></div><div classes="forward-subject" ref="21"><label ref="46" text="subject:"></label><t ref="-28" text="nulla nullam."></t></div></div><div classes="forward-body" ref="29"><textarea id="forward-text" ref="13" value="in convallis sit pharetra lacus, mi. sem."></textarea></div></div></div></div></body>,
Please send Rachele\s email to Elysha.
keydown
52
elysha
stop
Find Antoinette\s email and reply "Diam fames.". <body ref="2"><div id="wrap" ref="10"><div id="area" ref="6"><div id="reply" ref="13"><div id="reply-bar" ref="12"><span id="close-reply" ref="14"></span><span id="send-reply" ref="8"></span></div><div classes="reply-header" ref="4"><div classes="reply-info" ref="3"><label classes="reply-to" ref="11" text="to:"></label><span classes="reply-sender" ref="1" text="antoinette"></span></div><div classes="reply-subject" ref="9"><label classes="reply-subj" ref="15" text="subject:"></label><t ref="-34" text="re: dolor. odio."></t></div></div><div classes="reply-body" ref="7"><textarea id="reply-text" ref="5"></textarea></div></div></div></div></body>,
Find Antoinette\s email and reply "Diam fames.".
click
5
null
stop
Email "Neque. Commodo nibh." to Karon. <body ref="8"><div id="wrap" ref="4"><div id="area" ref="10"><div id="reply" ref="5"><div id="reply-bar" ref="6"><span id="close-reply" ref="13"></span><span id="send-reply" ref="3"></span></div><div classes="reply-header" ref="9"><div classes="reply-info" ref="11"><label classes="reply-to" ref="7" text="to:"></label><span classes="reply-sender" ref="14" text="karon"></span></div><div classes="reply-subject" ref="2"><label classes="reply-subj" ref="1" text="subject:"></label><t ref="-6" text="re: faucibus tincidunt."></t></div></div><div classes="reply-body" ref="15"><textarea id="reply-text" ref="12"></textarea></div></div></div></div></body>,
Email "Neque. Commodo nibh." to Karon.
click
12
null
continue
{click,12,} Email "Neque. Commodo nibh." to Karon. <body ref="8"><div id="wrap" ref="4"><div id="area" ref="10"><div id="reply" ref="5"><div id="reply-bar" ref="6"><span id="close-reply" ref="13"></span><span id="send-reply" ref="3"></span></div><div classes="reply-header" ref="9"><div classes="reply-info" ref="11"><label classes="reply-to" ref="7" text="to:"></label><span classes="reply-sender" ref="14" text="karon"></span></div><div classes="reply-subject" ref="2"><label classes="reply-subj" ref="1" text="subject:"></label><t ref="-8" text="re: faucibus tincidunt."></t></div></div><div classes="reply-body" ref="15"><textarea id="reply-text" ref="12"></textarea></div></div></div></div></body>,
Email "Neque. Commodo nibh." to Karon.
keydown
12
neque. commodo nibh.
stop
I\d like to send Ashil the email I got from Shanta. <body ref="7"><div id="wrap" ref="6"><div id="area" ref="5"><div id="forward" ref="2"><div id="forward-bar" ref="15"><span id="close-forward" ref="12"></span><span id="send-forward" ref="13"></span></div><div classes="forward-header" ref="4"><div classes="forward-info" ref="9"><label ref="3" text="to:"></label><input_text classes="forward-sender" ref="11"></input_text></div><div classes="forward-subject" ref="10"><label ref="1" text="subject:"></label><t ref="-24" text="quam. pellentesque."></t></div></div><div classes="forward-body" ref="14"><textarea id="forward-text" ref="8" value="sodales duis nec etiam tristique. arcu tincidunt sem ut. sapien,. aenean cum. in vitae."></textarea></div></div></div></div></body>,
I\d like to send Ashil the email I got from Shanta.
click
11
null
continue
{click,11,} I\d like to send Ashil the email I got from Shanta. <body ref="7"><div id="wrap" ref="6"><div id="area" ref="5"><div id="forward" ref="2"><div id="forward-bar" ref="15"><span id="close-forward" ref="12"></span><span id="send-forward" ref="13"></span></div><div classes="forward-header" ref="4"><div classes="forward-info" ref="9"><label ref="3" text="to:"></label><input_text classes="forward-sender" ref="11"></input_text></div><div classes="forward-subject" ref="10"><label ref="1" text="subject:"></label><t ref="-26" text="quam. pellentesque."></t></div></div><div classes="forward-body" ref="14"><textarea id="forward-text" ref="8" value="sodales duis nec etiam tristique. arcu tincidunt sem ut. sapien,. aenean cum. in vitae."></textarea></div></div></div></div></body>,
I\d like to send Ashil the email I got from Shanta.
keydown
11
ashil
stop
Please send Eleonore Lexis\s email. <body ref="3"><div id="wrap" ref="4"><div id="area" ref="10"><div id="forward" ref="8"><div id="forward-bar" ref="5"><span id="close-forward" ref="2"></span><span id="send-forward" ref="15"></span></div><div classes="forward-header" ref="11"><div classes="forward-info" ref="1"><label ref="13" text="to:"></label><input_text classes="forward-sender" ref="6"></input_text></div><div classes="forward-subject" ref="7"><label ref="9" text="subject:"></label><t ref="-24" text="semper tempor."></t></div></div><div classes="forward-body" ref="14"><textarea id="forward-text" ref="12" value="et, leo cursus gravida ultrices senectus sodales maecenas. amet. congue. elit. porttitor proin."></textarea></div></div></div></div></body>,
Please send Eleonore Lexis\s email.
click
6
null
continue
{click,6,} Please send Eleonore Lexis\s email. <body ref="3"><div id="wrap" ref="4"><div id="area" ref="10"><div id="forward" ref="8"><div id="forward-bar" ref="5"><span id="close-forward" ref="2"></span><span id="send-forward" ref="15"></span></div><div classes="forward-header" ref="11"><div classes="forward-info" ref="1"><label ref="13" text="to:"></label><input_text classes="forward-sender" ref="6"></input_text></div><div classes="forward-subject" ref="7"><label ref="9" text="subject:"></label><t ref="-26" text="semper tempor."></t></div></div><div classes="forward-body" ref="14"><textarea id="forward-text" ref="12" value="et, leo cursus gravida ultrices senectus sodales maecenas. amet. congue. elit. porttitor proin."></textarea></div></div></div></div></body>,
Please send Eleonore Lexis\s email.
keydown
6
eleonore
stop
{click,6,} Enter 2:29 AM as the time <body ref="3"><div id="wrap" ref="4"><div id="area" ref="1"><div id="form" ref="2"><input_time id="tt" ref="6"></input_time><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></body>,
Enter 2:29 AM as the time
keydown
6
02:29
stop
{click,6,} Enter 9:40 AM as the time <body ref="2"><div id="wrap" ref="1"><div id="area" ref="4"><div id="form" ref="3"><input_time id="tt" ref="6"></input_time><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></body>,
Enter 9:40 AM as the time
keydown
6
09:40
stop
{click,6,} Enter 1:28 PM as the time <body ref="3"><div id="wrap" ref="1"><div id="area" ref="4"><div id="form" ref="2"><input_time id="tt" ref="6"></input_time><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></body>,
Enter 1:28 PM as the time
keydown
6
13:28
stop
{click,1,} Enter 2:21 PM as the time <body ref="6"><div id="wrap" ref="5"><div id="area" ref="2"><div id="form" ref="3"><input_time id="tt" ref="1"></input_time><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></body>,
Enter 2:21 PM as the time
keydown
1
14:21
stop
Enter 5:53 AM as the time <body ref="2"><div id="wrap" ref="1"><div id="area" ref="4"><div id="form" ref="5"><input_time id="tt" ref="3"></input_time><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></body>,
Enter 5:53 AM as the time
keydown
3
05:53
stop
click submit <body ref="2"><div id="wrap" ref="1"><div id="area" ref="4"><div id="form" ref="5"><input_time id="tt" ref="3" value="05:53"></input_time><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></body>
click submit
click
6
null
stop
{click,2,} Enter 12:40 PM as the time <body ref="1"><div id="wrap" ref="3"><div id="area" ref="5"><div id="form" ref="6"><input_time id="tt" ref="2"></input_time><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></body>,
Enter 12:40 PM as the time
keydown
2
12:40
stop
click submit <body ref="1"><div id="wrap" ref="3"><div id="area" ref="5"><div id="form" ref="6"><input_time id="tt" ref="2" value="12:40"></input_time><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></body>
click submit
click
4
null
stop
{click,5,} Enter 21:45 as the time <body ref="3"><div id="wrap" ref="4"><div id="area" ref="2"><div id="form" ref="6"><input_time id="tt" ref="5"></input_time><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></body>,
Enter 21:45 as the time
keydown
5
21:45
stop
{click,3,} Enter 18:19 as the time <body ref="4"><div id="wrap" ref="1"><div id="area" ref="6"><div id="form" ref="5"><input_time id="tt" ref="3"></input_time><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>,
Enter 18:19 as the time
keydown
3
06:19
stop
{click,4,} Enter 11:55 PM as the time <body ref="3"><div id="wrap" ref="1"><div id="area" ref="6"><div id="form" ref="2"><input_time id="tt" ref="4"></input_time><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></body>,
Enter 11:55 PM as the time
keydown
4
23:55
stop
{click,4,} Enter 4:05 PM as the time <body ref="2"><div id="wrap" ref="5"><div id="area" ref="3"><div id="form" ref="1"><input_time id="tt" ref="4"></input_time><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></body>,
Enter 4:05 PM as the time
keydown
4
04:05
stop
{click,1,} Enter 3:53 AM as the time <body ref="4"><div id="wrap" ref="6"><div id="area" ref="2"><div id="form" ref="3"><input_time id="tt" ref="1"></input_time><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></body>,
Enter 3:53 AM as the time
keydown
1
03:53
stop
{click,2,} Enter 8:14 PM as the time <body ref="5"><div id="wrap" ref="3"><div id="area" ref="4"><div id="form" ref="6"><input_time id="tt" ref="2"></input_time><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></body>,
Enter 8:14 PM as the time
keydown
2
20:14
stop
{click,6,} Enter 14:51 as the time <body ref="4"><div id="wrap" ref="3"><div id="area" ref="5"><div id="form" ref="1"><input_time id="tt" ref="6"></input_time><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>,
Enter 14:51 as the time
keydown
6
14:51
stop
{click,6,} Enter 8:52 PM as the time <body ref="5"><div id="wrap" ref="2"><div id="area" ref="1"><div id="form" ref="3"><input_time id="tt" ref="6"></input_time><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></body>,
Enter 8:52 PM as the time
keydown
6
20:52
stop
{click,1,} Enter 2:23 PM as the time <body ref="3"><div id="wrap" ref="6"><div id="area" ref="5"><div id="form" ref="4"><input_time id="tt" ref="1"></input_time><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>,
Enter 2:23 PM as the time
keydown
1
14:23
stop
{click,1,} Enter 2:52 PM as the time <body ref="2"><div id="wrap" ref="4"><div id="area" ref="6"><div id="form" ref="3"><input_time id="tt" ref="1"></input_time><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></body>,
Enter 2:52 PM as the time
keydown
1
14:52
stop
{click,1,} Enter 3:21 PM as the time <body ref="5"><div id="wrap" ref="6"><div id="area" ref="2"><div id="form" ref="4"><input_time id="tt" ref="1"></input_time><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></body>,
Enter 3:21 PM as the time
keydown
1
15:21
stop
{click,5,} Enter 19:17 as the time <body ref="2"><div id="wrap" ref="1"><div id="area" ref="4"><div id="form" ref="3"><input_time id="tt" ref="5"></input_time><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></body>,
Enter 19:17 as the time
keydown
5
19:17
stop
{click,3,} Enter 1:52 PM as the time <body ref="4"><div id="wrap" ref="1"><div id="area" ref="2"><div id="form" ref="5"><input_time id="tt" ref="3"></input_time><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></body>,
Enter 1:52 PM as the time
keydown
3
13:52
stop
{click,6,} Enter 12:49 PM as the time <body ref="3"><div id="wrap" ref="5"><div id="area" ref="2"><div id="form" ref="4"><input_time id="tt" ref="6"></input_time><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></body>,
Enter 12:49 PM as the time
keydown
6
12:49
stop
Enter 1:13 PM as the time <body ref="2"><div id="wrap" ref="3"><div id="area" ref="6"><div id="form" ref="4"><input_time id="tt" ref="1"></input_time><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></body>,
Enter 1:13 PM as the time
keydown
1
13:13
stop
{click,6,} Enter 11:01 PM as the time <body ref="5"><div id="wrap" ref="3"><div id="area" ref="4"><div id="form" ref="1"><input_time id="tt" ref="6"></input_time><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>,
Enter 11:01 PM as the time
keydown
6
11:01
stop
{click,1,} Enter 10:43 PM as the time <body ref="4"><div id="wrap" ref="2"><div id="area" ref="6"><div id="form" ref="5"><input_time id="tt" ref="1"></input_time><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></body>,
Enter 10:43 PM as the time
keydown
1
22:43
stop
click submit <body ref="4"><div id="wrap" ref="2"><div id="area" ref="6"><div id="form" ref="5"><input_time id="tt" ref="1" value="22:43"></input_time><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></body>
click submit
click
3
null
stop
{click,3,} Enter 6:59 AM as the time <body ref="6"><div id="wrap" ref="4"><div id="area" ref="5"><div id="form" ref="1"><input_time id="tt" ref="3"></input_time><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>,
Enter 6:59 AM as the time
keydown
3
06:59
stop
{click,6,} Enter 3:52 AM as the time <body ref="4"><div id="wrap" ref="5"><div id="area" ref="1"><div id="form" ref="2"><input_time id="tt" ref="6"></input_time><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></body>,
Enter 3:52 AM as the time
keydown
6
03:52
stop
{click,5,} Enter 5:37 PM as the time <body ref="2"><div id="wrap" ref="4"><div id="area" ref="3"><div id="form" ref="6"><input_time id="tt" ref="5"></input_time><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></body>,
Enter 5:37 PM as the time
keydown
5
17:37
stop
{click,3,} Enter 10:18 PM as the time <body ref="2"><div id="wrap" ref="1"><div id="area" ref="5"><div id="form" ref="4"><input_time id="tt" ref="3"></input_time><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></body>,
Enter 10:18 PM as the time
keydown
3
22:18
stop
{click,2,} Enter 8:08 AM as the time <body ref="6"><div id="wrap" ref="3"><div id="area" ref="5"><div id="form" ref="4"><input_time id="tt" ref="2"></input_time><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></body>,
Enter 8:08 AM as the time
keydown
2
08:08
stop
{click,1,} Enter 12:06 PM as the time <body ref="2"><div id="wrap" ref="3"><div id="area" ref="4"><div id="form" ref="6"><input_time id="tt" ref="1"></input_time><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></body>,
Enter 12:06 PM as the time
keydown
1
23:06
stop
{click,1,} Enter 7:44 PM as the time <body ref="6"><div id="wrap" ref="4"><div id="area" ref="5"><div id="form" ref="3"><input_time id="tt" ref="1"></input_time><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>,
Enter 7:44 PM as the time
keydown
1
07:44
stop
click submit <body ref="6"><div id="wrap" ref="4"><div id="area" ref="5"><div id="form" ref="3"><input_time id="tt" ref="1" value="07:44"></input_time><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>
click submit
click
2
null
stop
{click,1,} Enter 5:35 PM as the time <body ref="3"><div id="wrap" ref="6"><div id="area" ref="5"><div id="form" ref="4"><input_time id="tt" ref="1"></input_time><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>,
Enter 5:35 PM as the time
keydown
1
05:35
stop
{click,1,} Enter 10:00 AM as the time <body ref="6"><div id="wrap" ref="4"><div id="area" ref="3"><div id="form" ref="5"><input_time id="tt" ref="1"></input_time><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>,
Enter 10:00 AM as the time
keydown
1
10:00
stop
click submit <body ref="6"><div id="wrap" ref="4"><div id="area" ref="3"><div id="form" ref="5"><input_time id="tt" ref="1" value="10:00"></input_time><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>
click submit
click
2
null
stop
{click,2,} Enter 8:57 PM as the time <body ref="5"><div id="wrap" ref="1"><div id="area" ref="6"><div id="form" ref="4"><input_time id="tt" ref="2"></input_time><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></body>,
Enter 8:57 PM as the time
keydown
2
20:57
stop
{click,5,} Enter 12:08 as the time <body ref="6"><div id="wrap" ref="3"><div id="area" ref="1"><div id="form" ref="4"><input_time id="tt" ref="5"></input_time><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>,
Enter 12:08 as the time
keydown
5
12:08
stop
{click,3,} Enter 3:57 AM as the time <body ref="4"><div id="wrap" ref="1"><div id="area" ref="2"><div id="form" ref="6"><input_time id="tt" ref="3"></input_time><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></div></body>,
Enter 3:57 AM as the time
keydown
3
03:57
stop
{click,4,} Enter 3:38 AM as the time <body ref="3"><div id="wrap" ref="5"><div id="area" ref="2"><div id="form" ref="1"><input_time id="tt" ref="4"></input_time><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></div></body>,
Enter 3:38 AM as the time
keydown
4
03:38
stop
{click,5,} Enter 5:11 PM as the time <body ref="3"><div id="wrap" ref="6"><div id="area" ref="1"><div id="form" ref="4"><input_time id="tt" ref="5"></input_time><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>,
Enter 5:11 PM as the time
keydown
5
17:11
stop
{click,1,} Enter 9:25 AM as the time <body ref="6"><div id="wrap" ref="2"><div id="area" ref="5"><div id="form" ref="3"><input_time id="tt" ref="1"></input_time><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></body>,
Enter 9:25 AM as the time
keydown
1
09:25
stop
{click,2,} Enter 4:58 PM as the time <body ref="6"><div id="wrap" ref="5"><div id="area" ref="1"><div id="form" ref="4"><input_time id="tt" ref="2"></input_time><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></div></body>,
Enter 4:58 PM as the time
keydown
2
16:58
stop
{click,4,} Enter 8:08 AM as the time <body ref="3"><div id="wrap" ref="6"><div id="area" ref="2"><div id="form" ref="5"><input_time id="tt" ref="4"></input_time><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></div></body>,
Enter 8:08 AM as the time
keydown
4
08:08
stop
{click,5,} Enter 9:13 PM as the time <body ref="6"><div id="wrap" ref="3"><div id="area" ref="4"><div id="form" ref="1"><input_time id="tt" ref="5"></input_time><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></div></body>,
Enter 9:13 PM as the time
keydown
5
21:13
stop
{click,6,} Enter 2:56 AM as the time <body ref="1"><div id="wrap" ref="2"><div id="area" ref="5"><div id="form" ref="3"><input_time id="tt" ref="6"></input_time><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></div></body>,
Enter 2:56 AM as the time
keydown
6
02:56
stop