reshinthadith/the-stack-mujoco-xml · Datasets at AI快站
{
// 获取包含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 !== '免费Z-image图片生成' &&
linkText !== '免费Z-image图片生成'
) {
link.textContent = '免费Z-image图片生成';
link.href = 'https://zimage.run';
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 !== 'Vibevoice'
) {
link.textContent = 'Vibevoice';
link.href = 'https://vibevoice.info/';
replacedLinks.add(link);
}
// 替换Pricing链接 - 仅替换一次
else if (
(linkHref.includes('/pricing') || linkHref === '/pricing' ||
linkText === 'Pricing' || linkText.match(/^s*Pricings*$/i)) &&
linkText !== '免费去水印'
) {
link.textContent = '免费去水印';
link.href = 'https://sora2watermarkremover.net/';
replacedLinks.add(link);
}
// 替换Enterprise链接
else if (
(linkHref.includes('/enterprise') || linkHref === '/enterprise' ||
linkText === 'Enterprise' || linkText.match(/^s*Enterprises*$/i)) &&
linkText !== 'GitHub加速'
) {
link.textContent = 'GitHub加速';
link.href = 'https://githubproxy.cc';
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, '免费Z-image图片生成');
} 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 });
});
}
})();
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n\n \n \n \n \n\n \n\n \n\n \n\n \n \n\n \n
\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n\n\t\n\n \n\t\n\t\n\t\n\t\n\t\n\t\n\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\n \n \n \n \n \n \n \n \n\n \n\n \n \n \n \n \n \n \n \n\n\n \n \n\n"},"avg_line_length":{"kind":"number","value":136.9105180534,"string":"136.910518"},"max_line_length":{"kind":"number","value":10958,"string":"10,958"},"alphanum_fraction":{"kind":"number","value":0.686086777,"string":"0.686087"}}},{"rowIdx":1,"cells":{"hexsha":{"kind":"string","value":"f702915d7e486071199c0c0ee0afe4d9c719fd6a"},"size":{"kind":"number","value":2713,"string":"2,713"},"ext":{"kind":"string","value":"xml"},"lang":{"kind":"string","value":"XML"},"max_stars_repo_path":{"kind":"string","value":"gym/envs/robotics/assets/fetch/random_obj_xml/3932_peg.xml"},"max_stars_repo_name":{"kind":"string","value":"Jekyll1021/gym"},"max_stars_repo_head_hexsha":{"kind":"string","value":"1701741df2e6ae9a762fe647122ee8344f586bc9"},"max_stars_repo_licenses":{"kind":"list like","value":["Python-2.0","OLDAP-2.7"],"string":"[\n \"Python-2.0\",\n \"OLDAP-2.7\"\n]"},"max_stars_count":{"kind":"null"},"max_stars_repo_stars_event_min_datetime":{"kind":"null"},"max_stars_repo_stars_event_max_datetime":{"kind":"null"},"max_issues_repo_path":{"kind":"string","value":"gym/envs/robotics/assets/fetch/random_obj_xml/3932_peg.xml"},"max_issues_repo_name":{"kind":"string","value":"Jekyll1021/gym"},"max_issues_repo_head_hexsha":{"kind":"string","value":"1701741df2e6ae9a762fe647122ee8344f586bc9"},"max_issues_repo_licenses":{"kind":"list like","value":["Python-2.0","OLDAP-2.7"],"string":"[\n \"Python-2.0\",\n \"OLDAP-2.7\"\n]"},"max_issues_count":{"kind":"null"},"max_issues_repo_issues_event_min_datetime":{"kind":"null"},"max_issues_repo_issues_event_max_datetime":{"kind":"null"},"max_forks_repo_path":{"kind":"string","value":"gym/envs/robotics/assets/fetch/random_obj_xml/3932_peg.xml"},"max_forks_repo_name":{"kind":"string","value":"Jekyll1021/gym"},"max_forks_repo_head_hexsha":{"kind":"string","value":"1701741df2e6ae9a762fe647122ee8344f586bc9"},"max_forks_repo_licenses":{"kind":"list like","value":["Python-2.0","OLDAP-2.7"],"string":"[\n \"Python-2.0\",\n \"OLDAP-2.7\"\n]"},"max_forks_count":{"kind":"null"},"max_forks_repo_forks_event_min_datetime":{"kind":"null"},"max_forks_repo_forks_event_max_datetime":{"kind":"null"},"content":{"kind":"string","value":"\n\t\n\t\n\n\t\n\n\t\n\t\t\n\t\n\n\t\n\t\t\n\t\t\n\t\t\t\n\t\t\n\n\t\t\n\n\t\t\n\t\t\t\n\t\t\n\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\n\t\t\t\n\t\t\n\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\n\t\t\n\t\n\n\t\n\t\t\n\t\t\n\t\n"},"avg_line_length":{"kind":"number","value":50.2407407407,"string":"50.240741"},"max_line_length":{"kind":"number","value":220,"string":"220"},"alphanum_fraction":{"kind":"number","value":0.6564688537,"string":"0.656469"}}},{"rowIdx":2,"cells":{"hexsha":{"kind":"string","value":"f702fe7f1f7026782fcf499c4ceef8373e778e80"},"size":{"kind":"number","value":1455,"string":"1,455"},"ext":{"kind":"string","value":"xml"},"lang":{"kind":"string","value":"XML"},"max_stars_repo_path":{"kind":"string","value":"gym/envs/robotics/assets/fetch/random_obj_xml/6246_slide.xml"},"max_stars_repo_name":{"kind":"string","value":"Jekyll1021/gym"},"max_stars_repo_head_hexsha":{"kind":"string","value":"1701741df2e6ae9a762fe647122ee8344f586bc9"},"max_stars_repo_licenses":{"kind":"list like","value":["Python-2.0","OLDAP-2.7"],"string":"[\n \"Python-2.0\",\n \"OLDAP-2.7\"\n]"},"max_stars_count":{"kind":"null"},"max_stars_repo_stars_event_min_datetime":{"kind":"null"},"max_stars_repo_stars_event_max_datetime":{"kind":"null"},"max_issues_repo_path":{"kind":"string","value":"gym/envs/robotics/assets/fetch/random_obj_xml/6246_slide.xml"},"max_issues_repo_name":{"kind":"string","value":"Jekyll1021/gym"},"max_issues_repo_head_hexsha":{"kind":"string","value":"1701741df2e6ae9a762fe647122ee8344f586bc9"},"max_issues_repo_licenses":{"kind":"list like","value":["Python-2.0","OLDAP-2.7"],"string":"[\n \"Python-2.0\",\n \"OLDAP-2.7\"\n]"},"max_issues_count":{"kind":"null"},"max_issues_repo_issues_event_min_datetime":{"kind":"null"},"max_issues_repo_issues_event_max_datetime":{"kind":"null"},"max_forks_repo_path":{"kind":"string","value":"gym/envs/robotics/assets/fetch/random_obj_xml/6246_slide.xml"},"max_forks_repo_name":{"kind":"string","value":"Jekyll1021/gym"},"max_forks_repo_head_hexsha":{"kind":"string","value":"1701741df2e6ae9a762fe647122ee8344f586bc9"},"max_forks_repo_licenses":{"kind":"list like","value":["Python-2.0","OLDAP-2.7"],"string":"[\n \"Python-2.0\",\n \"OLDAP-2.7\"\n]"},"max_forks_count":{"kind":"null"},"max_forks_repo_forks_event_min_datetime":{"kind":"null"},"max_forks_repo_forks_event_max_datetime":{"kind":"null"},"content":{"kind":"string","value":"\n\t\n\t\n\n\t\n\n\t\n\t\t\n\t\n\n\t\n\t\t\n\t\t\n\t\t\t\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t \n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n \n\n\t\t\n\t\n"},"avg_line_length":{"kind":"number","value":38.2894736842,"string":"38.289474"},"max_line_length":{"kind":"number","value":155,"string":"155"},"alphanum_fraction":{"kind":"number","value":0.618556701,"string":"0.618557"}}},{"rowIdx":3,"cells":{"hexsha":{"kind":"string","value":"f7048e8b82dde08be422a1c827803bf7242ad8cc"},"size":{"kind":"number","value":90255,"string":"90,255"},"ext":{"kind":"string","value":"xml"},"lang":{"kind":"string","value":"XML"},"max_stars_repo_path":{"kind":"string","value":"herb_reconf/cluttered_scenes/hard_pushing_015_peach_3_0.9_scene.xml"},"max_stars_repo_name":{"kind":"string","value":"wagnew3/Amodal-3D-Reconstruction-for-Robotic-Manipulationvia-Stability-and-Connectivity--Release"},"max_stars_repo_head_hexsha":{"kind":"string","value":"f55c6b0fac44d9d749e7804d99169a39d30c2111"},"max_stars_repo_licenses":{"kind":"list like","value":["MIT"],"string":"[\n \"MIT\"\n]"},"max_stars_count":{"kind":"null"},"max_stars_repo_stars_event_min_datetime":{"kind":"null"},"max_stars_repo_stars_event_max_datetime":{"kind":"null"},"max_issues_repo_path":{"kind":"string","value":"herb_reconf/cluttered_scenes/hard_pushing_015_peach_3_0.9_scene.xml"},"max_issues_repo_name":{"kind":"string","value":"wagnew3/Amodal-3D-Reconstruction-for-Robotic-Manipulationvia-Stability-and-Connectivity--Release"},"max_issues_repo_head_hexsha":{"kind":"string","value":"f55c6b0fac44d9d749e7804d99169a39d30c2111"},"max_issues_repo_licenses":{"kind":"list like","value":["MIT"],"string":"[\n \"MIT\"\n]"},"max_issues_count":{"kind":"null"},"max_issues_repo_issues_event_min_datetime":{"kind":"null"},"max_issues_repo_issues_event_max_datetime":{"kind":"null"},"max_forks_repo_path":{"kind":"string","value":"herb_reconf/cluttered_scenes/hard_pushing_015_peach_3_0.9_scene.xml"},"max_forks_repo_name":{"kind":"string","value":"wagnew3/Amodal-3D-Reconstruction-for-Robotic-Manipulationvia-Stability-and-Connectivity--Release"},"max_forks_repo_head_hexsha":{"kind":"string","value":"f55c6b0fac44d9d749e7804d99169a39d30c2111"},"max_forks_repo_licenses":{"kind":"list like","value":["MIT"],"string":"[\n \"MIT\"\n]"},"max_forks_count":{"kind":"null"},"max_forks_repo_forks_event_min_datetime":{"kind":"null"},"max_forks_repo_forks_event_max_datetime":{"kind":"null"},"content":{"kind":"truncated","value":"\"\\n \\n \\n\\t\\n \\n \\n\\n\\n \\n \\n\\t
|
|
|
|
|
|
| max_stars_repo_head_hexsha
stringclasses
|
|
| max_stars_repo_stars_event_min_datetime
stringclasses
| max_stars_repo_stars_event_max_datetime
stringclasses
|
|
| max_issues_repo_head_hexsha
stringclasses
|
|
| max_issues_repo_issues_event_min_datetime
stringclasses
| max_issues_repo_issues_event_max_datetime
stringclasses
|
|
| max_forks_repo_head_hexsha
stringclasses
|
|
| max_forks_repo_forks_event_min_datetime
stringclasses
| max_forks_repo_forks_event_max_datetime
stringclasses
|
|
|
|
|
f70175ffd0d1b0d89ba64edca284f599f4241203
|
|
|
|
herb_reconf/cluttered_scenes/grasping_026_sponge_4_0.0_scene.xml
|
wagnew3/Amodal-3D-Reconstruction-for-Robotic-Manipulationvia-Stability-and-Connectivity--Release
|
f55c6b0fac44d9d749e7804d99169a39d30c2111
|
|
|
|
|
herb_reconf/cluttered_scenes/grasping_026_sponge_4_0.0_scene.xml
|
wagnew3/Amodal-3D-Reconstruction-for-Robotic-Manipulationvia-Stability-and-Connectivity--Release
|
f55c6b0fac44d9d749e7804d99169a39d30c2111
|
|
|
|
|
herb_reconf/cluttered_scenes/grasping_026_sponge_4_0.0_scene.xml
|
wagnew3/Amodal-3D-Reconstruction-for-Robotic-Manipulationvia-Stability-and-Connectivity--Release
|
f55c6b0fac44d9d749e7804d99169a39d30c2111
|
|
|
|
|
<?xml version="1.0" ?><mujoco model="scene">
<compiler angle="radian" coordinate="local" fusestatic="false" meshdir="assets/" texturedir="assets/"/>
<option apirate="50" collision="predefined" cone="elliptic" impratio="10" iterations="500" noslip_iterations="100" solver="Newton" timestep="0.002" tolerance="1e-10"/>
<size nconmax="10000" njmax="10000"/>
<visual>
<global offheight="800" offwidth="800"/>
<quality shadowsize="2048"/>
<headlight ambient="0 0 0" diffuse="1.399999 1.399999 1.399999" specular="2 2 2"/>
<map force="0.1" zfar="30.0"/>
<rgba haze="0.1499999 0.25 0.3499998 1"/>
</visual>
<statistic center="0.2 0 0.5" extent="10.0"/>
<default>
<default class="/"/>
<default class="geom0">
<geom conaffinity="0" contype="1" density="500" margin="0.001" rgba="0.75 0.6 0.5 1" solimp="0.95 0.95 0.01" solref="0.008 1" user="0"/>
</default>
<default class="herb/">
<joint damping="1.0"/>
<default class="herb/viz">
<geom conaffinity="0" contype="0" group="1"/>
</default>
</default>
<default class="herb/wam/">
<joint axis="0 0 1" frictionloss="0.001" limited="true" pos="0 0 0" type="hinge"/>
<default class="herb/wam/viz">
<geom conaffinity="0" contype="0" group="1" type="mesh"/>
</default>
<default class="herb/wam/col">
<geom conaffinity="1" contype="0" group="0" type="mesh"/>
</default>
</default>
<default class="herb/wam/bhand/">
<joint axis="0 0 1" frictionloss="0.001" limited="true" pos="0 0 0" type="hinge"/>
<default class="herb/wam/bhand/col">
<geom conaffinity="1" contype="0" group="0" type="mesh"/>
</default>
<default class="herb/wam/bhand/viz">
<geom conaffinity="0" contype="0" group="1" rgba="0.6999996 0.8 0.8 1" type="mesh"/>
</default>
</default>
<default class="herb/wam_1/">
<joint armature="0.1" axis="0 0 1" frictionloss="0.001" limited="true" pos="0 0 0" type="hinge"/>
<default class="herb/wam_1/viz">
<geom conaffinity="0" contype="0" group="1" type="mesh"/>
</default>
<default class="herb/wam_1/col">
<geom conaffinity="1" condim="4" contype="1" friction="2 0.1 0.02" group="0" priority="10" type="mesh"/>
</default>
</default>
<default class="herb/wam_1/bhand/">
<joint armature="0.1" axis="0 0 1" frictionloss="0.001" limited="true" pos="0 0 0" type="hinge"/>
<default class="herb/wam_1/bhand/col">
<geom conaffinity="1" condim="4" contype="4" friction="2 0.1 0.02" group="0" priority="10" solimp="0.99 0.99 0.01" solref="0.01 1" type="mesh"/>
</default>
<default class="herb/wam_1/bhand/viz">
<geom conaffinity="0" condim="4" contype="4" friction="2 0.1 0.02" group="1" priority="10" rgba="0.6999996 0.8 0.8 1" solimp="0.99 0.99 0.01" solref="0.01 1" type="mesh"/>
</default>
</default>
</default>
<asset>
<texture file="concrete-7baa937dd9eb091794feb091c728eb4f234150ae.png" name="concrete_2d" type="2d"/>
<texture file="concrete-7baa937dd9eb091794feb091c728eb4f234150ae.png" name="concretecube" type="cube"/>
<material class="/" name="concrete_2d" reflectance="0.3" rgba="0.8 0.8 0.8 1" texture="concrete_2d"/>
<material class="/" name="concretecube" rgba="0.8 0.8 0.8 1" texture="concretecube"/>
<texture file="marble-e5eaaff46b3aaec59944d7330fab7172f95cd8f2.png" name="marble2d" type="2d"/>
<texture file="marble-e5eaaff46b3aaec59944d7330fab7172f95cd8f2.png" name="marblecube" type="cube"/>
<material class="/" name="marble_2d" reflectance="0.3" rgba="0.8 0.8 0.8 1" texture="marble2d"/>
<material class="/" name="marblecube" rgba="0.8 0.8 0.8 1" texture="marblecube"/>
<texture file="concreteplain-371aafd0ba788c3d3517b7c74a383d92e5897f53.png" name="concreteplain_2d" type="2d"/>
<texture file="concreteplain-371aafd0ba788c3d3517b7c74a383d92e5897f53.png" name="concreteplaincube" type="cube"/>
<material class="/" name="concreteplain_2d" reflectance="0.3" rgba="0.8 0.8 0.8 1" texture="concreteplain_2d"/>
<material class="/" name="concreteplaincube" rgba="0.8 0.8 0.8 1" texture="concreteplaincube"/>
<texture file="wood-dca777828fadc82ffe5b5005a448db092b2054fb.png" name="wood2d" type="2d"/>
<texture file="wood-dca777828fadc82ffe5b5005a448db092b2054fb.png" name="woodcube" type="cube"/>
<material class="/" name="wood2d" reflectance="0.0" rgba="1 1 1 1" texture="wood2d"/>
<material class="/" emission="1.0" name="woodcube" texture="woodcube"/>
<texture file="concrete2-241aa4b6b647b116a7363537e0b2c602ff16d0ac.png" name="concrete2_2d" type="2d"/>
<texture file="concrete2-241aa4b6b647b116a7363537e0b2c602ff16d0ac.png" name="concrete2_cube" type="cube"/>
<material class="/" name="concrete2_2d" reflectance="0.0" rgba="1 1 1 1" texture="concrete2_2d"/>
<material class="/" name="concrete2_cube" rgba="0.8 0.8 0.8 1" texture="concrete2_cube"/>
<texture builtin="flat" height="1024" mark="random" markrgb="0.79000000 0.79000000 0.7399999" name="wall_2d" random="0.3" rgb1="0.8199995 0.8199995 0.78000000" type="2d" width="1024"/>
<material class="/" name="wall" texture="wall_2d"/>
<mesh class="herb/" file="herb_frame-d14ef2a9b97c77acae48435d827d17e822b5ea0d.STL" name="herb/herb_frame"/>
<mesh class="herb/" file="herb_frame_collision-f9b6358d74932455b7ffbfd9ca74dac0fccda711.STL" name="herb/herb_frame_collision"/>
<mesh class="herb/" file="herb_neobotix_base-a561bd542e4323d6590a35700af93bfe91294ed7.STL" name="herb/herb_neobotix_base"/>
<mesh class="herb/" file="herb_neobotix_base_collision-c0b781e9f306e864c10c17c836695c4558f03ae7.STL" name="herb/herb_neobotix_base_collision"/>
<mesh class="herb/" file="herb_neck_pan-3a5b595404c4fd221df9b6e9fa45f42ae8d6c2d1.STL" name="herb/herb_neck_pan"/>
<mesh class="herb/" file="herb_neck_pan_collision-422bb9327b7695a812f7e778849056ef7beb989a.STL" name="herb/herb_neck_pan_collision"/>
<mesh class="herb/" file="herb_neck_tilt-90115c2f4d254a0b190e723f5619cc119886c40b.STL" name="herb/herb_neck_tilt"/>
<mesh class="herb/" file="herb_neck_tilt_collision-484db3edd8836293ddbd41a57393c8610e785d3a.STL" name="herb/herb_neck_tilt_collision"/>
<mesh class="herb/" file="herb_crl_head-8d1a14390ba99fea74706e0a42bb4c69de03fda1.STL" name="herb/herb_crl_head"/>
<mesh class="herb/" file="herb_crl_head_collision-7e48d4cab14a84937a24657df25f3c1493b9d4f0.STL" name="herb/herb_crl_head_collision"/>
<mesh class="herb/" file="herb_kinect-f35f6b9c60f6d5c915f951d7862137deeec3b982.STL" name="herb/herb_kinect"/>
<mesh class="herb/" file="herb_kinect_collision-fc0c5ad2fd441c0e68282241313155effd1beedd.STL" name="herb/herb_kinect_collision"/>
<mesh class="herb/wam/" file="base_link_fine-41a147148eb8dd232dfab0184aee072e64b55281.stl" name="herb/wam/base_link_fine"/>
<mesh class="herb/wam/" file="base_link_convex-241a02f0fe0e1f2c3855b352df6e69b26ab5b1b2.stl" name="herb/wam/base_link_convex"/>
<mesh class="herb/wam/" file="shoulder_link_fine-70a80ea5cf6a9c11a96b4c55087f2c8f2c020d97.stl" name="herb/wam/shoulder_link_fine"/>
<mesh class="herb/wam/" file="shoulder_link_convex_decomposition_p1-b99c0e22423c21ede02982f896bc789bdae3b5ff.stl" name="herb/wam/shoulder_link_convex_decomposition_p1"/>
<mesh class="herb/wam/" file="shoulder_link_convex_decomposition_p2-2b3a517d82b2e4f2469d55f41baed0468e780436.stl" name="herb/wam/shoulder_link_convex_decomposition_p2"/>
<mesh class="herb/wam/" file="shoulder_link_convex_decomposition_p3-e4f646ee6b98165b5a010a5f12ebfd92128fb41b.stl" name="herb/wam/shoulder_link_convex_decomposition_p3"/>
<mesh class="herb/wam/" file="shoulder_pitch_link_fine-36aee65354a741fe81ccf9d2614e6e43d67f3c55.stl" name="herb/wam/shoulder_pitch_link_fine"/>
<mesh class="herb/wam/" file="shoulder_pitch_link_convex-f05b3e597235abed137d821b96ff7d1e2a82ea31.stl" name="herb/wam/shoulder_pitch_link_convex"/>
<mesh class="herb/wam/" file="upper_arm_link_fine-ca01ee6d48649ad9f6baea7259d5cf9d08b3d635.stl" name="herb/wam/upper_arm_link_fine"/>
<mesh class="herb/wam/" file="upper_arm_link_convex_decomposition_p1-7ea03e3ea97d649eedea55dc3de0ea10bbb87283.stl" name="herb/wam/upper_arm_link_convex_decomposition_p1"/>
<mesh class="herb/wam/" file="upper_arm_link_convex_decomposition_p2-25fc59a045c74cc0c5e901bc31501e8ca212159a.stl" name="herb/wam/upper_arm_link_convex_decomposition_p2"/>
<mesh class="herb/wam/" file="elbow_link_fine-105c4e016f6a319ed74f5d55377fee15774c5d58.stl" name="herb/wam/elbow_link_fine"/>
<mesh class="herb/wam/" file="elbow_link_convex-618d49f47d28f374d03b62f3a4f1a11c87b40044.stl" name="herb/wam/elbow_link_convex"/>
<mesh class="herb/wam/" file="forearm_link_fine-e78631019336cb810525911769f36184d30c291c.stl" name="herb/wam/forearm_link_fine"/>
<mesh class="herb/wam/" file="forearm_link_convex_decomposition_p1-57f1e443a9d84a9b1e59b719541351dbc72b0c65.stl" name="herb/wam/forearm_link_convex_decomposition_p1"/>
<mesh class="herb/wam/" file="forearm_link_convex_decomposition_p2-6249b0eb91291b6e61d4566ef7bddcd133aeb11d.stl" name="herb/wam/forearm_link_convex_decomposition_p2"/>
<mesh class="herb/wam/" file="wrist_yaw_link_fine-3ec69f37eedc74a0b8a6edd994a49a13dec2a554.stl" name="herb/wam/wrist_yaw_link_fine"/>
<mesh class="herb/wam/" file="wrist_yaw_link_convex_decomposition_p1-483314d477ecff523b1f17f1b29cc860dda3b25f.stl" name="herb/wam/wrist_yaw_link_convex_decomposition_p1"/>
<mesh class="herb/wam/" file="wrist_yaw_link_convex_decomposition_p2-963f6bf6f5f239543cf4bbf0630fd7e3253cbd4a.stl" name="herb/wam/wrist_yaw_link_convex_decomposition_p2"/>
<mesh class="herb/wam/" file="wrist_pitch_link_fine-06a8aff3e76c7b3ff34cdaf40c9ed5950e2ad1fe.stl" name="herb/wam/wrist_pitch_link_fine"/>
<mesh class="herb/wam/" file="wrist_pitch_link_convex_decomposition_p1-3328df36bd7e249a571d0cfb2e43ac0cf17b9b77.stl" name="herb/wam/wrist_pitch_link_convex_decomposition_p1"/>
<mesh class="herb/wam/" file="wrist_pitch_link_convex_decomposition_p2-91c5869923c13020ad406e859d49bf3f795c96be.stl" name="herb/wam/wrist_pitch_link_convex_decomposition_p2"/>
<mesh class="herb/wam/" file="wrist_pitch_link_convex_decomposition_p3-744bd1df4bb176ceef61c79ab12a5b9de038d171.stl" name="herb/wam/wrist_pitch_link_convex_decomposition_p3"/>
<mesh class="herb/wam/" file="wrist_palm_link_fine-db9db06e50f8f189c8d475b09f86be267e38a874.stl" name="herb/wam/wrist_palm_link_fine"/>
<mesh class="herb/wam/" file="wrist_palm_link_convex-d455a798d573176ecdc3c9794069b0e3f4f7f623.stl" name="herb/wam/wrist_palm_link_convex"/>
<mesh class="herb/wam/bhand/" file="bhand_palm_fine-dff1351ac0d212f9757a6bc04b85287b4f13403a.stl" name="herb/wam/bhand/bhand_palm_fine"/>
<mesh class="herb/wam/bhand/" file="bhand_palm_link_convex_decomposition_p1-f8ba6cc8e8efbe24c938e092f61618174769428c.stl" name="herb/wam/bhand/bhand_palm_link_convex_decomposition_p1"/>
<mesh class="herb/wam/bhand/" file="bhand_palm_link_convex_decomposition_p2-0a66a02812a929ee040991e6d1a7b1d11bba7bb1.stl" name="herb/wam/bhand/bhand_palm_link_convex_decomposition_p2"/>
<mesh class="herb/wam/bhand/" file="bhand_palm_link_convex_decomposition_p3-9d93e72f01b43aa200deff06df4a395d3eb5312a.stl" name="herb/wam/bhand/bhand_palm_link_convex_decomposition_p3"/>
<mesh class="herb/wam/bhand/" file="bhand_palm_link_convex_decomposition_p4-e38e089a001a0010eec12bebd2368162120ee6a2.stl" name="herb/wam/bhand/bhand_palm_link_convex_decomposition_p4"/>
<mesh class="herb/wam/bhand/" file="bhand_finger_prox_link_fine-b325b78dd2ffcab9984efe22434207b1d2e07e28.stl" name="herb/wam/bhand/bhand_finger_prox_link_fine"/>
<mesh class="herb/wam/bhand/" file="bhand_finger_prox_link_convex_decomposition_p1-12071ca7dea820f8ba395c17ad58efbdd2b805a8.stl" name="herb/wam/bhand/bhand_finger_prox_link_convex_decomposition_p1"/>
<mesh class="herb/wam/bhand/" file="bhand_finger_prox_link_convex_decomposition_p2-c728b40c271300b132049560287e0844b86833ed.stl" name="herb/wam/bhand/bhand_finger_prox_link_convex_decomposition_p2"/>
<mesh class="herb/wam/bhand/" file="bhand_finger_prox_link_convex_decomposition_p3-561559fcb477ac41797bbd8b0da5e960b41f0363.stl" name="herb/wam/bhand/bhand_finger_prox_link_convex_decomposition_p3"/>
<mesh class="herb/wam/bhand/" file="bhand_finger_med_link_fine-31e862bb0515137229a05ffa049a96de151eb229.stl" name="herb/wam/bhand/bhand_finger_med_link_fine"/>
<mesh class="herb/wam/bhand/" file="bhand_finger_med_link_convex-af5d2e0e2990df27924df077b297d046b710ded5.stl" name="herb/wam/bhand/bhand_finger_med_link_convex"/>
<mesh class="herb/wam/bhand/" file="bhand_finger_dist_link_fine-defe6db5320e79d25ade307bc4a42d6ef272b8d4.stl" name="herb/wam/bhand/bhand_finger_dist_link_fine"/>
<mesh class="herb/wam/bhand/" file="bhand_finger_dist_link_convex-dd89f87a37ef6bb33ec5f1998f123eb1e907ddef.stl" name="herb/wam/bhand/bhand_finger_dist_link_convex"/>
<mesh class="herb/wam_1/" file="base_link_fine-41a147148eb8dd232dfab0184aee072e64b55281.stl" name="herb/wam_1/base_link_fine"/>
<mesh class="herb/wam_1/" file="base_link_convex-241a02f0fe0e1f2c3855b352df6e69b26ab5b1b2.stl" name="herb/wam_1/base_link_convex"/>
<mesh class="herb/wam_1/" file="shoulder_link_fine-70a80ea5cf6a9c11a96b4c55087f2c8f2c020d97.stl" name="herb/wam_1/shoulder_link_fine"/>
<mesh class="herb/wam_1/" file="shoulder_link_convex_decomposition_p1-b99c0e22423c21ede02982f896bc789bdae3b5ff.stl" name="herb/wam_1/shoulder_link_convex_decomposition_p1"/>
<mesh class="herb/wam_1/" file="shoulder_link_convex_decomposition_p2-2b3a517d82b2e4f2469d55f41baed0468e780436.stl" name="herb/wam_1/shoulder_link_convex_decomposition_p2"/>
<mesh class="herb/wam_1/" file="shoulder_link_convex_decomposition_p3-e4f646ee6b98165b5a010a5f12ebfd92128fb41b.stl" name="herb/wam_1/shoulder_link_convex_decomposition_p3"/>
<mesh class="herb/wam_1/" file="shoulder_pitch_link_fine-36aee65354a741fe81ccf9d2614e6e43d67f3c55.stl" name="herb/wam_1/shoulder_pitch_link_fine"/>
<mesh class="herb/wam_1/" file="shoulder_pitch_link_convex-f05b3e597235abed137d821b96ff7d1e2a82ea31.stl" name="herb/wam_1/shoulder_pitch_link_convex"/>
<mesh class="herb/wam_1/" file="upper_arm_link_fine-ca01ee6d48649ad9f6baea7259d5cf9d08b3d635.stl" name="herb/wam_1/upper_arm_link_fine"/>
<mesh class="herb/wam_1/" file="upper_arm_link_convex_decomposition_p1-7ea03e3ea97d649eedea55dc3de0ea10bbb87283.stl" name="herb/wam_1/upper_arm_link_convex_decomposition_p1"/>
<mesh class="herb/wam_1/" file="upper_arm_link_convex_decomposition_p2-25fc59a045c74cc0c5e901bc31501e8ca212159a.stl" name="herb/wam_1/upper_arm_link_convex_decomposition_p2"/>
<mesh class="herb/wam_1/" file="elbow_link_fine-105c4e016f6a319ed74f5d55377fee15774c5d58.stl" name="herb/wam_1/elbow_link_fine"/>
<mesh class="herb/wam_1/" file="elbow_link_convex-618d49f47d28f374d03b62f3a4f1a11c87b40044.stl" name="herb/wam_1/elbow_link_convex"/>
<mesh class="herb/wam_1/" file="forearm_link_fine-e78631019336cb810525911769f36184d30c291c.stl" name="herb/wam_1/forearm_link_fine"/>
<mesh class="herb/wam_1/" file="forearm_link_convex_decomposition_p1-57f1e443a9d84a9b1e59b719541351dbc72b0c65.stl" name="herb/wam_1/forearm_link_convex_decomposition_p1"/>
<mesh class="herb/wam_1/" file="forearm_link_convex_decomposition_p2-6249b0eb91291b6e61d4566ef7bddcd133aeb11d.stl" name="herb/wam_1/forearm_link_convex_decomposition_p2"/>
<mesh class="herb/wam_1/" file="wrist_yaw_link_fine-3ec69f37eedc74a0b8a6edd994a49a13dec2a554.stl" name="herb/wam_1/wrist_yaw_link_fine"/>
<mesh class="herb/wam_1/" file="wrist_yaw_link_convex_decomposition_p1-483314d477ecff523b1f17f1b29cc860dda3b25f.stl" name="herb/wam_1/wrist_yaw_link_convex_decomposition_p1"/>
<mesh class="herb/wam_1/" file="wrist_yaw_link_convex_decomposition_p2-963f6bf6f5f239543cf4bbf0630fd7e3253cbd4a.stl" name="herb/wam_1/wrist_yaw_link_convex_decomposition_p2"/>
<mesh class="herb/wam_1/" file="wrist_pitch_link_fine-06a8aff3e76c7b3ff34cdaf40c9ed5950e2ad1fe.stl" name="herb/wam_1/wrist_pitch_link_fine"/>
<mesh class="herb/wam_1/" file="wrist_pitch_link_convex_decomposition_p1-3328df36bd7e249a571d0cfb2e43ac0cf17b9b77.stl" name="herb/wam_1/wrist_pitch_link_convex_decomposition_p1"/>
<mesh class="herb/wam_1/" file="wrist_pitch_link_convex_decomposition_p2-91c5869923c13020ad406e859d49bf3f795c96be.stl" name="herb/wam_1/wrist_pitch_link_convex_decomposition_p2"/>
<mesh class="herb/wam_1/" file="wrist_pitch_link_convex_decomposition_p3-744bd1df4bb176ceef61c79ab12a5b9de038d171.stl" name="herb/wam_1/wrist_pitch_link_convex_decomposition_p3"/>
<mesh class="herb/wam_1/" file="wrist_palm_link_fine-db9db06e50f8f189c8d475b09f86be267e38a874.stl" name="herb/wam_1/wrist_palm_link_fine"/>
<mesh class="herb/wam_1/" file="wrist_palm_link_convex-d455a798d573176ecdc3c9794069b0e3f4f7f623.stl" name="herb/wam_1/wrist_palm_link_convex"/>
<mesh class="herb/wam_1/bhand/" file="bhand_palm_fine-dff1351ac0d212f9757a6bc04b85287b4f13403a.stl" name="herb/wam_1/bhand/bhand_palm_fine"/>
<mesh class="herb/wam_1/bhand/" file="bhand_palm_link_convex_decomposition_p1-f8ba6cc8e8efbe24c938e092f61618174769428c.stl" name="herb/wam_1/bhand/bhand_palm_link_convex_decomposition_p1"/>
<mesh class="herb/wam_1/bhand/" file="bhand_palm_link_convex_decomposition_p2-0a66a02812a929ee040991e6d1a7b1d11bba7bb1.stl" name="herb/wam_1/bhand/bhand_palm_link_convex_decomposition_p2"/>
<mesh class="herb/wam_1/bhand/" file="bhand_palm_link_convex_decomposition_p3-9d93e72f01b43aa200deff06df4a395d3eb5312a.stl" name="herb/wam_1/bhand/bhand_palm_link_convex_decomposition_p3"/>
<mesh class="herb/wam_1/bhand/" file="bhand_palm_link_convex_decomposition_p4-e38e089a001a0010eec12bebd2368162120ee6a2.stl" name="herb/wam_1/bhand/bhand_palm_link_convex_decomposition_p4"/>
<mesh class="herb/wam_1/bhand/" file="bhand_finger_prox_link_fine-b325b78dd2ffcab9984efe22434207b1d2e07e28.stl" name="herb/wam_1/bhand/bhand_finger_prox_link_fine"/>
<mesh class="herb/wam_1/bhand/" file="bhand_finger_prox_link_convex_decomposition_p1-12071ca7dea820f8ba395c17ad58efbdd2b805a8.stl" name="herb/wam_1/bhand/bhand_finger_prox_link_convex_decomposition_p1"/>
<mesh class="herb/wam_1/bhand/" file="bhand_finger_prox_link_convex_decomposition_p2-c728b40c271300b132049560287e0844b86833ed.stl" name="herb/wam_1/bhand/bhand_finger_prox_link_convex_decomposition_p2"/>
<mesh class="herb/wam_1/bhand/" file="bhand_finger_prox_link_convex_decomposition_p3-561559fcb477ac41797bbd8b0da5e960b41f0363.stl" name="herb/wam_1/bhand/bhand_finger_prox_link_convex_decomposition_p3"/>
<mesh class="herb/wam_1/bhand/" file="bhand_finger_med_link_fine-31e862bb0515137229a05ffa049a96de151eb229.stl" name="herb/wam_1/bhand/bhand_finger_med_link_fine"/>
<mesh class="herb/wam_1/bhand/" file="bhand_finger_med_link_convex-af5d2e0e2990df27924df077b297d046b710ded5.stl" name="herb/wam_1/bhand/bhand_finger_med_link_convex"/>
<mesh class="herb/wam_1/bhand/" file="bhand_finger_dist_link_fine-defe6db5320e79d25ade307bc4a42d6ef272b8d4.stl" name="herb/wam_1/bhand/bhand_finger_dist_link_fine"/>
<mesh class="herb/wam_1/bhand/" file="bhand_finger_dist_link_convex-dd89f87a37ef6bb33ec5f1998f123eb1e907ddef.stl" name="herb/wam_1/bhand/bhand_finger_dist_link_convex"/>
<mesh class="geom0" file="ycb_objects/026_sponge/google_16k/nontextured.stl" name="gen_mesh_0" scale="1 1 1"/><mesh class="geom0" file="downloaded_assets/lamp_1/scene.stl" name="gen_mesh_gadded_1" scale="1.553332971385837 1.553332971385837 1.553332971385837"/><mesh class="geom0" file="ycb_objects/077_rubiks_cube/google_16k/nontextured.stl" name="gen_mesh_gadded_2" scale="1.249729873411924 1.249729873411924 1.249729873411924"/></asset>
<worldbody>
<camera mode="targetbody" name="herb_head" pos="0 0.75 .5" target="cam_target"/>
<camera fovy="45" mode="targetbody" name="iso" pos=".6 -0.007797638 .9" target="table"/>
<geom class="/" condim="3" material="wood2d" name="floor" pos="0 0 0" size="0 0 0.25" type="plane"/>
<geom class="/" conaffinity="0" contype="0" mass="0.0" material="wall" name="//unnamed_geom_1" pos="-15 0 15" size="15 15 0.025000000" type="plane" zaxis="1 0 0"/>
<geom class="/" conaffinity="0" contype="0" mass="0.0" material="wall" name="//unnamed_geom_2" pos="0 15 15" size="15 15 0.025000000" type="plane" zaxis="0 -1 0"/>
<geom class="/" condim="3" name="table_plane" pos="0 0 0.3" rgba="0 0 0 0" size="0 0 0.25" type="plane"/>
<body name="table" pos="0 0 0.3" quat="1 0 0 0">
<geom class="/" group="1" material="marblecube" name="tabletop" pos="0 0 -0.012500000" size="0.4 0.6999996 0.012500000" type="box"/>
<geom class="/" group="1" material="concretecube" name="//unnamed_geom_4" pos="0.2 0.3499998 -0.1499999" size="0.0408 0.1374998" type="cylinder"/>
<geom class="/" group="1" material="concretecube" name="//unnamed_geom_5" pos="-0.2 0.3499998 -0.1499999" size="0.0408 0.1374998" type="cylinder"/>
<geom class="/" group="1" material="concretecube" name="//unnamed_geom_6" pos="0.2 -0.3499998 -0.1499999" size="0.0408 0.1374998" type="cylinder"/>
<geom class="/" group="1" material="concretecube" name="//unnamed_geom_7" pos="-0.2 -0.3499998 -0.1499999" size="0.0408 0.1374998" type="cylinder"/>
</body>
<body name="herb/">
<body name="cam_target" pos="0 0 0.45">
<geom class="geom0" conaffinity="0" contype="0" group="1" name="//unnamed_geom_100" rgba="0 0 0 0" size="0.0001 0.0001 0.0001" type="box"/>
</body>
<body name="herb/herb" pos="-0.8 0 0.0509999">
<geom class="herb/viz" mesh="herb/herb_frame" name="herb//unnamed_geom_0" pos="0 0 1.05" quat="0.5 0.499977 0.5 0.500023" rgba="0.299999 0 0 1" type="mesh"/>
<geom class="herb/" mesh="herb/herb_frame_collision" name="herb//unnamed_geom_1" pos="0 0 1.05" quat="3.2758700e-05 3.27571999999e-05 -0.70709 -0.70712299999" rgba="0.299999 0 0 1" type="mesh"/>
<geom class="herb/viz" mesh="herb/herb_neobotix_base" name="herb//unnamed_geom_2" pos="-0.0740859999999 -3.43217e-06 -0.0512439999999" quat="0.70709100 0 0 0.70712299999" rgba="0.299999 0.299999 0.299999 1" type="mesh"/>
<geom class="herb/" mesh="herb/herb_neobotix_base_collision" name="herb//unnamed_geom_3" pos="-0.0740859999999 -3.43217e-06 -0.0512439999999" quat="2.3108400e-07 2.31074e-07 0.70709 0.70712299999" rgba="0.299999 0.299999 0.299999 1" type="mesh"/>
<geom class="herb/viz" mesh="herb/herb_neck_pan" name="herb//unnamed_geom_4" pos="0.1249 5.7862200e-06 1.1008100" quat="2.3108400e-07 0.70712299999 -0.70709 -2.31074e-07" type="mesh"/>
<geom class="herb/" mesh="herb/herb_neck_pan_collision" name="herb//unnamed_geom_5" pos="0.1249 5.7862200e-06 1.1008100" quat="0.5 0.500023 -0.5 -0.499977" type="mesh"/>
<geom class="herb/viz" mesh="herb/herb_neck_tilt" name="herb//unnamed_geom_6" pos="0.1249 5.7862200e-06 1.19270999999" quat="0.24185100 0.66447800 -0.66444800 -0.241839" type="mesh"/>
<geom class="herb/" mesh="herb/herb_neck_tilt_collision" name="herb//unnamed_geom_7" pos="0.1249 5.7862200e-06 1.19270999999" quat="-0.29881400 -0.640849 -0.64087799999 -0.298827999999" type="mesh"/>
<geom class="herb/viz" mesh="herb/herb_crl_head" name="herb//unnamed_geom_8" pos="0.32064500 0.0039098500 1.33653" quat="0.640863999999 0.29885800 -0.298844 -0.64083500" rgba="0.299999 0.299999 0.299999 1" type="mesh"/>
<geom class="herb/" mesh="herb/herb_crl_head_collision" name="herb//unnamed_geom_9" pos="0.124906 0.0077957900 1.1927000" quat="0.298844 0.64083500 0.640863999999 0.298856999999" rgba="0.299999 0.299999 0.299999 1" type="mesh"/>
<geom class="herb/viz" mesh="herb/herb_kinect" name="herb//unnamed_geom_10" pos="0.19753100 0.0077991500 1.2177" quat="0.664479999996 0.664456999996 0.241829999999 -0.241829999999" rgba="0.25 0.25 0.25 1" type="mesh"/>
<geom class="herb/" mesh="herb/herb_kinect_collision" name="herb//unnamed_geom_11" pos="0.125458999999 0.00779763999999 1.19333" quat="0.29885200 0.64085700 0.64084300 0.29885" rgba="0.25 0.25 0.25 1" type="mesh"/>
<site class="herb/" name="herb/right_arm" pos="0.012500000 -0.22 0.92000000" quat="0 -0.70709999999 0 -0.70709999999"/>
<body name="herb/wam_1/" pos="0.012500000 -0.22 0.92000000" quat="0 -0.7070995 0 -0.7070995">
<body name="herb/wam_1/1_base_link" pos="0 0 0" quat="1 0 0 0">
<inertial diaginertia="0.1 0.1 0.1" mass="1.0" pos="0 0 0"/>
<geom class="herb/wam_1/viz" mesh="herb/wam_1/base_link_fine" name="herb/wam_1//unnamed_geom_0"/>
<geom class="herb/wam_1/col" mesh="herb/wam_1/base_link_convex" name="herb/wam_1//unnamed_geom_1"/>
<body name="herb/wam_1/2_shoulder_yaw_link" pos="0 0 0.3459997">
<inertial diaginertia="0.1350889 0.113095 0.09044258" mass="5.0" pos="-0.00443422 -0.00066489000 -0.1289039" quat="0.6956595 0.71671300 -0.03548628 0.03348387"/>
<joint armature=".01" class="herb/wam_1/" damping="1.98" name="herb/wam_1/j1_base_yaw_joint" range="-2.6 2.6"/>
<geom class="herb/wam_1/viz" mesh="herb/wam_1/shoulder_link_fine" name="herb/wam_1//unnamed_geom_2"/>
<geom class="herb/wam_1/col" mesh="herb/wam_1/shoulder_link_convex_decomposition_p1" name="herb/wam_1//unnamed_geom_3"/>
<geom class="herb/wam_1/col" mesh="herb/wam_1/shoulder_link_convex_decomposition_p2" name="herb/wam_1//unnamed_geom_4"/>
<geom class="herb/wam_1/col" mesh="herb/wam_1/shoulder_link_convex_decomposition_p3" name="herb/wam_1//unnamed_geom_5"/>
<body name="herb/wam_1/3_shoulder_pitch_link" pos="0 0 0" quat="0.4159998 -0.4159998 0.5719995 0.5719995">
<inertial diaginertia="0.021419500 0.0167127 0.012645200" mass="3.87494" pos="-0.00236981 -0.0154211 0.0310561" quat="0.96179400 0.27311200 -0.016931600 0.008665920006"/>
<joint armature=".01" class="herb/wam_1/" damping="0.55" name="herb/wam_1/j2_shoulder_pitch_joint" range="-1.9850000 1.9850000" ref="1.885"/>
<geom class="herb/wam_1/viz" mesh="herb/wam_1/shoulder_pitch_link_fine" name="herb/wam_1//unnamed_geom_6"/>
<geom class="herb/wam_1/col" mesh="herb/wam_1/shoulder_pitch_link_convex" name="herb/wam_1//unnamed_geom_7"/>
<body name="herb/wam_1/4_upper_arm_link" pos="0 0 0" quat="0.70710700 0.70710700 0 0">
<inertial diaginertia="0.05927179 0.059220700 0.003134188" mass="2.20228" pos="0.0068325900 3.3090000e-05 0.39249200" quat="0.64713600 0.01708219 0.0143038 0.7620488"/>
<joint armature=".01" class="herb/wam_1/" damping="1.65" name="herb/wam_1/j3_shoulder_yaw_joint" range="-2.799998 2.799998"/>
<geom class="herb/wam_1/viz" mesh="herb/wam_1/upper_arm_link_fine" name="herb/wam_1//unnamed_geom_8"/>
<geom class="herb/wam_1/col" mesh="herb/wam_1/upper_arm_link_convex_decomposition_p1" name="herb/wam_1//unnamed_geom_9"/>
<geom class="herb/wam_1/col" mesh="herb/wam_1/upper_arm_link_convex_decomposition_p2" name="herb/wam_1//unnamed_geom_10"/>
<body name="herb/wam_1/5_forearm_link" pos="0.04499998 0 0.55000000" quat="0.3539998 -0.3539998 0.6119999 0.6119999">
<inertial diaginertia="0.0151047 0.0148285 0.0027580500" mass="0.500168" pos="-0.04001489 -0.14271700 -0.00022942000" quat="0.70428100 0.70632600 0.01803329 0.06903524"/>
<joint armature=".01" class="herb/wam_1/" damping="0.88" name="herb/wam_1/j4_elbow_pitch_joint" range="-0.9 3.141589" ref="2.0944"/>
<geom class="herb/wam_1/viz" mesh="herb/wam_1/elbow_link_fine" name="herb/wam_1//unnamed_geom_11"/>
<geom class="herb/wam_1/col" mesh="herb/wam_1/elbow_link_convex" name="herb/wam_1//unnamed_geom_12"/>
<geom class="herb/wam_1/viz" euler="1.57 0 0" mesh="herb/wam_1/forearm_link_fine" name="herb/wam_1//unnamed_geom_13" pos="-0.04499998 -0.07299995 0"/>
<geom class="herb/wam_1/col" euler="1.57 0 0" mesh="herb/wam_1/forearm_link_convex_decomposition_p1" name="herb/wam_1//unnamed_geom_14" pos="-0.04499998 -0.07299995 0"/>
<geom class="herb/wam_1/col" euler="1.57 0 0" mesh="herb/wam_1/forearm_link_convex_decomposition_p2" name="herb/wam_1//unnamed_geom_15" pos="-0.04499998 -0.07299995 0"/>
<body name="herb/wam_1/6_wrist_yaw_link" pos="-0.04499998 -0.2999999 0" quat="0.70710700 0.70710700 0 0">
<inertial diaginertia="0.0005551678 0.00046317 0.0002340719" mass="1.05376" pos="8.920995e-05 0.0043582400 -0.0051121700" quat="0.630602 0.77609300 0.0040196900 -0.002372"/>
<joint armature=".01" class="herb/wam_1/" damping="0.55" name="herb/wam_1/j5_wrist_yaw_joint" range="-4.549998 1.25"/>
<geom class="herb/wam_1/viz" mesh="herb/wam_1/wrist_yaw_link_fine" name="herb/wam_1//unnamed_geom_16"/>
<geom class="herb/wam_1/col" mesh="herb/wam_1/wrist_yaw_link_convex_decomposition_p1" name="herb/wam_1//unnamed_geom_17"/>
<geom class="herb/wam_1/col" mesh="herb/wam_1/wrist_yaw_link_convex_decomposition_p2" name="herb/wam_1//unnamed_geom_18"/>
<body name="herb/wam_1/7_wrist_pitch_link" pos="0 0 0" quat="0.70710700 -0.70710700 0 0">
<inertial diaginertia="0.0005551678 0.00046317 0.0002340719" mass="0.517974" pos="-0.0001226199 -0.024683400 -0.01703189" quat="0.630602 0.77609300 0.0040196900 -0.002372"/>
<joint armature=".01" class="herb/wam_1/" damping="0.11" name="herb/wam_1/j6_wrist_pitch_joint" range="-1.5707 1.5707"/>
<geom class="herb/wam_1/viz" mesh="herb/wam_1/wrist_pitch_link_fine" name="herb/wam_1//unnamed_geom_19"/>
<geom class="herb/wam_1/col" mesh="herb/wam_1/wrist_pitch_link_convex_decomposition_p1" name="herb/wam_1//unnamed_geom_20"/>
<geom class="herb/wam_1/col" mesh="herb/wam_1/wrist_pitch_link_convex_decomposition_p2" name="herb/wam_1//unnamed_geom_21"/>
<geom class="herb/wam_1/col" mesh="herb/wam_1/wrist_pitch_link_convex_decomposition_p3" name="herb/wam_1//unnamed_geom_22"/>
<body name="herb/wam_1/8_wrist_palm_link" pos="0 0 0" quat="0.70710700 0.70710700 0 0">
<inertial diaginertia="0.00020683 0.00010859 0.00010851" mass="0.0828613" pos="0 0 0.055" quat="0.70710700 0 0 0.70710700"/>
<joint armature=".01" class="herb/wam_1/" damping="0.11" name="herb/wam_1/j7_palm_yaw_joint" range="-3 3"/>
<geom class="herb/wam_1/viz" mesh="herb/wam_1/wrist_palm_link_fine" name="herb/wam_1//unnamed_geom_23"/>
<geom class="herb/wam_1/col" mesh="herb/wam_1/wrist_palm_link_convex" name="herb/wam_1//unnamed_geom_24"/>
<site class="herb/wam_1/" name="herb/wam_1/hand_attachment"/>
<body name="herb/wam_1/bhand/">
<body name="herb/wam_1/bhand/bhand_palm_link" pos="0 0 0.05999998" quat="0 0 0 1">
<inertial diaginertia="0.000224052 0.0002107009 2.8121200e-05" mass="0.50573" pos="-5.109798e-05 0.005043297 0.036671000" quat="0.5530978 0.43904700 0.43445600 0.5590776"/>
<geom class="herb/wam_1/bhand/viz" mesh="herb/wam_1/bhand/bhand_palm_fine" name="herb/wam_1/bhand//unnamed_geom_0"/>
<geom class="herb/wam_1/bhand/col" mesh="herb/wam_1/bhand/bhand_palm_link_convex_decomposition_p1" name="herb/wam_1/bhand//unnamed_geom_1"/>
<geom class="herb/wam_1/bhand/col" mesh="herb/wam_1/bhand/bhand_palm_link_convex_decomposition_p2" name="herb/wam_1/bhand//unnamed_geom_2"/>
<geom class="herb/wam_1/bhand/col" mesh="herb/wam_1/bhand/bhand_palm_link_convex_decomposition_p3" name="herb/wam_1/bhand//unnamed_geom_3"/>
<geom class="herb/wam_1/bhand/col" mesh="herb/wam_1/bhand/bhand_palm_link_convex_decomposition_p4" name="herb/wam_1/bhand//unnamed_geom_4"/>
<body name="herb/wam_1/bhand/finger11" pos="-0.025000000 0 0.041500000" quat="0.70710700 0 0 -0.70710700">
<inertial diaginertia="7.7733500e-05 7.662819e-05 4.8312200e-06" mass="0.14109" pos="0.023133000 0.00078642000 0.0005279197" quat="0.01607959 0.70726900 -0.0007660079 0.706762"/>
<joint armature=".01" axis="0 0 -1" class="herb/wam_1/bhand/" damping="0.11" name="herb/wam_1/bhand/j11" range="0 3.141589"/>
<geom class="herb/wam_1/bhand/viz" mesh="herb/wam_1/bhand/bhand_finger_prox_link_fine" name="herb/wam_1/bhand//unnamed_geom_5"/>
<geom class="herb/wam_1/bhand/col" mesh="herb/wam_1/bhand/bhand_finger_prox_link_convex_decomposition_p1" name="herb/wam_1/bhand//unnamed_geom_6"/>
<geom class="herb/wam_1/bhand/col" mesh="herb/wam_1/bhand/bhand_finger_prox_link_convex_decomposition_p2" name="herb/wam_1/bhand//unnamed_geom_7"/>
<geom class="herb/wam_1/bhand/col" mesh="herb/wam_1/bhand/bhand_finger_prox_link_convex_decomposition_p3" name="herb/wam_1/bhand//unnamed_geom_8"/>
<body name="herb/wam_1/bhand/finger12" pos="0.05 0 0.0339" quat="0.70710700 0.70710700 0 0">
<inertial diaginertia="7.7733500e-05 7.662819e-05 4.8312200e-06" mass="0.062139" pos="0.023133000 0.00078642000 0.0005279197" quat="0.01607959 0.70726900 -0.0007660079 0.706762"/>
<joint armature=".01" class="herb/wam_1/bhand/" damping="0.11" name="herb/wam_1/bhand/j12" range="0 2.44346"/>
<geom class="herb/wam_1/bhand/viz" mesh="herb/wam_1/bhand/bhand_finger_med_link_fine" name="herb/wam_1/bhand//unnamed_geom_9"/>
<geom class="herb/wam_1/bhand/col" mesh="herb/wam_1/bhand/bhand_finger_med_link_convex" name="herb/wam_1/bhand//unnamed_geom_10"/>
<body name="herb/wam_1/bhand/finger13" pos="0.069940000 0.003 0" quat="0.92388000 0 0 0.382683">
<inertial diaginertia="3.843398e-05 3.727529e-05 3.0998700e-06" mass="0.041377" pos="0.022825000 0.0010491000 0.00042030000" quat="0.5084118 0.51165000 0.4895829 0.48993900"/>
<joint armature=".01" class="herb/wam_1/bhand/" damping="0.11" name="herb/wam_1/bhand/j13" range="0 0.837758"/>
<geom class="herb/wam_1/bhand/viz" euler="0 0 -0.8399997" mesh="herb/wam_1/bhand/bhand_finger_dist_link_fine" name="herb/wam_1/bhand//unnamed_geom_11"/>
<geom class="herb/wam_1/bhand/col" euler="0 0 -0.8399997" mesh="herb/wam_1/bhand/bhand_finger_dist_link_convex" name="herb/wam_1/bhand//unnamed_geom_12"/>
</body>
</body>
</body>
<body name="herb/wam_1/bhand/finger21" pos="0.025000000 0 0.041500000" quat="0.70710700 0 0 -0.70710700">
<inertial diaginertia="7.7733500e-05 7.662819e-05 4.8312200e-06" mass="0.14109" pos="0.023133000 0.00078642000 0.0005279197" quat="0.01607959 0.70726900 -0.0007660079 0.706762"/>
<joint armature=".01" class="herb/wam_1/bhand/" damping="0.11" name="herb/wam_1/bhand/j21" range="0 3.141589"/>
<geom class="herb/wam_1/bhand/viz" mesh="herb/wam_1/bhand/bhand_finger_prox_link_fine" name="herb/wam_1/bhand//unnamed_geom_13"/>
<geom class="herb/wam_1/bhand/col" mesh="herb/wam_1/bhand/bhand_finger_prox_link_convex_decomposition_p1" name="herb/wam_1/bhand//unnamed_geom_14"/>
<geom class="herb/wam_1/bhand/col" mesh="herb/wam_1/bhand/bhand_finger_prox_link_convex_decomposition_p2" name="herb/wam_1/bhand//unnamed_geom_15"/>
<geom class="herb/wam_1/bhand/col" mesh="herb/wam_1/bhand/bhand_finger_prox_link_convex_decomposition_p3" name="herb/wam_1/bhand//unnamed_geom_16"/>
<body name="herb/wam_1/bhand/finger22" pos="0.05 0 0.0339" quat="0.70710700 0.70710700 0 0">
<inertial diaginertia="7.7733500e-05 7.662819e-05 4.8312200e-06" mass="0.062139" pos="0.023133000 0.00078642000 0.0005279197" quat="0.01607959 0.70726900 -0.0007660079 0.706762"/>
<joint armature=".01" class="herb/wam_1/bhand/" damping="0.11" name="herb/wam_1/bhand/j22" range="0 2.44346"/>
<geom class="herb/wam_1/bhand/viz" mesh="herb/wam_1/bhand/bhand_finger_med_link_fine" name="herb/wam_1/bhand//unnamed_geom_17"/>
<geom class="herb/wam_1/bhand/col" mesh="herb/wam_1/bhand/bhand_finger_med_link_convex" name="herb/wam_1/bhand//unnamed_geom_18"/>
<body name="herb/wam_1/bhand/finger23" pos="0.069940000 0.003 0" quat="0.92388000 0 0 0.382683">
<inertial diaginertia="3.843398e-05 3.727529e-05 3.0998700e-06" mass="0.041377" pos="0.022825000 0.0010491000 0.00042030000" quat="0.5084118 0.51165000 0.4895829 0.48993900"/>
<joint armature=".01" class="herb/wam_1/bhand/" damping="0.11" name="herb/wam_1/bhand/j23" range="0 0.837758"/>
<geom class="herb/wam_1/bhand/viz" euler="0 0 -0.8399997" mesh="herb/wam_1/bhand/bhand_finger_dist_link_fine" name="herb/wam_1/bhand//unnamed_geom_19"/>
<geom class="herb/wam_1/bhand/col" euler="0 0 -0.8399997" mesh="herb/wam_1/bhand/bhand_finger_dist_link_convex" name="herb/wam_1/bhand//unnamed_geom_20"/>
</body>
</body>
</body>
<body name="herb/wam_1/bhand/finger32" pos="0 0.05 0.07539995" quat="0.5 0.5 0.5 0.5">
<inertial diaginertia="7.7733500e-05 7.662819e-05 4.8312200e-06" mass="0.062139" pos="0.023133000 0.00078642000 0.0005279197" quat="0.01607959 0.70726900 -0.0007660079 0.706762"/>
<joint armature=".01" class="herb/wam_1/bhand/" damping="0.11" name="herb/wam_1/bhand/j32" range="0 2.44346"/>
<geom class="herb/wam_1/bhand/viz" mesh="herb/wam_1/bhand/bhand_finger_med_link_fine" name="herb/wam_1/bhand//unnamed_geom_21"/>
<geom class="herb/wam_1/bhand/col" mesh="herb/wam_1/bhand/bhand_finger_med_link_convex" name="herb/wam_1/bhand//unnamed_geom_22"/>
<body name="herb/wam_1/bhand/finger33" pos="0.069940000 0.003 0" quat="0.92388000 0 0 0.382683">
<inertial diaginertia="3.843398e-05 3.727529e-05 3.0998700e-06" mass="0.041377" pos="0.022825000 0.0010491000 0.00042030000" quat="0.5084118 0.51165000 0.4895829 0.48993900"/>
<joint armature=".01" class="herb/wam_1/bhand/" damping="0.11" name="herb/wam_1/bhand/j33" range="0 0.837758"/>
<geom class="herb/wam_1/bhand/viz" euler="0 0 -0.8399997" mesh="herb/wam_1/bhand/bhand_finger_dist_link_fine" name="herb/wam_1/bhand//unnamed_geom_23"/>
<geom class="herb/wam_1/bhand/col" euler="0 0 -0.8399997" mesh="herb/wam_1/bhand/bhand_finger_dist_link_convex" name="herb/wam_1/bhand//unnamed_geom_24"/>
</body>
</body>
</body>
</body>
</body>
</body>
</body>
</body>
</body>
</body>
</body>
</body>
</body>
<!--
<site name="herb/left_arm" class="herb/" pos="0.012500000 0.22 0.92000000" quat="0 -0.7070995 0 -0.7070995"/>
<body pos="0.012500000 0.22 0.92000000" quat="0 -0.7070995 0 -0.7070995" name="herb/wam/">
<body name="herb/wam/1_base_link" pos="0 0 0" quat="1 0 0 0">
<inertial pos="0 0 0" mass="1.0" diaginertia="0.1 0.1 0.1"/>
<geom name="herb/wam//unnamed_geom_0" class="herb/wam/viz" mesh="herb/wam/base_link_fine"/>
<geom name="herb/wam//unnamed_geom_1" class="herb/wam/col" mesh="herb/wam/base_link_convex"/>
<body name="herb/wam/2_shoulder_yaw_link" pos="0 0 0.3459997">
<inertial pos="-0.00443422 -0.00066489000 -0.1289039" quat="0.6956595 0.71671300 -0.03548628 0.03348387" mass="5.0" diaginertia="0.1350889 0.113095 0.09044258"/>
<joint name="herb/wam/j1_base_yaw_joint" class="herb/wam/" range="-2.6000000 2.6000000" damping="1.98" armature=".01"/>
<geom name="herb/wam//unnamed_geom_2" class="herb/wam/viz" mesh="herb/wam/shoulder_link_fine"/>
<geom name="herb/wam//unnamed_geom_3" class="herb/wam/col" mesh="herb/wam/shoulder_link_convex_decomposition_p1"/>
<geom name="herb/wam//unnamed_geom_4" class="herb/wam/col" mesh="herb/wam/shoulder_link_convex_decomposition_p2"/>
<geom name="herb/wam//unnamed_geom_5" class="herb/wam/col" mesh="herb/wam/shoulder_link_convex_decomposition_p3"/>
<body name="herb/wam/3_shoulder_pitch_link" pos="0 0 0" quat="0.4159998 -0.4159998 0.5719995 0.5719995">
<inertial pos="-0.00236981 -0.0154211 0.0310561" quat="0.96179400 0.27311200 -0.016931600 0.008665920006" mass="3.87494" diaginertia="0.021419500 0.0167127 0.012645200"/>
<joint name="herb/wam/j2_shoulder_pitch_joint" class="herb/wam/" range="-1.9850000 1.9850000" ref="1.885" damping="0.55" armature=".01"/>
<geom name="herb/wam//unnamed_geom_6" class="herb/wam/viz" mesh="herb/wam/shoulder_pitch_link_fine"/>
<geom name="herb/wam//unnamed_geom_7" class="herb/wam/col" mesh="herb/wam/shoulder_pitch_link_convex"/>
<body name="herb/wam/4_upper_arm_link" pos="0 0 0" quat="0.70710700 0.70710700 0 0">
<inertial pos="0.0068325900 3.3090000e-05 0.39249200" quat="0.64713600 0.01708219 0.0143038 0.7620488" mass="2.20228" diaginertia="0.05927179 0.059220700 0.003134188"/>
<joint name="herb/wam/j3_shoulder_yaw_joint" class="herb/wam/" range="-2.799998 2.799998" damping="1.65" armature=".01"/>
<geom name="herb/wam//unnamed_geom_8" class="herb/wam/viz" mesh="herb/wam/upper_arm_link_fine"/>
<geom name="herb/wam//unnamed_geom_9" class="herb/wam/col" mesh="herb/wam/upper_arm_link_convex_decomposition_p1"/>
<geom name="herb/wam//unnamed_geom_10" class="herb/wam/col" mesh="herb/wam/upper_arm_link_convex_decomposition_p2"/>
<body name="herb/wam/5_forearm_link" pos="0.04499998 0 0.55000000" quat="0.3539998 -0.3539998 0.6119999 0.6119999">
<inertial pos="-0.04001489 -0.14271700 -0.00022942000" quat="0.70428100 0.70632600 0.01803329 0.06903524" mass="0.500168" diaginertia="0.0151047 0.0148285 0.0027580500"/>
<joint name="herb/wam/j4_elbow_pitch_joint" class="herb/wam/" range="-0.9 3.141589" ref="2.0944" damping="0.88" armature=".01"/>
<geom name="herb/wam//unnamed_geom_11" class="herb/wam/viz" mesh="herb/wam/elbow_link_fine"/>
<geom name="herb/wam//unnamed_geom_12" class="herb/wam/col" mesh="herb/wam/elbow_link_convex"/>
<geom name="herb/wam//unnamed_geom_13" class="herb/wam/viz" pos="-0.04499998 -0.07299995 0" euler="1.57 0 0" mesh="herb/wam/forearm_link_fine"/>
<geom name="herb/wam//unnamed_geom_14" class="herb/wam/col" pos="-0.04499998 -0.07299995 0" euler="1.57 0 0" mesh="herb/wam/forearm_link_convex_decomposition_p1"/>
<geom name="herb/wam//unnamed_geom_15" class="herb/wam/col" pos="-0.04499998 -0.07299995 0" euler="1.57 0 0" mesh="herb/wam/forearm_link_convex_decomposition_p2"/>
<body name="herb/wam/6_wrist_yaw_link" pos="-0.04499998 -0.2999999 0" quat="0.70710700 0.70710700 0 0">
<inertial pos="8.920995e-05 0.0043582400 -0.0051121700" quat="0.630602 0.77609300 0.0040196900 -0.002372" mass="1.05376" diaginertia="0.0005551678 0.00046317 0.0002340719"/>
<joint name="herb/wam/j5_wrist_yaw_joint" class="herb/wam/" range="-4.549998 1.25" damping="0.55" armature=".01"/>
<geom name="herb/wam//unnamed_geom_16" class="herb/wam/viz" mesh="herb/wam/wrist_yaw_link_fine"/>
<geom name="herb/wam//unnamed_geom_17" class="herb/wam/col" mesh="herb/wam/wrist_yaw_link_convex_decomposition_p1"/>
<geom name="herb/wam//unnamed_geom_18" class="herb/wam/col" mesh="herb/wam/wrist_yaw_link_convex_decomposition_p2"/>
<body name="herb/wam/7_wrist_pitch_link" pos="0 0 0" quat="0.70710700 -0.70710700 0 0">
<inertial pos="-0.0001226199 -0.024683400 -0.01703189" quat="0.630602 0.77609300 0.0040196900 -0.002372" mass="0.517974" diaginertia="0.0005551678 0.00046317 0.0002340719"/>
<joint name="herb/wam/j6_wrist_pitch_joint" class="herb/wam/" range="-1.5707 1.5707" damping="0.11" armature=".01"/>
<geom name="herb/wam//unnamed_geom_19" class="herb/wam/viz" mesh="herb/wam/wrist_pitch_link_fine"/>
<geom name="herb/wam//unnamed_geom_20" class="herb/wam/col" mesh="herb/wam/wrist_pitch_link_convex_decomposition_p1"/>
<geom name="herb/wam//unnamed_geom_21" class="herb/wam/col" mesh="herb/wam/wrist_pitch_link_convex_decomposition_p2"/>
<geom name="herb/wam//unnamed_geom_22" class="herb/wam/col" mesh="herb/wam/wrist_pitch_link_convex_decomposition_p3"/>
<body name="herb/wam/8_wrist_palm_link" pos="0 0 0" quat="0.70710700 0.70710700 0 0">
<inertial pos="0 0 0.055" quat="0.70710700 0 0 0.70710700" mass="0.0828613" diaginertia="0.00020683 0.00010859 0.00010851"/>
<joint name="herb/wam/j7_palm_yaw_joint" class="herb/wam/" range="-3 3" damping="0.11" armature=".01"/>
<geom name="herb/wam//unnamed_geom_23" class="herb/wam/viz" mesh="herb/wam/wrist_palm_link_fine"/>
<geom name="herb/wam//unnamed_geom_24" class="herb/wam/col" mesh="herb/wam/wrist_palm_link_convex"/>
<site name="herb/wam/hand_attachment" class="herb/wam/"/>
<body name="herb/wam/bhand/">
<body name="herb/wam/bhand/bhand_palm_link" pos="0 0 0.05999998" quat="0 0 0 1">
<inertial pos="-5.109798e-05 0.005043297 0.036671000" quat="0.5530978 0.43904700 0.43445600 0.5590776" mass="0.50573" diaginertia="0.000224052 0.0002107009 2.8121200e-05"/>
<geom name="herb/wam/bhand//unnamed_geom_0" class="herb/wam/bhand/viz" mesh="herb/wam/bhand/bhand_palm_fine"/>
<geom name="herb/wam/bhand//unnamed_geom_1" class="herb/wam/bhand/col" mesh="herb/wam/bhand/bhand_palm_link_convex_decomposition_p1"/>
<geom name="herb/wam/bhand//unnamed_geom_2" class="herb/wam/bhand/col" mesh="herb/wam/bhand/bhand_palm_link_convex_decomposition_p2"/>
<geom name="herb/wam/bhand//unnamed_geom_3" class="herb/wam/bhand/col" mesh="herb/wam/bhand/bhand_palm_link_convex_decomposition_p3"/>
<geom name="herb/wam/bhand//unnamed_geom_4" class="herb/wam/bhand/col" mesh="herb/wam/bhand/bhand_palm_link_convex_decomposition_p4"/>
<body name="herb/wam/bhand/finger11" pos="-0.025000000 0 0.041500000" quat="0.70710700 0 0 -0.70710700">
<inertial pos="0.023133000 0.00078642000 0.0005279197" quat="0.01607959 0.70726900 -0.0007660079 0.706762" mass="0.14109" diaginertia="7.7733500e-05 7.662819e-05 4.8312200e-06"/>
<joint name="herb/wam/bhand/j11" class="herb/wam/bhand/" axis="0 0 -1" range="0 3.141589" damping="0.11" armature=".01"/>
<geom name="herb/wam/bhand//unnamed_geom_5" class="herb/wam/bhand/viz" mesh="herb/wam/bhand/bhand_finger_prox_link_fine"/>
<geom name="herb/wam/bhand//unnamed_geom_6" class="herb/wam/bhand/col" mesh="herb/wam/bhand/bhand_finger_prox_link_convex_decomposition_p1"/>
<geom name="herb/wam/bhand//unnamed_geom_7" class="herb/wam/bhand/col" mesh="herb/wam/bhand/bhand_finger_prox_link_convex_decomposition_p2"/>
<geom name="herb/wam/bhand//unnamed_geom_8" class="herb/wam/bhand/col" mesh="herb/wam/bhand/bhand_finger_prox_link_convex_decomposition_p3"/>
<body name="herb/wam/bhand/finger12" pos="0.05 0 0.0339" quat="0.70710700 0.70710700 0 0">
<inertial pos="0.023133000 0.00078642000 0.0005279197" quat="0.01607959 0.70726900 -0.0007660079 0.706762" mass="0.062139" diaginertia="7.7733500e-05 7.662819e-05 4.8312200e-06"/>
<joint name="herb/wam/bhand/j12" class="herb/wam/bhand/" range="0 2.44346" damping="0.11" armature=".01"/>
<geom name="herb/wam/bhand//unnamed_geom_9" class="herb/wam/bhand/viz" mesh="herb/wam/bhand/bhand_finger_med_link_fine"/>
<geom name="herb/wam/bhand//unnamed_geom_10" class="herb/wam/bhand/col" mesh="herb/wam/bhand/bhand_finger_med_link_convex"/>
<body name="herb/wam/bhand/finger13" pos="0.069940000 0.003 0" quat="0.92388000 0 0 0.382683">
<inertial pos="0.022825000 0.0010491000 0.00042030000" quat="0.5084118 0.51165000 0.4895829 0.48993900" mass="0.041377" diaginertia="3.843398e-05 3.727529e-05 3.0998700e-06"/>
<joint name="herb/wam/bhand/j13" class="herb/wam/bhand/" range="0 0.837758" damping="0.11" armature=".01"/>
<geom name="herb/wam/bhand//unnamed_geom_11" class="herb/wam/bhand/viz" euler="0 0 -0.8399997" mesh="herb/wam/bhand/bhand_finger_dist_link_fine"/>
<geom name="herb/wam/bhand//unnamed_geom_12" class="herb/wam/bhand/col" euler="0 0 -0.8399997" mesh="herb/wam/bhand/bhand_finger_dist_link_convex"/>
</body>
</body>
</body>
<body name="herb/wam/bhand/finger21" pos="0.025000000 0 0.041500000" quat="0.70710700 0 0 -0.70710700">
<inertial pos="0.023133000 0.00078642000 0.0005279197" quat="0.01607959 0.70726900 -0.0007660079 0.706762" mass="0.14109" diaginertia="7.7733500e-05 7.662819e-05 4.8312200e-06"/>
<joint name="herb/wam/bhand/j21" class="herb/wam/bhand/" range="0 3.141589" damping="0.11" armature=".01"/>
<geom name="herb/wam/bhand//unnamed_geom_13" class="herb/wam/bhand/viz" mesh="herb/wam/bhand/bhand_finger_prox_link_fine"/>
<geom name="herb/wam/bhand//unnamed_geom_14" class="herb/wam/bhand/col" mesh="herb/wam/bhand/bhand_finger_prox_link_convex_decomposition_p1"/>
<geom name="herb/wam/bhand//unnamed_geom_15" class="herb/wam/bhand/col" mesh="herb/wam/bhand/bhand_finger_prox_link_convex_decomposition_p2"/>
<geom name="herb/wam/bhand//unnamed_geom_16" class="herb/wam/bhand/col" mesh="herb/wam/bhand/bhand_finger_prox_link_convex_decomposition_p3"/>
<body name="herb/wam/bhand/finger22" pos="0.05 0 0.0339" quat="0.70710700 0.70710700 0 0">
<inertial pos="0.023133000 0.00078642000 0.0005279197" quat="0.01607959 0.70726900 -0.0007660079 0.706762" mass="0.062139" diaginertia="7.7733500e-05 7.662819e-05 4.8312200e-06"/>
<joint name="herb/wam/bhand/j22" class="herb/wam/bhand/" range="0 2.44346" damping="0.11" armature=".01"/>
<geom name="herb/wam/bhand//unnamed_geom_17" class="herb/wam/bhand/viz" mesh="herb/wam/bhand/bhand_finger_med_link_fine"/>
<geom name="herb/wam/bhand//unnamed_geom_18" class="herb/wam/bhand/col" mesh="herb/wam/bhand/bhand_finger_med_link_convex"/>
<body name="herb/wam/bhand/finger23" pos="0.069940000 0.003 0" quat="0.92388000 0 0 0.382683">
<inertial pos="0.022825000 0.0010491000 0.00042030000" quat="0.5084118 0.51165000 0.4895829 0.48993900" mass="0.041377" diaginertia="3.843398e-05 3.727529e-05 3.0998700e-06"/>
<joint name="herb/wam/bhand/j23" class="herb/wam/bhand/" range="0 0.837758" damping="0.11" armature=".01"/>
<geom name="herb/wam/bhand//unnamed_geom_19" class="herb/wam/bhand/viz" euler="0 0 -0.8399997" mesh="herb/wam/bhand/bhand_finger_dist_link_fine"/>
<geom name="herb/wam/bhand//unnamed_geom_20" class="herb/wam/bhand/col" euler="0 0 -0.8399997" mesh="herb/wam/bhand/bhand_finger_dist_link_convex"/>
</body>
</body>
</body>
<body name="herb/wam/bhand/finger32" pos="0 0.05 0.07539995" quat="0.5 0.5 0.5 0.5">
<inertial pos="0.023133000 0.00078642000 0.0005279197" quat="0.01607959 0.70726900 -0.0007660079 0.706762" mass="0.062139" diaginertia="7.7733500e-05 7.662819e-05 4.8312200e-06"/>
<joint name="herb/wam/bhand/j32" class="herb/wam/bhand/" range="0 2.44346" damping="0.11" armature=".01"/>
<geom name="herb/wam/bhand//unnamed_geom_21" class="herb/wam/bhand/viz" mesh="herb/wam/bhand/bhand_finger_med_link_fine"/>
<geom name="herb/wam/bhand//unnamed_geom_22" class="herb/wam/bhand/col" mesh="herb/wam/bhand/bhand_finger_med_link_convex"/>
<body name="herb/wam/bhand/finger33" pos="0.069940000 0.003 0" quat="0.92388000 0 0 0.382683">
<inertial pos="0.022825000 0.0010491000 0.00042030000" quat="0.5084118 0.51165000 0.4895829 0.48993900" mass="0.041377" diaginertia="3.843398e-05 3.727529e-05 3.0998700e-06"/>
<joint name="herb/wam/bhand/j33" class="herb/wam/bhand/" range="0 0.837758" damping="0.11" armature=".01"/>
<geom name="herb/wam/bhand//unnamed_geom_23" class="herb/wam/bhand/viz" euler="0 0 -0.8399997" mesh="herb/wam/bhand/bhand_finger_dist_link_fine"/>
<geom name="herb/wam/bhand//unnamed_geom_24" class="herb/wam/bhand/col" euler="0 0 -0.8399997" mesh="herb/wam/bhand/bhand_finger_dist_link_convex"/>
</body>
</body>
</body>
</body>
</body>
</body>
</body>
</body>
</body>
</body>
</body>
</body>
</body>-->
</body>
<light castshadow="true" class="herb/" diffuse="0.8 0.8 0.8" mode="targetbodycom" name="herb//unnamed_light_0" pos="1 1 4.5" specular="0.4 0.4 0.4" target="herb/herb"/>
</body>
<!--<body name="box_3" pos="0.28870895581142419 -0.54183395581142413 0.3549998">
<geom name="//unnamed_geom_10" class="/" type="box" group="1" size="0.060027579686085103 0.055 0.055" rgba="1 0.62352943420410156 1 1"/>
<joint name="//unnamed_joint_2" class="/" type="free"/>
</body>
<body name="box_4" pos="0.22177971291830414 0.18129056149692808 0.3549998">
<geom name="//unnamed_geom_11" class="/" type="box" group="1" size="0.062757255018445174 0.065252737323892959 0.055" rgba="0 0.83921575546264648 1 1"/>
<joint name="//unnamed_joint_3" class="/" type="free"/>
</body>
<body name="box_5" pos="0.0476221671824321 0.15210565296867215 0.3549998">
<geom name="//unnamed_geom_12" class="/" type="box" group="1" size="0.055 0.067596402584312182 0.055" rgba="0.84313732385635376 0.26666668057441711 0 1"/>
<joint name="//unnamed_joint_4" class="/" type="free"/>
</body> -->
<!--<body name="box_6" pos="-0.096236318603808046 -0.42142641007555215 0.3549998">
<geom name="//unnamed_geom_13" class="/" type="box" group="1" size="0.057212627535643504 0.06839772732407734 0.055" rgba="0 0.50196081399917603 0.16078431904315948 1"/>
<joint name="//unnamed_joint_5" class="/" type="free"/>
</body>-->
<!-- <body name="box_7" pos="-0.19039386433968011 0.04115471291830413 0.3549998">
<geom name="//unnamed_geom_14" class="/" type="box" group="1" size="0.055007578371876191 0.077499983147774329 0.055" rgba="0 0.37254902720451355 0.83529418706893921 1"/>
<joint name="//unnamed_joint_6" class="/" type="free"/>
</body>-->
<!--<body name="box_2" pos="0.13900801576105609 -0.42142641007555215 0.3549998">
<geom name="//unnamed_geom_9" class="/" type="box" group="1" size="0.055 0.055 0.055" rgba="0 0 0.5 0.0"/>
<joint name="//unnamed_joint_1" class="/" type="free"/>
</body>-->
<!--<body name="push_obj" pos="-0.053464621446560029 -0.5 0.325">
<geom name="//unnamed_geom_8" class="/" type="cylinder" group="1" size="0.055 0.025" rgba="0.5 0.3 0 1" mass="0.05"/>
<joint name="//unnamed_joint_0" class="/" type="free" damping="0.001"/>
</body>
<body name="target_obj" pos="0 0.0 0.325">
<geom name="//unnamed_geom_15" class="geom0" type="cylinder" contype="0" conaffinity="0" group="1" size="0.055 0.025" rgba="0.5 0.3 0 0.1666"/>
</body>-->
<!--<body name="gen_body_0" pos="0 0.0 0.3549998" euler="0 0 0.5">
<geom name="gen_geom_0_0" class="/" type="box" group="1" size="0.055 0.055 0.055" rgba="0 0 0 1"/>
<joint name="//unnamed_joint_0" class="/" type="free"/>
</body>
<body name="box_0" pos="0.175 0.0 0.3725">
<geom name="box_geom_0" class="/" type="box" group="1" size="0.055 0.055 0.065" rgba="0 0 0 1"/>
<joint name="//unnamed_joint_1" class="/" type="free"/>
</body>-->
<!--<body name="target_obj" pos="-0.053464621446560029 -0.5 0.3549998">
<geom name="//unnamed_geom_15" class="geom0" type="box" contype="0" conaffinity="0" group="1" size="0.055 0.055 0.055" rgba="0 0 0 0.1666"/>
</body>-->
<!--<body name="box_2" pos="-0.053464621446560029 -0.5 0.3549998">
<geom name="//unnamed_geom_16" class="/" type="box" group="1" contype="0" conaffinity="0" size="0.055 0.055 0.055" rgba="0 0.5 0.5 .25" mass="0.05"/>
<joint name="//unnamed_joint_1" class="/" type="free"/>
</body>-->
<!-- <body name="virt_box_2" pos="0 .45 0.3549998">
<geom name="//unnamed_geom_16" class="/" type="box" contype="0" conaffinity="0" group="1" size="0.076178097189418481 0.067434992230686885 0.055" rgba="1 1 0.38431376218795776 0.2999999"/>
</body>
<body name="virt_box_3" pos="0 0.57243499223068691 0.3549998">
<geom name="//unnamed_geom_17" class="/" type="box" contype="0" conaffinity="0" group="1" size="0.060027579686085103 0.055 0.055" rgba="1 0.62352943420410156 1 0.2999999"/>
</body> -->
<body euler="0 0 4.891625540890131" name="gen_body_0" pos="0 0 0.29988399999710963"><geom class="/" mesh="gen_mesh_0" name="gen_geom_0" rgba="0.7244349749598635 0.5164215411404552 0.735123674834279 1" type="mesh"/><joint class="/" name="gen_joint_0" type="free"/></body><body euler="0 0 4.604814834796103" name="gen_body_gadded_1" pos="0.4358150408280735 -0.0022371665734698632 0.7098976169759896"><geom class="/" mesh="gen_mesh_gadded_1" name="gen_geom_gadded_1" rgba="0.16572314718620496 0.8822195823171167 0.2543614402035024 1" type="mesh"/><joint class="/" name="gen_joint_gadded_1" type="free"/></body><body euler="0 0 4.508111561527038" name="gen_body_gadded_2" pos="-0.3293492836700328 0.5664266128568981 0.30047081562819794"><geom class="/" mesh="gen_mesh_gadded_2" name="gen_geom_gadded_2" rgba="0.833723760551531 0.8463352671808709 0.11803131662279309 1" type="mesh"/><joint class="/" name="gen_joint_gadded_2" type="free"/></body></worldbody>
<contact>
<!--<pair friction="0.5 0.5 0.005 0.0001 0.0001" geom1="box_geom_0" geom2="table_plane"/>-->
<pair friction="0.5 0.5 0.005 0.0001 0.0001" geom1="herb/wam_1/bhand//unnamed_geom_24" geom2="table_plane"/>
<pair friction="0.5 0.5 0.005 0.0001 0.0001" geom1="herb/wam_1/bhand//unnamed_geom_22" geom2="table_plane"/>
<pair friction="0.5 0.5 0.005 0.0001 0.0001" geom1="herb/wam_1/bhand//unnamed_geom_20" geom2="table_plane"/>
<pair friction="0.5 0.5 0.005 0.0001 0.0001" geom1="herb/wam_1/bhand//unnamed_geom_18" geom2="table_plane"/>
<pair friction="0.5 0.5 0.005 0.0001 0.0001" geom1="herb/wam_1/bhand//unnamed_geom_16" geom2="table_plane"/>
<pair friction="0.5 0.5 0.005 0.0001 0.0001" geom1="herb/wam_1/bhand//unnamed_geom_15" geom2="table_plane"/>
<pair friction="0.5 0.5 0.005 0.0001 0.0001" geom1="herb/wam_1/bhand//unnamed_geom_14" geom2="table_plane"/>
<pair friction="0.5 0.5 0.005 0.0001 0.0001" geom1="herb/wam_1/bhand//unnamed_geom_12" geom2="table_plane"/>
<pair friction="0.5 0.5 0.005 0.0001 0.0001" geom1="herb/wam_1/bhand//unnamed_geom_10" geom2="table_plane"/>
<pair friction="0.5 0.5 0.005 0.0001 0.0001" geom1="herb/wam_1/bhand//unnamed_geom_8" geom2="table_plane"/>
<pair friction="0.5 0.5 0.005 0.0001 0.0001" geom1="herb/wam_1/bhand//unnamed_geom_7" geom2="table_plane"/>
<pair friction="0.5 0.5 0.005 0.0001 0.0001" geom1="herb/wam_1/bhand//unnamed_geom_6" geom2="table_plane"/>
<pair friction="0.5 0.5 0.005 0.0001 0.0001" geom1="herb/wam_1/bhand//unnamed_geom_4" geom2="table_plane"/>
<pair friction="0.5 0.5 0.005 0.0001 0.0001" geom1="herb/wam_1/bhand//unnamed_geom_3" geom2="table_plane"/>
<pair friction="0.5 0.5 0.005 0.0001 0.0001" geom1="herb/wam_1/bhand//unnamed_geom_2" geom2="table_plane"/>
<pair friction="0.5 0.5 0.005 0.0001 0.0001" geom1="herb/wam_1/bhand//unnamed_geom_1" geom2="table_plane"/>
<pair friction="0.5 0.5 0.005 0.0001 0.0001" geom1="herb/wam_1//unnamed_geom_24" geom2="table_plane"/>
<pair friction="0.5 0.5 0.005 0.0001 0.0001" geom1="herb/wam_1//unnamed_geom_22" geom2="table_plane"/>
<pair friction="0.5 0.5 0.005 0.0001 0.0001" geom1="herb/wam_1//unnamed_geom_21" geom2="table_plane"/>
<pair friction="0.5 0.5 0.005 0.0001 0.0001" geom1="herb/wam_1//unnamed_geom_20" geom2="table_plane"/>
<pair friction="0.5 0.5 0.005 0.0001 0.0001" geom1="herb/wam_1//unnamed_geom_18" geom2="table_plane"/>
<pair friction="0.5 0.5 0.005 0.0001 0.0001" geom1="herb/wam_1//unnamed_geom_17" geom2="table_plane"/>
<!--<exclude body1="herb/wam_1/2_shoulder_yaw_link" body2="herb/wam_1/1_base_link"/>-->
<!--<pair geom1="//unnamed_geom_8" geom2="tabletop" friction="1 1 0.005 0.0001 0.0001" />-->
<!-- <pair geom1="//unnamed_geom_9" geom2="tabletop" friction="2 2 0.005 0.0001 0.0001" />
<pair geom1="//unnamed_geom_10" geom2="tabletop" friction="2 2 0.005 0.0001 0.0001" />
<pair geom1="//unnamed_geom_11" geom2="tabletop" friction="2 2 0.005 0.0001 0.0001" />
<pair geom1="//unnamed_geom_12" geom2="tabletop" friction="2 2 0.005 0.0001 0.0001" />
<pair geom1="//unnamed_geom_14" geom2="tabletop" friction="2 2 0.005 0.0001 0.0001" /> -->
<pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_0" geom2="herb/wam_1/bhand//unnamed_geom_24" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_0" geom2="herb/wam_1/bhand//unnamed_geom_22" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_0" geom2="herb/wam_1/bhand//unnamed_geom_20" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_0" geom2="herb/wam_1/bhand//unnamed_geom_18" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_0" geom2="herb/wam_1/bhand//unnamed_geom_16" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_0" geom2="herb/wam_1/bhand//unnamed_geom_15" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_0" geom2="herb/wam_1/bhand//unnamed_geom_14" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_0" geom2="herb/wam_1/bhand//unnamed_geom_12" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_0" geom2="herb/wam_1/bhand//unnamed_geom_10" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_0" geom2="herb/wam_1/bhand//unnamed_geom_8" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_0" geom2="herb/wam_1/bhand//unnamed_geom_7" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_0" geom2="herb/wam_1/bhand//unnamed_geom_6" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_0" geom2="herb/wam_1/bhand//unnamed_geom_4" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_0" geom2="herb/wam_1/bhand//unnamed_geom_3" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_0" geom2="herb/wam_1/bhand//unnamed_geom_2" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_0" geom2="herb/wam_1/bhand//unnamed_geom_1" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_0" geom2="herb/wam_1//unnamed_geom_24" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_0" geom2="herb/wam_1//unnamed_geom_22" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_0" geom2="herb/wam_1//unnamed_geom_21" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_0" geom2="herb/wam_1//unnamed_geom_20" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_0" geom2="herb/wam_1//unnamed_geom_18" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_0" geom2="herb/wam_1//unnamed_geom_17" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="0.5 0.5 0.005 0.0001 0.0001" geom1="gen_geom_0" geom2="table_plane" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_1" geom2="herb/wam_1/bhand//unnamed_geom_24" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_1" geom2="herb/wam_1/bhand//unnamed_geom_22" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_1" geom2="herb/wam_1/bhand//unnamed_geom_20" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_1" geom2="herb/wam_1/bhand//unnamed_geom_18" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_1" geom2="herb/wam_1/bhand//unnamed_geom_16" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_1" geom2="herb/wam_1/bhand//unnamed_geom_15" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_1" geom2="herb/wam_1/bhand//unnamed_geom_14" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_1" geom2="herb/wam_1/bhand//unnamed_geom_12" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_1" geom2="herb/wam_1/bhand//unnamed_geom_10" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_1" geom2="herb/wam_1/bhand//unnamed_geom_8" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_1" geom2="herb/wam_1/bhand//unnamed_geom_7" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_1" geom2="herb/wam_1/bhand//unnamed_geom_6" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_1" geom2="herb/wam_1/bhand//unnamed_geom_4" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_1" geom2="herb/wam_1/bhand//unnamed_geom_3" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_1" geom2="herb/wam_1/bhand//unnamed_geom_2" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_1" geom2="herb/wam_1/bhand//unnamed_geom_1" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_1" geom2="herb/wam_1//unnamed_geom_24" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_1" geom2="herb/wam_1//unnamed_geom_22" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_1" geom2="herb/wam_1//unnamed_geom_21" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_1" geom2="herb/wam_1//unnamed_geom_20" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_1" geom2="herb/wam_1//unnamed_geom_18" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_1" geom2="herb/wam_1//unnamed_geom_17" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="0.5 0.5 0.005 0.0001 0.0001" geom1="gen_geom_gadded_1" geom2="table_plane" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="0.5 0.5 0.005 0.0001 0.0001" geom1="gen_geom_gadded_1" geom2="gen_geom_0" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_2" geom2="herb/wam_1/bhand//unnamed_geom_24" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_2" geom2="herb/wam_1/bhand//unnamed_geom_22" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_2" geom2="herb/wam_1/bhand//unnamed_geom_20" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_2" geom2="herb/wam_1/bhand//unnamed_geom_18" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_2" geom2="herb/wam_1/bhand//unnamed_geom_16" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_2" geom2="herb/wam_1/bhand//unnamed_geom_15" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_2" geom2="herb/wam_1/bhand//unnamed_geom_14" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_2" geom2="herb/wam_1/bhand//unnamed_geom_12" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_2" geom2="herb/wam_1/bhand//unnamed_geom_10" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_2" geom2="herb/wam_1/bhand//unnamed_geom_8" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_2" geom2="herb/wam_1/bhand//unnamed_geom_7" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_2" geom2="herb/wam_1/bhand//unnamed_geom_6" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_2" geom2="herb/wam_1/bhand//unnamed_geom_4" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_2" geom2="herb/wam_1/bhand//unnamed_geom_3" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_2" geom2="herb/wam_1/bhand//unnamed_geom_2" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_2" geom2="herb/wam_1/bhand//unnamed_geom_1" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_2" geom2="herb/wam_1//unnamed_geom_24" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_2" geom2="herb/wam_1//unnamed_geom_22" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_2" geom2="herb/wam_1//unnamed_geom_21" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_2" geom2="herb/wam_1//unnamed_geom_20" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_2" geom2="herb/wam_1//unnamed_geom_18" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="4 4 0.2 0.04 0.04" geom1="gen_geom_gadded_2" geom2="herb/wam_1//unnamed_geom_17" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="0.5 0.5 0.005 0.0001 0.0001" geom1="gen_geom_gadded_2" geom2="table_plane" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="0.5 0.5 0.005 0.0001 0.0001" geom1="gen_geom_gadded_2" geom2="gen_geom_0" solimp="0.999 0.999 0.01" solref="0.01 1"/><pair condim="4" friction="0.5 0.5 0.005 0.0001 0.0001" geom1="gen_geom_gadded_2" geom2="gen_geom_gadded_1" solimp="0.999 0.999 0.01" solref="0.01 1"/></contact>
<actuator>
<!--<velocity name="herb/wam_1/j1_base_yaw_joint" joint="herb/wam_1/j1_base_yaw_joint" gear="-35.87" ctrlrange="-.1 .1" />
<velocity name="herb/wam_1/j2_shoulder_pitch_joint" joint="herb/wam_1/j2_shoulder_pitch_joint" gear="56.42" ctrlrange="-.1 .1" />
<velocity name="herb/wam_1/j3_shoulder_yaw_joint" joint="herb/wam_1/j3_shoulder_yaw_joint" gear="33.56" ctrlrange="-.1 .1" />
<velocity name="herb/wam_1/j4_elbow_pitch_joint" joint="herb/wam_1/j4_elbow_pitch_joint" gear="17.77" ctrlrange="-.1 .1" />
<velocity name="herb/wam_1/j5_wrist_yaw_joint" joint="herb/wam_1/j5_wrist_yaw_joint" gear="3.37" ctrlrange="-.1 .1" />
<velocity name="herb/wam_1/j6_wrist_pitch_joint" joint="herb/wam_1/j6_wrist_pitch_joint" gear="3.37" ctrlrange="-.1 .1" />
<velocity name="herb/wam_1/j7_palm_yaw_joint" joint="herb/wam_1/j7_palm_yaw_joint" gear="1.358" ctrlrange="-.1 .1" />
<velocity name="herb/wam_1/bhand/j11" joint="herb/wam_1/bhand/j11" gear="1.358" ctrlrange="-.1 .1" />
<velocity name="herb/wam_1/bhand/j12" joint="herb/wam_1/bhand/j12" gear="1.358" ctrlrange="-.1 .1" />
<velocity name="herb/wam_1/bhand/j13" joint="herb/wam_1/bhand/j13" gear="1.358" ctrlrange="-.1 .1" />
<velocity name="herb/wam_1/bhand/j21" joint="herb/wam_1/bhand/j21" gear="1.358" ctrlrange="-.1 .1" />
<velocity name="herb/wam_1/bhand/j22" joint="herb/wam_1/bhand/j22" gear="1.358" ctrlrange="-.1 .1" />
<velocity name="herb/wam_1/bhand/j23" joint="herb/wam_1/bhand/j23" gear="1.358" ctrlrange="-.1 .1" />
<velocity name="herb/wam_1/bhand/j32" joint="herb/wam_1/bhand/j32" gear="1.358" ctrlrange="-.1 .1" />
<velocity name="herb/wam_1/bhand/j33" joint="herb/wam_1/bhand/j33" gear="1.358" ctrlrange="-.1 .1" />-->
<position ctrllimited="true" ctrlrange="-2.6 2.6" forcelimited="false" forcerange="-10000 10000" gear="1" joint="herb/wam_1/j1_base_yaw_joint" kp="10000" name="herb/wam_1/p_j1_base_yaw_joint"/>
<position ctrllimited="true" ctrlrange="-1.985 1.985" forcelimited="false" forcerange="-10000 10000" gear="1" joint="herb/wam_1/j2_shoulder_pitch_joint" kp="10000" name="herb/wam_1/p_j2_shoulder_pitch_joint"/>
<position ctrllimited="true" ctrlrange="-2.8 2.8" forcelimited="false" forcerange="-10000 10000" gear="1" joint="herb/wam_1/j3_shoulder_yaw_joint" kp="10000" name="herb/wam_1/p_j3_shoulder_yaw_joint"/>
<position ctrllimited="true" ctrlrange="-0.9 3.1415" forcelimited="false" forcerange="-10000 10000" gear="1" joint="herb/wam_1/j4_elbow_pitch_joint" kp="10000" name="herb/wam_1/p_j4_elbow_pitch_joint"/>
<position ctrllimited="true" ctrlrange="-4.549998 1.25" forcelimited="false" forcerange="-1000 1000" gear="1" joint="herb/wam_1/j5_wrist_yaw_joint" kp="1000" name="herb/wam_1/p_j5_wrist_yaw_joint"/>
<position ctrllimited="true" ctrlrange="-1.5707 1.5707" forcelimited="false" forcerange="-1000 1000" gear="1" joint="herb/wam_1/j6_wrist_pitch_joint" kp="500" name="herb/wam_1/p_j6_wrist_pitch_joint"/>
<position ctrllimited="true" ctrlrange="-3 3" forcelimited="false" forcerange="-1000 1000" gear="1" joint="herb/wam_1/j7_palm_yaw_joint" kp="500" name="herb/wam_1/p_j7_palm_yaw_joint"/>
<velocity ctrllimited="true" ctrlrange="-1 1" forcelimited="false" forcerange="-2 2" gear="1" joint="herb/wam_1/j1_base_yaw_joint" kv="2" name="herb/wam_1/j1_base_yaw_joint"/>
<velocity ctrllimited="true" ctrlrange="-1 1" forcelimited="false" forcerange="-100 100" gear="1" joint="herb/wam_1/j2_shoulder_pitch_joint" kv="20" name="herb/wam_1/j2_shoulder_pitch_joint"/>
<velocity ctrllimited="true" ctrlrange="-1 1" forcelimited="false" forcerange="-100 100" gear="1" joint="herb/wam_1/j3_shoulder_yaw_joint" kv="20" name="herb/wam_1/j3_shoulder_yaw_joint"/>
<velocity ctrllimited="true" ctrlrange="-1 1" forcelimited="false" forcerange="-100 100" gear="1" joint="herb/wam_1/j4_elbow_pitch_joint" kv="10" name="herb/wam_1/j4_elbow_pitch_joint"/>
<velocity ctrllimited="true" ctrlrange="-1 1" forcelimited="false" forcerange="-100 100" gear="1" joint="herb/wam_1/j5_wrist_yaw_joint" kv="10" name="herb/wam_1/j5_wrist_yaw_joint"/>
<velocity ctrllimited="true" ctrlrange="-1 1" forcelimited="false" forcerange="-100 100" gear="1" joint="herb/wam_1/j6_wrist_pitch_joint" kv="10" name="herb/wam_1/j6_wrist_pitch_joint"/>
<velocity ctrllimited="true" ctrlrange="-1 1" forcelimited="false" forcerange="-100 100" gear="1" joint="herb/wam_1/j7_palm_yaw_joint" kv="10" name="herb/wam_1/j7_palm_yaw_joint"/>
<position ctrllimited="true" ctrlrange="0 3.141589" forcelimited="false" forcerange="-40 40" gear="1" joint="herb/wam_1/bhand/j11" kp="40" name="herb/wam_1/bhand/p_j11"/>
<position ctrllimited="true" ctrlrange="0 2.44346" forcelimited="false" forcerange="-40 40" gear="1" joint="herb/wam_1/bhand/j12" kp="40" name="herb/wam_1/bhand/p_j12"/>
<position ctrllimited="true" ctrlrange="0 0.837758" forcelimited="false" forcerange="-40 40" gear="1" joint="herb/wam_1/bhand/j13" kp="40" name="herb/wam_1/bhand/p_j13"/>
<position ctrllimited="true" ctrlrange="0 3.141589" forcelimited="false" forcerange="-40 40" gear="1" joint="herb/wam_1/bhand/j21" kp="40" name="herb/wam_1/bhand/p_j21"/>
<position ctrllimited="true" ctrlrange="0 2.44346" forcelimited="false" forcerange="-40 40" gear="1" joint="herb/wam_1/bhand/j22" kp="40" name="herb/wam_1/bhand/p_j22"/>
<position ctrllimited="true" ctrlrange="0 0.837758" forcelimited="false" forcerange="-40 40" gear="1" joint="herb/wam_1/bhand/j23" kp="40" name="herb/wam_1/bhand/p_j23"/>
<position ctrllimited="true" ctrlrange="0 2.44346" forcelimited="false" forcerange="-40 40" gear="1" joint="herb/wam_1/bhand/j32" kp="40" name="herb/wam_1/bhand/p_j32"/>
<position ctrllimited="true" ctrlrange="0 0.837758" forcelimited="false" forcerange="-40 40" gear="1" joint="herb/wam_1/bhand/j33" kp="40" name="herb/wam_1/bhand/p_j33"/>
<!--<motor name="herb/wam_1/j1_base_yaw_joint" joint="herb/wam_1/j1_base_yaw_joint" gear="-35.87" ctrlrange="-1 1" />
<motor name="herb/wam_1/j2_shoulder_pitch_joint" joint="herb/wam_1/j2_shoulder_pitch_joint" gear="56.42" ctrlrange="-1 1" />
<motor name="herb/wam_1/j3_shoulder_yaw_joint" joint="herb/wam_1/j3_shoulder_yaw_joint" gear="33.56" ctrlrange="-1 1" />
<motor name="herb/wam_1/j4_elbow_pitch_joint" joint="herb/wam_1/j4_elbow_pitch_joint" gear="17.77" ctrlrange="-1 1" />
<motor name="herb/wam_1/j5_wrist_yaw_joint" joint="herb/wam_1/j5_wrist_yaw_joint" gear="3.37" ctrlrange="-1 1" />
<motor name="herb/wam_1/j6_wrist_pitch_joint" joint="herb/wam_1/j6_wrist_pitch_joint" gear="3.37" ctrlrange="-1 1" />
<motor name="herb/wam_1/j7_palm_yaw_joint" joint="herb/wam_1/j7_palm_yaw_joint" gear="1.358" ctrlrange="-1 1" />
<motor name="herb/wam_1/bhand/p_j11" joint="herb/wam_1/bhand/j11" ctrlrange="-1 1" gear="2"/>
<motor name="herb/wam_1/bhand/p_j12" joint="herb/wam_1/bhand/j12" ctrlrange="-1 1" gear="2"/>
<motor name="herb/wam_1/bhand/p_j13" joint="herb/wam_1/bhand/j13" ctrlrange="-1 1" gear="2"/>
<motor name="herb/wam_1/bhand/p_j21" joint="herb/wam_1/bhand/j21" ctrlrange="-1 1" gear="2"/>
<motor name="herb/wam_1/bhand/p_j22" joint="herb/wam_1/bhand/j22" ctrlrange="-1 1" gear="2"/>
<motor name="herb/wam_1/bhand/p_j23" joint="herb/wam_1/bhand/j23" ctrlrange="-1 1" gear="2"/>
<motor name="herb/wam_1/bhand/p_j32" joint="herb/wam_1/bhand/j32" ctrlrange="-1 1" gear="2"/>
<motor name="herb/wam_1/bhand/p_j33" joint="herb/wam_1/bhand/j33" ctrlrange="-1 1" gear="2"/>-->
<velocity ctrllimited="true" ctrlrange="-1 1" forcelimited="false" forcerange="-2 2" gear="1" joint="herb/wam_1/bhand/j11" kv="1" name="herb/wam_1/bhand/v_j11"/>
<velocity ctrllimited="true" ctrlrange="-1 1" forcelimited="false" forcerange="-2 2" gear="1" joint="herb/wam_1/bhand/j12" kv="1" name="herb/wam_1/bhand/v_j12"/>
<velocity ctrllimited="true" ctrlrange="-1 1" forcelimited="false" forcerange="-2 2" gear="1" joint="herb/wam_1/bhand/j13" kv="1" name="herb/wam_1/bhand/v_j13"/>
<velocity ctrllimited="true" ctrlrange="-1 1" forcelimited="false" forcerange="-2 2" gear="1" joint="herb/wam_1/bhand/j21" kv="1" name="herb/wam_1/bhand/v_j21"/>
<velocity ctrllimited="true" ctrlrange="-1 1" forcelimited="false" forcerange="-2 2" gear="1" joint="herb/wam_1/bhand/j22" kv="1" name="herb/wam_1/bhand/v_j22"/>
<velocity ctrllimited="true" ctrlrange="-1 1" forcelimited="false" forcerange="-2 2" gear="1" joint="herb/wam_1/bhand/j23" kv="1" name="herb/wam_1/bhand/v_j23"/>
<velocity ctrllimited="true" ctrlrange="-1 1" forcelimited="false" forcerange="-2 2" gear="1" joint="herb/wam_1/bhand/j32" kv="1" name="herb/wam_1/bhand/v_j32"/>
<velocity ctrllimited="true" ctrlrange="-1 1" forcelimited="false" forcerange="-2 2" gear="1" joint="herb/wam_1/bhand/j33" kv="1" name="herb/wam_1/bhand/v_j33"/>
<!-- <position name="herb/wam_1/j1_base_yaw_joint" joint="herb/wam_1/j1_base_yaw_joint" ctrllimited="true" ctrlrange="-0.1 0.1" forcelimited="true" forcerange="-50 50" gear="-35.87"/>
<position name="herb/wam_1/j2_shoulder_pitch_joint" joint="herb/wam_1/j2_shoulder_pitch_joint" ctrllimited="true" ctrlrange="-0.1 0.1" forcelimited="true" forcerange="-50 50" gear="56.42"/>
<position name="herb/wam_1/j3_shoulder_yaw_joint" joint="herb/wam_1/j3_shoulder_yaw_joint" ctrllimited="true" ctrlrange="-0.1 0.1" forcelimited="true" forcerange="-50 50" gear="33.56"/>
<position name="herb/wam_1/j4_elbow_pitch_joint" joint="herb/wam_1/j4_elbow_pitch_joint" ctrllimited="true" ctrlrange="-0.1 0.1" forcelimited="true" forcerange="-50 50" gear="17.77"/>
<position name="herb/wam_1/j5_wrist_yaw_joint" joint="herb/wam_1/j5_wrist_yaw_joint" ctrllimited="true" ctrlrange="-0.1 0.1" forcelimited="true" forcerange="-50 50" gear="3.37"/>
<position name="herb/wam_1/j6_wrist_pitch_joint" joint="herb/wam_1/j6_wrist_pitch_joint" ctrllimited="true" ctrlrange="-0.1 0.1" forcelimited="true" forcerange="-50 50" gear="3.37"/>
<position name="herb/wam_1/j7_palm_yaw_joint" joint="herb/wam_1/j7_palm_yaw_joint" ctrllimited="true" ctrlrange="-0.1 0.1" forcelimited="true" forcerange="-50 50" gear="1.358"/>
<position name="herb/wam_1/bhand/j11" joint="herb/wam_1/bhand/j11" ctrllimited="true" ctrlrange="-0.1 0.1" forcelimited="true" forcerange="-50 50" gear="1.358"/>
<position name="herb/wam_1/bhand/j12" joint="herb/wam_1/bhand/j12" ctrllimited="true" ctrlrange="-0.1 0.1" forcelimited="true" forcerange="-50 50" gear="1.358"/>
<position name="herb/wam_1/bhand/j13" joint="herb/wam_1/bhand/j13" ctrllimited="true" ctrlrange="-0.1 0.1" forcelimited="true" forcerange="-50 50" gear="1.358"/>
<position name="herb/wam_1/bhand/j21" joint="herb/wam_1/bhand/j21" ctrllimited="true" ctrlrange="-0.1 0.1" forcelimited="true" forcerange="-50 50" gear="1.358"/>
<position name="herb/wam_1/bhand/j22" joint="herb/wam_1/bhand/j22" ctrllimited="true" ctrlrange="-0.1 0.1" forcelimited="true" forcerange="-50 50" gear="1.358"/>
<position name="herb/wam_1/bhand/j23" joint="herb/wam_1/bhand/j23" ctrllimited="true" ctrlrange="-0.1 0.1" forcelimited="true" forcerange="-50 50" gear="1.358"/>
<position name="herb/wam_1/bhand/j32" joint="herb/wam_1/bhand/j32" ctrllimited="true" ctrlrange="-0.1 0.1" forcelimited="true" forcerange="-50 50" gear="1.358"/>
<position name="herb/wam_1/bhand/j33" joint="herb/wam_1/bhand/j33" ctrllimited="true" ctrlrange="-0.1 0.1" forcelimited="true" forcerange="-50 50" gear="1.358"/>-->
</actuator>
</mujoco>
|
|
|
|
f702915d7e486071199c0c0ee0afe4d9c719fd6a
|
|
|
|
gym/envs/robotics/assets/fetch/random_obj_xml/3932_peg.xml
|
|
1701741df2e6ae9a762fe647122ee8344f586bc9
|
[
"Python-2.0",
"OLDAP-2.7"
]
|
|
|
|
gym/envs/robotics/assets/fetch/random_obj_xml/3932_peg.xml
|
|
1701741df2e6ae9a762fe647122ee8344f586bc9
|
[
"Python-2.0",
"OLDAP-2.7"
]
|
|
|
|
gym/envs/robotics/assets/fetch/random_obj_xml/3932_peg.xml
|
|
1701741df2e6ae9a762fe647122ee8344f586bc9
|
[
"Python-2.0",
"OLDAP-2.7"
]
|
|
|
|
<mujoco>
<compiler angle="radian" coordinate="local" meshdir="../../stls/fetch" texturedir="../../textures" />
<option timestep="0.002">
<flag warmstart="enable" />
</option>
<include file="../shared.xml" />
<asset>
<mesh file="../../stls/fetch/random_urdfs/393/393.stl" name="obj0" scale="0.005350794760234231 0.005350794760234231 0.005350794760234231" />
</asset>
<worldbody>
<geom condim="3" material="floor_mat" name="floor0" pos="0.8 0.75 0" size="0.85 0.70 1" type="plane" />
<body name="floor0" pos="0.8 0.75 0">
<site name="target0" pos="0 0 0.5" rgba="1 0 0 0" size="0.02 0.02 0.02" type="sphere" />
</body>
<include file="../robot.xml" />
<body name="table0" pos="1.3 0.75 0.17">
<geom mass="2000" material="table_mat" size="0.25 0.35 0.17" type="box" />
</body>
<body name="table_top" pos="1.3 0.75 0.36">
<joint damping="0.01" name="table_top:joint" type="free" />
<geom mass="2000" material="table_mat" pos="0.145 0 0" size="0.105 0.35 0.03" type="box" />
<geom mass="2000" material="table_mat" pos="-0.145 0 0" size="0.105 0.35 0.03" type="box" />
<geom mass="2000" material="table_mat" pos="0 -0.195 0" size="0.04 0.155 0.03" type="box" />
<geom mass="2000" material="table_mat" pos="0 0.195 0" size="0.04 0.155 0.03" type="box" />
<site name="table_top" pos="0 0 0" rgba="1 0 0 0" size="0.02 0.02 0.02" type="sphere" />
</body>
<body name="object0" pos="0.021439775801699548 0.03778282863076506 0.04" zaxis="1.0 0.0 0.0">
<joint damping="0.01" name="object0:joint" type="free" />
<geom condim="3" mass="0.1" material="block_mat" mesh="obj0" pos="0 0 0" type="mesh" zaxis="1.0 0.0 0.0" />
<geom condim="3" mass="2" material="block_mat" pos="0.01028691788818665 -0.011853146474931625 0.021903493683809824" size="0.024598458844556255 0.03464273281953977 0.05995359655196806" type="box" zaxis="1.0 0.0 0.0" />
<site name="object0" pos="0.005790729660364575 -0.010048923409522589 -0.01661032706645869" rgba="1 0 0 0" size="0.02 0.02 0.02" type="sphere" />
<site name="handle0" pos="0.01028691788818665 -0.011853146474931625 0.011903493683809822" rgba="1 0 0 0" size="0.02 0.02 0.02" type="sphere" />
</body>
<light ambient="0.2 0.2 0.2" castshadow="false" diffuse="0.8 0.8 0.8" dir="0 0 -1" directional="true" name="light0" pos="0 0 4" specular="0.3 0.3 0.3" />
</worldbody>
<actuator>
<position ctrllimited="true" ctrlrange="0 0.2" joint="robot0:l_gripper_finger_joint" kp="30000" name="robot0:l_gripper_finger_joint" user="1" />
<position ctrllimited="true" ctrlrange="0 0.2" joint="robot0:r_gripper_finger_joint" kp="30000" name="robot0:r_gripper_finger_joint" user="1" />
</actuator>
</mujoco>
|
|
|
|
f702fe7f1f7026782fcf499c4ceef8373e778e80
|
|
|
|
gym/envs/robotics/assets/fetch/random_obj_xml/6246_slide.xml
|
|
1701741df2e6ae9a762fe647122ee8344f586bc9
|
[
"Python-2.0",
"OLDAP-2.7"
]
|
|
|
|
gym/envs/robotics/assets/fetch/random_obj_xml/6246_slide.xml
|
|
1701741df2e6ae9a762fe647122ee8344f586bc9
|
[
"Python-2.0",
"OLDAP-2.7"
]
|
|
|
|
gym/envs/robotics/assets/fetch/random_obj_xml/6246_slide.xml
|
|
1701741df2e6ae9a762fe647122ee8344f586bc9
|
[
"Python-2.0",
"OLDAP-2.7"
]
|
|
|
|
<mujoco>
<compiler angle="radian" coordinate="local" meshdir="../../stls/fetch" texturedir="../../textures" />
<option timestep="0.002">
<flag warmstart="enable" />
</option>
<include file="../shared.xml" />
<asset>
<mesh file="../../stls/fetch/random_urdfs/624/624.stl" name="obj0" scale="0.013140316601670003 0.013140316601670003 0.013140316601670003" />
</asset>
<worldbody>
<geom condim="3" material="floor_mat" name="floor0" pos="0.8 0.75 0" size="0.85 0.7 1" type="plane" />
<body name="floor0" pos="0.8 0.75 0">
<site name="target0" pos="0 0 0.5" rgba="1 0 0 0" size="0.02 0.02 0.02" type="sphere" />
</body>
<include file="../robot.xml" />
<body name="table" pos="1.3 0.75 0.2">
<joint damping="0.01" name="table:joint" type="free" />
<geom mass="2000" material="table_mat" size="0.25 0.5 0.2" type="box" />
<body name="switch" pos="0.03091516373732431 0.11565916795215042 0.23612252009292523">
<joint axis="0 1 0" damping="5" frictionloss="50" name="switch" pos="0 0 0" range="0 0.2" type="slide" />
<geom condim="3" mass="2" material="block_mat" mesh="obj0" pos="0 0 0" type="mesh" />
<site name="switch" pos="0 0 0" rgba="0 1 0 0" size="0.03 0.03 0.03" type="sphere" />
</body>
</body>
<light ambient="0.2 0.2 0.2" castshadow="false" diffuse="0.8 0.8 0.8" dir="0 0 -1" directional="true" name="light0" pos="0 0 4" specular="0.3 0.3 0.3" />
</worldbody>
</mujoco>
|
|
|
|
f7048e8b82dde08be422a1c827803bf7242ad8cc
|
|
|
|
herb_reconf/cluttered_scenes/hard_pushing_015_peach_3_0.9_scene.xml
|
wagnew3/Amodal-3D-Reconstruction-for-Robotic-Manipulationvia-Stability-and-Connectivity--Release
|
f55c6b0fac44d9d749e7804d99169a39d30c2111
|
|
|
|
|
herb_reconf/cluttered_scenes/hard_pushing_015_peach_3_0.9_scene.xml
|
wagnew3/Amodal-3D-Reconstruction-for-Robotic-Manipulationvia-Stability-and-Connectivity--Release
|
f55c6b0fac44d9d749e7804d99169a39d30c2111
|
|
|
|
|
herb_reconf/cluttered_scenes/hard_pushing_015_peach_3_0.9_scene.xml
|
wagnew3/Amodal-3D-Reconstruction-for-Robotic-Manipulationvia-Stability-and-Connectivity--Release
|
f55c6b0fac44d9d749e7804d99169a39d30c2111
|
|
|
|
| "<?xml version=\"1.0\" ?><mujoco model=\"scene\">\n <compiler angle=\"radian\" coordinate=\"local\"(...TRUNCATED)
|
|
|
|
f704ea34a59ea6add1ae48057c42dfd2912c65dd
|
|
|
|
herb_reconf/cluttered_scenes/grasping_012_strawberry_4_0.4_scene.xml
|
wagnew3/Amodal-3D-Reconstruction-for-Robotic-Manipulationvia-Stability-and-Connectivity--Release
|
f55c6b0fac44d9d749e7804d99169a39d30c2111
|
|
|
|
|
herb_reconf/cluttered_scenes/grasping_012_strawberry_4_0.4_scene.xml
|
wagnew3/Amodal-3D-Reconstruction-for-Robotic-Manipulationvia-Stability-and-Connectivity--Release
|
f55c6b0fac44d9d749e7804d99169a39d30c2111
|
|
|
|
|
herb_reconf/cluttered_scenes/grasping_012_strawberry_4_0.4_scene.xml
|
wagnew3/Amodal-3D-Reconstruction-for-Robotic-Manipulationvia-Stability-and-Connectivity--Release
|
f55c6b0fac44d9d749e7804d99169a39d30c2111
|
|
|
|
| "<?xml version=\"1.0\" ?><mujoco model=\"scene\">\n <compiler angle=\"radian\" coordinate=\"local\"(...TRUNCATED)
|
|
|
|
f705e581288a8f25ee7445fbd322bc43cf257d09
|
|
|
|
gym/envs/robotics/assets/fetch/random_obj_xml/6709_slide.xml
|
|
1701741df2e6ae9a762fe647122ee8344f586bc9
|
[
"Python-2.0",
"OLDAP-2.7"
]
|
|
|
|
gym/envs/robotics/assets/fetch/random_obj_xml/6709_slide.xml
|
|
1701741df2e6ae9a762fe647122ee8344f586bc9
|
[
"Python-2.0",
"OLDAP-2.7"
]
|
|
|
|
gym/envs/robotics/assets/fetch/random_obj_xml/6709_slide.xml
|
|
1701741df2e6ae9a762fe647122ee8344f586bc9
|
[
"Python-2.0",
"OLDAP-2.7"
]
|
|
|
| "<mujoco>\n\t<compiler angle=\"radian\" coordinate=\"local\" meshdir=\"../../stls/fetch\" texturedir(...TRUNCATED)
|
|
|
|
f706265d726e30cffe5df327e0d76ffd60baf4da
|
|
|
|
furniture/env/models/assets/objects/desk_hannes_0529.xml
|
|
dbaa3eeb40709c4a2033b6a603a68c17e60a0477
|
|
|
|
|
furniture/env/models/assets/objects/desk_hannes_0529.xml
|
|
dbaa3eeb40709c4a2033b6a603a68c17e60a0477
|
|
|
|
|
furniture/env/models/assets/objects/desk_hannes_0529.xml
|
|
dbaa3eeb40709c4a2033b6a603a68c17e60a0477
|
|
|
|
| "<mujoco model=\"desk_hannes_0529\">\n <custom>\n <numeric data=\"-0.278467 0.171887 0.003515 1.(...TRUNCATED)
|
|
|
|
f7066406cbe7539df28313b4eb8cde86bc827f28
|
|
|
|
gym_kuka_mujoco/envs/assets/R800_pick_no_obstacle2_gravity.xml
|
|
2486a62b4a8b4c3beaf8110517e2f05600be9ab0
|
|
|
|
|
gym_kuka_mujoco/envs/assets/R800_pick_no_obstacle2_gravity.xml
|
|
2486a62b4a8b4c3beaf8110517e2f05600be9ab0
|
|
|
|
|
gym_kuka_mujoco/envs/assets/R800_pick_no_obstacle2_gravity.xml
|
|
2486a62b4a8b4c3beaf8110517e2f05600be9ab0
|
|
|
|
| "<?xml version=\"1.0\" ?>\n\n<mujoco>\n <compiler angle=\"radian\" coordinate=\"local\" meshdir=\"m(...TRUNCATED)
|
|
|
|
f7085d26b8d9e5941c3846fa1049f2a54b8f3789
|
|
|
|
herb_reconf/cluttered_scenes/easy_pushing_005_tomato_soup_can_3_0.7_scene.xml
|
wagnew3/Amodal-3D-Reconstruction-for-Robotic-Manipulationvia-Stability-and-Connectivity--Release
|
f55c6b0fac44d9d749e7804d99169a39d30c2111
|
|
|
|
|
herb_reconf/cluttered_scenes/easy_pushing_005_tomato_soup_can_3_0.7_scene.xml
|
wagnew3/Amodal-3D-Reconstruction-for-Robotic-Manipulationvia-Stability-and-Connectivity--Release
|
f55c6b0fac44d9d749e7804d99169a39d30c2111
|
|
|
|
|
herb_reconf/cluttered_scenes/easy_pushing_005_tomato_soup_can_3_0.7_scene.xml
|
wagnew3/Amodal-3D-Reconstruction-for-Robotic-Manipulationvia-Stability-and-Connectivity--Release
|
f55c6b0fac44d9d749e7804d99169a39d30c2111
|
|
|
|
| "<?xml version=\"1.0\" ?><mujoco model=\"scene\">\n <compiler angle=\"radian\" coordinate=\"local\"(...TRUNCATED)
|
|
|
|
f70a998affdfdee408dab0fae1c623ecb2f79098
|
|
|
|
gym/envs/robotics/assets/fetch/random_obj_xml/9767_slide.xml
|
|
1701741df2e6ae9a762fe647122ee8344f586bc9
|
[
"Python-2.0",
"OLDAP-2.7"
]
|
|
|
|
gym/envs/robotics/assets/fetch/random_obj_xml/9767_slide.xml
|
|
1701741df2e6ae9a762fe647122ee8344f586bc9
|
[
"Python-2.0",
"OLDAP-2.7"
]
|
|
|
|
gym/envs/robotics/assets/fetch/random_obj_xml/9767_slide.xml
|
|
1701741df2e6ae9a762fe647122ee8344f586bc9
|
[
"Python-2.0",
"OLDAP-2.7"
]
|
|
|
| "<mujoco>\n\t<compiler angle=\"radian\" coordinate=\"local\" meshdir=\"../../stls/fetch\" texturedir(...TRUNCATED)
|
|
|
|
README.md exists but content is empty.